From e3109f5d7eb9466043dbc62c13eadd572cd1f473 Mon Sep 17 00:00:00 2001 From: lzk228 <124214523+lzk228@users.noreply.github.com> Date: Thu, 1 Jun 2023 08:55:15 +0300 Subject: [PATCH 001/474] add whitelist components to CE belt (#17004) --- Resources/Prototypes/Entities/Clothing/Belt/belts.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Resources/Prototypes/Entities/Clothing/Belt/belts.yml b/Resources/Prototypes/Entities/Clothing/Belt/belts.yml index ebf1fbeda6..82e71693cd 100644 --- a/Resources/Prototypes/Entities/Clothing/Belt/belts.yml +++ b/Resources/Prototypes/Entities/Clothing/Belt/belts.yml @@ -112,6 +112,8 @@ - Handcuff - PowerCell - Geiger + - TrayScanner + - GasAnalyzer - type: ItemMapper mapLayers: drill: From 9b1d587235dab7733eb8c194dd0cceadb726454a Mon Sep 17 00:00:00 2001 From: Chief-Engineer <119664036+Chief-Engineer@users.noreply.github.com> Date: Thu, 1 Jun 2023 00:57:31 -0500 Subject: [PATCH 002/474] add reflect logs (#17006) --- .../Weapons/Ranged/Systems/GunSystem.cs | 2 +- .../Ranged/Events/HitScanReflectAttempt.cs | 2 +- .../Weapons/Reflect/SharedReflectSystem.cs | 21 ++++++++++++++++--- 3 files changed, 20 insertions(+), 5 deletions(-) diff --git a/Content.Server/Weapons/Ranged/Systems/GunSystem.cs b/Content.Server/Weapons/Ranged/Systems/GunSystem.cs index e8e7e16690..f14524c607 100644 --- a/Content.Server/Weapons/Ranged/Systems/GunSystem.cs +++ b/Content.Server/Weapons/Ranged/Systems/GunSystem.cs @@ -206,7 +206,7 @@ public override void Shoot(EntityUid gunUid, GunComponent gun, List<(EntityUid? FireEffects(fromEffect, result.Distance, dir.Normalized.ToAngle(), hitscan, hit); - var ev = new HitScanReflectAttemptEvent(hitscan.Reflective, dir, false); + var ev = new HitScanReflectAttemptEvent(user, gunUid, hitscan.Reflective, dir, false); RaiseLocalEvent(hit, ref ev); if (!ev.Reflected) diff --git a/Content.Shared/Weapons/Ranged/Events/HitScanReflectAttempt.cs b/Content.Shared/Weapons/Ranged/Events/HitScanReflectAttempt.cs index 9857da87bc..f9e46f3aeb 100644 --- a/Content.Shared/Weapons/Ranged/Events/HitScanReflectAttempt.cs +++ b/Content.Shared/Weapons/Ranged/Events/HitScanReflectAttempt.cs @@ -7,4 +7,4 @@ namespace Content.Shared.Weapons.Ranged.Events; /// and changing where shot will go next /// [ByRefEvent] -public record struct HitScanReflectAttemptEvent(ReflectType Reflective, Vector2 Direction, bool Reflected); +public record struct HitScanReflectAttemptEvent(EntityUid? Shooter, EntityUid SourceItem, ReflectType Reflective, Vector2 Direction, bool Reflected); diff --git a/Content.Shared/Weapons/Reflect/SharedReflectSystem.cs b/Content.Shared/Weapons/Reflect/SharedReflectSystem.cs index 0940f9dfad..1ee05f8f99 100644 --- a/Content.Shared/Weapons/Reflect/SharedReflectSystem.cs +++ b/Content.Shared/Weapons/Reflect/SharedReflectSystem.cs @@ -1,5 +1,7 @@ using System.Diagnostics.CodeAnalysis; +using Content.Shared.Administration.Logs; using Content.Shared.Audio; +using Content.Shared.Database; using Content.Shared.Hands.Components; using Content.Shared.Weapons.Ranged.Events; using Robust.Shared.Physics.Components; @@ -19,6 +21,7 @@ public abstract class SharedReflectSystem : EntitySystem { [Dependency] private readonly INetManager _netManager = default!; [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly SharedPhysicsSystem _physics = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; @@ -88,10 +91,16 @@ private bool TryReflectProjectile(EntityUid reflector, EntityUid projectile, Pro if (Resolve(projectile, ref projectileComp, false)) { + _adminLogger.Add(LogType.BulletHit, LogImpact.Medium, $"{ToPrettyString(reflector)} reflected {ToPrettyString(projectile)} from {ToPrettyString(projectileComp.Weapon)} shot by {projectileComp.Shooter}"); + projectileComp.Shooter = reflector; projectileComp.Weapon = reflector; Dirty(projectileComp); } + else + { + _adminLogger.Add(LogType.BulletHit, LogImpact.Medium, $"{ToPrettyString(reflector)} reflected {ToPrettyString(projectile)}"); + } return true; } @@ -101,7 +110,7 @@ private void OnHandsReflectHitscan(EntityUid uid, HandsComponent hands, ref HitS if (args.Reflected || hands.ActiveHandEntity == null) return; - if (TryReflectHitscan(hands.ActiveHandEntity.Value, args.Direction, out var dir)) + if (TryReflectHitscan(hands.ActiveHandEntity.Value, args.Shooter, args.SourceItem, args.Direction, out var dir)) { args.Direction = dir.Value; args.Reflected = true; @@ -116,14 +125,14 @@ private void OnReflectHitscan(EntityUid uid, ReflectComponent component, ref Hit return; } - if (TryReflectHitscan(uid, args.Direction, out var dir)) + if (TryReflectHitscan(uid, args.Shooter, args.SourceItem, args.Direction, out var dir)) { args.Direction = dir.Value; args.Reflected = true; } } - private bool TryReflectHitscan(EntityUid reflector, Vector2 direction, + private bool TryReflectHitscan(EntityUid reflector, EntityUid? shooter, EntityUid shotSource, Vector2 direction, [NotNullWhen(true)] out Vector2? newDirection) { if (!TryComp(reflector, out var reflect) || @@ -142,6 +151,12 @@ private bool TryReflectHitscan(EntityUid reflector, Vector2 direction, var spread = _random.NextAngle(-reflect.Spread / 2, reflect.Spread / 2); newDirection = -spread.RotateVec(direction); + + if (shooter != null) + _adminLogger.Add(LogType.HitScanHit, LogImpact.Medium, $"{ToPrettyString(reflector)} reflected hitscan from {ToPrettyString(shotSource)} shot by {ToPrettyString(shooter.Value)}"); + else + _adminLogger.Add(LogType.HitScanHit, LogImpact.Medium, $"{ToPrettyString(reflector)} reflected hitscan from {ToPrettyString(shotSource)}"); + return true; } } From c05ae8efbb46a2b7788380785aebc8268f568f23 Mon Sep 17 00:00:00 2001 From: liltenhead <104418166+liltenhead@users.noreply.github.com> Date: Wed, 31 May 2023 23:49:49 -0700 Subject: [PATCH 003/474] Board price (#17038) * price change * price change again --- .../Objects/Devices/Circuitboards/Machine/production.yml | 4 ++++ .../Entities/Objects/Devices/Circuitboards/misc.yml | 2 ++ 2 files changed, 6 insertions(+) diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml index 6738d9212c..ae0756ff8b 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml @@ -465,6 +465,8 @@ Capacitor: 2 materialRequirements: Cable: 5 + - type: StaticPrice + price: 15 - type: entity id: WeaponCapacitorRechargerCircuitboard @@ -481,6 +483,8 @@ Capacitor: 2 materialRequirements: CableMV: 5 + - type: StaticPrice + price: 15 - type: entity id: SubstationMachineCircuitboard diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/misc.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/misc.yml index 76907df4f5..aca34b9ad0 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/misc.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/misc.yml @@ -11,3 +11,5 @@ tags: - DroneUsable - StationMapElectronics + - type: StaticPrice + price: 15 \ No newline at end of file From 893e94f60db80c81efcdc636e0c9e610e9ee3561 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 1 Jun 2023 02:50:53 -0400 Subject: [PATCH 004/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index fdbcb1a70b..a627cec452 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,10 +1,4 @@ Entries: -- author: Interrobang01 - changes: - - {message: Synaptizine is now a powerful treatment to hallucinations caused by - Space Drugs or similar chemicals., type: Tweak} - id: 3418 - time: '2023-04-15T22:42:17.0000000+00:00' - author: PuroSlavKing changes: - {message: Added Centcom received an animated PDA with a Centcom pen as a gift!, @@ -2909,3 +2903,8 @@ Entries: - {message: SMG accuracy reduced to 3-tiles width at full screen away., type: Tweak} id: 3917 time: '2023-06-01T02:40:11.0000000+00:00' +- author: liltenhead + changes: + - {message: Autolathe board economy crashed, type: Tweak} + id: 3918 + time: '2023-06-01T06:49:50.0000000+00:00' From 4783a655a48f343fe297ca6679211d3426bd1b00 Mon Sep 17 00:00:00 2001 From: lzk228 <124214523+lzk228@users.noreply.github.com> Date: Thu, 1 Jun 2023 13:09:44 +0300 Subject: [PATCH 005/474] remove useless tip (#17000) --- Resources/Prototypes/Datasets/tips.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Resources/Prototypes/Datasets/tips.yml b/Resources/Prototypes/Datasets/tips.yml index cd8e0c030b..e3f4a15997 100644 --- a/Resources/Prototypes/Datasets/tips.yml +++ b/Resources/Prototypes/Datasets/tips.yml @@ -75,7 +75,6 @@ - "As a Medical Doctor, excise caution when putting reptilians in cryopods. They will take a lot of extra cold damage, but you can mitigate this with some burn medicine or leporazine." - "As a Medical Doctor, remember that your health analyzer has a replacable battery. If it drains too quickly for your taste, you can ask science to print a better battery for you!" - "As a Chemist, once you've made everything you've needed to, don't be afraid to make more silly reagents. Have you tried desoxyephedrine?" - - "As the Chief Medical Officer, your hypospray starts with omnizine, which can heal almost every type of damage at once, but can't be synthesized. Use it wisely!" - "As a Medical Doctor, Chemist, or Chief Medical Officer, you can use chloral hydrate to non-lethally sedate unruly patients." - "Don't be afraid to ask for help, whether from your peers in character or through LOOC, or from admins!" - "You'll quickly lose your interest in the game if you play to win and kill. If you find yourself doing this, take a step back and talk to people--it's a much better experience!" @@ -123,4 +122,4 @@ - "By right clicking on a player, and then clicking the heart icon, you can quickly examine them to check for injuries or how badly they're bleeding. You can also do this to yourself." - "Monkeys have a rare chance to be sentient. Ook!" - "You can tell if an area with firelocks up is spaced by looking to see if the firelocks have lights besides them." - - "Instead of picking it up, you can alt-click food to eat it. This also works for mice and other creatures without hands." \ No newline at end of file + - "Instead of picking it up, you can alt-click food to eat it. This also works for mice and other creatures without hands." From a9e723a93faeaa544bd734f0d1363bc3a4c2d2b0 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Thu, 1 Jun 2023 23:11:39 +1000 Subject: [PATCH 006/474] Fix NPC static avoidance (#17039) --- .../NPC/Systems/NPCSteeringSystem.Context.cs | 29 +++++++------------ 1 file changed, 10 insertions(+), 19 deletions(-) diff --git a/Content.Server/NPC/Systems/NPCSteeringSystem.Context.cs b/Content.Server/NPC/Systems/NPCSteeringSystem.Context.cs index db87b2adc7..55ae3c0b8b 100644 --- a/Content.Server/NPC/Systems/NPCSteeringSystem.Context.cs +++ b/Content.Server/NPC/Systems/NPCSteeringSystem.Context.cs @@ -385,7 +385,8 @@ private void CollisionAvoidance( EntityQuery bodyQuery, EntityQuery xformQuery) { - var detectionRadius = MathF.Max(1f, agentRadius); + var objectRadius = 0.15f; + var detectionRadius = MathF.Max(0.35f, agentRadius + objectRadius); foreach (var ent in _lookup.GetEntitiesInRange(uid, detectionRadius, LookupFlags.Static)) { @@ -400,31 +401,20 @@ private void CollisionAvoidance( continue; } - if (!_physics.TryGetNearestPoints(uid, ent, out var pointA, out var pointB, xform, xformQuery.GetComponent(ent))) + if (!_physics.TryGetNearestPoints(uid, ent, out _, out var pointB, xform, xformQuery.GetComponent(ent))) continue; - var obstacleDirection = pointB - pointA; + var obstacleDirection = pointB - worldPos; var obstableDistance = obstacleDirection.Length; - if (obstableDistance > detectionRadius) + if (obstableDistance > detectionRadius || obstableDistance == 0f) continue; - // Fallback to worldpos if we're colliding. - if (obstableDistance == 0f) - { - obstacleDirection = pointB - worldPos; - obstableDistance = obstacleDirection.Length; - - if (obstableDistance == 0f) - continue; - - obstableDistance = agentRadius; - } - dangerPoints.Add(pointB); obstacleDirection = offsetRot.RotateVec(obstacleDirection); var norm = obstacleDirection.Normalized; - var weight = obstableDistance <= agentRadius ? 1f : (detectionRadius - obstableDistance) / detectionRadius; + // Weight it to 1 if we used the fallback, otherwise relative distance. + var weight = obstableDistance <= agentRadius ? 1f : (obstableDistance - agentRadius) / objectRadius; for (var i = 0; i < InterestDirections; i++) { @@ -455,7 +445,8 @@ private void Separation( EntityQuery bodyQuery, EntityQuery xformQuery) { - var detectionRadius = MathF.Max(0.35f, agentRadius + 0.1f); + var objectRadius = 0.1f; + var detectionRadius = MathF.Max(0.35f, agentRadius + objectRadius); var ourVelocity = body.LinearVelocity; var factionQuery = GetEntityQuery(); factionQuery.TryGetComponent(uid, out var ourFaction); @@ -492,7 +483,7 @@ private void Separation( obstacleDirection = offsetRot.RotateVec(obstacleDirection); var norm = obstacleDirection.Normalized; - var weight = obstableDistance <= agentRadius ? 1f : (detectionRadius - obstableDistance) / detectionRadius; + var weight = obstableDistance <= agentRadius ? 1f : (obstableDistance - agentRadius) / objectRadius; weight *= 1f; for (var i = 0; i < InterestDirections; i++) From d1de9b1f40a1456cb96af0b94fc0e4a04063e384 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 1 Jun 2023 09:12:44 -0400 Subject: [PATCH 007/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index a627cec452..3c2bc926c5 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,10 +1,4 @@ Entries: -- author: PuroSlavKing - changes: - - {message: Added Centcom received an animated PDA with a Centcom pen as a gift!, - type: Add} - id: 3419 - time: '2023-04-15T22:43:15.0000000+00:00' - author: PuroSlavKing changes: - {message: Added use toy mouse like hat!, type: Add} @@ -2908,3 +2902,8 @@ Entries: - {message: Autolathe board economy crashed, type: Tweak} id: 3918 time: '2023-06-01T06:49:50.0000000+00:00' +- author: metalgearsloth + changes: + - {message: Fix NPCs getting stuck on corners., type: Fix} + id: 3919 + time: '2023-06-01T13:11:41.0000000+00:00' From 5b1af38277620273be8e6e11dd9abac176970a29 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Fri, 2 Jun 2023 00:28:23 +1000 Subject: [PATCH 008/474] More NPC steering fixes (#17042) --- .../NPC/Systems/NPCSteeringSystem.Context.cs | 64 ++++++++++++++----- .../NPC/Systems/NPCSteeringSystem.cs | 22 +++---- 2 files changed, 59 insertions(+), 27 deletions(-) diff --git a/Content.Server/NPC/Systems/NPCSteeringSystem.Context.cs b/Content.Server/NPC/Systems/NPCSteeringSystem.Context.cs index 55ae3c0b8b..7142eda037 100644 --- a/Content.Server/NPC/Systems/NPCSteeringSystem.Context.cs +++ b/Content.Server/NPC/Systems/NPCSteeringSystem.Context.cs @@ -401,20 +401,37 @@ private void CollisionAvoidance( continue; } - if (!_physics.TryGetNearestPoints(uid, ent, out _, out var pointB, xform, xformQuery.GetComponent(ent))) - continue; + var xformB = xformQuery.GetComponent(ent); - var obstacleDirection = pointB - worldPos; - var obstableDistance = obstacleDirection.Length; + if (!_physics.TryGetNearest(uid, ent, out var pointA, out var pointB, out var distance, xform, xformB)) + { + continue; + } - if (obstableDistance > detectionRadius || obstableDistance == 0f) + if (distance > detectionRadius) continue; - dangerPoints.Add(pointB); + var weight = 1f; + var obstacleDirection = pointB - pointA; + + // Inside each other so just use worldPos + if (distance == 0f) + { + obstacleDirection = _transform.GetWorldPosition(xformB, xformQuery) - worldPos; + + // Welp + if (obstacleDirection == Vector2.Zero) + { + obstacleDirection = Vector2.One.Normalized; + } + } + else + { + weight = distance / detectionRadius; + } + obstacleDirection = offsetRot.RotateVec(obstacleDirection); var norm = obstacleDirection.Normalized; - // Weight it to 1 if we used the fallback, otherwise relative distance. - var weight = obstableDistance <= agentRadius ? 1f : (obstableDistance - agentRadius) / objectRadius; for (var i = 0; i < InterestDirections; i++) { @@ -445,7 +462,7 @@ private void Separation( EntityQuery bodyQuery, EntityQuery xformQuery) { - var objectRadius = 0.1f; + var objectRadius = 0.25f; var detectionRadius = MathF.Max(0.35f, agentRadius + objectRadius); var ourVelocity = body.LinearVelocity; var factionQuery = GetEntityQuery(); @@ -470,21 +487,36 @@ private void Separation( var xformB = xformQuery.GetComponent(ent); - if (!_physics.TryGetNearestPoints(uid, ent, out _, out var pointB, xform, xformB)) + if (!_physics.TryGetNearest(uid, ent, out var pointA, out var pointB, out var distance, xform, xformB)) { continue; } - var obstacleDirection = pointB - worldPos; - var obstableDistance = obstacleDirection.Length; - - if (obstableDistance > detectionRadius || obstableDistance == 0f) + if (distance > detectionRadius) continue; + var weight = 1f; + var obstacleDirection = pointB - pointA; + + // Inside each other so just use worldPos + if (distance == 0f) + { + obstacleDirection = _transform.GetWorldPosition(xformB, xformQuery) - worldPos; + + // Welp + if (obstacleDirection == Vector2.Zero) + { + obstacleDirection = _random.NextAngle().ToVec(); + } + } + else + { + weight = distance / detectionRadius; + } + obstacleDirection = offsetRot.RotateVec(obstacleDirection); var norm = obstacleDirection.Normalized; - var weight = obstableDistance <= agentRadius ? 1f : (obstableDistance - agentRadius) / objectRadius; - weight *= 1f; + weight *= 0.25f; for (var i = 0; i < InterestDirections; i++) { diff --git a/Content.Server/NPC/Systems/NPCSteeringSystem.cs b/Content.Server/NPC/Systems/NPCSteeringSystem.cs index 6ea965fed4..5cdfe9799f 100644 --- a/Content.Server/NPC/Systems/NPCSteeringSystem.cs +++ b/Content.Server/NPC/Systems/NPCSteeringSystem.cs @@ -348,6 +348,17 @@ private void Steer( } DebugTools.Assert(!float.IsNaN(interest[0])); + // Don't steer too frequently to avoid twitchiness. + // This should also implicitly solve tie situations. + // I think doing this after all the ops above is best? + // Originally I had it way above but sometimes mobs would overshoot their tile targets. + + if (!forceSteer && steering.NextSteer > curTime) + { + SetDirection(mover, steering, steering.LastSteerDirection, false); + return; + } + // Avoid static objects like walls CollisionAvoidance(uid, offsetRot, worldPos, agentRadius, layer, mask, xform, danger, dangerPoints, bodyQuery, xformQuery); DebugTools.Assert(!float.IsNaN(danger[0])); @@ -376,17 +387,6 @@ private void Steer( resultDirection = new Angle(desiredDirection * InterestRadians).ToVec(); } - // Don't steer too frequently to avoid twitchiness. - // This should also implicitly solve tie situations. - // I think doing this after all the ops above is best? - // Originally I had it way above but sometimes mobs would overshoot their tile targets. - - if (!forceSteer && steering.NextSteer > curTime) - { - SetDirection(mover, steering, steering.LastSteerDirection, false); - return; - } - steering.NextSteer = curTime + TimeSpan.FromSeconds(1f / NPCSteeringComponent.SteeringFrequency); steering.LastSteerDirection = resultDirection; DebugTools.Assert(!float.IsNaN(resultDirection.X)); From a77d280c470fa559ea041df763c069f3081480fe Mon Sep 17 00:00:00 2001 From: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> Date: Thu, 1 Jun 2023 19:07:20 -0400 Subject: [PATCH 009/474] Anomaly point/stability tweaks (#17051) --- Content.Shared/Anomaly/Components/AnomalyComponent.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Content.Shared/Anomaly/Components/AnomalyComponent.cs b/Content.Shared/Anomaly/Components/AnomalyComponent.cs index ca3127e8ba..ff95e41940 100644 --- a/Content.Shared/Anomaly/Components/AnomalyComponent.cs +++ b/Content.Shared/Anomaly/Components/AnomalyComponent.cs @@ -112,7 +112,7 @@ public sealed class AnomalyComponent : Component /// This is more likely to trend upwards than donwards, because that's funny /// [DataField("pulseStabilityVariation")] - public Vector2 PulseStabilityVariation = (-0.125f, 0.20f); + public Vector2 PulseStabilityVariation = (-0.1f, 0.15f); /// /// The sound played when an anomaly pulses @@ -175,14 +175,14 @@ public sealed class AnomalyComponent : Component /// The minimum amount of research points generated per second /// [DataField("minPointsPerSecond")] - public int MinPointsPerSecond; + public int MinPointsPerSecond = 10; /// /// The maximum amount of research points generated per second /// This doesn't include the point bonus for being unstable. /// [DataField("maxPointsPerSecond")] - public int MaxPointsPerSecond = 75; + public int MaxPointsPerSecond = 80; /// /// The multiplier applied to the point value for the From d378319765857df11b7bc08c25197182f83ce348 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 1 Jun 2023 19:08:24 -0400 Subject: [PATCH 010/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 3c2bc926c5..2218e3aa80 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: PuroSlavKing - changes: - - {message: Added use toy mouse like hat!, type: Add} - id: 3420 - time: '2023-04-15T22:44:00.0000000+00:00' - author: EnDecc changes: - {message: 'The Janitorial Trolley now has an exclusive slot for the bucket, which @@ -2907,3 +2902,9 @@ Entries: - {message: Fix NPCs getting stuck on corners., type: Fix} id: 3919 time: '2023-06-01T13:11:41.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: Less severe anomalies now have higher baseline point output., type: Tweak} + - {message: Random anomaly stability fluctuation is less extreme., type: Tweak} + id: 3920 + time: '2023-06-01T23:07:20.0000000+00:00' From c40c2aac72de2a9f4f9a048be04134c8c58d0ad6 Mon Sep 17 00:00:00 2001 From: themias <89101928+themias@users.noreply.github.com> Date: Thu, 1 Jun 2023 20:43:28 -0400 Subject: [PATCH 011/474] Fix failing MaterialArbitrageTest (#17047) --- .../Objects/Devices/Circuitboards/Machine/production.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml index ae0756ff8b..2f6eac4ebf 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml @@ -465,6 +465,10 @@ Capacitor: 2 materialRequirements: Cable: 5 + - type: PhysicalComposition + materialComposition: + Steel: 30 + Plastic: 30 - type: StaticPrice price: 15 @@ -483,6 +487,10 @@ Capacitor: 2 materialRequirements: CableMV: 5 + - type: PhysicalComposition + materialComposition: + Steel: 30 + Plastic: 30 - type: StaticPrice price: 15 From 6434522d66573c07a6c0f35ee42a8fc830fedc75 Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Fri, 2 Jun 2023 12:47:24 +1200 Subject: [PATCH 012/474] Fix release mode tag test (#17053) --- Content.IntegrationTests/Tests/Tag/TagTest.cs | 64 ++++++++++--------- 1 file changed, 34 insertions(+), 30 deletions(-) diff --git a/Content.IntegrationTests/Tests/Tag/TagTest.cs b/Content.IntegrationTests/Tests/Tag/TagTest.cs index 0fa425dfef..1b9c313093 100644 --- a/Content.IntegrationTests/Tests/Tag/TagTest.cs +++ b/Content.IntegrationTests/Tests/Tag/TagTest.cs @@ -119,36 +119,6 @@ await server.WaitAssertion(() => sPrototypeManager.Index(UnregisteredTag); }); - // Single - Assert.Throws(() => - { - tagSystem.HasTag(sTagDummy, UnregisteredTag); - }); - Assert.Throws(() => - { - tagSystem.HasTag(sTagComponent, UnregisteredTag); - }); - - // Any - Assert.Throws(() => - { - tagSystem.HasAnyTag(sTagDummy, UnregisteredTag); - }); - Assert.Throws(() => - { - tagSystem.HasAnyTag(sTagComponent, UnregisteredTag); - }); - - // All - Assert.Throws(() => - { - tagSystem.HasAllTags(sTagDummy, UnregisteredTag); - }); - Assert.Throws(() => - { - tagSystem.HasAllTags(sTagComponent, UnregisteredTag); - }); - // Cannot add the starting tag again Assert.That(tagSystem.AddTag(sTagComponent, StartingTag), Is.False); Assert.That(tagSystem.AddTags(sTagComponent, StartingTag, StartingTag), Is.False); @@ -215,6 +185,40 @@ await server.WaitAssertion(() => // No tags left in the component Assert.That(sTagComponent.Tags, Is.Empty); + + #if !DEBUG + return; + #endif + + // Single + Assert.Throws(() => + { + tagSystem.HasTag(sTagDummy, UnregisteredTag); + }); + Assert.Throws(() => + { + tagSystem.HasTag(sTagComponent, UnregisteredTag); + }); + + // Any + Assert.Throws(() => + { + tagSystem.HasAnyTag(sTagDummy, UnregisteredTag); + }); + Assert.Throws(() => + { + tagSystem.HasAnyTag(sTagComponent, UnregisteredTag); + }); + + // All + Assert.Throws(() => + { + tagSystem.HasAllTags(sTagDummy, UnregisteredTag); + }); + Assert.Throws(() => + { + tagSystem.HasAllTags(sTagComponent, UnregisteredTag); + }); }); await pairTracker.CleanReturnAsync(); } From b4803b0bbf6efac6272362e790a4b6f70c6103b1 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Fri, 2 Jun 2023 02:48:42 +0200 Subject: [PATCH 013/474] Handcuffs don't handle interaction events if target isn't cuffable. (#17050) --- Content.Shared/Cuffs/SharedCuffableSystem.cs | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/Content.Shared/Cuffs/SharedCuffableSystem.cs b/Content.Shared/Cuffs/SharedCuffableSystem.cs index 5fa4d5989f..d037f063fe 100644 --- a/Content.Shared/Cuffs/SharedCuffableSystem.cs +++ b/Content.Shared/Cuffs/SharedCuffableSystem.cs @@ -255,8 +255,8 @@ private void OnCuffAfterInteract(EntityUid uid, HandcuffComponent component, Aft return; } - TryCuffing(args.User, target, uid, component); - args.Handled = true; + var result = TryCuffing(args.User, target, uid, component); + args.Handled = result; } private void OnCuffMeleeHit(EntityUid uid, HandcuffComponent component, MeleeHitEvent args) @@ -422,10 +422,11 @@ public bool TryAddNewCuffs(EntityUid target, EntityUid user, EntityUid handcuff, return true; } - public void TryCuffing(EntityUid user, EntityUid target, EntityUid handcuff, HandcuffComponent? handcuffComponent = null, CuffableComponent? cuffable = null) + /// False if the target entity isn't cuffable. + public bool TryCuffing(EntityUid user, EntityUid target, EntityUid handcuff, HandcuffComponent? handcuffComponent = null, CuffableComponent? cuffable = null) { if (!Resolve(handcuff, ref handcuffComponent) || !Resolve(target, ref cuffable, false)) - return; + return false; if (!TryComp(target, out var hands)) { @@ -434,7 +435,7 @@ public void TryCuffing(EntityUid user, EntityUid target, EntityUid handcuff, Han _popup.PopupEntity(Loc.GetString("handcuff-component-target-has-no-hands-error", ("targetName", Identity.Name(target, EntityManager, user))), user, user); } - return; + return true; } if (cuffable.CuffedHandCount >= hands.Count) @@ -444,7 +445,7 @@ public void TryCuffing(EntityUid user, EntityUid target, EntityUid handcuff, Han _popup.PopupEntity(Loc.GetString("handcuff-component-target-has-no-free-hands-error", ("targetName", Identity.Name(target, EntityManager, user))), user, user); } - return; + return true; } var cuffTime = handcuffComponent.CuffTime; @@ -464,7 +465,7 @@ public void TryCuffing(EntityUid user, EntityUid target, EntityUid handcuff, Han }; if (!_doAfter.TryStartDoAfter(doAfterEventArgs)) - return; + return true; if (_net.IsServer) { @@ -487,6 +488,7 @@ public void TryCuffing(EntityUid user, EntityUid target, EntityUid handcuff, Han } _audio.PlayPredicted(handcuffComponent.StartCuffSound, handcuff, user); + return true; } /// From c8e8057c3a306192658e3a5302b034f09666778e Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 1 Jun 2023 20:49:46 -0400 Subject: [PATCH 014/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 2218e3aa80..09ff7d7530 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,17 +1,4 @@ Entries: -- author: EnDecc - changes: - - {message: 'The Janitorial Trolley now has an exclusive slot for the bucket, which - can be utilized the same way as the mop by alt-clicking the cart with the bucket. - It also keeps its reagents!', type: Add} - - {message: 'Significantly deepened the water container of the Janitorial Trolley - from 500u > 800u, to try and make up for its heavyweight nature. Additionally, - slightly reduced said heavyweight nature by lowering density from 350 > 250, - allowing it to be pulled somewhat faster.', type: Tweak} - - {message: 'Slightly deepened the Mop Bucket (the yellow one) from 500u > 600u, - requiring a bit less back-and-forth between fills for some QoL.', type: Tweak} - id: 3421 - time: '2023-04-15T22:46:00.0000000+00:00' - author: DogZeroX changes: - {message: Water is no longer slippery., type: Remove} @@ -2908,3 +2895,9 @@ Entries: - {message: Random anomaly stability fluctuation is less extreme., type: Tweak} id: 3920 time: '2023-06-01T23:07:20.0000000+00:00' +- author: PJB3005 + changes: + - {message: 'Handcuffs don''t eat all interaction events anymore, so you can put + them in disposal bins, backpacks, etc.', type: Fix} + id: 3921 + time: '2023-06-02T00:48:43.0000000+00:00' From 3bebb0d5e798cd06f3c41c89e76f905097b41286 Mon Sep 17 00:00:00 2001 From: Chief-Engineer <119664036+Chief-Engineer@users.noreply.github.com> Date: Thu, 1 Jun 2023 19:50:17 -0500 Subject: [PATCH 015/474] bypass interaction range checks for aghosts (#16955) --- .../Interaction/SharedInteractionSystem.cs | 20 +++++++++++++++---- .../Entities/Mobs/Player/admin_ghost.yml | 1 + .../Entities/Mobs/Player/observer.yml | 3 +++ Resources/Prototypes/tags.yml | 3 +++ 4 files changed, 23 insertions(+), 4 deletions(-) diff --git a/Content.Shared/Interaction/SharedInteractionSystem.cs b/Content.Shared/Interaction/SharedInteractionSystem.cs index 7f77322d9c..26dcae91cc 100644 --- a/Content.Shared/Interaction/SharedInteractionSystem.cs +++ b/Content.Shared/Interaction/SharedInteractionSystem.cs @@ -21,6 +21,7 @@ using Content.Shared.Popups; using Content.Shared.Pulling; using Content.Shared.Pulling.Components; +using Content.Shared.Tag; using Content.Shared.Throwing; using Content.Shared.Timing; using Content.Shared.Verbs; @@ -66,6 +67,7 @@ public abstract partial class SharedInteractionSystem : EntitySystem [Dependency] private readonly SharedPullingSystem _pullSystem = default!; [Dependency] private readonly InventorySystem _inventory = default!; [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly TagSystem _tagSystem = default!; private const CollisionGroup InRangeUnobstructedMask = CollisionGroup.Impassable | CollisionGroup.InteractImpassable; @@ -254,7 +256,7 @@ private bool ShouldCheckAccess(EntityUid user) { // This is for Admin/mapping convenience. If ever there are other ghosts that can still interact, this check // might need to be more selective. - return !HasComp(user); + return !_tagSystem.HasTag(user, "BypassInteractionRangeChecks"); } /// @@ -474,6 +476,7 @@ public float UnobstructedDistance( /// A predicate to check whether to ignore an entity or not. /// If it returns true, it will be ignored. /// + /// Perform range checks /// /// True if the two points are within a given range without being obstructed. /// @@ -482,12 +485,16 @@ public bool InRangeUnobstructed( MapCoordinates other, float range = InteractionRange, CollisionGroup collisionMask = InRangeUnobstructedMask, - Ignored? predicate = null) + Ignored? predicate = null, + bool checkAccess = true) { // Have to be on same map regardless. if (other.MapId != origin.MapId) return false; + if (!checkAccess) + return true; + var dir = other.Position - origin.Position; var length = dir.Length; @@ -602,6 +609,11 @@ public bool InRangeUnobstructed( { return true; } + // Entity can bypass range checks. + else if (!ShouldCheckAccess(origin)) + { + return true; + } // Out of range so don't raycast. else if (distance > range) { @@ -626,7 +638,7 @@ public bool InRangeUnobstructed( if (inRange) { var rayPredicate = GetPredicate(originPos, other, targetPos, targetRot, collisionMask, combinedPredicate); - inRange = InRangeUnobstructed(originPos, targetPos, range, collisionMask, rayPredicate); + inRange = InRangeUnobstructed(originPos, targetPos, range, collisionMask, rayPredicate, ShouldCheckAccess(origin)); } if (!inRange && popup && _gameTiming.IsFirstTimePredicted) @@ -772,7 +784,7 @@ public bool InRangeUnobstructed( { Ignored combinedPredicate = e => e == origin || (predicate?.Invoke(e) ?? false); var originPosition = Transform(origin).MapPosition; - var inRange = InRangeUnobstructed(originPosition, other, range, collisionMask, combinedPredicate); + var inRange = InRangeUnobstructed(originPosition, other, range, collisionMask, combinedPredicate, ShouldCheckAccess(origin)); if (!inRange && popup && _gameTiming.IsFirstTimePredicted) { diff --git a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml index 59381a5e5f..dde4205e0c 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml @@ -10,6 +10,7 @@ - type: Tag tags: - CanPilot + - BypassInteractionRangeChecks - type: Input context: "aghost" - type: Ghost diff --git a/Resources/Prototypes/Entities/Mobs/Player/observer.yml b/Resources/Prototypes/Entities/Mobs/Player/observer.yml index 4c2072f18a..1576b40371 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/observer.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/observer.yml @@ -60,3 +60,6 @@ baseSprintSpeed: 8 baseWalkSpeed: 5 - type: MovementIgnoreGravity + - type: Tag + tags: + - BypassInteractionRangeChecks diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index fbfaa252f2..1701915d4b 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -73,6 +73,9 @@ - type: Tag id: BulletFoam +- type: Tag + id: BypassInteractionRangeChecks + - type: Tag id: CableCoil From 87e10f8ef7224033ac3fd6ca82ff0d0d872ea5b3 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 1 Jun 2023 20:51:21 -0400 Subject: [PATCH 016/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 09ff7d7530..03c4a3bb25 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: DogZeroX - changes: - - {message: Water is no longer slippery., type: Remove} - id: 3422 - time: '2023-04-16T02:31:53.0000000+00:00' - author: mirrorcult changes: - {message: we Lied. Water is slippery still., type: Add} @@ -2901,3 +2896,9 @@ Entries: them in disposal bins, backpacks, etc.', type: Fix} id: 3921 time: '2023-06-02T00:48:43.0000000+00:00' +- author: Chief-Engineer + changes: + - {message: 'Ghosts can perform interactions, like fully examining things, at any + range', type: Tweak} + id: 3922 + time: '2023-06-02T00:50:17.0000000+00:00' From a9e03f60f3ae587869a23288fbae8fb9059c1766 Mon Sep 17 00:00:00 2001 From: icesickleone <132941221+icesickleone@users.noreply.github.com> Date: Fri, 2 Jun 2023 01:53:24 +0100 Subject: [PATCH 017/474] Fix cowelding tool healing blunt damage (#17046) --- Resources/Prototypes/Entities/Objects/Tools/cowtools.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Objects/Tools/cowtools.yml b/Resources/Prototypes/Entities/Objects/Tools/cowtools.yml index 0d62217f9f..d500ef141c 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/cowtools.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/cowtools.yml @@ -134,7 +134,7 @@ litMeleeDamageBonus: types: # When lit, negate standard melee damage and replace with heat Heat: 0.5 - Blunt: -10 + Blunt: -5 - type: entity name: milkalyzer From f1614cd28c3f7ba6218be2f861a213cced2a2e6c Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 1 Jun 2023 20:54:28 -0400 Subject: [PATCH 018/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 03c4a3bb25..30b010ec4d 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: mirrorcult - changes: - - {message: we Lied. Water is slippery still., type: Add} - id: 3423 - time: '2023-04-16T02:42:55.0000000+00:00' - author: Scribbles0 changes: - {message: Chemists now get a medical survival box instead of a normal survival @@ -2902,3 +2897,8 @@ Entries: range', type: Tweak} id: 3922 time: '2023-06-02T00:50:17.0000000+00:00' +- author: icesickleone + changes: + - {message: Cowelding tool no longer heals blunt damage when lit, type: Fix} + id: 3923 + time: '2023-06-02T00:53:25.0000000+00:00' From 4be515b8e273e253e05635fd214e2b57f459c605 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Fri, 2 Jun 2023 03:13:56 +0200 Subject: [PATCH 019/474] Storage bugfixes. (#17011) --- .../Storage/EntitySystems/StorageSystem.cs | 61 +++++++++++++++++-- .../en-US/components/storage-component.ftl | 3 +- 2 files changed, 57 insertions(+), 7 deletions(-) diff --git a/Content.Server/Storage/EntitySystems/StorageSystem.cs b/Content.Server/Storage/EntitySystems/StorageSystem.cs index 829101dccf..9ce1585c9c 100644 --- a/Content.Server/Storage/EntitySystems/StorageSystem.cs +++ b/Content.Server/Storage/EntitySystems/StorageSystem.cs @@ -173,8 +173,11 @@ private void OnInteractUsing(EntityUid uid, ServerStorageComponent storageComp, if (HasComp(uid)) return; - if (PlayerInsertHeldEntity(uid, args.User, storageComp)) - args.Handled = true; + PlayerInsertHeldEntity(uid, args.User, storageComp); + // Always handle it, even if insertion fails. + // We don't want to trigger any AfterInteract logic here. + // Example bug: placing wires if item doesn't fit in backpack. + args.Handled = true; } /// @@ -517,11 +520,19 @@ public bool CanInsert(EntityUid uid, EntityUid insertEnt, out string? reason, Se return false; } - if (!HasComp(insertEnt) && TryComp(insertEnt, out ItemComponent? itemComp) && + if (TryComp(insertEnt, out ItemComponent? itemComp) && itemComp.Size > storageComp.StorageCapacityMax - storageComp.StorageUsed) { - reason = "comp-storage-insufficient-capacity"; - return false; + // If this is a stack, we may be able to combine it with an existing stack in the storage. + // If so, no extra space would be used. + // + // TODO: This doesn't allow any sort of top-up behavior. + // You either combine the whole stack, or insert nothing. + if (!TryComp(insertEnt, out StackComponent? stackComp) || !CanCombineStacks(storageComp, stackComp)) + { + reason = "comp-storage-insufficient-capacity"; + return false; + } } reason = null; @@ -599,6 +610,29 @@ public bool Insert(EntityUid uid, EntityUid insertEnt, ServerStorageComponent? s return true; } + private bool CanCombineStacks( + ServerStorageComponent storageComp, + StackComponent stack) + { + if (storageComp.Storage == null) + return false; + + var stackQuery = GetEntityQuery(); + var countLeft = stack.Count; + foreach (var ent in storageComp.Storage.ContainedEntities) + { + if (!stackQuery.TryGetComponent(ent, out var destStack)) + continue; + + if (destStack.StackTypeId != stack.StackTypeId) + continue; + + countLeft -= _stack.GetAvailableSpace(stack); + } + + return countLeft <= 0; + } + // REMOVE: remove and drop on the ground public bool RemoveAndDrop(EntityUid uid, EntityUid removeEnt, ServerStorageComponent? storageComp = null) { @@ -624,12 +658,18 @@ public bool PlayerInsertHeldEntity(EntityUid uid, EntityUid player, ServerStorag var toInsert = hands.ActiveHandEntity; - if (!CanInsert(uid, toInsert.Value, out var reason, storageComp) || !_sharedHandsSystem.TryDrop(player, toInsert.Value, handsComp: hands)) + if (!CanInsert(uid, toInsert.Value, out var reason, storageComp)) { Popup(uid, player, reason ?? "comp-storage-cant-insert", storageComp); return false; } + if (!_sharedHandsSystem.TryDrop(player, toInsert.Value, handsComp: hands)) + { + PopupEnt(uid, player, "comp-storage-cant-drop", toInsert.Value, storageComp); + return false; + } + return PlayerInsertEntityInWorld(uid, player, toInsert.Value, storageComp); } @@ -725,5 +765,14 @@ private void Popup(EntityUid uid, EntityUid player, string message, ServerStorag _popupSystem.PopupEntity(Loc.GetString(message), player, player); } + + private void PopupEnt(EntityUid uid, EntityUid player, string message, EntityUid entityUid, + ServerStorageComponent storageComp) + { + if (!storageComp.ShowPopup) + return; + + _popupSystem.PopupEntity(Loc.GetString(message, ("entity", entityUid)), player, player); + } } } diff --git a/Resources/Locale/en-US/components/storage-component.ftl b/Resources/Locale/en-US/components/storage-component.ftl index f2107ce81c..a6d542e4fb 100644 --- a/Resources/Locale/en-US/components/storage-component.ftl +++ b/Resources/Locale/en-US/components/storage-component.ftl @@ -1,8 +1,9 @@ comp-storage-no-item-size = N/A comp-storage-cant-insert = Can't insert. comp-storage-insufficient-capacity = Insufficient capacity. -comp-storage-invalid-container = Invalid container for this item. +comp-storage-invalid-container = This doesn't go in there! comp-storage-anchored-failure = Can't insert an anchored item. +comp-storage-cant-drop = You can't let go of { THE($entity) }! comp-storage-window-title = Storage Item comp-storage-window-volume = Items: { $itemCount }, Stored: { $usedVolume }/{ $maxVolume } comp-storage-window-volume-unlimited = Items: { $itemCount } From 2c6d72bf539b9245fc841119170eaa19373cac52 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 1 Jun 2023 21:15:00 -0400 Subject: [PATCH 020/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 30b010ec4d..7e50a354e5 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Scribbles0 - changes: - - {message: Chemists now get a medical survival box instead of a normal survival - box., type: Tweak} - - {message: 'Most medical techfab recipes have been changed to be available immediately, - rather than relying on science.', type: Tweak} - id: 3424 - time: '2023-04-16T05:52:46.0000000+00:00' - author: DogZeroX changes: - {message: SpaceLube is slippery again, type: Fix} @@ -2902,3 +2894,12 @@ Entries: - {message: Cowelding tool no longer heals blunt damage when lit, type: Fix} id: 3923 time: '2023-06-02T00:53:25.0000000+00:00' +- author: PJB3005 + changes: + - {message: Avoid doing actions like placing wires if you fail to insert something + into a backpack., type: Tweak} + - {message: Improved error messages for storage items., type: Tweak} + - {message: Stacks don't get dropped on the ground anymore if they can't fit in + a storage item., type: Fix} + id: 3924 + time: '2023-06-02T01:13:56.0000000+00:00' From 1c91205b935df99b01451d69abe8d513df00995b Mon Sep 17 00:00:00 2001 From: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> Date: Thu, 1 Jun 2023 21:36:33 -0400 Subject: [PATCH 021/474] add ointment and bruise packs to medfab (#17054) --- .../Objects/Specific/Medical/healing.yml | 16 ++++++++++++++++ .../Entities/Structures/Machines/lathe.yml | 2 ++ .../Prototypes/Recipes/Lathes/medical.yml | 18 +++++++++++++++++- 3 files changed, 35 insertions(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml index 8cfd7241fb..451e26cc0e 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml @@ -43,6 +43,14 @@ - type: StackPrice price: 10 +- type: entity + id: Ointment1 + parent: Ointment + components: + - type: Stack + stackType: Ointment + count: 1 + - type: entity name: bruise pack description: A therapeutic gel pack and bandages designed to treat blunt-force trauma. @@ -69,6 +77,14 @@ - type: StackPrice price: 10 +- type: entity + id: Brutepack1 + parent: Brutepack + components: + - type: Stack + stackType: Brutepack + count: 1 + - type: entity name: blood pack description: Contains a groundbreaking universal blood replacement created by Nanotrasen's advanced medical science. diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index 9f3dc0fc6b..627f4a9261 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -484,6 +484,8 @@ idleState: icon runningState: icon staticRecipes: + - Brutepack + - Ointment - HandLabeler - Defibrillator - HandheldHealthAnalyzer diff --git a/Resources/Prototypes/Recipes/Lathes/medical.yml b/Resources/Prototypes/Recipes/Lathes/medical.yml index 8336260033..69e9b2d093 100644 --- a/Resources/Prototypes/Recipes/Lathes/medical.yml +++ b/Resources/Prototypes/Recipes/Lathes/medical.yml @@ -48,6 +48,22 @@ materials: Plastic: 300 +- type: latheRecipe + id: Brutepack + result: Brutepack1 + completetime: 1 + materials: + Steel: 25 + Plastic: 25 + +- type: latheRecipe + id: Ointment + result: Ointment1 + completetime: 1 + materials: + Glass: 25 + Plastic: 25 + - type: latheRecipe id: HandheldCrewMonitor result: HandheldCrewMonitorEmpty @@ -180,4 +196,4 @@ name: hand labeler completetime: 2 materials: - Plastic: 100 \ No newline at end of file + Plastic: 100 From 821f4cc3d4427510869894ea3a97d88a1bd418f7 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 1 Jun 2023 21:37:37 -0400 Subject: [PATCH 022/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 7e50a354e5..fed9a0ad4f 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: DogZeroX - changes: - - {message: SpaceLube is slippery again, type: Fix} - id: 3425 - time: '2023-04-16T05:53:47.0000000+00:00' - author: Nimfar changes: - {message: 'Gun safe for SO, now weapons can be stored in even more security', @@ -2903,3 +2898,8 @@ Entries: a storage item., type: Fix} id: 3924 time: '2023-06-02T01:13:56.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: Added bruise packs and ointment to medical techfab., type: Add} + id: 3925 + time: '2023-06-02T01:36:33.0000000+00:00' From 9852bba84776ad914f5607bb00a393c0cd0aff29 Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Fri, 2 Jun 2023 08:40:18 +0300 Subject: [PATCH 023/474] Fix drinks.yml physicalDesc (#17063) --- Resources/Prototypes/Reagents/Consumable/Drink/drinks.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Resources/Prototypes/Reagents/Consumable/Drink/drinks.yml b/Resources/Prototypes/Reagents/Consumable/Drink/drinks.yml index 924a80c73c..665cab7bd5 100644 --- a/Resources/Prototypes/Reagents/Consumable/Drink/drinks.yml +++ b/Resources/Prototypes/Reagents/Consumable/Drink/drinks.yml @@ -369,7 +369,7 @@ name: reagent-name-kira-special parent: BaseDrink desc: reagent-desc-kira-special - physicalDesc: strong-smelling + physicalDesc: reagent-physical-desc-strong-smelling flavor: sweet color: "#CCCC99" metamorphicSprite: @@ -381,7 +381,7 @@ name: reagent-name-rewriter parent: BaseDrink desc: reagent-desc-rewriter - physicalDesc: strong-smelling + physicalDesc: reagent-physical-desc-strong-smelling flavor: sweet color: "#485000" metamorphicSprite: From 777c0f5a3a3364e25e3d1ca35ea39b3282bb7224 Mon Sep 17 00:00:00 2001 From: Emisse <99158783+Emisse@users.noreply.github.com> Date: Thu, 1 Jun 2023 23:46:58 -0600 Subject: [PATCH 024/474] meta update (#17062) --- Resources/Maps/meta.yml | 820 +++++++++++++++++++++++----------------- 1 file changed, 471 insertions(+), 349 deletions(-) diff --git a/Resources/Maps/meta.yml b/Resources/Maps/meta.yml index b2e4aaee71..5f4464fbbe 100644 --- a/Resources/Maps/meta.yml +++ b/Resources/Maps/meta.yml @@ -62,22 +62,22 @@ entities: - chunks: -1,0: ind: -1,0 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAABcAAAAXAAACFwAAAhcAAAMXAAAAFwAAARcAAAMXAAAAFwAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAAXAAACFwAAABcAAAIXAAACFwAAARcAAAAXAAAAFwAAARcAAAJfAAAAXwAAAE8AAABfAAAAXwAAAF8AAAAXAAAAFwAAABcAAAIXAAACFwAAAxcAAAEXAAAAFwAAABcAAAIXAAAARQAAAl8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAABFwAAAxcAAAAXAAABFwAAAhcAAAMXAAAAFwAAAUUAAABfAAAATwAAAF8AAABfAAAAXgAAAF4AAABfAAAAFwAAAhcAAAMXAAAAFwAAARcAAAAXAAAAFwAAABcAAAJFAAACXwAAAF8AAABfAAAAXwAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAF8AAABPAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAUUAAANFAAADRQAAAkUAAAFFAAABRQAAAEUAAAFFAAAARQAAAUUAAAFFAAABRQAAAkUAAABFAAABRQAAAEUAAANFAAABRQAAA0UAAABFAAAARQAAAUUAAAFFAAACRQAAAkUAAABFAAABRQAAAEUAAAJFAAACRQAAAkUAAAJFAAACRQAAAkUAAAFFAAADRQAAAkUAAAFFAAADRQAAAkUAAANFAAAARQAAAEUAAAFFAAACRQAAAUUAAAAXAAADFwAAAhcAAAFfAAAAXwAAABcAAANfAAAAXwAAAEUAAAFFAAACRQAAA0UAAABFAAADRQAAAUUAAABFAAADXwAAAF8AAABfAAAAXwAAABcAAAMXAAABFwAAAl8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAANFAAADXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAFwAAAV8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAEUAAANFAAADRQAAAl8AAABeAAAAXwAAAF8AAABfAAAAFwAAAhcAAAMXAAACXwAAAF8AAABfAAAAXgAAAF8AAABFAAAARQAAAUUAAAIXAAABAAAAAF8AAAAXAAAADwAAAA8AAAAXAAAADwAAAA8AAAAXAAACXwAAAAAAAABfAAAARQAAAkUAAANFAAABXwAAAA== + tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAABcAAAAXAAACFwAAAhcAAAMXAAAAFwAAARcAAAMXAAAAFwAAAV8AAABfAAAAXwAAAF8AAABfAAAAUAAAABcAAAAXAAACFwAAABcAAAIXAAACFwAAARcAAAAXAAAAFwAAARcAAAJfAAAAXwAAAE8AAABfAAAAXwAAAF8AAAAXAAAAFwAAABcAAAIXAAACFwAAAxcAAAEXAAAAFwAAABcAAAIXAAAARQAAAl8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAABFwAAAxcAAAAXAAABFwAAAhcAAAMXAAAAFwAAAUUAAABfAAAATwAAAF8AAABfAAAAXgAAAF4AAABfAAAAFwAAAhcAAAMXAAAAFwAAARcAAAAXAAAAFwAAABcAAAJFAAACUAAAAF8AAABfAAAAXwAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAF8AAABPAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAUUAAANFAAADRQAAAkUAAAFFAAABRQAAAEUAAAFFAAAARQAAAUUAAAFFAAABRQAAAkUAAABFAAABRQAAAEUAAANFAAABRQAAA0UAAABFAAAARQAAAUUAAAFFAAACRQAAAkUAAABFAAABRQAAAEUAAAJFAAACRQAAAkUAAAJFAAACRQAAAkUAAAFFAAADRQAAAkUAAAFFAAADRQAAAkUAAANFAAAARQAAAEUAAAFFAAACRQAAAUUAAAAXAAADFwAAAhcAAAFfAAAAXwAAABcAAANfAAAAXwAAAEUAAAFFAAACRQAAA0UAAABFAAADRQAAAUUAAABFAAADXwAAAF8AAABfAAAAXwAAABcAAAMXAAABFwAAAl8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAANFAAADXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAFwAAAV8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAEUAAANFAAADRQAAAl8AAABeAAAAXwAAAF8AAABfAAAAFwAAAhcAAAMXAAACXwAAAF8AAABfAAAAXgAAAF8AAABFAAAARQAAAUUAAAIXAAABAAAAAF8AAAAXAAAADwAAAA8AAAAXAAAADwAAAA8AAAAXAAACXwAAAAAAAABfAAAARQAAAkUAAANFAAABXwAAAA== 0,0: ind: 0,0 tiles: FwAAAhcAAAIXAAADFwAAAxcAAAIXAAAAXwAAABcAAAAXAAABFwAAABcAAAAXAAABXwAAAF8AAABfAAAARQAAAxcAAAIXAAADFwAAAxcAAAMXAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAABXwAAAF8AAABfAAAAXwAAAEUAAAIXAAACFwAAABcAAAIXAAACFwAAAF8AAAAmAAAAJgAAACYAAAAXAAABFwAAARcAAAEXAAABFwAAAF8AAABFAAACFwAAARcAAAEXAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAAJcAAAAKwAAACsAAABfAAAARQAAARcAAAMXAAABFwAAAl8AAABeAAAAXgAAAF8AAABcAAABXAAAAFwAAABcAAADXAAAAlwAAAJcAAADXwAAAEUAAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAABfAAAAXAAAAVwAAABcAAABXAAAAlwAAANcAAACXAAAAl8AAABFAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAABcAAAIXAAAAFwAAABcAAAIXAAAAFwAAAxcAAABfAAAARQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAADRQAAAkUAAANFAAAARQAAAEUAAANFAAABRQAAAUUAAABFAAADRQAAA0UAAABFAAACRQAAAkUAAANFAAADRQAAAEUAAAJFAAACRQAAA0UAAABFAAABRQAAAkUAAAJFAAABRQAAAUUAAANFAAAARQAAA0UAAANFAAADRQAAAUUAAABFAAADRQAAAUUAAABFAAAARQAAAUUAAANFAAABRQAAAUUAAAFFAAABRQAAA0UAAANFAAADRQAAA0UAAABFAAAARQAAAEUAAAJfAAAAXwAAAF8AAAAXAAABXwAAAF8AAABfAAAAXwAAAEUAAAJFAAACXwAAAF8AAAAXAAABXwAAAF8AAABfAAAAXwAAABcAAAAXAAABFwAAAxcAAAEXAAABXwAAAEUAAABFAAABRQAAAkUAAANfAAAAXwAAABcAAAAXAAADFwAAAhcAAAMXAAABFwAAAhcAAAIXAAADFwAAA18AAABFAAACRQAAA0UAAABFAAACRQAAAUUAAAIXAAABFwAAARcAAAMXAAACFwAAAxcAAAIXAAABFwAAARcAAAMXAAACRQAAAEUAAAJFAAACRQAAAUUAAABfAAAAFwAAAhcAAAAXAAAAFwAAAxcAAAIXAAACFwAAAhcAAAEXAAACXwAAAEUAAAFFAAABRQAAAUUAAANFAAACRQAAAA== 0,-1: ind: 0,-1 - tiles: XAAAAVwAAAJcAAADXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAAAXAAADRQAAAVwAAABcAAADXAAAAl8AAAAAAAAAXwAAADsAAAAtAAAALQAAAC0AAAA7AAAAXwAAAAAAAABfAAAAFwAAAkUAAANcAAADXAAAAVwAAABfAAAAAAAAAF8AAAA7AAAAOwAAADsAAAA7AAAAOwAAAF8AAAAAAAAAXwAAABcAAANFAAADXwAAAF8AAABfAAAAXwAAAAAAAABfAAAAOwAAADsAAAA7AAAAOwAAADsAAABfAAAAAAAAAF8AAAAXAAADRQAAAUUAAAFfAAAAXgAAAF8AAABeAAAAXwAAAF8AAABfAAAAFwAAAV8AAABfAAAAXwAAAF4AAABfAAAAFwAAAEUAAAJFAAAAXwAAAF4AAABfAAAAAAAAAAAAAABeAAAAXwAAABcAAAJfAAAAXgAAAAAAAAAAAAAAXwAAABcAAAFFAAACRQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAANFAAABRQAAAEUAAAFFAAACRQAAA0UAAABFAAADRQAAAUUAAANFAAAARQAAAEUAAABFAAAARQAAAUUAAABFAAADRQAAAEUAAAJFAAADRQAAAkUAAAFFAAABRQAAAkUAAAJFAAACRQAAA0UAAAFFAAABRQAAA0UAAANFAAAAXwAAAF8AAABfAAAAFwAAAxcAAAJfAAAAXwAAAFwAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAATIAAAAyAAAAXwAAABcAAAMXAAAAXwAAABcAAAFcAAACXAAAA1wAAABcAAABXAAAA18AAABfAAAAXwAAAEUAAAMyAAAAMgAAABcAAAEXAAABFwAAABcAAAAXAAABXAAAA1wAAABcAAACXAAAAFwAAAJfAAAAXwAAAF8AAABFAAAAMgAAADIAAABfAAAAFwAAAhcAAABfAAAAFwAAAVwAAAJcAAACXAAAAlwAAAFcAAAAXwAAAF8AAABfAAAARQAAAF8AAAAXAAAAXwAAABcAAAMXAAADXwAAABcAAAJcAAAAXAAAAFwAAAFcAAADXAAAAF8AAABfAAAAXwAAAEUAAANfAAAAXwAAAF8AAAAXAAACFwAAAl8AAABfAAAAXAAAA1wAAANcAAAAXAAAAlwAAAJfAAAAXwAAAF8AAABFAAACFwAAARcAAAMXAAADFwAAARcAAAAXAAACXwAAAFwAAAFcAAABXAAAAFwAAAJcAAACXwAAAF8AAABfAAAARQAAAw== + tiles: XAAAAVwAAAJcAAADXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAAAXAAADRQAAAVwAAABcAAADXAAAAl8AAAAAAAAAXwAAADsAAAAtAAAALQAAAC0AAAA7AAAAXwAAAAAAAABfAAAAFwAAAkUAAANcAAADXAAAAVwAAABfAAAAAAAAAF8AAAA7AAAAOwAAADsAAAA7AAAAOwAAAF8AAAAAAAAAXwAAABcAAANFAAADXwAAAF8AAABfAAAAXwAAAAAAAABfAAAAOwAAADsAAAA7AAAAOwAAADsAAABfAAAAAAAAAF8AAAAXAAADRQAAAUUAAAFfAAAAXgAAAF8AAABeAAAAXwAAAF8AAABfAAAAFwAAAV8AAABfAAAAXwAAAF4AAABfAAAAFwAAAEUAAAJFAAAAXwAAAF4AAABfAAAAAAAAAAAAAABeAAAAXwAAABcAAAJfAAAAXgAAAAAAAAAAAAAAXwAAABcAAAFFAAACRQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAANFAAABRQAAAEUAAAFFAAACRQAAA0UAAABFAAADRQAAAUUAAANFAAAARQAAAEUAAABFAAAARQAAAUUAAABFAAADRQAAAEUAAAJFAAADRQAAAkUAAAFFAAABRQAAAkUAAAJFAAACRQAAA0UAAAFFAAABRQAAA0UAAANFAAAAXwAAAF8AAABfAAAAFwAAAxcAAAJfAAAAXwAAAFwAAAJfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABfAAAARQAAATIAAAAyAAAAXwAAABcAAAMXAAAAXwAAABcAAAFcAAACXAAAA1wAAABcAAABXAAAA18AAABfAAAAXwAAAEUAAAMyAAAAMgAAABcAAAEXAAABFwAAABcAAAAXAAABXAAAA1wAAABcAAACXAAAAFwAAAJfAAAAXwAAAF8AAABFAAAAMgAAADIAAABfAAAAFwAAAhcAAABfAAAAFwAAAVwAAAJcAAACXAAAAlwAAAFcAAAAUAAAAF8AAABfAAAARQAAAF8AAAAXAAAAXwAAABcAAAMXAAADXwAAABcAAAJcAAAAXAAAAFwAAAFcAAADXAAAAF8AAABfAAAAXwAAAEUAAANfAAAAXwAAAF8AAAAXAAACFwAAAl8AAABfAAAAXAAAA1wAAANcAAAAXAAAAlwAAAJfAAAAXwAAAFAAAABFAAACFwAAARcAAAMXAAADFwAAARcAAAAXAAACXwAAAFwAAAFcAAABXAAAAFwAAAJcAAACXwAAAF8AAABfAAAARQAAAw== -1,-1: ind: -1,-1 - tiles: RQAAARcAAAJfAAAAXwAAAF8AAABPAAAATwAAAF8AAABcAAADXAAAA1wAAANcAAABXAAAAlwAAANcAAAAXAAAAUUAAAAXAAACXwAAAF8AAABfAAAATwAAAE8AAABfAAAAXAAAA1wAAAFcAAADXAAAA1wAAAJcAAACXAAAAVwAAAFFAAACXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAFwAAAJcAAADXAAAAlwAAAJcAAADXAAAAVwAAABcAAADRQAAAhcAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAABfAAAAXwAAAEUAAAIXAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXgAAAF8AAABFAAACRQAAAkUAAAFFAAADRQAAAUUAAAFFAAABFwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF4AAABfAAAARQAAA0UAAAJFAAAARQAAA0UAAABFAAAARQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAAARQAAAkUAAANFAAADRQAAAEUAAAJFAAACRQAAAEUAAAJFAAADRQAAAEUAAANFAAAARQAAAUUAAANFAAABRQAAA0UAAANFAAABRQAAAEUAAAJFAAADRQAAA0UAAABFAAACRQAAAEUAAABFAAACRQAAAEUAAABFAAABRQAAAEUAAABFAAABRQAAAEUAAAJFAAAAKQAAACkAAAApAAAARQAAAV8AAABfAAAAFwAAAxcAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAADRQAAAkUAAAAXAAADXwAAABcAAAIXAAABXwAAADIAAAAyAAAAMgAAADIAAAAyAAAAMgAAADIAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAFwAAABcAAAAyAAAAMgAAADIAAAAyAAAAMgAAADIAAAAyAAAAFwAAAFwAAANcAAABXAAAAFwAAAJfAAAAFwAAARcAAAFfAAAAMgAAADIAAAAyAAAAMgAAADIAAAAyAAAAMgAAABcAAAJcAAAAXAAAAVwAAABcAAAAFwAAAxcAAAMXAAADXwAAABcAAAJfAAAAXwAAAF8AAAAXAAAAXwAAAF8AAAAXAAADXAAAAVwAAABcAAACXAAAAV8AAAAXAAACFwAAAV8AAABfAAAAXwAAABcAAAEXAAAAFwAAARcAAAAXAAADXwAAABcAAAAXAAADFwAAAhcAAANfAAAAFwAAARcAAAAXAAADFwAAABcAAAEXAAAAFwAAARcAAAIXAAACFwAAAQ== + tiles: RQAAARcAAAJfAAAAXwAAAF8AAABPAAAATwAAAF8AAABcAAADXAAAA1wAAANcAAABXAAAAlwAAANcAAAAXAAAAUUAAAAXAAACXwAAAF8AAABfAAAATwAAAE8AAABfAAAAXAAAA1wAAAFcAAADXAAAA1wAAAJcAAACXAAAAVwAAAFFAAACXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAFwAAAJcAAADXAAAAlwAAAJcAAADXAAAAVwAAABcAAADRQAAAhcAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAABfAAAAXwAAAEUAAAIXAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXgAAAF8AAABFAAACRQAAAkUAAAFFAAADRQAAAUUAAAFFAAABFwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF4AAABfAAAARQAAA0UAAAJFAAAARQAAA0UAAABFAAAARQAAAV8AAABfAAAAUAAAAF8AAABQAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAAARQAAAkUAAANFAAADRQAAAEUAAAJFAAACRQAAAEUAAAJFAAADRQAAAEUAAANFAAAARQAAAUUAAANFAAABRQAAA0UAAANFAAABRQAAAEUAAAJFAAADRQAAA0UAAABFAAACRQAAAEUAAABFAAACRQAAAEUAAABFAAABRQAAAEUAAABFAAABRQAAAEUAAAJFAAAAKQAAACkAAAApAAAARQAAAV8AAABfAAAAFwAAAxcAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAADRQAAAkUAAAAXAAADXwAAABcAAAIXAAABXwAAADIAAAAyAAAAMgAAADIAAAAyAAAAMgAAADIAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAFwAAABcAAAAyAAAAMgAAADIAAAAyAAAAMgAAADIAAAAyAAAAFwAAAFwAAANcAAABXAAAAFwAAAJfAAAAFwAAARcAAAFfAAAAMgAAADIAAAAyAAAAMgAAADIAAAAyAAAAMgAAABcAAAJcAAAAXAAAAVwAAABcAAAAFwAAAxcAAAMXAAADXwAAABcAAAJfAAAAXwAAAF8AAAAXAAAAXwAAAF8AAAAXAAADXAAAAVwAAABcAAACXAAAAV8AAAAXAAACFwAAAV8AAABfAAAAXwAAABcAAAEXAAAAFwAAARcAAAAXAAADXwAAABcAAAAXAAADFwAAAhcAAANfAAAAFwAAARcAAAAXAAADFwAAABcAAAEXAAAAFwAAARcAAAIXAAACFwAAAQ== -2,-1: ind: -2,-1 tiles: FwAAABcAAAIXAAACFwAAA18AAAAXAAABFwAAAhcAAABfAAAARQAAAUUAAAFFAAACXwAAABcAAAFFAAADRQAAA18AAAAXAAAAXwAAAF8AAABfAAAAXwAAABcAAAJfAAAAXwAAAEUAAAJFAAADRQAAAV8AAAAXAAACRQAAA0UAAANcAAAAXAAAAlwAAABcAAAAXAAAA1wAAANcAAACXwAAABcAAANFAAACRQAAA0UAAABfAAAAFwAAAUUAAANFAAAAXAAAA1wAAAJcAAACXAAAAFwAAAFcAAACXAAAAF8AAAAXAAABRQAAAEUAAAJFAAACXwAAABcAAAJFAAADRQAAAVwAAABcAAADXAAAAlwAAAJcAAADXAAAAFwAAABfAAAAFwAAAEUAAANFAAADRQAAA18AAAAXAAAARQAAAkUAAAJcAAAAXAAAAVwAAANcAAABXAAAAlwAAANcAAACXwAAAF8AAABFAAACRQAAAEUAAANfAAAAFwAAA0UAAANFAAAAXAAAAlwAAABcAAACXAAAAFwAAANcAAABXAAAA1wAAANfAAAARQAAAUUAAANFAAACXwAAAF8AAABFAAACXwAAAFwAAABcAAACXAAAA1wAAABcAAACXAAAAFwAAANcAAAAXAAAA0UAAAJFAAADRQAAA0UAAABFAAADRQAAAEUAAAFcAAABXAAAAlwAAAFcAAACXAAAAVwAAABcAAACXAAAAlwAAAJFAAAARQAAA0UAAABFAAACRQAAAkUAAAFFAAABXAAAAlwAAABcAAADXAAAAFwAAAJcAAACXAAAA1wAAANfAAAARQAAA0UAAABFAAACXwAAAF8AAABFAAACKQAAAFwAAAJfAAAAXwAAABcAAAJfAAAAXwAAABcAAAJfAAAAXwAAAEUAAABFAAADRQAAAl8AAAAXAAACRQAAAUUAAANcAAAAXAAAAV8AAAAXAAABFwAAAF8AAAAXAAAAFwAAA18AAABFAAACRQAAA0UAAAJfAAAAXwAAAF8AAABfAAAAXAAAAlwAAABfAAAAFwAAABcAAABfAAAAFwAAARcAAAFfAAAARQAAAEUAAAJFAAAAXwAAAFwAAANcAAAAXAAAA1wAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAACRQAAA1wAAAJcAAACXAAAAFwAAABFAAADRQAAA0UAAAJFAAABRQAAAkUAAAJFAAABRQAAA0UAAABFAAACRQAAAkUAAAJfAAAAXAAAAlwAAABcAAADRQAAAEUAAAJFAAADRQAAAEUAAAFFAAABRQAAAUUAAABFAAAARQAAAEUAAANFAAADXwAAAFwAAAFcAAAAXAAAAg== -2,0: ind: -2,0 - tiles: RQAAAkUAAAJFAAABRQAAAEUAAAFFAAADRQAAAUUAAABFAAACRQAAAEUAAAJFAAABXwAAAFwAAABcAAADXAAAAV8AAABfAAAAXwAAAF8AAABFAAACRQAAAl8AAABfAAAAXwAAAEUAAAJFAAADRQAAAF8AAAAXAAABFwAAAxcAAANFAAABRQAAAF8AAABFAAABRQAAA0UAAABFAAABRQAAAl8AAABFAAABRQAAA0UAAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAABFAAAARQAAA0UAAAJFAAADRQAAAUUAAAJfAAAARQAAA0UAAABFAAADRQAAAl8AAABFAAADXwAAAEUAAAFFAAAARQAAAEUAAABFAAABRQAAAkUAAABFAAACRQAAAEUAAAJFAAADRQAAAkUAAAJFAAABRQAAAkUAAANFAAAARQAAAF8AAABFAAACRQAAA0UAAAFFAAADRQAAA0UAAABFAAABRQAAAEUAAANFAAABRQAAAl8AAABFAAAARQAAAUUAAABfAAAARQAAAEUAAAFFAAADRQAAAkUAAABfAAAARQAAAkUAAAJFAAACRQAAAl8AAABFAAACRQAAAUUAAABFAAABXwAAAEUAAANFAAADRQAAAkUAAABFAAACXwAAAEUAAAJFAAACRQAAA18AAABfAAAAXwAAAF8AAABFAAADRQAAAl8AAABFAAAARQAAAkUAAAJFAAACRQAAAV8AAABFAAAARQAAAEUAAAFFAAAARQAAA0UAAANFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAAJFAAADRQAAAkUAAABFAAACRQAAAUUAAAJFAAACRQAAAUUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAACRQAAA0UAAANFAAABRQAAAUUAAAFFAAADRQAAA0UAAAJFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAAFfAAAARQAAAkUAAABFAAACRQAAAF8AAABfAAAAXwAAAEUAAAJFAAAARQAAAEUAAAJFAAACRQAAA0UAAAFFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABRQAAAkUAAAFFAAADRQAAAkUAAAJFAAADRQAAAF8AAABFAAACRQAAAlwAAAFcAAADXwAAAF8AAABfAAAARQAAAUUAAABFAAABRQAAAkUAAAFFAAAARQAAAkUAAANfAAAARQAAAEUAAABcAAABXAAAAF8AAABfAAAAXwAAAEUAAANFAAADRQAAA0UAAAJFAAAARQAAAUUAAAJFAAAAXwAAAA== + tiles: RQAAAkUAAAJFAAABRQAAAEUAAAFFAAADRQAAAUUAAABFAAACRQAAAEUAAAJFAAABXwAAAFwAAABcAAADXAAAAV8AAABfAAAAXwAAAF8AAABFAAACRQAAAl8AAABfAAAAXwAAAEUAAAJFAAADRQAAAF8AAAAXAAABFwAAAxcAAANFAAABRQAAAF8AAABFAAABRQAAA0UAAABFAAABRQAAAl8AAABFAAABRQAAA0UAAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAABFAAAARQAAA0UAAAJFAAADRQAAAUUAAAJfAAAARQAAA0UAAABFAAADRQAAAl8AAABFAAADXwAAAEUAAAFFAAAARQAAAEUAAABFAAABRQAAAkUAAABFAAACRQAAAEUAAAJFAAADRQAAAkUAAAJFAAABRQAAAkUAAANFAAAARQAAAF8AAABFAAACRQAAA0UAAAFFAAADRQAAA0UAAABFAAABRQAAAEUAAANFAAABRQAAAl8AAABFAAAARQAAAUUAAABfAAAARQAAAEUAAAFFAAADRQAAAkUAAABfAAAARQAAAkUAAAJFAAACRQAAAl8AAABFAAACRQAAAUUAAABFAAABXwAAAEUAAANFAAADRQAAAkUAAABFAAACXwAAAEUAAAJFAAACRQAAA18AAABfAAAAXwAAAF8AAABFAAADRQAAAl8AAABFAAAARQAAAkUAAAJFAAACRQAAAV8AAABFAAAARQAAAEUAAAFFAAAARQAAA0UAAANFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUAAAAF8AAABfAAAARQAAAEUAAAJFAAADRQAAAkUAAABFAAACRQAAAUUAAAJFAAACRQAAAUUAAAFfAAAAXwAAAF8AAABfAAAAUAAAAEUAAAFFAAACRQAAA0UAAANFAAABRQAAAUUAAAFFAAADRQAAA0UAAAJFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAAFfAAAARQAAAkUAAABFAAACRQAAAF8AAABfAAAAXwAAAEUAAAJFAAAARQAAAEUAAAJFAAACRQAAA0UAAAFFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABFAAABRQAAAkUAAAFFAAADRQAAAkUAAAJFAAADRQAAAF8AAABFAAACRQAAAlwAAAFcAAADXwAAAF8AAABfAAAARQAAAUUAAABFAAABRQAAAkUAAAFFAAAARQAAAkUAAANfAAAARQAAAEUAAABcAAABXAAAAF8AAABfAAAAXwAAAEUAAANFAAADRQAAA0UAAAJFAAAARQAAAUUAAAJFAAAAXwAAAA== 1,0: ind: 1,0 tiles: RQAAAkUAAABfAAAAFwAAABcAAAMXAAAADAAAAgwAAAEMAAABDAAAAQwAAAAMAAACDAAAAAwAAAEXAAABFwAAA0UAAAJFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAADAAAAAwAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAA0UAAANFAAABRQAAAUUAAABFAAACRQAAA0UAAANFAAABRQAAAEUAAANFAAABRQAAAEUAAAJFAAACRQAAA0UAAAFFAAAARQAAA0UAAAFFAAACRQAAAkUAAAJFAAADRQAAAEUAAABFAAADRQAAAEUAAAJFAAABRQAAA0UAAAJFAAACRQAAAEUAAAFFAAACRQAAAEUAAAJFAAABRQAAAEUAAAJFAAACRQAAAkUAAANFAAADRQAAAkUAAANFAAACRQAAAV8AAABfAAAAXwAAAEUAAAJfAAAAXwAAAF8AAAAXAAABFwAAAl8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAANfAAAARQAAA0UAAANFAAACRQAAA0UAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXwAAAEUAAABFAAADXwAAAEUAAAJFAAAARQAAAkUAAABFAAAAXwAAAE8AAABPAAAATwAAAF8AAABfAAAAAAAAAF8AAABFAAADRQAAAl8AAABFAAAARQAAAEUAAABFAAADRQAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAAAAAABfAAAARQAAAUUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAABFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAFwAAAF8AAABFAAACRQAAAhcAAAAXAAACFwAAAhcAAAJfAAAAXwAAAEUAAAFFAAADRQAAAUUAAANFAAAARQAAAEUAAAFFAAAARQAAAkUAAANFAAACRQAAAEUAAAJFAAABXwAAAF8AAABFAAACRQAAA0UAAABFAAACRQAAAkUAAANFAAADRQAAA0UAAABFAAAARQAAAkUAAABFAAACRQAAAV8AAAASAAAARQAAA0UAAANFAAABRQAAA0UAAAFFAAAARQAAAkUAAABFAAADRQAAAEUAAAJFAAAARQAAAkUAAAFfAAAAEgAAAA== @@ -92,13 +92,13 @@ entities: tiles: RQAAAC0AAAAtAAAALQAAAEUAAABfAAAAUgAAAVIAAAAXAAAAXwAAAFIAAABSAAABRQAAAxcAAAFFAAADRQAAA0UAAAAtAAAALQAAAC0AAABFAAADXwAAAFIAAAFSAAAAUgAAAF8AAABSAAABUgAAAEUAAAIXAAADRQAAA0UAAABFAAADLQAAAC0AAAAtAAAARQAAAV8AAABSAAAAUgAAAhcAAABfAAAAUgAAAlIAAAJSAAABUgAAAVIAAAFSAAACRQAAAUUAAAJFAAACRQAAAkUAAAFfAAAAUgAAAFIAAAEXAAADXwAAAFIAAANSAAADUgAAAlIAAAFSAAABUgAAAF8AAABFAAAARQAAAkUAAANfAAAAXwAAAE8AAABPAAAAXwAAAF8AAABFAAADRQAAAkUAAAJfAAAAXwAAAF8AAABSAAAAUgAAAlIAAAJSAAACUgAAA1IAAABSAAAAUgAAAlIAAABfAAAARQAAA0UAAAFFAAAAXwAAAF8AAABfAAAAUgAAAVIAAABSAAACUgAAAVIAAANSAAABUgAAAVIAAAJSAAACXwAAAEUAAABFAAABRQAAAF8AAAA0AAAAXwAAAFIAAABSAAABUgAAAFIAAANSAAADUgAAA1IAAABSAAADUgAAAl8AAABFAAABRQAAA0UAAAJfAAAANAAAAF8AAABSAAAAUgAAAVIAAANSAAAAUgAAAlIAAAJSAAACUgAAAVIAAANfAAAARQAAA0UAAAFFAAADXwAAADQAAABfAAAAXwAAAF8AAABfAAAAUgAAAlIAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAUUAAANFAAAARQAAAkUAAAJFAAABRQAAAF8AAAAXAAAAFwAAAhcAAAAXAAADXwAAAF8AAABFAAADRQAAA0UAAABFAAACRQAAAkUAAAJFAAADRQAAAUUAAAJFAAAARQAAAkUAAABFAAABRQAAAUUAAAJFAAADRQAAAEUAAAFFAAAARQAAAkUAAABFAAACRQAAAEUAAAJFAAADRQAAAEUAAABFAAABRQAAAUUAAABFAAAARQAAAUUAAANFAAABRQAAAEUAAANFAAACRQAAAkUAAANFAAABRQAAA0UAAABFAAABRQAAA0UAAANFAAACRQAAAEUAAABcAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABXAAAA1wAAANcAAABXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF8AAAAXAAACRQAAAQ== -2,-2: ind: -2,-2 - tiles: UgAAAVIAAANSAAACUgAAAVIAAABSAAABUgAAAlIAAANSAAACXwAAAFIAAAFSAAABUgAAAVIAAAFfAAAAUgAAAFIAAANSAAADUgAAAlIAAAJSAAADUgAAA1IAAAFSAAACUgAAAl8AAABSAAABUgAAAVIAAABSAAACFwAAAVIAAABSAAADUgAAAFIAAANSAAADUgAAAlIAAAJSAAACUgAAAVIAAABfAAAAUgAAAlIAAABSAAADUgAAAhcAAAFSAAABXwAAAF8AAABfAAAAXwAAAFIAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAABXwAAAF8AAABfAAAAUgAAAF8AAABfAAAAUgAAA1IAAANSAAABUgAAA1IAAABfAAAAUgAAAlIAAANSAAAAUgAAAlIAAAJSAAAAXwAAAF8AAABPAAAAXwAAAFIAAABSAAAAUgAAA1IAAABSAAADXwAAAFIAAANSAAACUgAAAlIAAAJSAAABUgAAAVIAAABSAAADXwAAAF8AAABFAAADRQAAAkUAAAFFAAACUgAAAF8AAABSAAACUgAAAVIAAAFSAAAAUgAAAVIAAAFSAAAAUgAAADEAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAAVIAAABSAAABUgAAAVIAAAFSAAACUgAAAlIAAAFfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFIAAANSAAADUgAAA1IAAANSAAADUgAAAVIAAANSAAADMQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAAAUgAAAFIAAANSAAADUgAAAlIAAABSAAABUgAAA18AAABPAAAATwAAAE8AAABPAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAABFAAAARQAAAEUAAAFFAAADRQAAAkUAAAJFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAADRQAAA0UAAAJFAAADRQAAAkUAAAFFAAABRQAAARcAAAAXAAABFwAAAhcAAANfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAACRQAAAkUAAAJFAAABRQAAAUUAAAMXAAACFwAAAxcAAAEXAAAAXwAAABcAAAIXAAABFwAAAV8AAABFAAACRQAAAEUAAAFfAAAAXwAAAF8AAABFAAAAFwAAAxcAAAMXAAACFwAAAF8AAAAXAAADFwAAARcAAAFfAAAARQAAAUUAAAFFAAAAXwAAABcAAANFAAABRQAAAA== + tiles: UgAAAVIAAANSAAACUgAAAVIAAABSAAABUgAAAlIAAANSAAACXwAAAFIAAAFSAAABUgAAAVIAAAFfAAAAUgAAAFIAAANSAAADUgAAAlIAAAJSAAADUgAAA1IAAAFSAAACUgAAAl8AAABSAAABUgAAAVIAAABSAAACFwAAAVIAAABSAAADUgAAAFIAAANSAAADUgAAAlIAAAJSAAACUgAAAVIAAABfAAAAUgAAAlIAAABSAAADUgAAAhcAAAFSAAABXwAAAF8AAABfAAAAXwAAAFIAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAABXwAAAF8AAABfAAAAUgAAAF8AAABfAAAAUgAAA1IAAANSAAABUgAAA1IAAABfAAAAUgAAAlIAAANSAAAAUgAAAlIAAAJSAAAAXwAAAF8AAABPAAAAXwAAAFIAAABSAAAAUgAAA1IAAABSAAADXwAAAFIAAANSAAACUgAAAlIAAAJSAAABUgAAAVIAAABSAAADXwAAAF8AAABFAAADRQAAAkUAAAFFAAACUgAAAF8AAABSAAACUgAAAVIAAAFSAAAAUgAAAVIAAAFSAAAAUgAAADEAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAAVIAAABSAAABUgAAAVIAAAFSAAACUgAAAlIAAAFfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXwAAAFIAAANSAAADUgAAA1IAAANSAAADUgAAAVIAAANSAAADMQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAAAUgAAAFIAAANSAAADUgAAAlIAAABSAAABUgAAA18AAABPAAAATwAAAE8AAABPAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAABFAAAARQAAAEUAAAFFAAADRQAAAkUAAAJFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAADRQAAA0UAAAJFAAADRQAAAkUAAAFFAAABRQAAARcAAAAXAAABFwAAAhcAAANfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAACRQAAAkUAAAJFAAABRQAAAUUAAAMXAAACFwAAAxcAAAEXAAAAXwAAABcAAAIXAAABFwAAAV8AAABFAAACRQAAAEUAAAFfAAAAXwAAAF8AAABFAAAAFwAAAxcAAAMXAAACFwAAAF8AAAAXAAADFwAAARcAAAFfAAAARQAAAUUAAAFFAAAAXwAAABcAAANFAAABRQAAAA== 1,-2: ind: 1,-2 tiles: FwAAA18AAABFAAACRQAAAVIAAAFSAAACUgAAADsAAAA7AAAAOwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAFfAAAARQAAAEUAAANSAAAAUgAAAVIAAAA7AAAAOwAAADsAAABfAAAANAAAADQAAABPAAAAXwAAAF8AAABSAAACUgAAAFIAAANSAAAAUgAAAFIAAANSAAADOwAAADsAAAA7AAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAUgAAA18AAABSAAAAUgAAA1IAAAFSAAACUgAAAjsAAAA7AAAAOwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAEUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAvAAAALwAAAC8AAABfAAAALwAAAC8AAAAvAAAALwAAAC8AAAAvAAAALwAAAC8AAAAvAAAALwAAAC8AAABfAAAALwAAAEUAAAJFAAADRQAAAUUAAAFFAAACRQAAAEUAAAJFAAAARQAAAkUAAABFAAACRQAAA0UAAANFAAADXwAAAC8AAABFAAACLwAAAF8AAAAvAAAALwAAAEUAAAIvAAAALwAAAEUAAAEvAAAALwAAAEUAAAAvAAAALwAAAF8AAAApAAAARQAAAikAAABfAAAALwAAAC8AAABFAAAARQAAAUUAAANFAAADRQAAAEUAAAFFAAABLwAAACkAAABFAAADRQAAA0UAAAAvAAAALwAAAC8AAAAvAAAARQAAAS8AAAApAAAAKQAAACkAAAAvAAAARQAAAi8AAAApAAAARQAAAkUAAAJFAAABLwAAAC8AAAAvAAAALwAAAEUAAAMvAAAAKQAAACkAAAApAAAALwAAAEUAAAIvAAAALwAAAEUAAABFAAABRQAAAC8AAAApAAAALwAAAEUAAAJFAAABRQAAAUUAAANFAAADRQAAAEUAAANFAAABRQAAAkUAAABFAAAARQAAAEUAAAIvAAAAKQAAAC8AAAAvAAAALwAAAEUAAAJFAAACRQAAAUUAAABFAAABLwAAAC8AAAAvAAAARQAAA0UAAABFAAABLwAAACkAAAAvAAAARQAAAEUAAABFAAAARQAAAkUAAAJFAAAARQAAAUUAAAJFAAAALwAAAA== 2,-1: ind: 2,-1 - tiles: XwAAACYAAAAmAAAAJgAAACYAAAAmAAAAJgAAABcAAAJIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAAXwAAAF8AAAAmAAAAJgAAACYAAABfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAANFAAACXwAAAFwAAABcAAADXwAAADUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAADXwAAAF8AAAAWAAAAFgAAADUAAAA1AAAANQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAADAAAAAwAAAAMAAAADAAAABfAAAAFgAAABYAAAA1AAAANQAAADUAAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAIwAAAAMAAAADAAAAAwAAAAXwAAABYAAAAWAAAAFgAAADUAAAA1AAAAXwAAAF8AAABIAAAAXwAAAEUAAAJFAAABMAAAADAAAAAwAAAAMAAAAF8AAAAWAAAAFgAAABYAAAA1AAAANQAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAABcAAAJfAAAAXwAAAF8AAABfAAAAFgAAAF8AAABfAAAAXAAAA1wAAAFfAAAAXwAAAF8AAABFAAADRQAAA0UAAAEXAAAADAAAAAwAAAJcAAADXAAAAFwAAAFcAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAFFAAAADAAAAAwAAAEMAAAAXAAAAFwAAAJcAAABXAAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAADRQAAAAwAAAMMAAAADAAAA1wAAAJcAAACXAAAAVwAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABRQAAA0UAAAEMAAAADAAAAQwAAABcAAABXAAAAFwAAAJcAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADDAAAAgwAAAEMAAABXAAAA1wAAABcAAABXAAAAF8AAABfAAAAXwAAAE8AAABPAAAAXwAAAEUAAABFAAADRQAAAAwAAAIMAAACDAAAA1wAAAJcAAACXAAAA1wAAABfAAAAXwAAAF8AAAA2AAAANgAAAF8AAABFAAACRQAAAEUAAAEMAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAANgAAADYAAAAXAAADRQAAA0UAAAFFAAABFwAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAADYAAAA2AAAAXwAAAEUAAAFFAAAARQAAAA== + tiles: XwAAACYAAAAmAAAAJgAAACYAAAAmAAAAJgAAAFAAAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAAXwAAAF8AAAAmAAAAJgAAACYAAABfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAANFAAACXwAAAFwAAABcAAADXwAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAADXwAAAF8AAAAWAAAAFgAAADUAAAA1AAAANQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAADAAAAAwAAAAMAAAADAAAABfAAAAFgAAABYAAAA1AAAANQAAADUAAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAIwAAAAMAAAADAAAAAwAAAAXwAAABYAAAAWAAAAFgAAADUAAAA1AAAAXwAAAF8AAABIAAAAXwAAAEUAAAJFAAABMAAAADAAAAAwAAAAMAAAAF8AAAAWAAAAFgAAABYAAAA1AAAANQAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAABcAAAJfAAAAXwAAAF8AAABfAAAAFgAAAF8AAABfAAAAXAAAA1wAAAFfAAAAXwAAAF8AAABFAAADRQAAA0UAAAEXAAAADAAAAAwAAAJcAAADXAAAAFwAAAFcAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAFFAAAADAAAAAwAAAEMAAAAXAAAAFwAAAJcAAABXAAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAADRQAAAAwAAAMMAAAADAAAA1wAAAJcAAACXAAAAVwAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABRQAAA0UAAAEMAAAADAAAAQwAAABcAAABXAAAAFwAAAJcAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADDAAAAgwAAAEMAAABXAAAA1wAAABcAAABXAAAAF8AAABfAAAAXwAAAE8AAABPAAAAXwAAAEUAAABFAAADRQAAAAwAAAIMAAACDAAAA1wAAAJcAAACXAAAA1wAAABfAAAAXwAAAF8AAAA2AAAANgAAAF8AAABFAAACRQAAAEUAAAEMAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAANgAAADYAAAAXAAADRQAAA0UAAAFFAAABFwAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAADYAAAA2AAAAXwAAAEUAAAFFAAAARQAAAA== 2,0: ind: 2,0 tiles: FwAAAV8AAABPAAAATwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAE8AAABPAAAAXwAAAEUAAABFAAAARQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAEUAAAJFAAADRQAAAEUAAABFAAAARQAAAkUAAABFAAACRQAAA0UAAAFFAAACRQAAAkUAAAFFAAACRQAAAEUAAAFFAAADRQAAAEUAAABFAAACRQAAAkUAAAJFAAADRQAAAUUAAAFFAAACRQAAA0UAAAJFAAACRQAAAEUAAABFAAACRQAAAkUAAAFFAAABRQAAA0UAAAFFAAACRQAAAkUAAABFAAADRQAAAkUAAAJFAAAARQAAA0UAAAFFAAADRQAAAUUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAhcAAAFfAAAAFwAAABcAAAIXAAADFwAAAhcAAAEXAAAAXwAAABcAAAEXAAABFwAAAhcAAAIXAAACFwAAABcAAAAXAAABFwAAAhcAAAAXAAACFwAAABcAAAIXAAADFwAAA18AAAAXAAADRQAAAkUAAAFFAAADRQAAAxcAAAMXAAAAFwAAA18AAAAXAAAAFwAAABcAAAMXAAACFwAAAxcAAABfAAAAFwAAAkUAAABFAAADRQAAAUUAAAMXAAABXwAAAF8AAABfAAAAFwAAAxcAAAMXAAADFwAAAxcAAAIXAAAAXwAAABcAAANFAAACRQAAAEUAAAJFAAAAFwAAAV8AAABfAAAAXwAAABcAAAMXAAACFwAAAxcAAAMXAAADFwAAAF8AAAAXAAAAFwAAAxcAAAEXAAADFwAAABcAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAxcAAAEXAAACXwAAAF8AAAAXAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAA0UAAABfAAAARQAAAUUAAAESAAAAXAAAAkUAAAFFAAABXAAAA1wAAAFcAAADXwAAAF8AAABfAAAARQAAA0UAAAJFAAAAXwAAAEUAAABFAAAAEgAAAF8AAABFAAABRQAAAV8AAABcAAADXAAAA18AAABfAAAAXwAAAEUAAANFAAABRQAAA0UAAAFFAAADRQAAAA== @@ -110,13 +110,13 @@ entities: tiles: AAAAAF8AAAAXAAAADwAAABcAAAEXAAABFwAAAQ8AAAAXAAABXwAAAAAAAABfAAAARQAAAkUAAABFAAAAXwAAAAAAAABfAAAAFwAAAQ8AAAAXAAAAFwAAAhcAAAMPAAAAFwAAAV8AAAAAAAAAXwAAAEUAAABFAAADRQAAA18AAAAAAAAAXwAAABcAAAIPAAAADwAAAA8AAAAPAAAADwAAABcAAABfAAAAAAAAAF8AAABFAAADRQAAAEUAAABfAAAAXgAAAF8AAABfAAAAFwAAABcAAAAXAAADFwAAAhcAAANfAAAAXwAAAF4AAABfAAAARQAAA0UAAAJFAAABFwAAAgAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXwAAAEUAAANFAAABRQAAAl8AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF8AAABFAAAARQAAAkUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAANFAAADXwAAAEUAAAJFAAADRQAAAEUAAAFFAAACRQAAAEUAAABFAAADRQAAAUUAAANFAAACRQAAA0UAAAFFAAADRQAAAUUAAANFAAACRQAAA0UAAANFAAABRQAAAUUAAAFFAAACRQAAAUUAAAFFAAABRQAAAEUAAABFAAABRQAAAEUAAABFAAAARQAAAUUAAAFFAAABRQAAA0UAAANFAAADRQAAAkUAAANFAAADRQAAAUUAAABFAAAARQAAAEUAAAJFAAACRQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAAAXwAAAEUAAAJFAAADXwAAAEUAAANFAAADXwAAAEUAAANFAAACXwAAAD0AAAA9AAAAPQAAAD0AAABfAAAAXAAAAV8AAABFAAABRQAAAV8AAABFAAADRQAAAF8AAABFAAACRQAAA18AAAA9AAAAPQAAAD0AAAA9AAAAXwAAAFwAAAFfAAAAXwAAAEUAAANfAAAAXwAAAEUAAAFfAAAAXwAAAEUAAAFfAAAAPQAAAD0AAAA9AAAAPQAAAF8AAABcAAABXwAAAEUAAABFAAACRQAAAEUAAANFAAAARQAAA0UAAABFAAACXwAAAD0AAAA9AAAAPQAAAD0AAABfAAAAFwAAAhcAAAFFAAABRQAAAEUAAANFAAADRQAAAUUAAABFAAAARQAAAF8AAAA9AAAAPQAAAD0AAAA9AAAAXwAAAA== -2,1: ind: -2,1 - tiles: RQAAAEUAAANcAAACXAAAAF8AAABfAAAARQAAAkUAAABFAAACRQAAAUUAAANFAAADRQAAA0UAAABFAAADXwAAAEUAAAJFAAAAXAAAAFwAAABfAAAAXwAAAF8AAABFAAAARQAAAUUAAANFAAABRQAAAkUAAAFFAAABRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAADRQAAAUUAAANFAAABRQAAA0UAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAACRQAAAEUAAAFFAAABRQAAAEUAAABFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAV8AAABFAAABRQAAAEUAAANFAAADRQAAAkUAAAFFAAABRQAAAkUAAAFFAAADRQAAA0UAAAJfAAAARQAAAkUAAABFAAACRQAAAEUAAAFFAAABRQAAA0UAAABFAAABRQAAAUUAAAFFAAABRQAAAUUAAABFAAABXwAAAEUAAAJFAAACXwAAAEUAAAFFAAABRQAAAUUAAAJFAAAARQAAAkUAAABFAAAARQAAAUUAAAJFAAACRQAAAEUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAA0UAAABfAAAAXwAAAF8AAABFAAADRQAAAEUAAABFAAAAXwAAAE8AAABfAAAAFwAAAxcAAAFfAAAAXwAAAEUAAAJfAAAAXwAAAF8AAABfAAAARQAAAkUAAAJFAAAARQAAAl8AAABPAAAAXwAAABcAAANFAAABRQAAAkUAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAAFfAAAAXwAAAF8AAAAXAAAARQAAAUUAAANFAAABRQAAAUUAAANfAAAAXwAAAF8AAABfAAAAXAAAAFwAAAFcAAADXwAAAE8AAABfAAAAFwAAAxcAAAAXAAAAFwAAAhcAAAMXAAABXwAAAF8AAABfAAAAXwAAAFwAAABcAAACXAAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAACXAAAAlwAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAAFwAAABcAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAIXAAADFwAAAg== + tiles: RQAAAEUAAANcAAACXAAAAF8AAABfAAAARQAAAkUAAABFAAACRQAAAUUAAANFAAADRQAAA0UAAABFAAADXwAAAEUAAAJFAAAAXAAAAFwAAABfAAAAXwAAAF8AAABFAAAARQAAAUUAAANFAAABRQAAAkUAAAFFAAABRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAADRQAAAUUAAANFAAABRQAAA0UAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAACRQAAAEUAAAFFAAABRQAAAEUAAABFAAABXwAAAFAAAABfAAAAXwAAAF8AAABfAAAAUAAAAF8AAABfAAAARQAAAUUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAV8AAABFAAABRQAAAEUAAANFAAADRQAAAkUAAAFFAAABRQAAAkUAAAFFAAADRQAAA0UAAAJfAAAARQAAAkUAAABFAAACRQAAAEUAAAFFAAABRQAAA0UAAABFAAABRQAAAUUAAAFFAAABRQAAAUUAAABFAAABXwAAAEUAAAJFAAACXwAAAEUAAAFFAAABRQAAAUUAAAJFAAAARQAAAkUAAABFAAAARQAAAUUAAAJFAAACRQAAAEUAAAJQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAA0UAAABfAAAAXwAAAF8AAABFAAADRQAAAEUAAABFAAAAXwAAAE8AAABfAAAAFwAAAxcAAAFfAAAAXwAAAEUAAAJfAAAAXwAAAF8AAABfAAAARQAAAkUAAAJFAAAARQAAAl8AAABPAAAAXwAAABcAAANFAAABRQAAAkUAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAAFfAAAAXwAAAF8AAAAXAAAARQAAAUUAAANFAAABRQAAAUUAAANfAAAAXwAAAF8AAABfAAAAXAAAAFwAAAFcAAADXwAAAE8AAABfAAAAFwAAAxcAAAAXAAAAFwAAAhcAAAMXAAABXwAAAF8AAABfAAAAXwAAAFwAAABcAAACXAAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAACXAAAAlwAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAAFwAAABcAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAIXAAADFwAAAg== -3,1: ind: -3,1 - tiles: AAAAAAAAAABfAAAAXwAAAF8AAABFAAACRQAAAUUAAAFFAAACRQAAA0UAAANFAAAARQAAAUUAAAFFAAADRQAAAwAAAAAAAAAAXwAAAF8AAABfAAAARQAAA0UAAAJFAAACRQAAAEUAAABFAAACRQAAAkUAAAFFAAAARQAAAV8AAAAAAAAAAAAAAF8AAABfAAAAXwAAAEUAAAFFAAADRQAAAUUAAANFAAACRQAAA0UAAANFAAACRQAAAkUAAAFfAAAAAAAAAAAAAABfAAAAXwAAAF8AAABFAAAARQAAAUUAAAJFAAACRQAAAEUAAAJFAAAARQAAA0UAAAFFAAABXwAAAAAAAAAAAAAAXwAAAF8AAABfAAAARQAAAkUAAAFFAAACRQAAA0UAAANFAAADRQAAAkUAAAFFAAACRQAAAF8AAAAAAAAAAAAAAAAAAABeAAAAXwAAAEUAAABFAAADRQAAAEUAAAFFAAADRQAAAEUAAANFAAADRQAAAkUAAABfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAARQAAA0UAAAJfAAAAXwAAAEUAAAJFAAAARQAAAEUAAAJFAAADRQAAAQAAAAAAAAAAAAAAAF8AAABFAAAARQAAAkUAAAJFAAABRQAAAV8AAABFAAADRQAAAUUAAAFFAAADRQAAAV8AAAAAAAAAAAAAAAAAAABfAAAARQAAA0UAAABFAAADRQAAAUUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAEUAAAFFAAAARQAAAUUAAANFAAACXwAAAE8AAABfAAAAXwAAAE8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABFAAACRQAAA0UAAANFAAADRQAAAl8AAABPAAAAXwAAAF8AAABPAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABfAAAARQAAA0UAAABFAAAARQAAAUUAAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAEUAAAJFAAABRQAAAkUAAAFFAAABXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: AAAAAAAAAABfAAAAXwAAAF8AAABFAAACRQAAAUUAAAFFAAACRQAAA0UAAANFAAAARQAAAUUAAAFFAAADRQAAAwAAAAAAAAAAXwAAAF8AAABfAAAARQAAA0UAAAJFAAACRQAAAEUAAABFAAACRQAAAkUAAAFFAAAARQAAAV8AAAAAAAAAAAAAAF8AAABfAAAAXwAAAEUAAAFFAAADRQAAAUUAAANFAAACRQAAA0UAAANFAAACRQAAAkUAAAFfAAAAAAAAAAAAAABfAAAAXwAAAF8AAABFAAAARQAAAUUAAAJFAAACRQAAAEUAAAJFAAAARQAAA0UAAAFFAAABUAAAAAAAAAAAAAAAXwAAAF8AAABfAAAARQAAAkUAAAFFAAACRQAAA0UAAANFAAADRQAAAkUAAAFFAAACRQAAAF8AAAAAAAAAAAAAAAAAAABeAAAAXwAAAEUAAABFAAADRQAAAEUAAAFFAAADRQAAAEUAAANFAAADRQAAAkUAAABfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAARQAAA0UAAAJfAAAAXwAAAEUAAAJFAAAARQAAAEUAAAJFAAADRQAAAQAAAAAAAAAAAAAAAF8AAABFAAAARQAAAkUAAAJFAAABRQAAAV8AAABFAAADRQAAAUUAAAFFAAADRQAAAV8AAAAAAAAAAAAAAAAAAABfAAAARQAAA0UAAABFAAADRQAAAUUAAAJfAAAAXwAAAFAAAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAEUAAAFFAAAARQAAAUUAAANFAAACXwAAAE8AAABfAAAAXwAAAE8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABFAAACRQAAA0UAAANFAAADRQAAAl8AAABPAAAAXwAAAF8AAABPAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABfAAAARQAAA0UAAABFAAAARQAAAUUAAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAEUAAAJFAAABRQAAAkUAAAFFAAABXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABQAAAAUAAAAF8AAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== -3,0: ind: -3,0 - tiles: CgAAABcAAAFFAAAARQAAAUUAAAFFAAADRQAAAUUAAAJFAAACRQAAA0UAAANFAAADRQAAA0UAAAJFAAABRQAAA18AAAAXAAACRQAAAUUAAANfAAAARQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAUUAAAFFAAAAXwAAAEUAAABFAAACRQAAAEUAAAFFAAABRQAAA0UAAAFfAAAARQAAAUUAAAFFAAAARQAAAkUAAAJFAAADRQAAAl8AAABFAAABRQAAAkUAAABFAAAARQAAA0UAAAJFAAABXwAAAEUAAANFAAADRQAAAV8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAANFAAACRQAAA0UAAAJFAAABRQAAA0UAAAFFAAADRQAAAEUAAAJfAAAAXwAAAE8AAABfAAAARQAAAkUAAANFAAADRQAAA0UAAANFAAACRQAAA0UAAAFFAAACRQAAAEUAAABFAAAATwAAAF8AAABPAAAAXwAAAEUAAABFAAADRQAAAkUAAAFFAAADRQAAA0UAAABFAAAAXwAAAEUAAABFAAAARQAAAV8AAABfAAAATwAAAF8AAABfAAAAXwAAAEUAAAFfAAAAXwAAAEUAAAFfAAAAXwAAAF8AAABFAAABRQAAA0UAAANfAAAAXwAAAF8AAABfAAAARQAAAEUAAAFFAAACRQAAAkUAAAFFAAADRQAAAkUAAAFfAAAARQAAA0UAAAJfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAACRQAAA0UAAANFAAACRQAAAUUAAANFAAADRQAAAEUAAAJFAAABXwAAAAAAAAAAAAAAAAAAAF8AAABFAAABRQAAAUUAAABFAAACRQAAAEUAAAJFAAADRQAAAUUAAABFAAADRQAAAV8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAEUAAABFAAACRQAAAUUAAABFAAAARQAAAkUAAAFFAAACRQAAAkUAAAJFAAACAAAAAAAAAAAAAAAAXgAAAF8AAABFAAABRQAAAkUAAABFAAACRQAAA0UAAABFAAACRQAAAEUAAABFAAAAXwAAAAAAAAAAAAAAAAAAAF4AAABfAAAARQAAAkUAAAJFAAABRQAAAEUAAAFFAAABRQAAAUUAAAFFAAACRQAAAF8AAAAAAAAAAAAAAF8AAABfAAAAXwAAAEUAAAFFAAABRQAAA0UAAANFAAACRQAAAEUAAANFAAACRQAAA0UAAABfAAAAAAAAAAAAAABfAAAAXwAAAF8AAABFAAABRQAAA0UAAAFFAAAARQAAA0UAAANFAAACRQAAAUUAAAJFAAACXwAAAA== + tiles: CgAAABcAAAFFAAAARQAAAUUAAAFFAAADRQAAAUUAAAJFAAACRQAAA0UAAANFAAADRQAAA0UAAAJFAAABRQAAA18AAAAXAAACRQAAAUUAAANfAAAARQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAUUAAAFFAAAAXwAAAEUAAABFAAACRQAAAEUAAAFFAAABRQAAA0UAAAFfAAAARQAAAUUAAAFFAAAARQAAAkUAAAJFAAADRQAAAl8AAABFAAABRQAAAkUAAABFAAAARQAAA0UAAAJFAAABXwAAAEUAAANFAAADRQAAAV8AAABQAAAAXwAAAF8AAABfAAAARQAAAUUAAANFAAACRQAAA0UAAAJFAAABRQAAA0UAAAFFAAADRQAAAEUAAAJfAAAAXwAAAE8AAABfAAAARQAAAkUAAANFAAADRQAAA0UAAANFAAACRQAAA0UAAAFFAAACRQAAAEUAAABFAAAATwAAAF8AAABPAAAAUAAAAEUAAABFAAADRQAAAkUAAAFFAAADRQAAA0UAAABFAAAAXwAAAEUAAABFAAAARQAAAV8AAABfAAAATwAAAF8AAABfAAAAXwAAAEUAAAFfAAAAXwAAAEUAAAFfAAAAXwAAAF8AAABFAAABRQAAA0UAAANfAAAAXwAAAF8AAABQAAAARQAAAEUAAAFFAAACRQAAAkUAAAFFAAADRQAAAkUAAAFfAAAARQAAA0UAAAJfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAACRQAAA0UAAANFAAACRQAAAUUAAANFAAADRQAAAEUAAAJFAAABXwAAAAAAAAAAAAAAAAAAAF8AAABFAAABRQAAAUUAAABFAAACRQAAAEUAAAJFAAADRQAAAUUAAABFAAADRQAAAV8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAEUAAABFAAACRQAAAUUAAABFAAAARQAAAkUAAAFFAAACRQAAAkUAAAJFAAACAAAAAAAAAAAAAAAAXgAAAF8AAABFAAABRQAAAkUAAABFAAACRQAAA0UAAABFAAACRQAAAEUAAABFAAAAXwAAAAAAAAAAAAAAAAAAAF4AAABfAAAARQAAAkUAAAJFAAABRQAAAEUAAAFFAAABRQAAAUUAAAFFAAACRQAAAF8AAAAAAAAAAAAAAF8AAABfAAAAXwAAAEUAAAFFAAABRQAAA0UAAANFAAACRQAAAEUAAANFAAACRQAAA0UAAABfAAAAAAAAAAAAAABfAAAAXwAAAF8AAABFAAABRQAAA0UAAAFFAAAARQAAA0UAAANFAAACRQAAAUUAAAJFAAACXwAAAA== -3,-1: ind: -3,-1 tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAABcAAAMXAAACFwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAADFwAAA18AAABcAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAhcAAAIXAAABXAAAAlwAAAFcAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAAFcAAABXAAAAF8AAABIAAAAXwAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAF8AAAAXAAABFwAAAxcAAANcAAADXAAAAVwAAABfAAAASAAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAxcAAAJfAAAAXAAAAlwAAAFcAAABXwAAAF8AAABIAAAAXwAAAEgAAABIAAAASAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAANcAAACXAAAAl8AAABfAAAASAAAAEgAAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAAFwAAAJcAAACXAAAAFwAAAJfAAAASAAAAF8AAABIAAAASAAAAEgAAABIAAAAXwAAAF8AAABPAAAAXwAAAFwAAANcAAABXAAAAl8AAABfAAAAXwAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABcAAADXAAAAlwAAAJFAAACRQAAAUUAAANFAAAASAAAAEgAAABfAAAAXwAAAF8AAABPAAAAXwAAAE8AAABfAAAAXAAAAlwAAANcAAADRQAAAkUAAAJFAAADRQAAA18AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABPAAAAXwAAAFwAAAJcAAABXAAAA18AAAAXAAAARQAAAEUAAABfAAAAFwAAABcAAAMXAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAAEKAAAAFwAAAkUAAAJFAAABRQAAAEUAAABFAAADRQAAAUUAAAJFAAAARQAAAkUAAABFAAADRQAAA0UAAANFAAABCgAAABcAAABFAAABRQAAAUUAAABFAAADRQAAAUUAAABFAAAARQAAAUUAAAJFAAABRQAAAEUAAAJFAAABRQAAAw== @@ -125,10 +125,10 @@ entities: tiles: XwAAAF8AAABfAAAAXwAAABcAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAl8AAABfAAAAXwAAABcAAAJcAAACXAAAA1wAAABcAAADXAAAA1wAAAFcAAAAFwAAA18AAAAXAAACFwAAAxcAAAIXAAACFwAAAl8AAAAXAAABXAAAAFwAAAFcAAAAXAAAAlwAAABcAAACXAAAAhcAAAIXAAADXAAAAlwAAAJcAAACXAAAA1wAAANfAAAAFwAAAVwAAANcAAACXAAAAVwAAANcAAADXAAAAFwAAAAXAAABXwAAAFwAAAFcAAADXAAAAVwAAABcAAABXwAAABcAAANcAAADXAAAAVwAAAJcAAABXAAAAFwAAAAXAAACFwAAAl8AAABcAAAAXAAAA1wAAABcAAABXAAAAl8AAAAXAAACXAAAAFwAAANcAAABXAAAA1wAAAFcAAABFwAAARcAAABfAAAAXAAAAVwAAANcAAADXAAAA1wAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAAEUAAAJFAAACRQAAAV8AAAAXAAACFwAAAhcAAAEXAAADXwAAADIAAAAyAAAAMgAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAkUAAANfAAAAFwAAABcAAAEXAAADFwAAAV8AAAAyAAAAMgAAADIAAABfAAAAUAAAAF8AAABfAAAARQAAAUUAAAJFAAADXwAAAF8AAABfAAAAFwAAAF8AAABfAAAAMgAAADIAAAAyAAAAMgAAADIAAAAyAAAAXwAAABcAAAJfAAAAFwAAAF8AAABFAAAARQAAAkUAAABFAAADXwAAAF8AAAAyAAAAMgAAADIAAAAyAAAAMgAAAF8AAAAXAAADFwAAABcAAAFfAAAARQAAAEUAAANFAAADRQAAAEUAAAFfAAAAMgAAADIAAAAyAAAAMgAAADIAAABfAAAAFwAAAxcAAAMXAAABXwAAAEUAAAJFAAADRQAAAUUAAANFAAABXwAAADIAAAAyAAAAMgAAADIAAAAyAAAAXwAAABcAAANfAAAAFwAAA18AAABfAAAAXwAAAEUAAAFfAAAAXwAAAF8AAABfAAAAMgAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAkUAAANFAAACRQAAAkUAAAFFAAACRQAAAEUAAANFAAACRQAAAkUAAAJFAAABRQAAA18AAAAXAAAARQAAAkUAAAFFAAADRQAAAUUAAAJFAAADRQAAAUUAAAFFAAACRQAAAkUAAABFAAADRQAAAkUAAAIXAAACFwAAAg== -4,-1: ind: -4,-1 - tiles: XwAAAEUAAABFAAACRQAAAl8AAABPAAAATwAAAF8AAABPAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAACXwAAAE8AAABPAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAATwAAAE8AAABPAAAAXwAAAF8AAABFAAAARQAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAkUAAANfAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAAAXAAAAlwAAAJfAAAAXwAAAEUAAABFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAAFwAAABcAAACRQAAA0UAAAJFAAADRQAAAEUAAAJFAAAARQAAA0UAAAJFAAABRQAAAV8AAABfAAAAXwAAAFwAAANcAAAAXAAAAEUAAANFAAADRQAAA0UAAANFAAAARQAAAEUAAAFFAAAARQAAAEUAAAFfAAAAXwAAAF8AAABcAAAAXAAAAVwAAANfAAAAXwAAAEUAAAJFAAABRQAAAkUAAANFAAADRQAAAUUAAANFAAABXwAAAF8AAABfAAAAXAAAAFwAAAJcAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAADRQAAAV8AAABfAAAAXwAAAFwAAAFcAAAAXAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAABRQAAA0UAAAJfAAAAXwAAAF8AAABfAAAAXAAAA18AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAA0UAAAJFAAADRQAAAkUAAAJFAAAARQAAAUUAAANFAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAANFAAACRQAAA0UAAABFAAADRQAAAkUAAANFAAADRQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAABRQAAAUUAAABfAAAAMgAAADIAAAAyAAAAMgAAADIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAEUAAABFAAADCgAAADIAAAAyAAAAMgAAADIAAAAyAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAANFAAADRQAAAQoAAAAyAAAAMgAAADIAAAAyAAAAMgAAAA== + tiles: XwAAAEUAAABFAAACRQAAAl8AAABPAAAATwAAAF8AAABPAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAACXwAAAE8AAABPAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAATwAAAE8AAABPAAAAXwAAAF8AAABFAAAARQAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAkUAAANfAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAAAXAAAAlwAAAJfAAAAXwAAAEUAAABFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAAFwAAABcAAACRQAAA0UAAAJFAAADRQAAAEUAAAJFAAAARQAAA0UAAAJFAAABRQAAAV8AAABfAAAAXwAAAFwAAANcAAAAXAAAAEUAAANFAAADRQAAA0UAAANFAAAARQAAAEUAAAFFAAAARQAAAEUAAAFfAAAAXwAAAF8AAABcAAAAXAAAAVwAAANfAAAAXwAAAEUAAAJFAAABRQAAAkUAAANFAAADRQAAAUUAAANFAAABXwAAAF8AAABfAAAAXAAAAFwAAAJcAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAADRQAAAV8AAABfAAAAXwAAAFwAAAFcAAAAXAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAABRQAAA0UAAAJfAAAAUAAAAF8AAABfAAAAXAAAA18AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAA0UAAAJFAAADRQAAAkUAAAJFAAAARQAAAUUAAANFAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAANFAAACRQAAA0UAAABFAAADRQAAAkUAAANFAAADRQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAABRQAAAUUAAABfAAAAMgAAADIAAAAyAAAAMgAAADIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAEUAAABFAAADCgAAADIAAAAyAAAAMgAAADIAAAAyAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAANFAAADRQAAAQoAAAAyAAAAMgAAADIAAAAyAAAAMgAAAA== -4,0: ind: -4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAAJFAAAARQAAAAoAAAAyAAAAMgAAADIAAAAyAAAAMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAADRQAAA0UAAANfAAAAMgAAADIAAAAyAAAAMgAAADIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAkUAAAFFAAADRQAAAkUAAANFAAABRQAAAEUAAAFFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAAFFAAACRQAAAUUAAAFFAAAARQAAA0UAAABFAAAARQAAAl8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAAARQAAA0UAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAAFFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAkUAAABFAAADRQAAAEUAAANFAAACRQAAAF8AAABPAAAATwAAAE8AAABfAAAATwAAAEUAAAFFAAAARQAAAkUAAAJFAAABRQAAAkUAAAJFAAABRQAAAEUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAEUAAAJFAAABRQAAAkUAAANFAAACRQAAAEUAAAJFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAAJFAAAARQAAAAoAAAAyAAAAMgAAADIAAAAyAAAAMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAADRQAAA0UAAANfAAAAMgAAADIAAAAyAAAAMgAAADIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAkUAAAFFAAADRQAAAkUAAANFAAABRQAAAEUAAAFFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAAFFAAACRQAAAUUAAAFFAAAARQAAA0UAAABFAAAARQAAAl8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAAARQAAA0UAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAAFFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAkUAAABFAAADRQAAAEUAAANFAAACRQAAAF8AAABPAAAATwAAAE8AAABfAAAATwAAAEUAAAFFAAAARQAAAkUAAAJFAAABRQAAAkUAAAJFAAABRQAAAEUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAEUAAAJFAAABRQAAAkUAAANFAAACRQAAAEUAAAJFAAAAUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -5,-1: ind: -5,-1 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAXwAAAEUAAAFFAAACRQAAAUUAAAFFAAADRQAAAEUAAABFAAAARQAAAUUAAANFAAAARQAAAAAAAABeAAAAAAAAAF8AAABFAAAARQAAA0UAAAFFAAADRQAAAUUAAAJFAAADRQAAAkUAAANFAAACRQAAAkUAAAMAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAACRQAAA0UAAABfAAAAAAAAAF4AAABeAAAAXwAAAF4AAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABFAAAARQAAA0UAAAFFAAACXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== @@ -149,7 +149,7 @@ entities: tiles: RQAAAV8AAABfAAAAXwAAAEUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANSAAADUgAAAFIAAANSAAABXwAAAEUAAABFAAACXwAAAF8AAABFAAADRQAAAkUAAABfAAAAXwAAAF8AAABFAAABRQAAAkUAAANFAAACRQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABPAAAAXwAAAE8AAABfAAAATwAAAF8AAABPAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAMQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAADEAAAAxAAAAXwAAAF8AAABfAAAADwAAAA8AAAAPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAMQAAAF8AAABfAAAAXwAAADYAAAA2AAAADwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAACFwAAARcAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAFwAAARcAAAAXAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAABcAAAIXAAADFwAAAg== -4,-2: ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXAAAAlwAAANfAAAAXAAAAFwAAAJcAAADXAAAA1wAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFwAAANcAAABXAAAAVwAAANcAAABXAAAA1wAAABcAAADXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXAAAAlwAAAJcAAABXAAAAF8AAABcAAACXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXAAAAVwAAANcAAAAXAAAA18AAABfAAAAXwAAAFwAAAJcAAACXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFwAAAFcAAABXAAAAFwAAAJcAAABXwAAAFwAAABcAAABXAAAAl8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABcAAABXAAAAFwAAANcAAABXAAAAFwAAABcAAABXAAAAV8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXAAAAVwAAAFcAAABXAAAAVwAAABfAAAAXAAAAFwAAAFcAAACXwAAAAAAAABfAAAAXwAAAF8AAABeAAAAXwAAAFwAAANcAAAAXAAAAFwAAAFcAAACXAAAAFwAAAFcAAACXwAAAF8AAAAAAAAAXwAAAF8AAABfAAAAXgAAAF8AAABcAAAAXAAAAVwAAAJcAAADXAAAAVwAAAJfAAAAXAAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAIwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAjAAAAIwAAACMAAAAjAAAAIwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAADRQAAAEUAAAFfAAAAIwAAACMAAAAjAAAAIwAAACMAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAkUAAAJFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXAAAAlwAAANfAAAAXAAAAFwAAAJcAAADXAAAA1wAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFwAAANcAAABXAAAAVwAAANcAAABXAAAA1wAAABcAAADXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXAAAAlwAAAJcAAABXAAAAF8AAABcAAACXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXAAAAVwAAANcAAAAXAAAA18AAABfAAAAXwAAAFwAAAJcAAACXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFwAAAFcAAABXAAAAFwAAAJcAAABXwAAAFwAAABcAAABXAAAAl8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABcAAABXAAAAFwAAANcAAABXAAAAFwAAABcAAABXAAAAV8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXAAAAVwAAAFcAAABXAAAAVwAAABfAAAAXAAAAFwAAAFcAAACXwAAAAAAAABfAAAAXwAAAF8AAABeAAAAXwAAAFwAAANcAAAAXAAAAFwAAAFcAAACXAAAAFwAAAFcAAACXwAAAF8AAAAAAAAAXwAAAF8AAABfAAAAXgAAAF8AAABcAAAAXAAAAVwAAAJcAAADXAAAAVwAAAJfAAAAXAAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAIwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAjAAAAIwAAACMAAAAjAAAAIwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAADRQAAAEUAAAFfAAAAIwAAACMAAAAjAAAAIwAAACMAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAkUAAAJFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAA1AAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== -5,-2: ind: -5,-2 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEUAAAFFAAABRQAAAEUAAAFFAAACRQAAAkUAAABFAAACRQAAAUUAAAIAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABFAAAARQAAA0UAAAJFAAADRQAAAUUAAABFAAACRQAAAkUAAAJFAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== @@ -200,19 +200,19 @@ entities: tiles: RQAAAUUAAABFAAAAXwAAABcAAAEXAAADXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAABcAAAMXAAACRQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABFAAACRQAAAUUAAAFfAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAACkAAAApAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAACkAAAApAAAAKQAAAF8AAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAApAAAAKQAAACkAAABfAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAACkAAAApAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 4,0: ind: 4,0 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAXwAAAF8AAABfAAAAAAAAAA== + tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXwAAAA== -3,2: ind: -3,2 tiles: AAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAATwAAAF8AAABPAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAATwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABPAAAATwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAA== -1,-3: ind: -1,-3 - tiles: FwAAAxcAAAEXAAABFwAAAhcAAAIXAAAAFwAAAhcAAABfAAAAXwAAAE8AAABfAAAARQAAAUUAAABFAAADXwAAABcAAAMXAAADFwAAAxcAAAIXAAAAFwAAAhcAAAMXAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAADRQAAAl8AAABfAAAAFwAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAFAAAABFAAADRQAAAEUAAABfAAAAFwAAAFIAAAFSAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAARQAAAEUAAAJFAAADXwAAAFIAAABSAAAAUgAAAl8AAAA0AAAANAAAADQAAABfAAAAXwAAAF8AAABPAAAAXwAAAEUAAAFFAAAARQAAAV8AAABSAAACUgAAA1IAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABFAAAARQAAA0UAAANfAAAAUgAAAlIAAAFSAAABUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAARQAAA0UAAABFAAAAXwAAABcAAAAXAAACFwAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAACRQAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAkUAAAFfAAAAUgAAA1IAAABFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAANFAAACXwAAAFIAAAJSAAABRQAAAV8AAABPAAAATwAAAE8AAABPAAAATwAAAE8AAABPAAAAUAAAAEUAAANFAAAARQAAAF8AAABSAAACUgAAAUUAAAJfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABRQAAAEUAAAJFAAACUgAAAlIAAAJSAAABXwAAAE8AAABfAAAAUgAAA1IAAAFSAAACUgAAAVIAAAFFAAABRQAAA0UAAABFAAABRQAAA1IAAANSAAABRQAAA18AAABPAAAAXwAAAFIAAAFSAAADUgAAA1IAAANSAAAARQAAAkUAAANFAAACRQAAAUUAAAJSAAACUgAAAUUAAABfAAAAUAAAAF8AAABSAAADUgAAAVIAAANSAAADUgAAAEUAAAFFAAAARQAAA0UAAABfAAAAXwAAAF8AAABfAAAAXwAAAFIAAANfAAAAUgAAAlIAAANSAAABUgAAAlIAAABfAAAARQAAAkUAAAFFAAABXwAAAA== + tiles: FwAAAxcAAAEXAAABFwAAAhcAAAIXAAAAFwAAAhcAAABfAAAAXwAAAE8AAABfAAAARQAAAUUAAABFAAADXwAAABcAAAMXAAADFwAAAxcAAAIXAAAAFwAAAhcAAAMXAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAADRQAAAl8AAABfAAAAFwAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAFAAAABFAAADRQAAAEUAAABQAAAAFwAAAFIAAAFSAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAARQAAAEUAAAJFAAADXwAAAFIAAABSAAAAUgAAAl8AAAA0AAAANAAAADQAAABfAAAAXwAAAF8AAABPAAAAXwAAAEUAAAFFAAAARQAAAV8AAABSAAACUgAAA1IAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABFAAAARQAAA0UAAANfAAAAUgAAAlIAAAFSAAABUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAARQAAA0UAAABFAAAAXwAAABcAAAAXAAACFwAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAACRQAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAkUAAAFfAAAAUgAAA1IAAABFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAANFAAACXwAAAFIAAAJSAAABRQAAAV8AAABPAAAATwAAAE8AAABPAAAATwAAAE8AAABPAAAAUAAAAEUAAANFAAAARQAAAF8AAABSAAACUgAAAUUAAAJfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABRQAAAEUAAAJFAAACUgAAAlIAAAJSAAABUAAAAE8AAABfAAAAUgAAA1IAAAFSAAACUgAAAVIAAAFFAAABRQAAA0UAAABFAAABRQAAA1IAAANSAAABRQAAA18AAABPAAAAXwAAAFIAAAFSAAADUgAAA1IAAANSAAAARQAAAkUAAANFAAACRQAAAUUAAAJSAAACUgAAAUUAAABfAAAAUAAAAF8AAABSAAADUgAAAVIAAANSAAADUgAAAEUAAAFFAAAARQAAA0UAAABfAAAAXwAAAF8AAABfAAAAXwAAAFIAAANfAAAAUgAAAlIAAANSAAABUgAAAlIAAABfAAAARQAAAkUAAAFFAAABXwAAAA== 0,-3: ind: 0,-3 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFIAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAA1IAAAFSAAADUgAAA1IAAABSAAAAUgAAA1IAAAJSAAABUgAAAVIAAAFSAAADUgAAA1IAAANfAAAAXwAAAFIAAAFSAAADOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAFIAAABSAAAAUgAAA1IAAAJSAAACXwAAAF8AAABSAAAAUgAAAFIAAABSAAAAUgAAAVIAAAJSAAABUgAAA1IAAABSAAABKQAAACkAAABSAAABUgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAACUgAAAikAAAApAAAAUgAAA1IAAABFAAADFwAAABcAAAEXAAAAFwAAARcAAABSAAABUgAAAlIAAAJfAAAAUgAAAFIAAANSAAADUgAAAFIAAAFSAAADRQAAAxcAAAMXAAABFwAAARcAAAMXAAACUgAAAVIAAAJSAAAAXwAAAFIAAAFSAAABUgAAAlIAAABSAAADUgAAAkUAAAIXAAACFwAAAxcAAAAXAAACFwAAAVIAAAFSAAACUgAAAV8AAABFAAACRQAAAEUAAAFfAAAAUgAAAlIAAAFFAAADFwAAABcAAAIXAAADFwAAABcAAANSAAAAUgAAA1IAAANfAAAAUgAAAFIAAABSAAADXwAAAF8AAABfAAAARQAAABcAAAEXAAADFwAAARcAAAIXAAAAUgAAAFIAAABSAAAAXwAAAFIAAAA6AAAAUgAAAV8AAABFAAAARQAAAF8AAABFAAABRQAAAEUAAAFFAAABXwAAAFIAAAJfAAAAXwAAAF8AAABSAAACOgAAAFIAAABfAAAARQAAAkUAAAJfAAAARQAAAEUAAANFAAACRQAAAl8AAABSAAABUgAAAlIAAAJSAAADUgAAADoAAABSAAAAXwAAAEUAAABFAAABXwAAAEUAAABFAAABRQAAAUUAAABfAAAAUgAAAjoAAAA6AAAAOgAAADoAAAA6AAAAUgAAA0UAAAJFAAAARQAAA18AAABFAAACRQAAA0UAAABFAAAAXwAAAFIAAAFSAAADUgAAAFIAAABSAAABUgAAAVIAAAFfAAAARQAAAkUAAABfAAAAXwAAAEUAAAJfAAAAXwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAFIAAAFfAAAAXwAAAF8AAABfAAAARQAAAEUAAAJFAAABRQAAAEUAAAFfAAAAUgAAAVIAAAMXAAAAXwAAAFIAAANSAAACRQAAABcAAANFAAADRQAAAQ== + tiles: UAAAAF8AAABfAAAAUAAAAF8AAABfAAAAXwAAAFIAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAA1IAAAFSAAADUgAAA1IAAABSAAAAUgAAA1IAAAJSAAABUgAAAVIAAAFSAAADUgAAA1IAAANfAAAAXwAAAFIAAAFSAAADOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAFIAAABSAAAAUgAAA1IAAAJSAAACXwAAAF8AAABSAAAAUgAAAFIAAABSAAAAUgAAAVIAAAJSAAABUgAAA1IAAABSAAABKQAAACkAAABSAAABUgAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAACUgAAAikAAAApAAAAUgAAA1IAAABFAAADFwAAABcAAAEXAAAAFwAAARcAAABSAAABUgAAAlIAAAJfAAAAUgAAAFIAAANSAAADUgAAAFIAAAFSAAADRQAAAxcAAAMXAAABFwAAARcAAAMXAAACUgAAAVIAAAJSAAAAXwAAAFIAAAFSAAABUgAAAlIAAABSAAADUgAAAkUAAAIXAAACFwAAAxcAAAAXAAACFwAAAVIAAAFSAAACUgAAAV8AAABFAAACRQAAAEUAAAFfAAAAUgAAAlIAAAFFAAADFwAAABcAAAIXAAADFwAAABcAAANSAAAAUgAAA1IAAANfAAAAUgAAAFIAAABSAAADXwAAAF8AAABfAAAARQAAABcAAAEXAAADFwAAARcAAAIXAAAAUgAAAFIAAABSAAAAXwAAAFIAAAA6AAAAUgAAAV8AAABFAAAARQAAAF8AAABFAAABRQAAAEUAAAFFAAABXwAAAFIAAAJfAAAAXwAAAF8AAABSAAACOgAAAFIAAABfAAAARQAAAkUAAAJfAAAARQAAAEUAAANFAAACRQAAAl8AAABSAAABUgAAAlIAAAJSAAADUgAAADoAAABSAAAAXwAAAEUAAABFAAABXwAAAEUAAABFAAABRQAAAUUAAABfAAAAUgAAAjoAAAA6AAAAOgAAADoAAAA6AAAAUgAAA0UAAAJFAAAARQAAA18AAABFAAACRQAAA0UAAABFAAAAXwAAAFIAAAFSAAADUgAAAFIAAABSAAABUgAAAVIAAAFfAAAARQAAAkUAAABfAAAAXwAAAEUAAAJfAAAAXwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAFIAAAFfAAAAXwAAAF8AAABfAAAARQAAAEUAAAJFAAABRQAAAEUAAAFfAAAAUgAAAVIAAAMXAAAAXwAAAFIAAANSAAACRQAAABcAAANFAAADRQAAAQ== 1,-3: ind: 1,-3 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABPAAAAXwAAAE8AAABPAAAAXwAAAE8AAABPAAAATwAAAE8AAABfAAAATwAAAE8AAABfAAAATwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJSAAAAUgAAA1IAAANSAAABUgAAAVIAAABSAAADUgAAAlIAAAFSAAADUgAAAlIAAANSAAADXwAAAEUAAANFAAABUgAAAzoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAUgAAADkAAABFAAADRQAAAFIAAAJSAAAAUgAAAVIAAAFSAAACUgAAAFIAAAFSAAADUgAAA1IAAAFSAAAAUgAAAlIAAANfAAAARQAAA18AAABSAAACXwAAAF8AAABfAAAAFwAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAACFwAAAhcAAAEXAAAAXAAAAFwAAANcAAADXwAAABcAAAMXAAABFwAAAV8AAABfAAAARQAAAkUAAAJfAAAAFwAAARcAAAAXAAADFwAAAlwAAAFcAAAAXAAAA18AAAAXAAADFwAAAxcAAAJfAAAAXwAAAEUAAAFFAAADXwAAABcAAAIXAAACFwAAABcAAANcAAABXAAAA1wAAABfAAAAXwAAABcAAABfAAAAXwAAAF8AAABFAAABRQAAAF8AAAAXAAADFwAAAhcAAAIXAAACUgAAAFIAAANSAAAAXwAAAA8AAAAXAAADDwAAAF8AAABfAAAARQAAAEUAAAJfAAAAFwAAARcAAAEXAAACFwAAAVIAAANSAAACUgAAAF8AAAAPAAAAFwAAAA8AAABfAAAAXwAAAEUAAAFFAAADXwAAABcAAAAXAAABFwAAARcAAABSAAABUgAAA1IAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAl8AAABFAAADRQAAA1IAAANSAAABUgAAADsAAAA7AAAAOwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAA== + tiles: XwAAAF8AAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABPAAAAXwAAAE8AAABPAAAAXwAAAE8AAABPAAAATwAAAE8AAABfAAAATwAAAE8AAABfAAAATwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUAAAAEUAAAJSAAAAUgAAA1IAAANSAAABUgAAAVIAAABSAAADUgAAAlIAAAFSAAADUgAAAlIAAANSAAADXwAAAEUAAANFAAABUgAAAzoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAUgAAADkAAABFAAADRQAAAFIAAAJSAAAAUgAAAVIAAAFSAAACUgAAAFIAAAFSAAADUgAAA1IAAAFSAAAAUgAAAlIAAANfAAAARQAAA18AAABSAAACXwAAAF8AAABfAAAAFwAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAJfAAAAXwAAAFAAAABfAAAAXwAAAF8AAAAXAAACFwAAAhcAAAEXAAAAXAAAAFwAAANcAAADXwAAABcAAAMXAAABFwAAAV8AAABfAAAARQAAAkUAAAJfAAAAFwAAARcAAAAXAAADFwAAAlwAAAFcAAAAXAAAA18AAAAXAAADFwAAAxcAAAJfAAAAXwAAAEUAAAFFAAADXwAAABcAAAIXAAACFwAAABcAAANcAAABXAAAA1wAAABfAAAAXwAAABcAAABfAAAAXwAAAF8AAABFAAABRQAAAF8AAAAXAAADFwAAAhcAAAIXAAACUgAAAFIAAANSAAAAXwAAAA8AAAAXAAADDwAAAF8AAABfAAAARQAAAEUAAAJfAAAAFwAAARcAAAEXAAACFwAAAVIAAANSAAACUgAAAF8AAAAPAAAAFwAAAA8AAABfAAAAXwAAAEUAAAFFAAADXwAAABcAAAAXAAABFwAAARcAAABSAAABUgAAA1IAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAl8AAABFAAADRQAAA1IAAANSAAABUgAAADsAAAA7AAAAOwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAA== -3,4: ind: -3,4 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== @@ -221,16 +221,16 @@ entities: tiles: AAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 4,-1: ind: 4,-1 - tiles: XwAAAF4AAABfAAAAOwAAADsAAAA7AAAAXwAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAF8AAABeAAAAXwAAADsAAAA7AAAAOwAAAF8AAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAXwAAAF4AAABfAAAAOwAAADsAAAA7AAAAXwAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAF8AAABeAAAAXwAAADsAAAA7AAAAOwAAAF8AAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAABfAAAAXgAAAF8AAAA7AAAAOwAAADsAAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAF8AAABeAAAAXwAAADsAAAA7AAAAOwAAAF8AAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABfAAAAXgAAAF8AAAA7AAAAOwAAADsAAABfAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAXwAAAF4AAABfAAAAOwAAADsAAAA7AAAAXwAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAABeAAAAXgAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAABfAAAAXgAAAF4AAABeAAAAXgAAAF8AAABeAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAXwAAAF4AAAAAAAAAAAAAAAAAAABfAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAA== + tiles: XwAAAF4AAABfAAAAOwAAADsAAAA7AAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAADsAAAA7AAAAOwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAXwAAAAAAAABeAAAAAAAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAXwAAAF4AAABfAAAAOwAAADsAAAA7AAAAXwAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAF8AAABeAAAAXwAAADsAAAA7AAAAOwAAAF8AAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAABfAAAAXgAAAF8AAAA7AAAAOwAAADsAAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAF8AAABeAAAAXwAAADsAAAA7AAAAOwAAAF8AAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABfAAAAXgAAAF8AAAA7AAAAOwAAADsAAABfAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAXwAAAF4AAABfAAAAOwAAADsAAAA7AAAAXwAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAABeAAAAXgAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAABfAAAAXgAAAF4AAABeAAAAXgAAAF8AAABeAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAXwAAAF4AAAAAAAAAAAAAAAAAAABfAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAA== 4,-2: ind: 4,-2 - tiles: XgAAAF4AAAAAAAAAXwAAADsAAAA7AAAAOwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAAA7AAAAOwAAADsAAABfAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAABfAAAAXwAAADsAAABfAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXgAAAF4AAAAAAAAAXgAAAAAAAABeAAAAXgAAAF8AAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABeAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAXwAAAF4AAABeAAAAXgAAAF4AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAABfAAAAXgAAAF8AAAA7AAAAOwAAADsAAABfAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAXwAAAF4AAABfAAAAOwAAADsAAAA7AAAAXwAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAF8AAABeAAAAXwAAADsAAAA7AAAAOwAAAF8AAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXwAAAF4AAABfAAAAOwAAADsAAAA7AAAAXwAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAA== + tiles: XgAAAF4AAAAAAAAAXwAAADsAAAA7AAAAOwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAAA7AAAAOwAAADsAAABfAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAABfAAAAXwAAADsAAABfAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXgAAAF4AAAAAAAAAXgAAAAAAAABeAAAAXgAAAF8AAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABeAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAXwAAAF4AAABeAAAAXgAAAF4AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAABfAAAAXgAAAF8AAAA7AAAAOwAAADsAAABfAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAXwAAAF4AAABfAAAAOwAAADsAAAA7AAAAXwAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAF8AAABeAAAAXwAAADsAAAA7AAAAOwAAAF8AAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAXwAAAF4AAABfAAAAOwAAADsAAAA7AAAAXwAAAF8AAAAAAAAAXgAAAAAAAABfAAAAAAAAAF4AAAAAAAAAXwAAAA== 3,-3: ind: 3,-3 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAOwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== 5,0: ind: 5,0 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAABFwAAAxcAAAEXAAAAFwAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAFwAAAhcAAAIXAAADFwAAABcAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF4AAABfAAAAXgAAABcAAAJeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAFwAAAV4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAABcAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXwAAAF4AAAAXAAADFwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAABcAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAXAAABAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAFwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAXAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAA== + tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAABFwAAAxcAAAEXAAAAFwAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAFwAAAhcAAAIXAAADFwAAABcAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF4AAABfAAAAXgAAABcAAAJeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAFwAAAV4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAABcAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXwAAAF4AAAAXAAADFwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAABcAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAXAAABAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAFwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAXAAADAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABeAAAAFwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAXgAAABcAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== 4,-3: ind: 4,-3 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXwAAADsAAAA7AAAAOwAAAF8AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== @@ -254,19 +254,19 @@ entities: tiles: FwAAAxcAAAIXAAAAFwAAAhcAAAEXAAAAFwAAAxcAAAMXAAACXwAAAFIAAAFSAAABUgAAAV8AAAAXAAABFwAAARcAAAAXAAACFwAAAhcAAAMXAAAAFwAAARcAAAAXAAACFwAAAhcAAANSAAACUgAAAVIAAAJfAAAAFwAAABcAAAEXAAADFwAAABcAAAAXAAABFwAAARcAAAMXAAAAFwAAAxcAAAIXAAABUgAAA1IAAANSAAAAXwAAAF8AAABfAAAAFwAAA18AAABfAAAAFwAAAV8AAABfAAAAFwAAA18AAABfAAAAXwAAAFIAAAFSAAAAUgAAAl8AAAAXAAABFwAAA1IAAAJSAAADXwAAAFIAAANSAAABXwAAAFIAAAFSAAABXwAAAFIAAAFSAAACUgAAAFIAAANfAAAAUgAAA1IAAABSAAACUgAAA18AAABSAAABUgAAAF8AAABSAAACUgAAAl8AAABSAAACUgAAAlIAAAFSAAABUgAAAFIAAAJSAAACUgAAAl8AAABfAAAAUgAAAl8AAABfAAAAUgAAAV8AAABfAAAAUgAAAVIAAANSAAAAUgAAAVIAAAJSAAAAUgAAAlIAAAJSAAACUgAAAVIAAANSAAADUgAAAFIAAANSAAADUgAAAFIAAAJSAAAAUgAAA1IAAABfAAAAFwAAAxcAAABSAAACUgAAAVIAAAJSAAADUgAAA1IAAANSAAACUgAAAl8AAABSAAAAUgAAAVIAAAFSAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAA18AAABSAAAAXwAAAF8AAABfAAAAXwAAAFIAAAFSAAAAUgAAAV8AAABSAAACUgAAAFIAAANSAAAAUgAAAlIAAAJSAAACUgAAAFIAAABSAAAAUgAAAl8AAAAXAAAAFwAAARcAAAFfAAAAUgAAAVIAAAJSAAACUgAAAlIAAAJSAAAAUgAAA1IAAAFSAAAAUgAAAFIAAABfAAAAUgAAAFIAAABSAAABXwAAAFIAAAFSAAADUgAAA1IAAABSAAAAUgAAA1IAAANSAAAAUgAAAVIAAAJSAAACXwAAAFIAAABSAAAAUgAAAl8AAABSAAADUgAAAlIAAANSAAAAUgAAA1IAAAJSAAADUgAAAlIAAAJSAAAAUgAAAlIAAANSAAABUgAAA1IAAANSAAADUgAAAVIAAABSAAAAUgAAAVIAAAFSAAAAKQAAAFIAAAFSAAABUgAAA1IAAAJfAAAAUgAAAFIAAAJSAAADXwAAAFIAAABSAAADUgAAAFIAAAJSAAABUgAAAVIAAAFSAAAAUgAAA1IAAABSAAADUgAAAlIAAAFSAAABUgAAAl8AAABfAAAAXwAAAA== -3,-3: ind: -3,-3 - tiles: XwAAAF8AAABfAAAAXwAAAFIAAANSAAACUgAAAl8AAABFAAACRQAAA18AAAAXAAACFwAAAhcAAAEXAAABFwAAAVIAAAJSAAACUgAAAFIAAANSAAACUgAAA1IAAABSAAAARQAAAkUAAAAXAAAAFwAAAxcAAAIXAAABFwAAAxcAAAFfAAAAXwAAAF8AAABfAAAAUgAAAlIAAABSAAACXwAAAEUAAABFAAABXwAAABcAAAEXAAACFwAAAhcAAAIXAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABEAAAJRAAACkQAAAVfAAAAXwAAAF8AAABPAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAATwAAAF8AAABfAAAAXwAAAE8AAABPAAAATwAAAE8AAABPAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAE8AAABfAAAARQAAAkUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAAARQAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAE8AAABPAAAAXwAAAEUAAABFAAAAXwAAAEUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFfAAAAXwAAAEUAAABFAAADXwAAAF8AAABfAAAARQAAAEUAAANFAAACRQAAA0UAAAFfAAAAXwAAAF8AAABFAAACRQAAAUUAAAJfAAAARQAAA18AAABfAAAAXwAAAEUAAABSAAAAUgAAAlIAAAFSAAADXwAAAEUAAABfAAAAXwAAAEUAAABFAAADXwAAAF8AAABfAAAAXwAAAF8AAABFAAACUgAAA1IAAANSAAAAUgAAA1IAAAFFAAADRQAAAEUAAANfAAAARQAAAl8AAABFAAABXwAAAF8AAABfAAAARQAAAlIAAAJSAAAAUgAAAVIAAANfAAAAXwAAAF8AAABFAAAAXwAAAF8AAABfAAAARQAAAl8AAABfAAAAXwAAAEUAAAJSAAABUgAAA1IAAANSAAADUgAAAQ== + tiles: XwAAAF8AAABfAAAAXwAAAFIAAANSAAACUgAAAl8AAABFAAACRQAAA18AAAAXAAACFwAAAhcAAAEXAAABFwAAAVIAAAJSAAACUgAAAFIAAANSAAACUgAAA1IAAABSAAAARQAAAkUAAAAXAAAAFwAAAxcAAAIXAAABFwAAAxcAAAFfAAAAXwAAAF8AAABfAAAAUgAAAlIAAABSAAACXwAAAEUAAABFAAABXwAAABcAAAEXAAACFwAAAhcAAAIXAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABEAAAJRAAACkQAAAVfAAAAXwAAAF8AAABPAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAATwAAAF8AAABfAAAAXwAAAE8AAABPAAAATwAAAE8AAABPAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAE8AAABfAAAARQAAAkUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAAARQAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAE8AAABPAAAAXwAAAEUAAABFAAAAXwAAAEUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFfAAAAXwAAAEUAAABFAAADXwAAAF8AAABfAAAARQAAAEUAAANFAAACRQAAA0UAAAFfAAAAXwAAAF8AAABFAAACRQAAAUUAAAJfAAAARQAAA18AAABfAAAAXwAAAEUAAABSAAAAUgAAAlIAAAFSAAADXwAAAEUAAABfAAAAXwAAAEUAAABFAAADXwAAAF8AAABfAAAAXwAAAF8AAABFAAACUgAAA1IAAANSAAAAUgAAA1IAAAFFAAADRQAAAEUAAANfAAAARQAAAl8AAABFAAABXwAAAF8AAABfAAAARQAAAlIAAAJSAAAAUgAAAVIAAANfAAAAXwAAAF8AAABFAAAAXwAAAF8AAABfAAAARQAAAl8AAABfAAAAXwAAAEUAAAJSAAABUgAAA1IAAANSAAADUgAAAQ== 0,-4: ind: 0,-4 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAF4AAABPAAAATwAAAF8AAABPAAAATwAAAF8AAABfAAAATwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAAXwAAAE8AAABfAAAATwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAE8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAArAAAAKwAAACsAAABfAAAASAAAAF8AAABFAAAARQAAAUUAAABFAAABRQAAA14AAABfAAAAOwAAADsAAAA7AAAAKwAAACsAAAArAAAAKwAAACsAAABfAAAAXwAAAEUAAAJFAAADRQAAA0UAAAFeAAAAXwAAADsAAAA7AAAAOwAAAF8AAABfAAAAKwAAACsAAAArAAAAXwAAAEUAAAFFAAABRQAAAUUAAAJFAAADXwAAAF8AAAA7AAAAOwAAADsAAABfAAAAXwAAAF8AAAArAAAAKwAAAF8AAABFAAAARQAAAEUAAAJFAAAARQAAAUUAAANfAAAAXwAAABcAAAJfAAAARQAAAEgAAAAXAAACFwAAACsAAABfAAAARQAAAEUAAAFFAAABRQAAAEUAAAFFAAADXwAAAEUAAAJFAAAARQAAAF8AAABIAAAAXwAAAF8AAAAXAAAAXwAAAEUAAAJSAAABUgAAA1IAAAFSAAAAUgAAAUUAAAJFAAABRQAAAkUAAANfAAAAXwAAABcAAANfAAAAXwAAAF8AAABSAAAAUgAAA1IAAAJSAAABUgAAAFIAAANFAAAARQAAAEUAAAJFAAAAXwAAAF8AAAAXAAACXwAAAEgAAABfAAAAUgAAAVIAAAFSAAACUgAAA1IAAANSAAAAXwAAAEUAAAJFAAABRQAAAQ== + tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAF4AAABPAAAATwAAAF8AAABPAAAATwAAAF8AAABfAAAATwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAAXwAAAE8AAABfAAAATwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAE8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAArAAAAKwAAACsAAABfAAAASAAAAF8AAABFAAAARQAAAUUAAABFAAABRQAAA14AAABfAAAAOwAAADsAAAA7AAAAKwAAACsAAAArAAAAKwAAACsAAABfAAAAXwAAAEUAAAJFAAADRQAAA0UAAAFeAAAAXwAAADsAAAA7AAAAOwAAAF8AAABfAAAAKwAAACsAAAArAAAAXwAAAEUAAAFFAAABRQAAAUUAAAJFAAADXwAAAF8AAAA7AAAAOwAAADsAAABfAAAAXwAAAF8AAAArAAAAKwAAAF8AAABFAAAARQAAAEUAAAJFAAAARQAAAUUAAANfAAAAXwAAABcAAAJfAAAARQAAAEgAAAAXAAACFwAAACsAAABfAAAARQAAAEUAAAFFAAABRQAAAEUAAAFFAAADXwAAAEUAAAJFAAAARQAAAF8AAABIAAAAXwAAAF8AAAAXAAAAXwAAAEUAAAJSAAABUgAAA1IAAAFSAAAAUgAAAUUAAAJFAAABRQAAAkUAAANfAAAAXwAAABcAAANfAAAAXwAAAF8AAABSAAAAUgAAA1IAAAJSAAABUgAAAFIAAANFAAAARQAAAEUAAAJFAAAAXwAAAF8AAAAXAAACXwAAAEgAAABfAAAAUgAAAVIAAAFSAAACUgAAA1IAAANSAAAAXwAAAEUAAAJFAAABRQAAAQ== -1,-4: ind: -1,-4 - tiles: XwAAAF8AAABfAAAAXwAAAEUAAAJFAAACRQAAA0UAAANFAAAARQAAAUUAAAFFAAAARQAAAEUAAANFAAABXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAACRQAAA0UAAANFAAABRQAAAkUAAAJFAAADRQAAAV8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAANFAAADRQAAAkUAAANFAAADRQAAA0UAAAJFAAABRQAAAkUAAANfAAAARQAAAF8AAABfAAAAXwAAABcAAAIXAAACFwAAAF8AAAAXAAACFwAAAhcAAAJfAAAARQAAA0UAAAJFAAADXwAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAADRQAAAF8AAABFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAEUAAANfAAAARQAAAl8AAABPAAAATwAAAE8AAABPAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAAFFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAACRQAAAV8AAABSAAABUgAAAl8AAAAUAAADFAAAABQAAAVfAAAATwAAAF8AAABfAAAAXwAAABcAAAJFAAADRQAAAEUAAAFfAAAAUgAAAlIAAAFfAAAAFAAAAhQAAAEUAAAGXwAAAE8AAABfAAAAXwAAAF8AAAAXAAADRQAAAkUAAAFFAAAAXwAAAFIAAAJSAAAAXwAAABQAAAMUAAAGFAAABl8AAABPAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAABRQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABFAAAARQAAAUUAAANfAAAAFwAAAxcAAAMXAAABFwAAAxcAAAIXAAABFwAAARcAAAFfAAAAXwAAAE8AAABfAAAARQAAA0UAAAFFAAABRQAAAhcAAAEXAAADFwAAARcAAAAXAAABFwAAAxcAAAEXAAABUAAAAF8AAABPAAAAXwAAAEUAAAFFAAADRQAAA0UAAAEXAAAAFwAAARcAAAIXAAABFwAAABcAAAIXAAADFwAAA18AAABfAAAATwAAAF8AAABFAAADRQAAAEUAAANfAAAAFwAAARcAAAEXAAADFwAAABcAAAAXAAADFwAAABcAAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAABFAAAAXwAAAA== + tiles: XwAAAF8AAABfAAAAXwAAAEUAAAJFAAACRQAAA0UAAANFAAAARQAAAUUAAAFFAAAARQAAAEUAAANFAAABXwAAAF8AAABfAAAAXwAAAFAAAABFAAAARQAAAEUAAABFAAACRQAAA0UAAANFAAABRQAAAkUAAAJFAAADRQAAAV8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAANFAAADRQAAAkUAAANFAAADRQAAA0UAAAJFAAABRQAAAkUAAANfAAAARQAAAF8AAABfAAAAXwAAABcAAAIXAAACFwAAAF8AAAAXAAACFwAAAhcAAAJfAAAARQAAA0UAAAJFAAADXwAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAADRQAAAF8AAABFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABFAAADRQAAAEUAAANfAAAARQAAAl8AAABPAAAATwAAAE8AAABPAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAAFFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAACRQAAAV8AAABSAAABUgAAAl8AAAAUAAADFAAAABQAAAVfAAAATwAAAF8AAABfAAAAXwAAABcAAAJFAAADRQAAAEUAAAFfAAAAUgAAAlIAAAFfAAAAFAAAAhQAAAEUAAAGXwAAAE8AAABfAAAAXwAAAF8AAAAXAAADRQAAAkUAAAFFAAAAXwAAAFIAAAJSAAAAXwAAABQAAAMUAAAGFAAABl8AAABPAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAABRQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABFAAAARQAAAUUAAANfAAAAFwAAAxcAAAMXAAABFwAAAxcAAAIXAAABFwAAARcAAAFfAAAAXwAAAE8AAABfAAAARQAAA0UAAAFFAAABRQAAAhcAAAEXAAADFwAAARcAAAAXAAABFwAAAxcAAAEXAAABUAAAAF8AAABPAAAAXwAAAEUAAAFFAAADRQAAA0UAAAEXAAAAFwAAARcAAAIXAAABFwAAABcAAAIXAAADFwAAA18AAABfAAAATwAAAF8AAABFAAADRQAAAEUAAANfAAAAFwAAARcAAAEXAAADFwAAABcAAAAXAAADFwAAABcAAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAABFAAAAXwAAAA== -2,-4: ind: -2,-4 - tiles: XwAAABcAAAIXAAABXwAAADIAAAAyAAAAMgAAADIAAAAXAAABFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABFAAADRQAAAk8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAE8AAABfAAAARQAAAUUAAANfAAAAXwAAAF8AAABfAAAAFwAAAEUAAAAXAAAARQAAAhcAAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAADXwAAAEgAAABfAAAAXwAAAEUAAAMXAAACRQAAABcAAABFAAABXwAAAFIAAABSAAACUgAAAV8AAABFAAACRQAAAl8AAABfAAAAXwAAAF8AAAAXAAACRQAAARcAAAJFAAABFwAAAkUAAAJSAAADUgAAAlIAAAFfAAAAXwAAAEUAAAJfAAAAXwAAAF8AAABfAAAARQAAAhcAAAJFAAAAFwAAAkUAAANfAAAAUgAAAlIAAAFSAAABUgAAAlIAAAFSAAADSAAAAEgAAABfAAAAXwAAABcAAABFAAAAFwAAAEUAAAEXAAAAXwAAAFIAAAFSAAABUgAAAlIAAAJSAAAAUgAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAAAUgAAAFIAAAFSAAAAUgAAA1IAAAMXAAABFwAAAF8AAAAXAAACFwAAAVIAAAFSAAAAUgAAAlIAAAFfAAAAUgAAAVIAAAFSAAAAXwAAAF8AAABfAAAAFwAAAhcAAANfAAAAFwAAAhcAAABSAAADUgAAAVIAAANSAAABXwAAABcAAAMXAAAAFwAAAV8AAAAXAAABFwAAARcAAAAXAAABXwAAABcAAAMXAAADUgAAAlIAAANSAAADUgAAA18AAABSAAADUgAAAFIAAAJfAAAAFwAAAhcAAAMXAAAAXwAAAF8AAABfAAAAFwAAABcAAAEXAAABFwAAARcAAAFfAAAAUgAAA1IAAANSAAACXwAAABcAAAAXAAACFwAAAF8AAAAXAAAAXwAAABcAAAFfAAAAXwAAAF8AAABfAAAAXwAAAFIAAABSAAACUgAAARcAAAEXAAACFwAAAw== + tiles: XwAAABcAAAIXAAABXwAAADIAAAAyAAAAMgAAADIAAAAXAAABFwAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAAF8AAABfAAAAUAAAAF8AAABfAAAAXwAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABFAAADRQAAAk8AAABfAAAAXwAAAF8AAABfAAAAUAAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAE8AAABfAAAARQAAAUUAAANfAAAAXwAAAF8AAABfAAAAFwAAAEUAAAAXAAAARQAAAhcAAABfAAAAXwAAAFAAAABfAAAAXwAAAEUAAABFAAADXwAAAEgAAABfAAAAXwAAAEUAAAMXAAACRQAAABcAAABFAAABXwAAAFIAAABSAAACUgAAAV8AAABFAAACRQAAAl8AAABfAAAAXwAAAF8AAAAXAAACRQAAARcAAAJFAAABFwAAAkUAAAJSAAADUgAAAlIAAAFfAAAAXwAAAEUAAAJfAAAAXwAAAF8AAABfAAAARQAAAhcAAAJFAAAAFwAAAkUAAANfAAAAUgAAAlIAAAFSAAABUgAAAlIAAAFSAAADSAAAAEgAAABfAAAAXwAAABcAAABFAAAAFwAAAEUAAAEXAAAAXwAAAFIAAAFSAAABUgAAAlIAAAJSAAAAUgAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAAAUgAAAFIAAAFSAAAAUgAAA1IAAAMXAAABFwAAAF8AAAAXAAACFwAAAVIAAAFSAAAAUgAAAlIAAAFfAAAAUgAAAVIAAAFSAAAAXwAAAF8AAABfAAAAFwAAAhcAAANfAAAAFwAAAhcAAABSAAADUgAAAVIAAANSAAABXwAAABcAAAMXAAAAFwAAAV8AAAAXAAABFwAAARcAAAAXAAABXwAAABcAAAMXAAADUgAAAlIAAANSAAADUgAAA18AAABSAAADUgAAAFIAAAJfAAAAFwAAAhcAAAMXAAAAXwAAAF8AAABfAAAAFwAAABcAAAEXAAABFwAAARcAAAFfAAAAUgAAA1IAAANSAAACXwAAABcAAAAXAAACFwAAAF8AAAAXAAAAXwAAABcAAAFfAAAAXwAAAF8AAABfAAAAXwAAAFIAAABSAAACUgAAARcAAAEXAAACFwAAAw== -3,-4: ind: -3,-4 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAABfAAAAXgAAAF8AAAAAAAAAXwAAAF8AAABfAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAE8AAABPAAAATwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAE8AAABfAAAASAAAAEgAAABIAAAASAAAACsAAAArAAAAKwAAAF8AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABIAAAAXwAAAF8AAAArAAAAKwAAACsAAABfAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAKwAAACsAAAArAAAAXwAAAAAAAABeAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAEgAAABIAAAASAAAACsAAAArAAAAKwAAAF8AAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAArAAAAKwAAACsAAABfAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAABUgAAAlIAAABSAAAAKwAAACsAAAArAAAAXwAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAAVIAAANSAAADUgAAAV8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAFIAAANSAAABUgAAA1IAAAEAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAAAXAAABFwAAAhcAAAIXAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: XgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAABfAAAAXgAAAF8AAAAAAAAAXwAAAF8AAABfAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAE8AAABPAAAATwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAE8AAABfAAAASAAAAEgAAABIAAAASAAAACsAAAArAAAAKwAAAF8AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABIAAAAXwAAAF8AAAArAAAAKwAAACsAAABfAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAKwAAACsAAAArAAAAXwAAAAAAAABeAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAEgAAABIAAAASAAAACsAAAArAAAAKwAAAF8AAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAArAAAAKwAAACsAAABfAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAABUgAAAlIAAABSAAAAKwAAACsAAAArAAAAXwAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAAVIAAANSAAADUgAAAV8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAFIAAANSAAABUgAAA1IAAAEAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAAAXAAABFwAAAhcAAAIXAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== -4,-3: ind: -4,-3 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAUgAAA1IAAAFSAAAAUgAAAlIAAAJSAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAFIAAAJSAAAAUgAAAVIAAAJSAAAAUgAAA1IAAAJeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF8AAABSAAABUgAAAFIAAAJSAAABUgAAAlIAAAFfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAASAAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAE8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXAAAA1wAAABcAAACXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXAAAAVwAAANcAAAAXwAAAFwAAANcAAADXAAAAV8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXAAAAVwAAAFfAAAAXwAAAFwAAAJcAAADXAAAAFwAAAFfAAAAXwAAAA== @@ -290,7 +290,7 @@ entities: tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABfAAAAXwAAAF4AAABfAAAAXwAAAF4AAABfAAAAXwAAAF4AAABfAAAAXwAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAXwAAAF8AAABeAAAAXwAAAF8AAABeAAAAXwAAAF8AAABeAAAAXwAAAF8AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAABfAAAAXwAAAF4AAABfAAAAXwAAAF4AAABfAAAAXwAAAF4AAABfAAAAXwAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAXwAAAF8AAABeAAAAXwAAAF8AAABeAAAAXwAAAF8AAABeAAAAXwAAAF8AAABeAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABfAAAAXwAAAF4AAABfAAAAXwAAAF4AAABfAAAAXwAAAF4AAABfAAAAXwAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAXwAAAF8AAABeAAAAXwAAAF8AAABeAAAAXwAAAF8AAABeAAAAXwAAAF8AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,-4: ind: 1,-4 - tiles: XgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABeAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAFwAAAU8AAABfAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABPAAAATwAAAEUAAAJfAAAATwAAABcAAAFPAAAAXwAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABPAAAATwAAAE8AAABFAAACXwAAAE8AAAAXAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABPAAAATwAAAE8AAABPAAAARQAAA18AAAAXAAAAFwAAAxcAAAJfAAAAKQAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAFFAAACRQAAAUUAAAJFAAACRQAAAUUAAABFAAACXwAAACkAAABfAAAAXgAAAF8AAABPAAAAXwAAAEUAAABFAAADRQAAAUUAAANFAAACRQAAA0UAAAJFAAAARQAAAF8AAAApAAAAXwAAAF4AAABfAAAATwAAAF8AAABFAAACRQAAAkUAAANFAAACRQAAAkUAAANFAAACRQAAAUUAAANfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAFIAAAFSAAAAUgAAARcAAAMXAAADFwAAABcAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAAAUgAAAVIAAAEXAAADFwAAAhcAAAEXAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAADRQAAAUUAAANFAAAAUgAAAFIAAAJSAAAAFwAAARcAAAAXAAACFwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAADRQAAAlIAAAFSAAAAUgAAAxcAAAMXAAAAFwAAAhcAAAFfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAAARQAAAF8AAAAXAAAAFwAAAhcAAAIXAAABFwAAARcAAAIXAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: XgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABeAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAFwAAAU8AAABfAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABPAAAATwAAAEUAAAJfAAAATwAAABcAAAFPAAAAXwAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABPAAAATwAAAE8AAABFAAACXwAAAE8AAAAXAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABPAAAATwAAAE8AAABPAAAARQAAA18AAAAXAAAAFwAAAxcAAAJfAAAAKQAAAF8AAABfAAAAXwAAAF8AAABQAAAARQAAAkUAAAFFAAACRQAAAUUAAAJFAAACRQAAAUUAAABFAAACXwAAACkAAABfAAAAXgAAAF8AAABPAAAAXwAAAEUAAABFAAADRQAAAUUAAANFAAACRQAAA0UAAAJFAAAARQAAAF8AAAApAAAAXwAAAF4AAABfAAAATwAAAF8AAABFAAACRQAAAkUAAANFAAACRQAAAkUAAANFAAACRQAAAUUAAANfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAFIAAAFSAAAAUgAAARcAAAMXAAADFwAAABcAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAAF8AAABSAAAAUgAAAVIAAAEXAAADFwAAAhcAAAEXAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAADRQAAAUUAAANFAAAAUgAAAFIAAAJSAAAAFwAAARcAAAAXAAACFwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAADRQAAAlIAAAFSAAAAUgAAAxcAAAMXAAAAFwAAAhcAAAFQAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAAARQAAAF8AAAAXAAAAFwAAAhcAAAIXAAABFwAAARcAAAIXAAAAXwAAAF8AAABfAAAAXwAAAA== -1,-5: ind: -1,-5 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAxcAAAMXAAABXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAMXAAAAFwAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAFwAAABcAAAJfAAAARQAAA0UAAAFFAAADRQAAA0UAAANFAAAARQAAAkUAAAJFAAADRQAAAUUAAAFfAAAAFwAAAxcAAAIXAAADXwAAAEUAAANFAAACRQAAA0UAAABFAAACRQAAAkUAAABFAAACRQAAAUUAAAFFAAACXwAAABcAAAEXAAAAFwAAAl8AAABFAAADRQAAA0UAAABFAAAARQAAA0UAAAFFAAAARQAAAUUAAANFAAADRQAAAUUAAAAXAAABFwAAAl8AAABfAAAARQAAAEUAAAJFAAABRQAAAEUAAAFfAAAARQAAAEUAAAFFAAACRQAAAkUAAAFfAAAAFwAAAhcAAAJfAAAARQAAAEUAAANFAAACRQAAAUUAAANFAAAAKQAAAEUAAAJFAAABRQAAA0UAAABFAAABXwAAABcAAAEXAAAAFwAAA0UAAAJFAAACRQAAA0UAAAJFAAADRQAAA18AAABFAAAARQAAAEUAAAJFAAABRQAAAF8AAAAXAAAAFwAAAhcAAANFAAAARQAAAEUAAAJFAAADRQAAAEUAAAEpAAAARQAAA0UAAABFAAABRQAAAEUAAAJfAAAAFwAAARcAAANfAAAARQAAAkUAAABFAAADRQAAAUUAAABFAAACXwAAAEUAAAJFAAAARQAAAUUAAANFAAADXwAAAA== @@ -314,16 +314,16 @@ entities: tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAA== 5,-1: ind: 5,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAABcAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAXAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABeAAAAFwAAAl4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAJeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAXAAAAFwAAAhcAAAIXAAABFwAAAA== + tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAABcAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAXAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABeAAAAFwAAAl4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAJeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAXAAAAFwAAAhcAAAIXAAABFwAAAA== 6,0: ind: 6,0 - tiles: FwAAAhcAAAMXAAACFwAAAxcAAAAXAAAAFwAAAhcAAAEXAAABFwAAARcAAAEXAAACFwAAARcAAAIXAAABFwAAARcAAABfAAAAFwAAAhcAAAMXAAACXwAAABcAAAIXAAABFwAAARcAAAEXAAABXwAAABcAAAEXAAACFwAAABcAAANeAAAAXwAAABcAAAAXAAAAFwAAAl8AAAAXAAABFwAAARcAAAIXAAACFwAAAl8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXwAAAF8AAABfAAAAFwAAABcAAAIXAAABFwAAAxcAAAAXAAAAFwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAABcAAAMXAAABDwAAAA8AAAAPAAAAFwAAAhcAAAJfAAAAXwAAAF8AAAAAAAAAXgAAAF4AAABfAAAAXwAAAF8AAAAXAAABDwAAAA8AAAAXAAABDwAAAA8AAAAXAAABXwAAAF8AAABfAAAAXgAAAF4AAAAAAAAAXwAAAF8AAABfAAAADwAAAA8AAABfAAAAXwAAAF8AAAAPAAAADwAAAF8AAABfAAAAXwAAAAAAAABeAAAAAAAAAF8AAABfAAAAXwAAABcAAAIPAAAAXwAAAC0AAABfAAAADwAAABcAAAFfAAAAXwAAAF8AAAAAAAAAXgAAAAAAAABfAAAAXwAAAC0AAAAXAAACDwAAABcAAAEXAAADFwAAAg8AAAAXAAAALQAAAF8AAABfAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAAFwAAAA8AAABfAAAAXwAAAF8AAAAPAAAAFwAAAV8AAABfAAAAXwAAAAAAAABeAAAAAAAAAF8AAABfAAAAXwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAABfAAAAXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAXwAAAF8AAAAXAAADFwAAARcAAAEXAAAAFwAAABcAAAAXAAACXwAAAF8AAAAAAAAAAAAAABcAAAJeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAl8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAAAXAAABXgAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAABeAAAAFwAAAl4AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAA== + tiles: FwAAAhcAAAMXAAACFwAAAxcAAAAXAAAAFwAAAhcAAAEXAAABFwAAARcAAAEXAAACFwAAARcAAAIXAAABFwAAARcAAABfAAAAFwAAAhcAAAMXAAACXwAAABcAAAIXAAABFwAAARcAAAEXAAABXwAAABcAAAEXAAACFwAAABcAAANeAAAAXwAAABcAAAAXAAAAFwAAAl8AAAAXAAABFwAAARcAAAIXAAACFwAAAl8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXwAAAF8AAABfAAAAFwAAABcAAAIXAAABFwAAAxcAAAAXAAAAFwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAABcAAAMXAAABDwAAAA8AAAAPAAAAFwAAAhcAAAJfAAAAXwAAAF8AAAAAAAAAXgAAAF4AAABfAAAAXwAAAF8AAAAXAAABDwAAAA8AAAAXAAABDwAAAA8AAAAXAAABXwAAAF8AAABfAAAAXgAAAF4AAAAAAAAAXwAAAF8AAABfAAAADwAAAA8AAABfAAAAXwAAAF8AAAAPAAAADwAAAF8AAABfAAAAXwAAAAAAAABeAAAAAAAAAF8AAABfAAAAXwAAABcAAAIPAAAAXwAAAC0AAABfAAAADwAAABcAAAFfAAAAXwAAAF8AAAAAAAAAXgAAAAAAAABfAAAAXwAAAC0AAAAXAAACDwAAABcAAAEXAAADFwAAAg8AAAAXAAAALQAAAF8AAABfAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAAFwAAAA8AAABfAAAAXwAAAF8AAAAPAAAAFwAAAV8AAABfAAAAXwAAAAAAAABeAAAAAAAAAF8AAABfAAAAXwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAABfAAAAXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAXwAAAF8AAAAXAAADFwAAARcAAAEXAAAAFwAAABcAAAAXAAACXwAAAF8AAAAAAAAAAAAAABcAAAJeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAl8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAAAXAAABXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAABeAAAAFwAAAl8AAABfAAAAXwAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAA== 6,-1: ind: 6,-1 - tiles: FwAAA14AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAABcAAABeAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAF4AAAAXAAAAXgAAAAAAAABfAAAAXwAAAA8AAAAPAAAADwAAABcAAAMPAAAADwAAAA8AAABfAAAAXwAAAAAAAABeAAAAFwAAA14AAAAAAAAAXwAAAF8AAAAXAAAAFwAAABcAAAEXAAADFwAAARcAAAIXAAABXwAAAF8AAAAAAAAAXgAAABcAAANeAAAAXgAAAF8AAABfAAAADwAAAA8AAAAXAAACLQAAABcAAAEPAAAADwAAAF8AAABfAAAAXgAAAF4AAAAXAAADXgAAAAAAAABfAAAADwAAAA8AAAAPAAAAFwAAAi0AAAAXAAAADwAAAA8AAAAPAAAAXwAAAAAAAABeAAAAFwAAAF4AAAAAAAAAXwAAABcAAAAXAAACFwAAAxcAAAMXAAADFwAAABcAAAMXAAABFwAAA18AAAAAAAAAXgAAABcAAAJeAAAAAAAAAF8AAAAtAAAAFwAAAS0AAABfAAAAFwAAAV8AAAAtAAAAFwAAAi0AAABfAAAAAAAAAF4AAAAXAAADXgAAAAAAAABfAAAALQAAABcAAAAtAAAAXwAAABcAAAJfAAAALQAAABcAAAAtAAAAXwAAAAAAAABeAAAAFwAAA14AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAADXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXgAAABcAAAFeAAAAXwAAAF8AAABfAAAAMgAAADIAAAAyAAAAMgAAADIAAAAyAAAAMgAAAF8AAABfAAAAXwAAAF4AAAAXAAACFwAAABcAAAIXAAADFwAAADIAAAAyAAAAMgAAADIAAAAyAAAAMgAAADIAAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABfAAAAFwAAAl8AAAAyAAAAMgAAADIAAAAyAAAAMgAAADIAAAAyAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXwAAABcAAAJfAAAAMgAAADIAAAAyAAAAMgAAADIAAAAyAAAAMgAAAF8AAABfAAAAXwAAAAAAAABeAAAAXwAAAF8AAAAXAAADXwAAAF8AAABfAAAAXwAAABcAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAl8AAAAXAAAAFwAAAhcAAAFfAAAAFwAAARcAAAIXAAACFwAAAxcAAAFfAAAAFwAAAhcAAAEXAAABFwAAAg== + tiles: FwAAA18AAABfAAAAXwAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAABcAAABeAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAF4AAAAXAAAAXgAAAAAAAABfAAAAXwAAAA8AAAAPAAAADwAAABcAAAMPAAAADwAAAA8AAABfAAAAXwAAAAAAAABeAAAAFwAAA14AAAAAAAAAXwAAAF8AAAAXAAAAFwAAABcAAAEXAAADFwAAARcAAAIXAAABXwAAAF8AAAAAAAAAXgAAABcAAANeAAAAXgAAAF8AAABfAAAADwAAAA8AAAAXAAACLQAAABcAAAEPAAAADwAAAF8AAABfAAAAXgAAAF4AAAAXAAADXgAAAAAAAABfAAAADwAAAA8AAAAPAAAAFwAAAi0AAAAXAAAADwAAAA8AAAAPAAAAXwAAAAAAAABeAAAAFwAAAF4AAAAAAAAAXwAAABcAAAAXAAACFwAAAxcAAAMXAAADFwAAABcAAAMXAAABFwAAA18AAAAAAAAAXgAAABcAAAJeAAAAAAAAAF8AAAAtAAAAFwAAAS0AAABfAAAAFwAAAV8AAAAtAAAAFwAAAi0AAABfAAAAAAAAAF4AAAAXAAADXgAAAAAAAABfAAAALQAAABcAAAAtAAAAXwAAABcAAAJfAAAALQAAABcAAAAtAAAAXwAAAAAAAABeAAAAFwAAA14AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAADXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXgAAABcAAAFeAAAAXwAAAF8AAABfAAAAMgAAADIAAAAyAAAAMgAAADIAAAAyAAAAMgAAAF8AAABfAAAAXwAAAF4AAAAXAAACFwAAABcAAAIXAAADFwAAADIAAAAyAAAAMgAAADIAAAAyAAAAMgAAADIAAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABfAAAAFwAAAl8AAAAyAAAAMgAAADIAAAAyAAAAMgAAADIAAAAyAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXwAAABcAAAJfAAAAMgAAADIAAAAyAAAAMgAAADIAAAAyAAAAMgAAAF8AAABfAAAAXwAAAAAAAABeAAAAXwAAAF8AAAAXAAADXwAAAF8AAABfAAAAXwAAABcAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAl8AAAAXAAAAFwAAAhcAAAFfAAAAFwAAARcAAAIXAAACFwAAAxcAAAFfAAAAFwAAAhcAAAEXAAABFwAAAg== 6,1: ind: 6,1 - tiles: FwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAABcAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAXAAADFwAAABcAAAAXAAAAFwAAABcAAAMXAAADFwAAAhcAAAEXAAABFwAAAxcAAAAXAAADFwAAABcAAAIXAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFwAAAhcAAAEXAAAAFwAAABcAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABcAAAAXAAAAFwAAAhcAAAAXAAACXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: FwAAAF4AAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAABcAAANeAAAAXgAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAXAAADFwAAABcAAAAXAAAAFwAAABcAAAMXAAADFwAAAhcAAAEXAAABFwAAAxcAAAAXAAADFwAAABcAAAIXAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFwAAAhcAAAEXAAAAFwAAABcAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABcAAAAXAAAAFwAAAhcAAAAXAAACXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 7,1: ind: 7,1 tiles: FwAAA14AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAFeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAADXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== @@ -338,13 +338,13 @@ entities: tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAJeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAABXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAV4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 6,-2: ind: 6,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAXAAAAFwAAARcAAAMXAAACFwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFwAAABcAAAEXAAADFwAAARcAAANeAAAAXgAAAF4AAABeAAAAXgAAABcAAAEXAAADFwAAAxcAAAAXAAADFwAAARcAAAEXAAACFwAAAhcAAAMXAAADFwAAABcAAAMXAAAAFwAAABcAAAEXAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFwAAAV4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAXAAAAFwAAARcAAAMXAAACFwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFwAAABcAAAEXAAADFwAAARcAAANeAAAAXgAAAF4AAABeAAAAXgAAABcAAAEXAAADFwAAAxcAAAAXAAADFwAAARcAAAEXAAACFwAAAhcAAAMXAAADFwAAABcAAAMXAAAAFwAAABcAAAEXAAABXgAAAF4AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFwAAAV4AAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAA== 5,1: ind: 5,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 5,-2: ind: 5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAA== type: MapGrid - type: Broadphase - angularDamping: 0.05 @@ -592,6 +592,50 @@ entities: 2874: -16,-41 2875: -18,-41 2876: -14,-41 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkEndE + decals: + 3185: 7,45 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkEndW + decals: + 3186: 11,45 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSe + decals: + 3190: 6,45 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSw + decals: + 3188: 12,45 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + decals: + 3189: 6,44 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + decals: + 3195: 12,45 + 3196: 6,45 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + decals: + 3191: 12,47 + 3192: 11,47 + 3193: 7,47 + 3194: 6,47 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + decals: + 3187: 12,44 - node: color: '#D381C996' id: BrickTileSteelCornerNe @@ -748,6 +792,11 @@ entities: decals: 2757: 11,-30 2796: 11,-43 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerSe + decals: + 3254: -2,-67 - node: color: '#EFD57C8F' id: BrickTileWhiteInnerSe @@ -769,6 +818,8 @@ entities: 3096: -6,-34 3097: -6,-33 3134: -12,-31 + 3260: -39,-46 + 3261: -39,-48 - node: color: '#D381C996' id: BrickTileWhiteLineE @@ -813,6 +864,10 @@ entities: id: BrickTileWhiteLineE decals: 2722: 104,-14 + 3250: -2,-72 + 3251: -2,-71 + 3252: -2,-69 + 3253: -2,-68 - node: color: '#EFD57C8F' id: BrickTileWhiteLineE @@ -907,6 +962,8 @@ entities: 3102: -10,-33 3103: -10,-34 3104: -10,-35 + 3262: -40,-48 + 3263: -40,-46 - node: color: '#9FED5896' id: BrickTileWhiteLineW @@ -1308,6 +1365,12 @@ entities: 1939: 46,12 2766: 14,-31 2767: 14,-33 + 3181: -4,38 + 3182: -5,38 + 3183: -6,38 + 3219: -2,-61 + 3220: -3,-61 + 3221: -4,-61 - node: color: '#52B4E996' id: DeliveryGreyscale @@ -1719,7 +1782,6 @@ entities: 851: 0,49 995: 51,-16 996: 51,-15 - 1914: -1,-70 - node: color: '#EFB34196' id: FullTileOverlayGreyscale @@ -2472,7 +2534,6 @@ entities: 1909: 0,-73 1910: 0,-72 1911: 0,-71 - 1912: 0,-70 1913: 0,-69 - node: color: '#EFB34196' @@ -2951,6 +3012,28 @@ entities: 2645: -4,-57 2646: -4,-58 2647: -4,-59 + - node: + color: '#D4D4D496' + id: QuarterTileOverlayGreyscale + decals: + 3208: -12,-62 + 3209: -11,-62 + 3210: -10,-62 + 3211: -9,-62 + 3212: -8,-62 + 3213: -7,-62 + 3214: -6,-62 + 3215: -5,-62 + 3216: -4,-62 + 3217: -3,-62 + 3218: -2,-62 + 3222: -6,-70 + 3223: -7,-70 + 3224: -6,-69 + 3225: -6,-68 + 3226: -6,-67 + 3227: -6,-66 + 3228: -6,-65 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale @@ -3171,6 +3254,13 @@ entities: 2162: -67,6 2163: -68,6 2164: -69,6 + 3229: -8,-69 + 3230: -8,-68 + 3231: -8,-67 + 3232: -8,-66 + 3233: -8,-65 + 3234: -8,-64 + 3235: -7,-64 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale180 @@ -3289,6 +3379,13 @@ entities: 2035: -4,-60 2036: -3,-60 2037: -2,-60 + 3243: -7,-64 + 3244: -6,-64 + 3245: -6,-65 + 3246: -6,-66 + 3247: -6,-67 + 3248: -6,-68 + 3249: -6,-69 - node: color: '#9FED582B' id: QuarterTileOverlayGreyscale270 @@ -3601,6 +3698,28 @@ entities: 1471: -37,-32 2898: -9,-24 2899: -6,-25 + - node: + color: '#79150096' + id: QuarterTileOverlayGreyscale90 + decals: + 3197: -2,-62 + 3198: -3,-62 + 3199: -4,-62 + 3200: -5,-62 + 3201: -6,-62 + 3202: -7,-62 + 3203: -8,-62 + 3204: -9,-62 + 3205: -10,-62 + 3206: -11,-62 + 3207: -12,-62 + 3236: -8,-70 + 3237: -8,-69 + 3238: -8,-68 + 3239: -7,-70 + 3240: -8,-67 + 3241: -8,-66 + 3242: -8,-65 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale90 @@ -4321,6 +4440,11 @@ entities: 3108: -5,-36 3109: -5,-35 3110: -5,-34 + - node: + color: '#DE3A3A96' + id: WarnFullGreyscale + decals: + 3256: -1,-70 - node: color: '#FFFFFFFF' id: WarnLineE @@ -4381,12 +4505,18 @@ entities: 1459: -34,-33 3132: -12,-32 3133: -12,-30 + 3258: -39,-47 - node: color: '#D381C996' id: WarnLineGreyscaleE decals: 2783: 22,-32 2859: 7,-31 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleE + decals: + 3257: -2,-70 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleE @@ -4483,6 +4613,12 @@ entities: 3113: -4,-34 3139: -17,-30 3140: -17,-31 + 3259: -40,-47 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleW + decals: + 3255: 0,-70 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleW @@ -4754,6 +4890,51 @@ entities: decals: 104: -16,-17 148: 10,-14 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNw + decals: + 3161: 7,-1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 3156: 7,-6 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 3162: 8,-1 + 3163: 9,-1 + 3164: 11,-1 + 3165: 10,-1 + 3166: 13,2 + 3167: 12,2 + 3168: 11,2 + 3169: 10,2 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 3152: 11,-6 + 3153: 10,-6 + 3154: 9,-6 + 3155: 8,-6 + 3170: 13,6 + 3171: 12,6 + 3172: 11,6 + 3173: 10,6 + 3174: 9,6 + 3175: 8,6 + 3176: 7,6 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 3157: 7,-5 + 3158: 7,-4 + 3159: 7,-3 + 3160: 7,-2 - node: color: '#FFFFFFFF' id: bushsnowa1 @@ -11217,6 +11398,18 @@ entities: - pos: -12.5,-27.5 parent: 5350 type: Transform + - uid: 24820 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-30.5 + parent: 5350 + type: Transform + - uid: 26601 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-29.5 + parent: 5350 + type: Transform - proto: AirlockMedicalLocked entities: - uid: 15001 @@ -13328,6 +13521,11 @@ entities: - pos: -2.5,50.5 parent: 5350 type: Transform + - uid: 6708 + components: + - pos: 7.5,48.5 + parent: 5350 + type: Transform - uid: 6718 components: - pos: -6.5,50.5 @@ -13515,11 +13713,13 @@ entities: type: Physics - proto: BedsheetHOS entities: - - uid: 6708 + - uid: 26596 components: - - pos: 6.543807,46.537354 + - pos: 7.5,48.5 parent: 5350 type: Transform + - nextSound: 628.1351528 + type: EmitSoundOnCollide - proto: BedsheetIan entities: - uid: 2132 @@ -15740,8 +15940,6 @@ entities: - pos: 12.5,-3.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 953 @@ -15838,8 +16036,6 @@ entities: - pos: -10.5,1.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 965 @@ -18027,8 +18223,6 @@ entities: - pos: -25.5,13.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 3714 @@ -18169,8 +18363,6 @@ entities: - pos: -42.5,29.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 4099 @@ -18210,8 +18402,6 @@ entities: - pos: -25.5,9.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 4581 @@ -18522,8 +18712,6 @@ entities: - pos: -44.5,6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 4626 @@ -18556,8 +18744,6 @@ entities: - pos: -46.5,4.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 4631 @@ -18637,8 +18823,6 @@ entities: - pos: -53.5,8.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 4640 @@ -19357,8 +19541,6 @@ entities: - pos: -23.5,10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 4740 @@ -30443,8 +30625,6 @@ entities: - pos: -33.5,-44.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 15793 @@ -32693,8 +32873,6 @@ entities: - pos: -38.5,-48.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 17201 @@ -34342,8 +34520,6 @@ entities: - pos: -59.5,-16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 18235 @@ -34415,8 +34591,6 @@ entities: - pos: -52.5,-5.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 18244 @@ -35546,8 +35720,6 @@ entities: - pos: 6.5,-56.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 20326 @@ -35758,8 +35930,6 @@ entities: - pos: 0.5,-47.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 20350 @@ -36421,8 +36591,6 @@ entities: - pos: -0.5,-45.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 20443 @@ -37316,8 +37484,6 @@ entities: - pos: 31.5,-44.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 20556 @@ -38215,8 +38381,6 @@ entities: - pos: 20.5,-56.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 20926 @@ -38978,8 +39142,6 @@ entities: - pos: -25.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 21876 @@ -43001,8 +43163,6 @@ entities: - pos: -10.5,1.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 1230 @@ -43213,8 +43373,6 @@ entities: - pos: 12.5,-3.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 1260 @@ -43292,8 +43450,6 @@ entities: - pos: -10.5,-9.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 1652 @@ -43416,8 +43572,6 @@ entities: - pos: -12.5,7.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 4481 @@ -43516,8 +43670,6 @@ entities: - pos: -23.5,10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 4495 @@ -43678,8 +43830,6 @@ entities: - pos: -31.5,20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 4513 @@ -43708,8 +43858,6 @@ entities: - pos: -31.5,24.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 4517 @@ -45295,8 +45443,6 @@ entities: - pos: -46.5,4.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 6100 @@ -45403,8 +45549,6 @@ entities: - pos: -44.5,8.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 6112 @@ -45594,8 +45738,6 @@ entities: - pos: -32.5,19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 6139 @@ -45687,8 +45829,6 @@ entities: - pos: -25.5,9.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 7993 @@ -50500,8 +50640,6 @@ entities: - pos: -32.5,-39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 16210 @@ -51942,8 +52080,6 @@ entities: - pos: -12.5,-9.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 18141 @@ -52012,8 +52148,6 @@ entities: - pos: -53.5,8.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 18149 @@ -52245,8 +52379,6 @@ entities: - pos: -59.5,-16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 18182 @@ -54304,8 +54436,6 @@ entities: - pos: -12.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 21309 @@ -54651,8 +54781,6 @@ entities: - pos: 18.5,-51.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 21350 @@ -54681,8 +54809,6 @@ entities: - pos: 18.5,-47.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 21354 @@ -54825,8 +54951,6 @@ entities: - pos: 31.5,-44.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 21370 @@ -54855,8 +54979,6 @@ entities: - pos: 31.5,-40.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 21374 @@ -55134,8 +55256,6 @@ entities: - pos: -39.5,-44.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 21405 @@ -55171,8 +55291,6 @@ entities: - pos: -38.5,-48.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 21410 @@ -56542,8 +56660,6 @@ entities: - pos: 12.5,-3.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 149 @@ -56659,8 +56775,6 @@ entities: - pos: -10.5,1.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 164 @@ -57235,8 +57349,6 @@ entities: - pos: -10.5,-9.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 1685 @@ -57267,8 +57379,6 @@ entities: - pos: -12.5,-9.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 1691 @@ -58647,8 +58757,6 @@ entities: - pos: -31.5,24.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 4530 @@ -58737,8 +58845,6 @@ entities: - pos: -31.5,20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 4542 @@ -59100,8 +59206,6 @@ entities: - pos: -46.5,4.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 5892 @@ -60685,8 +60789,6 @@ entities: - pos: -12.5,7.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 7793 @@ -63178,8 +63280,6 @@ entities: - pos: -33.5,-44.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 15719 @@ -64024,8 +64124,6 @@ entities: - pos: -39.5,-44.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 16526 @@ -64938,8 +65036,6 @@ entities: - pos: 6.5,-56.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 20207 @@ -67441,8 +67537,6 @@ entities: - pos: -25.5,9.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 24736 @@ -70027,6 +70121,26 @@ entities: - pos: -46.5,7.5 parent: 5350 type: Transform + - uid: 9149 + components: + - pos: 75.5,-17.5 + parent: 5350 + type: Transform + - uid: 9150 + components: + - pos: 86.5,13.5 + parent: 5350 + type: Transform + - uid: 9151 + components: + - pos: 79.5,-13.5 + parent: 5350 + type: Transform + - uid: 9201 + components: + - pos: 90.5,13.5 + parent: 5350 + type: Transform - uid: 10144 components: - pos: -42.5,35.5 @@ -70047,6 +70161,11 @@ entities: - pos: -38.5,40.5 parent: 5350 type: Transform + - uid: 10365 + components: + - pos: 82.5,17.5 + parent: 5350 + type: Transform - uid: 10735 components: - pos: -43.5,35.5 @@ -73207,6 +73326,61 @@ entities: - pos: 104.5,-16.5 parent: 5350 type: Transform + - uid: 26583 + components: + - pos: 83.5,-13.5 + parent: 5350 + type: Transform + - uid: 26584 + components: + - pos: 87.5,-13.5 + parent: 5350 + type: Transform + - uid: 26586 + components: + - pos: 87.5,-17.5 + parent: 5350 + type: Transform + - uid: 26587 + components: + - pos: 83.5,-17.5 + parent: 5350 + type: Transform + - uid: 26588 + components: + - pos: 79.5,-17.5 + parent: 5350 + type: Transform + - uid: 26590 + components: + - pos: 71.5,-17.5 + parent: 5350 + type: Transform + - uid: 26591 + components: + - pos: 71.5,-13.5 + parent: 5350 + type: Transform + - uid: 26592 + components: + - pos: 75.5,-13.5 + parent: 5350 + type: Transform + - uid: 26593 + components: + - pos: 82.5,13.5 + parent: 5350 + type: Transform + - uid: 26594 + components: + - pos: 86.5,17.5 + parent: 5350 + type: Transform + - uid: 26595 + components: + - pos: 90.5,17.5 + parent: 5350 + type: Transform - proto: Chair entities: - uid: 347 @@ -79925,9 +80099,10 @@ entities: - pos: -23.5,38.5 parent: 5350 type: Transform - - uid: 24820 + - uid: 26293 components: - - pos: 23.5,-38.5 + - rot: 1.5707963267948966 rad + pos: 23.5,-38.5 parent: 5350 type: Transform - proto: ComputerAlert @@ -97440,8 +97615,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 759 components: - pos: -12.5,2.5 @@ -97485,8 +97658,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 765 components: - pos: -12.5,8.5 @@ -97573,8 +97744,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 784 components: - pos: 13.5,-2.5 @@ -97592,8 +97761,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 786 components: - rot: -1.5707963267948966 rad @@ -97879,8 +98046,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 836 components: - rot: -1.5707963267948966 rad @@ -98200,8 +98365,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2489 components: - rot: 1.5707963267948966 rad @@ -99601,8 +99764,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3914 components: - rot: 3.141592653589793 rad @@ -101746,8 +101907,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4429 components: - rot: -1.5707963267948966 rad @@ -101836,8 +101995,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4438 components: - rot: -1.5707963267948966 rad @@ -107095,8 +107252,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9341 components: - rot: 3.141592653589793 rad @@ -113263,8 +113418,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16724 components: - rot: 3.141592653589793 rad @@ -114207,8 +114360,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18452 components: - pos: -52.5,-6.5 @@ -114443,8 +114594,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18491 components: - rot: -1.5707963267948966 rad @@ -117061,8 +117210,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21053 components: - rot: 1.5707963267948966 rad @@ -117138,8 +117285,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21062 components: - pos: 18.5,-50.5 @@ -117154,8 +117299,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21071 components: - rot: 3.141592653589793 rad @@ -117164,8 +117307,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21078 components: - rot: 1.5707963267948966 rad @@ -117655,8 +117796,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21143 components: - rot: 3.141592653589793 rad @@ -117681,8 +117820,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21147 components: - rot: 1.5707963267948966 rad @@ -118125,8 +118262,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21540 components: - rot: 1.5707963267948966 rad @@ -118205,8 +118340,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21548 components: - rot: -1.5707963267948966 rad @@ -118254,8 +118387,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21554 components: - pos: -25.5,-63.5 @@ -135394,11 +135525,6 @@ entities: - pos: 77.5,-16.5 parent: 5350 type: Transform - - uid: 26293 - components: - - pos: 77.5,-15.5 - parent: 5350 - type: Transform - uid: 26294 components: - pos: 77.5,-14.5 @@ -135449,26 +135575,6 @@ entities: - pos: 75.5,-11.5 parent: 5350 type: Transform - - uid: 26304 - components: - - pos: 75.5,-12.5 - parent: 5350 - type: Transform - - uid: 26305 - components: - - pos: 75.5,-13.5 - parent: 5350 - type: Transform - - uid: 26306 - components: - - pos: 75.5,-14.5 - parent: 5350 - type: Transform - - uid: 26307 - components: - - pos: 75.5,-18.5 - parent: 5350 - type: Transform - uid: 26308 components: - pos: 75.5,-19.5 @@ -135906,17 +136012,6 @@ entities: - pos: 73.5,-7.5 parent: 5350 type: Transform - - uid: 26334 - components: - - pos: 75.5,-17.5 - parent: 5350 - type: Transform - - uid: 26335 - components: - - rot: 3.141592653589793 rad - pos: 73.5,-15.5 - parent: 5350 - type: Transform - uid: 26336 components: - rot: 3.141592653589793 rad @@ -137395,9 +137490,33 @@ entities: type: Transform - uid: 24821 components: - - pos: 25.542782,-37.18416 + - pos: 25.524637,-37.41671 parent: 5350 type: Transform + - toggleAction: + sound: null + itemIconStyle: BigItem + icon: + sprite: Objects/Tools/flashlight.rsi + state: flashlight + iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png + iconColor: '#FFFFFFFF' + name: action-name-toggle-light + description: action-description-toggle-light + keywords: [] + enabled: True + useDelay: null + charges: null + checkCanInteract: True + clientExclusive: False + priority: 0 + autoPopulate: True + autoRemove: True + temporary: False + event: !type:ToggleActionEvent {} + type: HandheldLight + - canCollide: True + type: Physics - proto: lantern entities: - uid: 22071 @@ -138177,9 +138296,9 @@ entities: type: EntityStorage - proto: LockerEngineerFilled entities: - - uid: 9148 + - uid: 23371 components: - - pos: 57.5,-2.5 + - pos: 47.5,17.5 parent: 5350 type: Transform - air: @@ -138200,98 +138319,28 @@ entities: - 0 - 0 type: EntityStorage - - uid: 9149 +- proto: LockerEngineerFilledHardsuit + entities: + - uid: 22146 components: - - pos: 57.5,-1.5 + - pos: 57.5,0.5 parent: 5350 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 9150 + - uid: 22147 components: - pos: 57.5,-0.5 parent: 5350 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 9151 + - uid: 22148 components: - - pos: 57.5,0.5 + - pos: 57.5,-1.5 parent: 5350 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 23371 + - uid: 22149 components: - - pos: 47.5,17.5 + - pos: 57.5,-2.5 parent: 5350 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - proto: LockerEvidence entities: - uid: 6564 @@ -145750,6 +145799,22 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver + - uid: 26599 + components: + - rot: 3.141592653589793 rad + pos: 9.5,35.5 + parent: 5350 + type: Transform + - enabled: False + type: AmbientSound + - uid: 26600 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-23.5 + parent: 5350 + type: Transform + - enabled: False + type: AmbientSound - proto: PoweredlightExterior entities: - uid: 26352 @@ -154248,7 +154313,7 @@ entities: - pos: 9.5,-47.5 parent: 5350 type: Transform - - SecondsUntilStateChange: -22797.748 + - SecondsUntilStateChange: -24126.48 state: Closing type: Door - inputs: @@ -154263,7 +154328,7 @@ entities: - pos: 10.5,-47.5 parent: 5350 type: Transform - - SecondsUntilStateChange: -22797.748 + - SecondsUntilStateChange: -24126.48 state: Closing type: Door - inputs: @@ -154278,7 +154343,7 @@ entities: - pos: 11.5,-47.5 parent: 5350 type: Transform - - SecondsUntilStateChange: -22797.748 + - SecondsUntilStateChange: -24126.48 state: Closing type: Door - inputs: @@ -154293,7 +154358,7 @@ entities: - pos: 13.5,-47.5 parent: 5350 type: Transform - - SecondsUntilStateChange: -22797.748 + - SecondsUntilStateChange: -24126.48 state: Closing type: Door - inputs: @@ -154308,7 +154373,7 @@ entities: - pos: 14.5,-47.5 parent: 5350 type: Transform - - SecondsUntilStateChange: -22797.748 + - SecondsUntilStateChange: -24126.48 state: Closing type: Door - inputs: @@ -154323,7 +154388,7 @@ entities: - pos: 15.5,-47.5 parent: 5350 type: Transform - - SecondsUntilStateChange: -22797.748 + - SecondsUntilStateChange: -24126.48 state: Closing type: Door - inputs: @@ -159864,11 +159929,6 @@ entities: - pos: 55.5,0.5 parent: 5350 type: Transform - - uid: 10365 - components: - - pos: 55.5,-1.5 - parent: 5350 - type: Transform - proto: SuitStorageEVA entities: - uid: 1488 @@ -159900,9 +159960,9 @@ entities: type: Transform - proto: SuitStorageRD entities: - - uid: 9201 + - uid: 8218 components: - - pos: 23.5,-37.5 + - pos: 23.5,-39.5 parent: 5350 type: Transform - proto: SuitStorageSec @@ -170483,6 +170543,11 @@ entities: - pos: 59.5,6.5 parent: 5350 type: Transform + - uid: 9148 + components: + - pos: 71.5,-15.5 + parent: 5350 + type: Transform - uid: 9153 components: - pos: 41.5,24.5 @@ -174351,6 +174416,11 @@ entities: pos: 30.5,-57.5 parent: 5350 type: Transform + - uid: 22145 + components: + - pos: 75.5,-15.5 + parent: 5350 + type: Transform - uid: 23230 components: - pos: 46.5,27.5 @@ -175806,6 +175876,36 @@ entities: - pos: 108.5,-2.5 parent: 5350 type: Transform + - uid: 26335 + components: + - pos: 79.5,-15.5 + parent: 5350 + type: Transform + - uid: 26580 + components: + - pos: 87.5,-15.5 + parent: 5350 + type: Transform + - uid: 26581 + components: + - pos: 83.5,-15.5 + parent: 5350 + type: Transform + - uid: 26582 + components: + - pos: 86.5,15.5 + parent: 5350 + type: Transform + - uid: 26585 + components: + - pos: 82.5,15.5 + parent: 5350 + type: Transform + - uid: 26589 + components: + - pos: 90.5,15.5 + parent: 5350 + type: Transform - proto: WallSandstone entities: - uid: 24764 @@ -184310,6 +184410,15 @@ entities: - pos: 18.5245,39.635532 parent: 5350 type: Transform + - uid: 26598 + components: + - pos: 18.538572,39.67288 + parent: 5350 + type: Transform + - nextFire: 647.0521771 + type: Gun + - nextSound: 647.2521771 + type: EmitSoundOnCollide - proto: WeaponLaserCarbine entities: - uid: 24712 @@ -184327,6 +184436,17 @@ entities: - pos: -5.4221168,38.357075 parent: 5350 type: Transform +- proto: WeaponLaserCarbinePractice + entities: + - uid: 26597 + components: + - pos: 18.527746,39.344753 + parent: 5350 + type: Transform + - nextFire: 641.3845071 + type: Gun + - nextSound: 641.5845071 + type: EmitSoundOnCollide - proto: WeaponRevolverDeckard entities: - uid: 1942 @@ -186503,36 +186623,6 @@ entities: pos: -30.5,-69.5 parent: 5350 type: Transform - - uid: 22145 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-39.5 - parent: 5350 - type: Transform - - uid: 22146 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-38.5 - parent: 5350 - type: Transform - - uid: 22147 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-37.5 - parent: 5350 - type: Transform - - uid: 22148 - components: - - rot: 3.141592653589793 rad - pos: 23.5,-37.5 - parent: 5350 - type: Transform - - uid: 22149 - components: - - rot: 3.141592653589793 rad - pos: 25.5,-37.5 - parent: 5350 - type: Transform - uid: 22324 components: - rot: -1.5707963267948966 rad @@ -189513,6 +189603,38 @@ entities: pos: 94.5,-1.5 parent: 5350 type: Transform +- proto: WindowTintedDirectional + entities: + - uid: 26304 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-37.5 + parent: 5350 + type: Transform + - uid: 26305 + components: + - rot: 3.141592653589793 rad + pos: 23.5,-37.5 + parent: 5350 + type: Transform + - uid: 26306 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-37.5 + parent: 5350 + type: Transform + - uid: 26307 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-38.5 + parent: 5350 + type: Transform + - uid: 26334 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-39.5 + parent: 5350 + type: Transform - proto: Wirecutter entities: - uid: 3801 From 82575f6d4a17b40ea53dd25d46003d6afedc2ea6 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Fri, 2 Jun 2023 15:55:53 +1000 Subject: [PATCH 025/474] Update submodule to 0.123.1.1 (#17064) --- RobustToolbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RobustToolbox b/RobustToolbox index 540febc75b..102c24d5d8 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit 540febc75bb663d78ccdb3cc5da6ee45adb2b40f +Subproject commit 102c24d5d8aeb1c644dab81c51353d13fba1668e From 7a424e40fdab18a20bdb6b671e92fa04977df5ef Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Sat, 3 Jun 2023 00:20:09 +1200 Subject: [PATCH 026/474] Add EntityUid fields to some physics events (#17055) --- .../Singularity/EntitySystems/EventHorizonSystem.cs | 2 +- Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs | 2 +- Content.Shared/Disposal/SharedDisposalUnitSystem.cs | 2 +- Content.Shared/Doors/Systems/SharedDoorSystem.cs | 2 +- Content.Shared/Physics/SharedPreventCollideSystem.cs | 4 +--- Content.Shared/Projectiles/SharedProjectileSystem.cs | 2 +- Content.Shared/Pulling/Systems/SharedPullingSystem.cs | 2 +- .../Singularity/EntitySystems/SharedEventHorizonSystem.cs | 2 +- Content.Shared/Throwing/ThrownItemSystem.cs | 2 +- 9 files changed, 9 insertions(+), 11 deletions(-) diff --git a/Content.Server/Singularity/EntitySystems/EventHorizonSystem.cs b/Content.Server/Singularity/EntitySystems/EventHorizonSystem.cs index 3f3c83b47e..28e77941dd 100644 --- a/Content.Server/Singularity/EntitySystems/EventHorizonSystem.cs +++ b/Content.Server/Singularity/EntitySystems/EventHorizonSystem.cs @@ -390,7 +390,7 @@ protected override bool PreventCollide(EntityUid uid, EventHorizonComponent comp if (base.PreventCollide(uid, comp, ref args) || args.Cancelled) return true; - args.Cancelled = !CanConsumeEntity(args.BodyB.Owner, comp); + args.Cancelled = !CanConsumeEntity(args.OtherEntity, comp); return false; } diff --git a/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs b/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs index 405cce0ebe..8a06ce55c1 100644 --- a/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs +++ b/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs @@ -114,7 +114,7 @@ private void OnBuckleInsertIntoEntityStorageAttempt(EntityUid uid, BuckleCompone private void OnBucklePreventCollide(EntityUid uid, BuckleComponent component, ref PreventCollideEvent args) { - if (args.BodyB.Owner != component.BuckledTo) + if (args.OtherEntity != component.BuckledTo) return; if (component.Buckled || component.DontCollide) diff --git a/Content.Shared/Disposal/SharedDisposalUnitSystem.cs b/Content.Shared/Disposal/SharedDisposalUnitSystem.cs index 470dbbc94c..cc573c4243 100644 --- a/Content.Shared/Disposal/SharedDisposalUnitSystem.cs +++ b/Content.Shared/Disposal/SharedDisposalUnitSystem.cs @@ -42,7 +42,7 @@ public override void Initialize() private void OnPreventCollide(EntityUid uid, SharedDisposalUnitComponent component, ref PreventCollideEvent args) { - var otherBody = args.BodyB.Owner; + var otherBody = args.OtherEntity; // Items dropped shouldn't collide but items thrown should if (EntityManager.HasComponent(otherBody) && diff --git a/Content.Shared/Doors/Systems/SharedDoorSystem.cs b/Content.Shared/Doors/Systems/SharedDoorSystem.cs index af4b9101cf..d607319eb3 100644 --- a/Content.Shared/Doors/Systems/SharedDoorSystem.cs +++ b/Content.Shared/Doors/Systems/SharedDoorSystem.cs @@ -464,7 +464,7 @@ public IEnumerable GetColliding(EntityUid uid, PhysicsComponent? phys private void PreventCollision(EntityUid uid, DoorComponent component, ref PreventCollideEvent args) { - if (component.CurrentlyCrushing.Contains(args.BodyB.Owner)) + if (component.CurrentlyCrushing.Contains(args.OtherEntity)) { args.Cancelled = true; } diff --git a/Content.Shared/Physics/SharedPreventCollideSystem.cs b/Content.Shared/Physics/SharedPreventCollideSystem.cs index b28f900d14..805981fe31 100644 --- a/Content.Shared/Physics/SharedPreventCollideSystem.cs +++ b/Content.Shared/Physics/SharedPreventCollideSystem.cs @@ -30,9 +30,7 @@ private void OnHandleState(EntityUid uid, PreventCollideComponent component, ref private void OnPreventCollide(EntityUid uid, PreventCollideComponent component, ref PreventCollideEvent args) { - var otherUid = args.BodyB.Owner; - - if (component.Uid == otherUid) + if (component.Uid == args.OtherEntity) args.Cancelled = true; } diff --git a/Content.Shared/Projectiles/SharedProjectileSystem.cs b/Content.Shared/Projectiles/SharedProjectileSystem.cs index cd01b71cc0..9aed24144c 100644 --- a/Content.Shared/Projectiles/SharedProjectileSystem.cs +++ b/Content.Shared/Projectiles/SharedProjectileSystem.cs @@ -36,7 +36,7 @@ private void OnEmbedCollide(EntityUid uid, EmbeddableProjectileComponent compone private void PreventCollision(EntityUid uid, ProjectileComponent component, ref PreventCollideEvent args) { - if (component.IgnoreShooter && args.BodyB.Owner == component.Shooter) + if (component.IgnoreShooter && args.OtherEntity == component.Shooter) { args.Cancelled = true; } diff --git a/Content.Shared/Pulling/Systems/SharedPullingSystem.cs b/Content.Shared/Pulling/Systems/SharedPullingSystem.cs index 6bacc338ec..c7f247452f 100644 --- a/Content.Shared/Pulling/Systems/SharedPullingSystem.cs +++ b/Content.Shared/Pulling/Systems/SharedPullingSystem.cs @@ -70,7 +70,7 @@ private void OnPullableCollisionChange(EntityUid uid, SharedPullableComponent co private void OnJointRemoved(EntityUid uid, SharedPullableComponent component, JointRemovedEvent args) { - if (component.Puller != args.OtherBody.Owner) + if (component.Puller != args.OtherEntity) return; // Do we have some other join with our Puller? diff --git a/Content.Shared/Singularity/EntitySystems/SharedEventHorizonSystem.cs b/Content.Shared/Singularity/EntitySystems/SharedEventHorizonSystem.cs index 6e7ade2493..01f6f586ff 100644 --- a/Content.Shared/Singularity/EntitySystems/SharedEventHorizonSystem.cs +++ b/Content.Shared/Singularity/EntitySystems/SharedEventHorizonSystem.cs @@ -181,7 +181,7 @@ private void OnPreventCollide(EntityUid uid, EventHorizonComponent comp, ref Pre /// A bool indicating whether the collision prevention has been handled. protected virtual bool PreventCollide(EntityUid uid, EventHorizonComponent comp, ref PreventCollideEvent args) { - var otherUid = args.BodyB.Owner; + var otherUid = args.OtherEntity; // For prediction reasons always want the client to ignore these. if (HasComp(otherUid) || diff --git a/Content.Shared/Throwing/ThrownItemSystem.cs b/Content.Shared/Throwing/ThrownItemSystem.cs index c6653c1550..1eb12938d7 100644 --- a/Content.Shared/Throwing/ThrownItemSystem.cs +++ b/Content.Shared/Throwing/ThrownItemSystem.cs @@ -82,7 +82,7 @@ private void HandleCollision(EntityUid uid, ThrownItemComponent component, ref S private void PreventCollision(EntityUid uid, ThrownItemComponent component, ref PreventCollideEvent args) { - if (args.BodyB.Owner == component.Thrower) + if (args.OtherEntity == component.Thrower) { args.Cancelled = true; } From 3d29ab3486036a67809b86ac0c50fcdc934d49e1 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Fri, 2 Jun 2023 22:21:18 +1000 Subject: [PATCH 027/474] Update submodule to 0.124.0.0 (#17072) --- RobustToolbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RobustToolbox b/RobustToolbox index 102c24d5d8..e2830c9ad8 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit 102c24d5d8aeb1c644dab81c51353d13fba1668e +Subproject commit e2830c9ad8820343a06ed9fb7297a71ca769e57a From c99585c94ff965f79dcbb5737d5f5b1a1188d037 Mon Sep 17 00:00:00 2001 From: brainfood1183 <113240905+brainfood1183@users.noreply.github.com> Date: Sat, 3 Jun 2023 04:31:47 +0100 Subject: [PATCH 028/474] Toy Box filled with toys (ready for merge) (#16252) --- Content.Server/Glue/GlueSystem.cs | 61 +++++++ Content.Server/Glue/GluedSystem.cs | 64 +++++++ .../Nutrition/EntitySystems/FoodSystem.cs | 2 +- Content.Server/Puppet/PuppetDummySystem.cs | 100 +++++++++++ Content.Server/Speech/Muting/MutingSystem.cs | 7 + .../WeaponRandom/WeaponRandomComponent.cs | 40 +++++ .../Melee/WeaponRandom/WeaponRandomSystem.cs | 36 ++++ Content.Shared/Glue/GlueComponent.cs | 15 ++ Content.Shared/Glue/GluedComponent.cs | 42 +++++ Content.Shared/Puppet/PuppetDummyComponent.cs | 11 ++ .../Puppet/SharedPuppetDummySystem.cs | 71 ++++++++ .../Vehicle/Components/VehicleComponent.cs | 4 + Content.Shared/Vehicle/SharedVehicleSystem.cs | 16 +- .../Audio/Effects/Vehicle/bicyclebell.ogg | Bin 0 -> 27234 bytes Resources/Audio/Effects/Vehicle/license.txt | 2 + Resources/Audio/Items/attributions.yml | 7 +- Resources/Audio/Items/squeezebottle.ogg | Bin 0 -> 22910 bytes Resources/Audio/Weapons/licenses.txt | 4 +- Resources/Audio/Weapons/rubberhammer.ogg | Bin 0 -> 17377 bytes Resources/Locale/en-US/dummy/dummy.ftl | 7 + .../Locale/en-US/flavors/flavor-profiles.ftl | 2 + Resources/Locale/en-US/glue/glue.ftl | 3 + .../Prototypes/Catalog/Cargo/cargo_fun.yml | 10 ++ .../Prototypes/Catalog/Fills/Crates/fun.yml | 21 +++ .../Entities/Clothing/Back/backpacks.yml | 4 +- .../Entities/Clothing/Head/hats.yml | 31 ++++ .../Entities/Clothing/Shoes/specific.yml | 22 +++ .../Entities/Objects/Fun/puppet.yml | 45 +++++ .../Prototypes/Entities/Objects/Fun/toys.yml | 157 ++++++++++++++++++ .../Entities/Objects/Vehicles/buckleable.yml | 62 +++++++ .../Structures/Storage/Crates/crates.yml | 21 +++ Resources/Prototypes/Flavors/flavors.yml | 10 ++ Resources/Prototypes/Reagents/cleaning.yml | 2 +- .../Prototypes/SoundCollections/bike_horn.yml | 10 ++ .../Hats/magician.rsi/equipped-HELMET.png | Bin 0 -> 21087 bytes .../Clothing/Head/Hats/magician.rsi/icon.png | Bin 0 -> 17155 bytes .../Head/Hats/magician.rsi/inhand-left.png | Bin 0 -> 15334 bytes .../Head/Hats/magician.rsi/inhand-right.png | Bin 0 -> 15271 bytes .../Clothing/Head/Hats/magician.rsi/meta.json | 26 +++ .../large_clown.rsi/equipped-FEET.png | Bin 0 -> 21405 bytes .../Shoes/Specific/large_clown.rsi/icon.png | Bin 0 -> 17698 bytes .../Specific/large_clown.rsi/inhand-left.png | Bin 0 -> 350 bytes .../Specific/large_clown.rsi/inhand-right.png | Bin 0 -> 341 bytes .../Shoes/Specific/large_clown.rsi/meta.json | 26 +++ .../Textures/Effects/speech.rsi/meta.json | 2 +- .../Textures/Objects/Fun/glue.rsi/icon-0.png | Bin 0 -> 16048 bytes .../Textures/Objects/Fun/glue.rsi/icon-1.png | Bin 0 -> 16122 bytes .../Objects/Fun/glue.rsi/inhand-left.png | Bin 0 -> 20730 bytes .../Objects/Fun/glue.rsi/inhand-right.png | Bin 0 -> 20738 bytes .../Textures/Objects/Fun/glue.rsi/meta.json | 25 +++ .../Textures/Objects/Fun/mrchips.rsi/icon.png | Bin 0 -> 16347 bytes .../Objects/Fun/mrchips.rsi/inhand-left.png | Bin 0 -> 20759 bytes .../Objects/Fun/mrchips.rsi/inhand-right.png | Bin 0 -> 20315 bytes .../Objects/Fun/mrchips.rsi/meta.json | 22 +++ .../Textures/Objects/Fun/mrdips.rsi/icon.png | Bin 0 -> 16929 bytes .../Objects/Fun/mrdips.rsi/inhand-left.png | Bin 0 -> 20913 bytes .../Objects/Fun/mrdips.rsi/inhand-right.png | Bin 0 -> 20518 bytes .../Textures/Objects/Fun/mrdips.rsi/meta.json | 22 +++ .../Objects/Fun/rubber_hammer.rsi/icon.png | Bin 0 -> 233 bytes .../Fun/rubber_hammer.rsi/inhand-left.png | Bin 0 -> 21077 bytes .../Fun/rubber_hammer.rsi/inhand-right.png | Bin 0 -> 21187 bytes .../Objects/Fun/rubber_hammer.rsi/meta.json | 22 +++ .../Textures/Objects/Fun/whoopie.rsi/icon.png | Bin 0 -> 18016 bytes .../Objects/Fun/whoopie.rsi/meta.json | 14 ++ .../Objects/Vehicles/unicycle.rsi/meta.json | 43 +++++ .../Objects/Vehicles/unicycle.rsi/vehicle.png | Bin 0 -> 21619 bytes .../Vehicles/unicycle.rsi/vehicle_folded.png | Bin 0 -> 20370 bytes .../unicycle.rsi/vehicle_unfolded.png | Bin 0 -> 20360 bytes .../Storage/Crates/toybox.rsi/crate.png | Bin 0 -> 18100 bytes .../Storage/Crates/toybox.rsi/crate_door.png | Bin 0 -> 18017 bytes .../Storage/Crates/toybox.rsi/crate_icon.png | Bin 0 -> 18017 bytes .../Storage/Crates/toybox.rsi/crate_open.png | Bin 0 -> 17297 bytes .../Storage/Crates/toybox.rsi/meta.json | 40 +++++ .../Storage/Crates/toybox.rsi/sparking.png | Bin 0 -> 206 bytes .../Storage/Crates/toybox.rsi/welded.png | Bin 0 -> 17749 bytes 75 files changed, 1118 insertions(+), 13 deletions(-) create mode 100644 Content.Server/Glue/GlueSystem.cs create mode 100644 Content.Server/Glue/GluedSystem.cs create mode 100644 Content.Server/Puppet/PuppetDummySystem.cs create mode 100644 Content.Server/Weapons/Melee/WeaponRandom/WeaponRandomComponent.cs create mode 100644 Content.Server/Weapons/Melee/WeaponRandom/WeaponRandomSystem.cs create mode 100644 Content.Shared/Glue/GlueComponent.cs create mode 100644 Content.Shared/Glue/GluedComponent.cs create mode 100644 Content.Shared/Puppet/PuppetDummyComponent.cs create mode 100644 Content.Shared/Puppet/SharedPuppetDummySystem.cs create mode 100644 Resources/Audio/Effects/Vehicle/bicyclebell.ogg create mode 100644 Resources/Audio/Items/squeezebottle.ogg create mode 100644 Resources/Audio/Weapons/rubberhammer.ogg create mode 100644 Resources/Locale/en-US/dummy/dummy.ftl create mode 100644 Resources/Locale/en-US/glue/glue.ftl create mode 100644 Resources/Prototypes/Entities/Objects/Fun/puppet.yml create mode 100644 Resources/Textures/Clothing/Head/Hats/magician.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Hats/magician.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Head/Hats/magician.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Head/Hats/magician.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Head/Hats/magician.rsi/meta.json create mode 100644 Resources/Textures/Clothing/Shoes/Specific/large_clown.rsi/equipped-FEET.png create mode 100644 Resources/Textures/Clothing/Shoes/Specific/large_clown.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Shoes/Specific/large_clown.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Shoes/Specific/large_clown.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Shoes/Specific/large_clown.rsi/meta.json create mode 100644 Resources/Textures/Objects/Fun/glue.rsi/icon-0.png create mode 100644 Resources/Textures/Objects/Fun/glue.rsi/icon-1.png create mode 100644 Resources/Textures/Objects/Fun/glue.rsi/inhand-left.png create mode 100644 Resources/Textures/Objects/Fun/glue.rsi/inhand-right.png create mode 100644 Resources/Textures/Objects/Fun/glue.rsi/meta.json create mode 100644 Resources/Textures/Objects/Fun/mrchips.rsi/icon.png create mode 100644 Resources/Textures/Objects/Fun/mrchips.rsi/inhand-left.png create mode 100644 Resources/Textures/Objects/Fun/mrchips.rsi/inhand-right.png create mode 100644 Resources/Textures/Objects/Fun/mrchips.rsi/meta.json create mode 100644 Resources/Textures/Objects/Fun/mrdips.rsi/icon.png create mode 100644 Resources/Textures/Objects/Fun/mrdips.rsi/inhand-left.png create mode 100644 Resources/Textures/Objects/Fun/mrdips.rsi/inhand-right.png create mode 100644 Resources/Textures/Objects/Fun/mrdips.rsi/meta.json create mode 100644 Resources/Textures/Objects/Fun/rubber_hammer.rsi/icon.png create mode 100644 Resources/Textures/Objects/Fun/rubber_hammer.rsi/inhand-left.png create mode 100644 Resources/Textures/Objects/Fun/rubber_hammer.rsi/inhand-right.png create mode 100644 Resources/Textures/Objects/Fun/rubber_hammer.rsi/meta.json create mode 100644 Resources/Textures/Objects/Fun/whoopie.rsi/icon.png create mode 100644 Resources/Textures/Objects/Fun/whoopie.rsi/meta.json create mode 100644 Resources/Textures/Objects/Vehicles/unicycle.rsi/meta.json create mode 100644 Resources/Textures/Objects/Vehicles/unicycle.rsi/vehicle.png create mode 100644 Resources/Textures/Objects/Vehicles/unicycle.rsi/vehicle_folded.png create mode 100644 Resources/Textures/Objects/Vehicles/unicycle.rsi/vehicle_unfolded.png create mode 100644 Resources/Textures/Structures/Storage/Crates/toybox.rsi/crate.png create mode 100644 Resources/Textures/Structures/Storage/Crates/toybox.rsi/crate_door.png create mode 100644 Resources/Textures/Structures/Storage/Crates/toybox.rsi/crate_icon.png create mode 100644 Resources/Textures/Structures/Storage/Crates/toybox.rsi/crate_open.png create mode 100644 Resources/Textures/Structures/Storage/Crates/toybox.rsi/meta.json create mode 100644 Resources/Textures/Structures/Storage/Crates/toybox.rsi/sparking.png create mode 100644 Resources/Textures/Structures/Storage/Crates/toybox.rsi/welded.png diff --git a/Content.Server/Glue/GlueSystem.cs b/Content.Server/Glue/GlueSystem.cs new file mode 100644 index 0000000000..91dc122daf --- /dev/null +++ b/Content.Server/Glue/GlueSystem.cs @@ -0,0 +1,61 @@ +using Content.Shared.IdentityManagement; +using Content.Shared.Popups; +using Content.Shared.Item; +using Content.Shared.Interaction.Components; +using Content.Shared.Glue; +using Content.Server.Nutrition.EntitySystems; +using Content.Shared.Interaction; +using Content.Server.Nutrition.Components; + +namespace Content.Server.Glue +{ + public sealed class GlueSystem : EntitySystem + { + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly FoodSystem _food = default!; + + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnInteract); + } + + // When glue bottle is used on item it will apply the glued and unremoveable components. + private void OnInteract(EntityUid uid, GlueComponent component, AfterInteractEvent args) + { + if (args.Handled) + return; + + if (!args.CanReach || args.Target is not { Valid: true } target) + return; + + if (HasComp(target)) + { + _popup.PopupEntity(Loc.GetString("glue-failure", ("target", Identity.Entity(target, EntityManager))), args.User, + args.User, PopupType.Medium); + return; + } + + + if (HasComp(target)) + { + _audio.PlayPvs(component.Squeeze, uid); + EnsureComp(target); + _popup.PopupEntity(Loc.GetString("glue-success", ("target", Identity.Entity(target, EntityManager))), args.User, + args.User, PopupType.Medium); + EnsureComp(target); + } + + if (TryComp(uid, out var food)) + { + _food.DeleteAndSpawnTrash(food, uid, args.User); + } + + args.Handled = true; + } + + } +} diff --git a/Content.Server/Glue/GluedSystem.cs b/Content.Server/Glue/GluedSystem.cs new file mode 100644 index 0000000000..ea0ceff438 --- /dev/null +++ b/Content.Server/Glue/GluedSystem.cs @@ -0,0 +1,64 @@ +using Content.Shared.Interaction.Components; +using Robust.Shared.Timing; +using Content.Shared.Interaction; +using Content.Shared.Glue; +using Content.Shared.Hands.Components; + +namespace Content.Server.Glue; + +public sealed class GluedSystem : EntitySystem +{ + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly IGameTiming _timing = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnGluedInit); + SubscribeLocalEvent(OnPickUp); + } + + // Timing to remove glued and unremoveable. + public override void Update(float frameTime) + { + base.Update(frameTime); + + + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var glue)) + { + if (!glue.GlueBroken || glue.Glued) + continue; + + if (_timing.CurTime < glue.GlueTime) + continue; + + glue.Glued = false; + glue.GlueBroken = false; + MetaData(uid).EntityName = glue.BeforeGluedEntityName; + RemComp(uid); + RemComp(uid); + } + } + + //Adds the prefix on init. + private void OnGluedInit(EntityUid uid, GluedComponent component, ComponentInit args) + { + var meta = MetaData(uid); + var name = meta.EntityName; + component.BeforeGluedEntityName = meta.EntityName; + meta.EntityName = Loc.GetString("glued-name-prefix", ("target", name)); + } + + // Timers start only when the glued item is picked up. + private void OnPickUp(EntityUid uid, GluedComponent component, InteractHandEvent args) + { + var userHands = Comp(args.User); + if (userHands.ActiveHandEntity == uid) + { + component.GlueBroken = true; + component.GlueTime = _timing.CurTime + component.GlueCooldown; + } + } +} diff --git a/Content.Server/Nutrition/EntitySystems/FoodSystem.cs b/Content.Server/Nutrition/EntitySystems/FoodSystem.cs index 31b78b1080..1e0d253dcb 100644 --- a/Content.Server/Nutrition/EntitySystems/FoodSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/FoodSystem.cs @@ -300,7 +300,7 @@ private void OnDoAfter(EntityUid uid, FoodComponent component, ConsumeDoAfterEve DeleteAndSpawnTrash(component, uid, args.User); } - private void DeleteAndSpawnTrash(FoodComponent component, EntityUid food, EntityUid? user = null) + public void DeleteAndSpawnTrash(FoodComponent component, EntityUid food, EntityUid? user = null) { //We're empty. Become trash. var position = Transform(food).MapPosition; diff --git a/Content.Server/Puppet/PuppetDummySystem.cs b/Content.Server/Puppet/PuppetDummySystem.cs new file mode 100644 index 0000000000..ce1e7d21d8 --- /dev/null +++ b/Content.Server/Puppet/PuppetDummySystem.cs @@ -0,0 +1,100 @@ +using Content.Server.Ghost.Roles.Components; +using Content.Server.Popups; +using Content.Shared.Interaction.Events; +using Content.Shared.Puppet; +using Content.Shared.Hands.Components; +using Content.Server.Speech.Muting; +using Content.Shared.CombatMode; +using Content.Shared.Hands; + +namespace Content.Server.Puppet +{ + public sealed class PuppetDummySystem : SharedPuppetDummySystem + { + [Dependency] private readonly PopupSystem _popupSystem = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnDropped); + SubscribeLocalEvent(OnUseInHand); + SubscribeLocalEvent(OnUnequippedHand); + } + + /// + /// When used user inserts hand into dummy and the dummy can speak, when used again the user removes hand + /// from dummy and the dummy cannot speak. + /// + /// + /// + /// + private void OnUseInHand(EntityUid uid, PuppetDummyComponent component, UseInHandEvent args) + { + if (args.Handled) + return; + + var userHands = Comp(args.User); + + if (userHands.ActiveHandEntity == uid && HasComp(uid)) + { + RemComp(uid); + _popupSystem.PopupEntity(Loc.GetString("dummy-insert-hand"), uid, args.User); + _popupSystem.PopupEntity(Loc.GetString("dummy-inserted-hand"), uid, uid); + AddComp(uid); + + if (!HasComp(uid)) + { + EnsureComp(uid); + var ghostRole = AddComp(uid); + ghostRole.RoleName = Loc.GetString("dummy-role-name"); + ghostRole.RoleDescription = Loc.GetString("dummy-role-description"); + } + + } + + else if (userHands.ActiveHandEntity == uid && !HasComp(uid)) + { + _popupSystem.PopupEntity(Loc.GetString("dummy-remove-hand"), uid, args.User); + MuteDummy(uid, component); + } + + args.Handled = true; + } + + /// + /// When dropped the dummy is muted again. + /// + private void OnDropped(EntityUid uid, PuppetDummyComponent component, DroppedEvent args) + { + if (HasComp(uid)) + return; + + _popupSystem.PopupEntity(Loc.GetString("dummy-remove-hand"), uid, args.User); + MuteDummy(uid, component); + } + + /// + /// When unequipped from a hand slot the dummy is muted again. + /// + private void OnUnequippedHand(EntityUid uid, PuppetDummyComponent component, GotUnequippedHandEvent args) + { + if (HasComp(uid)) + return; + + _popupSystem.PopupEntity(Loc.GetString("dummy-remove-hand"), uid, args.User); + MuteDummy(uid, component); + } + + /// + /// Mutes the dummy. + /// + private void MuteDummy(EntityUid uid, PuppetDummyComponent component) + { + _popupSystem.PopupEntity(Loc.GetString("dummy-removed-hand"), uid, uid); + AddComp(uid); + RemComp(uid); + } + } +} + diff --git a/Content.Server/Speech/Muting/MutingSystem.cs b/Content.Server/Speech/Muting/MutingSystem.cs index bad6312445..5023957c4b 100644 --- a/Content.Server/Speech/Muting/MutingSystem.cs +++ b/Content.Server/Speech/Muting/MutingSystem.cs @@ -4,6 +4,7 @@ using Content.Server.Speech.Components; using Content.Server.Speech.EntitySystems; using Content.Shared.Chat.Prototypes; +using Content.Shared.Puppet; using Content.Shared.Speech; namespace Content.Server.Speech.Muting @@ -36,6 +37,7 @@ private void OnScreamAction(EntityUid uid, MutedComponent component, ScreamActio if (HasComp(uid)) _popupSystem.PopupEntity(Loc.GetString("mime-cant-speak"), uid, uid); + else _popupSystem.PopupEntity(Loc.GetString("speech-muted"), uid, uid); args.Handled = true; @@ -46,8 +48,13 @@ private void OnSpeakAttempt(EntityUid uid, MutedComponent component, SpeakAttemp { if (HasComp(uid)) _popupSystem.PopupEntity(Loc.GetString("mime-cant-speak"), uid, uid); + + if (HasComp(uid)) + _popupSystem.PopupEntity(Loc.GetString("dummy-cant-speak"), uid, uid); + else _popupSystem.PopupEntity(Loc.GetString("speech-muted"), uid, uid); + args.Cancel(); } } diff --git a/Content.Server/Weapons/Melee/WeaponRandom/WeaponRandomComponent.cs b/Content.Server/Weapons/Melee/WeaponRandom/WeaponRandomComponent.cs new file mode 100644 index 0000000000..66ca5135ff --- /dev/null +++ b/Content.Server/Weapons/Melee/WeaponRandom/WeaponRandomComponent.cs @@ -0,0 +1,40 @@ +using Content.Shared.Damage; +using Robust.Shared.Audio; + +namespace Content.Server.Weapons.Melee.WeaponRandom; + +[RegisterComponent] +internal sealed class WeaponRandomComponent : Component +{ + + /// + /// Amount of damage that will be caused. This is specified in the yaml. + /// + [DataField("damageBonus")] + public DamageSpecifier DamageBonus = new(); + + /// + /// Chance for the damage bonus to occur. + /// + [ViewVariables(VVAccess.ReadWrite)] + public float RandomDamageChance = 0.00001f; + + /// + /// If this is true then the random damage will occur. + /// + [DataField("randomDamage")] + public bool RandomDamage = true; + + /// + /// If this is true then the weapon will have a unique interaction with cluwnes. + /// + [DataField("antiCluwne")] + public bool AntiCluwne = true; + + /// + /// Noise to play when the damage bonus occurs. + /// + [DataField("damageSound")] + public SoundSpecifier DamageSound = new SoundPathSpecifier("/Audio/Items/bikehorn.ogg"); + +} diff --git a/Content.Server/Weapons/Melee/WeaponRandom/WeaponRandomSystem.cs b/Content.Server/Weapons/Melee/WeaponRandom/WeaponRandomSystem.cs new file mode 100644 index 0000000000..6236040a83 --- /dev/null +++ b/Content.Server/Weapons/Melee/WeaponRandom/WeaponRandomSystem.cs @@ -0,0 +1,36 @@ +using Content.Shared.Weapons.Melee.Events; +using Robust.Shared.Random; +using Content.Shared.Cluwne; + +namespace Content.Server.Weapons.Melee.WeaponRandom; + +public sealed class WeaponRandomSystem : EntitySystem +{ + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnMeleeHit); + } + + private void OnMeleeHit(EntityUid uid, WeaponRandomComponent component, MeleeHitEvent args) + { + foreach (var entity in args.HitEntities) + { + if (HasComp(entity) && component.AntiCluwne) + { + _audio.PlayPvs(component.DamageSound, uid); + args.BonusDamage = component.DamageBonus; + } + + else if (_random.Prob(component.RandomDamageChance) && component.RandomDamage) + { + _audio.PlayPvs(component.DamageSound, uid); + args.BonusDamage = component.DamageBonus; + } + } + } +} diff --git a/Content.Shared/Glue/GlueComponent.cs b/Content.Shared/Glue/GlueComponent.cs new file mode 100644 index 0000000000..89a2c39789 --- /dev/null +++ b/Content.Shared/Glue/GlueComponent.cs @@ -0,0 +1,15 @@ +using Robust.Shared.Audio; +using Robust.Shared.GameStates; + +namespace Content.Shared.Glue +{ + [RegisterComponent, NetworkedComponent] + public sealed class GlueComponent : Component + { + /// + /// Noise made when glue applied. + /// + [DataField("squeeze")] + public SoundSpecifier Squeeze = new SoundPathSpecifier("/Audio/Items/squeezebottle.ogg"); + } +} diff --git a/Content.Shared/Glue/GluedComponent.cs b/Content.Shared/Glue/GluedComponent.cs new file mode 100644 index 0000000000..e9fcead70f --- /dev/null +++ b/Content.Shared/Glue/GluedComponent.cs @@ -0,0 +1,42 @@ +using Robust.Shared.Audio; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; + +namespace Content.Shared.Glue; + +[RegisterComponent] +public sealed class GluedComponent : Component +{ + /// + /// Reverts name to before prefix event (essentially removes prefix). + /// + [DataField("beforeGluedEntityName"), ViewVariables(VVAccess.ReadOnly)] + public string BeforeGluedEntityName = String.Empty; + + /// + /// Sound made when glue applied. + /// + [DataField("squeeze")] + public SoundSpecifier Squeeze = new SoundPathSpecifier("/Audio/Items/squeezebottle.ogg"); + + /// + /// Timings for glue duration and removal. + /// + [DataField("nextGlueTime", customTypeSerializer: typeof(TimeOffsetSerializer)), ViewVariables(VVAccess.ReadWrite)] + public TimeSpan? NextGlueTime; + + [DataField("glueTime", customTypeSerializer: typeof(TimeOffsetSerializer))] + public TimeSpan GlueTime = TimeSpan.Zero; + + [DataField("glueCooldown")] + public TimeSpan GlueCooldown = TimeSpan.FromSeconds(20); + + + /// + /// Bools which control timings and when to apply the glue effect. + /// + public bool GlueBroken = false; + + [DataField("glued")] + [ViewVariables(VVAccess.ReadWrite)] + public bool Glued = false; +} diff --git a/Content.Shared/Puppet/PuppetDummyComponent.cs b/Content.Shared/Puppet/PuppetDummyComponent.cs new file mode 100644 index 0000000000..203c1dfd2f --- /dev/null +++ b/Content.Shared/Puppet/PuppetDummyComponent.cs @@ -0,0 +1,11 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Puppet +{ + [RegisterComponent, NetworkedComponent] + public sealed class PuppetDummyComponent : Component + { + [DataField("enabled")] + public bool Enabled = false; + } +} diff --git a/Content.Shared/Puppet/SharedPuppetDummySystem.cs b/Content.Shared/Puppet/SharedPuppetDummySystem.cs new file mode 100644 index 0000000000..ededcbcd5a --- /dev/null +++ b/Content.Shared/Puppet/SharedPuppetDummySystem.cs @@ -0,0 +1,71 @@ +using Content.Shared.ActionBlocker; +using Content.Shared.Hands; +using Content.Shared.Interaction.Events; +using Content.Shared.Item; +using Content.Shared.Emoting; +using Content.Shared.Movement.Events; + +namespace Content.Shared.Puppet +{ + public abstract class SharedPuppetDummySystem : EntitySystem + { + [Dependency] private readonly ActionBlockerSystem _blocker = default!; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnUseAttempt); + SubscribeLocalEvent(OnInteractAttempt); + SubscribeLocalEvent(OnDropAttempt); + SubscribeLocalEvent(OnPickupAttempt); + SubscribeLocalEvent(OnMoveAttempt); + SubscribeLocalEvent(OnEmoteAttempt); + SubscribeLocalEvent(OnChangeDirectionAttempt); + SubscribeLocalEvent(OnStartup); + } + + private void OnStartup(EntityUid uid, PuppetDummyComponent component, ComponentStartup args) + { + _blocker.UpdateCanMove(uid); + } + + private void OnMoveAttempt(EntityUid uid, PuppetDummyComponent component, UpdateCanMoveEvent args) + { + if (component.LifeStage > ComponentLifeStage.Running) + return; + + args.Cancel(); + } + + private void OnChangeDirectionAttempt(EntityUid uid, PuppetDummyComponent component, ChangeDirectionAttemptEvent args) + { + args.Cancel(); + } + + private void OnUseAttempt(EntityUid uid, PuppetDummyComponent component, UseAttemptEvent args) + { + args.Cancel(); + } + + private void OnEmoteAttempt(EntityUid uid, PuppetDummyComponent component, EmoteAttemptEvent args) + { + args.Cancel(); + } + + private void OnInteractAttempt(EntityUid uid, PuppetDummyComponent component, InteractionAttemptEvent args) + { + args.Cancel(); + } + + private void OnDropAttempt(EntityUid uid, PuppetDummyComponent component, DropAttemptEvent args) + { + args.Cancel(); + } + + private void OnPickupAttempt(EntityUid uid, PuppetDummyComponent component, PickupAttemptEvent args) + { + args.Cancel(); + } + } +} + diff --git a/Content.Shared/Vehicle/Components/VehicleComponent.cs b/Content.Shared/Vehicle/Components/VehicleComponent.cs index 01053f6c65..101dca6024 100644 --- a/Content.Shared/Vehicle/Components/VehicleComponent.cs +++ b/Content.Shared/Vehicle/Components/VehicleComponent.cs @@ -107,6 +107,10 @@ public sealed partial class VehicleComponent : Component [ViewVariables(VVAccess.ReadWrite)] public bool AutoAnimate = true; + [DataField("useHand")] + [ViewVariables(VVAccess.ReadWrite)] + public bool UseHand = true; + [DataField("hideRider")] [ViewVariables(VVAccess.ReadWrite)] public bool HideRider; diff --git a/Content.Shared/Vehicle/SharedVehicleSystem.cs b/Content.Shared/Vehicle/SharedVehicleSystem.cs index 7193cdd613..c854febad3 100644 --- a/Content.Shared/Vehicle/SharedVehicleSystem.cs +++ b/Content.Shared/Vehicle/SharedVehicleSystem.cs @@ -106,13 +106,15 @@ private void OnBuckleChange(EntityUid uid, VehicleComponent component, ref Buckl // Add Rider if (args.Buckling) { - // Add a virtual item to rider's hand, unbuckle if we can't. - if (!_virtualItemSystem.TrySpawnVirtualItemInHand(uid, args.BuckledEntity)) + if (component.UseHand == true) { - _buckle.TryUnbuckle(uid, uid, true); - return; + // Add a virtual item to rider's hand, unbuckle if we can't. + if (!_virtualItemSystem.TrySpawnVirtualItemInHand(uid, args.BuckledEntity)) + { + _buckle.TryUnbuckle(uid, uid, true); + return; + } } - // Set up the rider and vehicle with each other EnsureComp(uid); var rider = EnsureComp(args.BuckledEntity); @@ -148,7 +150,9 @@ private void OnBuckleChange(EntityUid uid, VehicleComponent component, ref Buckl // Clean up actions and virtual items _actionsSystem.RemoveProvidedActions(args.BuckledEntity, uid); - _virtualItemSystem.DeleteInHandsMatching(args.BuckledEntity, uid); + + if (component.UseHand == true) + _virtualItemSystem.DeleteInHandsMatching(args.BuckledEntity, uid); // Entity is no longer riding diff --git a/Resources/Audio/Effects/Vehicle/bicyclebell.ogg b/Resources/Audio/Effects/Vehicle/bicyclebell.ogg new file mode 100644 index 0000000000000000000000000000000000000000..589ffb6c5cbbcf72ab8f24a08e27d21c35bbd209 GIT binary patch literal 27234 zcmb@tby!tR_b|Na5D5Y46r_kDJ_j~=#&NtC6(^(ZjjFN?t}OJ zywCUhzUzJe`Q|!jUo*32)~s1IYp=cc8*}q_03z^D!NmMqkqSL6MW94*wRbYIbcS~! zKpOu-I0}&ND|HBO;4}YI;4=}x)@Kc}dAwNI|FeuC{l&xs4$!c4uwZ}VWKL~kX{2_K zpIU~Ri-U`U<2eTpHKVer$$MiKSi~jN5CC*=Jf}Q$2V^i>6##Gnz<`bkJJw8w2^yEh=#don8eZ$* z2uX?y=^!=^=j{CVLd|1B2mr_cgb^b$dtJt=U%;H0A<`*Rz*3Pvj~XrX?VzPqOWNJ2$bO$qhOjqV(=0~?$k|_m+FMcoS*p-ldGHBU!H3# zCst8#D?d9@aGSAeQ2YT~)v&BQ=a`ytX%nihw{yS1M(RHojQf31gS3dFl9=F%qr=e$ zGvy{ZfvEm&iyDA{+XSRP6UbB$^i+`d4bi>%!}=DVcZgf^or;1gSl;WZyP8h8zMpXQ z(M$@^uJh5X3(%en&^-?@Bo6%Ncj2>e4*%V6of-kid?Jvr!t|Av^y{*~SENsY#fX3j zoF&v4F|{uKgT z>;NFjN#5Z|{tM)WGTVp~ue!6)gtNi~$OK`nwW1AUJE4I(abpxK98(c`dVmAZ6r7h)N1WeL+&ny##IgNmf8vGX4J2k@;mX z*|}c^D;fH?=J6;6t)yTW>?7Go#qK0A1jktpC!-ZiX@GMz2b0(H>j}VGNL&g-b-l`8 zeE+CLfnI9=4}m3cM#yxEbv=eISi3Yy-S5MI_x(@x5e4ODI7!@@_L15r64i)+CYL6b z(j^KzHj}fPDTgv5QcAYKUrCvS0qXMce&^Hx@Co-`i~qgctMXqh&WQ@m~%hkgQ zzZAFi3+|M+;Ywg}f?CYV3u!bL`YVcK{1x!Omg7j!^_l$FXF9oWbPB_)eSdh~ z9PvFSTL-4R~X5mnPMSJSB)Q|($G&6loz!Z8@2Yk<0v%Ph?`~G-IB6B$$UJ7ko+ID)@@|KP<;0G%qPMFF14~IFd0W z!7?Pdu>Pyf@6w%y|LgBRmLu&%2mV0Ik#wT_FUx7=B$oiK=^LxU@!vfP4S@`GktF(W z0RTX2G?v`GA9<_HHm1xwrp%_QBJ_W@7!W$fqcFk)GBzFnNC0571LQhxOm>16ZnOGt z0Y=_)Jx()%_IWR8l31kE;TI!W0mkaQeokocXB};p&$R7^*n+BxO!;CP<1*-MXrS9e z2Ht|^CLYY$PHYq|)=m8?oD-eoQ!pngjsKt+I(4 zHi5LFkkH5+*Rwju!3t)IA* zEV^X@YB00_h1r?Pjn33T{Hc=~O6-rz)RE+jOA94-#uo1cYqG!KH71HrkKl5_m1SZA zk7cDr@GLj*&uw1@0s@PX0dYit_*0xwufPU1D1%SY%HaYVQ_r}4#&SY?1 zP+;K|om%f?;p_tYw5-9n3Jn_!ucQWLq~awfEq(@|W!|eS0mvyVBP`CqRA*c+^v}*% z;%GEZpd#d$D2rRtK;>m$)8{-E0QF3nizy4Lr2LdVM@0(^q;^5}?zW0E@|e&A(P-f5 zl|ujqHGy#;8#>7)WI-+)hl4r|_HD!|gIi8=1~25`c>%^fAos|PdqH+NM}oWn`?}zO zja1{mrwIlCFgt*UZ~0pj=Z~K=LGwfe3cyo>Q}&*(qyfa>XmlvgYtD6$XxW0l%{b-1 zO(uFclm?Uz94Zc)9lQxLO*ReQ%!-Q>M+c7ykaGbb!=Z61TFg*zFvu#kzkIbS0f0kf zG$0d^Oih}fiSz;M{T>m3R?wEkP-%?ek^o%B&jd^0C!Sk|V3S5^$pEM?G4#<@20 z<6>lGOFAAKhkx-`R%Ql0DCiHzvBhQCsvm2IRjg}Sqh;lQ9u%%%rA_|PveqSQ#Kz?U z8`ENpOx2S{;k*-CUf2ayAcE>M9qT@UV9>*Jj*~j~@t)7hftZu6OL@^UoN;rZlU5PD z8>wEnf)}G&5%ueoE`wqllrFL*;3?QIghu0iSYNGS-N(Bz?~fyhzF<`ZDz^23(0RJQ z9Ve*CgFoOy#OjEx2L#T^KVb`AP+|ey5e|T;4o6J1U{CpQFxi_{+z+6C!32WA11%hM zK%f4~#3=NyssEQTgEt9J`N05O<40-laACx9uHv7sIEWd8cqyN05|ue)@x`J>mBQi; zg47)Ri6Hj}8hDq38w_&9ITAN++-R>}MOMJ7Vk3^`V`^2Z+%GIKMJ;PKlWs-^&Kd%) zPXtxdT3etyH!7-d3Fnk4=tz*=0ONPyBLE=bap9vAh<^Bh1@Mc$jz$D9A7D|mNs5ZH z(`2`1I>_@gr11fOSa2_HNN@)=XBH_Vb1o9310~QK=pLMW-B<@e$? z8n^(Rpc*9D!fc&i@TIV*_$#T`vhs>b$}0a!Q9vM&`>~?n6$1I2gn-c8cLDGu1bm>& zt7T2yQIGFU zwNzQp+o^-gh9uv7=#R65Z{)aPMAH+Vc7r2#5lSsdu6M?uj69ti%hJdwk;wBOzMK9j zyHh)!`KET$zaYg5Ywgx@z@wA%eVdYkhDDn={&GU!Zv*wM*-><^y4sZfrSY-6W@qT0 z1*2J9G_vNiMra^&e-+>8`30lC*&dJGd~t0<2#$)~Idf^`Ow%{MWj4|S`}fTAChOJy z<7JorQzi3(oJYllPi(aUyYDYl3m zbQcmsgU)$1Z|X25&ihTWuBOZ+>GQo8*h`A>y|8{ovsF7F7u$G!8b*-d^ANk>&CK5K zH>)=%bhz5C`#r%d=C&2fA5SVr?*s}v)N)=7hki<$$P1G2IuXFM%O5cgDfaK!why?> z4<{)K^Yj2HU9Klz(0-XXdKGJ%mAm@#MV=|DlY&+3Au*}0NUEmKmVA+>1h@10OrFEt0IV0b>y>$La?G^EbZ(U&}Ux})9vo5 zvikPOuZ{kRveTl#&$zp%1=F_CeHUMe(gkYkL)SFMi>R@5*C=_kYcz|7uRB(}r*yA< zVzA>^76!QHDyqjeTH7>!WG~D#3cfecG8_FI(dX0nX#BfSd?M{8gy*K?B;-^1snI-~!T#MGJt8pg;PKRKfV}p-+$T$V*yrTKe7zQIflTDfYExqo=<#M(OnwMySl4 zvjB+Oc%KBv2AShid9U~JTxPeO^M>;*M%JexrDe%F6GbNlneqb6v-t)yCG=%%bB1HNVX4uqc@P`vPzG z28O_A#?^RZ{kw0!MtzI^t$5;r_#StM(iZ_I{@Klg^TGos?%Z{07VLt# zvyo(0C)KR7(~-O<6#k}lPxNM+iB679xa~v)$|#x=9k-B8PhGqVSG&cA6HP9vDiU%v z4I?g$7F9Zou6OlXS}1f%B3s0M-9Vs7KTSt%c4>UWtBiqzVXKyf zx_Uey@hEy*i`49WHJeP=$|T>|6F(vVvP6~pYTZR)qk4&`%}bUL3mQ?VC>UquxFoHp zldh2}&_yGaU-@hDs-IdRjeVjruh33LSaINXX%dRF-$v_Slfy%1omIg(zU9B)>?7aJ zp#Ieml}q{4G*4cMU@4t$SgsAu3yB`1H7rzr;tQLZhVd$8Tb3ombe)MGr7}!EjTWze zXv-zkrS+G6tAch2XzObBH+yl;@{euJbwb9va*e|kkDK-6aO$tOEXMy-hu4oK<g7OF4>5V*?hAV)EaY3BNs2hLyT&UR3u>&leSZ$vwK6p~TiBdtLsm z;Ug-R%|T_$%bb8uv?GgE5|l3wC|w7-KSegPUsJ61Gnbhz%zb+v`+OZ;f|K7aoc+zS z{@>^m+f*9!@8pZM}r?{IK+&t1j!Ldo*l=D|BHswk4XvrEtK&6TH3W4oqzK_dJutcgKd zZZ5Mr_1&}EX)T>A_`DS?rlaeAN42VjY~|-oihCc{m!1X(uBU9|sS*y9j`0uB!2+7Q zZEz8VU1k#03cv2rRPAnm8x8jMoz)Qk%DI*M9&b1&C`{Ocj(ip8?gwg2N1>tggqWU% zz!;OrL`9-0$@+Vlxht2E2oJdd?l;yR;`r?mrVic&>88WdDQbS-F*?a23he{JtTZDj z-E!Cx7RO`gZO4*kqaLEkJ^Iu)?dDS!{o_}?=Vp`$1&a3bEsH6EGfN%JH{Wqe$R|vv z`YY&k1xy@o+4SnuPJ#^Veu`0lIGYOE>U*i%!upnk6-&INgSawq{nXPdjTCjqvEp?e z8g0-mPR~#hbDx2lakB8lX=mF0{!^K@@$6q6kk_g5X2}l#CH=e_t>*J0#jzskkiL)E zKemfwPx11+coFw&W&X&C;6FCBd~sxU`R&7N_Q{Z>lU2JH%gJS@IRZ;fCt0EC@^om! zi((pXW&s;(jw(y9>#Z+6b@EKi9SXhkz1$f|`<+Wx?+#L88m=Ccv9^%K%em-H5l&bN z`I_xtjcuFZ@ACX|?qx$p+uAAdk%YAhw=XKWI*t38ykICApOuJJYkAd^fq%X-lRYwa zgm25R(`4X_GcZx=1$#@$v*Gg#3LLd7x{wJ(#dgxQnN zL(c|6exOS)8*A1jrn+ZIKTYxOMF-MdW+I#DyUz-!i$r6uM`|8gmS#V^eD!YWxFfky zqJbhce!lMQ`i!R3u;MXanYwk^?9g;20e#Yp(YXTtS8nMB$$6Zv68CWtq3|`aUFg)( zZqk?Wn?f)C7}bcEMsmmUiKM(6e?-}iiofM*x@O!eEqNHDYUU}Rh&g2{aHlE=$RXtx z6>9uCS{*!z5V1rF3+_x}8=DF~#pYl-*~R*jmt0R?x#_pKMz3g28O;^zz3CzY zsF!+*x+L+0*|@$f*1S=%7{e=ymb;uUB^EQ_F)SV&rPANDotjK@?P_BEPV(`_Tc7Ud zpLm=P`HwNtSVtd4E(OnB8#}Y~1q~PB>c6Ve86kRgdhD&4-elo2v8?Pibtf;`-jsgi zrobDgZ?Xk<>>wxLv!N-ex99TQ~dLi(a)Bic4Q|% zu85PTDZ1Q5iOyjXK3+qD+ z`3?H#5h^>8oS%oXpFB!9aX)h?2_nOx$|5t?5vihoDVI;W_hN^`JDn$M*OIomP-P_H z!;-CIBcV;oS$HftX5V|5Y1EN#qW^J>`L`&=={bMg;RnZUM0_Ht)x3`tizW5N?PLV= zd8_MiFqebR?Y4VMFQaqBdKkP8m|~Uid1?S4t9;d#cVVD=*f8#;Q&@9&p4*NVN?KB) z>zUvx`vc*(=(Ovp`4caWy+ZBcR1@6qyrfmli#WHcW{n4^27RSqBk_#=$9o~%7my6W z&rRH#nl(+wl7tHdL8@8fQ!A9wO@G3rW)?JBPU8Zm*ShgsS3BkvrGI!6_1mH}?+K78 zjv5TqoE>K@JyW!+S&Y@%dKdRLa?UN$2)Va7r#j&i&#ZQM>Z+TdRsr#M?DsA8kLUQ* z6H%Z#8wBsZNa9>wKFTzba5xJYn0pr$PBx$^WOMDTMSh$`EydCTH0_hUm6+k+8*1Zc!2^(WVY|@pi)N2Sc|;!*t?s^o~Xp_ z2A@=`80M+;W;(}jS8uPW(UX=-L&tZ5TryW-r}U7tYl1Vku6{f{jE`4}pVXUj;{7m= zLO3c?UoOcu`toaaXQnw}v)i+B3QCN^w_6NBHGDB@*e}_==iZg*Y9oD-dX37I^e)jm68tty{{9a9D!BebK+!P*;MpxdESajIEQuvR9=8dv%3-^9!DT#Z24M*8G z$WCyfjYn_5V~=?XyoMj_e)FeV4`R$JvY-wZPu+8?!hk5m8CnYx>69 zMtRnJx|vSu+Zkvbf~{V`y?g}4-r&}`{9RqtkSPCMvngw(sK9IY@>9b0>?_^)_oxrW z{Py^ZT1rA{b2YdatS@)M$!$yRbm}=bnCl@TzHTg9Z+&rpldCYQD!Q+uA4}V(mH3TR zvOx=q!?)sZLN15RW}&9+71jsHzq{KW@r2Jrh4V$K9v1wdR4)plNxd>*PvD9;MrnG! zm1L{j+6Rx{a7JIpxZd>Z!qsFCb8Q{?)wr!YHf3mqTAqHm>T)DhWFLuCu;sGc+<5#Yg06nv9V1J%C~fJHTte#z6+oAk1%E*~87qeaO# zeuGQvUg}|bR7A!wavgnAMOUA+uiL9;;?7q#atzp!N%-5@)@Q0@VD7t=fHiq-MfQ~W zQtCLNNIWV^Zc60yL`qnr-c-z!bXm|nog7YD?dOg#vnC_#+R;-sc_vi7=qwXYuJKNP zp)fIV4Gmg3nZQR*Z3NQ>vg#7eFZC|AuU)ZJWo_5fyU;RT*?fWHtSO~H!!j;c9bd^w4m3aVV;vDI z6?3nW_x^LvO_h~%i=>yWpsU=b>TzwwxOzYaJ`w;^`4_8*qcS9lHMeZX%=Rf)E9^Z>XBL@@fTXZL0%<`_=TjzsJy>>vJC_Zbs&|{hDBO13l+cUp<8CuFhHJ(;x5L^$Au}%mo2}l>(ETZt~vF z;OKLn&8tdNW;CfGbCL%CDg=aEao0a`es+nWPZ`I*0l;dzEAG|inQP`-V>@Sv-T8I# zgk0W?!w#%A>8!b}go?s16cynyf@pPCGuua~s?KXwBFhYCRfzhpOQ18BUQaZ8Jl3ztdekC2SdQcc# zl(;BWE!$UvVFLTmX~+@E7(9Jx+ui(mUQLV`03Nx73CnFtxg;xYBhN%-pDE2Yix_k{ zFrVcgU)?M%O7=_L=I)K$`nxqU2#+>)iCi!KIH3;`DTon&MS#hf7N+=IVX8)-T-~qw zcH1nL+@9@jlb{P~p-@S^<$?+%joVu#UVm|Jo?fVNc+(J&?2QGdlXR`_sFnBYC0Wy9mxk)Y36i-P>^4 z@^+1+Nt2FD;{8e2xpK>>T>Z}|kcau;Ln1&xdm;md?aVXNgmZp#c9o&--{u4xO|bP5^5;^{6T{Tf(VfR$Slp;q$-E9M-DXuPp}?h;ohF2Z(bq*N_LqrFFJ?>UTM#Y zNZ&cpP)Y6WMFHYw83HgkEj!m_SLt3eaL4amidIXztF^OmL=Ah7E82ng{&L^Vs8|xu zRRtjU6`a@Hv-Rt#WO)fdtl>8mkkxE3XnULZr%(zBX%N=@X!8=xx1YINwCR*5JtXK* zJFI67kyeN{Tw{3AE5~?f+yK7nV^8L9&_Rfx+Me{%n)z5y8Xq`mwMe@xCJj?%RRTTt z$+M&vJrCH`bKqJU z6L9JESa&d3!%?1<&)-WpEY#|d&l&&-e!P6Gd&r!vYU4l%h>e#2F*JNe_4RV$7p9O1 z07=IIM9%^Qtz8xff6QXOsnKFJ$bemj5g{hY0p6VAw`H{*Ekqc!k+S>A+rl$LB*?0g zVkmoodB@HhZ2-X2$Jp+zL-~{WV zr)Pu}W=0Y4WHit?BkY9{RD6wR2#y&6xbQJBqOh&%rhRZ=;!5;QwfY!!?HNw%IWRd8 z{q@nG^S7@$US;R!?s~lVK3Dj)FrWF+?1}32%R4{!pK#>AaN|T?q)+8^FQT+kKP>8g zqIg=)-NI&7vJpa66^v|wJkj;80%#qZWGO2YvKky@_`a1olT+Y*8CH}SK-=nWF_eD$ zdQxlgCDv1(qCtk=9;85YB2z%msPtR)w@9oVxXJFyWNQ6#5tpQDjtdUH!V#&tOXo4g zd71+_z#w(21A^%E^tqR>d*>5|Tph>wYSWv@K$DYlirs5k(S@-j+mqC61Py{6)d}9p zcW?cMVWiEcMs4QJ3xU&Sk}nQYBx`2#=CbxCZrL6JpN>wxPX6Rp_+crf;M)Qd7+z?u zs=ICbe7k)ZB$qYgFyPBNM_KxQ{-$PF#vj-KAPR#QevD}9Tof6%qB9fdr9Crp5*>=- z=P5NFtuGRu%6(crZdeOILI*5xE|2je7nTR^%InGy!V$itdr=o!x#fKTYg3OER))f zip!8bJD8Ivt6dr5mX|FgiNda$_#JvBH%rarPK5mX8Ef zPKUU|Vim=pM{6cV4OCN@`di&RtDNQ}QZY}`=slsK%G_$&;JcMC4Ics2^|0+N@G&lc zj#L*TgE$F3uKk1r-05zn!7_x%d4p5Ke$mVrmQD$u9x$^?9JBa-#{YtB)|MxZyqPMv zfiSyRIZ{g^TFIdQ^6}lwoJY;OmvMY7t1lG9U}Px|PFl=-{d75mx8!{`3x=DI;yoCA znkUoz+G@`R`+CWbM#gqUL7klQ@LVXjHLe;rp2wpWqXv{(yFUCv37Dq6(iwjWv^q9) z-f&bn)l)c^x*Zfo(Tfi4DCgbYHd)(Hj?ZMIU7Go!_i^j62&JQ!Cg=3-9A92C-v#;c zlD&Ly>%?vLL!LoROaJG=(!?*Eil*~2C*tJj`qND{ZZ%`R&QZsRBy63830Ptc_>!ot zOt+I$v4#iAWQ%*fm&oG8h)j1BD%LnihgF1bg0SwuW`8P8Zm+Zb5mPk>x`75*h}|7k z02l9WbH5Jop#H|`{BvnM?dx5Hd}WGfBH{4*IleV>L19^C+e=(=T`zU3!y8yCpQbIc zalCgqco2|Z-ngV4D&TUd*yLt$_KqLMIG@gN1S}+wntA#H5LARnKy>VBr}5lNH-#Rr zsr<4L6`}Q&4AMhXNSRpF9}q)tCYek8jp{eV6sH2r6K)-x5y%A)%kC$k6+>}jGbzp@^Q3MxUEj8`geMyZ`8}N>!ASe*RQu~1K+ew z2{`wV=Ao(CLHE};2sqRw6~fNz*9R8RSW-uOU%Vo^%F}rSD%Ro6_uhfKzT)iJc|Yzr zjQ1Zcep2_uSfEk&T-tlwUhb$~PX!)qr?F?8d{63>AK{?@c+hcy%y!qHU&c!E>qioL z#Sfpg-+r<3z2v{VzDVF=r4{>Z>dT~+OSg?&YQqFt2R%zvW6m9-y z*mP8CZN9ePo5w!8%BhRR0d7>whzre`!OHp{qJl8#10F6NclU;fg7aL5yPD;ZaV`5Y zq2S?xO*ftAmR`*Vtgt1RfLKNzTcI2G44o8LHCBzqdImXj!g-Z)pcpNeOFpKT$? z=lsat30ZOc=^JD2IeiAV5da{32S8S@idFenjW?ft z54$~8)df7J^UOb+1O?C?E6YhhUVlLt5h9XbBdt%hXqu6EdfS{zb?vz%ZTvlATOxVb zM!-42i@69!^#oLbwl*RjKRep0?4reBAeaM}Bbqh?QShW+0ee?C0&y_0g`@v`FK<52 ztm2|2sO2g}?J~13UzT^y`}m5@&DB9~)>KV#T*CH|%$z?)eg#TwzR{5-pWG^VictI>c|>BD|~z~mk#IngpaRZ+tVIc zz6qHLr5w<)8t0h65S3H7J=%Ikz?3rMfAdH8A|p@wIhl$X_4s4b3ad*&^1iMsROCxc zyoNM`IVLXDJsa`+qnu$rj26h8MF8ULtPVeOpf4eK#chvgqF1v3zB>ylS9%F+t{OV> zjdekx#^e1p9_T@D(3#2tRJ>tGTCY?9h>p(liMyi#1lHSEzh|wCd{j)Br>DY66Lk5x zZo^C49{d)ApI#q#z}t_O<3{@oK?%xzPd%33DMa16P2U+IzM81a(`L($-mLbkWN_4J zlYI^4+!vCxSnwp$#snllrUR^}-ucaq_!%!GJ6Qof<+g9;Pdq+&ET%cdfMGna2nHnU z);I@m4R3EJ)m{?GKkE0{IQ*U>+VT`)-yJQjc4=wHBWER^u6=%DqbL0lPX$0A9Qqo6 zzKu+N>XPiW2@E8>l3Co)rTRu|!+G zD~r~D$fNScYCVYGbu(Q%6@2AkPtu7WrG~lZVS+(0p^YXp_Hrd$%mIbu%jm|h?;7VF zSVMGDhByHEp2G+C{U3Vb9R?wEeW*eQ!P(fb22Lb+08EMwv_3s})GVwLD#j<7@FVL2xC>j6r0V*`-O-VWqCXUo>Tzc z}>?>5NH=--6}F4 z{}D7lqpx6o2O5o7^&C$=K{T68Pi zcFU!Q_Ij}M9t<2juU;B5#@U&+etC5=v=Sv^b%1?$Wj?(k0*K1n8WWd}I1CxD6nT*h ztkupuP39Y_Q87T^5pY^EaT_Cclac~ej{hee07>#gKvqbarl@=lyKK_q$C5xq0eG5U z$X*>(f7D<$^t|OQ^r`e~1mjLx4PFtQlf|#XuEsDmMLKa+GZW1dO9jRu6hSM<-U;{D zMxvjZLxWYw+o1(BcCf7L1vx-!plH0&$LMJ8SsTZVM3g+Z=`O)$q29c!C0m`9*;^XSO8ZMocd=oIRf1l#6D>8rbai#iiXdicBWpwq6t0d_8o z18uS_RYSmgkJOl*t*M-GfwgCkVjFqTc&Q-*(W~&HoY|ir>RK{%^10oQI^Hj-bQm8n z)r*s~^?!@|>IacvOKV^}mzF>pWIOi|rNu<$X9I2U$NajwhvW3^Tyl>;Pr}AKEIVFt zyQ7>FAjw24KecRVx{f@EgF-oe0d;sPGczqg(m*qv2|Kd05IR+sc_-!RT&Y*y$YerT z;d?u;vv5`E@`Wza5;H!^Gnjt=I%vVfynT+RY75cid`({r6b0d0@X`=WN+C-Et(WRD z@`%VCcI>9G4KPIm7+j|oZZ?^tc^*q#VQ=o~qH3v$S}Fk4LnA``*`HqF zx41rR#R4v}DG*u{ia=cOLM@oOC?RW@{y|R9%$bUg80=Op{Z*)$q@Hf;KPe`=Qle{` zmW$h)13+YnVaDB*%zr1ws`NioL_o`ACH&@Vjxd%_W7@VQoUbND2!1RBXi8szfi74e zZ(aZpAwch>js3ySbaD97KyfGK)i>$#jR;{HF9o!)Ptg4$=mz#}d0()n&`Y$_QV;0C zPsGd|g!s$Ne7}|B7zXKMM^t?9J{ucA#|O!MjRZ`XB# zCWQyiF9m|(!{^&$ou#@FUDd0)GZdu;DCZ0V=j{LFVq4@|S|8nTY><+$l5i^ssxIJx z)&_oGgm^DYOCS>#l{5xWGe%^@G#-G6Ao^un>2~=1(BrQRvL1xyE3-4vymp1Kkh?dD z0N}mE1)TY@|D_%H=}QAPsOYe00;1L4`4l!lA9LIuuFS=X7 zHM#%(CKD!Z3taSs!q*1NX_CZh$stNy0nk53$6xPvP6ouk;e%R&BOr;pQaGO8U~!%gMvo2}VE-G3$s zNpf;bKJ{<9*DD7k-%rMkCCHhBx0H9-TtZ%5>_|dx?Xgd_hCKLx)z{QGKR9pAJ>az% z#a*NTO$LnFsTsjNQ=Uo^Im}&%t8PNMVDm_r)^c`4~b4l<6CqH`e4j; zKY=#U*Y{=&Zr*_V_V$id`D1wX0s_B+WwAz^N;ocCQI*s{*%t@)fGa|1Iq}21>2!{Y zOqypdUfWOyiG8kilwGQvBJrm?0Qkz69m(^!Z>Mzkt3YhK1Be3QBZwUxRP{t$oR6X2 zNMzuhzY-wo_?6v!vgQ24H~SLf_{iyWBtKI^G1l@SmY{!SISX^ganrf8Dy*QGm|^!kUpiBU=>m|jXt9DW z-)Q&vq`@)VcL1OWx<6tuJOEd^<2$xNd&2%hUPO>!fJ46}Eeb!%IfcjA+5M|nfAxy0 z&I!(*G^$a_$wRq5QZbl>H42a6xfa%Re8;fg&;DnOB}jvQaOuE5xQcy zcagbUfo)5Me)H@pk5q9H@WApJD|76mOwG6P8k=!oRUh!W;h^@(l_?4#2t!fzs#AJqSHp^Fo2sU*ki0xgf0TIrU^_a9CnYjj7@u?9Km zp7v#vNUBKU&A*^swiljgxMEQTQSNTul(+gn66rAOUdH$yn4R}x{d2cxTKqd}Y*C*U z#9UZ)7=iEjIT3-jhkjJr zJ=Rt4a;(zyooAVo@|x6;+@(X!(-E6xeM!_lglJi$vVjM9fWsY=oBA$3-K@j-)Ip~@ zWuc|`g}kVEuptu{^TZ0LxeOJ`I^M4wbO183=P1yJ$7}j-?PQjxkhI}rM@ilK{K&4S zo^N5$b6ez00YFdApYlMSxurxN3COP)vFy3}Gk=aTPXHNu)LkO3y%lfc@m&8^g?YGu zY7QO>0*8KeV=ay13y+1?wym1C2gKsh^&9_eRAI(H4<=;yg1cZ> zhmHFqQUg8a=VbN{NP{81!Wp*>o*CTW(JhtzUPjuBi&HsQ{4tliYMtG_wYsf)$ZVsX zgZt0BYsu~*tq(t>0Ek&7f3IR?Tf<%D>?ooOVT8U%sVmpzEQ)AgwT*AK#Q2-uL|>9A zD!E!cPhV`H>O!!r<+Bs8d$rg{G^YPPCOJU8RECS`t`X%*-JtEF>~64Yr$t;y&XPY3 zIU1K&Q~f}sgZ>@atM1Cr;A_Yx7$I-Ge!G6-mqLg}ARRy7nK<5?>HD^lrUK8o0T)4S zb(c|82;~J{R5|-pj$1`2gm#PW90pG!Zq6}IQV;OLxfi(x-t=X2$qCm8i0*p&(D^^mOB?t5rRNBW;;U-F#8}H_Dez&1M*F)$9uM6 z?&Vw}L;A{8iO(7lF(e3@S@3v;i0jLx&6BoUQ@1Z+b#XPAPkT)H-P`SLiVO1tB|v}A zLn5gwbMmxYp+Zy};OHD)h8RIkT{B<_KNR1U6p0Z;jgvtqqX#^ya_SQ&GnPn=zGyn$PJ=*#{ zYrkRS)+x8TVoyQZf!`0kUjyY;t2HG<0fQ_afv;}|-&T9a0xwxmP+}+>E>m@OeffnK zSlq-2q@6>qt&T^rCF|a^1FR2G>@9cySV(?88tO;g>1v=yB6Wb12ddJ9GN>Y3xbQ@uP zKY%Qr5tZOHYkc+^NgN*Ncm>bz01iF_2-GK$l)}dsXN~R5N5Rbkm5i&7gpgYbVg#mW z*N&ENToJ+|)ob)1_q+li z3>kQwwxnxua`?8ugY6S^UO#$*vku0Op{`sxhJ-?eQ7NwMXD#8 zS7|@Q^G>hrNGyB#E&}$m>CXP4yH22?j22buoiP&GZN~39-hHbG%vTr(wwJusWFN+T z@1;~Md5(}@%NB(G9yDheK5CRY-0%Pf^oq}U>KLHGXuR-W22KMgm0Tp zRJJTUPymVMixg8okL6M?2iVnI!4ykV89WtoH1T6+g$lsJs+0>zt7w7hI#JM!Jc5;> zoT0sTt~AujK;-O;!hEjD*4vn1T6W~50?<)N4AG)RHX!;mPS1ZYg}0|?e= z7tZxkP5JXn&$XqnYn$=o%KJy`?mfaoO3$@+W?(vQ)-NaG+hCRk3q&6pD8i~jf}Ad4 zU&Sr6Iid95`%@|tm_xOGDD@w_;a)qc?vI4Wb3BCalmE=_DM*;!A%+Kfk=zaY=0*>A zq%{v1SLFVa%xPYXN1Zjcz4Jc_SSW4|#?b`dQh!c^?^F;wOb@KD~4o0adrfz&jjK|+(vbyQcVf)agP=1m^ zF!UiO^fCH1S;3-ku!)Ejczf4K?s}7$VcX7RYMbPTg5zLmqJh_cpf%2gdPsZoPI$`qTcBu zk}b8L866k#;x2i8|2PAZ=cff2*d?4-qwf4HTX=t!Xm0il>E_{JnJNDkN2+*t!VhJV zX@!>u9UAd*F?CsYJtLcpACss>;sHPhkGG;kbVY+84CS!_q;~0oNbx!Z-A}&jpC`1p zs0aoXOjSpI`gw+${FPMC?Q*>q2A4P*tl)CNkN@^2cc4qEDw;7L~=^utGhb!rF)>u(Rr$E<(Y z2_biwnfBSK$>33>G}~);Bo`Djw`*8nIlx-!B9#@Wjnw*-Hg(EMwLMk*0flz2S0Pn8>jo^bn6a4^+La59{3SA@x0?5 z%Pvl;yH8zi)GK?%HNnRoQFXqGN9+RDU}}dr#dcivcDG9C0Q-F9&f(H0vJpx(QMTe+ zQGifP7^1g8L$cKdIz^sc&eQp&o4Ao@0YZ%Oa3M&|`uX`jM*<#i<|_^|th8``-wQA# zJm+vBP4+`5UqD(+)iSQB-C~&c0k;S7|if!;*(4aa&+%GPGoyHg$_KD++XfF?>E{&gH+@y}$w-18pxgQjsm zznis{IC7&L8}oxtD-+Y^&RmLo0N^GY+udZTS7UtMIbPwTJ7diBTjLLAsKwJDB>~`T z5l-#dE+Vjq0p8C2dS8wL-iQJam42KJxhJ{zS(WUmmlIYEJckMo&iU_d8PT#f<#!%T zkl>=fO>5G=e8Z)8S49w@UZQSN9{uo+59dw5kQa-@A|+1zJ1=TiKb~PF(eFxlnGFj| zW1qQy6Qe`%=w&R4?!N4LMT%~i7gpMEQ;~T$t?^3WM5&yD-%E>zqnc>M7$_sRTl2g` z229OpP14r)j9~JD`O?l^Wa@;%F=F{tLzQ*X^ zpW;w*&}6f^uHW-$qr-&ptj2LNw6XaD|1Mv-mG%WCgPdV)n4WV6o#V~-?T;9MC|oGv z9N;&3X1stHojeJ1B@zIBswlMwffd{q+-*>h)9TBg)qHH0<^JvOP1^sH0)o`E%>^aR zdh)-D`VM%izyJSZq-$kIcF7J|$=)kFGeTx&l$8-TG7^zZviII(%gQF3tW?M>Gwc4( z)#v;BpB~-rdEfW@jMsUs^L)MDr=9AQOKRRf%dRAn<85N~Ejuks<7CHPmCTbJMva4= z;BGod>pjPm`vg!%!E1lGr-)UY@GxfTC7~o>Wb35T*SuZxcJ_z0X^0zE$eX9NZNa@f zd%2b$thm`3iV-1KWT`cGhc}1Tj=y5OcG>NSI(N0Rvywu|wil(VS4jA(p}a0@WdcTI z1~%w^efvEEi3uQDfEN|N_G=VklC8ol%a2Jzko_D%(RIcoAjNHrSEHz~G`DLw{;qbp z;&w{ZkPYW>^EoeXAtr*@+SJdY$3+>=FO7UuFX(Yor-6dUk)gH))|};e(1PE6yjFb! zg3C=s#WO4c61P{|d;YdHFy)-{6nb<@r@6G^Q-ZP@0K^bm4&S8=jq^TkiA9MX!JP<(U$OH-R})hNywA4 z)NW6fYloahy`C1`x`w+@%S6H}AY)HuJ8Pw`q7y$OOa`+=`8G$h&K%NcBqqUgo zOGphMRrMC4fwXky_debwBtQZ!sj8xmvH1NTP5IXWGEY;;v)68n4fEIdaw9`CX$G1k z{nzI_Szk+!uL5kvJ@Px7d>(S>%jiPMHmOvIXtno^^P84jxo%iWD%WnH z+Vb$`ja6=xA7j$PQ6k;ylZkF11;Oq)G($)N(p=y>~ zstyx9u7m0&nDaMJo@J4@0rU)ygnAb@==_9@H9nImThtk*^b&$bH(YR_3OfZUDEf3;_-|Sl6xR6!kvE-`fe>Ry=8k>$qRRCtT^oamIB5u^ z=s_Ls?gIsq<)e7KJviZCqvzs;TWg&>CUCOM_4Q3jmu4 z=C=^^Wy-k_Wr(2VhEtzR(~M7mkQktgB5u8>iZiM5!mRnu}?ltEAh zfz$QpyHD`4<3~b`Cmu|X$osrd>g1cHeHljgaJuUm!G)%MRY9}Rrc$n&5{oD`>E&||bgFJxbh4{y<&-42v7$##_ zMn)t+%lt^R$MxVdcc%vi5OdR+4are09E}VJx4F_xX$>@B%(x=9sQ7$78O{O>Jm7->Jx>LHg?gDc~Y~egu=yQ!MX=T z|CAzU53i3~%1gugkretSBnF%i)TAk6?S%!ZNG`6^50=gct6QN^+z9l)aj0-DX@Wjl zfV>UO7BMcG9bsgM`}$jA-qr>@$VqG zY{AMnCbmAZVnH$(2FJV+PBC@kH*C`9N>Yp}S2sCrxur>_r^oFy@2sQYRd{+BJ}7+{ zLp_>@u7UO0C85Fp;C*DE9Tcds_kaIz!ZAbjj0v>>h=G6WRDqO5)g@=V0s`P$)!q>6 z`$Eqq-6^VVnyEqN-~#~q=lkmnal*6!5&eG*M+=+{%=yfbrPxkzUMwI@4t!UYlCAY8wWS!`48~|&htLU zMIO}m@H3TV2vV?}Za=n%F*`{faJ>0%%y1OQ$nZ$KmO@aE<4WmH-pw@3x8)b#p)iS- z22e~LdD$`_yB1@k9)YgAy^qb+V7-V-APr%EQ%<5o!54Z|2#VJ*lEzYHfpHu zqQAo84f(C@w+Msv4{7Mk0;JeY;=6+d_qW&IPLNxRbRF}&)3s@qrRT#}!h58}Fz;%S z8`XSvZx0nYGTkm|$C4_kq1>8wg+QF&G=%kfNaigU0~o$T$0z?=t2Cv%*KhC!n^a)H zI91&y=}mpMdWuwSr!rRx6Oz3L55`I)i(Kd*?V-qE`~ja3*#wht{wu8k=eHkaKKQyB z;+4&${LZZ2yuU&0ptA0T*~Jac_iz~7;2{NF-jFMhN-rd{PH7*ae?cBR0zi#rE~wiJ zEk)oqkWvF?a+acAcIAz%9W>%3%1_wMJ=UjOUqtHQ#`joL{|~(QioX3Hc!8GK;#Btn znq?FoiX37VOz@8&iWS9!5<gkVmSf(6 zJ~1_4t+6qb+W!0tJpH%KXpLMU9;0Jk^9AY;RIP*9h}S zVOSW`gVN|(;Ff%R5q8-Ey{fQis^9`()5vgT=-EX*`PvAEG^pv2QYZ~q*haed>v>nP zaHUXe^NP@&xb3Ts?%|z3`h(T%O6F1Gy6Y9ZO0&TCVUEYv@w+ihBU!aqNy#_IVcCI# zf!*1<-I6vgs^^0+#Kd4>^YxbDkz~5`sn=&p9DlrHwC+o;ho#GL)dHPw_ zn2+j}SZ0i`V{m-iJr~BD=zXt)IwF#br(b;(DNOx|I7(2K7e_~J30VCxKwihFa}nH~ zz`_U<^}4p1UP8nF`sUOy>Q90`g@7u%h>)12?*}4+@m5B?uf7w#?m8LHd{%5@gJb-M z3-6Yqk-4}jt`?&1KJ4cNRexL$is=P2=B>e;Aw`i11eadE#ffb_tXzPBvyW4{FQ+R0BHT8@kA_eld8-o9HRPa-Cl*LD#lj)BlrXKh6DTZ*DuV zM%OrR&4mh&`*orET3&CCRc7ix@Vyl1q|w##jI$y$-{vP#ck~N4swXW~+|!(=m6V>( z8wW7vYZQG*{F45)T2ydY^lq(8io@Q80K~Yc{)z=sMYej5X8xS$8}8j?E*HIjjZZ*| zFS3E9<7NX!3e?)fbQ-w6U8$-=zJKig{N<#MoSi=28GnVlwEjf^l=VaAM_Z+rX|Mr* zH1qpVjL4{rAfz~l>mF~(sB}DAiflUOjo5bUKdW;8(eIg#xiGS%L#LT86+*^FQwfqToY`?=u_8f?v+`uPhi|*KZ=~xW7n- zasHrSw0Z(@)#!M%{LZJ}YSEK?GbQ&n|Fo*u`aj$4%qh%Hy_gqB#+K5*FTtZ+VTL6N zM|e0?VCyc8UO#}bqz~Vn>09vD?1ZWx3T(5lPr_s>4q^ONDf2~beJysH%HRc~B#$j` zmz6=zyYuX&xuz$M&90-IpBwK|6ryl`U~Vi$i(ve1d@b+KB6!8%bwwEYKd*xjdL0PJ z_l!yy>UN?9+?s^atFPT|Ds~MO4g|R9#4)O4jjc`Nv85&rqzMv+f9!hMdE;mG$%v8O zP${IP`(r%1cBPQ#vEvey-&wo#SD3C8cdic;VlRAu9ESl04RMggaK!(L(vVDs>)nz( z`Gu=1NVi|V+ahAk_b2GhjYMi)M8`X3JcYd9{P;a#_{zfbh%+FV{Vw8xX+{Kv(ESeA zcX?Jx%5KIILR=R%Pk>bUs>}5`c_s$=RYSdkyV*A0%XE*L*LVM3oMAan5d?b0^x47{xxFBkXM=N?YpWzTwUJ7k9g-90DXIL-Selp<8qO#-gq(IHPoRQ>FBJ{%1hV}+}tN03IYHlEdgh7v(MtL%0eOzi&p)|## zcK6nk91ex?VKUD1quJpVhEHm5H)=Vzhas%Kb#OEO#ewo4t{&5E`mn~O`jKA!76a|x z@ypmqo>L|06iVa*P$~~VruHQ<>Q!)LOKN_sRo5d}^!0P$?w;pwQBw!i-AhCfAF{pU z+Gu7YOx{dL7k5wgvRIGXi%Q?O&WbQ3vR9>7oa*Q2(_(K0q9KKw&ddb=i7k@0ZbiC0 zjVMnLZN1~x%|43KplJfjB7fu#CO|YVJaim^5&}zo`;&IlgN*c;!NyNZXEalCV}ope zN|%YnyXN~B(2{vk=3V)7l^$-Bo`(DJ-K8-pNlNA!#Z8J96H;M03=%9$RAbhQS_{G4 zhIT3e2QW%$!l%rDi3Xzxf}n>BS595sNnOBgG%q^7W3}=uiKuTzlrd*E8O6dtJsuG| zGyxO43zupLW`5{O&XAlY>0Y|^5eW)VhA?Sj^9JxC0VOK!*u!kP4|$@wNy}HJnamDs zhzpInGYNOJq^(#c#sxA{I&l`F->=IFy|*aGZht1rh(l|FtW^4B=%XoG6c+b#o5PAe z_!`yVgQ|t@Eivs2yAHPWxNrto0VDIpEG@U^n!V793JhKWEOJVIZWjc2Bu@7LyPthi zcb>`Viym?k8_uHV@u=p(6!RjeEz6}4Z?Q~@mbc< zO5-1On>M}5`e-K8V7kmAq!HZeNkuB4TrdFf)iQ0KuY>l6`CYkKg;~_GoNUXhHp4ew z<@4GQ9y>K$7V59oQZ-jP?y~i{vO6-GBkbB>7ZI!cti)$nL0tdD-GfXHARkd(`HU&5 zZ|>JvUBWW=VLUtOV~Z#j_2Ty5(raLmCKLc2uN`a=^gxHxG_cBX-Pt3%E46VqzTX^K zb@Y+kxyukm#? ze$mwO%FKzjS=C_lMz=@qA9)MfM}66nx38J&c=T;JZ~S3^T|z0usbi`4oTQJ$M^{XL zwhf^PTBZ-DEx`iiFjuu6#eR>mGWnkEm1!YF)lg;cVfgM<3UHg5K1S@UmZs zV-6HY;;g4$M)1)A+2X60$N&CzpK2>i74BkwmwbiKS?TDRU?zo(YDg0(**+FEG@Z7H z<|ytdSgTIH*O;Gz0XBI@tABGe9&^dKBr#up-CnI^?U_dc^`(j+Xf=XLqiWzv^M#WO zjKt}QM3ntUCnO5>{Zx6J$?;-7u8(~CZ1i1B>RY%PwTg`!QBv>mhvg58kDPc}77jb_ zoBcSQ(HD~a<85R%W0XC8sIn7QOOiizHs5fnseZBB0STfnH&uISUdLe*lXan~BUMk) zxxtA3c7$d+?>NO*BqROh3A$7TXA3K0I_q0>8HXAX=i%BdJ~dAZ&^H38z4(KbTZ*F2 z14|zg)0|mqFs^tQijwLDC^H24CEmK`BK#2FX`t!G|CvH0V>rDoE_4)ZR@c{0(tK%- zr*^+O*~-|;Y2wh9ZctWoczq4bziulDVh}OeX zDKdmUT2kDvI#3G{%jU|Np{+N}oh=%2G(_oHaEzQxPI8n_fWqIMhie)QIz^`wh`kps z{i``r+6tuj6&=40erAc0Z_kjcqy}%D4(e5-2>=#v*C{!b7D)u2?}Y;gu8aNuQF!TY z588~T=|D$_Ki2j9^C5Sj^b25Y&MslfIg!h-!!S>X9w98guA`MIE&cb}OuhPS!muli zqfXS4qjVGLR?L;r&M+!)@Y!t!=B_40&H7LJWBL%Rea zK5mFIdbcX1Gu4;A5Qqt4-iTyB91%^LI-oF`+y1MzZg2cRnoCddXGXC`1rKC?P&P`W#s}>0iXM9hPH3ocTl>6_Mx%k4&)OT-H6CA>dR=Y7qc zJdEN$?P@2|vTJM`e|ozk8Z|R-1a!HR#Exqs798(~q0PzSWZf9tGu9}i`SvP3zcf>G8cuA?d{eT@YtCE7R^ zhi}S#<0;tH zZ}>(Bh8^x%+BPvXJN4Nt^062y+l)2*KC-oNh^M8#gP*t(oz*s0^lnc{v&e~SU=#tK zUkzW#VCqdCOpj24jtytE_IZOL+6iOAJ{#Fps3WZa(vqOD`LM z|2Mz`R@DT$-^Y7-Vo|I_3Yer#C5G5_+Z(?RO`{o46h`enPOGnl9?8hw#&Vgqo<07C zhL)fj@~u#a4gN$WUL8Qo>6}%;RUHMdhmyQ>QO$3~_olGdq+V<_0ZdJwl@!KAQ>LQ4kN^qS=-mXW>I5fAOOXZ!)@s(s%ExE&TplZ3N@^1KYH8wTjy_vn za}QYMXcdJanjEBL0nQ@g*-`2ZfL%O!>@?!jJnh1ykI#Uc?^$JVD=1EAgUua5|uhH^psw0`7zo%o4mss(-b^N zJsR-5!NBrw*|Um2m3u4(w!=InO*74(c(sX0+Qm*9=B)R#&=h8jTxWtuJ-X_ik8BgK zEO*=cv^sIX(;nH>!S?Hik!p_ishE);Np5w0-7Aag869%_YNlFRBe$x(Z%_T0mu!>P z*OmVyX2wANaFp(vcmu<`PWzRhfM&Q+v7fiauRJ_l!Y;UKnU2FE;9q-Jh!P(9TWsk{p)M_@N-9U?4!2fQcWS=$ceG3*ii9i^E7NVyP)GFr zdRtfNU5b9uY!?&FDPG3_-(4SLhb*gy`8_OTzjDeM?(@LuM6ZJO(%}LEkmn&eyN$m; zXDg?*Ny^Db&VRMDDUyK*B9QVSCVZ` zb~BlyB0Y{2oCbPxRoEBET+)n3pSU$l#P#U=^0N;_5iJd@Z(j*&Y?)rA+M1y#5&P(e z$|CUCq<-_=UPPj)T->+J@!F_>+MwjZ3d6*pMvZ;E-k@-RB1~QW^M(aUlCyf!)Gd#( z7-EhzzO*X}cNvT?^zFl36tCG4L^w`{j$#-U=t;bFE(t_@I<$CNqgFP|GDk-J=}yk< zgm|X{&hFzAl~Hb{A1zjq>QA#Dei`*i;3d&7h?0I!{1_)TO&0q>f*E{U&b{bTHb1MKiX`{mC! zCkY{EgU|E+-tTC^np8tUX=WmJSxJz&iueqy=wWN>#8LdP>QH4#=83g^Z&fYvHw~U1Qhh_Ty1$( z-E9~h?aXzq?K8?VK7RE0(Ib&Zf{g4MR+gR?cFs18FP**Y++CcVteibKu6n_``PT-Q z%yS(q5FSv&uf*6MJQS-90+E0~ubDZB;;rR5@)EMyeNqx$UFF&zeM(9A)J|y;$=~sB z!YF8Y9|Xby1+(Kv=d8=y4~W`OvPHXp5w%l!Qox8CuKrsT|JMntg>!y&zJv1s2MgXE z{hJ^Fp{K7NyeHGRO3Xh#_&^CHVYKdD4+_%V2{;SCyd!wr#TcUWcr!O%MQpP$Ct7Ta zy?RLIHc$14f)f9@jzwA1En|Q1fG9lup9KGU9*n?PWNuMelE~m)ng7UB$~9s@%16~*JaVK*r6XvZh$PWAYsJ+{E*{w zj(ongeVHAk#lGXqHernsr33>`(+37~x z>Bjt0gSpe48}}OFE)d|;ryAVt?t*e)!A`IQaLakT=uS}TKUO0C*9li{2Z5gQ)3&?O zb^~Z=@Qk_(>4GIE!OD{W6jzA+pRc#q@d8ZbL56jbeK4Lttl2dz!GKxHY`o`$e|rKH zK4z~nrVXVX^@|dvt$isXgN(L((t@zn6{SF~J?J<ctD;oE$?s6 zhZKTaS~LRGQNh!RI;hM5J-d-K+@fhcpsoH;+InFf8Ib#w0AYjHY5leLPgoS0qz|-+ zE&(k*%|IOL@Qr~S!ZLlYAOEWEe-EFhfZxofC_6IVF$P56GADbG{~(^;BZesc3x5|! zE`3zAtU^(Ung$hHp2xfEnKObwp(NK){BLp{%73Fc_j5RB4|`SL<6iEoq@;B~Z2NmF z$#X(}Ad0z#fGCcFu4jVFL|-}NK_?8j@)9%@IP(573UDf;W$d$CRM#Z=kmBCMQ2?;w zza967dGIdX@PFNd2ej&>EWkbdm`77UQd>(~*UL#i*>kq`z44Ui;$*<$WRxkzhyOjW z{=*y)K$_5NP9~T~@^_|(sL0^|b@0E;aU<)DqwS7kR;*-J9^vjk6jVJD9KQEbT~Jx` zzVYyV&rxzKO=06vA*)est8p)@=^87;+5r8Ue+cuJHj9&<|HYguiaZpJUU~Hy=YN>< zg*|%tNi>uEXJ-A+tUgILpVEp_GdGLA68vw>u?;Us2`~5<4*wX<{wc}sQ`)z>uZ}%s z+x7p~`#;Q)b7ux_fH^PSng5G9Kly2&18l0~RzCVWN6BFTP>+`s|Lp(}=w~dU;`KVB zuE8^|AvCVRqpc)oLT4uY)?{r9 zet9X+qTTkNjLafHCJP;@tgbRFb zXAi~R$9kF$0=eD}g)@SVaN%LE^wO4xj}v7OR0PQzOsV^KwTFJM=B!h7NJaP;6yz9>MfX<;cSDjaDY1m!0urKWZIxhky z=)hkyVIRfcL2J=3nnz|~&(Sev5XnU{p{*z|#Rhay=>@poLOtJGH{K zDWLNSgQ!v{wWb0vL3^blU@Pr|LMg#Oi>p4Mlz^#DN(UZb`~8UpV*DBUSk1Oe0mMiE zY|ghHbfgR5akNv0b};5qhLCWyr+`Tw=23!)WIBMHLibgUgD#Zx$}c1e92~&5to9q& z%U_4&w=IL-e<;BL$=m=@h9;QziNYBHAB4tgM2f;`Lp3zQNi@Rw;pri23JQrDO8o0r zb@oLX3j7_{bwyT@S9K(SWhk)qr-zWpaBx5;fVLh$Z+UrBVnADJz#gENmp5U) zeXYlmH)as=AXGy^o+U5IJc1v{0eT4r5&TJ78VW^#UPMKQh61qeO#pQrX+Xb#!y+p> z3^Wz4-~#Fl9DsumE)j5KksXqkO?)|J`|CaKm+O!v1CSy#C*=Q-4kmew7Y8Pk!F}Kk z1VXN*hK${VJSBx!EV<;OK%8kj=E%-d(_m%E)iMB%KRW=tJ3nRE1ua=XvADqQl}iR3 zYCa?YFm%v9R{&79hy-F9sDmeH08>r@0|_m#UjXMG06kiZJ^(IoG=K$A*Lfv?r(68p zP4Gb=PFG;_{jP2aei!!zpyv%x5wJ_}D_rAB{hkug#>*3Y#lH>=TA}D~F+t;Rk%Q$* z`T+3Gl~e|x-Bl3)O(El|n4ORyg9mIA0CMjE!1EHc3^?-uWdJIjzqs0$fMRj6G#|DU1*FqW$#rTDeff&atbq6OjAz#aG}46daPeb9f34hjI{97=`Y z2>`Vx48Q|7L5zY=K*4lV-^G5(59__oe!ztlECB+&;)pjh&N$mgl)6XoDY1g65{MG6#wAT6l?RxXDkD7i%x9k7~(^K?*ycL8XC z`2g_=EP_*j%0$|8jw=;lqDDY7K+q3`UjYK-O6v-)tV|ez_a(2aK-bg#02opvo`9aR zOg(8;7|~y{b-l)64g`|r0A@h+kEas<()6$6I043Ahs0IU@`}G6e+4pK|0M_=x+3=ZE&irHP-%;DM4GMpUdDIN)aI0xRfMfR#0c#40$Hu2EWi z7lqF}W9NWQnMVpu8u$?vRRac~r$!F_q91`3o_~TG+%I%CrwCY1b0`zS%>t9;=S|s1 z3Bl9-NW{*^45I4R={<&?!Rb8|N`YN)Koa+X|DQUjoQ9ol!1_V}`Uq@j zk-!2J`qwAs;eVJ1U-5BD)t75;5H#$ z>&vH4c^~Bb{Nk$gge^lD1bX(dkL1(Gc1HeeYIe?i?BMpBAN)aGLsPFBegyMk8x6G^ zdMBSa}fSrss|kW zqR-^jf#n#u7(wU2BB&Gm(bjtXiI{}cQ<)dCuN0J2)HJmI^GqQ)IQUxkDUb#S|9xuk zlk~a@boJEWO0mZf9l+@5qn-uRjP00!7nb?%El!lX-$YQ7fa{{w?A+%*8^i?+69T~qm8i!^oPN^LU@#nW#p;U zOY>mqte6hD4@zF!QvEyx#%^szLZkQ!bh5`(s>`($Yn*gKoN)4z_+80%>p&;xt#+Ph zTpSSdw7bsT9#ojJspqkiq}9pAWlV40@j5bTzALL7MMF66mHrMu?)ee~bFn`vrxdf33z*sJr8XtDfzyeODZKP3BM1r*n@VTHj^|`xA zULFpYn*oMOpJ*Cq<|y{-viwuL`g}P=rhM=5<)!-j`?S}ruJnhAujw-zZ7=wYsMFCm zHZzBq@6l%|gYqEwHH|1AY zf~>gRjzq(ZR?hzTjaisY8(=Xn;N+X*`F(lwh=zP$tb}i>b%BqIr%#gZpsC6jjTpYy zJXqSB&wer$vpu<7-n8IO+3q%OtcoxE3a{~Ipp|Mzj!ui|G=plh9y={jD*d zyvbH3snpl4^wZv3E^)mtRMmse#c&_Zt>N6D@9vDK`OV%e?C*b?|A>%c-LB7nw1RJH zX>=SJTWm^Sn~$Df+`cG3(sxdtlDxcNl8W|?^LDWSd6-u9)vFrSNrb3v5U=Yrc~|WC zEqVW{d{YSrjdIrF=$q79Tj;;Oj}TgKj0=nIkwWL4T(nRhU^1;<~Oph*K&4?BaJ~&w`uDA*1ub1wHD= z;hKfW%m#Ln_BNB3%{)`d67*)dRG94Gq$G>Oy-RY?arfh6?Ur_i@UZ-#ovvw5KYt^U z{f+dddC3{tMXPNZQysz92%7jy*x~stVWgAP2>SgYH$UwLmew!Yn~^g~MDKPC0yhKf_7C;T8~p3R z>89JWBBtSx%pk!T(7k0d1!xL}q1J_5 z>QdBepVvj&-zQ%3qGRM(w;fe6^D8QWNBYzn^;Vj~5c%d6=bRBHw#mZW@Al)0@0k>lke9T zU~t%il&4m+Mj_1tL9XUhP)u>5`o4r%dzZ7sIap)A!FAzvGni;+_y?$Foa~IEA8Vn> z+z9hKtYLrQp4iH+_j>K3WXr|LWI_H(U%m>$1i>zB3iBtr<&gJYYkg;`dQI9fH(9in zgG`Ha-(E_K26eiA&fWwGe&LmvDY~xRSEO&cu$>XWec5`)&vcWD5A zSIi)rZ^!GU8?^J(2CaE!+APgGkN#GB$;mfc=(%<3Il2Bhtf<;_cm6cwZEs*#0npH7dw>iGaiP--gYzl8Euql7M3ubnGdjW7K=+%v*9d@LN`s5#}ss-h~?+SnoM% zI6LjZKg`l!Uz;nU$|km9e*+UlqF`XEQ{v_q_QY=B$KidqsIRuEd-F_&sG~sJXe{Q_ zZ`&&BHl9&pWuiYZw5MgLLe!Ga$+}B{^HC7<@g@wH2^R057^cW(EWRKznS3O1>v(0} zB>M|`Rk9+jE%RcJ^d!2l*skPHjd{dC$PeXkq*El?2m{+{dQ(%2Qe`6}NRgld z5$=&MZ(KUxt3g{urGLA9q5p&nR$F}wPRYd(F}!k{(o4%`I?=04NDA+__&iR zEmwmQri{-`FELV^;m$z_gxtXPa(LJQvj`^CGbkXy|Ds{<1hT!>J?j$bWjD@-sD)vg zY!v!meJMGUY-HZ#HWrWkdAh^%#hC6Lukd`Kk3@cC8{MkX@beo`)KDS{wS;)8hREPm;ewqNd4ZedT^ zBz|rZWEAM;9bEQ9JiBBJSrL7!j*3;Vl;H<=wHDQiV2}0sp$ck3sac-In#?Cm?Btl{ zKsc?DU^}(F!sPje2j1O_CW$`MyI~3hLM|AG-u+9_2F&?1ZdQ=kRFl}7Kf5ToCLQwI zgF%fYStReB_D97X5QqVnnECTl)_uX>dHXlw=p{5me678k-RX+vXhMqjBi?!a?)4!f ztPL_{Wj#35``wSn)88`bbbo*6CHrM8h!l@0;BAent93_)2JDEgAfkLwbzGf}LJqw# ze5tcI6Ch4ZpY^6IoA@YZG2h0-KR*gxHHvobwZQoIUfP87xd_Eb9}KmF`*M7GvdVJK z`HeL!Gq7>f#O}A&@3gYCEZCUn*oO8 z_O12p`L}Tc5M^zO{$<}aiFJMgSO99!q?%JH7BPS9 z#66=RcYI1t{si8}^^2*kr!Ve#+uFF@eL2LhjEGvZ95mk?cQ{J(@!nZIuV7%S=~UHS zX?r~3QSXfyM}ET96jz-MboWn9zu2<6RZ+g?Ar_{*9_2QKYoCanw`->qq7M16v`9SA znxh5XzP0T@|7*OmD1^F%?9NQ;GW))j;O&R}Xac2<>RnVt5$wWg@mrzJd&C#=r8XB5 zX&Xz4yJ>v}B;idb{hSFOWxCcUCF~MsGhE(tDDy_LKXbIoe=OQ<(~zMl__El0XE>kL zWRXvi$Isv$y3u7YeT?tkBA=E?$0yR!4_@1G|18hu3vcne0clyrUq^^FvD@8&o2Fj=UZlPw&ZQ^a zbHjgv(EDY9t>!nMR&m)onvsNjQ>D=rjTz0D(;pZ=@5@E6hO8j8zujfFT{+QSnhGj8 zY;rTuzRsq8NBLW^J8Z0#p(u?@gf?VEn)cZZ(1KhNSHMh|vu0tUimFpdc_ehNm@}pJDyxKKmf7!3Se{ z2KPWLvU0EZtj>pEP_3v<3ve3>e9;W& zf>E&D{p68;7+FjN*@67gMYgz$wENj+otDFNy=@koNk`dSlovYMzqTb9oeXuwACE^=5w~p69xin`HB8{a!auBSdF;%FB}WzQ)Zt}O<(?@$ zrx@gU4_=vw9~v$fgLDtR`N-`A7E;z#EG_ZMX+RrxHf2&4IV=R7?(TaJYM_M~a_*!0 z_0r7e_o;VlRAy}UK5ZU8fCcW9?u)7SDJe_1MHX!e+h~mkzOmx{jQn0him>NhWF+(oslNZS=u%^mpi`*T`IfdPsmNj z>}$U08g!p{kJdQX2RhS!)6H_3*wIfV$a3ei5m&`I`@I$P!pJ1sDPb#UJ84bxjcZm> znlnmVg@5H%TlL2-DwpY-JN-HrjVqyzAxH_nH69ikO;g4orGWkwd;}?D;NFr>0lA1h zp7NJ)dGYsNLULyFmiC+b!oyTJ*t1G)UY42t6Ktx1@3L;Xii2$-D>}pw=Na#!!I}8X zhPHEb=cnKkhM7F1Bf%oL??;uhdpb3falKGatD&$*c)rtDkT;vDVQc6ejj9Y65(r#3 zJc=Jv8PV=?B9*_xaMF@a;H*O;uvzPk;W^o(V1B+M+pR>LC2zszLHk85maFmw3Fz;m zhhWbCdGv7gQwBS^VdsY!j1C49Wol$-Y;108>uB%n>2996wol_)?<@Vy?)OZ)RKz)noG>(3%}VjnbEGj(54j(kV-a z-24a;bBlCo4b5p1o6Tz{9wTzmtfQOVZ?&5%H+0UwOK=!OnRk>0gW*sjT+W=HB;$9F#iAiI02YL$td+kD1jiX6ooW zx6O?gipJ&JC{YLOXCVp#=~iMx8jr*}q|&%lRZi*-Vx#-`1+z0b#{5V2;*J5kUVxH@XKnIAx0bT ztX`J%=G_;lhQ3C0#~6|Iy9g%~TLi~ir%(F)me1z0Pn(n(ZeNR&9!yYorF8*iuyD@RQ*R-FXJuyWY#EoK=@Y!0jzhdQQu1~#(^p%;f@ZUrp zQw|Thdy?|@JI*huanikhKJ0`DBD7#zto<5s8H9*SKucX{b~a>f=Oheo`a~c-fbX0+ zwy8{`vPxqQ3QXSkk&QUaswaWK4;b9mr|9MLPEh9R+DG!gHOiyXM;>^be)FNYk#AP7 z?Y2n=|K57*fyAqV$eT8O)`Y;j4Dvcdo!A{#?mnFH>T-tSKu#)Nt@KXmoo7fl1V-Oi z1_`#iRIHg?LyCkERbct21;*qe>0sQp(dVevC;-oq40=#Ru#uP_!MT zZRkydG7q8-A;|GGqe<2UstU17y(!LM+=+Z-KIQ|_oOu~;vHq0i9tv{Vi!wcGFr|?m zA9J!(4;C^`m#w;`p2p;(sTPFcebKVLTS{UPW7yPeAxquEH#{s=`QzTM(yKz;aa^z)W#dYy3Y<9EI15D%-r==a9M>ZYyuePh0+Ni_j!S%Pn zwG~v!7r`q|O}e;YDFNA{5^(#Bs%X$Bt`2b z;$cAgM*PWZUL!M~Y!rtbo(f@*;4@z3ER|gRQ(xCy??(AOzXGw@XM}b&v7dgaHn2xZ z7#QSNy$R&E-O`gfMHomlKs#Lp?F5UJdz9K(mo;rV(p-|L$l%jyR>bN@c*n?PA?rL6 zeTN(4wStj$?m1Nmd&ErEb+=`srRU19Jo|iFLBpwsfUv&_}7zX&wgq+>Ss^3XuT_f;up~E z4T8n1Mzij&bb5eqnjJfjmYEhy^#|>iN|?2Emo)n|?V!UXV!!NrbKah%2i+zGwH1-P zkf1x#8RlyFE#-Y6Abt56j*dBvT7_SdGhs`Lz#RH?Xrjbdq8aMvi8+|^E!WDHrkDmI zTH~JWV!NLPN%0N0q}r!hiI}eREu~KSW*WW?a`3tMFj7}|x0wuNStOXvO`^@B){3ET zSc@H$u-B{#=vAqA`eVDF_Qz~zmm1vnh@u?R($r9&hTS1jZ9)B$$>po=tp_TU%_6;P zCgiKl)&dzRm%*}MZ~p2O)?ja}Lmn)(ym?^^GOFm&uL~$Eb5!jq+fvg>*_z3T`(uYH zw0LslrXOy-B7B=lp59Xjsz~;BTMnPSz$d@Edn1?c(|8d^J-f0-TwYNQ>{l5;|6yrv zB;6q*1twDDF*;@{k6($URO+R#O%E$eG^A_z1^F>F{4pB3c|?q~`7Ds_bMkv7V0(3` zvr+oQd8Ie&h*dt=zB-T;A5Um?rk$ltU_Pwf`}Qrf`$5T83Zsnn)^EPgs>h#-kAI@| z-j9^S14ULe9wHtkd2434_BQ!>92qXyz!r~e^_*rNwhlJProE_I8J32}jca7I&WTB- z7RVLv$GCh+`x8ZSKFJN1<}C|Sk5~K_^Zw#uqXBupQz?e0xAXmdn&+J_(6Ki>N{@|# zPQ7zaJ1Y3Zf4BzLPaOwjNP~l>WBQ59!*TR~L1pNiZT_(C{hU;f+ zQZhykMYuMl>YjZIG@-kIpgqI>q~Dah2(-~jmXcNJu`|{FS@U9C1mpqrl1yh2EQkpn#Dfnf+f2xTvJEFf`$Ewo({mxiQmaHNx{UU)ilLQgC9nHYeaBYdDjHd zt!?f$F>V|Uad*q>^2PMd#X(e85cS?_neu1hW=is{Bo~G)6_=_n0@ez_GlpYwQ<1G* zd^bYtdhR55UxvsW1fNUO(`~Jp1xyWW_lLnD)BUJq*r!45C)=WfMf;6hZH^NRhJpF@ z&!Yxc>UmQ`N>#w~p{b-cchs837b5AJH-s@?=w49fF zG^w8aA_Yo`FtWu<#ioE4M|2%i+v)7&eRK-jkD7<4Lt-RdYMg>Rf7b_D%n*wBv6bnC z;P8nQG6;iY zMdwH$hTPVJBSS!KE&j6Q<;yj)#k#El!}WXTI-k)gTat6W?b}UA2W9Efuze5yfQyB1 z<4ptSE!#cA0lNk_xRj|n2S1KC_DyUJ`}4{@+dux$Sxs`*QqU#6VR`#@C`Z?g4Tc~F_g zh#AqX*44{B5!1YK$ol3RA!SwKtd3CA;jGx{#Bnax9@OcfKv+}axKGmKqc)8@1zQgOK&P1V9pqT_cNXdM8^C12Z}47 z7L5bY_2z44{LQ@!-#m-u&A^7s_H6oWSrfkR_&w&=E>;sago56DSv3~c?R?@!&`>Es zpnB>0N~P$_n+qE=i76Yjw#=Ecr=VnM$nqmMmjO`8u$KoT9hF4S!P(wG8Sfl9v455~ zJ!GLT=*?&NJjBboQM`9{R+CqDA7(>CVU}YJ6GEE2^YX{r&X68-`6+~dK6H2Tm@>7r znM4hVcw{AEbc|Ft6@`Le^h!k%?X>Y|=2vxrw=ywImP=*xPmj*Nt zk9M0b`zP1RE!GZs3@!N?xDy2-^tY3ZVuS-SZW-yVC`xN>5NLMeS!rai;q0wR34REY zT|4Rsh{#hs?8Wv;ou!we-(57ZEyF ze&X^)el+wS|E`ZQBfJEmm6oIQmNjxQDp&;vFpw$uWjH80Mb*+yF=Tx5-IIgWkvKx3~^s7N_vDh;9x#beOM!iO6+I!&`*% z7vkP-@c3gKImKl6_QYdcR5$yqTRl}ClC0a*o%Cm%kAGEB6$bp&Q*ILO0Jcz>rTx9K zd%5fQ((6lc@wjK=D*)nNkM(tZYcIik~DvojZ= zMd{;H7*9MhFy->j~Ad48xUKC>g zZsTFOHq1iq++hJm)y_9?^QVe@{! z-n%6F+Yc>29Z^wzWw2%@Fi z4(kQ0aiLDKbjse2j;<}voWKON*Tgz4$ctP_d`% z&*Z|T^;Y>Cy@mO2&2`%7O4u*-Sr*zWtsp0~`#D>ybGAwKLNh(gpq1n;ibgva^=Pql zOX3iAc%B`FfU!vYT!6h5k&1a<9*;6znb-~60?#eXYtu=`Gpv!fwS-6I=-f|?L&h*^ z^^2>BFa#~ahF5C$_ux$nN8FWC4KW$>O?nB#i^y}Yf+N$TJsKA_*9K>YL)|mWcP=F% zd4@t|f|nN=O}*&`OE&mjvTBWT5_Ry}XX3tJa^*gnzYTO9aH&R!(|pAL=T8#S|MScN z_|*u=#Di0X!_mRk+``<#+Qz~f_?Vg6+Bw=en3|awn;2VJ+nCtdm|0p|+Zq}fm-IJ= zSNqYY;%6~nvLM6}GMH28<~eui{ly=M!(tH@E0vszh5+93PUR-&$TQe((|U_V7B5x& zQ=3lF{ojj12i}w{tkNafcOgSZvDs5Bw(V~*hSF*i+k|Bfe-tM=aA>|x8O};eQ*BdV zjddUEPc}XJoTpd5$Up9BCN--nH<*m#F+{+#c#A30UV*n3yjM4qd);eC`H)y_^`YLc6L`bL%$B5T77Sq|DFRsrqYkkL!$gwf*l9p0^tDBzu#lairOkAb#{v-Q;5@Npt(sfK9m>mT?I>5uDikMxt+XEojnp zB?DvI*rA*E8tjtxC2C0)ql{HI`D9LC-5v{CPR3eJ(qwL`2VqYU-3NuXhu_%ryN7$` zU3<~>@?h-^+IqjrWV9bOS#~zH@m?%!f->Ojh{ON6kkF#`xXb~5-3zf8vLY@ z=jWqNwVvaC2l}xgnD>xr*i`r7MN9AI8vMlnA)9wD-P|-SMHlv_rizY|*SE2LM;mIZ zyqs@SDPcdf2S{xW^WTR0TgO|s)uf~Hk~yA^GN!X=s}TCt%b6`Li*l|{*oVed zwq^Z_)sw#*o0X@*FgCbhg@+A#L^&v6Sym9-&#UYDa?!uE{amyUPP}+&SEt!LJHHcN zTaYZtbgP%AHiJ6r+o{2{)2ST3Mf2kPjcW6OaEa6ndH!p~gpXM0+Wf%Ts@e`ihh&hNd&=9)#I zFi9`A%6#e*&V6(J>IlV>nkASCqfdGh;8=GiUD6D3Zc9_Cq)H9my0DDA6dCLE^9^9y z!tgF|Hc4v8BfD)?--eMM=+t-ZvqUb1lTP{VzBMb~@%LvSoLu0k*~{50&-_t?PG+O) zpVDcr=V|90O>5rKi(Q|JKAY5S8uG|jRTbUp{f0|AFidm7RqffBWktI^zB#WuJ$RVj zGyE(KjNyvH$jA$(WkJo?f&e3`tEFvziS=G6* z((}KLJuG=o#ooYnH#fO)TFPFCpVkvrzuh`L>O%JrSN^VpOR&cHPMlS2f1@wxB<2F2 zwK2-k-q~H~{60*7x%CZ;S$FM6JLgi-dX&qLds-E@aBD>u>ef8yIN^HekLYsnZ|8-A z`kgkV1SvmNEZSi&wm)-OAw-t;w;r|pIPiD0vl-0aywHgEs66%Ucgh#z=rCxd6R0Rl z_j_ANtg0!{d}J>ZkVl<&;ya@D;Vp6nt8tISkSRdFDu+Pzd|N39GimW>k0$?Kg?*Ph z^>JI74)&n`;m2d@eJS+P8pdYx&2Nit@R8bbxo@qej$?k4k5bvby?FJ}glG(tk9A2G z=|!-)o}#Yfi`T*H4>p1KC5Amo<&}>{oy5%MRKEKW3fcrnWwadWLAqB;#LrCKmV6yf zu>>o;TtCU`zW<5YnrzxeTvQZX#P7>)PMS88O`;F?7(CVs8;IBx;TSf@+RU;rwy-p! z8iOAh1EHEGCt_Y+Vn#N~E3H4J&2_365`P-Z-D?u`B-0^#7$hg(FRZV>8{~m<7XbNo z#(`EF%Q*k6Iz^{`uDDa2Nwh~DAeMnF+Zdgm)}Jh>HD1{q4MVj)bo-U|efRQ(vZiL5 zDJ&DbT;Fx-mgzuFcOQCmLt&h}WK^&CgN~FAtNJ+UHuqO|AEz*mIa zbTJJdd6%Rll`*wXz{NYq1-!kT@9jKGzAu$W6!ZLHJT!d2^dot}d8t2pyQ}gSOtXu| zLM$y-S{yUgaaXM49pWx-q@=&_qo=S=L@YsT{dUm&>L`*OJrzLD%-puOW!!o%EL)e( zZNRwbL-Fuq%LGRK?~N2$+qd_;v=a=vW*q&k_Juvkl}aGW9VztwYIK7|S;@yoNFVFS^&yz;-XCzs5ui#82x8|~~-iSW=)xqq~iGV%K?$#ly?NxB|KzLk%T z-?_N$gU|0k96HL@>Zi&f2QsOtV%XjS@j>g9qqt*c4W|BOwfB#j50#j|ZFMKRdNj+d zp>fCBF0dV?sz|gF(ND@no9MR3ICx!`fdaowhuJY&&_C#Jr#owo{NtyWS}OT+r|RNgdS5zG`Mxf7Q~)>2N3* zsl3x9yW5daZ!bXzw>F}ROQ+Y@ksFF>J3~z~SpFzKprSa7xNKE4h{j@|<$icejj?m$ zZQ!5N%j(9X(J=FQ5of0}T&;E`Qi;0J``p^)d-I+L0V9iWm|NQUM5@9sCoheum=3y@ zbt%*XGyIbo{&DSRr1Q!glq1?fzZ@m5@E<)}*r~QIKTV?_vE&!)ds63;Ra`01xG+mu zteWpNXZy84Z zb$0m3o>1AKeFKUjk8lFNTac5`QD$F=Z^n~4ah#U|U)YGHML#8o&7~O>>+gQLzo;oCh)(D=pJ>9bcOP-(DP#VQY4Fwr5y= zvmXxL99{$_&sGJ-WKT98)gRSVO2YpvUU0#za85W5_SI*jH&2lo!mOUZj`m(>`aTNP zYuRm?*AZ25T7LhqcAx01^N=rRU`edNqVG&#%`Kk5c(yhBBYuBtf*_X{D511+vAF-u zS9c2}27wVb9le)%gu;f;_GVN@2rc^3Z#Q}o&q-peJ~vyzjd;C-OsX0Z_~L_{V8fd2 zCt;AW_=eK?3H}Fx*kOhZl2g{asJ$@BusXOZiRa8ZAGl|g=+@)kube=ZrSDYo?TkML zK5=;Rc-=#Ie$S&PnIb2)Nx)fYcg{tl&7=4%$_cS;dH-D?+WHd?Y57mbP1s<@Y;Q!W zCY(j8Xr(f#=Vulv()ieiUhkliV!~%%m6fq{W;O$*Ez;VaK6&7 zBEgXkT9 z?45@dfq6UcUk+BytE)(&32dTt8Zv4RN|^4v)^mBtT|}Uk`pYD?(5{vtKs?YlkPi7f zXR^39S|q8NY@V$deRzC=%Boslo21Meu7)EEgGuipwO zLV_eeQGV-5g!fjdo{(&cwj6pb^lILGW!Ph{h~ohTX^k=(d%AXBer?@_d=1&$95=Lr z(Yq-5*=1g?6tLy{vk4mYouTA(A-J8xQpo;!p`_0>?vza?nX3C|8%0hM9)pF^Gpi{U z+|@1qEAM5N(WJ4^!gjN`%eXyij!i>ZPpP}NL4rm8pjS@My7w^6X_Li=C%%!Y5E((k zs{GyPT6jh`@0qu5b6|RQEEGChrtChds{=y!uyM9GO3J+E3%IFO9|~^~vaQ(6 z{W6A7D}Pfv_|bhilEVWeSo$KWs=}p9&+F`h33g$S9o=qWD{v4o%CiWbh(v|`;)hWg z`o7xN$`6oMJr!}1?sGE3ej0A$z4=*iZA-+Y@?BOTBTc09BtqIv_%fO+x%}m9tle2R z*eeka2ilVY`da=vbk_NzRD3aa^PoKR)AMb0Ule5TRF7NDPtM&T-r&AhnbUeN@evhi zFnt}#vGDH?j+1k@`q2~HV;(|y+)&}~oom@SxQx6;Kcml4YZh#mTBBW%!Edbq^T zU(fK6{Lw!~jg5(S8!k8-VEi!NEUDu?oeDgG?j8H+<~DLasD!cz%jI659hqDM#<>Z> z&EDl-T@s01N&_4$- zgjFJ&6vIYp=E8a2*l4Zu*se5kXE7)t-^qn0hc!#w4;@qAF-p^)6LK^fIQwo0jJviu z?$Wj+h$BIXF6>YzJ`wDQZ#cK1cOIXJOXF0dFn@VV!ToH}-bvvs5PP*xLf~l*)6OV* zU)rN3Vj|26-CPQh7_S>5QoQ`V{xQlaAR zlaknZKCPSj;QV#7;q4`Xf@cRkul)u_AzVc@a{`yvDf01HVT7RL#uve6YKOTekq6#B zXD2Q{4CXGKeUZs*68omR``>oU=fu4`MY75=oA--$_juAo4Hp{bqzRLBsaP1Lo!XeU zD>WZmmR2*I?^N|>-DeH0>Z@y7HzpmmXj8v?beF*UB;a>>yIDBsqU*)&F&(~j2{hW- zmm`)uoi3xkk7y{}_npqQjkcf1Ec4SyjZ*Il*12`iL3QK;)P4k zTcl;S1^F%9`6Iqp#r71@1+JMDJ=O(6e&2rxO zkz+SI=BKK27TqyK)cuDg4Rj@kB;KCY zUk3SNGSbwahw}MA4AH|4b9L}pssP8d8qh^a@PNm*-HaIb9x;k(!FL%PaPj+`CTyNQ zpx$9(v*d}^y}P@+!bxg{F>;m}yQ6ZuW5lkkIRg!(LzTI90k5Q)zIV;=3i6m&kUPGA zJrt!giK&%LQK7cZnkt*WUs%T(97P7|s}_7l&%zNxcWNavy0mMyaBw~`sww4JS#-p( z|HDm4G5|RT9t=3gNL91u13&sH7z_ZP9GB9dIT#z5D{CyfR3~PiXSG|TD3MQ0(EA>n z)fjfEztCI=3cBMMu)Yw`u!vlYt9Rj3eF<7E@t`L8tT^E}9ptI|xqL%3u<^nJdUjZ; z*My$37_}N+n96_!bT@i!^ACEuxcD9otkv(O+@l_q$Pg3ChaL++_HjgO%6Qge6FV7x zJC(g0<{dBoUja-Lv+Q*60919)pt^4T;XCSe(g1b<fnv8_ic~roHW?Gnh!l{uUPfe2Ok(oS5I$5o1nuF+^!@{(G>ek%eB2*$Az4H z)#zdIuF$A;U%Madoz<`2RS-u08HM}v4onNV3*^wK1hV2Uza4IW#Km2Gs_yFjrMEww zj|ZQpS^jLXO^Fknd6Uq3u&0uzgK%Em+;>HPOik&v<@T|yHSbQvjYy^%w-tkvDw`(0 z?en-nh(YA{&q=^yY1o+0?@|0svp?&BO;JJt1g(G`IFK;*M;u=Grp~!oyYKSE&pPwH zP3@2F-`ukKBK5_E{cjUTv)Ckky|a&hkNe$^=O0X02Er{v%Y8>}bjY}Cv^=(G>~;YC z9zB1VmDl^MyXWO~=#P-|@X>v&?jkY*1P1KDPzwZOg#6rPU-82FjtlZyul%^}y}jb> z&-vj=dtN#thmX_OJDy98$gZX3w{1WCdT%wtO{ybSyzl-wo8&j${Sk(Knc);`!`j{9E#CVP1EMCIIZvKn0SCMd<yPYZC zA9%iQ*2%Nxf$c zP2Z9F+BU4S2?@;;JtJsdlokL0+{ma#5w;q{o~)YzwBKCX?7g&qvo^l#q;rhn`hV6} zjCsdtvZim=*5YnX=n|6&RV_?>WZ2rj(ed+#PaA!#o!_wr1Ab!ehPA_LI=t6y2p4}Y zR>d{i?VN?*KqNa4)T~5`k{E3;{tonz`h8GqT}Gd#^St2O z@I61eGtm_BzX&v~^eC{xCSpK;=+(S@_Fpd7^^m>)l%0q4h?(t!{@5WWc zu6tWF?Fi+H)?Q}2sp04%vgCnE(Fyl#(+(vGcLmLFMdxDrZiKe7giKUk87Yul&Y=~e?h5n& zbICjJ4y>C?Uejf2zQj77)BHM(!I=8+ddzYB4QjW`J>%#T6%c9R{Gxjh#gy0AUVipE zy%A=9w!`kf{m3^_i@r>QX77}4CVK~Do&0qH47msck_|yx{P~^#@5@rzyIofD`+j_; z?QZ_0P>it1X9DdG@^L&k8Z58={c}6_ZNb|1M9@8-N>X9pa_BsWRj0aycE0p|Z=C&J z*V|VVxEg%izwaMj=+BuTcE(5m#HnmMvG z?|-AuHRk3uuXCD~Ki}!^F1NKiY0UmLvh?E`HrcR0u#XKVB6HB3*sbpot_4l~z|W8D zH6*A7z-#Kbc39Hhe=nRj{<|7oo5l(U0Hm?R0tK%<|3(_q-hcl1_-8+HymfW;)(^eo z>giJZ`L8}4vY)^8LrZDILw7vQ8aJQVAKS8q#!i|pJZ8Zwe_Zx@ zeRF9&eqV9qCNDpTxwQBV*Do)fUGMtkbq|*xq+4#>@2&gshr-$a;q=(MJ5#CE9T*FX zwjjt23X!4JcEMHlLugiHahAA-k6#sAJw0;t;7sQ{t~KLixi&ty9PT|h_=W?N#fo(rZg(F_%-di1bX%U)#S3@O?|T2h-fP<{es`KP zo<5d6A6CCC=I6C$cTaM4tGDyVn%WtyQBg#oWd1+doh1Kn*KYiMNg?rK(;yF==k;F8 zN?7CF*HGlkKe}Y&^p`4U>xgP>Rn<@Zz0_2d-zYvb0KBO@9^i(RrCbvHSLZGN^KGg5 zwJiVdm)}2G*H8a<^|zLn-+leqdH3c~sh--`wnx6(k0)*0ajId)`pz4+YoxLmYEua< zLu34&(~vGmshq)5RUb7b=cN`KTz9AG1G^D7RER@3zWz4ONC{H187e>a*r9>|eA&v0 zK-%9oeAVCSg4_K(?@+d9^&b>F*Y$5o{(QS_KF4eQ;e1Rt7xUZQRrWvc-YK30Y`Us>phOM5j_uJZRpGx}#%_$uF8QD9zc3OBwn?LHQgs+rI3S zgA@AY7X!?}P#@jxcy;keO?C~7_bWY}jnw({?$ozaX?*GUeX-og6Szw(Q+pJwp40Cp!UPh|YsoZ^G4HC`KIYlC|1b52m6+B!qpNnMIp;vqCh_CH71hBT5d!_0vOVG|(ZVGm zy(;P(?m${4SQ`H|wRaoAzT6D6CkNID0PM-M0v*Gg02+|(=P`$`XQz7KzI#IXdGk^8 zHdcLTI4(Hulqh#2(^F5V<=w)lAlXicpL!C&GbGd7ey~7 zSHAkc|KQI$-RzdX{4J&59p7Gm`s+7^{*QdubAS7^`}K#8Y4zc5>8M0RSZ4 zV6p0UE_Hs-$M62Xc9q{>Ue@bF@2?N}4aL#t`|npfA4Ybs2fF!p{jf~=TgAec?7->r zV|wAXPKcXDS}{|j%&4|{lAK-K@B+aj8o31ZU*oyP%c&CPkW)7 zA2@EsCZ4qt+@X};WMFgW<4@*b>9;B`+dlrp?$f^!yKj$v_7D5S?)28-$9|#hew^#; zxGO$-Vy)*}Z3@AlcqEg?-=DKLQk;Rs`S8u7)jw-{YJLd754Z}Wy0=>JYmL9Cf@xJappx-=i#uuV2g9c5GnSjo0#BG>`y`Sm zY^=du28Rzi#4*1q0`#%;RwcQHEXw4dfBgUZ@cNb+t8sYMm{w(iy%LbMDk!rTJ)myk`q47pM!4u4D*12dG z-8rJi$7Q4lS9P;S_XJO8XHx(KCtLsk00000SsMTV1^@s6KCfM`eSs~zyD47@oN3q<4+ptGyDAd;Z4V! zI_0YuE^SsK4X#hY5r;afKi7Ax#}v;#i+OHoSd*}9ZgqBrG0Tw6#rGCk?)=S?;7_ke z89LH{osiu&0fec1qQEG#i$wYN|GQgS{Rw;V=ItN8rM+Ev{q^ql=P19<@1M}QemiwK zbFK7UkIuxk!Fcc#$B@9gti|9VdvBk$(6=yS*mJRWDiu&GLiA}g>zfj&5( zduj%*tTw)hAlrs&hnhjW@9WUH2!yQ!L~h;Yv!;#t#v~2jb#0{bp-~B)K{_p?7k%672>3RB&(M0_68y+l1^ECBh$;cB&^3%ZV$1Ky6iPO}IHRiGRrTOTj zKAldcK}C=_wlgw}j*N`G`#X2+xw&f(bx+5)ZalrZdh5p3G-=!2*l_3Op0S->iBTgl z>Yh%6I!dRfC;Lv*OefRdF+C(Hmwjcaiw_l_=G^ZwPxcMM=Y3;&r!93b97|5`pQAZ3 zFoVsp5nc>U%g(Ylm9$Pm85$po>oAhD?)mB>hWM7Oj9bNK?Sv56yWx!F=_#@IM;Z#+ z&_W4zeLc|ASInrgbW>)FMq%WJAxgIEmGY3MlNg1>m~qP?JZLv0Fzv6`FC`;7xBU_7 zWt#bE91qeP@eK})wrpRGIT!+)-N37Jd?&^wd!`q*o6>lE;(_ZdgSA$L&QTH;Mov;J z_}-GNMtAvm?b!}|nzMWC!r3FG#+nXQ17^ww`SDb_)jI2!_&LBv|ABlkUtDtDSDw9k z92Ujq6~4P4Nnz&g0hyQasF{lAVZAkM-KsI9;c1i7JYw8#^t^QVdlvt>y&+bY;bXfZ zNSC{<|79DhEVX_AyLT~H2N8epM(vaMsdiQ^IHq=%K8I8`gL_}~Ww5gfw79k`=y+~< zFhT2wPXTQcWAnSEnkb2W{;w|A>Hg?*HHPI)v+d9=-VkH^O4HhB3L^+yY%7==DVvpV zc@u8Lkyhgq2BKOo0F2EtW6EUAr1UhsfB21_@YwB6=dpABj*|X;ly|*PXL{@1gkT-W462lA$W=gF{WS+zYQB$uESB=$X#bmU+Gx|YsOeGc-PEwQmJ_?z zCmw=^%#}B+-hS!**S2`$#`|62$+^$9FD7{Boq9UnPRHXC(L5gG z;MAY4-nV`{xswAm>8O?i!!L)|qx%;km&VY3%Y|5QU+ETdnCFgN?{tURk z(hnvV0o1)R1BbOg#@q9c@>c&U>vjyA_6aAihkwj){&llfZiL@H6H{~eE~rB;`OUvI-{z2A#`nApc7MKYNTT>HxsZzYeQyc|Z|vxJZ2)w=f(VSH z7dv&A?%Nk!br>nWKC7$j)-KnJsXkv%)f^`?ka6jj`EZ=Du^&voY)e-Ju|gu}C08wS ze|+i!zhX_y^vY@tzjwMxFZG59|E|Y3>ba!t=zY8&jv*K&OUVWAaV7Cply@mi#$3vUn){ozXJL#qlY`$mINrJu30QAzl4=ib5dBl72cap69h4si1A5I~+PbUD R=`&YyrTN9q$&o|84*)v}6aWAK literal 0 HcmV?d00001 diff --git a/Resources/Audio/Weapons/licenses.txt b/Resources/Audio/Weapons/licenses.txt index 4dbd19401a..2485a85565 100644 --- a/Resources/Audio/Weapons/licenses.txt +++ b/Resources/Audio/Weapons/licenses.txt @@ -14,10 +14,12 @@ block_metal1.ogg taken from https://github.com/Citadel-Station-13/Citadel-Statio pierce.ogg taken from: https://github.com/tgstation/tgstation/commit/106cd26fc00851a51dd362f3131120318d848a53 +rubberhammer.ogg taken from https://freesound.org/people/ScreamStudio/sounds/392617/ under CC0 1.0 + - files: ["weoweo.ogg"] license: "SONNISS #GAMEAUDIOGDC BUNDLE LICENSING" copyright: "Taken from Sonniss.com - GDC 2023 - Systematic Sound - TonalElements Obscurum - Dark Drones" - files: ["soup.ogg"] license: "SONNISS #GAMEAUDIOGDC BUNDLE LICENSING" - copyright: "Taken from Sonniss.com - GDC 2023 - 344 AUdio - Epic Impacts Vol. 1" \ No newline at end of file + copyright: "Taken from Sonniss.com - GDC 2023 - 344 AUdio - Epic Impacts Vol. 1" diff --git a/Resources/Audio/Weapons/rubberhammer.ogg b/Resources/Audio/Weapons/rubberhammer.ogg new file mode 100644 index 0000000000000000000000000000000000000000..bf4d06346944c11587a0e7111017c2d1a26b0dfd GIT binary patch literal 17377 zcmb`ubyOWq(=R$mf(8i$*8~Ct2p${)3GN;?7Tn#P;O_1LHUxLq1P|^GA-IPST=p5r z^Ss}C&%NuMf9|YdR(Dr-Rd-eWs(a5Aa>m9=06g%|m4yGd;4x1A9*zvo$=XiO)c(E+ z?tRH$3UeXCL!kjq?tbKduKSU2V9k}hd;h?SG6owb#vp_K#Oy%e}de|gXgzf*++kiixf zX^L*2(P$L_zyg4eRCE||MiO+;_|LSi$?@X%rEcbs;}&O01@z^ zMTyMalrS6SHYT8nw9Do;mE|g+Knhj(!Hx3m^rgO4eoel))i513@)Pw(0H~q2;*G zDOLTl*2h{N_QTv;>Hj=X9@aqt&PDh!p#hdK@;&=ty8L82kk#L1Q2;*RG6As|T!~8D zfl890F)F#=3<@|LV{9Ty$}%e8<*23RWH{sGIOF80o*baj;HlmapfMYubsnHg5cto1 z;kj~te?Kgp0uIQ2!JW89m-Cz`=O=d#f`4EMJYaCI5(<>q=X9~T68T1EWu|F$CdGA@ z162$IRp<|0K?T01MQ=xxLu20jDN(;xqHo~oR zj2=Q=u%GF8DpKLx2XL(VXzJ#dMqIEI5}!s>+o=4P-#>0qsGUCim3tK&5i*}<-iV?F zmM#s_4~J0h+x~a=c?;T2cb1?h!Fxl=qT>*%S|2Et&su66`vH!Y9 zj!6`rQiJyxE29z{zlySonvsfYz+z%8cjAOoR@8;Q#Je|3MA_g2w*=lks}t zEWPP|vcf2T4g4>1Y;k*INcv-_q^hW7#uHm8F2RUMPRNxIF zN5qcmzmU_xLh=qoQx${E$=@~dkAVtx5W)X%0{}orG`iG798pkYoKobNQe;$7=Knt< z2Bc20%S^C?icJ6jLIBwA2DOeAo0|y1YE%2pP0Mkv&0>Vxwd@W}7K*g{m7*ufONHX?>vLL6}E3$6o`71&|LLxT}6dZx{IX+g=9GW)`5*$V)b|~T% z6-^7{Cn2=dwIG2yVH#r2l0U77{=lj1hb`wcHumXioLn2CRiIgP41)510f?Mfe zZ7qR4IO1MLEdj`?m%yA6+?Nq_FB_1S^fvOmw)uj@A?S@1ePEI!telrf4trx z_Z9_c1OI5naPBP%SS3F;dH@&o%pq0@SM5B;d2laMe_NYG|Tf7zLB@4lRVU<0Kl3?7M2HSd4LAjv8!Yg|qN|N{L0^1bj!K9o zh|HRN3qZ<#a9LbXQ|Nl=EP?6vSggn~_UOV$ly;ya=p@VG%gQ)H$4 z43$@WNu8$*0gpfXpnCT^glX9gsDWrCaQDi?1rIfW@t_)dNZv_;TGkH-eHv`ridO`e zoNNz1NWlF9JokXwBheoO)ny+E>H=)*y(es?>;K(NPypbS4Y>JMC>YrL#$U%0BXq|hiFbKQ*DyTHcjQi^6_;_Jt zaGL-%7XT_88m|m_1qC~Us#5){SF=(8_=SiBWWy7yigD2qp)owH5f118u`KkMQvd#B zYD}KpZ@kp@Zv30@3y0TaprV_g-=DDfg~+Z~T9%=HOiJs|36c zRCAWVzg2zo`-z*gOhX>1=7Y8WRLvzp#F>|JY{i4no`%>DKLRM&xd0#1*$SR-5@R1e zex{^{^Wg&kak__tC5WzjrQciQ-*YBQ{(nmU)Amr>{D&}jZ=7)MO_KYu>Graq`+q_J z-ugs5Ps0gEe0IM^WYE;%x)1IjEtwntpx^{mB51nb(|eBw0~9qB^nAv;L2f#_1aK*g zPEWxq=%gi;VB|6{ti{uhAO)jYC}R(i{Q;;Na6O=Zf@uDDj_$q-xKK@S7)ThZ z-MUu@SSoESxaTshX@A6j&!u)V-5pdzG9MT4mU@<}Q*vB=)x_pO4~qaGN(Zh0;~z^U z{DtXX!@U9#|KJk$RfBu{I{YOF_x%^afAk*M4+ME(Iw&{->A~of{_>Ll5}r!ZLgW8s z1--}RKV6>QJC-8PUpM)CCi%ppeXs^xA&~> z`GL+$`7Z$!^dS6!peT$?{T~7pWB|_UF98(vZ|R;30E|A^6FUJEBuW|6l$86ajo0Ku7A>MjU5^35jUjBy$)Q+9Gq1ECqML zVSXe^k6(?oAIyh1wwC=cd5~Akib2OVKjJ^n^s{0CJ$dx&eHWny0`n2>a}s|Ho(nQ` zpfAD(c&o`A8_hFNF&<1T*Map3j4!A_Fu0+Gg8|6@uTAtq|3dx0zzqIKc*zAGz(0H~ z8yqi+_?a*JI|ma!YZN;zhB8T!B@Ra@YEnKd;bV}hjUT?x!-fX_%E1Z-HDVu$6+f+a z(5NiQZC1GzPwAUplP=YdE+h*vXEf-erD3VVW%b9cnTPCv;asn{(jlBhqOdzratl1a z1HJ%&fX#}7jQjS}Cv<@8t#~v%fQp7r+9~q(?Q6>1j%*ugE}D!t03Z}Rh!qmtO~LY+ zi1t-Jf=~COKo6jAbXL5%!RIxC=4iJTk}$F`mhT6Ww{R$2T&saJ%fI}I)3cS7ckkug z|E~T4YGDp|o|BTYw*Bh@K*1)Yq+{V0l28D{F?dk`7hn)n^$9jH+T`Nl6L>59UQ}FC zT2@|B`9JRze0+Q!`o0C9K0bfn8oYh_&;;DSHMs9so&^;o(b3lXXk%>ygB9wTS(=%; zdwThJf$tIM!9VK3E?lIa2B@afDvAt)n{I6-2TVAa_=V~aM@9lBKG&%>eHvM-rFOeB zntZiUA?E#gN6lzXZPhX7H@TEJ^_;JFE4xj8&X|{sDtnU>hD=|_os?syT^Oap3_ii##uh{IF|-(OU9dhJJ)BWQG+< z@Jr4PX}TQ4%k@=$q!^ilX0qx(%#>(%&zmjis~Ow%S*t$h()%`Jf6Pcl1NgdqZ4Dcv zUsbQ0oc~NOMoX*JQq&~l*J9LF5~xLzQHo|y)NEHmGycdxet;gdI**{UioE&x^@(>! z?5p94UTClOeJ>JrvV z+pl+o*XO>qG@oqX^V&M{*S2SD&5wwkX?#Xmy|pyFV0_mA2S4{ddCx9#wuRK|9r+W4 z;Jc0r@5}G4hm8r)zAeQRKjA+vKYZWvBkQqb;?op-d;EUP?pN^+!_y*N*iR+T-uNKQ z%e|pJX!C8Y;ZA_t&AHVAn`VKW+bn8SvsY^yYp2teVPQ?;F)`7~+E=+80TfvGODXlt zn|D{j2HFdvZMyx{5+Xh``O@7vzSnUz@l5 zTfDnmS;J^2%je|UPHNsaJ&8+-PGhbSdY8^ek$2UNTw3JLd$!zVyy~VAWgK^VjlGP5 z)O-i%tvpqw!4;Z4_HUkLqvdD_;=JBBeTReTnxn1OT_ln*eYSvf*|Z#@i4`j&16cIG zTocp#ty9KPakWO;)LOwqp8xF9Tw<*;I@7&m_;x@?A2uca$<=DCqRqC)TYXj1EKuBb?un#@1+BN%A-DGQK0W7Lv9z7>F5^|m z(owZ?E-n#l+#4ZJohd0YzHGWYacL!As9sJe3V1V+d*aEjv**z~*!=DHPZz@mS)83!C_a)ux6*zNXNyB1-yx$WBSx7wvFCS)ciXpoT;TkRS|1?d0z8SSBs&;OZ9d2 zy~GffjFZ!4L$@LPjNz05b)^@>Du){7jNt=l=6yJdJiJzPOJ3E)Crt;l`5uGyY^-6? z5&5P)w}wMd|6)FqK(V5UHw&7^^qq{{T%k+# zZ+#`Q__yDrs>Ur3H=ETfVo#<`_k64@6osUgrJuE&EG=n!@{R46!ANs zP>4f*7~S4bDkX>%>=Qo=XFrj`>mnDvZCf^)egDd$q1Gd(%<$02k%6P+sF2+ z=&nCby$mE=nqBZrHA-ZVBEHj9(8^}0_CB8<7GmpMLKHMGP7FA}Gm9)riV#V`H+-UK zRWNbq8AFzJd9hCYi5o^pmAtl|?pd?QKJGEirL!N=*v5WcU)`R4`m3uut@Mb$v#CWz zxDVTke9VXThBx;6oB4TFn@>rFl;e}0Nx2}f)Ex^o5B6DCci_)(Q5Iui-dw-rSPYuGR+@TO z(W4mGgT?huXC4nWuFY&D)A8BJ3jSL#4rQ4`Ki0sQJKRtvNyS9(>@)-=dgAHo^g^w1 z4y9$?$rii(VS*J<()#Ln?3pZ5Ibla<%S4-ai-;ppxVr(4m-Inr@E!vGau)Y8(o#nf z-Xw7dgmFPhWM`;J@6K`{L|&Eivc*-+)A(}LIGf@%iRQ^nHPK!EhE3X?;Vu5AXRKH> zf$fs4;A=rknN!$n&rb&*PCGSnNxK5*xDJQXX|_Eva0{H(POr=lDY&YkD(Fo}7z@ zW*8REp;~lB=$FKab4YHpmS?4EY z?J8hcJYW_J_S=@fl`~IVpQ$;;FFss%L#oVa$XH9N7j$l= z$S^sDd9zo;{+Lv0UC4lY*v$|kY4DRU3U;L6c0+7IRvE#nEs=>N(pA?+uSS)OWo_27 zB+QnwmfNMZ-=k|5BU&hOwST!rH=>uw_VEc44-?Rp(5Ftk|=WXfX7K zLnV1bA2DyK#SNj74zEsPyaQ;<8Ehww$+|+bgdUWWr4H1%&n#Vgqida6)m~&>4_6w< z%G&uNT9(FPw{4Lg|A`)Fm(1|)`S66Q4Oc1V`x;cjqYIP1aw)jxT-C}N_gbWOu3gC+ zdj6WrJUMGA>1fKw-BOPnZRIQ?rB@H9>{{dr`sVvD0pG8k6KVgLUibm| zMuxK%0>mk5?A<{D(TF*})%?S)AkT}c1q?%O0rdj!+jowI)?`j-*M}oZ8vLB1PGxBJ zyycoDalT*0&wuWQ#k|-gNXNGy`p}Xa#Ie|{bKCB?qO=nAMcT|@q5U!k!+TTk)X$sK zQ1Yo@zVIFw8Ii`Cqn5?0Ir$6gay%`})H#h_lGp>K(Nvhb3q$_pbx(j`AM;b*l$PKf zDWqHLDwWKOcg|8-g4$ZQ4tw6$Cm)o=V0K=ul5+bgnGLiTiH3zTYdhB7@jACFG?!j5 z*K?dy)y~P0ysMOVoVlKVF08pOu3jvcGweA2;P5`os&IRwY?;x$O}=uh3R`8Hv0f_G zgsSOo(5z+b`LDp1sEVkRxU=}qy>AbG%y~Dw)+ky}l*wS^uuvaujBkrxCq*!QEvun|va#SQL6LW{`hsb)$~AtyY5-V>RYdZfVN$UC5vM z7iH<@7R4InDN+PJ?J<1y@Yrk#ya#65v_=`HBzuVhUrJqOVu6E5s`mqyg(gKN2K`X< z-i`pvgXFD+P*IOE=DO*#FzS@z@=LXKyRQqbxz!g^VT|+NzYgMI553A}vJQI{o)=Jb zEjOvyi9w`%dcbG;dX@>1(;9{K+2i_=88+C*wKY{-zst>6euD!7LJp6~OAc0oP!$`L zvzYoz_6%GW4i07{9DTk8{=ux;+KTL$(?FXVxA~qfsqH@s7f?8L;Foq)GI?U3VHuaX zUA}uKYWh@JHFHL4-p??}Z7icF!&O@S+y!z*IV5QK!#jlCf2HSfOTHe_wYp;iUXCHtQ@qt6zLph=NVbHvwah zcyn9*q^C&(8(YwmL%qEHooxZq#5ajc+JmGM_R5#!4NM|5XnsFzgBLab=w}5SRd9Rb zdcp37W-LQJBPUbEUXV4ylgfJ($-OJZD8Tgiwpr)|FI*VnK`=yLNhhvCT8Pv88(Q;9J@s1}*Xr%h&Z7+@gkqX?6R@w}P-LHKRq% zMwoxWslcdtk8|r8l>@eeCi%k;b z*WX&x>fpFJWc%&pCpkXf&FmEA>@T83iWOxegEX&n31?Lf%g@uB;YU3kjJo5caK z_wZNedVf3^4;4N|Br-~#N`*9g;lQBi(mXr?fu$0wW{s^O99M`Y{h{&`GTZbrE#cVc zC(o_JAHUEDyrK2br!7oPiXrD@qz#-oXJ#2gp32zCKlP|jC+-@sQrbxQVR)>I{U*jE z=JJ*G<&Uo%-9yt84J$8iFwWdmujkMn0lv#koxTZtgH8S7hp zX8*aQ`vhxUHLq&hAEf?AxV;h9c*+j3p5D6unaX3Bj_a?&_5kbB*?obb2I=maR=| z-<+A5i}CjMwp;SBoa<94XXswkaM#=>4%0P^u=(1A-wwB`GcodXQXmG$(U+au=KU2P zv8|$4p8So#;B-&HkNoLF_06?j8;|!sbedtYRWLQ)yB) zr@w#fnYPx8911(=Ijo6nT4kz<6%7WL8Xz7d|17J#W*!V0BTntvNlG&nrF*9FUPZ0@ zPG*R02l3nd#LH!O`(y3zOi^oH#j~>%dhfK~X#JC`@Rt66-a6c8F}zGG`AKGBWo2V& z>0l0nMQQ7P)Y8$=GjZ^Q!HQroVHhlTebphytm^BX5>v!z2cSz9_WJ13jXCPsZqcqF zMil!NgQAkzVg6xf14jn>r*ZTvIhjlLX!Og+m-}poYHhHHjK0pXL47(~W7E7q@9y%$ zB&G;^lB!LEq@As~z)jxo2`!nj#o6&u3S@$h!j_W#gACdtEJEa^cktbQ)%@cgN2jW1`jUpqfAuEOk&rOfaHfA5C~H zMe*h}GaeKNos2q~rpHtbm$IpskqH+4W{wuqm6R*&mFBgSVG`jV6qi=KQ@)I`RQD`C{%17|`-Igg#)_L) zLukl+OvsAGo~Ms=KzPELLDfwmLz}LMy?w>DWQ)6iBX*&E&Ge|=+_e`&(1Fn!$>VG2 zDTFz2O))tYA)SBC)tIE=m^*f4w`qwdI)`rq3v(jUtSqd>>~|uDYjT#ka}|{90#II+MH&hrrlVtYGBx`?mc9{&;il3aa#BF+;6d#$yO|B7_ zo?w(T^1;7P9JiMKxZ6u;j1Ns7X%ytO)v{~WIH?GA3OJu|n31#M@We^F^JL^Kca{7- zQ5}~*dwY!dS$N&t_5y0uO5kNR;Oas%64~$mc?Er!LyhprgC6rI^#%bZ1x<5I>5bYV zu^zNEVBtMndac8AQPYT3l2~-{RT;U3++Lu{Rd;jkxb0lP^QTqRnV`VD zR%V)p&i=BeN7be!A-8+eI8W+Jx!LbBefnLl)5W*uznC&Sc1v)_+8@if*y%t9etf=3 zyNi1{YW6)`!n0|(^(1?@T5$O{DXHCSAoh*@6J`A;_&Fq%MmOF7(5$CXbpzvfU4;sS zkMJFL-tg@@+GsnIhel-$r3^ch-+b;3{Y;G6e8TtZ;*#54+nWEgi>pJT^GGr7d2099 zow~LzJRYqt&0gaLmYQkRnvp;spi%A1>3i%kgV_`J#%?%F=}iX-Tnwhx6fM_uL_?ENGn0#A4C zU0`8>9U=6{l3S5PSD>BLu5!8Qe4aIu6t>Yzp@cd{^#KN9Wrr?n?5tT%oD#7eoL0on zKiO0lWVxsi3#nV<_PI{MoR4N%xa~^C_h@6+8 zI4OU-$J$s`YqbkMM1kMn1ugk-H=eR$=s;+_-T>NN#=w(684-zm@-Gb$Y?q}yj6aO# z6y`L~U@ciD3vwut+=lBk&esVGOin%csyOd1vxBb+3KOsJm5aY8Rrh*bv=)eN#Oo+e zY#epGnSKS)URdxOKzQ9Zf=3K@lQ~cCvX(IDA9yDjm;bKx^URsN~x`Ls7GCebs!ADHWX`qWrLiWOSG>|wi5|{Jf$#2H4E{DBm zy~1(9b7MmBhexqfZQ+X$2W51HV57Ro`o>;8;+lT*#SXQUtB$s{j0y2gkb9aDHjlpTa1x1gZ^wxooYlO9 z%yLx?Z#{WLpdc)Yc+P>|c=)**-4u4Gn0+(Mt5kL|B%MOt_ReYM#zjIC-r_4_eoo#E z*1<<7d@@z<^dl1QzS4-+9yv7*j-&0g1UF+c$JqAa;q$0Bbs?3;$LS$;JqUz(p4-Gx zzcwt=M>)5IHlHBB20M>E{T;mofr_$588-&E$(-jdn2-cMWrub%by@`rq?Em zTH2nAb*pvMaKHYbDC@KkmSm-)!)`~Y>{d$pVHy2I*3FOiwMm73Sor$9<s8o7!J9NMg-aXLT>Fnl!@)#uUEE zUi6p^$kYhd?|pH;GvyTvQ3;jIv5)MTNd;3bndF^_Q|k12g|6y> zn+^vOcHdClsfd%`6B%2dJz1=FY}UH>_=|6y%tKi`Atcn=`4?Q`u`+3#8kgI4T1EMf z%I-Ms$OG;B$rpZ$8RpC+(>}TLA3KJP-k8)PC}C9NwSRZaMI4CHoSpe`@EkyI_0TjW zEs3yaN7|la^7wsv(W1ThI>a@ZbnAARJ(?^V9=#p z^v)E|E;-eBQFoJ?Uasgo$b9GR;@M{|Qif+cO+J=#+B#`hZQL0;3v-*c8!rLn%Fs_w zl9IYBOg{Q3kV)c3ZkMaAd-v;yHCMe`JCvAi;XQG)_gZjr9_25GxapN?A1MEdrE^x_ zM#&?)`sjOSKL(TjM$(VV8D8!Z=Kg$zvCHySaK4zgD6L}3o5%3AEjKxP+CXwj*i8H4 z-PzbBsVD^!Nugu_;^Dp?`sfJ)u5KhWB>4MkrC84C>$J@7Ck1$|5kTnX8e?3gU9hGgct;4t?V~V*X zTI7;^S)`r++wr(5e9teVNE6L|1j#XOhvG>PV-qehL_+8hOHzzi`jYFd02&d^_y)$_ ztAYj7CXaF@+jVw3N}vM?g4xN;s(Eqfo<%beXWIXHQSDERiIW#5c&3adc_Hw=JOt_M zB2QjK0RTAXPMav5A8YG)tv&KFqrej1kjx_S93j8n2Xh(qLk|w{S^#Dlxs^)JUH(Ua z_+ysHu4Z>nb9jKlo#1u)O8HfkKz%A)w&lW-*STqb=^4BYTul^NmbJ%KBT+{}_Yi+r z2xl*Nm~C}wfq$$f+WYv2ox3m890mNUHl{ym>NZQ|(VPRgJ)#KOKG?WLGjf|GMb?kp z8}{UzAqk{(cd=h&fkQZTSYDex&r)@u?kmsISXHC#X5N@)%~v|%vE#Zf0CO>}dLX)I z`*v699HmG(rfwNHKB>iTu)JLTin|GIX6%@Fexi`!Q*Jd;E9jp}OkIVN@a z2Pf}g&BgPU%M!%eCYOo*!%LGWJd3CqitMcHG3Wv z4iR`R^L282>%?JSMyruv5iR6G)GD25{8q^^-Vq@9VGU-O$fJWFIpv>(Z5&*>w~SP) z_@!(dZEe^rdmwGiRedn_Tv!T1ld?(^^I8r(l`l0?6=4tVAN`0Z^E`mDukY&X2U7B^ zg?%GP9OkA-C8;F|li_8_k(&^)D3}1-L8Lr=0xf8J zukViyG|_FzmCg^ITx`?@0eor+ajVOH6%oR+s+ zjs}nNo~_Hz&)gZvH)AmG$3HUwpz`+mF7t#O9C`PPxGkZ}CJ4r!|8nQ<6aHjHU$JZ{ zHd|_Yd6okMOyR|YJnDBS*?Y;jT0A?@Amt#7RfJuDq z#bsJBmC0hVa3K@S-vLO4Lb1hJL2XIE2aVrKf$3iWKq5@f=u^S}sY!4^M(vM7F8zUU z;P>??GUpp;s|}s|`d1Y}1i*SGmu}RJoXum8B%-@NfO>X?0RiYPvA8QTwvkxzHh`$M zpJ=yz_i0KO*^HW;%D;~D{_N*{(D!SBcH?5+e`d(IQgl?T=3HjWtzF+wCbXq%_G0_? z^5dF?!2p;5F+0^m+y~|myZ~7Lpn;PC-C83 z7{5n~;E)$yB$xdjF#8&(nTa$APFY!$8p2+|QWZ@2q?Id`5mwRK4?l|jEr&`u8%vy~ zoZPz)2d3VY@np^i@F6J^73JYkLxu;CS?<>l)Vd2+!UKDWQ*VeKGSmS$pWe(W+@9_FhCsq?|6i!Rwc- z=q+m+GiTMSW|+Z3l{=NEULUy4c6qH68xxxxtih0&{mSYY+AOUeu#Vo>xx7H@gICN( z2?s$hhXdaBtjd+MW&BOt2LPL8PHn0M8$@5!B0)Y_`q;?IN^EPKzMeFD68&st=A3#n z&8J5|2Qk1WxGY81)kbPR`>pK;99{Dh^CFXpM;zW}$;)dIzoie($3ujaQe7wEZpqr~ zf*tN-%n_e=;;qVSpku!U`s+(Z2SWCnJ!kLpou4}z)~9gHnJMjjcQtd?3y5#W_gme& z%`mTbDE0Y?i4*|Tawv47{ZQrih3g9l&adn@m3L#-{Kw7vV_%h>Q9jBJE!&U$^suhy zPa^6>1x7ocw_H20+p_X6K8t*TO^fXNv3YODNO#V36RBe41EC;;dEdUd4oWO@R58SmH?w57~IM9aobmkxU!nAa0FqawfPnjpHZiH^XrZ^J=;!(j|wrmHR zS5l2GS;YtJBk3d><+T z951F1eeN4P#L%yWso>F)+=c)Vp+NuH2oB@h*H215E#WS@Iair{Z{XOwhLaY*5Jn^o zq!nv=kH+tTAwj=(g$f|R(>)c>=BKWx>YRU5t_O$o)HT)zPI}#s(dbL5TFFfYYC`dQ zQk_)Xy2ibs$F9HdUgl8uA;6o6V?L!Od6oF~GI9U<#cykkUfvFoJ};#PmL04W-BXA@ z0OXLTB^M=lDUGbVigBA1VHM(Ywxg+tN4dbT-Zg2fbJrnFqjHqTlz0TgD82{c8CLZt z_8*U2u61txuvm^%Q}ok2F(f&^mRGK(2o7#SCR_4v8g@QoJvv-#9O!vI2WI+>oAuct z3=HG#s4*nZ6=Gg!gdqL^`nWLFj>x9kW|+3E`Wc5c$DxRyY#C^u>pa9!x;|n`4Rb84vQG>%PzoFMAf=_&q!Vg@>%n##$ zY=QO_jpNB)OeeUH7EDn|o)$AQwKBheQxBKo29FmD2hMQWjUF!AFor36ZLLRu;?}`J z7Q^X+)j}OB*Bi{S>H^@E8i)9$)86)c?5*x83>FTW11smMRptv1M)(r#xsy0{4sTN0 z(Zx3B&c$`b6QR$tSd^z$%H;+PN;$tS5w0GiJ@)hUrJz?(K|h@ynb}R%&}0E9d}xth z<)Dh%5)YkUwiKN4eK4vT{0Xtv;9~jK$Lh2&vq~W7bu%vthbSWS?0q?Jz7@^K zy1&$CJ@1C?h!vRIPYp--M1al5T**(1W8&C&xJdiQ6vm(X6qENcny1ObF*}br5LfJ{ zF>U{8=2oUn#p!b6w_ApI(1mHe+ zb{r%vd9Li$!>WFx`mm3;kRFRZ5U?E57yeoPg8oql_hsO6S)44_7r(@cj)+gF`v$n*2?du$y40EIR&M zGiFS=I*cUuOm7T6hZCY~$rv6>Cr(CEzCT_WN*~dL8vnT3xQRy|(5S%mY(`~hJo5YQ z-TqDx>1v>H;YbpGahjI5m)vBV@8!H;Rn(LsP9o3vS`2+o=KBkd!y5Q2dB;TWu7Q=LLx6P=F9R)We-m?=AtKYJj}}d z#o$6ZHCvDSM?3k zc_{Jrn2-gl(|1qZB8agV4bL#czH66iMij6Qw%%~xIDe?arAegGMD*r~H6;l^Ln1F| z;u!4~LEwA>(IlIE7uUXVePaEM+2EQ{^tfSwZ8=O?U$o3Nx+A~$5 z#SRt3%hfysyGSla2qWIouWRnXtN{(9ux~wsMsEi6R1HNG9G5DH(H}2;d_z2}8nlvL zr)g=t<>*9u!%r34m|1_=9?!qk(7J3ck#FC{137bCuC3yDbD7&3_yPVg0^noQ$ci^C z*b<=okh15)?gfuq=!E0WJI5Tt#UfT8b)&?P9=coRYvm+R#V+=W!;Abv)uGBdWoFi{ zol76m*qg;t@kP9}*Q(a-MqjG|EfDjxygXf=(-_ty6}!kAkA*8i%gyZ`b3QY0!$Y&p z#O>09m6&IYTk51s98`*ErL~@hVBk!B9HbD4D)R=j8J>9JTX~N59C^?1HDo3_`WY0T zT(1bX>VE0s_~wmfhp1jIExw>UgHyO{axE&EC4Mg;<2i=sw<^ z9ABvELD%F&QdUrLH%z^+V3a^>sx{Gy`Ozj4irBDql;v#;qF~vH_@{`KDy3SL>Xq7I zZ`m&M4iR|tLMMGpH36mPWz-FQZ;(vt!e$yYn%G2j`FM{w>Lp7x>zSOBFm$aVjr?-L zQM(=$ei>-WR3>e358qb#Vbl@CHBwT|b$I?bBjZ?mrPgukln-lZ-NWZ?tn+!OzF&W@ z>Y;Vj%d93g^un^WGi7a=A9|6J2nhbza>_N~F;heehqzu$!831q?k-xddMrklMI*yy zh&A{;>_;e1^4@N{dn+(|N6+lcZj83wMPshcdr-lO_x*D?U;Ajw2fTmB)mNOAVl6uU z84@sx0rMDMghwna+sH&-4ti_$fynBH<{Xly_?3gSR=VnH*DF>wOPH!5Ey~i@`j3m0 zJM~*mnj{kfJD6cypOfF=8RiX@=7jA<`g+Y zlG)5mRg7LvTZ=PeuKq?~Tt&I5ko@GC#<$h+X!q3pRBaW)-1ZCddo;@0+uM?fe`n4? zlSfuzIbUZ=fAEnYJ3lEPcqhJ=b?4$@VQNb5-Mk?6$frakW_tIawc}+9c3Gn#HmPMm z3LLV2bUvoUq}r*T#DxPMOv~&~0~Qr_!ZWytI8OG(c41RbUg@OfK=%^np3vuQ(z%hy1rn`&zDRZ)kyWSSv*DqnYV(%M^Q{@j_QN>?K~!Vp%39I4);fXX8r`J>Ihld66$JPze8>(Wul7u%DPSxJ=CUTZmi=e@=W`#jQq>WdZ# zzGGe9`FQ_7o8Q#3qR{D<(SN$x$Gn&6oD<}8zsqv=9^Xr-i!Fq~hjSfeWspAQUJS?f zRqMi)+UdvSTYm8c2wb(aEeN@QQVHJ5BaFT&_soO&;gcvgtG)JE|GB+itgif4&Z!^n zwb*C-*sW{@1?SOFiuZ!uP1A+RrHJg2oddkYxEDz|-(OApj-PEVW{nmHJYgyM{d7i-7JvR@X z2Rn;c#4?bd+)-LJo!zY^z2VqBwodH{>(8I$nsXhA^nLbv*Z;#{^T$-rtee-H zWqy17%XYHqw)C3fCQjR&0~`v+SZ2zw5HY6lCH3r1!BDwy8l;Awuy#Q*gE5qDs_0vt z@!nZF_CFR0TzHko;(KU4Z931XNS!Q6b8D-sF@Ti9BJ+|1T zkkWXsKxWolo*a3zyv^(AVmZT^=mli@vEiJC-4%bB)|zhDj?&^${IGgaQ9^2qoVL-G z?eBK$GJ=jyZ>w)){j*u?sO+q5;qcYR)U?gbz10=tVn`;UC=MLfhngTyujMX1k@`qN zPI0N*FDi=0?L?fI@kE-^G#6~GCI@hmGLIuKy7sAq>pZr&5C*!Z$?Ug_61aDV;ymJ= zInYEcaM`|P=ZBMg@@f~?x+}B}z)Aa{9wxy5|&>A@5Z1YD~&?WhX2sL|s84lrSoUNP^8$BcYfQ<3r z?&Ei7cZm~>%eQWZL|F35#*7MQR}H>Ox=$mlG(DyLgJ#$-7#EMCNH+n^E~>+AtP#Jj*(bWecAwH(ObNn~tCv?yVG+s$B;sonrTwq0cixdP z3pC$;dNxEqd?L3rg+_6{EI-t$-HbwZl%=RQd~W;87_unQJ)4%}a3Rp((rPV`64M(+ z=NTFBNa4BP7al)E`IJ{~_7|Jy6U9d&AJqv&h&0Dt`pcAiL;Jh)Bvmop5HTlq9MI!a zpGdney()iZ?Fg6YXCHQsMA3!{$eQAC$A}Y!3xmHNebzPnJ~LDgH{uaj4+N>hQ^KK#4(i)}tdzCiB?rs_N;`@d&vy`&Z zxI;A=a~tuad09(k{32lim15HkIuyWZSDn42i#MeAJ4w`>W)fEHj4(Uf-Y6r?`!$w} zNiJ{dp7#%wXY2x&8yZI3J;vMpqLLwp3{WyoOc+Fm%Qlu7{ z)1xP`^go|On>v%uS1sz%73U~-#kjbu=Vm}?Hk~kdc9@!jYZd>?emRdGJmgV z9>m3hF92lfYZ#rk##W;`p6q;P4KUh5Xv7@pVICZ|40%r-xxdeSH)=S8-uY{c<(o5O zGoCS0J!3}eth+4R&d{B}u|Y)vic^YnmX1JGZ9xjUlk}JU)Qy9cg=VT<8@1WfZHrV6 zDGwJfZn>*6>{5nonRf$+$7OGzK}&(>2np3(>N&FKM>?56cWUdNrSrx2K#rx1QtMU!X362s zJEy_GTn~HCRBer~?H>hvy~Y0sG=CY1uXyt1m&fcs2KMV@6*RnOKl$L_-aq0Lio8Y|5;v3yV;)IdW>aq_#VPmP-UzpI!vpM42PW lwC^%Oa-P?%eI4J8p@49LE~=Fp;aSs^0Bm zXL^|Fz1=%C5D*MPFp?-Jgbzp#yi>ms6+Q8bhL9klF=q}z{1X#6%_#u_2|-^^_srDJ z&R#Ebi%8Ow>`ZO-t5?;(SM}<>>dD--Yv)zxue)TOrfKI->=@q-pIhU9=cf5c7?&zbTmEr*%A*cgG_{;99*o_Kw8s=wk*~dzez>~ zPtF9@;enGseQKZ(h~a_jtw}Ul8xLFfpr9fnR#>de zRU4(n;en>!5|rcW;y|G(65TXBFcNoIn4a8K7z^vNU=7+jN48UN+(E-~9Mkzs0VBgI zB2pws$E0MUl8FoHYoNRiN<($wmv)bDPrHNvh6iS&s8%W#7Zw%<7sy~(pD7xy>lP6% zVyuIN-Z)T=*rHx-Y)q82^o+{}uLrd#2&;uyFZ06rXn0^C?x_7r@2gU4cT{bp?0{l% zk=2UEAS(81BzU_`ZN5I&9Gc)oIVUT!8a1Gu(X(A`HjKi?Y`8*~?aM263^tjZZ1>%B zyp>ANt{c&|{eU1v+OuV2>Of5vcgsdNU*~e$ez=v5z3#pd?Uo(utU?ut_f!-G{t9~H zD=R{fi@^%b;wwqB=A24QJp|B7V|B@*us#)rbLC{Z?rPbhFgDhlo`p|eA5=xS(AYdw z>~7MTI2~|uiDZ|K$xsCTftC)UBTF}|DZ?&V zusEoyLy_#(0Si&Eh^{Kd}?de$>3+KW*3`>^D zP_b8a&sO6hpO4qaNR`V57^9&W2~5@W0HbVXX>IGmTu?T))6r4aBHK*j($O(v1doo` zmTjSt5!c4s=}<9V>mb8WgKBQNl44)j7<>Jy z79N(CW4#ZfHW?PkXHs`fEYnf@1na)xF@cdO5if&r!r{k@NRCV<#3+0dIsa6ODN+t!I? z`?~3ww(cTIbZQ96IF{6;+4~Cwe}e)-1XsAWA-RtW_)XEkn2_vUTiHrdtd)JlON8ZeyDZ#3^@N zclF8`g&39_x(&@>c<~%{Ohfkx!aheBa6**VE3`^#mxgR=Jb0>rFOH)pCrcC6M#LZ< zoER_1qyoTBkVC+XFcceGx-CqiyPo7af}GMdsN~I+vaES0=u1_%dI#0L13%0hMucg> zosx95Qv!2QnAG=)OLo|ZaI_)1k262It0s_uiVGNtgN0Y?MhTNrB+tb z2>ob*)#bzFsRRD2NlJ7eRstU4n_x!4*`tD^gM{+}&I z9f}C?vF>5l)ExvHJQWZVQ;E1kJfFM1-@3m(EJmgfD#b=Ka-&6Ue-~Ew%ldoqc;HtV zoQFy{&G74CrO-Y^DMVp`)oODAXR#|S?yrjUbg_N((6XMQ<9|3og{%kf#i=NxAaW)QGmFC^OMgb|d1|ZdklhQqvq>$DC021LooHR! zY-RPWE$@Te1KWP0MK`tR%A;1COw+Ywc+l9%wmojE6GcaNNAKf)zjp5Q!*kE4y)svq z>*Xu6=@rwrWDYOQ_gXpR^8B!s3@4lY_Bcd|Q+Ze;8R;PSV0dm?xuTA-Bi8Y-L%v4bJZX!!~WPDOjoti zDt`8wJQ%zVzHcDQwq+4G(dw@5Zm}y^lylSL0X!IN#3v3moX<7ebYJM%aL-B&l?!RZ zWZ5X+3}_lAsfF(yz*ioM?e9D&Hd9yL8kakFw8n~6b$KT$jm&b6D-)3_kmFKmWR`PW znTS+@9G6NXvz+6~M5GGjxKtXM~MrJw3m5E3d$Z@GOGRrxxOhl?cj!UJH zSd|b z=;*e`*-0;F3?D1Ek!{0WJ zU-{VK!&Aqe_^tVdS>H7A+KIOgJpA!X|8(q*i?sVMK(Bn!`<9%!g?!Z={N#BLYudd> z&${4^=?zbQQ+)ZxW0fOMoV+6Z{Lvi;@8vJ*_kVZiTYvcLjqj{~`Hjj~zW>D0D-Ri$ zJo2fDgJ0kB=;g27x&OAGopnb1gNnUg@7_H5Zv7j^q4RFrdhLeI9~*o2p65^Oo4@Z% zx4!=GyWjE4$6j)OKmUUltB)ND{`Szu%Rs}%pP%{b;f-6%w{EIE^4!Z~d#;w>JMzyr zU--h&zf8aV^xN9RGhZ7$@$BEPxaePR9(ZT-z4O15%U^x)!op?0 k_(ZR9H0$2_$xCNz`(D0hy%*gO_oYp2+d2Nj(Y?3*7jF$6*#H0l literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hats/magician.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/magician.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..38bd1279190c1214b03b5613729c0bbd344cd35e GIT binary patch literal 17155 zcmeI4U5I2y6@c$%MdK{NfPwrFwe7I5OT2UI=l)gG(`(PqIxEg*nHkNj5!|{}b!RR+ z)3@#J*_oXO8RAn2`Vaz22>1{X0+NM1jZCTZG+f6R6s!l0V zt4U+3{NbCwESC~FResuAKnu+owU*59wA9kh#bvQ`RWMmTSDUDASHQuB>hRL`#(JY& z*`6wQ{Z`<2*6fr^-7cN0Q{{R#U}3j#OzN{JxsIfyzG z*@RYHRB=fuf0b(!@T=OAabTR?_SwX`__+ofx;C2qfg0_c9Z+<(dDFp@ z$QflMMc<~m*;?<0CWWKc)rM+x+F*xA+BMhGPTF2ej~KGAK5}5l$-+W^?2++qY>XVb z-I==v2y&z&E!)f2o61>K?R2vx)Z8_=lqW`AeJ63Z6NuvCp!ol(srt!7iPnU!_DAygZZ(H=??q^dh{ zr}^r^)_ui#Qp4xN>1pQCIhV38zLsgbWJ=&qaeVxiu@>d9ebY5u^;*&MWJxj zn67C+0~9l6D__Jt*P#H{!euHXvGfUv#&s*V)q*z{jp~BdX0twebD2u&uD@0(|^Fm+1-I?YQXyFRAnNl8}{9>!UP z95)a}365M~9ea6&a2^nwd&=dZ3}cMPz00Ur`5tq*O#_~<*Nlb8W+7)DtmUENa?A>e z2_`gz3UPe^-d&zJih)mzlt-x`K{U2&j}Sy*d4d4*iGJ@)my`KVj+NA@_Zo zdVXxXk?Y$Gh13qQR9p}hy5T3^1Yn0YDd9fOB=eQv+>Wzq<5}`xGazk0l$-|AhZp}u zuKUiS2t`81*ygcfw)EWCW-Njv`4JKjl?t(U*Un-OOXecqCQ-<3kHcLFZp@+W6JJOq zLJ=@__s)2T2oc!!!3@I7YBX@M9aBVNfe7G)t=OpjPp|dhzG`^WX4;iyo85(l%7sR| z!(r2QVYZf$N&q{S+#^_Go2n?ZMeIUQh=q0}rJ%x7u_pohA@jk`EO)&>dhR;Q=)Jfe zGC$<{sa68VRK7mcXFt#PGQAB0J3}nA8Va2VwOstGy1%xCuODe)JeyYpP*74fR}g zdmZhhoyMIl-ct2dI49iAL9OTYpqcL8G%pV3XTM?(=d+rfNGnha5Et*}0Pg39+6E){ z`mba;UEl2X4+w&ngR{@vbXcvMUN)N!t98?X;7r%fs*=J;T^n67((v+8hC_NC z(-yciAZD?^W#*%43tSoyvsmCV^U<^gE)9rTEO43mXxajo2E;5DxXgSsZGlSzVipTr zWz@-5(iv=z-A5B}}(tw!70+*SOrY&%3K+Ix+%gjg97PvGZX0gC!=A&r~TpAFw zSl}}A(X<6F4TxDRaGCjN+5(pb#4H+dO$`3GK{epd8n)nH86JG+saN429ZF(;alx{7 zPFvRQ4=n4WJMjH?%i2Vi_5Kyhs{F*V9!_8Q?yd9C_vH(-_2uoqeDGsDaq`O#&i(ZD zTfhFKAQ{`23u`qH0o@cIkCx$&uU|GfRVkN@z;Z$El=@5+Kl zzrOP3(l2hm@!EHuaaQ(T|In)b{PbJD`%n7(&BrhAJ#*^c@6SK^*nb~BvwPpiQ#Vgp f)}1>it>;dj`RME4fAKwt)4DKsarU+8E6@H9j@G7K literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hats/magician.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hats/magician.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..ac7d245aec418ec002192f2c4e26a7165ef5dbd7 GIT binary patch literal 15334 zcmeI3e{2(F7{}jDCSwuYA4bLya&$s~(cSgOwdzP zw?9Y&7&Rdfhz1lwFh+?)5DWwr$&@I@KQw3*5C$Tm2r*zZz(_=VukG5~yY9`582@>j zw7utj-sk(g_j%vv>HX6e>z6z=zNoYa05HC;Hn0qR&okbI52Me0%G!(QYh1LpMFU{M zC&oMP)iTErxkM&s? zMfO=%@IfvZt%e;+ZEp-N?_JU$^{$aTvSqHn$Qu`sKp5&G6AyjgiLd=o~c%2kl`y_R*7@D8Mmjx#=G54_Z-H~*?5+7unx{@cL+{SaN3#l z%i=FWSKgT1CM*jqNT)-V&(fjmQGsQOPCbNR)Y{?<*Y5B#LNhc8DSy7o)7Lf@5<9$xxG7199UUtZ6c3GLo zbeNK314l(UrEdx!IY)N~jF1W{C6$~tvWTX(>D^)sR<)xuF`8OWsSXXp<-M%Y{X@!s zuo0Tr^)I(!RCV+(wgK-+|KB!bPqEY?M%tn5X9o}P;K1m1F14RSD{HVJ46j75@pB}g zDn=(tOjeK0%MKgMW=_p-HmWhynVj!&ap=X`jL&qa*^P&`kVDOGJTx2G7*TY;J)I33 zHboh~nW=`p96jDazl-M`yqCp?@rZgQ4nxfW1$AD{=qD~`ItF*-3~U)G(Bw!5rnbuT zAeOAb)F^t)Lr<7&<`HvPd1kuUgS^Pz(SuaQv}h6x2-&2#$b2v_#f1SOn-mwB59Xz~ zFd$@;;v)0Gyc8D(gltk=WImXe;=+KCO^S=m2lG-~7!a~aagq68UWy9?LN+NbG9S!K zabZBnCdEbOgLx?~3<%kzxX64kFU5rcA)6EznGfcrxG*4Olj0)t!Mqd~283)JkWGq<%m?#QTo@3tNpX?+U|xy~141?_E;1j?OL1X9$R@=_=7V`DE({3Sq`1g@ zFfYZ00U?_d7nu*{rMNI4WRv0|^TE6n7Y2lE5^)t}|Fj7s=%1S1=r5Va{wx?kf9GVR z+GRlidZz=B*Z{!Y`{?@`0G%8F*H;4|>;Pb*x^2~`3joMlUl*uqh@boQ+!x`ETyeoA z_sp?(et2f_thy=Jn3_{n*UvVEA~!aizmnKm+ybTOsnWi!O)K{we*BM~l69e{8xKD* zrS#GK;shAOfV{$aAisFeS8D5h(`p3C$&8a_JHu3ElP3aYz7N5S1hQZbT1C77j znEmw~$8qbIVkP7h24mMcqN UdA6WDfp!km)hr1dn7?}c-x74avj6}9 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hats/magician.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hats/magician.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..c14c9287057bd42d8317d84bf3ccb54255051a0f GIT binary patch literal 15271 zcmeI3e{2(F7{_me5S$yv9|;BtISNJ*+q?Ge+V$)TqaAFE&ff%A95)lZ>2qf?i2{0nMKp;km0*Pe4*Ppj{-J2OO{_|ea z-aYU0KHvAf&-*^l-9NXkdH%ebs!3H8Mb$Jl23z2Hw)q=B4*u^@SDuHbdlHT9Iz>(R z!TeRcJ9EM#6y-gywze5l7H4V>s6C;zXVmc^92O zZ2l^EaE=gz_b8eOC@E{unOMFv~qWEsFBj*3{f&YBhDRU)Dgl=PcAIG6>=-&gZC;1l0Y)F zWUHn{{kdJ%TtG+%0@+$Ve0S& z93ADHz9oF*G18qNj!USVRJPa1BDxka(oz!CcfdU{nq1GR4h=))eT-TCqw0UK5W2ML z&X!?xd2|QMfYzk{Zy8FvSnibK9YFCjg$-P27~RU{)^liP6>81!O!S$LBN1jX+)+|C zdz?OISX*i2T>myR8>6Xgf3KT`2jevV^PyHZ8rqHzwYt&JQsm;eYWQK9%T5$&wnUlF z%v?cV1Yhrf-z^B7;A7BcG@@C}fM{D#g_Tz~>xrAs$Dod~f$bv&S{(Vn+)`Oy#IiY< zYlW|Q@C}nGzG4nb&tet3n-`@!x|^zq78wKqf;R~+JRihMa3MhOCc%a0gLnxp1PI4T@Fu~9=Yx0&E(8ePB)IT=5HG=n0KuCC7oHE|CAbhE zc$475^Fh1>7Xk!t5?pvbh?n3(fZ$Dn3(p7f5?lxnyh(83`5<0`3ju;R2`)Sz#7l4? zK=3BPh3A8K2`&T(-Xys2d=M|eg#f{uSX@=5k2XOZeyN#;pJaZ721L3qAQQ7M+9uB@Oa@jZ%~sBKt&crHa%1e${Nt(mh|&-TR*vDL3#Tu^`C z`M|y(cPdWpq<7Ejsnb&q?4I~oWA$M0^0w{EDl02%*)2yOdT?!ZWc#L{KRhzV{Cu=< zOnUS4UH48MyKUq2W62ZJwWp>m+v?`}58S%7_sh)KXhpcIeb4i~U9;afwfWeZm6MlG z8Q?=3wn`_enTMsFZ~yt?VC}dYeHWg7XZljPb;jWa$tPA$9hm%e?+abmdtLosZK=6_ z==QpW`&z!gvFsOPQ^opB$Muh^x#yPtbY<4xzpoxlz54CO+n3VkuHD}c#uui9oI4+& zw_Vz?boHm__J7bbR9o){NT~PQ@h@O zdHd#%9FcK<^$g5A^U^2#FI@h0%*~nA1>MYB7b>WQ&+e^gKiqWFY;0)tuJ++AMa5RyZ=1i~>pGkdY(S8U%S zfufR>QXqW*1wjfDg$7#GQW0K}l0Xnp9<4};+9I9_G!zo3N+YF^@an(z+MaWK*~2-Y zNNe5s=4Su-XZHJN{`vn|%hxWLKYQ}TQzr_7FnR8rj)m}dhWmT;QSg3WV&xm~=a}rA zC3!)ZbfWt^Mp%FQw*+Cq^NFtRLU;W9D9NOnG0oVlc`%g)X+db2KA6R11uKMX)|*JT zhX1|!@o*?XTf>X>xD?N}v*n37t8;A8>iJz{^$KFq@buWkmcb|}NU;JA4W^Rmd~~oi zT+|zdvRfSqhl(PF6|Lbmx5H3(d_kx^lVc&h*$|0jm?6_@mUYwA%yUDEBy5~kWkn<*OY^9@g-eU(8BZD{_ zk(;GRy+)K&+GP83$>Pu`iLfL~v2-C1?c}=cvdc4tOn!N0m@X@qhwT__5|3B^{W4MsXb!9TiSZTU0DBB{`-d>!Zp{a`#X_^_xPiu+P zHmOdWsy5bv3oNEcFc)P>l$0)6kE(i9Hoq&$QAy&Ilq73(#4|MEtSakJMM)QBy-PNu zk`>hvuY;4U)d35U;sPF#7G9RqLrK)h!U4ASRRa#=ZplVDtdsKxOZr6`9d-glV_osGc8^1)Km-2Y?s@V znQew{=u%soWhk>yOT=C4AXx3)n*m;Z$$`-fNziC@)Dj_>DGK;31A!@JMnzkKH)1eJ zwp0yC7HLqmqD!i6nzG1j!}e4=x-MebKn7AJL^Rf*YSmOt$+0Yv8N?~6Mg&w7&0Y(bCFhM5E+G z7-lvlF!_MBH$z5?HKQ6;Fml`(GTK0xs>rqmtR3B(AsCyAh;^o6M3E!QjqZ)iVTNvL zSX52y?J|~yB+)|H(qRWe4ATZ@h@;4gieQFl1^_QQRV+Ec$B~$>szfpEhE?l|BB|i{ zV1S+v`QoGQO+eUKiWQ1Q@M;)g!w^;7a74}44AGL1Dk7OOOcaJR144Ms9-iNL5BlJyZQ zb99+nnq-KIjj*U=*h?XtK%$`-gh~Vv)3Qdc3?m4Si7Xn>42I{6tc1E>&#sE$TqJUW6< zPr;fE!-K&U|>RVIAw=) zbU`iwIXg~rGG(iq1dKs+=)!bBv8w5!t%2zYf|ylSHD;MGg-R&us5zvoISDr=Uo|v% zF2>}G*vg@`)tJ1PU1xDF&)nRxHC#>}E9rPC0QbW1Vh$R`#LdfN#LdVUEb$?=)nQdy zwv+@ChnjO_2o7mJd>;eLS^97pT}f3@YIr62j8hoEIo8$-xz0$E&63uk&1%)xUnQer zh&=8;GBc;`nGnuqlL>-d zR~qS0Q}5uia;j0b9;f3goS>BD5?{oraHAw;OrdYsJs+_fg>wt45Y-Xk$VnGqDLp89QmE35sD2ow=x5aot$PpV&hiH=6*cP#B=%V64aEmQwLjaE8 z><}52jN!PVF{9Nz5axEs+67(Rq=v>4BRKCaX&u^Zc=hEi@9W$HD}JI(*R$yGqvo7U z(Y5$^P}j*;JZ`xYPDgD=U*dj0dhYa_bI(V-GDnu{1uL`Y6}`9893GnQm2=2L^TTp7 zT-xksxgm<1%EKD*Ne96P!y~~c7g?4Q^pU#Ln&v~+qNkmDPn(9%(MNPE#wmus6=TV9k-6k_mvqd1tFYOa<0Shw`daS?o!fyE46SK&mfwz{^( zg2W(8c6TJ;nPc8PaWLR~uGpsbLfwW-hHJ=O@EVqu4fmmgqG3w4@R0`iG)1KHaSG06 z{K^~Ua`lczSuw9J=!B=?TMlsfBH{%CTs#fma)8Sh5ibzn;%WGn16;m{c!2;HPs6ty z;POSp3k0}$8ouQKmoFk-Ai%}b@GS?pd=c>i0WO|~Z#lr_i-;EpaPc&J%KKjR4siJ*;spX+JPqG+fXf#VFA(73Y50}{T)v2SfdCgz!?zsZ@EeE)K5%B^6E}n*OIl$$Mh!+TO@ictP0WM!eyg-19r{P-;aQPzQ1p-_= z4c~Hr%NG$Z5a8lz_?81)zKD2%02fcgw|rP!6RTfP$kOnwgah#PgHNCRlSkmI3qxei z!nh!;K1&dOuvQQbd=7v22tuDE2zxIRgy^k;(3H8c=jmC3Fg8B7qpfT3mG{?gP2WA^ zq^q}|d*MmHZdtQo(?gwe+xBR;ytaAL!_x*%KV$p0TQ>c-f6ooC{qV*$uS{FE`}h;C z3NJ}sb>Ni9+R4XUIxY6-1J@j|KD<&Iw_|HKzUY#TpKiPQv@uhJ!~SfW@bX0uA3uJ~ zrM;>!b>ms%b~YXO{H2%AfBvpxuju*fvPJ8f#_gQGcfrnsH$B(!>G<7mows7`z?pxX zy7KzYeLdfsf7vtFJ~U_l(!NiouKZ8>sqUqx33EPt@AS!^-G1Z9$;p8aw3##^sw+W1-ScdNIO{`ud(F#fZhJ2MX) z{Y+}#+jpgVew$3Bo(g}veZMhy#g_M$eSTooZ;sk_+!)-ju;)C%qPwddv zozQf{o?YAjb@KJub=gP933AULE>5(>?-hQ&bp4MuJp9CyuTF7xzxnn*7ys(!3Cj+? zIAPm6kIXphoJ``>y}5mt&)&Ry=XJX_Y))=sAH?^M-8$~w2hP6px%u}sz5DU8&vuMK z?1QV literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Shoes/Specific/large_clown.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Specific/large_clown.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..53d8da0d72484db9879d03f57bec38f92ec4c687 GIT binary patch literal 17698 zcmeI4U5r~t6@YKjsA>aEODib!0l7{if#}^kcjo>YubchNu2hHoEJ{Kp+PO1xcde{_ zUE7;=mOkX?0rFC$C{2H;%1c}Eo2q>PMIjU=0tp0FB|ua_AW{IS6sfJ~OZY42+ShCE ztarL~7x8kfUE62QoHKL3b7ts?zlO}k}!YJ4AjX5#;wZiM&x($YKd zadUO*P+ikLbVvNZNqg$)k89f4*Ge-78wZQ`=U7x8qC5)3P_tZx-kO%buUVz+uxMlg zFL>f`=vp&&=}5Uh%L7&F2|J)@G-=f^ zhmg_Fh_hvz>OyV4H8su*F)zxZ(x`)-+1IW*7d4{#T(riJ%jz`;hL{wK%VYPQZ@Jue z=z3$~2p~w1_O-0f9IXmtpQuL*H6|vGz@=>OclC`@*bUAKPqAjrxr=6L4YOF&HfyCq zJ3@K5*4$W4&_-07iK6*JJInTT5N5{4T3MC()PYikM~n4O=MCAU8}F_+F-{wzfDtA- zvUSs%F-gwEIm`YGGII#^IBEBkd=w*I3XiVxVS{N7TfIJdddfav{czf#>+;gux5p1> zxiG4gX`@go(^+9uE3{OjyMCM#sz%JUZgoj*Uh}duW+UwAm=4#vTtu6clk?b`o?Sz8oy6jGu478c2@ zLxT0t3@FFQ5(rrX&f4|@({nJ=g=<+G3&iDwlfb0ln!!qMWrzUu%=KJ~aY%`Y2b{If znGndq5Jur{?5uskNf?0FK=?`WdBQaHz~yi)nE0VRXofJ;vTe^{aCasN5Q-g3hv;%a z9G?g>XkK%|Xh1mAJsPq$5Na{1dp5xsn+(Cl49FVRgilQo0&AWu^o?3FoWhdxU0?T2 z;UyUofCzgB2{5)D-!%uEwJ?S79NGesxZWrr!e`XtkkY8XG>6k zwePyEudww{k2;P{Y$w#Mz;bjSc|`Y2E-1sov%L4d2|$H5#Nj^fbKen+Qay~bjmE)) zVu0(8$0>2S126iXTszK!00oSPrcOiQ>)f_N-S-0sk`o{Xvl5YsM&%DSqz zXj4^Xaj{!0=B6w428E(+db|*mDgky%Jz?BhJ#;OhQwPdm8wb=!HX}BMm9omb zTbU)UJEJGA(A9na7?B1J$*WH zem_I>akFZusZw0e9$i^@w(8ma;^CF8-FmilpsdnbUBt(w;cVx;w0r_>7q3YP+d6jT zD2tDx1s0!X1T5+mt=(xYTjtvxN~;67J_M`G*B)bWPE=HYT5LV z+O$_Kn|3WfUnw;TaHwcaRBG^YB9y7<|AoSToMqqnBr3Nk+dl;35Z%uajE%8 z+7y=rL@lPc)O;juic12b7E@emK9V-YB>_>3DK0f1Nt@!5fT+b3mzs~HO>s#;)MAQD z%}3IvxFjHIF~z0kBWY7y5)ieR;!^XGv?(qLh+0f>srg9S6qf`tsnd1 zv$y|g+&*$**K3>4-SMx(pV)Etp%drHtABX=%2zKuumAE3*Y3Y?m2cNJXW;MHxBYLt zaaZ}N%|Ci%XLH|6uU{f0>W}5)pFDZz!#~`4(<{fbzdt8Fvh6?S`K#yu{7h!s z3!9$1@hb~2U3~GXf94;Tvokb2HFWcL&;H`t!qeCPefP0{{_fpxUV3ZSlaKxU+@-4z z23MAzH~&6)<{l&e%=fn+xaWJnKJfTsdoO?MXNxzyx_e67vNQgheQi;@q*d(~9~jvj Q|BA`<#P0EPqYs_VS)S0LTO$@%|3!~dDaOE@_G z8_zt$FmtBye|!7;VdweQ1Em>Dg8YIR9G=}s19A$gLLy3BQj3#|G7CyF^Ya)OD&_=- z6%>_z{}NpA@#_;UZ(Xf(XU+$22sOB9{NRz!c^}P_3`IS?J1mTYj4vB|Da?5^>ByuI zg?12`3ceOIO7k(Wy31_x{<``- z(C$)C7sn8f&bL#}ayA(7xJef@oUdQs_kg4Cf}qSn!8>=nHF-0Cu2ZU9&R*Mc!P%)` z&iSTQ(;8JKx)~gpmDFN-bjsS*?8a*}#Ug^&Y*=<9!S`bNVS)S0LTO$@%|3!~dDaOE@_G z8_zt$FmtBye|!7;VdweQ1Em>Dg8YIR9G=}s19A$gLLy3BQj3#|G7CyF^Ya)OD&_=- z6%>_z{}NpA@#_;UZ(Xf(XU+$22sOB9{NRz!c^}P_3`IS?J1mTYj4vB|Da?5^>ByuI zg?12`3ceOIO7k(Wy31_x{<``- z(C!>h7sn8f&bL!`^EMa=9PK#5z;Y=4zvs&Xt%pTT6y~nJ+^yYW!{hnMb=mWcB`rmB zH*-aZi*D%C+VVRl^uVr_4W;3XuNN|1TjX?9w&tYDPvwX5Jz^Gd91mIB_W~wM8pvf-yGIqE&^C3REaX5uy|7G=>TS3Y$iRHi3X426U973^w-8zy0Do zRe&^YdZ)zp_kG{@`+eWf_r34={_w5CL*MG^?Czu}s%vl{HUi&i?|*Rze03%#&%n3y zvjdwPin`#--hUf)_dUxfDsr=#NV>`RcVx}Z^r*U>0zJh{7S4vc)y1r;jRTiXfl!@p@cR$u7!2qYNaz$l%azRa8l!;ipJWH{_Anx=J`GMSWwgo0VC%P$={i#2!00%JSiGnB@dk5EwXvakg2m zT4XHein5ccpBQkooSAh^+oCEXRJ$s9WwNzEmQ!H|DY8X1%kn)O+sa7S zYBt$?E?ruhuCX8uGQe^jXvep-%Z}Nu?TpzAgsiC-3=C@$kJn*3Dtp&7>cwgDAt?wuA*0NG%ejOIA4#js7bxvb#EZ1x{OFo&*tv}A zDrQC<1#H$Djj;8>hMBcpCHL8BI|r8q6fwfK8g6M7v$edpt$QsEIItK_Ly=&qN(XnX zI@&y1RisU&+%|MuGj+KhR8j?^xz4|FDEhyr8qDODFZ32>YgVZFl(UDVg* z`7Mn$M{G<7w_a}>#N+ay<+v(LXE3I~fgTgCET|b;AQ13wO z&rt|Ro%noZFv0;o6%cubQw@z#gHno7`Jl#V@DQjf+@oO;?!?brhEReRWg#H*T($B3 z_sZY_FGttLRBIII3R}&rI`F?#xpV7>pS5x=ZkhiFl`Egb=AKyXv-5js#QU}+!~P3< zfm-T&@CGw)tiET;^OIg5P3KGVg8~OHmiJyOrj2UUbQ9jRQH`3`Ex%`(t|C;TA;S$; z-dDQv_l*tk=>sSMzhCr6SacY*7&eO_os60A`-bD)2}BsFWP>VN8g5$1ut8BVESIX` zIiYkLE04mb5cmMZ)}Dao-QjBYpD*%5J)d;L4e>zf(y?F(Gpw;5WGlm;rSq1 zf(rqH7YQyrA4E%VAwcjV!G-68XbCO^2wo((@O%(0!G!?9iv$;*527Ww5FmJw;KK7k zv;-Fd1TPX?cs_`h;6i}lMS=^@2hkE-2oStTaN+qNT7nA!f)@!cJRd|$a3MhOBEf~{ zgJ=mZ1PERvxbS=sEy0BV!HWbJo)4lWxDX(Ck>JAfL9_%H0t7D-TzEc+mf%8w;6;K9 z&j-;GTnG@nNO0l#AX4T@FEshXZ<(Dz=A&{F2G+5PlP6x!e1NH z+Q3Mhq9(7TsO`5<)ZC}={cjYN=P2s!>nTdUi=vj=w{JbMj-uKg9E|lQihq9R&Y5pN zHN5P^)W)|DP4m4EDG&W3|1kaT;UOk;@$5b4?V`8rnp$(!zDpK8|KxA`SFAWOczRL( zC%abuY2BfhrGo?eZa8>(VtD`Aj^%}Co(R4^dx!JvM_c|Hy70Q&*9Jp`ylAX&B{ovlN=`-)YwWou6 z_vDUX;GN5sPi%fPKy}~U-FEB`*M+wK^ml7czj5{ziJm=gz_+(paO7WJYPCQ8<{Ph_ zF5dL%Et$hpC+^G~G&j#2F#kRh3(Xu6&P-az?2EQP_}Wv`TYt3p#&6DS6{a6~`iROs z{=V_-k{_=c|M`-+I-Sxo-|45Hra`lxVF+6x+^X2zuRxUbzzw+T#JHHgY znM%KB{blvBPuf4)ab$LG=DA;;ZNEQp&8drzPhI=(Rc(5}qFb literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Fun/glue.rsi/icon-1.png b/Resources/Textures/Objects/Fun/glue.rsi/icon-1.png new file mode 100644 index 0000000000000000000000000000000000000000..b648e9eb40fb82ad0bfdd7c7b22e967f340710a2 GIT binary patch literal 16122 zcmeI3e~cVe9l+<{fa6M~2+CEY4BPqx+u8ZKGdt7WZLhc2-WB(HT(9(we|obsZ+6G- z?reAFx_j3Kk?Mt(qNNEH@k*#BB+^0Qq zdp1B~G;eb^yWjVH-|u(c=lh-SoB3n*4i9Zu-2I7eilP<|4#Y>`H|_s-T@H`#^z`51 z*OmE!ahIYNUF-jMP!G-aP*mi%_UM>5miWA8IN6|XI!O>LW%F=0)U7Gybz?j5=p;zl zxoF_c=UxcVwiyj<4JEilz7M4Bf$0L+JUujOOm8<-Gq5Js9VuzhK^AyAUCL&1u2zZ$ z%6>KY+aG2Fba{%mJsRls1JYxOVY<&L06G+u8H1A*T2X_1NKqtZ6)kXlh~-39PctPiv|LIp!%n}u57*@DCbt$L5gfi&$E1xW7`>- zM%^YqS;&-6%`{k$0a=jqTxiF)wacd+&vDbv0wL?_1p~vJBog)5ZO=EGZ5!J4`gcME zRite#-O;H$U`K%KOco5#zY{KHdArqnw$(^Zizi>R;JJg6y?~joshE{Zp^~8pT&vbs z0J`TCMja;;t5n%=4I$mvSFS4hvs>+)=@i{tA}ngs$aljVi0dAR37jA@TnPS+^0Ed? zk`q^QyvA`&PAW4I9|^~_t*I6tyfDfOni$eTe6x?HnWztV{g}F^UzC^TxlMjdL$jPh zR`+6dR!;#opG!s9#$eOTdR1wCPR1#~(*iLu!nPZ3YZZ5lNx!Una|Uo>GTf#l!Bmwm z+;w`Yb+o3)*s)66Fdf4-wMI}$7fjC50i#L+V0a#wOxO|y#^RH@DR2_tI4Q#V7cX?t zIIn7LRL9%92C}3ZNm*cksV1wgB{j?d)!+?tdQo;ZXP$mPlxWIoH!6 zslj**4g_tuXfdpYfUJlNFksITWeG50pu&S`2})SvL<_+4nP=Wubk%h&I&|HB;ex=) zx?+SGi%Y7Ng(p=`Wx|RgT2@F+%4Vn*sL9#9K${9S+$r=-(;R;-CR__|!G-W)c;N^@ zWu%Z~FiF9X8Ho#rfXNF|$PCv)v~e>p)PU`m)KqJR%O$lL>}VZrlvKH==k4wN}cVPty&5H;5U2Ljh)lZ5eHxR^2jEnPAUP=fxqIXTETZVjARd4XNU) zJZoVmu48#cy#RVs@KU{)URm+lYKFT1PZ!_^NQA5J{9tLYRGCl8BF}KTWiYxTB^jMp z494J-VO@tcs*11@-*+0qqr9jIvc_|@p8nrUgJ1cT=tf%4rGOb@Yb&b_{4Zth;`-tH z&0L$^`2Qetl`FBeC)WDx{2m(dZ^Sg%e_=1s%YBcJu=BtVT`8@utmc)U;u_C1-mvp&AVtZnE<47AvUl2)8wK7_}I-OCU2A zx8bdf>+b|2j8wKk6>Sa27cy*8R1GVsYI+1IZ)25F_<#eSt=Rg*)w~_9zW;ofKN>6g zFufwaNDu@FUL?5id=M?cg#f{e1Q(tUq9wQxAb64B!t+721Q!AXFA`jMK8Tj!LV(~! zf(y?F(Gpw;5WGlm;rSq1f(rqH7YQyrA4E%VAwcjV!G-68XbCO^2wo((@O%(0!G!?9 ziv$;*527Ww5FmJw;KK7kv;-Fd1TPX?cs_`h;6i}lMS=^@2hkE-2oStTaN+qNT7nA! zf)@!cJRd|$a3MhOBEf~{gJ=mZ1PERvxbS=sEy0BV!HWbJo)4lWxDX(Ck>JAfL9_%H z0t7E&adkIdR|Yxwj&c#cjC^_~@f-LeGi?lvBq(b7QxtXA9*TPBU-0`c6gA0F)R_s2 z(jKI!>z#w!POPV>j@iL@?`Y}N+1p>Z^%A}3&Y{^$R=;`R&an4w=Jf+#TuXP#rHK_? z{rz-$PnT?7cHa;FIMKE5pNpRUb?#Rm|8wEB`?z|A{y#J#o$BPI5@ztwO zzj$Hy+`B)XyD;+QCHsX>_Us71^y%U2E?d|2yPF?An-aFY_1BZ%f4=)iYo5M&+3fyD zJI^iIlwNbiskz@vU%!+(@9dgbcU;XRH`wo8*>UpNHB-eyKbPJ(_fvW6D>KVZ9Jwxi zl%bBl{S$Xbn)LkS0DRKe)4-1^-J%@ zuf4rJ{p?4mA0GY1tFK&o^{cDQ@tH^8H~^MzJTh^*=L;{*v11!o&~NWQ!gRj8@_|#E zZoi6p?6KJO_ntUjTCJaZ@2S&^p1I|y@~z%?*QV^5&p9{V@!Y}0%jdtl{4Jh(_KCg9 Ugc~{JznwnVKNNpr-NfDh1_-sMumAu6 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Fun/glue.rsi/inhand-left.png b/Resources/Textures/Objects/Fun/glue.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..6678c2db8dc57daa6d3c7aa9d817a9a04c7c1b57 GIT binary patch literal 20730 zcmeHPeTZCF6@M{}ZC6@KBN_tAutBiayK_I@*PZT8vf14<3*9s%TbdNa+;{JNn@4u% zO=o7an^+}Q`iIpbjRm!~l>U)a;|E$)Py;Q3il_*FRoc)h*g&nIAgC1~o;UBknYXjE z$-c?PT6qIIGkf1TzkBcRoO|v$_riQ~|GqnK8rnW&7{*Q0dnXUT=dS4QhPT7}x#0en z;p4{o-os79c*oZ0Z#uQh{b>J$2Cu=iv`A3V8lR-Qa2xfc zrWAn$YM!XI#4@Ticf=qm&ZKV2Mo@1BVXYM53NKu2jSUY+9d%yGycX)6j%v+>J7BTA zEb3)4g3JAslO0>kfP_nWa93?A$*jNy)YOo;Ybh%!e8!dMmGm;(mtW1RSVFQMxt8BE~ zueq<*WGEM-^)X(Px(UW;W{d=;YDa+GVs2$?`d~h&l0EM3-P~eRCgbkz2{KN1kK2}Q z;qh^9(>?BJIa=!=*zG;>fTTSRU@DY>s&q$o5EGDPspHKf%dg+aZ@1Xh$LQf?qbAU z!7Yg8t`=%Q5Ai9X%moiIZ6Lh8%LwcPKR(tLW0E@Fz|a<@m_c}g0VWGQ|ET8z$dcl% zvHcZ7k8p);BWBq?GCk8q9J>s;L}?+Zc1`!nks8vd5e1vA=V4DOpCI9Dj+ABkh;t8k zwLL5WNV~+kBCjc!ZxO{!Y$NKq0$Bp~DA-F~WK&xzEM4hvzJ4&_LINiVvOx`o7rB*V z667;XeTgYB04YwtydrL0nXhD%q041EQ4%>bQ<<(cTLO}y>B(v|xd50Vjy65Y6jCN^ z=F&GY49e5U_c*n=W>WJwvs|g(&3F>%w0D4BBkO?;hJ&+5J8_yntlo*^ac00)b#!+l zfT~i=XJk@CITDN^Eroo?w~%6{g*+2XFI~v0V58UE5$!A)=F$gdRabk1C~G{iGQDeO zjR*DpD_gr+W4r#Vi$+sN)y>#&THbUD#yCYx62*3vR1q?&9IG;_88ocQ6|LQ2bu>p~ zfnc>c*GIuB^|kw0I;v}zt2tt*w$$1n&CqWxiH07ZgKT^~xKLo~(l zt1|HG$; z7@Nho5*dvYMr(EAU06G=8+jrg#8m-@ff`DAzY#8!IwuIFR#+1C`g|Zo6iUm-YbrTf z>(t$;^)eX$MF&;75#$LfnNiA=rqWw%&Q~2q;XFW5$$SKdA{MfI6UtVTI0)(|+vOI= zK8BN$0d})Ej24TsolzuPOp=6Lwb2BI^1@;qd6L)&(k_MIumuuKVY-S~gbHimy|3?) zWoC!$UC`Z4YGp35juYASq##}Rbjy1)_rOk^NS8!n(X~m*1etbdxk3buf@~+^rk!Lk zdONy?`~Aj+)3?r?uX<&!uhttZoc_PA%-Dxl)_Z9Uxw<|~i{W^)-xH-MQ7I2= zsme#AJH4pRhnlmU6jtG|byZsit^Mp!RIkr3w(D_+VtAEF^q#0@ANQ&rzPxJoaj$Au z^PXDJs=~cNdoVrC8LjBzF}@W$2$$`;YFieA6RqCnUXA_1vYtOQ8NjVrGdgjw;Yh8m z)BB*W;^DOvGY=BQc-dsG#oLC7TjA0j?)%G~3;&GG+WE+}dF#&T+TgcQi%xQpThLX| zm5YH~!i9Ggbmd|omvG@-1zouq$R%8OS3y@U2671(-c`_*i-BCig?ANndsl!}R3%?DC6$e({?({Q%$c&>z^=Z*02tkvq0;dvNOX z&D%e4a_^l#F{XcU-Cd_1+j3#g!_RK{@h#OIPyYLWAikdSd*ZGZ*ihesxRq zn|_(ssj07h=8iL)hh}g4-H|s+rw?qOn)E(>{p$~%ee6fK{_Wv&k3Vwuxv#wXz@=?x zpL+h{zrOmBt)tE>-`h0u(q}Kc{Lx2$e(u-jFFy19w|@4^o1c8md+F(41z-47YuE1& zKk>y9B*%&yvdKmLH> mj3@eE`p(DT+oemJjc>be+dTfx&$-cq>8X8_U*CP?!T$hv>!XAK literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Fun/glue.rsi/inhand-right.png b/Resources/Textures/Objects/Fun/glue.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..1388227cbd3da61ae08ca2d6358c04927af64c86 GIT binary patch literal 20738 zcmeHPZ-`u16@P6sb`ztvRxL(koG2>w?%Y4`-yL?R**}T9nn{*qOEy(%@4NTD-7&lK zCNr~t68j<458{_plol!ZAfgDO;)e=~NF;F-pqS5Z)Rtc zeUpu~@&s8!I)CHjJ?cHflni*3F!! z7c15A{7c`zl+RVvc>bhS#^u_SUaHKTtLqczj?T+-rzKbU2TFU!Hi`hSqMIVOv9erk z6gS56E!-k}51R}5TuY>RdOSZ7c9>fz&*i3qy3SdnHj>zOatrR)T6S#1&q!+8od4!;U(yXkII|PDj;7#2v6$*bub> z8O4P`N=kNgYOD3-*3gtJ=w-d4tIY=Jk%4-(rJxx!mVzz1>^$DGW3WlN-06GZcvn^i zcHL+mS_29qN(X8-=Fir2;ka%Dt97Xlt-(|d44QqTd0cm`vkfQ^9|+W}_*>wFPqrjM zZ&bEW3!k*rT0Ye_^%#&=oT_Wl4C?biuv}`p>s)M$+|*RdJ#!y8S*faEz45`ZLcdDa zak^-FS~PWuV(>+R5vKFRDl)4`ocl2;Vw?bJOZH)u16A?Q#uyA?3t@Mjz~V5AW)DU} zvL6E$q7qH9EtI5e0!PWBAJkVwvs76Ti@H#&E{+wtjS0z)dlsjH<)9A3(j_)l7}Pva zYdVmt;rf`UO5FfsG!jMvQ?(+%q*&~2jUOymO60IRIms<{$Yk7|oFWr+a>BN33r|dN zn;v$@3gKD@!EW!72Sn}d0Hy+2QN`}4v6Mnn3Ng!e!IVTR7qf^EL2VO(<0#E+ z&NS0Q5~7$C9#ayz!k2AAgee7bEk-FN62oMMg|;adMEk(CidN%JEg2hqZE;f|=7=a>bM9iqUBNAg z<*pWLNDuKTq09vjF>N5cwaW!!TMV7^5ZH?fVV=L%#A*rQ-Cb&*YNsjzgV!}<2XgbN9rB*+Fe7+&aBj!BTu zF!d#-zyPE;gYt@YYj3`iOonch?Sx5Wxm=vBHktyGq1owDIJpWiMVY3y4O@ZFJb05Z z9sxTeBA#u7YjPhVSSz#aRqtjz5p>);Ko8D(i0KN;w;?rAJkB3B@5JqKCcrjzbgW*1 zs!}W`WMV@(5{w}&g?z`ikYc8VJQGYWUC63nqu1OK@mvPLZ0c&J5@wBOd(*pC)_6jn z>22+1jjj5xCh83xRyX7MxV-5UjO`RLN)%gFQc=jTaxBTPX3(%Ids@50>S&I&1uC1( zxjhOtsc+rK`jW2RsOD%xwWPKNX#{?AUDWl&B4p#+DTmsqy=wjNgICFp7@{H8Zp{o# za$5_RBWgj^acmPKS1JqH5S1;{_K2gL*vttl_D?aKOoCu2{h(|kVd)p1X_ybi5U&RP z-Lc6fQC-xkREUQYH}p^Ef7xQL<6_2qiag3qx^R$Hz}5r)#jT2)0yYn{3~ zwq63`zv!S!*DGm)N@A2UrYZLtoAWJ)Q8*7!R5BmIp@@Yn--NQ&Bo2c5$#%KLv5(=T zWQg6Y9Y(W7*~%!QEhb7rZrx~5xL{^N+D#ylcPS)bLMep=wxFF51;;MK8g1Z_Wnzcy zU(nr6syCO|#)<59Qjjiuyyd-`dtfI{#Oy{E-I|m{kZFaMn?%qs$aW%b+(`nXzoXl@ z-|t*FeeKNomRIKXYQ5pY>Hq7>Z2NF;y%*Pzo9n~47;bO&hr<*lEahR1+@u_Y7z~$I z#YAQq7wCGM;j~Y^XDvqPD!LEZvPR$DF>8CM39vzZ1-DwJw|f}?)9o#`!*rMKL{&Z( z-su&g&WD<_l@ylXuys>g07NaN;vbbjILA+q!P}&E2AqF1F3{F@5<;( z#Xu_I8+zBC?oa6HD*SHVI{ZN17pnW-3_q@ylQYN5hH>tFhH?JWhVjqq@OjNJRK``T}R zcVYR$yN$JDmq(6#_u$EUoB$G3k?%b`wfCtzfBoWtKL?lj zr+&P5&V1tIYhQce(%kd&e{G!q!RS}_pL^T*m3=?_$%{YR{~qzNi%;Zwy6FAqA8N$f z_59=KXWu{d&?k4lV&D0V?_B%$-^QlLU;p$k-*{yAa}P5-a`2-+y}a;?-(0<~zWdUz oE*bYv#1ID?CHQ*%`YxmV_Ukjd-mw35;gi`zN2k9v`N(7c0r$k7RsaA1 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Fun/glue.rsi/meta.json b/Resources/Textures/Objects/Fun/glue.rsi/meta.json new file mode 100644 index 0000000000..be4241324e --- /dev/null +++ b/Resources/Textures/Objects/Fun/glue.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by brainfood1183 (github) for ss14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon-0" + }, + { + "name": "icon-1" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Fun/mrchips.rsi/icon.png b/Resources/Textures/Objects/Fun/mrchips.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..b4ce58ba568225283a77c3cfb7770e6ca4bf1335 GIT binary patch literal 16347 zcmeI3dvH|M9mj9lPK78GDWE_f+fC5~b90}2AKT5wBnu>zjhQ5tKr@>AI5)W@yLYpD zW0rL6L@Gn8AQ;PNUvw(P{y|l+g_(p(2x3NOO0i>0I>fPJ$J!JGXAo^{9eVEWCc8P= z9F)nQcPH81-}#;I@Atc(^SI~!u|KM>TeqNaMIk{D3u5i z(Q@zQV?$n#sh4{<`oeTLRt?(Cn%+2Q?5%6kdOI{(_f`Z814%y&5COL0Nk%%O34gNO zn~Lj)-<@X4>q&L7JIcM4PC`#}xZYE3#ev6HCXgB}h#pZcV|=2>i=`fxW_%RQQ5;RO zoS&!tJnPB4yum{FEfCiYe?w?(CLOfOz3sLg^HWq$PfuA7S7ycAC`OiLie@R6C1DRT zu{CNdNiv!!N(Y&Y69Ne>ZpLiWih7*5ifVP+@^QS1R11xm5HXUF+eqdgw-9_z?ui(r4;46dfPOzgEK9X*_Z*z`5-3gJ0E!{M>&X9|KR`hdXMxN6NmBUq|E4FgI0J+_ALg<>`u;LNL z4w@0A4N$RYTY$23Z@dDv2EDu%7D~VknZT zDx#0%7=uYyEpvvC)D(dgWjMgJc>Ngyx7#uuE^=6;C}S!8Dyy8I}=9rwCXc4^hgBND3-L8=52lS^e~t8MFj<7F8w%+NYAb0V`8g zQ6k~Cpv$~Q!;Oc{Us<|!`ZkxlhvGI#=VlWQ`)i{KTY-CMZ7AqmoC!(k9N=XG)}!bK zM@lTOkSgP&Ng#_r8;t@OX@%uQ{oBW99PP{ljoJG6JYv|k-2ZAjy--w zbB=;R%{ff~xEiOmX3LsV2GSkO8y&zI^4W9rw1em@r;&7&REOF13Cpm1lsKqtgLmvt zb4E%>oi0Pe&lW=d&LM_%Ek*@QWcj4(ZbIgdf9)s$|94_WZ}j+%PFo3YTQmcd+p$zIW1 zMnz(|Nf01-)5V47gLqwB2oSvK;==Pmye=*T2;OvY;rSq57Z(BqZ@Refd=RgT3ju;R zU0irRh}Xr10KuCsE<7K^>*7Ly;7u17o)6-6aUnqPri%;D2l2YN5FmKd#f9gCcwJlw z5WMN)!t+7AE-nNJ-gI%{`5;~w7Xk!ty14Ls5U-010fIMOTzEc+*TsbZ!J95FJRijC z;zEGnO&1rQ58`!kAwck^iwn;O@w&JWAb8Woh3A8KU0etdyy@b?^Fh2WE(8ePbaCPN zAYK<20t9bjaTR8NG7X~echWuZ2hlgb(3^xmruJwx4Pk=lT}2RmKOl&SYw&ZNAi8OS z_;)Ko_@5$(+pPZkUtUWP1rxQQ%BJMGi%&8gWA#h6pXs>e2ot`t?}W6xlht4Q?%3hC zezm8jV|dTN2OIVA{>qA{HKFm^wiWx^LW!x|7ik^7&kE3@!G5?v@ zOIGiFqp7V^c>2M2z9_iw&);2ibV!1qi1M^=+>Zo6q+^60Tg zFN@-$`-fVK_r3l8)s=^DU3t8C=%w=q|50&j;bR0b{LZ`Euk5x0?MH U|FHXO&d={_*VKict7_f$f56xf=Kufz literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Fun/mrchips.rsi/inhand-left.png b/Resources/Textures/Objects/Fun/mrchips.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..0c54fdff63f88893c4c3b21289715ca20027d04a GIT binary patch literal 20759 zcmeI43s@A@9>7OTMWo=8rBddKbv13+dF{;3x}XRm7^o>GC_d(K7FJ<**V})AEsJULS#}_p`L88fhk?k*1b*HD8q8Gy9lb5Oh-Rcfam8%LjWn^Z)

S#+yb0A2k`=#GD z$daX95hN+ZoRaEHO-?ch*6c`5wDKS_KidYS5yUtk-^K}3fK$VR46`LF;@sA%2#r~c ziWs9y#*%HZAk&;sXa}PThouOGQv_Cw7!Vy~%r`&-*}%zZ^0Tun4nuxagv+i0mZfTK zgvKS}oDvlgBQ>Z=O&+0%wc3G37fGW6Ml%|Qjl^{fLorWi2n^S0F;YunC_x%1%s>$u z&nF@}2$qa?(PS7I7w>5f{udRI>2%r*T5VolUSu8_X|-o)ah7GZ7@;Ky6iT3u0*jN& zM=g$CZX;ehalj$i%{HgmYSBn`Io_Jc95brpR;N4NKD(D zk|@YJwp@Fbt81d51z8{)Sey>1hc~Nd%d|SJj!bI{P0E*BY#90^IazMI+5To{H`}zs zIe02W;6d7~rX!`m2DBrA!$H6}OseOu1ccgwPDJcECBU_7tl%E80C=M|gdqiH&s)PfedOW{YUeb3AU;HdXNr z9G^81$2mbXfx)qeu_%tG;IwOC>-u510mJ-^xFws|NVbY*Q-RM0j-wcrf-?q^GLY<8 zx4NHDQ*}58Mb63H&Vav|p9xVgn5_0}&KYga<}!fRX2~#WeU*Na@}M-tTC=Qn*dq{4 z8nw+;H>(wA6>_Cn5n~a61G>QB=NjlB*SsIZWi+n!UdS>>yQ7Y170jZ+*C>vO6irYh zN@5%a;R6xn2%QOK0WJz0MZ@ciQ7g@TXu{Vo&xr8Uw_uvXIGUtzlrRY%(=1Q1s3340 z$pL{D2xWhtnpURcuTUNggL~8kIT$yGKEkEXSZUk7Fi5PXm@$-ZK-Xhtr>DQ5w_n zsAz&c<9SAp!nrH5lz_qLKs4VocWvWX80Zq?q9syhNXi7+ z0zd$i#$ocqi4=jdB%n|p7xW}W;2Z;Vu3+C--50YwroF90)6K^%j5R?|(k!YIXxcL> zS-_xrN^hcZf&wCd6y5#wGj>x$!|i66CvsVSGG4C}dV&K0hrT9x0=k~!P>57O;hl&C zD^MiK!KmwQq8T$cHI-nNR)m7a0ot`9i~>20Ykez%E2FbfN~k!)TnM1qQ`v4#1TfW&$jZ!GAds5F&4a zVF=EuyKw_!(BTGx@g{TsJ2yzc-K`6moFxN@(OU1Fc`N=*p2KkyEs8J);zXQ60o)zJ zm4hZx9i`(a6DNow3&Yf1c#gmf1PfDW)pMR<;|YEuu$%wLtb-wzgFAfyGj_phnF{PM za%xO=Yqmz-GH9Gu4QI1unFUUYuiB{=(X)e=Gj*>k{jB|&Mk`GS7y(!vs$=1b$8Z!t zIabHO_d0oM*J&^$Nid9Knjx4p9&D zKvIO8435EQlwe3)U_>1*aQZv+oV-;h^ag@}TXl7D@Z?wCIN?R&ac0ZY!7nVhLd$KU zi4<_;=;Lj~&qmXR{);J0>xI)l&pqGuq{In=!2}jV8JvSVG*{Zj!yTHACrz|K>0m|& zyl(x2;Z&WJO?NM?6-kxtVDBhnlbz;0^!z`Fr0$s0cmwO*6yLnz_3rN7$yvOVUP-5u zFs9vRe+!d4c&={nnxq9NxBg=)ht+OfL{3oWVTb;-Q1PtA56s zYs-4K=ML^xnla;R&FhCaA8x;62BY-Y!2k~~;3nFY&_?4%?M-!l)?C+8r2~kpT-N~u zLtyZu#ihRVLVZs!wyY#q5lRM_R7VG^zH}lAevYkMKvq=Yb%a*6B#N zMQ&Q%RAYoWA7rJ*nc)$>LpnmC;n}xKr|E@e71LT$^t<3ubWa<@ATT~m7Q79>>xRg+mWmH@;3MB;@eM#UwgP*PBFDWN3GsJLVlN(w42C6r_t6_<=cNkPS>gpw?y;*wD) zDX6%VP?BX-TrvtJ1r?VPO0tZKOGcrjpyEu9uc1f3bXk z@ce{9;?()Oa5-Rp z3a5RsWo@sDq!m#OH)>NhKfNY*-p;!7RmHU-YghDndv)J7$Huddd&ZQ)dK?5@+o$xk15Xm=48M&aE-!1zvGvt}P$b|T+6uXu7B zQ#}2T!OY)Jd{TEQX+z-nGiT1ErlulDU6*U`j+_5`MNaoF?Y4BdF(?1C4XJO}1n(!V zjN$^`9DM}jEJB+6l=OUHT~_s_OS;7Gs*C1KiJXfP37=PgF{R|dK}FK6 zqt}j2iQe)|JLLQ?4a2Fd3j=dzg^Z|O_S(vZF}9q2{iZLhKfZWT-nrr#U%#}4+&O9c zgdy2v?`v%>U=C}F}D(@AT`Tp2tx}vID z?ZT3$*BnfI?u|Fzcw(HbG*r|7{`aPnqiX66G3&aA9NJ@DKhd5yrdQRD2dvdAt`nE; ztqju~_>kLww)cXMdoL-UP-^c8~BHq-iwx(DW(P7R^W>N?!py(Q95fpJ%CNp0k6_SvILr_bl%6hfW zTD4j%>ehC*;?cSu^{PtU)(cd0ThVH_t+j4_)z+@oMeBZ(g9Hr9D1C4H-VBcfzVCm{ z?|*#X|C{$_e&X1X9fSG=AqdiOR6<-5{Em@++qH$C@0oHgz_0e!gh_S;>Cj#J4M0|v z^+J%*X{O{4A_}stkQzZEqYJFOFdaBl29RMgM}=P7{ZXjOBu0f! zRO@lQH5O!=5(;f#eBsz+p>VpuiJ{TDpvVF(6p#%Zys98O%WT&cM1?x#YT@6~FczwE zk~pSEg$|Pxs#5ids#uE+sMHY*D&UMprQsq7wMIj0hN?)MP-8fSQ8-FcS{m2Vq{@AT z>Vn{3kv7q&O^O@gRtNu!3e9vltXd4q&(Dv@ry?x242_c1x~J0P%V7R{Hz9d%GhEc)imMQIOoPAcx7=gdAz6Nf1DRsR=e| z#>M80DVM7wA!yoI8{i!lTe8KHrE`UAqQ@7i*jQ(Hs=_9k%%UaVJ~$F<%;F6kuQU+H zJAjVFVJzYtN)X8e;|y%|5S-BBxQ`GQWg{7Si)b>=@X8%dE5CyH#V$0?oI#V{E0WhmMBNFot`cT#fr8d@*WwAkvfR2j9{0;l% zin9p0QdSHz3&0LtVE1tibdWRehw~W?M?Di+CY`J5h!(*lYQ0JcT%;M2rces!aR@#T zQJz#AQ4SEIz|#zz*F<7c?n4n?yWA1s9&bW4kMj&g6DVmE+@d)H&7p$8^AryRMj+`& z6ithOSF!c>Yc*>SC^euAP&6w=V+#Vp^Be%Q$VyhTEi2kUF`|IeqGWXo10oU{ z0jEd;ie^B|T5Ti=l45xQr5Q$Wi^h#clr`c&O;G}=F^G>CAx6@`YA8y=x~1J{I3GzdM@;!F}va>&VXp<_GN}T%w#*O$)JGjE;QX28Lz8 zm9{w>9GBFFY>mbH&yp5#gq_cOJU8GtL(q(%L2-r$aHWP>#Su9Cmlpvk8jP?EsXcD? z@nYj!ly1fcVBgK0Myn>Yq{g$E^Py^5NJBiEvCnLd8@x6OnY=jzh&s%3XP$w^7X3ea zjv$PTD8fAuFA_8gV0Q>t4u(S2w3?@lyda7kEK@FE9?5egt|d7w#VMY1hqk-;iNI!( zlXbAf^03nfaK|oK%z3~DE2qk6vt+C4TLzWGqT;RAER(=X^%cuAi|!7(ey8qnrH{1V zQ?xRqfRlhzqiPPWcp9DtD9@;QlxBH`U^ziBa)Rd;A1zu*Ey-vJrOtQ?u{&BHdxao0 z6kycQRV+!WQG-Ckiod>^~=+|Hn)g2VsDU!Zt0@?9I(m$mBZCIE07|p zHW&;|_OC8eeT4bbWqI5d)}_Ud7_T;uAL6`l`*f_4(h0T}_Q0?obMB3FL?m|Kn2$8) zT&mQ|X5~72RSk*53nQdYH>>Y-W7bIzX7!zJ%fGlDqx)iu% zAs~xbi7o{$SqR7?R-#LROBMpMh?VG4;F5)aEMg_P6u4v|Ad6UuE(I=G2*@HfGlDqx)iu%As~zRfzcJ@ePI+Z!?#4` z!`DGowwjv-UnQjy5|Z=?QaAuXic1jW_C5H01wnFg1o?M5f@t4Bke-&;rX3oAAb~}r z;)W#`)Lu=ip8nLxkYE4N&kr3h}`GvQk-QN4nb5<8Pwhu2PhugAoMyKCbY^z481^YuG7mu8+`wyyk4 z*jsUR=}YL^)psvwE*{&nQnTpK_;IFWux16~{wX#w<2FZsaCT_7`GLoeALnP!-j_1F zuyDcFt<>8!rXGt&thWv9+o|TS?6f{@*wsDPA;_m9dA)G&^}4$oKd7vXEh{Ta7#XuR zF&#OPNoR(XRZI>$)~oW=sZ%i{rf=)BbinJKN-N9S4aKmU6YTu&RxVtz`3d8dJ3Cq( zxR-M7a$)-No40Ni>9ERe&%E(;P{z16UAivVJ^7n=KZ+T$AvN_+ALs1tbn`OCiknp- z3#r-V6%)>X5sF-`J$^1Kr&HfR6L=Cy48QaF&7$zHiW7%cT^-#U=@R@=8)VB6@UkK2 z=A2(NT{5aC#njM2ZA(5sfBxeQ(`GKNT{)JUqFdLmY@D1NzHDCMfg7~GW@pt( z)2eodzS^^Baa_!E-Av!(7fL(-cJu9%*^G?p_x3uEW-%6vizKKW-U$*9Z?V@*T z=J7F~<ZOwG&d!V*)K(RyJy=vcOHSNQ&f=on&0%{y~S zN=ml>6Z^s+DhQ2Trmw=pazrwn-mOq!LGm$HA`n>$Jid%xOM+%cQ2 z+tfDu+`M;8Q;x2FcI)Y?b9vLsT2Hi}&04XIC_n#&yRyG zMMY1+Yo>JxioCG(kJhT6(?XwLeXZ*giO+RglJ;xmm!jEhJ#u`&{zgCPX~(Im%2`RL zDiXumwW%F5yIXau-9cSMVPji;&2yJ;2aFv1R_?h`eLfje6Nvm&xVK%~lB);Xe|PLa ze%iLQC&SNF-J1X2i)BRdl=2;u*X*mi5QrSxcemrsezU@6?g(3Yc#Gy@-SVn_7hfv8 zJB9yGQQVxYJK~q$oqQrS_2+gM$s*xo?B!Rl#W?ofE9z1)VS{!1uP|29Ce58P`0Jfh z%Rip|?AI9~75!|s;5qwi#`ijM1}T2G?i&1Rt%~G-s=gL2e7o(lOAA`}yyUOeJ20qo7X z_%j&Yh3s28XkhQ%3EkVLEkBbtLA7$sK|J{MPtPB`RXhFm)2jjx2wnGAcV%x}+qG$2 z#g*JCrPY^9KK()6Bj8TR*}C#sXTy(PzHty7Szlg#xx9A)HZ$0&jh?U5UfK1@E3H>8 ze8#q@L+~%y+=wF~@c}1B7aXMZ1LwBVwoge(*?FVv#J7h#uMO{2gr=_=Sbezv$}zeX z>Y3roUVFC#ed$WY%lhE~ub5->@d;I-rs3&x{s&1g@~{8^ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Fun/mrchips.rsi/meta.json b/Resources/Textures/Objects/Fun/mrchips.rsi/meta.json new file mode 100644 index 0000000000..f7dffb9cb5 --- /dev/null +++ b/Resources/Textures/Objects/Fun/mrchips.rsi/meta.json @@ -0,0 +1,22 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Made by brainfoo1183 (github) for ss14", + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] + } diff --git a/Resources/Textures/Objects/Fun/mrdips.rsi/icon.png b/Resources/Textures/Objects/Fun/mrdips.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..5f1102f79f1b7d95059c19d5c45c8fed08205a9a GIT binary patch literal 16929 zcmeI4d2kcg8Nk;#C9Z+AlN6j@VXK6eFkSC`30Xiaj135k?Z!4!O7?hbZ!BqLX^oE( zt`Md)g$6>((Od%wM<#A)pioFl>%pXDra5S#N!k$Tw3GpoGSD_0?WBDx$(H;qZz%Ch z|5*)|^u6zW$Ns+ezJ2?LSY175#+c$S6k`}Rrm8Yj13z)+uV^HEPj+?v1AcruUfGz$ zuu*q7e+AfR|3>_&8gG6S~OYrO$inUI{eT<6xa&h5sk!>{*E$V%C8@O zcZNwHo|F3P1eFN&P_b)2DSo}^fkr3i-gbCjQB z@XX5>EQa3#3ElA5geo%Opj75-w(Yo|B-`8DOWWB}E73&KvMiGnLoy5jXAsHGn5}dW zvEj2r?90LNrZKTpca= z;XjU_pJSh%gqVjd-84D}naj{TW1BMrwS`+oS8T=AI(JTvy{`EUD-l)fpcz$~02z-p z1<34R&dmM=cB-ipUczZP4kgW!B&c4Q_u?h6Sd?kKgF9hnMQGf50R~L6ZQX$%;Y1eNGWFrAY+C zNt7(`v|!Nk$0F!+rs=FoGqgZBNx<|th*DNWLQrYS&?EuK>Wyb+P!jAcs!RwJuM)Ze zGgDPjB4At4Wlp1D<6-h=mL470L37))TmNrH~jYb#EJJp6#?5*L~45uAL(2EZ}4VUaF!SEFm$RLZ~!P z5kMA!%2IHVim(Z$Gs`g_6=mJmXtb6`4!DMUj{Yjhyvhl959+qtKTw^o?s3x z;Ef>|WIl9^_GSlA18IebO@Qb|nF(HNnHcjU2qvUI&_??(=VnVW~kC2I*#ROAArl_8lTHg^VWgA|s>o~DIFwC+&U$R#;oL&)MUJwL`yXfI^=YwcHTnG?%(Zl7=2hn=C z5FqZNhs&K0qV;egK-@(SmpdOs>)}FxxQiYxcRq;L!-W8G7d>3=d=RaN3jyLTdbr&A zAX*O>0>oYPaJlnAv>q-5h`Z?Fa_56+JzNM7chSS;&Ii$YxDX)jqKC_!52E#OAwb+k z50^V1MC;)~fVhhuE_XhN*29GWaTh&Y?tBofhYJDXE_%4!`5;;k7Xrjx^l-WJL9`w& z1ckT<<1AudbkiE?xKgwoe!e*a3Mh4MOR$K*JN#Yz z#rot`_?voMtE>rQSl0v$TlO%9UHcFGJcnUz6o#FD0K@#7Fs#H{zwk%}hK-P_LeuIx z{_y?}-kABtd7pcA>HhF)BGmNNXwN-GtuGvD{LLh8O;KY}Csy*e#mf&ZuiSXD?dBsAeU+WD`OPr3~#-3erW%8+O+d?b< zwRgt5d)5?uub_A9N7cLPu-<)9Z1mx&En}v3-(OgLM7>nNVvoJ|HXgeZ3q1YQgeA6p z?jqCE(^FaS>)sEAk_Fe77S1i`=I_{OK34y1#pV%b4wl~g`qA#^JGak;?^Ug9FC2V( zU-#N8S9)K5@uL;fqeq^Y`N-ylP3t#|x`&^kCe}ZDvf`;Ff0})y^YZmIGxt7ZE-CxU zD?i)1>h-BR<5jP%TQKR;yARD;v}@&af5qYpHqJe@G;#Z^wX2rD={Vf-^Z^xL+`8@9 zPm4Dl)sJ_Fnj6QRI7!H>C!Fj4_OkI8r(BLb_}#;Y%P(IGjGs?@>o2o@{?fet`=;F*$=cSf&Ry6MX^$LbsFk8gOqcG(Lj9xSe2rA+MR|9*z~V9u?} z7VS8^_`sJ|)XuB`=kgL!ZGA8%M# z^2dEvZ{N65Sl<)gF@NHB z%q=hP-i>cJKU^@Tyzq4AUE9rygWn8|9AEM0pDZ4Ix(B<;ViD{_;pDGv*z5c!4pr0V Lgno4211tUuB$>eT literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Fun/mrdips.rsi/inhand-left.png b/Resources/Textures/Objects/Fun/mrdips.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..d401a6575daa1e8a846f1352475d81544602908b GIT binary patch literal 20913 zcmeI43wR9I9>6D|9>MjhQj~3qQl0F)cV{F^SdplWh-iX(%+4bjc6Zk9MiL}m)mx=n zl#qB9Y0*-TcveMSy-GEDwbjxpRkT-?Tgq)++%vm7*-a!&(eJyx-)z3*Y|i}u|8wT| zKj(k`=gjxb^pxa2jiOpdK@ij^Dbbn=${xyZy*l9U8fnZ4P}FxP4)#J&gXYR_1XQ%B z6$JGgC8cHfGHm@APIktyylfX@a-D7<4MDNpbKNXATJRa{LZ;-3i@vyXceFv`Rq%2i$?cP5mqD@1+U0CtTy(V3P{k*BUru*LLoRQS9iV8;W!*+J1~FEr#B&uo z?re|4-!+~y3J$?3xO`rqhgPfS&XRqyH%qRe$%@N0HVk}XvsJWRZGWB4YMb`@dXEJN zf=H{?^rq#x1!JnWGxser3v0W_wUM__%jCry?emcVdLQGH?P)yqFT4V}{^7cb{{yTlr+s)Pnk$eLhf zeS!r;z*t0R7)8@i%0IBlt_aE?NSKj;WEC4WnU}=8kPQ@t5h4wx8I)i!bVxuwOsJ|l zn1ej)WAA1lTrA84&oQFxak4&(rkCuHJ)lQ|1&=jWS6!`^ zRpzplSrPBz1TS!bH_SD_LH>E)lg+GLt6p$OmO#|uWlrLmP@^cq6BI_^FpjVYfG_Yc zi;*Hs3nFl!z)aR`o~z%(U1*j|emis5FKg9(b_f~FBs zgv}x%kT}j^COdzRtVPUjHsQF!`azEnku}@xtciqiR73;4rg4#kIhMjqG;lCty88$L zF*k+>lN@x?L~&*T=4e)g!8}J`8sW?^Mwk(rB2h|2>ANCOjd46~M=_Lwl}>=}5dbC4 znqbO~A|hv|1lq2>XCh(-k;P8K6hhizUIaa}+f8N|gaw`^I0OV9tooh>YAc7i@ECfh zAgQc4HXD=V^7>d1LzAo)<>n+n3L!*0jZY;ELG_AG{OjjQg5n2SEq-dDrC@MHAZ;t?heuf#lt)c!N38bK`BTPnh6lTU)K|q18 zaXSWFPp~jR%E6o&=P{ZiaGV7JJKc!+=PDwK@oRVM&U~X2b4RxzRGd3U~-R@3p2yRoaxs9AG z!F8tuC1A=gRkIPVEc$X-j}V^;7I7`PQ^0CvwW{W;pCu2(5ngue{kZ`_C@_;a6O2%- z0FnTZWY8!A{$+Uqp+NQ!6AYGHUpgO8Y_4})i~D02RG*xn*i07Vb=akqm{xq1QTcyCTXzZnOH)AS&C%A>djK9ndUf==G0rf zx6z6*7{#D^oKXXDaJ1g{3Sq)njOLZiry1mdI1e@%tO=oD%!H$yi6>Ex1$oy!#hKtK zfQiA(42FSI0DW-?=2vQ*P>}?kS#`#Tmb9?2;14Z#i6%9Tz^C%Mf8S2i zwu8N&NE$j%{XdALftXWy1FLR|Z{P5$yZbL$ysa+Gn*Umcasc7T_8%~qFa&&zsPZ?c8h*K|>fk%8hF`9#8qyr(l6)3$ zq~-5SmFh4p<*`fP>A*nns8O&`B#DD9a@Fdp8Yxn);K;B_;OT%@IYObpvASQU>V;|* z2iK$+b|I)3m^NV#1^tc*)PhHj;Ay9^;&Eq~&(xUr2b7^Z`U8xsCiO;C5}HaKmnKZA zkd8|wp{dkyX~Lum>9|x9no1p)CQPc3j!Pw>snl_4!lVl6xKt9FN*$LbOsbHMOC_PH z)NyITqzdV{R1%s>9hW9ds*sLLC84R*acRP&3hB615}HaKmnKZAkd8|wp{dkyX~Lum z>9|x9no1p)CQPc3j!Pw>snl_4!lVl6xKt9FN*$LbOsbHMOC_PH)NyITqzdV{R1%s> z9hW9ds*sLLC84R*acRP&3hB615}HaKmnKZAkd8|wp{dkyX~Lum>9|x9no1p)CQPc3 zj!Pw>sk|eusL%_<1Q&Q~SPpnS7#VS~F?h9@flExaLD0C45Hx8j1pRsols`aFHUdHa z90@_p0tjj;&l#~V0fK7pNwUVL#R-`wiu3v>cG>WF1tWJZhmZj;_yLNi=$@Qg?{IZ83_jq>lY-{ACQ@*0vH*S>g-a4=B z?Aaa*dYINhC-*fFYS%L^f2YY5`-a?vl395R>&*Jk&SGy&orS3_&nF$2+#T9yZ)!X8 z-IJsHpP1OT+vT^VqRmgwuy6RHrK?SI+mV$e($6DvJjseP}Gh?{%$>U>{9zaxYs%OBoIF9%lgx7J!F zwf^|>Pp|CSwJI%Q$x-OsuTx(>hy6P2r41P~#TD@v-aN2)X+hJkZ?%C6z3!=}ANot< z#zOS$ljYwOoI9G^_6YGw_Tqix7T3R#DIKTg3)2e__@Kw#o5Vg&-%w1%H`^Ki%Z(A= zCZ~M0Oc z?K*kZLq9d|rPIkDp7HFdKW%aH_HNJS?Am<2p!=z{=jnw9&pf~4#lEXvUj+4!N?hC) zC(&aoBCmbl-!^j&LtmY8y#8j-_C=Y4x^!ID`q7r9D@J9ym=4>RE~EMkS~GjhsfV_9 z+tKi~$hPT6>kmJ0W=Y|ggv%Sj3t^6#q!G_gy7FUlC~DgK+ppmZ8&2yv`D)hiV?Zrx zTI8%Nwes6RDQiD7$Hu;UY54BRDdVozPd(589aNMuuT>t7KQZjR9p3yLulHo)r9&Uh z?AGb~e$#i>a;(oEFzLvEy~xV#n~r!#9L=82HY5rg?VYp%m5RjmYo=_h;~Rc+QF7$w ziG^OTH~-X@TN5958Qv%xRC*~Rwu7O{&&i@8){YD2e)`e5%Ln>9+EUwe!M$k^6_dUGiK+$GA>5il!fJ_|Vgzpa0R;|N7ZY*Gk?PJc{bpb>hjMr>5mTmr+_I*Zy?s{I(a` z-B=~g{o-(wx^2qmEiElfFYH)$sL)vc?}_XCrX-X#UO(b`yDdzM&X?py@w-dwz6Vda zU@hs_p_z5XfHN~juKg_1+}v4`JZp8r2h$1@iE1NlFADA zZ^-L3v^3I6wEpFcZP>QHElM25OJfR_tWSS-Li?XzxqNx?`FE!{w{Gl>EbP~J*wMj5 zhhBCza`!17ehqrBU&IjtZP@E(dt>|kU!NSbS@Gq`qT}6bLEFA@chpui^sAqWbJjfox&z6T0_0d2wOIz!fJ@b!o}CfN!>?K=y9KG4#V zZV>cBnIR#`mZTl7W=)x43}@2uVR@NmKn+3R1M-ARv>sF|xeO45L+@7a_OHRfFHcutF}g zlh`Ik$Oj1uWl7pNS(M4b%amax%pxQuqv$YHNl^q9D#H*|sX%ZAj=&hMCJ;4&$(%2_ zCJ_7zw{Uv(=;$F%b>P1UdAiMJRx1>_xw&Dvc$mqOra)<$Rv?%H!(c!GTPGQ9Odf2s z_H+nw$%*Ezti@oq8B9i*AeYgZvTYG^xuB^2<(yZhxn7ac>ckG9sK{f?3N#E+G{wZR z^*rWmONQMvj#cm(d?s(SSpgr~B%e9mWHVXQP0gsRzuc^1;1jL3UU!rBW@a|2+G-n| z10Zlh+9annVUn3wjOMMTYzxZ|&H+>D+0^WoGw7RdQTFhZ^&M+4a;98szi@>&i#u@K z()eh`#%nMH#3Dk&D4Kwh_P|#5M^H6_cnEP&ddbk5ID>wYTLy~42$6u&Y7|xD#5f1L z2az{BSc4p6W9}!wlgvW|$Ex)vOD1E}7&4hOUST$-g)7{H9+dS#sg5#bm@L2|UW11# zni_7BE84_n3#(#~k>#zx1y&E&00-IEeI%3CaMX1n!=Q0w9nQoWIJH|Tif{yp5jcz^ z3j%5fET&Kbn!rBKS+;%x5!a3fIXa-?OoIqhr&pJiZI)a8-mSJ#) zXGs<#9#AyF@r+WXB7oI2)w))zbS$pqaUBq?5~8sc0ih8kqGB-)R_b&*r)Zj|U=^X# zlPE^;9ItyoKp2MRd4f|3fT&v6Y8_5;EJAPsAgzowhf*wpV<-?!@~vyN9z!u)#jr3z zlB`oSqSwPJJ;Ez-oW&>|_kdXIF`bISaRKYrju1Vg(&-pV3FD|9by!W~dL_&U2gX9qW2Vq$#?+lStn9zC91|KSDolV)x3~~ zc($N~ZHXJ)HnQoAF^%Um3fIhB1Kt+>FMAF}^(4oE@`~Y50_H*E33d(=hn0j9K-+&pAWenfy53Vi2?HK#FC+Ap#GY0oG*9;VmF@%JddfrmVgj zk=aZ##%#_ou#Avj6*)%E*__um0WMd1Nc%fQD~YiP#?wkzNrN4aVhA2)NF@UkDuzT= zG|TE~)-}Zki&jjHk!n=RGpGbb2 z=Z9aEEoz1yX!HMnT$GORZP*LB`m4shldDm5?DIo}omx0U1Iyz+trDmc!0E5rWB(Ew zK6~@p!X)a&-e4IzrE|_B#%BB1mYrZZO!W}flrGc5wy+K@O^9)8bNM0K4YxJ zVAFup5xX&7!ya713BKc?IUd}#;x(jFiGyy-d)S*J&XC7vBt;v*L9oO$>R>`H&t%RQsNN&}E9DG>#(1eXMt zC^1eYiTL=j8TCBY>M0a3(KbV+cDLO>L;6kQTrq7V>8EJc?D zmnZ~85lhh}!6ga-QN&VoNpOimKoqeQT@qZP5D-NyMVADZCid z{gMhn>S73b!nA0@-XRdw=2C3*poF{=zm7XItmoJ+wZ^5@)t7sB9(;JrYuQ@^;hUF<@;N{F@^yVrKRP_l5Av<}Amwg% z_QHj;CGmYqwzm0s`_%a#-W=k$JH3mtYLw~S$x8;77SJEG>yeeyVS0(RvUlN{3FCdC zUy6!~wY@j2jq5cpT3&r4B{cZ)InlaUboFR=$Ucc`LIwO#$yGb@mD+cIhv500F- zsyHiU$ngQsEvh>iyQ}|*q5j43%gg$H@zaSIEK$B0$Q$-)<+%_DniIWe>%!14V|sN; zUl*OUBdF@l9fK;6%2&2t#uo-hF8}<{BYiHB1r zkh8W)dzF^EMmb@<@rR$!v94F33%u(>pWMM_YdBc>dZiko8E|4d1Ip?ev4& zg3njhLTGf?)dYpY2TzCN_^t_j;lW%U%h^FNX2vCZnOFq zXSdmKJD1u`A0Mk2KfAPG^Q()$-!>e?Eq7<^(1O~pgEq~%`^pa`@$ZjjjEVocu?k8| z9Cd5Kp3t?K+kMx+d|=mz87uvFlW_~*4|yr%_IyojFW(dU&69&tZ_xt={JuRf|8)B` z>+)f$ZaE_}6|T!UTAMsRXG6l7w|~8|e}8~a!O8W+vOfln>T-k#n#CaBr+iwuZ{NAA syE=|9?p&I?dncQiWSD(y6rHwv{A({q_?g|!W zXD%rH|HN=B`RGiSnOmKAG;%KPY-14sDrPJR@(X5gcy=QV$SL!5aSYLzn4F*>Ww3~w zgL8pqfQVDD!itQBWeyUqjhzb?X?8Jeo=^}W)zz^$Gb)OyONea&gLT)eEnBvHVpFk; z&WfmVwcOOiaP8B#E=~_Fi5uFdtS5>Z__zljIMBMRp)pZx6%!kqp9!l*p2O2%M@H#c cOjQgFXB{Lqhjdx42D*U3)78&qol`;+0KbV#5dZ)H literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Fun/rubber_hammer.rsi/inhand-left.png b/Resources/Textures/Objects/Fun/rubber_hammer.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..f38c49c26d0a17a8041ef170a5032b39a4adb7f2 GIT binary patch literal 21077 zcmeHP4RBP|6@H+V5KvT59IT3f}Jz3<)kyCxg*LkO*b5P}4&Q}4U)zU0YfciG+i zKpjo7mO50YViCluObzXnRv8_t_*;#`*lCBUPRsb$>ZoIFwUtpjRH|an+kN|!%?9$8 zSZn8HlHJXH=Y03x@0@$?Irq-&4ed)8pIm)*HOFx$FKKP=fcJ&YU)4$Qy31bsGQ3Ss zw60EZ+>F`I-xO~9kI&+`Wl_7cE8W$0NtniaYls;)Sj}K>0;D;vwtg@{=o*#|7_8fl z)ddee^6Oy0HtT|`-r>Hv3_YMUB8CvX0Sd|T{{>CfL@j+fx+HrEEOKC z3ubV`@Y!h&1p^t8^qRV0gVSN4tF1lI6i>2%T%+(5DQZB~YXn(UCH10!hy*!=a0nw_ z#9;}AB{AUs1S8e(sWxd^;g04Ow>$W+F4&V!C&Ho7z`#Jw0IrEAyF-Gm>mekDM3Dyx zKD92ECWCw|H9rfI!)azInzR#XJ01%-xWtI}rR#!0r=$FjJFnhEzN1*mIxk%+O34Vo}!1V(Ap<31#&XJ@Irr)e|45%lzYUI|iGywdMORJKo;j zvR$Xri~4~Am(sGDsm^r?7V2QBcwdsTMg1_9`Q>JxN_Vh=btV7>;$?x-wlxlp^JH8S z*q}X*n)4*9mhq{qscV6>a8r_zbUfJ^k4Ga}cWuwvBGA;7anHclR@pH#K9IVgHdLxo zaGU}fYbI$H5fS*JfOsT!3UV0BVL@GhgfK!yAX&*0jJCLGTkCQdm`5@%;7&mbV*w~=R zii{c>bVY2@YD3Oi2f;$`t_Qg7*#Kt7scnV}qehexCW;WV6b(!%Fq1bByikQ9LC2DY zbXp;_C?jmBs=zZtFq1v`UKg0=dWZr4!UD&JD9Vbi3Kfo;35;n9$q?c~PZl9er$jQrrFBV0 zuJcXOYGi~NCIt@xu5-|n6hoLPnIh3F$3rHY5Qas;kbrATc0Gg;Rpg1xB%+y`B?y&n z1DH$hMBoSBjINqh&iz64}-k zUJ^^C2_!>Hnj_BSY+y>1BwavQgMHjGd8|nyZ^*F0OA?h0A}NBRLyQ`uUdVV{=v?mr zT|Vm(0Sb%Af?Zw5ZZOo4vwJdACRAp`fbBBdQ4!dfj+P~Ds47XcNXD6qV|A5+F{o_v zmTJkoi6xmgBrrYIAgdCv#B`P9x+nuPrmI%l$r{&k#|U+51_rBgRBK^adCl6afIZfn6Qf{^`uKee^sv~` zYK|;aMrwSJRNP7rkR)s9hHQKyRxF*OGnpcSq4a~YO>jy-=S)MoEC=yf&|erE?IE#lW=2A} z;p7@hr}MvTF-_GF#uh|BQI~iX!Je#{kj82ZQ572&)h#PGzX~jdI}r*yMiYFarStJF z9_wdGFA)#oDuKg52Bo}}jQ0leCkTObJU|kOs7;9zN<;lI(>+?t*WEem6=D1r9n@q= z+e=U>8YRuq6!@IY`MAR<6z!%+vBkroh|J5D1ZArvs65n9il)mtvJjkGR~ zGZ}@u#kfhxaT`rzGKG^O%3H`ec_I)=opS}q$FPi$A`ytRl^U(=k!8^iS-PMLo7CuB zVge_!6G=e|@VPDTv)lvoaU#dAYtivZDGD-~&~l6j>IB(*#Lab5gi+ejr?}rwUO4^y z%=x%i=EQ2f%EIaY>&ndf@aTFkS3{1i4|BzEcC&ABQWU3@hc$AHau8xLTv~;TGRs_n zKGASmqCRRZy6C2RA2M!@KCxrg>`;rq%JmgL-ZDMgOBt9#Z#g?O7w9gk%4?lFy)e}I zP;+LI!U!B>jA<)E%RK9H>h)+}rXE*C1V16cd39BbAD61GKDui0<5Jav=E|6zj=(`k zW-ukqMOx0qWA;{T1zfhXh$71vPP9s!OEucaPnRbKJPG^W z<~1= zT|Ql&81N+QdzVj_Ck8wT``+c#<%t1L!oGL;ba`UHld$hyK3$#|@FeVemrs``20RHL z)w`+-U!lih@V$8h@CA8?-g^kXfR78%){ZugTmKb~8@i6;4u1mgf8)45#Bpz3$#LOr z95*+<`CI#1IBqIk(%jHF_~PHU3u}VQ=Uo5$8TQubZH;qgE@+s!Y50;Yzx}h(ddnxL z{wemreZQJv@7XkbXzq!(-*MrVofl2HFVTK_>uDYQ@HbKqcHOBxbyIEkE4TN(rf)&1 zeeXYZ@pCF(d_&a(t1o^&c^Wt6)a>sQhpu{V-`4f7JRXWHd;GgoxdZ3k)%nq*PxgH^ zd9U3T3oo2^^O2d$KAe4b-M{{DqMga`4eRHqHG~%cTcq%-Z>Wf6dw<`RTvl!*kENypKttr`8<4@Shv^e*2u)_jER; zUObiSSvoIy*{)aLS^I-$&K+5E_$n#1_~G*&F-t_$bk&o_wc6j^B zr#By(G4G`**Wyn?^L9P^@ptxapZ?ah^|PfbUO2Sxo^!Uo`NXv44{e+Bz|Lu}Kk_#B z^2w*?xf}ao;jQ=o+xYU4@4wXY%#(dXBdezkPhY(4H~m8+(}(uFS~dHHQ`)t4>bCRG zA;Gy*s=K!i+1g0YDca0-bMvg$YLM(33f^+{!VYbudBF*D&J1)-Lwn!(3-O zNaiovygIUD)%4D@-~Yv1y~C~j(cMShoAtZK^>_d1%nd8KyFWZ(?HNqi@I&ML=+%)c zzqsQco4%7W8Gwg3oDdC$2#C6_m`Gr5d)_nav2e#7xg%L2$Dx3xpr@zj7`c70yZ3-f zBA!}7Ej6*Cg<|5PV&S7S(UXXeh?1y@fshm-CTM9am5Pa=xg}v<8o?D z%~suR@66wScYlBP-~ZopwO1}V@2it)rq^&BH>st$u@ye&yMN=y!uvhWx|iT%Lb7>9 zn&VD5+5H>A-F(Ybj$8b!)3!XbJo@!8NyKWgl`v^-Pb>-299K85CyB{gnhBV+-HFc) zzV+CSV8F5F1}{*eD4JYA*Er1^QgrEt^V-OUwZyQ3^CC5MJz-D~qZu6NiFL%&;hwp{ ztllt`-OHh1AS;qtJ2zPGHW*kQT@qN3NYQ{&tMUY?T0k>u1x3?jZB9T$f)YYfNJ6|Q zg=G|$#X$ZQjMPA>E@j!_*2abT=HT1h;F?S(84iWIySr<05kg`}6nT)~ z)9d3I+{4GyXXTU>^fb~mNjb@klZXdgz1U22X66QiZbQXaeq6C+v7vZ6&kiVtdT=r% z)S^(ON){>BNp_|>vR$)Ch<4Bzjc3wOPpDWgxh9cGq}L>dXtH>F$cDit(P**liv5kn zDmI%dyuNbVxi>ctL6tK?% zsV-FMa>ZJW3DW7VkNP;FX)s2*#7JPOtOsbo?SrotZge;iVWHm8U?@_PEE#&k0-;`P zs8Z1Zwn^2L?ly$olvQ5xxQX@b4bSenE zsaY@ zaTZ8k^>6{92EnogQ`(Rfl%IUVv>GXkA2#+t}uh00jBbXyRr-DRjvRmG4oFKIaMuMI;-yrE-50bj0DY*jf!Y*7#;9cGBE z0`RPR!pH_bHlm6o5m7U%R;`F4lE6Jd2lEU4qxZVqfdDMG>t>7Kda#aFm6sIN=4De> zc?0PZuL~B%M5MZ`AA1vk2(8wFecUvWNi197u}ux$Qe>Mq3=_DjCL*AS>Vk4it_5Yb zB3OouR9-Z7%qti+64*<1UKLehA)*t_FuW_nI>d%V;8myw-E*gvCJVeRA<-sC1OgB} zRSH>hR|kherE%8L0x35>jYh*Q@pJ}5oYm48aR=uBDZ`X?+nsWnZNR3W$|4W@yy_0q zfC(;OxSb7J2UlmoR9V7pwdKD(j^JQu5L(qXQ(50_oSABi9)dn+hwkwCCZLy zXmQGcgcWy`$P^5v5ikZ(EZ){^g|{SG;Y}G#Pjm>_1WBfbh6_zpP;*36&5j$8t{)sZ zW&_ftblu>qEFjIMmPwpSQ#Wy%8!Ti_#auKOedc4(YyuX>#7#;g#7##itja-GS+|Nc z>v96lk>>P<;E3u&x6!?Z#*dcHMPS9B-#qBvj~5;X?Uv{+BJLYdVr7+x32i%xehtWZi-=R;P$)l4%pe z20vKE!pT`oYC|aO8cpzxmMQwXM7)cpK8nW!zl!0Uk-{l~ol3+4#lwj}CK15NWQRkr z>qI+-mr@03f{X}6&L&?YG z0TL7OaWNJiNG`B`M zZo}CexA8KLd;dfDe1qdU5y$;)HOGZFbKEJ3>sLL!kmE*nwKUeZ_3VH1=6P#_^;4g@ zb;X-$dR0?>%Xm|N?YXwQ-x;~0qyMyPw_SMZ3kMr+-X<;oV8Z9N^ev)~jIN(^(GNzq zHs3SqG5M`2&o-YQz2)%9o&Wy!bNi+pcz^e~eSMEz7YNRHP@b`UDmQ91H*w<##EngE zpZxrdKhLatZ||46a|Vph_pjXg#-Ycj^{rgm-~ZCy)-jLIIPuE;ug-tzK_0(;i7^5B;fr)}06LT=e=059t3q^unZ@ z2LAlwz4kQ|AKi7s+i%xxOuW1LkFi&x{g+XRn>#Ojuj|AU_l&yez@ncn z96MrT*CqR>4D6jaxmOW?meb?=0(}BK|dawG~ls{~mc-!90s0kAtbJ_Sa=UjeW@AOsQ zU$*O)2Uq`NZO0d0{rmpk-1f|MZ~c0ly6vvM9nKYp-#kpY*EY08SI?Z)xAL;*Lo**e zp48~ikq(a=ANnP`Mqa+cUoZ|2Yak{U~e%x;@$jAg9Z!U$;_vzah6%#^J}5vnIiStG4Pv?wKH zNr)np%91BbQV+gQl%5K|K}B~pr*nSa-#@=IbIkI&KG*y6xv$stxvu-3Ip-F;-oZ*n za;YQ$05Ue#=FYr#$kbC@l=sRB2^r)#oXLr%QYKpl-9`Wll~y3n!qZ9QeCwW}5pSTvpNE27hFtqFe6dy+4613#)X!DQm=*`$!VcsL(8l zkeFv$E53-N+7=_^b--Qyu((o6)CbiH>v;m|Zc{kw_rdUs1a#om;*1@`j7T#j)?mjaLHaEsU@z zm(ZUVXa*rIH??-Rb9Z=Zoef#0p}U|>!azbe(y4N_T0*w%wNuP-UR8FqVK?U3BCRn=5CD%?q0?o0-n)13DMdbgh@FC){hJ_*@mk9MgfU zsg3GQ@4eHD?p5wped{Ti?q%YC_Jd2ergPo)bxZo@_v!YDQj<}pu4hu6JF`y_7wE-p zG|M|x=zPg3I(w1sj#SKpeTp`==kiV;Z&~WC>xTJ=NFhIUZ?oW|RVY#|%7i#ZPh_918 zzV7&{j@=zc!da)xD_eU?sv%P3B?Un`sy;Hg`*%d>Rjs=6;MuO7+QrG^ zD#ZtlaxR?05YX$;ZUxRG$7sf4J<0wbPH-J0`ZcqXM#2s}mmk*Z)>1yNYgdG%Zt}@V zOiFamwa#_QwR%&kpFfzDe!kSA*yB@#tZB`<)tgpZ(c>CK()(SWxpZbpW+~bmVc+G$ za(vDypDH#FEMsO3C1>2;5}skl%6cAL+W&FcZumHH-0x%7J1c2-(E@1=(RS&E#kjkA z{w$mdyr%shC&K1CCWLdO@RbR~KbXWvN7!C2e9^{^y7EKRw(v$nK%9rvC8<`*H& z@6yu>(kchD+b<324>5+KJ5Ju$J*k!9f#y8CQ%m^Esjtac>f~{RPuImTM}lJn{d&JT zoD7e5%X@P9#<{?pG19OS{yje6WDmXvXYd^L++*u~gYp}-H|iblurjtrbrJTcPf{jB zCYyk)@RdSz;n)b%2+u!0eF)j5T6WkN+fIFd_1U25q0Ayv1=F~_d3*aR@>IQR|2~qZ zI@X`u5Z}O%janb}s`a55=_TploiORuQPELu`;8B?W89ZEA(Qk1n>q-bF7uD(iRRDK z=txJ*CFnXmZF~-FJFd;(mhLU%Y8cJq{$uxacN<^ZWf+)tzCP3UcGu^@k?8L9ZmFJ7 zrDS;RW_IwYhRV^XEX513g*wn~EHu1?%#9=rixeq8LHPr;FkA|6o5LbLO)h#NJZXp3E?Q{8A~ z4`S;uiMbhT9t_?usB1rBaANr6iYSe=X4=5Z=gCBOd0NG2{r3p!-KWP#IwXv;zy$XP;=*X(vuI& zrXl6flJ~lQKW_Id85_snyWQ?8>L*Vx&s&c7@lCC-pND+5YF{CDLKo)|yl#YekI^=; zwT(QGk!uzzjI+J;SUZ*t#WZSPy; zcGE5O5_YTKYwl~@L_&*WP4S81)cm4NK1D+zrPo7gV*|<=1`VB~rNRFwPPRVIz!-Iw zj)btr?vB0dQtS*1SUuiQU;Hd^^-x}kW69Q0lR?vGgwE*4#-0-$Plr49Y%dSY9BJyX z8WWA$*EkXXE>4ah5|O{bFHCMA^l?K(I9y8O+OOYPN_)yr?+3qm8ejBfZeSP|F}s4{$}OU|)(7i5p- zr1!s9-nl%?`joIFAz^Z!aPr7!G8)se}-B`}Gh4D}V~ogXu%b2z>*H z0S1QDGceFK(1D;3NIf_L4M!uOC^S|Vfz?GpzC6_MlDtp2016H3Y;O4_9nUgS^X78d zSU5Z|Fc21qhOq+Za3ltUfg@0G6bj1g0p$cUxuhT{lcPQp|!h=X`I1+|{|3YMM&tK-}_fsW@Yq67eBwt4M z(}WyiFq;Z@rgB(20?1U0om3`Q{bvV3A%Ba*-VxwC&4)sUQ+=s^JPC()@W`JY0{iPX zkZeO zMIhz`ndu3NVb8053W-blohaY+1;=4g7_{KuiZa{t`xy52SQ{pXOJb6#Hs*NV*kKF? z1&cx&(!7v*RH&{26$3>hbiJS?8VLbK($EHm6fZK0Or}i_@_YFYq0L$39aDwG3q7;& zDJ(KC{I~MJQgmqs24r15DAh}!21O#N6sQ+XPY+5$>Kp1Cq7jBsIA@Xi&SsXY(P%QCG2JANwk_?2*unoaS8GP45#kt-K3I z-Zd-y+ePaSTgbPa_P_aIc0~WpsGwMaBp@LCO#v?cd_Z0SE)Wp@rT`azJ|M3E7YGP{ zQ-F&m~6yV~|2jmst0s-M~3UKk~1M&)Rfq?Kg1-SV0 z0eJa-E;Ns5*SZfyaHSxApA`MF8+K#UI8u;5dNkB7k@q=uK*Va2!B(6i$5QbSAYuygulrbm*nhi zpj0OB-p@eZO`h3~(TcnqL?L8rXL|q$SqT8)`vBnIN#6Sa0PH{j!0Ts?C#5OTCJHzfwO{hjEzz0yQJx=c%Cv+UVXiOQQcA!1H)4?Q0xSidjbXB6Qnm)Tr; zGl#iUldEW!IJo_m_v+*}i=0DdX*X)Y3+TtC#B zRyUm2u~#=XeSvCo$goaxs$WJ6Q{N;~ep%*T8Io;etAo@;jpAqd7Sp&V=|VUUk&;(~ zzE0BJS^$v-ZO6e)fxAX!B9`VNeiizSvDaw379~~5#dduJcI7X&jNDn^Bp!-Jsckph z8p)~jFY6cCe1rVH4u1l^*YnDxGsv<_v5CyY4Qqr~#>I z<&84DWnNP=`+KeYXDXznmYSyJB?}ercMwf6l>gZa!-7~7`hDN?eb4gfayaw8?>X~( z-*e9U&OFb)GicyTem=oI2!irp}1o8jY{@<&( zhyODOG9cZMlx$6oAE4!pnPHq@)PpcvrU^4vy5X7I|Gfl2(BQ9LVzMCyFPZCYp`6IeN=Ei)s_qP0bYIP7X++up4T zQ94Adqas40?E@;4;|D2w8_hsTh0!RF(HfXpily}1uKh!3!1zw$r` zz-D-Wn*EAX%@I>hSBFDr+TLcsS&il-qcKD04A((*zEJk=?Fdih3quT9f-%?9JzUjT zr9N=#t$|q13UmZUkSIpMe@Qs4g|UrkdSJK~!`zHGB^%j@Hwp$Zub~Z15 zu4<~gNv&8TpKV_s(OEpOKxbIooCICv*a2d=w1&NP7cvYwye|_I!%}1)HOVqDz42%w zCYq*b3X6_rX`(L^uClLnC|EzbD*{~o&J9d3@&-X$KWmKVIY1C_&!QOu#c?2@dJKN> zG{A6{R5KXMH`6q!AvKuDvM8W=(P^6DDGKG)EMN#xpb0|XOw($P5HOJgD61xb%d|)m zsEF%1fxy%N!_>_*O)+|$p$QBH8nyb-&RQdo0;$J2Xqu;7tO4Z1YZwhj5F$t7L^Eg2 z3OoQ9O+eN_^Jr(y0)Z6u(5fD=dY5T{eXeJPWHHymQu^n&(i4A_;=Pc?{l6b4}9(%i%zTtOeJSc~o&N zaBy9)8Wv@7z_=nr5C4R#kkk_dMY9^bnX?8s01VAJfVfOQDjD!|L3z#Gr&~Fd44&XaO>e1j;2wPqD54#SJNnqF(k_10^oQ8Fly%S z4*{6#gbDCO)ax-lFNiqGiGW1~N-d%+tA|`^J;p;rfWfK1%V>C+W84jg5 zc#yyYk3ngI<^_yrcn!M>RjG$as! zGyQ9*UZ0k@OxKMLO*fsI=%EWS64#)Br(I_nE5djLq=x254IoJho(|4=x*5A~paio4 zmVR7@n@pXf03&K>8ipjLS7RurSHp|~U?i%Cd4*nJ0HNWeduhVVeM7|=?5SN|!yL?! z+PwlsH|(uX?Hom#i8EV(y#$E}sjESxs?M3mxw1J&DWm0hdwHkh?TI~rtFl3F{j?;_ zaHoLbes{`4aG&~v$H+|wS$|a+I88aE9&E&76s@_O8APYSlvz&A;KJ1$&_K>IlGTlIaz|MFqg9SI)A&__#eDi z3zze7At$Ic8jjZRD931Mc+kM5r|0wniU}N`aGs>#K~{H*ZV}t~7VVC63nr-+r5$yo zMyqD(>PR=K2ODV^J2J{-IU!d+M?Rg)N&|vURd;7~9gS!7-x#G2?Kya=0+9kV3NV;U zs|k3p!M$HZNk$O$6wh!J1NTcOm}YoRlZ3%%WAG^gG3sKE2nvt(UqYNbW({NWH;X@3Jnq9t^umEPF93Hz&7ScT;c5y76I) zA18t)%+!xoM?SV5uv@JYZhxJjh1Ch-!5$PSNOFwk&~&@v(sZsAw^xD=&p3PG3rF~_ zQzgCZbaR@tK|cCM{VhFu+mc1kAQB2W4G%6klq4AsE(wL4h6k4%N|KBRmxMx2!-Go> zB}vAEOF|*1;lU+`k|g87C83bh@Zgd|Ns{s4l2FKLcyP&~B*}PiNhstrJh5(+sD4=y>BBpDAb35A@72bUa5l8gtJghEckgG&x2NydXqLLsN& z!6k>1B;&y)p^($?;F3d0lJVe@P{?U`aLJ)0$#`%{DC9Iexa3fhWIVVe6ml9KTyiK$ zG9FwK3ONlAE;*DW84oTAg`9>5mmErxj0cy5LQcbjOAaMT#)C^jA*b<|xP0orJ`7~R z?+nX@Uk>)+<K_Uq;0C8LfFZ6Bc#Oxix}CuElG&j=p=!Z*VXoOyFr_`zj!f?{^89uaeI zeB!3_sjZ&acc49v7pEClzGhl zrPq4hy4e5lxwuvHErIK|zxYMrV@j`9&m*m)lwNU2i`G#s0^^Xjg;6bvkc8-ihZw|G z_VmHeDO*|b0mZ&H1uuGy*fQq3)U7{nU+9Gue|PSk$YNys$)XOEzR4aw*)VUw!9yQR z-x^-IX8HX5PY!R~zHsn!2{kJZ7yiD*lC+A>34VNY=4(BSF(Yoj()vW+klVk74ZOR$ zZC-go*V1!2_??JuwPTjA(+pd%-uv`B1i5yW$#a+2R2jz!+1gH58UKzuU*6UwXz9TVremEE zgiLEcZdL1G?B>{IiEo}_<}Rom^~KQTJC$Nox7mxQ>@WPRWnpH3*pADd`^+M<-@gOi z+BPPK92wquL(eH)X6)R9O&w58W%_-iE!yjAyEK9-4O5Hbo(Sf;}(`$N7+cuzP<)Ok2etsnjE}UPOdv~Q+x+b8C02i_`u>27686jjUL?D2ieZ(Ajs0#hPx&hRR|b**+ZV%yMlVa2*T#a}P&-eql6 zbz#r7=`}xGzA$lEY?W7kvGnMqNo`&`{(Z}-eS6HMqJd61qGXr-kLy7vUtRUxPe*PQ zuq~HVBZsq#y`L|yhGEG6k!uMlK8X4HZ}CSsUCe0(QepI4bolkIWx@UC2c+MazJJu^ zgfj}Ua%br4QH3^L)KAOKe>865k?BVa9oHQ!+d7Y0bofZYAJxdqC7A&uk14!2&o1$v zv%Ev6X(xk=x+eX4YAGG}a>16Ze#bfwxY_r@;J`Bq@1vI=NBb+*|JZVmVih@H=bkFB zl+pV(1)1?s@MkU$_*q4=K9O-aU8Pg7AtJZBLv_2r8`I zJb%iRDJx4>9_f}pwdA!h)zbyPu2?~q)-HMNaQ44f?=Ei{@?>85iaxfvYsQaDJZPHtmhBI(2yI)6`QG^R?*48z)A@pY^XBgpru$vkxCvm2^@wYqWBLfa?uUSwY(BikA{YLh>;QMybglDmpIbWw%T>U+D z?Ugr^o>)@z`_&-i8iLf`@VT6MYG}>0QNISytQ40`z8F-43|eCh9kXG?r&Ot`bNgxY zz6p(Q_jYOKSmfxnoEw{ah$)AXbn(6|P9FZ?jpxLac0o61znfWhW&AsL2KU@{*?i#i z)`Tv$EqNX3m_CZ0yUS#^sS`ooSDwbPP+nR|KVHOud2g_vG^>&YIURGB!_Mwy8f?CfC@4anN1~S?0eL3|N9>NAQL{3w zuwut2)~@H?i>wSHf`Wo_-=3M@My(*ubn&13S>nn)#gUc1fnF2MU-=F{{MDsR{TF;N zXGs3giL(t)boQToa$njr!TDFJ%Wm(xvZQT6{-K(m_&Gt5dy!26O0Puj(&Wi&(t-;! zYO3>2!VQ_fXFIug$Y{R>E$_v)cx+9^yGO45d{!|&^pH3!A+TfB>4fK_wruV6{@Ajo z{~WVCzWNk6t0*sjsXD0p!lDl%-$R}-pB?u3T}vu-#DZI)Q?`~Tcu%a{cN(&|#ck9Tvgw@y4<_(>Ieb;icezPvHJI`&}q%5mdC%7LJ=xVr&opZwS- z&`>&|8X4@jYkcii+xvxU&#l_z3zq3W+*wmOh*f;MYf9&YdER?4uIuH6wiC!r_;S@1*Xu6D|^Gg>B{Rb-4U^?B>&TR($s@1i%UP#TkO7E1{P8Pw#8|l|)VC?Fck>mdZ)V&75 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Vehicles/unicycle.rsi/vehicle_folded.png b/Resources/Textures/Objects/Vehicles/unicycle.rsi/vehicle_folded.png new file mode 100644 index 0000000000000000000000000000000000000000..13476b787038fb282c6de68678ec151abc36e1e8 GIT binary patch literal 20370 zcmeI4cT^MG*1(5r0l|V58{SZCNXTR+Z6ZYoRY9Z)*e5fS5Ger?r6^obK`c*1R1gHQ zf+E;a1Qk&MMM3mhD2fGCElBp+XYX^)@9e$joUm5b z&6#a8NPVn2004vRY%QJ1SBmUctv~r!5*qrJd>PnQ;Mjp4Fi6(DKnXaG=m6!Ca- z=6H#vVu_d7pJK=3QTzkN0+9~^0Kru$E<#tAhEXOh58qnMiiy}dOYA&SjpA&vA!0<_ zBm0~%?z50FCI-Nb6R_~2jf9=EL6??t! z=C?e%(RS*d>GQ+QDJRNR3)BW~w}qXU5d#leOc?rTb@An*$8|LsM76*VC z)+!MxiIZG_w7$TSQjGr;m_r4YO#bcJZ6G4${f-qX!2GQ`BURGk0LpM8#uD(F4je9@ zyWR@$0D%#LS(g#uJ{17%+y%D4(bGUdnWn~ZKy4rZI>kgy1^TW4mXzq}1p{k#03)p5 zxEudDEnD-s0ZD4dapPQl#42*W8Z|)G-Q8%ylrlT5X(L$ZFKE&Xqr#9KW1vXJkVnne z0U#}IB)Qt=*5I%E&KW(co&-9-G0FR~N6>WyJ6JsN$_mA*x z+cUALuh$}tv}G+D1jmQWI0d9NRJk|%%h*`$-ke)mSzlLof97S2`RFzGur^`g;sW

b=fI+rGm#=u@u7jBwJO z700xtJFj=8xY=sIF$w$yS-ZgcY~1t`09y4iI^TxAHS)NV$?pSC@p3cRW7k;k(YT3A z=}EDp(voimo*Zkkk+u8z%}lQ$Rk5bLVzA)FXjS;K4`@_$$>JEta6mj(dQA85z|5kt zN9P{yleg|2R(>p~@32U#f&r|)K^7Erg1N1Sy~phPwi%T1`i!Af1K0!ltZ^!wtQ(&( z>*S=fL;t=!nh(*}de|E3-5nM?oTj-VhIg5*KWrTjnw-1&7rSHoTyG7#Wqr%fS+BwH zU^2sYtX}-pD%|_HDzep(GOZ-4E~V~L9b7lAPUp>h^%VY$fPL>>o=kDRwshv0dd+%9 zeSabmGI!gX^zIC-8s%joYrOxXDmxXZmb?pCF zo*nvN+l1K(H{EZQHrTvKc+ux=(7-{_BUcy42&arm9<4fBI3{THkwp6gV{UI4Q|t<| z>5YlccMRDfcJnaEF<3b=?wb0xncF698)rasJ$UHAp@)Yw+?w4=U1JX}atX_}c7t7> z9vtxd_Dr`!DRUZK#<>U&PS03-NSGmZHQN{N*}AU3=Oz0~j=X(NX~z~n%`c*8U}H`M z8|ruu%8XtX$-F%2*p14S%MJ1pTeb5xm>fE|8{xq-VfPcx&07U#s!tOG-tUyo9`Jlh zdO~yf`iCQ4Pkl0V+yRDtE}dB5eQ0~ac8^TkOs7nn#&fLfSLrDS&ROMoeux}wUOaR1 zg2^_**s^{p&s{2A9;BveCv@m;qvAZCY{lpH94mmuB$xqubDg$7|wpD~$Kv zvHq9!kd30E1yA*#`WE>X?VZ$rlFp=A4lf;=lAIlK4@^BU-F~`#@r~;@_T0F;gPCkX zzXv@}ex7_Ux%TvudBO7xb24(y5O&Aw<{j{C%E|YOnumDq_i&rH@Pu_%O4h`?d0Bbs zL(_9-$Is48y(_$Q^v|5DIR{UVIa+_ee|2__Z%!C0}=S-T1`|3 zt*soKsXb3STyipS1a~g?VN%)7CbO_BZ?`wlgdXLZ<@e#IIm1h*UKXXeB;U3XY6){C ztD9pstedr})F{E!D0y7bgOYP~Go|kW7CsKW^)4m(L~`M)jOrsztR_*@+L~S08M~&Y zdcu;Mmr8h#oa!sgG+FKlC8tXrFNsqZN7eFv(`(1uL)$BW^oWTn!anOF%_Hak^5K2xN}UUv z%(&IWU&kw7nQu(XH6LjnyDDo{{lzRDuaZADXX&&&Pb`Zo6Ag}<6aM1vO;z+6y5Umz zz{yc-quis-Hu=YRjIE$2FoP;;c#>Mne=N6KK1>$U9g!o{nM?!ILqpU{lvBE&Fr18 zceTG7RygeOmYn_3v)rlL9?#AlUWyzy4hX4Me>$??wCK704;!CZpJU*A$1(GjdqQ^j zxk;f8-jRzgUR!nXl!|wwhMRhQR9Iupy;lnzJ!qb_r_g_*Q^uK&T(>@ZM737J$lvZy zsR^zhw^n@Z!j77)Cl6*`&c(|Gw*(E(9#T{158i$#;aS39zd@B%CkNHeJ^AY0Uslz$ zgd0<;^H%5Za`#>^K9f(RUoE>a-OP2L>s!}G45@2q8Bp6YVGy@!`NkE8AFJN}b-A`s zo3_*<=}nS#vP;s3`TY539j}{K+b^UPnGww-8xQl&X zN?#hc#ou-;&fA%nl%2c4JGUwH+^H3UmWFYu?6L=M&xQOss{QVrRK(=Lx#m!D%axXQ zwWA({2TpD+E6uA6n%tC?@0h>%?TlCEmAnUQ@0iVRtGWNW=C`Ef5wc7Tym1b*=qJ_V|(|E6}BC%q3 z!kdKn3%)D&x4tZB9CM_)sIX|l`K!S&ebL*wA6{JystMA5y|;FVW8F&1Z&TX6{yz53 zZB%v9Ytm`ghFC8Q`N z*w@ET!VNaj?eNPb-^-e5x|EJCQg0JobJ>6t4~IDvo;Z-8FpXGL3}mq>Y{ZDpWV0D; zLka}anKTfl!5|faxeSoYfGAx*x~A&nJL5oHz;(8??i!AiOmw}ZQhzRu78Dd@6a*WI z1BEm?f*>>yqCpUq>_L@;_({=Vs-Hx!(@D1-$wpiPUO2Ig_rHeRV*IYluHVb0#F> zWq}xBwVd#i>V0hz{@pi;uez&J)DdvZ$g=aTodF z;vmUXW1754&wlrKBP>xVVG4l|Oa+-#kmCx`xiE{%grs-9voE%@;%2iX>z-h4hLtGS)gOj|&m-d26@AN7PY4{Lw%O zAxlgX-R{i%RB}F56q!v&f^$(!R(nh_S@;sTG3~R~o@sru>@pL5xt-sKpwoXZ^KXw4 z4gaui1{#&4Zqu_xUh7u4&9&T71 zsH@-o^0$GIoY#;;-(fJILwSd_bAt=g*s3?ieN=6hL$c=8zG>V3EK( zj@2kgCOSs|5=tl%0$U$6!|PA?-39S!$FLLu@U6^ouM2Mf-pLjMVgV*lZ6$V zL8l5}5E5V@c@bif*Q&4WcxUV9=M`hx_nmfn9g28jA90|A7$;20aeAzKntKjqy{yQ8 zGS2DzAET+n*~WrmXT@XD5puU6BeI0`xarlemmeJC3dDiFsMJ*CiwX&vzn{>U*3;Ol zr|jm>C9h!QbpY+S`jFngXp`^nA-hWXEbHjchCuR%Mwk8VGVQIFH}zC(+FLDe+GFYF zCz6_y$B2%J$~E`0l6^eE?cnS}ev(F*l1r0slJ7l76ioPdSc=FCv_y6hgvn7lY~&SR zHT3+JVJ}6OVP|ml`n;>-P~6!{ews#pkVpIUN!}OdE8t z6!VeODsjmHQ7kHPDdr=mRpOEZqF7XjOTFj2F$h2M3o(MoZ@x%I=1(QRHG_iLIy(SB z=tKaBSPcMwx0A080I&=MfR{@EfSU*aTH-B>uUG?sijSS8xodFMAKQ;D{l#1}`oe%w zRrQ+YVSViarUfoY*f%tL=F}~Zrh9zQ%(=@yW3;at+NZIl@U*{9Nu_9;-7-FCzAi!S zahqU+_Ht9fvtQ@BZgY9LariXV5|zM+LLGCb5h^Ql!NaG9Sq;5g^{YzBc`Mh+TPxJR$vVVMI^`6qkld3bOy;yp#t?UvuH285tj1O9F Tl}LWE9st-`&9=<8ShDIr<{^Ik literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Vehicles/unicycle.rsi/vehicle_unfolded.png b/Resources/Textures/Objects/Vehicles/unicycle.rsi/vehicle_unfolded.png new file mode 100644 index 0000000000000000000000000000000000000000..c23e9676fe12e611b01b0dfb0e66541d43eab44e GIT binary patch literal 20360 zcmeI4dss}{`@na{r3;lyuF09oC22Q%_FVVqqNe*rx~bgv?7e3i)l6#W;^-72mm>*L z>V!in<&ttzk&tVp9H9`34vu_}kc0Hy(?uD~@$>Wh=l4v{Q#0>+*ZZ!uKI?toz1H+R zvv%eTdrgh88UO%jIy%^RkgpWkui8NJZ)jxX3-U!h*ugIp00s@0{i*=TJ4XY6hMS1T zn>o{8B9(;tOM)qmJRT)DL?RFc5&#fhm+C3>@_aPXyzR~lYv;J=EzS~;5o#0<>-Et( z36qTV)rUC6>F>HZ!u`}xTigD+=hNf*ZQK~WVT8NM;B^`|RGaj7Z(O-2Zr#PV_m=Gm zs4Z@LSn)ppx<&JW*3`Tz)l#*=+Z^cb%;>@Ut;Y|&yYk$b@_S9D(_=Iy1Or3V@^Jmo zc0(25b(EReRD)906M#zi)j?`NscT9pG;U3Y_G9ZEb5){Osgz0+IL>O(I>7YEjn?~s z>2@m7soN)c0_pvMg_kgXBQO&L7Eb>8;Z-0y_4STrD!`mA`Xf}*69CF^BF+Zzp9UPL znzhar@Pz;!f%6#zxB&u?qmRG=ICKmstsFAw2%t6?fZXF^rvUwz0SnI?8ioU_b^tnd z&wb4Po|-$P*_b4?djzzzdGzw!Nps_fwD0B}zlRsG(Cnm0Cj+Q8_b z_q!*y^!J}XD1AxWdchIx>G?qVqdK3~U>O_RU7HGT-h9y1bi?V4^&Iq~&+_-evIV6+ z?ScP9nZ0X!dH2Nq2{G`z82kRO@0MMD;j(vJ)n@fo{96y>?cW_6)bUR5s=*mYexa|i zPNVy<#T#vsH?+cg4c1z3o^p0#O$UCz!Q^c}iv}ieXpx1=vIH=59@g)b^W-7E($f2F z0Pws>a_SEwwSLk5EALf>bv(0dw@;r4L<<}@F9v}5HWN&}F6LRDQv(2-^cdqqR=O`v zjW#JAIPTPdTc-xSTgX~vJ>g85^$=?fJbGNn!YKzgZ-?hwxwcns>X{U^eW7PXwomU%<>et1o@YneoZd4n!BlflaDTn^U)=!{Zh|_U5 za86)4&^*?8QM?`Wo|}jKfUKEocRXR*c>rGVZgsIeZA;7%ck@36=kp3P*<)AP?H+Um zm(r5sN2aG-2{}5}d;@D&^ObCW?Yeji-Z`lB&(W&%Gl7t4`DyFJ9250K?9yR_1B0{6 z#~zw>pkLA2msr)|u>QkhY)jQy{lly&=y)p!Ul-pQHyko4<0deM)~U1A`>k>>n{1Gn z>3nq3@uB~m8O?`jYkVC{3~PtQ52p@U7RNioo-k}J51w4O=?BNdzj@URtFfyQdl)`4 z*`LC27;Bh#p$-o?qKa%Wp-ep=+mzaLx{2PT+ob<|jz%hf`r_YSd)_zlxVXq^%!45h z7!L*#+hHs3J;@%oGk19nWya68&e>JqanOBD=5WT6WTax{NJr9K_abbt=IRkE&&3Ii#-xl^9W5LaHu~UpmwjWdt{-#G z3u4orY;WG7y+h*dYg}Ob(};wN8e5&VPTHz#O!eBIwJ+;V)*$az?@M0s`{#Qu&$aWW zdp7P@|6^OWcUJ1mC!V^V!u``S*JKGZC0>@lMftU_9q4!3<+K~`H}~|z3mS{dDTA;v zdEqAd0h-yXm&7p7Ogda~^QWc8Mcdo;iq@NF?cas)=uUK>Jdf5b0!!7#?TcUUl+I9Z zHp)n9jaqj{=h>9|Q*`$+TncH#+<>fYN!xt09kSiC?Vpsea-U|T?klk^@_QSjWp&PJ z^4!Vx!uZMosm-1@J#S}dWQ=q*=f2D}%?jA7yQ|11?4&rOWqaC*`O#@El8ieMCCzWf zEvL47wFkY)cxgY_cVOP&2?Of~SB^G2%Umom)1#iN|J$86@AP!uUUVy(bZ=EcVYS(w zYj(fbX>Smf&uyI07*rlqzGu?FN&1tVT_3x)Bzw3P?whi2n#(koa}}2>c30HyV5XSU zuEWhK%_-MY8jdZT9X{KnAhY0i!tqGc?0tSM1;ygn*@)j>U+>xT^6YX_b0*dn1xU;x-k}G$%SS~;NV%sCC(6?$x)eU-M!SG8{&WKVyQ?A+zM+pl< zSGLBjU+cW$l4+8KX^L+7?eir~PSTf)=iQ5}d6}A$ms0jLv;JTUt3}kZ=GL#58NW_R z^P`7eIengY*Zo1Y<)B};LIDj2qTG0HF~a<2Ln=m1@X5J;=-A${tTy!7D2rDXA-^_S zG@7yRz<2x>TxORZJAdqw+i6MKg4hP$&xRd%M`TAekP$smMc8j`j8)8>AKt!>{7L`h zMoVrz@#@IUr&b%%3#~?2#jnU&@!(XBzW@2ZHs$EIHE*v>s1#|%&W!rA_KGU{5M6&d zYVhRPHL*UcEjI?o`HrooB{9RQZ}CDKY~I*xv$>NZq`4snK_{lMMV9FzvpV*1#&OGX zQ-R;*Yrd(zj)BhO5L4q^mN@W4!@H-gYwoAsAJn*P)OPCmdBG98D$8EPW{li#I?RN- zZMsX`49=GSSPe1G9JyiQ^Wk9=H)=$b>6Hl$sMW0MxEs8=#^Yx^cQAI1-27KUF*9Pq zS^8d+2ZgI9@84AHqUmxwg_|}qc_}3bHs_YmR&Gw%wAeaJ-!-v7_*nQ*u=LUaBKFAp zv*Pu~sN=V)UI@tBbYOrVs8L|O?@zDUM%Rs1j|d4L!O4oX7m;n*X;UknUe3E%zlpu` z*{>Z>hm{Sxx4B^NYG)r%&-Y=;fkns>v&9kh8jT|cOkF)|-~qGW*A*BCU31HR>XVck zRWd2kH6UjGsf#O4<*Nid8RV_;Aa?naTi2h?bMvM8HRPjjR;TJ(j99xaSEqhd(ukjL z7~Kkgpu0wL@#KzMTaNC}K2wNS32Fq79^L`d=4frpN_v>2CDy!IcT}@s*3qXgU)k1E zlPZkri&hr!3iq5e`@NXRxKLR!&C=^PuNPi#yjU$YxAW2Kuf^3Zy32}RG5)$%Kc~2@ z-QvQDdT$kP*K2}n#9PO=d2N=tYqK7`-u5OH?)n{pEu0%r*b-Tizf92fNH>jLdHY34#NQ)3YOkds=C?~)BPDHT+g>(| zyd4!XxxMmI(ao^QEjh(*#S30ce`%Q^3F-FSBE=S8Jq>8;hb?Ar#$uB>{W z@G@STHz0mT{H4{JtDmHCED+?rWk~y@cNx4YylPU~sQ0_yU&3JpNZQ_{3#E$;`wzs~+=wLkn@N7k1zEWRT7cM3VGDUF-pD+y%3MLPt0AOYr9*klE zgp|T3gd(xI!Ly>11{4u)Zs5aogRY7S1Id1QAk{ z5*`#N4&{cM8+7{RlJ8~BR0B$97ioaGft74Pim&TT3QrP3P?)AH5QA833L7z{G1+Ve z+k^r`G$s|IQ|S;0)42?Y%YZ4}KL!>W~hlM$A$>SLPWt*kwi?9`9=AXB~o((1KB_y ze!ABc6#QWzacDO?k|H%64W`meA?g>5TwN8L1qFT9GE{22l$=TT%04?_s8>WVLG>U) zB}+mu!geVkmKuI;62Uz;iO;+Hp#I`2aO{I+@RE?gPQW-uB?5^ca?DWDj`rC#NJWC) z&G~2vGR+r>rFq3Jz%sNA%YlqCp_~Y_I2vjNw@sdaaExMwt_x?m)pJY)*G4c_K zaY&4N$-C5dLwL5DPaLaFdc-LAjI*4Xz)uH955!np_?$M_ru0kYWw7RbOE zG!SJ&Fo-hwG#0_+&^R=>bCDmLf8yFkf-RB70qMFc@o@=8y8jSXTt3Ev5jqC}37mjI z8jZj~K109+`M7|?X9_qdhxuWkKF&TF$Sp)f)+IEsPaoM@aB?u1jT20QO@IQNj)4f1 z!3PlmnfEXorLiG4%w}Ln&ssj?=98fuM4@CfMf8a>GS)gPk0-JCbd#ClmvfE7b>2`h{f-e7k%)dNF zm_H#_6#iYVI(vQDNvK314MRf+Dew?>1;@VkhPSB3A$=22V*ipjDZjwSb(!&nE#Eg87PcH z0+av|226Cj7SLf(K;xr03^51@Vtk`(CWlYsuwV!z*bK(^oi!V$<8(d^C0%38?uQFO z^1;{~HVVT6lrDRUDXte^*hU1$2m)fkBx{2GeP@jjI99(Lg>MC)Wbg z5drgCw~-GM9EeV1g9OIvo;4y62tb0)W}$R8L8mi`Zv=wT7)&OIg^`DLdN*qnW-&lA zaBzaoLg)njTV0cnZIn+QNI(uMz`B5-3=9Q1Ogaq1Gz=m+edDajoIp?-K@wo$-P!oP zQU*uKltb7Eh|ma5ckuB^kxXzpABLGMgiZU#SrasZ;IPn6Al{|>yX!TAa3B!jpa_$!fCwg?j=^mHH@jxSFhnOSA34G9ME{@9S|}p#WnFiH&bMS$Lpdmm1=5);0m$Gp zSRev%=pcuN6DUSjEe7Y`pD#TJem)=KW4M64vIqzS#F-2Mh#-8DD~k_dq$7euWBx1G z9%lk34M!Ld3xxR`6l9|0Gm3ncazGZ$!f*)VU~GiEJ^afieQ<_yAQ;AIAd563rzZ<5 zHhH%a&>>iWK`=>x{&{CztskFP%&1>?+UavB;zRDiye-vp*Y#$R8?A_P5)#uUg*JPqArVwY+JsrMFll zwIGiXofDO7?qenUc!Jx>*^~Svjj$k>Cf_9Ad!{Iy2=uiPkr(Jt*+q~}j?!r(ulTH? z-1f~(KxU7d&Gu2%BXH1dNy>W5GAJ~=OcxPE@mH@z$Ro?hjADF=}QqF7Yo zQp`tAtHdP-M6syErI?SLR*6dvh+PHi)u0UXG$5g*%8)x0Qwc6)_$rg;B=9~&cCekGA9#@bu7?{b!n6D}AZ zozHr^KL1s4#2x#R#3<9@33Gpaa-6?mBzDw=XL$9>xHq{^obJ4QZcK6489#q!t=bB8 zz+Gpv&)V!^?jwT_|0l{kO=E@n>3eraAG$I-y;j%lghc}o-tvo9QA^tbr-%Wg;DhY6 ziyL?845(b1JND(_()92FM_I2=P%Ty5e|a++XlSdhYnnyz0T0ySjuA`jqr+vP|ahAmmiHh5hx@wAq*7MzSa*FLU zzDwe!rEAtwmNHtzKeVM1Y!zx~fr?E?sFP@=ZUU|9hG0OUY#ksv=wKBa8ZAl}-udk3 zi{oT(&BQeHtR(*S-S@|PpYMC$d+(&)c+dLJENQy4iK3__-Cgls_)WXNx84H(+M}cY zf?o^sU0ZC5T6Bl|+dv&Y(o9kDJ!Z1c=}UZ8)vat$GprN{7PEP%O;ORdVqVh+fkUT2 zznNY}v8HHIg$}a7(dc3}le5)g zYoO#;g|ges2I!KCGuRqvcLUOWi5|McDgZhZ3^O_xmT6fD@*!E4WJQh< zL{;KcNubN0K&%N$(Sngyd*hwuaPVKPfdR+Kt1LS*G7=mSgI1xRDp7t1>Mn6nx6FP&1TN9M(q2dY^_Ok;#9qXxaNSE zzzHJ5h2T$;536u)^THaAS2@n-#M7+tk+2Liy=|HgUP|(^8iMOX@%!*;*7|@8(a;M(Wi-~r`lm20QUUOZmxTO!d>!UrV z0~;p8_9Y3Xs#F0U(E6vhRxV`Bm{)%cOE(R*8dR1;JS;A01{i|D@H{Y>h@?aqpy<3V z^J$3}r6}uG0qCOIFV}CWb$UeqaOUc-I}H*EwL51!8XQh{JO&$rChVEW%eoi|g_#J? z8w{70WZ0hwU?h$Ug*nj>1W7B+jp^pqo|Ro!qC?m92d<=bO%gzA?ty##^f{XmXhXq- z_XREE({aaQz_9>15|(%&0y{6kDK1F@qlLIMqbWe-IFXYh5?>ih9XB&Vb(wD7x7DP< z&CN#e#p$ipyq79?UMtwZtxv6iN`XQpAF85Hv{dI*O?PX5Om|m3Frw_V)@rwE&CHqU z#6#fu_nFTgV`Kp2=BgT=tCH62PHZdfjA#YW-VfIkPC@g$PB*J{Uw@TAMx~XRG3S#A zD>n=Z?<5s4;Tqg$09Yl`1uILV;zTyC>Q`g)av%@)~eAh-bp^|T(kN@FVZEbjd zQ%;t39dNwDghWnZ3?KnUlf)3Cg_W=pNr|wW$dw`9#FUeh@GceNR9>vyWZt_e=T0s! zx;~)g`hgK+D>nnFMC`tmj<#jQH11XWV_-qaTZ6wG&0VSK&RE12j~O@052dEPY@2nwg9 zLIPvJ63Pf+NnsRVC`?!ir)55@!;OqmNh?{I)qRn-Z=T1Uf8LqH+fUzYO|5g}`aifE zdONx4d+N$QedZp#a^UdlN~gQqa?=j$#@lSUVGV{yd)2pIDu*E48)1$4w0nKoyHP$h zmXBEY#}cn|KJ$9st@$2)yeM_tRHIeM$E$#SXPv0~tV4yTC%BU@?Pz0gi!h_j=dEWJ@<=ww!Q~%{!(=BtG`Y+d-RxLN>OeZFkqt!I~tlS4O-qV7O@F66K zg+n1R6lH6hYb|=rBFOZ`P589HcF%Dlj8w9zy-?S1%WQ_e3uQxZq4*vbmJ;K&!iSOY zIVg)Bg!*!Z>f^gFR7dpg`$ir~5QG9pAh>WSAsvDXp}-LcE*wfohu}gea0G%2hZ52u zxDW~)f#AZSgmeflgaSt(xNs;T9fAv?z!3;897;%s;6f;H1cD2P64D{K5DFZD;KHGV zbOWSAsvDXp}-Lc zE*wfohu}gea0G%2hZ52uxDW~)VNP64)mMvv9DJY12z+tKl?TrshA$nV^{(CoMUCD= zQM-0i)b%O&{Wppl;wb9MR*F&&Qq;$+Z#?)+Cq*?J?~b=8i@#4zPEEC)z5fHN_BPyd zbZPU@nTf{EySOXVM~(eIICSss$ilwoZYy2b-Nu_n4_S{&Mm8 zQ?x(bx<>lSi`44_|K4mR-KFZqvC-JJacjbw2_JPrXjRwtCmtF>4C` z_jPXLuN#($3$_RLjQ#fRsn5NbT_%n@RBVZK+gM`zZQ}O_pFB1WzV+scRez`2V@vm* zJ+|RjPd7Zgqh;}dOFLG!e29JN#^d9SpV)KZkqwP4{fC<0iaqn;segQ>E&GRW{$^|O zd~nytbHi6ZXpZ+>`N*2a#x=(;{Q1)9+)H=u+q&-A z8*r{Y{hi?Cf{y)t=kELD!lTY<{)M|=)*t!hjn0d2Qcqkx^xfP4bS`M~lDZ?+H+*Q( ziI{Qet8Y!-KYHg+Ub%k9$+Nki0&Sx0%z{^*gUt4}Vvwc&f)e|IqT!s>l4 xunQ0U^WO8%-gx!EL#gB&k2b#8x?nN2?ylpw5 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Storage/Crates/toybox.rsi/crate_door.png b/Resources/Textures/Structures/Storage/Crates/toybox.rsi/crate_door.png new file mode 100644 index 0000000000000000000000000000000000000000..d3164e803a032d88829683884ea7f747cc1bdc14 GIT binary patch literal 18017 zcmeI4eQX>@6~H%1Yrwc^M2ixm5Vn^zYH8Q|eS5n(UvPYJZP7~{+cXYD!E?KF=T+`* zue)pe>;z)9&?+cFNHqQ2Y1|aQ~PJy8HTxOpg%o?KH1>?@iz3|o0<6s z`uIe-e~-s7pS&e_uV5bk-a3X!f5RRb^+z-J8m3e10+y47U6o=P^=6pl)=C+e`=QTf zVcsrv$1eW#wHRw#-Lc(jM#z+V;keyDa3UQ6q^e$1=G)23cl>|}c1(}xx zPLd5pFcgWcy<(|$^eyRHIb$f@R||)v?%25RmkpkunwsjGlDix?&x^XQ^Mb@n5{G(l z-gLUpNjaO}6#d0H1$*ZwL6!{7$^J164 zw=%NKhD~|GEmVhQnLI4OA}skHvJ+d{mB$_5@y4A+LN?Tk21Yr_WE!zsj<;BB8QSx= zPa*_0q%AGIk?AtzhoI+7xF*~_iKeo#)$Bcg2sX2`1XrkgOGmz)Tf|SGSrh`S*o&A2 zn$WDerovPw5j3OMg}`^*5yvT{!sR+x&js7tTV0;)9lPz4f)^ zB?*$u2`c&<5#t70+oE)rAR2-YaT4~#d}JKU&P~trAu1!HW~hoGi%}nup12QmAzHu( zOY#!!8}VbAM$U1Iz)#slkcWJ^luz=_#z@b`@-%v#g5#oL!IYfjTQ#?|N;~F6aDDWY zOz5Fxc#$NbR8=d$Hjtm+T2~b8R9Js3$Fwb@8C26$5fzsl2QA6sL=jqCLeUc()J@UU z#GE3^N|Fz%0CLeBSKznWIzM7`I;8Oi%OI0621=d}&~ygUDb&zqqmfCLmD3Wc!pU(h z$4Qz3I345wmrE!KOOORs%OPkB%$p;txvob?u3JwWKsjOQaY&wc7%1XwL7<(kjqVGe z5a|=l#X@s|S|YB9Qi4+i1ubz!kvO0VIS%Mh7SLR@gd*1G(!$MxQ2ln0_h~E*L2icO z{qtL!d9PORGH^W@)Ti!Py+AceKI+wGiZee0_PF{)mf1$#M(a7vTV z{V=IO2?uDO0a2C6xlWO76ereqSWqq(Y!d`I<|j*5?XKOZ3H5wOeEc8h>Ve7SEjdjy zO(=*ur^ELzL?`nd`UYg2fd^H^)IK z53LkmpIN=(qm(%ym}V}XO>l87ZgPUI#5rA%$V`8f{^`kTAW!F?m(lr2830;a( zj+4z`Cj(TG%K-suIYH8O1?|e{mD$)4gOt%RT&rQChfZMyr!gHvvb^I?3Q!hk;H{XeVFY(WcOmYC&7XTU9q2 zoPr7y)l-fp3FyU(!T*|RRE?YNA)7|kxM|b!OC{S+NwsKLbHplmAQL_<7)B2vVJfbw zvYO=aX53=XuE4@*+D1=7VV|E({1+ zq`1g@FfGM}0U?VN7nu*HrMNI4WRc<`^TD(f7Y2kZQe0#{n3m$gfRIIsi_8bpQd}4i zvPf}}`CwX#3j;zHDK0V}OiOWLK*%D+MdpKPDJ~2MS){ngd@wD=g#jUp6c?Efrlq(r zAY_r^BJ;tt6c+}BEK*!#KA4u`!hn!Pii^w#(^6a*5VA;dk@;X+iVFim7AY<=A52Se zVL-?t#YN_WX(=uY2w5cJYH$9u2rQxB6PZFk9J2D8U+hFbI>MU$Lm7sdxt(EVA7q$I zSJ3BqhM5o;=E4}m7>_c{TIcvzf6>Pn2Xk zZkfIDv0JipJ&z<`KKI7Web234bMF1qYtB8B89u%HomaoL<%Y30-+T6=^1|Nxj(q1O z<@-Odeuduc`ID!Cx$*Dd-)G)B?9LuPe&^gP2Y%T3?(er89bWy!$uZ`{*PmR^yvUr` z30z_B*rhlAxarR;4?cg7cI(>Do!D@2b@sOS3%`A8{TO=v>u+z(o%(dT1HE?cdo^Eq z@7=Y#9^d-42fzE3gL{vppMGRb_T;`@m(QO))HeN2Ut9j-rSijrx8G2H`PR~DVE@gM%bo3@?Z*>=|!`=Pn~x5f1-@5pW9rU$^8 zC-D>$f7$S+n%#Ho?JGB<5&UHHeI1`~cRQvwB(r~&{se;o z-h1J|(cwS5zWK%u@%1x(=YO=S@3X>%*Ktg@B{5xBD(xxx2mW zZjwuCkRmgJts~ZglyL zbgE{lP7q_po4><|EkC@IASz!_B8^64_&z~W6E0C!qrjC;q@XrI1ZJmGqO=kijwonS zlI6}bFLyf~id^no;tA8?R3&IuYC1L0(77NYb*_~BvU7H@ERYtUg9I={M>-Kt>O#8Q znei(?*=(kqj*N=2vfNo=26Qxr7dk3c4LCe5FDcPp-og7_jECnr{vL;$W;_(lQY=ln zS%ISk&h5y3oWU|E1vEJ()Q75b;oyJe&St|%2^7`d-tKB=U8>eZF@C?FqTQ6+O+pP) z??@VAnoR0bvrh7ULO_=^C1ogT(qZ})qiU;B?sS@g&?h&pL<$8;>N$3hB9#_X6yu_) zQbw|bY*MXSJacKXM1eR+fTW>AJEo*vs#!Huy;&V3BXxa>AEnV3rA&TW_mhiEK!oO+OE$GP{k&NiBs?fLZShJ zZraU~v&_W zuCoVPN@*kwA9KB*Ori^l^S43H%Zx@l1?kSS}yP;%q>mI!%EERE%46 z%(2KY7~p+gj&b`)j^^N8;5auadgvG_`TnNjiDr(ewxpc9y`iO%&$q?L|8T6j*fz8& z$Mcc|XvR-^SlUm@09Fu@V?Ctk^?UukDC^^Ve13@6G3EFOEax6tVAy;${^X`yVZ}<# zVzLRyK`KA8e8ZYx&oPvIw1Uu2*u*HU3DS1IK&IWjf%(=+BF*VL%U@~kLw zq$esdr0n5%xIEn=$$Px+STq`QvmD$kWtWq^G7I~n?2cdvTd*N#4sSnwy_qX+!Ij09D*vY_U*DgLq>|f#+Y{JjbyxQpTpZqom=|!3-@OIm7Hiu{>AHBqrMm zpW49(h7@{YXvrC>j~~BK7}3Y?8+o*YAQU))jSGho(y?(N6gYy73x^WYv2h_3ID(A} zhZ54UaUm2qf{hD@64J48Arv@*jSGho(y?(N6gYy73x^WYv2h_3ID(A}hZ54UaUm2q zf{hD@64J48Arv@*jSGho(y?(N6gYy73x^WYv2h_3ID(A}hZ54UaUm2qf{hD@64J48 zArv@*jSGho(y?(N6gYy73x^WYv2h_3ID(A}hZ54UaUm2qf{hD@64J48Arv@*jSGho z(y?(N6gYy73x^WYv2h_3ID(A}hZ54UaUm2q!c}pV72d%ClJLbF?eGm7zv*p!5Wbzm zA=T7}38M201hM*?1aa{S{Qet3w9*7|Vg*46n+alq`pEMA)dVrzRU4{^r2lYo$$V$iKEnuE#B72t*0-ZenIbk;Gw>b$<_Ccy=hY& zv6Z-KVst)`d-|4{dIOXj{(R5cJ-6Kb zX4y$5eyMK5tD~PJrVk_by!F&yn4amq(|*!-$~n!o@xvqkcs%*NhPv^m<4>1;W8^O% zyKDU6W6Ow#PCokZeu6l{n~xT*zBUoSgsp?%Rhc@VO!)_w{PZ&o+oGS-gWr7 z^ab^=b9?{&oy4fmomuz0=Xc0+7bz_jublP`?;4vv-ct4O&h&y1cX;pK?h|_($9(z7 z{GS@`?^nzOUyb)z4Z3s3EDG# zM*Y6ai!PmQxnn~^OPiKHG;{lA_oWM$yNGRj54!%iqp8Jw2~2I(g3!O{1own0?G8OYe5q-A(Qi zeAEY`AR_(X8&ps!Dk5S-jx3l8r+zL%n?!$*coqwtrGK8GFxzk|8CpWx4GZ+KfkQHLEBeR`;S z@9(3i4L{mrpczFvw==y+`vpL4(atf`eSzcBYNjZlWI9_Hskrg>c5H*R@B!O-onPM-L3cgj* zMoUA@aPYtW%v2b98q3z}^=w_ty8a}~tE$R!0xJj%)L?>HC)68^6P%hjY56IE!1Qe| zv|Wde{OX1~9rkB3Q6O|Q$5r!CASY0Go^P$zHFOYeoPh|MNV{4FW3wJ$M?v6D`zF{p z1BY^Ix6udTC}__PhAXJv)lq0ymhltyEDHfN>}AZNp2RF(Q^`~pAT({z2YTrGW3F2* zCd+k8YcA-)!FYMnXI^SMmRk?bDzKdbG*iJ zDJO|$hmW#r*_GMFKJsI{ph>F6i)kMz%}yV1BU*Z>V|hvIruyYqaJ&<>Ox*YoN~@+>%oi(*zu^GP202j0GgX=#nTidQQ!$ zc|*)gd8IYPzp&(#F__L}E|rb{yCv7&vF4QSOaiOOwno-!_&?2@!7Gw!2ssAGfMaA? z$}t9)GZ=w4g&a_LNtDdi`2NDoExnGCnQJEcgU&C1l2W3qgHljy3jdq@VgcVikPMSL zOS6TEj&th&XUqqkQ}L>@WIK_anbbu|J+QbkYgKzoE4kA5u@j4)JEi6f-F^K1LVHAizi;G`1VJcp1cD2P64D{K z5DFZD;KHGVbOWS zAsvDXp}-LcE*wfohu}gea0G%2hZ52uxDW~)f#AZSgmeflgaSt(xNs;T9fAv?z!3;8 z97;%s;6f;H1cD2P64D{K5DFZD;KHGVbO&xrb?tARr@A}@Yo?h+!^xDd!&+mQi9qW{fSMKilaBbt)JAbv0 zyz8F6Q@-2#_Nsf;6_wncwGW=r=dGG3?b-Xud&jNMoMsyzL2325pM8Jdb!+CH{d!IP zq=NC>>`OPVKj!fhp5=C(`37Goo^-+cJ-0ob*|Y{83lF?>^;`4sxaFKL!CB>J9{J?< zfsJ46xa-1&$DwXxRn~Yh%wO*v>h(8Xop7Bu=jSKhd}{idb(ai|^!&W<&dC1_H?6qr zqIdG|@BVx$w{CiV*UF(2xvzFywCXl(;)9-*-%#_^Lpv`U9=K_fAH6hVWaH-2ljl#| F@CTDd?dt#l literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Storage/Crates/toybox.rsi/meta.json b/Resources/Textures/Structures/Storage/Crates/toybox.rsi/meta.json new file mode 100644 index 0000000000..082564ccfb --- /dev/null +++ b/Resources/Textures/Structures/Storage/Crates/toybox.rsi/meta.json @@ -0,0 +1,40 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by brainfood118 (github) for ss14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "crate" + }, + { + "name": "crate_door" + }, + { + "name": "welded" + }, + { + "name": "crate_icon" + }, + { + "name": "sparking", + "directions": 1, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "crate_open" + } + ] +} diff --git a/Resources/Textures/Structures/Storage/Crates/toybox.rsi/sparking.png b/Resources/Textures/Structures/Storage/Crates/toybox.rsi/sparking.png new file mode 100644 index 0000000000000000000000000000000000000000..87b78b9b4653d54a703643d161f7f8bf353995df GIT binary patch literal 206 zcmeAS@N?(olHy`uVBq!ia0vp^2|(QXSZ^$5X5FCBsLJs@fG2hgpXAxzo?UdK185n8r>mdKI;Vst0DN#gB>(^b literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Storage/Crates/toybox.rsi/welded.png b/Resources/Textures/Structures/Storage/Crates/toybox.rsi/welded.png new file mode 100644 index 0000000000000000000000000000000000000000..c7b469bb46d6d8c2c03890c04e684c0940c97a7b GIT binary patch literal 17749 zcmeI4e{3699l)vxTkSjd z?vgl`HY(T{8`2m|VjY?g;}6i77)+qHz@%pUD4PZ>f6z@Jv=)TK#;UKG*0lNsJ)p7-CGfeuXYDLozL60rM zInx@6yz>2%5!M7Fk^Ql}kgsInyg62L;8bl-L9ZRsQy_9vW++`%k%KbyG`3nUS*}_g ziPZh7NcM;M2wPY24vj=c{ebLreuB-~4rF7|IHwEo1e-`j#aJStBzCZpAjWt>=4FAC zWK|JVMPkEGBr}Ahv;z!vGPgSnhyELh%zIu%<@u$hrRb6zwVgR$Or=u1An}sKAq~!5 zwmhxMS?+a#lZKxhbalt9c&2T!zF)0qFL)!7h##o=3D2usX$G>~kR77PSG5W+Mg_i` z5zw19l?A6%pBm74Sb}9}c`mXOyV_OeZO?Y+?H(bUhkFJ_ImzdnvAfQ!^H z1R>I{mTqCW0{Kbk+6#^jcP*k*xvtyUyWS*hWv35UNWH5g&op}Y@sIR`0IOyXGyh0n zRt-g$OiH>&pwS zi}?Y%YS>O$^D<^xn}dACnoIMoK}@q*o@&-E*$$c(%*biJ+i+K_oUJeT*T<-(Ll-5( z#gc?lRqp^hwYm1u#(|QV3HlGPbrYzqpaLiYprm4)5-ZA_C_=y`fn4O0vMh=kl#P@D z(!AdVkc-y5!rBPOyStV}STsaAj$CWnn{|y!DGJbxV?ZoQhU8CCfm~cs3@$0e6fPD6 zpeUu{imn^o=NXK)lfkiHh^t?&`Mf%Axt@lwkLNP}d`vW-I280a&}B}G%Oa;G6~GmB zN#qieU?>S7qv>e%8g4gl5e!{7q9fPcDMCquiKGBHB`zgHiYZ;<3@Ga;cF{m}}G7UwN%D?;T@l9$FXbZh@=1R&OV+ zZFozX14rl3b>C0p4ZOCSb-M3!UjTH>i|H`fEcFH^w%$|!f6jT`S7v{^GJ0h;cSL??uJ7*KcV>+Z z<=UNGW7`^3=Wc(^_HP1E^$|91XpurUvMSaO8(Zmq+i8b++lmo-2jM+Z&)sx?w>!a9 zF=yRk+3Vd<2T{7XX+>+~A=koBeZGoz9_AMMQ)vP+T|-qD*lS z5#b6H7fypHQ(QzuxB|t6(;&(e7ZDMzKyl$Th%&`RM1(6)TsRG)OmPtr;R+NNPJ<{@ zTtq~;0>y>XAj%XM5fQFHap5$GGQ~wigey>7I1QpqaS;*W3KSPkgD6v6L`1j(#f8%# z$`lt75w1XS;WUWy1#u0vUaJ8u^e&Ah^wNy)Z2RdZ^ui5RADhfGOznDxIr2${`TM`n z_sa~kATZ1yW*J63$}n%YKmV~G?`D_{d&hI5h3c>V^!yXI4UArMD1( zv1!|}Up{2teQ@~t$ivdllZU5|42C}|Cz-!&-}2!Py>|P%K6CC3WA&A1OPNg*qt`I2 zuf72eEDwKn-w$7h*Y4UldOwg)eR}bolaFqF{P`zK@e>E!GcP|Kzwd#aGvCK-P4}N>*OJAL0 zzJB^f=5Muwcl>$f-G@K==+mXl{>N_k!RZ6X4&U;~1atO#h2lGY@|L@^r%Um{*=s-b z(yjLu)StP-1C`G`vwGX{eTN?Ol Date: Fri, 2 Jun 2023 23:32:52 -0400 Subject: [PATCH 029/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index fed9a0ad4f..def192438a 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,10 +1,4 @@ Entries: -- author: Nimfar - changes: - - {message: 'Gun safe for SO, now weapons can be stored in even more security', - type: Add} - id: 3426 - time: '2023-04-16T05:55:23.0000000+00:00' - author: DrSmugleaf changes: - {message: Fixed the admin menu not being openable in the lobby., type: Fix} @@ -2903,3 +2897,8 @@ Entries: - {message: Added bruise packs and ointment to medical techfab., type: Add} id: 3925 time: '2023-06-02T01:36:33.0000000+00:00' +- author: brainfood1183 + changes: + - {message: 'Toy Box has been added, it is filled with new toys.', type: Add} + id: 3926 + time: '2023-06-03T03:31:48.0000000+00:00' From 6c18892ca43f701a2a57095e414c51646cb64ada Mon Sep 17 00:00:00 2001 From: HerCoyote23 <131214189+HerCoyote23@users.noreply.github.com> Date: Sat, 3 Jun 2023 03:17:15 -0700 Subject: [PATCH 030/474] Swords now use bladeslice.ogg (#17080) --- .../Entities/Objects/Weapons/Melee/sword.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml index c2e4adaf10..d0c008d23d 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml @@ -13,6 +13,8 @@ damage: types: Slash: 17 #cmon, it has to be at least BETTER than the rest. + soundHit: + path: /Audio/Weapons/bladeslice.ogg - type: Item size: 15 sprite: Objects/Weapons/Melee/captain_sabre.rsi @@ -38,6 +40,8 @@ damage: types: Slash: 25 + soundHit: + path: /Audio/Weapons/bladeslice.ogg - type: Item size: 15 sprite: Objects/Weapons/Melee/katana.rsi @@ -60,6 +64,8 @@ damage: types: Slash: 20 + soundHit: + path: /Audio/Weapons/bladeslice.ogg - type: Item size: 15 sprite: Objects/Weapons/Melee/machete.rsi @@ -80,6 +86,8 @@ damage: types: Slash: 33 + soundHit: + path: /Audio/Weapons/bladeslice.ogg - type: Item size: 20 - type: Clothing @@ -105,6 +113,8 @@ damage: types: Slash: 16 + soundHit: + path: /Audio/Weapons/bladeslice.ogg - type: Item size: 15 sprite: Objects/Weapons/Melee/cutlass.rsi From babdefc391d5cd3ed9b886eb08a7f3b512e0ed44 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 3 Jun 2023 06:18:19 -0400 Subject: [PATCH 031/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index def192438a..36854daec8 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: DrSmugleaf - changes: - - {message: Fixed the admin menu not being openable in the lobby., type: Fix} - id: 3427 - time: '2023-04-16T06:06:01.0000000+00:00' - author: crazybrain changes: - {message: Aspid now requires a minimum of 25 players., type: Tweak} @@ -2902,3 +2897,8 @@ Entries: - {message: 'Toy Box has been added, it is filled with new toys.', type: Add} id: 3926 time: '2023-06-03T03:31:48.0000000+00:00' +- author: HerCoyote23 + changes: + - {message: Swords no longer clank, type: Tweak} + id: 3927 + time: '2023-06-03T10:17:15.0000000+00:00' From e190771d099bca2132ce52d497088fd28b561a6a Mon Sep 17 00:00:00 2001 From: Renlou Date: Sun, 4 Jun 2023 04:50:53 +1000 Subject: [PATCH 032/474] Add funny hampter plushie (#17099) --- .../Components/SpaceVillainArcadeComponent.cs | 2 +- .../Prototypes/Catalog/Fills/Crates/fun.yml | 1 + .../Prototypes/Entities/Objects/Fun/toys.yml | 21 ++++++++++++++++++ .../Textures/Objects/Fun/toys.rsi/meta.json | 5 ++++- .../Objects/Fun/toys.rsi/plushie_hampter.png | Bin 0 -> 579 bytes 5 files changed, 27 insertions(+), 2 deletions(-) create mode 100644 Resources/Textures/Objects/Fun/toys.rsi/plushie_hampter.png diff --git a/Content.Server/Arcade/Components/SpaceVillainArcadeComponent.cs b/Content.Server/Arcade/Components/SpaceVillainArcadeComponent.cs index 3b54f82dda..262fe2343b 100644 --- a/Content.Server/Arcade/Components/SpaceVillainArcadeComponent.cs +++ b/Content.Server/Arcade/Components/SpaceVillainArcadeComponent.cs @@ -57,7 +57,7 @@ public sealed class SpaceVillainArcadeComponent : SharedSpaceVillainArcadeCompon "ToyMouse", "ToyAi", "ToyNuke", "ToyAssistant", "ToyGriffin", "ToyHonk", "ToyIan", "ToyMarauder", "ToyMauler", "ToyGygax", "ToyOdysseus", "ToyOwlman", "ToyDeathRipley", "ToyPhazon", "ToyFireRipley", "ToyReticence", "ToyRipley", "ToySeraph", "ToyDurand", "ToySkeleton", - "FoamCrossbow", "RevolverCapGun", "PlushieLizard", "PlushieAtmosian", "PlushieSpaceLizard", + "FoamCrossbow", "RevolverCapGun", "PlushieHampter", "PlushieLizard", "PlushieAtmosian", "PlushieSpaceLizard", "PlushieNuke", "PlushieCarp", "PlushieRatvar", "PlushieNar", "PlushieSnake", "Basketball", "Football", "PlushieRouny", "PlushieBee", "PlushieSlime", "BalloonCorgi", "ToySword", "CrayonBox", "BoxDonkSoftBox", "BoxCartridgeCap", "HarmonicaInstrument", "OcarinaInstrument", "RecorderInstrument", "GunpetInstrument", "BirdToyInstrument", "PlushieXeno" diff --git a/Resources/Prototypes/Catalog/Fills/Crates/fun.yml b/Resources/Prototypes/Catalog/Fills/Crates/fun.yml index a08200add8..e8eb6b0cba 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/fun.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/fun.yml @@ -22,6 +22,7 @@ - id: PlushieAtmosian - id: PlushieDiona - id: PlushieXeno + - id: PlushieHampter - type: entity id: CrateFunInstrumentsVariety diff --git a/Resources/Prototypes/Entities/Objects/Fun/toys.yml b/Resources/Prototypes/Entities/Objects/Fun/toys.yml index 1684da371b..1262d30c08 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/toys.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/toys.yml @@ -106,6 +106,27 @@ - ReagentId: GroundBee Quantity: 10 +- type: entity + parent: BasePlushie + id: PlushieHampter + name: hampter plushie + description: A cute stuffed toy that resembles a hamster. Its face looks squished. + components: + - type: Sprite + state: plushie_hampter + - type: EmitSoundOnUse + sound: + path: /Audio/Items/Toys/mousesqueek.ogg + - type: EmitSoundOnLand + sound: + path: /Audio/Items/Toys/mousesqueek.ogg + - type: EmitSoundOnActivate + sound: + path: /Audio/Items/Toys/mousesqueek.ogg + - type: MeleeWeapon + soundHit: + path: /Audio/Items/Toys/mousesqueek.ogg + - type: entity parent: PlushieBee id: PlushieRGBee diff --git a/Resources/Textures/Objects/Fun/toys.rsi/meta.json b/Resources/Textures/Objects/Fun/toys.rsi/meta.json index 188836c3a3..f6af02149a 100644 --- a/Resources/Textures/Objects/Fun/toys.rsi/meta.json +++ b/Resources/Textures/Objects/Fun/toys.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432, orb, orb-inhand-left and orb-inhand-right created by Pancake, plushie_diona and plushie_diona1 created by discord user Deos#5630, toy-mouse-equipped-HELMET is a resprited 1-equipped-HELMET in mouse.rsi by PuroSlavKing (Github), plushie_xeno by LinkUyx#6557", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432, orb, orb-inhand-left and orb-inhand-right created by Pancake, plushie_diona and plushie_diona1 created by discord user Deos#5630, toy-mouse-equipped-HELMET is a resprited 1-equipped-HELMET in mouse.rsi by PuroSlavKing (Github), plushie_xeno by LinkUyx#6557, plushie_hampter by RenLou#4333", "size": { "x": 32, "y": 32 @@ -25,6 +25,9 @@ }, { "name": "plushie_h" + }, + { + "name": "plushie_hampter" }, { "name": "plushie_lizard" diff --git a/Resources/Textures/Objects/Fun/toys.rsi/plushie_hampter.png b/Resources/Textures/Objects/Fun/toys.rsi/plushie_hampter.png new file mode 100644 index 0000000000000000000000000000000000000000..46ecc5887da1d69eb49eb7972ae0c161f80d9345 GIT binary patch literal 579 zcmV-J0=)f+P)Px${YgYYR9J=Wl`&`&Q5?p9PX${_Na0j0N5rewhF&r_XuvGulsHHRF>Zo_4sN1Q zHw71!*3qGhxCk8_4kw4K2QA{_;ZRZzDrcf;)DYy_ka7;;j--Nl2?rwHw;b>8-T(W& z@Bi){#EKQ`f0r2NrPY;1-*syMbi6M2pS~Ka&d30(D~morzd68mqs`fK1^`!YJsGLy zfpN?`UYCy7WxLVl{f7+zKH3fd_pV>^M*)zc4a@<`HyDzVEX>VfWHpSeMq+A`sl=po5<@B1Ei)|S z*jCtofX`dsIdU|Crl&$k$F}(7)T!6MNu}_|1OoG)q#7eIuq`GV8Fc9ba8Bp&FWS(0BIw`#*7}0gB5Ces%NgJ!gN|qm-$+ilV2Lr z=0gFdFW>#Ghe<`{^!Y1XNK6d01mJD+D`_Lc?#^B`006msNwk_S0KpYtx_q0YqK0F~ zwg7m(_Kw372crWB6!f Date: Sat, 3 Jun 2023 14:51:56 -0400 Subject: [PATCH 033/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 36854daec8..72097e5230 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: crazybrain - changes: - - {message: Aspid now requires a minimum of 25 players., type: Tweak} - id: 3428 - time: '2023-04-16T18:53:26.0000000+00:00' - author: Flareguy changes: - {message: 'Emergency space suits, emergency fire suits, and O2 will now always @@ -2902,3 +2897,8 @@ Entries: - {message: Swords no longer clank, type: Tweak} id: 3927 time: '2023-06-03T10:17:15.0000000+00:00' +- author: Renlou + changes: + - {message: Added hampter plushie based on discord emoji/sticker, type: Add} + id: 3928 + time: '2023-06-03T18:50:53.0000000+00:00' From 160e3efe009ab1a66c1231d31090b79c7217f6d5 Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Sun, 4 Jun 2023 06:56:22 +1200 Subject: [PATCH 034/474] Fix sqlite ban time conversion (#17101) --- Content.Server/Database/ServerDbSqlite.cs | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/Content.Server/Database/ServerDbSqlite.cs b/Content.Server/Database/ServerDbSqlite.cs index 57215d349d..fe225266cc 100644 --- a/Content.Server/Database/ServerDbSqlite.cs +++ b/Content.Server/Database/ServerDbSqlite.cs @@ -312,8 +312,9 @@ public override async Task AddServerRoleUnbanAsync(ServerRoleUnbanDef serverUnba uid, ban.Address, ban.HWId == null ? null : ImmutableArray.Create(ban.HWId), - ban.BanTime, - ban.ExpirationTime, + // SQLite apparently always reads DateTime as unspecified, but we always write as UTC. + DateTime.SpecifyKind(ban.BanTime, DateTimeKind.Utc), + ban.ExpirationTime == null ? null : DateTime.SpecifyKind(ban.ExpirationTime.Value, DateTimeKind.Utc), ban.Reason, aUid, unban, @@ -336,7 +337,8 @@ public override async Task AddServerRoleUnbanAsync(ServerRoleUnbanDef serverUnba return new ServerRoleUnbanDef( unban.Id, aUid, - unban.UnbanTime); + // SQLite apparently always reads DateTime as unspecified, but we always write as UTC. + DateTime.SpecifyKind(unban.UnbanTime, DateTimeKind.Utc)); } #endregion @@ -377,8 +379,9 @@ protected override PlayerRecord MakePlayerRecord(Player record) uid, ban.Address, ban.HWId == null ? null : ImmutableArray.Create(ban.HWId), - ban.BanTime, - ban.ExpirationTime, + // SQLite apparently always reads DateTime as unspecified, but we always write as UTC. + DateTime.SpecifyKind(ban.BanTime, DateTimeKind.Utc), + ban.ExpirationTime == null ? null : DateTime.SpecifyKind(ban.ExpirationTime.Value, DateTimeKind.Utc), ban.Reason, aUid, unban); @@ -400,7 +403,8 @@ protected override PlayerRecord MakePlayerRecord(Player record) return new ServerUnbanDef( unban.Id, aUid, - unban.UnbanTime); + // SQLite apparently always reads DateTime as unspecified, but we always write as UTC. + DateTime.SpecifyKind(unban.UnbanTime, DateTimeKind.Utc)); } public override async Task AddConnectionLogAsync( From c46e2f1d686f8046bfb395d859ca3b3831ddddb3 Mon Sep 17 00:00:00 2001 From: Sir Winters <7543955+Owai-Seek@users.noreply.github.com> Date: Sat, 3 Jun 2023 15:07:06 -0400 Subject: [PATCH 035/474] Adds some Janitorial GuideHelp tags. (#17090) Co-authored-by: Owai-Seek <> --- .../Entities/Objects/Specific/Janitorial/janitor.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/janitor.yml b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/janitor.yml index 0c0da46a7b..22f5b801da 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/janitor.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/janitor.yml @@ -33,6 +33,9 @@ tags: - DroneUsable #No bucket because it holds chems, they can drag the cart or use a drain - Mop + - type: GuideHelp + guides: + - Janitorial - type: entity parent: BaseItem @@ -131,6 +134,9 @@ - type: SolutionContainerVisuals maxFillLevels: 3 fillBaseName: mopbucket_water- + - type: GuideHelp + guides: + - Janitorial - type: entity name: mop bucket @@ -369,6 +375,9 @@ mop_slot: !type:ContainerSlot {} trashbag_slot: !type:ContainerSlot {} bucket_slot: !type:ContainerSlot {} + - type: GuideHelp + guides: + - Janitorial - type: entity id: FloorDrain @@ -422,6 +431,9 @@ - !type:PlaySoundBehavior sound: path: /Audio/Effects/metalbreak.ogg + - type: GuideHelp + guides: + - Janitorial - type: entity parent: BaseItem From b4ecd6143874d2b7991356ec36eff02d637f1573 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 3 Jun 2023 15:08:09 -0400 Subject: [PATCH 036/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 72097e5230..04112f1505 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Flareguy - changes: - - {message: 'Emergency space suits, emergency fire suits, and O2 will now always - spawn in their respective lockers.', type: Tweak} - - {message: Maintenance wall lockers no longer contain emergency locker gear., type: Fix} - id: 3429 - time: '2023-04-17T05:38:43.0000000+00:00' - author: Owai-Seek changes: - {message: added bomber jackets to clothesmate vendor, type: Add} @@ -2902,3 +2895,8 @@ Entries: - {message: Added hampter plushie based on discord emoji/sticker, type: Add} id: 3928 time: '2023-06-03T18:50:53.0000000+00:00' +- author: Owai-Seek + changes: + - {message: Added GuideHelp tags to some Janitorial items., type: Add} + id: 3929 + time: '2023-06-03T19:07:06.0000000+00:00' From 2bef7bfa38c4afa535c53eb8accfdd90078467c0 Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Sat, 3 Jun 2023 19:08:52 +0000 Subject: [PATCH 037/474] magic bread wand (#17044) Co-authored-by: deltanedas <@deltanedas:kde.org> --- .../Nutrition/EntitySystems/FoodSystem.cs | 11 ++- .../EntitySystems/SliceableFoodSystem.cs | 29 +++++-- Content.Server/Nutrition/IngestionEvents.cs | 24 ++++++ .../Polymorph/Systems/PolymorphSystem.cs | 76 ++++++++++++++----- .../Polymorph/PolymorphPrototype.cs | 6 ++ .../Objects/Weapons/Guns/Basic/wands.yml | 11 +++ .../Weapons/Guns/Projectiles/magic.yml | 12 +++ Resources/Prototypes/Polymorphs/polymorph.yml | 11 +++ 8 files changed, 152 insertions(+), 28 deletions(-) diff --git a/Content.Server/Nutrition/EntitySystems/FoodSystem.cs b/Content.Server/Nutrition/EntitySystems/FoodSystem.cs index 1e0d253dcb..c875bfaf8b 100644 --- a/Content.Server/Nutrition/EntitySystems/FoodSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/FoodSystem.cs @@ -293,9 +293,16 @@ private void OnDoAfter(EntityUid uid, FoodComponent component, ConsumeDoAfterEve return; } - if (string.IsNullOrEmpty(component.TrashPrototype)) - EntityManager.QueueDeleteEntity(uid); + var ev = new BeforeFullyEatenEvent + { + User = args.User + }; + RaiseLocalEvent(uid, ev); + if (ev.Cancelled) + return; + if (string.IsNullOrEmpty(component.TrashPrototype)) + QueueDel(uid); else DeleteAndSpawnTrash(component, uid, args.User); } diff --git a/Content.Server/Nutrition/EntitySystems/SliceableFoodSystem.cs b/Content.Server/Nutrition/EntitySystems/SliceableFoodSystem.cs index 3825d78045..c4b248ff93 100644 --- a/Content.Server/Nutrition/EntitySystems/SliceableFoodSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/SliceableFoodSystem.cs @@ -1,5 +1,6 @@ using Content.Server.Chemistry.Components.SolutionManager; using Content.Server.Chemistry.EntitySystems; +using Content.Server.Nutrition; using Content.Server.Nutrition.Components; using Content.Shared.Chemistry.Components; using Content.Shared.Examine; @@ -51,12 +52,12 @@ private bool TrySliceFood(EntityUid uid, EntityUid user, EntityUid usedItem, return false; } - if (!EntityManager.TryGetComponent(usedItem, out UtensilComponent ? utensil) || (utensil.Types & UtensilType.Knife) == 0) + if (!TryComp(usedItem, out var utensil) || (utensil.Types & UtensilType.Knife) == 0) { return false; } - var sliceUid = EntityManager.SpawnEntity(component.Slice, transform.Coordinates); + var sliceUid = Spawn(component.Slice, transform.Coordinates); var lostSolution = _solutionContainerSystem.SplitSolution(uid, solution, solution.Volume / FixedPoint2.New(component.Count)); @@ -91,7 +92,7 @@ private bool TrySliceFood(EntityUid uid, EntityUid user, EntityUid usedItem, // If someone makes food proto with 1 slice... if (component.Count < 1) { - EntityManager.DeleteEntity(uid); + DeleteFood(uid, user); return true; } @@ -99,7 +100,7 @@ private bool TrySliceFood(EntityUid uid, EntityUid user, EntityUid usedItem, if (component.Count > 1) return true; - sliceUid = EntityManager.SpawnEntity(component.Slice, transform.Coordinates); + sliceUid = Spawn(component.Slice, transform.Coordinates); // Fill last slice with the rest of the solution FillSlice(sliceUid, solution); @@ -115,14 +116,26 @@ private bool TrySliceFood(EntityUid uid, EntityUid user, EntityUid usedItem, xform.LocalRotation = 0; } - EntityManager.DeleteEntity(uid); + DeleteFood(uid, user); return true; } + private void DeleteFood(EntityUid uid, EntityUid user) + { + var ev = new BeforeFullySlicedEvent + { + User = user + }; + RaiseLocalEvent(uid, ev); + + if (!ev.Cancelled) + Del(uid); + } + private void FillSlice(EntityUid sliceUid, Solution solution) { // Replace all reagents on prototype not just copying poisons (example: slices of eaten pizza should have less nutrition) - if (EntityManager.TryGetComponent(sliceUid, out var sliceFoodComp) && + if (TryComp(sliceUid, out var sliceFoodComp) && _solutionContainerSystem.TryGetSolution(sliceUid, sliceFoodComp.SolutionName, out var itsSolution)) { _solutionContainerSystem.RemoveAllSolution(sliceUid, itsSolution); @@ -135,9 +148,9 @@ private void FillSlice(EntityUid sliceUid, Solution solution) private void OnComponentStartup(EntityUid uid, SliceableFoodComponent component, ComponentStartup args) { component.Count = component.TotalCount; - var foodComp = EntityManager.EnsureComponent(uid); + var foodComp = EnsureComp(uid); - EntityManager.EnsureComponent(uid); + EnsureComp(uid); _solutionContainerSystem.EnsureSolution(uid, foodComp.SolutionName); } diff --git a/Content.Server/Nutrition/IngestionEvents.cs b/Content.Server/Nutrition/IngestionEvents.cs index c9668ad9db..ae1d22fb71 100644 --- a/Content.Server/Nutrition/IngestionEvents.cs +++ b/Content.Server/Nutrition/IngestionEvents.cs @@ -10,3 +10,27 @@ public sealed class IngestionAttemptEvent : CancellableEntityEventArgs ///

public EntityUid? Blocker = null; } + +/// +/// Raised directed at the food after finishing eating a food before it's deleted. +/// Cancel this if you want to do something special before a food is deleted. +/// +public sealed class BeforeFullyEatenEvent : CancellableEntityEventArgs +{ + /// + /// The person that ate the food. + /// + public EntityUid User; +} + +/// +/// Raised directed at the food being sliced before it's deleted. +/// Cancel this if you want to do something special before a food is deleted. +/// +public sealed class BeforeFullySlicedEvent : CancellableEntityEventArgs +{ + /// + /// The person slicing the food. + /// + public EntityUid User; +} diff --git a/Content.Server/Polymorph/Systems/PolymorphSystem.cs b/Content.Server/Polymorph/Systems/PolymorphSystem.cs index 621eafb3b6..f0368aedce 100644 --- a/Content.Server/Polymorph/Systems/PolymorphSystem.cs +++ b/Content.Server/Polymorph/Systems/PolymorphSystem.cs @@ -3,6 +3,7 @@ using Content.Server.Inventory; using Content.Server.Mind.Commands; using Content.Server.Mind.Components; +using Content.Server.Nutrition; using Content.Server.Polymorph.Components; using Content.Shared.Actions; using Content.Shared.Actions.ActionTypes; @@ -41,7 +42,7 @@ public sealed partial class PolymorphSystem : EntitySystem [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly TransformSystem _transform = default!; - private readonly ISawmill _saw = default!; + private ISawmill _sawmill = default!; public override void Initialize() { @@ -50,10 +51,14 @@ public override void Initialize() SubscribeLocalEvent(OnStartup); SubscribeLocalEvent(OnPolymorphActionEvent); SubscribeLocalEvent(OnStartup); + SubscribeLocalEvent(OnBeforeFullyEaten); + SubscribeLocalEvent(OnBeforeFullySliced); SubscribeLocalEvent(OnRevertPolymorphActionEvent); InitializeCollide(); InitializeMap(); + + _sawmill = Logger.GetSawmill("polymorph"); } private void OnStartup(EntityUid uid, PolymorphableComponent component, ComponentStartup args) @@ -82,7 +87,7 @@ public void OnStartup(EntityUid uid, PolymorphedEntityComponent component, Compo if (!_proto.TryIndex(component.Prototype, out PolymorphPrototype? proto)) { // warning instead of error because of the all-comps one entity test. - Logger.Warning($"{nameof(PolymorphSystem)} encountered an improperly set up polymorph component while initializing. Entity {ToPrettyString(uid)}. Prototype: {component.Prototype}"); + _sawmill.Warning($"{nameof(PolymorphSystem)} encountered an improperly set up polymorph component while initializing. Entity {ToPrettyString(uid)}. Prototype: {component.Prototype}"); RemCompDeferred(uid, component); return; } @@ -102,6 +107,36 @@ public void OnStartup(EntityUid uid, PolymorphedEntityComponent component, Compo _actions.AddAction(uid, act, null); } + private void OnBeforeFullyEaten(EntityUid uid, PolymorphedEntityComponent comp, BeforeFullyEatenEvent args) + { + if (!_proto.TryIndex(comp.Prototype, out var proto)) + { + _sawmill.Error("Invalid polymorph prototype {comp.Prototype}"); + return; + } + + if (proto.RevertOnEat) + { + args.Cancel(); + Revert(uid, comp); + } + } + + private void OnBeforeFullySliced(EntityUid uid, PolymorphedEntityComponent comp, BeforeFullySlicedEvent args) + { + if (!_proto.TryIndex(comp.Prototype, out var proto)) + { + _sawmill.Error("Invalid polymorph prototype {comp.Prototype}"); + return; + } + + if (proto.RevertOnEat) + { + args.Cancel(); + Revert(uid, comp); + } + } + /// /// Polymorphs the target entity into the specific polymorph prototype /// @@ -111,7 +146,7 @@ public void OnStartup(EntityUid uid, PolymorphedEntityComponent component, Compo { if (!_proto.TryIndex(id, out var proto)) { - _saw.Error("Invalid polymorph prototype"); + _sawmill.Error("Invalid polymorph prototype {id}"); return null; } @@ -225,7 +260,7 @@ public void Revert(EntityUid uid, PolymorphedEntityComponent? component = null) if (!_proto.TryIndex(component.Prototype, out PolymorphPrototype? proto)) { - Logger.Error($"{nameof(PolymorphSystem)} encountered an improperly initialized polymorph component while reverting. Entity {ToPrettyString(uid)}. Prototype: {component.Prototype}"); + _sawmill.Error($"{nameof(PolymorphSystem)} encountered an improperly initialized polymorph component while reverting. Entity {ToPrettyString(uid)}. Prototype: {component.Prototype}"); return; } @@ -236,9 +271,6 @@ public void Revert(EntityUid uid, PolymorphedEntityComponent? component = null) parentXform.Coordinates = uidXform.Coordinates; parentXform.LocalRotation = uidXform.LocalRotation; - if (_container.TryGetContainingContainer(uid, out var cont)) - cont.Insert(component.Parent); - if (proto.TransferDamage && TryComp(parent, out var damageParent) && _mobThreshold.GetScaledDamage(uid, parent, out var damage) && @@ -277,6 +309,9 @@ public void Revert(EntityUid uid, PolymorphedEntityComponent? component = null) mind.Mind.TransferTo(parent); } + // if an item polymorph was picked up, put it back down after reverting + Transform(parent).AttachToGridOrMap(); + _popup.PopupEntity(Loc.GetString("polymorph-revert-popup-generic", ("parent", Identity.Entity(uid, EntityManager)), ("child", Identity.Entity(parent, EntityManager))), @@ -293,7 +328,7 @@ public void CreatePolymorphAction(string id, EntityUid target) { if (!_proto.TryIndex(id, out var polyproto)) { - _saw.Error("Invalid polymorph prototype"); + _sawmill.Error("Invalid polymorph prototype"); return; } @@ -335,27 +370,32 @@ public override void Update(float frameTime) { base.Update(frameTime); - foreach (var comp in EntityQuery()) + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var comp)) { comp.Time += frameTime; - var ent = comp.Owner; if (!_proto.TryIndex(comp.Prototype, out PolymorphPrototype? proto)) { - Logger.Error($"{nameof(PolymorphSystem)} encountered an improperly initialized polymorph component while updating. Entity {ToPrettyString(ent)}. Prototype: {comp.Prototype}"); - RemCompDeferred(ent, comp); + _sawmill.Error($"{nameof(PolymorphSystem)} encountered an improperly initialized polymorph component while updating. Entity {ToPrettyString(uid)}. Prototype: {comp.Prototype}"); + RemCompDeferred(uid, comp); continue; } - if(proto.Duration != null && comp.Time >= proto.Duration) - Revert(ent, comp); + if (proto.Duration != null && comp.Time >= proto.Duration) + { + Revert(uid, comp); + continue; + } - if (!TryComp(ent, out var mob)) + if (!TryComp(uid, out var mob)) continue; - if (proto.RevertOnDeath && _mobState.IsDead(ent, mob) || - proto.RevertOnCrit && _mobState.IsIncapacitated(ent, mob)) - Revert(ent, comp); + if (proto.RevertOnDeath && _mobState.IsDead(uid, mob) || + proto.RevertOnCrit && _mobState.IsIncapacitated(uid, mob)) + { + Revert(uid, comp); + } } UpdateCollide(); diff --git a/Content.Shared/Polymorph/PolymorphPrototype.cs b/Content.Shared/Polymorph/PolymorphPrototype.cs index 1685422213..7663e960b8 100644 --- a/Content.Shared/Polymorph/PolymorphPrototype.cs +++ b/Content.Shared/Polymorph/PolymorphPrototype.cs @@ -89,6 +89,12 @@ public sealed class PolymorphPrototype : IPrototype, IInheritingPrototype [DataField("revertOnDeath", serverOnly: true)] public bool RevertOnDeath = true; + /// + /// Whether or not the polymorph reverts when the entity is eaten or fully sliced. + /// + [DataField("revertOnEat", serverOnly: true)] + public bool RevertOnEat = false; + [DataField("allowRepeatedMorphs", serverOnly: true)] public bool AllowRepeatedMorphs = false; } diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/wands.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/wands.yml index af2b3b86d6..e723a1db5f 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/wands.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/wands.yml @@ -105,3 +105,14 @@ proto: ProjectilePolyboltCluwne capacity: 3 count: 3 + +- type: entity + parent: WeaponWandPolymorphBase + id: WeaponWandPolymorphBread + name: magic bread wand + description: Turn all your friends into bread! Your boss! Your enemies! Your dog! Make everything bread! + components: + - type: BasicEntityAmmoProvider + proto: ProjectilePolyboltBread + capacity: 10 + count: 10 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/magic.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/magic.yml index 472233d3b3..e1628c3a36 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/magic.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/magic.yml @@ -141,3 +141,15 @@ Cold: 20 Structural: 40 +- type: entity + parent: ProjectilePolyboltBase + id: ProjectilePolyboltBread + name: bread polybolt + description: Nooo, I don't wanna be bread! + noSpawn: true + components: + - type: PolymorphOnCollide + polymorph: BreadMorph + whitelist: + components: + - Body diff --git a/Resources/Prototypes/Polymorphs/polymorph.yml b/Resources/Prototypes/Polymorphs/polymorph.yml index 9c6076fc6f..ccc35ae47a 100644 --- a/Resources/Prototypes/Polymorphs/polymorph.yml +++ b/Resources/Prototypes/Polymorphs/polymorph.yml @@ -83,3 +83,14 @@ transferName: true revertOnCrit: false revertOnDeath: false + +- type: polymorph + id: BreadMorph + entity: FoodBreadPlain + forced: true + inventory: None + transferName: false + transferDamage: true + revertOnCrit: false + revertOnDeath: true + revertOnEat: true From 304832dcf688afa37286cc1a77576124b23f274f Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Sat, 3 Jun 2023 19:09:18 +0000 Subject: [PATCH 038/474] floor recharger examine charge rate (#17074) Co-authored-by: deltanedas <@deltanedas:kde.org> --- Content.Server/Power/EntitySystems/ChargerSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Power/EntitySystems/ChargerSystem.cs b/Content.Server/Power/EntitySystems/ChargerSystem.cs index 4fbac94ee0..96a71fc02a 100644 --- a/Content.Server/Power/EntitySystems/ChargerSystem.cs +++ b/Content.Server/Power/EntitySystems/ChargerSystem.cs @@ -37,7 +37,7 @@ private void OnStartup(EntityUid uid, ChargerComponent component, ComponentStart private void OnChargerExamine(EntityUid uid, ChargerComponent component, ExaminedEvent args) { - args.PushMarkup(Loc.GetString("charger-examine", ("color", "yellow"), ("chargeRate", component.ChargeRate))); + args.PushMarkup(Loc.GetString("charger-examine", ("color", "yellow"), ("chargeRate", (int) component.ChargeRate))); } public override void Update(float frameTime) From ee784ac17c1c91d42bd798a3fcc04b525d1f6e60 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Sat, 3 Jun 2023 21:10:07 +0200 Subject: [PATCH 039/474] Use THE() for SecretStash (#17049) --- .../Storage/EntitySystems/SecretStashSystem.cs | 12 +++++------- .../storage/components/secret-stash-component.ftl | 8 ++++---- 2 files changed, 9 insertions(+), 11 deletions(-) diff --git a/Content.Server/Storage/EntitySystems/SecretStashSystem.cs b/Content.Server/Storage/EntitySystems/SecretStashSystem.cs index dee1d0ffb3..81e8bd431e 100644 --- a/Content.Server/Storage/EntitySystems/SecretStashSystem.cs +++ b/Content.Server/Storage/EntitySystems/SecretStashSystem.cs @@ -47,11 +47,11 @@ public bool HasItemInside(EntityUid uid, SecretStashComponent? component = null) /// True if item was hidden inside stash public bool TryHideItem(EntityUid uid, EntityUid userUid, EntityUid itemToHideUid, SecretStashComponent? component = null, ItemComponent? item = null, - MetaDataComponent? itemMeta = null, HandsComponent? hands = null) + HandsComponent? hands = null) { if (!Resolve(uid, ref component)) return false; - if (!Resolve(itemToHideUid, ref item, ref itemMeta)) + if (!Resolve(itemToHideUid, ref item)) return false; if (!Resolve(userUid, ref hands)) return false; @@ -66,11 +66,10 @@ public bool TryHideItem(EntityUid uid, EntityUid userUid, EntityUid itemToHideUi } // check if item is too big to fit into secret stash - var itemName = itemMeta.EntityName; if (item.Size > component.MaxItemSize) { var msg = Loc.GetString("comp-secret-stash-action-hide-item-too-big", - ("item", itemName), ("stash", GetSecretPartName(uid, component))); + ("item", itemToHideUid), ("stash", GetSecretPartName(uid, component))); _popupSystem.PopupEntity(msg, uid, userUid); return false; } @@ -83,7 +82,7 @@ public bool TryHideItem(EntityUid uid, EntityUid userUid, EntityUid itemToHideUi // all done, show success message var successMsg = Loc.GetString("comp-secret-stash-action-hide-success", - ("item", itemName), ("this", GetSecretPartName(uid, component))); + ("item", itemToHideUid), ("this", GetSecretPartName(uid, component))); _popupSystem.PopupEntity(successMsg, uid, userUid); return true; } @@ -123,8 +122,7 @@ private string GetSecretPartName(EntityUid uid, SecretStashComponent stash) if (stash.SecretPartName != "") return Loc.GetString(stash.SecretPartName); - var meta = EntityManager.GetComponent(uid); - var entityName = Loc.GetString("comp-secret-stash-secret-part-name", ("name", meta.EntityName)); + var entityName = Loc.GetString("comp-secret-stash-secret-part-name", ("this", uid)); return entityName; } diff --git a/Resources/Locale/en-US/storage/components/secret-stash-component.ftl b/Resources/Locale/en-US/storage/components/secret-stash-component.ftl index 1d3fe38c69..d41933b374 100644 --- a/Resources/Locale/en-US/storage/components/secret-stash-component.ftl +++ b/Resources/Locale/en-US/storage/components/secret-stash-component.ftl @@ -1,10 +1,10 @@ ### Secret stash component. Stuff like potted plants, comfy chair cushions, etc... -comp-secret-stash-secret-part-name = {$name} -comp-secret-stash-action-hide-success = You hide {$item} in { $this } +comp-secret-stash-secret-part-name = { THE($item) } +comp-secret-stash-action-hide-success = You hide { THE($item) } in { $this } comp-secret-stash-action-hide-container-not-empty = There's already something in here?! -comp-secret-stash-action-hide-item-too-big = {$item} is too big to fit in {$stash}! +comp-secret-stash-action-hide-item-too-big = { THE($item) } is too big to fit in {$stash}! comp-secret-stash-action-get-item-found-something = There was something inside {$stash}! secret-stash-part-plant = the plant -secret-stash-part-toilet = the toilet cistern \ No newline at end of file +secret-stash-part-toilet = the toilet cistern From 66aa0969ba8723d0bfbfea70b6d3e45cd0425465 Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Sat, 3 Jun 2023 22:12:26 +0300 Subject: [PATCH 040/474] Add RadiationBlocker to uranium window (#17067) --- Resources/Prototypes/Entities/Structures/Windows/uranium.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Resources/Prototypes/Entities/Structures/Windows/uranium.yml b/Resources/Prototypes/Entities/Structures/Windows/uranium.yml index 4820043fb2..0728f80c43 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/uranium.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/uranium.yml @@ -42,3 +42,5 @@ sprite: Structures/Windows/cracks.rsi - type: StaticPrice price: 80 + - type: RadiationBlocker + resistance: 3 From 042d3437e3057c89a3ffa6859d00aea3bff10e2d Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Sat, 3 Jun 2023 21:13:30 +0200 Subject: [PATCH 041/474] Make electrocutions look nicer on the power monitor. (#16965) --- .../Electrocution/ElectrocutionSystem.cs | 4 ++++ .../Entities/Virtual/electrocution.yml | 19 +++++++++++++------ 2 files changed, 17 insertions(+), 6 deletions(-) diff --git a/Content.Server/Electrocution/ElectrocutionSystem.cs b/Content.Server/Electrocution/ElectrocutionSystem.cs index 487c556873..1caffd1fd5 100644 --- a/Content.Server/Electrocution/ElectrocutionSystem.cs +++ b/Content.Server/Electrocution/ElectrocutionSystem.cs @@ -323,6 +323,10 @@ private bool TryDoElectrocutionPowered( var electrocutionNode = Comp(electrocutionEntity).GetNode("electrocution"); var electrocutionComponent = Comp(electrocutionEntity); + // This shows up in the power monitor. + // Yes. Yes exactly. + MetaData(electrocutionEntity).EntityName = MetaData(uid).EntityName; + electrocutionNode.CableEntity = sourceUid; electrocutionNode.NodeName = node.Name; diff --git a/Resources/Prototypes/Entities/Virtual/electrocution.yml b/Resources/Prototypes/Entities/Virtual/electrocution.yml index c04c4943ca..497071ee93 100644 --- a/Resources/Prototypes/Entities/Virtual/electrocution.yml +++ b/Resources/Prototypes/Entities/Virtual/electrocution.yml @@ -1,7 +1,17 @@ # Special entity used to attach to power networks as load when somebody gets electrocuted. +- type: entity + id: VirtualElectrocutionLoadBase + noSpawn: true + components: + - type: Electrocution + - type: Icon + # Shows up inside the power monitoring console. + sprite: "Structures/Wallmounts/signs.rsi" + state: "shock" + - type: entity id: VirtualElectrocutionLoadHVPower - name: ELECTROCUTION ENTITY YOU SHOULD NOT SEE THIS + parent: VirtualElectrocutionLoadBase noSpawn: true components: - type: NodeContainer @@ -12,11 +22,10 @@ - type: PowerConsumer voltage: High drawRate: 50000 - - type: Electrocution - type: entity id: VirtualElectrocutionLoadMVPower - name: ELECTROCUTION ENTITY YOU SHOULD NOT SEE THIS + parent: VirtualElectrocutionLoadBase noSpawn: true components: - type: NodeContainer @@ -27,11 +36,10 @@ - type: PowerConsumer voltage: Medium drawRate: 50000 - - type: Electrocution - type: entity id: VirtualElectrocutionLoadApc - name: ELECTROCUTION ENTITY YOU SHOULD NOT SEE THIS + parent: VirtualElectrocutionLoadBase noSpawn: true components: - type: NodeContainer @@ -42,4 +50,3 @@ - type: PowerConsumer voltage: Apc drawRate: 50000 - - type: Electrocution From fbba9a1afbefc05ee62b65e80dfec15d8151736b Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 3 Jun 2023 15:13:32 -0400 Subject: [PATCH 042/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 04112f1505..77addf08d7 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,10 +1,4 @@ Entries: -- author: Owai-Seek - changes: - - {message: added bomber jackets to clothesmate vendor, type: Add} - - {message: moved bowler hat to bardrobe, type: Tweak} - id: 3430 - time: '2023-04-17T05:43:42.0000000+00:00' - author: Morb0 changes: - {message: Fix displaying tracking implanted person on crew monitor systems, type: Fix} @@ -2900,3 +2894,8 @@ Entries: - {message: Added GuideHelp tags to some Janitorial items., type: Add} id: 3929 time: '2023-06-03T19:07:06.0000000+00:00' +- author: lzk228 + changes: + - {message: Uranium window now can block radiation, type: Tweak} + id: 3930 + time: '2023-06-03T19:12:27.0000000+00:00' From 353882f6f7675787e7730fbf18d018420d770a79 Mon Sep 17 00:00:00 2001 From: Debug <49997488+DebugOk@users.noreply.github.com> Date: Sat, 3 Jun 2023 21:13:48 +0200 Subject: [PATCH 043/474] Fix the AdjStationJob command (#17070) --- .../Administration/Commands/Station/AdjustStationJobCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Administration/Commands/Station/AdjustStationJobCommand.cs b/Content.Server/Administration/Commands/Station/AdjustStationJobCommand.cs index cd221aafa6..1bb0668e52 100644 --- a/Content.Server/Administration/Commands/Station/AdjustStationJobCommand.cs +++ b/Content.Server/Administration/Commands/Station/AdjustStationJobCommand.cs @@ -30,7 +30,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) var stationJobs = _entSysManager.GetEntitySystem(); - if (!EntityUid.TryParse(args[0], out var station) || _entityManager.HasComponent(station)) + if (!EntityUid.TryParse(args[0], out var station) || !_entityManager.HasComponent(station)) { shell.WriteError(Loc.GetString("shell-argument-station-id-invalid", ("index", 1))); return; From aca350737094494a3f237c92664bc976d2a69d74 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 3 Jun 2023 15:14:39 -0400 Subject: [PATCH 044/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 77addf08d7..7fe3b4768f 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: Morb0 - changes: - - {message: Fix displaying tracking implanted person on crew monitor systems, type: Fix} - id: 3431 - time: '2023-04-17T05:51:13.0000000+00:00' - author: Whisper changes: - {message: Jester shoes now jingle., type: Add} @@ -2899,3 +2894,9 @@ Entries: - {message: Uranium window now can block radiation, type: Tweak} id: 3930 time: '2023-06-03T19:12:27.0000000+00:00' +- author: PJB3005 + changes: + - {message: Players being electrocuted now shows up nicer on the power monitoring + console., type: Tweak} + id: 3931 + time: '2023-06-03T19:13:31.0000000+00:00' From d8c05d013ede02ec9e5714d95d05a89f4ee4f943 Mon Sep 17 00:00:00 2001 From: Vordenburg <114301317+Vordenburg@users.noreply.github.com> Date: Sat, 3 Jun 2023 15:29:46 -0400 Subject: [PATCH 045/474] Triple strength of THC (#16866) --- Resources/Prototypes/Reagents/narcotics.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Resources/Prototypes/Reagents/narcotics.yml b/Resources/Prototypes/Reagents/narcotics.yml index 616904789b..74890df082 100644 --- a/Resources/Prototypes/Reagents/narcotics.yml +++ b/Resources/Prototypes/Reagents/narcotics.yml @@ -273,7 +273,7 @@ key: SeeingRainbows component: SeeingRainbows type: Add - time: 5 + time: 16 refresh: false - type: reagent @@ -291,7 +291,7 @@ key: SeeingRainbows component: SeeingRainbows type: Add - time: 5 + time: 16 refresh: false - type: reagent From 49ba959b8298b7b3891b1a98f132ec798a95e9bf Mon Sep 17 00:00:00 2001 From: Vordenburg <114301317+Vordenburg@users.noreply.github.com> Date: Sat, 3 Jun 2023 15:30:20 -0400 Subject: [PATCH 046/474] Support multiple containers for HealingComponent (#16867) --- .../Medical/Components/HealingComponent.cs | 7 +++---- Content.Server/Medical/HealingSystem.cs | 13 ++++++++++--- .../Entities/Objects/Materials/materials.yml | 3 ++- .../Entities/Objects/Specific/Medical/healing.yml | 12 ++++++++---- 4 files changed, 23 insertions(+), 12 deletions(-) diff --git a/Content.Server/Medical/Components/HealingComponent.cs b/Content.Server/Medical/Components/HealingComponent.cs index 439f2eb5d8..22d1f9a7e0 100644 --- a/Content.Server/Medical/Components/HealingComponent.cs +++ b/Content.Server/Medical/Components/HealingComponent.cs @@ -1,8 +1,7 @@ using Content.Shared.Damage; using Content.Shared.Damage.Prototypes; -using Content.Shared.DoAfter; using Robust.Shared.Audio; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; namespace Content.Server.Medical.Components { @@ -36,8 +35,8 @@ public sealed class HealingComponent : Component /// HealingComponent this filters what damage container type this component should work on. If null, /// all damage container types are supported. /// - [DataField("damageContainer", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string? DamageContainerID; + [DataField("damageContainers", customTypeSerializer: typeof(PrototypeIdListSerializer))] + public List? DamageContainers; /// /// How long it takes to apply the damage. diff --git a/Content.Server/Medical/HealingSystem.cs b/Content.Server/Medical/HealingSystem.cs index bca0a714ee..b442a501e1 100644 --- a/Content.Server/Medical/HealingSystem.cs +++ b/Content.Server/Medical/HealingSystem.cs @@ -51,8 +51,12 @@ private void OnDoAfter(EntityUid uid, DamageableComponent component, HealingDoAf if (args.Handled || args.Cancelled) return; - if (component.DamageContainerID is not null && !component.DamageContainerID.Equals(component.DamageContainerID)) + if (healing.DamageContainers is not null && + component.DamageContainerID is not null && + !healing.DamageContainers.Contains(component.DamageContainerID)) + { return; + } // Heal some bloodloss damage. if (healing.BloodlossModifier != 0) @@ -140,9 +144,12 @@ private bool TryHeal(EntityUid uid, EntityUid user, EntityUid target, HealingCom if (!TryComp(target, out var targetDamage)) return false; - if (component.DamageContainerID is not null && - !component.DamageContainerID.Equals(targetDamage.DamageContainerID)) + if (component.DamageContainers is not null && + targetDamage.DamageContainerID is not null && + !component.DamageContainers.Contains(targetDamage.DamageContainerID)) + { return false; + } if (user != target && !_interactionSystem.InRangeUnobstructed(user, target, popup: true)) return false; diff --git a/Resources/Prototypes/Entities/Objects/Materials/materials.yml b/Resources/Prototypes/Entities/Objects/Materials/materials.yml index a306238ef4..e6c1febdf3 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/materials.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/materials.yml @@ -71,7 +71,8 @@ - DroneUsable - Gauze - type: Healing - damageContainer: Biological + damageContainers: + - Biological damage: types: Slash: -0.5 diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml index 451e26cc0e..b0008f219e 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml @@ -26,7 +26,8 @@ - type: Item heldPrefix: ointment - type: Healing - damageContainer: Biological + damageContainers: + - Biological damage: types: Heat: -5 @@ -63,7 +64,8 @@ - type: Sprite state: brutepack - type: Healing - damageContainer: Biological + damageContainers: + - Biological damage: groups: Brute: -15 # 5 for each type in the group @@ -97,7 +99,8 @@ - type: Sprite state: bloodpack - type: Healing - damageContainer: Biological + damageContainers: + - Biological damage: types: Bloodloss: -0.5 #lowers bloodloss damage @@ -127,7 +130,8 @@ graph: Gauze node: gauze - type: Healing - damageContainer: Biological + damageContainers: + - Biological damage: types: Slash: -2.5 From e4670a0636c996b17b48cf243fc8ca42b4b4b73a Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 3 Jun 2023 15:30:50 -0400 Subject: [PATCH 047/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 7fe3b4768f..16268d8176 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: Whisper - changes: - - {message: Jester shoes now jingle., type: Add} - id: 3432 - time: '2023-04-17T05:56:19.0000000+00:00' - author: EmoGarbage404 changes: - {message: The research team in the XenoArcheology lab have discovered how to extract @@ -2900,3 +2895,8 @@ Entries: console., type: Tweak} id: 3931 time: '2023-06-03T19:13:31.0000000+00:00' +- author: Vordenburg + changes: + - {message: Joints and blunts will get you high again., type: Fix} + id: 3932 + time: '2023-06-03T19:29:46.0000000+00:00' From 4cc988b668c82d4d0e3f3eb3e0fc92b0d75da231 Mon Sep 17 00:00:00 2001 From: Tom Leys Date: Sun, 4 Jun 2023 07:31:10 +1200 Subject: [PATCH 048/474] Flesh Anomaly spawns a lot more kudzu (#16800) --- Content.Server/Anomaly/Effects/EntityAnomalySystem.cs | 11 +++++++---- Resources/Prototypes/Entities/Objects/Misc/kudzu.yml | 5 +++-- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/Content.Server/Anomaly/Effects/EntityAnomalySystem.cs b/Content.Server/Anomaly/Effects/EntityAnomalySystem.cs index 6a03577928..46caa39ba7 100644 --- a/Content.Server/Anomaly/Effects/EntityAnomalySystem.cs +++ b/Content.Server/Anomaly/Effects/EntityAnomalySystem.cs @@ -31,17 +31,20 @@ private void OnPulse(EntityUid uid, EntitySpawnAnomalyComponent component, ref A var amount = (int) (component.MaxSpawnAmount * args.Severity + 0.5f); var xform = Transform(uid); - SpawnMonstersOnOpenTiles(component, xform, amount, range); + SpawnMonstersOnOpenTiles(component, xform, amount, range, component.Spawns); } private void OnSupercritical(EntityUid uid, EntitySpawnAnomalyComponent component, ref AnomalySupercriticalEvent args) { var xform = Transform(uid); - SpawnMonstersOnOpenTiles(component, xform, component.MaxSpawnAmount, component.SpawnRange); + // A cluster of monsters + SpawnMonstersOnOpenTiles(component, xform, component.MaxSpawnAmount, component.SpawnRange, component.Spawns); + // And so much meat (for the meat anomaly at least) Spawn(component.SupercriticalSpawn, xform.Coordinates); + SpawnMonstersOnOpenTiles(component, xform, component.MaxSpawnAmount, component.SpawnRange, new List(){component.SupercriticalSpawn}); } - private void SpawnMonstersOnOpenTiles(EntitySpawnAnomalyComponent component, TransformComponent xform, int amount, float radius) + private void SpawnMonstersOnOpenTiles(EntitySpawnAnomalyComponent component, TransformComponent xform, int amount, float radius, List spawns) { if (!component.Spawns.Any()) return; @@ -76,7 +79,7 @@ private void SpawnMonstersOnOpenTiles(EntitySpawnAnomalyComponent component, Tra if (!valid) continue; amountCounter++; - Spawn(_random.Pick(component.Spawns), tileref.GridIndices.ToEntityCoordinates(xform.GridUid.Value, _map)); + Spawn(_random.Pick(spawns), tileref.GridIndices.ToEntityCoordinates(xform.GridUid.Value, _map)); if (amountCounter >= amount) return; } diff --git a/Resources/Prototypes/Entities/Objects/Misc/kudzu.yml b/Resources/Prototypes/Entities/Objects/Misc/kudzu.yml index d2e6ab9429..d1d026fb5d 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/kudzu.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/kudzu.yml @@ -157,7 +157,8 @@ tags: - Flesh - type: Kudzu - growthTickChance: 0.3 + growthTickChance: 0.1 + spreadChance: 0.4 # Heals each time it manages to do a growth tick: damageRecovery: types: @@ -175,7 +176,7 @@ - type: Barotrauma damage: types: - Blunt: 0.15 #per second, scales with pressure and other constants. + Blunt: 0.10 #per second, scales with pressure and other constants. - type: Flammable fireSpread: true damage: From ccc26487766edda7a1955e72e747e447bdf422b8 Mon Sep 17 00:00:00 2001 From: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> Date: Sat, 3 Jun 2023 15:31:50 -0400 Subject: [PATCH 049/474] Fix being able to set spray amounts in bottles and vapor sprites (#16795) --- Content.Server/Fluids/Components/SprayComponent.cs | 4 ++++ Content.Server/Fluids/EntitySystems/SpraySystem.cs | 8 ++------ .../Entities/Objects/Misc/fire_extinguisher.yml | 1 + .../Entities/Objects/Specific/Janitorial/spray.yml | 9 ++++++--- 4 files changed, 13 insertions(+), 9 deletions(-) diff --git a/Content.Server/Fluids/Components/SprayComponent.cs b/Content.Server/Fluids/Components/SprayComponent.cs index d0afe31f46..c3c9c0e92b 100644 --- a/Content.Server/Fluids/Components/SprayComponent.cs +++ b/Content.Server/Fluids/Components/SprayComponent.cs @@ -1,4 +1,5 @@ using Content.Server.Fluids.EntitySystems; +using Content.Shared.FixedPoint; using Robust.Shared.Audio; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; @@ -11,6 +12,9 @@ public sealed class SprayComponent : Component { public const string SolutionName = "spray"; + [DataField("transferAmount")] + public FixedPoint2 TransferAmount = 10; + [ViewVariables(VVAccess.ReadWrite), DataField("sprayDistance")] public float SprayDistance = 3.5f; diff --git a/Content.Server/Fluids/EntitySystems/SpraySystem.cs b/Content.Server/Fluids/EntitySystems/SpraySystem.cs index 4e7892d897..cb01078bef 100644 --- a/Content.Server/Fluids/EntitySystems/SpraySystem.cs +++ b/Content.Server/Fluids/EntitySystems/SpraySystem.cs @@ -4,7 +4,6 @@ using Content.Server.Extinguisher; using Content.Server.Fluids.Components; using Content.Server.Popups; -using Content.Shared.Chemistry.Components; using Content.Shared.Cooldown; using Content.Shared.FixedPoint; using Content.Shared.Interaction; @@ -62,9 +61,6 @@ private void OnAfterInteract(EntityUid uid, SprayComponent component, AfterInter return; } - if (!TryComp(uid, out var transfer)) - return; - var xformQuery = GetEntityQuery(); var userXform = xformQuery.GetComponent(args.User); @@ -89,7 +85,7 @@ private void OnAfterInteract(EntityUid uid, SprayComponent component, AfterInter var threeQuarters = diffNorm * 0.75f; var quarter = diffNorm * 0.25f; - var amount = Math.Max(Math.Min((solution.Volume / transfer.TransferAmount).Int(), component.VaporAmount), 1); + var amount = Math.Max(Math.Min((solution.Volume / component.TransferAmount).Int(), component.VaporAmount), 1); var spread = component.VaporSpread / amount; // TODO: Just use usedelay homie. var cooldownTime = 0f; @@ -107,7 +103,7 @@ private void OnAfterInteract(EntityUid uid, SprayComponent component, AfterInter if (distance > component.SprayDistance) target = userMapPos.Offset(diffNorm * component.SprayDistance); - var newSolution = _solutionContainer.SplitSolution(uid, solution, transfer.TransferAmount); + var newSolution = _solutionContainer.SplitSolution(uid, solution, component.TransferAmount); if (newSolution.Volume <= FixedPoint2.Zero) break; diff --git a/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml b/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml index 9166aba3bb..dd5b0e2644 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml @@ -27,6 +27,7 @@ - type: SolutionTransfer - type: ItemCooldown - type: Spray + transferAmount: 10 spraySound: path: /Audio/Effects/extinguish.ogg sprayedPrototype: ExtinguisherSpray diff --git a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/spray.yml b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/spray.yml index 67a23d7b82..b33201f47a 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/spray.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/spray.yml @@ -27,6 +27,7 @@ canChangeTransferAmount: true - type: ItemCooldown - type: Spray + transferAmount: 10 sprayVelocity: 2 spraySound: path: /Audio/Effects/spray2.ogg @@ -49,8 +50,10 @@ spray: maxVol: 250 - type: Spray + transferAmount: 15 sprayedPrototype: BigVapor - sprayVelocity: 5 + sprayVelocity: 3 + sprayDistance: 4.5 spraySound: path: /Audio/Effects/spray2.ogg @@ -106,7 +109,7 @@ - type: Sprite netsync: false sprite: Effects/chempuff.rsi - rotation: 90 + rotation: 180 layers: - state: chempuff map: ["enum.VaporVisualLayers.Base"] @@ -133,7 +136,7 @@ - type: Sprite netsync: false sprite: Effects/chempuff.rsi - rotation: 90 + rotation: 180 layers: - state: chempuff scale: 2, 2 From a2318532e0642e92b355b8acc51a6b7cdc7dc5fb Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 3 Jun 2023 15:32:54 -0400 Subject: [PATCH 050/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 27 +++++++++++++++------------ 1 file changed, 15 insertions(+), 12 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 16268d8176..abdd54d610 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,16 +1,4 @@ Entries: -- author: EmoGarbage404 - changes: - - {message: The research team in the XenoArcheology lab have discovered how to extract - points from artifacts without breaking them., type: Tweak} - id: 3433 - time: '2023-04-17T05:57:21.0000000+00:00' -- author: PuroSlavKing - changes: - - {message: 'Fixed now the chameleon not only mimics hardsuits, but also their helmet!', - type: Fix} - id: 3434 - time: '2023-04-17T05:58:54.0000000+00:00' - author: Scribbles0 changes: - {message: 'Lone nuclear operatives have recently started attacking stations. Make @@ -2900,3 +2888,18 @@ Entries: - {message: Joints and blunts will get you high again., type: Fix} id: 3932 time: '2023-06-03T19:29:46.0000000+00:00' +- author: tom-leys + changes: + - {message: 'Latest scientific research shows small boxes around Flesh Anomalies + are no longer best practice. Asked to comment on this, our scientific advisor + had this to say: "The Tendons! Tendons everywhere! Arrrghhh!"', type: Tweak} + id: 3933 + time: '2023-06-03T19:31:11.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: Fixed being able to override the amount of the amount of liquid shot + out of a spray bottle., type: Fix} + - {message: Fixed vapor sprites being rotated in the wrong direction., type: Fix} + - {message: Slightly buffed mega spray bottle., type: Tweak} + id: 3934 + time: '2023-06-03T19:31:50.0000000+00:00' From 10932cc384ad3abdd841d4135c18bc04752d1d2e Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Sat, 3 Jun 2023 19:33:41 +0000 Subject: [PATCH 051/474] space doafters, like doafters but in space (#16670) Co-authored-by: deltanedas <@deltanedas:kde.org> --- Content.Shared/DoAfter/DoAfter.cs | 8 ++++---- Content.Shared/DoAfter/DoAfterArgs.cs | 8 ++++++++ .../DoAfter/SharedDoAfterSystem.Update.cs | 19 +++++++++++++------ Content.Shared/DoAfter/SharedDoAfterSystem.cs | 7 +++++-- 4 files changed, 30 insertions(+), 12 deletions(-) diff --git a/Content.Shared/DoAfter/DoAfter.cs b/Content.Shared/DoAfter/DoAfter.cs index 0a8e197c19..ed8db8c7b2 100644 --- a/Content.Shared/DoAfter/DoAfter.cs +++ b/Content.Shared/DoAfter/DoAfter.cs @@ -48,10 +48,10 @@ public sealed class DoAfter public EntityCoordinates UserPosition; /// - /// Position of the target relative to their parent when the do after was started. + /// Distance from the user to the target when the do after was started. /// - [DataField("targetPosition")] - public EntityCoordinates TargetPosition; + [DataField("targetDistance")] + public float TargetDistance; /// /// If is true, this is the hand that was selected when the doafter started. @@ -94,7 +94,7 @@ public DoAfter(DoAfter other) CancelledTime = other.CancelledTime; Completed = other.Completed; UserPosition = other.UserPosition; - TargetPosition = other.TargetPosition; + TargetDistance = other.TargetDistance; InitialHand = other.InitialHand; InitialItem = other.InitialItem; } diff --git a/Content.Shared/DoAfter/DoAfterArgs.cs b/Content.Shared/DoAfter/DoAfterArgs.cs index 30d56fb0e7..618297d235 100644 --- a/Content.Shared/DoAfter/DoAfterArgs.cs +++ b/Content.Shared/DoAfter/DoAfterArgs.cs @@ -79,6 +79,13 @@ public sealed class DoAfterArgs [DataField("breakOnUserMove")] public bool BreakOnUserMove; + /// + /// If this is true then any movement, even when weightless, will break the doafter. + /// When there is no gravity, BreakOnUserMove is ignored. If it is false to begin with nothing will change. + /// + [DataField("breakOnWeightlessMove")] + public bool BreakOnWeightlessMove; + /// /// If do_after stops when the target moves (if there is a target) /// @@ -219,6 +226,7 @@ public DoAfterArgs(DoAfterArgs other) NeedHand = other.NeedHand; BreakOnHandChange = other.BreakOnHandChange; BreakOnUserMove = other.BreakOnUserMove; + BreakOnWeightlessMove = other.BreakOnWeightlessMove; BreakOnTargetMove = other.BreakOnTargetMove; MovementThreshold = other.MovementThreshold; DistanceThreshold = other.DistanceThreshold; diff --git a/Content.Shared/DoAfter/SharedDoAfterSystem.Update.cs b/Content.Shared/DoAfter/SharedDoAfterSystem.Update.cs index 981133f7f0..0ab3eb40b7 100644 --- a/Content.Shared/DoAfter/SharedDoAfterSystem.Update.cs +++ b/Content.Shared/DoAfter/SharedDoAfterSystem.Update.cs @@ -1,3 +1,4 @@ +using Content.Shared.Gravity; using Content.Shared.Hands.Components; using Robust.Shared.Utility; @@ -6,6 +7,7 @@ namespace Content.Shared.DoAfter; public abstract partial class SharedDoAfterSystem : EntitySystem { [Dependency] private readonly IDynamicTypeFactory _factory = default!; + [Dependency] private readonly SharedGravitySystem _gravity = default!; public override void Update(float frameTime) { @@ -151,18 +153,23 @@ private bool ShouldCancel(DoAfter doAfter, if (args.Used is { } @using && !xformQuery.TryGetComponent(@using, out usedXform)) return true; - // TODO: Handle Inertia in space // TODO: Re-use existing xform query for these calculations. - if (args.BreakOnUserMove && !userXform.Coordinates - .InRange(EntityManager, _transform, doAfter.UserPosition, args.MovementThreshold)) + // when there is no gravity you will be drifting 99% of the time making many doafters impossible + // so this just ignores your movement if you are weightless (unless the doafter sets BreakOnWeightlessMove then moving will still break it) + if (args.BreakOnUserMove + && !userXform.Coordinates.InRange(EntityManager, _transform, doAfter.UserPosition, args.MovementThreshold) + && (args.BreakOnWeightlessMove || !_gravity.IsWeightless(args.User, xform: userXform))) return true; if (args.BreakOnTargetMove) { DebugTools.Assert(targetXform != null, "Break on move is true, but no target specified?"); - if (targetXform != null && !targetXform.Coordinates.InRange(EntityManager, _transform, - doAfter.TargetPosition, args.MovementThreshold)) - return true; + if (targetXform != null && targetXform.Coordinates.TryDistance(EntityManager, userXform.Coordinates, out var distance)) + { + // once the target moves too far from you the do after breaks + if (Math.Abs(distance - doAfter.TargetDistance) > args.MovementThreshold) + return true; + } } if (args.AttemptFrequency == AttemptFrequency.EveryTick && !TryAttemptEvent(doAfter)) diff --git a/Content.Shared/DoAfter/SharedDoAfterSystem.cs b/Content.Shared/DoAfter/SharedDoAfterSystem.cs index 27011816cd..2a045ffb0d 100644 --- a/Content.Shared/DoAfter/SharedDoAfterSystem.cs +++ b/Content.Shared/DoAfter/SharedDoAfterSystem.cs @@ -193,12 +193,15 @@ public bool TryStartDoAfter(DoAfterArgs args, [NotNullWhen(true)] out DoAfterId? id = new DoAfterId(args.User, comp.NextId++); var doAfter = new DoAfter(id.Value.Index, args, GameTiming.CurTime); - if (args.BreakOnUserMove) + if (args.BreakOnUserMove || args.BreakOnTargetMove) doAfter.UserPosition = Transform(args.User).Coordinates; if (args.Target != null && args.BreakOnTargetMove) + { // Target should never be null if the bool is set. - doAfter.TargetPosition = Transform(args.Target.Value).Coordinates; + var targetPosition = Transform(args.Target.Value).Coordinates; + doAfter.UserPosition.TryDistance(EntityManager, targetPosition, out doAfter.TargetDistance); + } // For this we need to stay on the same hand slot and need the same item in that hand slot // (or if there is no item there we need to keep it free). From d3f7a9e820a8af54b0e4acf16b83e2a9400ca1d8 Mon Sep 17 00:00:00 2001 From: Slava0135 <40753025+Slava0135@users.noreply.github.com> Date: Sat, 3 Jun 2023 22:34:43 +0300 Subject: [PATCH 052/474] Update puddle stickiness (#16597) --- .../TileReactions/SpillTileReaction.cs | 5 ++-- .../Fluids/EntitySystems/PuddleSystem.cs | 24 +++++++++++++++ .../Components/SlowContactsComponent.cs | 30 +++++++------------ .../Movement/Systems/SlowContactsSystem.cs | 20 ++++++------- 4 files changed, 45 insertions(+), 34 deletions(-) diff --git a/Content.Server/Chemistry/TileReactions/SpillTileReaction.cs b/Content.Server/Chemistry/TileReactions/SpillTileReaction.cs index 78457386d5..1f2a3d8b4f 100644 --- a/Content.Server/Chemistry/TileReactions/SpillTileReaction.cs +++ b/Content.Server/Chemistry/TileReactions/SpillTileReaction.cs @@ -4,6 +4,7 @@ using Content.Shared.Chemistry.Reagent; using Content.Shared.FixedPoint; using Content.Shared.Movement.Components; +using Content.Shared.Movement.Systems; using Content.Shared.Slippery; using Content.Shared.StepTrigger.Components; using Content.Shared.StepTrigger.Systems; @@ -39,9 +40,7 @@ public FixedPoint2 TileReact(TileRef tile, ReagentPrototype reagent, FixedPoint2 var slow = entityManager.EnsureComponent(puddleUid); var speedModifier = 1 - reagent.Viscosity; - slow.WalkSpeedModifier = speedModifier; - slow.SprintSpeedModifier = speedModifier; - entityManager.Dirty(slow); + entityManager.EntitySysManager.GetEntitySystem().ChangeModifiers(puddleUid, speedModifier, slow); return reactVolume; } diff --git a/Content.Server/Fluids/EntitySystems/PuddleSystem.cs b/Content.Server/Fluids/EntitySystems/PuddleSystem.cs index 631a57ce52..2bbf139230 100644 --- a/Content.Server/Fluids/EntitySystems/PuddleSystem.cs +++ b/Content.Server/Fluids/EntitySystems/PuddleSystem.cs @@ -25,6 +25,8 @@ using Robust.Shared.Prototypes; using Robust.Shared.Random; using Robust.Shared.Timing; +using Content.Shared.Movement.Components; +using Content.Shared.Movement.Systems; namespace Content.Server.Fluids.EntitySystems; @@ -47,6 +49,7 @@ public sealed partial class PuddleSystem : SharedPuddleSystem [Dependency] private readonly StepTriggerSystem _stepTrigger = default!; [Dependency] private readonly SolutionContainerSystem _solutionContainerSystem = default!; [Dependency] private readonly TileFrictionController _tile = default!; + [Dependency] private readonly SlowContactsSystem _slowContacts = default!; public static float PuddleVolume = 1000; @@ -242,6 +245,7 @@ private void OnSolutionUpdate(EntityUid uid, PuddleComponent component, Solution _deletionQueue.Remove(uid); UpdateSlip(uid, component, args.Solution); + UpdateSlow(uid, args.Solution); UpdateEvaporation(uid, args.Solution); UpdateAppearance(uid, component); } @@ -319,6 +323,26 @@ private void UpdateSlip(EntityUid entityUid, PuddleComponent component, Solution } } + private void UpdateSlow(EntityUid uid, Solution solution) + { + var maxViscosity = 0f; + foreach (var reagent in solution.Contents) + { + var reagentProto = _prototypeManager.Index(reagent.ReagentId); + maxViscosity = Math.Max(maxViscosity, reagentProto.Viscosity); + } + if (maxViscosity > 0) + { + var comp = EnsureComp(uid); + var speed = 1 - maxViscosity; + _slowContacts.ChangeModifiers(uid, speed, comp); + } + else + { + RemComp(uid); + } + } + private void HandlePuddleExamined(EntityUid uid, PuddleComponent component, ExaminedEvent args) { if (TryComp(uid, out var slippery) && slippery.Active) diff --git a/Content.Shared/Movement/Components/SlowContactsComponent.cs b/Content.Shared/Movement/Components/SlowContactsComponent.cs index 2870c7c454..00cbc55d19 100644 --- a/Content.Shared/Movement/Components/SlowContactsComponent.cs +++ b/Content.Shared/Movement/Components/SlowContactsComponent.cs @@ -1,32 +1,22 @@ +using Content.Shared.Movement.Systems; using Content.Shared.Whitelist; using Robust.Shared.GameStates; -using Robust.Shared.Serialization; namespace Content.Shared.Movement.Components; [NetworkedComponent, RegisterComponent] -public sealed class SlowContactsComponent : Component +[AutoGenerateComponentState] +[Access(typeof(SlowContactsSystem))] +public sealed partial class SlowContactsComponent : Component { - [DataField("walkSpeedModifier")] - public float WalkSpeedModifier { get; set; } = 1.0f; + [DataField("walkSpeedModifier"), ViewVariables(VVAccess.ReadWrite)] + [AutoNetworkedField] + public float WalkSpeedModifier = 1.0f; - [DataField("sprintSpeedModifier")] - public float SprintSpeedModifier { get; set; } = 1.0f; + [AutoNetworkedField] + [DataField("sprintSpeedModifier"), ViewVariables(VVAccess.ReadWrite)] + public float SprintSpeedModifier = 1.0f; [DataField("ignoreWhitelist")] public EntityWhitelist? IgnoreWhitelist; } - -[Serializable, NetSerializable] -public sealed class SlowContactsComponentState : ComponentState -{ - public readonly float WalkSpeedModifier; - - public readonly float SprintSpeedModifier; - - public SlowContactsComponentState(float walkSpeedModifier, float sprintSpeedModifier) - { - WalkSpeedModifier = walkSpeedModifier; - SprintSpeedModifier = sprintSpeedModifier; - } -} diff --git a/Content.Shared/Movement/Systems/SlowContactsSystem.cs b/Content.Shared/Movement/Systems/SlowContactsSystem.cs index 44e64218e0..3118e80a20 100644 --- a/Content.Shared/Movement/Systems/SlowContactsSystem.cs +++ b/Content.Shared/Movement/Systems/SlowContactsSystem.cs @@ -1,5 +1,4 @@ using Content.Shared.Movement.Components; -using Robust.Shared.GameStates; using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Events; using Robust.Shared.Physics.Systems; @@ -21,9 +20,6 @@ public override void Initialize() SubscribeLocalEvent(OnEntityExit); SubscribeLocalEvent(MovementSpeedCheck); - SubscribeLocalEvent(OnHandleState); - SubscribeLocalEvent(OnGetState); - UpdatesAfter.Add(typeof(SharedPhysicsSystem)); } @@ -46,18 +42,20 @@ public override void Update(float frameTime) _toUpdate.Clear(); } - private void OnGetState(EntityUid uid, SlowContactsComponent component, ref ComponentGetState args) + public void ChangeModifiers(EntityUid uid, float speed, SlowContactsComponent? component = null) { - args.State = new SlowContactsComponentState(component.WalkSpeedModifier, component.SprintSpeedModifier); + ChangeModifiers(uid, speed, speed, component); } - private void OnHandleState(EntityUid uid, SlowContactsComponent component, ref ComponentHandleState args) + public void ChangeModifiers(EntityUid uid, float walkSpeed, float sprintSpeed, SlowContactsComponent? component = null) { - if (args.Current is not SlowContactsComponentState state) + if (!Resolve(uid, ref component)) + { return; - - component.WalkSpeedModifier = state.WalkSpeedModifier; - component.SprintSpeedModifier = state.SprintSpeedModifier; + } + component.WalkSpeedModifier = walkSpeed; + component.SprintSpeedModifier = sprintSpeed; + Dirty(component); } private void MovementSpeedCheck(EntityUid uid, SlowedByContactComponent component, RefreshMovementSpeedModifiersEvent args) From 91d5536086a5e79b7cb9db1112754260e9bad6ca Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 3 Jun 2023 15:34:45 -0400 Subject: [PATCH 053/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index abdd54d610..975197a796 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,10 +1,4 @@ Entries: -- author: Scribbles0 - changes: - - {message: 'Lone nuclear operatives have recently started attacking stations. Make - sure to watch out for them on long, extended shifts.', type: Add} - id: 3435 - time: '2023-04-17T06:00:44.0000000+00:00' - author: DrSmugleaf changes: - {message: Fixed not being able to take over the rat king ghost role., type: Fix} @@ -2903,3 +2897,9 @@ Entries: - {message: Slightly buffed mega spray bottle., type: Tweak} id: 3934 time: '2023-06-03T19:31:50.0000000+00:00' +- author: deltanedas + changes: + - {message: 'DoAfters (green bar above your head) now work when moving without gravity + so you can cuff, strip and use meds in spess.', type: Tweak} + id: 3935 + time: '2023-06-03T19:33:41.0000000+00:00' From fbc4273376acb8fa910553cfe455b1b85f86e045 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 3 Jun 2023 15:35:51 -0400 Subject: [PATCH 054/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 975197a796..26dfaac782 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: DrSmugleaf - changes: - - {message: Fixed not being able to take over the rat king ghost role., type: Fix} - id: 3436 - time: '2023-04-17T06:18:39.0000000+00:00' - author: DrSmugleaf changes: - {message: Fixed admin note updates duplicating visually across all open admin @@ -2903,3 +2898,8 @@ Entries: so you can cuff, strip and use meds in spess.', type: Tweak} id: 3935 time: '2023-06-03T19:33:41.0000000+00:00' +- author: Slava0135 + changes: + - {message: puddle stickiness now updates when solution changes, type: Fix} + id: 3936 + time: '2023-06-03T19:34:44.0000000+00:00' From 6bb18d91a0975498c6cace76d7861e4ee8818cc8 Mon Sep 17 00:00:00 2001 From: brainfood1183 <113240905+brainfood1183@users.noreply.github.com> Date: Sun, 4 Jun 2023 01:08:53 +0100 Subject: [PATCH 055/474] Origin Station Update (salv shuttle console) (#17105) --- Resources/Maps/origin.yml | 56930 ++++++++++++++++++------------------ 1 file changed, 28479 insertions(+), 28451 deletions(-) diff --git a/Resources/Maps/origin.yml b/Resources/Maps/origin.yml index 3ac021f676..9dd0f4a7ac 100644 --- a/Resources/Maps/origin.yml +++ b/Resources/Maps/origin.yml @@ -118,7 +118,7 @@ entities: tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANLAAAASAAAAEgAAABfAAAAAAAAAF8AAABfAAAASAAAAE8AAABPAAAAXwAAAF8AAABfAAAATwAAAF8AAABFAAAASwAAAEUAAAFfAAAAXwAAAAAAAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAAXwAAAF8AAAAXAAADRQAAA0sAAABFAAADXwAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJLAAABRQAAAF8AAABfAAAAXwAAAEUAAAJFAAACFwAAAkUAAAJFAAABRQAAAEgAAABIAAAARQAAAEUAAAFKAAABSgAAAkoAAAJFAAACRQAAAhcAAAJLAAADSwAAABcAAAFLAAADSwAAAEsAAABLAAADSwAAA0sAAAJLAAABSgAAAjoAAABKAAADSwAAAUsAAAAXAAACRQAAAEUAAAAXAAAARQAAAkUAAANFAAACRQAAAEUAAANFAAAARQAAA0oAAABKAAACSgAAAUUAAABFAAADFwAAAl8AAABfAAAAXwAAAF8AAAAXAAADXwAAABcAAAAXAAADXwAAAF8AAABFAAABSwAAAUUAAAJfAAAAXwAAAF8AAAAXAAADXwAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAABfAAAARQAAAksAAANFAAABXwAAAAAAAAAAAAAAGwAAAF8AAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAXwAAABcAAAEXAAACFwAAAl8AAAAAAAAAAAAAABsAAAFfAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAAF8AAABOAAAATgAAAE4AAAJfAAAAXwAAAF8AAAAbAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAA18AAABfAAAATgAAA04AAANOAAACFwAAAl8AAABfAAAASAAAAEgAAAAxAAAAMQAAADEAAAAxAAAAXwAAAFAAAABQAAAAXwAAAE4AAAJOAAAATgAAAF8AAABfAAAAXwAAAEgAAABfAAAAMQAAADEAAAAxAAAAMQAAAF8AAABfAAAATwAAAF8AAABOAAACTgAAAk4AAAFfAAAAXwAAAF8AAABPAAAAXwAAADEAAAAxAAAAMQAAADEAAABfAAAATwAAAE8AAABfAAAATgAAAk4AAAFOAAAAXwAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE4AAABOAAACTgAAAl8AAABfAAAAUQAAAw== 0,-2: ind: 0,-2 - tiles: AAAAAF8AAAABAAAAAQAAAAEAAAABAAAAAQAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXwAAAEoAAABFAAADRQAAAwAAAABfAAAAAQAAAAEAAAABAAAAAQAAAAEAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAAAAAAAXwAAAAEAAAABAAAAAQAAAAEAAAABAAAAXwAAAFEAAAFfAAAAXwAAAE8AAABPAAAATwAAAEUAAANFAAAAXwAAAF8AAABfAAAAXwAAABcAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAkUAAAFFAAABRQAAAEUAAABFAAACRQAAAkUAAAJFAAADRQAAAkUAAAMXAAACRQAAAEUAAAJIAAAARQAAA0UAAAFLAAABSwAAAEsAAAE6AAAASwAAAksAAAA6AAAASwAAA0sAAABLAAABFwAAAEUAAAJFAAAASAAAAEgAAABFAAADRQAAAUUAAANFAAADRQAAAUUAAAJFAAABRQAAAkUAAAFFAAAARQAAABcAAAJFAAADSAAAAEgAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAEAAAAAAAAAAAAAAABfAAAAXwAAAE8AAABfAAAAFwAAABcAAAMXAAACFwAAAhcAAAMXAAAAXwAAAEUAAAFFAAADAAAAAAAAAAAAAAAAXwAAAE8AAABfAAAAXwAAABcAAAIXAAAAFwAAAhcAAAEXAAAAFwAAAV8AAABFAAACRQAAAwAAAAAAAAAAAAAAAF8AAABPAAAAXwAAAF8AAAAXAAAALQAAAC0AAAAtAAAALQAAABcAAAAXAAAARQAAAUUAAAIAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAFwAAARcAAAEXAAACFwAAABcAAAAXAAAAXwAAAEUAAANFAAACAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAABcAAAIXAAAAFwAAARcAAAAXAAABFwAAA18AAAAXAAABFwAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAANfAAAAXwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABRAAADXwAAAE8AAABPAAAATwAAAE8AAABPAAAAXwAAAF8AAABFAAAARQAAAA== + tiles: AAAAAF8AAAABAAAAAQAAAAEAAAABAAAAAQAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXwAAAEoAAABFAAADRQAAAwAAAABfAAAAAQAAAAEAAAABAAAAAQAAAAEAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAAAAAAAXwAAAAEAAAABAAAAAQAAAAEAAAABAAAAXwAAAFEAAAFfAAAAXwAAAE8AAABPAAAATwAAAEUAAANFAAAAXwAAAF8AAABfAAAAXwAAABcAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAkUAAAFFAAABRQAAAEUAAABFAAACRQAAAkUAAAJFAAADRQAAAkUAAAMXAAACRQAAAEUAAAJIAAAARQAAA0UAAAFLAAABSwAAAEsAAAE6AAAASwAAAksAAAA6AAAASwAAA0sAAABLAAABFwAAAEUAAAJFAAAASAAAAEgAAABFAAADRQAAAUUAAANFAAADRQAAAUUAAAJFAAABRQAAAkUAAAFFAAAARQAAABcAAAJFAAADSAAAAEgAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAEAAAAAAAAAAAAAAABfAAAATwAAAE8AAABfAAAAFwAAABcAAAMXAAACFwAAAhcAAAMXAAAAXwAAAEUAAAFFAAADAAAAAAAAAAAAAAAAXwAAAE8AAABfAAAAXwAAABcAAAIXAAAAFwAAAhcAAAEXAAAAFwAAAV8AAABFAAACRQAAAwAAAAAAAAAAAAAAAF8AAABPAAAAXwAAAF8AAAAXAAAALQAAAC0AAAAtAAAALQAAABcAAAAXAAAARQAAAUUAAAIAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAFwAAARcAAAEXAAACFwAAABcAAAAXAAAAXwAAAEUAAANFAAACAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAABcAAAIXAAAAFwAAARcAAAAXAAABFwAAA18AAAAXAAABFwAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAANfAAAAXwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABRAAADXwAAAE8AAABPAAAATwAAAE8AAABPAAAAXwAAAF8AAABFAAAARQAAAA== 1,-2: ind: 1,-2 tiles: RQAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAF8AAABfAAAAXwAAAEgAAABfAAAAXwAAABcAAAFfAAAAXwAAAEgAAABfAAAATwAAAEgAAABfAAAASQAAA0kAAANJAAADSQAAAl8AAABQAAAAXwAAAF0AAABdAAADXQAAAV0AAAJFAAADXwAAAEgAAABPAAAAXwAAAEkAAABJAAABSQAAA0kAAAFfAAAATwAAAF8AAABdAAAAXQAAA10AAAJdAAAARQAAAl8AAABPAAAATwAAAF8AAABJAAAASQAAAEkAAAFJAAAAXwAAAFAAAABfAAAAXQAAAV0AAANdAAABXQAAAkUAAABfAAAASAAAAEgAAABfAAAASQAAA0kAAAJJAAADSQAAAF8AAABQAAAAXwAAAF0AAANdAAABXQAAAl0AAAFFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAl8AAABfAAAAXwAAAF8AAAAXAAACXwAAAF8AAABfAAAARQAAABcAAAA8AAAAFwAAA0UAAAJFAAAARQAAAkUAAANFAAADRQAAAEUAAANFAAAARQAAAEUAAAFFAAAAFwAAAEUAAAIXAAADPAAAABcAAABFAAADRQAAAkUAAABFAAADRQAAAUUAAAJFAAAARQAAAUUAAANFAAACRQAAAxcAAAJIAAAAXwAAAF8AAABfAAAARQAAA0UAAABFAAABRQAAAUUAAAJFAAABRQAAA0UAAAJFAAABRQAAAkUAAABfAAAARQAAAF8AAABFAAABRQAAAEUAAAJFAAADRQAAAEUAAABFAAAARQAAA0UAAAJFAAADRQAAAkUAAANFAAADRQAAAUUAAAFfAAAARQAAAkUAAABFAAADRQAAAkUAAABFAAADRQAAAEUAAAFFAAABRQAAAUUAAAFFAAACRQAAAkUAAANFAAACXwAAAEUAAABFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADFwAAAV8AAABfAAAAXwAAAF8AAAApAAAAKQAAACkAAAApAAAAKQAAACkAAAApAAAAKQAAACkAAABfAAAAXwAAAEUAAANFAAAARQAAAEUAAAJFAAACSwAAA0sAAANLAAAASwAAA0sAAAJLAAABSwAAAUsAAANLAAACRQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAksAAAJLAAADSwAAAksAAANLAAABSwAAAEsAAABLAAABSwAAA0UAAABFAAACRQAAAEUAAAJFAAAARQAAAUUAAANLAAAASwAAAUsAAANLAAACSwAAAUsAAANLAAADSwAAAEsAAANFAAACRQAAAg== @@ -7636,6 +7636,7 @@ entities: 0: 39423 16,-8: 0: 62455 + 2: 3080 12,-12: 0: 65535 12,-11: @@ -8403,12 +8404,14 @@ entities: 0: 39391 16,-7: 0: 12003 + 2: 12 16,-6: 0: 44834 16,-5: 0: 64234 17,-8: 0: 64766 + 2: 769 -12,1: 0: 65535 -12,2: @@ -9205,6 +9208,7 @@ entities: 0: 65024 17,-7: 0: 4092 + 2: 3 18,-7: 0: 4087 19,-7: @@ -9506,25 +9510,25 @@ entities: parent: 2 type: Transform - devices: - - 19307 - - 774 - - 19106 - - 14543 - - 14605 - - 14607 - - 14631 - - 14630 - - 14632 - - 14384 - - 14361 - - 14362 - - 14360 - - 14358 - - 14359 - - 14636 - - 14533 - - 14532 - - 14531 + - 19322 + - 775 + - 19120 + - 14552 + - 14614 + - 14616 + - 14640 + - 14639 + - 14641 + - 14393 + - 14370 + - 14371 + - 14369 + - 14367 + - 14368 + - 14645 + - 14542 + - 14541 + - 14540 type: DeviceList - uid: 5 components: @@ -9532,15 +9536,15 @@ entities: parent: 2 type: Transform - devices: - - 19341 - - 19068 - - 798 - - 14554 - - 14600 - - 14553 - - 14626 - - 14592 - - 14586 + - 19356 + - 19082 + - 799 + - 14563 + - 14609 + - 14562 + - 14635 + - 14601 + - 14595 type: DeviceList - uid: 6 components: @@ -9548,22 +9552,22 @@ entities: parent: 2 type: Transform - devices: - - 19361 - - 801 - - 19071 - - 19308 - - 14493 - - 14492 - - 14580 - - 14516 - - 14513 - - 14550 - - 14572 - - 14593 - - 14521 - - 14557 - - 14527 + - 19376 + - 802 + - 19085 + - 19323 + - 14502 + - 14501 + - 14589 + - 14525 + - 14522 + - 14559 + - 14581 + - 14602 + - 14530 - 14566 + - 14536 + - 14575 type: DeviceList - uid: 7 components: @@ -9571,25 +9575,25 @@ entities: parent: 2 type: Transform - devices: - - 814 - - 19369 - - 19142 - - 19378 - - 19143 - - 19377 - - 19134 - - 19376 - - 19136 - - 19137 - - 19375 - - 19138 - - 19374 - - 19139 - - 19373 - - 19140 - - 19372 - - 19141 - - 19371 + - 815 + - 19384 + - 19156 + - 19393 + - 19157 + - 19392 + - 19148 + - 19391 + - 19150 + - 19151 + - 19390 + - 19152 + - 19389 + - 19153 + - 19388 + - 19154 + - 19387 + - 19155 + - 19386 type: DeviceList - uid: 8 components: @@ -9597,9 +9601,9 @@ entities: parent: 2 type: Transform - devices: - - 833 - - 19234 - - 19468 + - 834 + - 19248 + - 19483 type: DeviceList - uid: 9 components: @@ -9607,25 +9611,25 @@ entities: parent: 2 type: Transform - devices: - - 799 - - 19297 - - 19056 - - 14738 - - 14739 - - 14736 - - 14737 - - 14394 - - 14554 - - 14600 - - 14553 - - 14602 - - 14574 - - 14576 - - 14536 - - 14522 - - 14573 - - 14535 + - 800 + - 19312 + - 19070 - 14747 + - 14748 + - 14745 + - 14746 + - 14403 + - 14563 + - 14609 + - 14562 + - 14611 + - 14583 + - 14585 + - 14545 + - 14531 + - 14582 + - 14544 + - 14756 type: DeviceList - uid: 10 components: @@ -9633,19 +9637,19 @@ entities: parent: 2 type: Transform - devices: - - 803 - - 19067 - - 19348 - - 14633 - - 14591 - - 14634 - - 14601 - - 14572 - - 14593 - - 14521 - - 14597 - - 14628 - - 14629 + - 804 + - 19081 + - 19363 + - 14642 + - 14600 + - 14643 + - 14610 + - 14581 + - 14602 + - 14530 + - 14606 + - 14637 + - 14638 type: DeviceList - uid: 11 components: @@ -9653,10 +9657,10 @@ entities: parent: 2 type: Transform - devices: - - 887 - - 19294 - - 19111 - - 14565 + - 888 + - 19309 + - 19125 + - 14574 type: DeviceList - uid: 12 components: @@ -9664,20 +9668,20 @@ entities: parent: 2 type: Transform - devices: - - 838 - - 19419 - - 19184 - - 14672 - - 14690 - - 14588 - - 14508 - - 14625 - - 14732 - - 14733 - - 14734 - - 14669 - - 14696 - - 14697 + - 839 + - 19434 + - 19198 + - 14681 + - 14699 + - 14597 + - 14517 + - 14634 + - 14741 + - 14742 + - 14743 + - 14678 + - 14705 + - 14706 type: DeviceList - uid: 13 components: @@ -9686,20 +9690,20 @@ entities: parent: 2 type: Transform - devices: - - 19105 - - 19330 - - 827 - - 14565 - - 14568 - - 14594 - - 14730 - - 14564 - - 14546 - - 14579 - - 14519 - - 14549 - - 14578 - - 14618 + - 19119 + - 19345 + - 828 + - 14574 + - 14577 + - 14603 + - 14739 + - 14573 + - 14555 + - 14588 + - 14528 + - 14558 + - 14587 + - 14627 type: DeviceList - uid: 14 components: @@ -9707,16 +9711,16 @@ entities: parent: 2 type: Transform - devices: - - 858 - - 19160 - - 19395 - - 14654 - - 14504 - - 14503 - - 14397 - - 14655 - - 14766 - - 14767 + - 859 + - 19174 + - 19410 + - 14663 + - 14513 + - 14512 + - 14406 + - 14664 + - 14775 + - 14776 type: DeviceList - uid: 15 components: @@ -9724,12 +9728,12 @@ entities: parent: 2 type: Transform - devices: - - 14399 - - 14398 - - 856 - - 19390 - - 19156 - - 14650 + - 14408 + - 14407 + - 857 + - 19405 + - 19170 + - 14659 type: DeviceList - uid: 16 components: @@ -9737,8 +9741,8 @@ entities: parent: 2 type: Transform - devices: - - 813 - - 19167 + - 814 + - 19181 type: DeviceList - uid: 17 components: @@ -9751,18 +9755,18 @@ entities: parent: 2 type: Transform - devices: - - 819 - - 19489 - - 19256 + - 820 + - 19504 + - 19270 + - 14805 + - 14804 + - 14798 + - 14797 - 14796 - - 14795 - - 14789 - 14788 - 14787 - - 14779 - - 14778 - - 14792 - - 14791 + - 14801 + - 14800 type: DeviceList - uid: 19 components: @@ -9770,11 +9774,11 @@ entities: parent: 2 type: Transform - devices: - - 19467 - - 822 - - 19230 - - 14437 - - 14434 + - 19482 + - 823 + - 19244 + - 14446 + - 14443 type: DeviceList - uid: 20 components: @@ -9782,32 +9786,32 @@ entities: parent: 2 type: Transform - devices: - - 19471 - - 19064 - - 778 - - 19237 - - 19298 - - 14548 - - 14609 - - 14544 - - 14621 - - 14746 - - 14543 - - 14605 - - 14607 - - 14370 - - 14659 - - 14658 - - 14657 - - 14613 - - 14649 - - 14584 - - 14610 - - 14528 + - 19486 + - 19078 + - 779 + - 19251 + - 19313 + - 14557 + - 14618 + - 14553 + - 14630 + - 14755 - 14552 - - 14637 - - 14635 - - 14480 + - 14614 + - 14616 + - 14379 + - 14668 + - 14667 + - 14666 + - 14622 + - 14658 + - 14593 + - 14619 + - 14537 + - 14561 + - 14646 + - 14644 + - 14489 type: DeviceList - uid: 21 components: @@ -9815,28 +9819,28 @@ entities: parent: 2 type: Transform - devices: - - 19097 - - 19346 - - 800 - - 14536 - - 14576 - - 14602 - - 14574 - - 14627 - - 14539 - - 14633 - - 14591 - - 14634 - - 14597 - - 14550 - - 14513 - - 14512 + - 19111 + - 19361 + - 801 - 14545 - - 14537 - - 14523 - - 14514 + - 14585 + - 14611 - 14583 - - 14520 + - 14636 + - 14548 + - 14642 + - 14600 + - 14643 + - 14606 + - 14559 + - 14522 + - 14521 + - 14554 + - 14546 + - 14532 + - 14523 + - 14592 + - 14529 type: DeviceList - uid: 22 components: @@ -9844,25 +9848,25 @@ entities: parent: 2 type: Transform - devices: - - 19192 - - 823 - - 19174 - - 19408 - - 14709 - - 14710 - - 14711 + - 19206 + - 824 + - 19188 + - 19423 + - 14718 + - 14719 + - 14720 + - 14747 + - 14748 + - 14745 + - 14746 - 14738 - - 14739 - 14736 - 14737 - - 14729 - - 14727 - - 14728 - - 14671 - - 14668 - - 14604 - - 14740 - - 14381 + - 14680 + - 14677 + - 14613 + - 14749 + - 14390 type: DeviceList - uid: 23 components: @@ -9870,18 +9874,18 @@ entities: parent: 2 type: Transform - devices: - - 824 - - 19059 - - 19291 - - 14519 - - 14549 - - 14578 - - 14623 - - 14603 - - 14538 - - 14511 + - 825 + - 19073 + - 19306 + - 14528 + - 14558 + - 14587 + - 14632 - 14612 - - 14534 + - 14547 + - 14520 + - 14621 + - 14543 type: DeviceList - uid: 24 components: @@ -9889,21 +9893,21 @@ entities: parent: 2 type: Transform - devices: - - 828 - - 19347 - - 19103 - - 14760 - - 14744 - - 14743 - - 14742 - - 14518 - - 14570 - - 14354 - - 14356 - - 14366 - - 14373 - - 14387 - - 14517 + - 829 + - 19362 + - 19117 + - 14769 + - 14753 + - 14752 + - 14751 + - 14527 + - 14579 + - 14363 + - 14365 + - 14375 + - 14382 + - 14396 + - 14526 type: DeviceList - uid: 25 components: @@ -9911,27 +9915,27 @@ entities: parent: 2 type: Transform - devices: - - 776 - - 19321 - - 19089 - - 14608 - - 14614 - - 14622 - - 14620 - - 14759 - - 14559 - - 14560 - - 14606 - - 14682 - - 14681 - - 14683 - - 14689 - - 14616 - - 14596 - - 14525 - - 14530 - - 14719 - - 14491 + - 777 + - 19336 + - 19103 + - 14617 + - 14623 + - 14631 + - 14629 + - 14768 + - 14568 + - 14569 + - 14615 + - 14691 + - 14690 + - 14692 + - 14698 + - 14625 + - 14605 + - 14534 + - 14539 + - 14728 + - 14500 type: DeviceList - uid: 26 components: @@ -9939,11 +9943,11 @@ entities: parent: 2 type: Transform - devices: - - 19473 - - 19238 - - 834 - - 14691 - - 14692 + - 19488 + - 19252 + - 835 + - 14700 + - 14701 type: DeviceList - uid: 27 components: @@ -9951,17 +9955,17 @@ entities: parent: 2 type: Transform - devices: - - 836 - - 19439 - - 19202 - - 14404 - - 14405 - - 14665 - - 14666 - - 14409 - - 14408 - - 14691 - - 14692 + - 837 + - 19454 + - 19216 + - 14413 + - 14414 + - 14674 + - 14675 + - 14418 + - 14417 + - 14700 + - 14701 type: DeviceList - uid: 28 components: @@ -9969,25 +9973,25 @@ entities: parent: 2 type: Transform - devices: - - 19320 - - 19057 - - 777 - - 14561 - - 14378 - - 14590 - - 14677 - - 14678 - - 14364 - - 14562 - - 14721 - - 14725 - - 14684 - - 14749 - - 14563 - - 14720 - - 14750 - - 14748 - - 14754 + - 19335 + - 19071 + - 778 + - 14570 + - 14387 + - 14599 + - 14686 + - 14687 + - 14373 + - 14571 + - 14730 + - 14734 + - 14693 + - 14758 + - 14572 + - 14729 + - 14759 + - 14757 + - 14763 type: DeviceList - uid: 29 components: @@ -9995,15 +9999,15 @@ entities: parent: 2 type: Transform - devices: - - 14345 - - 14351 - - 14352 - - 14350 - - 14385 - - 14380 - - 19352 - - 19118 - - 839 + - 14354 + - 14360 + - 14361 + - 14359 + - 14394 + - 14389 + - 19367 + - 19132 + - 840 type: DeviceList - uid: 30 components: @@ -10011,15 +10015,15 @@ entities: parent: 2 type: Transform - devices: - - 815 - - 19185 - - 19423 - - 14828 - - 14829 - - 14830 - - 14825 - - 14826 - - 14827 + - 816 + - 19199 + - 19438 + - 14837 + - 14838 + - 14839 + - 14834 + - 14835 + - 14836 type: DeviceList - uid: 31 components: @@ -10027,13 +10031,13 @@ entities: parent: 2 type: Transform - devices: - - 14664 - - 14646 - - 14645 - - 14644 - - 812 - - 19154 - - 19388 + - 14673 + - 14655 + - 14654 + - 14653 + - 813 + - 19168 + - 19403 type: DeviceList - uid: 32 components: @@ -10041,22 +10045,22 @@ entities: parent: 2 type: Transform - devices: - - 19470 - - 19236 - - 797 - - 14732 - - 14733 - - 14734 - - 14556 - - 14587 - - 14624 - - 14586 - - 14592 - - 14626 - - 14630 - - 14631 - - 14632 - - 14369 + - 19485 + - 19250 + - 798 + - 14741 + - 14742 + - 14743 + - 14565 + - 14596 + - 14633 + - 14595 + - 14601 + - 14635 + - 14639 + - 14640 + - 14641 + - 14378 type: DeviceList - uid: 33 components: @@ -10064,19 +10068,19 @@ entities: parent: 2 type: Transform - devices: - - 14511 - - 14612 - - 14534 - - 14615 - - 14571 - - 14558 - - 14598 - - 14575 - - 14541 - - 14542 - - 19313 - - 840 - - 19115 + - 14520 + - 14621 + - 14543 + - 14624 + - 14580 + - 14567 + - 14607 + - 14584 + - 14550 + - 14551 + - 19328 + - 841 + - 19129 type: DeviceList - uid: 34 components: @@ -10085,20 +10089,20 @@ entities: parent: 2 type: Transform - devices: - - 825 - - 19077 - - 19329 - - 14512 - - 14545 - - 14537 - - 14523 - - 14516 - - 14580 - - 14581 - - 14599 - - 14623 - - 14603 - - 14538 + - 826 + - 19091 + - 19344 + - 14521 + - 14554 + - 14546 + - 14532 + - 14525 + - 14589 + - 14590 + - 14608 + - 14632 + - 14612 + - 14547 type: DeviceList - uid: 35 components: @@ -10106,9 +10110,9 @@ entities: parent: 2 type: Transform - devices: - - 795 - - 19339 - - 19113 + - 796 + - 19354 + - 19127 type: DeviceList - uid: 36 components: @@ -10116,9 +10120,9 @@ entities: parent: 2 type: Transform - devices: - - 795 - - 19339 - - 19113 + - 796 + - 19354 + - 19127 type: DeviceList - uid: 37 components: @@ -10126,13 +10130,13 @@ entities: parent: 2 type: Transform - devices: - - 19354 - - 19122 - - 842 - - 19344 - - 19110 - - 19072 - - 19343 + - 19369 + - 19136 + - 843 + - 19359 + - 19124 + - 19086 + - 19358 type: DeviceList - uid: 38 components: @@ -10140,19 +10144,19 @@ entities: parent: 2 type: Transform - devices: - - 19127 - - 781 - - 19360 + - 19141 + - 782 + - 19375 + - 14361 + - 14359 + - 14584 + - 14550 + - 14551 + - 14353 - 14352 - - 14350 - - 14575 - - 14541 - - 14542 - - 14344 - - 14343 - - 14610 - - 14528 - - 14552 + - 14619 + - 14537 + - 14561 type: DeviceList - uid: 39 components: @@ -10160,9 +10164,9 @@ entities: parent: 2 type: Transform - devices: - - 19127 - - 781 - - 19360 + - 19141 + - 782 + - 19375 type: DeviceList - uid: 40 components: @@ -10170,15 +10174,15 @@ entities: parent: 2 type: Transform - devices: - - 19300 - - 805 - - 19112 - - 14601 - - 14403 - - 14747 - - 14535 - - 14573 - - 14522 + - 19315 + - 806 + - 19126 + - 14610 + - 14412 + - 14756 + - 14544 + - 14582 + - 14531 type: DeviceList - uid: 41 components: @@ -10186,19 +10190,19 @@ entities: parent: 2 type: Transform - devices: - - 810 - - 19146 - - 19385 - - 14594 - - 14568 - - 14730 - - 14611 - - 14644 - - 14645 - - 14646 - - 14801 - - 14802 - - 14836 + - 811 + - 19160 + - 19400 + - 14603 + - 14577 + - 14739 + - 14620 + - 14653 + - 14654 + - 14655 + - 14810 + - 14811 + - 14845 type: DeviceList - uid: 42 components: @@ -10206,17 +10210,17 @@ entities: parent: 2 type: Transform - devices: - - 14714 - - 14713 - - 14715 - - 14716 - 14723 - - 14604 - - 14668 - - 14671 - - 843 - - 19225 - - 19456 + - 14722 + - 14724 + - 14725 + - 14732 + - 14613 + - 14677 + - 14680 + - 844 + - 19239 + - 19471 type: DeviceList - uid: 43 components: @@ -10224,14 +10228,14 @@ entities: parent: 2 type: Transform - devices: - - 844 - - 19227 - - 19465 - - 14726 - - 14722 - - 14715 - - 14716 - - 14723 + - 845 + - 19241 + - 19480 + - 14735 + - 14731 + - 14724 + - 14725 + - 14732 type: DeviceList - uid: 44 components: @@ -10239,9 +10243,9 @@ entities: parent: 2 type: Transform - devices: - - 19462 - - 19232 - - 845 + - 19477 + - 19246 + - 846 type: DeviceList - uid: 45 components: @@ -10249,12 +10253,12 @@ entities: parent: 2 type: Transform - devices: - - 19213 - - 19451 - - 846 - - 14815 - - 14817 - - 14567 + - 19227 + - 19466 + - 847 + - 14824 + - 14826 + - 14576 type: DeviceList - uid: 46 components: @@ -10262,11 +10266,11 @@ entities: parent: 2 type: Transform - devices: - - 19217 - - 847 - - 14815 - - 14817 - - 14567 + - 19231 + - 848 + - 14824 + - 14826 + - 14576 type: DeviceList - uid: 47 components: @@ -10274,9 +10278,9 @@ entities: parent: 2 type: Transform - devices: - - 19211 - - 848 - - 19450 + - 19225 + - 849 + - 19465 type: DeviceList - uid: 48 components: @@ -10284,18 +10288,18 @@ entities: parent: 2 type: Transform - devices: - - 19209 - - 19447 - - 850 - - 14708 - - 14707 - - 14647 - - 14773 - - 14774 - - 14709 - - 14710 - - 14711 - - 14712 + - 19223 + - 19462 + - 851 + - 14717 + - 14716 + - 14656 + - 14782 + - 14783 + - 14718 + - 14719 + - 14720 + - 14721 type: DeviceList - uid: 49 components: @@ -10303,16 +10307,16 @@ entities: parent: 2 type: Transform - devices: - - 832 - - 19425 - - 14698 - - 14699 - - 14686 - - 14685 - - 14701 - - 14700 - - 14444 - - 14670 + - 833 + - 19440 + - 14707 + - 14708 + - 14695 + - 14694 + - 14710 + - 14709 + - 14453 + - 14679 type: DeviceList - uid: 50 components: @@ -10320,14 +10324,14 @@ entities: parent: 2 type: Transform - devices: - - 854 - - 14688 - - 14687 - - 19190 - - 14445 - - 19428 - - 14704 - - 14756 + - 855 + - 14697 + - 14696 + - 19204 + - 14454 + - 19443 + - 14713 + - 14765 type: DeviceList - uid: 51 components: @@ -10335,14 +10339,14 @@ entities: parent: 2 type: Transform - devices: - - 853 - - 19433 - - 19195 - - 14414 - - 14415 - - 14755 - - 14694 - - 14693 + - 854 + - 19448 + - 19209 + - 14423 + - 14424 + - 14764 + - 14703 + - 14702 type: DeviceList - uid: 52 components: @@ -10350,14 +10354,14 @@ entities: parent: 2 type: Transform - devices: - - 19435 - - 852 - - 19198 - - 14693 - - 14694 - - 14705 - - 14735 - - 14410 + - 19450 + - 853 + - 19212 + - 14702 + - 14703 + - 14714 + - 14744 + - 14419 type: DeviceList - uid: 53 components: @@ -10365,12 +10369,12 @@ entities: parent: 2 type: Transform - devices: - - 851 - - 19239 - - 19474 - - 14473 - - 14695 - - 14507 + - 852 + - 19253 + - 19489 + - 14482 + - 14704 + - 14516 type: DeviceList - uid: 54 components: @@ -10378,9 +10382,9 @@ entities: parent: 2 type: Transform - devices: - - 855 - - 19426 - - 19188 + - 856 + - 19441 + - 19202 type: DeviceList - uid: 55 components: @@ -10388,19 +10392,19 @@ entities: parent: 2 type: Transform - devices: - - 818 - - 19391 - - 19155 - - 14650 - - 14653 + - 819 + - 19406 + - 19169 + - 14659 - 14662 - - 14651 - - 14652 - - 14656 + - 14671 - 14660 - 14661 - - 14764 - - 14765 + - 14665 + - 14669 + - 14670 + - 14773 + - 14774 type: DeviceList - uid: 56 components: @@ -10408,12 +10412,12 @@ entities: parent: 2 type: Transform - devices: - - 19166 - - 19400 - - 19401 - - 817 - - 14660 - - 14661 + - 19180 + - 19415 + - 19416 + - 818 + - 14669 + - 14670 type: DeviceList - uid: 57 components: @@ -10421,10 +10425,10 @@ entities: parent: 2 type: Transform - devices: - - 14664 - - 19397 - - 19163 - - 870 + - 14673 + - 19412 + - 19177 + - 871 type: DeviceList - uid: 58 components: @@ -10432,10 +10436,10 @@ entities: parent: 2 type: Transform - devices: - - 859 - - 19398 - - 19164 - - 14655 + - 860 + - 19413 + - 19178 + - 14664 type: DeviceList - uid: 59 components: @@ -10443,13 +10447,13 @@ entities: parent: 2 type: Transform - devices: - - 863 - - 19206 - - 19446 - - 14416 - - 14417 - - 14803 - - 14804 + - 864 + - 19220 + - 19461 + - 14425 + - 14426 + - 14812 + - 14813 type: DeviceList - uid: 60 components: @@ -10457,9 +10461,9 @@ entities: parent: 2 type: Transform - devices: - - 19469 - - 19235 - - 862 + - 19484 + - 19249 + - 863 type: DeviceList - uid: 61 components: @@ -10467,21 +10471,21 @@ entities: parent: 2 type: Transform - devices: - - 19384 - - 19151 - - 19299 - - 19150 - - 811 - - 14388 - - 14377 - - 14357 - - 14638 - - 14518 - - 14570 - - 14642 - - 14547 - - 14802 - - 14801 + - 19399 + - 19165 + - 19314 + - 19164 + - 812 + - 14397 + - 14386 + - 14366 + - 14647 + - 14527 + - 14579 + - 14651 + - 14556 + - 14811 + - 14810 type: DeviceList - uid: 62 components: @@ -10489,14 +10493,14 @@ entities: parent: 2 type: Transform - devices: - - 19337 - - 809 - - 19081 - - 14760 - - 14744 - - 14743 - - 14742 - - 14638 + - 19352 + - 810 + - 19095 + - 14769 + - 14753 + - 14752 + - 14751 + - 14647 type: DeviceList - uid: 63 components: @@ -10504,18 +10508,18 @@ entities: parent: 2 type: Transform - devices: - - 826 - - 19311 - - 19066 - - 14366 - - 14356 - - 14354 - - 14564 - - 14546 - - 14579 - - 14581 - - 14599 - - 14441 + - 827 + - 19326 + - 19080 + - 14375 + - 14365 + - 14363 + - 14573 + - 14555 + - 14588 + - 14590 + - 14608 + - 14450 type: DeviceList - uid: 64 components: @@ -10523,12 +10527,12 @@ entities: parent: 2 type: Transform - devices: - - 786 - - 19326 - - 19062 - - 14569 - - 14619 - - 14763 + - 787 + - 19341 + - 19076 + - 14578 + - 14628 + - 14772 type: DeviceList - uid: 65 components: @@ -10536,12 +10540,12 @@ entities: parent: 2 type: Transform - devices: - - 19327 - - 19101 - - 784 - - 14753 - - 14619 - - 14569 + - 19342 + - 19115 + - 785 + - 14762 + - 14628 + - 14578 type: DeviceList - uid: 66 components: @@ -10549,9 +10553,9 @@ entities: parent: 2 type: Transform - devices: - - 816 - - 19417 - - 19181 + - 817 + - 19432 + - 19195 type: DeviceList - uid: 67 components: @@ -10559,10 +10563,10 @@ entities: parent: 2 type: Transform - devices: - - 19443 - - 19205 - - 866 - - 14706 + - 19458 + - 19219 + - 867 + - 14715 type: DeviceList - uid: 68 components: @@ -10575,11 +10579,11 @@ entities: parent: 2 type: Transform - devices: - - 869 - - 19274 - - 19522 - - 14835 - - 14834 + - 870 + - 19288 + - 19537 + - 14844 + - 14843 type: DeviceList - uid: 70 components: @@ -10592,26 +10596,26 @@ entities: parent: 2 type: Transform - devices: - - 19480 - - 871 - - 19246 - - 14467 - - 14464 - - 14466 - - 14465 - - 14773 - - 14774 - - 14781 + - 19495 + - 872 + - 19260 + - 14476 + - 14473 + - 14475 + - 14474 - 14782 - 14783 - - 14789 - - 14788 - - 14787 - - 14463 - - 14770 - - 14771 - - 14772 - - 14442 + - 14790 + - 14791 + - 14792 + - 14798 + - 14797 + - 14796 + - 14472 + - 14779 + - 14780 + - 14781 + - 14451 type: DeviceList - uid: 72 components: @@ -10619,18 +10623,18 @@ entities: parent: 2 type: Transform - devices: - - 872 - - 19251 - - 19488 - - 14781 - - 14782 - - 14783 - - 14776 - - 14777 - - 14797 + - 873 + - 19265 + - 19503 + - 14790 + - 14791 + - 14792 - 14785 - 14786 - - 14784 + - 14806 + - 14794 + - 14795 + - 14793 type: DeviceList - uid: 73 components: @@ -10638,16 +10642,16 @@ entities: parent: 2 type: Transform - devices: - - 19493 - - 19252 - - 820 - - 14790 - - 14768 - - 14798 - - 14795 - - 14796 - - 14793 - - 14794 + - 19508 + - 19266 + - 821 + - 14799 + - 14777 + - 14807 + - 14804 + - 14805 + - 14802 + - 14803 type: DeviceList - uid: 74 components: @@ -10655,15 +10659,15 @@ entities: parent: 2 type: Transform - devices: - - 821 - - 19257 - - 19494 - - 14786 - - 14785 - - 14784 - - 14799 - - 14793 + - 822 + - 19271 + - 19509 + - 14795 - 14794 + - 14793 + - 14808 + - 14802 + - 14803 type: DeviceList - uid: 75 components: @@ -10671,9 +10675,9 @@ entities: parent: 2 type: Transform - devices: - - 19264 - - 19501 - - 874 + - 19278 + - 19516 + - 875 type: DeviceList - uid: 76 components: @@ -10681,25 +10685,25 @@ entities: parent: 2 type: Transform - devices: - - 773 - - 19323 - - 19091 - - 14360 - - 14359 - - 14358 - - 14384 - - 14361 - - 14362 - - 14717 - - 14718 - - 14683 - - 14681 - - 14682 - - 14560 - - 14559 - - 14606 - - 14456 - - 14491 + - 774 + - 19338 + - 19105 + - 14369 + - 14368 + - 14367 + - 14393 + - 14370 + - 14371 + - 14726 + - 14727 + - 14692 + - 14690 + - 14691 + - 14569 + - 14568 + - 14615 + - 14465 + - 14500 type: DeviceList - uid: 77 components: @@ -10707,13 +10711,13 @@ entities: parent: 2 type: Transform - devices: - - 19356 - - 783 - - 19123 + - 19371 + - 784 + - 19137 + - 14771 - 14762 - - 14753 - - 14509 - - 14458 + - 14518 + - 14467 type: DeviceList - uid: 78 components: @@ -10721,11 +10725,11 @@ entities: parent: 2 type: Transform - devices: - - 864 - - 19310 - - 19073 - - 14609 - - 14548 + - 865 + - 19325 + - 19087 + - 14618 + - 14557 type: DeviceList - uid: 79 components: @@ -10733,11 +10737,11 @@ entities: parent: 2 type: Transform - devices: - - 19350 - - 841 - - 19114 - - 14615 - - 14391 + - 19365 + - 842 + - 19128 + - 14624 + - 14400 type: DeviceList - uid: 80 components: @@ -10745,14 +10749,14 @@ entities: parent: 2 type: Transform - devices: - - 19266 - - 19503 - - 860 - - 14475 - - 14476 - - 878 - - 14400 - - 14474 + - 19280 + - 19518 + - 861 + - 14484 + - 14485 + - 879 + - 14409 + - 14483 type: DeviceList - uid: 81 components: @@ -10760,12 +10764,12 @@ entities: parent: 2 type: Transform - devices: - - 14477 - - 14478 - - 14807 - - 14808 - - 877 - - 19505 + - 14486 + - 14487 + - 14816 + - 14817 + - 878 + - 19520 type: DeviceList - uid: 82 components: @@ -10773,13 +10777,13 @@ entities: parent: 2 type: Transform - devices: - - 19269 - - 861 - - 14504 - - 14503 - - 14397 - - 14809 - - 14810 + - 19283 + - 862 + - 14513 + - 14512 + - 14406 + - 14818 + - 14819 type: DeviceList - uid: 83 components: @@ -10787,16 +10791,16 @@ entities: parent: 2 type: Transform - devices: - - 14814 - - 14556 - - 14587 - - 14624 - - 14595 - - 14510 - - 14589 - - 19295 - - 19063 - - 796 + - 14823 + - 14565 + - 14596 + - 14633 + - 14604 + - 14519 + - 14598 + - 19310 + - 19077 + - 797 type: DeviceList - uid: 84 components: @@ -10804,15 +10808,15 @@ entities: parent: 2 type: Transform - devices: - - 19410 - - 830 - - 19176 - - 14745 - - 14551 - - 14555 - - 14698 - - 14699 - - 14443 + - 19425 + - 831 + - 19190 + - 14754 + - 14560 + - 14564 + - 14707 + - 14708 + - 14452 type: DeviceList - uid: 85 components: @@ -10820,21 +10824,21 @@ entities: parent: 2 type: Transform - devices: - - 831 - - 19412 - - 19178 - - 14555 - - 14551 - - 14729 - - 14727 - - 14728 - - 14667 - - 14696 - - 14669 - - 14697 - - 14811 - - 14812 - - 14479 + - 832 + - 19427 + - 19192 + - 14564 + - 14560 + - 14738 + - 14736 + - 14737 + - 14676 + - 14705 + - 14678 + - 14706 + - 14820 + - 14821 + - 14488 type: DeviceList - uid: 86 components: @@ -10842,15 +10846,15 @@ entities: parent: 2 type: Transform - devices: - - 19520 - - 885 - - 19283 - - 14825 - - 14826 - - 14827 - - 14824 - - 14823 - - 14822 + - 19535 + - 886 + - 19297 + - 14834 + - 14835 + - 14836 + - 14833 + - 14832 + - 14831 type: DeviceList - uid: 87 components: @@ -10858,10 +10862,10 @@ entities: parent: 2 type: Transform - devices: - - 14821 - - 19284 - - 19519 - - 886 + - 14830 + - 19298 + - 19534 + - 887 type: DeviceList - uid: 88 components: @@ -10870,13 +10874,13 @@ entities: parent: 2 type: Transform - devices: - - 19281 - - 868 - - 19421 - - 14820 - - 14822 - - 14823 - - 14824 + - 19295 + - 869 + - 19436 + - 14829 + - 14831 + - 14832 + - 14833 type: DeviceList - uid: 89 components: @@ -10885,12 +10889,12 @@ entities: parent: 2 type: Transform - devices: - - 875 - - 19521 - - 19285 - - 14831 - - 14832 - - 14833 + - 876 + - 19536 + - 19299 + - 14840 + - 14841 + - 14842 type: DeviceList - uid: 90 components: @@ -10899,12 +10903,12 @@ entities: parent: 2 type: Transform - devices: - - 771 - - 14639 - - 14836 - - 14741 - - 19287 - - 19524 + - 772 + - 14648 + - 14845 + - 14750 + - 19301 + - 19539 type: DeviceList - uid: 91 components: @@ -10913,23 +10917,23 @@ entities: parent: 2 type: Transform - devices: - - 14642 - - 14547 - - 19387 - - 19150 - - 811 - - 19299 - - 19151 - - 19384 - - 14741 - - 14801 - - 14802 - - 14518 - - 14570 - - 14638 - - 14388 - - 14377 - - 14357 + - 14651 + - 14556 + - 19402 + - 19164 + - 812 + - 19314 + - 19165 + - 19399 + - 14750 + - 14810 + - 14811 + - 14527 + - 14579 + - 14647 + - 14397 + - 14386 + - 14366 type: DeviceList - uid: 92 components: @@ -10937,12 +10941,12 @@ entities: parent: 2 type: Transform - devices: - - 791 - - 14719 - - 14718 - - 14717 - - 19322 - - 19090 + - 792 + - 14728 + - 14727 + - 14726 + - 19337 + - 19104 type: DeviceList - uid: 93 components: @@ -10951,11 +10955,11 @@ entities: parent: 2 type: Transform - devices: - - 19526 - - 19288 - - 889 - - 14838 - - 14839 + - 19541 + - 19302 + - 890 + - 14847 + - 14848 type: DeviceList - proto: AirAlarmElectronics entities: @@ -13979,185 +13983,180 @@ entities: parent: 2 type: Transform - uid: 604 - components: - - pos: 31.5,21.5 - parent: 2 - type: Transform - - uid: 605 components: - rot: -1.5707963267948966 rad pos: 55.5,-0.5 parent: 2 type: Transform - - uid: 606 + - uid: 605 components: - name: evac type: MetaData - pos: 48.5,-8.5 parent: 2 type: Transform - - uid: 607 + - uid: 606 components: - pos: 57.5,-4.5 parent: 2 type: Transform - - uid: 608 + - uid: 607 components: - pos: 64.5,2.5 parent: 2 type: Transform - - uid: 609 + - uid: 608 components: - pos: -17.5,-14.5 parent: 2 type: Transform - - uid: 610 + - uid: 609 components: - name: evac type: MetaData - pos: 62.5,-14.5 parent: 2 type: Transform - - uid: 611 + - uid: 610 components: - rot: 1.5707963267948966 rad pos: 50.5,-13.5 parent: 2 type: Transform - - uid: 612 + - uid: 611 components: - pos: -17.5,52.5 parent: 2 type: Transform - - uid: 613 + - uid: 612 components: - pos: -20.5,55.5 parent: 2 type: Transform - - uid: 614 + - uid: 613 components: - name: courtroom type: MetaData - pos: 35.5,-54.5 parent: 2 type: Transform - - uid: 615 + - uid: 614 components: - pos: -21.5,-26.5 parent: 2 type: Transform - - uid: 616 + - uid: 615 components: - pos: -21.5,-42.5 parent: 2 type: Transform - - uid: 617 + - uid: 616 components: - pos: 36.5,-57.5 parent: 2 type: Transform - - uid: 618 + - uid: 617 components: - rot: 3.141592653589793 rad pos: -17.5,10.5 parent: 2 type: Transform - - uid: 619 + - uid: 618 components: - pos: 9.5,-70.5 parent: 2 type: Transform - - uid: 620 + - uid: 619 components: - rot: -1.5707963267948966 rad pos: 41.5,-64.5 parent: 2 type: Transform - - uid: 621 + - uid: 620 components: - pos: 21.5,-73.5 parent: 2 type: Transform - - uid: 622 + - uid: 621 components: - name: engineering type: MetaData - pos: -30.5,-26.5 parent: 2 type: Transform - - uid: 623 + - uid: 622 components: - name: engineering type: MetaData - pos: -33.5,-26.5 parent: 2 type: Transform - - uid: 624 + - uid: 623 components: - rot: 3.141592653589793 rad pos: -31.5,-45.5 parent: 2 type: Transform - - uid: 625 + - uid: 624 components: - rot: -1.5707963267948966 rad pos: -52.5,-30.5 parent: 2 type: Transform - - uid: 626 + - uid: 625 components: - rot: 1.5707963267948966 rad pos: -51.5,-63.5 parent: 2 type: Transform - - uid: 627 + - uid: 626 components: - pos: -16.5,-52.5 parent: 2 type: Transform - - uid: 628 + - uid: 627 components: - pos: -55.5,-34.5 parent: 2 type: Transform - - uid: 629 + - uid: 628 components: - pos: -56.5,-40.5 parent: 2 type: Transform - - uid: 630 + - uid: 629 components: - rot: -1.5707963267948966 rad pos: -17.5,19.5 parent: 2 type: Transform - - uid: 631 + - uid: 630 components: - pos: -24.5,26.5 parent: 2 type: Transform - - uid: 632 + - uid: 631 components: - pos: -4.5,32.5 parent: 2 type: Transform - - uid: 633 + - uid: 632 components: - pos: 1.5,32.5 parent: 2 type: Transform - - uid: 634 + - uid: 633 components: - rot: -1.5707963267948966 rad pos: -37.5,-1.5 parent: 2 type: Transform - - uid: 635 + - uid: 634 components: - pos: -48.5,0.5 parent: 2 type: Transform - - uid: 636 + - uid: 635 components: - name: singularity catwalk type: MetaData @@ -14165,62 +14164,62 @@ entities: pos: -53.5,-2.5 parent: 2 type: Transform - - uid: 637 + - uid: 636 components: - rot: 1.5707963267948966 rad pos: -21.5,27.5 parent: 2 type: Transform - - uid: 638 + - uid: 637 components: - pos: 11.5,32.5 parent: 2 type: Transform - - uid: 639 + - uid: 638 components: - pos: -23.5,56.5 parent: 2 type: Transform - - uid: 640 + - uid: 639 components: - pos: 4.5,32.5 parent: 2 type: Transform - - uid: 641 + - uid: 640 components: - pos: -22.5,34.5 parent: 2 type: Transform - - uid: 642 + - uid: 641 components: - rot: 1.5707963267948966 rad pos: -41.5,-93.5 parent: 2 type: Transform - - uid: 643 + - uid: 642 components: - rot: 1.5707963267948966 rad pos: -56.5,-57.5 parent: 2 type: Transform - - uid: 644 + - uid: 643 components: - pos: 6.5,-35.5 parent: 2 type: Transform - - uid: 645 + - uid: 644 components: - pos: 61.5,-26.5 parent: 2 type: Transform - - uid: 646 + - uid: 645 components: - pos: 10.5,-83.5 parent: 2 type: Transform - proto: AirlockMaintMedLocked entities: - - uid: 647 + - uid: 646 components: - name: surgery type: MetaData @@ -14228,7 +14227,7 @@ entities: pos: -1.5,-68.5 parent: 2 type: Transform - - uid: 648 + - uid: 647 components: - name: storeroom type: MetaData @@ -14236,20 +14235,20 @@ entities: pos: -8.5,-67.5 parent: 2 type: Transform - - uid: 649 + - uid: 648 components: - name: medbay type: MetaData - pos: 6.5,-62.5 parent: 2 type: Transform - - uid: 650 + - uid: 649 components: - rot: 3.141592653589793 rad pos: -16.5,-72.5 parent: 2 type: Transform - - uid: 651 + - uid: 650 components: - name: virology type: MetaData @@ -14257,7 +14256,7 @@ entities: pos: -32.5,-71.5 parent: 2 type: Transform - - uid: 652 + - uid: 651 components: - name: cryogenics type: MetaData @@ -14267,7 +14266,7 @@ entities: type: Transform - proto: AirlockMaintRnDLocked entities: - - uid: 653 + - uid: 652 components: - name: robotics type: MetaData @@ -14275,21 +14274,21 @@ entities: pos: 75.5,-50.5 parent: 2 type: Transform - - uid: 654 + - uid: 653 components: - name: r&d type: MetaData - pos: 45.5,-34.5 parent: 2 type: Transform - - uid: 655 + - uid: 654 components: - name: toxins type: MetaData - pos: 44.5,-56.5 parent: 2 type: Transform - - uid: 656 + - uid: 655 components: - name: science type: MetaData @@ -14297,7 +14296,7 @@ entities: pos: 50.5,-36.5 parent: 2 type: Transform - - uid: 657 + - uid: 656 components: - name: science type: MetaData @@ -14306,7 +14305,7 @@ entities: type: Transform - proto: AirlockMaintSalvageLocked entities: - - uid: 658 + - uid: 657 components: - name: salvage type: MetaData @@ -14314,7 +14313,7 @@ entities: pos: -37.5,34.5 parent: 2 type: Transform - - uid: 659 + - uid: 658 components: - rot: -1.5707963267948966 rad pos: -44.5,39.5 @@ -14322,6 +14321,11 @@ entities: type: Transform - proto: AirlockMaintSecLocked entities: + - uid: 659 + components: + - pos: 31.5,21.5 + parent: 2 + type: Transform - uid: 660 components: - name: warden office @@ -14723,48 +14727,48 @@ entities: pos: 72.5,-30.5 parent: 2 type: Transform - - uid: 30656 + - uid: 722 components: - pos: 68.5,-32.5 parent: 2 type: Transform - proto: AirlockScienceLocked entities: - - uid: 722 + - uid: 723 components: - name: r&d type: MetaData - pos: 45.5,-40.5 parent: 2 type: Transform - - uid: 723 + - uid: 724 components: - name: robotics type: MetaData - pos: 66.5,-48.5 parent: 2 type: Transform - - uid: 724 + - uid: 725 components: - pos: 62.5,-37.5 parent: 2 type: Transform - - uid: 725 + - uid: 726 components: - pos: 51.5,-59.5 parent: 2 type: Transform - - uid: 726 + - uid: 727 components: - pos: 66.5,-33.5 parent: 2 type: Transform - - uid: 727 + - uid: 728 components: - pos: 66.5,-34.5 parent: 2 type: Transform - - uid: 728 + - uid: 729 components: - rot: 1.5707963267948966 rad pos: 61.5,-37.5 @@ -14772,42 +14776,42 @@ entities: type: Transform - proto: AirlockSecurityGlassLocked entities: - - uid: 729 + - uid: 730 components: - pos: 43.5,15.5 parent: 2 type: Transform - - uid: 730 + - uid: 731 components: - pos: 43.5,14.5 parent: 2 type: Transform - - uid: 731 + - uid: 732 components: - rot: 3.141592653589793 rad pos: 9.5,16.5 parent: 2 type: Transform - - uid: 732 + - uid: 733 components: - name: substation type: MetaData - pos: 61.5,4.5 parent: 2 type: Transform - - uid: 733 + - uid: 734 components: - rot: 1.5707963267948966 rad pos: 28.5,-46.5 parent: 2 type: Transform - - uid: 734 + - uid: 735 components: - rot: 1.5707963267948966 rad pos: 33.5,-46.5 parent: 2 type: Transform - - uid: 735 + - uid: 736 components: - rot: 3.141592653589793 rad pos: 9.5,17.5 @@ -14815,7 +14819,7 @@ entities: type: Transform - proto: AirlockSecurityLocked entities: - - uid: 736 + - uid: 737 components: - name: sec dorm type: MetaData @@ -14823,18 +14827,18 @@ entities: pos: 3.5,17.5 parent: 2 type: Transform - - uid: 737 + - uid: 738 components: - rot: 1.5707963267948966 rad pos: 19.5,-44.5 parent: 2 type: Transform - - uid: 738 + - uid: 739 components: - pos: -17.5,-20.5 parent: 2 type: Transform - - uid: 739 + - uid: 740 components: - name: sec dorm type: MetaData @@ -14842,7 +14846,7 @@ entities: pos: 3.5,16.5 parent: 2 type: Transform - - uid: 740 + - uid: 741 components: - name: courtroom type: MetaData @@ -14850,13 +14854,13 @@ entities: pos: 31.5,-44.5 parent: 2 type: Transform - - uid: 741 + - uid: 742 components: - rot: 3.141592653589793 rad pos: -19.5,-44.5 parent: 2 type: Transform - - uid: 742 + - uid: 743 components: - rot: -1.5707963267948966 rad pos: -15.5,28.5 @@ -14864,14 +14868,14 @@ entities: type: Transform - proto: AirlockServiceLocked entities: - - uid: 743 + - uid: 744 components: - name: reporters office type: MetaData - pos: -24.5,9.5 parent: 2 type: Transform - - uid: 744 + - uid: 745 components: - name: donk cafe type: MetaData @@ -14879,35 +14883,35 @@ entities: pos: -13.5,41.5 parent: 2 type: Transform - - uid: 745 + - uid: 746 components: - name: changs type: MetaData - pos: -23.5,41.5 parent: 2 type: Transform - - uid: 746 + - uid: 747 components: - name: changs type: MetaData - pos: -19.5,45.5 parent: 2 type: Transform - - uid: 747 + - uid: 748 components: - pos: -23.5,47.5 parent: 2 type: Transform - proto: AirlockTheatreLocked entities: - - uid: 748 + - uid: 749 components: - name: recording studio type: MetaData - pos: -9.5,-2.5 parent: 2 type: Transform - - uid: 749 + - uid: 750 components: - name: recording studio type: MetaData @@ -14915,12 +14919,12 @@ entities: pos: -7.5,-7.5 parent: 2 type: Transform - - uid: 750 + - uid: 751 components: - pos: 4.5,-2.5 parent: 2 type: Transform - - uid: 751 + - uid: 752 components: - name: theatre type: MetaData @@ -14928,21 +14932,21 @@ entities: pos: 3.5,-8.5 parent: 2 type: Transform - - uid: 752 + - uid: 753 components: - name: mime room type: MetaData - pos: -25.5,45.5 parent: 2 type: Transform - - uid: 753 + - uid: 754 components: - name: theatre type: MetaData - pos: 2.5,-13.5 parent: 2 type: Transform - - uid: 754 + - uid: 755 components: - name: clown room type: MetaData @@ -14951,7 +14955,7 @@ entities: type: Transform - proto: AirlockVirologyGlass entities: - - uid: 755 + - uid: 756 components: - name: virology testing type: MetaData @@ -14959,28 +14963,28 @@ entities: pos: -20.5,-83.5 parent: 2 type: Transform - - uid: 756 + - uid: 757 components: - pos: -17.5,-77.5 parent: 2 type: Transform - proto: AirlockVirologyGlassLocked entities: - - uid: 757 + - uid: 758 components: - name: zombie containment type: MetaData - pos: -20.5,-80.5 parent: 2 type: Transform - - uid: 758 + - uid: 759 components: - name: zombie containment type: MetaData - pos: -18.5,-74.5 parent: 2 type: Transform - - uid: 759 + - uid: 760 components: - name: virology testing type: MetaData @@ -14988,13 +14992,13 @@ entities: pos: -23.5,-81.5 parent: 2 type: Transform - - uid: 760 + - uid: 761 components: - rot: 3.141592653589793 rad pos: -29.5,-72.5 parent: 2 type: Transform - - uid: 761 + - uid: 762 components: - name: virology testing type: MetaData @@ -15002,19 +15006,19 @@ entities: pos: -22.5,-81.5 parent: 2 type: Transform - - uid: 762 + - uid: 763 components: - name: virology treatment type: MetaData - pos: -24.5,-74.5 parent: 2 type: Transform - - uid: 763 + - uid: 764 components: - pos: -19.5,-68.5 parent: 2 type: Transform - - uid: 764 + - uid: 765 components: - rot: 1.5707963267948966 rad pos: -26.5,-73.5 @@ -15022,19 +15026,19 @@ entities: type: Transform - proto: AirlockVirologyLocked entities: - - uid: 765 + - uid: 766 components: - name: morgue type: MetaData - pos: -14.5,-68.5 parent: 2 type: Transform - - uid: 766 + - uid: 767 components: - pos: -19.5,-65.5 parent: 2 type: Transform - - uid: 767 + - uid: 768 components: - name: virology type: MetaData @@ -15044,635 +15048,635 @@ entities: type: Transform - proto: AirSensor entities: - - uid: 768 + - uid: 769 components: - pos: -20.5,-64.5 parent: 2 type: Transform - - uid: 769 + - uid: 770 components: - pos: 22.5,-27.5 parent: 2 type: Transform - - uid: 770 + - uid: 771 components: - pos: 0.5,-4.5 parent: 2 type: Transform - - uid: 771 + - uid: 772 components: - pos: 46.5,6.5 parent: 2 type: Transform - - uid: 772 + - uid: 773 components: - pos: -12.5,-49.5 parent: 2 type: Transform - - uid: 773 + - uid: 774 components: - pos: -5.5,-47.5 parent: 2 type: Transform - - uid: 774 + - uid: 775 components: - pos: 2.5,-42.5 parent: 2 type: Transform - - uid: 775 + - uid: 776 components: - pos: 0.5,11.5 parent: 2 type: Transform - - uid: 776 + - uid: 777 components: - pos: -3.5,-53.5 parent: 2 type: Transform - - uid: 777 + - uid: 778 components: - pos: 0.5,-60.5 parent: 2 type: Transform - - uid: 778 + - uid: 779 components: - pos: 25.5,-42.5 parent: 2 type: Transform - - uid: 779 + - uid: 780 components: - pos: -11.5,-57.5 parent: 2 type: Transform - - uid: 780 + - uid: 781 components: - pos: 28.5,-28.5 parent: 2 type: Transform - - uid: 781 + - uid: 782 components: - pos: 36.5,-27.5 parent: 2 type: Transform - - uid: 782 + - uid: 783 components: - pos: -20.5,-67.5 parent: 2 type: Transform - - uid: 783 + - uid: 784 components: - pos: -18.5,-71.5 parent: 2 type: Transform - - uid: 784 + - uid: 785 components: - pos: -25.5,-80.5 parent: 2 type: Transform - - uid: 785 + - uid: 786 components: - pos: -19.5,-79.5 parent: 2 type: Transform - - uid: 786 + - uid: 787 components: - pos: -20.5,-86.5 parent: 2 type: Transform - - uid: 787 + - uid: 788 components: - pos: -6.5,-64.5 parent: 2 type: Transform - - uid: 788 + - uid: 789 components: - pos: -3.5,-63.5 parent: 2 type: Transform - - uid: 789 + - uid: 790 components: - pos: 4.5,-65.5 parent: 2 type: Transform - - uid: 790 + - uid: 791 components: - pos: 8.5,-60.5 parent: 2 type: Transform - - uid: 791 + - uid: 792 components: - pos: 6.5,-49.5 parent: 2 type: Transform - - uid: 792 + - uid: 793 components: - pos: -10.5,-38.5 parent: 2 type: Transform - - uid: 793 + - uid: 794 components: - pos: -9.5,-33.5 parent: 2 type: Transform - - uid: 794 + - uid: 795 components: - pos: -9.5,-23.5 parent: 2 type: Transform - - uid: 795 + - uid: 796 components: - pos: 14.5,-27.5 parent: 2 type: Transform - - uid: 796 + - uid: 797 components: - pos: 6.5,-27.5 parent: 2 type: Transform - - uid: 797 + - uid: 798 components: - pos: -5.5,-28.5 parent: 2 type: Transform - - uid: 798 + - uid: 799 components: - pos: -3.5,-7.5 parent: 2 type: Transform - - uid: 799 + - uid: 800 components: - pos: -5.5,2.5 parent: 2 type: Transform - - uid: 800 + - uid: 801 components: - pos: 6.5,-0.5 parent: 2 type: Transform - - uid: 801 + - uid: 802 components: - pos: 11.5,11.5 parent: 2 type: Transform - - uid: 802 + - uid: 803 components: - pos: 4.5,13.5 parent: 2 type: Transform - - uid: 803 + - uid: 804 components: - pos: 6.5,7.5 parent: 2 type: Transform - - uid: 804 + - uid: 805 components: - pos: -2.5,10.5 parent: 2 type: Transform - - uid: 805 + - uid: 806 components: - pos: -10.5,6.5 parent: 2 type: Transform - - uid: 806 + - uid: 807 components: - pos: 7.5,19.5 parent: 2 type: Transform - - uid: 807 + - uid: 808 components: - pos: 18.5,20.5 parent: 2 type: Transform - - uid: 808 + - uid: 809 components: - pos: 11.5,22.5 parent: 2 type: Transform - - uid: 809 + - uid: 810 components: - pos: 20.5,20.5 parent: 2 type: Transform - - uid: 810 + - uid: 811 components: - pos: 51.5,1.5 parent: 2 type: Transform - - uid: 811 + - uid: 812 components: - pos: 35.5,15.5 parent: 2 type: Transform - - uid: 812 + - uid: 813 components: - rot: -1.5707963267948966 rad pos: 62.5,-8.5 parent: 2 type: Transform - - uid: 813 + - uid: 814 components: - pos: 26.5,-59.5 parent: 2 type: Transform - - uid: 814 + - uid: 815 components: - rot: 1.5707963267948966 rad pos: 48.5,14.5 parent: 2 type: Transform - - uid: 815 + - uid: 816 components: - rot: 1.5707963267948966 rad pos: 39.5,-73.5 parent: 2 type: Transform - - uid: 816 + - uid: 817 components: - rot: 1.5707963267948966 rad pos: 39.5,-59.5 parent: 2 type: Transform - - uid: 817 + - uid: 818 components: - rot: 1.5707963267948966 rad pos: 49.5,-54.5 parent: 2 type: Transform - - uid: 818 + - uid: 819 components: - rot: 1.5707963267948966 rad pos: 50.5,-39.5 parent: 2 type: Transform - - uid: 819 + - uid: 820 components: - pos: -21.5,56.5 parent: 2 type: Transform - - uid: 820 + - uid: 821 components: - pos: -13.5,63.5 parent: 2 type: Transform - - uid: 821 + - uid: 822 components: - pos: -2.5,59.5 parent: 2 type: Transform - - uid: 822 + - uid: 823 components: - pos: -47.5,15.5 parent: 2 type: Transform - - uid: 823 + - uid: 824 components: - pos: -17.5,-4.5 parent: 2 type: Transform - - uid: 824 + - uid: 825 components: - pos: 23.5,-5.5 parent: 2 type: Transform - - uid: 825 + - uid: 826 components: - pos: 16.5,3.5 parent: 2 type: Transform - - uid: 826 + - uid: 827 components: - pos: 24.5,6.5 parent: 2 type: Transform - - uid: 827 + - uid: 828 components: - pos: 32.5,-0.5 parent: 2 type: Transform - - uid: 828 + - uid: 829 components: - pos: 25.5,17.5 parent: 2 type: Transform - - uid: 829 + - uid: 830 components: - pos: 17.5,17.5 parent: 2 type: Transform - - uid: 830 + - uid: 831 components: - rot: 3.141592653589793 rad pos: -24.5,-11.5 parent: 2 type: Transform - - uid: 831 + - uid: 832 components: - rot: 3.141592653589793 rad pos: -19.5,-17.5 parent: 2 type: Transform - - uid: 832 + - uid: 833 components: - pos: -32.5,-14.5 parent: 2 type: Transform - - uid: 833 + - uid: 834 components: - pos: 18.5,-53.5 parent: 2 type: Transform - - uid: 834 + - uid: 835 components: - rot: 1.5707963267948966 rad pos: -37.5,-42.5 parent: 2 type: Transform - - uid: 835 + - uid: 836 components: - rot: 3.141592653589793 rad pos: -36.5,-35.5 parent: 2 type: Transform - - uid: 836 + - uid: 837 components: - rot: 3.141592653589793 rad pos: -30.5,-35.5 parent: 2 type: Transform - - uid: 837 + - uid: 838 components: - rot: 3.141592653589793 rad pos: -24.5,-32.5 parent: 2 type: Transform - - uid: 838 + - uid: 839 components: - pos: -20.5,-28.5 parent: 2 type: Transform - - uid: 839 + - uid: 840 components: - pos: 21.5,-25.5 parent: 2 type: Transform - - uid: 840 + - uid: 841 components: - pos: 32.5,-17.5 parent: 2 type: Transform - - uid: 841 + - uid: 842 components: - pos: 21.5,-14.5 parent: 2 type: Transform - - uid: 842 + - uid: 843 components: - pos: 41.5,-24.5 parent: 2 type: Transform - - uid: 843 + - uid: 844 components: - pos: -36.5,0.5 parent: 2 type: Transform - - uid: 844 + - uid: 845 components: - pos: -45.5,7.5 parent: 2 type: Transform - - uid: 845 + - uid: 846 components: - pos: -48.5,11.5 parent: 2 type: Transform - - uid: 846 + - uid: 847 components: - pos: -43.5,24.5 parent: 2 type: Transform - - uid: 847 + - uid: 848 components: - pos: -43.5,30.5 parent: 2 type: Transform - - uid: 848 + - uid: 849 components: - pos: -31.5,23.5 parent: 2 type: Transform - - uid: 849 + - uid: 850 components: - pos: -24.5,20.5 parent: 2 type: Transform - - uid: 850 + - uid: 851 components: - pos: -19.5,21.5 parent: 2 type: Transform - - uid: 851 + - uid: 852 components: - rot: 1.5707963267948966 rad pos: -73.5,-25.5 parent: 2 type: Transform - - uid: 852 + - uid: 853 components: - rot: 1.5707963267948966 rad pos: -54.5,-24.5 parent: 2 type: Transform - - uid: 853 + - uid: 854 components: - rot: 1.5707963267948966 rad pos: -54.5,-10.5 parent: 2 type: Transform - - uid: 854 + - uid: 855 components: - rot: 1.5707963267948966 rad pos: -34.5,-6.5 parent: 2 type: Transform - - uid: 855 + - uid: 856 components: - pos: -32.5,-23.5 parent: 2 type: Transform - - uid: 856 + - uid: 857 components: - pos: 44.5,-37.5 parent: 2 type: Transform - - uid: 857 + - uid: 858 components: - pos: 42.5,-43.5 parent: 2 type: Transform - - uid: 858 + - uid: 859 components: - pos: 59.5,-47.5 parent: 2 type: Transform - - uid: 859 + - uid: 860 components: - pos: 63.5,-51.5 parent: 2 type: Transform - - uid: 860 + - uid: 861 components: - pos: 59.5,-35.5 parent: 2 type: Transform - - uid: 861 + - uid: 862 components: - pos: 70.5,-47.5 parent: 2 type: Transform - - uid: 862 + - uid: 863 components: - pos: -55.5,-75.5 parent: 2 type: Transform - - uid: 863 + - uid: 864 components: - pos: -38.5,-80.5 parent: 2 type: Transform - - uid: 864 + - uid: 865 components: - pos: 25.5,-36.5 parent: 2 type: Transform - - uid: 865 + - uid: 866 components: - pos: -31.5,-71.5 parent: 2 type: Transform - - uid: 866 + - uid: 867 components: - pos: -23.5,-61.5 parent: 2 type: Transform - - uid: 867 + - uid: 868 components: - pos: 42.5,-42.5 parent: 2 type: Transform - - uid: 868 + - uid: 869 components: - pos: 30.5,-83.5 parent: 2 type: Transform - - uid: 869 + - uid: 870 components: - pos: -17.5,66.5 parent: 2 type: Transform - - uid: 870 + - uid: 871 components: - pos: 64.5,-2.5 parent: 2 type: Transform - - uid: 871 + - uid: 872 components: - rot: 1.5707963267948966 rad pos: -16.5,45.5 parent: 2 type: Transform - - uid: 872 + - uid: 873 components: - rot: 1.5707963267948966 rad pos: -3.5,45.5 parent: 2 type: Transform - - uid: 873 + - uid: 874 components: - rot: 1.5707963267948966 rad pos: 40.5,47.5 parent: 2 type: Transform - - uid: 874 + - uid: 875 components: - pos: -33.5,-96.5 parent: 2 type: Transform - - uid: 875 + - uid: 876 components: - pos: 48.5,-83.5 parent: 2 type: Transform - - uid: 876 + - uid: 877 components: - pos: 49.5,-72.5 parent: 2 type: Transform - - uid: 877 + - uid: 878 components: - rot: 3.141592653589793 rad pos: 72.5,-34.5 parent: 2 type: Transform - - uid: 878 + - uid: 879 components: - pos: 62.5,-36.5 parent: 2 type: Transform - - uid: 879 + - uid: 880 components: - rot: 3.141592653589793 rad pos: 4.5,-33.5 parent: 2 type: Transform - - uid: 880 + - uid: 881 components: - pos: -28.5,-13.5 parent: 2 type: Transform - - uid: 881 + - uid: 882 components: - rot: 1.5707963267948966 rad pos: -0.5,18.5 parent: 2 type: Transform - - uid: 882 + - uid: 883 components: - pos: -11.5,-19.5 parent: 2 type: Transform - - uid: 883 + - uid: 884 components: - pos: -9.5,-14.5 parent: 2 type: Transform - - uid: 884 + - uid: 885 components: - pos: -29.5,-74.5 parent: 2 type: Transform - - uid: 885 + - uid: 886 components: - pos: 25.5,-72.5 parent: 2 type: Transform - - uid: 886 + - uid: 887 components: - pos: 15.5,-86.5 parent: 2 type: Transform - - uid: 887 + - uid: 888 components: - pos: 27.5,2.5 parent: 2 type: Transform - - uid: 888 + - uid: 889 components: - rot: -1.5707963267948966 rad pos: -45.5,32.5 parent: 2 type: Transform - - uid: 889 + - uid: 890 components: - rot: -1.5707963267948966 rad pos: -46.5,42.5 @@ -15680,181 +15684,181 @@ entities: type: Transform - proto: AltarConvertRed entities: - - uid: 890 + - uid: 891 components: - pos: -37.5,14.5 parent: 2 type: Transform - - uid: 891 + - uid: 892 components: - pos: -38.5,14.5 parent: 2 type: Transform - proto: AltarSpawner entities: - - uid: 892 + - uid: 893 components: - pos: 45.5,47.5 parent: 2 type: Transform - proto: AltarToolbox entities: - - uid: 893 + - uid: 894 components: - pos: 61.5,-69.5 parent: 2 type: Transform - proto: AMEController entities: - - uid: 894 + - uid: 895 components: - pos: -46.5,-16.5 parent: 2 type: Transform - proto: AMEJar entities: - - uid: 895 + - uid: 896 components: - pos: -49.455143,64.63223 parent: 2 type: Transform - - uid: 896 + - uid: 897 components: - pos: 20.471298,55.773235 parent: 2 type: Transform - proto: AMEPart entities: - - uid: 897 + - uid: 898 components: - pos: 19.423536,55.353977 parent: 2 type: Transform - - uid: 898 + - uid: 899 components: - pos: 19.173536,54.619602 parent: 2 type: Transform - - uid: 899 + - uid: 900 components: - pos: 18.376661,54.494602 parent: 2 type: Transform - proto: AnomalyScanner entities: - - uid: 900 + - uid: 901 components: - pos: 63.468235,-36.25785 parent: 2 type: Transform - - uid: 901 + - uid: 902 components: - pos: 63.686985,-36.460976 parent: 2 type: Transform - proto: AnomalyVesselCircuitboard entities: - - uid: 902 + - uid: 903 components: - pos: 64.46823,-36.460976 parent: 2 type: Transform - proto: APCBasic entities: - - uid: 903 + - uid: 904 components: - pos: 21.5,15.5 parent: 2 type: Transform - - uid: 904 + - uid: 905 components: - rot: -1.5707963267948966 rad pos: 31.5,2.5 parent: 2 type: Transform - - uid: 905 + - uid: 906 components: - pos: -10.5,-20.5 parent: 2 type: Transform - - uid: 906 + - uid: 907 components: - rot: -1.5707963267948966 rad pos: 43.5,-26.5 parent: 2 type: Transform - - uid: 907 + - uid: 908 components: - rot: -1.5707963267948966 rad pos: -13.5,42.5 parent: 2 type: Transform - - uid: 908 + - uid: 909 components: - pos: 49.5,3.5 parent: 2 type: Transform - - uid: 909 + - uid: 910 components: - pos: 59.5,-4.5 parent: 2 type: Transform - - uid: 910 + - uid: 911 components: - pos: 48.5,-48.5 parent: 2 type: Transform - - uid: 911 + - uid: 912 components: - pos: -20.5,0.5 parent: 2 type: Transform - - uid: 912 + - uid: 913 components: - pos: 37.5,-57.5 parent: 2 type: Transform - - uid: 913 + - uid: 914 components: - pos: -56.5,-85.5 parent: 2 type: Transform - - uid: 914 + - uid: 915 components: - pos: 0.5,35.5 parent: 2 type: Transform - - uid: 915 + - uid: 916 components: - pos: -39.5,-69.5 parent: 2 type: Transform - - uid: 916 + - uid: 917 components: - pos: 52.5,38.5 parent: 2 type: Transform - - uid: 917 + - uid: 918 components: - pos: -8.5,60.5 parent: 2 type: Transform - - uid: 918 + - uid: 919 components: - pos: -70.5,-40.5 parent: 2 type: Transform - - uid: 919 + - uid: 920 components: - pos: 55.5,-62.5 parent: 2 type: Transform - - uid: 920 + - uid: 921 components: - pos: 11.5,-18.5 parent: 2 type: Transform - - uid: 921 + - uid: 922 components: - rot: 3.141592653589793 rad pos: 37.5,13.5 @@ -15862,4377 +15866,4377 @@ entities: type: Transform - proto: APCHighCapacity entities: - - uid: 922 + - uid: 923 components: - pos: 24.5,24.5 parent: 2 type: Transform - - uid: 923 + - uid: 924 components: - pos: -21.5,-68.5 parent: 2 type: Transform - - uid: 924 + - uid: 925 components: - pos: 0.5,-40.5 parent: 2 type: Transform - - uid: 925 + - uid: 926 components: - pos: 19.5,-51.5 parent: 2 type: Transform - - uid: 926 + - uid: 927 components: - pos: -10.5,-58.5 parent: 2 type: Transform - - uid: 927 + - uid: 928 components: - pos: 8.5,-3.5 parent: 2 type: Transform - - uid: 928 + - uid: 929 components: - pos: 1.5,10.5 parent: 2 type: Transform - - uid: 929 + - uid: 930 components: - pos: 21.5,-9.5 parent: 2 type: Transform - - uid: 930 + - uid: 931 components: - pos: 58.5,11.5 parent: 2 type: Transform - - uid: 931 + - uid: 932 components: - pos: 55.5,-43.5 parent: 2 type: Transform - - uid: 932 + - uid: 933 components: - pos: -50.5,-15.5 parent: 2 type: Transform - - uid: 933 + - uid: 934 components: - pos: -35.5,-31.5 parent: 2 type: Transform - - uid: 934 + - uid: 935 components: - pos: -29.5,-64.5 parent: 2 type: Transform - - uid: 935 + - uid: 936 components: - pos: 29.5,-26.5 parent: 2 type: Transform - - uid: 936 + - uid: 937 components: - pos: -23.5,26.5 parent: 2 type: Transform - - uid: 937 + - uid: 938 components: - pos: -42.5,2.5 parent: 2 type: Transform - - uid: 938 + - uid: 939 components: - pos: -29.5,-8.5 parent: 2 type: Transform - - uid: 939 + - uid: 940 components: - pos: 71.5,-42.5 parent: 2 type: Transform - proto: APCSuperCapacity entities: - - uid: 940 + - uid: 941 components: - pos: -3.5,-68.5 parent: 2 type: Transform - - uid: 941 + - uid: 942 components: - pos: -2.5,-51.5 parent: 2 type: Transform - proto: AppraisalTool entities: - - uid: 942 + - uid: 943 components: - pos: -38.189224,18.730852 parent: 2 type: Transform - - uid: 943 + - uid: 944 components: - pos: -38.01735,18.465227 parent: 2 type: Transform - proto: AsteroidRock entities: - - uid: 944 + - uid: 945 components: - rot: 1.5707963267948966 rad pos: 61.5,49.5 parent: 2 type: Transform - - uid: 945 + - uid: 946 components: - rot: 1.5707963267948966 rad pos: 61.5,50.5 parent: 2 type: Transform - - uid: 946 + - uid: 947 components: - rot: 1.5707963267948966 rad pos: 62.5,46.5 parent: 2 type: Transform - - uid: 947 + - uid: 948 components: - pos: 11.5,45.5 parent: 2 type: Transform - - uid: 948 + - uid: 949 components: - pos: 13.5,44.5 parent: 2 type: Transform - - uid: 949 + - uid: 950 components: - rot: 1.5707963267948966 rad pos: 62.5,50.5 parent: 2 type: Transform - - uid: 950 + - uid: 951 components: - rot: 1.5707963267948966 rad pos: 62.5,43.5 parent: 2 type: Transform - - uid: 951 + - uid: 952 components: - rot: 1.5707963267948966 rad pos: 60.5,48.5 parent: 2 type: Transform - - uid: 952 + - uid: 953 components: - rot: 1.5707963267948966 rad pos: 60.5,50.5 parent: 2 type: Transform - - uid: 953 + - uid: 954 components: - rot: 1.5707963267948966 rad pos: 60.5,49.5 parent: 2 type: Transform - - uid: 954 + - uid: 955 components: - pos: 12.5,45.5 parent: 2 type: Transform - - uid: 955 + - uid: 956 components: - pos: 10.5,45.5 parent: 2 type: Transform - - uid: 956 + - uid: 957 components: - pos: 13.5,43.5 parent: 2 type: Transform - - uid: 957 + - uid: 958 components: - pos: 12.5,43.5 parent: 2 type: Transform - - uid: 958 + - uid: 959 components: - pos: 11.5,43.5 parent: 2 type: Transform - - uid: 959 + - uid: 960 components: - pos: 12.5,44.5 parent: 2 type: Transform - - uid: 960 + - uid: 961 components: - pos: 10.5,42.5 parent: 2 type: Transform - - uid: 961 + - uid: 962 components: - rot: 1.5707963267948966 rad pos: 61.5,43.5 parent: 2 type: Transform - - uid: 962 + - uid: 963 components: - rot: 3.141592653589793 rad pos: -46.5,61.5 parent: 2 type: Transform - - uid: 963 + - uid: 964 components: - rot: 3.141592653589793 rad pos: -46.5,60.5 parent: 2 type: Transform - - uid: 964 + - uid: 965 components: - rot: 3.141592653589793 rad pos: -46.5,59.5 parent: 2 type: Transform - - uid: 965 + - uid: 966 components: - rot: 3.141592653589793 rad pos: -46.5,58.5 parent: 2 type: Transform - - uid: 966 + - uid: 967 components: - rot: 3.141592653589793 rad pos: -45.5,61.5 parent: 2 type: Transform - - uid: 967 + - uid: 968 components: - pos: -59.5,67.5 parent: 2 type: Transform - - uid: 968 + - uid: 969 components: - rot: 3.141592653589793 rad pos: -45.5,59.5 parent: 2 type: Transform - - uid: 969 + - uid: 970 components: - rot: 3.141592653589793 rad pos: -45.5,58.5 parent: 2 type: Transform - - uid: 970 + - uid: 971 components: - pos: -58.5,70.5 parent: 2 type: Transform - - uid: 971 + - uid: 972 components: - rot: 3.141592653589793 rad pos: -44.5,60.5 parent: 2 type: Transform - - uid: 972 + - uid: 973 components: - rot: 3.141592653589793 rad pos: -44.5,59.5 parent: 2 type: Transform - - uid: 973 + - uid: 974 components: - rot: 3.141592653589793 rad pos: -44.5,58.5 parent: 2 type: Transform - - uid: 974 + - uid: 975 components: - rot: 3.141592653589793 rad pos: -43.5,61.5 parent: 2 type: Transform - - uid: 975 + - uid: 976 components: - rot: 3.141592653589793 rad pos: -43.5,60.5 parent: 2 type: Transform - - uid: 976 + - uid: 977 components: - rot: 3.141592653589793 rad pos: -43.5,59.5 parent: 2 type: Transform - - uid: 977 + - uid: 978 components: - rot: 3.141592653589793 rad pos: -43.5,58.5 parent: 2 type: Transform - - uid: 978 + - uid: 979 components: - rot: 3.141592653589793 rad pos: -42.5,61.5 parent: 2 type: Transform - - uid: 979 + - uid: 980 components: - rot: 3.141592653589793 rad pos: -42.5,60.5 parent: 2 type: Transform - - uid: 980 + - uid: 981 components: - rot: 3.141592653589793 rad pos: -42.5,59.5 parent: 2 type: Transform - - uid: 981 + - uid: 982 components: - rot: 3.141592653589793 rad pos: -42.5,58.5 parent: 2 type: Transform - - uid: 982 + - uid: 983 components: - rot: 3.141592653589793 rad pos: -52.5,63.5 parent: 2 type: Transform - - uid: 983 + - uid: 984 components: - rot: 3.141592653589793 rad pos: -52.5,62.5 parent: 2 type: Transform - - uid: 984 + - uid: 985 components: - rot: 3.141592653589793 rad pos: -52.5,61.5 parent: 2 type: Transform - - uid: 985 + - uid: 986 components: - rot: 3.141592653589793 rad pos: -52.5,60.5 parent: 2 type: Transform - - uid: 986 + - uid: 987 components: - rot: 3.141592653589793 rad pos: -52.5,59.5 parent: 2 type: Transform - - uid: 987 + - uid: 988 components: - rot: 3.141592653589793 rad pos: -52.5,58.5 parent: 2 type: Transform - - uid: 988 + - uid: 989 components: - rot: 3.141592653589793 rad pos: -52.5,57.5 parent: 2 type: Transform - - uid: 989 + - uid: 990 components: - rot: 3.141592653589793 rad pos: -51.5,63.5 parent: 2 type: Transform - - uid: 990 + - uid: 991 components: - rot: 3.141592653589793 rad pos: -51.5,62.5 parent: 2 type: Transform - - uid: 991 + - uid: 992 components: - rot: 3.141592653589793 rad pos: -51.5,61.5 parent: 2 type: Transform - - uid: 992 + - uid: 993 components: - rot: 3.141592653589793 rad pos: -51.5,60.5 parent: 2 type: Transform - - uid: 993 + - uid: 994 components: - rot: 3.141592653589793 rad pos: -51.5,59.5 parent: 2 type: Transform - - uid: 994 + - uid: 995 components: - rot: 3.141592653589793 rad pos: -51.5,58.5 parent: 2 type: Transform - - uid: 995 + - uid: 996 components: - rot: 3.141592653589793 rad pos: -51.5,57.5 parent: 2 type: Transform - - uid: 996 + - uid: 997 components: - rot: 3.141592653589793 rad pos: -50.5,63.5 parent: 2 type: Transform - - uid: 997 + - uid: 998 components: - pos: -37.5,68.5 parent: 2 type: Transform - - uid: 998 + - uid: 999 components: - rot: 3.141592653589793 rad pos: -50.5,61.5 parent: 2 type: Transform - - uid: 999 + - uid: 1000 components: - rot: 3.141592653589793 rad pos: -50.5,60.5 parent: 2 type: Transform - - uid: 1000 + - uid: 1001 components: - rot: 3.141592653589793 rad pos: -50.5,59.5 parent: 2 type: Transform - - uid: 1001 + - uid: 1002 components: - rot: 3.141592653589793 rad pos: -50.5,58.5 parent: 2 type: Transform - - uid: 1002 + - uid: 1003 components: - rot: 3.141592653589793 rad pos: -50.5,57.5 parent: 2 type: Transform - - uid: 1003 + - uid: 1004 components: - rot: 3.141592653589793 rad pos: -49.5,63.5 parent: 2 type: Transform - - uid: 1004 + - uid: 1005 components: - rot: 3.141592653589793 rad pos: -49.5,62.5 parent: 2 type: Transform - - uid: 1005 + - uid: 1006 components: - rot: 3.141592653589793 rad pos: -49.5,61.5 parent: 2 type: Transform - - uid: 1006 + - uid: 1007 components: - pos: -38.5,69.5 parent: 2 type: Transform - - uid: 1007 + - uid: 1008 components: - rot: 3.141592653589793 rad pos: -49.5,59.5 parent: 2 type: Transform - - uid: 1008 + - uid: 1009 components: - rot: 3.141592653589793 rad pos: -49.5,58.5 parent: 2 type: Transform - - uid: 1009 + - uid: 1010 components: - rot: 3.141592653589793 rad pos: -49.5,57.5 parent: 2 type: Transform - - uid: 1010 + - uid: 1011 components: - rot: 3.141592653589793 rad pos: -48.5,63.5 parent: 2 type: Transform - - uid: 1011 + - uid: 1012 components: - rot: 3.141592653589793 rad pos: -48.5,62.5 parent: 2 type: Transform - - uid: 1012 + - uid: 1013 components: - rot: 3.141592653589793 rad pos: -48.5,61.5 parent: 2 type: Transform - - uid: 1013 + - uid: 1014 components: - pos: -56.5,61.5 parent: 2 type: Transform - - uid: 1014 + - uid: 1015 components: - rot: 3.141592653589793 rad pos: -48.5,59.5 parent: 2 type: Transform - - uid: 1015 + - uid: 1016 components: - rot: 3.141592653589793 rad pos: -48.5,58.5 parent: 2 type: Transform - - uid: 1016 + - uid: 1017 components: - rot: 3.141592653589793 rad pos: -48.5,57.5 parent: 2 type: Transform - - uid: 1017 + - uid: 1018 components: - rot: 3.141592653589793 rad pos: -47.5,63.5 parent: 2 type: Transform - - uid: 1018 + - uid: 1019 components: - rot: 3.141592653589793 rad pos: -47.5,62.5 parent: 2 type: Transform - - uid: 1019 + - uid: 1020 components: - rot: 3.141592653589793 rad pos: -47.5,61.5 parent: 2 type: Transform - - uid: 1020 + - uid: 1021 components: - rot: 3.141592653589793 rad pos: -47.5,60.5 parent: 2 type: Transform - - uid: 1021 + - uid: 1022 components: - pos: -59.5,69.5 parent: 2 type: Transform - - uid: 1022 + - uid: 1023 components: - rot: 3.141592653589793 rad pos: -47.5,58.5 parent: 2 type: Transform - - uid: 1023 + - uid: 1024 components: - rot: 3.141592653589793 rad pos: -47.5,57.5 parent: 2 type: Transform - - uid: 1024 + - uid: 1025 components: - rot: 3.141592653589793 rad pos: -46.5,63.5 parent: 2 type: Transform - - uid: 1025 + - uid: 1026 components: - rot: 3.141592653589793 rad pos: -46.5,62.5 parent: 2 type: Transform - - uid: 1026 + - uid: 1027 components: - rot: 3.141592653589793 rad pos: -46.5,61.5 parent: 2 type: Transform - - uid: 1027 + - uid: 1028 components: - pos: -59.5,66.5 parent: 2 type: Transform - - uid: 1028 + - uid: 1029 components: - pos: -59.5,68.5 parent: 2 type: Transform - - uid: 1029 + - uid: 1030 components: - rot: 3.141592653589793 rad pos: -46.5,58.5 parent: 2 type: Transform - - uid: 1030 + - uid: 1031 components: - rot: 3.141592653589793 rad pos: -46.5,57.5 parent: 2 type: Transform - - uid: 1031 + - uid: 1032 components: - rot: 3.141592653589793 rad pos: -53.5,62.5 parent: 2 type: Transform - - uid: 1032 + - uid: 1033 components: - rot: 3.141592653589793 rad pos: -53.5,61.5 parent: 2 type: Transform - - uid: 1033 + - uid: 1034 components: - rot: 3.141592653589793 rad pos: -53.5,60.5 parent: 2 type: Transform - - uid: 1034 + - uid: 1035 components: - rot: 3.141592653589793 rad pos: -54.5,61.5 parent: 2 type: Transform - - uid: 1035 + - uid: 1036 components: - rot: 3.141592653589793 rad pos: -53.5,59.5 parent: 2 type: Transform - - uid: 1036 + - uid: 1037 components: - rot: 3.141592653589793 rad pos: -54.5,58.5 parent: 2 type: Transform - - uid: 1037 + - uid: 1038 components: - rot: 3.141592653589793 rad pos: -54.5,60.5 parent: 2 type: Transform - - uid: 1038 + - uid: 1039 components: - rot: 3.141592653589793 rad pos: -53.5,58.5 parent: 2 type: Transform - - uid: 1039 + - uid: 1040 components: - rot: 3.141592653589793 rad pos: -54.5,59.5 parent: 2 type: Transform - - uid: 1040 + - uid: 1041 components: - rot: 3.141592653589793 rad pos: -53.5,57.5 parent: 2 type: Transform - - uid: 1041 + - uid: 1042 components: - rot: 3.141592653589793 rad pos: -52.5,57.5 parent: 2 type: Transform - - uid: 1042 + - uid: 1043 components: - rot: 3.141592653589793 rad pos: -52.5,56.5 parent: 2 type: Transform - - uid: 1043 + - uid: 1044 components: - rot: 3.141592653589793 rad pos: -51.5,57.5 parent: 2 type: Transform - - uid: 1044 + - uid: 1045 components: - rot: 3.141592653589793 rad pos: -51.5,56.5 parent: 2 type: Transform - - uid: 1045 + - uid: 1046 components: - rot: 3.141592653589793 rad pos: -50.5,57.5 parent: 2 type: Transform - - uid: 1046 + - uid: 1047 components: - rot: 3.141592653589793 rad pos: -50.5,56.5 parent: 2 type: Transform - - uid: 1047 + - uid: 1048 components: - rot: 3.141592653589793 rad pos: -49.5,57.5 parent: 2 type: Transform - - uid: 1048 + - uid: 1049 components: - rot: 3.141592653589793 rad pos: -49.5,56.5 parent: 2 type: Transform - - uid: 1049 + - uid: 1050 components: - rot: 3.141592653589793 rad pos: -48.5,57.5 parent: 2 type: Transform - - uid: 1050 + - uid: 1051 components: - rot: 3.141592653589793 rad pos: -48.5,56.5 parent: 2 type: Transform - - uid: 1051 + - uid: 1052 components: - rot: 3.141592653589793 rad pos: -47.5,57.5 parent: 2 type: Transform - - uid: 1052 + - uid: 1053 components: - rot: 3.141592653589793 rad pos: -47.5,56.5 parent: 2 type: Transform - - uid: 1053 + - uid: 1054 components: - rot: 3.141592653589793 rad pos: -46.5,57.5 parent: 2 type: Transform - - uid: 1054 + - uid: 1055 components: - rot: 3.141592653589793 rad pos: -46.5,56.5 parent: 2 type: Transform - - uid: 1055 + - uid: 1056 components: - rot: 3.141592653589793 rad pos: -48.5,57.5 parent: 2 type: Transform - - uid: 1056 + - uid: 1057 components: - rot: 3.141592653589793 rad pos: -48.5,56.5 parent: 2 type: Transform - - uid: 1057 + - uid: 1058 components: - rot: 3.141592653589793 rad pos: -48.5,55.5 parent: 2 type: Transform - - uid: 1058 + - uid: 1059 components: - rot: 3.141592653589793 rad pos: -47.5,57.5 parent: 2 type: Transform - - uid: 1059 + - uid: 1060 components: - rot: 3.141592653589793 rad pos: -47.5,56.5 parent: 2 type: Transform - - uid: 1060 + - uid: 1061 components: - rot: 3.141592653589793 rad pos: -47.5,55.5 parent: 2 type: Transform - - uid: 1061 + - uid: 1062 components: - rot: 3.141592653589793 rad pos: -46.5,57.5 parent: 2 type: Transform - - uid: 1062 + - uid: 1063 components: - rot: 3.141592653589793 rad pos: -46.5,56.5 parent: 2 type: Transform - - uid: 1063 + - uid: 1064 components: - rot: 3.141592653589793 rad pos: -46.5,55.5 parent: 2 type: Transform - - uid: 1064 + - uid: 1065 components: - rot: 3.141592653589793 rad pos: -45.5,57.5 parent: 2 type: Transform - - uid: 1065 + - uid: 1066 components: - rot: 3.141592653589793 rad pos: -45.5,56.5 parent: 2 type: Transform - - uid: 1066 + - uid: 1067 components: - rot: 3.141592653589793 rad pos: -45.5,55.5 parent: 2 type: Transform - - uid: 1067 + - uid: 1068 components: - pos: -36.5,59.5 parent: 2 type: Transform - - uid: 1068 + - uid: 1069 components: - rot: 3.141592653589793 rad pos: -44.5,56.5 parent: 2 type: Transform - - uid: 1069 + - uid: 1070 components: - rot: 3.141592653589793 rad pos: -44.5,55.5 parent: 2 type: Transform - - uid: 1070 + - uid: 1071 components: - rot: 3.141592653589793 rad pos: -43.5,57.5 parent: 2 type: Transform - - uid: 1071 + - uid: 1072 components: - pos: -37.5,58.5 parent: 2 type: Transform - - uid: 1072 + - uid: 1073 components: - rot: 3.141592653589793 rad pos: -43.5,55.5 parent: 2 type: Transform - - uid: 1073 + - uid: 1074 components: - rot: 3.141592653589793 rad pos: -42.5,57.5 parent: 2 type: Transform - - uid: 1074 + - uid: 1075 components: - rot: 3.141592653589793 rad pos: -42.5,56.5 parent: 2 type: Transform - - uid: 1075 + - uid: 1076 components: - rot: 3.141592653589793 rad pos: -42.5,55.5 parent: 2 type: Transform - - uid: 1076 + - uid: 1077 components: - rot: 3.141592653589793 rad pos: -49.5,69.5 parent: 2 type: Transform - - uid: 1077 + - uid: 1078 components: - rot: 3.141592653589793 rad pos: -49.5,68.5 parent: 2 type: Transform - - uid: 1078 + - uid: 1079 components: - rot: 3.141592653589793 rad pos: -49.5,67.5 parent: 2 type: Transform - - uid: 1079 + - uid: 1080 components: - rot: 3.141592653589793 rad pos: -49.5,66.5 parent: 2 type: Transform - - uid: 1080 + - uid: 1081 components: - rot: 3.141592653589793 rad pos: -49.5,65.5 parent: 2 type: Transform - - uid: 1081 + - uid: 1082 components: - pos: -37.5,69.5 parent: 2 type: Transform - - uid: 1082 + - uid: 1083 components: - rot: 3.141592653589793 rad pos: -49.5,63.5 parent: 2 type: Transform - - uid: 1083 + - uid: 1084 components: - rot: 3.141592653589793 rad pos: -48.5,69.5 parent: 2 type: Transform - - uid: 1084 + - uid: 1085 components: - rot: 3.141592653589793 rad pos: -53.5,69.5 parent: 2 type: Transform - - uid: 1085 + - uid: 1086 components: - pos: -39.5,55.5 parent: 2 type: Transform - - uid: 1086 + - uid: 1087 components: - rot: 3.141592653589793 rad pos: -53.5,67.5 parent: 2 type: Transform - - uid: 1087 + - uid: 1088 components: - rot: 3.141592653589793 rad pos: -53.5,66.5 parent: 2 type: Transform - - uid: 1088 + - uid: 1089 components: - pos: -46.5,54.5 parent: 2 type: Transform - - uid: 1089 + - uid: 1090 components: - rot: 3.141592653589793 rad pos: -53.5,64.5 parent: 2 type: Transform - - uid: 1090 + - uid: 1091 components: - rot: 3.141592653589793 rad pos: -53.5,63.5 parent: 2 type: Transform - - uid: 1091 + - uid: 1092 components: - rot: 3.141592653589793 rad pos: -52.5,69.5 parent: 2 type: Transform - - uid: 1092 + - uid: 1093 components: - rot: 3.141592653589793 rad pos: -52.5,68.5 parent: 2 type: Transform - - uid: 1093 + - uid: 1094 components: - rot: 3.141592653589793 rad pos: -52.5,67.5 parent: 2 type: Transform - - uid: 1094 + - uid: 1095 components: - pos: -44.5,54.5 parent: 2 type: Transform - - uid: 1095 + - uid: 1096 components: - pos: -45.5,54.5 parent: 2 type: Transform - - uid: 1096 + - uid: 1097 components: - pos: -43.5,54.5 parent: 2 type: Transform - - uid: 1097 + - uid: 1098 components: - rot: 3.141592653589793 rad pos: -52.5,63.5 parent: 2 type: Transform - - uid: 1098 + - uid: 1099 components: - rot: 3.141592653589793 rad pos: -51.5,69.5 parent: 2 type: Transform - - uid: 1099 + - uid: 1100 components: - rot: 3.141592653589793 rad pos: -51.5,68.5 parent: 2 type: Transform - - uid: 1100 + - uid: 1101 components: - rot: 3.141592653589793 rad pos: -51.5,67.5 parent: 2 type: Transform - - uid: 1101 + - uid: 1102 components: - rot: 3.141592653589793 rad pos: -51.5,66.5 parent: 2 type: Transform - - uid: 1102 + - uid: 1103 components: - rot: 3.141592653589793 rad pos: -51.5,65.5 parent: 2 type: Transform - - uid: 1103 + - uid: 1104 components: - rot: 3.141592653589793 rad pos: -51.5,64.5 parent: 2 type: Transform - - uid: 1104 + - uid: 1105 components: - rot: 3.141592653589793 rad pos: -51.5,63.5 parent: 2 type: Transform - - uid: 1105 + - uid: 1106 components: - rot: 3.141592653589793 rad pos: -50.5,69.5 parent: 2 type: Transform - - uid: 1106 + - uid: 1107 components: - pos: -49.5,54.5 parent: 2 type: Transform - - uid: 1107 + - uid: 1108 components: - rot: 3.141592653589793 rad pos: -50.5,67.5 parent: 2 type: Transform - - uid: 1108 + - uid: 1109 components: - rot: 3.141592653589793 rad pos: -50.5,66.5 parent: 2 type: Transform - - uid: 1109 + - uid: 1110 components: - rot: 3.141592653589793 rad pos: -50.5,65.5 parent: 2 type: Transform - - uid: 1110 + - uid: 1111 components: - rot: 3.141592653589793 rad pos: -50.5,64.5 parent: 2 type: Transform - - uid: 1111 + - uid: 1112 components: - rot: 3.141592653589793 rad pos: -50.5,63.5 parent: 2 type: Transform - - uid: 1112 + - uid: 1113 components: - rot: 3.141592653589793 rad pos: -57.5,69.5 parent: 2 type: Transform - - uid: 1113 + - uid: 1114 components: - pos: -47.5,54.5 parent: 2 type: Transform - - uid: 1114 + - uid: 1115 components: - rot: 3.141592653589793 rad pos: -57.5,67.5 parent: 2 type: Transform - - uid: 1115 + - uid: 1116 components: - rot: 3.141592653589793 rad pos: -57.5,66.5 parent: 2 type: Transform - - uid: 1116 + - uid: 1117 components: - rot: 3.141592653589793 rad pos: -57.5,65.5 parent: 2 type: Transform - - uid: 1117 + - uid: 1118 components: - rot: 3.141592653589793 rad pos: -57.5,64.5 parent: 2 type: Transform - - uid: 1118 + - uid: 1119 components: - rot: 3.141592653589793 rad pos: -57.5,63.5 parent: 2 type: Transform - - uid: 1119 + - uid: 1120 components: - rot: 3.141592653589793 rad pos: -56.5,69.5 parent: 2 type: Transform - - uid: 1120 + - uid: 1121 components: - rot: 3.141592653589793 rad pos: -56.5,68.5 parent: 2 type: Transform - - uid: 1121 + - uid: 1122 components: - rot: 3.141592653589793 rad pos: -56.5,67.5 parent: 2 type: Transform - - uid: 1122 + - uid: 1123 components: - rot: 3.141592653589793 rad pos: -56.5,66.5 parent: 2 type: Transform - - uid: 1123 + - uid: 1124 components: - rot: 3.141592653589793 rad pos: -56.5,65.5 parent: 2 type: Transform - - uid: 1124 + - uid: 1125 components: - rot: 3.141592653589793 rad pos: -56.5,64.5 parent: 2 type: Transform - - uid: 1125 + - uid: 1126 components: - rot: 3.141592653589793 rad pos: -56.5,63.5 parent: 2 type: Transform - - uid: 1126 + - uid: 1127 components: - rot: 3.141592653589793 rad pos: -55.5,69.5 parent: 2 type: Transform - - uid: 1127 + - uid: 1128 components: - pos: -38.5,55.5 parent: 2 type: Transform - - uid: 1128 + - uid: 1129 components: - pos: -37.5,57.5 parent: 2 type: Transform - - uid: 1129 + - uid: 1130 components: - rot: 3.141592653589793 rad pos: -55.5,66.5 parent: 2 type: Transform - - uid: 1130 + - uid: 1131 components: - rot: 3.141592653589793 rad pos: -55.5,65.5 parent: 2 type: Transform - - uid: 1131 + - uid: 1132 components: - rot: 3.141592653589793 rad pos: -55.5,64.5 parent: 2 type: Transform - - uid: 1132 + - uid: 1133 components: - rot: 3.141592653589793 rad pos: -55.5,63.5 parent: 2 type: Transform - - uid: 1133 + - uid: 1134 components: - rot: 3.141592653589793 rad pos: -54.5,69.5 parent: 2 type: Transform - - uid: 1134 + - uid: 1135 components: - pos: -37.5,56.5 parent: 2 type: Transform - - uid: 1135 + - uid: 1136 components: - rot: 3.141592653589793 rad pos: -54.5,67.5 parent: 2 type: Transform - - uid: 1136 + - uid: 1137 components: - rot: 3.141592653589793 rad pos: -54.5,66.5 parent: 2 type: Transform - - uid: 1137 + - uid: 1138 components: - rot: 3.141592653589793 rad pos: -54.5,65.5 parent: 2 type: Transform - - uid: 1138 + - uid: 1139 components: - rot: 3.141592653589793 rad pos: -54.5,64.5 parent: 2 type: Transform - - uid: 1139 + - uid: 1140 components: - rot: 3.141592653589793 rad pos: -54.5,63.5 parent: 2 type: Transform - - uid: 1140 + - uid: 1141 components: - rot: 3.141592653589793 rad pos: -48.5,68.5 parent: 2 type: Transform - - uid: 1141 + - uid: 1142 components: - rot: 3.141592653589793 rad pos: -48.5,67.5 parent: 2 type: Transform - - uid: 1142 + - uid: 1143 components: - rot: 3.141592653589793 rad pos: -48.5,66.5 parent: 2 type: Transform - - uid: 1143 + - uid: 1144 components: - rot: 3.141592653589793 rad pos: -48.5,65.5 parent: 2 type: Transform - - uid: 1144 + - uid: 1145 components: - rot: 3.141592653589793 rad pos: -48.5,64.5 parent: 2 type: Transform - - uid: 1145 + - uid: 1146 components: - rot: 3.141592653589793 rad pos: -48.5,63.5 parent: 2 type: Transform - - uid: 1146 + - uid: 1147 components: - pos: -48.5,54.5 parent: 2 type: Transform - - uid: 1147 + - uid: 1148 components: - rot: 3.141592653589793 rad pos: -54.5,69.5 parent: 2 type: Transform - - uid: 1148 + - uid: 1149 components: - rot: 3.141592653589793 rad pos: -54.5,70.5 parent: 2 type: Transform - - uid: 1149 + - uid: 1150 components: - rot: 3.141592653589793 rad pos: -53.5,70.5 parent: 2 type: Transform - - uid: 1150 + - uid: 1151 components: - rot: 3.141592653589793 rad pos: -52.5,70.5 parent: 2 type: Transform - - uid: 1151 + - uid: 1152 components: - rot: 3.141592653589793 rad pos: -56.5,70.5 parent: 2 type: Transform - - uid: 1152 + - uid: 1153 components: - rot: 3.141592653589793 rad pos: -58.5,68.5 parent: 2 type: Transform - - uid: 1153 + - uid: 1154 components: - rot: 3.141592653589793 rad pos: -58.5,66.5 parent: 2 type: Transform - - uid: 1154 + - uid: 1155 components: - rot: 3.141592653589793 rad pos: -58.5,67.5 parent: 2 type: Transform - - uid: 1155 + - uid: 1156 components: - rot: 3.141592653589793 rad pos: -40.5,67.5 parent: 2 type: Transform - - uid: 1156 + - uid: 1157 components: - rot: 3.141592653589793 rad pos: -40.5,66.5 parent: 2 type: Transform - - uid: 1157 + - uid: 1158 components: - rot: 3.141592653589793 rad pos: -40.5,65.5 parent: 2 type: Transform - - uid: 1158 + - uid: 1159 components: - pos: -36.5,67.5 parent: 2 type: Transform - - uid: 1159 + - uid: 1160 components: - pos: -35.5,67.5 parent: 2 type: Transform - - uid: 1160 + - uid: 1161 components: - pos: -35.5,64.5 parent: 2 type: Transform - - uid: 1161 + - uid: 1162 components: - rot: 3.141592653589793 rad pos: -40.5,61.5 parent: 2 type: Transform - - uid: 1162 + - uid: 1163 components: - pos: -36.5,61.5 parent: 2 type: Transform - - uid: 1163 + - uid: 1164 components: - rot: 3.141592653589793 rad pos: -47.5,67.5 parent: 2 type: Transform - - uid: 1164 + - uid: 1165 components: - rot: 3.141592653589793 rad pos: -47.5,66.5 parent: 2 type: Transform - - uid: 1165 + - uid: 1166 components: - rot: 3.141592653589793 rad pos: -47.5,65.5 parent: 2 type: Transform - - uid: 1166 + - uid: 1167 components: - rot: 3.141592653589793 rad pos: -47.5,64.5 parent: 2 type: Transform - - uid: 1167 + - uid: 1168 components: - rot: 3.141592653589793 rad pos: -47.5,63.5 parent: 2 type: Transform - - uid: 1168 + - uid: 1169 components: - rot: 3.141592653589793 rad pos: -47.5,62.5 parent: 2 type: Transform - - uid: 1169 + - uid: 1170 components: - rot: 3.141592653589793 rad pos: -47.5,61.5 parent: 2 type: Transform - - uid: 1170 + - uid: 1171 components: - rot: 3.141592653589793 rad pos: -47.5,60.5 parent: 2 type: Transform - - uid: 1171 + - uid: 1172 components: - rot: 3.141592653589793 rad pos: -46.5,67.5 parent: 2 type: Transform - - uid: 1172 + - uid: 1173 components: - rot: 3.141592653589793 rad pos: -46.5,66.5 parent: 2 type: Transform - - uid: 1173 + - uid: 1174 components: - pos: -36.5,68.5 parent: 2 type: Transform - - uid: 1174 + - uid: 1175 components: - rot: 3.141592653589793 rad pos: -46.5,64.5 parent: 2 type: Transform - - uid: 1175 + - uid: 1176 components: - rot: 3.141592653589793 rad pos: -46.5,63.5 parent: 2 type: Transform - - uid: 1176 + - uid: 1177 components: - rot: 3.141592653589793 rad pos: -46.5,62.5 parent: 2 type: Transform - - uid: 1177 + - uid: 1178 components: - rot: 3.141592653589793 rad pos: -46.5,61.5 parent: 2 type: Transform - - uid: 1178 + - uid: 1179 components: - pos: -55.5,71.5 parent: 2 type: Transform - - uid: 1179 + - uid: 1180 components: - rot: 3.141592653589793 rad pos: -45.5,67.5 parent: 2 type: Transform - - uid: 1180 + - uid: 1181 components: - rot: 3.141592653589793 rad pos: -45.5,66.5 parent: 2 type: Transform - - uid: 1181 + - uid: 1182 components: - rot: 3.141592653589793 rad pos: -45.5,65.5 parent: 2 type: Transform - - uid: 1182 + - uid: 1183 components: - rot: 3.141592653589793 rad pos: -45.5,64.5 parent: 2 type: Transform - - uid: 1183 + - uid: 1184 components: - rot: 3.141592653589793 rad pos: -45.5,63.5 parent: 2 type: Transform - - uid: 1184 + - uid: 1185 components: - rot: 3.141592653589793 rad pos: -45.5,62.5 parent: 2 type: Transform - - uid: 1185 + - uid: 1186 components: - pos: -58.5,64.5 parent: 2 type: Transform - - uid: 1186 + - uid: 1187 components: - pos: -56.5,71.5 parent: 2 type: Transform - - uid: 1187 + - uid: 1188 components: - rot: 3.141592653589793 rad pos: -44.5,67.5 parent: 2 type: Transform - - uid: 1188 + - uid: 1189 components: - rot: 3.141592653589793 rad pos: -44.5,66.5 parent: 2 type: Transform - - uid: 1189 + - uid: 1190 components: - rot: 3.141592653589793 rad pos: -44.5,65.5 parent: 2 type: Transform - - uid: 1190 + - uid: 1191 components: - rot: 3.141592653589793 rad pos: -44.5,64.5 parent: 2 type: Transform - - uid: 1191 + - uid: 1192 components: - rot: 3.141592653589793 rad pos: -44.5,63.5 parent: 2 type: Transform - - uid: 1192 + - uid: 1193 components: - rot: 3.141592653589793 rad pos: -44.5,62.5 parent: 2 type: Transform - - uid: 1193 + - uid: 1194 components: - pos: -57.5,70.5 parent: 2 type: Transform - - uid: 1194 + - uid: 1195 components: - rot: 3.141592653589793 rad pos: -44.5,60.5 parent: 2 type: Transform - - uid: 1195 + - uid: 1196 components: - pos: -40.5,54.5 parent: 2 type: Transform - - uid: 1196 + - uid: 1197 components: - rot: 3.141592653589793 rad pos: -43.5,66.5 parent: 2 type: Transform - - uid: 1197 + - uid: 1198 components: - rot: 3.141592653589793 rad pos: -43.5,65.5 parent: 2 type: Transform - - uid: 1198 + - uid: 1199 components: - rot: 3.141592653589793 rad pos: -43.5,64.5 parent: 2 type: Transform - - uid: 1199 + - uid: 1200 components: - rot: 3.141592653589793 rad pos: -43.5,63.5 parent: 2 type: Transform - - uid: 1200 + - uid: 1201 components: - rot: 3.141592653589793 rad pos: -43.5,62.5 parent: 2 type: Transform - - uid: 1201 + - uid: 1202 components: - rot: 3.141592653589793 rad pos: -43.5,61.5 parent: 2 type: Transform - - uid: 1202 + - uid: 1203 components: - rot: 3.141592653589793 rad pos: -43.5,60.5 parent: 2 type: Transform - - uid: 1203 + - uid: 1204 components: - rot: 3.141592653589793 rad pos: -42.5,67.5 parent: 2 type: Transform - - uid: 1204 + - uid: 1205 components: - rot: 3.141592653589793 rad pos: -42.5,66.5 parent: 2 type: Transform - - uid: 1205 + - uid: 1206 components: - rot: 3.141592653589793 rad pos: -42.5,65.5 parent: 2 type: Transform - - uid: 1206 + - uid: 1207 components: - rot: 3.141592653589793 rad pos: -42.5,64.5 parent: 2 type: Transform - - uid: 1207 + - uid: 1208 components: - rot: 3.141592653589793 rad pos: -42.5,63.5 parent: 2 type: Transform - - uid: 1208 + - uid: 1209 components: - rot: 3.141592653589793 rad pos: -42.5,62.5 parent: 2 type: Transform - - uid: 1209 + - uid: 1210 components: - rot: 3.141592653589793 rad pos: -42.5,61.5 parent: 2 type: Transform - - uid: 1210 + - uid: 1211 components: - rot: 3.141592653589793 rad pos: -42.5,60.5 parent: 2 type: Transform - - uid: 1211 + - uid: 1212 components: - rot: 3.141592653589793 rad pos: -41.5,67.5 parent: 2 type: Transform - - uid: 1212 + - uid: 1213 components: - rot: 3.141592653589793 rad pos: -41.5,66.5 parent: 2 type: Transform - - uid: 1213 + - uid: 1214 components: - rot: 3.141592653589793 rad pos: -41.5,65.5 parent: 2 type: Transform - - uid: 1214 + - uid: 1215 components: - rot: 3.141592653589793 rad pos: -41.5,64.5 parent: 2 type: Transform - - uid: 1215 + - uid: 1216 components: - rot: 3.141592653589793 rad pos: -41.5,63.5 parent: 2 type: Transform - - uid: 1216 + - uid: 1217 components: - rot: 3.141592653589793 rad pos: -41.5,62.5 parent: 2 type: Transform - - uid: 1217 + - uid: 1218 components: - rot: 3.141592653589793 rad pos: -41.5,61.5 parent: 2 type: Transform - - uid: 1218 + - uid: 1219 components: - rot: 3.141592653589793 rad pos: -41.5,60.5 parent: 2 type: Transform - - uid: 1219 + - uid: 1220 components: - rot: 3.141592653589793 rad pos: -39.5,67.5 parent: 2 type: Transform - - uid: 1220 + - uid: 1221 components: - rot: 3.141592653589793 rad pos: -39.5,66.5 parent: 2 type: Transform - - uid: 1221 + - uid: 1222 components: - rot: 3.141592653589793 rad pos: -39.5,65.5 parent: 2 type: Transform - - uid: 1222 + - uid: 1223 components: - rot: 3.141592653589793 rad pos: -39.5,64.5 parent: 2 type: Transform - - uid: 1223 + - uid: 1224 components: - rot: 3.141592653589793 rad pos: -39.5,63.5 parent: 2 type: Transform - - uid: 1224 + - uid: 1225 components: - pos: -35.5,61.5 parent: 2 type: Transform - - uid: 1225 + - uid: 1226 components: - rot: 3.141592653589793 rad pos: -39.5,61.5 parent: 2 type: Transform - - uid: 1226 + - uid: 1227 components: - rot: 3.141592653589793 rad pos: -39.5,60.5 parent: 2 type: Transform - - uid: 1227 + - uid: 1228 components: - rot: 3.141592653589793 rad pos: -38.5,67.5 parent: 2 type: Transform - - uid: 1228 + - uid: 1229 components: - rot: 3.141592653589793 rad pos: -38.5,66.5 parent: 2 type: Transform - - uid: 1229 + - uid: 1230 components: - rot: 3.141592653589793 rad pos: -38.5,65.5 parent: 2 type: Transform - - uid: 1230 + - uid: 1231 components: - rot: 3.141592653589793 rad pos: -38.5,64.5 parent: 2 type: Transform - - uid: 1231 + - uid: 1232 components: - rot: 3.141592653589793 rad pos: -38.5,63.5 parent: 2 type: Transform - - uid: 1232 + - uid: 1233 components: - rot: 3.141592653589793 rad pos: -38.5,62.5 parent: 2 type: Transform - - uid: 1233 + - uid: 1234 components: - rot: 3.141592653589793 rad pos: -38.5,61.5 parent: 2 type: Transform - - uid: 1234 + - uid: 1235 components: - rot: 3.141592653589793 rad pos: -38.5,60.5 parent: 2 type: Transform - - uid: 1235 + - uid: 1236 components: - rot: 3.141592653589793 rad pos: -37.5,67.5 parent: 2 type: Transform - - uid: 1236 + - uid: 1237 components: - rot: 3.141592653589793 rad pos: -37.5,65.5 parent: 2 type: Transform - - uid: 1237 + - uid: 1238 components: - rot: 3.141592653589793 rad pos: -37.5,64.5 parent: 2 type: Transform - - uid: 1238 + - uid: 1239 components: - rot: 3.141592653589793 rad pos: -37.5,62.5 parent: 2 type: Transform - - uid: 1239 + - uid: 1240 components: - rot: 3.141592653589793 rad pos: -37.5,61.5 parent: 2 type: Transform - - uid: 1240 + - uid: 1241 components: - rot: 3.141592653589793 rad pos: -37.5,60.5 parent: 2 type: Transform - - uid: 1241 + - uid: 1242 components: - rot: 3.141592653589793 rad pos: -45.5,68.5 parent: 2 type: Transform - - uid: 1242 + - uid: 1243 components: - rot: 3.141592653589793 rad pos: -44.5,68.5 parent: 2 type: Transform - - uid: 1243 + - uid: 1244 components: - rot: 3.141592653589793 rad pos: -43.5,68.5 parent: 2 type: Transform - - uid: 1244 + - uid: 1245 components: - rot: 3.141592653589793 rad pos: -42.5,68.5 parent: 2 type: Transform - - uid: 1245 + - uid: 1246 components: - pos: -41.5,54.5 parent: 2 type: Transform - - uid: 1246 + - uid: 1247 components: - pos: -42.5,54.5 parent: 2 type: Transform - - uid: 1247 + - uid: 1248 components: - rot: 3.141592653589793 rad pos: -39.5,68.5 parent: 2 type: Transform - - uid: 1248 + - uid: 1249 components: - rot: 3.141592653589793 rad pos: -38.5,68.5 parent: 2 type: Transform - - uid: 1249 + - uid: 1250 components: - rot: 3.141592653589793 rad pos: -43.5,69.5 parent: 2 type: Transform - - uid: 1250 + - uid: 1251 components: - rot: 3.141592653589793 rad pos: -42.5,69.5 parent: 2 type: Transform - - uid: 1251 + - uid: 1252 components: - rot: 3.141592653589793 rad pos: -41.5,69.5 parent: 2 type: Transform - - uid: 1252 + - uid: 1253 components: - rot: 3.141592653589793 rad pos: -40.5,69.5 parent: 2 type: Transform - - uid: 1253 + - uid: 1254 components: - rot: 3.141592653589793 rad pos: -40.5,69.5 parent: 2 type: Transform - - uid: 1254 + - uid: 1255 components: - rot: 3.141592653589793 rad pos: -39.5,69.5 parent: 2 type: Transform - - uid: 1255 + - uid: 1256 components: - rot: 3.141592653589793 rad pos: -46.5,68.5 parent: 2 type: Transform - - uid: 1256 + - uid: 1257 components: - rot: 3.141592653589793 rad pos: -38.5,59.5 parent: 2 type: Transform - - uid: 1257 + - uid: 1258 components: - rot: 3.141592653589793 rad pos: -38.5,58.5 parent: 2 type: Transform - - uid: 1258 + - uid: 1259 components: - rot: 3.141592653589793 rad pos: -38.5,57.5 parent: 2 type: Transform - - uid: 1259 + - uid: 1260 components: - rot: 3.141592653589793 rad pos: -39.5,59.5 parent: 2 type: Transform - - uid: 1260 + - uid: 1261 components: - rot: 3.141592653589793 rad pos: -39.5,58.5 parent: 2 type: Transform - - uid: 1261 + - uid: 1262 components: - rot: 3.141592653589793 rad pos: -39.5,57.5 parent: 2 type: Transform - - uid: 1262 + - uid: 1263 components: - rot: 3.141592653589793 rad pos: -40.5,59.5 parent: 2 type: Transform - - uid: 1263 + - uid: 1264 components: - rot: 3.141592653589793 rad pos: -40.5,58.5 parent: 2 type: Transform - - uid: 1264 + - uid: 1265 components: - rot: 3.141592653589793 rad pos: -40.5,57.5 parent: 2 type: Transform - - uid: 1265 + - uid: 1266 components: - rot: 3.141592653589793 rad pos: -41.5,59.5 parent: 2 type: Transform - - uid: 1266 + - uid: 1267 components: - rot: 3.141592653589793 rad pos: -41.5,58.5 parent: 2 type: Transform - - uid: 1267 + - uid: 1268 components: - pos: -37.5,59.5 parent: 2 type: Transform - - uid: 1268 + - uid: 1269 components: - pos: -36.5,60.5 parent: 2 type: Transform - - uid: 1269 + - uid: 1270 components: - rot: 3.141592653589793 rad pos: -42.5,58.5 parent: 2 type: Transform - - uid: 1270 + - uid: 1271 components: - rot: 3.141592653589793 rad pos: -42.5,57.5 parent: 2 type: Transform - - uid: 1271 + - uid: 1272 components: - rot: 3.141592653589793 rad pos: -40.5,57.5 parent: 2 type: Transform - - uid: 1272 + - uid: 1273 components: - rot: 3.141592653589793 rad pos: -41.5,56.5 parent: 2 type: Transform - - uid: 1273 + - uid: 1274 components: - rot: 3.141592653589793 rad pos: -39.5,56.5 parent: 2 type: Transform - - uid: 1274 + - uid: 1275 components: - rot: 3.141592653589793 rad pos: -40.5,56.5 parent: 2 type: Transform - - uid: 1275 + - uid: 1276 components: - rot: 3.141592653589793 rad pos: -56.5,62.5 parent: 2 type: Transform - - uid: 1276 + - uid: 1277 components: - pos: -54.5,71.5 parent: 2 type: Transform - - uid: 1277 + - uid: 1278 components: - pos: -53.5,71.5 parent: 2 type: Transform - - uid: 1278 + - uid: 1279 components: - pos: -52.5,71.5 parent: 2 type: Transform - - uid: 1279 + - uid: 1280 components: - pos: -50.5,70.5 parent: 2 type: Transform - - uid: 1280 + - uid: 1281 components: - pos: -49.5,70.5 parent: 2 type: Transform - - uid: 1281 + - uid: 1282 components: - pos: -46.5,69.5 parent: 2 type: Transform - - uid: 1282 + - uid: 1283 components: - pos: -45.5,69.5 parent: 2 type: Transform - - uid: 1283 + - uid: 1284 components: - pos: -44.5,69.5 parent: 2 type: Transform - - uid: 1284 + - uid: 1285 components: - pos: -43.5,70.5 parent: 2 type: Transform - - uid: 1285 + - uid: 1286 components: - pos: -42.5,70.5 parent: 2 type: Transform - - uid: 1286 + - uid: 1287 components: - pos: -41.5,70.5 parent: 2 type: Transform - - uid: 1287 + - uid: 1288 components: - pos: -40.5,70.5 parent: 2 type: Transform - - uid: 1288 + - uid: 1289 components: - pos: -36.5,64.5 parent: 2 type: Transform - - uid: 1289 + - uid: 1290 components: - rot: 1.5707963267948966 rad pos: 15.5,49.5 parent: 2 type: Transform - - uid: 1290 + - uid: 1291 components: - rot: 1.5707963267948966 rad pos: 19.5,44.5 parent: 2 type: Transform - - uid: 1291 + - uid: 1292 components: - pos: 66.5,54.5 parent: 2 type: Transform - - uid: 1292 + - uid: 1293 components: - pos: 68.5,52.5 parent: 2 type: Transform - - uid: 1293 + - uid: 1294 components: - rot: 1.5707963267948966 rad pos: 63.5,50.5 parent: 2 type: Transform - - uid: 1294 + - uid: 1295 components: - rot: 1.5707963267948966 rad pos: 64.5,51.5 parent: 2 type: Transform - - uid: 1295 + - uid: 1296 components: - rot: 1.5707963267948966 rad pos: 63.5,51.5 parent: 2 type: Transform - - uid: 1296 + - uid: 1297 components: - rot: 1.5707963267948966 rad pos: 62.5,51.5 parent: 2 type: Transform - - uid: 1297 + - uid: 1298 components: - rot: 1.5707963267948966 rad pos: 61.5,51.5 parent: 2 type: Transform - - uid: 1298 + - uid: 1299 components: - rot: 1.5707963267948966 rad pos: 60.5,51.5 parent: 2 type: Transform - - uid: 1299 + - uid: 1300 components: - rot: 1.5707963267948966 rad pos: 60.5,52.5 parent: 2 type: Transform - - uid: 1300 + - uid: 1301 components: - rot: 1.5707963267948966 rad pos: 61.5,52.5 parent: 2 type: Transform - - uid: 1301 + - uid: 1302 components: - rot: 1.5707963267948966 rad pos: 62.5,52.5 parent: 2 type: Transform - - uid: 1302 + - uid: 1303 components: - rot: 1.5707963267948966 rad pos: 63.5,52.5 parent: 2 type: Transform - - uid: 1303 + - uid: 1304 components: - rot: 1.5707963267948966 rad pos: 61.5,53.5 parent: 2 type: Transform - - uid: 1304 + - uid: 1305 components: - rot: 1.5707963267948966 rad pos: 60.5,53.5 parent: 2 type: Transform - - uid: 1305 + - uid: 1306 components: - rot: 1.5707963267948966 rad pos: 63.5,43.5 parent: 2 type: Transform - - uid: 1306 + - uid: 1307 components: - rot: 1.5707963267948966 rad pos: 62.5,54.5 parent: 2 type: Transform - - uid: 1307 + - uid: 1308 components: - rot: 1.5707963267948966 rad pos: 61.5,54.5 parent: 2 type: Transform - - uid: 1308 + - uid: 1309 components: - rot: 1.5707963267948966 rad pos: 61.5,55.5 parent: 2 type: Transform - - uid: 1309 + - uid: 1310 components: - rot: 1.5707963267948966 rad pos: 62.5,55.5 parent: 2 type: Transform - - uid: 1310 + - uid: 1311 components: - rot: 1.5707963267948966 rad pos: 64.5,55.5 parent: 2 type: Transform - - uid: 1311 + - uid: 1312 components: - rot: 1.5707963267948966 rad pos: 65.5,55.5 parent: 2 type: Transform - - uid: 1312 + - uid: 1313 components: - rot: 1.5707963267948966 rad pos: 65.5,54.5 parent: 2 type: Transform - - uid: 1313 + - uid: 1314 components: - rot: 1.5707963267948966 rad pos: 65.5,53.5 parent: 2 type: Transform - - uid: 1314 + - uid: 1315 components: - rot: 1.5707963267948966 rad pos: 65.5,52.5 parent: 2 type: Transform - - uid: 1315 + - uid: 1316 components: - rot: 1.5707963267948966 rad pos: 65.5,51.5 parent: 2 type: Transform - - uid: 1316 + - uid: 1317 components: - rot: 1.5707963267948966 rad pos: 64.5,54.5 parent: 2 type: Transform - - uid: 1317 + - uid: 1318 components: - rot: 1.5707963267948966 rad pos: 64.5,53.5 parent: 2 type: Transform - - uid: 1318 + - uid: 1319 components: - rot: 1.5707963267948966 rad pos: 63.5,55.5 parent: 2 type: Transform - - uid: 1319 + - uid: 1320 components: - rot: 1.5707963267948966 rad pos: 63.5,54.5 parent: 2 type: Transform - - uid: 1320 + - uid: 1321 components: - rot: 1.5707963267948966 rad pos: 63.5,53.5 parent: 2 type: Transform - - uid: 1321 + - uid: 1322 components: - rot: 1.5707963267948966 rad pos: 64.5,53.5 parent: 2 type: Transform - - uid: 1322 + - uid: 1323 components: - rot: 1.5707963267948966 rad pos: 64.5,52.5 parent: 2 type: Transform - - uid: 1323 + - uid: 1324 components: - rot: 1.5707963267948966 rad pos: 66.5,52.5 parent: 2 type: Transform - - uid: 1324 + - uid: 1325 components: - rot: 1.5707963267948966 rad pos: 66.5,51.5 parent: 2 type: Transform - - uid: 1325 + - uid: 1326 components: - rot: 1.5707963267948966 rad pos: 66.5,49.5 parent: 2 type: Transform - - uid: 1326 + - uid: 1327 components: - rot: 1.5707963267948966 rad pos: 66.5,48.5 parent: 2 type: Transform - - uid: 1327 + - uid: 1328 components: - rot: 1.5707963267948966 rad pos: 66.5,47.5 parent: 2 type: Transform - - uid: 1328 + - uid: 1329 components: - rot: 1.5707963267948966 rad pos: 66.5,45.5 parent: 2 type: Transform - - uid: 1329 + - uid: 1330 components: - rot: 1.5707963267948966 rad pos: 66.5,44.5 parent: 2 type: Transform - - uid: 1330 + - uid: 1331 components: - rot: 1.5707963267948966 rad pos: 67.5,52.5 parent: 2 type: Transform - - uid: 1331 + - uid: 1332 components: - rot: 1.5707963267948966 rad pos: 67.5,51.5 parent: 2 type: Transform - - uid: 1332 + - uid: 1333 components: - rot: 1.5707963267948966 rad pos: 67.5,49.5 parent: 2 type: Transform - - uid: 1333 + - uid: 1334 components: - rot: 1.5707963267948966 rad pos: 67.5,48.5 parent: 2 type: Transform - - uid: 1334 + - uid: 1335 components: - rot: 1.5707963267948966 rad pos: 67.5,47.5 parent: 2 type: Transform - - uid: 1335 + - uid: 1336 components: - rot: 1.5707963267948966 rad pos: 67.5,45.5 parent: 2 type: Transform - - uid: 1336 + - uid: 1337 components: - rot: 1.5707963267948966 rad pos: 67.5,44.5 parent: 2 type: Transform - - uid: 1337 + - uid: 1338 components: - rot: 1.5707963267948966 rad pos: 63.5,42.5 parent: 2 type: Transform - - uid: 1338 + - uid: 1339 components: - rot: 1.5707963267948966 rad pos: 64.5,42.5 parent: 2 type: Transform - - uid: 1339 + - uid: 1340 components: - rot: 1.5707963267948966 rad pos: 65.5,42.5 parent: 2 type: Transform - - uid: 1340 + - uid: 1341 components: - rot: 1.5707963267948966 rad pos: 66.5,42.5 parent: 2 type: Transform - - uid: 1341 + - uid: 1342 components: - rot: 1.5707963267948966 rad pos: 67.5,42.5 parent: 2 type: Transform - - uid: 1342 + - uid: 1343 components: - rot: 1.5707963267948966 rad pos: 67.5,43.5 parent: 2 type: Transform - - uid: 1343 + - uid: 1344 components: - rot: 1.5707963267948966 rad pos: 66.5,43.5 parent: 2 type: Transform - - uid: 1344 + - uid: 1345 components: - rot: 1.5707963267948966 rad pos: 68.5,51.5 parent: 2 type: Transform - - uid: 1345 + - uid: 1346 components: - rot: 1.5707963267948966 rad pos: 68.5,45.5 parent: 2 type: Transform - - uid: 1346 + - uid: 1347 components: - rot: 1.5707963267948966 rad pos: 68.5,44.5 parent: 2 type: Transform - - uid: 1347 + - uid: 1348 components: - rot: 1.5707963267948966 rad pos: 69.5,51.5 parent: 2 type: Transform - - uid: 1348 + - uid: 1349 components: - rot: 1.5707963267948966 rad pos: 69.5,50.5 parent: 2 type: Transform - - uid: 1349 + - uid: 1350 components: - rot: 1.5707963267948966 rad pos: 69.5,49.5 parent: 2 type: Transform - - uid: 1350 + - uid: 1351 components: - rot: 1.5707963267948966 rad pos: 69.5,48.5 parent: 2 type: Transform - - uid: 1351 + - uid: 1352 components: - rot: 1.5707963267948966 rad pos: 69.5,47.5 parent: 2 type: Transform - - uid: 1352 + - uid: 1353 components: - rot: 1.5707963267948966 rad pos: 69.5,46.5 parent: 2 type: Transform - - uid: 1353 + - uid: 1354 components: - rot: 1.5707963267948966 rad pos: 69.5,45.5 parent: 2 type: Transform - - uid: 1354 + - uid: 1355 components: - rot: 1.5707963267948966 rad pos: 69.5,44.5 parent: 2 type: Transform - - uid: 1355 + - uid: 1356 components: - rot: 1.5707963267948966 rad pos: 70.5,51.5 parent: 2 type: Transform - - uid: 1356 + - uid: 1357 components: - rot: 1.5707963267948966 rad pos: 70.5,50.5 parent: 2 type: Transform - - uid: 1357 + - uid: 1358 components: - rot: 1.5707963267948966 rad pos: 70.5,49.5 parent: 2 type: Transform - - uid: 1358 + - uid: 1359 components: - rot: 1.5707963267948966 rad pos: 70.5,48.5 parent: 2 type: Transform - - uid: 1359 + - uid: 1360 components: - rot: 1.5707963267948966 rad pos: 70.5,47.5 parent: 2 type: Transform - - uid: 1360 + - uid: 1361 components: - rot: 1.5707963267948966 rad pos: 70.5,46.5 parent: 2 type: Transform - - uid: 1361 + - uid: 1362 components: - rot: 1.5707963267948966 rad pos: 70.5,45.5 parent: 2 type: Transform - - uid: 1362 + - uid: 1363 components: - rot: 1.5707963267948966 rad pos: 70.5,44.5 parent: 2 type: Transform - - uid: 1363 + - uid: 1364 components: - rot: 1.5707963267948966 rad pos: 67.5,53.5 parent: 2 type: Transform - - uid: 1364 + - uid: 1365 components: - rot: 1.5707963267948966 rad pos: 66.5,53.5 parent: 2 type: Transform - - uid: 1365 + - uid: 1366 components: - rot: 3.141592653589793 rad pos: 3.5,53.5 parent: 2 type: Transform - - uid: 1366 + - uid: 1367 components: - rot: 3.141592653589793 rad pos: 4.5,53.5 parent: 2 type: Transform - - uid: 1367 + - uid: 1368 components: - rot: 3.141592653589793 rad pos: 4.5,54.5 parent: 2 type: Transform - - uid: 1368 + - uid: 1369 components: - rot: 3.141592653589793 rad pos: 4.5,55.5 parent: 2 type: Transform - - uid: 1369 + - uid: 1370 components: - rot: 3.141592653589793 rad pos: 5.5,55.5 parent: 2 type: Transform - - uid: 1370 + - uid: 1371 components: - rot: 3.141592653589793 rad pos: 5.5,56.5 parent: 2 type: Transform - - uid: 1371 + - uid: 1372 components: - rot: 3.141592653589793 rad pos: 6.5,56.5 parent: 2 type: Transform - - uid: 1372 + - uid: 1373 components: - rot: 3.141592653589793 rad pos: 7.5,56.5 parent: 2 type: Transform - - uid: 1373 + - uid: 1374 components: - rot: 3.141592653589793 rad pos: 7.5,57.5 parent: 2 type: Transform - - uid: 1374 + - uid: 1375 components: - rot: 3.141592653589793 rad pos: 8.5,57.5 parent: 2 type: Transform - - uid: 1375 + - uid: 1376 components: - rot: 3.141592653589793 rad pos: 9.5,57.5 parent: 2 type: Transform - - uid: 1376 + - uid: 1377 components: - rot: 3.141592653589793 rad pos: 9.5,58.5 parent: 2 type: Transform - - uid: 1377 + - uid: 1378 components: - rot: 3.141592653589793 rad pos: 10.5,58.5 parent: 2 type: Transform - - uid: 1378 + - uid: 1379 components: - rot: 3.141592653589793 rad pos: 11.5,58.5 parent: 2 type: Transform - - uid: 1379 + - uid: 1380 components: - rot: 3.141592653589793 rad pos: 12.5,58.5 parent: 2 type: Transform - - uid: 1380 + - uid: 1381 components: - rot: 3.141592653589793 rad pos: 13.5,59.5 parent: 2 type: Transform - - uid: 1381 + - uid: 1382 components: - rot: 3.141592653589793 rad pos: 13.5,58.5 parent: 2 type: Transform - - uid: 1382 + - uid: 1383 components: - rot: 3.141592653589793 rad pos: 3.5,52.5 parent: 2 type: Transform - - uid: 1383 + - uid: 1384 components: - rot: 3.141592653589793 rad pos: 4.5,52.5 parent: 2 type: Transform - - uid: 1384 + - uid: 1385 components: - rot: 3.141592653589793 rad pos: 5.5,51.5 parent: 2 type: Transform - - uid: 1385 + - uid: 1386 components: - rot: 3.141592653589793 rad pos: 5.5,52.5 parent: 2 type: Transform - - uid: 1386 + - uid: 1387 components: - rot: 3.141592653589793 rad pos: 6.5,51.5 parent: 2 type: Transform - - uid: 1387 + - uid: 1388 components: - rot: 3.141592653589793 rad pos: 7.5,51.5 parent: 2 type: Transform - - uid: 1388 + - uid: 1389 components: - rot: 3.141592653589793 rad pos: 8.5,50.5 parent: 2 type: Transform - - uid: 1389 + - uid: 1390 components: - rot: 3.141592653589793 rad pos: 8.5,51.5 parent: 2 type: Transform - - uid: 1390 + - uid: 1391 components: - rot: 3.141592653589793 rad pos: 9.5,50.5 parent: 2 type: Transform - - uid: 1391 + - uid: 1392 components: - rot: 3.141592653589793 rad pos: 9.5,46.5 parent: 2 type: Transform - - uid: 1392 + - uid: 1393 components: - rot: 3.141592653589793 rad pos: 8.5,45.5 parent: 2 type: Transform - - uid: 1393 + - uid: 1394 components: - rot: 3.141592653589793 rad pos: 7.5,45.5 parent: 2 type: Transform - - uid: 1394 + - uid: 1395 components: - rot: 3.141592653589793 rad pos: 9.5,45.5 parent: 2 type: Transform - - uid: 1395 + - uid: 1396 components: - rot: 3.141592653589793 rad pos: 7.5,44.5 parent: 2 type: Transform - - uid: 1396 + - uid: 1397 components: - rot: 3.141592653589793 rad pos: 6.5,44.5 parent: 2 type: Transform - - uid: 1397 + - uid: 1398 components: - rot: 3.141592653589793 rad pos: 5.5,44.5 parent: 2 type: Transform - - uid: 1398 + - uid: 1399 components: - rot: 3.141592653589793 rad pos: 4.5,44.5 parent: 2 type: Transform - - uid: 1399 + - uid: 1400 components: - rot: 3.141592653589793 rad pos: 4.5,45.5 parent: 2 type: Transform - - uid: 1400 + - uid: 1401 components: - rot: 3.141592653589793 rad pos: 3.5,46.5 parent: 2 type: Transform - - uid: 1401 + - uid: 1402 components: - rot: 3.141592653589793 rad pos: 4.5,46.5 parent: 2 type: Transform - - uid: 1402 + - uid: 1403 components: - pos: 10.5,51.5 parent: 2 type: Transform - - uid: 1403 + - uid: 1404 components: - pos: 9.5,51.5 parent: 2 type: Transform - - uid: 1404 + - uid: 1405 components: - pos: 8.5,52.5 parent: 2 type: Transform - - uid: 1405 + - uid: 1406 components: - pos: 7.5,52.5 parent: 2 type: Transform - - uid: 1406 + - uid: 1407 components: - pos: 6.5,52.5 parent: 2 type: Transform - - uid: 1407 + - uid: 1408 components: - pos: 5.5,54.5 parent: 2 type: Transform - - uid: 1408 + - uid: 1409 components: - pos: 4.5,53.5 parent: 2 type: Transform - - uid: 1409 + - uid: 1410 components: - pos: 5.5,53.5 parent: 2 type: Transform - - uid: 1410 + - uid: 1411 components: - pos: 6.5,55.5 parent: 2 type: Transform - - uid: 1411 + - uid: 1412 components: - pos: 8.5,56.5 parent: 2 type: Transform - - uid: 1412 + - uid: 1413 components: - pos: 9.5,56.5 parent: 2 type: Transform - - uid: 1413 + - uid: 1414 components: - pos: 10.5,57.5 parent: 2 type: Transform - - uid: 1414 + - uid: 1415 components: - pos: 10.5,56.5 parent: 2 type: Transform - - uid: 1415 + - uid: 1416 components: - pos: 11.5,57.5 parent: 2 type: Transform - - uid: 1416 + - uid: 1417 components: - pos: 12.5,57.5 parent: 2 type: Transform - - uid: 1417 + - uid: 1418 components: - pos: 13.5,57.5 parent: 2 type: Transform - - uid: 1418 + - uid: 1419 components: - pos: 14.5,59.5 parent: 2 type: Transform - - uid: 1419 + - uid: 1420 components: - pos: 15.5,59.5 parent: 2 type: Transform - - uid: 1420 + - uid: 1421 components: - pos: 17.5,59.5 parent: 2 type: Transform - - uid: 1421 + - uid: 1422 components: - pos: 16.5,59.5 parent: 2 type: Transform - - uid: 1422 + - uid: 1423 components: - pos: 18.5,59.5 parent: 2 type: Transform - - uid: 1423 + - uid: 1424 components: - pos: 11.5,46.5 parent: 2 type: Transform - - uid: 1424 + - uid: 1425 components: - pos: 12.5,46.5 parent: 2 type: Transform - - uid: 1425 + - uid: 1426 components: - pos: 13.5,45.5 parent: 2 type: Transform - - uid: 1426 + - uid: 1427 components: - pos: 13.5,46.5 parent: 2 type: Transform - - uid: 1427 + - uid: 1428 components: - pos: 14.5,45.5 parent: 2 type: Transform - - uid: 1428 + - uid: 1429 components: - pos: 14.5,44.5 parent: 2 type: Transform - - uid: 1429 + - uid: 1430 components: - pos: 15.5,44.5 parent: 2 type: Transform - - uid: 1430 + - uid: 1431 components: - pos: 5.5,43.5 parent: 2 type: Transform - - uid: 1431 + - uid: 1432 components: - pos: 6.5,43.5 parent: 2 type: Transform - - uid: 1432 + - uid: 1433 components: - pos: 6.5,42.5 parent: 2 type: Transform - - uid: 1433 + - uid: 1434 components: - pos: 7.5,41.5 parent: 2 type: Transform - - uid: 1434 + - uid: 1435 components: - pos: 9.5,41.5 parent: 2 type: Transform - - uid: 1435 + - uid: 1436 components: - pos: 11.5,41.5 parent: 2 type: Transform - - uid: 1436 + - uid: 1437 components: - pos: 10.5,41.5 parent: 2 type: Transform - - uid: 1437 + - uid: 1438 components: - pos: 12.5,42.5 parent: 2 type: Transform - - uid: 1438 + - uid: 1439 components: - pos: 11.5,42.5 parent: 2 type: Transform - - uid: 1439 + - uid: 1440 components: - pos: 7.5,42.5 parent: 2 type: Transform - - uid: 1440 + - uid: 1441 components: - pos: 18.5,58.5 parent: 2 type: Transform - - uid: 1441 + - uid: 1442 components: - pos: 19.5,58.5 parent: 2 type: Transform - - uid: 1442 + - uid: 1443 components: - pos: 20.5,58.5 parent: 2 type: Transform - - uid: 1443 + - uid: 1444 components: - pos: 21.5,58.5 parent: 2 type: Transform - - uid: 1444 + - uid: 1445 components: - pos: 22.5,58.5 parent: 2 type: Transform - - uid: 1445 + - uid: 1446 components: - pos: 22.5,57.5 parent: 2 type: Transform - - uid: 1446 + - uid: 1447 components: - pos: 23.5,57.5 parent: 2 type: Transform - - uid: 1447 + - uid: 1448 components: - pos: 24.5,57.5 parent: 2 type: Transform - - uid: 1448 + - uid: 1449 components: - pos: 24.5,56.5 parent: 2 type: Transform - - uid: 1449 + - uid: 1450 components: - pos: 24.5,55.5 parent: 2 type: Transform - - uid: 1450 + - uid: 1451 components: - pos: 25.5,55.5 parent: 2 type: Transform - - uid: 1451 + - uid: 1452 components: - pos: 25.5,54.5 parent: 2 type: Transform - - uid: 1452 + - uid: 1453 components: - pos: 25.5,53.5 parent: 2 type: Transform - - uid: 1453 + - uid: 1454 components: - rot: -1.5707963267948966 rad pos: 19.5,43.5 parent: 2 type: Transform - - uid: 1454 + - uid: 1455 components: - rot: -1.5707963267948966 rad pos: 20.5,43.5 parent: 2 type: Transform - - uid: 1455 + - uid: 1456 components: - rot: -1.5707963267948966 rad pos: 21.5,48.5 parent: 2 type: Transform - - uid: 1456 + - uid: 1457 components: - pos: 13.5,42.5 parent: 2 type: Transform - - uid: 1457 + - uid: 1458 components: - pos: 14.5,42.5 parent: 2 type: Transform - - uid: 1458 + - uid: 1459 components: - pos: 15.5,44.5 parent: 2 type: Transform - - uid: 1459 + - uid: 1460 components: - pos: 14.5,43.5 parent: 2 type: Transform - - uid: 1460 + - uid: 1461 components: - pos: 15.5,42.5 parent: 2 type: Transform - - uid: 1461 + - uid: 1462 components: - pos: 15.5,43.5 parent: 2 type: Transform - - uid: 1462 + - uid: 1463 components: - pos: 11.5,51.5 parent: 2 type: Transform - - uid: 1463 + - uid: 1464 components: - pos: 12.5,51.5 parent: 2 type: Transform - - uid: 1464 + - uid: 1465 components: - pos: 13.5,51.5 parent: 2 type: Transform - - uid: 1465 + - uid: 1466 components: - pos: 14.5,51.5 parent: 2 type: Transform - - uid: 1466 + - uid: 1467 components: - pos: 15.5,50.5 parent: 2 type: Transform - - uid: 1467 + - uid: 1468 components: - pos: 16.5,50.5 parent: 2 type: Transform - - uid: 1468 + - uid: 1469 components: - pos: 16.5,49.5 parent: 2 type: Transform - - uid: 1469 + - uid: 1470 components: - pos: 16.5,48.5 parent: 2 type: Transform - - uid: 1470 + - uid: 1471 components: - pos: 15.5,47.5 parent: 2 type: Transform - - uid: 1471 + - uid: 1472 components: - pos: 16.5,47.5 parent: 2 type: Transform - - uid: 1472 + - uid: 1473 components: - pos: 15.5,51.5 parent: 2 type: Transform - - uid: 1473 + - uid: 1474 components: - pos: 17.5,48.5 parent: 2 type: Transform - - uid: 1474 + - uid: 1475 components: - pos: 18.5,48.5 parent: 2 type: Transform - - uid: 1475 + - uid: 1476 components: - pos: 19.5,48.5 parent: 2 type: Transform - - uid: 1476 + - uid: 1477 components: - pos: 18.5,49.5 parent: 2 type: Transform - - uid: 1477 + - uid: 1478 components: - pos: 17.5,49.5 parent: 2 type: Transform - - uid: 1478 + - uid: 1479 components: - pos: 17.5,50.5 parent: 2 type: Transform - - uid: 1479 + - uid: 1480 components: - pos: 16.5,51.5 parent: 2 type: Transform - - uid: 1480 + - uid: 1481 components: - pos: 12.5,56.5 parent: 2 type: Transform - - uid: 1481 + - uid: 1482 components: - pos: 13.5,56.5 parent: 2 type: Transform - - uid: 1482 + - uid: 1483 components: - pos: 13.5,55.5 parent: 2 type: Transform - - uid: 1483 + - uid: 1484 components: - pos: 14.5,55.5 parent: 2 type: Transform - - uid: 1484 + - uid: 1485 components: - pos: 14.5,54.5 parent: 2 type: Transform - - uid: 1485 + - uid: 1486 components: - pos: 13.5,52.5 parent: 2 type: Transform - - uid: 1486 + - uid: 1487 components: - pos: 17.5,51.5 parent: 2 type: Transform - - uid: 1487 + - uid: 1488 components: - pos: 17.5,52.5 parent: 2 type: Transform - - uid: 1488 + - uid: 1489 components: - pos: 18.5,51.5 parent: 2 type: Transform - - uid: 1489 + - uid: 1490 components: - pos: 18.5,52.5 parent: 2 type: Transform - - uid: 1490 + - uid: 1491 components: - pos: 18.5,53.5 parent: 2 type: Transform - - uid: 1491 + - uid: 1492 components: - pos: 19.5,53.5 parent: 2 type: Transform - - uid: 1492 + - uid: 1493 components: - pos: 20.5,54.5 parent: 2 type: Transform - - uid: 1493 + - uid: 1494 components: - pos: 20.5,53.5 parent: 2 type: Transform - - uid: 1494 + - uid: 1495 components: - pos: 21.5,54.5 parent: 2 type: Transform - - uid: 1495 + - uid: 1496 components: - pos: 17.5,45.5 parent: 2 type: Transform - - uid: 1496 + - uid: 1497 components: - pos: 23.5,50.5 parent: 2 type: Transform - - uid: 1497 + - uid: 1498 components: - pos: 22.5,50.5 parent: 2 type: Transform - - uid: 1498 + - uid: 1499 components: - pos: 22.5,49.5 parent: 2 type: Transform - - uid: 1499 + - uid: 1500 components: - pos: 21.5,49.5 parent: 2 type: Transform - - uid: 1500 + - uid: 1501 components: - pos: 21.5,50.5 parent: 2 type: Transform - - uid: 1501 + - uid: 1502 components: - pos: 23.5,51.5 parent: 2 type: Transform - - uid: 1502 + - uid: 1503 components: - pos: 23.5,52.5 parent: 2 type: Transform - - uid: 1503 + - uid: 1504 components: - pos: 23.5,53.5 parent: 2 type: Transform - - uid: 1504 + - uid: 1505 components: - pos: 18.5,57.5 parent: 2 type: Transform - - uid: 1505 + - uid: 1506 components: - pos: 18.5,56.5 parent: 2 type: Transform - - uid: 1506 + - uid: 1507 components: - pos: 18.5,55.5 parent: 2 type: Transform - - uid: 1507 + - uid: 1508 components: - pos: 60.5,54.5 parent: 2 type: Transform - - uid: 1508 + - uid: 1509 components: - pos: 68.5,43.5 parent: 2 type: Transform - - uid: 1509 + - uid: 1510 components: - rot: -1.5707963267948966 rad pos: 18.5,42.5 parent: 2 type: Transform - - uid: 1510 + - uid: 1511 components: - rot: -1.5707963267948966 rad pos: 22.5,48.5 parent: 2 type: Transform - - uid: 1511 + - uid: 1512 components: - rot: -1.5707963267948966 rad pos: 19.5,42.5 parent: 2 type: Transform - - uid: 1512 + - uid: 1513 components: - rot: -1.5707963267948966 rad pos: 20.5,47.5 parent: 2 type: Transform - - uid: 1513 + - uid: 1514 components: - rot: -1.5707963267948966 rad pos: 21.5,47.5 parent: 2 type: Transform - - uid: 1514 + - uid: 1515 components: - rot: -1.5707963267948966 rad pos: 17.5,42.5 parent: 2 type: Transform - - uid: 1515 + - uid: 1516 components: - pos: 7.5,43.5 parent: 2 type: Transform - - uid: 1516 + - uid: 1517 components: - pos: 8.5,44.5 parent: 2 type: Transform - - uid: 1517 + - uid: 1518 components: - pos: 9.5,44.5 parent: 2 type: Transform - - uid: 1518 + - uid: 1519 components: - pos: 11.5,44.5 parent: 2 type: Transform - - uid: 1519 + - uid: 1520 components: - pos: 10.5,44.5 parent: 2 type: Transform - - uid: 1520 + - uid: 1521 components: - pos: 8.5,43.5 parent: 2 type: Transform - - uid: 1521 + - uid: 1522 components: - pos: 19.5,57.5 parent: 2 type: Transform - - uid: 1522 + - uid: 1523 components: - pos: 19.5,56.5 parent: 2 type: Transform - - uid: 1523 + - uid: 1524 components: - pos: 20.5,57.5 parent: 2 type: Transform - - uid: 1524 + - uid: 1525 components: - pos: 17.5,58.5 parent: 2 type: Transform - - uid: 1525 + - uid: 1526 components: - pos: 17.5,57.5 parent: 2 type: Transform - - uid: 1526 + - uid: 1527 components: - pos: 16.5,58.5 parent: 2 type: Transform - - uid: 1527 + - uid: 1528 components: - pos: 20.5,44.5 parent: 2 type: Transform - - uid: 1528 + - uid: 1529 components: - pos: 3.5,45.5 parent: 2 type: Transform - - uid: 1529 + - uid: 1530 components: - pos: 3.5,44.5 parent: 2 type: Transform - - uid: 1530 + - uid: 1531 components: - pos: 3.5,43.5 parent: 2 type: Transform - - uid: 1531 + - uid: 1532 components: - pos: 3.5,42.5 parent: 2 type: Transform - - uid: 1532 + - uid: 1533 components: - pos: 4.5,43.5 parent: 2 type: Transform - - uid: 1533 + - uid: 1534 components: - pos: 4.5,42.5 parent: 2 type: Transform - - uid: 1534 + - uid: 1535 components: - pos: 5.5,42.5 parent: 2 type: Transform - - uid: 1535 + - uid: 1536 components: - pos: 14.5,53.5 parent: 2 type: Transform - - uid: 1536 + - uid: 1537 components: - pos: 15.5,55.5 parent: 2 type: Transform - - uid: 1537 + - uid: 1538 components: - pos: 15.5,54.5 parent: 2 type: Transform - - uid: 1538 + - uid: 1539 components: - pos: 15.5,53.5 parent: 2 type: Transform - - uid: 1539 + - uid: 1540 components: - pos: 16.5,55.5 parent: 2 type: Transform - - uid: 1540 + - uid: 1541 components: - pos: 16.5,54.5 parent: 2 type: Transform - - uid: 1541 + - uid: 1542 components: - pos: 16.5,53.5 parent: 2 type: Transform - - uid: 1542 + - uid: 1543 components: - pos: 17.5,55.5 parent: 2 type: Transform - - uid: 1543 + - uid: 1544 components: - pos: 17.5,54.5 parent: 2 type: Transform - - uid: 1544 + - uid: 1545 components: - pos: 17.5,53.5 parent: 2 type: Transform - - uid: 1545 + - uid: 1546 components: - pos: 14.5,52.5 parent: 2 type: Transform - - uid: 1546 + - uid: 1547 components: - pos: 16.5,52.5 parent: 2 type: Transform - - uid: 1547 + - uid: 1548 components: - pos: 15.5,52.5 parent: 2 type: Transform - - uid: 1548 + - uid: 1549 components: - pos: 19.5,47.5 parent: 2 type: Transform - - uid: 1549 + - uid: 1550 components: - pos: 21.5,51.5 parent: 2 type: Transform - - uid: 1550 + - uid: 1551 components: - pos: 21.5,52.5 parent: 2 type: Transform - - uid: 1551 + - uid: 1552 components: - pos: 20.5,51.5 parent: 2 type: Transform - - uid: 1552 + - uid: 1553 components: - pos: 20.5,52.5 parent: 2 type: Transform - - uid: 1553 + - uid: 1554 components: - pos: 19.5,51.5 parent: 2 type: Transform - - uid: 1554 + - uid: 1555 components: - pos: 19.5,52.5 parent: 2 type: Transform - - uid: 1555 + - uid: 1556 components: - pos: 19.5,50.5 parent: 2 type: Transform - - uid: 1556 + - uid: 1557 components: - pos: 20.5,50.5 parent: 2 type: Transform - - uid: 1557 + - uid: 1558 components: - pos: 24.5,53.5 parent: 2 type: Transform - - uid: 1558 + - uid: 1559 components: - pos: 24.5,52.5 parent: 2 type: Transform - - uid: 1559 + - uid: 1560 components: - pos: 24.5,51.5 parent: 2 type: Transform - - uid: 1560 + - uid: 1561 components: - pos: 22.5,53.5 parent: 2 type: Transform - - uid: 1561 + - uid: 1562 components: - pos: 22.5,52.5 parent: 2 type: Transform - - uid: 1562 + - uid: 1563 components: - pos: 22.5,54.5 parent: 2 type: Transform - - uid: 1563 + - uid: 1564 components: - pos: 21.5,55.5 parent: 2 type: Transform - - uid: 1564 + - uid: 1565 components: - rot: 1.5707963267948966 rad pos: 14.5,50.5 parent: 2 type: Transform - - uid: 1565 + - uid: 1566 components: - pos: 16.5,46.5 parent: 2 type: Transform - - uid: 1566 + - uid: 1567 components: - pos: 18.5,44.5 parent: 2 type: Transform - - uid: 1567 + - uid: 1568 components: - pos: 18.5,43.5 parent: 2 type: Transform - - uid: 1568 + - uid: 1569 components: - pos: 18.5,45.5 parent: 2 type: Transform - - uid: 1569 + - uid: 1570 components: - pos: 17.5,46.5 parent: 2 type: Transform - - uid: 1570 + - uid: 1571 components: - rot: 1.5707963267948966 rad pos: 15.5,48.5 parent: 2 type: Transform - - uid: 1571 + - uid: 1572 components: - rot: 1.5707963267948966 rad pos: 17.5,44.5 parent: 2 type: Transform - - uid: 1572 + - uid: 1573 components: - pos: 69.5,-73.5 parent: 2 type: Transform - - uid: 1573 + - uid: 1574 components: - pos: 69.5,-70.5 parent: 2 type: Transform - - uid: 1574 + - uid: 1575 components: - pos: 70.5,-70.5 parent: 2 type: Transform - - uid: 1575 + - uid: 1576 components: - pos: 70.5,-69.5 parent: 2 type: Transform - - uid: 1576 + - uid: 1577 components: - pos: 70.5,-68.5 parent: 2 type: Transform - - uid: 1577 + - uid: 1578 components: - pos: 71.5,-68.5 parent: 2 type: Transform - - uid: 1578 + - uid: 1579 components: - pos: 72.5,-65.5 parent: 2 type: Transform - - uid: 1579 + - uid: 1580 components: - pos: 72.5,-66.5 parent: 2 type: Transform - - uid: 1580 + - uid: 1581 components: - pos: 77.5,-56.5 parent: 2 type: Transform - - uid: 1581 + - uid: 1582 components: - pos: 77.5,-55.5 parent: 2 type: Transform - - uid: 1582 + - uid: 1583 components: - pos: 77.5,-54.5 parent: 2 type: Transform - - uid: 1583 + - uid: 1584 components: - pos: 77.5,-53.5 parent: 2 type: Transform - - uid: 1584 + - uid: 1585 components: - pos: 77.5,-52.5 parent: 2 type: Transform - - uid: 1585 + - uid: 1586 components: - pos: 77.5,-51.5 parent: 2 type: Transform - - uid: 1586 + - uid: 1587 components: - pos: 78.5,-51.5 parent: 2 type: Transform - - uid: 1587 + - uid: 1588 components: - pos: 80.5,-51.5 parent: 2 type: Transform - - uid: 1588 + - uid: 1589 components: - pos: 80.5,-52.5 parent: 2 type: Transform - - uid: 1589 + - uid: 1590 components: - pos: 80.5,-53.5 parent: 2 type: Transform - - uid: 1590 + - uid: 1591 components: - pos: 80.5,-54.5 parent: 2 type: Transform - - uid: 1591 + - uid: 1592 components: - pos: 80.5,-55.5 parent: 2 type: Transform - - uid: 1592 + - uid: 1593 components: - pos: 80.5,-56.5 parent: 2 type: Transform - - uid: 1593 + - uid: 1594 components: - pos: 80.5,-57.5 parent: 2 type: Transform - - uid: 1594 + - uid: 1595 components: - pos: 81.5,-58.5 parent: 2 type: Transform - - uid: 1595 + - uid: 1596 components: - pos: 81.5,-59.5 parent: 2 type: Transform - - uid: 1596 + - uid: 1597 components: - pos: 80.5,-60.5 parent: 2 type: Transform - - uid: 1597 + - uid: 1598 components: - pos: 80.5,-61.5 parent: 2 type: Transform - - uid: 1598 + - uid: 1599 components: - pos: 80.5,-62.5 parent: 2 type: Transform - - uid: 1599 + - uid: 1600 components: - pos: 81.5,-60.5 parent: 2 type: Transform - - uid: 1600 + - uid: 1601 components: - pos: 81.5,-61.5 parent: 2 type: Transform - - uid: 1601 + - uid: 1602 components: - pos: 81.5,-62.5 parent: 2 type: Transform - - uid: 1602 + - uid: 1603 components: - pos: 81.5,-63.5 parent: 2 type: Transform - - uid: 1603 + - uid: 1604 components: - pos: 80.5,-63.5 parent: 2 type: Transform - - uid: 1604 + - uid: 1605 components: - pos: 80.5,-64.5 parent: 2 type: Transform - - uid: 1605 + - uid: 1606 components: - pos: 81.5,-55.5 parent: 2 type: Transform - - uid: 1606 + - uid: 1607 components: - pos: 81.5,-56.5 parent: 2 type: Transform - - uid: 1607 + - uid: 1608 components: - pos: 81.5,-57.5 parent: 2 type: Transform - - uid: 1608 + - uid: 1609 components: - pos: 78.5,-53.5 parent: 2 type: Transform - - uid: 1609 + - uid: 1610 components: - pos: 78.5,-54.5 parent: 2 type: Transform - - uid: 1610 + - uid: 1611 components: - pos: 74.5,-61.5 parent: 2 type: Transform - - uid: 1611 + - uid: 1612 components: - pos: 75.5,-61.5 parent: 2 type: Transform - - uid: 1612 + - uid: 1613 components: - pos: 76.5,-61.5 parent: 2 type: Transform - - uid: 1613 + - uid: 1614 components: - pos: 77.5,-61.5 parent: 2 type: Transform - - uid: 1614 + - uid: 1615 components: - pos: 77.5,-59.5 parent: 2 type: Transform - - uid: 1615 + - uid: 1616 components: - pos: 77.5,-60.5 parent: 2 type: Transform - - uid: 1616 + - uid: 1617 components: - pos: 76.5,-60.5 parent: 2 type: Transform - - uid: 1617 + - uid: 1618 components: - pos: 76.5,-59.5 parent: 2 type: Transform - - uid: 1618 + - uid: 1619 components: - pos: 75.5,-60.5 parent: 2 type: Transform - - uid: 1619 + - uid: 1620 components: - pos: 74.5,-60.5 parent: 2 type: Transform - - uid: 1620 + - uid: 1621 components: - pos: 74.5,-59.5 parent: 2 type: Transform - - uid: 1621 + - uid: 1622 components: - pos: 75.5,-59.5 parent: 2 type: Transform - - uid: 1622 + - uid: 1623 components: - pos: 76.5,-58.5 parent: 2 type: Transform - - uid: 1623 + - uid: 1624 components: - pos: 77.5,-58.5 parent: 2 type: Transform - - uid: 1624 + - uid: 1625 components: - pos: 73.5,-61.5 parent: 2 type: Transform - - uid: 1625 + - uid: 1626 components: - pos: 73.5,-62.5 parent: 2 type: Transform - - uid: 1626 + - uid: 1627 components: - pos: 74.5,-62.5 parent: 2 type: Transform - - uid: 1627 + - uid: 1628 components: - pos: 76.5,-62.5 parent: 2 type: Transform - - uid: 1628 + - uid: 1629 components: - pos: 78.5,-60.5 parent: 2 type: Transform - - uid: 1629 + - uid: 1630 components: - pos: 78.5,-61.5 parent: 2 type: Transform - - uid: 1630 + - uid: 1631 components: - pos: 78.5,-62.5 parent: 2 type: Transform - - uid: 1631 + - uid: 1632 components: - pos: 77.5,-62.5 parent: 2 type: Transform - - uid: 1632 + - uid: 1633 components: - pos: 75.5,-64.5 parent: 2 type: Transform - - uid: 1633 + - uid: 1634 components: - pos: 75.5,-65.5 parent: 2 type: Transform - - uid: 1634 + - uid: 1635 components: - pos: 75.5,-66.5 parent: 2 type: Transform - - uid: 1635 + - uid: 1636 components: - pos: 76.5,-64.5 parent: 2 type: Transform - - uid: 1636 + - uid: 1637 components: - pos: 76.5,-65.5 parent: 2 type: Transform - - uid: 1637 + - uid: 1638 components: - pos: 76.5,-66.5 parent: 2 type: Transform - - uid: 1638 + - uid: 1639 components: - pos: 77.5,-64.5 parent: 2 type: Transform - - uid: 1639 + - uid: 1640 components: - pos: 77.5,-65.5 parent: 2 type: Transform - - uid: 1640 + - uid: 1641 components: - pos: 77.5,-66.5 parent: 2 type: Transform - - uid: 1641 + - uid: 1642 components: - pos: 78.5,-65.5 parent: 2 type: Transform - - uid: 1642 + - uid: 1643 components: - pos: 79.5,-65.5 parent: 2 type: Transform - - uid: 1643 + - uid: 1644 components: - pos: 78.5,-66.5 parent: 2 type: Transform - - uid: 1644 + - uid: 1645 components: - pos: 80.5,-65.5 parent: 2 type: Transform - - uid: 1645 + - uid: 1646 components: - pos: 79.5,-66.5 parent: 2 type: Transform - - uid: 1646 + - uid: 1647 components: - pos: 67.5,-70.5 parent: 2 type: Transform - - uid: 1647 + - uid: 1648 components: - pos: 66.5,-69.5 parent: 2 type: Transform - - uid: 1648 + - uid: 1649 components: - pos: 66.5,-68.5 parent: 2 type: Transform - - uid: 1649 + - uid: 1650 components: - pos: 65.5,-69.5 parent: 2 type: Transform - - uid: 1650 + - uid: 1651 components: - pos: 64.5,-70.5 parent: 2 type: Transform - - uid: 1651 + - uid: 1652 components: - pos: 66.5,-70.5 parent: 2 type: Transform - - uid: 1652 + - uid: 1653 components: - pos: 65.5,-70.5 parent: 2 type: Transform - - uid: 1653 + - uid: 1654 components: - pos: 65.5,-71.5 parent: 2 type: Transform - - uid: 1654 + - uid: 1655 components: - pos: 66.5,-72.5 parent: 2 type: Transform - - uid: 1655 + - uid: 1656 components: - pos: 67.5,-73.5 parent: 2 type: Transform - - uid: 1656 + - uid: 1657 components: - pos: 67.5,-72.5 parent: 2 type: Transform - - uid: 1657 + - uid: 1658 components: - pos: 70.5,-73.5 parent: 2 type: Transform - - uid: 1658 + - uid: 1659 components: - pos: 71.5,-73.5 parent: 2 type: Transform - - uid: 1659 + - uid: 1660 components: - pos: 72.5,-73.5 parent: 2 type: Transform - - uid: 1660 + - uid: 1661 components: - pos: 72.5,-72.5 parent: 2 type: Transform - - uid: 1661 + - uid: 1662 components: - pos: 70.5,-72.5 parent: 2 type: Transform - - uid: 1662 + - uid: 1663 components: - pos: 71.5,-72.5 parent: 2 type: Transform - - uid: 1663 + - uid: 1664 components: - pos: 73.5,-72.5 parent: 2 type: Transform - - uid: 1664 + - uid: 1665 components: - pos: 74.5,-72.5 parent: 2 type: Transform - - uid: 1665 + - uid: 1666 components: - pos: 75.5,-72.5 parent: 2 type: Transform - - uid: 1666 + - uid: 1667 components: - pos: 73.5,-70.5 parent: 2 type: Transform - - uid: 1667 + - uid: 1668 components: - pos: 73.5,-71.5 parent: 2 type: Transform - - uid: 1668 + - uid: 1669 components: - pos: 74.5,-70.5 parent: 2 type: Transform - - uid: 1669 + - uid: 1670 components: - pos: 74.5,-71.5 parent: 2 type: Transform - - uid: 1670 + - uid: 1671 components: - pos: 75.5,-70.5 parent: 2 type: Transform - - uid: 1671 + - uid: 1672 components: - pos: 75.5,-71.5 parent: 2 type: Transform - - uid: 1672 + - uid: 1673 components: - pos: 75.5,-67.5 parent: 2 type: Transform - - uid: 1673 + - uid: 1674 components: - pos: 76.5,-67.5 parent: 2 type: Transform - - uid: 1674 + - uid: 1675 components: - pos: 76.5,-68.5 parent: 2 type: Transform - - uid: 1675 + - uid: 1676 components: - pos: 76.5,-69.5 parent: 2 type: Transform - - uid: 1676 + - uid: 1677 components: - pos: 76.5,-70.5 parent: 2 type: Transform - - uid: 1677 + - uid: 1678 components: - pos: 76.5,-71.5 parent: 2 type: Transform - - uid: 1678 + - uid: 1679 components: - pos: 78.5,-67.5 parent: 2 type: Transform - - uid: 1679 + - uid: 1680 components: - pos: 78.5,-68.5 parent: 2 type: Transform - - uid: 1680 + - uid: 1681 components: - pos: 78.5,-69.5 parent: 2 type: Transform - - uid: 1681 + - uid: 1682 components: - pos: 77.5,-67.5 parent: 2 type: Transform - - uid: 1682 + - uid: 1683 components: - pos: 77.5,-68.5 parent: 2 type: Transform - - uid: 1683 + - uid: 1684 components: - pos: 77.5,-69.5 parent: 2 type: Transform - - uid: 1684 + - uid: 1685 components: - pos: 77.5,-70.5 parent: 2 type: Transform - - uid: 1685 + - uid: 1686 components: - pos: 79.5,-67.5 parent: 2 type: Transform - - uid: 1686 + - uid: 1687 components: - pos: 79.5,-68.5 parent: 2 type: Transform - - uid: 1687 + - uid: 1688 components: - pos: 80.5,-67.5 parent: 2 type: Transform - - uid: 1688 + - uid: 1689 components: - pos: 80.5,-66.5 parent: 2 type: Transform - - uid: 1689 + - uid: 1690 components: - pos: 78.5,-49.5 parent: 2 type: Transform - - uid: 1690 + - uid: 1691 components: - pos: 78.5,-50.5 parent: 2 type: Transform - - uid: 1691 + - uid: 1692 components: - pos: 66.5,-71.5 parent: 2 type: Transform - - uid: 1692 + - uid: 1693 components: - pos: 3.5,55.5 parent: 2 type: Transform - - uid: 1693 + - uid: 1694 components: - pos: 3.5,54.5 parent: 2 type: Transform - - uid: 1694 + - uid: 1695 components: - pos: 65.5,43.5 parent: 2 type: Transform - - uid: 1695 + - uid: 1696 components: - rot: -1.5707963267948966 rad pos: 3.5,-90.5 parent: 2 type: Transform - - uid: 1696 + - uid: 1697 components: - rot: -1.5707963267948966 rad pos: 3.5,-91.5 parent: 2 type: Transform - - uid: 1697 + - uid: 1698 components: - rot: -1.5707963267948966 rad pos: 4.5,-90.5 parent: 2 type: Transform - - uid: 1698 + - uid: 1699 components: - rot: -1.5707963267948966 rad pos: 4.5,-91.5 parent: 2 type: Transform - - uid: 1699 + - uid: 1700 components: - rot: -1.5707963267948966 rad pos: 5.5,-90.5 parent: 2 type: Transform - - uid: 1700 + - uid: 1701 components: - rot: -1.5707963267948966 rad pos: 5.5,-91.5 parent: 2 type: Transform - - uid: 1701 + - uid: 1702 components: - rot: -1.5707963267948966 rad pos: 7.5,-90.5 parent: 2 type: Transform - - uid: 1702 + - uid: 1703 components: - rot: -1.5707963267948966 rad pos: 6.5,-91.5 parent: 2 type: Transform - - uid: 1703 + - uid: 1704 components: - rot: -1.5707963267948966 rad pos: 8.5,-90.5 parent: 2 type: Transform - - uid: 1704 + - uid: 1705 components: - rot: -1.5707963267948966 rad pos: 7.5,-91.5 parent: 2 type: Transform - - uid: 1705 + - uid: 1706 components: - rot: -1.5707963267948966 rad pos: 9.5,-91.5 parent: 2 type: Transform - - uid: 1706 + - uid: 1707 components: - rot: -1.5707963267948966 rad pos: 10.5,-90.5 parent: 2 type: Transform - - uid: 1707 + - uid: 1708 components: - rot: -1.5707963267948966 rad pos: 10.5,-91.5 parent: 2 type: Transform - - uid: 1708 + - uid: 1709 components: - rot: -1.5707963267948966 rad pos: 11.5,-90.5 parent: 2 type: Transform - - uid: 1709 + - uid: 1710 components: - rot: -1.5707963267948966 rad pos: 11.5,-91.5 parent: 2 type: Transform - - uid: 1710 + - uid: 1711 components: - rot: -1.5707963267948966 rad pos: 9.5,-90.5 @@ -20240,1037 +20244,1037 @@ entities: type: Transform - proto: AtmosDeviceFanTiny entities: - - uid: 1711 + - uid: 1712 components: - pos: 0.5,10.5 parent: 2 type: Transform - - uid: 1712 + - uid: 1713 components: - pos: 79.5,-36.5 parent: 2 type: Transform - - uid: 1713 + - uid: 1714 components: - pos: 69.5,-3.5 parent: 2 type: Transform - - uid: 1714 + - uid: 1715 components: - rot: 3.141592653589793 rad pos: 48.5,-95.5 parent: 2 type: Transform - - uid: 1715 + - uid: 1716 components: - rot: -1.5707963267948966 rad pos: -53.5,20.5 parent: 2 type: Transform - - uid: 1716 + - uid: 1717 components: - rot: -1.5707963267948966 rad pos: -53.5,22.5 parent: 2 type: Transform - - uid: 1717 + - uid: 1718 components: - pos: -52.5,30.5 parent: 2 type: Transform - - uid: 1718 + - uid: 1719 components: - pos: -52.5,34.5 parent: 2 type: Transform - - uid: 1719 + - uid: 1720 components: - pos: 79.5,-37.5 parent: 2 type: Transform - - uid: 1720 + - uid: 1721 components: - pos: 79.5,-34.5 parent: 2 type: Transform - - uid: 1721 + - uid: 1722 components: - pos: 79.5,-33.5 parent: 2 type: Transform - - uid: 1722 + - uid: 1723 components: - rot: 3.141592653589793 rad pos: 34.5,-89.5 parent: 2 type: Transform - - uid: 1723 + - uid: 1724 components: - rot: 3.141592653589793 rad pos: 44.5,-89.5 parent: 2 type: Transform - - uid: 1724 + - uid: 1725 components: - rot: 3.141592653589793 rad pos: 44.5,-82.5 parent: 2 type: Transform - - uid: 1725 + - uid: 1726 components: - rot: 3.141592653589793 rad pos: 34.5,-82.5 parent: 2 type: Transform - - uid: 1726 + - uid: 1727 components: - pos: 69.5,-5.5 parent: 2 type: Transform - - uid: 1727 + - uid: 1728 components: - pos: 69.5,-11.5 parent: 2 type: Transform - - uid: 1728 + - uid: 1729 components: - pos: 69.5,-13.5 parent: 2 type: Transform - - uid: 1729 + - uid: 1730 components: - pos: -1.5,14.5 parent: 2 type: Transform - - uid: 1730 + - uid: 1731 components: - rot: 3.141592653589793 rad pos: 30.5,-95.5 parent: 2 type: Transform - - uid: 1731 + - uid: 1732 components: - pos: -17.5,70.5 parent: 2 type: Transform - - uid: 1732 + - uid: 1733 components: - pos: -12.5,75.5 parent: 2 type: Transform - - uid: 1733 + - uid: 1734 components: - pos: -13.5,75.5 parent: 2 type: Transform - - uid: 1734 + - uid: 1735 components: - pos: -21.5,75.5 parent: 2 type: Transform - - uid: 1735 + - uid: 1736 components: - pos: -22.5,75.5 parent: 2 type: Transform - - uid: 1736 + - uid: 1737 components: - pos: -52.5,33.5 parent: 2 type: Transform - - uid: 1737 + - uid: 1738 components: - pos: -52.5,31.5 parent: 2 type: Transform - proto: AtmosFixBlockerMarker entities: - - uid: 1738 + - uid: 1739 components: - pos: 51.5,-60.5 parent: 2 type: Transform - - uid: 1739 + - uid: 1740 components: - pos: 50.5,-60.5 parent: 2 type: Transform - - uid: 1740 + - uid: 1741 components: - pos: 49.5,-60.5 parent: 2 type: Transform - - uid: 1741 + - uid: 1742 components: - pos: 48.5,-60.5 parent: 2 type: Transform - - uid: 1742 + - uid: 1743 components: - pos: 48.5,-61.5 parent: 2 type: Transform - - uid: 1743 + - uid: 1744 components: - pos: 49.5,-61.5 parent: 2 type: Transform - - uid: 1744 + - uid: 1745 components: - pos: 50.5,-61.5 parent: 2 type: Transform - - uid: 1745 + - uid: 1746 components: - pos: 51.5,-61.5 parent: 2 type: Transform - - uid: 1746 + - uid: 1747 components: - pos: -44.5,-33.5 parent: 2 type: Transform - - uid: 1747 + - uid: 1748 components: - pos: -44.5,-34.5 parent: 2 type: Transform - - uid: 1748 + - uid: 1749 components: - pos: -44.5,-35.5 parent: 2 type: Transform - - uid: 1749 + - uid: 1750 components: - pos: -43.5,-33.5 parent: 2 type: Transform - - uid: 1750 + - uid: 1751 components: - pos: -43.5,-34.5 parent: 2 type: Transform - - uid: 1751 + - uid: 1752 components: - pos: -43.5,-35.5 parent: 2 type: Transform - - uid: 1752 + - uid: 1753 components: - pos: -42.5,-33.5 parent: 2 type: Transform - - uid: 1753 + - uid: 1754 components: - pos: -42.5,-34.5 parent: 2 type: Transform - - uid: 1754 + - uid: 1755 components: - pos: -42.5,-35.5 parent: 2 type: Transform - - uid: 1755 + - uid: 1756 components: - pos: -42.5,-36.5 parent: 2 type: Transform - - uid: 1756 + - uid: 1757 components: - pos: -42.5,-32.5 parent: 2 type: Transform - - uid: 1757 + - uid: 1758 components: - pos: -45.5,-34.5 parent: 2 type: Transform - - uid: 1758 + - uid: 1759 components: - pos: -48.5,-50.5 parent: 2 type: Transform - - uid: 1759 + - uid: 1760 components: - pos: -49.5,-50.5 parent: 2 type: Transform - - uid: 1760 + - uid: 1761 components: - pos: -50.5,-50.5 parent: 2 type: Transform - - uid: 1761 + - uid: 1762 components: - pos: -48.5,-48.5 parent: 2 type: Transform - - uid: 1762 + - uid: 1763 components: - pos: -49.5,-48.5 parent: 2 type: Transform - - uid: 1763 + - uid: 1764 components: - pos: -50.5,-48.5 parent: 2 type: Transform - - uid: 1764 + - uid: 1765 components: - pos: -48.5,-44.5 parent: 2 type: Transform - - uid: 1765 + - uid: 1766 components: - pos: -49.5,-44.5 parent: 2 type: Transform - - uid: 1766 + - uid: 1767 components: - pos: -50.5,-44.5 parent: 2 type: Transform - - uid: 1767 + - uid: 1768 components: - pos: -48.5,-42.5 parent: 2 type: Transform - - uid: 1768 + - uid: 1769 components: - pos: -49.5,-42.5 parent: 2 type: Transform - - uid: 1769 + - uid: 1770 components: - pos: -50.5,-42.5 parent: 2 type: Transform - - uid: 1770 + - uid: 1771 components: - pos: -43.5,-36.5 parent: 2 type: Transform - - uid: 1771 + - uid: 1772 components: - pos: -44.5,-36.5 parent: 2 type: Transform - proto: AtmosFixFreezerMarker entities: - - uid: 1772 + - uid: 1773 components: - pos: 0.5,13.5 parent: 2 type: Transform - - uid: 1773 + - uid: 1774 components: - pos: 1.5,13.5 parent: 2 type: Transform - - uid: 1774 + - uid: 1775 components: - pos: 1.5,14.5 parent: 2 type: Transform - - uid: 1775 + - uid: 1776 components: - pos: 2.5,13.5 parent: 2 type: Transform - - uid: 1776 + - uid: 1777 components: - pos: 0.5,14.5 parent: 2 type: Transform - - uid: 1777 + - uid: 1778 components: - pos: -0.5,14.5 parent: 2 type: Transform - - uid: 1778 + - uid: 1779 components: - pos: 2.5,14.5 parent: 2 type: Transform - - uid: 1779 + - uid: 1780 components: - pos: -0.5,12.5 parent: 2 type: Transform - - uid: 1780 + - uid: 1781 components: - pos: -0.5,11.5 parent: 2 type: Transform - - uid: 1781 + - uid: 1782 components: - pos: 0.5,12.5 parent: 2 type: Transform - - uid: 1782 + - uid: 1783 components: - pos: 0.5,11.5 parent: 2 type: Transform - - uid: 1783 + - uid: 1784 components: - pos: 1.5,12.5 parent: 2 type: Transform - - uid: 1784 + - uid: 1785 components: - pos: 1.5,11.5 parent: 2 type: Transform - - uid: 1785 + - uid: 1786 components: - pos: 2.5,12.5 parent: 2 type: Transform - - uid: 1786 + - uid: 1787 components: - pos: 2.5,11.5 parent: 2 type: Transform - - uid: 1787 + - uid: 1788 components: - pos: -0.5,13.5 parent: 2 type: Transform - - uid: 1788 + - uid: 1789 components: - pos: -5.5,73.5 parent: 2 type: Transform - - uid: 1789 + - uid: 1790 components: - pos: -5.5,72.5 parent: 2 type: Transform - - uid: 1790 + - uid: 1791 components: - pos: -5.5,71.5 parent: 2 type: Transform - - uid: 1791 + - uid: 1792 components: - pos: -5.5,70.5 parent: 2 type: Transform - - uid: 1792 + - uid: 1793 components: - pos: -5.5,69.5 parent: 2 type: Transform - - uid: 1793 + - uid: 1794 components: - pos: -5.5,68.5 parent: 2 type: Transform - - uid: 1794 + - uid: 1795 components: - pos: -5.5,67.5 parent: 2 type: Transform - - uid: 1795 + - uid: 1796 components: - pos: -5.5,66.5 parent: 2 type: Transform - - uid: 1796 + - uid: 1797 components: - pos: -4.5,73.5 parent: 2 type: Transform - - uid: 1797 + - uid: 1798 components: - pos: -4.5,72.5 parent: 2 type: Transform - - uid: 1798 + - uid: 1799 components: - pos: -4.5,71.5 parent: 2 type: Transform - - uid: 1799 + - uid: 1800 components: - pos: -4.5,70.5 parent: 2 type: Transform - - uid: 1800 + - uid: 1801 components: - pos: -4.5,69.5 parent: 2 type: Transform - - uid: 1801 + - uid: 1802 components: - pos: -4.5,68.5 parent: 2 type: Transform - - uid: 1802 + - uid: 1803 components: - pos: -4.5,67.5 parent: 2 type: Transform - - uid: 1803 + - uid: 1804 components: - pos: -4.5,66.5 parent: 2 type: Transform - - uid: 1804 + - uid: 1805 components: - pos: -3.5,73.5 parent: 2 type: Transform - - uid: 1805 + - uid: 1806 components: - pos: -3.5,72.5 parent: 2 type: Transform - - uid: 1806 + - uid: 1807 components: - pos: -3.5,71.5 parent: 2 type: Transform - - uid: 1807 + - uid: 1808 components: - pos: -3.5,70.5 parent: 2 type: Transform - - uid: 1808 + - uid: 1809 components: - pos: -3.5,69.5 parent: 2 type: Transform - - uid: 1809 + - uid: 1810 components: - pos: -3.5,68.5 parent: 2 type: Transform - - uid: 1810 + - uid: 1811 components: - pos: -3.5,67.5 parent: 2 type: Transform - - uid: 1811 + - uid: 1812 components: - pos: -3.5,66.5 parent: 2 type: Transform - - uid: 1812 + - uid: 1813 components: - pos: -2.5,73.5 parent: 2 type: Transform - - uid: 1813 + - uid: 1814 components: - pos: -2.5,72.5 parent: 2 type: Transform - - uid: 1814 + - uid: 1815 components: - pos: -2.5,71.5 parent: 2 type: Transform - - uid: 1815 + - uid: 1816 components: - pos: -2.5,70.5 parent: 2 type: Transform - - uid: 1816 + - uid: 1817 components: - pos: -2.5,69.5 parent: 2 type: Transform - - uid: 1817 + - uid: 1818 components: - pos: -2.5,68.5 parent: 2 type: Transform - - uid: 1818 + - uid: 1819 components: - pos: -2.5,67.5 parent: 2 type: Transform - - uid: 1819 + - uid: 1820 components: - pos: -2.5,66.5 parent: 2 type: Transform - - uid: 1820 + - uid: 1821 components: - pos: -6.5,72.5 parent: 2 type: Transform - - uid: 1821 + - uid: 1822 components: - pos: -6.5,71.5 parent: 2 type: Transform - - uid: 1822 + - uid: 1823 components: - pos: -6.5,70.5 parent: 2 type: Transform - - uid: 1823 + - uid: 1824 components: - pos: -6.5,69.5 parent: 2 type: Transform - - uid: 1824 + - uid: 1825 components: - pos: -6.5,68.5 parent: 2 type: Transform - - uid: 1825 + - uid: 1826 components: - pos: -6.5,67.5 parent: 2 type: Transform - - uid: 1826 + - uid: 1827 components: - pos: -6.5,66.5 parent: 2 type: Transform - - uid: 1827 + - uid: 1828 components: - pos: -7.5,71.5 parent: 2 type: Transform - - uid: 1828 + - uid: 1829 components: - pos: -7.5,70.5 parent: 2 type: Transform - - uid: 1829 + - uid: 1830 components: - pos: -7.5,69.5 parent: 2 type: Transform - - uid: 1830 + - uid: 1831 components: - pos: -7.5,68.5 parent: 2 type: Transform - - uid: 1831 + - uid: 1832 components: - pos: -7.5,67.5 parent: 2 type: Transform - - uid: 1832 + - uid: 1833 components: - pos: -1.5,72.5 parent: 2 type: Transform - - uid: 1833 + - uid: 1834 components: - pos: -1.5,71.5 parent: 2 type: Transform - - uid: 1834 + - uid: 1835 components: - pos: -0.5,72.5 parent: 2 type: Transform - - uid: 1835 + - uid: 1836 components: - pos: -0.5,71.5 parent: 2 type: Transform - - uid: 1836 + - uid: 1837 components: - pos: 0.5,72.5 parent: 2 type: Transform - - uid: 1837 + - uid: 1838 components: - pos: 0.5,71.5 parent: 2 type: Transform - - uid: 1838 + - uid: 1839 components: - pos: 1.5,72.5 parent: 2 type: Transform - - uid: 1839 + - uid: 1840 components: - pos: 1.5,71.5 parent: 2 type: Transform - - uid: 1840 + - uid: 1841 components: - pos: 2.5,72.5 parent: 2 type: Transform - - uid: 1841 + - uid: 1842 components: - pos: 2.5,71.5 parent: 2 type: Transform - - uid: 1842 + - uid: 1843 components: - pos: 3.5,72.5 parent: 2 type: Transform - - uid: 1843 + - uid: 1844 components: - pos: 3.5,71.5 parent: 2 type: Transform - - uid: 1844 + - uid: 1845 components: - pos: -0.5,73.5 parent: 2 type: Transform - - uid: 1845 + - uid: 1846 components: - pos: 0.5,73.5 parent: 2 type: Transform - - uid: 1846 + - uid: 1847 components: - pos: 1.5,73.5 parent: 2 type: Transform - - uid: 1847 + - uid: 1848 components: - pos: 2.5,73.5 parent: 2 type: Transform - - uid: 1848 + - uid: 1849 components: - pos: 4.5,71.5 parent: 2 type: Transform - - uid: 1849 + - uid: 1850 components: - pos: 4.5,70.5 parent: 2 type: Transform - - uid: 1850 + - uid: 1851 components: - pos: 4.5,69.5 parent: 2 type: Transform - - uid: 1851 + - uid: 1852 components: - pos: 4.5,68.5 parent: 2 type: Transform - - uid: 1852 + - uid: 1853 components: - pos: 4.5,67.5 parent: 2 type: Transform - - uid: 1853 + - uid: 1854 components: - pos: 2.5,70.5 parent: 2 type: Transform - - uid: 1854 + - uid: 1855 components: - pos: 2.5,69.5 parent: 2 type: Transform - - uid: 1855 + - uid: 1856 components: - pos: 2.5,68.5 parent: 2 type: Transform - - uid: 1856 + - uid: 1857 components: - pos: 2.5,67.5 parent: 2 type: Transform - - uid: 1857 + - uid: 1858 components: - pos: 2.5,66.5 parent: 2 type: Transform - - uid: 1858 + - uid: 1859 components: - pos: 3.5,70.5 parent: 2 type: Transform - - uid: 1859 + - uid: 1860 components: - pos: 3.5,69.5 parent: 2 type: Transform - - uid: 1860 + - uid: 1861 components: - pos: 3.5,68.5 parent: 2 type: Transform - - uid: 1861 + - uid: 1862 components: - pos: 3.5,67.5 parent: 2 type: Transform - - uid: 1862 + - uid: 1863 components: - pos: 3.5,66.5 parent: 2 type: Transform - - uid: 1863 + - uid: 1864 components: - pos: 0.5,70.5 parent: 2 type: Transform - - uid: 1864 + - uid: 1865 components: - pos: 0.5,69.5 parent: 2 type: Transform - - uid: 1865 + - uid: 1866 components: - pos: 0.5,68.5 parent: 2 type: Transform - - uid: 1866 + - uid: 1867 components: - pos: 0.5,67.5 parent: 2 type: Transform - - uid: 1867 + - uid: 1868 components: - pos: 0.5,66.5 parent: 2 type: Transform - - uid: 1868 + - uid: 1869 components: - pos: 0.5,65.5 parent: 2 type: Transform - - uid: 1869 + - uid: 1870 components: - pos: 1.5,70.5 parent: 2 type: Transform - - uid: 1870 + - uid: 1871 components: - pos: 1.5,69.5 parent: 2 type: Transform - - uid: 1871 + - uid: 1872 components: - pos: 1.5,68.5 parent: 2 type: Transform - - uid: 1872 + - uid: 1873 components: - pos: 1.5,67.5 parent: 2 type: Transform - - uid: 1873 + - uid: 1874 components: - pos: 1.5,66.5 parent: 2 type: Transform - - uid: 1874 + - uid: 1875 components: - pos: 1.5,65.5 parent: 2 type: Transform - - uid: 1875 + - uid: 1876 components: - pos: -1.5,70.5 parent: 2 type: Transform - - uid: 1876 + - uid: 1877 components: - pos: -1.5,69.5 parent: 2 type: Transform - - uid: 1877 + - uid: 1878 components: - pos: -1.5,68.5 parent: 2 type: Transform - - uid: 1878 + - uid: 1879 components: - pos: -1.5,67.5 parent: 2 type: Transform - - uid: 1879 + - uid: 1880 components: - pos: -1.5,66.5 parent: 2 type: Transform - - uid: 1880 + - uid: 1881 components: - pos: -1.5,65.5 parent: 2 type: Transform - - uid: 1881 + - uid: 1882 components: - pos: -0.5,70.5 parent: 2 type: Transform - - uid: 1882 + - uid: 1883 components: - pos: -0.5,69.5 parent: 2 type: Transform - - uid: 1883 + - uid: 1884 components: - pos: -0.5,68.5 parent: 2 type: Transform - - uid: 1884 + - uid: 1885 components: - pos: -0.5,67.5 parent: 2 type: Transform - - uid: 1885 + - uid: 1886 components: - pos: -0.5,66.5 parent: 2 type: Transform - - uid: 1886 + - uid: 1887 components: - pos: -0.5,65.5 parent: 2 type: Transform - - uid: 1887 + - uid: 1888 components: - pos: -2.5,65.5 parent: 2 type: Transform - - uid: 1888 + - uid: 1889 components: - pos: -3.5,65.5 parent: 2 type: Transform - - uid: 1889 + - uid: 1890 components: - pos: -4.5,65.5 parent: 2 type: Transform - - uid: 1890 + - uid: 1891 components: - pos: 53.5,-47.5 parent: 2 type: Transform - - uid: 1891 + - uid: 1892 components: - pos: 53.5,-48.5 parent: 2 type: Transform - - uid: 1892 + - uid: 1893 components: - pos: 54.5,-47.5 parent: 2 type: Transform - - uid: 1893 + - uid: 1894 components: - pos: 54.5,-48.5 parent: 2 type: Transform - - uid: 1894 + - uid: 1895 components: - pos: 55.5,-47.5 parent: 2 type: Transform - - uid: 1895 + - uid: 1896 components: - pos: 55.5,-48.5 parent: 2 type: Transform - - uid: 1896 + - uid: 1897 components: - pos: 56.5,-47.5 parent: 2 type: Transform - - uid: 1897 + - uid: 1898 components: - pos: 56.5,-48.5 parent: 2 type: Transform - - uid: 1898 + - uid: 1899 components: - pos: 57.5,-47.5 parent: 2 type: Transform - - uid: 1899 + - uid: 1900 components: - pos: 57.5,-48.5 parent: 2 type: Transform - - uid: 1900 + - uid: 1901 components: - pos: 54.5,-49.5 parent: 2 type: Transform - - uid: 1901 + - uid: 1902 components: - pos: 55.5,-49.5 parent: 2 type: Transform - - uid: 1902 + - uid: 1903 components: - pos: 56.5,-49.5 parent: 2 type: Transform - - uid: 1903 + - uid: 1904 components: - pos: 57.5,-49.5 parent: 2 type: Transform - proto: AtmosFixNitrogenMarker entities: - - uid: 1904 + - uid: 1905 components: - pos: -48.5,-54.5 parent: 2 type: Transform - - uid: 1905 + - uid: 1906 components: - pos: -49.5,-54.5 parent: 2 type: Transform - - uid: 1906 + - uid: 1907 components: - pos: -50.5,-54.5 parent: 2 type: Transform - proto: AtmosFixOxygenMarker entities: - - uid: 1907 + - uid: 1908 components: - pos: -48.5,-52.5 parent: 2 type: Transform - - uid: 1908 + - uid: 1909 components: - pos: -49.5,-52.5 parent: 2 type: Transform - - uid: 1909 + - uid: 1910 components: - pos: -50.5,-52.5 parent: 2 type: Transform - proto: AtmosFixPlasmaMarker entities: - - uid: 1910 + - uid: 1911 components: - pos: -48.5,-46.5 parent: 2 type: Transform - - uid: 1911 + - uid: 1912 components: - pos: -49.5,-46.5 parent: 2 type: Transform - - uid: 1912 + - uid: 1913 components: - pos: -50.5,-46.5 parent: 2 type: Transform - proto: Autolathe entities: - - uid: 1913 + - uid: 1914 components: - pos: 40.5,-35.5 parent: 2 @@ -21282,19 +21286,19 @@ entities: - Glass - Cloth type: MaterialStorage - - uid: 1914 + - uid: 1915 components: - pos: -34.5,19.5 parent: 2 type: Transform - - uid: 1915 + - uid: 1916 components: - pos: -37.5,-9.5 parent: 2 type: Transform - proto: AutolatheMachineCircuitboard entities: - - uid: 1916 + - uid: 1917 components: - rot: 3.141592653589793 rad pos: -37.58594,-17.279528 @@ -21304,50 +21308,50 @@ entities: type: EmitSoundOnCollide - proto: BalloonCorgi entities: - - uid: 1917 + - uid: 1918 components: - pos: -1.4855543,-3.7954655 parent: 2 type: Transform - - uid: 1918 + - uid: 1919 components: - pos: -1.7824293,-3.8267155 parent: 2 type: Transform - - uid: 1919 + - uid: 1920 components: - pos: -1.6261793,-3.5142155 parent: 2 type: Transform - - uid: 1920 + - uid: 1921 components: - pos: -1.2668043,-3.5454655 parent: 2 type: Transform - proto: BananaPhoneInstrument entities: - - uid: 1921 + - uid: 1922 components: - pos: -19.559175,37.640453 parent: 2 type: Transform - proto: BananiumOre1 entities: - - uid: 1922 + - uid: 1923 components: - pos: -44.56904,61.76841 parent: 2 type: Transform - nextSound: 1273.5708038 type: EmitSoundOnCollide - - uid: 1923 + - uid: 1924 components: - pos: -45.38154,60.565285 parent: 2 type: Transform - nextSound: 1274.8501887 type: EmitSoundOnCollide - - uid: 1924 + - uid: 1925 components: - pos: -44.647163,61.39341 parent: 2 @@ -21356,221 +21360,221 @@ entities: type: EmitSoundOnCollide - proto: BannerCargo entities: - - uid: 1925 + - uid: 1926 components: - pos: -25.5,24.5 parent: 2 type: Transform - - uid: 1926 + - uid: 1927 components: - pos: -25.5,17.5 parent: 2 type: Transform - proto: BannerEngineering entities: - - uid: 1927 + - uid: 1928 components: - pos: -25.5,-8.5 parent: 2 type: Transform - - uid: 1928 + - uid: 1929 components: - pos: -23.5,-17.5 parent: 2 type: Transform - proto: BannerMedical entities: - - uid: 1929 + - uid: 1930 components: - pos: 1.5,-43.5 parent: 2 type: Transform - - uid: 1930 + - uid: 1931 components: - pos: -10.5,-43.5 parent: 2 type: Transform - proto: BannerNanotrasen entities: - - uid: 1931 + - uid: 1932 components: - pos: 28.5,-16.5 parent: 2 type: Transform - - uid: 1932 + - uid: 1933 components: - pos: 22.5,-16.5 parent: 2 type: Transform - proto: BannerRevolution entities: - - uid: 1933 + - uid: 1934 components: - pos: 0.5,-73.5 parent: 2 type: Transform - - uid: 1934 + - uid: 1935 components: - pos: -47.5,-72.5 parent: 2 type: Transform - - uid: 1935 + - uid: 1936 components: - pos: -36.5,-72.5 parent: 2 type: Transform - - uid: 1936 + - uid: 1937 components: - pos: -46.5,-84.5 parent: 2 type: Transform - - uid: 1937 + - uid: 1938 components: - pos: -37.5,-84.5 parent: 2 type: Transform - - uid: 1938 + - uid: 1939 components: - pos: 55.5,58.5 parent: 2 type: Transform - - uid: 1939 + - uid: 1940 components: - pos: 53.5,58.5 parent: 2 type: Transform - - uid: 1940 + - uid: 1941 components: - pos: 62.5,-69.5 parent: 2 type: Transform - - uid: 1941 + - uid: 1942 components: - pos: 60.5,-69.5 parent: 2 type: Transform - proto: BannerScience entities: - - uid: 1942 + - uid: 1943 components: - pos: 48.5,-40.5 parent: 2 type: Transform - - uid: 1943 + - uid: 1944 components: - pos: 48.5,-44.5 parent: 2 type: Transform - - uid: 1944 + - uid: 1945 components: - pos: 59.5,-49.5 parent: 2 type: Transform - - uid: 1945 + - uid: 1946 components: - pos: 65.5,-49.5 parent: 2 type: Transform - proto: BannerSecurity entities: - - uid: 1946 + - uid: 1947 components: - pos: 21.5,18.5 parent: 2 type: Transform - - uid: 1947 + - uid: 1948 components: - pos: 27.5,8.5 parent: 2 type: Transform - - uid: 1948 + - uid: 1949 components: - pos: 23.5,8.5 parent: 2 type: Transform - proto: Barricade entities: - - uid: 1949 + - uid: 1950 components: - rot: -1.5707963267948966 rad pos: -26.5,-64.5 parent: 2 type: Transform - - uid: 1950 + - uid: 1951 components: - pos: -3.5,-75.5 parent: 2 type: Transform - - uid: 1951 + - uid: 1952 components: - pos: 42.5,-9.5 parent: 2 type: Transform - - uid: 1952 + - uid: 1953 components: - pos: 44.5,-9.5 parent: 2 type: Transform - - uid: 1953 + - uid: 1954 components: - pos: 48.5,-12.5 parent: 2 type: Transform - - uid: 1954 + - uid: 1955 components: - rot: 3.141592653589793 rad pos: -35.5,-23.5 parent: 2 type: Transform - - uid: 1955 + - uid: 1956 components: - rot: 1.5707963267948966 rad pos: -48.5,-66.5 parent: 2 type: Transform - - uid: 1956 + - uid: 1957 components: - rot: 1.5707963267948966 rad pos: -44.5,-66.5 parent: 2 type: Transform - - uid: 1957 + - uid: 1958 components: - rot: 1.5707963267948966 rad pos: -45.5,-67.5 parent: 2 type: Transform - - uid: 1958 + - uid: 1959 components: - pos: -36.5,-20.5 parent: 2 type: Transform - - uid: 1959 + - uid: 1960 components: - rot: -1.5707963267948966 rad pos: -22.5,-53.5 parent: 2 type: Transform - - uid: 1960 + - uid: 1961 components: - rot: 3.141592653589793 rad pos: 20.5,-49.5 parent: 2 type: Transform - - uid: 1961 + - uid: 1962 components: - rot: 3.141592653589793 rad pos: 67.5,-61.5 parent: 2 type: Transform - - uid: 1962 + - uid: 1963 components: - pos: 67.5,-63.5 parent: 2 type: Transform - proto: BarSign entities: - - uid: 1963 + - uid: 1964 components: - desc: Recently relicensed after a long closure. name: The Emergency Rum Party @@ -21580,7 +21584,7 @@ entities: type: Transform - current: EmergencyRumParty type: BarSign - - uid: 1964 + - uid: 1965 components: - desc: A very controversial bar known for its wide variety of constantly-changing drinks. name: The Coderbus @@ -21590,236 +21594,236 @@ entities: type: Transform - current: TheCoderbus type: BarSign - - uid: 1965 + - uid: 1966 components: - pos: 33.5,48.5 parent: 2 type: Transform - proto: Basketball entities: - - uid: 1966 + - uid: 1967 components: - pos: 59.373314,-2.3464775 parent: 2 type: Transform - - uid: 1967 + - uid: 1968 components: - pos: -49.590145,-63.44321 parent: 2 type: Transform - proto: Beaker entities: - - uid: 1968 + - uid: 1969 components: - pos: -25.200409,-78.7421 parent: 2 type: Transform - - uid: 1969 + - uid: 1970 components: - pos: 54.768433,18.769468 parent: 2 type: Transform - - uid: 1970 + - uid: 1971 components: - pos: 54.659058,18.535093 parent: 2 type: Transform - proto: Bed entities: - - uid: 1971 + - uid: 1972 components: - pos: 1.5,-12.5 parent: 2 type: Transform - - uid: 1972 + - uid: 1973 components: - pos: 23.5,-35.5 parent: 2 type: Transform - - uid: 1973 + - uid: 1974 components: - pos: 36.5,7.5 parent: 2 type: Transform - - uid: 1974 + - uid: 1975 components: - pos: 36.5,4.5 parent: 2 type: Transform - - uid: 1975 + - uid: 1976 components: - pos: 8.5,22.5 parent: 2 type: Transform - - uid: 1976 + - uid: 1977 components: - pos: 1.5,-11.5 parent: 2 type: Transform - - uid: 1977 + - uid: 1978 components: - pos: 29.5,10.5 parent: 2 type: Transform - - uid: 1978 + - uid: 1979 components: - pos: 32.5,10.5 parent: 2 type: Transform - - uid: 1979 + - uid: 1980 components: - pos: 35.5,10.5 parent: 2 type: Transform - - uid: 1980 + - uid: 1981 components: - pos: -26.5,43.5 parent: 2 type: Transform - - uid: 1981 + - uid: 1982 components: - pos: -7.5,-4.5 parent: 2 type: Transform - - uid: 1982 + - uid: 1983 components: - pos: -15.5,-39.5 parent: 2 type: Transform - - uid: 1983 + - uid: 1984 components: - pos: 55.5,24.5 parent: 2 type: Transform - - uid: 1984 + - uid: 1985 components: - pos: 52.5,24.5 parent: 2 type: Transform - - uid: 1985 + - uid: 1986 components: - pos: 49.5,24.5 parent: 2 type: Transform - - uid: 1986 + - uid: 1987 components: - pos: 46.5,24.5 parent: 2 type: Transform - - uid: 1987 + - uid: 1988 components: - pos: 58.5,24.5 parent: 2 type: Transform - - uid: 1988 + - uid: 1989 components: - pos: 62.5,19.5 parent: 2 type: Transform - - uid: 1989 + - uid: 1990 components: - pos: 62.5,16.5 parent: 2 type: Transform - - uid: 1990 + - uid: 1991 components: - pos: 62.5,-55.5 parent: 2 type: Transform - - uid: 1991 + - uid: 1992 components: - pos: -37.5,-18.5 parent: 2 type: Transform - - uid: 1992 + - uid: 1993 components: - pos: -56.5,-86.5 parent: 2 type: Transform - - uid: 1993 + - uid: 1994 components: - pos: -30.5,31.5 parent: 2 type: Transform - - uid: 1994 + - uid: 1995 components: - pos: 32.5,-29.5 parent: 2 type: Transform - - uid: 1995 + - uid: 1996 components: - pos: -29.5,14.5 parent: 2 type: Transform - - uid: 1996 + - uid: 1997 components: - pos: -42.5,9.5 parent: 2 type: Transform - - uid: 1997 + - uid: 1998 components: - pos: -51.5,6.5 parent: 2 type: Transform - - uid: 1998 + - uid: 1999 components: - pos: -52.5,15.5 parent: 2 type: Transform - - uid: 1999 + - uid: 2000 components: - pos: -23.5,31.5 parent: 2 type: Transform - - uid: 2000 + - uid: 2001 components: - pos: -19.5,33.5 parent: 2 type: Transform - - uid: 2001 + - uid: 2002 components: - pos: -10.5,31.5 parent: 2 type: Transform - - uid: 2002 + - uid: 2003 components: - pos: -19.5,38.5 parent: 2 type: Transform - - uid: 2003 + - uid: 2004 components: - pos: 48.5,-11.5 parent: 2 type: Transform - proto: BedsheetBlack entities: - - uid: 2004 + - uid: 2005 components: - pos: -42.5,9.5 parent: 2 type: Transform - proto: BedsheetCaptain entities: - - uid: 2005 + - uid: 2006 components: - pos: 32.5,-29.5 parent: 2 type: Transform - proto: BedsheetCE entities: - - uid: 2006 + - uid: 2007 components: - pos: -37.5,-18.5 parent: 2 type: Transform - proto: BedsheetClown entities: - - uid: 2007 + - uid: 2008 components: - pos: 1.5,-11.5 parent: 2 type: Transform - - uid: 2008 + - uid: 2009 components: - rot: 3.141592653589793 rad pos: -19.5,38.5 @@ -21827,60 +21831,60 @@ entities: type: Transform - proto: BedsheetCMO entities: - - uid: 2009 + - uid: 2010 components: - pos: -17.5,-54.5 parent: 2 type: Transform - proto: BedsheetCult entities: - - uid: 2010 + - uid: 2011 components: - pos: -29.5,14.5 parent: 2 type: Transform - proto: BedsheetGreen entities: - - uid: 2011 + - uid: 2012 components: - pos: -51.5,6.5 parent: 2 type: Transform - proto: BedsheetGrey entities: - - uid: 2012 + - uid: 2013 components: - pos: 29.5,10.5 parent: 2 type: Transform - - uid: 2013 + - uid: 2014 components: - pos: 32.5,10.5 parent: 2 type: Transform - - uid: 2014 + - uid: 2015 components: - pos: 35.5,10.5 parent: 2 type: Transform - - uid: 2015 + - uid: 2016 components: - pos: 36.5,7.5 parent: 2 type: Transform - - uid: 2016 + - uid: 2017 components: - pos: 36.5,4.5 parent: 2 type: Transform - - uid: 2017 + - uid: 2018 components: - pos: -52.5,15.5 parent: 2 type: Transform - proto: BedsheetHOP entities: - - uid: 2018 + - uid: 2019 components: - rot: 3.141592653589793 rad pos: 23.5,-35.5 @@ -21888,7 +21892,7 @@ entities: type: Transform - proto: BedsheetHOS entities: - - uid: 2019 + - uid: 2020 components: - rot: -1.5707963267948966 rad pos: 8.5,22.5 @@ -21896,111 +21900,111 @@ entities: type: Transform - proto: BedsheetIan entities: - - uid: 2020 + - uid: 2021 components: - pos: 48.5,-11.5 parent: 2 type: Transform - proto: BedsheetMedical entities: - - uid: 2021 + - uid: 2022 components: - rot: -1.5707963267948966 rad pos: -12.5,-57.5 parent: 2 type: Transform - - uid: 2022 + - uid: 2023 components: - rot: -1.5707963267948966 rad pos: -9.5,-57.5 parent: 2 type: Transform - - uid: 2023 + - uid: 2024 components: - rot: -1.5707963267948966 rad pos: -6.5,-57.5 parent: 2 type: Transform - - uid: 2024 + - uid: 2025 components: - rot: -1.5707963267948966 rad pos: -3.5,-57.5 parent: 2 type: Transform - - uid: 2025 + - uid: 2026 components: - rot: -1.5707963267948966 rad pos: -0.5,-57.5 parent: 2 type: Transform - - uid: 2026 + - uid: 2027 components: - rot: 3.141592653589793 rad pos: 6.5,-56.5 parent: 2 type: Transform - - uid: 2027 + - uid: 2028 components: - pos: 44.5,4.5 parent: 2 type: Transform - - uid: 2028 + - uid: 2029 components: - pos: 44.5,5.5 parent: 2 type: Transform - proto: BedsheetMime entities: - - uid: 2029 + - uid: 2030 components: - pos: 1.5,-12.5 parent: 2 type: Transform - - uid: 2030 + - uid: 2031 components: - pos: -26.5,43.5 parent: 2 type: Transform - proto: BedsheetOrange entities: - - uid: 2031 + - uid: 2032 components: - pos: 58.5,24.5 parent: 2 type: Transform - - uid: 2032 + - uid: 2033 components: - pos: 55.5,24.5 parent: 2 type: Transform - - uid: 2033 + - uid: 2034 components: - pos: 52.5,24.5 parent: 2 type: Transform - - uid: 2034 + - uid: 2035 components: - pos: 49.5,24.5 parent: 2 type: Transform - - uid: 2035 + - uid: 2036 components: - pos: 46.5,24.5 parent: 2 type: Transform - - uid: 2036 + - uid: 2037 components: - pos: 62.5,19.5 parent: 2 type: Transform - - uid: 2037 + - uid: 2038 components: - pos: 62.5,16.5 parent: 2 type: Transform - proto: BedsheetQM entities: - - uid: 2038 + - uid: 2039 components: - rot: 3.141592653589793 rad pos: -30.5,31.5 @@ -22008,87 +22012,87 @@ entities: type: Transform - proto: BedsheetRD entities: - - uid: 2039 + - uid: 2040 components: - pos: 62.5,-55.5 parent: 2 type: Transform - proto: BedsheetSpawner entities: - - uid: 2040 + - uid: 2041 components: - pos: -10.5,31.5 parent: 2 type: Transform - - uid: 2041 + - uid: 2042 components: - pos: -19.5,33.5 parent: 2 type: Transform - proto: BedsheetSyndie entities: - - uid: 2042 + - uid: 2043 components: - pos: -56.5,-86.5 parent: 2 type: Transform - proto: BedsheetUSA entities: - - uid: 2043 + - uid: 2044 components: - pos: -23.5,31.5 parent: 2 type: Transform - proto: Bible entities: - - uid: 2044 + - uid: 2045 components: - pos: -30.453314,15.631503 parent: 2 type: Transform - proto: BigBox entities: - - uid: 2045 + - uid: 2046 components: - pos: 58.475555,34.501217 parent: 2 type: Transform - proto: BikeHorn entities: - - uid: 2046 + - uid: 2047 components: - pos: -22.127623,37.564125 parent: 2 type: Transform - proto: BikeHornInstrument entities: - - uid: 2047 + - uid: 2048 components: - pos: 4.415834,-11.744311 parent: 2 type: Transform - proto: BiomassReclaimer entities: - - uid: 2048 + - uid: 2049 components: - pos: -5.5,-66.5 parent: 2 type: Transform - proto: BiomassReclaimerMachineCircuitboard entities: - - uid: 2049 + - uid: 2050 components: - pos: -11.687319,37.80377 parent: 2 type: Transform - proto: BlastDoorBridge entities: - - uid: 2050 + - uid: 2051 components: - pos: 10.5,47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -220909.17 + - SecondsUntilStateChange: -221392.48 state: Closing type: Door - enabled: False @@ -22100,18 +22104,18 @@ entities: - inputs: Open: - port: On - uid: 23421 + uid: 23440 Close: - port: Off - uid: 23421 + uid: 23440 Toggle: [] type: SignalReceiver - - uid: 2051 + - uid: 2052 components: - pos: 10.5,49.5 parent: 2 type: Transform - - SecondsUntilStateChange: -220909.17 + - SecondsUntilStateChange: -221392.48 state: Closing type: Door - enabled: False @@ -22123,18 +22127,18 @@ entities: - inputs: Open: - port: On - uid: 23421 + uid: 23440 Close: - port: Off - uid: 23421 + uid: 23440 Toggle: [] type: SignalReceiver - - uid: 2052 + - uid: 2053 components: - pos: 10.5,48.5 parent: 2 type: Transform - - SecondsUntilStateChange: -220909.17 + - SecondsUntilStateChange: -221392.48 state: Closing type: Door - enabled: False @@ -22146,20 +22150,20 @@ entities: - inputs: Open: - port: On - uid: 23421 + uid: 23440 Close: - port: Off - uid: 23421 + uid: 23440 Toggle: [] type: SignalReceiver - proto: BlastDoorExterior1 entities: - - uid: 2053 + - uid: 2054 components: - pos: 18.5,-56.5 parent: 2 type: Transform - - SecondsUntilStateChange: -286338.62 + - SecondsUntilStateChange: -286821.9 state: Closing type: Door - enabled: False @@ -22171,18 +22175,18 @@ entities: - inputs: Open: - port: On - uid: 23395 + uid: 23414 Close: - port: Off - uid: 23395 + uid: 23414 Toggle: [] type: SignalReceiver - - uid: 2054 + - uid: 2055 components: - pos: 47.5,-51.5 parent: 2 type: Transform - - SecondsUntilStateChange: -155719.38 + - SecondsUntilStateChange: -156202.69 state: Closing type: Door - enabled: False @@ -22194,18 +22198,18 @@ entities: - inputs: Open: - port: On - uid: 23391 + uid: 23410 Close: - port: Off - uid: 23391 + uid: 23410 Toggle: [] type: SignalReceiver - - uid: 2055 + - uid: 2056 components: - pos: 47.5,-52.5 parent: 2 type: Transform - - SecondsUntilStateChange: -155719.38 + - SecondsUntilStateChange: -156202.69 state: Closing type: Door - enabled: False @@ -22217,18 +22221,18 @@ entities: - inputs: Open: - port: On - uid: 23391 + uid: 23410 Close: - port: Off - uid: 23391 + uid: 23410 Toggle: [] type: SignalReceiver - - uid: 2056 + - uid: 2057 components: - pos: 47.5,-53.5 parent: 2 type: Transform - - SecondsUntilStateChange: -155719.38 + - SecondsUntilStateChange: -156202.69 state: Closing type: Door - enabled: False @@ -22240,18 +22244,18 @@ entities: - inputs: Open: - port: On - uid: 23391 + uid: 23410 Close: - port: Off - uid: 23391 + uid: 23410 Toggle: [] type: SignalReceiver - - uid: 2057 + - uid: 2058 components: - pos: 47.5,-54.5 parent: 2 type: Transform - - SecondsUntilStateChange: -155719.38 + - SecondsUntilStateChange: -156202.69 state: Closing type: Door - enabled: False @@ -22263,18 +22267,18 @@ entities: - inputs: Open: - port: On - uid: 23391 + uid: 23410 Close: - port: Off - uid: 23391 + uid: 23410 Toggle: [] type: SignalReceiver - - uid: 2058 + - uid: 2059 components: - pos: 52.5,-58.5 parent: 2 type: Transform - - SecondsUntilStateChange: -155707.05 + - SecondsUntilStateChange: -156190.36 state: Closing type: Door - enabled: False @@ -22286,18 +22290,18 @@ entities: - inputs: Open: - port: On - uid: 23392 + uid: 23411 Close: - port: Off - uid: 23392 + uid: 23411 Toggle: [] type: SignalReceiver - - uid: 2059 + - uid: 2060 components: - pos: 50.5,-62.5 parent: 2 type: Transform - - SecondsUntilStateChange: -155709.58 + - SecondsUntilStateChange: -156192.89 state: Closing type: Door - enabled: False @@ -22309,19 +22313,19 @@ entities: - inputs: Open: - port: On - uid: 23427 + uid: 23446 Close: - port: Off - uid: 23427 + uid: 23446 Toggle: [] type: SignalReceiver - - uid: 2060 + - uid: 2061 components: - rot: 1.5707963267948966 rad pos: 55.5,-56.5 parent: 2 type: Transform - - SecondsUntilStateChange: -155657.86 + - SecondsUntilStateChange: -156141.17 state: Closing type: Door - enabled: False @@ -22333,19 +22337,19 @@ entities: - inputs: Open: - port: On - uid: 23394 + uid: 23413 Close: - port: Off - uid: 23394 + uid: 23413 Toggle: [] type: SignalReceiver - - uid: 2061 + - uid: 2062 components: - rot: 1.5707963267948966 rad pos: 54.5,-56.5 parent: 2 type: Transform - - SecondsUntilStateChange: -155657.86 + - SecondsUntilStateChange: -156141.17 state: Closing type: Door - enabled: False @@ -22357,18 +22361,18 @@ entities: - inputs: Open: - port: On - uid: 23394 + uid: 23413 Close: - port: Off - uid: 23394 + uid: 23413 Toggle: [] type: SignalReceiver - - uid: 2062 + - uid: 2063 components: - pos: -45.5,-34.5 parent: 2 type: Transform - - SecondsUntilStateChange: -411187.06 + - SecondsUntilStateChange: -411670.34 state: Closing type: Door - enabled: False @@ -22380,19 +22384,19 @@ entities: - inputs: Open: - port: On - uid: 23398 + uid: 23417 Close: - port: Off - uid: 23398 + uid: 23417 Toggle: [] type: SignalReceiver - - uid: 2063 + - uid: 2064 components: - rot: -1.5707963267948966 rad pos: -40.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -409537.4 + - SecondsUntilStateChange: -410020.7 state: Closing type: Door - enabled: False @@ -22404,19 +22408,19 @@ entities: - inputs: Open: - port: On - uid: 23399 + uid: 23418 Close: - port: Off - uid: 23399 + uid: 23418 Toggle: [] type: SignalReceiver - - uid: 2064 + - uid: 2065 components: - rot: -1.5707963267948966 rad pos: -39.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -409537.4 + - SecondsUntilStateChange: -410020.7 state: Closing type: Door - enabled: False @@ -22428,19 +22432,19 @@ entities: - inputs: Open: - port: On - uid: 23399 + uid: 23418 Close: - port: Off - uid: 23399 + uid: 23418 Toggle: [] type: SignalReceiver - - uid: 2065 + - uid: 2066 components: - rot: -1.5707963267948966 rad pos: -38.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -409537.4 + - SecondsUntilStateChange: -410020.7 state: Closing type: Door - enabled: False @@ -22452,19 +22456,19 @@ entities: - inputs: Open: - port: On - uid: 23399 + uid: 23418 Close: - port: Off - uid: 23399 + uid: 23418 Toggle: [] type: SignalReceiver - - uid: 2066 + - uid: 2067 components: - rot: -1.5707963267948966 rad pos: -37.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -409537.4 + - SecondsUntilStateChange: -410020.7 state: Closing type: Door - enabled: False @@ -22476,18 +22480,18 @@ entities: - inputs: Open: - port: On - uid: 23399 + uid: 23418 Close: - port: Off - uid: 23399 + uid: 23418 Toggle: [] type: SignalReceiver - - uid: 2067 + - uid: 2068 components: - pos: -49.5,19.5 parent: 2 type: Transform - - SecondsUntilStateChange: -289501.78 + - SecondsUntilStateChange: -289985.06 state: Closing type: Door - enabled: False @@ -22499,18 +22503,18 @@ entities: - inputs: Open: - port: On - uid: 23401 + uid: 23420 Close: - port: Off - uid: 23401 + uid: 23420 Toggle: [] type: SignalReceiver - - uid: 2068 + - uid: 2069 components: - pos: -49.5,23.5 parent: 2 type: Transform - - SecondsUntilStateChange: -289501.78 + - SecondsUntilStateChange: -289985.06 state: Closing type: Door - enabled: False @@ -22522,18 +22526,18 @@ entities: - inputs: Open: - port: On - uid: 23401 + uid: 23420 Close: - port: Off - uid: 23401 + uid: 23420 Toggle: [] type: SignalReceiver - - uid: 2069 + - uid: 2070 components: - pos: 51.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -251660.03 + - SecondsUntilStateChange: -252143.34 state: Closing type: Door - enabled: False @@ -22545,26 +22549,26 @@ entities: - inputs: Open: - port: Off - uid: 23411 + uid: 23430 - port: Off - uid: 23409 + uid: 23428 - port: Off - uid: 23416 + uid: 23435 Close: - port: On - uid: 23411 + uid: 23430 - port: On - uid: 23409 + uid: 23428 - port: On - uid: 23416 + uid: 23435 Toggle: [] type: SignalReceiver - - uid: 2070 + - uid: 2071 components: - pos: 54.5,45.5 parent: 2 type: Transform - - SecondsUntilStateChange: -251660.03 + - SecondsUntilStateChange: -252143.34 state: Closing type: Door - enabled: False @@ -22576,22 +22580,22 @@ entities: - inputs: Open: - port: On - uid: 23409 + uid: 23428 - port: Off - uid: 23407 + uid: 23426 Close: - port: Off - uid: 23409 + uid: 23428 - port: On - uid: 23407 + uid: 23426 Toggle: [] type: SignalReceiver - - uid: 2071 + - uid: 2072 components: - pos: -52.5,34.5 parent: 2 type: Transform - - SecondsUntilStateChange: -83628.87 + - SecondsUntilStateChange: -84112.164 state: Closing type: Door - enabled: False @@ -22603,18 +22607,18 @@ entities: - inputs: Open: - port: On - uid: 23433 + uid: 23452 Close: - port: Off - uid: 23433 + uid: 23452 Toggle: [] type: SignalReceiver - - uid: 2072 + - uid: 2073 components: - pos: -52.5,30.5 parent: 2 type: Transform - - SecondsUntilStateChange: -83601.16 + - SecondsUntilStateChange: -84084.45 state: Closing type: Door - enabled: False @@ -22626,18 +22630,18 @@ entities: - inputs: Open: - port: On - uid: 23393 + uid: 23412 Close: - port: Off - uid: 23393 + uid: 23412 Toggle: [] type: SignalReceiver - - uid: 2073 + - uid: 2074 components: - pos: -53.5,23.5 parent: 2 type: Transform - - SecondsUntilStateChange: -83669.805 + - SecondsUntilStateChange: -84153.1 state: Closing type: Door - enabled: False @@ -22649,18 +22653,18 @@ entities: - inputs: Open: - port: On - uid: 23400 + uid: 23419 Close: - port: Off - uid: 23400 + uid: 23419 Toggle: [] type: SignalReceiver - - uid: 2074 + - uid: 2075 components: - pos: -53.5,19.5 parent: 2 type: Transform - - SecondsUntilStateChange: -83669.805 + - SecondsUntilStateChange: -84153.1 state: Closing type: Door - enabled: False @@ -22672,18 +22676,18 @@ entities: - inputs: Open: - port: On - uid: 23400 + uid: 23419 Close: - port: Off - uid: 23400 + uid: 23419 Toggle: [] type: SignalReceiver - - uid: 2075 + - uid: 2076 components: - pos: 53.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -249917.9 + - SecondsUntilStateChange: -250401.22 state: Closing type: Door - enabled: False @@ -22695,26 +22699,26 @@ entities: - inputs: Open: - port: On - uid: 23412 + uid: 23431 - port: Off - uid: 23403 + uid: 23422 - port: On - uid: 23420 + uid: 23439 Close: - port: Off - uid: 23412 + uid: 23431 - port: On - uid: 23403 + uid: 23422 - port: Off - uid: 23420 + uid: 23439 Toggle: [] type: SignalReceiver - - uid: 2076 + - uid: 2077 components: - pos: 55.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -251920.3 + - SecondsUntilStateChange: -252403.61 state: Closing type: Door - enabled: False @@ -22726,22 +22730,22 @@ entities: - inputs: Open: - port: On - uid: 23407 + uid: 23426 - port: Off - uid: 23410 + uid: 23429 Close: - port: Off - uid: 23407 + uid: 23426 - port: On - uid: 23410 + uid: 23429 Toggle: [] type: SignalReceiver - - uid: 2077 + - uid: 2078 components: - pos: 50.5,47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -251660.03 + - SecondsUntilStateChange: -252143.34 state: Closing type: Door - enabled: False @@ -22753,18 +22757,18 @@ entities: - inputs: Open: - port: On - uid: 23405 + uid: 23424 Close: - port: Off - uid: 23405 + uid: 23424 Toggle: [] type: SignalReceiver - - uid: 2078 + - uid: 2079 components: - pos: 57.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -251660.03 + - SecondsUntilStateChange: -252143.34 state: Closing type: Door - enabled: False @@ -22776,18 +22780,18 @@ entities: - inputs: Open: - port: On - uid: 23411 + uid: 23430 Close: - port: Off - uid: 23411 + uid: 23430 Toggle: [] type: SignalReceiver - - uid: 2079 + - uid: 2080 components: - pos: 56.5,47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -251660.03 + - SecondsUntilStateChange: -252143.34 state: Closing type: Door - enabled: False @@ -22799,23 +22803,23 @@ entities: - inputs: Open: - port: On - uid: 23402 + uid: 23421 Close: - port: Off - uid: 23402 + uid: 23421 Toggle: [] type: SignalReceiver - - uid: 2080 + - uid: 2081 components: - pos: 51.5,48.5 parent: 2 type: Transform - - uid: 2081 + - uid: 2082 components: - pos: 53.5,48.5 parent: 2 type: Transform - - SecondsUntilStateChange: -249917.9 + - SecondsUntilStateChange: -250401.22 state: Closing type: Door - enabled: False @@ -22827,21 +22831,21 @@ entities: - inputs: Open: - port: Off - uid: 23402 + uid: 23421 - port: On - uid: 23417 + uid: 23436 - port: On - uid: 23420 + uid: 23439 Close: - port: On - uid: 23402 + uid: 23421 - port: Off - uid: 23417 + uid: 23436 - port: Off - uid: 23420 + uid: 23439 Toggle: [] type: SignalReceiver - - uid: 2082 + - uid: 2083 components: - pos: 55.5,48.5 parent: 2 @@ -22849,18 +22853,18 @@ entities: - inputs: Open: - port: On - uid: 23417 + uid: 23436 Close: - port: Off - uid: 23417 + uid: 23436 Toggle: [] type: SignalReceiver - - uid: 2083 + - uid: 2084 components: - pos: 58.5,47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -251660.03 + - SecondsUntilStateChange: -252143.34 state: Closing type: Door - enabled: False @@ -22872,18 +22876,18 @@ entities: - inputs: Open: - port: On - uid: 23403 + uid: 23422 Close: - port: Off - uid: 23403 + uid: 23422 Toggle: [] type: SignalReceiver - - uid: 2084 + - uid: 2085 components: - pos: 52.5,45.5 parent: 2 type: Transform - - SecondsUntilStateChange: -252155.69 + - SecondsUntilStateChange: -252639 state: Closing type: Door - enabled: False @@ -22895,22 +22899,22 @@ entities: - inputs: Open: - port: On - uid: 23406 + uid: 23425 - port: Off - uid: 23415 + uid: 23434 Close: - port: Off - uid: 23406 + uid: 23425 - port: On - uid: 23415 + uid: 23434 Toggle: [] type: SignalReceiver - - uid: 2085 + - uid: 2086 components: - pos: 53.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -249917.9 + - SecondsUntilStateChange: -250401.22 state: Closing type: Door - enabled: False @@ -22922,22 +22926,22 @@ entities: - inputs: Open: - port: Off - uid: 23413 + uid: 23432 - port: On - uid: 23420 + uid: 23439 Close: - port: On - uid: 23413 + uid: 23432 - port: Off - uid: 23420 + uid: 23439 Toggle: [] type: SignalReceiver - - uid: 2086 + - uid: 2087 components: - pos: 55.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -251660.03 + - SecondsUntilStateChange: -252143.34 state: Closing type: Door - enabled: False @@ -22949,22 +22953,22 @@ entities: - inputs: Open: - port: On - uid: 23413 + uid: 23432 - port: On - uid: 23416 + uid: 23435 Close: - port: Off - uid: 23413 + uid: 23432 - port: Off - uid: 23416 + uid: 23435 Toggle: [] type: SignalReceiver - - uid: 2087 + - uid: 2088 components: - pos: 58.5,45.5 parent: 2 type: Transform - - SecondsUntilStateChange: -251660.03 + - SecondsUntilStateChange: -252143.34 state: Closing type: Door - enabled: False @@ -22976,18 +22980,18 @@ entities: - inputs: Open: - port: Off - uid: 23414 + uid: 23433 Close: - port: On - uid: 23414 + uid: 23433 Toggle: [] type: SignalReceiver - - uid: 2088 + - uid: 2089 components: - pos: 57.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -251660.03 + - SecondsUntilStateChange: -252143.34 state: Closing type: Door - enabled: False @@ -22999,31 +23003,31 @@ entities: - inputs: Open: - port: Off - uid: 23406 + uid: 23425 - port: On - uid: 23408 + uid: 23427 - port: Off - uid: 23417 + uid: 23436 Close: - port: On - uid: 23406 + uid: 23425 - port: Off - uid: 23408 + uid: 23427 - port: On - uid: 23417 + uid: 23436 Toggle: [] type: SignalReceiver - - uid: 2089 + - uid: 2090 components: - pos: 57.5,48.5 parent: 2 type: Transform - - uid: 2090 + - uid: 2091 components: - pos: 54.5,47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -251660.03 + - SecondsUntilStateChange: -252143.34 state: Closing type: Door - enabled: False @@ -23035,18 +23039,18 @@ entities: - inputs: Open: - port: On - uid: 23410 + uid: 23429 Close: - port: Off - uid: 23410 + uid: 23429 Toggle: [] type: SignalReceiver - - uid: 2091 + - uid: 2092 components: - pos: 52.5,47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -251660.03 + - SecondsUntilStateChange: -252143.34 state: Closing type: Door - enabled: False @@ -23058,18 +23062,18 @@ entities: - inputs: Open: - port: Off - uid: 23412 + uid: 23431 Close: - port: On - uid: 23412 + uid: 23431 Toggle: [] type: SignalReceiver - - uid: 2092 + - uid: 2093 components: - pos: 51.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -251660.03 + - SecondsUntilStateChange: -252143.34 state: Closing type: Door - enabled: False @@ -23081,22 +23085,22 @@ entities: - inputs: Open: - port: On - uid: 23416 + uid: 23435 - port: Off - uid: 23417 + uid: 23436 Close: - port: Off - uid: 23416 + uid: 23435 - port: On - uid: 23417 + uid: 23436 Toggle: [] type: SignalReceiver - - uid: 2093 + - uid: 2094 components: - pos: 56.5,45.5 parent: 2 type: Transform - - SecondsUntilStateChange: -252014.39 + - SecondsUntilStateChange: -252497.7 state: Closing type: Door - enabled: False @@ -23108,22 +23112,22 @@ entities: - inputs: Open: - port: Off - uid: 23408 + uid: 23427 - port: On - uid: 23414 + uid: 23433 Close: - port: On - uid: 23408 + uid: 23427 - port: Off - uid: 23414 + uid: 23433 Toggle: [] type: SignalReceiver - - uid: 2094 + - uid: 2095 components: - pos: 50.5,45.5 parent: 2 type: Transform - - SecondsUntilStateChange: -251660.03 + - SecondsUntilStateChange: -252143.34 state: Closing type: Door - enabled: False @@ -23135,22 +23139,22 @@ entities: - inputs: Open: - port: On - uid: 23415 + uid: 23434 - port: Off - uid: 23405 + uid: 23424 Close: - port: Off - uid: 23415 + uid: 23434 - port: On - uid: 23405 + uid: 23424 Toggle: [] type: SignalReceiver - - uid: 2095 + - uid: 2096 components: - pos: -18.5,-96.5 parent: 2 type: Transform - - SecondsUntilStateChange: -198034.3 + - SecondsUntilStateChange: -198517.61 state: Closing type: Door - enabled: False @@ -23162,18 +23166,18 @@ entities: - inputs: Open: - port: On - uid: 23423 + uid: 23442 Close: - port: Off - uid: 23423 + uid: 23442 Toggle: [] type: SignalReceiver - - uid: 2096 + - uid: 2097 components: - pos: -18.5,-98.5 parent: 2 type: Transform - - SecondsUntilStateChange: -198034.3 + - SecondsUntilStateChange: -198517.61 state: Closing type: Door - enabled: False @@ -23185,18 +23189,18 @@ entities: - inputs: Open: - port: On - uid: 23423 + uid: 23442 Close: - port: Off - uid: 23423 + uid: 23442 Toggle: [] type: SignalReceiver - - uid: 2097 + - uid: 2098 components: - pos: -26.5,-96.5 parent: 2 type: Transform - - SecondsUntilStateChange: -198042.62 + - SecondsUntilStateChange: -198525.94 state: Closing type: Door - enabled: False @@ -23208,18 +23212,18 @@ entities: - inputs: Open: - port: On - uid: 23424 + uid: 23443 Close: - port: Off - uid: 23424 + uid: 23443 Toggle: [] type: SignalReceiver - - uid: 2098 + - uid: 2099 components: - pos: -26.5,-98.5 parent: 2 type: Transform - - SecondsUntilStateChange: -198042.62 + - SecondsUntilStateChange: -198525.94 state: Closing type: Door - enabled: False @@ -23231,18 +23235,18 @@ entities: - inputs: Open: - port: On - uid: 23424 + uid: 23443 Close: - port: Off - uid: 23424 + uid: 23443 Toggle: [] type: SignalReceiver - - uid: 2099 + - uid: 2100 components: - pos: 67.5,-39.5 parent: 2 type: Transform - - SecondsUntilStateChange: -153816.17 + - SecondsUntilStateChange: -154299.48 state: Closing type: Door - enabled: False @@ -23254,13 +23258,13 @@ entities: - inputs: Open: - port: On - uid: 23390 + uid: 23409 Close: - port: Off - uid: 23390 + uid: 23409 Toggle: [] type: SignalReceiver - - uid: 2100 + - uid: 2101 components: - rot: 3.141592653589793 rad pos: 72.5,-27.5 @@ -23269,21 +23273,21 @@ entities: - inputs: Open: - port: On - uid: 23428 + uid: 23447 Close: - port: Off - uid: 23428 + uid: 23447 Toggle: [] type: SignalReceiver - proto: BlastDoorExterior1Open entities: - - uid: 2101 + - uid: 2102 components: - rot: -1.5707963267948966 rad pos: 24.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -215897.2 + - SecondsUntilStateChange: -216380.52 state: Opening type: Door - enabled: True @@ -23295,19 +23299,19 @@ entities: - inputs: Open: - port: On - uid: 23422 + uid: 23441 Close: - port: Off - uid: 23422 + uid: 23441 Toggle: [] type: SignalReceiver - - uid: 2102 + - uid: 2103 components: - rot: -1.5707963267948966 rad pos: 23.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -215897.2 + - SecondsUntilStateChange: -216380.52 state: Opening type: Door - enabled: True @@ -23319,19 +23323,19 @@ entities: - inputs: Open: - port: On - uid: 23422 + uid: 23441 Close: - port: Off - uid: 23422 + uid: 23441 Toggle: [] type: SignalReceiver - - uid: 2103 + - uid: 2104 components: - rot: -1.5707963267948966 rad pos: 25.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -215897.2 + - SecondsUntilStateChange: -216380.52 state: Opening type: Door - enabled: True @@ -23343,19 +23347,19 @@ entities: - inputs: Open: - port: On - uid: 23422 + uid: 23441 Close: - port: Off - uid: 23422 + uid: 23441 Toggle: [] type: SignalReceiver - - uid: 2104 + - uid: 2105 components: - rot: -1.5707963267948966 rad pos: 26.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -215897.2 + - SecondsUntilStateChange: -216380.52 state: Opening type: Door - enabled: True @@ -23367,19 +23371,19 @@ entities: - inputs: Open: - port: On - uid: 23422 + uid: 23441 Close: - port: Off - uid: 23422 + uid: 23441 Toggle: [] type: SignalReceiver - - uid: 2105 + - uid: 2106 components: - rot: -1.5707963267948966 rad pos: 24.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -215897.2 + - SecondsUntilStateChange: -216380.52 state: Opening type: Door - enabled: True @@ -23391,19 +23395,19 @@ entities: - inputs: Open: - port: On - uid: 23422 + uid: 23441 Close: - port: Off - uid: 23422 + uid: 23441 Toggle: [] type: SignalReceiver - - uid: 2106 + - uid: 2107 components: - rot: -1.5707963267948966 rad pos: 23.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -215897.2 + - SecondsUntilStateChange: -216380.52 state: Opening type: Door - enabled: True @@ -23415,19 +23419,19 @@ entities: - inputs: Open: - port: On - uid: 23422 + uid: 23441 Close: - port: Off - uid: 23422 + uid: 23441 Toggle: [] type: SignalReceiver - - uid: 2107 + - uid: 2108 components: - rot: -1.5707963267948966 rad pos: 25.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -215897.2 + - SecondsUntilStateChange: -216380.52 state: Opening type: Door - enabled: True @@ -23439,19 +23443,19 @@ entities: - inputs: Open: - port: On - uid: 23422 + uid: 23441 Close: - port: Off - uid: 23422 + uid: 23441 Toggle: [] type: SignalReceiver - - uid: 2108 + - uid: 2109 components: - rot: -1.5707963267948966 rad pos: 26.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -215897.2 + - SecondsUntilStateChange: -216380.52 state: Opening type: Door - enabled: True @@ -23463,19 +23467,19 @@ entities: - inputs: Open: - port: On - uid: 23422 + uid: 23441 Close: - port: Off - uid: 23422 + uid: 23441 Toggle: [] type: SignalReceiver - - uid: 2109 + - uid: 2110 components: - rot: -1.5707963267948966 rad pos: 22.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -215897.2 + - SecondsUntilStateChange: -216380.52 state: Opening type: Door - enabled: True @@ -23487,19 +23491,19 @@ entities: - inputs: Open: - port: On - uid: 23422 + uid: 23441 Close: - port: Off - uid: 23422 + uid: 23441 Toggle: [] type: SignalReceiver - - uid: 2110 + - uid: 2111 components: - rot: -1.5707963267948966 rad pos: 22.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -215897.2 + - SecondsUntilStateChange: -216380.52 state: Opening type: Door - enabled: True @@ -23511,18 +23515,18 @@ entities: - inputs: Open: - port: On - uid: 23422 + uid: 23441 Close: - port: Off - uid: 23422 + uid: 23441 Toggle: [] type: SignalReceiver - - uid: 2111 + - uid: 2112 components: - pos: -8.5,-91.5 parent: 2 type: Transform - - SecondsUntilStateChange: -199791.28 + - SecondsUntilStateChange: -200274.6 state: Opening type: Door - enabled: True @@ -23534,22 +23538,22 @@ entities: - inputs: Open: - port: On - uid: 23425 + uid: 23444 - port: On - uid: 23426 + uid: 23445 Close: - port: Off - uid: 23425 + uid: 23444 - port: Off - uid: 23426 + uid: 23445 Toggle: [] type: SignalReceiver - - uid: 2112 + - uid: 2113 components: - pos: -8.5,-92.5 parent: 2 type: Transform - - SecondsUntilStateChange: -199791.28 + - SecondsUntilStateChange: -200274.6 state: Opening type: Door - enabled: True @@ -23561,22 +23565,22 @@ entities: - inputs: Open: - port: On - uid: 23426 + uid: 23445 - port: On - uid: 23425 + uid: 23444 Close: - port: Off - uid: 23426 + uid: 23445 - port: Off - uid: 23425 + uid: 23444 Toggle: [] type: SignalReceiver - - uid: 2113 + - uid: 2114 components: - pos: -8.5,-93.5 parent: 2 type: Transform - - SecondsUntilStateChange: -199791.28 + - SecondsUntilStateChange: -200274.6 state: Opening type: Door - enabled: True @@ -23588,22 +23592,22 @@ entities: - inputs: Open: - port: On - uid: 23426 + uid: 23445 - port: On - uid: 23425 + uid: 23444 Close: - port: Off - uid: 23426 + uid: 23445 - port: Off - uid: 23425 + uid: 23444 Toggle: [] type: SignalReceiver - - uid: 2114 + - uid: 2115 components: - pos: -6.5,-91.5 parent: 2 type: Transform - - SecondsUntilStateChange: -199791.28 + - SecondsUntilStateChange: -200274.6 state: Opening type: Door - enabled: True @@ -23615,22 +23619,22 @@ entities: - inputs: Open: - port: On - uid: 23425 + uid: 23444 - port: On - uid: 23426 + uid: 23445 Close: - port: Off - uid: 23425 + uid: 23444 - port: Off - uid: 23426 + uid: 23445 Toggle: [] type: SignalReceiver - - uid: 2115 + - uid: 2116 components: - pos: -6.5,-90.5 parent: 2 type: Transform - - SecondsUntilStateChange: -199791.28 + - SecondsUntilStateChange: -200274.6 state: Opening type: Door - enabled: True @@ -23642,22 +23646,22 @@ entities: - inputs: Open: - port: On - uid: 23425 + uid: 23444 - port: On - uid: 23426 + uid: 23445 Close: - port: Off - uid: 23425 + uid: 23444 - port: Off - uid: 23426 + uid: 23445 Toggle: [] type: SignalReceiver - - uid: 2116 + - uid: 2117 components: - pos: -6.5,-92.5 parent: 2 type: Transform - - SecondsUntilStateChange: -199791.28 + - SecondsUntilStateChange: -200274.6 state: Opening type: Door - enabled: True @@ -23669,22 +23673,22 @@ entities: - inputs: Open: - port: On - uid: 23425 + uid: 23444 - port: On - uid: 23426 + uid: 23445 Close: - port: Off - uid: 23425 + uid: 23444 - port: Off - uid: 23426 + uid: 23445 Toggle: [] type: SignalReceiver - - uid: 2117 + - uid: 2118 components: - pos: -6.5,-93.5 parent: 2 type: Transform - - SecondsUntilStateChange: -199791.28 + - SecondsUntilStateChange: -200274.6 state: Opening type: Door - enabled: True @@ -23696,22 +23700,22 @@ entities: - inputs: Open: - port: On - uid: 23425 + uid: 23444 - port: On - uid: 23426 + uid: 23445 Close: - port: Off - uid: 23425 + uid: 23444 - port: Off - uid: 23426 + uid: 23445 Toggle: [] type: SignalReceiver - - uid: 2118 + - uid: 2119 components: - pos: -8.5,-90.5 parent: 2 type: Transform - - SecondsUntilStateChange: -199791.28 + - SecondsUntilStateChange: -200274.6 state: Opening type: Door - enabled: True @@ -23723,24 +23727,24 @@ entities: - inputs: Open: - port: On - uid: 23425 + uid: 23444 - port: On - uid: 23426 + uid: 23445 Close: - port: Off - uid: 23425 + uid: 23444 - port: Off - uid: 23426 + uid: 23445 Toggle: [] type: SignalReceiver - proto: BlastDoorExterior2 entities: - - uid: 2119 + - uid: 2120 components: - pos: -11.5,-11.5 parent: 2 type: Transform - - SecondsUntilStateChange: -44741.766 + - SecondsUntilStateChange: -45225.062 state: Closing type: Door - enabled: False @@ -23752,20 +23756,20 @@ entities: - inputs: Open: - port: On - uid: 23387 + uid: 23406 Close: - port: Off - uid: 23387 + uid: 23406 Toggle: [] type: SignalReceiver - proto: BlastDoorOpen entities: - - uid: 2120 + - uid: 2121 components: - pos: -56.5,-11.5 parent: 2 type: Transform - - SecondsUntilStateChange: -327467.25 + - SecondsUntilStateChange: -327950.53 state: Opening type: Door - enabled: True @@ -23777,18 +23781,18 @@ entities: - inputs: Open: - port: On - uid: 23397 + uid: 23416 Close: - port: Off - uid: 23397 + uid: 23416 Toggle: [] type: SignalReceiver - - uid: 2121 + - uid: 2122 components: - pos: -56.5,-12.5 parent: 2 type: Transform - - SecondsUntilStateChange: -327467.25 + - SecondsUntilStateChange: -327950.53 state: Opening type: Door - enabled: True @@ -23800,18 +23804,18 @@ entities: - inputs: Open: - port: On - uid: 23397 + uid: 23416 Close: - port: Off - uid: 23397 + uid: 23416 Toggle: [] type: SignalReceiver - - uid: 2122 + - uid: 2123 components: - pos: -56.5,-13.5 parent: 2 type: Transform - - SecondsUntilStateChange: -327467.25 + - SecondsUntilStateChange: -327950.53 state: Opening type: Door - enabled: True @@ -23823,18 +23827,18 @@ entities: - inputs: Open: - port: On - uid: 23397 + uid: 23416 Close: - port: Off - uid: 23397 + uid: 23416 Toggle: [] type: SignalReceiver - - uid: 2123 + - uid: 2124 components: - pos: -56.5,-14.5 parent: 2 type: Transform - - SecondsUntilStateChange: -327467.25 + - SecondsUntilStateChange: -327950.53 state: Opening type: Door - enabled: True @@ -23846,18 +23850,18 @@ entities: - inputs: Open: - port: On - uid: 23397 + uid: 23416 Close: - port: Off - uid: 23397 + uid: 23416 Toggle: [] type: SignalReceiver - - uid: 2124 + - uid: 2125 components: - pos: -56.5,-15.5 parent: 2 type: Transform - - SecondsUntilStateChange: -327467.25 + - SecondsUntilStateChange: -327950.53 state: Opening type: Door - enabled: True @@ -23869,19 +23873,19 @@ entities: - inputs: Open: - port: On - uid: 23397 + uid: 23416 Close: - port: Off - uid: 23397 + uid: 23416 Toggle: [] type: SignalReceiver - - uid: 2125 + - uid: 2126 components: - rot: -1.5707963267948966 rad pos: -64.5,-22.5 parent: 2 type: Transform - - SecondsUntilStateChange: -96664.85 + - SecondsUntilStateChange: -97148.15 state: Opening type: Door - enabled: True @@ -23893,19 +23897,19 @@ entities: - inputs: Open: - port: On - uid: 23396 + uid: 23415 Close: - port: Off - uid: 23396 + uid: 23415 Toggle: [] type: SignalReceiver - - uid: 2126 + - uid: 2127 components: - rot: -1.5707963267948966 rad pos: -65.5,-22.5 parent: 2 type: Transform - - SecondsUntilStateChange: -96664.85 + - SecondsUntilStateChange: -97148.15 state: Opening type: Door - enabled: True @@ -23917,19 +23921,19 @@ entities: - inputs: Open: - port: On - uid: 23396 + uid: 23415 Close: - port: Off - uid: 23396 + uid: 23415 Toggle: [] type: SignalReceiver - - uid: 2127 + - uid: 2128 components: - rot: -1.5707963267948966 rad pos: -66.5,-22.5 parent: 2 type: Transform - - SecondsUntilStateChange: -96664.85 + - SecondsUntilStateChange: -97148.15 state: Opening type: Door - enabled: True @@ -23941,19 +23945,19 @@ entities: - inputs: Open: - port: On - uid: 23396 + uid: 23415 Close: - port: Off - uid: 23396 + uid: 23415 Toggle: [] type: SignalReceiver - - uid: 2128 + - uid: 2129 components: - rot: -1.5707963267948966 rad pos: -67.5,-22.5 parent: 2 type: Transform - - SecondsUntilStateChange: -96664.85 + - SecondsUntilStateChange: -97148.15 state: Opening type: Door - enabled: True @@ -23965,19 +23969,19 @@ entities: - inputs: Open: - port: On - uid: 23396 + uid: 23415 Close: - port: Off - uid: 23396 + uid: 23415 Toggle: [] type: SignalReceiver - - uid: 2129 + - uid: 2130 components: - rot: -1.5707963267948966 rad pos: -68.5,-22.5 parent: 2 type: Transform - - SecondsUntilStateChange: -96664.85 + - SecondsUntilStateChange: -97148.15 state: Opening type: Door - enabled: True @@ -23989,259 +23993,252 @@ entities: - inputs: Open: - port: On - uid: 23396 + uid: 23415 Close: - port: Off - uid: 23396 + uid: 23415 Toggle: [] type: SignalReceiver - proto: BlockGameArcadeComputerCircuitboard entities: - - uid: 2130 + - uid: 2131 components: - pos: -25.444056,-24.257809 parent: 2 type: Transform - proto: BookAtmosAirAlarms entities: - - uid: 2131 + - uid: 2132 components: - pos: -24.358501,-36.435444 parent: 2 type: Transform - proto: BookAtmosDistro entities: - - uid: 2132 + - uid: 2133 components: - pos: -24.608501,-36.51357 parent: 2 type: Transform - proto: BookAtmosVentsMore entities: - - uid: 2133 + - uid: 2134 components: - pos: -25.155376,-36.48232 parent: 2 type: Transform - proto: BookAtmosWaste entities: - - uid: 2134 + - uid: 2135 components: - pos: -25.389751,-36.57607 parent: 2 type: Transform - proto: BookDetective entities: - - uid: 2135 + - uid: 2136 components: - pos: 8.262031,-12.4473095 parent: 2 type: Transform - - uid: 2136 + - uid: 2137 components: - pos: 40.304634,21.43983 parent: 2 type: Transform - proto: BookEscalation entities: - - uid: 2137 + - uid: 2138 components: - pos: 9.419705,-6.507422 parent: 2 type: Transform - proto: BookEscalationSecurity entities: - - uid: 2138 + - uid: 2139 components: - pos: 15.607252,21.663286 parent: 2 type: Transform - proto: BookFishing entities: - - uid: 2139 + - uid: 2140 components: - pos: 40.53901,21.517956 parent: 2 type: Transform - proto: BookGnominomicon entities: - - uid: 2140 + - uid: 2141 components: - pos: 8.605781,-12.4316845 parent: 2 type: Transform - proto: BookRandom entities: - - uid: 2141 + - uid: 2142 components: - pos: 40.523384,18.611706 parent: 2 type: Transform - - uid: 2142 + - uid: 2143 components: - pos: 38.492134,18.674206 parent: 2 type: Transform - - uid: 2143 + - uid: 2144 components: - pos: 38.429634,21.580456 parent: 2 type: Transform - - uid: 2144 + - uid: 2145 components: - pos: -33.495968,-67.45002 parent: 2 type: Transform - proto: Bookshelf entities: - - uid: 2145 + - uid: 2146 components: - pos: 41.5,21.5 parent: 2 type: Transform - - uid: 2146 + - uid: 2147 components: - pos: 39.5,21.5 parent: 2 type: Transform - - uid: 2147 + - uid: 2148 components: - pos: 41.5,18.5 parent: 2 type: Transform - - uid: 2148 + - uid: 2149 components: - pos: 39.5,18.5 parent: 2 type: Transform - proto: BookshelfFilled entities: - - uid: 2149 + - uid: 2150 components: - pos: 12.5,-10.5 parent: 2 type: Transform - - uid: 2150 + - uid: 2151 components: - pos: 8.5,-10.5 parent: 2 type: Transform - - uid: 2151 + - uid: 2152 components: - pos: 11.5,-12.5 parent: 2 type: Transform - - uid: 2152 + - uid: 2153 components: - pos: 12.5,-12.5 parent: 2 type: Transform - - uid: 2153 + - uid: 2154 components: - pos: 13.5,-12.5 parent: 2 type: Transform - - uid: 2154 + - uid: 2155 components: - pos: 6.5,-6.5 parent: 2 type: Transform - - uid: 2155 + - uid: 2156 components: - pos: 7.5,-4.5 parent: 2 type: Transform - - uid: 2156 + - uid: 2157 components: - pos: 6.5,-4.5 parent: 2 type: Transform - - uid: 2157 + - uid: 2158 components: - pos: 7.5,-6.5 parent: 2 type: Transform - - uid: 2158 + - uid: 2159 components: - pos: 11.5,-10.5 parent: 2 type: Transform - - uid: 2159 + - uid: 2160 components: - pos: 13.5,-10.5 parent: 2 type: Transform - proto: BoozeDispenser entities: - - uid: 2160 + - uid: 2161 components: - rot: -1.5707963267948966 rad pos: 18.5,12.5 parent: 2 type: Transform - - uid: 2161 + - uid: 2162 components: - pos: -43.5,-74.5 parent: 2 type: Transform - - uid: 2162 + - uid: 2163 components: - pos: 38.5,51.5 parent: 2 type: Transform - proto: BoxBeaker entities: - - uid: 2163 + - uid: 2164 components: - pos: 7.6496778,-46.860195 parent: 2 type: Transform - - uid: 2164 + - uid: 2165 components: - pos: -26.122566,-84.458 parent: 2 type: Transform - - uid: 2165 + - uid: 2166 components: - pos: 42.431667,-35.402893 parent: 2 type: Transform - - uid: 2166 + - uid: 2167 components: - pos: 8.7782135,-62.351368 parent: 2 type: Transform - proto: BoxBeanbag entities: - - uid: 2167 + - uid: 2168 components: - pos: 22.537981,13.588842 parent: 2 type: Transform - proto: BoxBodyBag entities: - - uid: 2168 + - uid: 2169 components: - pos: -11.506837,-67.45136 parent: 2 type: Transform - proto: BoxCardboard entities: - - uid: 2169 - components: - - pos: 57.684505,34.726276 - parent: 2 - type: Transform - uid: 2170 components: - - pos: 57.26263,34.39815 + - pos: 57.684505,34.726276 parent: 2 type: Transform -- proto: BoxCartridgeCap - entities: - uid: 2171 components: - - pos: 2.4494405,-9.311171 + - pos: 57.26263,34.39815 parent: 2 type: Transform - proto: BoxFlashbang @@ -24611,12 +24608,12 @@ entities: - outputs: Start: - port: Close - uid: 30157 + uid: 30199 Timer: - port: AutoClose - uid: 30157 + uid: 30199 - port: Open - uid: 30157 + uid: 30199 type: SignalTransmitter - uid: 2231 components: @@ -24629,12 +24626,12 @@ entities: - outputs: Start: - port: Close - uid: 30149 + uid: 30191 Timer: - port: AutoClose - uid: 30149 + uid: 30191 - port: Open - uid: 30149 + uid: 30191 type: SignalTransmitter - uid: 2232 components: @@ -24647,12 +24644,12 @@ entities: - outputs: Start: - port: Close - uid: 30154 + uid: 30196 Timer: - port: AutoClose - uid: 30154 + uid: 30196 - port: Open - uid: 30154 + uid: 30196 type: SignalTransmitter - uid: 2233 components: @@ -24665,12 +24662,12 @@ entities: - outputs: Start: - port: Close - uid: 30150 + uid: 30192 Timer: - port: AutoClose - uid: 30150 + uid: 30192 - port: Open - uid: 30150 + uid: 30192 type: SignalTransmitter - uid: 2234 components: @@ -24683,12 +24680,12 @@ entities: - outputs: Start: - port: Close - uid: 30155 + uid: 30197 Timer: - port: AutoClose - uid: 30155 + uid: 30197 - port: Open - uid: 30155 + uid: 30197 type: SignalTransmitter - proto: BrigTimerElectronics entities: @@ -61463,35 +61460,35 @@ entities: type: Transform - fixtures: {} type: Fixtures - - uid: 30663 + - uid: 7190 components: - pos: 68.5,-32.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 30664 + - uid: 7191 components: - pos: 68.5,-31.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 30665 + - uid: 7192 components: - pos: 68.5,-30.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 30678 + - uid: 7193 components: - pos: 67.5,-30.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 30679 + - uid: 7194 components: - pos: 66.5,-30.5 parent: 2 @@ -61500,74 +61497,74 @@ entities: type: Fixtures - proto: CableApcStack entities: - - uid: 7190 + - uid: 7195 components: - pos: -22.574043,-20.541626 parent: 2 type: Transform - - uid: 7191 + - uid: 7196 components: - pos: -66.19752,-32.620537 parent: 2 type: Transform - - uid: 7192 + - uid: 7197 components: - pos: -11.530048,37.577045 parent: 2 type: Transform - - uid: 7193 + - uid: 7198 components: - pos: 77.47492,-43.4493 parent: 2 type: Transform - proto: CableApcStack1 entities: - - uid: 7194 + - uid: 7199 components: - rot: 3.141592653589793 rad pos: 55.427982,45.52066 parent: 2 type: Transform - - uid: 7195 + - uid: 7200 components: - rot: 3.141592653589793 rad pos: 38.439327,47.51809 parent: 2 type: Transform - - uid: 7196 + - uid: 7201 components: - pos: -14.8449135,-96.398895 parent: 2 type: Transform - - uid: 7197 + - uid: 7202 components: - pos: 57.114487,42.493305 parent: 2 type: Transform - proto: CableHV entities: - - uid: 7198 + - uid: 7203 components: - pos: 15.5,-28.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7199 + - uid: 7204 components: - pos: 7.5,-26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7200 + - uid: 7205 components: - pos: 27.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7201 + - uid: 7206 components: - pos: 8.5,-95.5 parent: 2 @@ -61576,70 +61573,70 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7202 + - uid: 7207 components: - pos: -1.5,-66.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7203 + - uid: 7208 components: - pos: 15.5,-33.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7204 + - uid: 7209 components: - pos: 12.5,-26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7205 + - uid: 7210 components: - pos: -11.5,-26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7206 + - uid: 7211 components: - pos: 2.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7207 + - uid: 7212 components: - pos: 6.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7208 + - uid: 7213 components: - pos: 0.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7209 + - uid: 7214 components: - pos: 4.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7210 + - uid: 7215 components: - pos: -5.5,-39.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7211 + - uid: 7216 components: - pos: 8.5,-55.5 parent: 2 @@ -61648,77 +61645,77 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7212 + - uid: 7217 components: - pos: -1.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7213 + - uid: 7218 components: - pos: -1.5,-26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7214 + - uid: 7219 components: - pos: 15.5,-26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7215 + - uid: 7220 components: - pos: -1.5,-64.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7216 + - uid: 7221 components: - pos: -12.5,-75.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7217 + - uid: 7222 components: - pos: 32.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7218 + - uid: 7223 components: - pos: 14.5,-46.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7219 + - uid: 7224 components: - pos: 21.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7220 + - uid: 7225 components: - pos: 38.5,-30.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7221 + - uid: 7226 components: - pos: -12.5,-71.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7222 + - uid: 7227 components: - pos: 4.5,-16.5 parent: 2 @@ -61727,7 +61724,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7223 + - uid: 7228 components: - pos: 3.5,-16.5 parent: 2 @@ -61736,7 +61733,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7224 + - uid: 7229 components: - pos: 2.5,-16.5 parent: 2 @@ -61745,7 +61742,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7225 + - uid: 7230 components: - pos: 1.5,-16.5 parent: 2 @@ -61754,7 +61751,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7226 + - uid: 7231 components: - pos: 1.5,-17.5 parent: 2 @@ -61763,7 +61760,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7227 + - uid: 7232 components: - pos: 0.5,-17.5 parent: 2 @@ -61772,77 +61769,77 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7228 + - uid: 7233 components: - pos: 39.5,-28.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7229 + - uid: 7234 components: - pos: 25.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7230 + - uid: 7235 components: - pos: 24.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7231 + - uid: 7236 components: - pos: 23.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7232 + - uid: 7237 components: - pos: 22.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7233 + - uid: 7238 components: - pos: 25.5,-10.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7234 + - uid: 7239 components: - pos: 24.5,-5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7235 + - uid: 7240 components: - pos: 12.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7236 + - uid: 7241 components: - pos: -14.5,34.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7237 + - uid: 7242 components: - pos: 8.5,-16.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7238 + - uid: 7243 components: - pos: 4.5,-14.5 parent: 2 @@ -61851,14 +61848,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7239 + - uid: 7244 components: - pos: -4.5,-18.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7240 + - uid: 7245 components: - pos: 5.5,-92.5 parent: 2 @@ -61867,7 +61864,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7241 + - uid: 7246 components: - pos: 4.5,-92.5 parent: 2 @@ -61876,7 +61873,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7242 + - uid: 7247 components: - pos: 2.5,-92.5 parent: 2 @@ -61885,21 +61882,21 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7243 + - uid: 7248 components: - pos: 12.5,-49.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7244 + - uid: 7249 components: - pos: 10.5,-49.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7245 + - uid: 7250 components: - pos: 9.5,-52.5 parent: 2 @@ -61908,7 +61905,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7246 + - uid: 7251 components: - pos: 8.5,-54.5 parent: 2 @@ -61917,7 +61914,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7247 + - uid: 7252 components: - pos: 8.5,-53.5 parent: 2 @@ -61926,14 +61923,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7248 + - uid: 7253 components: - pos: 10.5,-55.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7249 + - uid: 7254 components: - pos: 11.5,-55.5 parent: 2 @@ -61942,7 +61939,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7250 + - uid: 7255 components: - pos: 12.5,-56.5 parent: 2 @@ -61951,35 +61948,35 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7251 + - uid: 7256 components: - pos: 14.5,-57.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7252 + - uid: 7257 components: - pos: 14.5,-58.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7253 + - uid: 7258 components: - pos: 39.5,-29.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7254 + - uid: 7259 components: - pos: 36.5,-30.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7255 + - uid: 7260 components: - pos: 10.5,-92.5 parent: 2 @@ -61988,14 +61985,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7256 + - uid: 7261 components: - pos: -11.5,-75.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7257 + - uid: 7262 components: - pos: 6.5,-92.5 parent: 2 @@ -62004,7 +62001,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7258 + - uid: 7263 components: - pos: -7.5,-75.5 parent: 2 @@ -62013,7 +62010,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7259 + - uid: 7264 components: - pos: -5.5,-75.5 parent: 2 @@ -62022,14 +62019,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7260 + - uid: 7265 components: - pos: 25.5,-49.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7261 + - uid: 7266 components: - pos: 0.5,-89.5 parent: 2 @@ -62038,7 +62035,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7262 + - uid: 7267 components: - pos: -0.5,-89.5 parent: 2 @@ -62047,7 +62044,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7263 + - uid: 7268 components: - pos: -1.5,-89.5 parent: 2 @@ -62056,7 +62053,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7264 + - uid: 7269 components: - pos: -1.5,-88.5 parent: 2 @@ -62065,7 +62062,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7265 + - uid: 7270 components: - pos: -1.5,-87.5 parent: 2 @@ -62074,7 +62071,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7266 + - uid: 7271 components: - pos: 14.5,-98.5 parent: 2 @@ -62083,7 +62080,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7267 + - uid: 7272 components: - pos: 12.5,-95.5 parent: 2 @@ -62092,14 +62089,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7268 + - uid: 7273 components: - pos: -4.5,-22.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7269 + - uid: 7274 components: - pos: 10.5,-95.5 parent: 2 @@ -62108,28 +62105,28 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7270 + - uid: 7275 components: - pos: 15.5,-37.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7271 + - uid: 7276 components: - pos: -15.5,-71.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7272 + - uid: 7277 components: - pos: 35.5,-40.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7273 + - uid: 7278 components: - pos: 13.5,-45.5 parent: 2 @@ -62138,63 +62135,63 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7274 + - uid: 7279 components: - pos: -4.5,-25.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7275 + - uid: 7280 components: - pos: -5.5,-30.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7276 + - uid: 7281 components: - pos: 6.5,-26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7277 + - uid: 7282 components: - pos: 5.5,-26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7278 + - uid: 7283 components: - pos: 3.5,-26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7279 + - uid: 7284 components: - pos: 2.5,-26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7280 + - uid: 7285 components: - pos: 1.5,-26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7281 + - uid: 7286 components: - pos: -17.5,-26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7282 + - uid: 7287 components: - pos: 12.5,-45.5 parent: 2 @@ -62203,70 +62200,70 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7283 + - uid: 7288 components: - pos: 15.5,-41.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7284 + - uid: 7289 components: - pos: 13.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7285 + - uid: 7290 components: - pos: 10.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7286 + - uid: 7291 components: - pos: 7.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7287 + - uid: 7292 components: - pos: 8.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7288 + - uid: 7293 components: - pos: 25.5,-6.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7289 + - uid: 7294 components: - pos: 25.5,-12.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7290 + - uid: 7295 components: - pos: 25.5,-13.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7291 + - uid: 7296 components: - pos: 25.5,-14.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7292 + - uid: 7297 components: - pos: 2.5,-71.5 parent: 2 @@ -62275,42 +62272,42 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7293 + - uid: 7298 components: - pos: -12.5,-73.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7294 + - uid: 7299 components: - pos: 35.5,-34.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7295 + - uid: 7300 components: - pos: 25.5,-44.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7296 + - uid: 7301 components: - pos: 25.5,-43.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7297 + - uid: 7302 components: - pos: 33.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7298 + - uid: 7303 components: - pos: -67.5,-25.5 parent: 2 @@ -62319,21 +62316,21 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7299 + - uid: 7304 components: - pos: -2.5,-61.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7300 + - uid: 7305 components: - pos: -2.5,-59.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7301 + - uid: 7306 components: - pos: -6.5,-69.5 parent: 2 @@ -62342,21 +62339,21 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7302 + - uid: 7307 components: - pos: -8.5,-19.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7303 + - uid: 7308 components: - pos: -15.5,-72.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7304 + - uid: 7309 components: - pos: 11.5,-92.5 parent: 2 @@ -62365,7 +62362,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7305 + - uid: 7310 components: - pos: 18.5,-95.5 parent: 2 @@ -62374,7 +62371,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7306 + - uid: 7311 components: - pos: 12.5,-98.5 parent: 2 @@ -62383,14 +62380,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7307 + - uid: 7312 components: - pos: -1.5,-77.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7308 + - uid: 7313 components: - pos: -1.5,-80.5 parent: 2 @@ -62399,14 +62396,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7309 + - uid: 7314 components: - pos: -1.5,-68.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7310 + - uid: 7315 components: - pos: 12.5,-47.5 parent: 2 @@ -62415,14 +62412,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7311 + - uid: 7316 components: - pos: -12.5,-69.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7312 + - uid: 7317 components: - pos: 8.5,-92.5 parent: 2 @@ -62431,42 +62428,42 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7313 + - uid: 7318 components: - pos: 23.5,-17.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7314 + - uid: 7319 components: - pos: -14.5,-71.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7315 + - uid: 7320 components: - pos: -15.5,-73.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7316 + - uid: 7321 components: - pos: 15.5,-43.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7317 + - uid: 7322 components: - pos: -2.5,-63.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7318 + - uid: 7323 components: - pos: 12.5,-57.5 parent: 2 @@ -62475,7 +62472,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7319 + - uid: 7324 components: - pos: 9.5,-55.5 parent: 2 @@ -62484,14 +62481,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7320 + - uid: 7325 components: - pos: 15.5,-40.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7321 + - uid: 7326 components: - pos: -4.5,-69.5 parent: 2 @@ -62500,14 +62497,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7322 + - uid: 7327 components: - pos: -1.5,-65.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7323 + - uid: 7328 components: - pos: 14.5,-47.5 parent: 2 @@ -62516,7 +62513,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7324 + - uid: 7329 components: - pos: 14.5,-45.5 parent: 2 @@ -62525,84 +62522,84 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7325 + - uid: 7330 components: - pos: -0.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7326 + - uid: 7331 components: - pos: 1.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7327 + - uid: 7332 components: - pos: 3.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7328 + - uid: 7333 components: - pos: 5.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7329 + - uid: 7334 components: - pos: 31.5,-5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7330 + - uid: 7335 components: - pos: 25.5,-5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7331 + - uid: 7336 components: - pos: -4.5,-24.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7332 + - uid: 7337 components: - pos: -5.5,-40.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7333 + - uid: 7338 components: - pos: -5.5,-38.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7334 + - uid: 7339 components: - pos: -5.5,-26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7335 + - uid: 7340 components: - pos: 18.5,-29.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7336 + - uid: 7341 components: - pos: -0.5,-17.5 parent: 2 @@ -62611,7 +62608,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7337 + - uid: 7342 components: - pos: -1.5,-17.5 parent: 2 @@ -62620,7 +62617,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7338 + - uid: 7343 components: - pos: -1.5,-18.5 parent: 2 @@ -62629,28 +62626,28 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7339 + - uid: 7344 components: - pos: 30.5,-3.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7340 + - uid: 7345 components: - pos: 30.5,7.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7341 + - uid: 7346 components: - pos: -24.5,-14.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7342 + - uid: 7347 components: - pos: -6.5,-19.5 parent: 2 @@ -62659,35 +62656,35 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7343 + - uid: 7348 components: - pos: -5.5,-19.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7344 + - uid: 7349 components: - pos: -4.5,-19.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7345 + - uid: 7350 components: - pos: -4.5,-21.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7346 + - uid: 7351 components: - pos: -7.5,-19.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7347 + - uid: 7352 components: - pos: 2.5,-91.5 parent: 2 @@ -62696,7 +62693,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7348 + - uid: 7353 components: - pos: 11.5,-45.5 parent: 2 @@ -62705,7 +62702,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7349 + - uid: 7354 components: - pos: 13.5,-47.5 parent: 2 @@ -62714,7 +62711,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7350 + - uid: 7355 components: - pos: 11.5,-47.5 parent: 2 @@ -62723,7 +62720,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7351 + - uid: 7356 components: - pos: 7.5,-92.5 parent: 2 @@ -62732,7 +62729,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7352 + - uid: 7357 components: - pos: -3.5,-75.5 parent: 2 @@ -62741,14 +62738,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7353 + - uid: 7358 components: - pos: 20.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7354 + - uid: 7359 components: - pos: -65.5,-25.5 parent: 2 @@ -62757,14 +62754,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7355 + - uid: 7360 components: - pos: -24.5,-13.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7356 + - uid: 7361 components: - pos: 2.5,-89.5 parent: 2 @@ -62773,7 +62770,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7357 + - uid: 7362 components: - pos: -1.5,-84.5 parent: 2 @@ -62782,7 +62779,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7358 + - uid: 7363 components: - pos: -1.5,-85.5 parent: 2 @@ -62791,7 +62788,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7359 + - uid: 7364 components: - pos: 17.5,-95.5 parent: 2 @@ -62800,7 +62797,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7360 + - uid: 7365 components: - pos: 4.5,-95.5 parent: 2 @@ -62809,70 +62806,70 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7361 + - uid: 7366 components: - pos: 25.5,-11.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7362 + - uid: 7367 components: - pos: 25.5,-9.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7363 + - uid: 7368 components: - pos: 25.5,-8.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7364 + - uid: 7369 components: - pos: 25.5,-7.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7365 + - uid: 7370 components: - pos: 9.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7366 + - uid: 7371 components: - pos: 14.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7367 + - uid: 7372 components: - pos: 11.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7368 + - uid: 7373 components: - pos: 4.5,-26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7369 + - uid: 7374 components: - pos: -3.5,-20.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7370 + - uid: 7375 components: - pos: 10.5,-98.5 parent: 2 @@ -62881,7 +62878,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7371 + - uid: 7376 components: - pos: 7.5,-95.5 parent: 2 @@ -62890,42 +62887,42 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7372 + - uid: 7377 components: - pos: 15.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7373 + - uid: 7378 components: - pos: 15.5,-44.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7374 + - uid: 7379 components: - pos: 15.5,-36.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7375 + - uid: 7380 components: - pos: 15.5,-34.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7376 + - uid: 7381 components: - pos: 15.5,-32.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7377 + - uid: 7382 components: - pos: -3.5,-69.5 parent: 2 @@ -62934,7 +62931,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7378 + - uid: 7383 components: - pos: -5.5,-69.5 parent: 2 @@ -62943,7 +62940,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7379 + - uid: 7384 components: - pos: 14.5,-48.5 parent: 2 @@ -62952,7 +62949,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7380 + - uid: 7385 components: - pos: -6.5,-71.5 parent: 2 @@ -62961,7 +62958,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7381 + - uid: 7386 components: - pos: -6.5,-70.5 parent: 2 @@ -62970,7 +62967,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7382 + - uid: 7387 components: - pos: -8.5,-71.5 parent: 2 @@ -62979,7 +62976,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7383 + - uid: 7388 components: - pos: -10.5,-71.5 parent: 2 @@ -62988,7 +62985,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7384 + - uid: 7389 components: - pos: 14.5,-49.5 parent: 2 @@ -62997,7 +62994,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7385 + - uid: 7390 components: - pos: 13.5,-49.5 parent: 2 @@ -63006,14 +63003,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7386 + - uid: 7391 components: - pos: 11.5,-49.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7387 + - uid: 7392 components: - pos: -11.5,-71.5 parent: 2 @@ -63022,42 +63019,42 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7388 + - uid: 7393 components: - pos: 25.5,-17.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7389 + - uid: 7394 components: - pos: 38.5,-28.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7390 + - uid: 7395 components: - pos: 37.5,-30.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7391 + - uid: 7396 components: - pos: 35.5,-30.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7392 + - uid: 7397 components: - pos: 35.5,-29.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7393 + - uid: 7398 components: - pos: 9.5,-101.5 parent: 2 @@ -63066,175 +63063,175 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7394 + - uid: 7399 components: - pos: -11.5,58.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7395 + - uid: 7400 components: - pos: -12.5,58.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7396 + - uid: 7401 components: - pos: -15.5,44.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7397 + - uid: 7402 components: - pos: -16.5,44.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7398 + - uid: 7403 components: - pos: -17.5,44.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7399 + - uid: 7404 components: - pos: -17.5,45.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7400 + - uid: 7405 components: - pos: -17.5,46.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7401 + - uid: 7406 components: - pos: -17.5,47.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7402 + - uid: 7407 components: - pos: -17.5,48.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7403 + - uid: 7408 components: - pos: -17.5,49.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7404 + - uid: 7409 components: - pos: -17.5,50.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7405 + - uid: 7410 components: - pos: -16.5,50.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7406 + - uid: 7411 components: - pos: -13.5,50.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7407 + - uid: 7412 components: - pos: -15.5,50.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7408 + - uid: 7413 components: - pos: -14.5,50.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7409 + - uid: 7414 components: - pos: -13.5,58.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7410 + - uid: 7415 components: - pos: -13.5,57.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7411 + - uid: 7416 components: - pos: -13.5,51.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7412 + - uid: 7417 components: - pos: -13.5,52.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7413 + - uid: 7418 components: - pos: -13.5,53.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7414 + - uid: 7419 components: - pos: -13.5,54.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7415 + - uid: 7420 components: - pos: -13.5,55.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7416 + - uid: 7421 components: - pos: -13.5,56.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7417 + - uid: 7422 components: - pos: 15.5,-39.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7418 + - uid: 7423 components: - pos: -6.5,-75.5 parent: 2 @@ -63243,21 +63240,21 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7419 + - uid: 7424 components: - pos: 18.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7420 + - uid: 7425 components: - pos: -24.5,-15.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7421 + - uid: 7426 components: - pos: 17.5,-29.5 parent: 2 @@ -63266,49 +63263,49 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7422 + - uid: 7427 components: - pos: 35.5,-38.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7423 + - uid: 7428 components: - pos: 26.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7424 + - uid: 7429 components: - pos: -13.5,-26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7425 + - uid: 7430 components: - pos: -10.5,-26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7426 + - uid: 7431 components: - pos: -5.5,-34.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7427 + - uid: 7432 components: - pos: -5.5,-41.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7428 + - uid: 7433 components: - pos: 13.5,-57.5 parent: 2 @@ -63317,14 +63314,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7429 + - uid: 7434 components: - pos: 12.5,-55.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7430 + - uid: 7435 components: - pos: 8.5,-52.5 parent: 2 @@ -63333,21 +63330,21 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7431 + - uid: 7436 components: - pos: -11.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7432 + - uid: 7437 components: - pos: -8.5,-26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7433 + - uid: 7438 components: - pos: -13.5,-73.5 parent: 2 @@ -63356,126 +63353,126 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7434 + - uid: 7439 components: - pos: 25.5,-47.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7435 + - uid: 7440 components: - pos: -5.5,-31.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7436 + - uid: 7441 components: - pos: -5.5,-33.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7437 + - uid: 7442 components: - pos: -14.5,-26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7438 + - uid: 7443 components: - pos: -15.5,-26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7439 + - uid: 7444 components: - pos: -3.5,-26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7440 + - uid: 7445 components: - pos: -2.5,-26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7441 + - uid: 7446 components: - pos: -0.5,-26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7442 + - uid: 7447 components: - pos: 9.5,-26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7443 + - uid: 7448 components: - pos: 13.5,-26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7444 + - uid: 7449 components: - pos: 15.5,-29.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7445 + - uid: 7450 components: - pos: -4.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7446 + - uid: 7451 components: - pos: -7.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7447 + - uid: 7452 components: - pos: -8.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7448 + - uid: 7453 components: - pos: -10.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7449 + - uid: 7454 components: - pos: -12.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7450 + - uid: 7455 components: - pos: -13.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7451 + - uid: 7456 components: - pos: 10.5,-51.5 parent: 2 @@ -63484,14 +63481,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7452 + - uid: 7457 components: - pos: -15.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7453 + - uid: 7458 components: - pos: -12.5,-70.5 parent: 2 @@ -63500,7 +63497,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7454 + - uid: 7459 components: - pos: -8.5,-75.5 parent: 2 @@ -63509,14 +63506,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7455 + - uid: 7460 components: - pos: -18.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7456 + - uid: 7461 components: - pos: 15.5,-95.5 parent: 2 @@ -63525,14 +63522,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7457 + - uid: 7462 components: - pos: 25.5,-50.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7458 + - uid: 7463 components: - pos: 9.5,-92.5 parent: 2 @@ -63541,7 +63538,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7459 + - uid: 7464 components: - pos: 13.5,-95.5 parent: 2 @@ -63550,56 +63547,56 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7460 + - uid: 7465 components: - pos: 34.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7461 + - uid: 7466 components: - pos: 35.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7462 + - uid: 7467 components: - pos: 25.5,-45.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7463 + - uid: 7468 components: - pos: 35.5,-32.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7464 + - uid: 7469 components: - pos: 35.5,-36.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7465 + - uid: 7470 components: - pos: 70.5,-46.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7466 + - uid: 7471 components: - pos: -12.5,-74.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7467 + - uid: 7472 components: - pos: -0.5,-72.5 parent: 2 @@ -63608,7 +63605,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7468 + - uid: 7473 components: - pos: 11.5,-105.5 parent: 2 @@ -63617,7 +63614,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7469 + - uid: 7474 components: - pos: -1.5,-86.5 parent: 2 @@ -63626,28 +63623,28 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7470 + - uid: 7475 components: - pos: -16.5,-26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7471 + - uid: 7476 components: - pos: 11.5,-26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7472 + - uid: 7477 components: - pos: -17.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7473 + - uid: 7478 components: - pos: -9.5,-71.5 parent: 2 @@ -63656,7 +63653,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7474 + - uid: 7479 components: - pos: 6.5,-14.5 parent: 2 @@ -63665,84 +63662,84 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7475 + - uid: 7480 components: - pos: 19.5,-28.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7476 + - uid: 7481 components: - pos: -4.5,-19.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7477 + - uid: 7482 components: - pos: -5.5,-32.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7478 + - uid: 7483 components: - pos: 25.5,-48.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7479 + - uid: 7484 components: - pos: -9.5,-26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7480 + - uid: 7485 components: - pos: 25.5,-46.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7481 + - uid: 7486 components: - pos: -5.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7482 + - uid: 7487 components: - pos: 19.5,-29.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7483 + - uid: 7488 components: - pos: 15.5,-38.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7484 + - uid: 7489 components: - pos: -5.5,-36.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7485 + - uid: 7490 components: - pos: 25.5,-51.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7486 + - uid: 7491 components: - pos: 15.5,-45.5 parent: 2 @@ -63751,14 +63748,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7487 + - uid: 7492 components: - pos: 15.5,-31.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7488 + - uid: 7493 components: - pos: 6.5,-95.5 parent: 2 @@ -63767,28 +63764,28 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7489 + - uid: 7494 components: - pos: 15.5,-35.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7490 + - uid: 7495 components: - pos: -16.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7491 + - uid: 7496 components: - pos: 15.5,-30.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7492 + - uid: 7497 components: - pos: 10.5,-50.5 parent: 2 @@ -63797,63 +63794,63 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7493 + - uid: 7498 components: - pos: -1.5,-63.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7494 + - uid: 7499 components: - pos: -12.5,-26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7495 + - uid: 7500 components: - pos: 0.5,-26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7496 + - uid: 7501 components: - pos: 14.5,-26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7497 + - uid: 7502 components: - pos: 15.5,-27.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7498 + - uid: 7503 components: - pos: -6.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7499 + - uid: 7504 components: - pos: -3.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7500 + - uid: 7505 components: - pos: -2.5,-20.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7501 + - uid: 7506 components: - pos: -1.5,-19.5 parent: 2 @@ -63862,7 +63859,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7502 + - uid: 7507 components: - pos: -1.5,-20.5 parent: 2 @@ -63871,21 +63868,21 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7503 + - uid: 7508 components: - pos: 30.5,-2.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7504 + - uid: 7509 components: - pos: 30.5,-4.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7505 + - uid: 7510 components: - pos: -4.5,-75.5 parent: 2 @@ -63894,56 +63891,56 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7506 + - uid: 7511 components: - pos: 24.5,-17.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7507 + - uid: 7512 components: - pos: 25.5,-16.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7508 + - uid: 7513 components: - pos: 25.5,-15.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7509 + - uid: 7514 components: - pos: 17.5,-5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7510 + - uid: 7515 components: - pos: 32.5,-17.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7511 + - uid: 7516 components: - pos: 35.5,-21.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7512 + - uid: 7517 components: - pos: -13.5,-71.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7513 + - uid: 7518 components: - pos: 9.5,-95.5 parent: 2 @@ -63952,7 +63949,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7514 + - uid: 7519 components: - pos: 13.5,-98.5 parent: 2 @@ -63961,7 +63958,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7515 + - uid: 7520 components: - pos: -2.5,-77.5 parent: 2 @@ -63970,7 +63967,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7516 + - uid: 7521 components: - pos: -2.5,-78.5 parent: 2 @@ -63979,7 +63976,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7517 + - uid: 7522 components: - pos: -1.5,-82.5 parent: 2 @@ -63988,7 +63985,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7518 + - uid: 7523 components: - pos: -9.5,-75.5 parent: 2 @@ -63997,49 +63994,49 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7519 + - uid: 7524 components: - pos: 28.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7520 + - uid: 7525 components: - pos: -4.5,-23.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7521 + - uid: 7526 components: - pos: -5.5,-28.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7522 + - uid: 7527 components: - pos: -5.5,-35.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7523 + - uid: 7528 components: - pos: 10.5,-26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7524 + - uid: 7529 components: - pos: 8.5,-26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7525 + - uid: 7530 components: - pos: -7.5,-71.5 parent: 2 @@ -64048,35 +64045,35 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7526 + - uid: 7531 components: - pos: 19.5,-28.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7527 + - uid: 7532 components: - pos: -7.5,-26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7528 + - uid: 7533 components: - pos: -6.5,-26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7529 + - uid: 7534 components: - pos: -9.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7530 + - uid: 7535 components: - pos: 8.5,-98.5 parent: 2 @@ -64085,7 +64082,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7531 + - uid: 7536 components: - pos: 2.5,-90.5 parent: 2 @@ -64094,14 +64091,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7532 + - uid: 7537 components: - pos: 15.5,-31.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7533 + - uid: 7538 components: - pos: 14.5,-95.5 parent: 2 @@ -64110,14 +64107,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7534 + - uid: 7539 components: - pos: -5.5,-37.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7535 + - uid: 7540 components: - pos: -14.5,-73.5 parent: 2 @@ -64126,21 +64123,21 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7536 + - uid: 7541 components: - pos: 35.5,-28.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7537 + - uid: 7542 components: - pos: -14.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7538 + - uid: 7543 components: - pos: 1.5,-89.5 parent: 2 @@ -64149,7 +64146,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7539 + - uid: 7544 components: - pos: 3.5,-92.5 parent: 2 @@ -64158,7 +64155,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7540 + - uid: 7545 components: - pos: 5.5,-95.5 parent: 2 @@ -64167,7 +64164,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7541 + - uid: 7546 components: - pos: 13.5,-101.5 parent: 2 @@ -64176,7 +64173,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7542 + - uid: 7547 components: - pos: 9.5,-14.5 parent: 2 @@ -64185,28 +64182,28 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7543 + - uid: 7548 components: - pos: -4.5,-20.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7544 + - uid: 7549 components: - pos: 16.5,-29.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7545 + - uid: 7550 components: - pos: -4.5,-26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7546 + - uid: 7551 components: - pos: 16.5,-95.5 parent: 2 @@ -64215,21 +64212,21 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7547 + - uid: 7552 components: - pos: -2.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7548 + - uid: 7553 components: - pos: 16.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7549 + - uid: 7554 components: - pos: 7.5,-14.5 parent: 2 @@ -64238,7 +64235,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7550 + - uid: 7555 components: - pos: 12.5,-101.5 parent: 2 @@ -64247,7 +64244,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7551 + - uid: 7556 components: - pos: 10.5,-101.5 parent: 2 @@ -64256,7 +64253,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7552 + - uid: 7557 components: - pos: 8.5,-101.5 parent: 2 @@ -64265,7 +64262,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7553 + - uid: 7558 components: - pos: 14.5,-101.5 parent: 2 @@ -64274,7 +64271,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7554 + - uid: 7559 components: - pos: 9.5,-104.5 parent: 2 @@ -64283,7 +64280,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7555 + - uid: 7560 components: - pos: 13.5,-104.5 parent: 2 @@ -64292,7 +64289,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7556 + - uid: 7561 components: - pos: 9.5,-98.5 parent: 2 @@ -64301,7 +64298,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7557 + - uid: 7562 components: - pos: -1.5,-83.5 parent: 2 @@ -64310,7 +64307,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7558 + - uid: 7563 components: - pos: -1.5,-81.5 parent: 2 @@ -64319,28 +64316,28 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7559 + - uid: 7564 components: - pos: -1.5,-79.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7560 + - uid: 7565 components: - pos: -2.5,-79.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7561 + - uid: 7566 components: - pos: -2.5,-75.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7562 + - uid: 7567 components: - pos: -2.5,-76.5 parent: 2 @@ -64349,448 +64346,448 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7563 + - uid: 7568 components: - pos: -10.5,-75.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7564 + - uid: 7569 components: - pos: 15.5,-58.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7565 + - uid: 7570 components: - pos: -5.5,-27.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7566 + - uid: 7571 components: - pos: -5.5,-29.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7567 + - uid: 7572 components: - pos: 21.5,-17.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7568 + - uid: 7573 components: - pos: 22.5,-17.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7569 + - uid: 7574 components: - pos: 20.5,-17.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7570 + - uid: 7575 components: - pos: 19.5,-17.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7571 + - uid: 7576 components: - pos: 18.5,-17.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7572 + - uid: 7577 components: - pos: 17.5,-17.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7573 + - uid: 7578 components: - pos: 16.5,-17.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7574 + - uid: 7579 components: - pos: 15.5,-22.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7575 + - uid: 7580 components: - pos: 15.5,-17.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7576 + - uid: 7581 components: - pos: 15.5,-18.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7577 + - uid: 7582 components: - pos: 15.5,-19.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7578 + - uid: 7583 components: - pos: 15.5,-20.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7579 + - uid: 7584 components: - pos: 15.5,-21.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7580 + - uid: 7585 components: - pos: 15.5,-23.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7581 + - uid: 7586 components: - pos: 15.5,-24.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7582 + - uid: 7587 components: - pos: 15.5,-25.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7583 + - uid: 7588 components: - pos: 18.5,-5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7584 + - uid: 7589 components: - pos: 19.5,-5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7585 + - uid: 7590 components: - pos: 20.5,-5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7586 + - uid: 7591 components: - pos: 21.5,-5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7587 + - uid: 7592 components: - pos: 22.5,-5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7588 + - uid: 7593 components: - pos: 23.5,-5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7589 + - uid: 7594 components: - pos: 31.5,-17.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7590 + - uid: 7595 components: - pos: 30.5,-17.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7591 + - uid: 7596 components: - pos: 29.5,-17.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7592 + - uid: 7597 components: - pos: 28.5,-17.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7593 + - uid: 7598 components: - pos: 27.5,-17.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7594 + - uid: 7599 components: - pos: 26.5,-17.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7595 + - uid: 7600 components: - pos: 35.5,-20.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7596 + - uid: 7601 components: - pos: 35.5,-19.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7597 + - uid: 7602 components: - pos: 35.5,-18.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7598 + - uid: 7603 components: - pos: 35.5,-17.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7599 + - uid: 7604 components: - pos: 34.5,-17.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7600 + - uid: 7605 components: - pos: 33.5,-17.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7601 + - uid: 7606 components: - pos: 35.5,-27.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7602 + - uid: 7607 components: - pos: 35.5,-26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7603 + - uid: 7608 components: - pos: 35.5,-25.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7604 + - uid: 7609 components: - pos: 35.5,-24.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7605 + - uid: 7610 components: - pos: 35.5,-23.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7606 + - uid: 7611 components: - pos: 35.5,-22.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7607 + - uid: 7612 components: - pos: 30.5,-5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7608 + - uid: 7613 components: - pos: 29.5,-5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7609 + - uid: 7614 components: - pos: 28.5,-5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7610 + - uid: 7615 components: - pos: 27.5,-5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7611 + - uid: 7616 components: - pos: 26.5,-5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7612 + - uid: 7617 components: - pos: 33.5,-2.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7613 + - uid: 7618 components: - pos: 33.5,-3.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7614 + - uid: 7619 components: - pos: 33.5,-4.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7615 + - uid: 7620 components: - pos: 33.5,-5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7616 + - uid: 7621 components: - pos: 32.5,-5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7617 + - uid: 7622 components: - pos: 39.5,-30.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7618 + - uid: 7623 components: - pos: 35.5,-31.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7619 + - uid: 7624 components: - pos: 35.5,-33.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7620 + - uid: 7625 components: - pos: 35.5,-35.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7621 + - uid: 7626 components: - pos: 35.5,-37.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7622 + - uid: 7627 components: - pos: 35.5,-39.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7623 + - uid: 7628 components: - pos: 35.5,-41.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7624 + - uid: 7629 components: - pos: 17.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7625 + - uid: 7630 components: - pos: 19.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7626 + - uid: 7631 components: - pos: 10.5,-52.5 parent: 2 @@ -64799,588 +64796,588 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7627 + - uid: 7632 components: - pos: 33.5,-1.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7628 + - uid: 7633 components: - pos: 33.5,-0.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7629 + - uid: 7634 components: - pos: 33.5,0.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7630 + - uid: 7635 components: - pos: 33.5,1.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7631 + - uid: 7636 components: - pos: 33.5,2.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7632 + - uid: 7637 components: - pos: 33.5,3.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7633 + - uid: 7638 components: - pos: 33.5,4.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7634 + - uid: 7639 components: - pos: 33.5,5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7635 + - uid: 7640 components: - pos: 33.5,6.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7636 + - uid: 7641 components: - pos: 33.5,7.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7637 + - uid: 7642 components: - pos: 32.5,7.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7638 + - uid: 7643 components: - pos: 31.5,7.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7639 + - uid: 7644 components: - pos: 29.5,7.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7640 + - uid: 7645 components: - pos: 28.5,7.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7641 + - uid: 7646 components: - pos: 27.5,7.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7642 + - uid: 7647 components: - pos: 26.5,7.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7643 + - uid: 7648 components: - pos: 25.5,7.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7644 + - uid: 7649 components: - pos: 24.5,7.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7645 + - uid: 7650 components: - pos: 23.5,7.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7646 + - uid: 7651 components: - pos: 22.5,7.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7647 + - uid: 7652 components: - pos: 21.5,7.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7648 + - uid: 7653 components: - pos: 20.5,7.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7649 + - uid: 7654 components: - pos: 19.5,7.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7650 + - uid: 7655 components: - pos: 18.5,7.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7651 + - uid: 7656 components: - pos: 17.5,7.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7652 + - uid: 7657 components: - pos: 17.5,6.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7653 + - uid: 7658 components: - pos: 17.5,5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7654 + - uid: 7659 components: - pos: 17.5,4.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7655 + - uid: 7660 components: - pos: 17.5,3.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7656 + - uid: 7661 components: - pos: 17.5,2.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7657 + - uid: 7662 components: - pos: 17.5,1.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7658 + - uid: 7663 components: - pos: 17.5,0.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7659 + - uid: 7664 components: - pos: 17.5,-0.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7660 + - uid: 7665 components: - pos: 17.5,-1.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7661 + - uid: 7666 components: - pos: 17.5,-2.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7662 + - uid: 7667 components: - pos: 17.5,-3.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7663 + - uid: 7668 components: - pos: 17.5,-4.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7664 + - uid: 7669 components: - pos: -4.5,-17.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7665 + - uid: 7670 components: - pos: -4.5,-16.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7666 + - uid: 7671 components: - pos: -4.5,-15.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7667 + - uid: 7672 components: - pos: -4.5,-14.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7668 + - uid: 7673 components: - pos: -4.5,-13.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7669 + - uid: 7674 components: - pos: -4.5,-12.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7670 + - uid: 7675 components: - pos: -4.5,-11.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7671 + - uid: 7676 components: - pos: -4.5,-10.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7672 + - uid: 7677 components: - pos: -4.5,-9.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7673 + - uid: 7678 components: - pos: -4.5,-8.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7674 + - uid: 7679 components: - pos: -4.5,-7.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7675 + - uid: 7680 components: - pos: -4.5,-6.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7676 + - uid: 7681 components: - pos: -4.5,-5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7677 + - uid: 7682 components: - pos: -4.5,-4.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7678 + - uid: 7683 components: - pos: -4.5,-3.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7679 + - uid: 7684 components: - pos: -4.5,-2.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7680 + - uid: 7685 components: - pos: -4.5,-1.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7681 + - uid: 7686 components: - pos: -4.5,-0.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7682 + - uid: 7687 components: - pos: -4.5,0.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7683 + - uid: 7688 components: - pos: -4.5,1.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7684 + - uid: 7689 components: - pos: 25.5,8.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7685 + - uid: 7690 components: - pos: 25.5,9.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7686 + - uid: 7691 components: - pos: 24.5,9.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7687 + - uid: 7692 components: - pos: 24.5,10.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7688 + - uid: 7693 components: - pos: 24.5,11.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7689 + - uid: 7694 components: - pos: 24.5,12.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7690 + - uid: 7695 components: - pos: 24.5,13.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7691 + - uid: 7696 components: - pos: 24.5,14.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7692 + - uid: 7697 components: - pos: 24.5,15.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7693 + - uid: 7698 components: - pos: 24.5,16.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7694 + - uid: 7699 components: - pos: 23.5,16.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7695 + - uid: 7700 components: - pos: 22.5,16.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7696 + - uid: 7701 components: - pos: 24.5,17.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7697 + - uid: 7702 components: - pos: 24.5,18.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7698 + - uid: 7703 components: - pos: 25.5,18.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7699 + - uid: 7704 components: - pos: 26.5,18.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7700 + - uid: 7705 components: - pos: 27.5,18.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7701 + - uid: 7706 components: - pos: 28.5,18.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7702 + - uid: 7707 components: - pos: 29.5,18.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7703 + - uid: 7708 components: - pos: 29.5,20.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7704 + - uid: 7709 components: - pos: 29.5,19.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7705 + - uid: 7710 components: - pos: 29.5,21.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7706 + - uid: 7711 components: - pos: 30.5,21.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7707 + - uid: 7712 components: - pos: 31.5,21.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7708 + - uid: 7713 components: - pos: 32.5,21.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7709 + - uid: 7714 components: - pos: 32.5,22.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7710 + - uid: 7715 components: - pos: 32.5,23.5 parent: 2 @@ -65389,98 +65386,98 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7711 + - uid: 7716 components: - pos: 32.5,24.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7712 + - uid: 7717 components: - pos: 32.5,25.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7713 + - uid: 7718 components: - pos: 22.5,17.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7714 + - uid: 7719 components: - pos: 22.5,18.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7715 + - uid: 7720 components: - pos: 22.5,19.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7716 + - uid: 7721 components: - pos: 22.5,20.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7717 + - uid: 7722 components: - pos: 22.5,21.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7718 + - uid: 7723 components: - pos: 22.5,22.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7719 + - uid: 7724 components: - pos: 21.5,22.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7720 + - uid: 7725 components: - pos: 21.5,23.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7721 + - uid: 7726 components: - pos: 21.5,24.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7722 + - uid: 7727 components: - pos: 21.5,25.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7723 + - uid: 7728 components: - pos: 20.5,25.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7724 + - uid: 7729 components: - pos: 18.5,25.5 parent: 2 @@ -65489,7 +65486,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7725 + - uid: 7730 components: - pos: 19.5,25.5 parent: 2 @@ -65498,175 +65495,175 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7726 + - uid: 7731 components: - pos: 33.5,25.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7727 + - uid: 7732 components: - pos: -4.5,2.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7728 + - uid: 7733 components: - pos: -5.5,2.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7729 + - uid: 7734 components: - pos: -6.5,2.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7730 + - uid: 7735 components: - pos: -7.5,2.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7731 + - uid: 7736 components: - pos: -8.5,2.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7732 + - uid: 7737 components: - pos: -9.5,2.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7733 + - uid: 7738 components: - pos: -10.5,2.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7734 + - uid: 7739 components: - pos: -11.5,2.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7735 + - uid: 7740 components: - pos: -12.5,2.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7736 + - uid: 7741 components: - pos: -13.5,2.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7737 + - uid: 7742 components: - pos: -2.5,-62.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7738 + - uid: 7743 components: - pos: 34.5,1.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7739 + - uid: 7744 components: - pos: 35.5,1.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7740 + - uid: 7745 components: - pos: 36.5,1.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7741 + - uid: 7746 components: - pos: 36.5,2.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7742 + - uid: 7747 components: - pos: 37.5,2.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7743 + - uid: 7748 components: - pos: 38.5,2.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7744 + - uid: 7749 components: - pos: 39.5,2.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7745 + - uid: 7750 components: - pos: 40.5,2.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7746 + - uid: 7751 components: - pos: 41.5,2.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7747 + - uid: 7752 components: - pos: 42.5,2.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7748 + - uid: 7753 components: - pos: 44.5,2.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7749 + - uid: 7754 components: - pos: 43.5,2.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7750 + - uid: 7755 components: - pos: -10.5,26.5 parent: 2 @@ -65675,14 +65672,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7751 + - uid: 7756 components: - pos: -14.5,35.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7752 + - uid: 7757 components: - pos: -9.5,26.5 parent: 2 @@ -65691,77 +65688,77 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7753 + - uid: 7758 components: - pos: -20.5,29.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7754 + - uid: 7759 components: - pos: -18.5,29.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7755 + - uid: 7760 components: - pos: -20.5,28.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7756 + - uid: 7761 components: - pos: -14.5,31.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7757 + - uid: 7762 components: - pos: -19.5,29.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7758 + - uid: 7763 components: - pos: -14.5,33.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7759 + - uid: 7764 components: - pos: -20.5,26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7760 + - uid: 7765 components: - pos: -20.5,27.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7761 + - uid: 7766 components: - pos: -14.5,39.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7762 + - uid: 7767 components: - pos: -14.5,40.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7763 + - uid: 7768 components: - pos: -9.5,27.5 parent: 2 @@ -65770,35 +65767,35 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7764 + - uid: 7769 components: - pos: -9.5,29.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7765 + - uid: 7770 components: - pos: -8.5,29.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7766 + - uid: 7771 components: - pos: -8.5,30.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7767 + - uid: 7772 components: - pos: -8.5,31.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7768 + - uid: 7773 components: - pos: 16.5,27.5 parent: 2 @@ -65807,7 +65804,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7769 + - uid: 7774 components: - pos: 16.5,26.5 parent: 2 @@ -65816,7 +65813,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7770 + - uid: 7775 components: - pos: 16.5,25.5 parent: 2 @@ -65825,7 +65822,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7771 + - uid: 7776 components: - pos: 17.5,25.5 parent: 2 @@ -65834,98 +65831,98 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7772 + - uid: 7777 components: - pos: 45.5,2.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7773 + - uid: 7778 components: - pos: 46.5,2.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7774 + - uid: 7779 components: - pos: 47.5,2.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7775 + - uid: 7780 components: - pos: 48.5,2.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7776 + - uid: 7781 components: - pos: 49.5,2.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7777 + - uid: 7782 components: - pos: 50.5,2.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7778 + - uid: 7783 components: - pos: 51.5,2.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7779 + - uid: 7784 components: - pos: 52.5,2.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7780 + - uid: 7785 components: - pos: 52.5,1.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7781 + - uid: 7786 components: - pos: 52.5,0.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7782 + - uid: 7787 components: - pos: 52.5,-0.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7783 + - uid: 7788 components: - pos: 53.5,1.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7784 + - uid: 7789 components: - pos: 54.5,1.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7785 + - uid: 7790 components: - pos: 55.5,1.5 parent: 2 @@ -65934,7 +65931,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7786 + - uid: 7791 components: - pos: 56.5,1.5 parent: 2 @@ -65943,7 +65940,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7787 + - uid: 7792 components: - pos: 57.5,1.5 parent: 2 @@ -65952,7 +65949,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7788 + - uid: 7793 components: - pos: 58.5,1.5 parent: 2 @@ -65961,7 +65958,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7789 + - uid: 7794 components: - pos: 59.5,1.5 parent: 2 @@ -65970,7 +65967,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7790 + - uid: 7795 components: - pos: 60.5,1.5 parent: 2 @@ -65979,7 +65976,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7791 + - uid: 7796 components: - pos: 61.5,1.5 parent: 2 @@ -65988,7 +65985,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7792 + - uid: 7797 components: - pos: 62.5,1.5 parent: 2 @@ -65997,7 +65994,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7793 + - uid: 7798 components: - pos: 62.5,2.5 parent: 2 @@ -66006,7 +66003,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7794 + - uid: 7799 components: - pos: 62.5,3.5 parent: 2 @@ -66015,504 +66012,504 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7795 + - uid: 7800 components: - pos: 62.5,4.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7796 + - uid: 7801 components: - pos: 62.5,5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7797 + - uid: 7802 components: - pos: 62.5,6.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7798 + - uid: 7803 components: - pos: 62.5,7.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7799 + - uid: 7804 components: - pos: 63.5,7.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7800 + - uid: 7805 components: - pos: 25.5,-52.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7801 + - uid: 7806 components: - pos: 25.5,-53.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7802 + - uid: 7807 components: - pos: 25.5,-54.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7803 + - uid: 7808 components: - pos: 25.5,-55.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7804 + - uid: 7809 components: - pos: 25.5,-56.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7805 + - uid: 7810 components: - pos: 25.5,-57.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7806 + - uid: 7811 components: - pos: 25.5,-58.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7807 + - uid: 7812 components: - pos: 25.5,-59.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7808 + - uid: 7813 components: - pos: 26.5,-59.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7809 + - uid: 7814 components: - pos: 27.5,-59.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7810 + - uid: 7815 components: - pos: 28.5,-59.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7811 + - uid: 7816 components: - pos: 29.5,-59.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7812 + - uid: 7817 components: - pos: 30.5,-59.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7813 + - uid: 7818 components: - pos: 31.5,-59.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7814 + - uid: 7819 components: - pos: 32.5,-59.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7815 + - uid: 7820 components: - pos: 33.5,-59.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7816 + - uid: 7821 components: - pos: 34.5,-59.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7817 + - uid: 7822 components: - pos: -13.5,1.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7818 + - uid: 7823 components: - pos: -13.5,0.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7819 + - uid: 7824 components: - pos: -13.5,-0.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7820 + - uid: 7825 components: - pos: -13.5,-1.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7821 + - uid: 7826 components: - pos: -13.5,-2.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7822 + - uid: 7827 components: - pos: -13.5,-3.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7823 + - uid: 7828 components: - pos: -13.5,-4.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7824 + - uid: 7829 components: - pos: -13.5,-5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7825 + - uid: 7830 components: - pos: -14.5,-5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7826 + - uid: 7831 components: - pos: -15.5,-5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7827 + - uid: 7832 components: - pos: -16.5,-5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7828 + - uid: 7833 components: - pos: -17.5,-5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7829 + - uid: 7834 components: - pos: -18.5,-5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7830 + - uid: 7835 components: - pos: -19.5,-5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7831 + - uid: 7836 components: - pos: -19.5,-6.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7832 + - uid: 7837 components: - pos: -19.5,-7.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7833 + - uid: 7838 components: - pos: -19.5,-8.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7834 + - uid: 7839 components: - pos: -19.5,-9.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7835 + - uid: 7840 components: - pos: -19.5,-10.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7836 + - uid: 7841 components: - pos: -19.5,-11.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7837 + - uid: 7842 components: - pos: -19.5,-12.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7838 + - uid: 7843 components: - pos: -19.5,-13.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7839 + - uid: 7844 components: - pos: -19.5,-14.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7840 + - uid: 7845 components: - pos: -19.5,-15.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7841 + - uid: 7846 components: - pos: -19.5,-16.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7842 + - uid: 7847 components: - pos: -19.5,-17.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7843 + - uid: 7848 components: - pos: -19.5,-18.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7844 + - uid: 7849 components: - pos: -19.5,-19.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7845 + - uid: 7850 components: - pos: -19.5,-20.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7846 + - uid: 7851 components: - pos: -19.5,-21.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7847 + - uid: 7852 components: - pos: -19.5,-22.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7848 + - uid: 7853 components: - pos: -19.5,-23.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7849 + - uid: 7854 components: - pos: -19.5,-24.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7850 + - uid: 7855 components: - pos: -19.5,-25.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7851 + - uid: 7856 components: - pos: -19.5,-26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7852 + - uid: 7857 components: - pos: -19.5,-27.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7853 + - uid: 7858 components: - pos: -18.5,-26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7854 + - uid: 7859 components: - pos: 4.5,-15.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7855 + - uid: 7860 components: - pos: 52.5,-1.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7856 + - uid: 7861 components: - pos: 52.5,-2.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7857 + - uid: 7862 components: - pos: 52.5,-3.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7858 + - uid: 7863 components: - pos: 52.5,-4.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7859 + - uid: 7864 components: - pos: 52.5,-5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7860 + - uid: 7865 components: - pos: 52.5,-6.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7861 + - uid: 7866 components: - pos: 52.5,-7.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7862 + - uid: 7867 components: - pos: 51.5,-7.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7863 + - uid: 7868 components: - pos: 50.5,-7.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7864 + - uid: 7869 components: - pos: 51.5,-1.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7865 + - uid: 7870 components: - pos: 50.5,-1.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7866 + - uid: 7871 components: - pos: 49.5,-1.5 parent: 2 @@ -66521,56 +66518,56 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7867 + - uid: 7872 components: - pos: 48.5,-1.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7868 + - uid: 7873 components: - pos: 48.5,-2.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7869 + - uid: 7874 components: - pos: 48.5,-3.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7870 + - uid: 7875 components: - pos: 47.5,-3.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7871 + - uid: 7876 components: - pos: 71.5,-46.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7872 + - uid: 7877 components: - pos: 49.5,-7.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7873 + - uid: 7878 components: - pos: 49.5,-6.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7874 + - uid: 7879 components: - pos: 49.5,-5.5 parent: 2 @@ -66579,7 +66576,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7875 + - uid: 7880 components: - pos: 48.5,-5.5 parent: 2 @@ -66588,7 +66585,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7876 + - uid: 7881 components: - pos: 38.5,-44.5 parent: 2 @@ -66597,175 +66594,175 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7877 + - uid: 7882 components: - pos: -24.5,-16.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7878 + - uid: 7883 components: - pos: 36.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7879 + - uid: 7884 components: - pos: 37.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7880 + - uid: 7885 components: - pos: 38.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7881 + - uid: 7886 components: - pos: 39.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7882 + - uid: 7887 components: - pos: 40.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7883 + - uid: 7888 components: - pos: 41.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7884 + - uid: 7889 components: - pos: 42.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7885 + - uid: 7890 components: - pos: 43.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7886 + - uid: 7891 components: - pos: 44.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7887 + - uid: 7892 components: - pos: 45.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7888 + - uid: 7893 components: - pos: 46.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7889 + - uid: 7894 components: - pos: 47.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7890 + - uid: 7895 components: - pos: 48.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7891 + - uid: 7896 components: - pos: 49.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7892 + - uid: 7897 components: - pos: 49.5,-43.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7893 + - uid: 7898 components: - pos: 49.5,-44.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7894 + - uid: 7899 components: - pos: 38.5,-45.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7895 + - uid: 7900 components: - pos: 38.5,-43.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7896 + - uid: 7901 components: - pos: 38.5,-46.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7897 + - uid: 7902 components: - pos: -19.5,-4.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7898 + - uid: 7903 components: - pos: -19.5,-3.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7899 + - uid: 7904 components: - pos: -19.5,-2.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7900 + - uid: 7905 components: - pos: -19.5,-1.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7901 + - uid: 7906 components: - pos: -19.5,-0.5 parent: 2 @@ -66774,7 +66771,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7902 + - uid: 7907 components: - pos: -18.5,-0.5 parent: 2 @@ -66783,7 +66780,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7903 + - uid: 7908 components: - pos: -17.5,-0.5 parent: 2 @@ -66792,7 +66789,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7904 + - uid: 7909 components: - pos: -16.5,-0.5 parent: 2 @@ -66801,98 +66798,98 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7905 + - uid: 7910 components: - pos: -20.5,-12.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7906 + - uid: 7911 components: - pos: -21.5,-12.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7907 + - uid: 7912 components: - pos: -23.5,-12.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7908 + - uid: 7913 components: - pos: -22.5,-12.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7909 + - uid: 7914 components: - pos: -24.5,-17.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7910 + - uid: 7915 components: - pos: -25.5,-17.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7911 + - uid: 7916 components: - pos: -26.5,-17.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7912 + - uid: 7917 components: - pos: -27.5,-17.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7913 + - uid: 7918 components: - pos: -28.5,-17.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7914 + - uid: 7919 components: - pos: -29.5,-17.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7915 + - uid: 7920 components: - pos: -30.5,-17.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7916 + - uid: 7921 components: - pos: -31.5,-17.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7917 + - uid: 7922 components: - pos: -20.5,-22.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7918 + - uid: 7923 components: - pos: -21.5,-22.5 parent: 2 @@ -66901,294 +66898,294 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7919 + - uid: 7924 components: - pos: -22.5,-22.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7920 + - uid: 7925 components: - pos: -23.5,-22.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7921 + - uid: 7926 components: - pos: -24.5,-22.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7922 + - uid: 7927 components: - pos: -25.5,-22.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7923 + - uid: 7928 components: - pos: -26.5,-22.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7924 + - uid: 7929 components: - pos: -27.5,-22.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7925 + - uid: 7930 components: - pos: -28.5,-22.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7926 + - uid: 7931 components: - pos: -28.5,-23.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7927 + - uid: 7932 components: - pos: -24.5,-12.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7928 + - uid: 7933 components: - pos: 35.5,-59.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7929 + - uid: 7934 components: - pos: 36.5,-59.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7930 + - uid: 7935 components: - pos: 37.5,-59.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7931 + - uid: 7936 components: - pos: -18.5,-41.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7932 + - uid: 7937 components: - pos: -18.5,-40.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7933 + - uid: 7938 components: - pos: -18.5,-39.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7934 + - uid: 7939 components: - pos: -18.5,-38.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7935 + - uid: 7940 components: - pos: -18.5,-37.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7936 + - uid: 7941 components: - pos: -18.5,-36.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7937 + - uid: 7942 components: - pos: -18.5,-35.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7938 + - uid: 7943 components: - pos: -18.5,-34.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7939 + - uid: 7944 components: - pos: -18.5,-33.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7940 + - uid: 7945 components: - pos: -18.5,-32.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7941 + - uid: 7946 components: - pos: -18.5,-31.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7942 + - uid: 7947 components: - pos: -18.5,-30.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7943 + - uid: 7948 components: - pos: -19.5,-30.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7944 + - uid: 7949 components: - pos: -19.5,-29.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7945 + - uid: 7950 components: - pos: -19.5,-28.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7946 + - uid: 7951 components: - pos: 38.5,-59.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7947 + - uid: 7952 components: - pos: 39.5,-59.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7948 + - uid: 7953 components: - pos: 40.5,-59.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7949 + - uid: 7954 components: - pos: 40.5,-60.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7950 + - uid: 7955 components: - pos: 40.5,-61.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7951 + - uid: 7956 components: - pos: 40.5,-62.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7952 + - uid: 7957 components: - pos: 40.5,-63.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7953 + - uid: 7958 components: - pos: 40.5,-64.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7954 + - uid: 7959 components: - pos: 40.5,-65.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7955 + - uid: 7960 components: - pos: 40.5,-66.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7956 + - uid: 7961 components: - pos: 40.5,-67.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7957 + - uid: 7962 components: - pos: 40.5,-68.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7958 + - uid: 7963 components: - pos: 41.5,-59.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7959 + - uid: 7964 components: - pos: 42.5,-59.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7960 + - uid: 7965 components: - pos: 43.5,-59.5 parent: 2 @@ -67197,7 +67194,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7961 + - uid: 7966 components: - pos: 43.5,-58.5 parent: 2 @@ -67206,126 +67203,126 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7962 + - uid: 7967 components: - pos: -31.5,-16.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7963 + - uid: 7968 components: - pos: -31.5,-15.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7964 + - uid: 7969 components: - pos: -31.5,-14.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7965 + - uid: 7970 components: - pos: -31.5,-13.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7966 + - uid: 7971 components: - pos: -31.5,-12.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7967 + - uid: 7972 components: - pos: -31.5,-11.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7968 + - uid: 7973 components: - pos: -32.5,-11.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7969 + - uid: 7974 components: - pos: -33.5,-11.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7970 + - uid: 7975 components: - pos: -34.5,-11.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7971 + - uid: 7976 components: - pos: -35.5,-11.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7972 + - uid: 7977 components: - pos: -36.5,-11.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7973 + - uid: 7978 components: - pos: -37.5,-11.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7974 + - uid: 7979 components: - pos: -38.5,-11.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7975 + - uid: 7980 components: - pos: -39.5,-11.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7976 + - uid: 7981 components: - pos: -40.5,-11.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7977 + - uid: 7982 components: - pos: -41.5,-11.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7978 + - uid: 7983 components: - pos: -42.5,-11.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7979 + - uid: 7984 components: - pos: -2.5,-69.5 parent: 2 @@ -67334,63 +67331,63 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7980 + - uid: 7985 components: - pos: -1.5,-69.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7981 + - uid: 7986 components: - pos: -1.5,-67.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7982 + - uid: 7987 components: - pos: -2.5,-60.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7983 + - uid: 7988 components: - pos: -2.5,-58.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7984 + - uid: 7989 components: - pos: -42.5,-6.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7985 + - uid: 7990 components: - pos: -42.5,-10.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7986 + - uid: 7991 components: - pos: -42.5,-7.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7987 + - uid: 7992 components: - pos: -42.5,-8.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7988 + - uid: 7993 components: - pos: -46.5,-11.5 parent: 2 @@ -67399,7 +67396,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7989 + - uid: 7994 components: - pos: -46.5,-12.5 parent: 2 @@ -67408,7 +67405,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7990 + - uid: 7995 components: - pos: -46.5,-13.5 parent: 2 @@ -67417,7 +67414,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7991 + - uid: 7996 components: - pos: -46.5,-14.5 parent: 2 @@ -67426,7 +67423,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7992 + - uid: 7997 components: - pos: -46.5,-10.5 parent: 2 @@ -67435,7 +67432,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7993 + - uid: 7998 components: - pos: -46.5,-9.5 parent: 2 @@ -67444,7 +67441,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7994 + - uid: 7999 components: - pos: -46.5,-15.5 parent: 2 @@ -67453,7 +67450,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7995 + - uid: 8000 components: - pos: -46.5,-16.5 parent: 2 @@ -67462,21 +67459,21 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7996 + - uid: 8001 components: - pos: -42.5,-9.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7997 + - uid: 8002 components: - pos: -46.5,-17.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 7998 + - uid: 8003 components: - pos: -46.5,-18.5 parent: 2 @@ -67485,357 +67482,357 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 7999 + - uid: 8004 components: - pos: -46.5,-19.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8000 + - uid: 8005 components: - pos: -47.5,-19.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8001 + - uid: 8006 components: - pos: -48.5,-19.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8002 + - uid: 8007 components: - pos: -48.5,-20.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8003 + - uid: 8008 components: - pos: -46.5,-20.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8004 + - uid: 8009 components: - pos: -45.5,-19.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8005 + - uid: 8010 components: - pos: -44.5,-19.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8006 + - uid: 8011 components: - pos: -44.5,-20.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8007 + - uid: 8012 components: - pos: -46.5,-21.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8008 + - uid: 8013 components: - pos: -48.5,-21.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8009 + - uid: 8014 components: - pos: -44.5,-21.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8010 + - uid: 8015 components: - pos: -46.5,-22.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8011 + - uid: 8016 components: - pos: -48.5,-22.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8012 + - uid: 8017 components: - pos: -44.5,-22.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8013 + - uid: 8018 components: - pos: -48.5,-23.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8014 + - uid: 8019 components: - pos: -47.5,-23.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8015 + - uid: 8020 components: - pos: -46.5,-23.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8016 + - uid: 8021 components: - pos: -44.5,-23.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8017 + - uid: 8022 components: - pos: -45.5,-23.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8018 + - uid: 8023 components: - pos: -46.5,-24.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8019 + - uid: 8024 components: - pos: -46.5,-25.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8020 + - uid: 8025 components: - pos: -47.5,-25.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8021 + - uid: 8026 components: - pos: -48.5,-25.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8022 + - uid: 8027 components: - pos: -49.5,-25.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8023 + - uid: 8028 components: - pos: -50.5,-25.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8024 + - uid: 8029 components: - pos: -43.5,-22.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8025 + - uid: 8030 components: - pos: -42.5,-22.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8026 + - uid: 8031 components: - pos: -51.5,-21.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8027 + - uid: 8032 components: - pos: -41.5,-22.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8028 + - uid: 8033 components: - pos: -41.5,-21.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8029 + - uid: 8034 components: - pos: -41.5,-20.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8030 + - uid: 8035 components: - pos: -43.5,-6.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8031 + - uid: 8036 components: - pos: -44.5,-6.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8032 + - uid: 8037 components: - pos: -45.5,-6.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8033 + - uid: 8038 components: - pos: -46.5,-6.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8034 + - uid: 8039 components: - pos: -47.5,-6.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8035 + - uid: 8040 components: - pos: -48.5,-6.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8036 + - uid: 8041 components: - pos: -49.5,-6.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8037 + - uid: 8042 components: - pos: -50.5,-6.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8038 + - uid: 8043 components: - pos: -51.5,-6.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8039 + - uid: 8044 components: - pos: -52.5,-6.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8040 + - uid: 8045 components: - pos: -52.5,-7.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8041 + - uid: 8046 components: - pos: -52.5,-8.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8042 + - uid: 8047 components: - pos: -52.5,-9.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8043 + - uid: 8048 components: - pos: -41.5,-12.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8044 + - uid: 8049 components: - pos: -41.5,-13.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8045 + - uid: 8050 components: - pos: -41.5,-14.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8046 + - uid: 8051 components: - pos: -41.5,-15.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8047 + - uid: 8052 components: - pos: -41.5,-18.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8048 + - uid: 8053 components: - pos: -41.5,-17.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8049 + - uid: 8054 components: - pos: -41.5,-19.5 parent: 2 @@ -67844,63 +67841,63 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8050 + - uid: 8055 components: - pos: -41.5,-16.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8051 + - uid: 8056 components: - pos: -51.5,-9.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8052 + - uid: 8057 components: - pos: -50.5,-9.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8053 + - uid: 8058 components: - pos: -50.5,-8.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8054 + - uid: 8059 components: - pos: -57.5,-20.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8055 + - uid: 8060 components: - pos: -14.5,45.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8056 + - uid: 8061 components: - pos: -14.5,44.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8057 + - uid: 8062 components: - pos: -56.5,-24.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8058 + - uid: 8063 components: - pos: -65.5,-25.5 parent: 2 @@ -67909,14 +67906,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8059 + - uid: 8064 components: - pos: -53.5,-19.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8060 + - uid: 8065 components: - pos: -66.5,-25.5 parent: 2 @@ -67925,14 +67922,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8061 + - uid: 8066 components: - pos: -53.5,-21.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8062 + - uid: 8067 components: - pos: -57.5,-13.5 parent: 2 @@ -67941,35 +67938,35 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8063 + - uid: 8068 components: - pos: -64.5,-28.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8064 + - uid: 8069 components: - pos: -65.5,-28.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8065 + - uid: 8070 components: - pos: -66.5,-28.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8066 + - uid: 8071 components: - pos: -66.5,-27.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8067 + - uid: 8072 components: - pos: -66.5,-26.5 parent: 2 @@ -67978,105 +67975,105 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8068 + - uid: 8073 components: - pos: -64.5,-25.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8069 + - uid: 8074 components: - pos: -14.5,36.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8070 + - uid: 8075 components: - pos: -59.5,-23.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8071 + - uid: 8076 components: - pos: -56.5,-23.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8072 + - uid: 8077 components: - pos: -56.5,-22.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8073 + - uid: 8078 components: - pos: -56.5,-21.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8074 + - uid: 8079 components: - pos: -56.5,-20.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8075 + - uid: 8080 components: - pos: -64.5,-29.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8076 + - uid: 8081 components: - pos: -64.5,-30.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8077 + - uid: 8082 components: - pos: -63.5,-30.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8078 + - uid: 8083 components: - pos: -62.5,-30.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8079 + - uid: 8084 components: - pos: -61.5,-30.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8080 + - uid: 8085 components: - pos: -60.5,-30.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8081 + - uid: 8086 components: - pos: -64.5,-31.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8082 + - uid: 8087 components: - pos: -64.5,-32.5 parent: 2 @@ -68085,7 +68082,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8083 + - uid: 8088 components: - pos: -64.5,-33.5 parent: 2 @@ -68094,7 +68091,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8084 + - uid: 8089 components: - pos: -65.5,-33.5 parent: 2 @@ -68103,7 +68100,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8085 + - uid: 8090 components: - pos: -66.5,-33.5 parent: 2 @@ -68112,7 +68109,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8086 + - uid: 8091 components: - pos: -67.5,-33.5 parent: 2 @@ -68121,7 +68118,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8087 + - uid: 8092 components: - pos: -68.5,-33.5 parent: 2 @@ -68130,49 +68127,49 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8088 + - uid: 8093 components: - pos: -14.5,42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8089 + - uid: 8094 components: - pos: -60.5,-29.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8090 + - uid: 8095 components: - pos: -60.5,-26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8091 + - uid: 8096 components: - pos: -60.5,-25.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8092 + - uid: 8097 components: - pos: -59.5,-25.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8093 + - uid: 8098 components: - pos: -58.5,-25.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8094 + - uid: 8099 components: - pos: -56.5,-13.5 parent: 2 @@ -68181,7 +68178,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8095 + - uid: 8100 components: - pos: -58.5,-13.5 parent: 2 @@ -68190,28 +68187,28 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8096 + - uid: 8101 components: - pos: -52.5,-19.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8097 + - uid: 8102 components: - pos: -51.5,-19.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8098 + - uid: 8103 components: - pos: -50.5,-19.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8099 + - uid: 8104 components: - pos: -49.5,-19.5 parent: 2 @@ -68220,147 +68217,147 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8100 + - uid: 8105 components: - pos: -31.5,-18.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8101 + - uid: 8106 components: - pos: -31.5,-19.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8102 + - uid: 8107 components: - pos: -31.5,-20.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8103 + - uid: 8108 components: - pos: -31.5,-21.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8104 + - uid: 8109 components: - pos: -31.5,-22.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8105 + - uid: 8110 components: - pos: -31.5,-23.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8106 + - uid: 8111 components: - pos: -31.5,-24.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8107 + - uid: 8112 components: - pos: -31.5,-25.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8108 + - uid: 8113 components: - pos: -31.5,-26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8109 + - uid: 8114 components: - pos: -31.5,-27.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8110 + - uid: 8115 components: - pos: -31.5,-28.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8111 + - uid: 8116 components: - pos: -31.5,-29.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8112 + - uid: 8117 components: - pos: -31.5,-30.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8113 + - uid: 8118 components: - pos: -31.5,-31.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8114 + - uid: 8119 components: - pos: -31.5,-32.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8115 + - uid: 8120 components: - pos: -31.5,-33.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8116 + - uid: 8121 components: - pos: -31.5,-34.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8117 + - uid: 8122 components: - pos: -30.5,-34.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8118 + - uid: 8123 components: - pos: -29.5,-34.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8119 + - uid: 8124 components: - pos: -28.5,-34.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8120 + - uid: 8125 components: - pos: -28.5,-35.5 parent: 2 @@ -68369,35 +68366,35 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8121 + - uid: 8126 components: - pos: -28.5,-36.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8122 + - uid: 8127 components: - pos: -28.5,-37.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8123 + - uid: 8128 components: - pos: -27.5,-37.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8124 + - uid: 8129 components: - pos: -60.5,-28.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8125 + - uid: 8130 components: - pos: -71.5,-22.5 parent: 2 @@ -68406,7 +68403,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8126 + - uid: 8131 components: - pos: -72.5,-22.5 parent: 2 @@ -68415,7 +68412,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8127 + - uid: 8132 components: - pos: -73.5,-22.5 parent: 2 @@ -68424,7 +68421,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8128 + - uid: 8133 components: - pos: -74.5,-22.5 parent: 2 @@ -68433,7 +68430,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8129 + - uid: 8134 components: - pos: -75.5,-22.5 parent: 2 @@ -68442,7 +68439,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8130 + - uid: 8135 components: - pos: -76.5,-22.5 parent: 2 @@ -68451,7 +68448,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8131 + - uid: 8136 components: - pos: -76.5,-21.5 parent: 2 @@ -68460,7 +68457,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8132 + - uid: 8137 components: - pos: -76.5,-20.5 parent: 2 @@ -68469,7 +68466,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8133 + - uid: 8138 components: - pos: -76.5,-19.5 parent: 2 @@ -68478,7 +68475,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8134 + - uid: 8139 components: - pos: -76.5,-18.5 parent: 2 @@ -68487,7 +68484,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8135 + - uid: 8140 components: - pos: -76.5,-17.5 parent: 2 @@ -68496,7 +68493,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8136 + - uid: 8141 components: - pos: -76.5,-16.5 parent: 2 @@ -68505,7 +68502,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8137 + - uid: 8142 components: - pos: -76.5,-15.5 parent: 2 @@ -68514,7 +68511,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8138 + - uid: 8143 components: - pos: -76.5,-14.5 parent: 2 @@ -68523,7 +68520,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8139 + - uid: 8144 components: - pos: -76.5,-13.5 parent: 2 @@ -68532,7 +68529,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8140 + - uid: 8145 components: - pos: -76.5,-12.5 parent: 2 @@ -68541,7 +68538,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8141 + - uid: 8146 components: - pos: -76.5,-11.5 parent: 2 @@ -68550,7 +68547,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8142 + - uid: 8147 components: - pos: -76.5,-10.5 parent: 2 @@ -68559,7 +68556,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8143 + - uid: 8148 components: - pos: -76.5,-9.5 parent: 2 @@ -68568,7 +68565,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8144 + - uid: 8149 components: - pos: -76.5,-8.5 parent: 2 @@ -68577,7 +68574,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8145 + - uid: 8150 components: - pos: -76.5,-7.5 parent: 2 @@ -68586,7 +68583,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8146 + - uid: 8151 components: - pos: -76.5,-6.5 parent: 2 @@ -68595,7 +68592,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8147 + - uid: 8152 components: - pos: -76.5,-5.5 parent: 2 @@ -68604,7 +68601,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8148 + - uid: 8153 components: - pos: -76.5,-4.5 parent: 2 @@ -68613,7 +68610,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8149 + - uid: 8154 components: - pos: -76.5,-3.5 parent: 2 @@ -68622,7 +68619,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8150 + - uid: 8155 components: - pos: -75.5,-3.5 parent: 2 @@ -68631,7 +68628,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8151 + - uid: 8156 components: - pos: -74.5,-3.5 parent: 2 @@ -68640,7 +68637,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8152 + - uid: 8157 components: - pos: -73.5,-3.5 parent: 2 @@ -68649,7 +68646,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8153 + - uid: 8158 components: - pos: -72.5,-3.5 parent: 2 @@ -68658,7 +68655,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8154 + - uid: 8159 components: - pos: -71.5,-3.5 parent: 2 @@ -68667,7 +68664,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8155 + - uid: 8160 components: - pos: -70.5,-3.5 parent: 2 @@ -68676,7 +68673,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8156 + - uid: 8161 components: - pos: -69.5,-3.5 parent: 2 @@ -68685,7 +68682,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8157 + - uid: 8162 components: - pos: -68.5,-3.5 parent: 2 @@ -68694,7 +68691,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8158 + - uid: 8163 components: - pos: -67.5,-3.5 parent: 2 @@ -68703,7 +68700,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8159 + - uid: 8164 components: - pos: -66.5,-3.5 parent: 2 @@ -68712,7 +68709,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8160 + - uid: 8165 components: - pos: -65.5,-3.5 parent: 2 @@ -68721,7 +68718,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8161 + - uid: 8166 components: - pos: -64.5,-3.5 parent: 2 @@ -68730,7 +68727,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8162 + - uid: 8167 components: - pos: -63.5,-3.5 parent: 2 @@ -68739,7 +68736,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8163 + - uid: 8168 components: - pos: -62.5,-3.5 parent: 2 @@ -68748,7 +68745,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8164 + - uid: 8169 components: - pos: -61.5,-3.5 parent: 2 @@ -68757,7 +68754,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8165 + - uid: 8170 components: - pos: -60.5,-3.5 parent: 2 @@ -68766,7 +68763,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8166 + - uid: 8171 components: - pos: -59.5,-3.5 parent: 2 @@ -68775,7 +68772,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8167 + - uid: 8172 components: - pos: -58.5,-3.5 parent: 2 @@ -68784,7 +68781,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8168 + - uid: 8173 components: - pos: -57.5,-3.5 parent: 2 @@ -68793,21 +68790,21 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8169 + - uid: 8174 components: - pos: -56.5,-3.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8170 + - uid: 8175 components: - pos: -56.5,-4.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8171 + - uid: 8176 components: - pos: -56.5,-6.5 parent: 2 @@ -68816,7 +68813,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8172 + - uid: 8177 components: - pos: -56.5,-5.5 parent: 2 @@ -68825,7 +68822,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8173 + - uid: 8178 components: - pos: -76.5,-23.5 parent: 2 @@ -68834,7 +68831,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8174 + - uid: 8179 components: - pos: -76.5,-24.5 parent: 2 @@ -68843,7 +68840,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8175 + - uid: 8180 components: - pos: -76.5,-25.5 parent: 2 @@ -68852,21 +68849,21 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8176 + - uid: 8181 components: - pos: -53.5,-25.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8177 + - uid: 8182 components: - pos: -51.5,-25.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8178 + - uid: 8183 components: - pos: -71.5,-21.5 parent: 2 @@ -68875,49 +68872,49 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8179 + - uid: 8184 components: - pos: -19.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8180 + - uid: 8185 components: - pos: -20.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8181 + - uid: 8186 components: - pos: -21.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8182 + - uid: 8187 components: - pos: -22.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8183 + - uid: 8188 components: - pos: -23.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8184 + - uid: 8189 components: - pos: -23.5,-43.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8185 + - uid: 8190 components: - pos: -23.5,-44.5 parent: 2 @@ -68926,21 +68923,21 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8186 + - uid: 8191 components: - pos: -23.5,-45.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8187 + - uid: 8192 components: - pos: -23.5,-46.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8188 + - uid: 8193 components: - pos: -23.5,-47.5 parent: 2 @@ -68949,28 +68946,28 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8189 + - uid: 8194 components: - pos: -23.5,-48.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8190 + - uid: 8195 components: - pos: -23.5,-49.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8191 + - uid: 8196 components: - pos: -24.5,-49.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8192 + - uid: 8197 components: - pos: -25.5,-49.5 parent: 2 @@ -68979,28 +68976,28 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8193 + - uid: 8198 components: - pos: -26.5,-49.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8194 + - uid: 8199 components: - pos: -27.5,-49.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8195 + - uid: 8200 components: - pos: -27.5,-48.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8196 + - uid: 8201 components: - pos: -27.5,-47.5 parent: 2 @@ -69009,7 +69006,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8197 + - uid: 8202 components: - pos: -27.5,-46.5 parent: 2 @@ -69018,7 +69015,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8198 + - uid: 8203 components: - pos: -27.5,-45.5 parent: 2 @@ -69027,98 +69024,98 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8199 + - uid: 8204 components: - pos: -27.5,-44.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8200 + - uid: 8205 components: - pos: -28.5,-44.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8201 + - uid: 8206 components: - pos: -29.5,-44.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8202 + - uid: 8207 components: - pos: -30.5,-44.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8203 + - uid: 8208 components: - pos: -31.5,-44.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8204 + - uid: 8209 components: - pos: -31.5,-45.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8205 + - uid: 8210 components: - pos: -31.5,-46.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8206 + - uid: 8211 components: - pos: -31.5,-47.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8207 + - uid: 8212 components: - pos: -30.5,-47.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8208 + - uid: 8213 components: - pos: -30.5,-48.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8209 + - uid: 8214 components: - pos: -30.5,-49.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8210 + - uid: 8215 components: - pos: -30.5,-50.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8211 + - uid: 8216 components: - pos: -30.5,-51.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8212 + - uid: 8217 components: - pos: -30.5,-52.5 parent: 2 @@ -69127,7 +69124,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8213 + - uid: 8218 components: - pos: -30.5,-53.5 parent: 2 @@ -69136,7 +69133,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8214 + - uid: 8219 components: - pos: -31.5,-53.5 parent: 2 @@ -69145,14 +69142,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8215 + - uid: 8220 components: - pos: -31.5,-54.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8216 + - uid: 8221 components: - pos: -58.5,-88.5 parent: 2 @@ -69161,7 +69158,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8217 + - uid: 8222 components: - pos: -57.5,-88.5 parent: 2 @@ -69170,7 +69167,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8218 + - uid: 8223 components: - pos: -58.5,-86.5 parent: 2 @@ -69179,7 +69176,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8219 + - uid: 8224 components: - pos: -57.5,-86.5 parent: 2 @@ -69188,14 +69185,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8220 + - uid: 8225 components: - pos: -56.5,-88.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8221 + - uid: 8226 components: - pos: -57.5,-87.5 parent: 2 @@ -69204,28 +69201,28 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8222 + - uid: 8227 components: - pos: -55.5,-88.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8223 + - uid: 8228 components: - pos: -55.5,-89.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8224 + - uid: 8229 components: - pos: -9.5,28.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8225 + - uid: 8230 components: - pos: 14.5,32.5 parent: 2 @@ -69234,7 +69231,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8226 + - uid: 8231 components: - pos: 13.5,32.5 parent: 2 @@ -69243,7 +69240,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8227 + - uid: 8232 components: - pos: 2.5,32.5 parent: 2 @@ -69252,56 +69249,56 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8228 + - uid: 8233 components: - pos: 1.5,32.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8229 + - uid: 8234 components: - pos: 0.5,32.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8230 + - uid: 8235 components: - pos: -0.5,32.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8231 + - uid: 8236 components: - pos: -1.5,32.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8232 + - uid: 8237 components: - pos: -2.5,32.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8233 + - uid: 8238 components: - pos: -3.5,32.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8234 + - uid: 8239 components: - pos: -4.5,32.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8235 + - uid: 8240 components: - pos: -5.5,32.5 parent: 2 @@ -69310,14 +69307,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8236 + - uid: 8241 components: - pos: -6.5,32.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8237 + - uid: 8242 components: - pos: -7.5,32.5 parent: 2 @@ -69326,70 +69323,70 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8238 + - uid: 8243 components: - pos: -8.5,32.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8239 + - uid: 8244 components: - pos: -8.5,33.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8240 + - uid: 8245 components: - pos: -8.5,34.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8241 + - uid: 8246 components: - pos: -8.5,35.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8242 + - uid: 8247 components: - pos: -14.5,32.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8243 + - uid: 8248 components: - pos: -14.5,30.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8244 + - uid: 8249 components: - pos: -14.5,29.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8245 + - uid: 8250 components: - pos: -16.5,29.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8246 + - uid: 8251 components: - pos: -22.5,17.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8247 + - uid: 8252 components: - pos: -21.5,17.5 parent: 2 @@ -69398,14 +69395,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8248 + - uid: 8253 components: - pos: -20.5,17.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8249 + - uid: 8254 components: - pos: -22.5,16.5 parent: 2 @@ -69414,7 +69411,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8250 + - uid: 8255 components: - pos: -23.5,16.5 parent: 2 @@ -69423,161 +69420,161 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8251 + - uid: 8256 components: - pos: -23.5,15.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8252 + - uid: 8257 components: - pos: -13.5,3.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8253 + - uid: 8258 components: - pos: -13.5,4.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8254 + - uid: 8259 components: - pos: -13.5,5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8255 + - uid: 8260 components: - pos: -13.5,6.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8256 + - uid: 8261 components: - pos: -13.5,7.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8257 + - uid: 8262 components: - pos: -14.5,7.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8258 + - uid: 8263 components: - pos: -15.5,7.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8259 + - uid: 8264 components: - pos: -16.5,7.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8260 + - uid: 8265 components: - pos: -17.5,7.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8261 + - uid: 8266 components: - pos: -18.5,7.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8262 + - uid: 8267 components: - pos: -19.5,7.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8263 + - uid: 8268 components: - pos: -20.5,7.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8264 + - uid: 8269 components: - pos: -20.5,8.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8265 + - uid: 8270 components: - pos: -20.5,9.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8266 + - uid: 8271 components: - pos: -20.5,10.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8267 + - uid: 8272 components: - pos: -20.5,11.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8268 + - uid: 8273 components: - pos: -20.5,12.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8269 + - uid: 8274 components: - pos: -20.5,13.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8270 + - uid: 8275 components: - pos: -20.5,14.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8271 + - uid: 8276 components: - pos: -20.5,15.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8272 + - uid: 8277 components: - pos: -20.5,16.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8273 + - uid: 8278 components: - pos: -71.5,-20.5 parent: 2 @@ -69586,7 +69583,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8274 + - uid: 8279 components: - pos: -72.5,-20.5 parent: 2 @@ -69595,7 +69592,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8275 + - uid: 8280 components: - pos: -73.5,-20.5 parent: 2 @@ -69604,7 +69601,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8276 + - uid: 8281 components: - pos: -73.5,-19.5 parent: 2 @@ -69613,7 +69610,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8277 + - uid: 8282 components: - pos: -73.5,-18.5 parent: 2 @@ -69622,7 +69619,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8278 + - uid: 8283 components: - pos: -73.5,-17.5 parent: 2 @@ -69631,7 +69628,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8279 + - uid: 8284 components: - pos: -73.5,-16.5 parent: 2 @@ -69640,7 +69637,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8280 + - uid: 8285 components: - pos: -73.5,-15.5 parent: 2 @@ -69649,7 +69646,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8281 + - uid: 8286 components: - pos: -73.5,-14.5 parent: 2 @@ -69658,7 +69655,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8282 + - uid: 8287 components: - pos: -73.5,-13.5 parent: 2 @@ -69667,7 +69664,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8283 + - uid: 8288 components: - pos: -73.5,-12.5 parent: 2 @@ -69676,7 +69673,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8284 + - uid: 8289 components: - pos: -73.5,-11.5 parent: 2 @@ -69685,7 +69682,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8285 + - uid: 8290 components: - pos: -73.5,-10.5 parent: 2 @@ -69694,7 +69691,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8286 + - uid: 8291 components: - pos: -73.5,-9.5 parent: 2 @@ -69703,7 +69700,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8287 + - uid: 8292 components: - pos: -73.5,-8.5 parent: 2 @@ -69712,7 +69709,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8288 + - uid: 8293 components: - pos: -73.5,-7.5 parent: 2 @@ -69721,7 +69718,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8289 + - uid: 8294 components: - pos: -73.5,-6.5 parent: 2 @@ -69730,7 +69727,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8290 + - uid: 8295 components: - pos: -72.5,-6.5 parent: 2 @@ -69739,7 +69736,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8291 + - uid: 8296 components: - pos: -71.5,-6.5 parent: 2 @@ -69748,7 +69745,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8292 + - uid: 8297 components: - pos: -70.5,-6.5 parent: 2 @@ -69757,7 +69754,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8293 + - uid: 8298 components: - pos: -69.5,-6.5 parent: 2 @@ -69766,7 +69763,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8294 + - uid: 8299 components: - pos: -68.5,-6.5 parent: 2 @@ -69775,7 +69772,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8295 + - uid: 8300 components: - pos: -67.5,-6.5 parent: 2 @@ -69784,7 +69781,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8296 + - uid: 8301 components: - pos: -66.5,-6.5 parent: 2 @@ -69793,7 +69790,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8297 + - uid: 8302 components: - pos: -65.5,-6.5 parent: 2 @@ -69802,7 +69799,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8298 + - uid: 8303 components: - pos: -64.5,-6.5 parent: 2 @@ -69811,7 +69808,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8299 + - uid: 8304 components: - pos: -63.5,-6.5 parent: 2 @@ -69820,7 +69817,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8300 + - uid: 8305 components: - pos: -62.5,-6.5 parent: 2 @@ -69829,7 +69826,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8301 + - uid: 8306 components: - pos: -61.5,-6.5 parent: 2 @@ -69838,7 +69835,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8302 + - uid: 8307 components: - pos: -60.5,-6.5 parent: 2 @@ -69847,7 +69844,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8303 + - uid: 8308 components: - pos: -59.5,-6.5 parent: 2 @@ -69856,7 +69853,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8304 + - uid: 8309 components: - pos: -59.5,-7.5 parent: 2 @@ -69865,7 +69862,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8305 + - uid: 8310 components: - pos: -59.5,-8.5 parent: 2 @@ -69874,7 +69871,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8306 + - uid: 8311 components: - pos: -59.5,-9.5 parent: 2 @@ -69883,7 +69880,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8307 + - uid: 8312 components: - pos: -59.5,-10.5 parent: 2 @@ -69892,7 +69889,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8308 + - uid: 8313 components: - pos: -59.5,-11.5 parent: 2 @@ -69901,7 +69898,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8309 + - uid: 8314 components: - pos: -59.5,-12.5 parent: 2 @@ -69910,7 +69907,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8310 + - uid: 8315 components: - pos: -59.5,-13.5 parent: 2 @@ -69919,7 +69916,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8311 + - uid: 8316 components: - pos: -59.5,-14.5 parent: 2 @@ -69928,7 +69925,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8312 + - uid: 8317 components: - pos: -59.5,-15.5 parent: 2 @@ -69937,7 +69934,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8313 + - uid: 8318 components: - pos: -59.5,-16.5 parent: 2 @@ -69946,7 +69943,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8314 + - uid: 8319 components: - pos: -59.5,-17.5 parent: 2 @@ -69955,7 +69952,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8315 + - uid: 8320 components: - pos: -59.5,-18.5 parent: 2 @@ -69964,7 +69961,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8316 + - uid: 8321 components: - pos: -59.5,-19.5 parent: 2 @@ -69973,7 +69970,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8317 + - uid: 8322 components: - pos: -59.5,-20.5 parent: 2 @@ -69982,7 +69979,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8318 + - uid: 8323 components: - pos: -60.5,-20.5 parent: 2 @@ -69991,7 +69988,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8319 + - uid: 8324 components: - pos: -61.5,-20.5 parent: 2 @@ -70000,7 +69997,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8320 + - uid: 8325 components: - pos: -62.5,-20.5 parent: 2 @@ -70009,7 +70006,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8321 + - uid: 8326 components: - pos: -63.5,-20.5 parent: 2 @@ -70018,7 +70015,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8322 + - uid: 8327 components: - pos: -64.5,-20.5 parent: 2 @@ -70027,7 +70024,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8323 + - uid: 8328 components: - pos: -65.5,-20.5 parent: 2 @@ -70036,7 +70033,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8324 + - uid: 8329 components: - pos: -66.5,-20.5 parent: 2 @@ -70045,7 +70042,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8325 + - uid: 8330 components: - pos: -67.5,-20.5 parent: 2 @@ -70054,7 +70051,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8326 + - uid: 8331 components: - pos: -68.5,-20.5 parent: 2 @@ -70063,7 +70060,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8327 + - uid: 8332 components: - pos: -69.5,-20.5 parent: 2 @@ -70072,7 +70069,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8328 + - uid: 8333 components: - pos: -70.5,-20.5 parent: 2 @@ -70081,175 +70078,175 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8329 + - uid: 8334 components: - pos: -20.5,-5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8330 + - uid: 8335 components: - pos: -21.5,-5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8331 + - uid: 8336 components: - pos: -22.5,-5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8332 + - uid: 8337 components: - pos: -23.5,-5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8333 + - uid: 8338 components: - pos: -24.5,-5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8334 + - uid: 8339 components: - pos: -25.5,-5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8335 + - uid: 8340 components: - pos: -25.5,-4.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8336 + - uid: 8341 components: - pos: -25.5,-3.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8337 + - uid: 8342 components: - pos: -25.5,-2.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8338 + - uid: 8343 components: - pos: -25.5,-1.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8339 + - uid: 8344 components: - pos: -25.5,-0.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8340 + - uid: 8345 components: - pos: -26.5,-0.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8341 + - uid: 8346 components: - pos: -27.5,-0.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8342 + - uid: 8347 components: - pos: -28.5,-0.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8343 + - uid: 8348 components: - pos: -29.5,-0.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8344 + - uid: 8349 components: - pos: -30.5,-0.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8345 + - uid: 8350 components: - pos: -31.5,-0.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8346 + - uid: 8351 components: - pos: -32.5,-0.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8347 + - uid: 8352 components: - pos: -33.5,-0.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8348 + - uid: 8353 components: - pos: -34.5,-0.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8349 + - uid: 8354 components: - pos: -35.5,-0.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8350 + - uid: 8355 components: - pos: -36.5,-0.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8351 + - uid: 8356 components: - pos: -37.5,-0.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8352 + - uid: 8357 components: - pos: -37.5,-1.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8353 + - uid: 8358 components: - pos: -37.5,-2.5 parent: 2 @@ -70258,7 +70255,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8354 + - uid: 8359 components: - pos: -36.5,-2.5 parent: 2 @@ -70267,84 +70264,84 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8355 + - uid: 8360 components: - pos: -35.5,-2.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8356 + - uid: 8361 components: - pos: -34.5,-2.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8357 + - uid: 8362 components: - pos: -34.5,-3.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8358 + - uid: 8363 components: - pos: -20.5,18.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8359 + - uid: 8364 components: - pos: -20.5,19.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8360 + - uid: 8365 components: - pos: -20.5,20.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8361 + - uid: 8366 components: - pos: -20.5,21.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8362 + - uid: 8367 components: - pos: -20.5,22.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8363 + - uid: 8368 components: - pos: -20.5,23.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8364 + - uid: 8369 components: - pos: -20.5,24.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8365 + - uid: 8370 components: - pos: -20.5,25.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8366 + - uid: 8371 components: - pos: 8.5,-104.5 parent: 2 @@ -70353,7 +70350,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8367 + - uid: 8372 components: - pos: 7.5,-104.5 parent: 2 @@ -70362,7 +70359,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8368 + - uid: 8373 components: - pos: 6.5,-104.5 parent: 2 @@ -70371,7 +70368,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8369 + - uid: 8374 components: - pos: 5.5,-104.5 parent: 2 @@ -70380,7 +70377,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8370 + - uid: 8375 components: - pos: 4.5,-104.5 parent: 2 @@ -70389,7 +70386,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8371 + - uid: 8376 components: - pos: 14.5,-104.5 parent: 2 @@ -70398,7 +70395,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8372 + - uid: 8377 components: - pos: 15.5,-104.5 parent: 2 @@ -70407,7 +70404,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8373 + - uid: 8378 components: - pos: 16.5,-104.5 parent: 2 @@ -70416,7 +70413,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8374 + - uid: 8379 components: - pos: 17.5,-104.5 parent: 2 @@ -70425,7 +70422,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8375 + - uid: 8380 components: - pos: 18.5,-104.5 parent: 2 @@ -70434,7 +70431,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8376 + - uid: 8381 components: - pos: 15.5,-101.5 parent: 2 @@ -70443,7 +70440,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8377 + - uid: 8382 components: - pos: 16.5,-101.5 parent: 2 @@ -70452,7 +70449,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8378 + - uid: 8383 components: - pos: 17.5,-101.5 parent: 2 @@ -70461,7 +70458,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8379 + - uid: 8384 components: - pos: 18.5,-101.5 parent: 2 @@ -70470,7 +70467,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8380 + - uid: 8385 components: - pos: 7.5,-101.5 parent: 2 @@ -70479,7 +70476,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8381 + - uid: 8386 components: - pos: 6.5,-101.5 parent: 2 @@ -70488,7 +70485,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8382 + - uid: 8387 components: - pos: 5.5,-101.5 parent: 2 @@ -70497,7 +70494,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8383 + - uid: 8388 components: - pos: 4.5,-101.5 parent: 2 @@ -70506,7 +70503,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8384 + - uid: 8389 components: - pos: 4.5,-98.5 parent: 2 @@ -70515,7 +70512,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8385 + - uid: 8390 components: - pos: 5.5,-98.5 parent: 2 @@ -70524,7 +70521,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8386 + - uid: 8391 components: - pos: 6.5,-98.5 parent: 2 @@ -70533,7 +70530,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8387 + - uid: 8392 components: - pos: 7.5,-98.5 parent: 2 @@ -70542,7 +70539,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8388 + - uid: 8393 components: - pos: 18.5,-98.5 parent: 2 @@ -70551,7 +70548,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8389 + - uid: 8394 components: - pos: 17.5,-98.5 parent: 2 @@ -70560,7 +70557,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8390 + - uid: 8395 components: - pos: 16.5,-98.5 parent: 2 @@ -70569,7 +70566,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8391 + - uid: 8396 components: - pos: 15.5,-98.5 parent: 2 @@ -70578,217 +70575,217 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8392 + - uid: 8397 components: - pos: -2.5,-57.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8393 + - uid: 8398 components: - pos: -2.5,-56.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8394 + - uid: 8399 components: - pos: -2.5,-55.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8395 + - uid: 8400 components: - pos: -2.5,-54.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8396 + - uid: 8401 components: - pos: -2.5,-53.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8397 + - uid: 8402 components: - pos: -1.5,-53.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8398 + - uid: 8403 components: - pos: -0.5,-53.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8399 + - uid: 8404 components: - pos: -0.5,-52.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8400 + - uid: 8405 components: - pos: -0.5,-51.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8401 + - uid: 8406 components: - pos: -0.5,-50.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8402 + - uid: 8407 components: - pos: -0.5,-49.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8403 + - uid: 8408 components: - pos: -0.5,-48.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8404 + - uid: 8409 components: - pos: -0.5,-47.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8405 + - uid: 8410 components: - pos: -0.5,-46.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8406 + - uid: 8411 components: - pos: -0.5,-45.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8407 + - uid: 8412 components: - pos: -0.5,-44.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8408 + - uid: 8413 components: - pos: -0.5,-43.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8409 + - uid: 8414 components: - pos: -53.5,-18.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8410 + - uid: 8415 components: - pos: -53.5,-17.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8411 + - uid: 8416 components: - pos: -53.5,-16.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8412 + - uid: 8417 components: - pos: -53.5,-15.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8413 + - uid: 8418 components: - pos: -53.5,-14.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8414 + - uid: 8419 components: - pos: -53.5,-13.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8415 + - uid: 8420 components: - pos: -54.5,-13.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8416 + - uid: 8421 components: - pos: -55.5,-13.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8417 + - uid: 8422 components: - pos: -55.5,-25.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8418 + - uid: 8423 components: - pos: -56.5,-25.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8419 + - uid: 8424 components: - pos: -57.5,-25.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8420 + - uid: 8425 components: - pos: -60.5,-27.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8421 + - uid: 8426 components: - pos: -54.5,-25.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8422 + - uid: 8427 components: - pos: -52.5,-25.5 parent: 2 @@ -70797,56 +70794,56 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8423 + - uid: 8428 components: - pos: -0.5,-79.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8424 + - uid: 8429 components: - pos: -14.5,38.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8425 + - uid: 8430 components: - pos: -14.5,43.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8426 + - uid: 8431 components: - pos: -14.5,41.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8427 + - uid: 8432 components: - pos: -17.5,29.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8428 + - uid: 8433 components: - pos: -14.5,37.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8429 + - uid: 8434 components: - pos: -15.5,29.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8430 + - uid: 8435 components: - pos: -0.5,-78.5 parent: 2 @@ -70855,7 +70852,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8431 + - uid: 8436 components: - pos: -0.5,-77.5 parent: 2 @@ -70864,7 +70861,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8432 + - uid: 8437 components: - pos: 12.5,-104.5 parent: 2 @@ -70873,7 +70870,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8433 + - uid: 8438 components: - pos: 10.5,-104.5 parent: 2 @@ -70882,14 +70879,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8434 + - uid: 8439 components: - pos: -47.5,-27.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8435 + - uid: 8440 components: - pos: -48.5,-27.5 parent: 2 @@ -70898,7 +70895,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8436 + - uid: 8441 components: - pos: -48.5,-28.5 parent: 2 @@ -70907,7 +70904,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8437 + - uid: 8442 components: - pos: -48.5,-29.5 parent: 2 @@ -70916,7 +70913,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8438 + - uid: 8443 components: - pos: -48.5,-31.5 parent: 2 @@ -70925,7 +70922,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8439 + - uid: 8444 components: - pos: -46.5,-27.5 parent: 2 @@ -70934,7 +70931,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8440 + - uid: 8445 components: - pos: -46.5,-26.5 parent: 2 @@ -70943,42 +70940,42 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8441 + - uid: 8446 components: - pos: -72.5,-35.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8442 + - uid: 8447 components: - pos: -72.5,-34.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8443 + - uid: 8448 components: - pos: -72.5,-33.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8444 + - uid: 8449 components: - pos: 19.5,-27.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8445 + - uid: 8450 components: - pos: 19.5,-28.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8446 + - uid: 8451 components: - pos: 5.5,-14.5 parent: 2 @@ -70987,7 +70984,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8447 + - uid: 8452 components: - pos: 8.5,-14.5 parent: 2 @@ -70996,35 +70993,35 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8448 + - uid: 8453 components: - pos: 33.5,22.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8449 + - uid: 8454 components: - pos: 34.5,22.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8450 + - uid: 8455 components: - pos: 35.5,22.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8451 + - uid: 8456 components: - pos: 36.5,22.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8452 + - uid: 8457 components: - pos: 36.5,23.5 parent: 2 @@ -71033,7 +71030,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8453 + - uid: 8458 components: - pos: 37.5,23.5 parent: 2 @@ -71042,7 +71039,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8454 + - uid: 8459 components: - pos: 38.5,23.5 parent: 2 @@ -71051,7 +71048,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8455 + - uid: 8460 components: - pos: 39.5,23.5 parent: 2 @@ -71060,7 +71057,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8456 + - uid: 8461 components: - pos: 40.5,23.5 parent: 2 @@ -71069,7 +71066,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8457 + - uid: 8462 components: - pos: 41.5,23.5 parent: 2 @@ -71078,7 +71075,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8458 + - uid: 8463 components: - pos: 42.5,23.5 parent: 2 @@ -71087,7 +71084,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8459 + - uid: 8464 components: - pos: 43.5,23.5 parent: 2 @@ -71096,7 +71093,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8460 + - uid: 8465 components: - pos: 44.5,23.5 parent: 2 @@ -71105,63 +71102,63 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8461 + - uid: 8466 components: - pos: 44.5,24.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8462 + - uid: 8467 components: - pos: 44.5,25.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8463 + - uid: 8468 components: - pos: 44.5,26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8464 + - uid: 8469 components: - pos: 45.5,26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8465 + - uid: 8470 components: - pos: 46.5,26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8466 + - uid: 8471 components: - pos: 47.5,26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8467 + - uid: 8472 components: - pos: 48.5,26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8468 + - uid: 8473 components: - pos: 48.5,27.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8469 + - uid: 8474 components: - pos: 48.5,28.5 parent: 2 @@ -71170,7 +71167,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8470 + - uid: 8475 components: - pos: 49.5,28.5 parent: 2 @@ -71179,7 +71176,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8471 + - uid: 8476 components: - pos: 50.5,28.5 parent: 2 @@ -71188,7 +71185,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8472 + - uid: 8477 components: - pos: 50.5,29.5 parent: 2 @@ -71197,7 +71194,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8473 + - uid: 8478 components: - pos: 91.5,36.5 parent: 2 @@ -71206,35 +71203,35 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8474 + - uid: 8479 components: - pos: 77.5,36.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8475 + - uid: 8480 components: - pos: 76.5,36.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8476 + - uid: 8481 components: - pos: 75.5,36.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8477 + - uid: 8482 components: - pos: 74.5,36.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8478 + - uid: 8483 components: - pos: 78.5,44.5 parent: 2 @@ -71243,7 +71240,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8479 + - uid: 8484 components: - pos: 78.5,43.5 parent: 2 @@ -71252,7 +71249,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8480 + - uid: 8485 components: - pos: 78.5,42.5 parent: 2 @@ -71261,7 +71258,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8481 + - uid: 8486 components: - pos: 78.5,41.5 parent: 2 @@ -71270,7 +71267,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8482 + - uid: 8487 components: - pos: 78.5,40.5 parent: 2 @@ -71279,7 +71276,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8483 + - uid: 8488 components: - pos: 78.5,39.5 parent: 2 @@ -71288,7 +71285,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8484 + - uid: 8489 components: - pos: 78.5,38.5 parent: 2 @@ -71297,7 +71294,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8485 + - uid: 8490 components: - pos: 78.5,37.5 parent: 2 @@ -71306,7 +71303,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8486 + - uid: 8491 components: - pos: 78.5,35.5 parent: 2 @@ -71315,7 +71312,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8487 + - uid: 8492 components: - pos: 78.5,34.5 parent: 2 @@ -71324,7 +71321,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8488 + - uid: 8493 components: - pos: 78.5,33.5 parent: 2 @@ -71333,7 +71330,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8489 + - uid: 8494 components: - pos: 78.5,32.5 parent: 2 @@ -71342,7 +71339,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8490 + - uid: 8495 components: - pos: 78.5,31.5 parent: 2 @@ -71351,7 +71348,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8491 + - uid: 8496 components: - pos: 78.5,30.5 parent: 2 @@ -71360,7 +71357,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8492 + - uid: 8497 components: - pos: 78.5,29.5 parent: 2 @@ -71369,7 +71366,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8493 + - uid: 8498 components: - pos: 78.5,28.5 parent: 2 @@ -71378,7 +71375,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8494 + - uid: 8499 components: - pos: 81.5,28.5 parent: 2 @@ -71387,7 +71384,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8495 + - uid: 8500 components: - pos: 81.5,29.5 parent: 2 @@ -71396,7 +71393,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8496 + - uid: 8501 components: - pos: 81.5,30.5 parent: 2 @@ -71405,7 +71402,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8497 + - uid: 8502 components: - pos: 81.5,31.5 parent: 2 @@ -71414,7 +71411,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8498 + - uid: 8503 components: - pos: 81.5,32.5 parent: 2 @@ -71423,7 +71420,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8499 + - uid: 8504 components: - pos: 81.5,33.5 parent: 2 @@ -71432,7 +71429,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8500 + - uid: 8505 components: - pos: 81.5,34.5 parent: 2 @@ -71441,7 +71438,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8501 + - uid: 8506 components: - pos: 81.5,35.5 parent: 2 @@ -71450,7 +71447,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8502 + - uid: 8507 components: - pos: 81.5,37.5 parent: 2 @@ -71459,7 +71456,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8503 + - uid: 8508 components: - pos: 81.5,38.5 parent: 2 @@ -71468,7 +71465,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8504 + - uid: 8509 components: - pos: 81.5,39.5 parent: 2 @@ -71477,7 +71474,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8505 + - uid: 8510 components: - pos: 81.5,40.5 parent: 2 @@ -71486,7 +71483,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8506 + - uid: 8511 components: - pos: 81.5,41.5 parent: 2 @@ -71495,7 +71492,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8507 + - uid: 8512 components: - pos: 81.5,42.5 parent: 2 @@ -71504,7 +71501,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8508 + - uid: 8513 components: - pos: 81.5,43.5 parent: 2 @@ -71513,7 +71510,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8509 + - uid: 8514 components: - pos: 81.5,44.5 parent: 2 @@ -71522,7 +71519,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8510 + - uid: 8515 components: - pos: 84.5,44.5 parent: 2 @@ -71531,7 +71528,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8511 + - uid: 8516 components: - pos: 84.5,43.5 parent: 2 @@ -71540,7 +71537,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8512 + - uid: 8517 components: - pos: 84.5,42.5 parent: 2 @@ -71549,7 +71546,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8513 + - uid: 8518 components: - pos: 84.5,41.5 parent: 2 @@ -71558,7 +71555,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8514 + - uid: 8519 components: - pos: 84.5,40.5 parent: 2 @@ -71567,7 +71564,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8515 + - uid: 8520 components: - pos: 84.5,39.5 parent: 2 @@ -71576,7 +71573,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8516 + - uid: 8521 components: - pos: 84.5,38.5 parent: 2 @@ -71585,7 +71582,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8517 + - uid: 8522 components: - pos: 84.5,37.5 parent: 2 @@ -71594,7 +71591,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8518 + - uid: 8523 components: - pos: 84.5,35.5 parent: 2 @@ -71603,7 +71600,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8519 + - uid: 8524 components: - pos: 84.5,34.5 parent: 2 @@ -71612,7 +71609,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8520 + - uid: 8525 components: - pos: 84.5,33.5 parent: 2 @@ -71621,7 +71618,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8521 + - uid: 8526 components: - pos: 84.5,32.5 parent: 2 @@ -71630,7 +71627,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8522 + - uid: 8527 components: - pos: 84.5,31.5 parent: 2 @@ -71639,7 +71636,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8523 + - uid: 8528 components: - pos: 84.5,30.5 parent: 2 @@ -71648,7 +71645,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8524 + - uid: 8529 components: - pos: 84.5,29.5 parent: 2 @@ -71657,7 +71654,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8525 + - uid: 8530 components: - pos: 84.5,28.5 parent: 2 @@ -71666,7 +71663,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8526 + - uid: 8531 components: - pos: 87.5,28.5 parent: 2 @@ -71675,7 +71672,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8527 + - uid: 8532 components: - pos: 87.5,29.5 parent: 2 @@ -71684,7 +71681,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8528 + - uid: 8533 components: - pos: 87.5,30.5 parent: 2 @@ -71693,7 +71690,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8529 + - uid: 8534 components: - pos: 87.5,31.5 parent: 2 @@ -71702,7 +71699,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8530 + - uid: 8535 components: - pos: 87.5,32.5 parent: 2 @@ -71711,7 +71708,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8531 + - uid: 8536 components: - pos: 87.5,33.5 parent: 2 @@ -71720,7 +71717,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8532 + - uid: 8537 components: - pos: 87.5,34.5 parent: 2 @@ -71729,7 +71726,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8533 + - uid: 8538 components: - pos: 87.5,35.5 parent: 2 @@ -71738,7 +71735,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8534 + - uid: 8539 components: - pos: 87.5,37.5 parent: 2 @@ -71747,7 +71744,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8535 + - uid: 8540 components: - pos: 87.5,38.5 parent: 2 @@ -71756,7 +71753,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8536 + - uid: 8541 components: - pos: 87.5,39.5 parent: 2 @@ -71765,7 +71762,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8537 + - uid: 8542 components: - pos: 87.5,40.5 parent: 2 @@ -71774,7 +71771,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8538 + - uid: 8543 components: - pos: 87.5,41.5 parent: 2 @@ -71783,7 +71780,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8539 + - uid: 8544 components: - pos: 87.5,42.5 parent: 2 @@ -71792,7 +71789,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8540 + - uid: 8545 components: - pos: 87.5,43.5 parent: 2 @@ -71801,7 +71798,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8541 + - uid: 8546 components: - pos: 87.5,44.5 parent: 2 @@ -71810,7 +71807,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8542 + - uid: 8547 components: - pos: 90.5,44.5 parent: 2 @@ -71819,7 +71816,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8543 + - uid: 8548 components: - pos: 90.5,43.5 parent: 2 @@ -71828,7 +71825,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8544 + - uid: 8549 components: - pos: 90.5,42.5 parent: 2 @@ -71837,7 +71834,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8545 + - uid: 8550 components: - pos: 90.5,41.5 parent: 2 @@ -71846,7 +71843,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8546 + - uid: 8551 components: - pos: 90.5,40.5 parent: 2 @@ -71855,7 +71852,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8547 + - uid: 8552 components: - pos: 90.5,39.5 parent: 2 @@ -71864,7 +71861,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8548 + - uid: 8553 components: - pos: 90.5,38.5 parent: 2 @@ -71873,7 +71870,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8549 + - uid: 8554 components: - pos: 90.5,37.5 parent: 2 @@ -71882,7 +71879,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8550 + - uid: 8555 components: - pos: 90.5,35.5 parent: 2 @@ -71891,7 +71888,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8551 + - uid: 8556 components: - pos: 90.5,34.5 parent: 2 @@ -71900,7 +71897,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8552 + - uid: 8557 components: - pos: 90.5,33.5 parent: 2 @@ -71909,7 +71906,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8553 + - uid: 8558 components: - pos: 90.5,32.5 parent: 2 @@ -71918,7 +71915,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8554 + - uid: 8559 components: - pos: 90.5,31.5 parent: 2 @@ -71927,7 +71924,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8555 + - uid: 8560 components: - pos: 90.5,30.5 parent: 2 @@ -71936,7 +71933,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8556 + - uid: 8561 components: - pos: 90.5,29.5 parent: 2 @@ -71945,7 +71942,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8557 + - uid: 8562 components: - pos: 90.5,28.5 parent: 2 @@ -71954,133 +71951,133 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8558 + - uid: 8563 components: - pos: 74.5,37.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8559 + - uid: 8564 components: - pos: 74.5,38.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8560 + - uid: 8565 components: - pos: 73.5,38.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8561 + - uid: 8566 components: - pos: 72.5,38.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8562 + - uid: 8567 components: - pos: 74.5,35.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8563 + - uid: 8568 components: - pos: 74.5,34.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8564 + - uid: 8569 components: - pos: 73.5,34.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8565 + - uid: 8570 components: - pos: 72.5,34.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8566 + - uid: 8571 components: - pos: 71.5,34.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8567 + - uid: 8572 components: - pos: 70.5,34.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8568 + - uid: 8573 components: - pos: 70.5,35.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8569 + - uid: 8574 components: - pos: 70.5,36.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8570 + - uid: 8575 components: - pos: 69.5,36.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8571 + - uid: 8576 components: - pos: 71.5,38.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8572 + - uid: 8577 components: - pos: 70.5,38.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8573 + - uid: 8578 components: - pos: 70.5,37.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8574 + - uid: 8579 components: - pos: 68.5,36.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8575 + - uid: 8580 components: - pos: 67.5,36.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8576 + - uid: 8581 components: - pos: 66.5,36.5 parent: 2 @@ -72089,7 +72086,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8577 + - uid: 8582 components: - pos: 65.5,36.5 parent: 2 @@ -72098,7 +72095,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8578 + - uid: 8583 components: - pos: 64.5,36.5 parent: 2 @@ -72107,7 +72104,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8579 + - uid: 8584 components: - pos: 63.5,36.5 parent: 2 @@ -72116,7 +72113,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8580 + - uid: 8585 components: - pos: 63.5,35.5 parent: 2 @@ -72125,7 +72122,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8581 + - uid: 8586 components: - pos: 63.5,34.5 parent: 2 @@ -72134,7 +72131,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8582 + - uid: 8587 components: - pos: 63.5,33.5 parent: 2 @@ -72143,56 +72140,56 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8583 + - uid: 8588 components: - pos: 63.5,32.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8584 + - uid: 8589 components: - pos: 63.5,31.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8585 + - uid: 8590 components: - pos: 63.5,30.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8586 + - uid: 8591 components: - pos: 63.5,29.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8587 + - uid: 8592 components: - pos: 63.5,28.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8588 + - uid: 8593 components: - pos: 63.5,27.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8589 + - uid: 8594 components: - pos: 63.5,26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8590 + - uid: 8595 components: - pos: 62.5,26.5 parent: 2 @@ -72201,98 +72198,98 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8591 + - uid: 8596 components: - pos: 61.5,26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8592 + - uid: 8597 components: - pos: 60.5,26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8593 + - uid: 8598 components: - pos: 59.5,26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8594 + - uid: 8599 components: - pos: 58.5,26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8595 + - uid: 8600 components: - pos: 57.5,26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8596 + - uid: 8601 components: - pos: 56.5,26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8597 + - uid: 8602 components: - pos: 55.5,26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8598 + - uid: 8603 components: - pos: 54.5,26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8599 + - uid: 8604 components: - pos: 53.5,26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8600 + - uid: 8605 components: - pos: 52.5,26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8601 + - uid: 8606 components: - pos: 51.5,26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8602 + - uid: 8607 components: - pos: 50.5,26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8603 + - uid: 8608 components: - pos: 49.5,26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8604 + - uid: 8609 components: - pos: -11.5,26.5 parent: 2 @@ -72301,7 +72298,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8605 + - uid: 8610 components: - pos: -12.5,26.5 parent: 2 @@ -72310,196 +72307,196 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8606 + - uid: 8611 components: - pos: -13.5,26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8607 + - uid: 8612 components: - pos: -14.5,26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8608 + - uid: 8613 components: - pos: -15.5,26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8609 + - uid: 8614 components: - pos: -15.5,27.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8610 + - uid: 8615 components: - pos: -15.5,28.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8611 + - uid: 8616 components: - pos: -1.5,69.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8612 + - uid: 8617 components: - pos: -1.5,68.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8613 + - uid: 8618 components: - pos: -1.5,67.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8614 + - uid: 8619 components: - pos: -1.5,66.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8615 + - uid: 8620 components: - pos: -1.5,65.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8616 + - uid: 8621 components: - pos: -1.5,64.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8617 + - uid: 8622 components: - pos: -1.5,63.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8618 + - uid: 8623 components: - pos: -1.5,62.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8619 + - uid: 8624 components: - pos: -1.5,61.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8620 + - uid: 8625 components: - pos: -1.5,60.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8621 + - uid: 8626 components: - pos: -1.5,59.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8622 + - uid: 8627 components: - pos: -1.5,58.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8623 + - uid: 8628 components: - pos: -2.5,58.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8624 + - uid: 8629 components: - pos: -3.5,58.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8625 + - uid: 8630 components: - pos: -4.5,58.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8626 + - uid: 8631 components: - pos: -5.5,58.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8627 + - uid: 8632 components: - pos: -6.5,58.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8628 + - uid: 8633 components: - pos: -7.5,58.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8629 + - uid: 8634 components: - pos: -8.5,58.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8630 + - uid: 8635 components: - pos: -9.5,58.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8631 + - uid: 8636 components: - pos: -10.5,58.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8632 + - uid: 8637 components: - pos: -10.5,59.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8633 + - uid: 8638 components: - pos: -10.5,60.5 parent: 2 @@ -72508,7 +72505,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8634 + - uid: 8639 components: - pos: -10.5,61.5 parent: 2 @@ -72517,7 +72514,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8635 + - uid: 8640 components: - pos: -10.5,62.5 parent: 2 @@ -72526,42 +72523,42 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8636 + - uid: 8641 components: - pos: -71.5,-23.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8637 + - uid: 8642 components: - pos: -71.5,-24.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8638 + - uid: 8643 components: - pos: -71.5,-25.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8639 + - uid: 8644 components: - pos: -72.5,-25.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8640 + - uid: 8645 components: - pos: -72.5,-26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8641 + - uid: 8646 components: - pos: -72.5,-27.5 parent: 2 @@ -72570,140 +72567,140 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8642 + - uid: 8647 components: - pos: -72.5,-28.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8643 + - uid: 8648 components: - pos: -71.5,-28.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8644 + - uid: 8649 components: - pos: -70.5,-28.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8645 + - uid: 8650 components: - pos: -70.5,-29.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8646 + - uid: 8651 components: - pos: -72.5,-29.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8647 + - uid: 8652 components: - pos: -73.5,-28.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8648 + - uid: 8653 components: - pos: -74.5,-28.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8649 + - uid: 8654 components: - pos: -74.5,-29.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8650 + - uid: 8655 components: - pos: -74.5,-30.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8651 + - uid: 8656 components: - pos: -72.5,-30.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8652 + - uid: 8657 components: - pos: -70.5,-30.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8653 + - uid: 8658 components: - pos: -70.5,-31.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8654 + - uid: 8659 components: - pos: -70.5,-32.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8655 + - uid: 8660 components: - pos: -71.5,-32.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8656 + - uid: 8661 components: - pos: -72.5,-32.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8657 + - uid: 8662 components: - pos: -74.5,-31.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8658 + - uid: 8663 components: - pos: -74.5,-32.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8659 + - uid: 8664 components: - pos: -73.5,-32.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8660 + - uid: 8665 components: - pos: -72.5,-31.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8661 + - uid: 8666 components: - pos: -48.5,-30.5 parent: 2 @@ -72712,56 +72709,56 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8662 + - uid: 8667 components: - pos: -49.5,-31.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8663 + - uid: 8668 components: - pos: -50.5,-31.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8664 + - uid: 8669 components: - pos: -51.5,-31.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8665 + - uid: 8670 components: - pos: -52.5,-31.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8666 + - uid: 8671 components: - pos: -52.5,-30.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8667 + - uid: 8672 components: - pos: -52.5,-29.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8668 + - uid: 8673 components: - pos: -52.5,-28.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8669 + - uid: 8674 components: - pos: -52.5,-27.5 parent: 2 @@ -72770,21 +72767,21 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8670 + - uid: 8675 components: - pos: -53.5,-27.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8671 + - uid: 8676 components: - pos: -54.5,-27.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8672 + - uid: 8677 components: - pos: -55.5,-27.5 parent: 2 @@ -72793,7 +72790,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8673 + - uid: 8678 components: - pos: -55.5,-28.5 parent: 2 @@ -72802,21 +72799,21 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8674 + - uid: 8679 components: - pos: -55.5,-29.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8675 + - uid: 8680 components: - pos: -55.5,-30.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8676 + - uid: 8681 components: - pos: -55.5,-31.5 parent: 2 @@ -72825,203 +72822,203 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8677 + - uid: 8682 components: - pos: -55.5,-32.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8678 + - uid: 8683 components: - pos: -55.5,-33.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8679 + - uid: 8684 components: - pos: -55.5,-34.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8680 + - uid: 8685 components: - pos: -55.5,-35.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8681 + - uid: 8686 components: - pos: -55.5,-36.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8682 + - uid: 8687 components: - pos: -55.5,-37.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8683 + - uid: 8688 components: - pos: -56.5,-37.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8684 + - uid: 8689 components: - pos: -56.5,-38.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8685 + - uid: 8690 components: - pos: -56.5,-39.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8686 + - uid: 8691 components: - pos: -56.5,-40.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8687 + - uid: 8692 components: - pos: -56.5,-41.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8688 + - uid: 8693 components: - pos: -56.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8689 + - uid: 8694 components: - pos: -56.5,-43.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8690 + - uid: 8695 components: - pos: -56.5,-44.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8691 + - uid: 8696 components: - pos: -56.5,-45.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8692 + - uid: 8697 components: - pos: -56.5,-46.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8693 + - uid: 8698 components: - pos: -56.5,-47.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8694 + - uid: 8699 components: - pos: -56.5,-48.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8695 + - uid: 8700 components: - pos: -56.5,-49.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8696 + - uid: 8701 components: - pos: -56.5,-50.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8697 + - uid: 8702 components: - pos: -56.5,-51.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8698 + - uid: 8703 components: - pos: -56.5,-52.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8699 + - uid: 8704 components: - pos: -56.5,-53.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8700 + - uid: 8705 components: - pos: -56.5,-54.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8701 + - uid: 8706 components: - pos: -57.5,-54.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8702 + - uid: 8707 components: - pos: -58.5,-54.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8703 + - uid: 8708 components: - pos: -59.5,-54.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8704 + - uid: 8709 components: - pos: -60.5,-54.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8705 + - uid: 8710 components: - pos: -61.5,-54.5 parent: 2 @@ -73030,7 +73027,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8706 + - uid: 8711 components: - pos: -61.5,-53.5 parent: 2 @@ -73039,7 +73036,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8707 + - uid: 8712 components: - pos: -61.5,-52.5 parent: 2 @@ -73048,7 +73045,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8708 + - uid: 8713 components: - pos: -61.5,-51.5 parent: 2 @@ -73057,7 +73054,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8709 + - uid: 8714 components: - pos: -61.5,-50.5 parent: 2 @@ -73066,7 +73063,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8710 + - uid: 8715 components: - pos: -61.5,-49.5 parent: 2 @@ -73075,7 +73072,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8711 + - uid: 8716 components: - pos: -61.5,-48.5 parent: 2 @@ -73084,7 +73081,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8712 + - uid: 8717 components: - pos: -61.5,-47.5 parent: 2 @@ -73093,7 +73090,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8713 + - uid: 8718 components: - pos: -61.5,-46.5 parent: 2 @@ -73102,7 +73099,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8714 + - uid: 8719 components: - pos: -61.5,-45.5 parent: 2 @@ -73111,7 +73108,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8715 + - uid: 8720 components: - pos: -61.5,-44.5 parent: 2 @@ -73120,7 +73117,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8716 + - uid: 8721 components: - pos: -61.5,-43.5 parent: 2 @@ -73129,7 +73126,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8717 + - uid: 8722 components: - pos: -61.5,-42.5 parent: 2 @@ -73138,7 +73135,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8718 + - uid: 8723 components: - pos: -61.5,-41.5 parent: 2 @@ -73147,7 +73144,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8719 + - uid: 8724 components: - pos: -61.5,-40.5 parent: 2 @@ -73156,7 +73153,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8720 + - uid: 8725 components: - pos: -61.5,-39.5 parent: 2 @@ -73165,7 +73162,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8721 + - uid: 8726 components: - pos: -61.5,-38.5 parent: 2 @@ -73174,7 +73171,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8722 + - uid: 8727 components: - pos: -61.5,-37.5 parent: 2 @@ -73183,7 +73180,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8723 + - uid: 8728 components: - pos: -61.5,-36.5 parent: 2 @@ -73192,7 +73189,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8724 + - uid: 8729 components: - pos: -62.5,-36.5 parent: 2 @@ -73201,7 +73198,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8725 + - uid: 8730 components: - pos: -63.5,-36.5 parent: 2 @@ -73210,7 +73207,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8726 + - uid: 8731 components: - pos: -64.5,-36.5 parent: 2 @@ -73219,7 +73216,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8727 + - uid: 8732 components: - pos: -65.5,-36.5 parent: 2 @@ -73228,7 +73225,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8728 + - uid: 8733 components: - pos: -66.5,-36.5 parent: 2 @@ -73237,7 +73234,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8729 + - uid: 8734 components: - pos: -67.5,-36.5 parent: 2 @@ -73246,7 +73243,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8730 + - uid: 8735 components: - pos: -68.5,-36.5 parent: 2 @@ -73255,7 +73252,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8731 + - uid: 8736 components: - pos: -69.5,-36.5 parent: 2 @@ -73264,7 +73261,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8732 + - uid: 8737 components: - pos: -70.5,-36.5 parent: 2 @@ -73273,7 +73270,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8733 + - uid: 8738 components: - pos: -71.5,-36.5 parent: 2 @@ -73282,7 +73279,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8734 + - uid: 8739 components: - pos: -72.5,-36.5 parent: 2 @@ -73291,7 +73288,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8735 + - uid: 8740 components: - pos: -69.5,-37.5 parent: 2 @@ -73300,252 +73297,252 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8736 + - uid: 8741 components: - pos: -69.5,-38.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8737 + - uid: 8742 components: - pos: -69.5,-39.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8738 + - uid: 8743 components: - pos: -69.5,-40.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8739 + - uid: 8744 components: - pos: -69.5,-41.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8740 + - uid: 8745 components: - pos: -70.5,-41.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8741 + - uid: 8746 components: - pos: -71.5,-41.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8742 + - uid: 8747 components: - pos: 68.5,-46.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8743 + - uid: 8748 components: - pos: 67.5,-46.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8744 + - uid: 8749 components: - pos: 66.5,-46.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8745 + - uid: 8750 components: - pos: 65.5,-46.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8746 + - uid: 8751 components: - pos: 64.5,-46.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8747 + - uid: 8752 components: - pos: 64.5,-45.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8748 + - uid: 8753 components: - pos: 64.5,-44.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8749 + - uid: 8754 components: - pos: 63.5,-44.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8750 + - uid: 8755 components: - pos: 62.5,-44.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8751 + - uid: 8756 components: - pos: 61.5,-44.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8752 + - uid: 8757 components: - pos: 60.5,-44.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8753 + - uid: 8758 components: - pos: 59.5,-44.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8754 + - uid: 8759 components: - pos: 58.5,-44.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8755 + - uid: 8760 components: - pos: 57.5,-44.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8756 + - uid: 8761 components: - pos: 56.5,-44.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8757 + - uid: 8762 components: - pos: 55.5,-44.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8758 + - uid: 8763 components: - pos: 54.5,-44.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8759 + - uid: 8764 components: - pos: 53.5,-44.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8760 + - uid: 8765 components: - pos: 52.5,-44.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8761 + - uid: 8766 components: - pos: 51.5,-44.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8762 + - uid: 8767 components: - pos: 50.5,-44.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8763 + - uid: 8768 components: - pos: 69.5,-46.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8764 + - uid: 8769 components: - pos: 72.5,-46.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8765 + - uid: 8770 components: - pos: 73.5,-46.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8766 + - uid: 8771 components: - pos: 74.5,-46.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8767 + - uid: 8772 components: - pos: 75.5,-46.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8768 + - uid: 8773 components: - pos: 75.5,-47.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8769 + - uid: 8774 components: - pos: 75.5,-48.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8770 + - uid: 8775 components: - pos: 75.5,-49.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8771 + - uid: 8776 components: - pos: 75.5,-50.5 parent: 2 @@ -73554,7 +73551,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8772 + - uid: 8777 components: - pos: 75.5,-51.5 parent: 2 @@ -73563,7 +73560,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8773 + - uid: 8778 components: - pos: 75.5,-52.5 parent: 2 @@ -73572,7 +73569,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8774 + - uid: 8779 components: - pos: 75.5,-53.5 parent: 2 @@ -73581,7 +73578,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8775 + - uid: 8780 components: - pos: 75.5,-54.5 parent: 2 @@ -73590,7 +73587,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8776 + - uid: 8781 components: - pos: 75.5,-55.5 parent: 2 @@ -73599,7 +73596,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8777 + - uid: 8782 components: - pos: 75.5,-56.5 parent: 2 @@ -73608,35 +73605,35 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8778 + - uid: 8783 components: - pos: 74.5,-56.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8779 + - uid: 8784 components: - pos: 74.5,-57.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8780 + - uid: 8785 components: - pos: 73.5,-57.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8781 + - uid: 8786 components: - pos: 72.5,-57.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8782 + - uid: 8787 components: - pos: 71.5,-57.5 parent: 2 @@ -73645,7 +73642,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8783 + - uid: 8788 components: - pos: 71.5,-58.5 parent: 2 @@ -73654,7 +73651,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8784 + - uid: 8789 components: - pos: 71.5,-59.5 parent: 2 @@ -73663,7 +73660,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8785 + - uid: 8790 components: - pos: 71.5,-60.5 parent: 2 @@ -73672,7 +73669,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8786 + - uid: 8791 components: - pos: 71.5,-61.5 parent: 2 @@ -73681,28 +73678,28 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8787 + - uid: 8792 components: - pos: 70.5,-61.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8788 + - uid: 8793 components: - pos: 69.5,-61.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8789 + - uid: 8794 components: - pos: 68.5,-61.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8790 + - uid: 8795 components: - pos: 68.5,-60.5 parent: 2 @@ -73711,21 +73708,21 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8791 + - uid: 8796 components: - pos: 68.5,-59.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8792 + - uid: 8797 components: - pos: 69.5,-59.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8793 + - uid: 8798 components: - pos: 12.5,-92.5 parent: 2 @@ -73734,7 +73731,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8794 + - uid: 8799 components: - pos: 12.5,-91.5 parent: 2 @@ -73743,7 +73740,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8795 + - uid: 8800 components: - pos: 12.5,-90.5 parent: 2 @@ -73752,7 +73749,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8796 + - uid: 8801 components: - pos: 12.5,-89.5 parent: 2 @@ -73761,7 +73758,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8797 + - uid: 8802 components: - pos: 11.5,-89.5 parent: 2 @@ -73770,7 +73767,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8798 + - uid: 8803 components: - pos: 10.5,-89.5 parent: 2 @@ -73779,7 +73776,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8799 + - uid: 8804 components: - pos: 9.5,-89.5 parent: 2 @@ -73788,7 +73785,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8800 + - uid: 8805 components: - pos: 8.5,-89.5 parent: 2 @@ -73797,7 +73794,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8801 + - uid: 8806 components: - pos: 7.5,-89.5 parent: 2 @@ -73806,7 +73803,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8802 + - uid: 8807 components: - pos: 6.5,-89.5 parent: 2 @@ -73815,7 +73812,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8803 + - uid: 8808 components: - pos: 5.5,-89.5 parent: 2 @@ -73824,7 +73821,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8804 + - uid: 8809 components: - pos: 4.5,-89.5 parent: 2 @@ -73833,7 +73830,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8805 + - uid: 8810 components: - pos: 3.5,-89.5 parent: 2 @@ -73842,70 +73839,70 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8806 + - uid: 8811 components: - pos: 16.5,-24.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8807 + - uid: 8812 components: - pos: 17.5,-24.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8808 + - uid: 8813 components: - pos: 18.5,-24.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8809 + - uid: 8814 components: - pos: 19.5,-24.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8810 + - uid: 8815 components: - pos: 20.5,-24.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8811 + - uid: 8816 components: - pos: 21.5,-24.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8812 + - uid: 8817 components: - pos: 21.5,-23.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8813 + - uid: 8818 components: - pos: 21.5,-22.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8814 + - uid: 8819 components: - pos: 21.5,-21.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8815 + - uid: 8820 components: - pos: -30.5,-13.5 parent: 2 @@ -73914,42 +73911,42 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8816 + - uid: 8821 components: - pos: -29.5,-13.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8817 + - uid: 8822 components: - pos: -28.5,-13.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8818 + - uid: 8823 components: - pos: -27.5,-13.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8819 + - uid: 8824 components: - pos: 4.5,-21.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8820 + - uid: 8825 components: - pos: 4.5,-22.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8821 + - uid: 8826 components: - pos: 4.5,-19.5 parent: 2 @@ -73958,7 +73955,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8822 + - uid: 8827 components: - pos: 4.5,-20.5 parent: 2 @@ -73967,7 +73964,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8823 + - uid: 8828 components: - pos: 10.5,-14.5 parent: 2 @@ -73976,7 +73973,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8824 + - uid: 8829 components: - pos: 11.5,-14.5 parent: 2 @@ -73985,7 +73982,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8825 + - uid: 8830 components: - pos: 12.5,-14.5 parent: 2 @@ -73994,7 +73991,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8826 + - uid: 8831 components: - pos: 12.5,-15.5 parent: 2 @@ -74003,7 +74000,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8827 + - uid: 8832 components: - pos: 12.5,-16.5 parent: 2 @@ -74012,28 +74009,28 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8828 + - uid: 8833 components: - pos: 11.5,-16.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8829 + - uid: 8834 components: - pos: 10.5,-16.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8830 + - uid: 8835 components: - pos: 9.5,-16.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8831 + - uid: 8836 components: - pos: -76.5,-26.5 parent: 2 @@ -74042,26 +74039,33 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures + - uid: 8837 + components: + - pos: 4.5,-23.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures - proto: CableHVStack entities: - - uid: 8832 + - uid: 8838 components: - pos: -39.402794,-17.87967 parent: 2 type: Transform - - uid: 8833 + - uid: 8839 components: - pos: 71.74222,36.65267 parent: 2 type: Transform - - uid: 8834 + - uid: 8840 components: - pos: -0.5088408,-77.44958 parent: 2 type: Transform - proto: CableMV entities: - - uid: 8835 + - uid: 8841 components: - pos: -6.5,-70.5 parent: 2 @@ -74070,7 +74074,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8836 + - uid: 8842 components: - pos: 18.5,-52.5 parent: 2 @@ -74079,14 +74083,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8837 + - uid: 8843 components: - pos: 10.5,-55.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8838 + - uid: 8844 components: - pos: 37.5,21.5 parent: 2 @@ -74095,14 +74099,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8839 + - uid: 8845 components: - pos: 3.5,-49.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8840 + - uid: 8846 components: - pos: 9.5,-44.5 parent: 2 @@ -74111,21 +74115,21 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8841 + - uid: 8847 components: - pos: 32.5,0.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8842 + - uid: 8848 components: - pos: 32.5,1.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8843 + - uid: 8849 components: - pos: -2.5,-51.5 parent: 2 @@ -74134,28 +74138,28 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8844 + - uid: 8850 components: - pos: -2.5,-52.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8845 + - uid: 8851 components: - pos: -2.5,-53.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8846 + - uid: 8852 components: - pos: 40.5,-26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8847 + - uid: 8853 components: - pos: 31.5,2.5 parent: 2 @@ -74164,7 +74168,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8848 + - uid: 8854 components: - pos: -6.5,-71.5 parent: 2 @@ -74173,7 +74177,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8849 + - uid: 8855 components: - pos: -6.5,-69.5 parent: 2 @@ -74182,7 +74186,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8850 + - uid: 8856 components: - pos: 27.5,-28.5 parent: 2 @@ -74191,70 +74195,70 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8851 + - uid: 8857 components: - pos: 4.5,-49.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8852 + - uid: 8858 components: - pos: 3.5,-52.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8853 + - uid: 8859 components: - pos: -0.5,-53.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8854 + - uid: 8860 components: - pos: 8.5,-43.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8855 + - uid: 8861 components: - pos: -14.5,-69.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8856 + - uid: 8862 components: - pos: 9.5,-43.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8857 + - uid: 8863 components: - pos: 24.5,-28.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8858 + - uid: 8864 components: - pos: 45.5,-64.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8859 + - uid: 8865 components: - pos: 5.5,-45.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8860 + - uid: 8866 components: - pos: 5.5,-44.5 parent: 2 @@ -74263,56 +74267,56 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8861 + - uid: 8867 components: - pos: 4.5,-43.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8862 + - uid: 8868 components: - pos: 3.5,-43.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8863 + - uid: 8869 components: - pos: 3.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8864 + - uid: 8870 components: - pos: 2.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8865 + - uid: 8871 components: - pos: 1.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8866 + - uid: 8872 components: - pos: 0.5,-42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8867 + - uid: 8873 components: - pos: 0.5,-41.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8868 + - uid: 8874 components: - pos: 0.5,-40.5 parent: 2 @@ -74321,28 +74325,28 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8869 + - uid: 8875 components: - pos: 15.5,-58.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8870 + - uid: 8876 components: - pos: 15.5,-57.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8871 + - uid: 8877 components: - pos: 14.5,-57.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8872 + - uid: 8878 components: - pos: 12.5,-57.5 parent: 2 @@ -74351,7 +74355,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8873 + - uid: 8879 components: - pos: 12.5,-56.5 parent: 2 @@ -74360,7 +74364,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8874 + - uid: 8880 components: - pos: 11.5,-55.5 parent: 2 @@ -74369,14 +74373,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8875 + - uid: 8881 components: - pos: 12.5,-55.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8876 + - uid: 8882 components: - pos: 8.5,-55.5 parent: 2 @@ -74385,7 +74389,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8877 + - uid: 8883 components: - pos: 8.5,-54.5 parent: 2 @@ -74394,7 +74398,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8878 + - uid: 8884 components: - pos: 8.5,-53.5 parent: 2 @@ -74403,14 +74407,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8879 + - uid: 8885 components: - pos: 7.5,-53.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8880 + - uid: 8886 components: - pos: 16.5,-52.5 parent: 2 @@ -74419,7 +74423,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8881 + - uid: 8887 components: - pos: 43.5,-26.5 parent: 2 @@ -74428,14 +74432,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8882 + - uid: 8888 components: - pos: 0.5,14.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8883 + - uid: 8889 components: - pos: 37.5,13.5 parent: 2 @@ -74444,14 +74448,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8884 + - uid: 8890 components: - pos: 38.5,14.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8885 + - uid: 8891 components: - pos: -5.5,-69.5 parent: 2 @@ -74460,7 +74464,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8886 + - uid: 8892 components: - pos: -6.5,18.5 parent: 2 @@ -74469,35 +74473,35 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8887 + - uid: 8893 components: - pos: 38.5,-28.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8888 + - uid: 8894 components: - pos: 35.5,-29.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8889 + - uid: 8895 components: - pos: 37.5,-30.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8890 + - uid: 8896 components: - pos: -11.5,-70.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8891 + - uid: 8897 components: - pos: 21.5,15.5 parent: 2 @@ -74506,21 +74510,21 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8892 + - uid: 8898 components: - pos: 5.5,-48.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8893 + - uid: 8899 components: - pos: 7.5,-47.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8894 + - uid: 8900 components: - pos: 29.5,-26.5 parent: 2 @@ -74529,21 +74533,21 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8895 + - uid: 8901 components: - pos: 0.5,11.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8896 + - uid: 8902 components: - pos: 28.5,18.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8897 + - uid: 8903 components: - pos: -11.5,-71.5 parent: 2 @@ -74552,7 +74556,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8898 + - uid: 8904 components: - pos: -7.5,-71.5 parent: 2 @@ -74561,7 +74565,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8899 + - uid: 8905 components: - pos: -3.5,-68.5 parent: 2 @@ -74570,42 +74574,42 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8900 + - uid: 8906 components: - pos: -1.5,-53.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8901 + - uid: 8907 components: - pos: 9.5,-45.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8902 + - uid: 8908 components: - pos: -19.5,25.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8903 + - uid: 8909 components: - pos: 1.5,9.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8904 + - uid: 8910 components: - pos: -11.5,-69.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8905 + - uid: 8911 components: - pos: -8.5,-71.5 parent: 2 @@ -74614,7 +74618,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8906 + - uid: 8912 components: - pos: -10.5,-71.5 parent: 2 @@ -74623,7 +74627,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8907 + - uid: 8913 components: - pos: 21.5,-9.5 parent: 2 @@ -74632,49 +74636,49 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8908 + - uid: 8914 components: - pos: 29.5,18.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8909 + - uid: 8915 components: - pos: 29.5,19.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8910 + - uid: 8916 components: - pos: 21.5,17.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8911 + - uid: 8917 components: - pos: 32.5,2.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8912 + - uid: 8918 components: - pos: 32.5,-0.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8913 + - uid: 8919 components: - pos: 32.5,-1.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8914 + - uid: 8920 components: - pos: 9.5,-47.5 parent: 2 @@ -74683,7 +74687,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8915 + - uid: 8921 components: - pos: 8.5,-45.5 parent: 2 @@ -74692,21 +74696,21 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8916 + - uid: 8922 components: - pos: 5.5,-46.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8917 + - uid: 8923 components: - pos: 3.5,-50.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8918 + - uid: 8924 components: - pos: 13.5,-14.5 parent: 2 @@ -74715,14 +74719,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8919 + - uid: 8925 components: - pos: 5.5,-49.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8920 + - uid: 8926 components: - pos: 9.5,-55.5 parent: 2 @@ -74731,7 +74735,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8921 + - uid: 8927 components: - pos: -3.5,14.5 parent: 2 @@ -74740,7 +74744,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8922 + - uid: 8928 components: - pos: -2.5,14.5 parent: 2 @@ -74749,21 +74753,21 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8923 + - uid: 8929 components: - pos: -1.5,14.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8924 + - uid: 8930 components: - pos: -0.5,14.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8925 + - uid: 8931 components: - pos: -5.5,14.5 parent: 2 @@ -74772,7 +74776,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8926 + - uid: 8932 components: - pos: -6.5,14.5 parent: 2 @@ -74781,7 +74785,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8927 + - uid: 8933 components: - pos: 1.5,10.5 parent: 2 @@ -74790,35 +74794,35 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8928 + - uid: 8934 components: - pos: 0.5,10.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8929 + - uid: 8935 components: - pos: 19.5,-27.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8930 + - uid: 8936 components: - pos: 21.5,16.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8931 + - uid: 8937 components: - pos: -19.5,24.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8932 + - uid: 8938 components: - pos: 8.5,-15.5 parent: 2 @@ -74827,70 +74831,70 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8933 + - uid: 8939 components: - pos: 31.5,-4.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8934 + - uid: 8940 components: - pos: 30.5,-4.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8935 + - uid: 8941 components: - pos: 30.5,-3.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8936 + - uid: 8942 components: - pos: 30.5,-2.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8937 + - uid: 8943 components: - pos: -9.5,-21.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8938 + - uid: 8944 components: - pos: -8.5,-19.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8939 + - uid: 8945 components: - pos: -8.5,-20.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8940 + - uid: 8946 components: - pos: -8.5,-21.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8941 + - uid: 8947 components: - pos: -10.5,-21.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8942 + - uid: 8948 components: - pos: -10.5,-20.5 parent: 2 @@ -74899,7 +74903,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8943 + - uid: 8949 components: - pos: 10.5,-47.5 parent: 2 @@ -74908,7 +74912,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8944 + - uid: 8950 components: - pos: 11.5,-47.5 parent: 2 @@ -74917,7 +74921,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8945 + - uid: 8951 components: - pos: 10.5,-45.5 parent: 2 @@ -74926,49 +74930,49 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8946 + - uid: 8952 components: - pos: 3.5,-51.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8947 + - uid: 8953 components: - pos: 3.5,-53.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8948 + - uid: 8954 components: - pos: 1.5,-53.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8949 + - uid: 8955 components: - pos: 0.5,-53.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8950 + - uid: 8956 components: - pos: 7.5,-43.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8951 + - uid: 8957 components: - pos: -20.5,-69.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8952 + - uid: 8958 components: - pos: -21.5,-68.5 parent: 2 @@ -74977,7 +74981,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8953 + - uid: 8959 components: - pos: -9.5,-71.5 parent: 2 @@ -74986,7 +74990,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8954 + - uid: 8960 components: - pos: -3.5,-69.5 parent: 2 @@ -74995,140 +74999,140 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8955 + - uid: 8961 components: - pos: 2.5,-53.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8956 + - uid: 8962 components: - pos: 18.5,-11.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8957 + - uid: 8963 components: - pos: 17.5,-11.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8958 + - uid: 8964 components: - pos: 44.5,-64.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8959 + - uid: 8965 components: - pos: 46.5,-65.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8960 + - uid: 8966 components: - pos: 38.5,-30.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8961 + - uid: 8967 components: - pos: 36.5,-30.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8962 + - uid: 8968 components: - pos: 28.5,-28.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8963 + - uid: 8969 components: - pos: 35.5,-27.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8964 + - uid: 8970 components: - pos: 35.5,-26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8965 + - uid: 8971 components: - pos: 36.5,-26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8966 + - uid: 8972 components: - pos: 37.5,-26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8967 + - uid: 8973 components: - pos: 38.5,-26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8968 + - uid: 8974 components: - pos: 39.5,-26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8969 + - uid: 8975 components: - pos: 41.5,-26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8970 + - uid: 8976 components: - pos: 42.5,-26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8971 + - uid: 8977 components: - pos: 0.5,12.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8972 + - uid: 8978 components: - pos: 0.5,13.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8973 + - uid: 8979 components: - pos: 38.5,-29.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8974 + - uid: 8980 components: - pos: 8.5,-47.5 parent: 2 @@ -75137,7 +75141,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8975 + - uid: 8981 components: - pos: 6.5,-19.5 parent: 2 @@ -75146,63 +75150,63 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8976 + - uid: 8982 components: - pos: 6.5,-11.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8977 + - uid: 8983 components: - pos: 7.5,-11.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8978 + - uid: 8984 components: - pos: 8.5,-11.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8979 + - uid: 8985 components: - pos: 8.5,-10.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8980 + - uid: 8986 components: - pos: 8.5,-9.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8981 + - uid: 8987 components: - pos: 8.5,-7.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8982 + - uid: 8988 components: - pos: 8.5,-5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8983 + - uid: 8989 components: - pos: 8.5,-4.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8984 + - uid: 8990 components: - pos: 8.5,-3.5 parent: 2 @@ -75211,14 +75215,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8985 + - uid: 8991 components: - pos: -21.5,-69.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8986 + - uid: 8992 components: - pos: 10.5,-14.5 parent: 2 @@ -75227,14 +75231,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8987 + - uid: 8993 components: - pos: -19.5,-69.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8988 + - uid: 8994 components: - pos: 9.5,-14.5 parent: 2 @@ -75243,7 +75247,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8989 + - uid: 8995 components: - pos: 15.5,-14.5 parent: 2 @@ -75252,7 +75256,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8990 + - uid: 8996 components: - pos: 12.5,-14.5 parent: 2 @@ -75261,28 +75265,28 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8991 + - uid: 8997 components: - pos: -16.5,-69.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8992 + - uid: 8998 components: - pos: 8.5,-6.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8993 + - uid: 8999 components: - pos: 8.5,-8.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8994 + - uid: 9000 components: - pos: -4.5,14.5 parent: 2 @@ -75291,14 +75295,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8995 + - uid: 9001 components: - pos: 10.5,-49.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 8996 + - uid: 9002 components: - pos: 19.5,-51.5 parent: 2 @@ -75307,7 +75311,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8997 + - uid: 9003 components: - pos: 17.5,-52.5 parent: 2 @@ -75316,7 +75320,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8998 + - uid: 9004 components: - pos: 15.5,-52.5 parent: 2 @@ -75325,7 +75329,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 8999 + - uid: 9005 components: - pos: 14.5,-51.5 parent: 2 @@ -75334,7 +75338,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9000 + - uid: 9006 components: - pos: 14.5,-50.5 parent: 2 @@ -75343,7 +75347,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9001 + - uid: 9007 components: - pos: 14.5,-49.5 parent: 2 @@ -75352,7 +75356,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9002 + - uid: 9008 components: - pos: 13.5,-49.5 parent: 2 @@ -75361,21 +75365,21 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9003 + - uid: 9009 components: - pos: 11.5,-49.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9004 + - uid: 9010 components: - pos: 19.5,-28.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9005 + - uid: 9011 components: - pos: 16.5,-14.5 parent: 2 @@ -75384,70 +75388,70 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9006 + - uid: 9012 components: - pos: 17.5,-14.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9007 + - uid: 9013 components: - pos: 17.5,-13.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9008 + - uid: 9014 components: - pos: 17.5,-12.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9009 + - uid: 9015 components: - pos: 19.5,-11.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9010 + - uid: 9016 components: - pos: 21.5,-11.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9011 + - uid: 9017 components: - pos: 5.5,-47.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9012 + - uid: 9018 components: - pos: 19.5,-52.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9013 + - uid: 9019 components: - pos: 32.5,-4.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9014 + - uid: 9020 components: - pos: 6.5,-43.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9015 + - uid: 9021 components: - pos: 14.5,-14.5 parent: 2 @@ -75456,7 +75460,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9016 + - uid: 9022 components: - pos: 6.5,-13.5 parent: 2 @@ -75465,7 +75469,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9017 + - uid: 9023 components: - pos: 6.5,-14.5 parent: 2 @@ -75474,7 +75478,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9018 + - uid: 9024 components: - pos: 7.5,-14.5 parent: 2 @@ -75483,7 +75487,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9019 + - uid: 9025 components: - pos: 8.5,-14.5 parent: 2 @@ -75492,35 +75496,35 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9020 + - uid: 9026 components: - pos: 8.5,-16.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9021 + - uid: 9027 components: - pos: 21.5,-28.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9022 + - uid: 9028 components: - pos: 21.5,-10.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9023 + - uid: 9029 components: - pos: 12.5,-49.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9024 + - uid: 9030 components: - pos: 13.5,-57.5 parent: 2 @@ -75529,7 +75533,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9025 + - uid: 9031 components: - pos: 14.5,-52.5 parent: 2 @@ -75538,21 +75542,21 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9026 + - uid: 9032 components: - pos: 32.5,-2.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9027 + - uid: 9033 components: - pos: 6.5,-12.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9028 + - uid: 9034 components: - pos: -4.5,-69.5 parent: 2 @@ -75561,56 +75565,56 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9029 + - uid: 9035 components: - pos: 5.5,-43.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9030 + - uid: 9036 components: - pos: 38.5,16.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9031 + - uid: 9037 components: - pos: 37.5,14.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9032 + - uid: 9038 components: - pos: 7.5,-46.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9033 + - uid: 9039 components: - pos: 27.5,18.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9034 + - uid: 9040 components: - pos: 32.5,-3.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9035 + - uid: 9041 components: - pos: -18.5,-69.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9036 + - uid: 9042 components: - pos: -13.5,-69.5 parent: 2 @@ -75619,14 +75623,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9037 + - uid: 9043 components: - pos: 26.5,-28.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9038 + - uid: 9044 components: - pos: 25.5,-28.5 parent: 2 @@ -75635,21 +75639,21 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9039 + - uid: 9045 components: - pos: 23.5,-28.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9040 + - uid: 9046 components: - pos: 22.5,-28.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9041 + - uid: 9047 components: - pos: 20.5,-28.5 parent: 2 @@ -75658,14 +75662,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9042 + - uid: 9048 components: - pos: 7.5,-45.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9043 + - uid: 9049 components: - pos: 11.5,-45.5 parent: 2 @@ -75674,7 +75678,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9044 + - uid: 9050 components: - pos: 11.5,-14.5 parent: 2 @@ -75683,91 +75687,91 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9045 + - uid: 9051 components: - pos: 20.5,-11.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9046 + - uid: 9052 components: - pos: -17.5,-69.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9047 + - uid: 9053 components: - pos: 22.5,17.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9048 + - uid: 9054 components: - pos: 23.5,17.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9049 + - uid: 9055 components: - pos: 23.5,18.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9050 + - uid: 9056 components: - pos: 24.5,18.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9051 + - uid: 9057 components: - pos: 25.5,18.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9052 + - uid: 9058 components: - pos: 26.5,18.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9053 + - uid: 9059 components: - pos: 35.5,-28.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9054 + - uid: 9060 components: - pos: 35.5,-30.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9055 + - uid: 9061 components: - pos: -15.5,-69.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9056 + - uid: 9062 components: - pos: -12.5,-69.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9057 + - uid: 9063 components: - pos: 33.5,23.5 parent: 2 @@ -75776,63 +75780,63 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9058 + - uid: 9064 components: - pos: 29.5,20.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9059 + - uid: 9065 components: - pos: 29.5,21.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9060 + - uid: 9066 components: - pos: 28.5,21.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9061 + - uid: 9067 components: - pos: 27.5,21.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9062 + - uid: 9068 components: - pos: 26.5,21.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9063 + - uid: 9069 components: - pos: 25.5,21.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9064 + - uid: 9070 components: - pos: 25.5,22.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9065 + - uid: 9071 components: - pos: 25.5,23.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9066 + - uid: 9072 components: - pos: 25.5,24.5 parent: 2 @@ -75841,7 +75845,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9067 + - uid: 9073 components: - pos: 24.5,24.5 parent: 2 @@ -75850,35 +75854,35 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9068 + - uid: 9074 components: - pos: 30.5,21.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9069 + - uid: 9075 components: - pos: 31.5,21.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9070 + - uid: 9076 components: - pos: 32.5,21.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9071 + - uid: 9077 components: - pos: 32.5,22.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9072 + - uid: 9078 components: - pos: 32.5,23.5 parent: 2 @@ -75887,28 +75891,28 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9073 + - uid: 9079 components: - pos: 33.5,24.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9074 + - uid: 9080 components: - pos: 33.5,25.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9075 + - uid: 9081 components: - pos: 46.5,-64.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9076 + - uid: 9082 components: - pos: -13.5,42.5 parent: 2 @@ -75917,28 +75921,28 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9077 + - uid: 9083 components: - pos: -14.5,42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9078 + - uid: 9084 components: - pos: -19.5,23.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9079 + - uid: 9085 components: - pos: -19.5,22.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9080 + - uid: 9086 components: - pos: 32.5,-9.5 parent: 2 @@ -75947,112 +75951,112 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9081 + - uid: 9087 components: - pos: 63.5,7.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9082 + - uid: 9088 components: - pos: 63.5,6.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9083 + - uid: 9089 components: - pos: 63.5,5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9084 + - uid: 9090 components: - pos: 63.5,4.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9085 + - uid: 9091 components: - pos: 62.5,4.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9086 + - uid: 9092 components: - pos: 61.5,4.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9087 + - uid: 9093 components: - pos: 60.5,4.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9088 + - uid: 9094 components: - pos: 60.5,5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9089 + - uid: 9095 components: - pos: 60.5,6.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9090 + - uid: 9096 components: - pos: 60.5,7.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9091 + - uid: 9097 components: - pos: 60.5,8.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9092 + - uid: 9098 components: - pos: 60.5,9.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9093 + - uid: 9099 components: - pos: 59.5,9.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9094 + - uid: 9100 components: - pos: 58.5,9.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9095 + - uid: 9101 components: - pos: 58.5,10.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9096 + - uid: 9102 components: - pos: 58.5,11.5 parent: 2 @@ -76061,21 +76065,21 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9097 + - uid: 9103 components: - pos: 38.5,15.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9098 + - uid: 9104 components: - pos: 22.5,-8.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9099 + - uid: 9105 components: - pos: 23.5,-8.5 parent: 2 @@ -76084,28 +76088,28 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9100 + - uid: 9106 components: - pos: 24.5,-8.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9101 + - uid: 9107 components: - pos: 25.5,-8.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9102 + - uid: 9108 components: - pos: 26.5,-8.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9103 + - uid: 9109 components: - pos: 27.5,-8.5 parent: 2 @@ -76114,7 +76118,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9104 + - uid: 9110 components: - pos: 29.5,-8.5 parent: 2 @@ -76123,14 +76127,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9105 + - uid: 9111 components: - pos: 28.5,-8.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9106 + - uid: 9112 components: - pos: 30.5,-8.5 parent: 2 @@ -76139,7 +76143,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9107 + - uid: 9113 components: - pos: 31.5,-8.5 parent: 2 @@ -76148,7 +76152,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9108 + - uid: 9114 components: - pos: 32.5,-8.5 parent: 2 @@ -76157,84 +76161,84 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9109 + - uid: 9115 components: - pos: 47.5,-3.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9110 + - uid: 9116 components: - pos: 47.5,-2.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9111 + - uid: 9117 components: - pos: 47.5,-1.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9112 + - uid: 9118 components: - pos: 46.5,-1.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9113 + - uid: 9119 components: - pos: 46.5,-0.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9114 + - uid: 9120 components: - pos: 46.5,0.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9115 + - uid: 9121 components: - pos: 47.5,0.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9116 + - uid: 9122 components: - pos: 48.5,0.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9117 + - uid: 9123 components: - pos: 49.5,0.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9118 + - uid: 9124 components: - pos: 49.5,1.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9119 + - uid: 9125 components: - pos: 49.5,2.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9120 + - uid: 9126 components: - pos: 49.5,3.5 parent: 2 @@ -76243,7 +76247,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9121 + - uid: 9127 components: - pos: 48.5,-5.5 parent: 2 @@ -76252,7 +76256,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9122 + - uid: 9128 components: - pos: 47.5,-5.5 parent: 2 @@ -76261,14 +76265,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9123 + - uid: 9129 components: - pos: 47.5,-6.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9124 + - uid: 9130 components: - pos: 47.5,-7.5 parent: 2 @@ -76277,119 +76281,119 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9125 + - uid: 9131 components: - pos: 47.5,-8.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9126 + - uid: 9132 components: - pos: 48.5,-8.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9127 + - uid: 9133 components: - pos: 49.5,-8.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9128 + - uid: 9134 components: - pos: 50.5,-8.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9129 + - uid: 9135 components: - pos: 51.5,-8.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9130 + - uid: 9136 components: - pos: 52.5,-8.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9131 + - uid: 9137 components: - pos: 52.5,-7.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9132 + - uid: 9138 components: - pos: 52.5,-6.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9133 + - uid: 9139 components: - pos: 53.5,-6.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9134 + - uid: 9140 components: - pos: 53.5,-5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9135 + - uid: 9141 components: - pos: 54.5,-5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9136 + - uid: 9142 components: - pos: 55.5,-5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9137 + - uid: 9143 components: - pos: 56.5,-5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9138 + - uid: 9144 components: - pos: 57.5,-5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9139 + - uid: 9145 components: - pos: 58.5,-5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9140 + - uid: 9146 components: - pos: 59.5,-5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9141 + - uid: 9147 components: - pos: 59.5,-4.5 parent: 2 @@ -76398,28 +76402,28 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9142 + - uid: 9148 components: - pos: 43.5,-64.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9143 + - uid: 9149 components: - pos: 38.5,-46.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9144 + - uid: 9150 components: - pos: 38.5,-45.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9145 + - uid: 9151 components: - pos: 38.5,-44.5 parent: 2 @@ -76428,154 +76432,154 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9146 + - uid: 9152 components: - pos: 38.5,-43.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9147 + - uid: 9153 components: - pos: 39.5,-43.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9148 + - uid: 9154 components: - pos: 40.5,-43.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9149 + - uid: 9155 components: - pos: 41.5,-43.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9150 + - uid: 9156 components: - pos: 42.5,-43.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9151 + - uid: 9157 components: - pos: 43.5,-43.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9152 + - uid: 9158 components: - pos: 44.5,-43.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9153 + - uid: 9159 components: - pos: 45.5,-43.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9154 + - uid: 9160 components: - pos: 46.5,-43.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9155 + - uid: 9161 components: - pos: 47.5,-43.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9156 + - uid: 9162 components: - pos: 48.5,-43.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9157 + - uid: 9163 components: - pos: 49.5,-43.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9158 + - uid: 9164 components: - pos: 49.5,-44.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9159 + - uid: 9165 components: - pos: 49.5,-45.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9160 + - uid: 9166 components: - pos: 50.5,-45.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9161 + - uid: 9167 components: - pos: 51.5,-45.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9162 + - uid: 9168 components: - pos: 52.5,-45.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9163 + - uid: 9169 components: - pos: 53.5,-45.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9164 + - uid: 9170 components: - pos: 54.5,-45.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9165 + - uid: 9171 components: - pos: 55.5,-45.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9166 + - uid: 9172 components: - pos: 55.5,-44.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9167 + - uid: 9173 components: - pos: 55.5,-43.5 parent: 2 @@ -76584,42 +76588,42 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9168 + - uid: 9174 components: - pos: 68.5,-59.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9169 + - uid: 9175 components: - pos: 69.5,-59.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9170 + - uid: 9176 components: - pos: 40.5,-62.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9171 + - uid: 9177 components: - pos: 40.5,-60.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9172 + - uid: 9178 components: - pos: 42.5,-64.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9173 + - uid: 9179 components: - pos: -16.5,-0.5 parent: 2 @@ -76628,7 +76632,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9174 + - uid: 9180 components: - pos: -17.5,-0.5 parent: 2 @@ -76637,7 +76641,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9175 + - uid: 9181 components: - pos: -18.5,-0.5 parent: 2 @@ -76646,7 +76650,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9176 + - uid: 9182 components: - pos: -19.5,-0.5 parent: 2 @@ -76655,7 +76659,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9177 + - uid: 9183 components: - pos: -20.5,-0.5 parent: 2 @@ -76664,7 +76668,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9178 + - uid: 9184 components: - pos: -20.5,0.5 parent: 2 @@ -76673,7 +76677,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9179 + - uid: 9185 components: - pos: -29.5,-8.5 parent: 2 @@ -76682,28 +76686,28 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9180 + - uid: 9186 components: - pos: -28.5,-23.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9181 + - uid: 9187 components: - pos: -28.5,-22.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9182 + - uid: 9188 components: - pos: -28.5,-21.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9183 + - uid: 9189 components: - pos: -29.5,-21.5 parent: 2 @@ -76712,119 +76716,119 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9184 + - uid: 9190 components: - pos: -30.5,-21.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9185 + - uid: 9191 components: - pos: -31.5,-21.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9186 + - uid: 9192 components: - pos: -31.5,-20.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9187 + - uid: 9193 components: - pos: -31.5,-19.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9188 + - uid: 9194 components: - pos: -31.5,-18.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9189 + - uid: 9195 components: - pos: -31.5,-17.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9190 + - uid: 9196 components: - pos: -31.5,-16.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9191 + - uid: 9197 components: - pos: -31.5,-15.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9192 + - uid: 9198 components: - pos: -31.5,-14.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9193 + - uid: 9199 components: - pos: -31.5,-13.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9194 + - uid: 9200 components: - pos: -31.5,-12.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9195 + - uid: 9201 components: - pos: -31.5,-11.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9196 + - uid: 9202 components: - pos: -31.5,-10.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9197 + - uid: 9203 components: - pos: -30.5,-10.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9198 + - uid: 9204 components: - pos: -29.5,-10.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9199 + - uid: 9205 components: - pos: -29.5,-9.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9200 + - uid: 9206 components: - pos: 43.5,-58.5 parent: 2 @@ -76833,7 +76837,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9201 + - uid: 9207 components: - pos: 43.5,-59.5 parent: 2 @@ -76842,56 +76846,56 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9202 + - uid: 9208 components: - pos: 42.5,-59.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9203 + - uid: 9209 components: - pos: 41.5,-59.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9204 + - uid: 9210 components: - pos: 40.5,-59.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9205 + - uid: 9211 components: - pos: 39.5,-59.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9206 + - uid: 9212 components: - pos: 38.5,-59.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9207 + - uid: 9213 components: - pos: 37.5,-59.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9208 + - uid: 9214 components: - pos: 37.5,-58.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9209 + - uid: 9215 components: - pos: 37.5,-57.5 parent: 2 @@ -76900,77 +76904,77 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9210 + - uid: 9216 components: - pos: 56.5,-45.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9211 + - uid: 9217 components: - pos: 57.5,-45.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9212 + - uid: 9218 components: - pos: 58.5,-45.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9213 + - uid: 9219 components: - pos: 59.5,-45.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9214 + - uid: 9220 components: - pos: 60.5,-45.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9215 + - uid: 9221 components: - pos: 61.5,-45.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9216 + - uid: 9222 components: - pos: 61.5,-46.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9217 + - uid: 9223 components: - pos: 61.5,-47.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9218 + - uid: 9224 components: - pos: 61.5,-48.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9219 + - uid: 9225 components: - pos: 61.5,-49.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9220 + - uid: 9226 components: - pos: 61.5,-50.5 parent: 2 @@ -76979,42 +76983,42 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9221 + - uid: 9227 components: - pos: 61.5,-51.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9222 + - uid: 9228 components: - pos: 60.5,-51.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9223 + - uid: 9229 components: - pos: 59.5,-51.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9224 + - uid: 9230 components: - pos: 58.5,-51.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9225 + - uid: 9231 components: - pos: 58.5,-52.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9226 + - uid: 9232 components: - pos: 58.5,-53.5 parent: 2 @@ -77023,7 +77027,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9227 + - uid: 9233 components: - pos: 59.5,-53.5 parent: 2 @@ -77032,14 +77036,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9228 + - uid: 9234 components: - pos: 59.5,-54.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9229 + - uid: 9235 components: - pos: 59.5,-55.5 parent: 2 @@ -77048,7 +77052,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9230 + - uid: 9236 components: - pos: 60.5,-55.5 parent: 2 @@ -77057,7 +77061,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9231 + - uid: 9237 components: - pos: 60.5,-56.5 parent: 2 @@ -77066,28 +77070,28 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9232 + - uid: 9238 components: - pos: 61.5,-56.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9233 + - uid: 9239 components: - pos: 62.5,-56.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9234 + - uid: 9240 components: - pos: 63.5,-56.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9235 + - uid: 9241 components: - pos: 64.5,-56.5 parent: 2 @@ -77096,7 +77100,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9236 + - uid: 9242 components: - pos: 64.5,-55.5 parent: 2 @@ -77105,7 +77109,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9237 + - uid: 9243 components: - pos: 65.5,-55.5 parent: 2 @@ -77114,14 +77118,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9238 + - uid: 9244 components: - pos: 65.5,-54.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9239 + - uid: 9245 components: - pos: 65.5,-53.5 parent: 2 @@ -77130,7 +77134,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9240 + - uid: 9246 components: - pos: 66.5,-53.5 parent: 2 @@ -77139,21 +77143,21 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9241 + - uid: 9247 components: - pos: 66.5,-52.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9242 + - uid: 9248 components: - pos: 66.5,-51.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9243 + - uid: 9249 components: - pos: 66.5,-50.5 parent: 2 @@ -77162,7 +77166,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9244 + - uid: 9250 components: - pos: 65.5,-50.5 parent: 2 @@ -77171,7 +77175,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9245 + - uid: 9251 components: - pos: 47.5,-65.5 parent: 2 @@ -77180,7 +77184,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9246 + - uid: 9252 components: - pos: -59.5,-20.5 parent: 2 @@ -77189,14 +77193,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9247 + - uid: 9253 components: - pos: -57.5,-20.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9248 + - uid: 9254 components: - pos: -58.5,-20.5 parent: 2 @@ -77205,7 +77209,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9249 + - uid: 9255 components: - pos: -60.5,-20.5 parent: 2 @@ -77214,7 +77218,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9250 + - uid: 9256 components: - pos: -61.5,-20.5 parent: 2 @@ -77223,7 +77227,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9251 + - uid: 9257 components: - pos: -62.5,-20.5 parent: 2 @@ -77232,7 +77236,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9252 + - uid: 9258 components: - pos: -63.5,-20.5 parent: 2 @@ -77241,7 +77245,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9253 + - uid: 9259 components: - pos: -64.5,-20.5 parent: 2 @@ -77250,7 +77254,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9254 + - uid: 9260 components: - pos: -65.5,-20.5 parent: 2 @@ -77259,7 +77263,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9255 + - uid: 9261 components: - pos: -66.5,-20.5 parent: 2 @@ -77268,7 +77272,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9256 + - uid: 9262 components: - pos: -67.5,-20.5 parent: 2 @@ -77277,7 +77281,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9257 + - uid: 9263 components: - pos: -68.5,-20.5 parent: 2 @@ -77286,7 +77290,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9258 + - uid: 9264 components: - pos: -69.5,-20.5 parent: 2 @@ -77295,7 +77299,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9259 + - uid: 9265 components: - pos: -70.5,-20.5 parent: 2 @@ -77304,7 +77308,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9260 + - uid: 9266 components: - pos: -71.5,-20.5 parent: 2 @@ -77313,7 +77317,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9261 + - uid: 9267 components: - pos: -72.5,-20.5 parent: 2 @@ -77322,7 +77326,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9262 + - uid: 9268 components: - pos: -73.5,-20.5 parent: 2 @@ -77331,7 +77335,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9263 + - uid: 9269 components: - pos: -73.5,-19.5 parent: 2 @@ -77340,7 +77344,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9264 + - uid: 9270 components: - pos: -73.5,-18.5 parent: 2 @@ -77349,7 +77353,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9265 + - uid: 9271 components: - pos: -73.5,-17.5 parent: 2 @@ -77358,7 +77362,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9266 + - uid: 9272 components: - pos: -73.5,-16.5 parent: 2 @@ -77367,7 +77371,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9267 + - uid: 9273 components: - pos: -73.5,-15.5 parent: 2 @@ -77376,7 +77380,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9268 + - uid: 9274 components: - pos: -73.5,-14.5 parent: 2 @@ -77385,7 +77389,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9269 + - uid: 9275 components: - pos: -73.5,-13.5 parent: 2 @@ -77394,7 +77398,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9270 + - uid: 9276 components: - pos: -73.5,-12.5 parent: 2 @@ -77403,7 +77407,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9271 + - uid: 9277 components: - pos: -73.5,-11.5 parent: 2 @@ -77412,7 +77416,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9272 + - uid: 9278 components: - pos: -73.5,-10.5 parent: 2 @@ -77421,7 +77425,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9273 + - uid: 9279 components: - pos: -73.5,-9.5 parent: 2 @@ -77430,7 +77434,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9274 + - uid: 9280 components: - pos: -73.5,-8.5 parent: 2 @@ -77439,7 +77443,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9275 + - uid: 9281 components: - pos: -73.5,-7.5 parent: 2 @@ -77448,7 +77452,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9276 + - uid: 9282 components: - pos: -73.5,-6.5 parent: 2 @@ -77457,7 +77461,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9277 + - uid: 9283 components: - pos: -72.5,-6.5 parent: 2 @@ -77466,7 +77470,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9278 + - uid: 9284 components: - pos: -71.5,-6.5 parent: 2 @@ -77475,7 +77479,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9279 + - uid: 9285 components: - pos: -70.5,-6.5 parent: 2 @@ -77484,7 +77488,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9280 + - uid: 9286 components: - pos: -69.5,-6.5 parent: 2 @@ -77493,7 +77497,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9281 + - uid: 9287 components: - pos: -68.5,-6.5 parent: 2 @@ -77502,7 +77506,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9282 + - uid: 9288 components: - pos: -67.5,-6.5 parent: 2 @@ -77511,7 +77515,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9283 + - uid: 9289 components: - pos: -66.5,-6.5 parent: 2 @@ -77520,7 +77524,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9284 + - uid: 9290 components: - pos: -65.5,-6.5 parent: 2 @@ -77529,7 +77533,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9285 + - uid: 9291 components: - pos: -64.5,-6.5 parent: 2 @@ -77538,7 +77542,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9286 + - uid: 9292 components: - pos: -63.5,-6.5 parent: 2 @@ -77547,7 +77551,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9287 + - uid: 9293 components: - pos: -62.5,-6.5 parent: 2 @@ -77556,7 +77560,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9288 + - uid: 9294 components: - pos: -61.5,-6.5 parent: 2 @@ -77565,7 +77569,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9289 + - uid: 9295 components: - pos: -60.5,-6.5 parent: 2 @@ -77574,7 +77578,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9290 + - uid: 9296 components: - pos: -59.5,-6.5 parent: 2 @@ -77583,7 +77587,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9291 + - uid: 9297 components: - pos: -59.5,-7.5 parent: 2 @@ -77592,7 +77596,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9292 + - uid: 9298 components: - pos: -59.5,-8.5 parent: 2 @@ -77601,7 +77605,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9293 + - uid: 9299 components: - pos: -59.5,-9.5 parent: 2 @@ -77610,7 +77614,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9294 + - uid: 9300 components: - pos: -59.5,-10.5 parent: 2 @@ -77619,7 +77623,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9295 + - uid: 9301 components: - pos: -59.5,-11.5 parent: 2 @@ -77628,7 +77632,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9296 + - uid: 9302 components: - pos: -59.5,-12.5 parent: 2 @@ -77637,7 +77641,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9297 + - uid: 9303 components: - pos: -59.5,-13.5 parent: 2 @@ -77646,7 +77650,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9298 + - uid: 9304 components: - pos: -59.5,-14.5 parent: 2 @@ -77655,7 +77659,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9299 + - uid: 9305 components: - pos: -59.5,-15.5 parent: 2 @@ -77664,7 +77668,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9300 + - uid: 9306 components: - pos: -59.5,-16.5 parent: 2 @@ -77673,7 +77677,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9301 + - uid: 9307 components: - pos: -59.5,-17.5 parent: 2 @@ -77682,7 +77686,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9302 + - uid: 9308 components: - pos: -59.5,-18.5 parent: 2 @@ -77691,7 +77695,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9303 + - uid: 9309 components: - pos: -59.5,-19.5 parent: 2 @@ -77700,112 +77704,112 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9304 + - uid: 9310 components: - pos: -50.5,-8.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9305 + - uid: 9311 components: - pos: -51.5,-8.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9306 + - uid: 9312 components: - pos: -52.5,-8.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9307 + - uid: 9313 components: - pos: -53.5,-8.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9308 + - uid: 9314 components: - pos: -53.5,-9.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9309 + - uid: 9315 components: - pos: -53.5,-10.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9310 + - uid: 9316 components: - pos: -53.5,-11.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9311 + - uid: 9317 components: - pos: -53.5,-12.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9312 + - uid: 9318 components: - pos: -53.5,-13.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9313 + - uid: 9319 components: - pos: -53.5,-14.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9314 + - uid: 9320 components: - pos: -53.5,-15.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9315 + - uid: 9321 components: - pos: -53.5,-16.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9316 + - uid: 9322 components: - pos: -51.5,-16.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9317 + - uid: 9323 components: - pos: -52.5,-16.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9318 + - uid: 9324 components: - pos: -50.5,-16.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9319 + - uid: 9325 components: - pos: -50.5,-15.5 parent: 2 @@ -77814,21 +77818,21 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9320 + - uid: 9326 components: - pos: -27.5,-37.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9321 + - uid: 9327 components: - pos: -27.5,-36.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9322 + - uid: 9328 components: - pos: -27.5,-35.5 parent: 2 @@ -77837,84 +77841,84 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9323 + - uid: 9329 components: - pos: -27.5,-34.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9324 + - uid: 9330 components: - pos: -28.5,-34.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9325 + - uid: 9331 components: - pos: -29.5,-34.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9326 + - uid: 9332 components: - pos: -30.5,-34.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9327 + - uid: 9333 components: - pos: -31.5,-34.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9328 + - uid: 9334 components: - pos: -32.5,-34.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9329 + - uid: 9335 components: - pos: -33.5,-34.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9330 + - uid: 9336 components: - pos: -34.5,-34.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9331 + - uid: 9337 components: - pos: -35.5,-34.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9332 + - uid: 9338 components: - pos: -35.5,-33.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9333 + - uid: 9339 components: - pos: -35.5,-32.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9334 + - uid: 9340 components: - pos: -35.5,-31.5 parent: 2 @@ -77923,35 +77927,35 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9335 + - uid: 9341 components: - pos: -54.5,-13.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9336 + - uid: 9342 components: - pos: -31.5,-54.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9337 + - uid: 9343 components: - pos: -31.5,-55.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9338 + - uid: 9344 components: - pos: -30.5,-55.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9339 + - uid: 9345 components: - pos: -29.5,-55.5 parent: 2 @@ -77960,63 +77964,63 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9340 + - uid: 9346 components: - pos: -28.5,-55.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9341 + - uid: 9347 components: - pos: -28.5,-56.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9342 + - uid: 9348 components: - pos: -28.5,-57.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9343 + - uid: 9349 components: - pos: -28.5,-58.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9344 + - uid: 9350 components: - pos: -28.5,-59.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9345 + - uid: 9351 components: - pos: -28.5,-60.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9346 + - uid: 9352 components: - pos: -28.5,-61.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9347 + - uid: 9353 components: - pos: -28.5,-62.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9348 + - uid: 9354 components: - pos: -28.5,-63.5 parent: 2 @@ -78025,7 +78029,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9349 + - uid: 9355 components: - pos: -29.5,-63.5 parent: 2 @@ -78034,7 +78038,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9350 + - uid: 9356 components: - pos: -29.5,-64.5 parent: 2 @@ -78043,77 +78047,77 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9351 + - uid: 9357 components: - pos: -30.5,-63.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9352 + - uid: 9358 components: - pos: 21.5,-8.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9353 + - uid: 9359 components: - pos: 29.5,-28.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9354 + - uid: 9360 components: - pos: -55.5,-89.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9355 + - uid: 9361 components: - pos: -54.5,-89.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9356 + - uid: 9362 components: - pos: -54.5,-88.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9357 + - uid: 9363 components: - pos: -54.5,-87.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9358 + - uid: 9364 components: - pos: -55.5,-87.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9359 + - uid: 9365 components: - pos: -55.5,-86.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9360 + - uid: 9366 components: - pos: -56.5,-86.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9361 + - uid: 9367 components: - pos: -56.5,-85.5 parent: 2 @@ -78122,42 +78126,42 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9362 + - uid: 9368 components: - pos: -8.5,35.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9363 + - uid: 9369 components: - pos: -8.5,33.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9364 + - uid: 9370 components: - pos: -8.5,34.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9365 + - uid: 9371 components: - pos: -8.5,31.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9366 + - uid: 9372 components: - pos: -8.5,32.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9367 + - uid: 9373 components: - pos: -7.5,32.5 parent: 2 @@ -78166,14 +78170,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9368 + - uid: 9374 components: - pos: -6.5,32.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9369 + - uid: 9375 components: - pos: -5.5,32.5 parent: 2 @@ -78182,63 +78186,63 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9370 + - uid: 9376 components: - pos: -4.5,32.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9371 + - uid: 9377 components: - pos: -3.5,32.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9372 + - uid: 9378 components: - pos: -2.5,32.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9373 + - uid: 9379 components: - pos: -1.5,32.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9374 + - uid: 9380 components: - pos: -0.5,32.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9375 + - uid: 9381 components: - pos: 0.5,32.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9376 + - uid: 9382 components: - pos: 0.5,33.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9377 + - uid: 9383 components: - pos: 0.5,34.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9378 + - uid: 9384 components: - pos: 0.5,35.5 parent: 2 @@ -78247,140 +78251,140 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9379 + - uid: 9385 components: - pos: -23.5,15.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9380 + - uid: 9386 components: - pos: -22.5,15.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9381 + - uid: 9387 components: - pos: -21.5,15.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9382 + - uid: 9388 components: - pos: -20.5,15.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9383 + - uid: 9389 components: - pos: -19.5,15.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9384 + - uid: 9390 components: - pos: -19.5,16.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9385 + - uid: 9391 components: - pos: -19.5,17.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9386 + - uid: 9392 components: - pos: -19.5,18.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9387 + - uid: 9393 components: - pos: -19.5,19.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9388 + - uid: 9394 components: - pos: -19.5,20.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9389 + - uid: 9395 components: - pos: -19.5,21.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9390 + - uid: 9396 components: - pos: -20.5,21.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9391 + - uid: 9397 components: - pos: -21.5,21.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9392 + - uid: 9398 components: - pos: -22.5,21.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9393 + - uid: 9399 components: - pos: -23.5,21.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9394 + - uid: 9400 components: - pos: -23.5,22.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9395 + - uid: 9401 components: - pos: -23.5,23.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9396 + - uid: 9402 components: - pos: -23.5,24.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9397 + - uid: 9403 components: - pos: -23.5,25.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9398 + - uid: 9404 components: - pos: -23.5,26.5 parent: 2 @@ -78389,7 +78393,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9399 + - uid: 9405 components: - pos: -9.5,26.5 parent: 2 @@ -78398,28 +78402,28 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9400 + - uid: 9406 components: - pos: -34.5,-3.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9401 + - uid: 9407 components: - pos: -34.5,-2.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9402 + - uid: 9408 components: - pos: -35.5,-2.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9403 + - uid: 9409 components: - pos: -36.5,-2.5 parent: 2 @@ -78428,7 +78432,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9404 + - uid: 9410 components: - pos: -37.5,-2.5 parent: 2 @@ -78437,70 +78441,70 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9405 + - uid: 9411 components: - pos: -37.5,-1.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9406 + - uid: 9412 components: - pos: -37.5,-0.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9407 + - uid: 9413 components: - pos: -37.5,0.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9408 + - uid: 9414 components: - pos: -38.5,0.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9409 + - uid: 9415 components: - pos: -39.5,0.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9410 + - uid: 9416 components: - pos: -40.5,0.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9411 + - uid: 9417 components: - pos: -41.5,0.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9412 + - uid: 9418 components: - pos: -42.5,0.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9413 + - uid: 9419 components: - pos: -42.5,1.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9414 + - uid: 9420 components: - pos: -42.5,2.5 parent: 2 @@ -78509,7 +78513,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9415 + - uid: 9421 components: - pos: -9.5,25.5 parent: 2 @@ -78518,7 +78522,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9416 + - uid: 9422 components: - pos: -6.5,15.5 parent: 2 @@ -78527,7 +78531,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9417 + - uid: 9423 components: - pos: -6.5,16.5 parent: 2 @@ -78536,7 +78540,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9418 + - uid: 9424 components: - pos: -6.5,17.5 parent: 2 @@ -78545,7 +78549,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9419 + - uid: 9425 components: - pos: -7.5,18.5 parent: 2 @@ -78554,7 +78558,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9420 + - uid: 9426 components: - pos: -8.5,18.5 parent: 2 @@ -78563,7 +78567,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9421 + - uid: 9427 components: - pos: -9.5,18.5 parent: 2 @@ -78572,7 +78576,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9422 + - uid: 9428 components: - pos: -10.5,18.5 parent: 2 @@ -78581,35 +78585,35 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9423 + - uid: 9429 components: - pos: -11.5,18.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9424 + - uid: 9430 components: - pos: -12.5,18.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9425 + - uid: 9431 components: - pos: -12.5,19.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9426 + - uid: 9432 components: - pos: -12.5,20.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9427 + - uid: 9433 components: - pos: -12.5,21.5 parent: 2 @@ -78618,7 +78622,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9428 + - uid: 9434 components: - pos: -12.5,22.5 parent: 2 @@ -78627,7 +78631,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9429 + - uid: 9435 components: - pos: -12.5,23.5 parent: 2 @@ -78636,7 +78640,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9430 + - uid: 9436 components: - pos: -12.5,24.5 parent: 2 @@ -78645,7 +78649,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9431 + - uid: 9437 components: - pos: -11.5,24.5 parent: 2 @@ -78654,21 +78658,21 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9432 + - uid: 9438 components: - pos: -10.5,24.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9433 + - uid: 9439 components: - pos: -9.5,24.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9434 + - uid: 9440 components: - pos: -8.5,26.5 parent: 2 @@ -78677,14 +78681,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9435 + - uid: 9441 components: - pos: -8.5,27.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9436 + - uid: 9442 components: - pos: -8.5,28.5 parent: 2 @@ -78693,28 +78697,28 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9437 + - uid: 9443 components: - pos: -8.5,29.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9438 + - uid: 9444 components: - pos: -8.5,30.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9439 + - uid: 9445 components: - pos: -55.5,-13.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9440 + - uid: 9446 components: - pos: 33.5,26.5 parent: 2 @@ -78723,7 +78727,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9441 + - uid: 9447 components: - pos: 33.5,27.5 parent: 2 @@ -78732,7 +78736,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9442 + - uid: 9448 components: - pos: 33.5,28.5 parent: 2 @@ -78741,7 +78745,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9443 + - uid: 9449 components: - pos: 34.5,28.5 parent: 2 @@ -78750,7 +78754,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9444 + - uid: 9450 components: - pos: 35.5,28.5 parent: 2 @@ -78759,7 +78763,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9445 + - uid: 9451 components: - pos: 36.5,28.5 parent: 2 @@ -78768,7 +78772,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9446 + - uid: 9452 components: - pos: 36.5,29.5 parent: 2 @@ -78777,7 +78781,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9447 + - uid: 9453 components: - pos: 36.5,30.5 parent: 2 @@ -78786,7 +78790,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9448 + - uid: 9454 components: - pos: 36.5,31.5 parent: 2 @@ -78795,7 +78799,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9449 + - uid: 9455 components: - pos: 36.5,32.5 parent: 2 @@ -78804,7 +78808,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9450 + - uid: 9456 components: - pos: 35.5,32.5 parent: 2 @@ -78813,7 +78817,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9451 + - uid: 9457 components: - pos: 34.5,32.5 parent: 2 @@ -78822,7 +78826,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9452 + - uid: 9458 components: - pos: 36.5,33.5 parent: 2 @@ -78831,7 +78835,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9453 + - uid: 9459 components: - pos: 34.5,33.5 parent: 2 @@ -78840,7 +78844,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9454 + - uid: 9460 components: - pos: 34.5,34.5 parent: 2 @@ -78849,7 +78853,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9455 + - uid: 9461 components: - pos: 33.5,34.5 parent: 2 @@ -78858,7 +78862,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9456 + - uid: 9462 components: - pos: 32.5,34.5 parent: 2 @@ -78867,7 +78871,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9457 + - uid: 9463 components: - pos: 32.5,35.5 parent: 2 @@ -78876,7 +78880,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9458 + - uid: 9464 components: - pos: 32.5,36.5 parent: 2 @@ -78885,7 +78889,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9459 + - uid: 9465 components: - pos: 32.5,37.5 parent: 2 @@ -78894,7 +78898,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9460 + - uid: 9466 components: - pos: 33.5,37.5 parent: 2 @@ -78903,7 +78907,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9461 + - uid: 9467 components: - pos: 31.5,37.5 parent: 2 @@ -78912,7 +78916,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9462 + - uid: 9468 components: - pos: 30.5,37.5 parent: 2 @@ -78921,7 +78925,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9463 + - uid: 9469 components: - pos: 29.5,37.5 parent: 2 @@ -78930,7 +78934,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9464 + - uid: 9470 components: - pos: 28.5,37.5 parent: 2 @@ -78939,7 +78943,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9465 + - uid: 9471 components: - pos: 27.5,37.5 parent: 2 @@ -78948,7 +78952,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9466 + - uid: 9472 components: - pos: 26.5,37.5 parent: 2 @@ -78957,7 +78961,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9467 + - uid: 9473 components: - pos: 25.5,37.5 parent: 2 @@ -78966,7 +78970,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9468 + - uid: 9474 components: - pos: 24.5,37.5 parent: 2 @@ -78975,7 +78979,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9469 + - uid: 9475 components: - pos: 23.5,37.5 parent: 2 @@ -78984,7 +78988,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9470 + - uid: 9476 components: - pos: 22.5,37.5 parent: 2 @@ -78993,7 +78997,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9471 + - uid: 9477 components: - pos: 21.5,37.5 parent: 2 @@ -79002,7 +79006,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9472 + - uid: 9478 components: - pos: 26.5,36.5 parent: 2 @@ -79011,7 +79015,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9473 + - uid: 9479 components: - pos: 26.5,35.5 parent: 2 @@ -79020,7 +79024,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9474 + - uid: 9480 components: - pos: 26.5,34.5 parent: 2 @@ -79029,7 +79033,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9475 + - uid: 9481 components: - pos: 25.5,34.5 parent: 2 @@ -79038,7 +79042,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9476 + - uid: 9482 components: - pos: 24.5,34.5 parent: 2 @@ -79047,7 +79051,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9477 + - uid: 9483 components: - pos: 23.5,34.5 parent: 2 @@ -79056,7 +79060,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9478 + - uid: 9484 components: - pos: 22.5,34.5 parent: 2 @@ -79065,7 +79069,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9479 + - uid: 9485 components: - pos: 22.5,33.5 parent: 2 @@ -79074,7 +79078,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9480 + - uid: 9486 components: - pos: 22.5,32.5 parent: 2 @@ -79083,7 +79087,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9481 + - uid: 9487 components: - pos: 22.5,31.5 parent: 2 @@ -79092,7 +79096,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9482 + - uid: 9488 components: - pos: 22.5,30.5 parent: 2 @@ -79101,7 +79105,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9483 + - uid: 9489 components: - pos: 22.5,29.5 parent: 2 @@ -79110,7 +79114,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9484 + - uid: 9490 components: - pos: 22.5,28.5 parent: 2 @@ -79119,7 +79123,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9485 + - uid: 9491 components: - pos: 22.5,27.5 parent: 2 @@ -79128,7 +79132,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9486 + - uid: 9492 components: - pos: 22.5,26.5 parent: 2 @@ -79137,7 +79141,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9487 + - uid: 9493 components: - pos: 34.5,37.5 parent: 2 @@ -79146,7 +79150,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9488 + - uid: 9494 components: - pos: 35.5,37.5 parent: 2 @@ -79155,7 +79159,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9489 + - uid: 9495 components: - pos: 36.5,37.5 parent: 2 @@ -79164,7 +79168,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9490 + - uid: 9496 components: - pos: 36.5,36.5 parent: 2 @@ -79173,28 +79177,28 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9491 + - uid: 9497 components: - pos: 49.5,-46.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9492 + - uid: 9498 components: - pos: 49.5,-47.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9493 + - uid: 9499 components: - pos: 49.5,-48.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9494 + - uid: 9500 components: - pos: 48.5,-48.5 parent: 2 @@ -79203,42 +79207,42 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9495 + - uid: 9501 components: - pos: -31.5,-63.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9496 + - uid: 9502 components: - pos: -32.5,-63.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9497 + - uid: 9503 components: - pos: -33.5,-63.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9498 + - uid: 9504 components: - pos: -34.5,-63.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9499 + - uid: 9505 components: - pos: -34.5,-64.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9500 + - uid: 9506 components: - pos: -34.5,-65.5 parent: 2 @@ -79247,7 +79251,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9501 + - uid: 9507 components: - pos: -35.5,-65.5 parent: 2 @@ -79256,7 +79260,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9502 + - uid: 9508 components: - pos: -36.5,-65.5 parent: 2 @@ -79265,7 +79269,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9503 + - uid: 9509 components: - pos: -37.5,-65.5 parent: 2 @@ -79274,7 +79278,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9504 + - uid: 9510 components: - pos: -37.5,-66.5 parent: 2 @@ -79283,35 +79287,35 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9505 + - uid: 9511 components: - pos: -37.5,-67.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9506 + - uid: 9512 components: - pos: -37.5,-68.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9507 + - uid: 9513 components: - pos: -38.5,-68.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9508 + - uid: 9514 components: - pos: -39.5,-68.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9509 + - uid: 9515 components: - pos: -39.5,-69.5 parent: 2 @@ -79320,7 +79324,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9510 + - uid: 9516 components: - pos: -10.5,-58.5 parent: 2 @@ -79329,7 +79333,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9511 + - uid: 9517 components: - pos: -9.5,-58.5 parent: 2 @@ -79338,28 +79342,28 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9512 + - uid: 9518 components: - pos: -8.5,-58.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9513 + - uid: 9519 components: - pos: -8.5,-57.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9514 + - uid: 9520 components: - pos: -8.5,-56.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9515 + - uid: 9521 components: - pos: -7.5,-56.5 parent: 2 @@ -79368,21 +79372,21 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9516 + - uid: 9522 components: - pos: -6.5,-56.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9517 + - uid: 9523 components: - pos: -5.5,-56.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9518 + - uid: 9524 components: - pos: -4.5,-56.5 parent: 2 @@ -79391,21 +79395,21 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9519 + - uid: 9525 components: - pos: -3.5,-56.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9520 + - uid: 9526 components: - pos: -2.5,-56.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9521 + - uid: 9527 components: - pos: -1.5,-56.5 parent: 2 @@ -79414,21 +79418,21 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9522 + - uid: 9528 components: - pos: -0.5,-56.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9523 + - uid: 9529 components: - pos: 0.5,-56.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9524 + - uid: 9530 components: - pos: 1.5,-56.5 parent: 2 @@ -79437,42 +79441,42 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9525 + - uid: 9531 components: - pos: 2.5,-56.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9526 + - uid: 9532 components: - pos: 3.5,-56.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9527 + - uid: 9533 components: - pos: 4.5,-56.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9528 + - uid: 9534 components: - pos: 5.5,-56.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9529 + - uid: 9535 components: - pos: 6.5,-56.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9530 + - uid: 9536 components: - pos: 6.5,-55.5 parent: 2 @@ -79481,21 +79485,21 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9531 + - uid: 9537 components: - pos: 6.5,-54.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9532 + - uid: 9538 components: - pos: 6.5,-53.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9533 + - uid: 9539 components: - pos: 34.5,23.5 parent: 2 @@ -79504,7 +79508,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9534 + - uid: 9540 components: - pos: 35.5,23.5 parent: 2 @@ -79513,21 +79517,21 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9535 + - uid: 9541 components: - pos: 35.5,22.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9536 + - uid: 9542 components: - pos: 36.5,22.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9537 + - uid: 9543 components: - pos: 37.5,22.5 parent: 2 @@ -79536,14 +79540,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9538 + - uid: 9544 components: - pos: 37.5,20.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9539 + - uid: 9545 components: - pos: 37.5,19.5 parent: 2 @@ -79552,7 +79556,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9540 + - uid: 9546 components: - pos: 37.5,18.5 parent: 2 @@ -79561,14 +79565,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9541 + - uid: 9547 components: - pos: 38.5,18.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9542 + - uid: 9548 components: - pos: 38.5,17.5 parent: 2 @@ -79577,14 +79581,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9543 + - uid: 9549 components: - pos: 29.5,-27.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9544 + - uid: 9550 components: - pos: 50.5,29.5 parent: 2 @@ -79593,7 +79597,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9545 + - uid: 9551 components: - pos: 50.5,28.5 parent: 2 @@ -79602,7 +79606,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9546 + - uid: 9552 components: - pos: 49.5,28.5 parent: 2 @@ -79611,7 +79615,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9547 + - uid: 9553 components: - pos: 48.5,28.5 parent: 2 @@ -79620,28 +79624,28 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9548 + - uid: 9554 components: - pos: 48.5,29.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9549 + - uid: 9555 components: - pos: 48.5,30.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9550 + - uid: 9556 components: - pos: 48.5,31.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9551 + - uid: 9557 components: - pos: 49.5,31.5 parent: 2 @@ -79650,14 +79654,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9552 + - uid: 9558 components: - pos: 50.5,31.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9553 + - uid: 9559 components: - pos: 51.5,31.5 parent: 2 @@ -79666,7 +79670,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9554 + - uid: 9560 components: - pos: 52.5,31.5 parent: 2 @@ -79675,7 +79679,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9555 + - uid: 9561 components: - pos: 52.5,32.5 parent: 2 @@ -79684,7 +79688,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9556 + - uid: 9562 components: - pos: 52.5,33.5 parent: 2 @@ -79693,35 +79697,35 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9557 + - uid: 9563 components: - pos: 52.5,34.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9558 + - uid: 9564 components: - pos: 52.5,35.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9559 + - uid: 9565 components: - pos: 52.5,36.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9560 + - uid: 9566 components: - pos: 52.5,37.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9561 + - uid: 9567 components: - pos: 52.5,38.5 parent: 2 @@ -79730,21 +79734,21 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9562 + - uid: 9568 components: - pos: 52.5,39.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9563 + - uid: 9569 components: - pos: 52.5,40.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9564 + - uid: 9570 components: - pos: 52.5,41.5 parent: 2 @@ -79753,14 +79757,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9565 + - uid: 9571 components: - pos: 52.5,42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9566 + - uid: 9572 components: - pos: 53.5,42.5 parent: 2 @@ -79769,49 +79773,49 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9567 + - uid: 9573 components: - pos: 54.5,42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9568 + - uid: 9574 components: - pos: 55.5,42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9569 + - uid: 9575 components: - pos: 56.5,42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9570 + - uid: 9576 components: - pos: 57.5,42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9571 + - uid: 9577 components: - pos: 58.5,42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9572 + - uid: 9578 components: - pos: 58.5,43.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9573 + - uid: 9579 components: - pos: 59.5,43.5 parent: 2 @@ -79820,154 +79824,154 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9574 + - uid: 9580 components: - pos: -19.5,26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9575 + - uid: 9581 components: - pos: -19.5,27.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9576 + - uid: 9582 components: - pos: -19.5,28.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9577 + - uid: 9583 components: - pos: -19.5,29.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9578 + - uid: 9584 components: - pos: -18.5,29.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9579 + - uid: 9585 components: - pos: -17.5,29.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9580 + - uid: 9586 components: - pos: -16.5,29.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9581 + - uid: 9587 components: - pos: -15.5,29.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9582 + - uid: 9588 components: - pos: -15.5,30.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9583 + - uid: 9589 components: - pos: -15.5,31.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9584 + - uid: 9590 components: - pos: -15.5,32.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9585 + - uid: 9591 components: - pos: -15.5,33.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9586 + - uid: 9592 components: - pos: -15.5,34.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9587 + - uid: 9593 components: - pos: -15.5,35.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9588 + - uid: 9594 components: - pos: -15.5,36.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9589 + - uid: 9595 components: - pos: -15.5,37.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9590 + - uid: 9596 components: - pos: -15.5,38.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9591 + - uid: 9597 components: - pos: -15.5,39.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9592 + - uid: 9598 components: - pos: -15.5,40.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9593 + - uid: 9599 components: - pos: -15.5,41.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9594 + - uid: 9600 components: - pos: -15.5,42.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9595 + - uid: 9601 components: - pos: -10.5,62.5 parent: 2 @@ -79976,7 +79980,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9596 + - uid: 9602 components: - pos: -10.5,61.5 parent: 2 @@ -79985,7 +79989,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9597 + - uid: 9603 components: - pos: -10.5,60.5 parent: 2 @@ -79994,28 +79998,28 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9598 + - uid: 9604 components: - pos: -10.5,59.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9599 + - uid: 9605 components: - pos: -9.5,59.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9600 + - uid: 9606 components: - pos: -8.5,59.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9601 + - uid: 9607 components: - pos: -8.5,60.5 parent: 2 @@ -80024,21 +80028,21 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9602 + - uid: 9608 components: - pos: -71.5,-41.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9603 + - uid: 9609 components: - pos: -70.5,-41.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9604 + - uid: 9610 components: - pos: -70.5,-40.5 parent: 2 @@ -80047,21 +80051,21 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9605 + - uid: 9611 components: - pos: 40.5,-61.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9606 + - uid: 9612 components: - pos: 40.5,-63.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9607 + - uid: 9613 components: - pos: 48.5,-65.5 parent: 2 @@ -80070,14 +80074,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9608 + - uid: 9614 components: - pos: 51.5,-65.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9609 + - uid: 9615 components: - pos: 50.5,-65.5 parent: 2 @@ -80086,7 +80090,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9610 + - uid: 9616 components: - pos: 49.5,-65.5 parent: 2 @@ -80095,63 +80099,63 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9611 + - uid: 9617 components: - pos: 40.5,-64.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9612 + - uid: 9618 components: - pos: 41.5,-64.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9613 + - uid: 9619 components: - pos: 52.5,-65.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9614 + - uid: 9620 components: - pos: 53.5,-65.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9615 + - uid: 9621 components: - pos: 54.5,-65.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9616 + - uid: 9622 components: - pos: 55.5,-65.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9617 + - uid: 9623 components: - pos: 55.5,-64.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9618 + - uid: 9624 components: - pos: 55.5,-63.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9619 + - uid: 9625 components: - pos: 55.5,-62.5 parent: 2 @@ -80160,7 +80164,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9620 + - uid: 9626 components: - pos: 68.5,-60.5 parent: 2 @@ -80169,28 +80173,28 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9621 + - uid: 9627 components: - pos: 68.5,-61.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9622 + - uid: 9628 components: - pos: 69.5,-61.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9623 + - uid: 9629 components: - pos: 70.5,-61.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9624 + - uid: 9630 components: - pos: 71.5,-61.5 parent: 2 @@ -80199,7 +80203,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9625 + - uid: 9631 components: - pos: 71.5,-60.5 parent: 2 @@ -80208,7 +80212,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9626 + - uid: 9632 components: - pos: 71.5,-59.5 parent: 2 @@ -80217,7 +80221,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9627 + - uid: 9633 components: - pos: 71.5,-58.5 parent: 2 @@ -80226,7 +80230,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9628 + - uid: 9634 components: - pos: 71.5,-57.5 parent: 2 @@ -80235,49 +80239,49 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9629 + - uid: 9635 components: - pos: 72.5,-57.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9630 + - uid: 9636 components: - pos: 73.5,-57.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9631 + - uid: 9637 components: - pos: 74.5,-57.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9632 + - uid: 9638 components: - pos: 74.5,-56.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9633 + - uid: 9639 components: - pos: 74.5,-55.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9634 + - uid: 9640 components: - pos: 74.5,-54.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9635 + - uid: 9641 components: - pos: 75.5,-54.5 parent: 2 @@ -80286,7 +80290,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9636 + - uid: 9642 components: - pos: 75.5,-53.5 parent: 2 @@ -80295,7 +80299,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9637 + - uid: 9643 components: - pos: 75.5,-52.5 parent: 2 @@ -80304,7 +80308,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9638 + - uid: 9644 components: - pos: 75.5,-51.5 parent: 2 @@ -80313,7 +80317,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9639 + - uid: 9645 components: - pos: 75.5,-50.5 parent: 2 @@ -80322,84 +80326,84 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9640 + - uid: 9646 components: - pos: 75.5,-49.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9641 + - uid: 9647 components: - pos: 75.5,-48.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9642 + - uid: 9648 components: - pos: 75.5,-47.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9643 + - uid: 9649 components: - pos: 75.5,-46.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9644 + - uid: 9650 components: - pos: 75.5,-45.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9645 + - uid: 9651 components: - pos: 74.5,-45.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9646 + - uid: 9652 components: - pos: 73.5,-45.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9647 + - uid: 9653 components: - pos: 72.5,-45.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9648 + - uid: 9654 components: - pos: 71.5,-45.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9649 + - uid: 9655 components: - pos: 71.5,-44.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9650 + - uid: 9656 components: - pos: 71.5,-43.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9651 + - uid: 9657 components: - pos: 71.5,-42.5 parent: 2 @@ -80408,7 +80412,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9652 + - uid: 9658 components: - pos: 4.5,-19.5 parent: 2 @@ -80417,14 +80421,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9653 + - uid: 9659 components: - pos: 7.5,-19.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9654 + - uid: 9660 components: - pos: 5.5,-19.5 parent: 2 @@ -80433,49 +80437,49 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9655 + - uid: 9661 components: - pos: 7.5,-20.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9656 + - uid: 9662 components: - pos: 8.5,-20.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9657 + - uid: 9663 components: - pos: 9.5,-20.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9658 + - uid: 9664 components: - pos: 10.5,-20.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9659 + - uid: 9665 components: - pos: 11.5,-20.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9660 + - uid: 9666 components: - pos: 11.5,-19.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9661 + - uid: 9667 components: - pos: 11.5,-18.5 parent: 2 @@ -80484,21 +80488,21 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9662 + - uid: 9668 components: - pos: 6.5,-49.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9663 + - uid: 9669 components: - pos: 7.5,-49.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9664 + - uid: 9670 components: - pos: 9.5,-49.5 parent: 2 @@ -80507,14 +80511,14 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9665 + - uid: 9671 components: - pos: 8.5,-49.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 9666 + - uid: 9672 components: - pos: 31.5,35.5 parent: 2 @@ -80523,7 +80527,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9667 + - uid: 9673 components: - pos: 30.5,35.5 parent: 2 @@ -80532,7 +80536,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9668 + - uid: 9674 components: - pos: 29.5,35.5 parent: 2 @@ -80541,7 +80545,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9669 + - uid: 9675 components: - pos: 28.5,35.5 parent: 2 @@ -80550,7 +80554,7 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 9670 + - uid: 9676 components: - pos: 27.5,35.5 parent: 2 @@ -80561,101 +80565,101 @@ entities: type: Fixtures - proto: CableMVStack entities: - - uid: 9671 + - uid: 9677 components: - pos: -39.41842,-18.34842 parent: 2 type: Transform - - uid: 9672 + - uid: 9678 components: - pos: -36.572292,-8.416974 parent: 2 type: Transform - proto: CableTerminal entities: - - uid: 9673 + - uid: 9679 components: - rot: 3.141592653589793 rad pos: -2.5,-79.5 parent: 2 type: Transform - - uid: 9674 + - uid: 9680 components: - pos: 48.5,-2.5 parent: 2 type: Transform - - uid: 9675 + - uid: 9681 components: - pos: -48.5,-20.5 parent: 2 type: Transform - - uid: 9676 + - uid: 9682 components: - pos: -46.5,-20.5 parent: 2 type: Transform - - uid: 9677 + - uid: 9683 components: - pos: -44.5,-20.5 parent: 2 type: Transform - - uid: 9678 + - uid: 9684 components: - rot: 1.5707963267948966 rad pos: -51.5,-9.5 parent: 2 type: Transform - - uid: 9679 + - uid: 9685 components: - rot: 3.141592653589793 rad pos: -56.5,-21.5 parent: 2 type: Transform - - uid: 9680 + - uid: 9686 components: - pos: -28.5,-36.5 parent: 2 type: Transform - - uid: 9681 + - uid: 9687 components: - rot: 1.5707963267948966 rad pos: -56.5,-88.5 parent: 2 type: Transform - - uid: 9682 + - uid: 9688 components: - rot: -1.5707963267948966 rad pos: 74.5,38.5 parent: 2 type: Transform - - uid: 9683 + - uid: 9689 components: - rot: -1.5707963267948966 rad pos: 74.5,34.5 parent: 2 type: Transform - - uid: 9684 + - uid: 9690 components: - rot: 3.141592653589793 rad pos: -0.5,-79.5 parent: 2 type: Transform - - uid: 9685 + - uid: 9691 components: - pos: -74.5,-29.5 parent: 2 type: Transform - - uid: 9686 + - uid: 9692 components: - pos: -72.5,-29.5 parent: 2 type: Transform - - uid: 9687 + - uid: 9693 components: - pos: -70.5,-29.5 parent: 2 type: Transform - - uid: 9688 + - uid: 9694 components: - rot: 3.141592653589793 rad pos: 4.5,-21.5 @@ -80663,537 +80667,537 @@ entities: type: Transform - proto: CapacitorStockPart entities: - - uid: 9689 + - uid: 9695 components: - pos: 38.490074,-35.297806 parent: 2 type: Transform - - uid: 9690 + - uid: 9696 components: - pos: 38.302574,-35.672806 parent: 2 type: Transform - - uid: 9691 + - uid: 9697 components: - pos: 38.521324,-35.53218 parent: 2 type: Transform - - uid: 9692 + - uid: 9698 components: - pos: -50.47893,-28.448412 parent: 2 type: Transform - proto: CaptainIDCard entities: - - uid: 9693 + - uid: 9699 components: - pos: 30.440884,-27.198164 parent: 2 type: Transform - proto: CarbonDioxideCanister entities: - - uid: 9694 + - uid: 9700 components: - pos: -40.5,-38.5 parent: 2 type: Transform - - uid: 9695 + - uid: 9701 components: - pos: -50.5,-50.5 parent: 2 type: Transform - - uid: 9696 + - uid: 9702 components: - pos: -52.5,-62.5 parent: 2 type: Transform - - uid: 9697 + - uid: 9703 components: - pos: 55.5,-55.5 parent: 2 type: Transform - proto: Carpet entities: - - uid: 9698 + - uid: 9704 components: - rot: 3.141592653589793 rad pos: 5.5,20.5 parent: 2 type: Transform - - uid: 9699 + - uid: 9705 components: - rot: 3.141592653589793 rad pos: 4.5,22.5 parent: 2 type: Transform - - uid: 9700 + - uid: 9706 components: - rot: 3.141592653589793 rad pos: 4.5,21.5 parent: 2 type: Transform - - uid: 9701 + - uid: 9707 components: - rot: 3.141592653589793 rad pos: 4.5,20.5 parent: 2 type: Transform - - uid: 9702 + - uid: 9708 components: - rot: 3.141592653589793 rad pos: 6.5,22.5 parent: 2 type: Transform - - uid: 9703 + - uid: 9709 components: - rot: 3.141592653589793 rad pos: 6.5,21.5 parent: 2 type: Transform - - uid: 9704 + - uid: 9710 components: - rot: 3.141592653589793 rad pos: 6.5,20.5 parent: 2 type: Transform - - uid: 9705 + - uid: 9711 components: - rot: 3.141592653589793 rad pos: 7.5,22.5 parent: 2 type: Transform - - uid: 9706 + - uid: 9712 components: - rot: 3.141592653589793 rad pos: 7.5,21.5 parent: 2 type: Transform - - uid: 9707 + - uid: 9713 components: - rot: 3.141592653589793 rad pos: 7.5,20.5 parent: 2 type: Transform - - uid: 9708 + - uid: 9714 components: - rot: 3.141592653589793 rad pos: 8.5,22.5 parent: 2 type: Transform - - uid: 9709 + - uid: 9715 components: - rot: 3.141592653589793 rad pos: 8.5,21.5 parent: 2 type: Transform - - uid: 9710 + - uid: 9716 components: - rot: 3.141592653589793 rad pos: 8.5,20.5 parent: 2 type: Transform - - uid: 9711 + - uid: 9717 components: - pos: 39.5,-5.5 parent: 2 type: Transform - - uid: 9712 + - uid: 9718 components: - pos: 43.5,-5.5 parent: 2 type: Transform - - uid: 9713 + - uid: 9719 components: - pos: 44.5,-5.5 parent: 2 type: Transform - - uid: 9714 + - uid: 9720 components: - pos: 42.5,-5.5 parent: 2 type: Transform - - uid: 9715 + - uid: 9721 components: - pos: 42.5,-2.5 parent: 2 type: Transform - - uid: 9716 + - uid: 9722 components: - pos: 42.5,-3.5 parent: 2 type: Transform - - uid: 9717 + - uid: 9723 components: - pos: 42.5,-4.5 parent: 2 type: Transform - - uid: 9718 + - uid: 9724 components: - pos: 43.5,-2.5 parent: 2 type: Transform - - uid: 9719 + - uid: 9725 components: - pos: 43.5,-3.5 parent: 2 type: Transform - - uid: 9720 + - uid: 9726 components: - pos: 43.5,-4.5 parent: 2 type: Transform - - uid: 9721 + - uid: 9727 components: - pos: 44.5,-2.5 parent: 2 type: Transform - - uid: 9722 + - uid: 9728 components: - pos: 44.5,-3.5 parent: 2 type: Transform - - uid: 9723 + - uid: 9729 components: - pos: 44.5,-4.5 parent: 2 type: Transform - - uid: 9724 + - uid: 9730 components: - pos: 37.5,-2.5 parent: 2 type: Transform - - uid: 9725 + - uid: 9731 components: - pos: 38.5,-2.5 parent: 2 type: Transform - - uid: 9726 + - uid: 9732 components: - pos: 39.5,-2.5 parent: 2 type: Transform - - uid: 9727 + - uid: 9733 components: - pos: 37.5,-3.5 parent: 2 type: Transform - - uid: 9728 + - uid: 9734 components: - pos: 37.5,-4.5 parent: 2 type: Transform - - uid: 9729 + - uid: 9735 components: - pos: 38.5,-3.5 parent: 2 type: Transform - - uid: 9730 + - uid: 9736 components: - pos: 38.5,-4.5 parent: 2 type: Transform - - uid: 9731 + - uid: 9737 components: - pos: 39.5,-3.5 parent: 2 type: Transform - - uid: 9732 + - uid: 9738 components: - pos: 39.5,-4.5 parent: 2 type: Transform - - uid: 9733 + - uid: 9739 components: - pos: 38.5,-5.5 parent: 2 type: Transform - - uid: 9734 + - uid: 9740 components: - pos: 37.5,-5.5 parent: 2 type: Transform - - uid: 9735 + - uid: 9741 components: - rot: 3.141592653589793 rad pos: 28.5,-50.5 parent: 2 type: Transform - - uid: 9736 + - uid: 9742 components: - rot: 3.141592653589793 rad pos: 28.5,-51.5 parent: 2 type: Transform - - uid: 9737 + - uid: 9743 components: - rot: 3.141592653589793 rad pos: 29.5,-50.5 parent: 2 type: Transform - - uid: 9738 + - uid: 9744 components: - rot: 3.141592653589793 rad pos: 29.5,-51.5 parent: 2 type: Transform - - uid: 9739 + - uid: 9745 components: - rot: 3.141592653589793 rad pos: 30.5,-50.5 parent: 2 type: Transform - - uid: 9740 + - uid: 9746 components: - rot: 3.141592653589793 rad pos: 30.5,-51.5 parent: 2 type: Transform - - uid: 9741 + - uid: 9747 components: - rot: -1.5707963267948966 rad pos: -38.5,15.5 parent: 2 type: Transform - - uid: 9742 + - uid: 9748 components: - rot: -1.5707963267948966 rad pos: -38.5,14.5 parent: 2 type: Transform - - uid: 9743 + - uid: 9749 components: - rot: -1.5707963267948966 rad pos: -38.5,13.5 parent: 2 type: Transform - - uid: 9744 + - uid: 9750 components: - rot: -1.5707963267948966 rad pos: -38.5,12.5 parent: 2 type: Transform - - uid: 9745 + - uid: 9751 components: - rot: -1.5707963267948966 rad pos: -38.5,11.5 parent: 2 type: Transform - - uid: 9746 + - uid: 9752 components: - rot: -1.5707963267948966 rad pos: -38.5,10.5 parent: 2 type: Transform - - uid: 9747 + - uid: 9753 components: - rot: -1.5707963267948966 rad pos: -38.5,9.5 parent: 2 type: Transform - - uid: 9748 + - uid: 9754 components: - rot: -1.5707963267948966 rad pos: -38.5,8.5 parent: 2 type: Transform - - uid: 9749 + - uid: 9755 components: - rot: -1.5707963267948966 rad pos: -37.5,15.5 parent: 2 type: Transform - - uid: 9750 + - uid: 9756 components: - rot: -1.5707963267948966 rad pos: -37.5,14.5 parent: 2 type: Transform - - uid: 9751 + - uid: 9757 components: - rot: -1.5707963267948966 rad pos: -37.5,13.5 parent: 2 type: Transform - - uid: 9752 + - uid: 9758 components: - rot: -1.5707963267948966 rad pos: -37.5,12.5 parent: 2 type: Transform - - uid: 9753 + - uid: 9759 components: - rot: -1.5707963267948966 rad pos: -37.5,11.5 parent: 2 type: Transform - - uid: 9754 + - uid: 9760 components: - rot: -1.5707963267948966 rad pos: -37.5,10.5 parent: 2 type: Transform - - uid: 9755 + - uid: 9761 components: - rot: -1.5707963267948966 rad pos: -37.5,9.5 parent: 2 type: Transform - - uid: 9756 + - uid: 9762 components: - rot: -1.5707963267948966 rad pos: -37.5,8.5 parent: 2 type: Transform - - uid: 9757 + - uid: 9763 components: - rot: -1.5707963267948966 rad pos: -34.5,15.5 parent: 2 type: Transform - - uid: 9758 + - uid: 9764 components: - rot: -1.5707963267948966 rad pos: -34.5,14.5 parent: 2 type: Transform - - uid: 9759 + - uid: 9765 components: - rot: -1.5707963267948966 rad pos: -34.5,13.5 parent: 2 type: Transform - - uid: 9760 + - uid: 9766 components: - rot: -1.5707963267948966 rad pos: -33.5,15.5 parent: 2 type: Transform - - uid: 9761 + - uid: 9767 components: - rot: -1.5707963267948966 rad pos: -33.5,14.5 parent: 2 type: Transform - - uid: 9762 + - uid: 9768 components: - rot: -1.5707963267948966 rad pos: -33.5,13.5 parent: 2 type: Transform - - uid: 9763 + - uid: 9769 components: - pos: -30.5,14.5 parent: 2 type: Transform - - uid: 9764 + - uid: 9770 components: - pos: -30.5,13.5 parent: 2 type: Transform - - uid: 9765 + - uid: 9771 components: - pos: -30.5,12.5 parent: 2 type: Transform - - uid: 9766 + - uid: 9772 components: - pos: 64.5,-0.5 parent: 2 type: Transform - - uid: 9767 + - uid: 9773 components: - pos: 64.5,-1.5 parent: 2 type: Transform - - uid: 9768 + - uid: 9774 components: - pos: 65.5,-0.5 parent: 2 type: Transform - - uid: 9769 + - uid: 9775 components: - pos: 65.5,-1.5 parent: 2 type: Transform - - uid: 9770 + - uid: 9776 components: - rot: 3.141592653589793 rad pos: 61.5,-63.5 parent: 2 type: Transform - - uid: 9771 + - uid: 9777 components: - rot: 3.141592653589793 rad pos: 61.5,-64.5 parent: 2 type: Transform - - uid: 9772 + - uid: 9778 components: - rot: 3.141592653589793 rad pos: 61.5,-65.5 parent: 2 type: Transform - - uid: 9773 + - uid: 9779 components: - rot: 3.141592653589793 rad pos: 61.5,-66.5 parent: 2 type: Transform - - uid: 9774 + - uid: 9780 components: - rot: 3.141592653589793 rad pos: 61.5,-67.5 parent: 2 type: Transform - - uid: 9775 + - uid: 9781 components: - rot: 3.141592653589793 rad pos: 61.5,-68.5 parent: 2 type: Transform - - uid: 9776 + - uid: 9782 components: - rot: 1.5707963267948966 rad pos: 1.5,21.5 parent: 2 type: Transform - - uid: 9777 + - uid: 9783 components: - rot: 1.5707963267948966 rad pos: 1.5,20.5 parent: 2 type: Transform - - uid: 9778 + - uid: 9784 components: - rot: 1.5707963267948966 rad pos: 1.5,19.5 parent: 2 type: Transform - - uid: 9779 + - uid: 9785 components: - rot: 1.5707963267948966 rad pos: 2.5,21.5 parent: 2 type: Transform - - uid: 9780 + - uid: 9786 components: - rot: 1.5707963267948966 rad pos: 2.5,20.5 parent: 2 type: Transform - - uid: 9781 + - uid: 9787 components: - rot: 1.5707963267948966 rad pos: 2.5,19.5 parent: 2 type: Transform - - uid: 9782 + - uid: 9788 components: - rot: 3.141592653589793 rad pos: 5.5,21.5 parent: 2 type: Transform - - uid: 9783 + - uid: 9789 components: - rot: 3.141592653589793 rad pos: 5.5,22.5 @@ -81201,91 +81205,91 @@ entities: type: Transform - proto: CarpetBlack entities: - - uid: 9784 + - uid: 9790 components: - pos: -7.5,-36.5 parent: 2 type: Transform - - uid: 9785 + - uid: 9791 components: - pos: -7.5,-37.5 parent: 2 type: Transform - - uid: 9786 + - uid: 9792 components: - pos: -7.5,-38.5 parent: 2 type: Transform - - uid: 9787 + - uid: 9793 components: - pos: -11.5,-39.5 parent: 2 type: Transform - - uid: 9788 + - uid: 9794 components: - pos: -10.5,-39.5 parent: 2 type: Transform - - uid: 9789 + - uid: 9795 components: - pos: -9.5,-39.5 parent: 2 type: Transform - - uid: 9790 + - uid: 9796 components: - rot: 3.141592653589793 rad pos: 31.5,-53.5 parent: 2 type: Transform - - uid: 9791 + - uid: 9797 components: - rot: 3.141592653589793 rad pos: 31.5,-54.5 parent: 2 type: Transform - - uid: 9792 + - uid: 9798 components: - rot: 3.141592653589793 rad pos: 31.5,-55.5 parent: 2 type: Transform - - uid: 9793 + - uid: 9799 components: - rot: 3.141592653589793 rad pos: 31.5,-56.5 parent: 2 type: Transform - - uid: 9794 + - uid: 9800 components: - rot: 3.141592653589793 rad pos: -12.5,32.5 parent: 2 type: Transform - - uid: 9795 + - uid: 9801 components: - rot: 3.141592653589793 rad pos: -12.5,31.5 parent: 2 type: Transform - - uid: 9796 + - uid: 9802 components: - rot: 3.141592653589793 rad pos: -11.5,32.5 parent: 2 type: Transform - - uid: 9797 + - uid: 9803 components: - rot: 3.141592653589793 rad pos: -11.5,31.5 parent: 2 type: Transform - - uid: 9798 + - uid: 9804 components: - rot: 3.141592653589793 rad pos: -10.5,32.5 parent: 2 type: Transform - - uid: 9799 + - uid: 9805 components: - rot: 3.141592653589793 rad pos: -10.5,31.5 @@ -81293,315 +81297,315 @@ entities: type: Transform - proto: CarpetBlue entities: - - uid: 9800 + - uid: 9806 components: - rot: -1.5707963267948966 rad pos: 9.5,5.5 parent: 2 type: Transform - - uid: 9801 + - uid: 9807 components: - pos: -18.5,-56.5 parent: 2 type: Transform - - uid: 9802 + - uid: 9808 components: - pos: -18.5,-55.5 parent: 2 type: Transform - - uid: 9803 + - uid: 9809 components: - pos: -20.5,-55.5 parent: 2 type: Transform - - uid: 9804 + - uid: 9810 components: - pos: -20.5,-54.5 parent: 2 type: Transform - - uid: 9805 + - uid: 9811 components: - pos: -19.5,-54.5 parent: 2 type: Transform - - uid: 9806 + - uid: 9812 components: - pos: -17.5,-56.5 parent: 2 type: Transform - - uid: 9807 + - uid: 9813 components: - pos: -20.5,-56.5 parent: 2 type: Transform - - uid: 9808 + - uid: 9814 components: - pos: -17.5,-54.5 parent: 2 type: Transform - - uid: 9809 + - uid: 9815 components: - pos: -17.5,-55.5 parent: 2 type: Transform - - uid: 9810 + - uid: 9816 components: - pos: -19.5,-55.5 parent: 2 type: Transform - - uid: 9811 + - uid: 9817 components: - pos: -19.5,-56.5 parent: 2 type: Transform - - uid: 9812 + - uid: 9818 components: - pos: -18.5,-54.5 parent: 2 type: Transform - - uid: 9813 + - uid: 9819 components: - rot: -1.5707963267948966 rad pos: 8.5,5.5 parent: 2 type: Transform - - uid: 9814 + - uid: 9820 components: - rot: 3.141592653589793 rad pos: 17.5,13.5 parent: 2 type: Transform - - uid: 9815 + - uid: 9821 components: - rot: 3.141592653589793 rad pos: 17.5,12.5 parent: 2 type: Transform - - uid: 9816 + - uid: 9822 components: - rot: 3.141592653589793 rad pos: 17.5,11.5 parent: 2 type: Transform - - uid: 9817 + - uid: 9823 components: - pos: 17.5,9.5 parent: 2 type: Transform - - uid: 9818 + - uid: 9824 components: - pos: 17.5,14.5 parent: 2 type: Transform - - uid: 9819 + - uid: 9825 components: - pos: 17.5,10.5 parent: 2 type: Transform - proto: CarpetChapel entities: - - uid: 9820 + - uid: 9826 components: - rot: -1.5707963267948966 rad pos: -36.5,10.5 parent: 2 type: Transform - - uid: 9821 + - uid: 9827 components: - rot: 3.141592653589793 rad pos: -35.5,10.5 parent: 2 type: Transform - - uid: 9822 + - uid: 9828 components: - rot: 1.5707963267948966 rad pos: -35.5,9.5 parent: 2 type: Transform - - uid: 9823 + - uid: 9829 components: - pos: -36.5,9.5 parent: 2 type: Transform - - uid: 9824 + - uid: 9830 components: - pos: -36.5,11.5 parent: 2 type: Transform - - uid: 9825 + - uid: 9831 components: - rot: 1.5707963267948966 rad pos: -35.5,11.5 parent: 2 type: Transform - - uid: 9826 + - uid: 9832 components: - rot: -1.5707963267948966 rad pos: -36.5,12.5 parent: 2 type: Transform - - uid: 9827 + - uid: 9833 components: - rot: 3.141592653589793 rad pos: -35.5,12.5 parent: 2 type: Transform - - uid: 9828 + - uid: 9834 components: - rot: 3.141592653589793 rad pos: -39.5,12.5 parent: 2 type: Transform - - uid: 9829 + - uid: 9835 components: - rot: 1.5707963267948966 rad pos: -39.5,11.5 parent: 2 type: Transform - - uid: 9830 + - uid: 9836 components: - pos: -40.5,11.5 parent: 2 type: Transform - - uid: 9831 + - uid: 9837 components: - rot: -1.5707963267948966 rad pos: -40.5,10.5 parent: 2 type: Transform - - uid: 9832 + - uid: 9838 components: - rot: 3.141592653589793 rad pos: -39.5,10.5 parent: 2 type: Transform - - uid: 9833 + - uid: 9839 components: - pos: -40.5,9.5 parent: 2 type: Transform - - uid: 9834 + - uid: 9840 components: - rot: 1.5707963267948966 rad pos: -39.5,9.5 parent: 2 type: Transform - - uid: 9835 + - uid: 9841 components: - rot: -1.5707963267948966 rad pos: -40.5,12.5 parent: 2 type: Transform - - uid: 9836 + - uid: 9842 components: - rot: -1.5707963267948966 rad pos: 59.5,-65.5 parent: 2 type: Transform - - uid: 9837 + - uid: 9843 components: - rot: 3.141592653589793 rad pos: 60.5,-65.5 parent: 2 type: Transform - - uid: 9838 + - uid: 9844 components: - pos: 59.5,-66.5 parent: 2 type: Transform - - uid: 9839 + - uid: 9845 components: - rot: -1.5707963267948966 rad pos: 62.5,-65.5 parent: 2 type: Transform - - uid: 9840 + - uid: 9846 components: - pos: 62.5,-66.5 parent: 2 type: Transform - - uid: 9841 + - uid: 9847 components: - rot: 3.141592653589793 rad pos: 63.5,-65.5 parent: 2 type: Transform - - uid: 9842 + - uid: 9848 components: - rot: 1.5707963267948966 rad pos: 63.5,-66.5 parent: 2 type: Transform - - uid: 9843 + - uid: 9849 components: - rot: -1.5707963267948966 rad pos: 62.5,-63.5 parent: 2 type: Transform - - uid: 9844 + - uid: 9850 components: - rot: 3.141592653589793 rad pos: 63.5,-63.5 parent: 2 type: Transform - - uid: 9845 + - uid: 9851 components: - rot: 1.5707963267948966 rad pos: 63.5,-64.5 parent: 2 type: Transform - - uid: 9846 + - uid: 9852 components: - pos: 62.5,-64.5 parent: 2 type: Transform - - uid: 9847 + - uid: 9853 components: - rot: 3.141592653589793 rad pos: 60.5,-63.5 parent: 2 type: Transform - - uid: 9848 + - uid: 9854 components: - rot: -1.5707963267948966 rad pos: 59.5,-63.5 parent: 2 type: Transform - - uid: 9849 + - uid: 9855 components: - pos: 59.5,-64.5 parent: 2 type: Transform - - uid: 9850 + - uid: 9856 components: - rot: 1.5707963267948966 rad pos: 60.5,-64.5 parent: 2 type: Transform - - uid: 9851 + - uid: 9857 components: - pos: 60.5,-68.5 parent: 2 type: Transform - - uid: 9852 + - uid: 9858 components: - rot: 1.5707963267948966 rad pos: 62.5,-68.5 parent: 2 type: Transform - - uid: 9853 + - uid: 9859 components: - rot: -1.5707963267948966 rad pos: 60.5,-67.5 parent: 2 type: Transform - - uid: 9854 + - uid: 9860 components: - rot: 3.141592653589793 rad pos: 62.5,-67.5 parent: 2 type: Transform - - uid: 9855 + - uid: 9861 components: - rot: 1.5707963267948966 rad pos: 60.5,-66.5 @@ -81609,411 +81613,411 @@ entities: type: Transform - proto: CarpetGreen entities: - - uid: 9856 + - uid: 9862 components: - rot: -1.5707963267948966 rad pos: 13.5,-10.5 parent: 2 type: Transform - - uid: 9857 + - uid: 9863 components: - rot: -1.5707963267948966 rad pos: 9.5,-10.5 parent: 2 type: Transform - - uid: 9858 + - uid: 9864 components: - rot: -1.5707963267948966 rad pos: 10.5,-10.5 parent: 2 type: Transform - - uid: 9859 + - uid: 9865 components: - rot: -1.5707963267948966 rad pos: 9.5,-12.5 parent: 2 type: Transform - - uid: 9860 + - uid: 9866 components: - rot: -1.5707963267948966 rad pos: 10.5,-12.5 parent: 2 type: Transform - - uid: 9861 + - uid: 9867 components: - rot: -1.5707963267948966 rad pos: 10.5,-11.5 parent: 2 type: Transform - - uid: 9862 + - uid: 9868 components: - rot: -1.5707963267948966 rad pos: 11.5,-11.5 parent: 2 type: Transform - - uid: 9863 + - uid: 9869 components: - rot: -1.5707963267948966 rad pos: 12.5,-11.5 parent: 2 type: Transform - - uid: 9864 + - uid: 9870 components: - rot: -1.5707963267948966 rad pos: 13.5,-11.5 parent: 2 type: Transform - - uid: 9865 + - uid: 9871 components: - rot: -1.5707963267948966 rad pos: 11.5,-10.5 parent: 2 type: Transform - - uid: 9866 + - uid: 9872 components: - rot: -1.5707963267948966 rad pos: 12.5,-10.5 parent: 2 type: Transform - - uid: 9867 + - uid: 9873 components: - rot: -1.5707963267948966 rad pos: 11.5,-12.5 parent: 2 type: Transform - - uid: 9868 + - uid: 9874 components: - pos: 20.5,13.5 parent: 2 type: Transform - - uid: 9869 + - uid: 9875 components: - pos: 14.5,9.5 parent: 2 type: Transform - - uid: 9870 + - uid: 9876 components: - pos: 9.5,-11.5 parent: 2 type: Transform - - uid: 9871 + - uid: 9877 components: - rot: -1.5707963267948966 rad pos: 12.5,-12.5 parent: 2 type: Transform - - uid: 9872 + - uid: 9878 components: - rot: -1.5707963267948966 rad pos: 13.5,-12.5 parent: 2 type: Transform - - uid: 9873 + - uid: 9879 components: - rot: 1.5707963267948966 rad pos: 8.5,8.5 parent: 2 type: Transform - - uid: 9874 + - uid: 9880 components: - rot: 3.141592653589793 rad pos: 14.5,13.5 parent: 2 type: Transform - - uid: 9875 + - uid: 9881 components: - rot: 3.141592653589793 rad pos: 14.5,12.5 parent: 2 type: Transform - - uid: 9876 + - uid: 9882 components: - rot: 3.141592653589793 rad pos: 14.5,11.5 parent: 2 type: Transform - - uid: 9877 + - uid: 9883 components: - rot: 3.141592653589793 rad pos: 14.5,10.5 parent: 2 type: Transform - - uid: 9878 + - uid: 9884 components: - rot: 1.5707963267948966 rad pos: 8.5,9.5 parent: 2 type: Transform - - uid: 9879 + - uid: 9885 components: - pos: -5.5,-49.5 parent: 2 type: Transform - - uid: 9880 + - uid: 9886 components: - pos: -4.5,-49.5 parent: 2 type: Transform - - uid: 9881 + - uid: 9887 components: - pos: -3.5,-49.5 parent: 2 type: Transform - - uid: 9882 + - uid: 9888 components: - pos: -3.5,-50.5 parent: 2 type: Transform - - uid: 9883 + - uid: 9889 components: - pos: -4.5,-50.5 parent: 2 type: Transform - - uid: 9884 + - uid: 9890 components: - pos: -5.5,-50.5 parent: 2 type: Transform - - uid: 9885 + - uid: 9891 components: - pos: 21.5,13.5 parent: 2 type: Transform - - uid: 9886 + - uid: 9892 components: - pos: 21.5,10.5 parent: 2 type: Transform - - uid: 9887 + - uid: 9893 components: - pos: 20.5,10.5 parent: 2 type: Transform - - uid: 9888 + - uid: 9894 components: - pos: 20.5,12.5 parent: 2 type: Transform - - uid: 9889 + - uid: 9895 components: - pos: 20.5,11.5 parent: 2 type: Transform - - uid: 9890 + - uid: 9896 components: - pos: 21.5,11.5 parent: 2 type: Transform - - uid: 9891 + - uid: 9897 components: - pos: 21.5,12.5 parent: 2 type: Transform - - uid: 9892 + - uid: 9898 components: - pos: -22.5,45.5 parent: 2 type: Transform - - uid: 9893 + - uid: 9899 components: - pos: -22.5,44.5 parent: 2 type: Transform - - uid: 9894 + - uid: 9900 components: - pos: -22.5,43.5 parent: 2 type: Transform - - uid: 9895 + - uid: 9901 components: - pos: -22.5,42.5 parent: 2 type: Transform - - uid: 9896 + - uid: 9902 components: - pos: -21.5,45.5 parent: 2 type: Transform - - uid: 9897 + - uid: 9903 components: - pos: -21.5,44.5 parent: 2 type: Transform - - uid: 9898 + - uid: 9904 components: - rot: 3.141592653589793 rad pos: 32.5,-50.5 parent: 2 type: Transform - - uid: 9899 + - uid: 9905 components: - rot: 3.141592653589793 rad pos: 32.5,-51.5 parent: 2 type: Transform - - uid: 9900 + - uid: 9906 components: - rot: 3.141592653589793 rad pos: 33.5,-50.5 parent: 2 type: Transform - - uid: 9901 + - uid: 9907 components: - rot: 3.141592653589793 rad pos: 33.5,-51.5 parent: 2 type: Transform - - uid: 9902 + - uid: 9908 components: - rot: 3.141592653589793 rad pos: 34.5,-50.5 parent: 2 type: Transform - - uid: 9903 + - uid: 9909 components: - rot: 3.141592653589793 rad pos: 34.5,-51.5 parent: 2 type: Transform - - uid: 9904 + - uid: 9910 components: - pos: -21.5,42.5 parent: 2 type: Transform - - uid: 9905 + - uid: 9911 components: - pos: -21.5,43.5 parent: 2 type: Transform - - uid: 9906 + - uid: 9912 components: - rot: 1.5707963267948966 rad pos: -22.5,30.5 parent: 2 type: Transform - - uid: 9907 + - uid: 9913 components: - rot: 1.5707963267948966 rad pos: -23.5,30.5 parent: 2 type: Transform - - uid: 9908 + - uid: 9914 components: - pos: -23.5,31.5 parent: 2 type: Transform - - uid: 9909 + - uid: 9915 components: - pos: -23.5,29.5 parent: 2 type: Transform - - uid: 9910 + - uid: 9916 components: - pos: -22.5,31.5 parent: 2 type: Transform - - uid: 9911 + - uid: 9917 components: - pos: -22.5,29.5 parent: 2 type: Transform - - uid: 9912 + - uid: 9918 components: - rot: 1.5707963267948966 rad pos: -19.5,33.5 parent: 2 type: Transform - - uid: 9913 + - uid: 9919 components: - rot: 1.5707963267948966 rad pos: -19.5,34.5 parent: 2 type: Transform - - uid: 9914 + - uid: 9920 components: - rot: 1.5707963267948966 rad pos: -19.5,35.5 parent: 2 type: Transform - - uid: 9915 + - uid: 9921 components: - rot: 1.5707963267948966 rad pos: -18.5,33.5 parent: 2 type: Transform - - uid: 9916 + - uid: 9922 components: - rot: 1.5707963267948966 rad pos: -18.5,34.5 parent: 2 type: Transform - - uid: 9917 + - uid: 9923 components: - rot: 1.5707963267948966 rad pos: -18.5,35.5 parent: 2 type: Transform - - uid: 9918 + - uid: 9924 components: - rot: 1.5707963267948966 rad pos: 8.5,7.5 parent: 2 type: Transform - - uid: 9919 + - uid: 9925 components: - rot: 1.5707963267948966 rad pos: 13.5,-79.5 parent: 2 type: Transform - - uid: 9920 + - uid: 9926 components: - rot: 1.5707963267948966 rad pos: 14.5,-79.5 parent: 2 type: Transform - - uid: 9921 + - uid: 9927 components: - rot: 1.5707963267948966 rad pos: 15.5,-79.5 parent: 2 type: Transform - - uid: 9922 + - uid: 9928 components: - rot: 1.5707963267948966 rad pos: 16.5,-79.5 parent: 2 type: Transform - - uid: 9923 + - uid: 9929 components: - rot: 1.5707963267948966 rad pos: 17.5,-79.5 parent: 2 type: Transform - - uid: 9924 + - uid: 9930 components: - rot: 1.5707963267948966 rad pos: 13.5,-87.5 parent: 2 type: Transform - - uid: 9925 + - uid: 9931 components: - rot: 1.5707963267948966 rad pos: 14.5,-87.5 parent: 2 type: Transform - - uid: 9926 + - uid: 9932 components: - rot: 1.5707963267948966 rad pos: 15.5,-87.5 parent: 2 type: Transform - - uid: 9927 + - uid: 9933 components: - rot: 1.5707963267948966 rad pos: 16.5,-87.5 parent: 2 type: Transform - - uid: 9928 + - uid: 9934 components: - rot: 1.5707963267948966 rad pos: 17.5,-87.5 @@ -82021,464 +82025,464 @@ entities: type: Transform - proto: CarpetOrange entities: - - uid: 9929 + - uid: 9935 components: - rot: -1.5707963267948966 rad pos: 8.5,-6.5 parent: 2 type: Transform - - uid: 9930 + - uid: 9936 components: - rot: -1.5707963267948966 rad pos: 9.5,-5.5 parent: 2 type: Transform - - uid: 9931 + - uid: 9937 components: - rot: 3.141592653589793 rad pos: 12.5,11.5 parent: 2 type: Transform - - uid: 9932 + - uid: 9938 components: - rot: 1.5707963267948966 rad pos: 10.5,7.5 parent: 2 type: Transform - - uid: 9933 + - uid: 9939 components: - rot: -1.5707963267948966 rad pos: 11.5,-6.5 parent: 2 type: Transform - - uid: 9934 + - uid: 9940 components: - rot: -1.5707963267948966 rad pos: 11.5,-7.5 parent: 2 type: Transform - - uid: 9935 + - uid: 9941 components: - rot: -1.5707963267948966 rad pos: 11.5,-8.5 parent: 2 type: Transform - - uid: 9936 + - uid: 9942 components: - rot: -1.5707963267948966 rad pos: 10.5,-8.5 parent: 2 type: Transform - - uid: 9937 + - uid: 9943 components: - rot: -1.5707963267948966 rad pos: 9.5,-8.5 parent: 2 type: Transform - - uid: 9938 + - uid: 9944 components: - rot: -1.5707963267948966 rad pos: 8.5,-8.5 parent: 2 type: Transform - - uid: 9939 + - uid: 9945 components: - rot: -1.5707963267948966 rad pos: 8.5,-7.5 parent: 2 type: Transform - - uid: 9940 + - uid: 9946 components: - rot: -1.5707963267948966 rad pos: 8.5,-5.5 parent: 2 type: Transform - - uid: 9941 + - uid: 9947 components: - rot: -1.5707963267948966 rad pos: 9.5,-6.5 parent: 2 type: Transform - - uid: 9942 + - uid: 9948 components: - rot: -1.5707963267948966 rad pos: 10.5,-6.5 parent: 2 type: Transform - - uid: 9943 + - uid: 9949 components: - rot: -1.5707963267948966 rad pos: 10.5,-7.5 parent: 2 type: Transform - - uid: 9944 + - uid: 9950 components: - rot: -1.5707963267948966 rad pos: 9.5,-7.5 parent: 2 type: Transform - - uid: 9945 + - uid: 9951 components: - rot: 1.5707963267948966 rad pos: 12.5,7.5 parent: 2 type: Transform - - uid: 9946 + - uid: 9952 components: - rot: -1.5707963267948966 rad pos: 10.5,-5.5 parent: 2 type: Transform - - uid: 9947 + - uid: 9953 components: - rot: -1.5707963267948966 rad pos: 11.5,-5.5 parent: 2 type: Transform - - uid: 9948 + - uid: 9954 components: - rot: 1.5707963267948966 rad pos: 12.5,8.5 parent: 2 type: Transform - - uid: 9949 + - uid: 9955 components: - rot: 3.141592653589793 rad pos: 12.5,10.5 parent: 2 type: Transform - - uid: 9950 + - uid: 9956 components: - rot: 1.5707963267948966 rad pos: 10.5,8.5 parent: 2 type: Transform - - uid: 9951 + - uid: 9957 components: - rot: 1.5707963267948966 rad pos: 11.5,7.5 parent: 2 type: Transform - - uid: 9952 + - uid: 9958 components: - rot: 1.5707963267948966 rad pos: 11.5,8.5 parent: 2 type: Transform - - uid: 9953 + - uid: 9959 components: - rot: 3.141592653589793 rad pos: 11.5,11.5 parent: 2 type: Transform - - uid: 9954 + - uid: 9960 components: - rot: 3.141592653589793 rad pos: 11.5,12.5 parent: 2 type: Transform - - uid: 9955 + - uid: 9961 components: - pos: -12.5,-35.5 parent: 2 type: Transform - - uid: 9956 + - uid: 9962 components: - pos: -12.5,-36.5 parent: 2 type: Transform - - uid: 9957 + - uid: 9963 components: - pos: -12.5,-37.5 parent: 2 type: Transform - - uid: 9958 + - uid: 9964 components: - pos: -11.5,-35.5 parent: 2 type: Transform - - uid: 9959 + - uid: 9965 components: - pos: -11.5,-36.5 parent: 2 type: Transform - - uid: 9960 + - uid: 9966 components: - pos: -11.5,-37.5 parent: 2 type: Transform - - uid: 9961 + - uid: 9967 components: - pos: -10.5,-35.5 parent: 2 type: Transform - - uid: 9962 + - uid: 9968 components: - pos: -10.5,-36.5 parent: 2 type: Transform - - uid: 9963 + - uid: 9969 components: - pos: -10.5,-37.5 parent: 2 type: Transform - - uid: 9964 + - uid: 9970 components: - pos: -9.5,-35.5 parent: 2 type: Transform - - uid: 9965 + - uid: 9971 components: - pos: -9.5,-36.5 parent: 2 type: Transform - - uid: 9966 + - uid: 9972 components: - pos: -9.5,-37.5 parent: 2 type: Transform - - uid: 9967 + - uid: 9973 components: - rot: 3.141592653589793 rad pos: 12.5,12.5 parent: 2 type: Transform - - uid: 9968 + - uid: 9974 components: - rot: 3.141592653589793 rad pos: -37.5,-15.5 parent: 2 type: Transform - - uid: 9969 + - uid: 9975 components: - rot: 3.141592653589793 rad pos: -37.5,-16.5 parent: 2 type: Transform - - uid: 9970 + - uid: 9976 components: - rot: 3.141592653589793 rad pos: -37.5,-17.5 parent: 2 type: Transform - - uid: 9971 + - uid: 9977 components: - rot: 3.141592653589793 rad pos: -37.5,-18.5 parent: 2 type: Transform - - uid: 9972 + - uid: 9978 components: - rot: 3.141592653589793 rad pos: -36.5,-16.5 parent: 2 type: Transform - - uid: 9973 + - uid: 9979 components: - rot: 3.141592653589793 rad pos: -36.5,-17.5 parent: 2 type: Transform - - uid: 9974 + - uid: 9980 components: - rot: 3.141592653589793 rad pos: -36.5,-18.5 parent: 2 type: Transform - - uid: 9975 + - uid: 9981 components: - rot: 3.141592653589793 rad pos: -35.5,-15.5 parent: 2 type: Transform - - uid: 9976 + - uid: 9982 components: - rot: 3.141592653589793 rad pos: -35.5,-16.5 parent: 2 type: Transform - - uid: 9977 + - uid: 9983 components: - rot: 3.141592653589793 rad pos: -35.5,-17.5 parent: 2 type: Transform - - uid: 9978 + - uid: 9984 components: - rot: 3.141592653589793 rad pos: -35.5,-18.5 parent: 2 type: Transform - - uid: 9979 + - uid: 9985 components: - rot: 3.141592653589793 rad pos: -34.5,31.5 parent: 2 type: Transform - - uid: 9980 + - uid: 9986 components: - pos: -34.5,30.5 parent: 2 type: Transform - - uid: 9981 + - uid: 9987 components: - rot: 3.141592653589793 rad pos: -34.5,29.5 parent: 2 type: Transform - - uid: 9982 + - uid: 9988 components: - rot: 3.141592653589793 rad pos: -33.5,31.5 parent: 2 type: Transform - - uid: 9983 + - uid: 9989 components: - rot: 3.141592653589793 rad pos: -33.5,30.5 parent: 2 type: Transform - - uid: 9984 + - uid: 9990 components: - rot: 3.141592653589793 rad pos: -33.5,29.5 parent: 2 type: Transform - - uid: 9985 + - uid: 9991 components: - rot: 3.141592653589793 rad pos: -32.5,31.5 parent: 2 type: Transform - - uid: 9986 + - uid: 9992 components: - rot: 3.141592653589793 rad pos: -32.5,30.5 parent: 2 type: Transform - - uid: 9987 + - uid: 9993 components: - rot: 3.141592653589793 rad pos: -32.5,29.5 parent: 2 type: Transform - - uid: 9988 + - uid: 9994 components: - rot: 3.141592653589793 rad pos: -31.5,31.5 parent: 2 type: Transform - - uid: 9989 + - uid: 9995 components: - rot: 3.141592653589793 rad pos: -31.5,30.5 parent: 2 type: Transform - - uid: 9990 + - uid: 9996 components: - rot: 3.141592653589793 rad pos: -31.5,29.5 parent: 2 type: Transform - - uid: 9991 + - uid: 9997 components: - rot: 3.141592653589793 rad pos: -30.5,31.5 parent: 2 type: Transform - - uid: 9992 + - uid: 9998 components: - rot: 3.141592653589793 rad pos: -30.5,30.5 parent: 2 type: Transform - - uid: 9993 + - uid: 9999 components: - rot: 3.141592653589793 rad pos: -30.5,29.5 parent: 2 type: Transform - - uid: 9994 + - uid: 10000 components: - pos: -70.5,-42.5 parent: 2 type: Transform - - uid: 9995 + - uid: 10001 components: - pos: -70.5,-43.5 parent: 2 type: Transform - - uid: 9996 + - uid: 10002 components: - pos: -70.5,-44.5 parent: 2 type: Transform - - uid: 9997 + - uid: 10003 components: - pos: -70.5,-45.5 parent: 2 type: Transform - - uid: 9998 + - uid: 10004 components: - pos: -69.5,-42.5 parent: 2 type: Transform - - uid: 9999 + - uid: 10005 components: - pos: -69.5,-43.5 parent: 2 type: Transform - - uid: 10000 + - uid: 10006 components: - pos: -69.5,-44.5 parent: 2 type: Transform - - uid: 10001 + - uid: 10007 components: - pos: -69.5,-45.5 parent: 2 type: Transform - - uid: 10002 + - uid: 10008 components: - pos: -68.5,-42.5 parent: 2 type: Transform - - uid: 10003 + - uid: 10009 components: - pos: -68.5,-43.5 parent: 2 type: Transform - - uid: 10004 + - uid: 10010 components: - pos: -68.5,-44.5 parent: 2 type: Transform - - uid: 10005 + - uid: 10011 components: - pos: -68.5,-45.5 parent: 2 type: Transform - - uid: 10006 + - uid: 10012 components: - pos: -67.5,-42.5 parent: 2 type: Transform - - uid: 10007 + - uid: 10013 components: - pos: -67.5,-43.5 parent: 2 type: Transform - - uid: 10008 + - uid: 10014 components: - pos: -67.5,-44.5 parent: 2 type: Transform - - uid: 10009 + - uid: 10015 components: - pos: -67.5,-45.5 parent: 2 type: Transform - - uid: 10010 + - uid: 10016 components: - rot: 3.141592653589793 rad pos: 11.5,10.5 @@ -82486,82 +82490,82 @@ entities: type: Transform - proto: CarpetPink entities: - - uid: 10011 + - uid: 10017 components: - rot: 1.5707963267948966 rad pos: 2.5,-10.5 parent: 2 type: Transform - - uid: 10012 + - uid: 10018 components: - rot: 1.5707963267948966 rad pos: 3.5,-10.5 parent: 2 type: Transform - - uid: 10013 + - uid: 10019 components: - rot: 1.5707963267948966 rad pos: 2.5,-11.5 parent: 2 type: Transform - - uid: 10014 + - uid: 10020 components: - pos: 21.5,-29.5 parent: 2 type: Transform - - uid: 10015 + - uid: 10021 components: - rot: 1.5707963267948966 rad pos: 3.5,-11.5 parent: 2 type: Transform - - uid: 10016 + - uid: 10022 components: - pos: 23.5,-29.5 parent: 2 type: Transform - - uid: 10017 + - uid: 10023 components: - pos: 22.5,-29.5 parent: 2 type: Transform - - uid: 10018 + - uid: 10024 components: - pos: 22.5,-28.5 parent: 2 type: Transform - - uid: 10019 + - uid: 10025 components: - pos: 21.5,-28.5 parent: 2 type: Transform - - uid: 10020 + - uid: 10026 components: - pos: 22.5,-29.5 parent: 2 type: Transform - - uid: 10021 + - uid: 10027 components: - pos: 23.5,-29.5 parent: 2 type: Transform - - uid: 10022 + - uid: 10028 components: - pos: 24.5,-29.5 parent: 2 type: Transform - - uid: 10023 + - uid: 10029 components: - pos: 23.5,-28.5 parent: 2 type: Transform - - uid: 10024 + - uid: 10030 components: - rot: -1.5707963267948966 rad pos: 22.5,-28.5 parent: 2 type: Transform - - uid: 10025 + - uid: 10031 components: - rot: -1.5707963267948966 rad pos: 24.5,-28.5 @@ -82569,127 +82573,127 @@ entities: type: Transform - proto: CarpetPurple entities: - - uid: 10026 + - uid: 10032 components: - pos: -16.5,-38.5 parent: 2 type: Transform - - uid: 10027 + - uid: 10033 components: - pos: -16.5,-39.5 parent: 2 type: Transform - - uid: 10028 + - uid: 10034 components: - pos: -15.5,-38.5 parent: 2 type: Transform - - uid: 10029 + - uid: 10035 components: - pos: -15.5,-39.5 parent: 2 type: Transform - - uid: 10030 + - uid: 10036 components: - pos: -14.5,-38.5 parent: 2 type: Transform - - uid: 10031 + - uid: 10037 components: - pos: -14.5,-39.5 parent: 2 type: Transform - - uid: 10032 + - uid: 10038 components: - rot: -1.5707963267948966 rad pos: -49.5,7.5 parent: 2 type: Transform - - uid: 10033 + - uid: 10039 components: - rot: -1.5707963267948966 rad pos: -49.5,6.5 parent: 2 type: Transform - - uid: 10034 + - uid: 10040 components: - rot: -1.5707963267948966 rad pos: -49.5,5.5 parent: 2 type: Transform - - uid: 10035 + - uid: 10041 components: - rot: -1.5707963267948966 rad pos: -49.5,4.5 parent: 2 type: Transform - - uid: 10036 + - uid: 10042 components: - rot: -1.5707963267948966 rad pos: -48.5,7.5 parent: 2 type: Transform - - uid: 10037 + - uid: 10043 components: - rot: -1.5707963267948966 rad pos: -48.5,6.5 parent: 2 type: Transform - - uid: 10038 + - uid: 10044 components: - rot: -1.5707963267948966 rad pos: -48.5,5.5 parent: 2 type: Transform - - uid: 10039 + - uid: 10045 components: - rot: -1.5707963267948966 rad pos: -48.5,4.5 parent: 2 type: Transform - - uid: 10040 + - uid: 10046 components: - rot: -1.5707963267948966 rad pos: -47.5,7.5 parent: 2 type: Transform - - uid: 10041 + - uid: 10047 components: - rot: -1.5707963267948966 rad pos: -47.5,6.5 parent: 2 type: Transform - - uid: 10042 + - uid: 10048 components: - rot: -1.5707963267948966 rad pos: -47.5,5.5 parent: 2 type: Transform - - uid: 10043 + - uid: 10049 components: - rot: -1.5707963267948966 rad pos: -47.5,4.5 parent: 2 type: Transform - - uid: 10044 + - uid: 10050 components: - rot: -1.5707963267948966 rad pos: -46.5,7.5 parent: 2 type: Transform - - uid: 10045 + - uid: 10051 components: - rot: -1.5707963267948966 rad pos: -46.5,6.5 parent: 2 type: Transform - - uid: 10046 + - uid: 10052 components: - rot: -1.5707963267948966 rad pos: -46.5,5.5 parent: 2 type: Transform - - uid: 10047 + - uid: 10053 components: - rot: -1.5707963267948966 rad pos: -46.5,4.5 @@ -82697,9199 +82701,9199 @@ entities: type: Transform - proto: CarpetSBlue entities: - - uid: 10048 + - uid: 10054 components: - pos: 28.5,-37.5 parent: 2 type: Transform - - uid: 10049 + - uid: 10055 components: - pos: 21.5,-22.5 parent: 2 type: Transform - - uid: 10050 + - uid: 10056 components: - pos: 21.5,-23.5 parent: 2 type: Transform - - uid: 10051 + - uid: 10057 components: - pos: 23.5,-23.5 parent: 2 type: Transform - - uid: 10052 + - uid: 10058 components: - pos: 24.5,-25.5 parent: 2 type: Transform - - uid: 10053 + - uid: 10059 components: - pos: 26.5,-24.5 parent: 2 type: Transform - - uid: 10054 + - uid: 10060 components: - pos: 26.5,-25.5 parent: 2 type: Transform - - uid: 10055 + - uid: 10061 components: - pos: 29.5,-23.5 parent: 2 type: Transform - - uid: 10056 + - uid: 10062 components: - pos: 28.5,-22.5 parent: 2 type: Transform - - uid: 10057 + - uid: 10063 components: - pos: 29.5,-23.5 parent: 2 type: Transform - - uid: 10058 + - uid: 10064 components: - pos: 25.5,-25.5 parent: 2 type: Transform - - uid: 10059 + - uid: 10065 components: - rot: -1.5707963267948966 rad pos: 27.5,-35.5 parent: 2 type: Transform - - uid: 10060 + - uid: 10066 components: - rot: 3.141592653589793 rad pos: 23.5,-34.5 parent: 2 type: Transform - - uid: 10061 + - uid: 10067 components: - rot: 3.141592653589793 rad pos: 22.5,-35.5 parent: 2 type: Transform - - uid: 10062 + - uid: 10068 components: - rot: -1.5707963267948966 rad pos: 28.5,-36.5 parent: 2 type: Transform - - uid: 10063 + - uid: 10069 components: - rot: -1.5707963267948966 rad pos: 28.5,-35.5 parent: 2 type: Transform - - uid: 10064 + - uid: 10070 components: - rot: 3.141592653589793 rad pos: 22.5,-34.5 parent: 2 type: Transform - - uid: 10065 + - uid: 10071 components: - pos: 27.5,-37.5 parent: 2 type: Transform - - uid: 10066 + - uid: 10072 components: - rot: 3.141592653589793 rad pos: 21.5,-35.5 parent: 2 type: Transform - - uid: 10067 + - uid: 10073 components: - pos: 22.5,-36.5 parent: 2 type: Transform - - uid: 10068 + - uid: 10074 components: - pos: 29.5,-22.5 parent: 2 type: Transform - - uid: 10069 + - uid: 10075 components: - pos: 21.5,-36.5 parent: 2 type: Transform - - uid: 10070 + - uid: 10076 components: - pos: 26.5,-37.5 parent: 2 type: Transform - - uid: 10071 + - uid: 10077 components: - pos: 27.5,-22.5 parent: 2 type: Transform - - uid: 10072 + - uid: 10078 components: - pos: 26.5,-22.5 parent: 2 type: Transform - - uid: 10073 + - uid: 10079 components: - pos: 24.5,-24.5 parent: 2 type: Transform - - uid: 10074 + - uid: 10080 components: - pos: 24.5,-23.5 parent: 2 type: Transform - - uid: 10075 + - uid: 10081 components: - rot: 3.141592653589793 rad pos: 21.5,-34.5 parent: 2 type: Transform - - uid: 10076 + - uid: 10082 components: - pos: 24.5,-22.5 parent: 2 type: Transform - - uid: 10077 + - uid: 10083 components: - rot: 3.141592653589793 rad pos: 23.5,-35.5 parent: 2 type: Transform - - uid: 10078 + - uid: 10084 components: - pos: 25.5,-24.5 parent: 2 type: Transform - - uid: 10079 + - uid: 10085 components: - rot: -1.5707963267948966 rad pos: 26.5,-35.5 parent: 2 type: Transform - - uid: 10080 + - uid: 10086 components: - rot: -1.5707963267948966 rad pos: 27.5,-36.5 parent: 2 type: Transform - - uid: 10081 + - uid: 10087 components: - rot: -1.5707963267948966 rad pos: 26.5,-36.5 parent: 2 type: Transform - - uid: 10082 + - uid: 10088 components: - pos: 28.5,-23.5 parent: 2 type: Transform - - uid: 10083 + - uid: 10089 components: - pos: 22.5,-23.5 parent: 2 type: Transform - - uid: 10084 + - uid: 10090 components: - pos: 22.5,-22.5 parent: 2 type: Transform - - uid: 10085 + - uid: 10091 components: - pos: 23.5,-22.5 parent: 2 type: Transform - - uid: 10086 + - uid: 10092 components: - pos: 25.5,-23.5 parent: 2 type: Transform - - uid: 10087 + - uid: 10093 components: - pos: 25.5,-22.5 parent: 2 type: Transform - - uid: 10088 + - uid: 10094 components: - pos: 26.5,-23.5 parent: 2 type: Transform - - uid: 10089 + - uid: 10095 components: - rot: 3.141592653589793 rad pos: 30.5,-47.5 parent: 2 type: Transform - - uid: 10090 + - uid: 10096 components: - rot: 3.141592653589793 rad pos: 30.5,-48.5 parent: 2 type: Transform - - uid: 10091 + - uid: 10097 components: - rot: 3.141592653589793 rad pos: 31.5,-47.5 parent: 2 type: Transform - - uid: 10092 + - uid: 10098 components: - rot: 3.141592653589793 rad pos: 31.5,-48.5 parent: 2 type: Transform - - uid: 10093 + - uid: 10099 components: - rot: 3.141592653589793 rad pos: 32.5,-47.5 parent: 2 type: Transform - - uid: 10094 + - uid: 10100 components: - rot: 3.141592653589793 rad pos: 32.5,-48.5 parent: 2 type: Transform - - uid: 10095 + - uid: 10101 components: - pos: 30.5,-28.5 parent: 2 type: Transform - - uid: 10096 + - uid: 10102 components: - pos: 30.5,-29.5 parent: 2 type: Transform - - uid: 10097 + - uid: 10103 components: - pos: 31.5,-27.5 parent: 2 type: Transform - - uid: 10098 + - uid: 10104 components: - pos: 31.5,-28.5 parent: 2 type: Transform - - uid: 10099 + - uid: 10105 components: - pos: 31.5,-29.5 parent: 2 type: Transform - - uid: 10100 + - uid: 10106 components: - pos: 32.5,-27.5 parent: 2 type: Transform - - uid: 10101 + - uid: 10107 components: - pos: 32.5,-28.5 parent: 2 type: Transform - - uid: 10102 + - uid: 10108 components: - pos: 32.5,-29.5 parent: 2 type: Transform - - uid: 10103 + - uid: 10109 components: - pos: 30.5,-27.5 parent: 2 type: Transform - - uid: 10104 + - uid: 10110 components: - pos: 31.5,-30.5 parent: 2 type: Transform - - uid: 10105 + - uid: 10111 components: - pos: 30.5,-30.5 parent: 2 type: Transform - - uid: 10106 + - uid: 10112 components: - pos: 59.5,-0.5 parent: 2 type: Transform - - uid: 10107 + - uid: 10113 components: - pos: 59.5,-1.5 parent: 2 type: Transform - - uid: 10108 + - uid: 10114 components: - pos: 60.5,-0.5 parent: 2 type: Transform - - uid: 10109 + - uid: 10115 components: - pos: 60.5,-1.5 parent: 2 type: Transform - - uid: 10110 + - uid: 10116 components: - pos: 61.5,-0.5 parent: 2 type: Transform - - uid: 10111 + - uid: 10117 components: - pos: 61.5,-1.5 parent: 2 type: Transform - - uid: 10112 + - uid: 10118 components: - pos: 62.5,-0.5 parent: 2 type: Transform - - uid: 10113 + - uid: 10119 components: - pos: 62.5,-1.5 parent: 2 type: Transform - - uid: 10114 + - uid: 10120 components: - rot: -1.5707963267948966 rad pos: 23.5,-36.5 parent: 2 type: Transform - - uid: 10115 + - uid: 10121 components: - pos: 32.5,-30.5 parent: 2 type: Transform - - uid: 10116 + - uid: 10122 components: - pos: 27.5,-23.5 parent: 2 type: Transform - proto: Catwalk entities: - - uid: 10117 + - uid: 10123 components: - rot: 1.5707963267948966 rad pos: -59.5,56.5 parent: 2 type: Transform - - uid: 10118 + - uid: 10124 components: - rot: 1.5707963267948966 rad pos: -57.5,56.5 parent: 2 type: Transform - - uid: 10119 + - uid: 10125 components: - rot: 1.5707963267948966 rad pos: -55.5,56.5 parent: 2 type: Transform - - uid: 10120 + - uid: 10126 components: - rot: 1.5707963267948966 rad pos: -54.5,55.5 parent: 2 type: Transform - - uid: 10121 + - uid: 10127 components: - rot: 3.141592653589793 rad pos: -0.5,-71.5 parent: 2 type: Transform - - uid: 10122 + - uid: 10128 components: - rot: 3.141592653589793 rad pos: 14.5,-47.5 parent: 2 type: Transform - - uid: 10123 + - uid: 10129 components: - pos: 65.5,-25.5 parent: 2 type: Transform - - uid: 10124 + - uid: 10130 components: - rot: 3.141592653589793 rad pos: 79.5,-26.5 parent: 2 type: Transform - - uid: 10125 + - uid: 10131 components: - pos: 31.5,-14.5 parent: 2 type: Transform - - uid: 10126 + - uid: 10132 components: - pos: -11.5,-15.5 parent: 2 type: Transform - - uid: 10127 + - uid: 10133 components: - pos: -7.5,-75.5 parent: 2 type: Transform - - uid: 10128 + - uid: 10134 components: - pos: 32.5,-11.5 parent: 2 type: Transform - - uid: 10129 + - uid: 10135 components: - pos: -1.5,-83.5 parent: 2 type: Transform - - uid: 10130 + - uid: 10136 components: - pos: -12.5,-15.5 parent: 2 type: Transform - - uid: 10131 + - uid: 10137 components: - pos: -5.5,-69.5 parent: 2 type: Transform - - uid: 10132 + - uid: 10138 components: - pos: 2.5,-90.5 parent: 2 type: Transform - - uid: 10133 + - uid: 10139 components: - pos: -1.5,-88.5 parent: 2 type: Transform - - uid: 10134 + - uid: 10140 components: - pos: -0.5,-89.5 parent: 2 type: Transform - - uid: 10135 + - uid: 10141 components: - pos: 0.5,-89.5 parent: 2 type: Transform - - uid: 10136 + - uid: 10142 components: - pos: 3.5,-92.5 parent: 2 type: Transform - - uid: 10137 + - uid: 10143 components: - pos: 8.5,-53.5 parent: 2 type: Transform - - uid: 10138 + - uid: 10144 components: - pos: 4.5,-92.5 parent: 2 type: Transform - - uid: 10139 + - uid: 10145 components: - pos: -46.5,-50.5 parent: 2 type: Transform - - uid: 10140 + - uid: 10146 components: - rot: 3.141592653589793 rad pos: 0.5,-71.5 parent: 2 type: Transform - - uid: 10141 + - uid: 10147 components: - pos: 2.5,-91.5 parent: 2 type: Transform - - uid: 10142 + - uid: 10148 components: - pos: -1.5,-89.5 parent: 2 type: Transform - - uid: 10143 + - uid: 10149 components: - pos: 4.5,-89.5 parent: 2 type: Transform - - uid: 10144 + - uid: 10150 components: - pos: -6.5,-75.5 parent: 2 type: Transform - - uid: 10145 + - uid: 10151 components: - pos: -8.5,-75.5 parent: 2 type: Transform - - uid: 10146 + - uid: 10152 components: - rot: -1.5707963267948966 rad pos: 28.5,-32.5 parent: 2 type: Transform - - uid: 10147 + - uid: 10153 components: - pos: 30.5,-14.5 parent: 2 type: Transform - - uid: 10148 + - uid: 10154 components: - pos: -5.5,-75.5 parent: 2 type: Transform - - uid: 10149 + - uid: 10155 components: - pos: -4.5,-75.5 parent: 2 type: Transform - - uid: 10150 + - uid: 10156 components: - pos: -3.5,-75.5 parent: 2 type: Transform - - uid: 10151 + - uid: 10157 components: - pos: -14.5,-73.5 parent: 2 type: Transform - - uid: 10152 + - uid: 10158 components: - pos: 30.5,-10.5 parent: 2 type: Transform - - uid: 10153 + - uid: 10159 components: - pos: -13.5,-73.5 parent: 2 type: Transform - - uid: 10154 + - uid: 10160 components: - pos: 9.5,-47.5 parent: 2 type: Transform - - uid: 10155 + - uid: 10161 components: - rot: 3.141592653589793 rad pos: 18.5,-52.5 parent: 2 type: Transform - - uid: 10156 + - uid: 10162 components: - rot: 3.141592653589793 rad pos: 14.5,-53.5 parent: 2 type: Transform - - uid: 10157 + - uid: 10163 components: - rot: 3.141592653589793 rad pos: 14.5,-52.5 parent: 2 type: Transform - - uid: 10158 + - uid: 10164 components: - rot: 3.141592653589793 rad pos: 21.5,-53.5 parent: 2 type: Transform - - uid: 10159 + - uid: 10165 components: - rot: 3.141592653589793 rad pos: 15.5,-53.5 parent: 2 type: Transform - - uid: 10160 + - uid: 10166 components: - rot: 3.141592653589793 rad pos: 15.5,-52.5 parent: 2 type: Transform - - uid: 10161 + - uid: 10167 components: - rot: 3.141592653589793 rad pos: 16.5,-52.5 parent: 2 type: Transform - - uid: 10162 + - uid: 10168 components: - rot: 3.141592653589793 rad pos: 17.5,-52.5 parent: 2 type: Transform - - uid: 10163 + - uid: 10169 components: - rot: 3.141592653589793 rad pos: 17.5,-53.5 parent: 2 type: Transform - - uid: 10164 + - uid: 10170 components: - pos: -46.5,-43.5 parent: 2 type: Transform - - uid: 10165 + - uid: 10171 components: - pos: 32.5,-10.5 parent: 2 type: Transform - - uid: 10166 + - uid: 10172 components: - pos: 32.5,-13.5 parent: 2 type: Transform - - uid: 10167 + - uid: 10173 components: - rot: -1.5707963267948966 rad pos: 29.5,-32.5 parent: 2 type: Transform - - uid: 10168 + - uid: 10174 components: - rot: -1.5707963267948966 rad pos: 27.5,-32.5 parent: 2 type: Transform - - uid: 10169 + - uid: 10175 components: - rot: -1.5707963267948966 rad pos: 24.5,-32.5 parent: 2 type: Transform - - uid: 10170 + - uid: 10176 components: - rot: -1.5707963267948966 rad pos: 23.5,-32.5 parent: 2 type: Transform - - uid: 10171 + - uid: 10177 components: - rot: 3.141592653589793 rad pos: 12.5,-16.5 parent: 2 type: Transform - - uid: 10172 + - uid: 10178 components: - rot: -1.5707963267948966 rad pos: 21.5,-32.5 parent: 2 type: Transform - - uid: 10173 + - uid: 10179 components: - pos: -17.5,-52.5 parent: 2 type: Transform - - uid: 10174 + - uid: 10180 components: - pos: -8.5,-13.5 parent: 2 type: Transform - - uid: 10175 + - uid: 10181 components: - pos: -6.5,-70.5 parent: 2 type: Transform - - uid: 10176 + - uid: 10182 components: - pos: 11.5,-17.5 parent: 2 type: Transform - - uid: 10177 + - uid: 10183 components: - pos: -19.5,-52.5 parent: 2 type: Transform - - uid: 10178 + - uid: 10184 components: - rot: 3.141592653589793 rad pos: 9.5,-92.5 parent: 2 type: Transform - - uid: 10179 + - uid: 10185 components: - rot: 3.141592653589793 rad pos: 10.5,-92.5 parent: 2 type: Transform - - uid: 10180 + - uid: 10186 components: - pos: -1.5,-82.5 parent: 2 type: Transform - - uid: 10181 + - uid: 10187 components: - rot: 3.141592653589793 rad pos: 14.5,-45.5 parent: 2 type: Transform - - uid: 10182 + - uid: 10188 components: - rot: -1.5707963267948966 rad pos: 25.5,-32.5 parent: 2 type: Transform - - uid: 10183 + - uid: 10189 components: - pos: 32.5,-12.5 parent: 2 type: Transform - - uid: 10184 + - uid: 10190 components: - pos: 32.5,-14.5 parent: 2 type: Transform - - uid: 10185 + - uid: 10191 components: - pos: -1.5,-85.5 parent: 2 type: Transform - - uid: 10186 + - uid: 10192 components: - pos: -1.5,-87.5 parent: 2 type: Transform - - uid: 10187 + - uid: 10193 components: - rot: 3.141592653589793 rad pos: 11.5,-105.5 parent: 2 type: Transform - - uid: 10188 + - uid: 10194 components: - pos: -12.5,-14.5 parent: 2 type: Transform - - uid: 10189 + - uid: 10195 components: - pos: -16.5,-34.5 parent: 2 type: Transform - - uid: 10190 + - uid: 10196 components: - pos: 4.5,-67.5 parent: 2 type: Transform - - uid: 10191 + - uid: 10197 components: - pos: 1.5,-89.5 parent: 2 type: Transform - - uid: 10192 + - uid: 10198 components: - pos: 8.5,-55.5 parent: 2 type: Transform - - uid: 10193 + - uid: 10199 components: - rot: 3.141592653589793 rad pos: 11.5,-92.5 parent: 2 type: Transform - - uid: 10194 + - uid: 10200 components: - pos: 3.5,-67.5 parent: 2 type: Transform - - uid: 10195 + - uid: 10201 components: - pos: 5.5,-67.5 parent: 2 type: Transform - - uid: 10196 + - uid: 10202 components: - pos: 8.5,-54.5 parent: 2 type: Transform - - uid: 10197 + - uid: 10203 components: - rot: 1.5707963267948966 rad pos: -24.5,53.5 parent: 2 type: Transform - - uid: 10198 + - uid: 10204 components: - rot: 1.5707963267948966 rad pos: -24.5,50.5 parent: 2 type: Transform - - uid: 10199 + - uid: 10205 components: - rot: 1.5707963267948966 rad pos: -24.5,51.5 parent: 2 type: Transform - - uid: 10200 + - uid: 10206 components: - rot: 1.5707963267948966 rad pos: -24.5,52.5 parent: 2 type: Transform - - uid: 10201 + - uid: 10207 components: - rot: 1.5707963267948966 rad pos: -24.5,49.5 parent: 2 type: Transform - - uid: 10202 + - uid: 10208 components: - rot: 3.141592653589793 rad pos: 2.5,-71.5 parent: 2 type: Transform - - uid: 10203 + - uid: 10209 components: - pos: 30.5,-11.5 parent: 2 type: Transform - - uid: 10204 + - uid: 10210 components: - rot: -1.5707963267948966 rad pos: 26.5,-32.5 parent: 2 type: Transform - - uid: 10205 + - uid: 10211 components: - rot: -1.5707963267948966 rad pos: 22.5,-32.5 parent: 2 type: Transform - - uid: 10206 + - uid: 10212 components: - rot: 3.141592653589793 rad pos: 14.5,-48.5 parent: 2 type: Transform - - uid: 10207 + - uid: 10213 components: - rot: -1.5707963267948966 rad pos: 20.5,-32.5 parent: 2 type: Transform - - uid: 10208 + - uid: 10214 components: - pos: -1.5,-81.5 parent: 2 type: Transform - - uid: 10209 + - uid: 10215 components: - pos: -1.5,-86.5 parent: 2 type: Transform - - uid: 10210 + - uid: 10216 components: - pos: 2.5,-89.5 parent: 2 type: Transform - - uid: 10211 + - uid: 10217 components: - pos: 7.5,-92.5 parent: 2 type: Transform - - uid: 10212 + - uid: 10218 components: - pos: 2.5,-92.5 parent: 2 type: Transform - - uid: 10213 + - uid: 10219 components: - pos: 11.5,-100.5 parent: 2 type: Transform - - uid: 10214 + - uid: 10220 components: - rot: 3.141592653589793 rad pos: 8.5,-92.5 parent: 2 type: Transform - - uid: 10215 + - uid: 10221 components: - pos: 6.5,-92.5 parent: 2 type: Transform - - uid: 10216 + - uid: 10222 components: - pos: 5.5,-92.5 parent: 2 type: Transform - - uid: 10217 + - uid: 10223 components: - pos: -9.5,-75.5 parent: 2 type: Transform - - uid: 10218 + - uid: 10224 components: - rot: 3.141592653589793 rad pos: 20.5,-53.5 parent: 2 type: Transform - - uid: 10219 + - uid: 10225 components: - pos: 30.5,-12.5 parent: 2 type: Transform - - uid: 10220 + - uid: 10226 components: - pos: 60.5,-58.5 parent: 2 type: Transform - - uid: 10221 + - uid: 10227 components: - pos: -4.5,-69.5 parent: 2 type: Transform - - uid: 10222 + - uid: 10228 components: - pos: -13.5,-31.5 parent: 2 type: Transform - - uid: 10223 + - uid: 10229 components: - pos: -3.5,-69.5 parent: 2 type: Transform - - uid: 10224 + - uid: 10230 components: - pos: -9.5,-13.5 parent: 2 type: Transform - - uid: 10225 + - uid: 10231 components: - pos: -12.5,-13.5 parent: 2 type: Transform - - uid: 10226 + - uid: 10232 components: - pos: -10.5,-13.5 parent: 2 type: Transform - - uid: 10227 + - uid: 10233 components: - pos: -10.5,-14.5 parent: 2 type: Transform - - uid: 10228 + - uid: 10234 components: - pos: -10.5,-15.5 parent: 2 type: Transform - - uid: 10229 + - uid: 10235 components: - pos: -13.5,-14.5 parent: 2 type: Transform - - uid: 10230 + - uid: 10236 components: - pos: -7.5,-13.5 parent: 2 type: Transform - - uid: 10231 + - uid: 10237 components: - pos: -14.5,-31.5 parent: 2 type: Transform - - uid: 10232 + - uid: 10238 components: - pos: -15.5,-31.5 parent: 2 type: Transform - - uid: 10233 + - uid: 10239 components: - pos: -2.5,-69.5 parent: 2 type: Transform - - uid: 10234 + - uid: 10240 components: - pos: -16.5,-31.5 parent: 2 type: Transform - - uid: 10235 + - uid: 10241 components: - pos: -16.5,-32.5 parent: 2 type: Transform - - uid: 10236 + - uid: 10242 components: - pos: -16.5,-33.5 parent: 2 type: Transform - - uid: 10237 + - uid: 10243 components: - pos: -6.5,-69.5 parent: 2 type: Transform - - uid: 10238 + - uid: 10244 components: - pos: -12.5,15.5 parent: 2 type: Transform - - uid: 10239 + - uid: 10245 components: - pos: -13.5,15.5 parent: 2 type: Transform - - uid: 10240 + - uid: 10246 components: - pos: -14.5,15.5 parent: 2 type: Transform - - uid: 10241 + - uid: 10247 components: - pos: -6.5,-71.5 parent: 2 type: Transform - - uid: 10242 + - uid: 10248 components: - pos: -7.5,-71.5 parent: 2 type: Transform - - uid: 10243 + - uid: 10249 components: - pos: -8.5,-71.5 parent: 2 type: Transform - - uid: 10244 + - uid: 10250 components: - pos: -9.5,-71.5 parent: 2 type: Transform - - uid: 10245 + - uid: 10251 components: - pos: -10.5,-71.5 parent: 2 type: Transform - - uid: 10246 + - uid: 10252 components: - pos: -11.5,-71.5 parent: 2 type: Transform - - uid: 10247 + - uid: 10253 components: - pos: 3.5,-16.5 parent: 2 type: Transform - - uid: 10248 + - uid: 10254 components: - pos: 2.5,-16.5 parent: 2 type: Transform - - uid: 10249 + - uid: 10255 components: - pos: 1.5,-16.5 parent: 2 type: Transform - - uid: 10250 + - uid: 10256 components: - pos: 1.5,-17.5 parent: 2 type: Transform - - uid: 10251 + - uid: 10257 components: - pos: 0.5,-17.5 parent: 2 type: Transform - - uid: 10252 + - uid: 10258 components: - pos: -0.5,-17.5 parent: 2 type: Transform - - uid: 10253 + - uid: 10259 components: - pos: -0.5,-17.5 parent: 2 type: Transform - - uid: 10254 + - uid: 10260 components: - pos: -1.5,-17.5 parent: 2 type: Transform - - uid: 10255 + - uid: 10261 components: - pos: -1.5,-18.5 parent: 2 type: Transform - - uid: 10256 + - uid: 10262 components: - pos: -1.5,-19.5 parent: 2 type: Transform - - uid: 10257 + - uid: 10263 components: - pos: -1.5,-20.5 parent: 2 type: Transform - - uid: 10258 + - uid: 10264 components: - pos: 14.5,-14.5 parent: 2 type: Transform - - uid: 10259 + - uid: 10265 components: - pos: 13.5,-14.5 parent: 2 type: Transform - - uid: 10260 + - uid: 10266 components: - pos: 12.5,-14.5 parent: 2 type: Transform - - uid: 10261 + - uid: 10267 components: - pos: 11.5,-14.5 parent: 2 type: Transform - - uid: 10262 + - uid: 10268 components: - pos: 10.5,-14.5 parent: 2 type: Transform - - uid: 10263 + - uid: 10269 components: - pos: 9.5,-14.5 parent: 2 type: Transform - - uid: 10264 + - uid: 10270 components: - pos: 8.5,-14.5 parent: 2 type: Transform - - uid: 10265 + - uid: 10271 components: - pos: 7.5,-14.5 parent: 2 type: Transform - - uid: 10266 + - uid: 10272 components: - pos: 14.5,-5.5 parent: 2 type: Transform - - uid: 10267 + - uid: 10273 components: - pos: 14.5,-6.5 parent: 2 type: Transform - - uid: 10268 + - uid: 10274 components: - pos: 14.5,-4.5 parent: 2 type: Transform - - uid: 10269 + - uid: 10275 components: - pos: 56.5,1.5 parent: 2 type: Transform - - uid: 10270 + - uid: 10276 components: - pos: 57.5,2.5 parent: 2 type: Transform - - uid: 10271 + - uid: 10277 components: - pos: 56.5,2.5 parent: 2 type: Transform - - uid: 10272 + - uid: 10278 components: - pos: 57.5,1.5 parent: 2 type: Transform - - uid: 10273 + - uid: 10279 components: - pos: 58.5,1.5 parent: 2 type: Transform - - uid: 10274 + - uid: 10280 components: - pos: 59.5,1.5 parent: 2 type: Transform - - uid: 10275 + - uid: 10281 components: - pos: 60.5,1.5 parent: 2 type: Transform - - uid: 10276 + - uid: 10282 components: - pos: 61.5,1.5 parent: 2 type: Transform - - uid: 10277 + - uid: 10283 components: - pos: 62.5,1.5 parent: 2 type: Transform - - uid: 10278 + - uid: 10284 components: - pos: 62.5,2.5 parent: 2 type: Transform - - uid: 10279 + - uid: 10285 components: - pos: 12.5,-17.5 parent: 2 type: Transform - - uid: 10280 + - uid: 10286 components: - pos: 10.5,-17.5 parent: 2 type: Transform - - uid: 10281 + - uid: 10287 components: - pos: 9.5,-17.5 parent: 2 type: Transform - - uid: 10282 + - uid: 10288 components: - pos: 8.5,-17.5 parent: 2 type: Transform - - uid: 10283 + - uid: 10289 components: - pos: 7.5,-17.5 parent: 2 type: Transform - - uid: 10284 + - uid: 10290 components: - rot: -1.5707963267948966 rad pos: 59.5,-19.5 parent: 2 type: Transform - - uid: 10285 + - uid: 10291 components: - rot: -1.5707963267948966 rad pos: 59.5,-20.5 parent: 2 type: Transform - - uid: 10286 + - uid: 10292 components: - rot: -1.5707963267948966 rad pos: 59.5,-21.5 parent: 2 type: Transform - - uid: 10287 + - uid: 10293 components: - rot: -1.5707963267948966 rad pos: 58.5,-19.5 parent: 2 type: Transform - - uid: 10288 + - uid: 10294 components: - rot: -1.5707963267948966 rad pos: 57.5,-19.5 parent: 2 type: Transform - - uid: 10289 + - uid: 10295 components: - rot: -1.5707963267948966 rad pos: 57.5,-18.5 parent: 2 type: Transform - - uid: 10290 + - uid: 10296 components: - rot: -1.5707963267948966 rad pos: 57.5,-17.5 parent: 2 type: Transform - - uid: 10291 + - uid: 10297 components: - rot: -1.5707963267948966 rad pos: 52.5,-17.5 parent: 2 type: Transform - - uid: 10292 + - uid: 10298 components: - rot: -1.5707963267948966 rad pos: 53.5,-17.5 parent: 2 type: Transform - - uid: 10293 + - uid: 10299 components: - rot: -1.5707963267948966 rad pos: 54.5,-17.5 parent: 2 type: Transform - - uid: 10294 + - uid: 10300 components: - rot: -1.5707963267948966 rad pos: 55.5,-17.5 parent: 2 type: Transform - - uid: 10295 + - uid: 10301 components: - rot: -1.5707963267948966 rad pos: 56.5,-17.5 parent: 2 type: Transform - - uid: 10296 + - uid: 10302 components: - pos: 61.5,-58.5 parent: 2 type: Transform - - uid: 10297 + - uid: 10303 components: - pos: 62.5,-58.5 parent: 2 type: Transform - - uid: 10298 + - uid: 10304 components: - pos: 63.5,-58.5 parent: 2 type: Transform - - uid: 10299 + - uid: 10305 components: - pos: 79.5,-43.5 parent: 2 type: Transform - - uid: 10300 + - uid: 10306 components: - pos: 79.5,-42.5 parent: 2 type: Transform - - uid: 10301 + - uid: 10307 components: - pos: -46.5,-55.5 parent: 2 type: Transform - - uid: 10302 + - uid: 10308 components: - pos: -16.5,-0.5 parent: 2 type: Transform - - uid: 10303 + - uid: 10309 components: - pos: -17.5,-0.5 parent: 2 type: Transform - - uid: 10304 + - uid: 10310 components: - pos: -18.5,-0.5 parent: 2 type: Transform - - uid: 10305 + - uid: 10311 components: - pos: -19.5,-0.5 parent: 2 type: Transform - - uid: 10306 + - uid: 10312 components: - pos: -20.5,-0.5 parent: 2 type: Transform - - uid: 10307 + - uid: 10313 components: - pos: -21.5,-0.5 parent: 2 type: Transform - - uid: 10308 + - uid: 10314 components: - pos: -22.5,-0.5 parent: 2 type: Transform - - uid: 10309 + - uid: 10315 components: - rot: 3.141592653589793 rad pos: 52.5,-85.5 parent: 2 type: Transform - - uid: 10310 + - uid: 10316 components: - rot: 3.141592653589793 rad pos: 52.5,-86.5 parent: 2 type: Transform - - uid: 10311 + - uid: 10317 components: - rot: 3.141592653589793 rad pos: 52.5,-87.5 parent: 2 type: Transform - - uid: 10312 + - uid: 10318 components: - rot: 3.141592653589793 rad pos: 52.5,-88.5 parent: 2 type: Transform - - uid: 10313 + - uid: 10319 components: - rot: 3.141592653589793 rad pos: 52.5,-89.5 parent: 2 type: Transform - - uid: 10314 + - uid: 10320 components: - rot: 3.141592653589793 rad pos: 52.5,-90.5 parent: 2 type: Transform - - uid: 10315 + - uid: 10321 components: - rot: 3.141592653589793 rad pos: 52.5,-92.5 parent: 2 type: Transform - - uid: 10316 + - uid: 10322 components: - rot: 3.141592653589793 rad pos: 52.5,-77.5 parent: 2 type: Transform - - uid: 10317 + - uid: 10323 components: - rot: 3.141592653589793 rad pos: 14.5,-89.5 parent: 2 type: Transform - - uid: 10318 + - uid: 10324 components: - rot: 3.141592653589793 rad pos: 52.5,-78.5 parent: 2 type: Transform - - uid: 10319 + - uid: 10325 components: - rot: 3.141592653589793 rad pos: 15.5,-89.5 parent: 2 type: Transform - - uid: 10320 + - uid: 10326 components: - rot: 3.141592653589793 rad pos: 26.5,-89.5 parent: 2 type: Transform - - uid: 10321 + - uid: 10327 components: - rot: 3.141592653589793 rad pos: 24.5,-89.5 parent: 2 type: Transform - - uid: 10322 + - uid: 10328 components: - rot: 3.141592653589793 rad pos: 25.5,-89.5 parent: 2 type: Transform - - uid: 10323 + - uid: 10329 components: - rot: 3.141592653589793 rad pos: 52.5,-84.5 parent: 2 type: Transform - - uid: 10324 + - uid: 10330 components: - rot: 3.141592653589793 rad pos: 52.5,-94.5 parent: 2 type: Transform - - uid: 10325 + - uid: 10331 components: - rot: 3.141592653589793 rad pos: 52.5,-79.5 parent: 2 type: Transform - - uid: 10326 + - uid: 10332 components: - rot: 3.141592653589793 rad pos: 16.5,-89.5 parent: 2 type: Transform - - uid: 10327 + - uid: 10333 components: - rot: 3.141592653589793 rad pos: 17.5,-89.5 parent: 2 type: Transform - - uid: 10328 + - uid: 10334 components: - rot: 3.141592653589793 rad pos: 18.5,-89.5 parent: 2 type: Transform - - uid: 10329 + - uid: 10335 components: - rot: 3.141592653589793 rad pos: 19.5,-89.5 parent: 2 type: Transform - - uid: 10330 + - uid: 10336 components: - rot: 3.141592653589793 rad pos: 20.5,-89.5 parent: 2 type: Transform - - uid: 10331 + - uid: 10337 components: - rot: 3.141592653589793 rad pos: 21.5,-89.5 parent: 2 type: Transform - - uid: 10332 + - uid: 10338 components: - rot: 3.141592653589793 rad pos: 22.5,-89.5 parent: 2 type: Transform - - uid: 10333 + - uid: 10339 components: - rot: 3.141592653589793 rad pos: 27.5,-89.5 parent: 2 type: Transform - - uid: 10334 + - uid: 10340 components: - rot: 3.141592653589793 rad pos: 57.5,-74.5 parent: 2 type: Transform - - uid: 10335 + - uid: 10341 components: - rot: 3.141592653589793 rad pos: 27.5,-93.5 parent: 2 type: Transform - - uid: 10336 + - uid: 10342 components: - rot: 3.141592653589793 rad pos: 27.5,-94.5 parent: 2 type: Transform - - uid: 10337 + - uid: 10343 components: - rot: 3.141592653589793 rad pos: 27.5,-91.5 parent: 2 type: Transform - - uid: 10338 + - uid: 10344 components: - rot: 3.141592653589793 rad pos: 27.5,-92.5 parent: 2 type: Transform - - uid: 10339 + - uid: 10345 components: - rot: 3.141592653589793 rad pos: 52.5,-91.5 parent: 2 type: Transform - - uid: 10340 + - uid: 10346 components: - rot: 1.5707963267948966 rad pos: 22.5,-75.5 parent: 2 type: Transform - - uid: 10341 + - uid: 10347 components: - pos: 20.5,-73.5 parent: 2 type: Transform - - uid: 10342 + - uid: 10348 components: - pos: 19.5,-73.5 parent: 2 type: Transform - - uid: 10343 + - uid: 10349 components: - pos: 18.5,-73.5 parent: 2 type: Transform - - uid: 10344 + - uid: 10350 components: - pos: 17.5,-73.5 parent: 2 type: Transform - - uid: 10345 + - uid: 10351 components: - pos: 16.5,-73.5 parent: 2 type: Transform - - uid: 10346 + - uid: 10352 components: - pos: 15.5,-73.5 parent: 2 type: Transform - - uid: 10347 + - uid: 10353 components: - pos: 14.5,-73.5 parent: 2 type: Transform - - uid: 10348 + - uid: 10354 components: - pos: 13.5,-73.5 parent: 2 type: Transform - - uid: 10349 + - uid: 10355 components: - pos: 12.5,-73.5 parent: 2 type: Transform - - uid: 10350 + - uid: 10356 components: - pos: 11.5,-73.5 parent: 2 type: Transform - - uid: 10351 + - uid: 10357 components: - pos: 43.5,-59.5 parent: 2 type: Transform - - uid: 10352 + - uid: 10358 components: - pos: -46.5,-48.5 parent: 2 type: Transform - - uid: 10353 + - uid: 10359 components: - pos: -46.5,-45.5 parent: 2 type: Transform - - uid: 10354 + - uid: 10360 components: - pos: -46.5,-46.5 parent: 2 type: Transform - - uid: 10355 + - uid: 10361 components: - pos: -46.5,-52.5 parent: 2 type: Transform - - uid: 10356 + - uid: 10362 components: - rot: 1.5707963267948966 rad pos: -19.5,-45.5 parent: 2 type: Transform - - uid: 10357 + - uid: 10363 components: - rot: 1.5707963267948966 rad pos: -19.5,-46.5 parent: 2 type: Transform - - uid: 10358 + - uid: 10364 components: - rot: 1.5707963267948966 rad pos: -19.5,-47.5 parent: 2 type: Transform - - uid: 10359 + - uid: 10365 components: - rot: 3.141592653589793 rad pos: 27.5,-95.5 parent: 2 type: Transform - - uid: 10360 + - uid: 10366 components: - rot: 3.141592653589793 rad pos: 28.5,-95.5 parent: 2 type: Transform - - uid: 10361 + - uid: 10367 components: - rot: 3.141592653589793 rad pos: 56.5,-74.5 parent: 2 type: Transform - - uid: 10362 + - uid: 10368 components: - pos: -46.5,-47.5 parent: 2 type: Transform - - uid: 10363 + - uid: 10369 components: - pos: -46.5,-49.5 parent: 2 type: Transform - - uid: 10364 + - uid: 10370 components: - pos: -46.5,-44.5 parent: 2 type: Transform - - uid: 10365 + - uid: 10371 components: - pos: -46.5,-51.5 parent: 2 type: Transform - - uid: 10366 + - uid: 10372 components: - pos: 79.5,-50.5 parent: 2 type: Transform - - uid: 10367 + - uid: 10373 components: - pos: 79.5,-49.5 parent: 2 type: Transform - - uid: 10368 + - uid: 10374 components: - pos: 79.5,-44.5 parent: 2 type: Transform - - uid: 10369 + - uid: 10375 components: - pos: 79.5,-45.5 parent: 2 type: Transform - - uid: 10370 + - uid: 10376 components: - pos: 79.5,-46.5 parent: 2 type: Transform - - uid: 10371 + - uid: 10377 components: - pos: 79.5,-47.5 parent: 2 type: Transform - - uid: 10372 + - uid: 10378 components: - pos: 79.5,-48.5 parent: 2 type: Transform - - uid: 10373 + - uid: 10379 components: - pos: 79.5,-41.5 parent: 2 type: Transform - - uid: 10374 + - uid: 10380 components: - pos: 68.5,-74.5 parent: 2 type: Transform - - uid: 10375 + - uid: 10381 components: - pos: 68.5,-73.5 parent: 2 type: Transform - - uid: 10376 + - uid: 10382 components: - pos: -23.5,-26.5 parent: 2 type: Transform - - uid: 10377 + - uid: 10383 components: - pos: -24.5,-26.5 parent: 2 type: Transform - - uid: 10378 + - uid: 10384 components: - pos: -25.5,-26.5 parent: 2 type: Transform - - uid: 10379 + - uid: 10385 components: - pos: -26.5,-26.5 parent: 2 type: Transform - - uid: 10380 + - uid: 10386 components: - pos: -27.5,-26.5 parent: 2 type: Transform - - uid: 10381 + - uid: 10387 components: - pos: -28.5,-26.5 parent: 2 type: Transform - - uid: 10382 + - uid: 10388 components: - pos: 68.5,-72.5 parent: 2 type: Transform - - uid: 10383 + - uid: 10389 components: - pos: 68.5,-71.5 parent: 2 type: Transform - - uid: 10384 + - uid: 10390 components: - pos: 36.5,-56.5 parent: 2 type: Transform - - uid: 10385 + - uid: 10391 components: - pos: 36.5,-54.5 parent: 2 type: Transform - - uid: 10386 + - uid: 10392 components: - pos: 36.5,-53.5 parent: 2 type: Transform - - uid: 10387 + - uid: 10393 components: - pos: 36.5,-52.5 parent: 2 type: Transform - - uid: 10388 + - uid: 10394 components: - pos: 38.5,-51.5 parent: 2 type: Transform - - uid: 10389 + - uid: 10395 components: - pos: 39.5,-51.5 parent: 2 type: Transform - - uid: 10390 + - uid: 10396 components: - pos: 40.5,-51.5 parent: 2 type: Transform - - uid: 10391 + - uid: 10397 components: - pos: 41.5,-51.5 parent: 2 type: Transform - - uid: 10392 + - uid: 10398 components: - pos: 13.5,-47.5 parent: 2 type: Transform - - uid: 10393 + - uid: 10399 components: - pos: 13.5,-45.5 parent: 2 type: Transform - - uid: 10394 + - uid: 10400 components: - pos: 15.5,-45.5 parent: 2 type: Transform - - uid: 10395 + - uid: 10401 components: - pos: 16.5,-45.5 parent: 2 type: Transform - - uid: 10396 + - uid: 10402 components: - pos: 17.5,-45.5 parent: 2 type: Transform - - uid: 10397 + - uid: 10403 components: - rot: 3.141592653589793 rad pos: -1.5,-71.5 parent: 2 type: Transform - - uid: 10398 + - uid: 10404 components: - pos: 8.5,-56.5 parent: 2 type: Transform - - uid: 10399 + - uid: 10405 components: - pos: 62.5,-15.5 parent: 2 type: Transform - - uid: 10400 + - uid: 10406 components: - pos: 62.5,-16.5 parent: 2 type: Transform - - uid: 10401 + - uid: 10407 components: - pos: 62.5,-17.5 parent: 2 type: Transform - - uid: 10402 + - uid: 10408 components: - pos: 62.5,-18.5 parent: 2 type: Transform - - uid: 10403 + - uid: 10409 components: - pos: 62.5,-19.5 parent: 2 type: Transform - - uid: 10404 + - uid: 10410 components: - pos: 62.5,-20.5 parent: 2 type: Transform - - uid: 10405 + - uid: 10411 components: - pos: 62.5,-21.5 parent: 2 type: Transform - - uid: 10406 + - uid: 10412 components: - pos: 62.5,-22.5 parent: 2 type: Transform - - uid: 10407 + - uid: 10413 components: - pos: 62.5,-23.5 parent: 2 type: Transform - - uid: 10408 + - uid: 10414 components: - pos: -46.5,-9.5 parent: 2 type: Transform - - uid: 10409 + - uid: 10415 components: - pos: -46.5,-10.5 parent: 2 type: Transform - - uid: 10410 + - uid: 10416 components: - pos: -46.5,-11.5 parent: 2 type: Transform - - uid: 10411 + - uid: 10417 components: - pos: -46.5,-12.5 parent: 2 type: Transform - - uid: 10412 + - uid: 10418 components: - pos: -46.5,-13.5 parent: 2 type: Transform - - uid: 10413 + - uid: 10419 components: - pos: -46.5,-14.5 parent: 2 type: Transform - - uid: 10414 + - uid: 10420 components: - pos: -46.5,-15.5 parent: 2 type: Transform - - uid: 10415 + - uid: 10421 components: - pos: -46.5,-16.5 parent: 2 type: Transform - - uid: 10416 + - uid: 10422 components: - rot: -1.5707963267948966 rad pos: -59.5,-12.5 parent: 2 type: Transform - - uid: 10417 + - uid: 10423 components: - rot: -1.5707963267948966 rad pos: -59.5,-13.5 parent: 2 type: Transform - - uid: 10418 + - uid: 10424 components: - rot: -1.5707963267948966 rad pos: -59.5,-14.5 parent: 2 type: Transform - - uid: 10419 + - uid: 10425 components: - rot: -1.5707963267948966 rad pos: -59.5,-15.5 parent: 2 type: Transform - - uid: 10420 + - uid: 10426 components: - rot: -1.5707963267948966 rad pos: -59.5,-16.5 parent: 2 type: Transform - - uid: 10421 + - uid: 10427 components: - rot: -1.5707963267948966 rad pos: -59.5,-17.5 parent: 2 type: Transform - - uid: 10422 + - uid: 10428 components: - rot: -1.5707963267948966 rad pos: -59.5,-18.5 parent: 2 type: Transform - - uid: 10423 + - uid: 10429 components: - rot: -1.5707963267948966 rad pos: -59.5,-19.5 parent: 2 type: Transform - - uid: 10424 + - uid: 10430 components: - rot: -1.5707963267948966 rad pos: -59.5,-20.5 parent: 2 type: Transform - - uid: 10425 + - uid: 10431 components: - rot: -1.5707963267948966 rad pos: -60.5,-20.5 parent: 2 type: Transform - - uid: 10426 + - uid: 10432 components: - rot: -1.5707963267948966 rad pos: -61.5,-20.5 parent: 2 type: Transform - - uid: 10427 + - uid: 10433 components: - rot: -1.5707963267948966 rad pos: -62.5,-20.5 parent: 2 type: Transform - - uid: 10428 + - uid: 10434 components: - rot: -1.5707963267948966 rad pos: -63.5,-20.5 parent: 2 type: Transform - - uid: 10429 + - uid: 10435 components: - rot: -1.5707963267948966 rad pos: -64.5,-20.5 parent: 2 type: Transform - - uid: 10430 + - uid: 10436 components: - rot: -1.5707963267948966 rad pos: -65.5,-20.5 parent: 2 type: Transform - - uid: 10431 + - uid: 10437 components: - rot: -1.5707963267948966 rad pos: -66.5,-20.5 parent: 2 type: Transform - - uid: 10432 + - uid: 10438 components: - rot: -1.5707963267948966 rad pos: -67.5,-20.5 parent: 2 type: Transform - - uid: 10433 + - uid: 10439 components: - rot: -1.5707963267948966 rad pos: -68.5,-20.5 parent: 2 type: Transform - - uid: 10434 + - uid: 10440 components: - rot: -1.5707963267948966 rad pos: -69.5,-20.5 parent: 2 type: Transform - - uid: 10435 + - uid: 10441 components: - rot: -1.5707963267948966 rad pos: -70.5,-20.5 parent: 2 type: Transform - - uid: 10436 + - uid: 10442 components: - rot: -1.5707963267948966 rad pos: -71.5,-20.5 parent: 2 type: Transform - - uid: 10437 + - uid: 10443 components: - rot: -1.5707963267948966 rad pos: -72.5,-20.5 parent: 2 type: Transform - - uid: 10438 + - uid: 10444 components: - rot: -1.5707963267948966 rad pos: -73.5,-20.5 parent: 2 type: Transform - - uid: 10439 + - uid: 10445 components: - rot: -1.5707963267948966 rad pos: -73.5,-19.5 parent: 2 type: Transform - - uid: 10440 + - uid: 10446 components: - rot: -1.5707963267948966 rad pos: -73.5,-18.5 parent: 2 type: Transform - - uid: 10441 + - uid: 10447 components: - rot: -1.5707963267948966 rad pos: -73.5,-17.5 parent: 2 type: Transform - - uid: 10442 + - uid: 10448 components: - rot: -1.5707963267948966 rad pos: -73.5,-16.5 parent: 2 type: Transform - - uid: 10443 + - uid: 10449 components: - rot: -1.5707963267948966 rad pos: -73.5,-15.5 parent: 2 type: Transform - - uid: 10444 + - uid: 10450 components: - rot: -1.5707963267948966 rad pos: -73.5,-14.5 parent: 2 type: Transform - - uid: 10445 + - uid: 10451 components: - rot: -1.5707963267948966 rad pos: -73.5,-13.5 parent: 2 type: Transform - - uid: 10446 + - uid: 10452 components: - rot: -1.5707963267948966 rad pos: -73.5,-12.5 parent: 2 type: Transform - - uid: 10447 + - uid: 10453 components: - rot: -1.5707963267948966 rad pos: -73.5,-11.5 parent: 2 type: Transform - - uid: 10448 + - uid: 10454 components: - rot: -1.5707963267948966 rad pos: -73.5,-10.5 parent: 2 type: Transform - - uid: 10449 + - uid: 10455 components: - rot: -1.5707963267948966 rad pos: -73.5,-9.5 parent: 2 type: Transform - - uid: 10450 + - uid: 10456 components: - rot: -1.5707963267948966 rad pos: -73.5,-8.5 parent: 2 type: Transform - - uid: 10451 + - uid: 10457 components: - rot: -1.5707963267948966 rad pos: -73.5,-7.5 parent: 2 type: Transform - - uid: 10452 + - uid: 10458 components: - rot: -1.5707963267948966 rad pos: -73.5,-6.5 parent: 2 type: Transform - - uid: 10453 + - uid: 10459 components: - rot: -1.5707963267948966 rad pos: -72.5,-6.5 parent: 2 type: Transform - - uid: 10454 + - uid: 10460 components: - rot: -1.5707963267948966 rad pos: -71.5,-6.5 parent: 2 type: Transform - - uid: 10455 + - uid: 10461 components: - rot: -1.5707963267948966 rad pos: -70.5,-6.5 parent: 2 type: Transform - - uid: 10456 + - uid: 10462 components: - rot: -1.5707963267948966 rad pos: -69.5,-6.5 parent: 2 type: Transform - - uid: 10457 + - uid: 10463 components: - rot: -1.5707963267948966 rad pos: -68.5,-6.5 parent: 2 type: Transform - - uid: 10458 + - uid: 10464 components: - rot: -1.5707963267948966 rad pos: -67.5,-6.5 parent: 2 type: Transform - - uid: 10459 + - uid: 10465 components: - rot: -1.5707963267948966 rad pos: -66.5,-6.5 parent: 2 type: Transform - - uid: 10460 + - uid: 10466 components: - rot: -1.5707963267948966 rad pos: -65.5,-6.5 parent: 2 type: Transform - - uid: 10461 + - uid: 10467 components: - rot: -1.5707963267948966 rad pos: -64.5,-6.5 parent: 2 type: Transform - - uid: 10462 + - uid: 10468 components: - rot: -1.5707963267948966 rad pos: -63.5,-6.5 parent: 2 type: Transform - - uid: 10463 + - uid: 10469 components: - rot: -1.5707963267948966 rad pos: -62.5,-6.5 parent: 2 type: Transform - - uid: 10464 + - uid: 10470 components: - rot: -1.5707963267948966 rad pos: -61.5,-6.5 parent: 2 type: Transform - - uid: 10465 + - uid: 10471 components: - rot: -1.5707963267948966 rad pos: -60.5,-6.5 parent: 2 type: Transform - - uid: 10466 + - uid: 10472 components: - rot: -1.5707963267948966 rad pos: -59.5,-6.5 parent: 2 type: Transform - - uid: 10467 + - uid: 10473 components: - rot: -1.5707963267948966 rad pos: -59.5,-7.5 parent: 2 type: Transform - - uid: 10468 + - uid: 10474 components: - rot: -1.5707963267948966 rad pos: -59.5,-8.5 parent: 2 type: Transform - - uid: 10469 + - uid: 10475 components: - rot: -1.5707963267948966 rad pos: -59.5,-9.5 parent: 2 type: Transform - - uid: 10470 + - uid: 10476 components: - rot: -1.5707963267948966 rad pos: -59.5,-10.5 parent: 2 type: Transform - - uid: 10471 + - uid: 10477 components: - rot: -1.5707963267948966 rad pos: -59.5,-11.5 parent: 2 type: Transform - - uid: 10472 + - uid: 10478 components: - rot: -1.5707963267948966 rad pos: -79.5,-1.5 parent: 2 type: Transform - - uid: 10473 + - uid: 10479 components: - rot: -1.5707963267948966 rad pos: -79.5,-2.5 parent: 2 type: Transform - - uid: 10474 + - uid: 10480 components: - rot: -1.5707963267948966 rad pos: -79.5,-3.5 parent: 2 type: Transform - - uid: 10475 + - uid: 10481 components: - rot: -1.5707963267948966 rad pos: -79.5,-4.5 parent: 2 type: Transform - - uid: 10476 + - uid: 10482 components: - rot: -1.5707963267948966 rad pos: -79.5,-5.5 parent: 2 type: Transform - - uid: 10477 + - uid: 10483 components: - rot: -1.5707963267948966 rad pos: -79.5,-6.5 parent: 2 type: Transform - - uid: 10478 + - uid: 10484 components: - rot: -1.5707963267948966 rad pos: -79.5,-7.5 parent: 2 type: Transform - - uid: 10479 + - uid: 10485 components: - rot: -1.5707963267948966 rad pos: -79.5,-8.5 parent: 2 type: Transform - - uid: 10480 + - uid: 10486 components: - rot: -1.5707963267948966 rad pos: -79.5,-9.5 parent: 2 type: Transform - - uid: 10481 + - uid: 10487 components: - rot: -1.5707963267948966 rad pos: -79.5,-10.5 parent: 2 type: Transform - - uid: 10482 + - uid: 10488 components: - rot: -1.5707963267948966 rad pos: -79.5,-11.5 parent: 2 type: Transform - - uid: 10483 + - uid: 10489 components: - rot: -1.5707963267948966 rad pos: -79.5,-15.5 parent: 2 type: Transform - - uid: 10484 + - uid: 10490 components: - rot: -1.5707963267948966 rad pos: -79.5,-19.5 parent: 2 type: Transform - - uid: 10485 + - uid: 10491 components: - rot: -1.5707963267948966 rad pos: -79.5,-22.5 parent: 2 type: Transform - - uid: 10486 + - uid: 10492 components: - rot: -1.5707963267948966 rad pos: -79.5,-26.5 parent: 2 type: Transform - - uid: 10487 + - uid: 10493 components: - rot: -1.5707963267948966 rad pos: -78.5,-1.5 parent: 2 type: Transform - - uid: 10488 + - uid: 10494 components: - rot: -1.5707963267948966 rad pos: -77.5,-1.5 parent: 2 type: Transform - - uid: 10489 + - uid: 10495 components: - rot: -1.5707963267948966 rad pos: -76.5,-1.5 parent: 2 type: Transform - - uid: 10490 + - uid: 10496 components: - rot: -1.5707963267948966 rad pos: -75.5,-1.5 parent: 2 type: Transform - - uid: 10491 + - uid: 10497 components: - rot: -1.5707963267948966 rad pos: -74.5,-1.5 parent: 2 type: Transform - - uid: 10492 + - uid: 10498 components: - rot: -1.5707963267948966 rad pos: -73.5,-1.5 parent: 2 type: Transform - - uid: 10493 + - uid: 10499 components: - rot: -1.5707963267948966 rad pos: -72.5,-1.5 parent: 2 type: Transform - - uid: 10494 + - uid: 10500 components: - rot: -1.5707963267948966 rad pos: -71.5,-1.5 parent: 2 type: Transform - - uid: 10495 + - uid: 10501 components: - rot: -1.5707963267948966 rad pos: -70.5,-1.5 parent: 2 type: Transform - - uid: 10496 + - uid: 10502 components: - rot: -1.5707963267948966 rad pos: -69.5,-1.5 parent: 2 type: Transform - - uid: 10497 + - uid: 10503 components: - rot: -1.5707963267948966 rad pos: -68.5,-1.5 parent: 2 type: Transform - - uid: 10498 + - uid: 10504 components: - rot: -1.5707963267948966 rad pos: -67.5,-1.5 parent: 2 type: Transform - - uid: 10499 + - uid: 10505 components: - rot: -1.5707963267948966 rad pos: -66.5,-1.5 parent: 2 type: Transform - - uid: 10500 + - uid: 10506 components: - rot: -1.5707963267948966 rad pos: -65.5,-1.5 parent: 2 type: Transform - - uid: 10501 + - uid: 10507 components: - rot: -1.5707963267948966 rad pos: -64.5,-1.5 parent: 2 type: Transform - - uid: 10502 + - uid: 10508 components: - rot: -1.5707963267948966 rad pos: -63.5,-1.5 parent: 2 type: Transform - - uid: 10503 + - uid: 10509 components: - rot: -1.5707963267948966 rad pos: -62.5,-1.5 parent: 2 type: Transform - - uid: 10504 + - uid: 10510 components: - rot: -1.5707963267948966 rad pos: -61.5,-1.5 parent: 2 type: Transform - - uid: 10505 + - uid: 10511 components: - rot: -1.5707963267948966 rad pos: -60.5,-1.5 parent: 2 type: Transform - - uid: 10506 + - uid: 10512 components: - rot: -1.5707963267948966 rad pos: -59.5,-1.5 parent: 2 type: Transform - - uid: 10507 + - uid: 10513 components: - rot: -1.5707963267948966 rad pos: -58.5,-1.5 parent: 2 type: Transform - - uid: 10508 + - uid: 10514 components: - pos: -25.5,-58.5 parent: 2 type: Transform - - uid: 10509 + - uid: 10515 components: - pos: -28.5,-66.5 parent: 2 type: Transform - - uid: 10510 + - uid: 10516 components: - pos: -29.5,-66.5 parent: 2 type: Transform - - uid: 10511 + - uid: 10517 components: - pos: -30.5,-66.5 parent: 2 type: Transform - - uid: 10512 + - uid: 10518 components: - pos: -31.5,-66.5 parent: 2 type: Transform - - uid: 10513 + - uid: 10519 components: - pos: -32.5,-66.5 parent: 2 type: Transform - - uid: 10514 + - uid: 10520 components: - pos: -33.5,-66.5 parent: 2 type: Transform - - uid: 10515 + - uid: 10521 components: - pos: -34.5,-66.5 parent: 2 type: Transform - - uid: 10516 + - uid: 10522 components: - pos: -35.5,-66.5 parent: 2 type: Transform - - uid: 10517 + - uid: 10523 components: - pos: -24.5,-51.5 parent: 2 type: Transform - - uid: 10518 + - uid: 10524 components: - pos: -25.5,-51.5 parent: 2 type: Transform - - uid: 10519 + - uid: 10525 components: - pos: -26.5,-51.5 parent: 2 type: Transform - - uid: 10520 + - uid: 10526 components: - pos: -27.5,-51.5 parent: 2 type: Transform - - uid: 10521 + - uid: 10527 components: - pos: -28.5,-51.5 parent: 2 type: Transform - - uid: 10522 + - uid: 10528 components: - pos: -29.5,-51.5 parent: 2 type: Transform - - uid: 10523 + - uid: 10529 components: - pos: -25.5,-41.5 parent: 2 type: Transform - - uid: 10524 + - uid: 10530 components: - pos: -25.5,-42.5 parent: 2 type: Transform - - uid: 10525 + - uid: 10531 components: - pos: -25.5,-43.5 parent: 2 type: Transform - - uid: 10526 + - uid: 10532 components: - pos: -25.5,-44.5 parent: 2 type: Transform - - uid: 10527 + - uid: 10533 components: - pos: -25.5,-45.5 parent: 2 type: Transform - - uid: 10528 + - uid: 10534 components: - pos: -25.5,-46.5 parent: 2 type: Transform - - uid: 10529 + - uid: 10535 components: - pos: -26.5,-46.5 parent: 2 type: Transform - - uid: 10530 + - uid: 10536 components: - pos: -25.5,-47.5 parent: 2 type: Transform - - uid: 10531 + - uid: 10537 components: - pos: -25.5,-47.5 parent: 2 type: Transform - - uid: 10532 + - uid: 10538 components: - pos: -26.5,-47.5 parent: 2 type: Transform - - uid: 10533 + - uid: 10539 components: - pos: -26.5,-39.5 parent: 2 type: Transform - - uid: 10534 + - uid: 10540 components: - pos: -26.5,-40.5 parent: 2 type: Transform - - uid: 10535 + - uid: 10541 components: - pos: -25.5,-40.5 parent: 2 type: Transform - - uid: 10536 + - uid: 10542 components: - pos: -25.5,-39.5 parent: 2 type: Transform - - uid: 10537 + - uid: 10543 components: - pos: -56.5,-68.5 parent: 2 type: Transform - - uid: 10538 + - uid: 10544 components: - pos: -55.5,-68.5 parent: 2 type: Transform - - uid: 10539 + - uid: 10545 components: - pos: -54.5,-68.5 parent: 2 type: Transform - - uid: 10540 + - uid: 10546 components: - pos: -53.5,-68.5 parent: 2 type: Transform - - uid: 10541 + - uid: 10547 components: - pos: -52.5,-68.5 parent: 2 type: Transform - - uid: 10542 + - uid: 10548 components: - pos: -52.5,-67.5 parent: 2 type: Transform - - uid: 10543 + - uid: 10549 components: - pos: -53.5,-67.5 parent: 2 type: Transform - - uid: 10544 + - uid: 10550 components: - pos: -47.5,-67.5 parent: 2 type: Transform - - uid: 10545 + - uid: 10551 components: - pos: -47.5,-66.5 parent: 2 type: Transform - - uid: 10546 + - uid: 10552 components: - pos: -47.5,-68.5 parent: 2 type: Transform - - uid: 10547 + - uid: 10553 components: - pos: -46.5,-66.5 parent: 2 type: Transform - - uid: 10548 + - uid: 10554 components: - pos: -46.5,-67.5 parent: 2 type: Transform - - uid: 10549 + - uid: 10555 components: - pos: -46.5,-68.5 parent: 2 type: Transform - - uid: 10550 + - uid: 10556 components: - pos: 46.5,-11.5 parent: 2 type: Transform - - uid: 10551 + - uid: 10557 components: - pos: 45.5,-11.5 parent: 2 type: Transform - - uid: 10552 + - uid: 10558 components: - pos: 44.5,-11.5 parent: 2 type: Transform - - uid: 10553 + - uid: 10559 components: - pos: 43.5,-11.5 parent: 2 type: Transform - - uid: 10554 + - uid: 10560 components: - pos: 42.5,-11.5 parent: 2 type: Transform - - uid: 10555 + - uid: 10561 components: - pos: 40.5,-7.5 parent: 2 type: Transform - - uid: 10556 + - uid: 10562 components: - pos: 40.5,-8.5 parent: 2 type: Transform - - uid: 10557 + - uid: 10563 components: - pos: 40.5,-9.5 parent: 2 type: Transform - - uid: 10558 + - uid: 10564 components: - pos: 40.5,-10.5 parent: 2 type: Transform - - uid: 10559 + - uid: 10565 components: - pos: 40.5,-11.5 parent: 2 type: Transform - - uid: 10560 + - uid: 10566 components: - pos: 30.5,-8.5 parent: 2 type: Transform - - uid: 10561 + - uid: 10567 components: - pos: 31.5,-8.5 parent: 2 type: Transform - - uid: 10562 + - uid: 10568 components: - pos: 33.5,-8.5 parent: 2 type: Transform - - uid: 10563 + - uid: 10569 components: - pos: 34.5,-8.5 parent: 2 type: Transform - - uid: 10564 + - uid: 10570 components: - pos: 35.5,-8.5 parent: 2 type: Transform - - uid: 10565 + - uid: 10571 components: - pos: 30.5,-13.5 parent: 2 type: Transform - - uid: 10566 + - uid: 10572 components: - pos: 37.5,-8.5 parent: 2 type: Transform - - uid: 10567 + - uid: 10573 components: - pos: -46.5,-42.5 parent: 2 type: Transform - - uid: 10568 + - uid: 10574 components: - pos: -20.5,-52.5 parent: 2 type: Transform - - uid: 10569 + - uid: 10575 components: - pos: -37.5,-20.5 parent: 2 type: Transform - - uid: 10570 + - uid: 10576 components: - pos: -37.5,-21.5 parent: 2 type: Transform - - uid: 10571 + - uid: 10577 components: - pos: -37.5,-22.5 parent: 2 type: Transform - - uid: 10572 + - uid: 10578 components: - pos: -37.5,-23.5 parent: 2 type: Transform - - uid: 10573 + - uid: 10579 components: - pos: -37.5,-24.5 parent: 2 type: Transform - - uid: 10574 + - uid: 10580 components: - pos: -43.5,-26.5 parent: 2 type: Transform - - uid: 10575 + - uid: 10581 components: - pos: -42.5,-26.5 parent: 2 type: Transform - - uid: 10576 + - uid: 10582 components: - pos: -41.5,-26.5 parent: 2 type: Transform - - uid: 10577 + - uid: 10583 components: - pos: -40.5,-26.5 parent: 2 type: Transform - - uid: 10578 + - uid: 10584 components: - pos: -39.5,-26.5 parent: 2 type: Transform - - uid: 10579 + - uid: 10585 components: - pos: -38.5,-26.5 parent: 2 type: Transform - - uid: 10580 + - uid: 10586 components: - pos: -48.5,-27.5 parent: 2 type: Transform - - uid: 10581 + - uid: 10587 components: - pos: -48.5,-28.5 parent: 2 type: Transform - - uid: 10582 + - uid: 10588 components: - pos: -48.5,-29.5 parent: 2 type: Transform - - uid: 10583 + - uid: 10589 components: - pos: -48.5,-30.5 parent: 2 type: Transform - - uid: 10584 + - uid: 10590 components: - pos: -48.5,-31.5 parent: 2 type: Transform - - uid: 10585 + - uid: 10591 components: - pos: -48.5,-32.5 parent: 2 type: Transform - - uid: 10586 + - uid: 10592 components: - pos: -49.5,-32.5 parent: 2 type: Transform - - uid: 10587 + - uid: 10593 components: - pos: -50.5,-32.5 parent: 2 type: Transform - - uid: 10588 + - uid: 10594 components: - pos: -51.5,-32.5 parent: 2 type: Transform - - uid: 10589 + - uid: 10595 components: - pos: -52.5,-32.5 parent: 2 type: Transform - - uid: 10590 + - uid: 10596 components: - pos: 69.5,3.5 parent: 2 type: Transform - - uid: 10591 + - uid: 10597 components: - pos: -2.5,29.5 parent: 2 type: Transform - - uid: 10592 + - uid: 10598 components: - rot: 3.141592653589793 rad pos: 14.5,32.5 parent: 2 type: Transform - - uid: 10593 + - uid: 10599 components: - rot: 3.141592653589793 rad pos: 13.5,32.5 parent: 2 type: Transform - - uid: 10594 + - uid: 10600 components: - rot: 3.141592653589793 rad pos: 2.5,32.5 parent: 2 type: Transform - - uid: 10595 + - uid: 10601 components: - rot: 3.141592653589793 rad pos: 19.5,25.5 parent: 2 type: Transform - - uid: 10596 + - uid: 10602 components: - rot: 3.141592653589793 rad pos: 18.5,25.5 parent: 2 type: Transform - - uid: 10597 + - uid: 10603 components: - rot: 3.141592653589793 rad pos: 17.5,25.5 parent: 2 type: Transform - - uid: 10598 + - uid: 10604 components: - rot: 3.141592653589793 rad pos: 16.5,25.5 parent: 2 type: Transform - - uid: 10599 + - uid: 10605 components: - rot: 3.141592653589793 rad pos: 15.5,25.5 parent: 2 type: Transform - - uid: 10600 + - uid: 10606 components: - rot: 3.141592653589793 rad pos: 14.5,25.5 parent: 2 type: Transform - - uid: 10601 + - uid: 10607 components: - rot: 3.141592653589793 rad pos: 13.5,25.5 parent: 2 type: Transform - - uid: 10602 + - uid: 10608 components: - rot: 3.141592653589793 rad pos: 16.5,27.5 parent: 2 type: Transform - - uid: 10603 + - uid: 10609 components: - rot: 3.141592653589793 rad pos: 16.5,26.5 parent: 2 type: Transform - - uid: 10604 + - uid: 10610 components: - rot: 3.141592653589793 rad pos: 9.5,24.5 parent: 2 type: Transform - - uid: 10605 + - uid: 10611 components: - rot: 3.141592653589793 rad pos: 8.5,24.5 parent: 2 type: Transform - - uid: 10606 + - uid: 10612 components: - rot: 3.141592653589793 rad pos: 7.5,24.5 parent: 2 type: Transform - - uid: 10607 + - uid: 10613 components: - rot: 3.141592653589793 rad pos: 6.5,24.5 parent: 2 type: Transform - - uid: 10608 + - uid: 10614 components: - rot: 3.141592653589793 rad pos: 5.5,24.5 parent: 2 type: Transform - - uid: 10609 + - uid: 10615 components: - rot: 3.141592653589793 rad pos: 4.5,24.5 parent: 2 type: Transform - - uid: 10610 + - uid: 10616 components: - rot: 3.141592653589793 rad pos: 3.5,24.5 parent: 2 type: Transform - - uid: 10611 + - uid: 10617 components: - rot: 3.141592653589793 rad pos: 2.5,24.5 parent: 2 type: Transform - - uid: 10612 + - uid: 10618 components: - rot: 3.141592653589793 rad pos: 1.5,24.5 parent: 2 type: Transform - - uid: 10613 + - uid: 10619 components: - rot: 3.141592653589793 rad pos: 0.5,24.5 parent: 2 type: Transform - - uid: 10614 + - uid: 10620 components: - rot: 3.141592653589793 rad pos: -3.5,23.5 parent: 2 type: Transform - - uid: 10615 + - uid: 10621 components: - rot: 3.141592653589793 rad pos: -4.5,23.5 parent: 2 type: Transform - - uid: 10616 + - uid: 10622 components: - rot: 3.141592653589793 rad pos: -5.5,23.5 parent: 2 type: Transform - - uid: 10617 + - uid: 10623 components: - rot: 3.141592653589793 rad pos: -6.5,23.5 parent: 2 type: Transform - - uid: 10618 + - uid: 10624 components: - rot: 3.141592653589793 rad pos: -7.5,23.5 parent: 2 type: Transform - - uid: 10619 + - uid: 10625 components: - pos: -6.5,18.5 parent: 2 type: Transform - - uid: 10620 + - uid: 10626 components: - pos: -7.5,18.5 parent: 2 type: Transform - - uid: 10621 + - uid: 10627 components: - pos: -8.5,18.5 parent: 2 type: Transform - - uid: 10622 + - uid: 10628 components: - pos: -9.5,18.5 parent: 2 type: Transform - - uid: 10623 + - uid: 10629 components: - pos: -10.5,18.5 parent: 2 type: Transform - - uid: 10624 + - uid: 10630 components: - pos: -11.5,18.5 parent: 2 type: Transform - - uid: 10625 + - uid: 10631 components: - pos: -11.5,15.5 parent: 2 type: Transform - - uid: 10626 + - uid: 10632 components: - pos: -6.5,14.5 parent: 2 type: Transform - - uid: 10627 + - uid: 10633 components: - pos: -5.5,14.5 parent: 2 type: Transform - - uid: 10628 + - uid: 10634 components: - pos: -4.5,14.5 parent: 2 type: Transform - - uid: 10629 + - uid: 10635 components: - pos: -3.5,14.5 parent: 2 type: Transform - - uid: 10630 + - uid: 10636 components: - pos: -6.5,13.5 parent: 2 type: Transform - - uid: 10631 + - uid: 10637 components: - pos: -7.5,13.5 parent: 2 type: Transform - - uid: 10632 + - uid: 10638 components: - pos: -12.5,24.5 parent: 2 type: Transform - - uid: 10633 + - uid: 10639 components: - rot: -1.5707963267948966 rad pos: 65.5,-24.5 parent: 2 type: Transform - - uid: 10634 + - uid: 10640 components: - rot: -1.5707963267948966 rad pos: 65.5,-23.5 parent: 2 type: Transform - - uid: 10635 + - uid: 10641 components: - rot: -1.5707963267948966 rad pos: 65.5,-22.5 parent: 2 type: Transform - - uid: 10636 + - uid: 10642 components: - rot: -1.5707963267948966 rad pos: 65.5,-21.5 parent: 2 type: Transform - - uid: 10637 + - uid: 10643 components: - pos: 67.5,-18.5 parent: 2 type: Transform - - uid: 10638 + - uid: 10644 components: - pos: -45.5,46.5 parent: 2 type: Transform - - uid: 10639 + - uid: 10645 components: - pos: -45.5,47.5 parent: 2 type: Transform - - uid: 10640 + - uid: 10646 components: - pos: -45.5,48.5 parent: 2 type: Transform - - uid: 10641 + - uid: 10647 components: - pos: -45.5,49.5 parent: 2 type: Transform - - uid: 10642 + - uid: 10648 components: - rot: -1.5707963267948966 rad pos: -41.5,46.5 parent: 2 type: Transform - - uid: 10643 + - uid: 10649 components: - rot: -1.5707963267948966 rad pos: -42.5,46.5 parent: 2 type: Transform - - uid: 10644 + - uid: 10650 components: - rot: -1.5707963267948966 rad pos: -43.5,46.5 parent: 2 type: Transform - - uid: 10645 + - uid: 10651 components: - rot: -1.5707963267948966 rad pos: -44.5,46.5 parent: 2 type: Transform - - uid: 10646 + - uid: 10652 components: - pos: -40.5,45.5 parent: 2 type: Transform - - uid: 10647 + - uid: 10653 components: - pos: -39.5,45.5 parent: 2 type: Transform - - uid: 10648 + - uid: 10654 components: - pos: -38.5,45.5 parent: 2 type: Transform - - uid: 10649 + - uid: 10655 components: - pos: -40.5,46.5 parent: 2 type: Transform - - uid: 10650 + - uid: 10656 components: - pos: -40.5,47.5 parent: 2 type: Transform - - uid: 10651 + - uid: 10657 components: - pos: -40.5,48.5 parent: 2 type: Transform - - uid: 10652 + - uid: 10658 components: - pos: -40.5,49.5 parent: 2 type: Transform - - uid: 10653 + - uid: 10659 components: - pos: -40.5,50.5 parent: 2 type: Transform - - uid: 10654 + - uid: 10660 components: - pos: -40.5,51.5 parent: 2 type: Transform - - uid: 10655 + - uid: 10661 components: - pos: -40.5,52.5 parent: 2 type: Transform - - uid: 10656 + - uid: 10662 components: - pos: -40.5,53.5 parent: 2 type: Transform - - uid: 10657 + - uid: 10663 components: - pos: -48.5,53.5 parent: 2 type: Transform - - uid: 10658 + - uid: 10664 components: - pos: -47.5,53.5 parent: 2 type: Transform - - uid: 10659 + - uid: 10665 components: - pos: -46.5,53.5 parent: 2 type: Transform - - uid: 10660 + - uid: 10666 components: - pos: -45.5,53.5 parent: 2 type: Transform - - uid: 10661 + - uid: 10667 components: - pos: -44.5,53.5 parent: 2 type: Transform - - uid: 10662 + - uid: 10668 components: - pos: -43.5,53.5 parent: 2 type: Transform - - uid: 10663 + - uid: 10669 components: - pos: -42.5,53.5 parent: 2 type: Transform - - uid: 10664 + - uid: 10670 components: - pos: -41.5,53.5 parent: 2 type: Transform - - uid: 10665 + - uid: 10671 components: - pos: -40.5,53.5 parent: 2 type: Transform - - uid: 10666 + - uid: 10672 components: - pos: -39.5,53.5 parent: 2 type: Transform - - uid: 10667 + - uid: 10673 components: - pos: -49.5,0.5 parent: 2 type: Transform - - uid: 10668 + - uid: 10674 components: - pos: -49.5,-0.5 parent: 2 type: Transform - - uid: 10669 + - uid: 10675 components: - pos: -49.5,-1.5 parent: 2 type: Transform - - uid: 10670 + - uid: 10676 components: - pos: -49.5,-2.5 parent: 2 type: Transform - - uid: 10671 + - uid: 10677 components: - pos: -49.5,-3.5 parent: 2 type: Transform - - uid: 10672 + - uid: 10678 components: - pos: -50.5,-3.5 parent: 2 type: Transform - - uid: 10673 + - uid: 10679 components: - pos: -51.5,-3.5 parent: 2 type: Transform - - uid: 10674 + - uid: 10680 components: - pos: -51.5,-2.5 parent: 2 type: Transform - - uid: 10675 + - uid: 10681 components: - pos: -51.5,-1.5 parent: 2 type: Transform - - uid: 10676 + - uid: 10682 components: - pos: -51.5,-0.5 parent: 2 type: Transform - - uid: 10677 + - uid: 10683 components: - pos: -51.5,0.5 parent: 2 type: Transform - - uid: 10678 + - uid: 10684 components: - pos: -51.5,1.5 parent: 2 type: Transform - - uid: 10679 + - uid: 10685 components: - pos: -41.5,-2.5 parent: 2 type: Transform - - uid: 10680 + - uid: 10686 components: - pos: -40.5,-2.5 parent: 2 type: Transform - - uid: 10681 + - uid: 10687 components: - pos: -39.5,-2.5 parent: 2 type: Transform - - uid: 10682 + - uid: 10688 components: - pos: -38.5,-2.5 parent: 2 type: Transform - - uid: 10683 + - uid: 10689 components: - pos: -37.5,-2.5 parent: 2 type: Transform - - uid: 10684 + - uid: 10690 components: - pos: -36.5,-2.5 parent: 2 type: Transform - - uid: 10685 + - uid: 10691 components: - rot: -1.5707963267948966 rad pos: -38.5,53.5 parent: 2 type: Transform - - uid: 10686 + - uid: 10692 components: - rot: -1.5707963267948966 rad pos: -37.5,53.5 parent: 2 type: Transform - - uid: 10687 + - uid: 10693 components: - rot: -1.5707963267948966 rad pos: -36.5,53.5 parent: 2 type: Transform - - uid: 10688 + - uid: 10694 components: - rot: -1.5707963267948966 rad pos: -35.5,53.5 parent: 2 type: Transform - - uid: 10689 + - uid: 10695 components: - rot: -1.5707963267948966 rad pos: -34.5,53.5 parent: 2 type: Transform - - uid: 10690 + - uid: 10696 components: - rot: -1.5707963267948966 rad pos: -33.5,53.5 parent: 2 type: Transform - - uid: 10691 + - uid: 10697 components: - rot: -1.5707963267948966 rad pos: -33.5,54.5 parent: 2 type: Transform - - uid: 10692 + - uid: 10698 components: - rot: -1.5707963267948966 rad pos: -33.5,55.5 parent: 2 type: Transform - - uid: 10693 + - uid: 10699 components: - rot: -1.5707963267948966 rad pos: -33.5,56.5 parent: 2 type: Transform - - uid: 10694 + - uid: 10700 components: - rot: -1.5707963267948966 rad pos: -33.5,57.5 parent: 2 type: Transform - - uid: 10695 + - uid: 10701 components: - rot: -1.5707963267948966 rad pos: -33.5,58.5 parent: 2 type: Transform - - uid: 10696 + - uid: 10702 components: - rot: -1.5707963267948966 rad pos: -33.5,59.5 parent: 2 type: Transform - - uid: 10697 + - uid: 10703 components: - rot: -1.5707963267948966 rad pos: -33.5,60.5 parent: 2 type: Transform - - uid: 10698 + - uid: 10704 components: - rot: -1.5707963267948966 rad pos: -33.5,61.5 parent: 2 type: Transform - - uid: 10699 + - uid: 10705 components: - rot: -1.5707963267948966 rad pos: -33.5,62.5 parent: 2 type: Transform - - uid: 10700 + - uid: 10706 components: - rot: -1.5707963267948966 rad pos: -33.5,63.5 parent: 2 type: Transform - - uid: 10701 + - uid: 10707 components: - rot: -1.5707963267948966 rad pos: -33.5,64.5 parent: 2 type: Transform - - uid: 10702 + - uid: 10708 components: - rot: -1.5707963267948966 rad pos: -33.5,65.5 parent: 2 type: Transform - - uid: 10703 + - uid: 10709 components: - rot: -1.5707963267948966 rad pos: -33.5,66.5 parent: 2 type: Transform - - uid: 10704 + - uid: 10710 components: - rot: -1.5707963267948966 rad pos: -33.5,67.5 parent: 2 type: Transform - - uid: 10705 + - uid: 10711 components: - rot: -1.5707963267948966 rad pos: -33.5,68.5 parent: 2 type: Transform - - uid: 10706 + - uid: 10712 components: - rot: -1.5707963267948966 rad pos: -33.5,69.5 parent: 2 type: Transform - - uid: 10707 + - uid: 10713 components: - rot: -1.5707963267948966 rad pos: -33.5,70.5 parent: 2 type: Transform - - uid: 10708 + - uid: 10714 components: - rot: -1.5707963267948966 rad pos: -33.5,71.5 parent: 2 type: Transform - - uid: 10709 + - uid: 10715 components: - rot: -1.5707963267948966 rad pos: -33.5,72.5 parent: 2 type: Transform - - uid: 10710 + - uid: 10716 components: - rot: -1.5707963267948966 rad pos: -34.5,72.5 parent: 2 type: Transform - - uid: 10711 + - uid: 10717 components: - rot: -1.5707963267948966 rad pos: -35.5,72.5 parent: 2 type: Transform - - uid: 10712 + - uid: 10718 components: - rot: -1.5707963267948966 rad pos: -36.5,72.5 parent: 2 type: Transform - - uid: 10713 + - uid: 10719 components: - rot: -1.5707963267948966 rad pos: -37.5,72.5 parent: 2 type: Transform - - uid: 10714 + - uid: 10720 components: - rot: -1.5707963267948966 rad pos: -38.5,72.5 parent: 2 type: Transform - - uid: 10715 + - uid: 10721 components: - rot: -1.5707963267948966 rad pos: -39.5,72.5 parent: 2 type: Transform - - uid: 10716 + - uid: 10722 components: - rot: -1.5707963267948966 rad pos: -40.5,72.5 parent: 2 type: Transform - - uid: 10717 + - uid: 10723 components: - rot: -1.5707963267948966 rad pos: -41.5,72.5 parent: 2 type: Transform - - uid: 10718 + - uid: 10724 components: - rot: -1.5707963267948966 rad pos: -42.5,72.5 parent: 2 type: Transform - - uid: 10719 + - uid: 10725 components: - rot: -1.5707963267948966 rad pos: -43.5,72.5 parent: 2 type: Transform - - uid: 10720 + - uid: 10726 components: - rot: -1.5707963267948966 rad pos: -44.5,72.5 parent: 2 type: Transform - - uid: 10721 + - uid: 10727 components: - rot: -1.5707963267948966 rad pos: -45.5,72.5 parent: 2 type: Transform - - uid: 10722 + - uid: 10728 components: - rot: -1.5707963267948966 rad pos: -46.5,72.5 parent: 2 type: Transform - - uid: 10723 + - uid: 10729 components: - rot: -1.5707963267948966 rad pos: -47.5,72.5 parent: 2 type: Transform - - uid: 10724 + - uid: 10730 components: - rot: -1.5707963267948966 rad pos: -48.5,72.5 parent: 2 type: Transform - - uid: 10725 + - uid: 10731 components: - rot: -1.5707963267948966 rad pos: -49.5,72.5 parent: 2 type: Transform - - uid: 10726 + - uid: 10732 components: - rot: -1.5707963267948966 rad pos: -50.5,72.5 parent: 2 type: Transform - - uid: 10727 + - uid: 10733 components: - rot: -1.5707963267948966 rad pos: -51.5,72.5 parent: 2 type: Transform - - uid: 10728 + - uid: 10734 components: - rot: -1.5707963267948966 rad pos: -52.5,72.5 parent: 2 type: Transform - - uid: 10729 + - uid: 10735 components: - rot: -1.5707963267948966 rad pos: -53.5,72.5 parent: 2 type: Transform - - uid: 10730 + - uid: 10736 components: - rot: -1.5707963267948966 rad pos: -54.5,72.5 parent: 2 type: Transform - - uid: 10731 + - uid: 10737 components: - rot: -1.5707963267948966 rad pos: -55.5,72.5 parent: 2 type: Transform - - uid: 10732 + - uid: 10738 components: - rot: -1.5707963267948966 rad pos: -56.5,72.5 parent: 2 type: Transform - - uid: 10733 + - uid: 10739 components: - rot: -1.5707963267948966 rad pos: -57.5,72.5 parent: 2 type: Transform - - uid: 10734 + - uid: 10740 components: - rot: -1.5707963267948966 rad pos: -58.5,72.5 parent: 2 type: Transform - - uid: 10735 + - uid: 10741 components: - rot: -1.5707963267948966 rad pos: -59.5,72.5 parent: 2 type: Transform - - uid: 10736 + - uid: 10742 components: - rot: -1.5707963267948966 rad pos: -60.5,72.5 parent: 2 type: Transform - - uid: 10737 + - uid: 10743 components: - rot: -1.5707963267948966 rad pos: -61.5,72.5 parent: 2 type: Transform - - uid: 10738 + - uid: 10744 components: - rot: -1.5707963267948966 rad pos: -61.5,71.5 parent: 2 type: Transform - - uid: 10739 + - uid: 10745 components: - rot: -1.5707963267948966 rad pos: -61.5,70.5 parent: 2 type: Transform - - uid: 10740 + - uid: 10746 components: - rot: -1.5707963267948966 rad pos: -61.5,69.5 parent: 2 type: Transform - - uid: 10741 + - uid: 10747 components: - rot: -1.5707963267948966 rad pos: -61.5,68.5 parent: 2 type: Transform - - uid: 10742 + - uid: 10748 components: - rot: -1.5707963267948966 rad pos: -61.5,67.5 parent: 2 type: Transform - - uid: 10743 + - uid: 10749 components: - rot: -1.5707963267948966 rad pos: -61.5,66.5 parent: 2 type: Transform - - uid: 10744 + - uid: 10750 components: - rot: -1.5707963267948966 rad pos: -61.5,65.5 parent: 2 type: Transform - - uid: 10745 + - uid: 10751 components: - rot: -1.5707963267948966 rad pos: -61.5,64.5 parent: 2 type: Transform - - uid: 10746 + - uid: 10752 components: - rot: -1.5707963267948966 rad pos: -61.5,63.5 parent: 2 type: Transform - - uid: 10747 + - uid: 10753 components: - rot: -1.5707963267948966 rad pos: -61.5,62.5 parent: 2 type: Transform - - uid: 10748 + - uid: 10754 components: - rot: -1.5707963267948966 rad pos: -61.5,61.5 parent: 2 type: Transform - - uid: 10749 + - uid: 10755 components: - rot: -1.5707963267948966 rad pos: -61.5,60.5 parent: 2 type: Transform - - uid: 10750 + - uid: 10756 components: - rot: -1.5707963267948966 rad pos: -61.5,59.5 parent: 2 type: Transform - - uid: 10751 + - uid: 10757 components: - rot: -1.5707963267948966 rad pos: -61.5,58.5 parent: 2 type: Transform - - uid: 10752 + - uid: 10758 components: - rot: -1.5707963267948966 rad pos: -61.5,57.5 parent: 2 type: Transform - - uid: 10753 + - uid: 10759 components: - rot: -1.5707963267948966 rad pos: -61.5,56.5 parent: 2 type: Transform - - uid: 10754 + - uid: 10760 components: - rot: 1.5707963267948966 rad pos: -53.5,53.5 parent: 2 type: Transform - - uid: 10755 + - uid: 10761 components: - rot: 1.5707963267948966 rad pos: -53.5,54.5 parent: 2 type: Transform - - uid: 10756 + - uid: 10762 components: - rot: 1.5707963267948966 rad pos: -53.5,55.5 parent: 2 type: Transform - - uid: 10757 + - uid: 10763 components: - rot: 1.5707963267948966 rad pos: -54.5,56.5 parent: 2 type: Transform - - uid: 10758 + - uid: 10764 components: - rot: 1.5707963267948966 rad pos: -56.5,56.5 parent: 2 type: Transform - - uid: 10759 + - uid: 10765 components: - rot: 1.5707963267948966 rad pos: -58.5,56.5 parent: 2 type: Transform - - uid: 10760 + - uid: 10766 components: - rot: 1.5707963267948966 rad pos: -60.5,56.5 parent: 2 type: Transform - - uid: 10761 + - uid: 10767 components: - rot: -1.5707963267948966 rad pos: -52.5,53.5 parent: 2 type: Transform - - uid: 10762 + - uid: 10768 components: - rot: -1.5707963267948966 rad pos: -51.5,53.5 parent: 2 type: Transform - - uid: 10763 + - uid: 10769 components: - rot: -1.5707963267948966 rad pos: -50.5,53.5 parent: 2 type: Transform - - uid: 10764 + - uid: 10770 components: - rot: -1.5707963267948966 rad pos: -49.5,53.5 parent: 2 type: Transform - - uid: 10765 + - uid: 10771 components: - pos: 12.5,-92.5 parent: 2 type: Transform - - uid: 10766 + - uid: 10772 components: - pos: 11.5,-99.5 parent: 2 type: Transform - - uid: 10767 + - uid: 10773 components: - rot: 3.141592653589793 rad pos: 1.5,-71.5 parent: 2 type: Transform - - uid: 10768 + - uid: 10774 components: - rot: 3.141592653589793 rad pos: 2.5,-67.5 parent: 2 type: Transform - - uid: 10769 + - uid: 10775 components: - rot: 3.141592653589793 rad pos: 3.5,-71.5 parent: 2 type: Transform - - uid: 10770 + - uid: 10776 components: - rot: 3.141592653589793 rad pos: 4.5,-71.5 parent: 2 type: Transform - - uid: 10771 + - uid: 10777 components: - rot: 3.141592653589793 rad pos: 2.5,-68.5 parent: 2 type: Transform - - uid: 10772 + - uid: 10778 components: - rot: -1.5707963267948966 rad pos: -79.5,-25.5 parent: 2 type: Transform - - uid: 10773 + - uid: 10779 components: - rot: -1.5707963267948966 rad pos: -79.5,-24.5 parent: 2 type: Transform - - uid: 10774 + - uid: 10780 components: - rot: -1.5707963267948966 rad pos: -79.5,-23.5 parent: 2 type: Transform - - uid: 10775 + - uid: 10781 components: - rot: -1.5707963267948966 rad pos: -79.5,-21.5 parent: 2 type: Transform - - uid: 10776 + - uid: 10782 components: - rot: -1.5707963267948966 rad pos: -79.5,-20.5 parent: 2 type: Transform - - uid: 10777 + - uid: 10783 components: - rot: -1.5707963267948966 rad pos: -79.5,-18.5 parent: 2 type: Transform - - uid: 10778 + - uid: 10784 components: - rot: -1.5707963267948966 rad pos: -79.5,-17.5 parent: 2 type: Transform - - uid: 10779 + - uid: 10785 components: - rot: -1.5707963267948966 rad pos: -79.5,-16.5 parent: 2 type: Transform - - uid: 10780 + - uid: 10786 components: - rot: -1.5707963267948966 rad pos: -79.5,-14.5 parent: 2 type: Transform - - uid: 10781 + - uid: 10787 components: - rot: -1.5707963267948966 rad pos: -79.5,-12.5 parent: 2 type: Transform - - uid: 10782 + - uid: 10788 components: - rot: -1.5707963267948966 rad pos: -79.5,-13.5 parent: 2 type: Transform - - uid: 10783 + - uid: 10789 components: - pos: -13.5,-8.5 parent: 2 type: Transform - - uid: 10784 + - uid: 10790 components: - rot: 3.141592653589793 rad pos: 23.5,-89.5 parent: 2 type: Transform - - uid: 10785 + - uid: 10791 components: - pos: 36.5,23.5 parent: 2 type: Transform - - uid: 10786 + - uid: 10792 components: - pos: 37.5,23.5 parent: 2 type: Transform - - uid: 10787 + - uid: 10793 components: - pos: 38.5,23.5 parent: 2 type: Transform - - uid: 10788 + - uid: 10794 components: - pos: 39.5,23.5 parent: 2 type: Transform - - uid: 10789 + - uid: 10795 components: - pos: 40.5,23.5 parent: 2 type: Transform - - uid: 10790 + - uid: 10796 components: - pos: 41.5,23.5 parent: 2 type: Transform - - uid: 10791 + - uid: 10797 components: - pos: 42.5,23.5 parent: 2 type: Transform - - uid: 10792 + - uid: 10798 components: - pos: 35.5,23.5 parent: 2 type: Transform - - uid: 10793 + - uid: 10799 components: - pos: 43.5,23.5 parent: 2 type: Transform - - uid: 10794 + - uid: 10800 components: - pos: 46.5,26.5 parent: 2 type: Transform - - uid: 10795 + - uid: 10801 components: - pos: 47.5,26.5 parent: 2 type: Transform - - uid: 10796 + - uid: 10802 components: - pos: 48.5,26.5 parent: 2 type: Transform - - uid: 10797 + - uid: 10803 components: - pos: 11.5,-97.5 parent: 2 type: Transform - - uid: 10798 + - uid: 10804 components: - pos: 11.5,-93.5 parent: 2 type: Transform - - uid: 10799 + - uid: 10805 components: - pos: 11.5,-94.5 parent: 2 type: Transform - - uid: 10800 + - uid: 10806 components: - pos: 11.5,-95.5 parent: 2 type: Transform - - uid: 10801 + - uid: 10807 components: - pos: 11.5,-98.5 parent: 2 type: Transform - - uid: 10802 + - uid: 10808 components: - pos: 11.5,-96.5 parent: 2 type: Transform - - uid: 10803 + - uid: 10809 components: - pos: 11.5,-104.5 parent: 2 type: Transform - - uid: 10804 + - uid: 10810 components: - pos: 11.5,-103.5 parent: 2 type: Transform - - uid: 10805 + - uid: 10811 components: - pos: 11.5,-102.5 parent: 2 type: Transform - - uid: 10806 + - uid: 10812 components: - pos: 11.5,-101.5 parent: 2 type: Transform - - uid: 10807 + - uid: 10813 components: - rot: 3.141592653589793 rad pos: 19.5,-53.5 parent: 2 type: Transform - - uid: 10808 + - uid: 10814 components: - rot: 3.141592653589793 rad pos: 18.5,-53.5 parent: 2 type: Transform - - uid: 10809 + - uid: 10815 components: - rot: 3.141592653589793 rad pos: 22.5,-53.5 parent: 2 type: Transform - - uid: 10810 + - uid: 10816 components: - pos: -79.5,-27.5 parent: 2 type: Transform - - uid: 10811 + - uid: 10817 components: - pos: -79.5,-28.5 parent: 2 type: Transform - - uid: 10812 + - uid: 10818 components: - pos: -79.5,-29.5 parent: 2 type: Transform - - uid: 10813 + - uid: 10819 components: - pos: -79.5,-30.5 parent: 2 type: Transform - - uid: 10814 + - uid: 10820 components: - pos: -79.5,-31.5 parent: 2 type: Transform - - uid: 10815 + - uid: 10821 components: - pos: -78.5,-31.5 parent: 2 type: Transform - - uid: 10816 + - uid: 10822 components: - pos: -78.5,-32.5 parent: 2 type: Transform - - uid: 10817 + - uid: 10823 components: - pos: -78.5,-33.5 parent: 2 type: Transform - - uid: 10818 + - uid: 10824 components: - pos: -77.5,-33.5 parent: 2 type: Transform - - uid: 10819 + - uid: 10825 components: - pos: -76.5,-33.5 parent: 2 type: Transform - - uid: 10820 + - uid: 10826 components: - pos: -76.5,-34.5 parent: 2 type: Transform - - uid: 10821 + - uid: 10827 components: - pos: -76.5,-35.5 parent: 2 type: Transform - - uid: 10822 + - uid: 10828 components: - pos: -61.5,-36.5 parent: 2 type: Transform - - uid: 10823 + - uid: 10829 components: - pos: -61.5,-37.5 parent: 2 type: Transform - - uid: 10824 + - uid: 10830 components: - pos: -61.5,-38.5 parent: 2 type: Transform - - uid: 10825 + - uid: 10831 components: - pos: -61.5,-39.5 parent: 2 type: Transform - - uid: 10826 + - uid: 10832 components: - pos: -61.5,-40.5 parent: 2 type: Transform - - uid: 10827 + - uid: 10833 components: - pos: -61.5,-41.5 parent: 2 type: Transform - - uid: 10828 + - uid: 10834 components: - pos: -61.5,-42.5 parent: 2 type: Transform - - uid: 10829 + - uid: 10835 components: - pos: -61.5,-43.5 parent: 2 type: Transform - - uid: 10830 + - uid: 10836 components: - pos: -61.5,-44.5 parent: 2 type: Transform - - uid: 10831 + - uid: 10837 components: - pos: -61.5,-45.5 parent: 2 type: Transform - - uid: 10832 + - uid: 10838 components: - pos: -61.5,-46.5 parent: 2 type: Transform - - uid: 10833 + - uid: 10839 components: - pos: -61.5,-47.5 parent: 2 type: Transform - - uid: 10834 + - uid: 10840 components: - pos: -61.5,-48.5 parent: 2 type: Transform - - uid: 10835 + - uid: 10841 components: - pos: -61.5,-49.5 parent: 2 type: Transform - - uid: 10836 + - uid: 10842 components: - pos: -61.5,-50.5 parent: 2 type: Transform - - uid: 10837 + - uid: 10843 components: - pos: -61.5,-51.5 parent: 2 type: Transform - - uid: 10838 + - uid: 10844 components: - pos: -61.5,-52.5 parent: 2 type: Transform - - uid: 10839 + - uid: 10845 components: - pos: -61.5,-53.5 parent: 2 type: Transform - - uid: 10840 + - uid: 10846 components: - pos: -61.5,-54.5 parent: 2 type: Transform - - uid: 10841 + - uid: 10847 components: - pos: -61.5,-55.5 parent: 2 type: Transform - - uid: 10842 + - uid: 10848 components: - pos: -18.5,-52.5 parent: 2 type: Transform - - uid: 10843 + - uid: 10849 components: - rot: -1.5707963267948966 rad pos: 14.5,-60.5 parent: 2 type: Transform - - uid: 10844 + - uid: 10850 components: - rot: -1.5707963267948966 rad pos: 14.5,-61.5 parent: 2 type: Transform - - uid: 10845 + - uid: 10851 components: - rot: -1.5707963267948966 rad pos: 14.5,-62.5 parent: 2 type: Transform - - uid: 10846 + - uid: 10852 components: - rot: -1.5707963267948966 rad pos: 14.5,-63.5 parent: 2 type: Transform - - uid: 10847 + - uid: 10853 components: - rot: -1.5707963267948966 rad pos: 14.5,-64.5 parent: 2 type: Transform - - uid: 10848 + - uid: 10854 components: - rot: -1.5707963267948966 rad pos: 8.5,-67.5 parent: 2 type: Transform - - uid: 10849 + - uid: 10855 components: - rot: -1.5707963267948966 rad pos: 9.5,-67.5 parent: 2 type: Transform - - uid: 10850 + - uid: 10856 components: - rot: -1.5707963267948966 rad pos: 10.5,-67.5 parent: 2 type: Transform - - uid: 10851 + - uid: 10857 components: - rot: -1.5707963267948966 rad pos: 11.5,-67.5 parent: 2 type: Transform - - uid: 10852 + - uid: 10858 components: - rot: -1.5707963267948966 rad pos: 12.5,-67.5 parent: 2 type: Transform - - uid: 10853 + - uid: 10859 components: - rot: -1.5707963267948966 rad pos: 13.5,-67.5 parent: 2 type: Transform - - uid: 10854 + - uid: 10860 components: - rot: -1.5707963267948966 rad pos: 14.5,-67.5 parent: 2 type: Transform - - uid: 10855 + - uid: 10861 components: - rot: 1.5707963267948966 rad pos: 42.5,-13.5 parent: 2 type: Transform - - uid: 10856 + - uid: 10862 components: - rot: 1.5707963267948966 rad pos: 43.5,-13.5 parent: 2 type: Transform - - uid: 10857 + - uid: 10863 components: - rot: 1.5707963267948966 rad pos: 44.5,-13.5 parent: 2 type: Transform - - uid: 10858 + - uid: 10864 components: - rot: 1.5707963267948966 rad pos: 45.5,-13.5 parent: 2 type: Transform - - uid: 10859 + - uid: 10865 components: - rot: 1.5707963267948966 rad pos: 46.5,-13.5 parent: 2 type: Transform - - uid: 10860 + - uid: 10866 components: - rot: 1.5707963267948966 rad pos: 47.5,-13.5 parent: 2 type: Transform - - uid: 10861 + - uid: 10867 components: - rot: 1.5707963267948966 rad pos: 48.5,-13.5 parent: 2 type: Transform - - uid: 10862 + - uid: 10868 components: - pos: 49.5,26.5 parent: 2 type: Transform - - uid: 10863 + - uid: 10869 components: - pos: 50.5,26.5 parent: 2 type: Transform - - uid: 10864 + - uid: 10870 components: - pos: 51.5,26.5 parent: 2 type: Transform - - uid: 10865 + - uid: 10871 components: - pos: 52.5,26.5 parent: 2 type: Transform - - uid: 10866 + - uid: 10872 components: - pos: 53.5,26.5 parent: 2 type: Transform - - uid: 10867 + - uid: 10873 components: - rot: 3.141592653589793 rad pos: 49.5,38.5 parent: 2 type: Transform - - uid: 10868 + - uid: 10874 components: - rot: 3.141592653589793 rad pos: 49.5,37.5 parent: 2 type: Transform - - uid: 10869 + - uid: 10875 components: - rot: 3.141592653589793 rad pos: 49.5,36.5 parent: 2 type: Transform - - uid: 10870 + - uid: 10876 components: - rot: 3.141592653589793 rad pos: 49.5,35.5 parent: 2 type: Transform - - uid: 10871 + - uid: 10877 components: - rot: 3.141592653589793 rad pos: 48.5,35.5 parent: 2 type: Transform - - uid: 10872 + - uid: 10878 components: - rot: 3.141592653589793 rad pos: 47.5,35.5 parent: 2 type: Transform - - uid: 10873 + - uid: 10879 components: - rot: 3.141592653589793 rad pos: 52.5,31.5 parent: 2 type: Transform - - uid: 10874 + - uid: 10880 components: - rot: 3.141592653589793 rad pos: 52.5,32.5 parent: 2 type: Transform - - uid: 10875 + - uid: 10881 components: - rot: 3.141592653589793 rad pos: 52.5,33.5 parent: 2 type: Transform - - uid: 10876 + - uid: 10882 components: - pos: 81.5,36.5 parent: 2 type: Transform - - uid: 10877 + - uid: 10883 components: - pos: 80.5,36.5 parent: 2 type: Transform - - uid: 10878 + - uid: 10884 components: - pos: 86.5,36.5 parent: 2 type: Transform - - uid: 10879 + - uid: 10885 components: - pos: 87.5,36.5 parent: 2 type: Transform - - uid: 10880 + - uid: 10886 components: - pos: 79.5,36.5 parent: 2 type: Transform - - uid: 10881 + - uid: 10887 components: - pos: 78.5,36.5 parent: 2 type: Transform - - uid: 10882 + - uid: 10888 components: - pos: 88.5,36.5 parent: 2 type: Transform - - uid: 10883 + - uid: 10889 components: - pos: 82.5,36.5 parent: 2 type: Transform - - uid: 10884 + - uid: 10890 components: - pos: -24.5,47.5 parent: 2 type: Transform - - uid: 10885 + - uid: 10891 components: - pos: -24.5,46.5 parent: 2 type: Transform - - uid: 10886 + - uid: 10892 components: - pos: -24.5,45.5 parent: 2 type: Transform - - uid: 10887 + - uid: 10893 components: - pos: -24.5,44.5 parent: 2 type: Transform - - uid: 10888 + - uid: 10894 components: - pos: -24.5,43.5 parent: 2 type: Transform - - uid: 10889 + - uid: 10895 components: - pos: -24.5,42.5 parent: 2 type: Transform - - uid: 10890 + - uid: 10896 components: - pos: -24.5,41.5 parent: 2 type: Transform - - uid: 10891 + - uid: 10897 components: - pos: -24.5,40.5 parent: 2 type: Transform - - uid: 10892 + - uid: 10898 components: - pos: -24.5,39.5 parent: 2 type: Transform - - uid: 10893 + - uid: 10899 components: - pos: -24.5,38.5 parent: 2 type: Transform - - uid: 10894 + - uid: 10900 components: - pos: -31.5,39.5 parent: 2 type: Transform - - uid: 10895 + - uid: 10901 components: - pos: -32.5,39.5 parent: 2 type: Transform - - uid: 10896 + - uid: 10902 components: - pos: -33.5,39.5 parent: 2 type: Transform - - uid: 10897 + - uid: 10903 components: - pos: -34.5,39.5 parent: 2 type: Transform - - uid: 10898 + - uid: 10904 components: - pos: -35.5,39.5 parent: 2 type: Transform - - uid: 10899 + - uid: 10905 components: - pos: -36.5,39.5 parent: 2 type: Transform - - uid: 10900 + - uid: 10906 components: - pos: -39.5,39.5 parent: 2 type: Transform - - uid: 10901 + - uid: 10907 components: - pos: -40.5,39.5 parent: 2 type: Transform - - uid: 10902 + - uid: 10908 components: - pos: -41.5,39.5 parent: 2 type: Transform - - uid: 10903 + - uid: 10909 components: - pos: -42.5,39.5 parent: 2 type: Transform - - uid: 10904 + - uid: 10910 components: - pos: -43.5,39.5 parent: 2 type: Transform - - uid: 10905 + - uid: 10911 components: - pos: -2.5,28.5 parent: 2 type: Transform - - uid: 10906 + - uid: 10912 components: - pos: -2.5,27.5 parent: 2 type: Transform - - uid: 10907 + - uid: 10913 components: - pos: -2.5,26.5 parent: 2 type: Transform - - uid: 10908 + - uid: 10914 components: - pos: -2.5,25.5 parent: 2 type: Transform - - uid: 10909 + - uid: 10915 components: - pos: -12.5,26.5 parent: 2 type: Transform - - uid: 10910 + - uid: 10916 components: - pos: -11.5,26.5 parent: 2 type: Transform - - uid: 10911 + - uid: 10917 components: - pos: -10.5,26.5 parent: 2 type: Transform - - uid: 10912 + - uid: 10918 components: - pos: -10.5,24.5 parent: 2 type: Transform - - uid: 10913 + - uid: 10919 components: - pos: -37.5,45.5 parent: 2 type: Transform - - uid: 10914 + - uid: 10920 components: - pos: -37.5,44.5 parent: 2 type: Transform - - uid: 10915 + - uid: 10921 components: - pos: -17.5,58.5 parent: 2 type: Transform - - uid: 10916 + - uid: 10922 components: - pos: -17.5,57.5 parent: 2 type: Transform - - uid: 10917 + - uid: 10923 components: - pos: -17.5,56.5 parent: 2 type: Transform - - uid: 10918 + - uid: 10924 components: - pos: -17.5,55.5 parent: 2 type: Transform - - uid: 10919 + - uid: 10925 components: - pos: -17.5,54.5 parent: 2 type: Transform - - uid: 10920 + - uid: 10926 components: - pos: -17.5,53.5 parent: 2 type: Transform - - uid: 10921 + - uid: 10927 components: - rot: 1.5707963267948966 rad pos: -11.5,24.5 parent: 2 type: Transform - - uid: 10922 + - uid: 10928 components: - rot: 3.141592653589793 rad pos: 66.5,36.5 parent: 2 type: Transform - - uid: 10923 + - uid: 10929 components: - rot: 3.141592653589793 rad pos: 65.5,36.5 parent: 2 type: Transform - - uid: 10924 + - uid: 10930 components: - rot: 3.141592653589793 rad pos: 64.5,36.5 parent: 2 type: Transform - - uid: 10925 + - uid: 10931 components: - rot: 3.141592653589793 rad pos: 63.5,36.5 parent: 2 type: Transform - - uid: 10926 + - uid: 10932 components: - rot: 3.141592653589793 rad pos: 63.5,35.5 parent: 2 type: Transform - - uid: 10927 + - uid: 10933 components: - rot: 3.141592653589793 rad pos: 63.5,34.5 parent: 2 type: Transform - - uid: 10928 + - uid: 10934 components: - rot: 3.141592653589793 rad pos: 63.5,33.5 parent: 2 type: Transform - - uid: 10929 + - uid: 10935 components: - pos: 83.5,36.5 parent: 2 type: Transform - - uid: 10930 + - uid: 10936 components: - pos: 84.5,36.5 parent: 2 type: Transform - - uid: 10931 + - uid: 10937 components: - pos: 85.5,36.5 parent: 2 type: Transform - - uid: 10932 + - uid: 10938 components: - pos: 89.5,36.5 parent: 2 type: Transform - - uid: 10933 + - uid: 10939 components: - pos: 90.5,36.5 parent: 2 type: Transform - - uid: 10934 + - uid: 10940 components: - pos: -22.5,27.5 parent: 2 type: Transform - - uid: 10935 + - uid: 10941 components: - pos: -23.5,27.5 parent: 2 type: Transform - - uid: 10936 + - uid: 10942 components: - pos: -24.5,27.5 parent: 2 type: Transform - - uid: 10937 + - uid: 10943 components: - pos: -25.5,27.5 parent: 2 type: Transform - - uid: 10938 + - uid: 10944 components: - pos: -26.5,27.5 parent: 2 type: Transform - - uid: 10939 + - uid: 10945 components: - pos: -27.5,27.5 parent: 2 type: Transform - - uid: 10940 + - uid: 10946 components: - pos: -28.5,27.5 parent: 2 type: Transform - - uid: 10941 + - uid: 10947 components: - pos: 29.5,55.5 parent: 2 type: Transform - - uid: 10942 + - uid: 10948 components: - pos: 29.5,56.5 parent: 2 type: Transform - - uid: 10943 + - uid: 10949 components: - pos: 29.5,57.5 parent: 2 type: Transform - - uid: 10944 + - uid: 10950 components: - pos: 29.5,58.5 parent: 2 type: Transform - - uid: 10945 + - uid: 10951 components: - pos: 29.5,59.5 parent: 2 type: Transform - - uid: 10946 + - uid: 10952 components: - pos: 29.5,60.5 parent: 2 type: Transform - - uid: 10947 + - uid: 10953 components: - pos: 29.5,61.5 parent: 2 type: Transform - - uid: 10948 + - uid: 10954 components: - pos: 29.5,62.5 parent: 2 type: Transform - - uid: 10949 + - uid: 10955 components: - pos: 28.5,62.5 parent: 2 type: Transform - - uid: 10950 + - uid: 10956 components: - pos: 27.5,62.5 parent: 2 type: Transform - - uid: 10951 + - uid: 10957 components: - pos: 26.5,62.5 parent: 2 type: Transform - - uid: 10952 + - uid: 10958 components: - pos: 25.5,62.5 parent: 2 type: Transform - - uid: 10953 + - uid: 10959 components: - pos: 24.5,62.5 parent: 2 type: Transform - - uid: 10954 + - uid: 10960 components: - pos: 23.5,62.5 parent: 2 type: Transform - - uid: 10955 + - uid: 10961 components: - pos: 22.5,62.5 parent: 2 type: Transform - - uid: 10956 + - uid: 10962 components: - pos: 21.5,62.5 parent: 2 type: Transform - - uid: 10957 + - uid: 10963 components: - pos: 20.5,62.5 parent: 2 type: Transform - - uid: 10958 + - uid: 10964 components: - pos: 19.5,62.5 parent: 2 type: Transform - - uid: 10959 + - uid: 10965 components: - pos: 18.5,62.5 parent: 2 type: Transform - - uid: 10960 + - uid: 10966 components: - pos: 17.5,62.5 parent: 2 type: Transform - - uid: 10961 + - uid: 10967 components: - pos: 16.5,62.5 parent: 2 type: Transform - - uid: 10962 + - uid: 10968 components: - pos: 15.5,62.5 parent: 2 type: Transform - - uid: 10963 + - uid: 10969 components: - pos: 14.5,62.5 parent: 2 type: Transform - - uid: 10964 + - uid: 10970 components: - pos: 13.5,62.5 parent: 2 type: Transform - - uid: 10965 + - uid: 10971 components: - pos: 12.5,62.5 parent: 2 type: Transform - - uid: 10966 + - uid: 10972 components: - pos: 11.5,62.5 parent: 2 type: Transform - - uid: 10967 + - uid: 10973 components: - pos: 10.5,62.5 parent: 2 type: Transform - - uid: 10968 + - uid: 10974 components: - pos: 9.5,62.5 parent: 2 type: Transform - - uid: 10969 + - uid: 10975 components: - pos: 8.5,62.5 parent: 2 type: Transform - - uid: 10970 + - uid: 10976 components: - pos: 7.5,62.5 parent: 2 type: Transform - - uid: 10971 + - uid: 10977 components: - pos: 7.5,63.5 parent: 2 type: Transform - - uid: 10972 + - uid: 10978 components: - pos: 7.5,64.5 parent: 2 type: Transform - - uid: 10973 + - uid: 10979 components: - pos: 7.5,65.5 parent: 2 type: Transform - - uid: 10974 + - uid: 10980 components: - pos: 7.5,66.5 parent: 2 type: Transform - - uid: 10975 + - uid: 10981 components: - pos: 7.5,67.5 parent: 2 type: Transform - - uid: 10976 + - uid: 10982 components: - pos: 7.5,68.5 parent: 2 type: Transform - - uid: 10977 + - uid: 10983 components: - pos: 7.5,69.5 parent: 2 type: Transform - - uid: 10978 + - uid: 10984 components: - pos: 7.5,70.5 parent: 2 type: Transform - - uid: 10979 + - uid: 10985 components: - pos: 7.5,71.5 parent: 2 type: Transform - - uid: 10980 + - uid: 10986 components: - pos: 7.5,72.5 parent: 2 type: Transform - - uid: 10981 + - uid: 10987 components: - pos: 7.5,73.5 parent: 2 type: Transform - - uid: 10982 + - uid: 10988 components: - pos: 7.5,74.5 parent: 2 type: Transform - - uid: 10983 + - uid: 10989 components: - pos: 7.5,75.5 parent: 2 type: Transform - - uid: 10984 + - uid: 10990 components: - pos: 6.5,75.5 parent: 2 type: Transform - - uid: 10985 + - uid: 10991 components: - pos: 5.5,75.5 parent: 2 type: Transform - - uid: 10986 + - uid: 10992 components: - pos: 4.5,75.5 parent: 2 type: Transform - - uid: 10987 + - uid: 10993 components: - pos: 3.5,75.5 parent: 2 type: Transform - - uid: 10988 + - uid: 10994 components: - pos: 2.5,75.5 parent: 2 type: Transform - - uid: 10989 + - uid: 10995 components: - pos: 1.5,75.5 parent: 2 type: Transform - - uid: 10990 + - uid: 10996 components: - pos: 0.5,75.5 parent: 2 type: Transform - - uid: 10991 + - uid: 10997 components: - pos: -0.5,75.5 parent: 2 type: Transform - - uid: 10992 + - uid: 10998 components: - pos: -1.5,75.5 parent: 2 type: Transform - - uid: 10993 + - uid: 10999 components: - pos: -2.5,75.5 parent: 2 type: Transform - - uid: 10994 + - uid: 11000 components: - pos: -3.5,75.5 parent: 2 type: Transform - - uid: 10995 + - uid: 11001 components: - pos: -4.5,75.5 parent: 2 type: Transform - - uid: 10996 + - uid: 11002 components: - pos: -5.5,75.5 parent: 2 type: Transform - - uid: 10997 + - uid: 11003 components: - pos: -6.5,75.5 parent: 2 type: Transform - - uid: 10998 + - uid: 11004 components: - pos: -7.5,75.5 parent: 2 type: Transform - - uid: 10999 + - uid: 11005 components: - pos: -8.5,75.5 parent: 2 type: Transform - - uid: 11000 + - uid: 11006 components: - pos: -9.5,75.5 parent: 2 type: Transform - - uid: 11001 + - uid: 11007 components: - pos: -10.5,75.5 parent: 2 type: Transform - - uid: 11002 + - uid: 11008 components: - pos: 1.5,-92.5 parent: 2 type: Transform - - uid: 11003 + - uid: 11009 components: - pos: 0.5,-92.5 parent: 2 type: Transform - - uid: 11004 + - uid: 11010 components: - pos: -0.5,-92.5 parent: 2 type: Transform - - uid: 11005 + - uid: 11011 components: - pos: -0.5,-93.5 parent: 2 type: Transform - - uid: 11006 + - uid: 11012 components: - pos: -0.5,-94.5 parent: 2 type: Transform - - uid: 11007 + - uid: 11013 components: - pos: -0.5,-95.5 parent: 2 type: Transform - - uid: 11008 + - uid: 11014 components: - pos: -0.5,-96.5 parent: 2 type: Transform - - uid: 11009 + - uid: 11015 components: - pos: -0.5,-97.5 parent: 2 type: Transform - - uid: 11010 + - uid: 11016 components: - pos: -0.5,-98.5 parent: 2 type: Transform - - uid: 11011 + - uid: 11017 components: - pos: -0.5,-99.5 parent: 2 type: Transform - - uid: 11012 + - uid: 11018 components: - pos: -0.5,-100.5 parent: 2 type: Transform - - uid: 11013 + - uid: 11019 components: - pos: -0.5,-101.5 parent: 2 type: Transform - - uid: 11014 + - uid: 11020 components: - pos: -0.5,-102.5 parent: 2 type: Transform - - uid: 11015 + - uid: 11021 components: - pos: -0.5,-103.5 parent: 2 type: Transform - - uid: 11016 + - uid: 11022 components: - pos: -0.5,-104.5 parent: 2 type: Transform - - uid: 11017 + - uid: 11023 components: - pos: -0.5,-105.5 parent: 2 type: Transform - - uid: 11018 + - uid: 11024 components: - pos: -28.5,-105.5 parent: 2 type: Transform - - uid: 11019 + - uid: 11025 components: - pos: -29.5,-105.5 parent: 2 type: Transform - - uid: 11020 + - uid: 11026 components: - pos: -30.5,-105.5 parent: 2 type: Transform - - uid: 11021 + - uid: 11027 components: - pos: -31.5,-105.5 parent: 2 type: Transform - - uid: 11022 + - uid: 11028 components: - pos: -32.5,-105.5 parent: 2 type: Transform - - uid: 11023 + - uid: 11029 components: - pos: -33.5,-105.5 parent: 2 type: Transform - - uid: 11024 + - uid: 11030 components: - pos: -34.5,-105.5 parent: 2 type: Transform - - uid: 11025 + - uid: 11031 components: - pos: -35.5,-105.5 parent: 2 type: Transform - - uid: 11026 + - uid: 11032 components: - pos: -1.5,-105.5 parent: 2 type: Transform - - uid: 11027 + - uid: 11033 components: - pos: -2.5,-105.5 parent: 2 type: Transform - - uid: 11028 + - uid: 11034 components: - pos: -3.5,-105.5 parent: 2 type: Transform - - uid: 11029 + - uid: 11035 components: - pos: -4.5,-105.5 parent: 2 type: Transform - - uid: 11030 + - uid: 11036 components: - pos: -5.5,-105.5 parent: 2 type: Transform - - uid: 11031 + - uid: 11037 components: - pos: -6.5,-105.5 parent: 2 type: Transform - - uid: 11032 + - uid: 11038 components: - pos: -7.5,-105.5 parent: 2 type: Transform - - uid: 11033 + - uid: 11039 components: - pos: -8.5,-105.5 parent: 2 type: Transform - - uid: 11034 + - uid: 11040 components: - pos: -9.5,-105.5 parent: 2 type: Transform - - uid: 11035 + - uid: 11041 components: - pos: -10.5,-105.5 parent: 2 type: Transform - - uid: 11036 + - uid: 11042 components: - pos: -11.5,-105.5 parent: 2 type: Transform - - uid: 11037 + - uid: 11043 components: - pos: -12.5,-105.5 parent: 2 type: Transform - - uid: 11038 + - uid: 11044 components: - pos: -13.5,-105.5 parent: 2 type: Transform - - uid: 11039 + - uid: 11045 components: - pos: -14.5,-105.5 parent: 2 type: Transform - - uid: 11040 + - uid: 11046 components: - pos: -15.5,-105.5 parent: 2 type: Transform - - uid: 11041 + - uid: 11047 components: - pos: -16.5,-105.5 parent: 2 type: Transform - - uid: 11042 + - uid: 11048 components: - pos: -17.5,-105.5 parent: 2 type: Transform - - uid: 11043 + - uid: 11049 components: - pos: -18.5,-105.5 parent: 2 type: Transform - - uid: 11044 + - uid: 11050 components: - pos: -19.5,-105.5 parent: 2 type: Transform - - uid: 11045 + - uid: 11051 components: - pos: -20.5,-105.5 parent: 2 type: Transform - - uid: 11046 + - uid: 11052 components: - pos: -21.5,-105.5 parent: 2 type: Transform - - uid: 11047 + - uid: 11053 components: - pos: -22.5,-105.5 parent: 2 type: Transform - - uid: 11048 + - uid: 11054 components: - pos: -23.5,-105.5 parent: 2 type: Transform - - uid: 11049 + - uid: 11055 components: - pos: -24.5,-105.5 parent: 2 type: Transform - - uid: 11050 + - uid: 11056 components: - pos: -25.5,-105.5 parent: 2 type: Transform - - uid: 11051 + - uid: 11057 components: - pos: -26.5,-105.5 parent: 2 type: Transform - - uid: 11052 + - uid: 11058 components: - pos: -27.5,-105.5 parent: 2 type: Transform - - uid: 11053 + - uid: 11059 components: - pos: -35.5,-104.5 parent: 2 type: Transform - - uid: 11054 + - uid: 11060 components: - pos: -35.5,-103.5 parent: 2 type: Transform - - uid: 11055 + - uid: 11061 components: - pos: -35.5,-102.5 parent: 2 type: Transform - - uid: 11056 + - uid: 11062 components: - pos: 67.5,-17.5 parent: 2 type: Transform - - uid: 11057 + - uid: 11063 components: - pos: -62.5,-36.5 parent: 2 type: Transform - - uid: 11058 + - uid: 11064 components: - pos: -63.5,-36.5 parent: 2 type: Transform - - uid: 11059 + - uid: 11065 components: - pos: -64.5,-36.5 parent: 2 type: Transform - - uid: 11060 + - uid: 11066 components: - pos: -65.5,-36.5 parent: 2 type: Transform - - uid: 11061 + - uid: 11067 components: - pos: -66.5,-36.5 parent: 2 type: Transform - - uid: 11062 + - uid: 11068 components: - pos: -67.5,-36.5 parent: 2 type: Transform - - uid: 11063 + - uid: 11069 components: - pos: -68.5,-36.5 parent: 2 type: Transform - - uid: 11064 + - uid: 11070 components: - pos: -69.5,-36.5 parent: 2 type: Transform - - uid: 11065 + - uid: 11071 components: - pos: -70.5,-36.5 parent: 2 type: Transform - - uid: 11066 + - uid: 11072 components: - pos: -71.5,-36.5 parent: 2 type: Transform - - uid: 11067 + - uid: 11073 components: - pos: -72.5,-36.5 parent: 2 type: Transform - - uid: 11068 + - uid: 11074 components: - pos: -73.5,-36.5 parent: 2 type: Transform - - uid: 11069 + - uid: 11075 components: - pos: -74.5,-36.5 parent: 2 type: Transform - - uid: 11070 + - uid: 11076 components: - pos: -75.5,-36.5 parent: 2 type: Transform - - uid: 11071 + - uid: 11077 components: - pos: -76.5,-36.5 parent: 2 type: Transform - - uid: 11072 + - uid: 11078 components: - pos: -69.5,-37.5 parent: 2 type: Transform - - uid: 11073 + - uid: 11079 components: - pos: -62.5,-43.5 parent: 2 type: Transform - - uid: 11074 + - uid: 11080 components: - pos: -63.5,-43.5 parent: 2 type: Transform - - uid: 11075 + - uid: 11081 components: - pos: -74.5,-37.5 parent: 2 type: Transform - - uid: 11076 + - uid: 11082 components: - pos: -74.5,-38.5 parent: 2 type: Transform - - uid: 11077 + - uid: 11083 components: - pos: -74.5,-39.5 parent: 2 type: Transform - - uid: 11078 + - uid: 11084 components: - pos: -74.5,-40.5 parent: 2 type: Transform - - uid: 11079 + - uid: 11085 components: - pos: -74.5,-41.5 parent: 2 type: Transform - - uid: 11080 + - uid: 11086 components: - pos: -74.5,-42.5 parent: 2 type: Transform - - uid: 11081 + - uid: 11087 components: - pos: -74.5,-43.5 parent: 2 type: Transform - - uid: 11082 + - uid: 11088 components: - pos: -74.5,-44.5 parent: 2 type: Transform - - uid: 11083 + - uid: 11089 components: - pos: -74.5,-45.5 parent: 2 type: Transform - - uid: 11084 + - uid: 11090 components: - pos: -74.5,-46.5 parent: 2 type: Transform - - uid: 11085 + - uid: 11091 components: - pos: -74.5,-47.5 parent: 2 type: Transform - - uid: 11086 + - uid: 11092 components: - pos: -74.5,-48.5 parent: 2 type: Transform - - uid: 11087 + - uid: 11093 components: - pos: -73.5,-48.5 parent: 2 type: Transform - - uid: 11088 + - uid: 11094 components: - pos: -72.5,-48.5 parent: 2 type: Transform - - uid: 11089 + - uid: 11095 components: - pos: -71.5,-48.5 parent: 2 type: Transform - - uid: 11090 + - uid: 11096 components: - pos: -70.5,-48.5 parent: 2 type: Transform - - uid: 11091 + - uid: 11097 components: - pos: -69.5,-48.5 parent: 2 type: Transform - - uid: 11092 + - uid: 11098 components: - pos: -68.5,-48.5 parent: 2 type: Transform - - uid: 11093 + - uid: 11099 components: - pos: -67.5,-48.5 parent: 2 type: Transform - - uid: 11094 + - uid: 11100 components: - pos: -66.5,-48.5 parent: 2 type: Transform - - uid: 11095 + - uid: 11101 components: - pos: -65.5,-48.5 parent: 2 type: Transform - - uid: 11096 + - uid: 11102 components: - pos: -64.5,-48.5 parent: 2 type: Transform - - uid: 11097 + - uid: 11103 components: - pos: -63.5,-48.5 parent: 2 type: Transform - - uid: 11098 + - uid: 11104 components: - pos: -62.5,-48.5 parent: 2 type: Transform - - uid: 11099 + - uid: 11105 components: - rot: 3.141592653589793 rad pos: 55.5,-74.5 parent: 2 type: Transform - - uid: 11100 + - uid: 11106 components: - rot: 3.141592653589793 rad pos: 79.5,-27.5 parent: 2 type: Transform - - uid: 11101 + - uid: 11107 components: - rot: 3.141592653589793 rad pos: 79.5,-28.5 parent: 2 type: Transform - - uid: 11102 + - uid: 11108 components: - pos: 79.5,-29.5 parent: 2 type: Transform - - uid: 11103 + - uid: 11109 components: - pos: 79.5,-30.5 parent: 2 type: Transform - - uid: 11104 + - uid: 11110 components: - pos: 79.5,-31.5 parent: 2 type: Transform - - uid: 11105 + - uid: 11111 components: - pos: 79.5,-40.5 parent: 2 type: Transform - - uid: 11106 + - uid: 11112 components: - pos: 79.5,-39.5 parent: 2 type: Transform - - uid: 11107 + - uid: 11113 components: - rot: 1.5707963267948966 rad pos: -61.5,-56.5 parent: 2 type: Transform - - uid: 11108 + - uid: 11114 components: - rot: 1.5707963267948966 rad pos: -61.5,-57.5 parent: 2 type: Transform - - uid: 11109 + - uid: 11115 components: - rot: 1.5707963267948966 rad pos: -60.5,-57.5 parent: 2 type: Transform - - uid: 11110 + - uid: 11116 components: - rot: 1.5707963267948966 rad pos: -59.5,-57.5 parent: 2 type: Transform - - uid: 11111 + - uid: 11117 components: - rot: 1.5707963267948966 rad pos: -59.5,-58.5 parent: 2 type: Transform - - uid: 11112 + - uid: 11118 components: - rot: 1.5707963267948966 rad pos: -59.5,-59.5 parent: 2 type: Transform - - uid: 11113 + - uid: 11119 components: - rot: 1.5707963267948966 rad pos: -59.5,-60.5 parent: 2 type: Transform - - uid: 11114 + - uid: 11120 components: - rot: 1.5707963267948966 rad pos: -59.5,-61.5 parent: 2 type: Transform - - uid: 11115 + - uid: 11121 components: - rot: 1.5707963267948966 rad pos: -59.5,-62.5 parent: 2 type: Transform - - uid: 11116 + - uid: 11122 components: - rot: 1.5707963267948966 rad pos: -59.5,-63.5 parent: 2 type: Transform - - uid: 11117 + - uid: 11123 components: - rot: 1.5707963267948966 rad pos: -59.5,-64.5 parent: 2 type: Transform - - uid: 11118 + - uid: 11124 components: - rot: 1.5707963267948966 rad pos: -59.5,-65.5 parent: 2 type: Transform - - uid: 11119 + - uid: 11125 components: - rot: 1.5707963267948966 rad pos: -59.5,-66.5 parent: 2 type: Transform - - uid: 11120 + - uid: 11126 components: - rot: 1.5707963267948966 rad pos: -59.5,-67.5 parent: 2 type: Transform - - uid: 11121 + - uid: 11127 components: - rot: 1.5707963267948966 rad pos: -59.5,-68.5 parent: 2 type: Transform - - uid: 11122 + - uid: 11128 components: - rot: 1.5707963267948966 rad pos: -59.5,-69.5 parent: 2 type: Transform - - uid: 11123 + - uid: 11129 components: - pos: 8.5,-35.5 parent: 2 type: Transform - - uid: 11124 + - uid: 11130 components: - pos: 8.5,-34.5 parent: 2 type: Transform - - uid: 11125 + - uid: 11131 components: - pos: 8.5,-32.5 parent: 2 type: Transform - - uid: 11126 + - uid: 11132 components: - pos: 8.5,-33.5 parent: 2 type: Transform - - uid: 11127 + - uid: 11133 components: - pos: 46.5,-33.5 parent: 2 type: Transform - - uid: 11128 + - uid: 11134 components: - pos: 45.5,-33.5 parent: 2 type: Transform - - uid: 11129 + - uid: 11135 components: - pos: 44.5,-33.5 parent: 2 type: Transform - - uid: 11130 + - uid: 11136 components: - pos: 8.5,-31.5 parent: 2 type: Transform - - uid: 11131 + - uid: 11137 components: - pos: 8.5,-30.5 parent: 2 type: Transform - - uid: 11132 + - uid: 11138 components: - pos: 68.5,-70.5 parent: 2 type: Transform - - uid: 11133 + - uid: 11139 components: - pos: 69.5,-71.5 parent: 2 type: Transform - - uid: 11134 + - uid: 11140 components: - pos: 70.5,-71.5 parent: 2 type: Transform - - uid: 11135 + - uid: 11141 components: - pos: 71.5,-71.5 parent: 2 type: Transform - - uid: 11136 + - uid: 11142 components: - pos: 71.5,-71.5 parent: 2 type: Transform - - uid: 11137 + - uid: 11143 components: - pos: 71.5,-70.5 parent: 2 type: Transform - - uid: 11138 + - uid: 11144 components: - pos: 72.5,-70.5 parent: 2 type: Transform - - uid: 11139 + - uid: 11145 components: - pos: 72.5,-69.5 parent: 2 type: Transform - - uid: 11140 + - uid: 11146 components: - pos: 73.5,-69.5 parent: 2 type: Transform - - uid: 11141 + - uid: 11147 components: - pos: 74.5,-69.5 parent: 2 type: Transform - - uid: 11142 + - uid: 11148 components: - pos: 74.5,-68.5 parent: 2 type: Transform - - uid: 11143 + - uid: 11149 components: - pos: 74.5,-67.5 parent: 2 type: Transform - - uid: 11144 + - uid: 11150 components: - pos: 74.5,-66.5 parent: 2 type: Transform - - uid: 11145 + - uid: 11151 components: - pos: 74.5,-65.5 parent: 2 type: Transform - - uid: 11146 + - uid: 11152 components: - pos: 74.5,-64.5 parent: 2 type: Transform - - uid: 11147 + - uid: 11153 components: - pos: 74.5,-63.5 parent: 2 type: Transform - - uid: 11148 + - uid: 11154 components: - pos: 75.5,-63.5 parent: 2 type: Transform - - uid: 11149 + - uid: 11155 components: - pos: 76.5,-63.5 parent: 2 type: Transform - - uid: 11150 + - uid: 11156 components: - pos: 77.5,-63.5 parent: 2 type: Transform - - uid: 11151 + - uid: 11157 components: - pos: 78.5,-63.5 parent: 2 type: Transform - - uid: 11152 + - uid: 11158 components: - pos: 79.5,-63.5 parent: 2 type: Transform - - uid: 11153 + - uid: 11159 components: - pos: 79.5,-51.5 parent: 2 type: Transform - - uid: 11154 + - uid: 11160 components: - pos: 79.5,-52.5 parent: 2 type: Transform - - uid: 11155 + - uid: 11161 components: - pos: 79.5,-53.5 parent: 2 type: Transform - - uid: 11156 + - uid: 11162 components: - pos: 79.5,-54.5 parent: 2 type: Transform - - uid: 11157 + - uid: 11163 components: - pos: 79.5,-55.5 parent: 2 type: Transform - - uid: 11158 + - uid: 11164 components: - pos: 79.5,-56.5 parent: 2 type: Transform - - uid: 11159 + - uid: 11165 components: - pos: 79.5,-57.5 parent: 2 type: Transform - - uid: 11160 + - uid: 11166 components: - pos: 79.5,-58.5 parent: 2 type: Transform - - uid: 11161 + - uid: 11167 components: - pos: 79.5,-59.5 parent: 2 type: Transform - - uid: 11162 + - uid: 11168 components: - pos: 79.5,-60.5 parent: 2 type: Transform - - uid: 11163 + - uid: 11169 components: - pos: 79.5,-61.5 parent: 2 type: Transform - - uid: 11164 + - uid: 11170 components: - pos: 79.5,-62.5 parent: 2 type: Transform - - uid: 11165 + - uid: 11171 components: - pos: 72.5,-71.5 parent: 2 type: Transform - - uid: 11166 + - uid: 11172 components: - pos: 71.5,-69.5 parent: 2 type: Transform - - uid: 11167 + - uid: 11173 components: - pos: 55.5,-32.5 parent: 2 type: Transform - - uid: 11168 + - uid: 11174 components: - pos: 54.5,-32.5 parent: 2 type: Transform - - uid: 11169 + - uid: 11175 components: - pos: 53.5,-32.5 parent: 2 type: Transform - - uid: 11170 + - uid: 11176 components: - pos: 67.5,-74.5 parent: 2 type: Transform - - uid: 11171 + - uid: 11177 components: - pos: 66.5,-74.5 parent: 2 type: Transform - - uid: 11172 + - uid: 11178 components: - pos: 65.5,-74.5 parent: 2 type: Transform - - uid: 11173 + - uid: 11179 components: - pos: 64.5,-74.5 parent: 2 type: Transform - - uid: 11174 + - uid: 11180 components: - pos: 63.5,-74.5 parent: 2 type: Transform - - uid: 11175 + - uid: 11181 components: - pos: 62.5,-74.5 parent: 2 type: Transform - - uid: 11176 + - uid: 11182 components: - pos: 61.5,-74.5 parent: 2 type: Transform - - uid: 11177 + - uid: 11183 components: - pos: 60.5,-74.5 parent: 2 type: Transform - - uid: 11178 + - uid: 11184 components: - pos: 59.5,-74.5 parent: 2 type: Transform - - uid: 11179 + - uid: 11185 components: - pos: 58.5,-74.5 parent: 2 type: Transform - - uid: 11180 + - uid: 11186 components: - pos: 55.5,-30.5 parent: 2 type: Transform - - uid: 11181 + - uid: 11187 components: - pos: 55.5,-31.5 parent: 2 type: Transform - - uid: 11182 + - uid: 11188 components: - pos: 59.5,-22.5 parent: 2 type: Transform - - uid: 11183 + - uid: 11189 components: - pos: 59.5,-41.5 parent: 2 type: Transform - - uid: 11184 + - uid: 11190 components: - pos: 59.5,-40.5 parent: 2 type: Transform - - uid: 11185 + - uid: 11191 components: - pos: 59.5,-39.5 parent: 2 type: Transform - - uid: 11186 + - uid: 11192 components: - pos: 58.5,-39.5 parent: 2 type: Transform - - uid: 11187 + - uid: 11193 components: - pos: 57.5,-39.5 parent: 2 type: Transform - - uid: 11188 + - uid: 11194 components: - pos: 56.5,-39.5 parent: 2 type: Transform - - uid: 11189 + - uid: 11195 components: - pos: 59.5,-23.5 parent: 2 type: Transform - - uid: 11190 + - uid: 11196 components: - pos: 59.5,-24.5 parent: 2 type: Transform - - uid: 11191 + - uid: 11197 components: - rot: 3.141592653589793 rad pos: 65.5,-20.5 parent: 2 type: Transform - - uid: 11192 + - uid: 11198 components: - rot: 3.141592653589793 rad pos: 65.5,-19.5 parent: 2 type: Transform - - uid: 11193 + - uid: 11199 components: - rot: 3.141592653589793 rad pos: 65.5,-18.5 parent: 2 type: Transform - - uid: 11194 + - uid: 11200 components: - rot: 3.141592653589793 rad pos: 66.5,-18.5 parent: 2 type: Transform - - uid: 11195 + - uid: 11201 components: - pos: 75.5,-51.5 parent: 2 type: Transform - - uid: 11196 + - uid: 11202 components: - pos: 75.5,-52.5 parent: 2 type: Transform - - uid: 11197 + - uid: 11203 components: - pos: 75.5,-53.5 parent: 2 type: Transform - - uid: 11198 + - uid: 11204 components: - pos: 75.5,-54.5 parent: 2 type: Transform - - uid: 11199 + - uid: 11205 components: - pos: 75.5,-55.5 parent: 2 type: Transform - - uid: 11200 + - uid: 11206 components: - pos: 75.5,-56.5 parent: 2 type: Transform - - uid: 11201 + - uid: 11207 components: - pos: 60.5,-26.5 parent: 2 type: Transform - - uid: 11202 + - uid: 11208 components: - pos: 59.5,-26.5 parent: 2 type: Transform - - uid: 11203 + - uid: 11209 components: - pos: 58.5,-26.5 parent: 2 type: Transform - - uid: 11204 + - uid: 11210 components: - pos: 57.5,-26.5 parent: 2 type: Transform - - uid: 11205 + - uid: 11211 components: - pos: 56.5,-26.5 parent: 2 type: Transform - - uid: 11206 + - uid: 11212 components: - pos: 64.5,-58.5 parent: 2 type: Transform - - uid: 11207 + - uid: 11213 components: - pos: 71.5,-57.5 parent: 2 type: Transform - - uid: 11208 + - uid: 11214 components: - pos: 71.5,-58.5 parent: 2 type: Transform - - uid: 11209 + - uid: 11215 components: - pos: 71.5,-59.5 parent: 2 type: Transform - - uid: 11210 + - uid: 11216 components: - pos: 71.5,-60.5 parent: 2 type: Transform - - uid: 11211 + - uid: 11217 components: - pos: 71.5,-61.5 parent: 2 type: Transform - - uid: 11212 + - uid: 11218 components: - pos: 47.5,-65.5 parent: 2 type: Transform - - uid: 11213 + - uid: 11219 components: - pos: 48.5,-65.5 parent: 2 type: Transform - - uid: 11214 + - uid: 11220 components: - pos: 49.5,-65.5 parent: 2 type: Transform - - uid: 11215 + - uid: 11221 components: - pos: 50.5,-65.5 parent: 2 type: Transform - - uid: 11216 + - uid: 11222 components: - pos: 52.5,-66.5 parent: 2 type: Transform - - uid: 11217 + - uid: 11223 components: - pos: 69.5,-63.5 parent: 2 type: Transform - - uid: 11218 + - uid: 11224 components: - pos: 67.5,-66.5 parent: 2 type: Transform - - uid: 11219 + - uid: 11225 components: - pos: 11.5,-89.5 parent: 2 type: Transform - - uid: 11220 + - uid: 11226 components: - pos: 12.5,-89.5 parent: 2 type: Transform - - uid: 11221 + - uid: 11227 components: - pos: 12.5,-90.5 parent: 2 type: Transform - - uid: 11222 + - uid: 11228 components: - pos: 12.5,-91.5 parent: 2 type: Transform - - uid: 11223 + - uid: 11229 components: - pos: 5.5,-89.5 parent: 2 type: Transform - - uid: 11224 + - uid: 11230 components: - pos: 6.5,-89.5 parent: 2 type: Transform - - uid: 11225 + - uid: 11231 components: - pos: 7.5,-89.5 parent: 2 type: Transform - - uid: 11226 + - uid: 11232 components: - pos: 8.5,-89.5 parent: 2 type: Transform - - uid: 11227 + - uid: 11233 components: - pos: 9.5,-89.5 parent: 2 type: Transform - - uid: 11228 + - uid: 11234 components: - pos: 10.5,-89.5 parent: 2 type: Transform - - uid: 11229 + - uid: 11235 components: - pos: 3.5,-89.5 parent: 2 type: Transform - - uid: 11230 + - uid: 11236 components: - pos: 70.5,-25.5 parent: 2 type: Transform - - uid: 11231 + - uid: 11237 components: - pos: 69.5,-25.5 parent: 2 type: Transform - - uid: 11232 + - uid: 11238 components: - pos: 68.5,-25.5 parent: 2 type: Transform - - uid: 11233 + - uid: 11239 components: - pos: 66.5,-25.5 parent: 2 type: Transform - - uid: 11234 + - uid: 11240 components: - pos: 67.5,-25.5 parent: 2 type: Transform - - uid: 11236 + - uid: 11241 components: - pos: 71.5,-26.5 parent: 2 type: Transform - - uid: 11237 + - uid: 11242 components: - pos: 72.5,-26.5 parent: 2 type: Transform - - uid: 11238 + - uid: 11243 components: - pos: 73.5,-26.5 parent: 2 type: Transform - - uid: 11239 + - uid: 11244 components: - pos: 74.5,-26.5 parent: 2 type: Transform - - uid: 11240 + - uid: 11245 components: - pos: 75.5,-26.5 parent: 2 type: Transform - - uid: 11241 + - uid: 11246 components: - pos: 76.5,-26.5 parent: 2 type: Transform - - uid: 11242 + - uid: 11247 components: - pos: 77.5,-26.5 parent: 2 type: Transform - - uid: 11243 + - uid: 11248 components: - pos: 78.5,-26.5 parent: 2 type: Transform - - uid: 11244 + - uid: 11249 components: - pos: -46.5,-53.5 parent: 2 type: Transform - - uid: 11245 + - uid: 11250 components: - pos: -46.5,-54.5 parent: 2 type: Transform - - uid: 11246 + - uid: 11251 components: - pos: 6.5,-88.5 parent: 2 type: Transform - - uid: 11247 + - uid: 11252 components: - pos: 6.5,-87.5 parent: 2 type: Transform - - uid: 11248 + - uid: 11253 components: - pos: 8.5,-75.5 parent: 2 type: Transform - - uid: 11249 + - uid: 11254 components: - pos: 9.5,-75.5 parent: 2 type: Transform - - uid: 11250 + - uid: 11255 components: - pos: 10.5,-75.5 parent: 2 type: Transform - - uid: 11251 + - uid: 11256 components: - pos: 11.5,-75.5 parent: 2 type: Transform - - uid: 11252 + - uid: 11257 components: - pos: 12.5,-75.5 parent: 2 type: Transform - - uid: 11253 + - uid: 11258 components: - pos: 13.5,-75.5 parent: 2 type: Transform - - uid: 11254 + - uid: 11259 components: - pos: 14.5,-75.5 parent: 2 type: Transform - - uid: 11255 + - uid: 11260 components: - pos: 15.5,-75.5 parent: 2 type: Transform - - uid: 11256 + - uid: 11261 components: - pos: 16.5,-75.5 parent: 2 type: Transform - - uid: 11257 + - uid: 11262 components: - pos: 17.5,-75.5 parent: 2 type: Transform - - uid: 11258 + - uid: 11263 components: - pos: 18.5,-75.5 parent: 2 type: Transform - - uid: 11259 + - uid: 11264 components: - pos: 19.5,-75.5 parent: 2 type: Transform - - uid: 11260 + - uid: 11265 components: - pos: 20.5,-75.5 parent: 2 type: Transform - - uid: 11261 + - uid: 11266 components: - pos: 21.5,-75.5 parent: 2 type: Transform - - uid: 11262 + - uid: 11267 components: - pos: 69.5,4.5 parent: 2 type: Transform - - uid: 11263 + - uid: 11268 components: - pos: 69.5,2.5 parent: 2 type: Transform - - uid: 11264 + - uid: 11269 components: - pos: 69.5,1.5 parent: 2 type: Transform - - uid: 11265 + - uid: 11270 components: - pos: 69.5,0.5 parent: 2 type: Transform - - uid: 11266 + - uid: 11271 components: - pos: 69.5,-0.5 parent: 2 type: Transform - - uid: 11267 + - uid: 11272 components: - pos: 69.5,-1.5 parent: 2 type: Transform - - uid: 11268 + - uid: 11273 components: - pos: 69.5,31.5 parent: 2 type: Transform - - uid: 11269 + - uid: 11274 components: - pos: 69.5,30.5 parent: 2 type: Transform - - uid: 11270 + - uid: 11275 components: - pos: 69.5,29.5 parent: 2 type: Transform - - uid: 11271 + - uid: 11276 components: - pos: 69.5,28.5 parent: 2 type: Transform - - uid: 11272 + - uid: 11277 components: - pos: 69.5,27.5 parent: 2 type: Transform - - uid: 11273 + - uid: 11278 components: - pos: 69.5,26.5 parent: 2 type: Transform - - uid: 11274 + - uid: 11279 components: - pos: 69.5,25.5 parent: 2 type: Transform - - uid: 11275 + - uid: 11280 components: - pos: 69.5,24.5 parent: 2 type: Transform - - uid: 11276 + - uid: 11281 components: - pos: 69.5,23.5 parent: 2 type: Transform - - uid: 11277 + - uid: 11282 components: - pos: 69.5,22.5 parent: 2 type: Transform - - uid: 11278 + - uid: 11283 components: - pos: 69.5,21.5 parent: 2 type: Transform - - uid: 11279 + - uid: 11284 components: - pos: 69.5,20.5 parent: 2 type: Transform - - uid: 11280 + - uid: 11285 components: - pos: 69.5,19.5 parent: 2 type: Transform - - uid: 11281 + - uid: 11286 components: - pos: 69.5,18.5 parent: 2 type: Transform - - uid: 11282 + - uid: 11287 components: - pos: 69.5,17.5 parent: 2 type: Transform - - uid: 11283 + - uid: 11288 components: - pos: 69.5,16.5 parent: 2 type: Transform - - uid: 11284 + - uid: 11289 components: - pos: 69.5,15.5 parent: 2 type: Transform - - uid: 11285 + - uid: 11290 components: - pos: 69.5,14.5 parent: 2 type: Transform - - uid: 11286 + - uid: 11291 components: - pos: 69.5,13.5 parent: 2 type: Transform - - uid: 11287 + - uid: 11292 components: - pos: 69.5,12.5 parent: 2 type: Transform - - uid: 11288 + - uid: 11293 components: - pos: 69.5,11.5 parent: 2 type: Transform - - uid: 11289 + - uid: 11294 components: - pos: 69.5,10.5 parent: 2 type: Transform - - uid: 11290 + - uid: 11295 components: - pos: 69.5,9.5 parent: 2 type: Transform - - uid: 11291 + - uid: 11296 components: - pos: 69.5,8.5 parent: 2 type: Transform - - uid: 11292 + - uid: 11297 components: - pos: 69.5,7.5 parent: 2 type: Transform - - uid: 11293 + - uid: 11298 components: - pos: 69.5,6.5 parent: 2 type: Transform - - uid: 11294 + - uid: 11299 components: - pos: 69.5,5.5 parent: 2 type: Transform - - uid: 11295 + - uid: 11300 components: - pos: 75.5,43.5 parent: 2 type: Transform - - uid: 11296 + - uid: 11301 components: - pos: 63.5,37.5 parent: 2 type: Transform - - uid: 11297 + - uid: 11302 components: - pos: 63.5,38.5 parent: 2 type: Transform - - uid: 11298 + - uid: 11303 components: - pos: 63.5,39.5 parent: 2 type: Transform - - uid: 11299 + - uid: 11304 components: - pos: 64.5,39.5 parent: 2 type: Transform - - uid: 11300 + - uid: 11305 components: - pos: 65.5,39.5 parent: 2 type: Transform - - uid: 11301 + - uid: 11306 components: - pos: 66.5,39.5 parent: 2 type: Transform - - uid: 11302 + - uid: 11307 components: - pos: 67.5,39.5 parent: 2 type: Transform - - uid: 11303 + - uid: 11308 components: - pos: 67.5,40.5 parent: 2 type: Transform - - uid: 11304 + - uid: 11309 components: - pos: 67.5,41.5 parent: 2 type: Transform - - uid: 11305 + - uid: 11310 components: - pos: 68.5,41.5 parent: 2 type: Transform - - uid: 11306 + - uid: 11311 components: - pos: 69.5,41.5 parent: 2 type: Transform - - uid: 11307 + - uid: 11312 components: - pos: 70.5,41.5 parent: 2 type: Transform - - uid: 11308 + - uid: 11313 components: - pos: 71.5,41.5 parent: 2 type: Transform - - uid: 11309 + - uid: 11314 components: - pos: 72.5,41.5 parent: 2 type: Transform - - uid: 11310 + - uid: 11315 components: - pos: 72.5,42.5 parent: 2 type: Transform - - uid: 11311 + - uid: 11316 components: - pos: 73.5,42.5 parent: 2 type: Transform - - uid: 11312 + - uid: 11317 components: - pos: 74.5,42.5 parent: 2 type: Transform - - uid: 11313 + - uid: 11318 components: - pos: 75.5,42.5 parent: 2 type: Transform - - uid: 11314 + - uid: 11319 components: - pos: 75.5,44.5 parent: 2 type: Transform - - uid: 11315 + - uid: 11320 components: - pos: 75.5,45.5 parent: 2 type: Transform - - uid: 11316 + - uid: 11321 components: - pos: 75.5,46.5 parent: 2 type: Transform - - uid: 11317 + - uid: 11322 components: - pos: 74.5,46.5 parent: 2 type: Transform - - uid: 11318 + - uid: 11323 components: - pos: 74.5,47.5 parent: 2 type: Transform - - uid: 11319 + - uid: 11324 components: - pos: 74.5,48.5 parent: 2 type: Transform - - uid: 11320 + - uid: 11325 components: - pos: 74.5,49.5 parent: 2 type: Transform - - uid: 11321 + - uid: 11326 components: - pos: 74.5,50.5 parent: 2 type: Transform - - uid: 11322 + - uid: 11327 components: - pos: 74.5,51.5 parent: 2 type: Transform - - uid: 11323 + - uid: 11328 components: - pos: 74.5,52.5 parent: 2 type: Transform - - uid: 11324 + - uid: 11329 components: - pos: 74.5,53.5 parent: 2 type: Transform - - uid: 11325 + - uid: 11330 components: - pos: 74.5,54.5 parent: 2 type: Transform - - uid: 11326 + - uid: 11331 components: - pos: 74.5,55.5 parent: 2 type: Transform - - uid: 11327 + - uid: 11332 components: - pos: 74.5,56.5 parent: 2 type: Transform - - uid: 11328 + - uid: 11333 components: - pos: 74.5,57.5 parent: 2 type: Transform - - uid: 11329 + - uid: 11334 components: - pos: 60.5,58.5 parent: 2 type: Transform - - uid: 11330 + - uid: 11335 components: - pos: 73.5,57.5 parent: 2 type: Transform - - uid: 11331 + - uid: 11336 components: - pos: 72.5,57.5 parent: 2 type: Transform - - uid: 11332 + - uid: 11337 components: - pos: 71.5,57.5 parent: 2 type: Transform - - uid: 11333 + - uid: 11338 components: - pos: 70.5,57.5 parent: 2 type: Transform - - uid: 11334 + - uid: 11339 components: - pos: 69.5,57.5 parent: 2 type: Transform - - uid: 11335 + - uid: 11340 components: - pos: 68.5,57.5 parent: 2 type: Transform - - uid: 11336 + - uid: 11341 components: - pos: 67.5,57.5 parent: 2 type: Transform - - uid: 11337 + - uid: 11342 components: - pos: 66.5,57.5 parent: 2 type: Transform - - uid: 11338 + - uid: 11343 components: - pos: 65.5,57.5 parent: 2 type: Transform - - uid: 11339 + - uid: 11344 components: - pos: 64.5,57.5 parent: 2 type: Transform - - uid: 11340 + - uid: 11345 components: - pos: 63.5,57.5 parent: 2 type: Transform - - uid: 11341 + - uid: 11346 components: - pos: 62.5,57.5 parent: 2 type: Transform - - uid: 11342 + - uid: 11347 components: - pos: 61.5,57.5 parent: 2 type: Transform - - uid: 11343 + - uid: 11348 components: - pos: 60.5,57.5 parent: 2 type: Transform - - uid: 11344 + - uid: 11349 components: - pos: 60.5,59.5 parent: 2 type: Transform - - uid: 11345 + - uid: 11350 components: - pos: 60.5,60.5 parent: 2 type: Transform - - uid: 11346 + - uid: 11351 components: - pos: 60.5,61.5 parent: 2 type: Transform - - uid: 11347 + - uid: 11352 components: - pos: 60.5,62.5 parent: 2 type: Transform - - uid: 11348 + - uid: 11353 components: - pos: 60.5,63.5 parent: 2 type: Transform - - uid: 11349 + - uid: 11354 components: - pos: 47.5,55.5 parent: 2 type: Transform - - uid: 11350 + - uid: 11355 components: - pos: 59.5,63.5 parent: 2 type: Transform - - uid: 11351 + - uid: 11356 components: - pos: 58.5,63.5 parent: 2 type: Transform - - uid: 11352 + - uid: 11357 components: - pos: 57.5,63.5 parent: 2 type: Transform - - uid: 11353 + - uid: 11358 components: - pos: 56.5,63.5 parent: 2 type: Transform - - uid: 11354 + - uid: 11359 components: - pos: 55.5,63.5 parent: 2 type: Transform - - uid: 11355 + - uid: 11360 components: - pos: 54.5,63.5 parent: 2 type: Transform - - uid: 11356 + - uid: 11361 components: - pos: 53.5,63.5 parent: 2 type: Transform - - uid: 11357 + - uid: 11362 components: - pos: 52.5,63.5 parent: 2 type: Transform - - uid: 11358 + - uid: 11363 components: - pos: 51.5,63.5 parent: 2 type: Transform - - uid: 11359 + - uid: 11364 components: - pos: 50.5,63.5 parent: 2 type: Transform - - uid: 11360 + - uid: 11365 components: - pos: 49.5,63.5 parent: 2 type: Transform - - uid: 11361 + - uid: 11366 components: - pos: 48.5,63.5 parent: 2 type: Transform - - uid: 11362 + - uid: 11367 components: - pos: 48.5,62.5 parent: 2 type: Transform - - uid: 11363 + - uid: 11368 components: - pos: 48.5,61.5 parent: 2 type: Transform - - uid: 11364 + - uid: 11369 components: - pos: 48.5,60.5 parent: 2 type: Transform - - uid: 11365 + - uid: 11370 components: - pos: 48.5,59.5 parent: 2 type: Transform - - uid: 11366 + - uid: 11371 components: - pos: 48.5,58.5 parent: 2 type: Transform - - uid: 11367 + - uid: 11372 components: - pos: 48.5,57.5 parent: 2 type: Transform - - uid: 11368 + - uid: 11373 components: - pos: 48.5,56.5 parent: 2 type: Transform - - uid: 11369 + - uid: 11374 components: - pos: 48.5,55.5 parent: 2 type: Transform - - uid: 11370 + - uid: 11375 components: - pos: 46.5,55.5 parent: 2 type: Transform - - uid: 11371 + - uid: 11376 components: - pos: 45.5,55.5 parent: 2 type: Transform - - uid: 11372 + - uid: 11377 components: - pos: 44.5,55.5 parent: 2 type: Transform - - uid: 11373 + - uid: 11378 components: - pos: 43.5,55.5 parent: 2 type: Transform - - uid: 11374 + - uid: 11379 components: - pos: 42.5,55.5 parent: 2 type: Transform - - uid: 11375 + - uid: 11380 components: - pos: 41.5,55.5 parent: 2 type: Transform - - uid: 11376 + - uid: 11381 components: - pos: 40.5,55.5 parent: 2 type: Transform - - uid: 11377 + - uid: 11382 components: - pos: 39.5,55.5 parent: 2 type: Transform - - uid: 11378 + - uid: 11383 components: - pos: 38.5,55.5 parent: 2 type: Transform - - uid: 11379 + - uid: 11384 components: - pos: 37.5,55.5 parent: 2 type: Transform - - uid: 11380 + - uid: 11385 components: - pos: 36.5,55.5 parent: 2 type: Transform - - uid: 11381 + - uid: 11386 components: - pos: 35.5,55.5 parent: 2 type: Transform - - uid: 11382 + - uid: 11387 components: - pos: 34.5,55.5 parent: 2 type: Transform - - uid: 11383 + - uid: 11388 components: - pos: 33.5,55.5 parent: 2 type: Transform - - uid: 11384 + - uid: 11389 components: - pos: 32.5,55.5 parent: 2 type: Transform - - uid: 11385 + - uid: 11390 components: - pos: 31.5,55.5 parent: 2 type: Transform - - uid: 11386 + - uid: 11391 components: - pos: 30.5,55.5 parent: 2 type: Transform - - uid: 11387 + - uid: 11392 components: - pos: 66.5,35.5 parent: 2 type: Transform - - uid: 11388 + - uid: 11393 components: - pos: 66.5,34.5 parent: 2 type: Transform - - uid: 11389 + - uid: 11394 components: - pos: 66.5,33.5 parent: 2 type: Transform - - uid: 11390 + - uid: 11395 components: - pos: 66.5,32.5 parent: 2 type: Transform - - uid: 11391 + - uid: 11396 components: - pos: 66.5,31.5 parent: 2 type: Transform - - uid: 11392 + - uid: 11397 components: - pos: 67.5,31.5 parent: 2 type: Transform - - uid: 11393 + - uid: 11398 components: - pos: 68.5,31.5 parent: 2 type: Transform - - uid: 11394 + - uid: 11399 components: - rot: 3.141592653589793 rad pos: 27.5,-90.5 parent: 2 type: Transform - - uid: 11395 + - uid: 11400 components: - rot: 3.141592653589793 rad pos: 13.5,-89.5 parent: 2 type: Transform - - uid: 11396 + - uid: 11401 components: - pos: -7.5,-9.5 parent: 2 type: Transform - - uid: 11397 + - uid: 11402 components: - pos: -8.5,-9.5 parent: 2 type: Transform - - uid: 11398 + - uid: 11403 components: - pos: -9.5,-9.5 parent: 2 type: Transform - - uid: 11399 + - uid: 11404 components: - pos: -10.5,-9.5 parent: 2 type: Transform - - uid: 11400 + - uid: 11405 components: - pos: -11.5,-9.5 parent: 2 type: Transform - - uid: 11401 + - uid: 11406 components: - pos: -12.5,-9.5 parent: 2 type: Transform - - uid: 11402 + - uid: 11407 components: - pos: -13.5,-9.5 parent: 2 type: Transform - - uid: 11403 + - uid: 11408 components: - pos: -15.5,-14.5 parent: 2 type: Transform - - uid: 11404 + - uid: 11409 components: - pos: -16.5,-14.5 parent: 2 type: Transform - - uid: 11405 + - uid: 11410 components: - pos: -46.5,52.5 parent: 2 type: Transform - - uid: 11406 + - uid: 11411 components: - pos: -46.5,51.5 parent: 2 type: Transform - - uid: 11407 + - uid: 11412 components: - pos: -46.5,50.5 parent: 2 type: Transform - - uid: 11408 + - uid: 11413 components: - pos: -46.5,49.5 parent: 2 type: Transform - - uid: 11409 + - uid: 11414 components: - pos: -46.5,-56.5 parent: 2 type: Transform - - uid: 11410 + - uid: 11415 components: - pos: -46.5,-57.5 parent: 2 type: Transform - - uid: 11411 + - uid: 11416 components: - pos: -46.5,-58.5 parent: 2 type: Transform - - uid: 11412 + - uid: 11417 components: - pos: -47.5,-58.5 parent: 2 type: Transform - - uid: 11413 + - uid: 11418 components: - pos: -48.5,-58.5 parent: 2 type: Transform - - uid: 11414 + - uid: 11419 components: - pos: -49.5,-58.5 parent: 2 type: Transform - - uid: 11415 + - uid: 11420 components: - pos: -29.5,-19.5 parent: 2 type: Transform - - uid: 11416 + - uid: 11421 components: - pos: -29.5,-20.5 parent: 2 type: Transform - - uid: 11417 + - uid: 11422 components: - pos: -29.5,-21.5 parent: 2 type: Transform - - uid: 11418 + - uid: 11423 components: - rot: 1.5707963267948966 rad pos: -25.5,-60.5 parent: 2 type: Transform - - uid: 11419 + - uid: 11424 components: - rot: 1.5707963267948966 rad pos: -24.5,-60.5 parent: 2 type: Transform - - uid: 11420 + - uid: 11425 components: - rot: 1.5707963267948966 rad pos: -23.5,-60.5 parent: 2 type: Transform - - uid: 11421 + - uid: 11426 components: - rot: 1.5707963267948966 rad pos: -23.5,-58.5 parent: 2 type: Transform - - uid: 11422 + - uid: 11427 components: - pos: 63.5,2.5 parent: 2 type: Transform - - uid: 11423 + - uid: 11428 components: - pos: -2.5,14.5 parent: 2 type: Transform - - uid: 11424 + - uid: 11429 components: - rot: 3.141592653589793 rad pos: 52.5,-93.5 parent: 2 type: Transform - - uid: 11425 + - uid: 11430 components: - rot: 3.141592653589793 rad pos: 52.5,-80.5 parent: 2 type: Transform - - uid: 11426 + - uid: 11431 components: - rot: 3.141592653589793 rad pos: 52.5,-81.5 parent: 2 type: Transform - - uid: 11427 + - uid: 11432 components: - rot: 3.141592653589793 rad pos: 52.5,-76.5 parent: 2 type: Transform - - uid: 11428 + - uid: 11433 components: - rot: 3.141592653589793 rad pos: 51.5,-95.5 parent: 2 type: Transform - - uid: 11429 + - uid: 11434 components: - rot: 3.141592653589793 rad pos: 52.5,-95.5 parent: 2 type: Transform - - uid: 11430 + - uid: 11435 components: - pos: 6.5,-73.5 parent: 2 type: Transform - - uid: 11431 + - uid: 11436 components: - rot: 3.141592653589793 rad pos: 50.5,-95.5 parent: 2 type: Transform - - uid: 11432 + - uid: 11437 components: - rot: 3.141592653589793 rad pos: 52.5,-75.5 parent: 2 type: Transform - - uid: 11433 + - uid: 11438 components: - rot: 3.141592653589793 rad pos: 52.5,-74.5 parent: 2 type: Transform - - uid: 11434 + - uid: 11439 components: - rot: 3.141592653589793 rad pos: 54.5,-74.5 parent: 2 type: Transform - - uid: 11435 + - uid: 11440 components: - rot: 3.141592653589793 rad pos: 53.5,-74.5 parent: 2 type: Transform - - uid: 11436 + - uid: 11441 components: - rot: 3.141592653589793 rad pos: 52.5,-82.5 parent: 2 type: Transform - - uid: 11437 + - uid: 11442 components: - rot: 3.141592653589793 rad pos: 52.5,-83.5 parent: 2 type: Transform - - uid: 11438 + - uid: 11443 components: - rot: 1.5707963267948966 rad pos: -19.5,-48.5 parent: 2 type: Transform - - uid: 11439 + - uid: 11444 components: - rot: 1.5707963267948966 rad pos: -19.5,-49.5 parent: 2 type: Transform - - uid: 11440 + - uid: 11445 components: - rot: 3.141592653589793 rad pos: 5.5,-19.5 parent: 2 type: Transform - - uid: 11441 + - uid: 11446 components: - rot: 3.141592653589793 rad pos: 5.5,-20.5 parent: 2 type: Transform - - uid: 11442 + - uid: 11447 components: - rot: 3.141592653589793 rad pos: 5.5,-21.5 parent: 2 type: Transform - - uid: 11443 + - uid: 11448 components: - rot: 3.141592653589793 rad pos: 5.5,-22.5 parent: 2 type: Transform - - uid: 11444 + - uid: 11449 components: - rot: 3.141592653589793 rad pos: 4.5,-16.5 parent: 2 type: Transform - - uid: 11445 + - uid: 11450 components: - rot: 3.141592653589793 rad pos: 6.5,-14.5 parent: 2 type: Transform - - uid: 11446 + - uid: 11451 components: - rot: 3.141592653589793 rad pos: 5.5,-14.5 parent: 2 type: Transform - - uid: 11447 + - uid: 11452 components: - rot: 3.141592653589793 rad pos: 4.5,-14.5 parent: 2 type: Transform - - uid: 11448 + - uid: 11453 components: - rot: 1.5707963267948966 rad pos: -20.5,-49.5 parent: 2 type: Transform - - uid: 11449 + - uid: 11454 components: - pos: 6.5,-74.5 parent: 2 type: Transform - - uid: 11450 + - uid: 11455 components: - pos: 6.5,-75.5 parent: 2 type: Transform - - uid: 11451 + - uid: 11456 components: - pos: 6.5,-76.5 parent: 2 type: Transform - - uid: 11452 + - uid: 11457 components: - pos: 6.5,-77.5 parent: 2 type: Transform - - uid: 11453 + - uid: 11458 components: - pos: 6.5,-78.5 parent: 2 type: Transform - - uid: 11454 + - uid: 11459 components: - pos: 6.5,-79.5 parent: 2 type: Transform - - uid: 11455 + - uid: 11460 components: - pos: 6.5,-80.5 parent: 2 type: Transform - - uid: 11456 + - uid: 11461 components: - pos: 6.5,-81.5 parent: 2 type: Transform - - uid: 11457 + - uid: 11462 components: - pos: 6.5,-82.5 parent: 2 type: Transform - - uid: 11458 + - uid: 11463 components: - rot: -1.5707963267948966 rad pos: -47.5,49.5 parent: 2 type: Transform - - uid: 11459 + - uid: 11464 components: - rot: -1.5707963267948966 rad pos: -48.5,49.5 parent: 2 type: Transform - - uid: 11460 + - uid: 11465 components: - rot: -1.5707963267948966 rad pos: -49.5,49.5 parent: 2 type: Transform - - uid: 11461 + - uid: 11466 components: - rot: -1.5707963267948966 rad pos: -49.5,48.5 parent: 2 type: Transform - - uid: 30651 + - uid: 11467 components: - pos: 71.5,-25.5 parent: 2 type: Transform - proto: Cautery entities: - - uid: 11462 + - uid: 11468 components: - rot: -1.5707963267948966 rad pos: 0.5414771,-66.9678 parent: 2 type: Transform - - uid: 11463 + - uid: 11469 components: - pos: 73.52661,-47.78304 parent: 2 type: Transform - proto: Chair entities: - - uid: 11464 + - uid: 11470 components: - rot: -1.5707963267948966 rad pos: 18.5,-72.5 parent: 2 type: Transform - - uid: 11465 + - uid: 11471 components: - rot: -1.5707963267948966 rad pos: -51.5,-75.5 parent: 2 type: Transform - - uid: 11466 + - uid: 11472 components: - pos: 14.5,-72.5 parent: 2 type: Transform - - uid: 11467 + - uid: 11473 components: - rot: -1.5707963267948966 rad pos: -51.5,-79.5 parent: 2 type: Transform - - uid: 11468 + - uid: 11474 components: - rot: -1.5707963267948966 rad pos: -51.5,-78.5 parent: 2 type: Transform - - uid: 11469 + - uid: 11475 components: - rot: -1.5707963267948966 rad pos: -51.5,-77.5 parent: 2 type: Transform - - uid: 11470 + - uid: 11476 components: - rot: -1.5707963267948966 rad pos: -51.5,-74.5 parent: 2 type: Transform - - uid: 11471 + - uid: 11477 components: - rot: -1.5707963267948966 rad pos: -51.5,-73.5 parent: 2 type: Transform - - uid: 11472 + - uid: 11478 components: - pos: -23.5,-38.5 parent: 2 type: Transform - - uid: 11473 + - uid: 11479 components: - pos: 1.5,-52.5 parent: 2 type: Transform - - uid: 11474 + - uid: 11480 components: - rot: 3.141592653589793 rad pos: 27.5,-4.5 parent: 2 type: Transform - - uid: 11475 + - uid: 11481 components: - pos: -5.5,-45.5 parent: 2 type: Transform - - uid: 11476 + - uid: 11482 components: - pos: -2.5,-32.5 parent: 2 type: Transform - - uid: 11477 + - uid: 11483 components: - rot: 1.5707963267948966 rad pos: 17.5,-65.5 parent: 2 type: Transform - - uid: 11478 + - uid: 11484 components: - rot: 1.5707963267948966 rad pos: 17.5,-66.5 parent: 2 type: Transform - - uid: 11479 + - uid: 11485 components: - rot: 1.5707963267948966 rad pos: 18.5,-0.5 parent: 2 type: Transform - - uid: 11480 + - uid: 11486 components: - pos: -14.5,-52.5 parent: 2 type: Transform - - uid: 11481 + - uid: 11487 components: - pos: 2.5,-52.5 parent: 2 type: Transform - - uid: 11482 + - uid: 11488 components: - pos: -12.5,-52.5 parent: 2 type: Transform - - uid: 11483 + - uid: 11489 components: - pos: -11.5,-52.5 parent: 2 type: Transform - - uid: 11484 + - uid: 11490 components: - pos: 16.5,-67.5 parent: 2 type: Transform - - uid: 11485 + - uid: 11491 components: - rot: 1.5707963267948966 rad pos: 18.5,2.5 parent: 2 type: Transform - - uid: 11486 + - uid: 11492 components: - pos: 27.5,6.5 parent: 2 type: Transform - - uid: 11487 + - uid: 11493 components: - pos: 26.5,6.5 parent: 2 type: Transform - - uid: 11488 + - uid: 11494 components: - rot: 1.5707963267948966 rad pos: 7.5,13.5 parent: 2 type: Transform - - uid: 11489 + - uid: 11495 components: - rot: 1.5707963267948966 rad pos: 7.5,14.5 parent: 2 type: Transform - - uid: 11490 + - uid: 11496 components: - pos: -4.5,-45.5 parent: 2 type: Transform - - uid: 11491 + - uid: 11497 components: - pos: -3.5,-45.5 parent: 2 type: Transform - - uid: 11492 + - uid: 11498 components: - rot: 3.141592653589793 rad pos: 23.5,-4.5 parent: 2 type: Transform - - uid: 11493 + - uid: 11499 components: - rot: 3.141592653589793 rad pos: 26.5,-4.5 parent: 2 type: Transform - - uid: 11494 + - uid: 11500 components: - pos: 22.5,6.5 parent: 2 type: Transform - - uid: 11495 + - uid: 11501 components: - pos: 25.5,6.5 parent: 2 type: Transform - - uid: 11496 + - uid: 11502 components: - pos: 21.5,6.5 parent: 2 type: Transform - - uid: 11497 + - uid: 11503 components: - rot: 3.141592653589793 rad pos: -2.5,-34.5 parent: 2 type: Transform - - uid: 11498 + - uid: 11504 components: - pos: 15.5,-67.5 parent: 2 type: Transform - - uid: 11499 + - uid: 11505 components: - rot: 3.141592653589793 rad pos: 22.5,-4.5 parent: 2 type: Transform - - uid: 11500 + - uid: 11506 components: - rot: 3.141592653589793 rad pos: 21.5,-4.5 parent: 2 type: Transform - - uid: 11501 + - uid: 11507 components: - rot: -1.5707963267948966 rad pos: 65.5,-9.5 parent: 2 type: Transform - - uid: 11502 + - uid: 11508 components: - rot: -1.5707963267948966 rad pos: -7.5,-36.5 parent: 2 type: Transform - - uid: 11503 + - uid: 11509 components: - rot: -1.5707963267948966 rad pos: -7.5,-37.5 parent: 2 type: Transform - - uid: 11504 + - uid: 11510 components: - rot: -1.5707963267948966 rad pos: -7.5,-38.5 parent: 2 type: Transform - - uid: 11505 + - uid: 11511 components: - pos: 17.5,23.5 parent: 2 type: Transform - - uid: 11506 + - uid: 11512 components: - pos: 15.5,23.5 parent: 2 type: Transform - - uid: 11507 + - uid: 11513 components: - rot: 3.141592653589793 rad pos: 16.5,20.5 parent: 2 type: Transform - - uid: 11508 + - uid: 11514 components: - pos: 35.5,19.5 parent: 2 type: Transform - - uid: 11509 + - uid: 11515 components: - rot: 3.141592653589793 rad pos: 35.5,17.5 parent: 2 type: Transform - - uid: 11510 + - uid: 11516 components: - rot: -1.5707963267948966 rad pos: 18.5,29.5 parent: 2 type: Transform - - uid: 11511 + - uid: 11517 components: - rot: -1.5707963267948966 rad pos: 18.5,28.5 parent: 2 type: Transform - - uid: 11512 + - uid: 11518 components: - pos: 48.5,19.5 parent: 2 type: Transform - - uid: 11513 + - uid: 11519 components: - pos: 52.5,8.5 parent: 2 type: Transform - - uid: 11514 + - uid: 11520 components: - rot: 3.141592653589793 rad pos: 52.5,5.5 parent: 2 type: Transform - - uid: 11515 + - uid: 11521 components: - pos: 51.5,8.5 parent: 2 type: Transform - - uid: 11516 + - uid: 11522 components: - rot: 3.141592653589793 rad pos: 51.5,5.5 parent: 2 type: Transform - - uid: 11517 + - uid: 11523 components: - pos: 58.5,21.5 parent: 2 type: Transform - - uid: 11518 + - uid: 11524 components: - pos: 57.5,21.5 parent: 2 type: Transform - - uid: 11519 + - uid: 11525 components: - rot: 3.141592653589793 rad pos: 58.5,18.5 parent: 2 type: Transform - - uid: 11520 + - uid: 11526 components: - rot: 3.141592653589793 rad pos: 57.5,18.5 parent: 2 type: Transform - - uid: 11521 + - uid: 11527 components: - rot: 1.5707963267948966 rad pos: 42.5,-3.5 parent: 2 type: Transform - - uid: 11522 + - uid: 11528 components: - pos: 59.5,-10.5 parent: 2 type: Transform - - uid: 11523 + - uid: 11529 components: - pos: 58.5,-10.5 parent: 2 type: Transform - - uid: 11524 + - uid: 11530 components: - pos: 57.5,-10.5 parent: 2 type: Transform - - uid: 11525 + - uid: 11531 components: - pos: 56.5,-10.5 parent: 2 type: Transform - - uid: 11526 + - uid: 11532 components: - pos: 55.5,-10.5 parent: 2 type: Transform - - uid: 11527 + - uid: 11533 components: - rot: 3.141592653589793 rad pos: 55.5,-6.5 parent: 2 type: Transform - - uid: 11528 + - uid: 11534 components: - rot: 3.141592653589793 rad pos: 56.5,-6.5 parent: 2 type: Transform - - uid: 11529 + - uid: 11535 components: - rot: 3.141592653589793 rad pos: 57.5,-6.5 parent: 2 type: Transform - - uid: 11530 + - uid: 11536 components: - rot: 3.141592653589793 rad pos: 58.5,-6.5 parent: 2 type: Transform - - uid: 11531 + - uid: 11537 components: - rot: 3.141592653589793 rad pos: 59.5,-6.5 parent: 2 type: Transform - - uid: 11532 + - uid: 11538 components: - pos: 55.5,-14.5 parent: 2 type: Transform - - uid: 11533 + - uid: 11539 components: - pos: 56.5,-14.5 parent: 2 type: Transform - - uid: 11534 + - uid: 11540 components: - pos: 59.5,-14.5 parent: 2 type: Transform - - uid: 11535 + - uid: 11541 components: - pos: 58.5,-14.5 parent: 2 type: Transform - - uid: 11536 + - uid: 11542 components: - pos: 61.5,-10.5 parent: 2 type: Transform - - uid: 11537 + - uid: 11543 components: - pos: 60.5,-10.5 parent: 2 type: Transform - - uid: 11538 + - uid: 11544 components: - pos: 44.5,-48.5 parent: 2 type: Transform - - uid: 11539 + - uid: 11545 components: - pos: 46.5,-48.5 parent: 2 type: Transform - - uid: 11540 + - uid: 11546 components: - rot: 3.141592653589793 rad pos: 28.5,-55.5 parent: 2 type: Transform - - uid: 11541 + - uid: 11547 components: - rot: 3.141592653589793 rad pos: 29.5,-55.5 parent: 2 type: Transform - - uid: 11542 + - uid: 11548 components: - rot: 3.141592653589793 rad pos: 30.5,-55.5 parent: 2 type: Transform - - uid: 11543 + - uid: 11549 components: - rot: 3.141592653589793 rad pos: 30.5,-54.5 parent: 2 type: Transform - - uid: 11544 + - uid: 11550 components: - rot: 3.141592653589793 rad pos: 29.5,-54.5 parent: 2 type: Transform - - uid: 11545 + - uid: 11551 components: - rot: 3.141592653589793 rad pos: 28.5,-54.5 parent: 2 type: Transform - - uid: 11546 + - uid: 11552 components: - rot: 3.141592653589793 rad pos: 32.5,-54.5 parent: 2 type: Transform - - uid: 11547 + - uid: 11553 components: - rot: 3.141592653589793 rad pos: 33.5,-54.5 parent: 2 type: Transform - - uid: 11548 + - uid: 11554 components: - rot: 3.141592653589793 rad pos: 34.5,-54.5 parent: 2 type: Transform - - uid: 11549 + - uid: 11555 components: - rot: 3.141592653589793 rad pos: 34.5,-55.5 parent: 2 type: Transform - - uid: 11550 + - uid: 11556 components: - rot: 3.141592653589793 rad pos: 33.5,-55.5 parent: 2 type: Transform - - uid: 11551 + - uid: 11557 components: - rot: 3.141592653589793 rad pos: 32.5,-55.5 parent: 2 type: Transform - - uid: 11552 + - uid: 11558 components: - rot: 3.141592653589793 rad pos: 32.5,-53.5 parent: 2 type: Transform - - uid: 11553 + - uid: 11559 components: - rot: 3.141592653589793 rad pos: 33.5,-53.5 parent: 2 type: Transform - - uid: 11554 + - uid: 11560 components: - rot: 3.141592653589793 rad pos: 34.5,-53.5 parent: 2 type: Transform - - uid: 11555 + - uid: 11561 components: - rot: 3.141592653589793 rad pos: 30.5,-53.5 parent: 2 type: Transform - - uid: 11556 + - uid: 11562 components: - rot: 3.141592653589793 rad pos: 29.5,-53.5 parent: 2 type: Transform - - uid: 11557 + - uid: 11563 components: - rot: 3.141592653589793 rad pos: 28.5,-53.5 parent: 2 type: Transform - - uid: 11558 + - uid: 11564 components: - pos: 33.5,-48.5 parent: 2 type: Transform - - uid: 11559 + - uid: 11565 components: - rot: 1.5707963267948966 rad pos: 29.5,-48.5 parent: 2 type: Transform - - uid: 11560 + - uid: 11566 components: - rot: -1.5707963267948966 rad pos: -22.5,-9.5 parent: 2 type: Transform - - uid: 11561 + - uid: 11567 components: - rot: -1.5707963267948966 rad pos: -22.5,-10.5 parent: 2 type: Transform - - uid: 11562 + - uid: 11568 components: - rot: -1.5707963267948966 rad pos: -22.5,-13.5 parent: 2 type: Transform - - uid: 11563 + - uid: 11569 components: - rot: -1.5707963267948966 rad pos: -22.5,-14.5 parent: 2 type: Transform - - uid: 11564 + - uid: 11570 components: - rot: 3.141592653589793 rad pos: -48.5,10.5 parent: 2 type: Transform - - uid: 11565 + - uid: 11571 components: - pos: 44.5,-70.5 parent: 2 type: Transform - - uid: 11566 + - uid: 11572 components: - pos: 43.5,-70.5 parent: 2 type: Transform - - uid: 11567 + - uid: 11573 components: - pos: 42.5,-70.5 parent: 2 type: Transform - - uid: 11568 + - uid: 11574 components: - pos: 41.5,-70.5 parent: 2 type: Transform - - uid: 11569 + - uid: 11575 components: - pos: 37.5,-70.5 parent: 2 type: Transform - - uid: 11570 + - uid: 11576 components: - pos: 36.5,-70.5 parent: 2 type: Transform - - uid: 11571 + - uid: 11577 components: - pos: 35.5,-70.5 parent: 2 type: Transform - - uid: 11572 + - uid: 11578 components: - pos: 34.5,-70.5 parent: 2 type: Transform - - uid: 11573 + - uid: 11579 components: - rot: 3.141592653589793 rad pos: -49.5,10.5 parent: 2 type: Transform - - uid: 11574 + - uid: 11580 components: - rot: 3.141592653589793 rad pos: 23.5,16.5 parent: 2 type: Transform - - uid: 11575 + - uid: 11581 components: - rot: 1.5707963267948966 rad pos: -56.5,-75.5 parent: 2 type: Transform - - uid: 11576 + - uid: 11582 components: - rot: 1.5707963267948966 rad pos: -56.5,-76.5 parent: 2 type: Transform - - uid: 11577 + - uid: 11583 components: - rot: 1.5707963267948966 rad pos: -56.5,-77.5 parent: 2 type: Transform - - uid: 11578 + - uid: 11584 components: - rot: 3.141592653589793 rad pos: -53.5,-82.5 parent: 2 type: Transform - - uid: 11579 + - uid: 11585 components: - rot: 3.141592653589793 rad pos: -55.5,-82.5 parent: 2 type: Transform - - uid: 11580 + - uid: 11586 components: - pos: -53.5,-70.5 parent: 2 type: Transform - - uid: 11581 + - uid: 11587 components: - pos: -54.5,-70.5 parent: 2 type: Transform - - uid: 11582 + - uid: 11588 components: - pos: -55.5,-70.5 parent: 2 type: Transform - - uid: 11583 + - uid: 11589 components: - rot: -1.5707963267948966 rad pos: -36.5,-81.5 parent: 2 type: Transform - - uid: 11584 + - uid: 11590 components: - rot: -1.5707963267948966 rad pos: -36.5,-82.5 parent: 2 type: Transform - - uid: 11585 + - uid: 11591 components: - rot: -1.5707963267948966 rad pos: -36.5,-83.5 parent: 2 type: Transform - - uid: 11586 + - uid: 11592 components: - rot: 1.5707963267948966 rad pos: -47.5,-81.5 parent: 2 type: Transform - - uid: 11587 + - uid: 11593 components: - rot: 1.5707963267948966 rad pos: -47.5,-82.5 parent: 2 type: Transform - - uid: 11588 + - uid: 11594 components: - rot: 1.5707963267948966 rad pos: -47.5,-83.5 parent: 2 type: Transform - - uid: 11589 + - uid: 11595 components: - pos: -54.5,-58.5 parent: 2 type: Transform - - uid: 11590 + - uid: 11596 components: - rot: 1.5707963267948966 rad pos: 69.5,-56.5 parent: 2 type: Transform - - uid: 11591 + - uid: 11597 components: - rot: 3.141592653589793 rad pos: 34.5,-36.5 parent: 2 type: Transform - - uid: 11592 + - uid: 11598 components: - pos: 70.5,-55.5 parent: 2 type: Transform - - uid: 11593 + - uid: 11599 components: - rot: -1.5707963267948966 rad pos: -57.5,-51.5 parent: 2 type: Transform - - uid: 11594 + - uid: 11600 components: - rot: -1.5707963267948966 rad pos: -57.5,-52.5 parent: 2 type: Transform - - uid: 11595 + - uid: 11601 components: - rot: -1.5707963267948966 rad pos: -22.5,24.5 parent: 2 type: Transform - - uid: 11596 + - uid: 11602 components: - rot: -1.5707963267948966 rad pos: -22.5,23.5 parent: 2 type: Transform - - uid: 11597 + - uid: 11603 components: - rot: -1.5707963267948966 rad pos: -22.5,22.5 parent: 2 type: Transform - - uid: 11598 + - uid: 11604 components: - rot: -1.5707963267948966 rad pos: -22.5,19.5 parent: 2 type: Transform - - uid: 11599 + - uid: 11605 components: - rot: -1.5707963267948966 rad pos: -22.5,18.5 parent: 2 type: Transform - - uid: 11600 + - uid: 11606 components: - rot: 3.141592653589793 rad pos: -0.5,34.5 parent: 2 type: Transform - - uid: 11601 + - uid: 11607 components: - rot: 3.141592653589793 rad pos: -1.5,34.5 parent: 2 type: Transform - - uid: 11602 + - uid: 11608 components: - rot: 3.141592653589793 rad pos: -2.5,34.5 parent: 2 type: Transform - - uid: 11603 + - uid: 11609 components: - pos: 4.5,-52.5 parent: 2 type: Transform - - uid: 11604 + - uid: 11610 components: - rot: -1.5707963267948966 rad pos: 65.5,-7.5 parent: 2 type: Transform - - uid: 11605 + - uid: 11611 components: - rot: 3.141592653589793 rad pos: 61.5,-6.5 parent: 2 type: Transform - - uid: 11606 + - uid: 11612 components: - rot: 3.141592653589793 rad pos: 60.5,-6.5 parent: 2 type: Transform - - uid: 11607 + - uid: 11613 components: - pos: 31.5,-60.5 parent: 2 type: Transform - - uid: 11608 + - uid: 11614 components: - rot: 3.141592653589793 rad pos: 30.5,-62.5 parent: 2 type: Transform - - uid: 11609 + - uid: 11615 components: - pos: 30.5,-60.5 parent: 2 type: Transform - - uid: 11610 + - uid: 11616 components: - rot: -1.5707963267948966 rad pos: 65.5,-8.5 parent: 2 type: Transform - - uid: 11611 + - uid: 11617 components: - rot: 3.141592653589793 rad pos: -50.5,10.5 parent: 2 type: Transform - - uid: 11612 + - uid: 11618 components: - rot: 3.141592653589793 rad pos: 25.5,-4.5 parent: 2 type: Transform - - uid: 11613 + - uid: 11619 components: - pos: 71.5,-55.5 parent: 2 type: Transform - - uid: 11614 + - uid: 11620 components: - pos: 23.5,6.5 parent: 2 type: Transform - - uid: 11615 + - uid: 11621 components: - rot: 3.141592653589793 rad pos: -5.5,-16.5 parent: 2 type: Transform - - uid: 11616 + - uid: 11622 components: - rot: 3.141592653589793 rad pos: 30.5,-43.5 parent: 2 type: Transform - - uid: 11617 + - uid: 11623 components: - rot: 3.141592653589793 rad pos: 29.5,-43.5 parent: 2 type: Transform - - uid: 11618 + - uid: 11624 components: - rot: 3.141592653589793 rad pos: 28.5,-43.5 parent: 2 type: Transform - - uid: 11619 + - uid: 11625 components: - rot: 3.141592653589793 rad pos: 18.5,-43.5 parent: 2 type: Transform - - uid: 11620 + - uid: 11626 components: - rot: 3.141592653589793 rad pos: 17.5,-43.5 parent: 2 type: Transform - - uid: 11621 + - uid: 11627 components: - rot: 3.141592653589793 rad pos: 16.5,-43.5 parent: 2 type: Transform - - uid: 11622 + - uid: 11628 components: - rot: 3.141592653589793 rad pos: 44.5,-43.5 parent: 2 type: Transform - - uid: 11623 + - uid: 11629 components: - rot: 3.141592653589793 rad pos: 43.5,-43.5 parent: 2 type: Transform - - uid: 11624 + - uid: 11630 components: - rot: 3.141592653589793 rad pos: 42.5,-43.5 parent: 2 type: Transform - - uid: 11625 + - uid: 11631 components: - pos: 34.5,-34.5 parent: 2 type: Transform - - uid: 11626 + - uid: 11632 components: - pos: 3.5,-40.5 parent: 2 type: Transform - - uid: 11627 + - uid: 11633 components: - pos: -14.5,8.5 parent: 2 type: Transform - - uid: 11628 + - uid: 11634 components: - pos: -15.5,8.5 parent: 2 type: Transform - - uid: 11629 + - uid: 11635 components: - pos: -16.5,8.5 parent: 2 type: Transform - - uid: 11630 + - uid: 11636 components: - rot: 3.141592653589793 rad pos: -40.5,-0.5 parent: 2 type: Transform - - uid: 11631 + - uid: 11637 components: - rot: 3.141592653589793 rad pos: -39.5,-0.5 parent: 2 type: Transform - - uid: 11632 + - uid: 11638 components: - rot: 3.141592653589793 rad pos: -38.5,-0.5 parent: 2 type: Transform - - uid: 11633 + - uid: 11639 components: - rot: 3.141592653589793 rad pos: -36.5,-0.5 parent: 2 type: Transform - - uid: 11634 + - uid: 11640 components: - rot: 3.141592653589793 rad pos: -35.5,-0.5 parent: 2 type: Transform - - uid: 11635 + - uid: 11641 components: - rot: 3.141592653589793 rad pos: -34.5,-0.5 parent: 2 type: Transform - - uid: 11636 + - uid: 11642 components: - rot: -1.5707963267948966 rad pos: -17.5,-70.5 parent: 2 type: Transform - - uid: 11637 + - uid: 11643 components: - rot: -1.5707963267948966 rad pos: -17.5,-71.5 parent: 2 type: Transform - - uid: 11638 + - uid: 11644 components: - rot: 3.141592653589793 rad pos: 31.5,-62.5 parent: 2 type: Transform - - uid: 11639 + - uid: 11645 components: - rot: -1.5707963267948966 rad pos: -18.5,-34.5 parent: 2 type: Transform - - uid: 11640 + - uid: 11646 components: - rot: -1.5707963267948966 rad pos: -18.5,-33.5 parent: 2 type: Transform - - uid: 11641 + - uid: 11647 components: - rot: -1.5707963267948966 rad pos: -18.5,-32.5 parent: 2 type: Transform - - uid: 11642 + - uid: 11648 components: - rot: 1.5707963267948966 rad pos: -34.5,-67.5 parent: 2 type: Transform - - uid: 11643 + - uid: 11649 components: - rot: 3.141592653589793 rad pos: 22.5,16.5 parent: 2 type: Transform - - uid: 11644 + - uid: 11650 components: - rot: 3.141592653589793 rad pos: 21.5,16.5 parent: 2 type: Transform - - uid: 11645 + - uid: 11651 components: - rot: 3.141592653589793 rad pos: 32.5,-18.5 parent: 2 type: Transform - - uid: 11646 + - uid: 11652 components: - rot: 3.141592653589793 rad pos: 31.5,-18.5 parent: 2 type: Transform - - uid: 11647 + - uid: 11653 components: - rot: 3.141592653589793 rad pos: 30.5,-18.5 parent: 2 type: Transform - - uid: 11648 + - uid: 11654 components: - rot: 3.141592653589793 rad pos: 20.5,-18.5 parent: 2 type: Transform - - uid: 11649 + - uid: 11655 components: - rot: 3.141592653589793 rad pos: 19.5,-18.5 parent: 2 type: Transform - - uid: 11650 + - uid: 11656 components: - rot: 3.141592653589793 rad pos: 18.5,-18.5 parent: 2 type: Transform - - uid: 11651 + - uid: 11657 components: - rot: 1.5707963267948966 rad pos: 18.5,1.5 parent: 2 type: Transform - - uid: 11652 + - uid: 11658 components: - rot: 1.5707963267948966 rad pos: 18.5,0.5 parent: 2 type: Transform - - uid: 11653 + - uid: 11659 components: - rot: -1.5707963267948966 rad pos: 57.5,58.5 parent: 2 type: Transform - - uid: 11654 + - uid: 11660 components: - rot: -1.5707963267948966 rad pos: 57.5,57.5 parent: 2 type: Transform - - uid: 11655 + - uid: 11661 components: - rot: -1.5707963267948966 rad pos: 57.5,56.5 parent: 2 type: Transform - - uid: 11656 + - uid: 11662 components: - rot: 1.5707963267948966 rad pos: 51.5,58.5 parent: 2 type: Transform - - uid: 11657 + - uid: 11663 components: - rot: 1.5707963267948966 rad pos: 51.5,57.5 parent: 2 type: Transform - - uid: 11658 + - uid: 11664 components: - rot: 1.5707963267948966 rad pos: 51.5,56.5 parent: 2 type: Transform - - uid: 11659 + - uid: 11665 components: - rot: -1.5707963267948966 rad pos: 55.5,29.5 parent: 2 type: Transform - - uid: 11660 + - uid: 11666 components: - rot: -1.5707963267948966 rad pos: 55.5,28.5 parent: 2 type: Transform - - uid: 11661 + - uid: 11667 components: - rot: 1.5707963267948966 rad pos: 52.5,29.5 parent: 2 type: Transform - - uid: 11662 + - uid: 11668 components: - rot: 1.5707963267948966 rad pos: 52.5,28.5 parent: 2 type: Transform - - uid: 11663 + - uid: 11669 components: - pos: -18.5,67.5 parent: 2 type: Transform - - uid: 11664 + - uid: 11670 components: - pos: -16.5,67.5 parent: 2 type: Transform - - uid: 11665 + - uid: 11671 components: - pos: 6.5,34.5 parent: 2 type: Transform - - uid: 11666 + - uid: 11672 components: - pos: 10.5,34.5 parent: 2 type: Transform - - uid: 11667 + - uid: 11673 components: - pos: -1.5,43.5 parent: 2 type: Transform - - uid: 11668 + - uid: 11674 components: - pos: -3.5,43.5 parent: 2 type: Transform - - uid: 11669 + - uid: 11675 components: - pos: -16.5,63.5 parent: 2 type: Transform - - uid: 11670 + - uid: 11676 components: - pos: -17.5,63.5 parent: 2 type: Transform - - uid: 11671 + - uid: 11677 components: - pos: -18.5,63.5 parent: 2 type: Transform - - uid: 11672 + - uid: 11678 components: - rot: -1.5707963267948966 rad pos: -15.5,62.5 parent: 2 type: Transform - - uid: 11673 + - uid: 11679 components: - rot: -1.5707963267948966 rad pos: -15.5,61.5 parent: 2 type: Transform - - uid: 11674 + - uid: 11680 components: - rot: 1.5707963267948966 rad pos: -19.5,62.5 parent: 2 type: Transform - - uid: 11675 + - uid: 11681 components: - rot: 1.5707963267948966 rad pos: -19.5,61.5 parent: 2 type: Transform - - uid: 11676 + - uid: 11682 components: - rot: 3.141592653589793 rad pos: -18.5,60.5 parent: 2 type: Transform - - uid: 11677 + - uid: 11683 components: - rot: 3.141592653589793 rad pos: -17.5,60.5 parent: 2 type: Transform - - uid: 11678 + - uid: 11684 components: - rot: 3.141592653589793 rad pos: -16.5,60.5 parent: 2 type: Transform - - uid: 11679 + - uid: 11685 components: - rot: -1.5707963267948966 rad pos: -40.5,-90.5 parent: 2 type: Transform - - uid: 11680 + - uid: 11686 components: - rot: -1.5707963267948966 rad pos: -40.5,-89.5 parent: 2 type: Transform - - uid: 11681 + - uid: 11687 components: - rot: 1.5707963267948966 rad pos: -43.5,-89.5 parent: 2 type: Transform - - uid: 11682 + - uid: 11688 components: - rot: 1.5707963267948966 rad pos: -43.5,-90.5 parent: 2 type: Transform - - uid: 11683 + - uid: 11689 components: - pos: -42.5,-97.5 parent: 2 type: Transform - - uid: 11684 + - uid: 11690 components: - rot: -1.5707963267948966 rad pos: -4.5,-99.5 parent: 2 type: Transform - - uid: 11685 + - uid: 11691 components: - pos: -68.5,-42.5 parent: 2 type: Transform - - uid: 11686 + - uid: 11692 components: - pos: -69.5,-42.5 parent: 2 type: Transform - - uid: 11687 + - uid: 11693 components: - rot: 1.5707963267948966 rad pos: -70.5,-43.5 parent: 2 type: Transform - - uid: 11688 + - uid: 11694 components: - rot: 1.5707963267948966 rad pos: -70.5,-44.5 parent: 2 type: Transform - - uid: 11689 + - uid: 11695 components: - rot: 1.5707963267948966 rad pos: 62.5,-7.5 parent: 2 type: Transform - - uid: 11690 + - uid: 11696 components: - rot: 1.5707963267948966 rad pos: 62.5,-8.5 parent: 2 type: Transform - - uid: 11691 + - uid: 11697 components: - rot: 1.5707963267948966 rad pos: 62.5,-9.5 parent: 2 type: Transform - - uid: 11692 + - uid: 11698 components: - pos: 2.5,-40.5 parent: 2 type: Transform - - uid: 11693 + - uid: 11699 components: - pos: 60.5,-64.5 parent: 2 type: Transform - - uid: 11694 + - uid: 11700 components: - pos: 64.5,-66.5 parent: 2 type: Transform - - uid: 11695 + - uid: 11701 components: - pos: 64.5,-64.5 parent: 2 type: Transform - - uid: 11696 + - uid: 11702 components: - pos: 62.5,-66.5 parent: 2 type: Transform - - uid: 11697 + - uid: 11703 components: - pos: 63.5,-66.5 parent: 2 type: Transform - - uid: 11698 + - uid: 11704 components: - pos: 59.5,-66.5 parent: 2 type: Transform - - uid: 11699 + - uid: 11705 components: - pos: 58.5,-66.5 parent: 2 type: Transform - - uid: 11700 + - uid: 11706 components: - pos: 62.5,-62.5 parent: 2 type: Transform - - uid: 11701 + - uid: 11707 components: - pos: 63.5,-62.5 parent: 2 type: Transform - - uid: 11702 + - uid: 11708 components: - pos: 59.5,-62.5 parent: 2 type: Transform - - uid: 11703 + - uid: 11709 components: - pos: 58.5,-62.5 parent: 2 type: Transform - - uid: 11704 + - uid: 11710 components: - pos: 58.5,-64.5 parent: 2 type: Transform - - uid: 11705 + - uid: 11711 components: - pos: 59.5,-64.5 parent: 2 type: Transform - - uid: 11706 + - uid: 11712 components: - pos: 62.5,-64.5 parent: 2 type: Transform - - uid: 11707 + - uid: 11713 components: - pos: 63.5,-64.5 parent: 2 type: Transform - - uid: 11708 + - uid: 11714 components: - pos: 64.5,-62.5 parent: 2 type: Transform - - uid: 11709 + - uid: 11715 components: - pos: 60.5,-62.5 parent: 2 type: Transform - - uid: 11710 + - uid: 11716 components: - pos: 50.5,-32.5 parent: 2 type: Transform - - uid: 11711 + - uid: 11717 components: - pos: 60.5,-66.5 parent: 2 type: Transform - - uid: 11712 + - uid: 11718 components: - rot: 1.5707963267948966 rad pos: 69.5,-57.5 parent: 2 type: Transform - - uid: 11713 + - uid: 11719 components: - rot: -1.5707963267948966 rad pos: 56.5,-67.5 parent: 2 type: Transform - - uid: 11714 + - uid: 11720 components: - rot: 1.5707963267948966 rad pos: 54.5,-67.5 parent: 2 type: Transform - - uid: 11715 + - uid: 11721 components: - rot: 3.141592653589793 rad pos: 45.5,-43.5 parent: 2 type: Transform - - uid: 11716 + - uid: 11722 components: - pos: -5.5,-14.5 parent: 2 type: Transform - - uid: 11717 + - uid: 11723 components: - rot: 3.141592653589793 rad pos: 25.5,-69.5 parent: 2 type: Transform - - uid: 11718 + - uid: 11724 components: - rot: 3.141592653589793 rad pos: 26.5,-69.5 parent: 2 type: Transform - - uid: 11719 + - uid: 11725 components: - pos: 50.5,-71.5 parent: 2 type: Transform - - uid: 11720 + - uid: 11726 components: - rot: 3.141592653589793 rad pos: 50.5,-73.5 parent: 2 type: Transform - - uid: 11721 + - uid: 11727 components: - pos: -37.5,-45.5 parent: 2 type: Transform - - uid: 11722 + - uid: 11728 components: - pos: -36.5,-45.5 parent: 2 type: Transform - proto: ChairFolding entities: - - uid: 11723 + - uid: 11729 components: - rot: -1.5707963267948966 rad pos: 28.5,1.5 parent: 2 type: Transform - - uid: 11724 + - uid: 11730 components: - rot: -1.5707963267948966 rad pos: 28.5,3.5 parent: 2 type: Transform - - uid: 11725 + - uid: 11731 components: - rot: -1.5707963267948966 rad pos: 29.5,1.5 parent: 2 type: Transform - - uid: 11726 + - uid: 11732 components: - rot: -1.5707963267948966 rad pos: 29.5,2.5 parent: 2 type: Transform - - uid: 11727 + - uid: 11733 components: - rot: -1.5707963267948966 rad pos: 29.5,-0.5 parent: 2 type: Transform - - uid: 11728 + - uid: 11734 components: - rot: -1.5707963267948966 rad pos: 28.5,-0.5 parent: 2 type: Transform - - uid: 11729 + - uid: 11735 components: - rot: -1.5707963267948966 rad pos: 28.5,0.5 parent: 2 type: Transform - - uid: 11730 + - uid: 11736 components: - rot: -1.5707963267948966 rad pos: 29.5,0.5 parent: 2 type: Transform - - uid: 11731 + - uid: 11737 components: - rot: -1.5707963267948966 rad pos: 28.5,-1.5 parent: 2 type: Transform - - uid: 11732 + - uid: 11738 components: - rot: -1.5707963267948966 rad pos: 28.5,2.5 parent: 2 type: Transform - - uid: 11733 + - uid: 11739 components: - rot: -1.5707963267948966 rad pos: 18.5,26.5 parent: 2 type: Transform - - uid: 11734 + - uid: 11740 components: - rot: 1.5707963267948966 rad pos: -25.5,53.5 parent: 2 type: Transform - - uid: 11735 + - uid: 11741 components: - pos: -27.5,-28.5 parent: 2 type: Transform - - uid: 11736 + - uid: 11742 components: - pos: -34.5,-69.5 parent: 2 type: Transform - - uid: 11737 + - uid: 11743 components: - pos: -24.5,-95.5 parent: 2 type: Transform - - uid: 11738 + - uid: 11744 components: - pos: -25.5,-95.5 parent: 2 type: Transform - - uid: 11739 + - uid: 11745 components: - pos: -19.5,-95.5 parent: 2 type: Transform - - uid: 11740 + - uid: 11746 components: - pos: -29.5,-28.5 parent: 2 type: Transform - proto: ChairOfficeDark entities: - - uid: 11741 + - uid: 11747 components: - rot: 1.5707963267948966 rad pos: -25.5,54.5 parent: 2 type: Transform - - uid: 11742 + - uid: 11748 components: - rot: -1.5707963267948966 rad pos: 38.5,-3.5 parent: 2 type: Transform - - uid: 11743 + - uid: 11749 components: - rot: -1.5707963267948966 rad pos: 38.5,-4.5 parent: 2 type: Transform - - uid: 11744 + - uid: 11750 components: - rot: -1.5707963267948966 rad pos: 71.5,-36.5 parent: 2 type: Transform - - uid: 11745 + - uid: 11751 components: - rot: 3.141592653589793 rad pos: 68.5,-44.5 parent: 2 type: Transform - - uid: 11746 + - uid: 11752 components: - rot: 1.5707963267948966 rad pos: -27.5,-12.5 parent: 2 type: Transform - - uid: 11747 + - uid: 11753 components: - rot: 3.141592653589793 rad pos: 50.5,-53.5 parent: 2 type: Transform - - uid: 11748 + - uid: 11754 components: - rot: 1.5707963267948966 rad pos: -22.5,-34.5 parent: 2 type: Transform - - uid: 11749 + - uid: 11755 components: - rot: 3.141592653589793 rad pos: 21.5,-45.5 parent: 2 type: Transform - - uid: 11750 + - uid: 11756 components: - rot: -1.5707963267948966 rad pos: -16.5,25.5 parent: 2 type: Transform - - uid: 11751 + - uid: 11757 components: - rot: -1.5707963267948966 rad pos: -27.5,22.5 parent: 2 type: Transform - - uid: 11752 + - uid: 11758 components: - pos: -32.5,30.5 parent: 2 type: Transform - - uid: 11753 + - uid: 11759 components: - rot: 1.5707963267948966 rad pos: 1.5,20.5 parent: 2 type: Transform - - uid: 11754 + - uid: 11760 components: - pos: -33.5,-69.5 parent: 2 type: Transform - - uid: 11755 + - uid: 11761 components: - rot: 1.5707963267948966 rad pos: 72.5,37.5 parent: 2 type: Transform - - uid: 11756 + - uid: 11762 components: - rot: -1.5707963267948966 rad pos: -4.5,-97.5 parent: 2 type: Transform - - uid: 11757 + - uid: 11763 components: - rot: 1.5707963267948966 rad pos: -13.5,-18.5 parent: 2 type: Transform - - uid: 11758 + - uid: 11764 components: - rot: 3.141592653589793 rad pos: 62.5,-31.5 parent: 2 type: Transform - - uid: 11759 + - uid: 11765 components: - rot: 3.141592653589793 rad pos: 73.5,-32.5 parent: 2 type: Transform - - uid: 11760 + - uid: 11766 components: - rot: -1.5707963267948966 rad pos: -16.5,-22.5 @@ -91897,91 +91901,91 @@ entities: type: Transform - proto: ChairOfficeLight entities: - - uid: 11761 + - uid: 11767 components: - rot: 3.141592653589793 rad pos: 27.5,-22.5 parent: 2 type: Transform - - uid: 11762 + - uid: 11768 components: - rot: 3.141592653589793 rad pos: 29.5,-22.5 parent: 2 type: Transform - - uid: 11763 + - uid: 11769 components: - pos: 28.5,-37.5 parent: 2 type: Transform - - uid: 11764 + - uid: 11770 components: - rot: 3.141592653589793 rad pos: 23.5,-22.5 parent: 2 type: Transform - - uid: 11765 + - uid: 11771 components: - rot: 3.141592653589793 rad pos: 21.5,-22.5 parent: 2 type: Transform - - uid: 11766 + - uid: 11772 components: - pos: -23.5,-70.5 parent: 2 type: Transform - - uid: 11767 + - uid: 11773 components: - rot: 3.141592653589793 rad pos: -4.5,-49.5 parent: 2 type: Transform - - uid: 11768 + - uid: 11774 components: - rot: 3.141592653589793 rad pos: 25.5,-25.5 parent: 2 type: Transform - - uid: 11769 + - uid: 11775 components: - pos: -10.5,-36.5 parent: 2 type: Transform - - uid: 11770 + - uid: 11776 components: - rot: 3.141592653589793 rad pos: 17.5,20.5 parent: 2 type: Transform - - uid: 11771 + - uid: 11777 components: - rot: 3.141592653589793 rad pos: 53.5,12.5 parent: 2 type: Transform - - uid: 11772 + - uid: 11778 components: - rot: -1.5707963267948966 rad pos: 52.5,-41.5 parent: 2 type: Transform - - uid: 11773 + - uid: 11779 components: - pos: 42.5,-39.5 parent: 2 type: Transform - - uid: 11774 + - uid: 11780 components: - pos: -26.5,15.5 parent: 2 type: Transform - - uid: 11775 + - uid: 11781 components: - pos: -23.5,12.5 parent: 2 type: Transform - - uid: 11776 + - uid: 11782 components: - rot: 1.5707963267948966 rad pos: 47.5,6.5 @@ -91989,510 +91993,510 @@ entities: type: Transform - proto: ChairPilotSeat entities: - - uid: 11777 + - uid: 11783 components: - rot: 3.141592653589793 rad pos: 25.5,-22.5 parent: 2 type: Transform - - uid: 11778 + - uid: 11784 components: - rot: 3.141592653589793 rad pos: 16.5,23.5 parent: 2 type: Transform - - uid: 11779 + - uid: 11785 components: - pos: 25.5,20.5 parent: 2 type: Transform - - uid: 11780 + - uid: 11786 components: - rot: 3.141592653589793 rad pos: 62.5,-54.5 parent: 2 type: Transform - - uid: 11781 + - uid: 11787 components: - rot: 3.141592653589793 rad pos: 31.5,-47.5 parent: 2 type: Transform - - uid: 11782 + - uid: 11788 components: - pos: 62.5,-0.5 parent: 2 type: Transform - - uid: 11783 + - uid: 11789 components: - pos: 59.5,-0.5 parent: 2 type: Transform - - uid: 11784 + - uid: 11790 components: - pos: 61.5,-0.5 parent: 2 type: Transform - - uid: 11785 + - uid: 11791 components: - pos: 60.5,-0.5 parent: 2 type: Transform - - uid: 11786 + - uid: 11792 components: - rot: -1.5707963267948966 rad pos: -54.5,-13.5 parent: 2 type: Transform - - uid: 11787 + - uid: 11793 components: - rot: -1.5707963267948966 rad pos: 31.5,-28.5 parent: 2 type: Transform - - uid: 11788 + - uid: 11794 components: - rot: 1.5707963267948966 rad pos: -52.5,-87.5 parent: 2 type: Transform - - uid: 11789 + - uid: 11795 components: - pos: 54.5,58.5 parent: 2 type: Transform - proto: ChairWood entities: - - uid: 11790 + - uid: 11796 components: - pos: 9.5,-5.5 parent: 2 type: Transform - - uid: 11791 + - uid: 11797 components: - rot: 1.5707963267948966 rad pos: 8.5,-6.5 parent: 2 type: Transform - - uid: 11792 + - uid: 11798 components: - rot: 1.5707963267948966 rad pos: 8.5,-7.5 parent: 2 type: Transform - - uid: 11793 + - uid: 11799 components: - rot: -1.5707963267948966 rad pos: 3.5,1.5 parent: 2 type: Transform - - uid: 11794 + - uid: 11800 components: - rot: 1.5707963267948966 rad pos: 1.5,1.5 parent: 2 type: Transform - - uid: 11795 + - uid: 11801 components: - rot: -1.5707963267948966 rad pos: 11.5,-7.5 parent: 2 type: Transform - - uid: 11796 + - uid: 11802 components: - pos: 10.5,-5.5 parent: 2 type: Transform - - uid: 11797 + - uid: 11803 components: - rot: 3.141592653589793 rad pos: 10.5,-8.5 parent: 2 type: Transform - - uid: 11798 + - uid: 11804 components: - rot: 1.5707963267948966 rad pos: 10.5,7.5 parent: 2 type: Transform - - uid: 11799 + - uid: 11805 components: - rot: 3.141592653589793 rad pos: 9.5,-8.5 parent: 2 type: Transform - - uid: 11800 + - uid: 11806 components: - rot: -1.5707963267948966 rad pos: 11.5,-6.5 parent: 2 type: Transform - - uid: 11801 + - uid: 11807 components: - rot: 1.5707963267948966 rad pos: 1.5,0.5 parent: 2 type: Transform - - uid: 11802 + - uid: 11808 components: - rot: -1.5707963267948966 rad pos: 3.5,0.5 parent: 2 type: Transform - - uid: 11803 + - uid: 11809 components: - rot: -1.5707963267948966 rad pos: 12.5,8.5 parent: 2 type: Transform - - uid: 11804 + - uid: 11810 components: - rot: -1.5707963267948966 rad pos: 18.5,27.5 parent: 2 type: Transform - - uid: 11805 + - uid: 11811 components: - pos: -1.5,-16.5 parent: 2 type: Transform - - uid: 11806 + - uid: 11812 components: - pos: 11.5,12.5 parent: 2 type: Transform - - uid: 11807 + - uid: 11813 components: - pos: 12.5,12.5 parent: 2 type: Transform - - uid: 11808 + - uid: 11814 components: - rot: -1.5707963267948966 rad pos: 12.5,7.5 parent: 2 type: Transform - - uid: 11809 + - uid: 11815 components: - rot: 3.141592653589793 rad pos: 12.5,10.5 parent: 2 type: Transform - - uid: 11810 + - uid: 11816 components: - rot: 3.141592653589793 rad pos: 11.5,10.5 parent: 2 type: Transform - - uid: 11811 + - uid: 11817 components: - rot: 1.5707963267948966 rad pos: -9.5,1.5 parent: 2 type: Transform - - uid: 11812 + - uid: 11818 components: - rot: 1.5707963267948966 rad pos: -9.5,0.5 parent: 2 type: Transform - - uid: 11813 + - uid: 11819 components: - rot: 1.5707963267948966 rad pos: 10.5,8.5 parent: 2 type: Transform - - uid: 11814 + - uid: 11820 components: - rot: 1.5707963267948966 rad pos: 53.5,-26.5 parent: 2 type: Transform - - uid: 11815 + - uid: 11821 components: - rot: -1.5707963267948966 rad pos: -32.5,-67.5 parent: 2 type: Transform - - uid: 11816 + - uid: 11822 components: - rot: 3.141592653589793 rad pos: -36.5,9.5 parent: 2 type: Transform - - uid: 11817 + - uid: 11823 components: - rot: 3.141592653589793 rad pos: -35.5,9.5 parent: 2 type: Transform - - uid: 11818 + - uid: 11824 components: - rot: 3.141592653589793 rad pos: -36.5,10.5 parent: 2 type: Transform - - uid: 11819 + - uid: 11825 components: - rot: 3.141592653589793 rad pos: -35.5,10.5 parent: 2 type: Transform - - uid: 11820 + - uid: 11826 components: - rot: 3.141592653589793 rad pos: -35.5,11.5 parent: 2 type: Transform - - uid: 11821 + - uid: 11827 components: - rot: 3.141592653589793 rad pos: -36.5,11.5 parent: 2 type: Transform - - uid: 11822 + - uid: 11828 components: - rot: 3.141592653589793 rad pos: -36.5,12.5 parent: 2 type: Transform - - uid: 11823 + - uid: 11829 components: - rot: 3.141592653589793 rad pos: -35.5,12.5 parent: 2 type: Transform - - uid: 11824 + - uid: 11830 components: - rot: 3.141592653589793 rad pos: -39.5,12.5 parent: 2 type: Transform - - uid: 11825 + - uid: 11831 components: - rot: 3.141592653589793 rad pos: -40.5,11.5 parent: 2 type: Transform - - uid: 11826 + - uid: 11832 components: - rot: 3.141592653589793 rad pos: -39.5,11.5 parent: 2 type: Transform - - uid: 11827 + - uid: 11833 components: - rot: 3.141592653589793 rad pos: -40.5,10.5 parent: 2 type: Transform - - uid: 11828 + - uid: 11834 components: - rot: 3.141592653589793 rad pos: -39.5,10.5 parent: 2 type: Transform - - uid: 11829 + - uid: 11835 components: - rot: 3.141592653589793 rad pos: -40.5,9.5 parent: 2 type: Transform - - uid: 11830 + - uid: 11836 components: - rot: 3.141592653589793 rad pos: -39.5,9.5 parent: 2 type: Transform - - uid: 11831 + - uid: 11837 components: - rot: 3.141592653589793 rad pos: -40.5,12.5 parent: 2 type: Transform - - uid: 11832 + - uid: 11838 components: - rot: 3.141592653589793 rad pos: -3.5,51.5 parent: 2 type: Transform - - uid: 11833 + - uid: 11839 components: - pos: -3.5,53.5 parent: 2 type: Transform - - uid: 11834 + - uid: 11840 components: - pos: -17.5,43.5 parent: 2 type: Transform - - uid: 11835 + - uid: 11841 components: - pos: -16.5,43.5 parent: 2 type: Transform - - uid: 11836 + - uid: 11842 components: - rot: 3.141592653589793 rad pos: -17.5,40.5 parent: 2 type: Transform - - uid: 11837 + - uid: 11843 components: - rot: -1.5707963267948966 rad pos: -7.5,1.5 parent: 2 type: Transform - - uid: 11838 + - uid: 11844 components: - rot: -1.5707963267948966 rad pos: -7.5,0.5 parent: 2 type: Transform - - uid: 11839 + - uid: 11845 components: - rot: 1.5707963267948966 rad pos: -5.5,1.5 parent: 2 type: Transform - - uid: 11840 + - uid: 11846 components: - rot: 1.5707963267948966 rad pos: -5.5,0.5 parent: 2 type: Transform - - uid: 11841 + - uid: 11847 components: - rot: -1.5707963267948966 rad pos: -3.5,1.5 parent: 2 type: Transform - - uid: 11842 + - uid: 11848 components: - rot: -1.5707963267948966 rad pos: -3.5,0.5 parent: 2 type: Transform - - uid: 11843 + - uid: 11849 components: - rot: 3.141592653589793 rad pos: -16.5,40.5 parent: 2 type: Transform - - uid: 11844 + - uid: 11850 components: - rot: 1.5707963267948966 rad pos: -15.5,47.5 parent: 2 type: Transform - - uid: 11845 + - uid: 11851 components: - rot: -1.5707963267948966 rad pos: 46.5,-16.5 parent: 2 type: Transform - - uid: 11846 + - uid: 11852 components: - rot: -1.5707963267948966 rad pos: 9.5,32.5 parent: 2 type: Transform - - uid: 11847 + - uid: 11853 components: - rot: 1.5707963267948966 rad pos: 7.5,32.5 parent: 2 type: Transform - - uid: 11848 + - uid: 11854 components: - rot: 3.141592653589793 rad pos: -11.5,34.5 parent: 2 type: Transform - - uid: 11849 + - uid: 11855 components: - rot: -1.5707963267948966 rad pos: 41.5,43.5 parent: 2 type: Transform - - uid: 11850 + - uid: 11856 components: - rot: -1.5707963267948966 rad pos: 39.5,46.5 parent: 2 type: Transform - - uid: 11851 + - uid: 11857 components: - rot: -1.5707963267948966 rad pos: 39.5,45.5 parent: 2 type: Transform - - uid: 11852 + - uid: 11858 components: - rot: 1.5707963267948966 rad pos: 36.5,46.5 parent: 2 type: Transform - - uid: 11853 + - uid: 11859 components: - rot: 1.5707963267948966 rad pos: 36.5,45.5 parent: 2 type: Transform - - uid: 11854 + - uid: 11860 components: - rot: 3.141592653589793 rad pos: 42.5,47.5 parent: 2 type: Transform - - uid: 11855 + - uid: 11861 components: - rot: 3.141592653589793 rad pos: 43.5,47.5 parent: 2 type: Transform - - uid: 11856 + - uid: 11862 components: - rot: -1.5707963267948966 rad pos: 33.5,47.5 parent: 2 type: Transform - - uid: 11857 + - uid: 11863 components: - rot: -1.5707963267948966 rad pos: 33.5,46.5 parent: 2 type: Transform - - uid: 11858 + - uid: 11864 components: - rot: 1.5707963267948966 rad pos: 32.5,44.5 parent: 2 type: Transform - - uid: 11859 + - uid: 11865 components: - rot: -1.5707963267948966 rad pos: 34.5,44.5 parent: 2 type: Transform - - uid: 11860 + - uid: 11866 components: - rot: 1.5707963267948966 rad pos: 39.5,43.5 parent: 2 type: Transform - - uid: 11861 + - uid: 11867 components: - pos: -41.5,-97.5 parent: 2 type: Transform - - uid: 11862 + - uid: 11868 components: - rot: -1.5707963267948966 rad pos: 4.5,-35.5 parent: 2 type: Transform - - uid: 11863 + - uid: 11869 components: - rot: 1.5707963267948966 rad pos: 2.5,-35.5 @@ -92500,98 +92504,98 @@ entities: type: Transform - proto: CheapLighter entities: - - uid: 11865 + - uid: 11871 components: - flags: InContainer type: MetaData - - parent: 11864 + - parent: 11870 type: Transform - canCollide: False type: Physics - - uid: 11866 + - uid: 11872 components: - pos: 1.9080955,23.554485 parent: 2 type: Transform - proto: CheapRollerBed entities: - - uid: 11867 + - uid: 11873 components: - pos: -9.460541,-47.24853 parent: 2 type: Transform - - uid: 11868 + - uid: 11874 components: - pos: -9.476166,-48.27978 parent: 2 type: Transform - proto: chem_master entities: - - uid: 11869 + - uid: 11875 components: - pos: 2.5,-45.5 parent: 2 type: Transform - - uid: 11870 + - uid: 11876 components: - pos: 2.5,-50.5 parent: 2 type: Transform - - uid: 11871 + - uid: 11877 components: - pos: 2.5,-47.5 parent: 2 type: Transform - proto: ChemDispenser entities: - - uid: 11872 + - uid: 11878 components: - pos: 4.5,-45.5 parent: 2 type: Transform - - uid: 11873 + - uid: 11879 components: - pos: 4.5,-47.5 parent: 2 type: Transform - - uid: 11874 + - uid: 11880 components: - pos: 2.5,-49.5 parent: 2 type: Transform - proto: ChemistryHotplate entities: - - uid: 11875 + - uid: 11881 components: - pos: 4.5,-50.5 parent: 2 type: Transform - proto: ChessBoard entities: - - uid: 11876 + - uid: 11882 components: - pos: 52.446415,7.1683345 parent: 2 type: Transform - - uid: 11877 + - uid: 11883 components: - rot: 3.141592653589793 rad pos: -5.5158696,-15.414865 parent: 2 type: Transform - - uid: 11878 + - uid: 11884 components: - rot: 1.5707963267948966 rad pos: 8.516274,32.607613 parent: 2 type: Transform - - uid: 11879 + - uid: 11885 components: - rot: 3.141592653589793 rad pos: -3.4812293,52.59116 parent: 2 type: Transform - - uid: 11880 + - uid: 11886 components: - rot: 3.141592653589793 rad pos: 50.48214,-72.40164 @@ -92599,7 +92603,7 @@ entities: type: Transform - proto: ChurchOrganInstrument entities: - - uid: 11881 + - uid: 11887 components: - rot: -1.5707963267948966 rad pos: -34.5,13.5 @@ -92607,51 +92611,51 @@ entities: type: Transform - proto: Cigar entities: - - uid: 11882 + - uid: 11888 components: - pos: 13.506795,-34.413578 parent: 2 type: Transform - - uid: 11883 + - uid: 11889 components: - pos: 13.55367,-32.429203 parent: 2 type: Transform - - uid: 11884 + - uid: 11890 components: - pos: 13.49117,-32.382328 parent: 2 type: Transform - - uid: 11885 + - uid: 11891 components: - pos: 13.444295,-34.351078 parent: 2 type: Transform - proto: CigarCase entities: - - uid: 11886 + - uid: 11892 components: - pos: -12.420865,-35.409706 parent: 2 type: Transform - - uid: 11887 + - uid: 11893 components: - pos: 15.66736,-87.50202 parent: 2 type: Transform - proto: Cigarette entities: - - uid: 11888 + - uid: 11894 components: - pos: 15.438844,-64.32231 parent: 2 type: Transform - - uid: 11889 + - uid: 11895 components: - pos: 63.44384,24.664883 parent: 2 type: Transform - - uid: 11890 + - uid: 11896 components: - rot: -1.5707963267948966 rad pos: 2.361197,23.616985 @@ -92659,34 +92663,34 @@ entities: type: Transform - proto: CigarGold entities: - - uid: 11891 + - uid: 11897 components: - rot: -1.5707963267948966 rad pos: 45.625916,-26.476032 parent: 2 type: Transform - - uid: 11892 + - uid: 11898 components: - pos: 65.5063,-0.5499393 parent: 2 type: Transform - proto: CigarGoldCase entities: - - uid: 11893 + - uid: 11899 components: - pos: 61.545517,-1.3427625 parent: 2 type: Transform - proto: CigPackBlue entities: - - uid: 11894 + - uid: 11900 components: - pos: 47.844124,50.55344 parent: 2 type: Transform - proto: CircuitImprinter entities: - - uid: 11895 + - uid: 11901 components: - pos: 44.5,-35.5 parent: 2 @@ -92698,14 +92702,14 @@ entities: type: MaterialStorage - proto: ClockworkShield entities: - - uid: 11896 + - uid: 11902 components: - pos: 57.48767,32.508053 parent: 2 type: Transform - proto: ClosetBombFilled entities: - - uid: 11897 + - uid: 11903 components: - pos: 26.5,31.5 parent: 2 @@ -92728,14 +92732,14 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11898 + - uid: 11904 components: - pos: 51.5,-49.5 parent: 2 type: Transform - proto: ClosetEmergencyFilledRandom entities: - - uid: 11899 + - uid: 11905 components: - pos: -52.5,-80.5 parent: 2 @@ -92758,7 +92762,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11900 + - uid: 11906 components: - pos: -12.5,10.5 parent: 2 @@ -92781,7 +92785,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11901 + - uid: 11907 components: - pos: -18.5,-51.5 parent: 2 @@ -92804,7 +92808,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11902 + - uid: 11908 components: - pos: 21.5,-52.5 parent: 2 @@ -92827,7 +92831,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11903 + - uid: 11909 components: - pos: 24.5,-56.5 parent: 2 @@ -92850,7 +92854,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11904 + - uid: 11910 components: - pos: -5.5,-68.5 parent: 2 @@ -92873,7 +92877,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11905 + - uid: 11911 components: - pos: 38.5,-32.5 parent: 2 @@ -92896,7 +92900,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11906 + - uid: 11912 components: - pos: -25.5,52.5 parent: 2 @@ -92919,7 +92923,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11907 + - uid: 11913 components: - pos: 5.5,-69.5 parent: 2 @@ -92942,7 +92946,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11908 + - uid: 11914 components: - pos: -11.5,-30.5 parent: 2 @@ -92965,7 +92969,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11909 + - uid: 11915 components: - pos: 57.5,-14.5 parent: 2 @@ -92988,7 +92992,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11910 + - uid: 11916 components: - pos: 52.5,-50.5 parent: 2 @@ -93011,7 +93015,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11911 + - uid: 11917 components: - pos: -2.5,-11.5 parent: 2 @@ -93034,12 +93038,12 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11912 + - uid: 11918 components: - pos: 43.5,-74.5 parent: 2 type: Transform - - uid: 11913 + - uid: 11919 components: - pos: 11.5,-69.5 parent: 2 @@ -93062,12 +93066,12 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11914 + - uid: 11920 components: - pos: 27.5,-80.5 parent: 2 type: Transform - - uid: 11915 + - uid: 11921 components: - pos: -23.5,-31.5 parent: 2 @@ -93090,12 +93094,12 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11916 + - uid: 11922 components: - pos: 47.5,-92.5 parent: 2 type: Transform - - uid: 11917 + - uid: 11923 components: - pos: -54.5,-5.5 parent: 2 @@ -93118,12 +93122,12 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11918 + - uid: 11924 components: - pos: 31.5,-92.5 parent: 2 type: Transform - - uid: 11919 + - uid: 11925 components: - pos: -57.5,-32.5 parent: 2 @@ -93146,7 +93150,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11920 + - uid: 11926 components: - pos: 17.5,34.5 parent: 2 @@ -93169,7 +93173,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11921 + - uid: 11927 components: - pos: 63.5,-5.5 parent: 2 @@ -93192,7 +93196,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11922 + - uid: 11928 components: - pos: 18.5,-39.5 parent: 2 @@ -93215,7 +93219,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11923 + - uid: 11929 components: - pos: 3.5,-25.5 parent: 2 @@ -93238,7 +93242,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11924 + - uid: 11930 components: - pos: -22.5,-6.5 parent: 2 @@ -93261,7 +93265,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11925 + - uid: 11931 components: - pos: 47.5,-15.5 parent: 2 @@ -93284,7 +93288,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11926 + - uid: 11932 components: - pos: 16.5,-5.5 parent: 2 @@ -93307,7 +93311,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11927 + - uid: 11933 components: - pos: -31.5,-0.5 parent: 2 @@ -93330,7 +93334,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11928 + - uid: 11934 components: - pos: -17.5,38.5 parent: 2 @@ -93353,7 +93357,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11929 + - uid: 11935 components: - pos: -12.5,47.5 parent: 2 @@ -93376,7 +93380,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11930 + - uid: 11936 components: - pos: 50.5,40.5 parent: 2 @@ -93399,7 +93403,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11931 + - uid: 11937 components: - pos: 65.5,1.5 parent: 2 @@ -93422,17 +93426,17 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11932 + - uid: 11938 components: - pos: -15.5,67.5 parent: 2 type: Transform - - uid: 11933 + - uid: 11939 components: - pos: -19.5,67.5 parent: 2 type: Transform - - uid: 11934 + - uid: 11940 components: - pos: -12.5,49.5 parent: 2 @@ -93455,7 +93459,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11935 + - uid: 11941 components: - pos: -26.5,28.5 parent: 2 @@ -93478,7 +93482,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11936 + - uid: 11942 components: - pos: -36.5,-93.5 parent: 2 @@ -93501,7 +93505,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11937 + - uid: 11943 components: - pos: 9.5,-36.5 parent: 2 @@ -93524,7 +93528,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11938 + - uid: 11944 components: - pos: 74.5,-51.5 parent: 2 @@ -93547,7 +93551,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11939 + - uid: 11945 components: - pos: 42.5,-62.5 parent: 2 @@ -93570,7 +93574,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11940 + - uid: 11946 components: - pos: -10.5,-8.5 parent: 2 @@ -93593,7 +93597,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11941 + - uid: 11947 components: - pos: 41.5,-27.5 parent: 2 @@ -93616,19 +93620,19 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11942 + - uid: 11948 components: - pos: 20.5,-21.5 parent: 2 type: Transform - - uid: 11943 + - uid: 11949 components: - pos: -47.5,41.5 parent: 2 type: Transform - proto: ClosetFireFilled entities: - - uid: 11944 + - uid: 11950 components: - pos: -13.5,10.5 parent: 2 @@ -93651,7 +93655,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11945 + - uid: 11951 components: - pos: -11.5,-45.5 parent: 2 @@ -93674,7 +93678,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11946 + - uid: 11952 components: - pos: -11.5,-73.5 parent: 2 @@ -93697,7 +93701,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11947 + - uid: 11953 components: - pos: 22.5,-52.5 parent: 2 @@ -93720,7 +93724,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11948 + - uid: 11954 components: - pos: 24.5,-55.5 parent: 2 @@ -93743,7 +93747,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11949 + - uid: 11955 components: - pos: -25.5,51.5 parent: 2 @@ -93766,7 +93770,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11950 + - uid: 11956 components: - pos: -12.5,-30.5 parent: 2 @@ -93789,7 +93793,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11951 + - uid: 11957 components: - pos: -2.5,-12.5 parent: 2 @@ -93812,7 +93816,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11952 + - uid: 11958 components: - pos: -52.5,-72.5 parent: 2 @@ -93835,7 +93839,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11953 + - uid: 11959 components: - pos: -55.5,-66.5 parent: 2 @@ -93858,7 +93862,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11954 + - uid: 11960 components: - pos: -57.5,-45.5 parent: 2 @@ -93881,7 +93885,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11955 + - uid: 11961 components: - pos: -23.5,-41.5 parent: 2 @@ -93904,7 +93908,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11956 + - uid: 11962 components: - pos: 22.5,-8.5 parent: 2 @@ -93927,7 +93931,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11957 + - uid: 11963 components: - pos: 62.5,-5.5 parent: 2 @@ -93950,7 +93954,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11958 + - uid: 11964 components: - pos: 19.5,-39.5 parent: 2 @@ -93973,7 +93977,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11959 + - uid: 11965 components: - pos: -23.5,-6.5 parent: 2 @@ -93996,7 +94000,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11960 + - uid: 11966 components: - pos: 16.5,-6.5 parent: 2 @@ -94019,7 +94023,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11961 + - uid: 11967 components: - pos: -32.5,-0.5 parent: 2 @@ -94042,7 +94046,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11962 + - uid: 11968 components: - pos: 2.5,-25.5 parent: 2 @@ -94065,7 +94069,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11963 + - uid: 11969 components: - pos: -11.5,47.5 parent: 2 @@ -94088,7 +94092,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11964 + - uid: 11970 components: - pos: 49.5,40.5 parent: 2 @@ -94111,7 +94115,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11965 + - uid: 11971 components: - pos: -43.5,37.5 parent: 2 @@ -94134,7 +94138,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11966 + - uid: 11972 components: - pos: -31.5,-41.5 parent: 2 @@ -94157,7 +94161,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11967 + - uid: 11973 components: - pos: -27.5,28.5 parent: 2 @@ -94180,7 +94184,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11968 + - uid: 11974 components: - pos: -35.5,-93.5 parent: 2 @@ -94203,7 +94207,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11969 + - uid: 11975 components: - pos: 9.5,-37.5 parent: 2 @@ -94226,7 +94230,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11970 + - uid: 11976 components: - pos: 74.5,-52.5 parent: 2 @@ -94249,7 +94253,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11971 + - uid: 11977 components: - pos: 64.5,-31.5 parent: 2 @@ -94272,7 +94276,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11972 + - uid: 11978 components: - pos: 35.5,-74.5 parent: 2 @@ -94295,24 +94299,24 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11973 + - uid: 11979 components: - pos: 29.5,-92.5 parent: 2 type: Transform - - uid: 11974 + - uid: 11980 components: - pos: 49.5,-92.5 parent: 2 type: Transform - - uid: 11975 + - uid: 11981 components: - pos: 28.5,-80.5 parent: 2 type: Transform - proto: ClosetJanitorFilled entities: - - uid: 11976 + - uid: 11982 components: - pos: -10.5,-18.5 parent: 2 @@ -94337,7 +94341,7 @@ entities: type: EntityStorage - proto: ClosetL3JanitorFilled entities: - - uid: 11977 + - uid: 11983 components: - pos: -10.5,-17.5 parent: 2 @@ -94362,7 +94366,7 @@ entities: type: EntityStorage - proto: ClosetL3VirologyFilled entities: - - uid: 11978 + - uid: 11984 components: - pos: -18.5,-63.5 parent: 2 @@ -94385,7 +94389,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11979 + - uid: 11985 components: - pos: -22.5,-79.5 parent: 2 @@ -94410,7 +94414,7 @@ entities: type: EntityStorage - proto: ClosetMaintenance entities: - - uid: 11980 + - uid: 11986 components: - pos: -22.5,-38.5 parent: 2 @@ -94433,7 +94437,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11981 + - uid: 11987 components: - pos: -44.5,-31.5 parent: 2 @@ -94456,7 +94460,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11982 + - uid: 11988 components: - pos: -41.5,-30.5 parent: 2 @@ -94479,7 +94483,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11983 + - uid: 11989 components: - pos: 14.5,39.5 parent: 2 @@ -94502,7 +94506,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11984 + - uid: 11990 components: - pos: -19.5,56.5 parent: 2 @@ -94527,12 +94531,12 @@ entities: type: EntityStorage - proto: ClosetMaintenanceFilledRandom entities: - - uid: 11985 + - uid: 11991 components: - pos: 12.5,-51.5 parent: 2 type: Transform - - uid: 11986 + - uid: 11992 components: - pos: 6.5,-9.5 parent: 2 @@ -94555,7 +94559,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11987 + - uid: 11993 components: - pos: -5.5,-73.5 parent: 2 @@ -94578,7 +94582,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11988 + - uid: 11994 components: - pos: -19.5,58.5 parent: 2 @@ -94601,7 +94605,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11989 + - uid: 11995 components: - pos: 16.5,-72.5 parent: 2 @@ -94624,7 +94628,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11990 + - uid: 11996 components: - pos: -15.5,-12.5 parent: 2 @@ -94647,7 +94651,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11991 + - uid: 11997 components: - pos: -54.5,-66.5 parent: 2 @@ -94670,7 +94674,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11992 + - uid: 11998 components: - pos: -37.5,-67.5 parent: 2 @@ -94693,7 +94697,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11993 + - uid: 11999 components: - pos: -29.5,-57.5 parent: 2 @@ -94716,7 +94720,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11994 + - uid: 12000 components: - pos: -29.5,-39.5 parent: 2 @@ -94739,7 +94743,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11995 + - uid: 12001 components: - pos: -28.5,-67.5 parent: 2 @@ -94762,7 +94766,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11996 + - uid: 12002 components: - pos: -56.5,-32.5 parent: 2 @@ -94785,7 +94789,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11997 + - uid: 12003 components: - pos: 36.5,-12.5 parent: 2 @@ -94808,7 +94812,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11998 + - uid: 12004 components: - pos: -22.5,-28.5 parent: 2 @@ -94831,7 +94835,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11999 + - uid: 12005 components: - pos: 11.5,25.5 parent: 2 @@ -94854,7 +94858,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12000 + - uid: 12006 components: - pos: 0.5,34.5 parent: 2 @@ -94877,7 +94881,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12001 + - uid: 12007 components: - pos: -3.5,19.5 parent: 2 @@ -94900,7 +94904,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12002 + - uid: 12008 components: - pos: 55.5,-3.5 parent: 2 @@ -94923,7 +94927,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12003 + - uid: 12009 components: - pos: -27.5,-67.5 parent: 2 @@ -94946,7 +94950,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12004 + - uid: 12010 components: - pos: 39.5,-15.5 parent: 2 @@ -94969,7 +94973,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12005 + - uid: 12011 components: - pos: 58.5,29.5 parent: 2 @@ -94992,7 +94996,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12006 + - uid: 12012 components: - pos: -31.5,38.5 parent: 2 @@ -95015,7 +95019,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12007 + - uid: 12013 components: - pos: -12.5,29.5 parent: 2 @@ -95038,7 +95042,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12008 + - uid: 12014 components: - pos: -43.5,-94.5 parent: 2 @@ -95061,7 +95065,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12009 + - uid: 12015 components: - pos: 48.5,-35.5 parent: 2 @@ -95084,7 +95088,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12010 + - uid: 12016 components: - pos: 72.5,-55.5 parent: 2 @@ -95107,7 +95111,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12011 + - uid: 12017 components: - pos: -9.5,-8.5 parent: 2 @@ -95130,14 +95134,14 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12012 + - uid: 12018 components: - pos: 7.5,-78.5 parent: 2 type: Transform - proto: ClosetRadiationSuitFilled entities: - - uid: 12013 + - uid: 12019 components: - pos: -59.5,-23.5 parent: 2 @@ -95160,7 +95164,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12014 + - uid: 12020 components: - pos: -60.5,-23.5 parent: 2 @@ -95183,7 +95187,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12015 + - uid: 12021 components: - pos: 70.5,-35.5 parent: 2 @@ -95208,7 +95212,7 @@ entities: type: EntityStorage - proto: ClosetToolFilled entities: - - uid: 12016 + - uid: 12022 components: - pos: -26.5,-21.5 parent: 2 @@ -95231,7 +95235,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12017 + - uid: 12023 components: - pos: -22.5,-31.5 parent: 2 @@ -95241,7 +95245,7 @@ entities: type: EntityStorage - proto: ClosetWall entities: - - uid: 12018 + - uid: 12024 components: - pos: 53.5,-33.5 parent: 2 @@ -95264,7 +95268,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12019 + - uid: 12025 components: - pos: 47.5,-64.5 parent: 2 @@ -95287,7 +95291,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12020 + - uid: 12026 components: - pos: 45.5,-32.5 parent: 2 @@ -95312,7 +95316,7 @@ entities: type: EntityStorage - proto: ClosetWallMaintenanceFilledRandom entities: - - uid: 12021 + - uid: 12027 components: - pos: -15.5,-33.5 parent: 2 @@ -95335,7 +95339,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12022 + - uid: 12028 components: - pos: -52.5,-26.5 parent: 2 @@ -95360,196 +95364,196 @@ entities: type: EntityStorage - proto: ClothingBackpack entities: - - uid: 12023 + - uid: 12029 components: - pos: -56.640278,-27.45032 parent: 2 type: Transform - proto: ClothingBackpackDuffelCaptain entities: - - uid: 12024 + - uid: 12030 components: - pos: 30.440884,-27.760664 parent: 2 type: Transform - proto: ClothingBackpackDuffelMedical entities: - - uid: 12025 + - uid: 12031 components: - pos: -2.4848266,-48.830677 parent: 2 type: Transform - - uid: 12026 + - uid: 12032 components: - pos: -16.552103,-49.311478 parent: 2 type: Transform - proto: ClothingBackpackDuffelSecurity entities: - - uid: 12027 + - uid: 12033 components: - pos: 5.4199524,15.682768 parent: 2 type: Transform - proto: ClothingBackpackDuffelSurgeryFilled entities: - - uid: 12028 + - uid: 12034 components: - pos: -6.4692874,-100.35278 parent: 2 type: Transform - - uid: 12029 + - uid: 12035 components: - pos: -3.4849787,-66.40156 parent: 2 type: Transform - proto: ClothingBackpackMedical entities: - - uid: 12030 + - uid: 12036 components: - pos: 0.5470823,-61.419598 parent: 2 type: Transform - proto: ClothingBackpackSatchel entities: - - uid: 12031 + - uid: 12037 components: - pos: -48.296333,5.808547 parent: 2 type: Transform - proto: ClothingBackpackSatchelMedical entities: - - uid: 12032 + - uid: 12038 components: - pos: -11.364604,-50.389603 parent: 2 type: Transform - proto: ClothingBackpackVirology entities: - - uid: 12033 + - uid: 12039 components: - pos: -31.439095,-73.39239 parent: 2 type: Transform - proto: ClothingBeltMedicalFilled entities: - - uid: 12034 + - uid: 12040 components: - pos: -11.470623,-49.143177 parent: 2 type: Transform - proto: ClothingBeltUtility entities: - - uid: 12035 + - uid: 12041 components: - pos: 47.423275,49.588562 parent: 2 type: Transform - - uid: 12036 + - uid: 12042 components: - pos: -34.379585,-20.389349 parent: 2 type: Transform - - uid: 12037 + - uid: 12043 components: - pos: -46.524574,-30.537275 parent: 2 type: Transform - - uid: 12038 + - uid: 12044 components: - pos: -3.42201,34.480587 parent: 2 type: Transform - - uid: 12039 + - uid: 12045 components: - pos: -4.6075964,19.605381 parent: 2 type: Transform - proto: ClothingBeltUtilityFilled entities: - - uid: 12040 + - uid: 12046 components: - pos: 41.37638,-39.3584 parent: 2 type: Transform - - uid: 12041 + - uid: 12047 components: - pos: -23.834581,-24.4156 parent: 2 type: Transform - - uid: 12042 + - uid: 12048 components: - pos: -30.494818,-37.432365 parent: 2 type: Transform - - uid: 12043 + - uid: 12049 components: - pos: -21.644775,-100.24527 parent: 2 type: Transform - - uid: 12044 + - uid: 12050 components: - pos: -34.48208,26.5042 parent: 2 type: Transform - proto: ClothingEyesGlasses entities: - - uid: 12045 + - uid: 12051 components: - pos: -57.484028,-27.38782 parent: 2 type: Transform - proto: ClothingEyesGlassesBeer entities: - - uid: 12046 + - uid: 12052 components: - pos: -41.966873,-78.417305 parent: 2 type: Transform - proto: ClothingEyesGlassesMeson entities: - - uid: 12047 + - uid: 12053 components: - pos: -52.538578,-12.210998 parent: 2 type: Transform - - uid: 12048 + - uid: 12054 components: - pos: -56.32557,-25.518402 parent: 2 type: Transform - - uid: 12049 + - uid: 12055 components: - pos: -68.50666,-43.34528 parent: 2 type: Transform - - uid: 12050 + - uid: 12056 components: - pos: 2.454368,-75.40744 parent: 2 type: Transform - proto: ClothingEyesGlassesSecurity entities: - - uid: 12051 + - uid: 12057 components: - pos: 22.490807,-47.25673 parent: 2 type: Transform - proto: ClothingHandsGlovesBoxingBlue entities: - - uid: 12052 + - uid: 12058 components: - pos: 21.737816,3.36442 parent: 2 type: Transform - - uid: 12053 + - uid: 12059 components: - pos: -39.808826,-84.16531 parent: 2 type: Transform - proto: ClothingHandsGlovesBoxingGreen entities: - - uid: 12054 + - uid: 12060 components: - pos: 30.201283,4.7139225 parent: 2 @@ -95560,19 +95564,19 @@ entities: type: EmitSoundOnCollide - proto: ClothingHandsGlovesBoxingRed entities: - - uid: 12055 + - uid: 12061 components: - pos: 26.321266,-1.3645767 parent: 2 type: Transform - - uid: 12056 + - uid: 12062 components: - pos: -44.121326,-80.72781 parent: 2 type: Transform - proto: ClothingHandsGlovesBoxingYellow entities: - - uid: 12057 + - uid: 12063 components: - pos: 30.232533,4.5889225 parent: 2 @@ -95583,674 +95587,674 @@ entities: type: EmitSoundOnCollide - proto: ClothingHandsGlovesColorBlack entities: - - uid: 12058 + - uid: 12064 components: - pos: -47.515083,6.5429225 parent: 2 type: Transform - proto: ClothingHandsGlovesColorOrange entities: - - uid: 12059 + - uid: 12065 components: - pos: -57.515278,-30.528444 parent: 2 type: Transform - proto: ClothingHandsGlovesColorYellow entities: - - uid: 12060 + - uid: 12066 components: - pos: -25.384478,-19.487955 parent: 2 type: Transform - - uid: 12061 + - uid: 12067 components: - pos: -27.461733,-11.246322 parent: 2 type: Transform - - uid: 12062 + - uid: 12068 components: - pos: -28.54305,-20.538445 parent: 2 type: Transform - - uid: 12063 + - uid: 12069 components: - pos: -56.97646,-35.48593 parent: 2 type: Transform - - uid: 12064 + - uid: 12070 components: - pos: -25.966612,-52.421177 parent: 2 type: Transform - - uid: 12065 + - uid: 12071 components: - pos: 54.45896,60.637554 parent: 2 type: Transform - - uid: 12066 + - uid: 12072 components: - pos: 22.516106,51.47508 parent: 2 type: Transform - proto: ClothingHandsGlovesColorYellowBudget entities: - - uid: 12067 + - uid: 12073 components: - rot: 12.566370614359172 rad pos: 71.23901,-43.34667 parent: 2 type: Transform - - uid: 12068 + - uid: 12074 components: - pos: 30.46846,46.718662 parent: 2 type: Transform - - uid: 12069 + - uid: 12075 components: - pos: 70.37232,-66.37016 parent: 2 type: Transform - proto: ClothingHandsGlovesLatex entities: - - uid: 12070 + - uid: 12076 components: - pos: -19.466316,-85.552505 parent: 2 type: Transform - - uid: 12071 + - uid: 12077 components: - pos: -5.563123,-96.94655 parent: 2 type: Transform - proto: ClothingHeadFishCap entities: - - uid: 12072 + - uid: 12078 components: - pos: -24.484636,34.673782 parent: 2 type: Transform - proto: ClothingHeadHatAnimalCatBlack entities: - - uid: 12073 + - uid: 12079 components: - pos: -51.4974,8.551356 parent: 2 type: Transform - proto: ClothingHeadHatAnimalHeadslime entities: - - uid: 12074 + - uid: 12080 components: - pos: -48.252262,60.451523 parent: 2 type: Transform - proto: ClothingHeadHatBeaverHat entities: - - uid: 12075 + - uid: 12081 components: - pos: 22.537655,11.563517 parent: 2 type: Transform - proto: ClothingHeadHatBunny entities: - - uid: 12076 + - uid: 12082 components: - pos: 57.503056,-8.485766 parent: 2 type: Transform - proto: ClothingHeadHatCake entities: - - uid: 12077 + - uid: 12083 components: - pos: -23.42545,-67.41026 parent: 2 type: Transform - proto: ClothingHeadHatCardborg entities: - - uid: 12078 + - uid: 12084 components: - pos: 72.844894,-43.422203 parent: 2 type: Transform - proto: ClothingHeadHatChickenhead entities: - - uid: 12079 + - uid: 12085 components: - pos: -38.364468,56.565044 parent: 2 type: Transform - - uid: 12080 + - uid: 12086 components: - pos: 69.487785,-66.37648 parent: 2 type: Transform - proto: ClothingHeadHatCone entities: - - uid: 12081 + - uid: 12087 components: - pos: 20.465803,-52.422585 parent: 2 type: Transform - - uid: 12082 + - uid: 12088 components: - pos: -40.213425,-17.545645 parent: 2 type: Transform - - uid: 12083 + - uid: 12089 components: - pos: -28.525217,-54.052208 parent: 2 type: Transform - proto: ClothingHeadHatFedoraBrown entities: - - uid: 12084 + - uid: 12090 components: - pos: -42.4974,8.520106 parent: 2 type: Transform - proto: ClothingHeadHatFedoraGrey entities: - - uid: 12085 + - uid: 12091 components: - pos: -22.922485,11.607702 parent: 2 type: Transform - proto: ClothingHeadHatFez entities: - - uid: 12086 + - uid: 12092 components: - pos: 20.326727,12.833071 parent: 2 type: Transform - proto: ClothingHeadHatGreensoft entities: - - uid: 12087 + - uid: 12093 components: - pos: 31.51696,-61.276703 parent: 2 type: Transform - proto: ClothingHeadHatHardhatOrange entities: - - uid: 12088 + - uid: 12094 components: - pos: 15.782594,-64.08794 parent: 2 type: Transform - proto: ClothingHeadHatHetmanHat entities: - - uid: 12089 + - uid: 12095 components: - pos: -40.407463,-78.02446 parent: 2 type: Transform - proto: ClothingHeadHatHoodMoth entities: - - uid: 12090 + - uid: 12096 components: - pos: -14.455677,-96.43048 parent: 2 type: Transform - proto: ClothingHeadHatHoodNunHood entities: - - uid: 12091 + - uid: 12097 components: - pos: -38.629223,16.497232 parent: 2 type: Transform - proto: ClothingHeadHatJesterAlt entities: - - uid: 12092 + - uid: 12098 components: - pos: -15.170754,12.526345 parent: 2 type: Transform - proto: ClothingHeadHatPlaguedoctor entities: - - uid: 12093 + - uid: 12099 components: - pos: -31.265268,5.276951 parent: 2 type: Transform - proto: ClothingHeadHatPumpkin entities: - - uid: 12094 + - uid: 12100 components: - pos: -6.603641,4.509495 parent: 2 type: Transform - proto: ClothingHeadHatRedwizard entities: - - uid: 12095 + - uid: 12101 components: - pos: -68.50815,-34.45745 parent: 2 type: Transform - proto: ClothingHeadHatRichard entities: - - uid: 12096 + - uid: 12102 components: - pos: -16.484713,20.572138 parent: 2 type: Transform - proto: ClothingHeadHatSantahat entities: - - uid: 12097 + - uid: 12103 components: - pos: 70.456535,-65.50148 parent: 2 type: Transform - proto: ClothingHeadHatShrineMaidenWig entities: - - uid: 12098 + - uid: 12104 components: - pos: 73.5263,-65.23457 parent: 2 type: Transform - proto: ClothingHeadHatSquid entities: - - uid: 12099 + - uid: 12105 components: - pos: 9.466757,-12.457433 parent: 2 type: Transform - proto: ClothingHeadHatTophat entities: - - uid: 12100 + - uid: 12106 components: - pos: 22.506405,10.969767 parent: 2 type: Transform - - uid: 12101 + - uid: 12107 components: - pos: -19.575691,-87.365005 parent: 2 type: Transform - proto: ClothingHeadHatTrucker entities: - - uid: 12102 + - uid: 12108 components: - pos: -35.471638,-48.0912 parent: 2 type: Transform - proto: ClothingHeadHatUshanka entities: - - uid: 12103 + - uid: 12109 components: - pos: 20.592352,12.520571 parent: 2 type: Transform - - uid: 12104 + - uid: 12110 components: - pos: 63.56368,11.408342 parent: 2 type: Transform - - uid: 12105 + - uid: 12111 components: - pos: -39.523006,-76.44785 parent: 2 type: Transform - - uid: 12106 + - uid: 12112 components: - pos: -43.43965,-78.05615 parent: 2 type: Transform - proto: ClothingHeadHatVioletwizard entities: - - uid: 12107 + - uid: 12113 components: - pos: 18.520521,50.50226 parent: 2 type: Transform - proto: ClothingHeadHatWelding entities: - - uid: 12108 + - uid: 12114 components: - pos: -35.502888,-47.3412 parent: 2 type: Transform - - uid: 12109 + - uid: 12115 components: - pos: -12.456746,17.595669 parent: 2 type: Transform - - uid: 12110 + - uid: 12116 components: - pos: 42.55075,-32.360874 parent: 2 type: Transform - proto: ClothingHeadHatWeldingMaskFlameBlue entities: - - uid: 12111 + - uid: 12117 components: - pos: 0.64530456,23.439005 parent: 2 type: Transform - - uid: 12112 + - uid: 12118 components: - pos: -20.443554,-51.52769 parent: 2 type: Transform - proto: ClothingHeadHatWizard entities: - - uid: 12113 + - uid: 12119 components: - pos: -27.578125,55.49253 parent: 2 type: Transform - proto: ClothingHeadHelmetCosmonaut entities: - - uid: 12114 + - uid: 12120 components: - pos: -31.517996,-64.46434 parent: 2 type: Transform - - uid: 12115 + - uid: 12121 components: - pos: -37.48917,27.661566 parent: 2 type: Transform - proto: ClothingHeadHelmetEVA entities: - - uid: 12116 + - uid: 12122 components: - pos: -71.04211,-26.39878 parent: 2 type: Transform - proto: ClothingHeadHelmetScaf entities: - - uid: 12117 + - uid: 12123 components: - pos: -31.458502,-43.474 parent: 2 type: Transform - proto: ClothingHeadHelmetTemplar entities: - - uid: 12118 + - uid: 12124 components: - pos: 38.423565,-15.642361 parent: 2 type: Transform - proto: ClothingHeadNurseHat entities: - - uid: 12119 + - uid: 12125 components: - pos: 2.5095897,-65.392746 parent: 2 type: Transform - proto: ClothingHeadSafari entities: - - uid: 12120 + - uid: 12126 components: - pos: -3.5832248,52.757553 parent: 2 type: Transform - proto: ClothingMaskBat entities: - - uid: 12121 + - uid: 12127 components: - pos: -28.497562,8.541992 parent: 2 type: Transform - proto: ClothingMaskBear entities: - - uid: 12122 + - uid: 12128 components: - pos: -38.62821,28.538465 parent: 2 type: Transform - proto: ClothingMaskBee entities: - - uid: 12123 + - uid: 12129 components: - pos: -3.4901123,53.561974 parent: 2 type: Transform - proto: ClothingMaskClown entities: - - uid: 12124 + - uid: 12130 components: - pos: 52.5169,59.485374 parent: 2 type: Transform - proto: ClothingMaskFox entities: - - uid: 12125 + - uid: 12131 components: - pos: 30.331896,-28.644527 parent: 2 type: Transform - proto: ClothingMaskGas entities: - - uid: 12126 + - uid: 12132 components: - pos: -35.537254,-49.709976 parent: 2 type: Transform - - uid: 12127 + - uid: 12133 components: - pos: -70.49962,-26.436932 parent: 2 type: Transform - - uid: 12128 + - uid: 12134 components: - pos: -24.43692,-6.4687095 parent: 2 type: Transform - - uid: 12129 + - uid: 12135 components: - pos: -8.705846,-15.426237 parent: 2 type: Transform - proto: ClothingMaskGasAtmos entities: - - uid: 12130 + - uid: 12136 components: - pos: 3.1338544,-75.35811 parent: 2 type: Transform - proto: ClothingMaskGasExplorer entities: - - uid: 12131 + - uid: 12137 components: - pos: -43.401073,35.593018 parent: 2 type: Transform - proto: ClothingMaskJackal entities: - - uid: 12132 + - uid: 12138 components: - pos: 16.67739,21.87369 parent: 2 type: Transform - proto: ClothingMaskPlague entities: - - uid: 12133 + - uid: 12139 components: - pos: -31.093393,5.386326 parent: 2 type: Transform - proto: ClothingMaskRat entities: - - uid: 12134 + - uid: 12140 components: - pos: -9.217388,-10.5028515 parent: 2 type: Transform - proto: ClothingMaskRaven entities: - - uid: 12135 + - uid: 12141 components: - pos: 12.510361,-6.449043 parent: 2 type: Transform - proto: ClothingNeckAromanticPin entities: - - uid: 12136 + - uid: 12142 components: - pos: -16.507944,41.79273 parent: 2 type: Transform - proto: ClothingNeckAsexualPin entities: - - uid: 12137 + - uid: 12143 components: - pos: -16.289194,41.51148 parent: 2 type: Transform - proto: ClothingNeckBisexualPin entities: - - uid: 12138 + - uid: 12144 components: - pos: -42.7372,8.687558 parent: 2 type: Transform - proto: ClothingNeckBling entities: - - uid: 12139 + - uid: 12145 components: - pos: 48.258717,-21.370115 parent: 2 type: Transform - proto: ClothingNeckCloakMoth entities: - - uid: 12140 + - uid: 12146 components: - pos: -8.662971,-82.55483 parent: 2 type: Transform - proto: ClothingNeckCloakTrans entities: - - uid: 12141 + - uid: 12147 components: - pos: -9.4988165,23.574131 parent: 2 type: Transform - proto: ClothingNeckIntersexPin entities: - - uid: 12142 + - uid: 12148 components: - pos: -12.691556,31.94308 parent: 2 type: Transform - proto: ClothingNeckLawyerbadge entities: - - uid: 12143 + - uid: 12149 components: - pos: 43.39902,-3.8456278 parent: 2 type: Transform - proto: ClothingNeckLesbianPin entities: - - uid: 12144 + - uid: 12150 components: - pos: -51.700592,8.465523 parent: 2 type: Transform - proto: ClothingNeckLGBTPin entities: - - uid: 12145 + - uid: 12151 components: - pos: -10.776614,43.48699 parent: 2 type: Transform - proto: ClothingNeckMantleCE entities: - - uid: 12146 + - uid: 12152 components: - pos: -35.467106,-17.222797 parent: 2 type: Transform - proto: ClothingNeckMantleCMO entities: - - uid: 12147 + - uid: 12153 components: - pos: -20.144634,-56.34305 parent: 2 type: Transform - proto: ClothingNeckMantleHOP entities: - - uid: 12148 + - uid: 12154 components: - pos: 26.64564,-37.47807 parent: 2 type: Transform - proto: ClothingNeckMantleHOS entities: - - uid: 12149 + - uid: 12155 components: - pos: 5.905226,20.807451 parent: 2 type: Transform - proto: ClothingNeckMantleRD entities: - - uid: 12150 + - uid: 12156 components: - pos: 63.464256,-53.431217 parent: 2 type: Transform - proto: ClothingNeckNonBinaryPin entities: - - uid: 12151 + - uid: 12157 components: - pos: -21.722902,35.752502 parent: 2 type: Transform - - uid: 12152 + - uid: 12158 components: - pos: -47.78141,6.181047 parent: 2 type: Transform - proto: ClothingNeckPansexualPin entities: - - uid: 12153 + - uid: 12159 components: - pos: -1.5377516,30.493696 parent: 2 type: Transform - proto: ClothingNeckScarfStripedZebra entities: - - uid: 12154 + - uid: 12160 components: - pos: -28.25746,44.644928 parent: 2 type: Transform - proto: ClothingNeckTransPin entities: - - uid: 12155 + - uid: 12161 components: - pos: 65.36391,-1.4805084 parent: 2 type: Transform - proto: ClothingOuterCardborg entities: - - uid: 12156 + - uid: 12162 components: - pos: 73.548645,-43.410946 parent: 2 type: Transform - proto: ClothingOuterCoatBomber entities: - - uid: 12157 + - uid: 12163 components: - pos: 15.5274105,-50.516087 parent: 2 type: Transform - proto: ClothingOuterCoatDetective entities: - - uid: 12158 + - uid: 12164 components: - pos: -32.515205,-59.44035 parent: 2 type: Transform - proto: ClothingOuterCoatGentle entities: - - uid: 12159 + - uid: 12165 components: - pos: 59.512882,24.492107 parent: 2 type: Transform - proto: ClothingOuterCoatJensen entities: - - uid: 11864 + - uid: 11870 components: - pos: 62.5886,15.642659 parent: 2 @@ -96260,194 +96264,194 @@ entities: showEnts: False occludes: True ents: - - 11865 + - 11871 type: ContainerContainer - proto: ClothingOuterDameDane entities: - - uid: 12160 + - uid: 12166 components: - pos: -30.207304,-98.49032 parent: 2 type: Transform - proto: ClothingOuterHardsuitEVA entities: - - uid: 12161 + - uid: 12167 components: - pos: -71.62023,-26.30503 parent: 2 type: Transform - proto: ClothingOuterHoodieChaplain entities: - - uid: 12162 + - uid: 12168 components: - pos: -39.238598,16.669107 parent: 2 type: Transform - proto: ClothingOuterPlagueSuit entities: - - uid: 12163 + - uid: 12169 components: - pos: -31.046518,5.058201 parent: 2 type: Transform - proto: ClothingOuterSuitChicken entities: - - uid: 12164 + - uid: 12170 components: - pos: -41.535904,57.643673 parent: 2 type: Transform - proto: ClothingOuterSuitMonkey entities: - - uid: 12165 + - uid: 12171 components: - pos: -23.4853,-87.30585 parent: 2 type: Transform - proto: ClothingOuterSuitShrineMaiden entities: - - uid: 12166 + - uid: 12172 components: - pos: -40.48903,63.987423 parent: 2 type: Transform - - uid: 12167 + - uid: 12173 components: - pos: 73.55755,-64.51582 parent: 2 type: Transform - proto: ClothingOuterWinterRobo entities: - - uid: 12168 + - uid: 12174 components: - pos: 77.51138,-47.408936 parent: 2 type: Transform - proto: ClothingOuterWinterViro entities: - - uid: 12169 + - uid: 12175 components: - pos: -31.470345,-74.22051 parent: 2 type: Transform - proto: ClothingOuterWizard entities: - - uid: 12170 + - uid: 12176 components: - pos: -41.58894,41.559685 parent: 2 type: Transform - proto: ClothingOuterWizardRed entities: - - uid: 12171 + - uid: 12177 components: - pos: -59.983215,-45.447025 parent: 2 type: Transform - proto: ClothingOuterWizardViolet entities: - - uid: 12172 + - uid: 12178 components: - pos: 19.504896,49.611633 parent: 2 type: Transform - proto: ClothingShoesBling entities: - - uid: 12173 + - uid: 12179 components: - pos: 47.782166,-25.351032 parent: 2 type: Transform - proto: ClothingShoesBootsJack entities: - - uid: 12174 + - uid: 12180 components: - pos: -1.4635531,17.609518 parent: 2 type: Transform - proto: ClothingShoesBootsLaceup entities: - - uid: 12175 + - uid: 12181 components: - pos: 45.797165,49.377663 parent: 2 type: Transform - proto: ClothingShoesBootsMag entities: - - uid: 12176 + - uid: 12182 components: - pos: -34.59344,-13.376695 parent: 2 type: Transform - - uid: 12177 + - uid: 12183 components: - pos: -41.919106,35.62894 parent: 2 type: Transform - - uid: 12178 + - uid: 12184 components: - pos: 33.46236,-13.4915285 parent: 2 type: Transform - nextSound: 688.308763 type: EmitSoundOnCollide - - uid: 12179 + - uid: 12185 components: - pos: 27.480814,29.301416 parent: 2 type: Transform - nextSound: 41.6429854 type: EmitSoundOnCollide - - uid: 12180 + - uid: 12186 components: - pos: 27.527689,27.317041 parent: 2 type: Transform - nextSound: 42.8151827 type: EmitSoundOnCollide - - uid: 12181 + - uid: 12187 components: - pos: 31.527689,27.285791 parent: 2 type: Transform - nextSound: 43.6326202 type: EmitSoundOnCollide - - uid: 12182 + - uid: 12188 components: - pos: 31.512064,29.317041 parent: 2 type: Transform - nextSound: 44.2030005 type: EmitSoundOnCollide - - uid: 12183 + - uid: 12189 components: - pos: 31.516712,-13.514931 parent: 2 type: Transform - nextSound: 49.824151 type: EmitSoundOnCollide - - uid: 12184 + - uid: 12190 components: - pos: 31.501087,-11.577431 parent: 2 type: Transform - nextSound: 50.5353917 type: EmitSoundOnCollide - - uid: 12185 + - uid: 12191 components: - pos: 33.563587,-11.530556 parent: 2 type: Transform - nextSound: 51.1960441 type: EmitSoundOnCollide - - uid: 12186 + - uid: 12192 components: - pos: 29.610462,-11.499306 parent: 2 type: Transform - nextSound: 51.9803309 type: EmitSoundOnCollide - - uid: 12187 + - uid: 12193 components: - pos: 29.532337,-13.577431 parent: 2 @@ -96456,42 +96460,42 @@ entities: type: EmitSoundOnCollide - proto: ClothingShoesColorWhite entities: - - uid: 12188 + - uid: 12194 components: - pos: -16.54276,-45.461185 parent: 2 type: Transform - proto: ClothingShoesDameDane entities: - - uid: 12189 + - uid: 12195 components: - pos: -22.591383,-96.25594 parent: 2 type: Transform - proto: ClothingShoesFlippers entities: - - uid: 12190 + - uid: 12196 components: - pos: -3.5418344,21.579527 parent: 2 type: Transform - proto: ClothingShoeSlippersDuck entities: - - uid: 12191 + - uid: 12197 components: - pos: 15.423054,34.567764 parent: 2 type: Transform - proto: ClothingUnderSocksBee entities: - - uid: 12192 + - uid: 12198 components: - pos: 62.522377,-58.450882 parent: 2 type: Transform - proto: ClothingUniformJumpskirtJanimaidmini entities: - - uid: 12193 + - uid: 12199 components: - pos: -13.518242,-15.499978 parent: 2 @@ -96502,418 +96506,418 @@ entities: type: EmitSoundOnCollide - proto: ClothingUniformJumpsuitCossack entities: - - uid: 12194 + - uid: 12200 components: - pos: -40.657463,-77.46196 parent: 2 type: Transform - proto: ClothingUniformJumpsuitDameDane entities: - - uid: 12195 + - uid: 12201 components: - pos: -15.484091,-96.41976 parent: 2 type: Transform - proto: ClothingUniformJumpsuitJesterAlt entities: - - uid: 12196 + - uid: 12202 components: - pos: 62.426746,53.491627 parent: 2 type: Transform - proto: ClothingUniformJumpsuitMonasticRobeDark entities: - - uid: 12197 + - uid: 12203 components: - pos: -32.383476,8.575315 parent: 2 type: Transform - - uid: 12198 + - uid: 12204 components: - pos: -32.383476,8.575315 parent: 2 type: Transform - - uid: 12199 + - uid: 12205 components: - pos: -32.383476,8.575315 parent: 2 type: Transform - - uid: 12200 + - uid: 12206 components: - pos: -32.383476,8.575315 parent: 2 type: Transform - - uid: 12201 + - uid: 12207 components: - pos: -32.383476,8.575315 parent: 2 type: Transform - proto: ClothingUniformJumpsuitMonasticRobeLight entities: - - uid: 12202 + - uid: 12208 components: - pos: -22.894775,-100.24527 parent: 2 type: Transform - - uid: 12203 + - uid: 12209 components: - pos: -33.11785,8.55969 parent: 2 type: Transform - - uid: 12204 + - uid: 12210 components: - pos: -33.11785,8.55969 parent: 2 type: Transform - - uid: 12205 + - uid: 12211 components: - pos: -33.11785,8.55969 parent: 2 type: Transform - - uid: 12206 + - uid: 12212 components: - pos: -33.11785,8.55969 parent: 2 type: Transform - - uid: 12207 + - uid: 12213 components: - pos: -33.11785,8.55969 parent: 2 type: Transform - proto: ClothingUniformJumpsuitPsychologist entities: - - uid: 12208 + - uid: 12214 components: - pos: -14.569605,-39.387264 parent: 2 type: Transform - proto: ClothingUniformJumpsuitReporter entities: - - uid: 12209 + - uid: 12215 components: - pos: -27.443762,14.534213 parent: 2 type: Transform - proto: ClothingUniformJumpsuitSafari entities: - - uid: 12210 + - uid: 12216 components: - pos: -3.4738498,52.42943 parent: 2 type: Transform - proto: ComfyChair entities: - - uid: 12211 + - uid: 12217 components: - pos: -19.5,-55.5 parent: 2 type: Transform - - uid: 12212 + - uid: 12218 components: - rot: 1.5707963267948966 rad pos: 13.5,-35.5 parent: 2 type: Transform - - uid: 12213 + - uid: 12219 components: - pos: 20.5,-11.5 parent: 2 type: Transform - - uid: 12214 + - uid: 12220 components: - rot: 1.5707963267948966 rad pos: 13.5,-33.5 parent: 2 type: Transform - - uid: 12215 + - uid: 12221 components: - pos: 6.5,21.5 parent: 2 type: Transform - - uid: 12216 + - uid: 12222 components: - rot: -1.5707963267948966 rad pos: 24.5,-28.5 parent: 2 type: Transform - - uid: 12217 + - uid: 12223 components: - rot: 1.5707963267948966 rad pos: 21.5,-28.5 parent: 2 type: Transform - - uid: 12218 + - uid: 12224 components: - rot: 1.5707963267948966 rad pos: 13.5,-31.5 parent: 2 type: Transform - - uid: 12219 + - uid: 12225 components: - rot: 3.141592653589793 rad pos: 20.5,11.5 parent: 2 type: Transform - - uid: 12220 + - uid: 12226 components: - pos: 20.5,13.5 parent: 2 type: Transform - - uid: 12221 + - uid: 12227 components: - pos: -15.5,-37.5 parent: 2 type: Transform - - uid: 12222 + - uid: 12228 components: - rot: -1.5707963267948966 rad pos: 24.5,-29.5 parent: 2 type: Transform - - uid: 12223 + - uid: 12229 components: - rot: 1.5707963267948966 rad pos: 21.5,-29.5 parent: 2 type: Transform - - uid: 12224 + - uid: 12230 components: - rot: -1.5707963267948966 rad pos: 44.5,-3.5 parent: 2 type: Transform - - uid: 12225 + - uid: 12231 components: - rot: 3.141592653589793 rad pos: 33.5,-51.5 parent: 2 type: Transform - - uid: 12226 + - uid: 12232 components: - rot: 3.141592653589793 rad pos: 29.5,-51.5 parent: 2 type: Transform - - uid: 12227 + - uid: 12233 components: - pos: 32.5,-47.5 parent: 2 type: Transform - - uid: 12228 + - uid: 12234 components: - pos: 30.5,-47.5 parent: 2 type: Transform - - uid: 12229 + - uid: 12235 components: - pos: 25.5,-81.5 parent: 2 type: Transform - - uid: 12230 + - uid: 12236 components: - rot: 1.5707963267948966 rad pos: -36.5,-16.5 parent: 2 type: Transform - - uid: 12231 + - uid: 12237 components: - pos: -48.5,7.5 parent: 2 type: Transform - - uid: 12232 + - uid: 12238 components: - pos: -47.5,7.5 parent: 2 type: Transform - - uid: 12233 + - uid: 12239 components: - rot: 1.5707963267948966 rad pos: -49.5,6.5 parent: 2 type: Transform - - uid: 12234 + - uid: 12240 components: - rot: 1.5707963267948966 rad pos: -49.5,5.5 parent: 2 type: Transform - - uid: 12235 + - uid: 12241 components: - rot: 3.141592653589793 rad pos: -48.5,4.5 parent: 2 type: Transform - - uid: 12236 + - uid: 12242 components: - rot: 3.141592653589793 rad pos: -47.5,4.5 parent: 2 type: Transform - - uid: 12237 + - uid: 12243 components: - rot: -1.5707963267948966 rad pos: -46.5,6.5 parent: 2 type: Transform - - uid: 12238 + - uid: 12244 components: - rot: -1.5707963267948966 rad pos: -46.5,5.5 parent: 2 type: Transform - - uid: 12239 + - uid: 12245 components: - rot: 3.141592653589793 rad pos: 25.5,-85.5 parent: 2 type: Transform - - uid: 12240 + - uid: 12246 components: - rot: 3.141592653589793 rad pos: 67.5,7.5 parent: 2 type: Transform - - uid: 12241 + - uid: 12247 components: - pos: 67.5,11.5 parent: 2 type: Transform - - uid: 12242 + - uid: 12248 components: - pos: 44.5,33.5 parent: 2 type: Transform - - uid: 12243 + - uid: 12249 components: - pos: 43.5,33.5 parent: 2 type: Transform - - uid: 12244 + - uid: 12250 components: - pos: 42.5,33.5 parent: 2 type: Transform - - uid: 12245 + - uid: 12251 components: - rot: 1.5707963267948966 rad pos: 64.5,-0.5 parent: 2 type: Transform - - uid: 12246 + - uid: 12252 components: - rot: 1.5707963267948966 rad pos: 64.5,-1.5 parent: 2 type: Transform - - uid: 12247 + - uid: 12253 components: - rot: 3.141592653589793 rad pos: 44.5,28.5 parent: 2 type: Transform - - uid: 12248 + - uid: 12254 components: - rot: 3.141592653589793 rad pos: 45.5,28.5 parent: 2 type: Transform - - uid: 12249 + - uid: 12255 components: - rot: 3.141592653589793 rad pos: 46.5,28.5 parent: 2 type: Transform - - uid: 12250 + - uid: 12256 components: - rot: -1.5707963267948966 rad pos: -54.5,-48.5 parent: 2 type: Transform - - uid: 12251 + - uid: 12257 components: - rot: -1.5707963267948966 rad pos: -54.5,-49.5 parent: 2 type: Transform - - uid: 12252 + - uid: 12258 components: - pos: -55.5,-47.5 parent: 2 type: Transform - - uid: 12253 + - uid: 12259 components: - rot: 3.141592653589793 rad pos: -55.5,-50.5 parent: 2 type: Transform - - uid: 12254 + - uid: 12260 components: - rot: -1.5707963267948966 rad pos: -4.5,-98.5 parent: 2 type: Transform - - uid: 12255 + - uid: 12261 components: - rot: -1.5707963267948966 rad pos: -21.5,-97.5 parent: 2 type: Transform - - uid: 12256 + - uid: 12262 components: - rot: 1.5707963267948966 rad pos: -23.5,-97.5 parent: 2 type: Transform - - uid: 12257 + - uid: 12263 components: - pos: -0.5,-73.5 parent: 2 type: Transform - - uid: 12258 + - uid: 12264 components: - pos: 16.5,-79.5 parent: 2 type: Transform - - uid: 12259 + - uid: 12265 components: - pos: 14.5,-79.5 parent: 2 type: Transform - - uid: 12260 + - uid: 12266 components: - pos: 13.5,-79.5 parent: 2 type: Transform - - uid: 12261 + - uid: 12267 components: - pos: 17.5,-79.5 parent: 2 type: Transform - - uid: 12262 + - uid: 12268 components: - rot: 3.141592653589793 rad pos: 14.5,-87.5 parent: 2 type: Transform - - uid: 12263 + - uid: 12269 components: - rot: 3.141592653589793 rad pos: 13.5,-87.5 parent: 2 type: Transform - - uid: 12264 + - uid: 12270 components: - rot: 3.141592653589793 rad pos: 17.5,-87.5 parent: 2 type: Transform - - uid: 12265 + - uid: 12271 components: - rot: 3.141592653589793 rad pos: 16.5,-87.5 parent: 2 type: Transform - - uid: 12266 + - uid: 12272 components: - rot: -1.5707963267948966 rad pos: 7.5,-79.5 @@ -96921,18 +96925,18 @@ entities: type: Transform - proto: ComputerAlert entities: - - uid: 12267 + - uid: 12273 components: - pos: 27.5,-21.5 parent: 2 type: Transform - - uid: 12268 + - uid: 12274 components: - rot: 1.5707963267948966 rad pos: -55.5,-12.5 parent: 2 type: Transform - - uid: 12269 + - uid: 12275 components: - rot: 3.141592653589793 rad pos: -36.5,-46.5 @@ -96940,7 +96944,7 @@ entities: type: Transform - proto: ComputerAnalysisConsole entities: - - uid: 12270 + - uid: 12276 components: - pos: 73.5,-31.5 parent: 2 @@ -96948,17 +96952,17 @@ entities: - outputs: ArtifactAnalyzerSender: - port: ArtifactAnalyzerReceiver - uid: 20777 + uid: 20794 type: SignalTransmitter - proto: computerBodyScanner entities: - - uid: 12271 + - uid: 12277 components: - rot: -1.5707963267948966 rad pos: 4.5,-65.5 parent: 2 type: Transform - - uid: 12272 + - uid: 12278 components: - rot: 1.5707963267948966 rad pos: -26.5,-60.5 @@ -96966,48 +96970,48 @@ entities: type: Transform - proto: ComputerBroken entities: - - uid: 12273 + - uid: 12279 components: - rot: -1.5707963267948966 rad pos: 52.5,37.5 parent: 2 type: Transform - - uid: 12274 + - uid: 12280 components: - pos: 51.5,36.5 parent: 2 type: Transform - - uid: 12275 + - uid: 12281 components: - rot: -1.5707963267948966 rad pos: 51.5,37.5 parent: 2 type: Transform - - uid: 12276 + - uid: 12282 components: - rot: -1.5707963267948966 rad pos: -51.5,-87.5 parent: 2 type: Transform - - uid: 12277 + - uid: 12283 components: - rot: 1.5707963267948966 rad pos: -0.5,73.5 parent: 2 type: Transform - - uid: 12278 + - uid: 12284 components: - rot: -1.5707963267948966 rad pos: -2.5,73.5 parent: 2 type: Transform - - uid: 12279 + - uid: 12285 components: - rot: 1.5707963267948966 rad pos: 2.5,69.5 parent: 2 type: Transform - - uid: 12280 + - uid: 12286 components: - rot: -1.5707963267948966 rad pos: -5.5,69.5 @@ -97015,30 +97019,30 @@ entities: type: Transform - proto: ComputerCargoOrders entities: - - uid: 12281 + - uid: 12287 components: - pos: 29.5,-21.5 parent: 2 type: Transform - - uid: 12282 + - uid: 12288 components: - pos: -27.5,23.5 parent: 2 type: Transform - - uid: 12283 + - uid: 12289 components: - rot: 3.141592653589793 rad pos: -30.5,29.5 parent: 2 type: Transform - - uid: 12284 + - uid: 12290 components: - pos: -44.5,35.5 parent: 2 type: Transform - proto: ComputerCargoShuttle entities: - - uid: 12285 + - uid: 12291 components: - rot: 3.141592653589793 rad pos: -27.5,21.5 @@ -97046,12 +97050,12 @@ entities: type: Transform - proto: ComputerComms entities: - - uid: 12286 + - uid: 12292 components: - pos: 25.5,-21.5 parent: 2 type: Transform - - uid: 12287 + - uid: 12293 components: - rot: 1.5707963267948966 rad pos: 28.5,-30.5 @@ -97059,64 +97063,64 @@ entities: type: Transform - proto: ComputerCrewMonitoring entities: - - uid: 12288 + - uid: 12294 components: - pos: 23.5,-21.5 parent: 2 type: Transform - - uid: 12289 + - uid: 12295 components: - rot: -1.5707963267948966 rad pos: 29.5,-36.5 parent: 2 type: Transform - - uid: 12290 + - uid: 12296 components: - pos: 54.5,13.5 parent: 2 type: Transform - proto: ComputerCriminalRecords entities: - - uid: 12291 + - uid: 12297 components: - rot: -1.5707963267948966 rad pos: 22.5,-45.5 parent: 2 type: Transform - - uid: 12292 + - uid: 12298 components: - pos: -16.5,26.5 parent: 2 type: Transform - proto: ComputerFrame entities: - - uid: 12293 + - uid: 12299 components: - pos: -8.5,-63.5 parent: 2 type: Transform - - uid: 12294 + - uid: 12300 components: - rot: 1.5707963267948966 rad pos: 70.5,-36.5 parent: 2 type: Transform - - uid: 12295 + - uid: 12301 components: - pos: 51.5,35.5 parent: 2 type: Transform - - uid: 12296 + - uid: 12302 components: - pos: -10.5,37.5 parent: 2 type: Transform - - uid: 12297 + - uid: 12303 components: - pos: -29.5,-96.5 parent: 2 type: Transform - - uid: 12298 + - uid: 12304 components: - rot: -1.5707963267948966 rad pos: -67.5,-45.5 @@ -97124,32 +97128,32 @@ entities: type: Transform - proto: ComputerId entities: - - uid: 12299 + - uid: 12305 components: - rot: -1.5707963267948966 rad pos: 29.5,-37.5 parent: 2 type: Transform - - uid: 12300 + - uid: 12306 components: - pos: 25.5,-24.5 parent: 2 type: Transform - proto: ComputerMedicalRecords entities: - - uid: 12301 + - uid: 12307 components: - rot: 1.5707963267948966 rad pos: -20.5,-55.5 parent: 2 type: Transform - - uid: 12302 + - uid: 12308 components: - rot: -1.5707963267948966 rad pos: -3.5,-50.5 parent: 2 type: Transform - - uid: 12303 + - uid: 12309 components: - rot: 3.141592653589793 rad pos: 47.5,5.5 @@ -97157,24 +97161,24 @@ entities: type: Transform - proto: ComputerPowerMonitoring entities: - - uid: 12304 + - uid: 12310 components: - pos: 21.5,-21.5 parent: 2 type: Transform - - uid: 12305 + - uid: 12311 components: - rot: 3.141592653589793 rad pos: -27.5,-13.5 parent: 2 type: Transform - - uid: 12306 + - uid: 12312 components: - rot: 1.5707963267948966 rad pos: -55.5,-13.5 parent: 2 type: Transform - - uid: 12307 + - uid: 12313 components: - rot: 1.5707963267948966 rad pos: -47.5,-23.5 @@ -97182,7 +97186,7 @@ entities: type: Transform - proto: ComputerRadar entities: - - uid: 12308 + - uid: 12314 components: - rot: 1.5707963267948966 rad pos: -48.5,32.5 @@ -97190,104 +97194,110 @@ entities: type: Transform - proto: ComputerResearchAndDevelopment entities: - - uid: 12309 + - uid: 12315 components: - rot: 3.141592653589793 rad pos: 61.5,-55.5 parent: 2 type: Transform - - uid: 12310 + - uid: 12316 components: - rot: -1.5707963267948966 rad pos: 43.5,-39.5 parent: 2 type: Transform - - uid: 12311 + - uid: 12317 components: - pos: 68.5,-43.5 parent: 2 type: Transform - - uid: 12312 + - uid: 12318 components: - pos: 50.5,-52.5 parent: 2 type: Transform - - uid: 12313 + - uid: 12319 components: - rot: 3.141592653589793 rad pos: 60.5,-36.5 parent: 2 type: Transform - - uid: 12314 + - uid: 12320 components: - pos: 74.5,-31.5 parent: 2 type: Transform - proto: ComputerSalvageExpedition entities: - - uid: 12315 + - uid: 12321 components: - - rot: 1.5707963267948966 rad - pos: -49.5,43.5 + - pos: -46.5,44.5 parent: 2 type: Transform - proto: ComputerShuttleCargo entities: - - uid: 12316 + - uid: 12322 components: - rot: 1.5707963267948966 rad pos: -48.5,21.5 parent: 2 type: Transform +- proto: ComputerShuttleSalvage + entities: + - uid: 12323 + components: + - pos: -47.5,44.5 + parent: 2 + type: Transform - proto: ComputerSolarControl entities: - - uid: 12317 + - uid: 12324 components: - rot: 1.5707963267948966 rad pos: -2.5,-77.5 parent: 2 type: Transform - - uid: 12318 + - uid: 12325 components: - pos: 72.5,38.5 parent: 2 type: Transform - proto: ComputerStationRecords entities: - - uid: 12319 + - uid: 12326 components: - rot: 1.5707963267948966 rad pos: 2.5,-57.5 parent: 2 type: Transform - - uid: 12320 + - uid: 12327 components: - pos: 18.5,-10.5 parent: 2 type: Transform - - uid: 12321 + - uid: 12328 components: - pos: 24.5,-24.5 parent: 2 type: Transform - - uid: 12322 + - uid: 12329 components: - rot: -1.5707963267948966 rad pos: 26.5,20.5 parent: 2 type: Transform - - uid: 12323 + - uid: 12330 components: - pos: 47.5,7.5 parent: 2 type: Transform - - uid: 12324 + - uid: 12331 components: - rot: 3.141592653589793 rad pos: 20.5,-47.5 parent: 2 type: Transform - - uid: 12325 + - uid: 12332 components: - rot: 3.141592653589793 rad pos: -16.5,-23.5 @@ -97295,69 +97305,69 @@ entities: type: Transform - proto: ComputerSurveillanceCameraMonitor entities: - - uid: 12326 + - uid: 12333 components: - pos: 26.5,-24.5 parent: 2 type: Transform - - uid: 12327 + - uid: 12334 components: - rot: 3.141592653589793 rad pos: 18.5,-12.5 parent: 2 type: Transform - - uid: 12328 + - uid: 12335 components: - rot: 1.5707963267948966 rad pos: 24.5,20.5 parent: 2 type: Transform - - uid: 12329 + - uid: 12336 components: - pos: 53.5,13.5 parent: 2 type: Transform - - uid: 12330 + - uid: 12337 components: - rot: 3.141592653589793 rad pos: 52.5,-42.5 parent: 2 type: Transform - - uid: 12331 + - uid: 12338 components: - rot: 1.5707963267948966 rad pos: -55.5,-14.5 parent: 2 type: Transform - - uid: 12332 + - uid: 12339 components: - rot: -1.5707963267948966 rad pos: -22.5,12.5 parent: 2 type: Transform - - uid: 12333 + - uid: 12340 components: - pos: -23.5,-69.5 parent: 2 type: Transform - - uid: 12334 + - uid: 12341 components: - rot: 1.5707963267948966 rad pos: -71.5,-42.5 parent: 2 type: Transform - - uid: 12335 + - uid: 12342 components: - pos: -11.5,-14.5 parent: 2 type: Transform - - uid: 12336 + - uid: 12343 components: - rot: 1.5707963267948966 rad pos: -21.5,-49.5 parent: 2 type: Transform - - uid: 12337 + - uid: 12344 components: - rot: 3.141592653589793 rad pos: -37.5,-46.5 @@ -97365,115 +97375,115 @@ entities: type: Transform - proto: ComputerTechnologyDiskTerminal entities: - - uid: 12338 + - uid: 12345 components: - pos: 56.5,-47.5 parent: 2 type: Transform - proto: ComputerTelevision entities: - - uid: 12339 + - uid: 12346 components: - pos: -6.5,-48.5 parent: 2 type: Transform - - uid: 12340 + - uid: 12347 components: - pos: -28.5,43.5 parent: 2 type: Transform - - uid: 12341 + - uid: 12348 components: - pos: 23.5,23.5 parent: 2 type: Transform - - uid: 12342 + - uid: 12349 components: - pos: 15.5,9.5 parent: 2 type: Transform - - uid: 12343 + - uid: 12350 components: - pos: -22.5,31.5 parent: 2 type: Transform - - uid: 12344 + - uid: 12351 components: - pos: -18.5,35.5 parent: 2 type: Transform - - uid: 12345 + - uid: 12352 components: - pos: -11.5,35.5 parent: 2 type: Transform - - uid: 12346 + - uid: 12353 components: - pos: -21.5,39.5 parent: 2 type: Transform - proto: ComputerTelevisionCircuitboard entities: - - uid: 12347 + - uid: 12354 components: - pos: 41.546516,-53.695484 parent: 2 type: Transform - - uid: 12348 + - uid: 12355 components: - pos: -8.937697,37.5244 parent: 2 type: Transform - - uid: 12349 + - uid: 12356 components: - pos: -9.312697,37.696274 parent: 2 type: Transform - proto: ContainmentFieldGenerator entities: - - uid: 12350 + - uid: 12357 components: - pos: -70.5,-9.5 parent: 2 type: Transform - - uid: 12351 + - uid: 12358 components: - pos: -62.5,-9.5 parent: 2 type: Transform - - uid: 12352 + - uid: 12359 components: - pos: -62.5,-17.5 parent: 2 type: Transform - - uid: 12353 + - uid: 12360 components: - pos: -70.5,-17.5 parent: 2 type: Transform - - uid: 12354 + - uid: 12361 components: - pos: -74.5,-26.5 parent: 2 type: Transform - - uid: 12355 + - uid: 12362 components: - pos: -73.5,-26.5 parent: 2 type: Transform - - uid: 12356 + - uid: 12363 components: - pos: -74.5,-23.5 parent: 2 type: Transform - - uid: 12357 + - uid: 12364 components: - pos: -73.5,-23.5 parent: 2 type: Transform - proto: ConveyorBelt entities: - - uid: 12358 + - uid: 12365 components: - rot: 1.5707963267948966 rad pos: 16.5,-55.5 @@ -97482,15 +97492,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25013 + uid: 25047 Forward: - port: Left - uid: 25013 + uid: 25047 Off: - port: Middle - uid: 25013 + uid: 25047 type: SignalReceiver - - uid: 12359 + - uid: 12366 components: - pos: 18.5,-56.5 parent: 2 @@ -97498,15 +97508,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25013 + uid: 25047 Forward: - port: Left - uid: 25013 + uid: 25047 Off: - port: Middle - uid: 25013 + uid: 25047 type: SignalReceiver - - uid: 12360 + - uid: 12367 components: - rot: 1.5707963267948966 rad pos: 17.5,-55.5 @@ -97515,15 +97525,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25013 + uid: 25047 Forward: - port: Left - uid: 25013 + uid: 25047 Off: - port: Middle - uid: 25013 + uid: 25047 type: SignalReceiver - - uid: 12361 + - uid: 12368 components: - rot: 1.5707963267948966 rad pos: 15.5,-55.5 @@ -97532,15 +97542,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25013 + uid: 25047 Forward: - port: Left - uid: 25013 + uid: 25047 Off: - port: Middle - uid: 25013 + uid: 25047 type: SignalReceiver - - uid: 12362 + - uid: 12369 components: - pos: 18.5,-55.5 parent: 2 @@ -97548,15 +97558,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25013 + uid: 25047 Forward: - port: Left - uid: 25013 + uid: 25047 Off: - port: Middle - uid: 25013 + uid: 25047 type: SignalReceiver - - uid: 12363 + - uid: 12370 components: - rot: -1.5707963267948966 rad pos: -12.5,-10.5 @@ -97565,15 +97575,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25026 + uid: 25060 - port: Left - uid: 25026 + uid: 25060 Forward: [] Off: - port: Middle - uid: 25026 + uid: 25060 type: SignalReceiver - - uid: 12364 + - uid: 12371 components: - pos: 15.5,-54.5 parent: 2 @@ -97581,15 +97591,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25013 + uid: 25047 Forward: - port: Left - uid: 25013 + uid: 25047 Off: - port: Middle - uid: 25013 + uid: 25047 type: SignalReceiver - - uid: 12365 + - uid: 12372 components: - pos: 18.5,-57.5 parent: 2 @@ -97597,15 +97607,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25013 + uid: 25047 Forward: - port: Left - uid: 25013 + uid: 25047 Off: - port: Middle - uid: 25013 + uid: 25047 type: SignalReceiver - - uid: 12366 + - uid: 12373 components: - rot: -1.5707963267948966 rad pos: 17.5,-54.5 @@ -97614,15 +97624,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25013 + uid: 25047 Forward: - port: Left - uid: 25013 + uid: 25047 Off: - port: Middle - uid: 25013 + uid: 25047 type: SignalReceiver - - uid: 12367 + - uid: 12374 components: - rot: -1.5707963267948966 rad pos: 16.5,-54.5 @@ -97631,15 +97641,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25013 + uid: 25047 Forward: - port: Left - uid: 25013 + uid: 25047 Off: - port: Middle - uid: 25013 + uid: 25047 type: SignalReceiver - - uid: 12368 + - uid: 12375 components: - rot: -1.5707963267948966 rad pos: 18.5,-54.5 @@ -97648,15 +97658,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25013 + uid: 25047 Forward: - port: Left - uid: 25013 + uid: 25047 Off: - port: Middle - uid: 25013 + uid: 25047 type: SignalReceiver - - uid: 12369 + - uid: 12376 components: - rot: -1.5707963267948966 rad pos: -14.5,-10.5 @@ -97665,15 +97675,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25026 + uid: 25060 - port: Left - uid: 25026 + uid: 25060 Forward: [] Off: - port: Middle - uid: 25026 + uid: 25060 type: SignalReceiver - - uid: 12370 + - uid: 12377 components: - rot: -1.5707963267948966 rad pos: -13.5,-10.5 @@ -97682,15 +97692,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25026 + uid: 25060 - port: Left - uid: 25026 + uid: 25060 Forward: [] Off: - port: Middle - uid: 25026 + uid: 25060 type: SignalReceiver - - uid: 12371 + - uid: 12378 components: - rot: 3.141592653589793 rad pos: -11.5,-10.5 @@ -97699,15 +97709,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25026 + uid: 25060 - port: Left - uid: 25026 + uid: 25060 Forward: [] Off: - port: Middle - uid: 25026 + uid: 25060 type: SignalReceiver - - uid: 12372 + - uid: 12379 components: - rot: 1.5707963267948966 rad pos: -25.5,25.5 @@ -97716,15 +97726,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25014 + uid: 25048 Forward: - port: Left - uid: 25014 + uid: 25048 Off: - port: Middle - uid: 25014 + uid: 25048 type: SignalReceiver - - uid: 12373 + - uid: 12380 components: - rot: 1.5707963267948966 rad pos: -26.5,25.5 @@ -97733,15 +97743,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25014 + uid: 25048 Forward: - port: Left - uid: 25014 + uid: 25048 Off: - port: Middle - uid: 25014 + uid: 25048 type: SignalReceiver - - uid: 12374 + - uid: 12381 components: - rot: 1.5707963267948966 rad pos: -27.5,25.5 @@ -97750,15 +97760,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25014 + uid: 25048 Forward: - port: Left - uid: 25014 + uid: 25048 Off: - port: Middle - uid: 25014 + uid: 25048 type: SignalReceiver - - uid: 12375 + - uid: 12382 components: - rot: 1.5707963267948966 rad pos: -28.5,25.5 @@ -97767,15 +97777,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25014 + uid: 25048 Forward: - port: Left - uid: 25014 + uid: 25048 Off: - port: Middle - uid: 25014 + uid: 25048 type: SignalReceiver - - uid: 12376 + - uid: 12383 components: - rot: 1.5707963267948966 rad pos: -30.5,25.5 @@ -97784,15 +97794,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25014 + uid: 25048 Forward: - port: Left - uid: 25014 + uid: 25048 Off: - port: Middle - uid: 25014 + uid: 25048 type: SignalReceiver - - uid: 12377 + - uid: 12384 components: - rot: 1.5707963267948966 rad pos: -29.5,25.5 @@ -97801,15 +97811,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25014 + uid: 25048 Forward: - port: Left - uid: 25014 + uid: 25048 Off: - port: Middle - uid: 25014 + uid: 25048 type: SignalReceiver - - uid: 12378 + - uid: 12385 components: - rot: 1.5707963267948966 rad pos: -35.5,25.5 @@ -97818,15 +97828,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25018 + uid: 25052 Forward: - port: Left - uid: 25018 + uid: 25052 Off: - port: Middle - uid: 25018 + uid: 25052 type: SignalReceiver - - uid: 12379 + - uid: 12386 components: - rot: 1.5707963267948966 rad pos: -34.5,25.5 @@ -97835,15 +97845,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25018 + uid: 25052 Forward: - port: Left - uid: 25018 + uid: 25052 Off: - port: Middle - uid: 25018 + uid: 25052 type: SignalReceiver - - uid: 12380 + - uid: 12387 components: - rot: 1.5707963267948966 rad pos: -36.5,25.5 @@ -97852,15 +97862,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25018 + uid: 25052 Forward: - port: Left - uid: 25018 + uid: 25052 Off: - port: Middle - uid: 25018 + uid: 25052 type: SignalReceiver - - uid: 12381 + - uid: 12388 components: - rot: 1.5707963267948966 rad pos: -37.5,25.5 @@ -97869,15 +97879,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25018 + uid: 25052 Forward: - port: Left - uid: 25018 + uid: 25052 Off: - port: Middle - uid: 25018 + uid: 25052 type: SignalReceiver - - uid: 12382 + - uid: 12389 components: - rot: 1.5707963267948966 rad pos: -38.5,25.5 @@ -97886,15 +97896,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25018 + uid: 25052 Forward: - port: Left - uid: 25018 + uid: 25052 Off: - port: Middle - uid: 25018 + uid: 25052 type: SignalReceiver - - uid: 12383 + - uid: 12390 components: - rot: 1.5707963267948966 rad pos: -48.5,19.5 @@ -97903,15 +97913,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25017 + uid: 25051 Forward: - port: Left - uid: 25017 + uid: 25051 Off: - port: Middle - uid: 25017 + uid: 25051 type: SignalReceiver - - uid: 12384 + - uid: 12391 components: - rot: 1.5707963267948966 rad pos: -49.5,19.5 @@ -97920,15 +97930,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25017 + uid: 25051 Forward: - port: Left - uid: 25017 + uid: 25051 Off: - port: Middle - uid: 25017 + uid: 25051 type: SignalReceiver - - uid: 12385 + - uid: 12392 components: - rot: 1.5707963267948966 rad pos: -50.5,19.5 @@ -97937,15 +97947,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25017 + uid: 25051 Forward: - port: Left - uid: 25017 + uid: 25051 Off: - port: Middle - uid: 25017 + uid: 25051 type: SignalReceiver - - uid: 12386 + - uid: 12393 components: - rot: 1.5707963267948966 rad pos: -51.5,19.5 @@ -97954,15 +97964,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25017 + uid: 25051 Forward: - port: Left - uid: 25017 + uid: 25051 Off: - port: Middle - uid: 25017 + uid: 25051 type: SignalReceiver - - uid: 12387 + - uid: 12394 components: - rot: 1.5707963267948966 rad pos: -48.5,23.5 @@ -97971,15 +97981,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25016 + uid: 25050 Forward: - port: Left - uid: 25016 + uid: 25050 Off: - port: Middle - uid: 25016 + uid: 25050 type: SignalReceiver - - uid: 12388 + - uid: 12395 components: - rot: 1.5707963267948966 rad pos: -49.5,23.5 @@ -97988,15 +97998,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25016 + uid: 25050 Forward: - port: Left - uid: 25016 + uid: 25050 Off: - port: Middle - uid: 25016 + uid: 25050 type: SignalReceiver - - uid: 12389 + - uid: 12396 components: - rot: 1.5707963267948966 rad pos: -50.5,23.5 @@ -98005,15 +98015,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25016 + uid: 25050 Forward: - port: Left - uid: 25016 + uid: 25050 Off: - port: Middle - uid: 25016 + uid: 25050 type: SignalReceiver - - uid: 12390 + - uid: 12397 components: - rot: 1.5707963267948966 rad pos: -51.5,23.5 @@ -98022,15 +98032,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25016 + uid: 25050 Forward: - port: Left - uid: 25016 + uid: 25050 Off: - port: Middle - uid: 25016 + uid: 25050 type: SignalReceiver - - uid: 12391 + - uid: 12398 components: - rot: 1.5707963267948966 rad pos: -52.5,19.5 @@ -98039,15 +98049,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25017 + uid: 25051 Forward: - port: Left - uid: 25017 + uid: 25051 Off: - port: Middle - uid: 25017 + uid: 25051 type: SignalReceiver - - uid: 12392 + - uid: 12399 components: - rot: 1.5707963267948966 rad pos: -53.5,19.5 @@ -98056,15 +98066,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25017 + uid: 25051 Forward: - port: Left - uid: 25017 + uid: 25051 Off: - port: Middle - uid: 25017 + uid: 25051 type: SignalReceiver - - uid: 12393 + - uid: 12400 components: - rot: 1.5707963267948966 rad pos: -47.5,19.5 @@ -98073,15 +98083,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25017 + uid: 25051 Forward: - port: Left - uid: 25017 + uid: 25051 Off: - port: Middle - uid: 25017 + uid: 25051 type: SignalReceiver - - uid: 12394 + - uid: 12401 components: - rot: 1.5707963267948966 rad pos: -46.5,19.5 @@ -98090,15 +98100,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25017 + uid: 25051 Forward: - port: Left - uid: 25017 + uid: 25051 Off: - port: Middle - uid: 25017 + uid: 25051 type: SignalReceiver - - uid: 12395 + - uid: 12402 components: - rot: 1.5707963267948966 rad pos: -47.5,23.5 @@ -98107,15 +98117,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25016 + uid: 25050 Forward: - port: Left - uid: 25016 + uid: 25050 Off: - port: Middle - uid: 25016 + uid: 25050 type: SignalReceiver - - uid: 12396 + - uid: 12403 components: - rot: 1.5707963267948966 rad pos: -46.5,23.5 @@ -98124,15 +98134,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25016 + uid: 25050 Forward: - port: Left - uid: 25016 + uid: 25050 Off: - port: Middle - uid: 25016 + uid: 25050 type: SignalReceiver - - uid: 12397 + - uid: 12404 components: - rot: 1.5707963267948966 rad pos: -53.5,23.5 @@ -98141,15 +98151,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25016 + uid: 25050 Forward: - port: Left - uid: 25016 + uid: 25050 Off: - port: Middle - uid: 25016 + uid: 25050 type: SignalReceiver - - uid: 12398 + - uid: 12405 components: - rot: 1.5707963267948966 rad pos: -52.5,23.5 @@ -98158,15 +98168,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25016 + uid: 25050 Forward: - port: Left - uid: 25016 + uid: 25050 Off: - port: Middle - uid: 25016 + uid: 25050 type: SignalReceiver - - uid: 12399 + - uid: 12406 components: - rot: 3.141592653589793 rad pos: -42.5,14.5 @@ -98175,15 +98185,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25015 + uid: 25049 Forward: - port: Left - uid: 25015 + uid: 25049 Off: - port: Middle - uid: 25015 + uid: 25049 type: SignalReceiver - - uid: 12400 + - uid: 12407 components: - rot: 1.5707963267948966 rad pos: -51.5,30.5 @@ -98192,15 +98202,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25020 + uid: 25054 Forward: - port: Left - uid: 25020 + uid: 25054 Off: - port: Middle - uid: 25020 + uid: 25054 type: SignalReceiver - - uid: 12401 + - uid: 12408 components: - rot: 1.5707963267948966 rad pos: -52.5,30.5 @@ -98209,15 +98219,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25020 + uid: 25054 Forward: - port: Left - uid: 25020 + uid: 25054 Off: - port: Middle - uid: 25020 + uid: 25054 type: SignalReceiver - - uid: 12402 + - uid: 12409 components: - rot: 1.5707963267948966 rad pos: -50.5,30.5 @@ -98226,15 +98236,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25020 + uid: 25054 Forward: - port: Left - uid: 25020 + uid: 25054 Off: - port: Middle - uid: 25020 + uid: 25054 type: SignalReceiver - - uid: 12403 + - uid: 12410 components: - rot: 1.5707963267948966 rad pos: -49.5,30.5 @@ -98243,15 +98253,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25020 + uid: 25054 Forward: - port: Left - uid: 25020 + uid: 25054 Off: - port: Middle - uid: 25020 + uid: 25054 type: SignalReceiver - - uid: 12404 + - uid: 12411 components: - rot: 1.5707963267948966 rad pos: -48.5,30.5 @@ -98260,15 +98270,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25020 + uid: 25054 Forward: - port: Left - uid: 25020 + uid: 25054 Off: - port: Middle - uid: 25020 + uid: 25054 type: SignalReceiver - - uid: 12405 + - uid: 12412 components: - rot: 1.5707963267948966 rad pos: -52.5,34.5 @@ -98277,15 +98287,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25021 + uid: 25055 Forward: - port: Left - uid: 25021 + uid: 25055 Off: - port: Middle - uid: 25021 + uid: 25055 type: SignalReceiver - - uid: 12406 + - uid: 12413 components: - rot: 1.5707963267948966 rad pos: -51.5,34.5 @@ -98294,15 +98304,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25021 + uid: 25055 Forward: - port: Left - uid: 25021 + uid: 25055 Off: - port: Middle - uid: 25021 + uid: 25055 type: SignalReceiver - - uid: 12407 + - uid: 12414 components: - rot: 1.5707963267948966 rad pos: -50.5,34.5 @@ -98311,15 +98321,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25021 + uid: 25055 Forward: - port: Left - uid: 25021 + uid: 25055 Off: - port: Middle - uid: 25021 + uid: 25055 type: SignalReceiver - - uid: 12408 + - uid: 12415 components: - rot: 1.5707963267948966 rad pos: -49.5,34.5 @@ -98328,15 +98338,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25021 + uid: 25055 Forward: - port: Left - uid: 25021 + uid: 25055 Off: - port: Middle - uid: 25021 + uid: 25055 type: SignalReceiver - - uid: 12409 + - uid: 12416 components: - rot: 1.5707963267948966 rad pos: -48.5,34.5 @@ -98345,15 +98355,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25021 + uid: 25055 Forward: - port: Left - uid: 25021 + uid: 25055 Off: - port: Middle - uid: 25021 + uid: 25055 type: SignalReceiver - - uid: 12410 + - uid: 12417 components: - rot: 1.5707963267948966 rad pos: -53.5,34.5 @@ -98362,15 +98372,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25021 + uid: 25055 Forward: - port: Left - uid: 25021 + uid: 25055 Off: - port: Middle - uid: 25021 + uid: 25055 type: SignalReceiver - - uid: 12411 + - uid: 12418 components: - rot: 1.5707963267948966 rad pos: -53.5,30.5 @@ -98379,15 +98389,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25020 + uid: 25054 Forward: - port: Left - uid: 25020 + uid: 25054 Off: - port: Middle - uid: 25020 + uid: 25054 type: SignalReceiver - - uid: 12412 + - uid: 12419 components: - rot: 1.5707963267948966 rad pos: -47.5,34.5 @@ -98396,15 +98406,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25021 + uid: 25055 Forward: - port: Left - uid: 25021 + uid: 25055 Off: - port: Middle - uid: 25021 + uid: 25055 type: SignalReceiver - - uid: 12413 + - uid: 12420 components: - rot: 1.5707963267948966 rad pos: -47.5,30.5 @@ -98413,15 +98423,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25020 + uid: 25054 Forward: - port: Left - uid: 25020 + uid: 25054 Off: - port: Middle - uid: 25020 + uid: 25054 type: SignalReceiver - - uid: 12414 + - uid: 12421 components: - rot: -1.5707963267948966 rad pos: -12.5,27.5 @@ -98430,15 +98440,15 @@ entities: - inputs: Reverse: - port: Left - uid: 25019 + uid: 25053 Forward: - port: Right - uid: 25019 + uid: 25053 Off: - port: Middle - uid: 25019 + uid: 25053 type: SignalReceiver - - uid: 12415 + - uid: 12422 components: - pos: -10.5,28.5 parent: 2 @@ -98446,15 +98456,15 @@ entities: - inputs: Reverse: - port: Left - uid: 25019 + uid: 25053 Forward: - port: Right - uid: 25019 + uid: 25053 Off: - port: Middle - uid: 25019 + uid: 25053 type: SignalReceiver - - uid: 12416 + - uid: 12423 components: - rot: -1.5707963267948966 rad pos: -9.5,28.5 @@ -98463,15 +98473,15 @@ entities: - inputs: Reverse: - port: Left - uid: 25019 + uid: 25053 Forward: - port: Right - uid: 25019 + uid: 25053 Off: - port: Middle - uid: 25019 + uid: 25053 type: SignalReceiver - - uid: 12417 + - uid: 12424 components: - rot: 3.141592653589793 rad pos: -42.5,15.5 @@ -98480,15 +98490,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25015 + uid: 25049 Forward: - port: Left - uid: 25015 + uid: 25049 Off: - port: Middle - uid: 25015 + uid: 25049 type: SignalReceiver - - uid: 12418 + - uid: 12425 components: - rot: 3.141592653589793 rad pos: -42.5,17.5 @@ -98497,15 +98507,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25015 + uid: 25049 Forward: - port: Left - uid: 25015 + uid: 25049 Off: - port: Middle - uid: 25015 + uid: 25049 type: SignalReceiver - - uid: 12419 + - uid: 12426 components: - rot: 3.141592653589793 rad pos: -42.5,13.5 @@ -98514,15 +98524,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25015 + uid: 25049 Forward: - port: Left - uid: 25015 + uid: 25049 Off: - port: Middle - uid: 25015 + uid: 25049 type: SignalReceiver - - uid: 12420 + - uid: 12427 components: - pos: -47.5,13.5 parent: 2 @@ -98530,15 +98540,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25022 + uid: 25056 Forward: - port: Left - uid: 25022 + uid: 25056 Off: - port: Middle - uid: 25022 + uid: 25056 type: SignalReceiver - - uid: 12421 + - uid: 12428 components: - pos: -47.5,14.5 parent: 2 @@ -98546,15 +98556,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25022 + uid: 25056 Forward: - port: Left - uid: 25022 + uid: 25056 Off: - port: Middle - uid: 25022 + uid: 25056 type: SignalReceiver - - uid: 12422 + - uid: 12429 components: - pos: -47.5,12.5 parent: 2 @@ -98562,15 +98572,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25022 + uid: 25056 Forward: - port: Left - uid: 25022 + uid: 25056 Off: - port: Middle - uid: 25022 + uid: 25056 type: SignalReceiver - - uid: 12423 + - uid: 12430 components: - rot: 1.5707963267948966 rad pos: -8.5,22.5 @@ -98579,15 +98589,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25019 + uid: 25053 Forward: - port: Left - uid: 25019 + uid: 25053 Off: - port: Middle - uid: 25019 + uid: 25053 type: SignalReceiver - - uid: 12424 + - uid: 12431 components: - rot: 1.5707963267948966 rad pos: -7.5,22.5 @@ -98596,15 +98606,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25019 + uid: 25053 Forward: - port: Left - uid: 25019 + uid: 25053 Off: - port: Middle - uid: 25019 + uid: 25053 type: SignalReceiver - - uid: 12425 + - uid: 12432 components: - rot: 1.5707963267948966 rad pos: -6.5,22.5 @@ -98613,15 +98623,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25019 + uid: 25053 Forward: - port: Left - uid: 25019 + uid: 25053 Off: - port: Middle - uid: 25019 + uid: 25053 type: SignalReceiver - - uid: 12426 + - uid: 12433 components: - rot: 1.5707963267948966 rad pos: 43.5,37.5 @@ -98630,15 +98640,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25023 + uid: 25057 Forward: - port: Left - uid: 25023 + uid: 25057 Off: - port: Middle - uid: 25023 + uid: 25057 type: SignalReceiver - - uid: 12427 + - uid: 12434 components: - rot: 1.5707963267948966 rad pos: 44.5,37.5 @@ -98647,15 +98657,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25023 + uid: 25057 Forward: - port: Left - uid: 25023 + uid: 25057 Off: - port: Middle - uid: 25023 + uid: 25057 type: SignalReceiver - - uid: 12428 + - uid: 12435 components: - rot: 1.5707963267948966 rad pos: 45.5,37.5 @@ -98664,15 +98674,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25023 + uid: 25057 Forward: - port: Left - uid: 25023 + uid: 25057 Off: - port: Middle - uid: 25023 + uid: 25057 type: SignalReceiver - - uid: 12429 + - uid: 12436 components: - pos: 46.5,37.5 parent: 2 @@ -98680,15 +98690,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25023 + uid: 25057 Forward: - port: Left - uid: 25023 + uid: 25057 Off: - port: Middle - uid: 25023 + uid: 25057 type: SignalReceiver - - uid: 12430 + - uid: 12437 components: - rot: 1.5707963267948966 rad pos: 46.5,36.5 @@ -98697,15 +98707,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25023 + uid: 25057 Forward: - port: Left - uid: 25023 + uid: 25057 Off: - port: Middle - uid: 25023 + uid: 25057 type: SignalReceiver - - uid: 12431 + - uid: 12438 components: - rot: 1.5707963267948966 rad pos: 47.5,36.5 @@ -98714,15 +98724,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25023 + uid: 25057 Forward: - port: Left - uid: 25023 + uid: 25057 Off: - port: Middle - uid: 25023 + uid: 25057 type: SignalReceiver - - uid: 12432 + - uid: 12439 components: - rot: 3.141592653589793 rad pos: 48.5,36.5 @@ -98731,15 +98741,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25023 + uid: 25057 Forward: - port: Left - uid: 25023 + uid: 25057 Off: - port: Middle - uid: 25023 + uid: 25057 type: SignalReceiver - - uid: 12433 + - uid: 12440 components: - rot: 3.141592653589793 rad pos: 48.5,37.5 @@ -98748,15 +98758,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25023 + uid: 25057 Forward: - port: Left - uid: 25023 + uid: 25057 Off: - port: Middle - uid: 25023 + uid: 25057 type: SignalReceiver - - uid: 12434 + - uid: 12441 components: - rot: 1.5707963267948966 rad pos: -9.5,22.5 @@ -98765,15 +98775,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25019 + uid: 25053 Forward: - port: Left - uid: 25019 + uid: 25053 Off: - port: Middle - uid: 25019 + uid: 25053 type: SignalReceiver - - uid: 12435 + - uid: 12442 components: - pos: -9.5,27.5 parent: 2 @@ -98781,15 +98791,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25019 + uid: 25053 Forward: - port: Left - uid: 25019 + uid: 25053 Off: - port: Middle - uid: 25019 + uid: 25053 type: SignalReceiver - - uid: 12436 + - uid: 12443 components: - pos: -9.5,26.5 parent: 2 @@ -98797,15 +98807,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25019 + uid: 25053 Forward: - port: Left - uid: 25019 + uid: 25053 Off: - port: Middle - uid: 25019 + uid: 25053 type: SignalReceiver - - uid: 12437 + - uid: 12444 components: - pos: -9.5,25.5 parent: 2 @@ -98813,15 +98823,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25019 + uid: 25053 Forward: - port: Left - uid: 25019 + uid: 25053 Off: - port: Middle - uid: 25019 + uid: 25053 type: SignalReceiver - - uid: 12438 + - uid: 12445 components: - pos: -9.5,24.5 parent: 2 @@ -98829,15 +98839,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25019 + uid: 25053 Forward: - port: Left - uid: 25019 + uid: 25053 Off: - port: Middle - uid: 25019 + uid: 25053 type: SignalReceiver - - uid: 12439 + - uid: 12446 components: - pos: -9.5,23.5 parent: 2 @@ -98845,16 +98855,16 @@ entities: - inputs: Reverse: - port: Right - uid: 25019 + uid: 25053 Forward: - port: Left - uid: 25019 + uid: 25053 Off: - port: Middle - uid: 25019 + uid: 25053 type: SignalReceiver - type: ActiveConveyor - - uid: 12440 + - uid: 12447 components: - rot: 3.141592653589793 rad pos: -10.5,22.5 @@ -98863,15 +98873,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25019 + uid: 25053 Forward: - port: Left - uid: 25019 + uid: 25053 Off: - port: Middle - uid: 25019 + uid: 25053 type: SignalReceiver - - uid: 12441 + - uid: 12448 components: - rot: 1.5707963267948966 rad pos: -10.5,23.5 @@ -98880,15 +98890,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25019 + uid: 25053 Forward: - port: Left - uid: 25019 + uid: 25053 Off: - port: Middle - uid: 25019 + uid: 25053 type: SignalReceiver - - uid: 12442 + - uid: 12449 components: - rot: -1.5707963267948966 rad pos: -10.5,27.5 @@ -98897,15 +98907,15 @@ entities: - inputs: Reverse: - port: Left - uid: 25019 + uid: 25053 Forward: - port: Right - uid: 25019 + uid: 25053 Off: - port: Middle - uid: 25019 + uid: 25053 type: SignalReceiver - - uid: 12443 + - uid: 12450 components: - rot: -1.5707963267948966 rad pos: -11.5,27.5 @@ -98914,15 +98924,15 @@ entities: - inputs: Reverse: - port: Left - uid: 25019 + uid: 25053 Forward: - port: Right - uid: 25019 + uid: 25053 Off: - port: Middle - uid: 25019 + uid: 25053 type: SignalReceiver - - uid: 12444 + - uid: 12451 components: - rot: 3.141592653589793 rad pos: 48.5,38.5 @@ -98931,15 +98941,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25023 + uid: 25057 Forward: - port: Left - uid: 25023 + uid: 25057 Off: - port: Middle - uid: 25023 + uid: 25057 type: SignalReceiver - - uid: 12445 + - uid: 12452 components: - rot: 3.141592653589793 rad pos: -37.5,-99.5 @@ -98948,21 +98958,21 @@ entities: - inputs: Reverse: - port: Right - uid: 25024 + uid: 25058 - port: Right - uid: 25025 + uid: 25059 Forward: - port: Left - uid: 25024 + uid: 25058 - port: Left - uid: 25025 + uid: 25059 Off: - port: Middle - uid: 25024 + uid: 25058 - port: Middle - uid: 25025 + uid: 25059 type: SignalReceiver - - uid: 12446 + - uid: 12453 components: - rot: 3.141592653589793 rad pos: -37.5,-98.5 @@ -98971,21 +98981,21 @@ entities: - inputs: Reverse: - port: Right - uid: 25024 + uid: 25058 - port: Right - uid: 25025 + uid: 25059 Forward: - port: Left - uid: 25024 + uid: 25058 - port: Left - uid: 25025 + uid: 25059 Off: - port: Middle - uid: 25024 + uid: 25058 - port: Middle - uid: 25025 + uid: 25059 type: SignalReceiver - - uid: 12447 + - uid: 12454 components: - rot: 3.141592653589793 rad pos: -37.5,-100.5 @@ -98994,21 +99004,21 @@ entities: - inputs: Reverse: - port: Right - uid: 25024 + uid: 25058 - port: Right - uid: 25025 + uid: 25059 Forward: - port: Left - uid: 25024 + uid: 25058 - port: Left - uid: 25025 + uid: 25059 Off: - port: Middle - uid: 25024 + uid: 25058 - port: Middle - uid: 25025 + uid: 25059 type: SignalReceiver - - uid: 12448 + - uid: 12455 components: - rot: 3.141592653589793 rad pos: -37.5,-101.5 @@ -99017,21 +99027,21 @@ entities: - inputs: Reverse: - port: Right - uid: 25024 + uid: 25058 - port: Right - uid: 25025 + uid: 25059 Forward: - port: Left - uid: 25024 + uid: 25058 - port: Left - uid: 25025 + uid: 25059 Off: - port: Middle - uid: 25024 + uid: 25058 - port: Middle - uid: 25025 + uid: 25059 type: SignalReceiver - - uid: 12449 + - uid: 12456 components: - rot: 3.141592653589793 rad pos: -37.5,-102.5 @@ -99040,21 +99050,21 @@ entities: - inputs: Reverse: - port: Right - uid: 25024 + uid: 25058 - port: Right - uid: 25025 + uid: 25059 Forward: - port: Left - uid: 25024 + uid: 25058 - port: Left - uid: 25025 + uid: 25059 Off: - port: Middle - uid: 25024 + uid: 25058 - port: Middle - uid: 25025 + uid: 25059 type: SignalReceiver - - uid: 12450 + - uid: 12457 components: - rot: 3.141592653589793 rad pos: -37.5,-103.5 @@ -99063,21 +99073,21 @@ entities: - inputs: Reverse: - port: Right - uid: 25024 + uid: 25058 - port: Right - uid: 25025 + uid: 25059 Forward: - port: Left - uid: 25024 + uid: 25058 - port: Left - uid: 25025 + uid: 25059 Off: - port: Middle - uid: 25024 + uid: 25058 - port: Middle - uid: 25025 + uid: 25059 type: SignalReceiver - - uid: 12451 + - uid: 12458 components: - rot: 3.141592653589793 rad pos: -37.5,-104.5 @@ -99086,21 +99096,21 @@ entities: - inputs: Reverse: - port: Right - uid: 25024 + uid: 25058 - port: Right - uid: 25025 + uid: 25059 Forward: - port: Left - uid: 25024 + uid: 25058 - port: Left - uid: 25025 + uid: 25059 Off: - port: Middle - uid: 25024 + uid: 25058 - port: Middle - uid: 25025 + uid: 25059 type: SignalReceiver - - uid: 12452 + - uid: 12459 components: - rot: -1.5707963267948966 rad pos: -37.5,-105.5 @@ -99109,21 +99119,21 @@ entities: - inputs: Reverse: - port: Right - uid: 25024 + uid: 25058 - port: Right - uid: 25025 + uid: 25059 Forward: - port: Left - uid: 25024 + uid: 25058 - port: Left - uid: 25025 + uid: 25059 Off: - port: Middle - uid: 25024 + uid: 25058 - port: Middle - uid: 25025 + uid: 25059 type: SignalReceiver - - uid: 12453 + - uid: 12460 components: - rot: -1.5707963267948966 rad pos: -36.5,-105.5 @@ -99132,21 +99142,21 @@ entities: - inputs: Reverse: - port: Right - uid: 25024 + uid: 25058 - port: Right - uid: 25025 + uid: 25059 Forward: - port: Left - uid: 25024 + uid: 25058 - port: Left - uid: 25025 + uid: 25059 Off: - port: Middle - uid: 25024 + uid: 25058 - port: Middle - uid: 25025 + uid: 25059 type: SignalReceiver - - uid: 12454 + - uid: 12461 components: - rot: 3.141592653589793 rad pos: -38.5,-105.5 @@ -99155,21 +99165,21 @@ entities: - inputs: Reverse: - port: Right - uid: 25024 + uid: 25058 - port: Right - uid: 25025 + uid: 25059 Forward: - port: Left - uid: 25024 + uid: 25058 - port: Left - uid: 25025 + uid: 25059 Off: - port: Middle - uid: 25024 + uid: 25058 - port: Middle - uid: 25025 + uid: 25059 type: SignalReceiver - - uid: 12455 + - uid: 12462 components: - rot: 1.5707963267948966 rad pos: -38.5,-104.5 @@ -99178,21 +99188,21 @@ entities: - inputs: Reverse: - port: Right - uid: 25024 + uid: 25058 - port: Right - uid: 25025 + uid: 25059 Forward: - port: Left - uid: 25024 + uid: 25058 - port: Left - uid: 25025 + uid: 25059 Off: - port: Middle - uid: 25024 + uid: 25058 - port: Middle - uid: 25025 + uid: 25059 type: SignalReceiver - - uid: 12456 + - uid: 12463 components: - rot: 3.141592653589793 rad pos: -11.5,-11.5 @@ -99201,15 +99211,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25026 + uid: 25060 - port: Left - uid: 25026 + uid: 25060 Forward: [] Off: - port: Middle - uid: 25026 + uid: 25060 type: SignalReceiver - - uid: 12457 + - uid: 12464 components: - rot: 3.141592653589793 rad pos: -11.5,-12.5 @@ -99218,15 +99228,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25026 + uid: 25060 - port: Left - uid: 25026 + uid: 25060 Forward: [] Off: - port: Middle - uid: 25026 + uid: 25060 type: SignalReceiver - - uid: 12458 + - uid: 12465 components: - rot: 3.141592653589793 rad pos: -42.5,16.5 @@ -99235,29 +99245,29 @@ entities: - inputs: Reverse: - port: Right - uid: 25015 + uid: 25049 Forward: - port: Left - uid: 25015 + uid: 25049 Off: - port: Middle - uid: 25015 + uid: 25049 type: SignalReceiver - proto: ConveyorBeltAssembly entities: - - uid: 12459 + - uid: 12466 components: - pos: -27.603226,-31.351301 parent: 2 type: Transform - proto: CounterWoodFrame entities: - - uid: 12460 + - uid: 12467 components: - pos: -47.5,-64.5 parent: 2 type: Transform - - uid: 12461 + - uid: 12468 components: - rot: 1.5707963267948966 rad pos: 3.5,-35.5 @@ -99265,7 +99275,7 @@ entities: type: Transform - proto: CrateArtifactContainer entities: - - uid: 12462 + - uid: 12469 components: - pos: 73.5,-36.5 parent: 2 @@ -99290,7 +99300,7 @@ entities: type: EntityStorage - proto: CrateEmergencyFire entities: - - uid: 12463 + - uid: 12470 components: - pos: -39.5,-15.5 parent: 2 @@ -99313,7 +99323,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12464 + - uid: 12471 components: - pos: -38.5,23.5 parent: 2 @@ -99338,49 +99348,49 @@ entities: type: EntityStorage - proto: CrateEmptySpawner entities: - - uid: 12465 + - uid: 12472 components: - pos: -43.5,23.5 parent: 2 type: Transform - - uid: 12466 + - uid: 12473 components: - pos: -44.5,22.5 parent: 2 type: Transform - - uid: 12467 + - uid: 12474 components: - pos: -40.5,20.5 parent: 2 type: Transform - - uid: 12468 + - uid: 12475 components: - pos: -38.5,19.5 parent: 2 type: Transform - - uid: 12469 + - uid: 12476 components: - pos: 6.5,49.5 parent: 2 type: Transform - - uid: 12470 + - uid: 12477 components: - pos: -35.5,-96.5 parent: 2 type: Transform - - uid: 12471 + - uid: 12478 components: - pos: -36.5,-96.5 parent: 2 type: Transform - - uid: 12472 + - uid: 12479 components: - pos: -46.5,44.5 parent: 2 type: Transform - proto: CrateEngineeringAMEJar entities: - - uid: 12473 + - uid: 12480 components: - pos: -50.5,-13.5 parent: 2 @@ -99405,7 +99415,7 @@ entities: type: EntityStorage - proto: CrateEngineeringAMEShielding entities: - - uid: 12474 + - uid: 12481 components: - pos: -50.5,-14.5 parent: 2 @@ -99428,7 +99438,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12475 + - uid: 12482 components: - pos: -50.5,-12.5 parent: 2 @@ -99453,7 +99463,7 @@ entities: type: EntityStorage - proto: CrateEngineeringCableLV entities: - - uid: 12476 + - uid: 12483 components: - pos: -42.5,-15.5 parent: 2 @@ -99478,7 +99488,7 @@ entities: type: EntityStorage - proto: CrateEngineeringElectricalSupplies entities: - - uid: 12477 + - uid: 12484 components: - pos: 22.5,-49.5 parent: 2 @@ -99501,7 +99511,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12478 + - uid: 12485 components: - pos: -36.5,-63.5 parent: 2 @@ -99526,36 +99536,36 @@ entities: type: EntityStorage - proto: CrateEngineeringGear entities: - - uid: 12479 + - uid: 12486 components: - pos: 44.5,-7.5 parent: 2 type: Transform - proto: CrateFilledSpawner entities: - - uid: 12480 + - uid: 12487 components: - pos: -31.5,-48.5 parent: 2 type: Transform - - uid: 12481 + - uid: 12488 components: - pos: -71.5,-45.5 parent: 2 type: Transform - - uid: 12482 + - uid: 12489 components: - pos: 72.5,-56.5 parent: 2 type: Transform - - uid: 12483 + - uid: 12490 components: - pos: 71.5,-62.5 parent: 2 type: Transform - proto: CrateFoodCooking entities: - - uid: 12484 + - uid: 12491 components: - pos: -47.5,-80.5 parent: 2 @@ -99580,7 +99590,7 @@ entities: type: EntityStorage - proto: CrateFunBoardGames entities: - - uid: 12485 + - uid: 12492 components: - pos: 63.5,6.5 parent: 2 @@ -99603,9 +99613,16 @@ entities: - 0 - 0 type: EntityStorage +- proto: CrateFunToyBox + entities: + - uid: 12493 + components: + - pos: 2.5,-9.5 + parent: 2 + type: Transform - proto: CrateHydroponicsSeeds entities: - - uid: 12486 + - uid: 12494 components: - pos: 12.5,-52.5 parent: 2 @@ -99630,7 +99647,7 @@ entities: type: EntityStorage - proto: CrateHydroponicsSeedsExotic entities: - - uid: 12487 + - uid: 12495 components: - pos: -47.5,-70.5 parent: 2 @@ -99655,14 +99672,14 @@ entities: type: EntityStorage - proto: CrateMaterialGlass entities: - - uid: 12488 + - uid: 12496 components: - pos: 43.5,-7.5 parent: 2 type: Transform - proto: CrateMousetrapBoxes entities: - - uid: 12489 + - uid: 12497 components: - pos: 60.5,42.5 parent: 2 @@ -99687,7 +99704,7 @@ entities: type: EntityStorage - proto: CrateNPCCow entities: - - uid: 12490 + - uid: 12498 components: - pos: -0.5,9.5 parent: 2 @@ -99712,7 +99729,7 @@ entities: type: EntityStorage - proto: CrateScience entities: - - uid: 12491 + - uid: 12499 components: - pos: 73.5,-34.5 parent: 2 @@ -99737,7 +99754,7 @@ entities: type: EntityStorage - proto: CrateSecurityNonlethal entities: - - uid: 12492 + - uid: 12500 components: - pos: 29.5,29.5 parent: 2 @@ -99762,7 +99779,7 @@ entities: type: EntityStorage - proto: CrateServiceJanitorialSupplies entities: - - uid: 12493 + - uid: 12501 components: - pos: -9.5,-21.5 parent: 2 @@ -99787,7 +99804,7 @@ entities: type: EntityStorage - proto: CrateServiceSmokeables entities: - - uid: 12494 + - uid: 12502 components: - pos: 56.5,59.5 parent: 2 @@ -99812,17 +99829,17 @@ entities: type: EntityStorage - proto: CrayonBox entities: - - uid: 12495 + - uid: 12503 components: - pos: 4.384584,-10.869311 parent: 2 type: Transform - - uid: 12496 + - uid: 12504 components: - pos: -29.428709,8.545935 parent: 2 type: Transform - - uid: 12497 + - uid: 12505 components: - rot: 3.141592653589793 rad pos: 54.561592,-64.4996 @@ -99830,14 +99847,14 @@ entities: type: Transform - proto: CrayonMime entities: - - uid: 12498 + - uid: 12506 components: - pos: -28.463287,46.56972 parent: 2 type: Transform - proto: Crematorium entities: - - uid: 12499 + - uid: 12507 components: - pos: -33.5,11.5 parent: 2 @@ -99862,12 +99879,12 @@ entities: type: EntityStorage - proto: CrewMonitoringComputerCircuitboard entities: - - uid: 12500 + - uid: 12508 components: - pos: 53.35249,35.65033 parent: 2 type: Transform - - uid: 12501 + - uid: 12509 components: - pos: -12.410412,37.664482 parent: 2 @@ -99876,14 +99893,14 @@ entities: type: EmitSoundOnCollide - proto: CrewMonitoringServer entities: - - uid: 12502 + - uid: 12510 components: - pos: 8.5,-58.5 parent: 2 type: Transform - proto: CrewMonitoringServerMachineCircuitboard entities: - - uid: 12503 + - uid: 12511 components: - pos: -12.176037,37.430107 parent: 2 @@ -99892,104 +99909,104 @@ entities: type: EmitSoundOnCollide - proto: Crowbar entities: - - uid: 12504 + - uid: 12512 components: - pos: 73.47424,-38.51016 parent: 2 type: Transform - - uid: 12505 + - uid: 12513 components: - pos: -29.495306,-23.60064 parent: 2 type: Transform - - uid: 12506 + - uid: 12514 components: - pos: 40.56214,-53.476734 parent: 2 type: Transform - - uid: 12507 + - uid: 12515 components: - pos: -56.61051,-70.40599 parent: 2 type: Transform - - uid: 12508 + - uid: 12516 components: - pos: -23.432364,-28.473803 parent: 2 type: Transform - - uid: 12509 + - uid: 12517 components: - pos: -36.564224,18.558977 parent: 2 type: Transform - - uid: 12510 + - uid: 12518 components: - rot: 6.283185307179586 rad pos: 57.539654,47.47334 parent: 2 type: Transform - - uid: 12511 + - uid: 12519 components: - pos: -9.421157,-15.518739 parent: 2 type: Transform - proto: CrowbarRed entities: - - uid: 12512 + - uid: 12520 components: - pos: 4.478334,-12.322436 parent: 2 type: Transform - - uid: 12513 + - uid: 12521 components: - pos: 52.637024,11.413784 parent: 2 type: Transform - - uid: 12514 + - uid: 12522 components: - pos: -16.370653,65.49348 parent: 2 type: Transform - proto: CryoPod entities: - - uid: 12515 + - uid: 12523 components: - pos: -24.5,-59.5 parent: 2 type: Transform - proto: CultAltarSpawner entities: - - uid: 12516 + - uid: 12524 components: - pos: -56.5,-62.5 parent: 2 type: Transform - proto: d10Dice entities: - - uid: 12517 + - uid: 12525 components: - pos: 9.458234,-7.2284737 parent: 2 type: Transform - - uid: 12518 + - uid: 12526 components: - pos: -29.44911,-46.43667 parent: 2 type: Transform - proto: d6Dice entities: - - uid: 12519 + - uid: 12527 components: - pos: -1.2845753,31.100819 parent: 2 type: Transform - - uid: 12520 + - uid: 12528 components: - rot: 1.5707963267948966 rad pos: 54.383816,29.301033 parent: 2 type: Transform - - uid: 12521 + - uid: 12529 components: - rot: 1.5707963267948966 rad pos: 54.165066,28.926033 @@ -99997,14 +100014,14 @@ entities: type: Transform - proto: d8Dice entities: - - uid: 12522 + - uid: 12530 components: - pos: 10.036359,-7.0722237 parent: 2 type: Transform - proto: DefibrillatorCabinet entities: - - uid: 12523 + - uid: 12531 components: - rot: 1.5707963267948966 rad pos: 19.5,21.5 @@ -100012,106 +100029,106 @@ entities: type: Transform - proto: DefibrillatorCabinetFilled entities: - - uid: 12524 + - uid: 12532 components: - rot: 1.5707963267948966 rad pos: -26.5,-72.5 parent: 2 type: Transform - - uid: 12525 + - uid: 12533 components: - pos: 44.5,16.5 parent: 2 type: Transform - - uid: 12526 + - uid: 12534 components: - pos: -1.5,-58.5 parent: 2 type: Transform - - uid: 12527 + - uid: 12535 components: - pos: -4.5,-58.5 parent: 2 type: Transform - - uid: 12528 + - uid: 12536 components: - pos: -7.5,-58.5 parent: 2 type: Transform - - uid: 12529 + - uid: 12537 components: - rot: -1.5707963267948966 rad pos: -30.5,-38.5 parent: 2 type: Transform - - uid: 12530 + - uid: 12538 components: - pos: -32.5,-8.5 parent: 2 type: Transform - - uid: 12531 + - uid: 12539 components: - pos: -28.5,20.5 parent: 2 type: Transform - - uid: 12532 + - uid: 12540 components: - pos: -9.5,47.5 parent: 2 type: Transform - - uid: 12533 + - uid: 12541 components: - rot: -1.5707963267948966 rad pos: 33.5,18.5 parent: 2 type: Transform - - uid: 12534 + - uid: 12542 components: - pos: -5.5,-51.5 parent: 2 type: Transform - - uid: 12535 + - uid: 12543 components: - pos: 29.5,-3.5 parent: 2 type: Transform - - uid: 12536 + - uid: 12544 components: - pos: 33.5,-70.5 parent: 2 type: Transform - - uid: 12537 + - uid: 12545 components: - pos: 56.5,-43.5 parent: 2 type: Transform - - uid: 12538 + - uid: 12546 components: - pos: 24.5,-38.5 parent: 2 type: Transform - - uid: 12539 + - uid: 12547 components: - pos: 6.5,-24.5 parent: 2 type: Transform - - uid: 12540 + - uid: 12548 components: - pos: 32.5,-23.5 parent: 2 type: Transform - - uid: 12541 + - uid: 12549 components: - rot: 3.141592653589793 rad pos: 2.5,-2.5 parent: 2 type: Transform - - uid: 12542 + - uid: 12550 components: - pos: -48.5,45.5 parent: 2 type: Transform - - uid: 12543 + - uid: 12551 components: - rot: -1.5707963267948966 rad pos: 66.5,-10.5 @@ -100119,31 +100136,31 @@ entities: type: Transform - proto: DeployableBarrier entities: - - uid: 12544 + - uid: 12552 components: - anchored: False pos: 29.5,25.5 parent: 2 type: Transform - - uid: 12545 + - uid: 12553 components: - anchored: False pos: 32.5,19.5 parent: 2 type: Transform - - uid: 12546 + - uid: 12554 components: - anchored: False pos: 31.5,19.5 parent: 2 type: Transform - - uid: 12547 + - uid: 12555 components: - anchored: False pos: -16.5,27.5 parent: 2 type: Transform - - uid: 12548 + - uid: 12556 components: - anchored: False pos: 62.5,7.5 @@ -100151,7 +100168,7 @@ entities: type: Transform - proto: DeskBell entities: - - uid: 12549 + - uid: 12557 components: - pos: 26.493649,19.578499 parent: 2 @@ -100160,49 +100177,49 @@ entities: type: MeleeWeapon missingComponents: - Item - - uid: 12550 + - uid: 12558 components: - pos: -26.393543,22.737104 parent: 2 type: Transform missingComponents: - Item - - uid: 12551 + - uid: 12559 components: - pos: 2.482698,4.566377 parent: 2 type: Transform missingComponents: - Item - - uid: 12552 + - uid: 12560 components: - pos: 7.4455647,7.463886 parent: 2 type: Transform missingComponents: - Item - - uid: 12553 + - uid: 12561 components: - pos: 15.491525,13.615058 parent: 2 type: Transform missingComponents: - Item - - uid: 12554 + - uid: 12562 components: - pos: -2.9507003,-48.39704 parent: 2 type: Transform missingComponents: - Item - - uid: 12555 + - uid: 12563 components: - pos: 42.281975,-40.51448 parent: 2 type: Transform missingComponents: - Item - - uid: 12556 + - uid: 12564 components: - pos: 29.278196,-39.552807 parent: 2 @@ -100211,669 +100228,669 @@ entities: - Item - proto: DiceBag entities: - - uid: 12557 + - uid: 12565 components: - pos: 10.645734,-7.4315987 parent: 2 type: Transform - - uid: 12558 + - uid: 12566 components: - pos: 23.269382,-29.34838 parent: 2 type: Transform - - uid: 12559 + - uid: 12567 components: - pos: -0.45645034,30.694569 parent: 2 type: Transform - - uid: 12560 + - uid: 12568 components: - pos: -16.724815,61.696495 parent: 2 type: Transform - - uid: 12561 + - uid: 12569 components: - pos: -18.55294,62.55587 parent: 2 type: Transform - proto: DiseaseDiagnoser entities: - - uid: 12562 + - uid: 12570 components: - pos: -22.5,-75.5 parent: 2 type: Transform - proto: DisposalBend entities: - - uid: 12563 + - uid: 12571 components: - rot: 1.5707963267948966 rad pos: -0.5,1.5 parent: 2 type: Transform - - uid: 12564 + - uid: 12572 components: - pos: 21.5,-29.5 parent: 2 type: Transform - - uid: 12565 + - uid: 12573 components: - rot: -1.5707963267948966 rad pos: 25.5,-36.5 parent: 2 type: Transform - - uid: 12566 + - uid: 12574 components: - rot: 1.5707963267948966 rad pos: -19.5,-60.5 parent: 2 type: Transform - - uid: 12567 + - uid: 12575 components: - pos: 13.5,2.5 parent: 2 type: Transform - - uid: 12568 + - uid: 12576 components: - pos: 4.5,-3.5 parent: 2 type: Transform - - uid: 12569 + - uid: 12577 components: - pos: 34.5,8.5 parent: 2 type: Transform - - uid: 12570 + - uid: 12578 components: - rot: 1.5707963267948966 rad pos: -14.5,-9.5 parent: 2 type: Transform - - uid: 12571 + - uid: 12579 components: - rot: 1.5707963267948966 rad pos: 16.5,-18.5 parent: 2 type: Transform - - uid: 12572 + - uid: 12580 components: - pos: 0.5,0.5 parent: 2 type: Transform - - uid: 12573 + - uid: 12581 components: - rot: 1.5707963267948966 rad pos: 0.5,2.5 parent: 2 type: Transform - - uid: 12574 + - uid: 12582 components: - rot: 3.141592653589793 rad pos: 8.5,13.5 parent: 2 type: Transform - - uid: 12575 + - uid: 12583 components: - rot: 1.5707963267948966 rad pos: 17.5,7.5 parent: 2 type: Transform - - uid: 12576 + - uid: 12584 components: - rot: -1.5707963267948966 rad pos: 22.5,7.5 parent: 2 type: Transform - - uid: 12577 + - uid: 12585 components: - rot: 1.5707963267948966 rad pos: 22.5,8.5 parent: 2 type: Transform - - uid: 12578 + - uid: 12586 components: - rot: -1.5707963267948966 rad pos: 20.5,-25.5 parent: 2 type: Transform - - uid: 12579 + - uid: 12587 components: - pos: 36.5,-17.5 parent: 2 type: Transform - - uid: 12580 + - uid: 12588 components: - pos: 1.5,-53.5 parent: 2 type: Transform - - uid: 12581 + - uid: 12589 components: - rot: -1.5707963267948966 rad pos: 34.5,-6.5 parent: 2 type: Transform - - uid: 12582 + - uid: 12590 components: - pos: 18.5,-49.5 parent: 2 type: Transform - - uid: 12583 + - uid: 12591 components: - rot: 3.141592653589793 rad pos: 15.5,-45.5 parent: 2 type: Transform - - uid: 12584 + - uid: 12592 components: - rot: 3.141592653589793 rad pos: -4.5,-12.5 parent: 2 type: Transform - - uid: 12585 + - uid: 12593 components: - rot: 1.5707963267948966 rad pos: -15.5,-53.5 parent: 2 type: Transform - - uid: 12586 + - uid: 12594 components: - rot: -1.5707963267948966 rad pos: -15.5,-54.5 parent: 2 type: Transform - - uid: 12587 + - uid: 12595 components: - rot: 1.5707963267948966 rad pos: -17.5,-54.5 parent: 2 type: Transform - - uid: 12588 + - uid: 12596 components: - pos: 18.5,1.5 parent: 2 type: Transform - - uid: 12589 + - uid: 12597 components: - rot: 3.141592653589793 rad pos: 10.5,-3.5 parent: 2 type: Transform - - uid: 12590 + - uid: 12598 components: - rot: -1.5707963267948966 rad pos: 0.5,1.5 parent: 2 type: Transform - - uid: 12591 + - uid: 12599 components: - rot: 3.141592653589793 rad pos: 0.5,-0.5 parent: 2 type: Transform - - uid: 12592 + - uid: 12600 components: - pos: 12.5,13.5 parent: 2 type: Transform - - uid: 12593 + - uid: 12601 components: - rot: 3.141592653589793 rad pos: 22.5,-11.5 parent: 2 type: Transform - - uid: 12594 + - uid: 12602 components: - rot: 3.141592653589793 rad pos: 18.5,-6.5 parent: 2 type: Transform - - uid: 12595 + - uid: 12603 components: - rot: 3.141592653589793 rad pos: 3.5,-3.5 parent: 2 type: Transform - - uid: 12596 + - uid: 12604 components: - rot: 3.141592653589793 rad pos: -23.5,-84.5 parent: 2 type: Transform - - uid: 12597 + - uid: 12605 components: - rot: -1.5707963267948966 rad pos: 17.5,0.5 parent: 2 type: Transform - - uid: 12598 + - uid: 12606 components: - pos: 17.5,-45.5 parent: 2 type: Transform - - uid: 12599 + - uid: 12607 components: - rot: -1.5707963267948966 rad pos: 24.5,-18.5 parent: 2 type: Transform - - uid: 12600 + - uid: 12608 components: - rot: -1.5707963267948966 rad pos: -17.5,-60.5 parent: 2 type: Transform - - uid: 12601 + - uid: 12609 components: - rot: -1.5707963267948966 rad pos: 13.5,-0.5 parent: 2 type: Transform - - uid: 12602 + - uid: 12610 components: - rot: 1.5707963267948966 rad pos: -23.5,-73.5 parent: 2 type: Transform - - uid: 12603 + - uid: 12611 components: - pos: 15.5,19.5 parent: 2 type: Transform - - uid: 12604 + - uid: 12612 components: - pos: -3.5,-12.5 parent: 2 type: Transform - - uid: 12605 + - uid: 12613 components: - pos: 15.5,-25.5 parent: 2 type: Transform - - uid: 12606 + - uid: 12614 components: - rot: 3.141592653589793 rad pos: 17.5,-49.5 parent: 2 type: Transform - - uid: 12607 + - uid: 12615 components: - rot: -1.5707963267948966 rad pos: 34.5,16.5 parent: 2 type: Transform - - uid: 12608 + - uid: 12616 components: - pos: 29.5,17.5 parent: 2 type: Transform - - uid: 12609 + - uid: 12617 components: - rot: 3.141592653589793 rad pos: 29.5,16.5 parent: 2 type: Transform - - uid: 12610 + - uid: 12618 components: - pos: 41.5,6.5 parent: 2 type: Transform - - uid: 12611 + - uid: 12619 components: - rot: 3.141592653589793 rad pos: 52.5,-13.5 parent: 2 type: Transform - - uid: 12612 + - uid: 12620 components: - pos: 54.5,-13.5 parent: 2 type: Transform - - uid: 12613 + - uid: 12621 components: - pos: 49.5,-43.5 parent: 2 type: Transform - - uid: 12614 + - uid: 12622 components: - rot: -1.5707963267948966 rad pos: 49.5,-50.5 parent: 2 type: Transform - - uid: 12615 + - uid: 12623 components: - pos: 67.5,-45.5 parent: 2 type: Transform - - uid: 12616 + - uid: 12624 components: - pos: 49.5,-55.5 parent: 2 type: Transform - - uid: 12617 + - uid: 12625 components: - rot: -1.5707963267948966 rad pos: -6.5,-66.5 parent: 2 type: Transform - - uid: 12618 + - uid: 12626 components: - rot: 3.141592653589793 rad pos: -23.5,-15.5 parent: 2 type: Transform - - uid: 12619 + - uid: 12627 components: - rot: 3.141592653589793 rad pos: 25.5,-60.5 parent: 2 type: Transform - - uid: 12620 + - uid: 12628 components: - pos: 39.5,-60.5 parent: 2 type: Transform - - uid: 12621 + - uid: 12629 components: - rot: 3.141592653589793 rad pos: -19.5,-43.5 parent: 2 type: Transform - - uid: 12622 + - uid: 12630 components: - rot: -1.5707963267948966 rad pos: 39.5,-73.5 parent: 2 type: Transform - - uid: 12623 + - uid: 12631 components: - rot: -1.5707963267948966 rad pos: -13.5,-6.5 parent: 2 type: Transform - - uid: 12624 + - uid: 12632 components: - pos: -13.5,8.5 parent: 2 type: Transform - - uid: 12625 + - uid: 12633 components: - rot: -1.5707963267948966 rad pos: -19.5,6.5 parent: 2 type: Transform - - uid: 12626 + - uid: 12634 components: - rot: 3.141592653589793 rad pos: -25.5,-6.5 parent: 2 type: Transform - - uid: 12627 + - uid: 12635 components: - rot: 3.141592653589793 rad pos: -32.5,-13.5 parent: 2 type: Transform - - uid: 12628 + - uid: 12636 components: - pos: -32.5,-10.5 parent: 2 type: Transform - - uid: 12629 + - uid: 12637 components: - rot: 3.141592653589793 rad pos: -36.5,-10.5 parent: 2 type: Transform - - uid: 12630 + - uid: 12638 components: - pos: -36.5,-5.5 parent: 2 type: Transform - - uid: 12631 + - uid: 12639 components: - rot: 3.141592653589793 rad pos: -38.5,-5.5 parent: 2 type: Transform - - uid: 12632 + - uid: 12640 components: - rot: 1.5707963267948966 rad pos: -19.5,-75.5 parent: 2 type: Transform - - uid: 12633 + - uid: 12641 components: - rot: -1.5707963267948966 rad pos: -19.5,-77.5 parent: 2 type: Transform - - uid: 12634 + - uid: 12642 components: - rot: 1.5707963267948966 rad pos: -36.5,-77.5 parent: 2 type: Transform - - uid: 12635 + - uid: 12643 components: - rot: 3.141592653589793 rad pos: -42.5,23.5 parent: 2 type: Transform - - uid: 12636 + - uid: 12644 components: - rot: 1.5707963267948966 rad pos: -42.5,19.5 parent: 2 type: Transform - - uid: 12637 + - uid: 12645 components: - rot: 1.5707963267948966 rad pos: -45.5,5.5 parent: 2 type: Transform - - uid: 12638 + - uid: 12646 components: - rot: 3.141592653589793 rad pos: -45.5,-0.5 parent: 2 type: Transform - - uid: 12639 + - uid: 12647 components: - pos: 2.5,-61.5 parent: 2 type: Transform - - uid: 12640 + - uid: 12648 components: - rot: 1.5707963267948966 rad pos: -13.5,-61.5 parent: 2 type: Transform - - uid: 12641 + - uid: 12649 components: - rot: -1.5707963267948966 rad pos: -13.5,-67.5 parent: 2 type: Transform - - uid: 12642 + - uid: 12650 components: - rot: -1.5707963267948966 rad pos: -12.5,5.5 parent: 2 type: Transform - - uid: 12643 + - uid: 12651 components: - rot: -1.5707963267948966 rad pos: -45.5,11.5 parent: 2 type: Transform - - uid: 12644 + - uid: 12652 components: - rot: 1.5707963267948966 rad pos: -45.5,18.5 parent: 2 type: Transform - - uid: 12645 + - uid: 12653 components: - rot: -1.5707963267948966 rad pos: 20.5,-40.5 parent: 2 type: Transform - - uid: 12646 + - uid: 12654 components: - rot: 1.5707963267948966 rad pos: 19.5,-40.5 parent: 2 type: Transform - - uid: 12647 + - uid: 12655 components: - rot: 1.5707963267948966 rad pos: -19.5,29.5 parent: 2 type: Transform - - uid: 12648 + - uid: 12656 components: - rot: -1.5707963267948966 rad pos: -15.5,29.5 parent: 2 type: Transform - - uid: 12649 + - uid: 12657 components: - rot: 3.141592653589793 rad pos: -17.5,44.5 parent: 2 type: Transform - - uid: 12650 + - uid: 12658 components: - pos: -4.5,44.5 parent: 2 type: Transform - - uid: 12651 + - uid: 12659 components: - pos: -13.5,50.5 parent: 2 type: Transform - - uid: 12652 + - uid: 12660 components: - rot: 1.5707963267948966 rad pos: -17.5,50.5 parent: 2 type: Transform - - uid: 12653 + - uid: 12661 components: - rot: -1.5707963267948966 rad pos: 75.5,-47.5 parent: 2 type: Transform - - uid: 12654 + - uid: 12662 components: - pos: -5.5,-13.5 parent: 2 type: Transform - - uid: 12655 + - uid: 12663 components: - rot: 3.141592653589793 rad pos: -10.5,-13.5 parent: 2 type: Transform - - uid: 12656 + - uid: 12664 components: - rot: 3.141592653589793 rad pos: -18.5,-14.5 parent: 2 type: Transform - - uid: 12657 + - uid: 12665 components: - rot: -1.5707963267948966 rad pos: -12.5,-14.5 parent: 2 type: Transform - - uid: 12658 + - uid: 12666 components: - pos: -18.5,-4.5 parent: 2 type: Transform - - uid: 12659 + - uid: 12667 components: - rot: 3.141592653589793 rad pos: -24.5,-4.5 parent: 2 type: Transform - - uid: 12660 + - uid: 12668 components: - rot: 1.5707963267948966 rad pos: -24.5,8.5 parent: 2 type: Transform - - uid: 12661 + - uid: 12669 components: - rot: -1.5707963267948966 rad pos: -20.5,8.5 parent: 2 type: Transform - - uid: 12662 + - uid: 12670 components: - pos: -20.5,20.5 parent: 2 type: Transform - - uid: 12663 + - uid: 12671 components: - rot: 1.5707963267948966 rad pos: -25.5,20.5 parent: 2 type: Transform - - uid: 12664 + - uid: 12672 components: - rot: -1.5707963267948966 rad pos: -25.5,19.5 parent: 2 type: Transform - - uid: 12665 + - uid: 12673 components: - rot: 1.5707963267948966 rad pos: -46.5,11.5 parent: 2 type: Transform - - uid: 12666 + - uid: 12674 components: - rot: 3.141592653589793 rad pos: -46.5,0.5 parent: 2 type: Transform - - uid: 12667 + - uid: 12675 components: - pos: -26.5,0.5 parent: 2 type: Transform - - uid: 12668 + - uid: 12676 components: - rot: 3.141592653589793 rad pos: -26.5,-5.5 parent: 2 type: Transform - - uid: 12669 + - uid: 12677 components: - pos: -20.5,-5.5 parent: 2 type: Transform - - uid: 12670 + - uid: 12678 components: - rot: 3.141592653589793 rad pos: -20.5,-25.5 parent: 2 type: Transform - - uid: 12671 + - uid: 12679 components: - rot: -1.5707963267948966 rad pos: 30.5,-86.5 parent: 2 type: Transform - - uid: 12672 + - uid: 12680 components: - rot: 1.5707963267948966 rad pos: 24.5,-73.5 parent: 2 type: Transform - - uid: 12673 + - uid: 12681 components: - rot: 3.141592653589793 rad pos: 15.5,17.5 @@ -100881,165 +100898,165 @@ entities: type: Transform - proto: DisposalJunction entities: - - uid: 12674 + - uid: 12682 components: - rot: -1.5707963267948966 rad pos: 19.5,-43.5 parent: 2 type: Transform - - uid: 12675 + - uid: 12683 components: - rot: -1.5707963267948966 rad pos: 25.5,8.5 parent: 2 type: Transform - - uid: 12676 + - uid: 12684 components: - rot: 3.141592653589793 rad pos: 21.5,-36.5 parent: 2 type: Transform - - uid: 12677 + - uid: 12685 components: - rot: 1.5707963267948966 rad pos: -7.5,0.5 parent: 2 type: Transform - - uid: 12678 + - uid: 12686 components: - rot: -1.5707963267948966 rad pos: 12.5,2.5 parent: 2 type: Transform - - uid: 12679 + - uid: 12687 components: - rot: -1.5707963267948966 rad pos: 6.5,2.5 parent: 2 type: Transform - - uid: 12680 + - uid: 12688 components: - rot: -1.5707963267948966 rad pos: -0.5,0.5 parent: 2 type: Transform - - uid: 12681 + - uid: 12689 components: - rot: 3.141592653589793 rad pos: 24.5,-10.5 parent: 2 type: Transform - - uid: 12682 + - uid: 12690 components: - rot: -1.5707963267948966 rad pos: 18.5,-29.5 parent: 2 type: Transform - - uid: 12683 + - uid: 12691 components: - rot: 3.141592653589793 rad pos: 34.5,6.5 parent: 2 type: Transform - - uid: 12684 + - uid: 12692 components: - rot: 1.5707963267948966 rad pos: -13.5,-43.5 parent: 2 type: Transform - - uid: 12685 + - uid: 12693 components: - rot: 1.5707963267948966 rad pos: -5.5,-53.5 parent: 2 type: Transform - - uid: 12686 + - uid: 12694 components: - rot: 3.141592653589793 rad pos: 16.5,-29.5 parent: 2 type: Transform - - uid: 12687 + - uid: 12695 components: - rot: -1.5707963267948966 rad pos: 18.5,7.5 parent: 2 type: Transform - - uid: 12688 + - uid: 12696 components: - rot: 1.5707963267948966 rad pos: -4.5,-27.5 parent: 2 type: Transform - - uid: 12689 + - uid: 12697 components: - rot: -1.5707963267948966 rad pos: 36.5,-43.5 parent: 2 type: Transform - - uid: 12690 + - uid: 12698 components: - rot: -1.5707963267948966 rad pos: 41.5,1.5 parent: 2 type: Transform - - uid: 12691 + - uid: 12699 components: - rot: -1.5707963267948966 rad pos: 46.5,-43.5 parent: 2 type: Transform - - uid: 12692 + - uid: 12700 components: - rot: 3.141592653589793 rad pos: 49.5,-45.5 parent: 2 type: Transform - - uid: 12693 + - uid: 12701 components: - rot: 3.141592653589793 rad pos: 49.5,-47.5 parent: 2 type: Transform - - uid: 12694 + - uid: 12702 components: - rot: 3.141592653589793 rad pos: 67.5,-47.5 parent: 2 type: Transform - - uid: 12695 + - uid: 12703 components: - rot: 1.5707963267948966 rad pos: -23.5,-13.5 parent: 2 type: Transform - - uid: 12696 + - uid: 12704 components: - pos: -19.5,-13.5 parent: 2 type: Transform - - uid: 12697 + - uid: 12705 components: - pos: -25.5,-0.5 parent: 2 type: Transform - - uid: 12698 + - uid: 12706 components: - pos: -19.5,23.5 parent: 2 type: Transform - - uid: 12699 + - uid: 12707 components: - rot: 1.5707963267948966 rad pos: -6.5,-61.5 parent: 2 type: Transform - - uid: 12700 + - uid: 12708 components: - pos: -15.5,37.5 parent: 2 type: Transform - - uid: 12701 + - uid: 12709 components: - rot: 1.5707963267948966 rad pos: 30.5,-73.5 @@ -101047,155 +101064,155 @@ entities: type: Transform - proto: DisposalJunctionFlipped entities: - - uid: 12702 + - uid: 12710 components: - rot: 1.5707963267948966 rad pos: -9.5,0.5 parent: 2 type: Transform - - uid: 12703 + - uid: 12711 components: - rot: -1.5707963267948966 rad pos: -0.5,-43.5 parent: 2 type: Transform - - uid: 12704 + - uid: 12712 components: - pos: 24.5,-17.5 parent: 2 type: Transform - - uid: 12705 + - uid: 12713 components: - rot: 1.5707963267948966 rad pos: 21.5,17.5 parent: 2 type: Transform - - uid: 12706 + - uid: 12714 components: - rot: -1.5707963267948966 rad pos: 3.5,-0.5 parent: 2 type: Transform - - uid: 12707 + - uid: 12715 components: - pos: 36.5,-18.5 parent: 2 type: Transform - - uid: 12708 + - uid: 12716 components: - pos: 16.5,-25.5 parent: 2 type: Transform - - uid: 12709 + - uid: 12717 components: - rot: 1.5707963267948966 rad pos: -5.5,-25.5 parent: 2 type: Transform - - uid: 12710 + - uid: 12718 components: - rot: 3.141592653589793 rad pos: -0.5,-45.5 parent: 2 type: Transform - - uid: 12711 + - uid: 12719 components: - pos: 34.5,1.5 parent: 2 type: Transform - - uid: 12712 + - uid: 12720 components: - rot: 3.141592653589793 rad pos: -17.5,-57.5 parent: 2 type: Transform - - uid: 12713 + - uid: 12721 components: - pos: 12.5,5.5 parent: 2 type: Transform - - uid: 12714 + - uid: 12722 components: - pos: 13.5,0.5 parent: 2 type: Transform - - uid: 12715 + - uid: 12723 components: - rot: -1.5707963267948966 rad pos: 10.5,-0.5 parent: 2 type: Transform - - uid: 12716 + - uid: 12724 components: - rot: -1.5707963267948966 rad pos: 6.5,-0.5 parent: 2 type: Transform - - uid: 12717 + - uid: 12725 components: - rot: -1.5707963267948966 rad pos: 24.5,-6.5 parent: 2 type: Transform - - uid: 12718 + - uid: 12726 components: - rot: 3.141592653589793 rad pos: 24.5,-11.5 parent: 2 type: Transform - - uid: 12719 + - uid: 12727 components: - rot: 3.141592653589793 rad pos: -4.5,-33.5 parent: 2 type: Transform - - uid: 12720 + - uid: 12728 components: - rot: -1.5707963267948966 rad pos: 6.5,-43.5 parent: 2 type: Transform - - uid: 12721 + - uid: 12729 components: - pos: 17.5,1.5 parent: 2 type: Transform - - uid: 12722 + - uid: 12730 components: - rot: 1.5707963267948966 rad pos: -10.5,-27.5 parent: 2 type: Transform - - uid: 12723 + - uid: 12731 components: - rot: -1.5707963267948966 rad pos: 25.5,-43.5 parent: 2 type: Transform - - uid: 12724 + - uid: 12732 components: - rot: 3.141592653589793 rad pos: -23.5,-75.5 parent: 2 type: Transform - - uid: 12725 + - uid: 12733 components: - rot: -1.5707963267948966 rad pos: 29.5,-60.5 parent: 2 type: Transform - - uid: 12726 + - uid: 12734 components: - pos: -13.5,5.5 parent: 2 type: Transform - - uid: 12727 + - uid: 12735 components: - rot: 1.5707963267948966 rad pos: -22.5,23.5 parent: 2 type: Transform - - uid: 12728 + - uid: 12736 components: - rot: -1.5707963267948966 rad pos: -3.5,-61.5 @@ -101203,6460 +101220,6460 @@ entities: type: Transform - proto: DisposalMachineFrame entities: - - uid: 12729 + - uid: 12737 components: - pos: 46.5,44.5 parent: 2 type: Transform - - uid: 12730 + - uid: 12738 components: - pos: -57.5,-41.5 parent: 2 type: Transform - - uid: 12731 + - uid: 12739 components: - pos: -22.5,-24.5 parent: 2 type: Transform - - uid: 12732 + - uid: 12740 components: - pos: -19.5,-99.5 parent: 2 type: Transform - proto: DisposalPipe entities: - - uid: 12733 + - uid: 12741 components: - rot: 1.5707963267948966 rad pos: -6.5,-9.5 parent: 2 type: Transform - - uid: 12734 + - uid: 12742 components: - pos: 12.5,6.5 parent: 2 type: Transform - - uid: 12735 + - uid: 12743 components: - rot: -1.5707963267948966 rad pos: 1.5,2.5 parent: 2 type: Transform - - uid: 12736 + - uid: 12744 components: - pos: 36.5,-25.5 parent: 2 type: Transform - - uid: 12737 + - uid: 12745 components: - pos: 36.5,-22.5 parent: 2 type: Transform - - uid: 12738 + - uid: 12746 components: - rot: -1.5707963267948966 rad pos: 25.5,-6.5 parent: 2 type: Transform - - uid: 12739 + - uid: 12747 components: - pos: 16.5,-42.5 parent: 2 type: Transform - - uid: 12740 + - uid: 12748 components: - pos: 16.5,-41.5 parent: 2 type: Transform - - uid: 12741 + - uid: 12749 components: - rot: -1.5707963267948966 rad pos: 20.5,-43.5 parent: 2 type: Transform - - uid: 12742 + - uid: 12750 components: - rot: 1.5707963267948966 rad pos: 13.5,-43.5 parent: 2 type: Transform - - uid: 12743 + - uid: 12751 components: - rot: 1.5707963267948966 rad pos: 12.5,-43.5 parent: 2 type: Transform - - uid: 12744 + - uid: 12752 components: - rot: 1.5707963267948966 rad pos: 8.5,-43.5 parent: 2 type: Transform - - uid: 12745 + - uid: 12753 components: - rot: 1.5707963267948966 rad pos: 4.5,-43.5 parent: 2 type: Transform - - uid: 12746 + - uid: 12754 components: - rot: -1.5707963267948966 rad pos: 0.5,-43.5 parent: 2 type: Transform - - uid: 12747 + - uid: 12755 components: - rot: -1.5707963267948966 rad pos: 17.5,-29.5 parent: 2 type: Transform - - uid: 12748 + - uid: 12756 components: - pos: 21.5,-33.5 parent: 2 type: Transform - - uid: 12749 + - uid: 12757 components: - pos: 21.5,-35.5 parent: 2 type: Transform - - uid: 12750 + - uid: 12758 components: - rot: 1.5707963267948966 rad pos: -13.5,-27.5 parent: 2 type: Transform - - uid: 12751 + - uid: 12759 components: - rot: -1.5707963267948966 rad pos: 31.5,-17.5 parent: 2 type: Transform - - uid: 12752 + - uid: 12760 components: - pos: 21.5,-30.5 parent: 2 type: Transform - - uid: 12753 + - uid: 12761 components: - pos: 21.5,-31.5 parent: 2 type: Transform - - uid: 12754 + - uid: 12762 components: - pos: 21.5,-34.5 parent: 2 type: Transform - - uid: 12755 + - uid: 12763 components: - rot: -1.5707963267948966 rad pos: 33.5,-17.5 parent: 2 type: Transform - - uid: 12756 + - uid: 12764 components: - rot: -1.5707963267948966 rad pos: 32.5,8.5 parent: 2 type: Transform - - uid: 12757 + - uid: 12765 components: - rot: -1.5707963267948966 rad pos: -6.5,-43.5 parent: 2 type: Transform - - uid: 12758 + - uid: 12766 components: - rot: -1.5707963267948966 rad pos: -8.5,-43.5 parent: 2 type: Transform - - uid: 12759 + - uid: 12767 components: - pos: -13.5,-45.5 parent: 2 type: Transform - - uid: 12760 + - uid: 12768 components: - pos: -17.5,-55.5 parent: 2 type: Transform - - uid: 12761 + - uid: 12769 components: - rot: -1.5707963267948966 rad pos: -18.5,-60.5 parent: 2 type: Transform - - uid: 12762 + - uid: 12770 components: - pos: -19.5,-61.5 parent: 2 type: Transform - - uid: 12763 + - uid: 12771 components: - rot: 1.5707963267948966 rad pos: -6.5,-53.5 parent: 2 type: Transform - - uid: 12764 + - uid: 12772 components: - rot: -1.5707963267948966 rad pos: 11.5,-0.5 parent: 2 type: Transform - - uid: 12765 + - uid: 12773 components: - rot: 1.5707963267948966 rad pos: 8.5,2.5 parent: 2 type: Transform - - uid: 12766 + - uid: 12774 components: - rot: 3.141592653589793 rad pos: -4.5,-1.5 parent: 2 type: Transform - - uid: 12767 + - uid: 12775 components: - rot: 3.141592653589793 rad pos: 8.5,14.5 parent: 2 type: Transform - - uid: 12768 + - uid: 12776 components: - rot: 3.141592653589793 rad pos: 3.5,-2.5 parent: 2 type: Transform - - uid: 12769 + - uid: 12777 components: - pos: 19.5,-41.5 parent: 2 type: Transform - - uid: 12770 + - uid: 12778 components: - pos: -9.5,1.5 parent: 2 type: Transform - - uid: 12771 + - uid: 12779 components: - pos: -9.5,4.5 parent: 2 type: Transform - - uid: 12772 + - uid: 12780 components: - pos: -9.5,3.5 parent: 2 type: Transform - - uid: 12773 + - uid: 12781 components: - pos: -9.5,2.5 parent: 2 type: Transform - - uid: 12774 + - uid: 12782 components: - rot: -1.5707963267948966 rad pos: 10.5,13.5 parent: 2 type: Transform - - uid: 12775 + - uid: 12783 components: - pos: 24.5,-9.5 parent: 2 type: Transform - - uid: 12776 + - uid: 12784 components: - rot: 1.5707963267948966 rad pos: 23.5,-6.5 parent: 2 type: Transform - - uid: 12777 + - uid: 12785 components: - pos: 24.5,-7.5 parent: 2 type: Transform - - uid: 12778 + - uid: 12786 components: - rot: -1.5707963267948966 rad pos: 3.5,2.5 parent: 2 type: Transform - - uid: 12779 + - uid: 12787 components: - rot: 1.5707963267948966 rad pos: -5.5,0.5 parent: 2 type: Transform - - uid: 12780 + - uid: 12788 components: - pos: -23.5,-74.5 parent: 2 type: Transform - - uid: 12781 + - uid: 12789 components: - pos: 12.5,11.5 parent: 2 type: Transform - - uid: 12782 + - uid: 12790 components: - rot: -1.5707963267948966 rad pos: -14.5,-43.5 parent: 2 type: Transform - - uid: 12783 + - uid: 12791 components: - rot: 1.5707963267948966 rad pos: -8.5,0.5 parent: 2 type: Transform - - uid: 12784 + - uid: 12792 components: - rot: 1.5707963267948966 rad pos: -8.5,-27.5 parent: 2 type: Transform - - uid: 12785 + - uid: 12793 components: - rot: 1.5707963267948966 rad pos: -9.5,-9.5 parent: 2 type: Transform - - uid: 12786 + - uid: 12794 components: - rot: 1.5707963267948966 rad pos: -2.5,0.5 parent: 2 type: Transform - - uid: 12787 + - uid: 12795 components: - rot: -1.5707963267948966 rad pos: 21.5,7.5 parent: 2 type: Transform - - uid: 12788 + - uid: 12796 components: - pos: 36.5,-24.5 parent: 2 type: Transform - - uid: 12789 + - uid: 12797 components: - pos: 34.5,-4.5 parent: 2 type: Transform - - uid: 12790 + - uid: 12798 components: - pos: 34.5,-2.5 parent: 2 type: Transform - - uid: 12791 + - uid: 12799 components: - rot: 3.141592653589793 rad pos: 34.5,5.5 parent: 2 type: Transform - - uid: 12792 + - uid: 12800 components: - rot: -1.5707963267948966 rad pos: 39.5,6.5 parent: 2 type: Transform - - uid: 12793 + - uid: 12801 components: - rot: -1.5707963267948966 rad pos: 28.5,-6.5 parent: 2 type: Transform - - uid: 12794 + - uid: 12802 components: - rot: -1.5707963267948966 rad pos: 26.5,-6.5 parent: 2 type: Transform - - uid: 12795 + - uid: 12803 components: - rot: 1.5707963267948966 rad pos: 11.5,-43.5 parent: 2 type: Transform - - uid: 12796 + - uid: 12804 components: - rot: 1.5707963267948966 rad pos: 9.5,-43.5 parent: 2 type: Transform - - uid: 12797 + - uid: 12805 components: - rot: 1.5707963267948966 rad pos: 10.5,-43.5 parent: 2 type: Transform - - uid: 12798 + - uid: 12806 components: - rot: 1.5707963267948966 rad pos: 7.5,-43.5 parent: 2 type: Transform - - uid: 12799 + - uid: 12807 components: - rot: 1.5707963267948966 rad pos: 5.5,-43.5 parent: 2 type: Transform - - uid: 12800 + - uid: 12808 components: - rot: -1.5707963267948966 rad pos: 1.5,-43.5 parent: 2 type: Transform - - uid: 12801 + - uid: 12809 components: - pos: 6.5,-44.5 parent: 2 type: Transform - - uid: 12802 + - uid: 12810 components: - pos: 21.5,-32.5 parent: 2 type: Transform - - uid: 12803 + - uid: 12811 components: - rot: 1.5707963267948966 rad pos: 20.5,-18.5 parent: 2 type: Transform - - uid: 12804 + - uid: 12812 components: - pos: 24.5,-13.5 parent: 2 type: Transform - - uid: 12805 + - uid: 12813 components: - rot: 1.5707963267948966 rad pos: 22.5,17.5 parent: 2 type: Transform - - uid: 12806 + - uid: 12814 components: - rot: -1.5707963267948966 rad pos: 28.5,17.5 parent: 2 type: Transform - - uid: 12807 + - uid: 12815 components: - pos: 25.5,15.5 parent: 2 type: Transform - - uid: 12808 + - uid: 12816 components: - rot: 1.5707963267948966 rad pos: 21.5,-6.5 parent: 2 type: Transform - - uid: 12809 + - uid: 12817 components: - rot: -1.5707963267948966 rad pos: 26.5,8.5 parent: 2 type: Transform - - uid: 12810 + - uid: 12818 components: - rot: -1.5707963267948966 rad pos: 11.5,2.5 parent: 2 type: Transform - - uid: 12811 + - uid: 12819 components: - pos: 6.5,4.5 parent: 2 type: Transform - - uid: 12812 + - uid: 12820 components: - rot: 1.5707963267948966 rad pos: -17.5,-27.5 parent: 2 type: Transform - - uid: 12813 + - uid: 12821 components: - rot: 1.5707963267948966 rad pos: -15.5,-27.5 parent: 2 type: Transform - - uid: 12814 + - uid: 12822 components: - rot: 1.5707963267948966 rad pos: -16.5,-27.5 parent: 2 type: Transform - - uid: 12815 + - uid: 12823 components: - rot: 1.5707963267948966 rad pos: -6.5,-27.5 parent: 2 type: Transform - - uid: 12816 + - uid: 12824 components: - rot: 1.5707963267948966 rad pos: -5.5,-27.5 parent: 2 type: Transform - - uid: 12817 + - uid: 12825 components: - rot: 1.5707963267948966 rad pos: -14.5,-27.5 parent: 2 type: Transform - - uid: 12818 + - uid: 12826 components: - rot: -1.5707963267948966 rad pos: -5.5,-33.5 parent: 2 type: Transform - - uid: 12819 + - uid: 12827 components: - pos: -19.5,-63.5 parent: 2 type: Transform - - uid: 12820 + - uid: 12828 components: - rot: 1.5707963267948966 rad pos: 8.5,-27.5 parent: 2 type: Transform - - uid: 12821 + - uid: 12829 components: - rot: 1.5707963267948966 rad pos: 7.5,-27.5 parent: 2 type: Transform - - uid: 12822 + - uid: 12830 components: - rot: 1.5707963267948966 rad pos: 5.5,-27.5 parent: 2 type: Transform - - uid: 12823 + - uid: 12831 components: - rot: 1.5707963267948966 rad pos: 3.5,-27.5 parent: 2 type: Transform - - uid: 12824 + - uid: 12832 components: - rot: 1.5707963267948966 rad pos: 2.5,-27.5 parent: 2 type: Transform - - uid: 12825 + - uid: 12833 components: - pos: -23.5,-77.5 parent: 2 type: Transform - - uid: 12826 + - uid: 12834 components: - rot: 1.5707963267948966 rad pos: 1.5,-27.5 parent: 2 type: Transform - - uid: 12827 + - uid: 12835 components: - rot: 1.5707963267948966 rad pos: -0.5,-27.5 parent: 2 type: Transform - - uid: 12828 + - uid: 12836 components: - rot: 1.5707963267948966 rad pos: -2.5,-27.5 parent: 2 type: Transform - - uid: 12829 + - uid: 12837 components: - rot: 1.5707963267948966 rad pos: 2.5,-0.5 parent: 2 type: Transform - - uid: 12830 + - uid: 12838 components: - pos: 18.5,-2.5 parent: 2 type: Transform - - uid: 12831 + - uid: 12839 components: - rot: -1.5707963267948966 rad pos: 27.5,17.5 parent: 2 type: Transform - - uid: 12832 + - uid: 12840 components: - rot: 3.141592653589793 rad pos: 16.5,-34.5 parent: 2 type: Transform - - uid: 12833 + - uid: 12841 components: - rot: 3.141592653589793 rad pos: 16.5,-32.5 parent: 2 type: Transform - - uid: 12834 + - uid: 12842 components: - rot: 3.141592653589793 rad pos: 16.5,-30.5 parent: 2 type: Transform - - uid: 12835 + - uid: 12843 components: - rot: 3.141592653589793 rad pos: 16.5,-28.5 parent: 2 type: Transform - - uid: 12836 + - uid: 12844 components: - rot: -1.5707963267948966 rad pos: 28.5,8.5 parent: 2 type: Transform - - uid: 12837 + - uid: 12845 components: - rot: 1.5707963267948966 rad pos: 7.5,-0.5 parent: 2 type: Transform - - uid: 12838 + - uid: 12846 components: - rot: 3.141592653589793 rad pos: 18.5,-26.5 parent: 2 type: Transform - - uid: 12839 + - uid: 12847 components: - pos: 18.5,-3.5 parent: 2 type: Transform - - uid: 12840 + - uid: 12848 components: - rot: 1.5707963267948966 rad pos: 0.5,-27.5 parent: 2 type: Transform - - uid: 12841 + - uid: 12849 components: - rot: 1.5707963267948966 rad pos: -1.5,-27.5 parent: 2 type: Transform - - uid: 12842 + - uid: 12850 components: - rot: 3.141592653589793 rad pos: 16.5,-33.5 parent: 2 type: Transform - - uid: 12843 + - uid: 12851 components: - rot: 3.141592653589793 rad pos: 16.5,-31.5 parent: 2 type: Transform - - uid: 12844 + - uid: 12852 components: - rot: -1.5707963267948966 rad pos: 26.5,-17.5 parent: 2 type: Transform - - uid: 12845 + - uid: 12853 components: - rot: 1.5707963267948966 rad pos: 5.5,-0.5 parent: 2 type: Transform - - uid: 12846 + - uid: 12854 components: - rot: 1.5707963267948966 rad pos: -12.5,-53.5 parent: 2 type: Transform - - uid: 12847 + - uid: 12855 components: - rot: 1.5707963267948966 rad pos: 6.5,-27.5 parent: 2 type: Transform - - uid: 12848 + - uid: 12856 components: - pos: 24.5,-15.5 parent: 2 type: Transform - - uid: 12849 + - uid: 12857 components: - rot: 1.5707963267948966 rad pos: 22.5,-18.5 parent: 2 type: Transform - - uid: 12850 + - uid: 12858 components: - rot: 1.5707963267948966 rad pos: 18.5,-18.5 parent: 2 type: Transform - - uid: 12851 + - uid: 12859 components: - pos: 12.5,7.5 parent: 2 type: Transform - - uid: 12852 + - uid: 12860 components: - rot: 3.141592653589793 rad pos: 17.5,3.5 parent: 2 type: Transform - - uid: 12853 + - uid: 12861 components: - rot: 1.5707963267948966 rad pos: -1.5,0.5 parent: 2 type: Transform - - uid: 12854 + - uid: 12862 components: - rot: 1.5707963267948966 rad pos: -3.5,0.5 parent: 2 type: Transform - - uid: 12855 + - uid: 12863 components: - pos: 10.5,-2.5 parent: 2 type: Transform - - uid: 12856 + - uid: 12864 components: - rot: -1.5707963267948966 rad pos: 14.5,0.5 parent: 2 type: Transform - - uid: 12857 + - uid: 12865 components: - rot: -1.5707963267948966 rad pos: 16.5,0.5 parent: 2 type: Transform - - uid: 12858 + - uid: 12866 components: - rot: 3.141592653589793 rad pos: -4.5,-7.5 parent: 2 type: Transform - - uid: 12859 + - uid: 12867 components: - rot: 3.141592653589793 rad pos: -3.5,-18.5 parent: 2 type: Transform - - uid: 12860 + - uid: 12868 components: - rot: 3.141592653589793 rad pos: 18.5,-51.5 parent: 2 type: Transform - - uid: 12861 + - uid: 12869 components: - rot: 3.141592653589793 rad pos: 18.5,-50.5 parent: 2 type: Transform - - uid: 12862 + - uid: 12870 components: - rot: 3.141592653589793 rad pos: 15.5,-42.5 parent: 2 type: Transform - - uid: 12863 + - uid: 12871 components: - pos: -4.5,-42.5 parent: 2 type: Transform - - uid: 12864 + - uid: 12872 components: - pos: -4.5,-40.5 parent: 2 type: Transform - - uid: 12865 + - uid: 12873 components: - pos: -4.5,-38.5 parent: 2 type: Transform - - uid: 12866 + - uid: 12874 components: - pos: -4.5,-36.5 parent: 2 type: Transform - - uid: 12867 + - uid: 12875 components: - pos: -4.5,-34.5 parent: 2 type: Transform - - uid: 12868 + - uid: 12876 components: - pos: -4.5,-32.5 parent: 2 type: Transform - - uid: 12869 + - uid: 12877 components: - pos: -4.5,-30.5 parent: 2 type: Transform - - uid: 12870 + - uid: 12878 components: - rot: -1.5707963267948966 rad pos: -17.5,-43.5 parent: 2 type: Transform - - uid: 12871 + - uid: 12879 components: - rot: -1.5707963267948966 rad pos: -16.5,-43.5 parent: 2 type: Transform - - uid: 12872 + - uid: 12880 components: - rot: 1.5707963267948966 rad pos: 11.5,-27.5 parent: 2 type: Transform - - uid: 12873 + - uid: 12881 components: - rot: 1.5707963267948966 rad pos: 9.5,-27.5 parent: 2 type: Transform - - uid: 12874 + - uid: 12882 components: - rot: 1.5707963267948966 rad pos: 10.5,-27.5 parent: 2 type: Transform - - uid: 12875 + - uid: 12883 components: - rot: 1.5707963267948966 rad pos: -9.5,-27.5 parent: 2 type: Transform - - uid: 12876 + - uid: 12884 components: - rot: 1.5707963267948966 rad pos: -7.5,-27.5 parent: 2 type: Transform - - uid: 12877 + - uid: 12885 components: - rot: 1.5707963267948966 rad pos: 15.5,-27.5 parent: 2 type: Transform - - uid: 12878 + - uid: 12886 components: - rot: 1.5707963267948966 rad pos: 14.5,-27.5 parent: 2 type: Transform - - uid: 12879 + - uid: 12887 components: - rot: 1.5707963267948966 rad pos: 13.5,-27.5 parent: 2 type: Transform - - uid: 12880 + - uid: 12888 components: - rot: 1.5707963267948966 rad pos: -12.5,-27.5 parent: 2 type: Transform - - uid: 12881 + - uid: 12889 components: - rot: 1.5707963267948966 rad pos: -11.5,-27.5 parent: 2 type: Transform - - uid: 12882 + - uid: 12890 components: - pos: 17.5,-48.5 parent: 2 type: Transform - - uid: 12883 + - uid: 12891 components: - pos: 4.5,-6.5 parent: 2 type: Transform - - uid: 12884 + - uid: 12892 components: - rot: -1.5707963267948966 rad pos: 1.5,-0.5 parent: 2 type: Transform - - uid: 12885 + - uid: 12893 components: - rot: -1.5707963267948966 rad pos: 2.5,2.5 parent: 2 type: Transform - - uid: 12886 + - uid: 12894 components: - rot: -1.5707963267948966 rad pos: 11.5,13.5 parent: 2 type: Transform - - uid: 12887 + - uid: 12895 components: - pos: 12.5,12.5 parent: 2 type: Transform - - uid: 12888 + - uid: 12896 components: - rot: 1.5707963267948966 rad pos: 23.5,17.5 parent: 2 type: Transform - - uid: 12889 + - uid: 12897 components: - rot: -1.5707963267948966 rad pos: 35.5,-17.5 parent: 2 type: Transform - - uid: 12890 + - uid: 12898 components: - pos: 36.5,-19.5 parent: 2 type: Transform - - uid: 12891 + - uid: 12899 components: - rot: 1.5707963267948966 rad pos: 22.5,-36.5 parent: 2 type: Transform - - uid: 12892 + - uid: 12900 components: - rot: 1.5707963267948966 rad pos: 24.5,-36.5 parent: 2 type: Transform - - uid: 12893 + - uid: 12901 components: - rot: -1.5707963267948966 rad pos: 30.5,8.5 parent: 2 type: Transform - - uid: 12894 + - uid: 12902 components: - rot: -1.5707963267948966 rad pos: 27.5,8.5 parent: 2 type: Transform - - uid: 12895 + - uid: 12903 components: - rot: -1.5707963267948966 rad pos: 29.5,8.5 parent: 2 type: Transform - - uid: 12896 + - uid: 12904 components: - rot: -1.5707963267948966 rad pos: 31.5,8.5 parent: 2 type: Transform - - uid: 12897 + - uid: 12905 components: - rot: -1.5707963267948966 rad pos: 26.5,-10.5 parent: 2 type: Transform - - uid: 12898 + - uid: 12906 components: - rot: 1.5707963267948966 rad pos: 23.5,-11.5 parent: 2 type: Transform - - uid: 12899 + - uid: 12907 components: - rot: -1.5707963267948966 rad pos: 20.5,7.5 parent: 2 type: Transform - - uid: 12900 + - uid: 12908 components: - rot: -1.5707963267948966 rad pos: 19.5,7.5 parent: 2 type: Transform - - uid: 12901 + - uid: 12909 components: - rot: -1.5707963267948966 rad pos: 23.5,8.5 parent: 2 type: Transform - - uid: 12902 + - uid: 12910 components: - rot: -1.5707963267948966 rad pos: 24.5,8.5 parent: 2 type: Transform - - uid: 12903 + - uid: 12911 components: - pos: 25.5,9.5 parent: 2 type: Transform - - uid: 12904 + - uid: 12912 components: - pos: 25.5,10.5 parent: 2 type: Transform - - uid: 12905 + - uid: 12913 components: - pos: 25.5,11.5 parent: 2 type: Transform - - uid: 12906 + - uid: 12914 components: - pos: 25.5,12.5 parent: 2 type: Transform - - uid: 12907 + - uid: 12915 components: - pos: 25.5,13.5 parent: 2 type: Transform - - uid: 12908 + - uid: 12916 components: - pos: 25.5,14.5 parent: 2 type: Transform - - uid: 12909 + - uid: 12917 components: - pos: 25.5,16.5 parent: 2 type: Transform - - uid: 12910 + - uid: 12918 components: - rot: -1.5707963267948966 rad pos: 26.5,17.5 parent: 2 type: Transform - - uid: 12911 + - uid: 12919 components: - rot: -1.5707963267948966 rad pos: 24.5,17.5 parent: 2 type: Transform - - uid: 12912 + - uid: 12920 components: - pos: 21.5,18.5 parent: 2 type: Transform - - uid: 12913 + - uid: 12921 components: - pos: 21.5,19.5 parent: 2 type: Transform - - uid: 12914 + - uid: 12922 components: - pos: 24.5,-12.5 parent: 2 type: Transform - - uid: 12915 + - uid: 12923 components: - rot: 1.5707963267948966 rad pos: 19.5,-18.5 parent: 2 type: Transform - - uid: 12916 + - uid: 12924 components: - rot: 1.5707963267948966 rad pos: 17.5,-18.5 parent: 2 type: Transform - - uid: 12917 + - uid: 12925 components: - pos: 16.5,-20.5 parent: 2 type: Transform - - uid: 12918 + - uid: 12926 components: - pos: 16.5,-21.5 parent: 2 type: Transform - - uid: 12919 + - uid: 12927 components: - pos: 16.5,-22.5 parent: 2 type: Transform - - uid: 12920 + - uid: 12928 components: - pos: 16.5,-23.5 parent: 2 type: Transform - - uid: 12921 + - uid: 12929 components: - pos: 16.5,-24.5 parent: 2 type: Transform - - uid: 12922 + - uid: 12930 components: - rot: -1.5707963267948966 rad pos: 17.5,-25.5 parent: 2 type: Transform - - uid: 12923 + - uid: 12931 components: - rot: -1.5707963267948966 rad pos: 19.5,-25.5 parent: 2 type: Transform - - uid: 12924 + - uid: 12932 components: - pos: 20.5,-24.5 parent: 2 type: Transform - - uid: 12925 + - uid: 12933 components: - rot: -1.5707963267948966 rad pos: 25.5,-17.5 parent: 2 type: Transform - - uid: 12926 + - uid: 12934 components: - rot: -1.5707963267948966 rad pos: 27.5,-17.5 parent: 2 type: Transform - - uid: 12927 + - uid: 12935 components: - rot: -1.5707963267948966 rad pos: 29.5,-17.5 parent: 2 type: Transform - - uid: 12928 + - uid: 12936 components: - rot: -1.5707963267948966 rad pos: 28.5,-17.5 parent: 2 type: Transform - - uid: 12929 + - uid: 12937 components: - rot: -1.5707963267948966 rad pos: 30.5,-17.5 parent: 2 type: Transform - - uid: 12930 + - uid: 12938 components: - rot: -1.5707963267948966 rad pos: 32.5,-17.5 parent: 2 type: Transform - - uid: 12931 + - uid: 12939 components: - rot: 3.141592653589793 rad pos: 16.5,-26.5 parent: 2 type: Transform - - uid: 12932 + - uid: 12940 components: - rot: -1.5707963267948966 rad pos: 19.5,-29.5 parent: 2 type: Transform - - uid: 12933 + - uid: 12941 components: - rot: -1.5707963267948966 rad pos: 20.5,-29.5 parent: 2 type: Transform - - uid: 12934 + - uid: 12942 components: - pos: 25.5,-35.5 parent: 2 type: Transform - - uid: 12935 + - uid: 12943 components: - rot: -1.5707963267948966 rad pos: 34.5,-17.5 parent: 2 type: Transform - - uid: 12936 + - uid: 12944 components: - rot: 3.141592653589793 rad pos: 36.5,-20.5 parent: 2 type: Transform - - uid: 12937 + - uid: 12945 components: - rot: 3.141592653589793 rad pos: 36.5,-21.5 parent: 2 type: Transform - - uid: 12938 + - uid: 12946 components: - rot: -1.5707963267948966 rad pos: 33.5,8.5 parent: 2 type: Transform - - uid: 12939 + - uid: 12947 components: - rot: 3.141592653589793 rad pos: -4.5,-10.5 parent: 2 type: Transform - - uid: 12940 + - uid: 12948 components: - rot: -1.5707963267948966 rad pos: 7.5,-25.5 parent: 2 type: Transform - - uid: 12941 + - uid: 12949 components: - pos: -7.5,-1.5 parent: 2 type: Transform - - uid: 12942 + - uid: 12950 components: - rot: -1.5707963267948966 rad pos: 20.5,17.5 parent: 2 type: Transform - - uid: 12943 + - uid: 12951 components: - rot: -1.5707963267948966 rad pos: 19.5,17.5 parent: 2 type: Transform - - uid: 12944 + - uid: 12952 components: - rot: -1.5707963267948966 rad pos: -4.5,-25.5 parent: 2 type: Transform - - uid: 12945 + - uid: 12953 components: - pos: 16.5,-35.5 parent: 2 type: Transform - - uid: 12946 + - uid: 12954 components: - pos: 16.5,-36.5 parent: 2 type: Transform - - uid: 12947 + - uid: 12955 components: - pos: 16.5,-37.5 parent: 2 type: Transform - - uid: 12948 + - uid: 12956 components: - pos: 16.5,-38.5 parent: 2 type: Transform - - uid: 12949 + - uid: 12957 components: - pos: 16.5,-39.5 parent: 2 type: Transform - - uid: 12950 + - uid: 12958 components: - pos: 16.5,-40.5 parent: 2 type: Transform - - uid: 12951 + - uid: 12959 components: - rot: 3.141592653589793 rad pos: 1.5,-58.5 parent: 2 type: Transform - - uid: 12952 + - uid: 12960 components: - rot: 3.141592653589793 rad pos: 1.5,-57.5 parent: 2 type: Transform - - uid: 12953 + - uid: 12961 components: - rot: 3.141592653589793 rad pos: 1.5,-56.5 parent: 2 type: Transform - - uid: 12954 + - uid: 12962 components: - rot: 3.141592653589793 rad pos: 1.5,-55.5 parent: 2 type: Transform - - uid: 12955 + - uid: 12963 components: - rot: 3.141592653589793 rad pos: 1.5,-54.5 parent: 2 type: Transform - - uid: 12956 + - uid: 12964 components: - rot: -1.5707963267948966 rad pos: 0.5,-53.5 parent: 2 type: Transform - - uid: 12957 + - uid: 12965 components: - rot: -1.5707963267948966 rad pos: -1.5,-45.5 parent: 2 type: Transform - - uid: 12958 + - uid: 12966 components: - rot: 3.141592653589793 rad pos: -0.5,-52.5 parent: 2 type: Transform - - uid: 12959 + - uid: 12967 components: - rot: 3.141592653589793 rad pos: -0.5,-51.5 parent: 2 type: Transform - - uid: 12960 + - uid: 12968 components: - rot: 3.141592653589793 rad pos: -0.5,-50.5 parent: 2 type: Transform - - uid: 12961 + - uid: 12969 components: - rot: 3.141592653589793 rad pos: -0.5,-48.5 parent: 2 type: Transform - - uid: 12962 + - uid: 12970 components: - rot: 3.141592653589793 rad pos: -0.5,-47.5 parent: 2 type: Transform - - uid: 12963 + - uid: 12971 components: - pos: -0.5,-44.5 parent: 2 type: Transform - - uid: 12964 + - uid: 12972 components: - rot: -1.5707963267948966 rad pos: 27.5,-6.5 parent: 2 type: Transform - - uid: 12965 + - uid: 12973 components: - rot: -1.5707963267948966 rad pos: 29.5,-6.5 parent: 2 type: Transform - - uid: 12966 + - uid: 12974 components: - rot: -1.5707963267948966 rad pos: 30.5,-6.5 parent: 2 type: Transform - - uid: 12967 + - uid: 12975 components: - rot: -1.5707963267948966 rad pos: 31.5,-6.5 parent: 2 type: Transform - - uid: 12968 + - uid: 12976 components: - rot: -1.5707963267948966 rad pos: 32.5,-6.5 parent: 2 type: Transform - - uid: 12969 + - uid: 12977 components: - rot: -1.5707963267948966 rad pos: 33.5,-6.5 parent: 2 type: Transform - - uid: 12970 + - uid: 12978 components: - rot: 3.141592653589793 rad pos: 34.5,7.5 parent: 2 type: Transform - - uid: 12971 + - uid: 12979 components: - rot: -1.5707963267948966 rad pos: 35.5,6.5 parent: 2 type: Transform - - uid: 12972 + - uid: 12980 components: - rot: -1.5707963267948966 rad pos: 36.5,6.5 parent: 2 type: Transform - - uid: 12973 + - uid: 12981 components: - rot: -1.5707963267948966 rad pos: 37.5,6.5 parent: 2 type: Transform - - uid: 12974 + - uid: 12982 components: - rot: -1.5707963267948966 rad pos: 38.5,6.5 parent: 2 type: Transform - - uid: 12975 + - uid: 12983 components: - rot: -1.5707963267948966 rad pos: 40.5,6.5 parent: 2 type: Transform - - uid: 12976 + - uid: 12984 components: - rot: 3.141592653589793 rad pos: 34.5,3.5 parent: 2 type: Transform - - uid: 12977 + - uid: 12985 components: - pos: 34.5,-0.5 parent: 2 type: Transform - - uid: 12978 + - uid: 12986 components: - pos: 34.5,-1.5 parent: 2 type: Transform - - uid: 12979 + - uid: 12987 components: - pos: 36.5,-27.5 parent: 2 type: Transform - - uid: 12980 + - uid: 12988 components: - pos: 36.5,-28.5 parent: 2 type: Transform - - uid: 12981 + - uid: 12989 components: - rot: 3.141592653589793 rad pos: 15.5,-44.5 parent: 2 type: Transform - - uid: 12982 + - uid: 12990 components: - rot: 1.5707963267948966 rad pos: 16.5,-45.5 parent: 2 type: Transform - - uid: 12983 + - uid: 12991 components: - pos: 17.5,-46.5 parent: 2 type: Transform - - uid: 12984 + - uid: 12992 components: - rot: 1.5707963267948966 rad pos: 17.5,-43.5 parent: 2 type: Transform - - uid: 12985 + - uid: 12993 components: - rot: 1.5707963267948966 rad pos: 18.5,-43.5 parent: 2 type: Transform - - uid: 12986 + - uid: 12994 components: - pos: 19.5,-42.5 parent: 2 type: Transform - - uid: 12987 + - uid: 12995 components: - pos: 18.5,-27.5 parent: 2 type: Transform - - uid: 12988 + - uid: 12996 components: - pos: -23.5,-80.5 parent: 2 type: Transform - - uid: 12989 + - uid: 12997 components: - rot: 1.5707963267948966 rad pos: 23.5,-36.5 parent: 2 type: Transform - - uid: 12990 + - uid: 12998 components: - rot: -1.5707963267948966 rad pos: -2.5,-25.5 parent: 2 type: Transform - - uid: 12991 + - uid: 12999 components: - rot: -1.5707963267948966 rad pos: -3.5,-25.5 parent: 2 type: Transform - - uid: 12992 + - uid: 13000 components: - rot: 3.141592653589793 rad pos: -4.5,-2.5 parent: 2 type: Transform - - uid: 12993 + - uid: 13001 components: - rot: -1.5707963267948966 rad pos: -1.5,-25.5 parent: 2 type: Transform - - uid: 12994 + - uid: 13002 components: - rot: 3.141592653589793 rad pos: 15.5,-33.5 parent: 2 type: Transform - - uid: 12995 + - uid: 13003 components: - rot: -1.5707963267948966 rad pos: -1.5,-43.5 parent: 2 type: Transform - - uid: 12996 + - uid: 13004 components: - rot: -1.5707963267948966 rad pos: -2.5,-43.5 parent: 2 type: Transform - - uid: 12997 + - uid: 13005 components: - rot: -1.5707963267948966 rad pos: -3.5,-43.5 parent: 2 type: Transform - - uid: 12998 + - uid: 13006 components: - rot: -1.5707963267948966 rad pos: -5.5,-43.5 parent: 2 type: Transform - - uid: 12999 + - uid: 13007 components: - rot: -1.5707963267948966 rad pos: -7.5,-43.5 parent: 2 type: Transform - - uid: 13000 + - uid: 13008 components: - rot: -1.5707963267948966 rad pos: -9.5,-43.5 parent: 2 type: Transform - - uid: 13001 + - uid: 13009 components: - rot: -1.5707963267948966 rad pos: -10.5,-43.5 parent: 2 type: Transform - - uid: 13002 + - uid: 13010 components: - rot: -1.5707963267948966 rad pos: -11.5,-43.5 parent: 2 type: Transform - - uid: 13003 + - uid: 13011 components: - rot: -1.5707963267948966 rad pos: -12.5,-43.5 parent: 2 type: Transform - - uid: 13004 + - uid: 13012 components: - pos: -13.5,-44.5 parent: 2 type: Transform - - uid: 13005 + - uid: 13013 components: - pos: -13.5,-46.5 parent: 2 type: Transform - - uid: 13006 + - uid: 13014 components: - pos: -13.5,-47.5 parent: 2 type: Transform - - uid: 13007 + - uid: 13015 components: - pos: -13.5,-48.5 parent: 2 type: Transform - - uid: 13008 + - uid: 13016 components: - pos: -13.5,-49.5 parent: 2 type: Transform - - uid: 13009 + - uid: 13017 components: - pos: -13.5,-50.5 parent: 2 type: Transform - - uid: 13010 + - uid: 13018 components: - pos: -13.5,-51.5 parent: 2 type: Transform - - uid: 13011 + - uid: 13019 components: - pos: -13.5,-52.5 parent: 2 type: Transform - - uid: 13012 + - uid: 13020 components: - rot: 1.5707963267948966 rad pos: -14.5,-53.5 parent: 2 type: Transform - - uid: 13013 + - uid: 13021 components: - rot: 1.5707963267948966 rad pos: -16.5,-54.5 parent: 2 type: Transform - - uid: 13014 + - uid: 13022 components: - pos: -17.5,-56.5 parent: 2 type: Transform - - uid: 13015 + - uid: 13023 components: - rot: 3.141592653589793 rad pos: -17.5,-58.5 parent: 2 type: Transform - - uid: 13016 + - uid: 13024 components: - rot: 3.141592653589793 rad pos: -17.5,-59.5 parent: 2 type: Transform - - uid: 13017 + - uid: 13025 components: - rot: 1.5707963267948966 rad pos: -18.5,-57.5 parent: 2 type: Transform - - uid: 13018 + - uid: 13026 components: - rot: 1.5707963267948966 rad pos: -19.5,-57.5 parent: 2 type: Transform - - uid: 13019 + - uid: 13027 components: - pos: -19.5,-69.5 parent: 2 type: Transform - - uid: 13020 + - uid: 13028 components: - pos: -19.5,-70.5 parent: 2 type: Transform - - uid: 13021 + - uid: 13029 components: - pos: -19.5,-71.5 parent: 2 type: Transform - - uid: 13022 + - uid: 13030 components: - pos: -19.5,-72.5 parent: 2 type: Transform - - uid: 13023 + - uid: 13031 components: - rot: 1.5707963267948966 rad pos: -18.5,-73.5 parent: 2 type: Transform - - uid: 13024 + - uid: 13032 components: - rot: 1.5707963267948966 rad pos: -21.5,-73.5 parent: 2 type: Transform - - uid: 13025 + - uid: 13033 components: - rot: -1.5707963267948966 rad pos: -22.5,-73.5 parent: 2 type: Transform - - uid: 13026 + - uid: 13034 components: - pos: -23.5,-82.5 parent: 2 type: Transform - - uid: 13027 + - uid: 13035 components: - rot: 1.5707963267948966 rad pos: -9.5,-53.5 parent: 2 type: Transform - - uid: 13028 + - uid: 13036 components: - rot: 1.5707963267948966 rad pos: -2.5,-53.5 parent: 2 type: Transform - - uid: 13029 + - uid: 13037 components: - pos: 18.5,-4.5 parent: 2 type: Transform - - uid: 13030 + - uid: 13038 components: - rot: -1.5707963267948966 rad pos: 9.5,13.5 parent: 2 type: Transform - - uid: 13031 + - uid: 13039 components: - rot: -1.5707963267948966 rad pos: 1.5,-25.5 parent: 2 type: Transform - - uid: 13032 + - uid: 13040 components: - pos: 30.5,-77.5 parent: 2 type: Transform - - uid: 13033 + - uid: 13041 components: - pos: -4.5,-29.5 parent: 2 type: Transform - - uid: 13034 + - uid: 13042 components: - rot: 3.141592653589793 rad pos: 17.5,6.5 parent: 2 type: Transform - - uid: 13035 + - uid: 13043 components: - pos: 12.5,10.5 parent: 2 type: Transform - - uid: 13036 + - uid: 13044 components: - pos: 18.5,-0.5 parent: 2 type: Transform - - uid: 13037 + - uid: 13045 components: - pos: 12.5,9.5 parent: 2 type: Transform - - uid: 13038 + - uid: 13046 components: - pos: 12.5,3.5 parent: 2 type: Transform - - uid: 13039 + - uid: 13047 components: - rot: 3.141592653589793 rad pos: 17.5,4.5 parent: 2 type: Transform - - uid: 13040 + - uid: 13048 components: - rot: 3.141592653589793 rad pos: 17.5,2.5 parent: 2 type: Transform - - uid: 13041 + - uid: 13049 components: - pos: 18.5,-1.5 parent: 2 type: Transform - - uid: 13042 + - uid: 13050 components: - rot: -1.5707963267948966 rad pos: 15.5,0.5 parent: 2 type: Transform - - uid: 13043 + - uid: 13051 components: - pos: 10.5,-1.5 parent: 2 type: Transform - - uid: 13044 + - uid: 13052 components: - pos: 6.5,-1.5 parent: 2 type: Transform - - uid: 13045 + - uid: 13053 components: - pos: 13.5,1.5 parent: 2 type: Transform - - uid: 13046 + - uid: 13054 components: - rot: 1.5707963267948966 rad pos: 8.5,-0.5 parent: 2 type: Transform - - uid: 13047 + - uid: 13055 components: - rot: -1.5707963267948966 rad pos: 2.5,-25.5 parent: 2 type: Transform - - uid: 13048 + - uid: 13056 components: - rot: 1.5707963267948966 rad pos: 4.5,2.5 parent: 2 type: Transform - - uid: 13049 + - uid: 13057 components: - rot: 1.5707963267948966 rad pos: 5.5,2.5 parent: 2 type: Transform - - uid: 13050 + - uid: 13058 components: - rot: 1.5707963267948966 rad pos: -11.5,-53.5 parent: 2 type: Transform - - uid: 13051 + - uid: 13059 components: - rot: 1.5707963267948966 rad pos: -22.5,-84.5 parent: 2 type: Transform - - uid: 13052 + - uid: 13060 components: - pos: -23.5,-83.5 parent: 2 type: Transform - - uid: 13053 + - uid: 13061 components: - pos: -23.5,-78.5 parent: 2 type: Transform - - uid: 13054 + - uid: 13062 components: - rot: 1.5707963267948966 rad pos: 7.5,2.5 parent: 2 type: Transform - - uid: 13055 + - uid: 13063 components: - rot: -1.5707963267948966 rad pos: 11.5,-25.5 parent: 2 type: Transform - - uid: 13056 + - uid: 13064 components: - pos: 24.5,-16.5 parent: 2 type: Transform - - uid: 13057 + - uid: 13065 components: - rot: -1.5707963267948966 rad pos: -15.5,-43.5 parent: 2 type: Transform - - uid: 13058 + - uid: 13066 components: - rot: -1.5707963267948966 rad pos: 11.5,2.5 parent: 2 type: Transform - - uid: 13059 + - uid: 13067 components: - pos: 4.5,-5.5 parent: 2 type: Transform - - uid: 13060 + - uid: 13068 components: - pos: 4.5,-4.5 parent: 2 type: Transform - - uid: 13061 + - uid: 13069 components: - rot: 1.5707963267948966 rad pos: 22.5,-6.5 parent: 2 type: Transform - - uid: 13062 + - uid: 13070 components: - pos: 24.5,-8.5 parent: 2 type: Transform - - uid: 13063 + - uid: 13071 components: - rot: -1.5707963267948966 rad pos: 25.5,-10.5 parent: 2 type: Transform - - uid: 13064 + - uid: 13072 components: - pos: 16.5,-19.5 parent: 2 type: Transform - - uid: 13065 + - uid: 13073 components: - rot: -1.5707963267948966 rad pos: 6.5,-25.5 parent: 2 type: Transform - - uid: 13066 + - uid: 13074 components: - rot: -1.5707963267948966 rad pos: 5.5,-25.5 parent: 2 type: Transform - - uid: 13067 + - uid: 13075 components: - rot: -1.5707963267948966 rad pos: -0.5,-25.5 parent: 2 type: Transform - - uid: 13068 + - uid: 13076 components: - pos: -7.5,-0.5 parent: 2 type: Transform - - uid: 13069 + - uid: 13077 components: - rot: 3.141592653589793 rad pos: -5.5,-22.5 parent: 2 type: Transform - - uid: 13070 + - uid: 13078 components: - rot: -1.5707963267948966 rad pos: 10.5,-25.5 parent: 2 type: Transform - - uid: 13071 + - uid: 13079 components: - rot: 3.141592653589793 rad pos: -0.5,-49.5 parent: 2 type: Transform - - uid: 13072 + - uid: 13080 components: - rot: 3.141592653589793 rad pos: -0.5,-46.5 parent: 2 type: Transform - - uid: 13073 + - uid: 13081 components: - rot: 3.141592653589793 rad pos: 15.5,-28.5 parent: 2 type: Transform - - uid: 13074 + - uid: 13082 components: - pos: 18.5,-5.5 parent: 2 type: Transform - - uid: 13075 + - uid: 13083 components: - rot: 3.141592653589793 rad pos: 18.5,8.5 parent: 2 type: Transform - - uid: 13076 + - uid: 13084 components: - rot: 1.5707963267948966 rad pos: 19.5,-6.5 parent: 2 type: Transform - - uid: 13077 + - uid: 13085 components: - rot: -1.5707963267948966 rad pos: 4.5,-25.5 parent: 2 type: Transform - - uid: 13078 + - uid: 13086 components: - rot: 1.5707963267948966 rad pos: 4.5,-0.5 parent: 2 type: Transform - - uid: 13079 + - uid: 13087 components: - rot: 3.141592653589793 rad pos: -4.5,-5.5 parent: 2 type: Transform - - uid: 13080 + - uid: 13088 components: - rot: 3.141592653589793 rad pos: -3.5,-25.5 parent: 2 type: Transform - - uid: 13081 + - uid: 13089 components: - rot: 1.5707963267948966 rad pos: 12.5,-27.5 parent: 2 type: Transform - - uid: 13082 + - uid: 13090 components: - pos: 18.5,-28.5 parent: 2 type: Transform - - uid: 13083 + - uid: 13091 components: - pos: -23.5,-79.5 parent: 2 type: Transform - - uid: 13084 + - uid: 13092 components: - rot: 1.5707963267948966 rad pos: -24.5,-75.5 parent: 2 type: Transform - - uid: 13085 + - uid: 13093 components: - rot: 1.5707963267948966 rad pos: -7.5,-53.5 parent: 2 type: Transform - - uid: 13086 + - uid: 13094 components: - rot: 1.5707963267948966 rad pos: 9.5,-0.5 parent: 2 type: Transform - - uid: 13087 + - uid: 13095 components: - rot: 1.5707963267948966 rad pos: -5.5,-9.5 parent: 2 type: Transform - - uid: 13088 + - uid: 13096 components: - pos: 6.5,3.5 parent: 2 type: Transform - - uid: 13089 + - uid: 13097 components: - rot: -1.5707963267948966 rad pos: 3.5,-25.5 parent: 2 type: Transform - - uid: 13090 + - uid: 13098 components: - pos: 18.5,0.5 parent: 2 type: Transform - - uid: 13091 + - uid: 13099 components: - rot: 3.141592653589793 rad pos: 3.5,-1.5 parent: 2 type: Transform - - uid: 13092 + - uid: 13100 components: - rot: 3.141592653589793 rad pos: -3.5,-24.5 parent: 2 type: Transform - - uid: 13093 + - uid: 13101 components: - rot: 1.5707963267948966 rad pos: 15.5,-43.5 parent: 2 type: Transform - - uid: 13094 + - uid: 13102 components: - rot: 3.141592653589793 rad pos: -5.5,-21.5 parent: 2 type: Transform - - uid: 13095 + - uid: 13103 components: - rot: 1.5707963267948966 rad pos: 11.5,-3.5 parent: 2 type: Transform - - uid: 13096 + - uid: 13104 components: - rot: -1.5707963267948966 rad pos: 8.5,-25.5 parent: 2 type: Transform - - uid: 13097 + - uid: 13105 components: - rot: 1.5707963267948966 rad pos: 20.5,-6.5 parent: 2 type: Transform - - uid: 13098 + - uid: 13106 components: - rot: 3.141592653589793 rad pos: 15.5,-41.5 parent: 2 type: Transform - - uid: 13099 + - uid: 13107 components: - pos: -5.5,-54.5 parent: 2 type: Transform - - uid: 13100 + - uid: 13108 components: - rot: -1.5707963267948966 rad pos: 2.5,-43.5 parent: 2 type: Transform - - uid: 13101 + - uid: 13109 components: - pos: -4.5,-35.5 parent: 2 type: Transform - - uid: 13102 + - uid: 13110 components: - pos: -4.5,-31.5 parent: 2 type: Transform - - uid: 13103 + - uid: 13111 components: - pos: -4.5,-28.5 parent: 2 type: Transform - - uid: 13104 + - uid: 13112 components: - pos: -19.5,-65.5 parent: 2 type: Transform - - uid: 13105 + - uid: 13113 components: - pos: 36.5,-26.5 parent: 2 type: Transform - - uid: 13106 + - uid: 13114 components: - pos: 36.5,-23.5 parent: 2 type: Transform - - uid: 13107 + - uid: 13115 components: - pos: 34.5,-5.5 parent: 2 type: Transform - - uid: 13108 + - uid: 13116 components: - pos: 34.5,0.5 parent: 2 type: Transform - - uid: 13109 + - uid: 13117 components: - rot: 3.141592653589793 rad pos: 34.5,2.5 parent: 2 type: Transform - - uid: 13110 + - uid: 13118 components: - rot: 3.141592653589793 rad pos: 34.5,4.5 parent: 2 type: Transform - - uid: 13111 + - uid: 13119 components: - pos: 34.5,-3.5 parent: 2 type: Transform - - uid: 13112 + - uid: 13120 components: - rot: 1.5707963267948966 rad pos: 14.5,-43.5 parent: 2 type: Transform - - uid: 13113 + - uid: 13121 components: - rot: 1.5707963267948966 rad pos: 3.5,-43.5 parent: 2 type: Transform - - uid: 13114 + - uid: 13122 components: - rot: 1.5707963267948966 rad pos: 22.5,-43.5 parent: 2 type: Transform - - uid: 13115 + - uid: 13123 components: - rot: 3.141592653589793 rad pos: -3.5,-19.5 parent: 2 type: Transform - - uid: 13116 + - uid: 13124 components: - rot: 3.141592653589793 rad pos: -4.5,-6.5 parent: 2 type: Transform - - uid: 13117 + - uid: 13125 components: - rot: 1.5707963267948966 rad pos: 21.5,-18.5 parent: 2 type: Transform - - uid: 13118 + - uid: 13126 components: - rot: 1.5707963267948966 rad pos: 23.5,-18.5 parent: 2 type: Transform - - uid: 13119 + - uid: 13127 components: - pos: 24.5,-14.5 parent: 2 type: Transform - - uid: 13120 + - uid: 13128 components: - rot: 1.5707963267948966 rad pos: 9.5,2.5 parent: 2 type: Transform - - uid: 13121 + - uid: 13129 components: - rot: 1.5707963267948966 rad pos: 26.5,-43.5 parent: 2 type: Transform - - uid: 13122 + - uid: 13130 components: - rot: 1.5707963267948966 rad pos: -20.5,-73.5 parent: 2 type: Transform - - uid: 13123 + - uid: 13131 components: - pos: -23.5,-76.5 parent: 2 type: Transform - - uid: 13124 + - uid: 13132 components: - pos: -19.5,-64.5 parent: 2 type: Transform - - uid: 13125 + - uid: 13133 components: - pos: -19.5,-62.5 parent: 2 type: Transform - - uid: 13126 + - uid: 13134 components: - pos: -19.5,-66.5 parent: 2 type: Transform - - uid: 13127 + - uid: 13135 components: - pos: -19.5,-68.5 parent: 2 type: Transform - - uid: 13128 + - uid: 13136 components: - pos: -19.5,-67.5 parent: 2 type: Transform - - uid: 13129 + - uid: 13137 components: - rot: 3.141592653589793 rad pos: -3.5,-20.5 parent: 2 type: Transform - - uid: 13130 + - uid: 13138 components: - rot: 3.141592653589793 rad pos: 15.5,-26.5 parent: 2 type: Transform - - uid: 13131 + - uid: 13139 components: - rot: 1.5707963267948966 rad pos: -6.5,0.5 parent: 2 type: Transform - - uid: 13132 + - uid: 13140 components: - rot: 3.141592653589793 rad pos: -5.5,-23.5 parent: 2 type: Transform - - uid: 13133 + - uid: 13141 components: - rot: 3.141592653589793 rad pos: -5.5,-24.5 parent: 2 type: Transform - - uid: 13134 + - uid: 13142 components: - rot: -1.5707963267948966 rad pos: 13.5,5.5 parent: 2 type: Transform - - uid: 13135 + - uid: 13143 components: - pos: 12.5,8.5 parent: 2 type: Transform - - uid: 13136 + - uid: 13144 components: - rot: 3.141592653589793 rad pos: 17.5,5.5 parent: 2 type: Transform - - uid: 13137 + - uid: 13145 components: - pos: 17.5,9.5 parent: 2 type: Transform - - uid: 13138 + - uid: 13146 components: - pos: 12.5,4.5 parent: 2 type: Transform - - uid: 13139 + - uid: 13147 components: - rot: -1.5707963267948966 rad pos: 12.5,-0.5 parent: 2 type: Transform - - uid: 13140 + - uid: 13148 components: - pos: -4.5,-41.5 parent: 2 type: Transform - - uid: 13141 + - uid: 13149 components: - pos: -4.5,-39.5 parent: 2 type: Transform - - uid: 13142 + - uid: 13150 components: - pos: -4.5,-37.5 parent: 2 type: Transform - - uid: 13143 + - uid: 13151 components: - rot: 1.5707963267948966 rad pos: 4.5,-27.5 parent: 2 type: Transform - - uid: 13144 + - uid: 13152 components: - rot: -1.5707963267948966 rad pos: -18.5,-43.5 parent: 2 type: Transform - - uid: 13145 + - uid: 13153 components: - rot: 1.5707963267948966 rad pos: 33.5,-43.5 parent: 2 type: Transform - - uid: 13146 + - uid: 13154 components: - rot: 3.141592653589793 rad pos: -6.5,-65.5 parent: 2 type: Transform - - uid: 13147 + - uid: 13155 components: - rot: 1.5707963267948966 rad pos: -7.5,-66.5 parent: 2 type: Transform - - uid: 13148 + - uid: 13156 components: - rot: 3.141592653589793 rad pos: 18.5,-52.5 parent: 2 type: Transform - - uid: 13149 + - uid: 13157 components: - pos: -10.5,-24.5 parent: 2 type: Transform - - uid: 13150 + - uid: 13158 components: - pos: -10.5,-25.5 parent: 2 type: Transform - - uid: 13151 + - uid: 13159 components: - pos: -10.5,-26.5 parent: 2 type: Transform - - uid: 13152 + - uid: 13160 components: - rot: 1.5707963267948966 rad pos: 21.5,-43.5 parent: 2 type: Transform - - uid: 13153 + - uid: 13161 components: - rot: 3.141592653589793 rad pos: 25.5,-46.5 parent: 2 type: Transform - - uid: 13154 + - uid: 13162 components: - rot: 3.141592653589793 rad pos: 25.5,-45.5 parent: 2 type: Transform - - uid: 13155 + - uid: 13163 components: - rot: 3.141592653589793 rad pos: 25.5,-44.5 parent: 2 type: Transform - - uid: 13156 + - uid: 13164 components: - rot: 1.5707963267948966 rad pos: 24.5,-43.5 parent: 2 type: Transform - - uid: 13157 + - uid: 13165 components: - rot: 1.5707963267948966 rad pos: 23.5,-43.5 parent: 2 type: Transform - - uid: 13158 + - uid: 13166 components: - rot: 1.5707963267948966 rad pos: 32.5,-43.5 parent: 2 type: Transform - - uid: 13159 + - uid: 13167 components: - rot: 1.5707963267948966 rad pos: 31.5,-43.5 parent: 2 type: Transform - - uid: 13160 + - uid: 13168 components: - rot: 1.5707963267948966 rad pos: 30.5,-43.5 parent: 2 type: Transform - - uid: 13161 + - uid: 13169 components: - rot: 1.5707963267948966 rad pos: 29.5,-43.5 parent: 2 type: Transform - - uid: 13162 + - uid: 13170 components: - rot: 1.5707963267948966 rad pos: 28.5,-43.5 parent: 2 type: Transform - - uid: 13163 + - uid: 13171 components: - rot: 1.5707963267948966 rad pos: 27.5,-43.5 parent: 2 type: Transform - - uid: 13164 + - uid: 13172 components: - rot: 1.5707963267948966 rad pos: 34.5,-43.5 parent: 2 type: Transform - - uid: 13165 + - uid: 13173 components: - rot: 1.5707963267948966 rad pos: -13.5,-9.5 parent: 2 type: Transform - - uid: 13166 + - uid: 13174 components: - rot: 1.5707963267948966 rad pos: -1.5,-53.5 parent: 2 type: Transform - - uid: 13167 + - uid: 13175 components: - rot: 1.5707963267948966 rad pos: -8.5,-53.5 parent: 2 type: Transform - - uid: 13168 + - uid: 13176 components: - rot: 1.5707963267948966 rad pos: -10.5,-53.5 parent: 2 type: Transform - - uid: 13169 + - uid: 13177 components: - rot: 1.5707963267948966 rad pos: -4.5,-53.5 parent: 2 type: Transform - - uid: 13170 + - uid: 13178 components: - rot: 1.5707963267948966 rad pos: -3.5,-53.5 parent: 2 type: Transform - - uid: 13171 + - uid: 13179 components: - pos: 36.5,-29.5 parent: 2 type: Transform - - uid: 13172 + - uid: 13180 components: - pos: 36.5,-30.5 parent: 2 type: Transform - - uid: 13173 + - uid: 13181 components: - pos: 36.5,-31.5 parent: 2 type: Transform - - uid: 13174 + - uid: 13182 components: - pos: 36.5,-32.5 parent: 2 type: Transform - - uid: 13175 + - uid: 13183 components: - pos: 36.5,-33.5 parent: 2 type: Transform - - uid: 13176 + - uid: 13184 components: - pos: 36.5,-34.5 parent: 2 type: Transform - - uid: 13177 + - uid: 13185 components: - pos: 36.5,-35.5 parent: 2 type: Transform - - uid: 13178 + - uid: 13186 components: - pos: 36.5,-36.5 parent: 2 type: Transform - - uid: 13179 + - uid: 13187 components: - pos: 36.5,-37.5 parent: 2 type: Transform - - uid: 13180 + - uid: 13188 components: - pos: 36.5,-38.5 parent: 2 type: Transform - - uid: 13181 + - uid: 13189 components: - pos: 36.5,-39.5 parent: 2 type: Transform - - uid: 13182 + - uid: 13190 components: - pos: 36.5,-40.5 parent: 2 type: Transform - - uid: 13183 + - uid: 13191 components: - pos: 36.5,-41.5 parent: 2 type: Transform - - uid: 13184 + - uid: 13192 components: - pos: 36.5,-42.5 parent: 2 type: Transform - - uid: 13185 + - uid: 13193 components: - rot: -1.5707963267948966 rad pos: 35.5,-43.5 parent: 2 type: Transform - - uid: 13186 + - uid: 13194 components: - rot: -1.5707963267948966 rad pos: 37.5,-43.5 parent: 2 type: Transform - - uid: 13187 + - uid: 13195 components: - rot: -1.5707963267948966 rad pos: 38.5,-43.5 parent: 2 type: Transform - - uid: 13188 + - uid: 13196 components: - rot: -1.5707963267948966 rad pos: 39.5,-43.5 parent: 2 type: Transform - - uid: 13189 + - uid: 13197 components: - rot: -1.5707963267948966 rad pos: 40.5,-43.5 parent: 2 type: Transform - - uid: 13190 + - uid: 13198 components: - rot: -1.5707963267948966 rad pos: 41.5,-43.5 parent: 2 type: Transform - - uid: 13191 + - uid: 13199 components: - rot: -1.5707963267948966 rad pos: 35.5,1.5 parent: 2 type: Transform - - uid: 13192 + - uid: 13200 components: - rot: -1.5707963267948966 rad pos: 36.5,1.5 parent: 2 type: Transform - - uid: 13193 + - uid: 13201 components: - rot: -1.5707963267948966 rad pos: 37.5,1.5 parent: 2 type: Transform - - uid: 13194 + - uid: 13202 components: - rot: -1.5707963267948966 rad pos: 38.5,1.5 parent: 2 type: Transform - - uid: 13195 + - uid: 13203 components: - rot: -1.5707963267948966 rad pos: 39.5,1.5 parent: 2 type: Transform - - uid: 13196 + - uid: 13204 components: - rot: -1.5707963267948966 rad pos: 17.5,17.5 parent: 2 type: Transform - - uid: 13197 + - uid: 13205 components: - rot: -1.5707963267948966 rad pos: 18.5,17.5 parent: 2 type: Transform - - uid: 13198 + - uid: 13206 components: - rot: -1.5707963267948966 rad pos: 16.5,17.5 parent: 2 type: Transform - - uid: 13199 + - uid: 13207 components: - pos: 15.5,18.5 parent: 2 type: Transform - - uid: 13200 + - uid: 13208 components: - rot: 1.5707963267948966 rad pos: -10.5,0.5 parent: 2 type: Transform - - uid: 13201 + - uid: 13209 components: - rot: 1.5707963267948966 rad pos: -11.5,0.5 parent: 2 type: Transform - - uid: 13202 + - uid: 13210 components: - rot: 1.5707963267948966 rad pos: -12.5,0.5 parent: 2 type: Transform - - uid: 13203 + - uid: 13211 components: - rot: 3.141592653589793 rad pos: 15.5,-34.5 parent: 2 type: Transform - - uid: 13204 + - uid: 13212 components: - rot: 3.141592653589793 rad pos: -3.5,-21.5 parent: 2 type: Transform - - uid: 13205 + - uid: 13213 components: - rot: -1.5707963267948966 rad pos: 12.5,-25.5 parent: 2 type: Transform - - uid: 13206 + - uid: 13214 components: - rot: -1.5707963267948966 rad pos: 13.5,-25.5 parent: 2 type: Transform - - uid: 13207 + - uid: 13215 components: - rot: 3.141592653589793 rad pos: -4.5,-8.5 parent: 2 type: Transform - - uid: 13208 + - uid: 13216 components: - rot: -1.5707963267948966 rad pos: 0.5,-25.5 parent: 2 type: Transform - - uid: 13209 + - uid: 13217 components: - rot: 1.5707963267948966 rad pos: -8.5,-9.5 parent: 2 type: Transform - - uid: 13210 + - uid: 13218 components: - rot: 1.5707963267948966 rad pos: -11.5,-9.5 parent: 2 type: Transform - - uid: 13211 + - uid: 13219 components: - rot: 1.5707963267948966 rad pos: -10.5,-9.5 parent: 2 type: Transform - - uid: 13212 + - uid: 13220 components: - rot: 1.5707963267948966 rad pos: -12.5,-9.5 parent: 2 type: Transform - - uid: 13213 + - uid: 13221 components: - pos: -4.5,-0.5 parent: 2 type: Transform - - uid: 13214 + - uid: 13222 components: - rot: 3.141592653589793 rad pos: 15.5,-32.5 parent: 2 type: Transform - - uid: 13215 + - uid: 13223 components: - rot: 3.141592653589793 rad pos: -4.5,-11.5 parent: 2 type: Transform - - uid: 13216 + - uid: 13224 components: - rot: 3.141592653589793 rad pos: 15.5,-29.5 parent: 2 type: Transform - - uid: 13217 + - uid: 13225 components: - rot: 3.141592653589793 rad pos: 15.5,-36.5 parent: 2 type: Transform - - uid: 13218 + - uid: 13226 components: - rot: 3.141592653589793 rad pos: 15.5,-35.5 parent: 2 type: Transform - - uid: 13219 + - uid: 13227 components: - rot: 3.141592653589793 rad pos: 15.5,-27.5 parent: 2 type: Transform - - uid: 13220 + - uid: 13228 components: - rot: -1.5707963267948966 rad pos: 9.5,-25.5 parent: 2 type: Transform - - uid: 13221 + - uid: 13229 components: - rot: -1.5707963267948966 rad pos: 14.5,-25.5 parent: 2 type: Transform - - uid: 13222 + - uid: 13230 components: - rot: 3.141592653589793 rad pos: -3.5,-14.5 parent: 2 type: Transform - - uid: 13223 + - uid: 13231 components: - rot: 3.141592653589793 rad pos: -3.5,-17.5 parent: 2 type: Transform - - uid: 13224 + - uid: 13232 components: - rot: 3.141592653589793 rad pos: -3.5,-15.5 parent: 2 type: Transform - - uid: 13225 + - uid: 13233 components: - pos: 17.5,-47.5 parent: 2 type: Transform - - uid: 13226 + - uid: 13234 components: - rot: 1.5707963267948966 rad pos: 33.5,16.5 parent: 2 type: Transform - - uid: 13227 + - uid: 13235 components: - rot: 1.5707963267948966 rad pos: 32.5,16.5 parent: 2 type: Transform - - uid: 13228 + - uid: 13236 components: - rot: 1.5707963267948966 rad pos: 31.5,16.5 parent: 2 type: Transform - - uid: 13229 + - uid: 13237 components: - rot: 1.5707963267948966 rad pos: 30.5,16.5 parent: 2 type: Transform - - uid: 13230 + - uid: 13238 components: - rot: 3.141592653589793 rad pos: 41.5,5.5 parent: 2 type: Transform - - uid: 13231 + - uid: 13239 components: - rot: 3.141592653589793 rad pos: 41.5,4.5 parent: 2 type: Transform - - uid: 13232 + - uid: 13240 components: - rot: 3.141592653589793 rad pos: 41.5,3.5 parent: 2 type: Transform - - uid: 13233 + - uid: 13241 components: - rot: 3.141592653589793 rad pos: 41.5,2.5 parent: 2 type: Transform - - uid: 13234 + - uid: 13242 components: - rot: -1.5707963267948966 rad pos: 40.5,1.5 parent: 2 type: Transform - - uid: 13235 + - uid: 13243 components: - rot: -1.5707963267948966 rad pos: 42.5,1.5 parent: 2 type: Transform - - uid: 13236 + - uid: 13244 components: - rot: -1.5707963267948966 rad pos: 43.5,1.5 parent: 2 type: Transform - - uid: 13237 + - uid: 13245 components: - rot: -1.5707963267948966 rad pos: 44.5,1.5 parent: 2 type: Transform - - uid: 13238 + - uid: 13246 components: - rot: -1.5707963267948966 rad pos: 45.5,1.5 parent: 2 type: Transform - - uid: 13239 + - uid: 13247 components: - rot: -1.5707963267948966 rad pos: 46.5,1.5 parent: 2 type: Transform - - uid: 13240 + - uid: 13248 components: - rot: -1.5707963267948966 rad pos: 47.5,1.5 parent: 2 type: Transform - - uid: 13241 + - uid: 13249 components: - rot: -1.5707963267948966 rad pos: 48.5,1.5 parent: 2 type: Transform - - uid: 13242 + - uid: 13250 components: - rot: -1.5707963267948966 rad pos: 49.5,1.5 parent: 2 type: Transform - - uid: 13243 + - uid: 13251 components: - rot: -1.5707963267948966 rad pos: 50.5,1.5 parent: 2 type: Transform - - uid: 13244 + - uid: 13252 components: - rot: -1.5707963267948966 rad pos: 51.5,1.5 parent: 2 type: Transform - - uid: 13245 + - uid: 13253 components: - rot: 3.141592653589793 rad pos: 52.5,2.5 parent: 2 type: Transform - - uid: 13246 + - uid: 13254 components: - rot: 3.141592653589793 rad pos: 52.5,0.5 parent: 2 type: Transform - - uid: 13247 + - uid: 13255 components: - rot: 3.141592653589793 rad pos: 52.5,-0.5 parent: 2 type: Transform - - uid: 13248 + - uid: 13256 components: - rot: 3.141592653589793 rad pos: 52.5,-1.5 parent: 2 type: Transform - - uid: 13249 + - uid: 13257 components: - rot: 3.141592653589793 rad pos: 52.5,-2.5 parent: 2 type: Transform - - uid: 13250 + - uid: 13258 components: - rot: 3.141592653589793 rad pos: 52.5,-3.5 parent: 2 type: Transform - - uid: 13251 + - uid: 13259 components: - rot: 3.141592653589793 rad pos: 52.5,-4.5 parent: 2 type: Transform - - uid: 13252 + - uid: 13260 components: - rot: 3.141592653589793 rad pos: 52.5,-5.5 parent: 2 type: Transform - - uid: 13253 + - uid: 13261 components: - rot: 3.141592653589793 rad pos: 52.5,-6.5 parent: 2 type: Transform - - uid: 13254 + - uid: 13262 components: - rot: 3.141592653589793 rad pos: 52.5,-7.5 parent: 2 type: Transform - - uid: 13255 + - uid: 13263 components: - rot: 3.141592653589793 rad pos: 52.5,-8.5 parent: 2 type: Transform - - uid: 13256 + - uid: 13264 components: - pos: 25.5,-47.5 parent: 2 type: Transform - - uid: 13257 + - uid: 13265 components: - pos: 25.5,-48.5 parent: 2 type: Transform - - uid: 13258 + - uid: 13266 components: - pos: 25.5,-49.5 parent: 2 type: Transform - - uid: 13259 + - uid: 13267 components: - pos: 25.5,-50.5 parent: 2 type: Transform - - uid: 13260 + - uid: 13268 components: - pos: 25.5,-51.5 parent: 2 type: Transform - - uid: 13261 + - uid: 13269 components: - pos: 25.5,-52.5 parent: 2 type: Transform - - uid: 13262 + - uid: 13270 components: - rot: 3.141592653589793 rad pos: 15.5,-37.5 parent: 2 type: Transform - - uid: 13263 + - uid: 13271 components: - pos: 25.5,-54.5 parent: 2 type: Transform - - uid: 13264 + - uid: 13272 components: - pos: 25.5,-55.5 parent: 2 type: Transform - - uid: 13265 + - uid: 13273 components: - pos: 25.5,-56.5 parent: 2 type: Transform - - uid: 13266 + - uid: 13274 components: - pos: 25.5,-57.5 parent: 2 type: Transform - - uid: 13267 + - uid: 13275 components: - pos: 25.5,-58.5 parent: 2 type: Transform - - uid: 13268 + - uid: 13276 components: - rot: 3.141592653589793 rad pos: -3.5,-16.5 parent: 2 type: Transform - - uid: 13269 + - uid: 13277 components: - rot: 3.141592653589793 rad pos: 15.5,-43.5 parent: 2 type: Transform - - uid: 13270 + - uid: 13278 components: - pos: 52.5,-9.5 parent: 2 type: Transform - - uid: 13271 + - uid: 13279 components: - pos: 52.5,-10.5 parent: 2 type: Transform - - uid: 13272 + - uid: 13280 components: - pos: 52.5,-11.5 parent: 2 type: Transform - - uid: 13273 + - uid: 13281 components: - pos: 52.5,-12.5 parent: 2 type: Transform - - uid: 13274 + - uid: 13282 components: - rot: -1.5707963267948966 rad pos: 53.5,-13.5 parent: 2 type: Transform - - uid: 13275 + - uid: 13283 components: - rot: -1.5707963267948966 rad pos: 42.5,-43.5 parent: 2 type: Transform - - uid: 13276 + - uid: 13284 components: - rot: -1.5707963267948966 rad pos: 43.5,-43.5 parent: 2 type: Transform - - uid: 13277 + - uid: 13285 components: - rot: -1.5707963267948966 rad pos: 44.5,-43.5 parent: 2 type: Transform - - uid: 13278 + - uid: 13286 components: - rot: -1.5707963267948966 rad pos: 45.5,-43.5 parent: 2 type: Transform - - uid: 13279 + - uid: 13287 components: - rot: -1.5707963267948966 rad pos: 47.5,-43.5 parent: 2 type: Transform - - uid: 13280 + - uid: 13288 components: - rot: -1.5707963267948966 rad pos: 48.5,-43.5 parent: 2 type: Transform - - uid: 13281 + - uid: 13289 components: - pos: 49.5,-44.5 parent: 2 type: Transform - - uid: 13282 + - uid: 13290 components: - rot: 3.141592653589793 rad pos: 49.5,-46.5 parent: 2 type: Transform - - uid: 13283 + - uid: 13291 components: - rot: 1.5707963267948966 rad pos: 50.5,-47.5 parent: 2 type: Transform - - uid: 13284 + - uid: 13292 components: - pos: 49.5,-48.5 parent: 2 type: Transform - - uid: 13285 + - uid: 13293 components: - pos: 49.5,-49.5 parent: 2 type: Transform - - uid: 13286 + - uid: 13294 components: - rot: -1.5707963267948966 rad pos: 50.5,-45.5 parent: 2 type: Transform - - uid: 13287 + - uid: 13295 components: - rot: -1.5707963267948966 rad pos: 51.5,-45.5 parent: 2 type: Transform - - uid: 13288 + - uid: 13296 components: - rot: -1.5707963267948966 rad pos: 52.5,-45.5 parent: 2 type: Transform - - uid: 13289 + - uid: 13297 components: - rot: -1.5707963267948966 rad pos: 53.5,-45.5 parent: 2 type: Transform - - uid: 13290 + - uid: 13298 components: - rot: -1.5707963267948966 rad pos: 54.5,-45.5 parent: 2 type: Transform - - uid: 13291 + - uid: 13299 components: - rot: -1.5707963267948966 rad pos: 55.5,-45.5 parent: 2 type: Transform - - uid: 13292 + - uid: 13300 components: - rot: -1.5707963267948966 rad pos: 56.5,-45.5 parent: 2 type: Transform - - uid: 13293 + - uid: 13301 components: - rot: -1.5707963267948966 rad pos: 57.5,-45.5 parent: 2 type: Transform - - uid: 13294 + - uid: 13302 components: - rot: -1.5707963267948966 rad pos: 58.5,-45.5 parent: 2 type: Transform - - uid: 13295 + - uid: 13303 components: - rot: -1.5707963267948966 rad pos: 59.5,-45.5 parent: 2 type: Transform - - uid: 13296 + - uid: 13304 components: - rot: -1.5707963267948966 rad pos: 60.5,-45.5 parent: 2 type: Transform - - uid: 13297 + - uid: 13305 components: - rot: -1.5707963267948966 rad pos: 61.5,-45.5 parent: 2 type: Transform - - uid: 13298 + - uid: 13306 components: - rot: -1.5707963267948966 rad pos: 62.5,-45.5 parent: 2 type: Transform - - uid: 13299 + - uid: 13307 components: - rot: -1.5707963267948966 rad pos: 63.5,-45.5 parent: 2 type: Transform - - uid: 13300 + - uid: 13308 components: - rot: 3.141592653589793 rad pos: 46.5,-42.5 parent: 2 type: Transform - - uid: 13301 + - uid: 13309 components: - rot: 3.141592653589793 rad pos: 46.5,-41.5 parent: 2 type: Transform - - uid: 13302 + - uid: 13310 components: - rot: 3.141592653589793 rad pos: 46.5,-40.5 parent: 2 type: Transform - - uid: 13303 + - uid: 13311 components: - rot: 3.141592653589793 rad pos: 46.5,-39.5 parent: 2 type: Transform - - uid: 13304 + - uid: 13312 components: - rot: 3.141592653589793 rad pos: 46.5,-38.5 parent: 2 type: Transform - - uid: 13305 + - uid: 13313 components: - rot: 3.141592653589793 rad pos: 46.5,-37.5 parent: 2 type: Transform - - uid: 13306 + - uid: 13314 components: - rot: 3.141592653589793 rad pos: 46.5,-36.5 parent: 2 type: Transform - - uid: 13307 + - uid: 13315 components: - rot: -1.5707963267948966 rad pos: 64.5,-45.5 parent: 2 type: Transform - - uid: 13308 + - uid: 13316 components: - rot: -1.5707963267948966 rad pos: 65.5,-45.5 parent: 2 type: Transform - - uid: 13309 + - uid: 13317 components: - rot: -1.5707963267948966 rad pos: 66.5,-45.5 parent: 2 type: Transform - - uid: 13310 + - uid: 13318 components: - pos: 67.5,-46.5 parent: 2 type: Transform - - uid: 13311 + - uid: 13319 components: - pos: 67.5,-48.5 parent: 2 type: Transform - - uid: 13312 + - uid: 13320 components: - pos: 49.5,-56.5 parent: 2 type: Transform - - uid: 13313 + - uid: 13321 components: - pos: 49.5,-57.5 parent: 2 type: Transform - - uid: 13314 + - uid: 13322 components: - pos: 49.5,-58.5 parent: 2 type: Transform - - uid: 13315 + - uid: 13323 components: - pos: 49.5,-59.5 parent: 2 type: Transform - - uid: 13316 + - uid: 13324 components: - rot: 3.141592653589793 rad pos: -3.5,-13.5 parent: 2 type: Transform - - uid: 13317 + - uid: 13325 components: - pos: 29.5,-61.5 parent: 2 type: Transform - - uid: 13318 + - uid: 13326 components: - rot: 3.141592653589793 rad pos: 25.5,-59.5 parent: 2 type: Transform - - uid: 13319 + - uid: 13327 components: - rot: 1.5707963267948966 rad pos: 26.5,-60.5 parent: 2 type: Transform - - uid: 13320 + - uid: 13328 components: - rot: 1.5707963267948966 rad pos: 27.5,-60.5 parent: 2 type: Transform - - uid: 13321 + - uid: 13329 components: - rot: 1.5707963267948966 rad pos: 28.5,-60.5 parent: 2 type: Transform - - uid: 13322 + - uid: 13330 components: - rot: 1.5707963267948966 rad pos: 30.5,-60.5 parent: 2 type: Transform - - uid: 13323 + - uid: 13331 components: - rot: 1.5707963267948966 rad pos: 31.5,-60.5 parent: 2 type: Transform - - uid: 13324 + - uid: 13332 components: - rot: 1.5707963267948966 rad pos: 32.5,-60.5 parent: 2 type: Transform - - uid: 13325 + - uid: 13333 components: - rot: 1.5707963267948966 rad pos: 33.5,-60.5 parent: 2 type: Transform - - uid: 13326 + - uid: 13334 components: - rot: 1.5707963267948966 rad pos: 34.5,-60.5 parent: 2 type: Transform - - uid: 13327 + - uid: 13335 components: - rot: 1.5707963267948966 rad pos: 35.5,-60.5 parent: 2 type: Transform - - uid: 13328 + - uid: 13336 components: - rot: 1.5707963267948966 rad pos: 36.5,-60.5 parent: 2 type: Transform - - uid: 13329 + - uid: 13337 components: - rot: 3.141592653589793 rad pos: -23.5,-14.5 parent: 2 type: Transform - - uid: 13330 + - uid: 13338 components: - rot: 1.5707963267948966 rad pos: -22.5,-13.5 parent: 2 type: Transform - - uid: 13331 + - uid: 13339 components: - rot: 1.5707963267948966 rad pos: -21.5,-13.5 parent: 2 type: Transform - - uid: 13332 + - uid: 13340 components: - rot: 1.5707963267948966 rad pos: -20.5,-13.5 parent: 2 type: Transform - - uid: 13333 + - uid: 13341 components: - pos: -19.5,-14.5 parent: 2 type: Transform - - uid: 13334 + - uid: 13342 components: - pos: -19.5,-15.5 parent: 2 type: Transform - - uid: 13335 + - uid: 13343 components: - pos: -19.5,-16.5 parent: 2 type: Transform - - uid: 13336 + - uid: 13344 components: - pos: -19.5,-17.5 parent: 2 type: Transform - - uid: 13337 + - uid: 13345 components: - pos: -19.5,-18.5 parent: 2 type: Transform - - uid: 13338 + - uid: 13346 components: - pos: -19.5,-19.5 parent: 2 type: Transform - - uid: 13339 + - uid: 13347 components: - pos: -19.5,-20.5 parent: 2 type: Transform - - uid: 13340 + - uid: 13348 components: - pos: -19.5,-21.5 parent: 2 type: Transform - - uid: 13341 + - uid: 13349 components: - pos: -19.5,-22.5 parent: 2 type: Transform - - uid: 13342 + - uid: 13350 components: - pos: -19.5,-23.5 parent: 2 type: Transform - - uid: 13343 + - uid: 13351 components: - pos: -19.5,-24.5 parent: 2 type: Transform - - uid: 13344 + - uid: 13352 components: - pos: -19.5,-25.5 parent: 2 type: Transform - - uid: 13345 + - uid: 13353 components: - pos: -19.5,-26.5 parent: 2 type: Transform - - uid: 13346 + - uid: 13354 components: - rot: 1.5707963267948966 rad pos: -18.5,-27.5 parent: 2 type: Transform - - uid: 13347 + - uid: 13355 components: - pos: -19.5,-28.5 parent: 2 type: Transform - - uid: 13348 + - uid: 13356 components: - pos: -19.5,-29.5 parent: 2 type: Transform - - uid: 13349 + - uid: 13357 components: - pos: -19.5,-30.5 parent: 2 type: Transform - - uid: 13350 + - uid: 13358 components: - pos: -19.5,-31.5 parent: 2 type: Transform - - uid: 13351 + - uid: 13359 components: - pos: -19.5,-32.5 parent: 2 type: Transform - - uid: 13352 + - uid: 13360 components: - rot: -1.5707963267948966 rad pos: -24.5,-13.5 parent: 2 type: Transform - - uid: 13353 + - uid: 13361 components: - rot: -1.5707963267948966 rad pos: -25.5,-13.5 parent: 2 type: Transform - - uid: 13354 + - uid: 13362 components: - rot: -1.5707963267948966 rad pos: -26.5,-13.5 parent: 2 type: Transform - - uid: 13355 + - uid: 13363 components: - rot: -1.5707963267948966 rad pos: -27.5,-13.5 parent: 2 type: Transform - - uid: 13356 + - uid: 13364 components: - rot: -1.5707963267948966 rad pos: -28.5,-13.5 parent: 2 type: Transform - - uid: 13357 + - uid: 13365 components: - rot: -1.5707963267948966 rad pos: -29.5,-13.5 parent: 2 type: Transform - - uid: 13358 + - uid: 13366 components: - rot: -1.5707963267948966 rad pos: -30.5,-13.5 parent: 2 type: Transform - - uid: 13359 + - uid: 13367 components: - rot: -1.5707963267948966 rad pos: -31.5,-13.5 parent: 2 type: Transform - - uid: 13360 + - uid: 13368 components: - rot: 3.141592653589793 rad pos: 15.5,-39.5 parent: 2 type: Transform - - uid: 13361 + - uid: 13369 components: - rot: 1.5707963267948966 rad pos: 37.5,-60.5 parent: 2 type: Transform - - uid: 13362 + - uid: 13370 components: - rot: 1.5707963267948966 rad pos: 38.5,-60.5 parent: 2 type: Transform - - uid: 13363 + - uid: 13371 components: - pos: 39.5,-61.5 parent: 2 type: Transform - - uid: 13364 + - uid: 13372 components: - pos: 39.5,-62.5 parent: 2 type: Transform - - uid: 13365 + - uid: 13373 components: - pos: 39.5,-63.5 parent: 2 type: Transform - - uid: 13366 + - uid: 13374 components: - pos: 39.5,-64.5 parent: 2 type: Transform - - uid: 13367 + - uid: 13375 components: - pos: 39.5,-65.5 parent: 2 type: Transform - - uid: 13368 + - uid: 13376 components: - pos: 39.5,-66.5 parent: 2 type: Transform - - uid: 13369 + - uid: 13377 components: - pos: 39.5,-67.5 parent: 2 type: Transform - - uid: 13370 + - uid: 13378 components: - pos: 39.5,-68.5 parent: 2 type: Transform - - uid: 13371 + - uid: 13379 components: - rot: 3.141592653589793 rad pos: -19.5,-33.5 parent: 2 type: Transform - - uid: 13372 + - uid: 13380 components: - rot: 3.141592653589793 rad pos: -19.5,-34.5 parent: 2 type: Transform - - uid: 13373 + - uid: 13381 components: - rot: 3.141592653589793 rad pos: -19.5,-35.5 parent: 2 type: Transform - - uid: 13374 + - uid: 13382 components: - rot: 3.141592653589793 rad pos: -19.5,-36.5 parent: 2 type: Transform - - uid: 13375 + - uid: 13383 components: - rot: 3.141592653589793 rad pos: -19.5,-37.5 parent: 2 type: Transform - - uid: 13376 + - uid: 13384 components: - rot: 3.141592653589793 rad pos: -19.5,-38.5 parent: 2 type: Transform - - uid: 13377 + - uid: 13385 components: - rot: 3.141592653589793 rad pos: -19.5,-39.5 parent: 2 type: Transform - - uid: 13378 + - uid: 13386 components: - rot: 3.141592653589793 rad pos: -19.5,-40.5 parent: 2 type: Transform - - uid: 13379 + - uid: 13387 components: - rot: 3.141592653589793 rad pos: -19.5,-41.5 parent: 2 type: Transform - - uid: 13380 + - uid: 13388 components: - rot: 3.141592653589793 rad pos: -19.5,-42.5 parent: 2 type: Transform - - uid: 13381 + - uid: 13389 components: - pos: 30.5,-80.5 parent: 2 type: Transform - - uid: 13382 + - uid: 13390 components: - pos: 30.5,-78.5 parent: 2 type: Transform - - uid: 13383 + - uid: 13391 components: - pos: 30.5,-79.5 parent: 2 type: Transform - - uid: 13384 + - uid: 13392 components: - pos: 39.5,-69.5 parent: 2 type: Transform - - uid: 13385 + - uid: 13393 components: - pos: 39.5,-70.5 parent: 2 type: Transform - - uid: 13386 + - uid: 13394 components: - pos: 39.5,-71.5 parent: 2 type: Transform - - uid: 13387 + - uid: 13395 components: - pos: 39.5,-72.5 parent: 2 type: Transform - - uid: 13388 + - uid: 13396 components: - rot: 1.5707963267948966 rad pos: 25.5,-73.5 parent: 2 type: Transform - - uid: 13389 + - uid: 13397 components: - pos: 30.5,-83.5 parent: 2 type: Transform - - uid: 13390 + - uid: 13398 components: - pos: 30.5,-84.5 parent: 2 type: Transform - - uid: 13391 + - uid: 13399 components: - rot: 1.5707963267948966 rad pos: 29.5,-86.5 parent: 2 type: Transform - - uid: 13392 + - uid: 13400 components: - pos: 30.5,-85.5 parent: 2 type: Transform - - uid: 13393 + - uid: 13401 components: - pos: -13.5,1.5 parent: 2 type: Transform - - uid: 13394 + - uid: 13402 components: - pos: -13.5,-0.5 parent: 2 type: Transform - - uid: 13395 + - uid: 13403 components: - pos: -13.5,-1.5 parent: 2 type: Transform - - uid: 13396 + - uid: 13404 components: - pos: -13.5,-2.5 parent: 2 type: Transform - - uid: 13397 + - uid: 13405 components: - pos: -13.5,-3.5 parent: 2 type: Transform - - uid: 13398 + - uid: 13406 components: - pos: -13.5,-4.5 parent: 2 type: Transform - - uid: 13399 + - uid: 13407 components: - pos: -13.5,-5.5 parent: 2 type: Transform - - uid: 13400 + - uid: 13408 components: - pos: -13.5,2.5 parent: 2 type: Transform - - uid: 13401 + - uid: 13409 components: - pos: -13.5,3.5 parent: 2 type: Transform - - uid: 13402 + - uid: 13410 components: - pos: -13.5,4.5 parent: 2 type: Transform - - uid: 13403 + - uid: 13411 components: - pos: -13.5,6.5 parent: 2 type: Transform - - uid: 13404 + - uid: 13412 components: - pos: -13.5,7.5 parent: 2 type: Transform - - uid: 13405 + - uid: 13413 components: - rot: -1.5707963267948966 rad pos: -14.5,-6.5 parent: 2 type: Transform - - uid: 13406 + - uid: 13414 components: - rot: -1.5707963267948966 rad pos: -15.5,-6.5 parent: 2 type: Transform - - uid: 13407 + - uid: 13415 components: - rot: -1.5707963267948966 rad pos: -16.5,-6.5 parent: 2 type: Transform - - uid: 13408 + - uid: 13416 components: - rot: -1.5707963267948966 rad pos: -17.5,-6.5 parent: 2 type: Transform - - uid: 13409 + - uid: 13417 components: - rot: -1.5707963267948966 rad pos: -18.5,-6.5 parent: 2 type: Transform - - uid: 13410 + - uid: 13418 components: - pos: -19.5,-12.5 parent: 2 type: Transform - - uid: 13411 + - uid: 13419 components: - pos: -19.5,-11.5 parent: 2 type: Transform - - uid: 13412 + - uid: 13420 components: - pos: -19.5,-10.5 parent: 2 type: Transform - - uid: 13413 + - uid: 13421 components: - pos: -19.5,-9.5 parent: 2 type: Transform - - uid: 13414 + - uid: 13422 components: - pos: -19.5,-8.5 parent: 2 type: Transform - - uid: 13415 + - uid: 13423 components: - pos: -19.5,-7.5 parent: 2 type: Transform - - uid: 13416 + - uid: 13424 components: - rot: -1.5707963267948966 rad pos: -14.5,8.5 parent: 2 type: Transform - - uid: 13417 + - uid: 13425 components: - rot: -1.5707963267948966 rad pos: -15.5,8.5 parent: 2 type: Transform - - uid: 13418 + - uid: 13426 components: - rot: -1.5707963267948966 rad pos: -16.5,8.5 parent: 2 type: Transform - - uid: 13419 + - uid: 13427 components: - rot: -1.5707963267948966 rad pos: -17.5,8.5 parent: 2 type: Transform - - uid: 13420 + - uid: 13428 components: - rot: -1.5707963267948966 rad pos: -18.5,8.5 parent: 2 type: Transform - - uid: 13421 + - uid: 13429 components: - rot: 3.141592653589793 rad pos: -19.5,7.5 parent: 2 type: Transform - - uid: 13422 + - uid: 13430 components: - rot: -1.5707963267948966 rad pos: -20.5,6.5 parent: 2 type: Transform - - uid: 13423 + - uid: 13431 components: - rot: -1.5707963267948966 rad pos: -21.5,6.5 parent: 2 type: Transform - - uid: 13424 + - uid: 13432 components: - rot: -1.5707963267948966 rad pos: -22.5,6.5 parent: 2 type: Transform - - uid: 13425 + - uid: 13433 components: - rot: -1.5707963267948966 rad pos: -23.5,6.5 parent: 2 type: Transform - - uid: 13426 + - uid: 13434 components: - rot: -1.5707963267948966 rad pos: -24.5,6.5 parent: 2 type: Transform - - uid: 13427 + - uid: 13435 components: - rot: -1.5707963267948966 rad pos: -20.5,-6.5 parent: 2 type: Transform - - uid: 13428 + - uid: 13436 components: - rot: -1.5707963267948966 rad pos: -21.5,-6.5 parent: 2 type: Transform - - uid: 13429 + - uid: 13437 components: - rot: -1.5707963267948966 rad pos: -22.5,-6.5 parent: 2 type: Transform - - uid: 13430 + - uid: 13438 components: - rot: -1.5707963267948966 rad pos: -23.5,-6.5 parent: 2 type: Transform - - uid: 13431 + - uid: 13439 components: - rot: -1.5707963267948966 rad pos: -24.5,-6.5 parent: 2 type: Transform - - uid: 13432 + - uid: 13440 components: - pos: -25.5,5.5 parent: 2 type: Transform - - uid: 13433 + - uid: 13441 components: - pos: -25.5,4.5 parent: 2 type: Transform - - uid: 13434 + - uid: 13442 components: - pos: -25.5,3.5 parent: 2 type: Transform - - uid: 13435 + - uid: 13443 components: - pos: -25.5,2.5 parent: 2 type: Transform - - uid: 13436 + - uid: 13444 components: - pos: -25.5,1.5 parent: 2 type: Transform - - uid: 13437 + - uid: 13445 components: - pos: -25.5,0.5 parent: 2 type: Transform - - uid: 13438 + - uid: 13446 components: - pos: -25.5,-1.5 parent: 2 type: Transform - - uid: 13439 + - uid: 13447 components: - pos: -25.5,-2.5 parent: 2 type: Transform - - uid: 13440 + - uid: 13448 components: - pos: -25.5,-3.5 parent: 2 type: Transform - - uid: 13441 + - uid: 13449 components: - pos: -25.5,-4.5 parent: 2 type: Transform - - uid: 13442 + - uid: 13450 components: - pos: -25.5,-5.5 parent: 2 type: Transform - - uid: 13443 + - uid: 13451 components: - pos: -19.5,9.5 parent: 2 type: Transform - - uid: 13444 + - uid: 13452 components: - pos: -19.5,10.5 parent: 2 type: Transform - - uid: 13445 + - uid: 13453 components: - pos: -19.5,11.5 parent: 2 type: Transform - - uid: 13446 + - uid: 13454 components: - pos: -19.5,12.5 parent: 2 type: Transform - - uid: 13447 + - uid: 13455 components: - rot: 1.5707963267948966 rad pos: -26.5,6.5 parent: 2 type: Transform - - uid: 13448 + - uid: 13456 components: - rot: 3.141592653589793 rad pos: -32.5,-12.5 parent: 2 type: Transform - - uid: 13449 + - uid: 13457 components: - rot: 3.141592653589793 rad pos: -32.5,-11.5 parent: 2 type: Transform - - uid: 13450 + - uid: 13458 components: - rot: -1.5707963267948966 rad pos: -33.5,-10.5 parent: 2 type: Transform - - uid: 13451 + - uid: 13459 components: - rot: -1.5707963267948966 rad pos: -34.5,-10.5 parent: 2 type: Transform - - uid: 13452 + - uid: 13460 components: - rot: -1.5707963267948966 rad pos: -35.5,-10.5 parent: 2 type: Transform - - uid: 13453 + - uid: 13461 components: - pos: -36.5,-9.5 parent: 2 type: Transform - - uid: 13454 + - uid: 13462 components: - pos: -36.5,-8.5 parent: 2 type: Transform - - uid: 13455 + - uid: 13463 components: - pos: -36.5,-7.5 parent: 2 type: Transform - - uid: 13456 + - uid: 13464 components: - pos: -36.5,-6.5 parent: 2 type: Transform - - uid: 13457 + - uid: 13465 components: - rot: -1.5707963267948966 rad pos: -37.5,-5.5 parent: 2 type: Transform - - uid: 13458 + - uid: 13466 components: - rot: -1.5707963267948966 rad pos: -26.5,-0.5 parent: 2 type: Transform - - uid: 13459 + - uid: 13467 components: - rot: -1.5707963267948966 rad pos: -27.5,-0.5 parent: 2 type: Transform - - uid: 13460 + - uid: 13468 components: - rot: -1.5707963267948966 rad pos: -28.5,-0.5 parent: 2 type: Transform - - uid: 13461 + - uid: 13469 components: - rot: -1.5707963267948966 rad pos: -29.5,-0.5 parent: 2 type: Transform - - uid: 13462 + - uid: 13470 components: - rot: -1.5707963267948966 rad pos: -30.5,-0.5 parent: 2 type: Transform - - uid: 13463 + - uid: 13471 components: - rot: -1.5707963267948966 rad pos: -0.5,-75.5 parent: 2 type: Transform - - uid: 13464 + - uid: 13472 components: - rot: -1.5707963267948966 rad pos: -1.5,-75.5 parent: 2 type: Transform - - uid: 13465 + - uid: 13473 components: - rot: -1.5707963267948966 rad pos: -2.5,-75.5 parent: 2 type: Transform - - uid: 13466 + - uid: 13474 components: - rot: -1.5707963267948966 rad pos: -3.5,-75.5 parent: 2 type: Transform - - uid: 13467 + - uid: 13475 components: - rot: -1.5707963267948966 rad pos: -4.5,-75.5 parent: 2 type: Transform - - uid: 13468 + - uid: 13476 components: - rot: -1.5707963267948966 rad pos: -5.5,-75.5 parent: 2 type: Transform - - uid: 13469 + - uid: 13477 components: - rot: -1.5707963267948966 rad pos: -6.5,-75.5 parent: 2 type: Transform - - uid: 13470 + - uid: 13478 components: - rot: -1.5707963267948966 rad pos: -7.5,-75.5 parent: 2 type: Transform - - uid: 13471 + - uid: 13479 components: - rot: -1.5707963267948966 rad pos: -8.5,-75.5 parent: 2 type: Transform - - uid: 13472 + - uid: 13480 components: - rot: -1.5707963267948966 rad pos: -9.5,-75.5 parent: 2 type: Transform - - uid: 13473 + - uid: 13481 components: - rot: -1.5707963267948966 rad pos: -10.5,-75.5 parent: 2 type: Transform - - uid: 13474 + - uid: 13482 components: - rot: -1.5707963267948966 rad pos: -11.5,-75.5 parent: 2 type: Transform - - uid: 13475 + - uid: 13483 components: - rot: -1.5707963267948966 rad pos: -12.5,-75.5 parent: 2 type: Transform - - uid: 13476 + - uid: 13484 components: - rot: -1.5707963267948966 rad pos: -13.5,-75.5 parent: 2 type: Transform - - uid: 13477 + - uid: 13485 components: - rot: -1.5707963267948966 rad pos: -14.5,-75.5 parent: 2 type: Transform - - uid: 13478 + - uid: 13486 components: - rot: -1.5707963267948966 rad pos: -15.5,-75.5 parent: 2 type: Transform - - uid: 13479 + - uid: 13487 components: - rot: -1.5707963267948966 rad pos: -16.5,-75.5 parent: 2 type: Transform - - uid: 13480 + - uid: 13488 components: - rot: -1.5707963267948966 rad pos: -17.5,-75.5 parent: 2 type: Transform - - uid: 13481 + - uid: 13489 components: - rot: -1.5707963267948966 rad pos: -18.5,-75.5 parent: 2 type: Transform - - uid: 13482 + - uid: 13490 components: - rot: 3.141592653589793 rad pos: -19.5,-76.5 parent: 2 type: Transform - - uid: 13483 + - uid: 13491 components: - rot: 1.5707963267948966 rad pos: -20.5,-77.5 parent: 2 type: Transform - - uid: 13484 + - uid: 13492 components: - rot: 1.5707963267948966 rad pos: -21.5,-77.5 parent: 2 type: Transform - - uid: 13485 + - uid: 13493 components: - rot: 1.5707963267948966 rad pos: -22.5,-77.5 parent: 2 type: Transform - - uid: 13486 + - uid: 13494 components: - rot: 1.5707963267948966 rad pos: -23.5,-77.5 parent: 2 type: Transform - - uid: 13487 + - uid: 13495 components: - rot: 1.5707963267948966 rad pos: -24.5,-77.5 parent: 2 type: Transform - - uid: 13488 + - uid: 13496 components: - rot: 1.5707963267948966 rad pos: -25.5,-77.5 parent: 2 type: Transform - - uid: 13489 + - uid: 13497 components: - rot: 1.5707963267948966 rad pos: -26.5,-77.5 parent: 2 type: Transform - - uid: 13490 + - uid: 13498 components: - rot: 1.5707963267948966 rad pos: -27.5,-77.5 parent: 2 type: Transform - - uid: 13491 + - uid: 13499 components: - rot: 1.5707963267948966 rad pos: -28.5,-77.5 parent: 2 type: Transform - - uid: 13492 + - uid: 13500 components: - rot: 1.5707963267948966 rad pos: -29.5,-77.5 parent: 2 type: Transform - - uid: 13493 + - uid: 13501 components: - rot: 1.5707963267948966 rad pos: -30.5,-77.5 parent: 2 type: Transform - - uid: 13494 + - uid: 13502 components: - rot: 1.5707963267948966 rad pos: -31.5,-77.5 parent: 2 type: Transform - - uid: 13495 + - uid: 13503 components: - rot: 1.5707963267948966 rad pos: -32.5,-77.5 parent: 2 type: Transform - - uid: 13496 + - uid: 13504 components: - rot: 1.5707963267948966 rad pos: -33.5,-77.5 parent: 2 type: Transform - - uid: 13497 + - uid: 13505 components: - rot: 1.5707963267948966 rad pos: -34.5,-77.5 parent: 2 type: Transform - - uid: 13498 + - uid: 13506 components: - rot: 1.5707963267948966 rad pos: -35.5,-77.5 parent: 2 type: Transform - - uid: 13499 + - uid: 13507 components: - pos: -36.5,-78.5 parent: 2 type: Transform - - uid: 13500 + - uid: 13508 components: - pos: -36.5,-79.5 parent: 2 type: Transform - - uid: 13501 + - uid: 13509 components: - rot: 3.141592653589793 rad pos: -19.5,13.5 parent: 2 type: Transform - - uid: 13502 + - uid: 13510 components: - rot: 3.141592653589793 rad pos: -19.5,14.5 parent: 2 type: Transform - - uid: 13503 + - uid: 13511 components: - rot: 3.141592653589793 rad pos: -19.5,15.5 parent: 2 type: Transform - - uid: 13504 + - uid: 13512 components: - rot: 3.141592653589793 rad pos: -19.5,16.5 parent: 2 type: Transform - - uid: 13505 + - uid: 13513 components: - rot: 3.141592653589793 rad pos: -19.5,17.5 parent: 2 type: Transform - - uid: 13506 + - uid: 13514 components: - rot: 3.141592653589793 rad pos: -19.5,18.5 parent: 2 type: Transform - - uid: 13507 + - uid: 13515 components: - rot: 3.141592653589793 rad pos: -19.5,19.5 parent: 2 type: Transform - - uid: 13508 + - uid: 13516 components: - rot: 3.141592653589793 rad pos: -19.5,20.5 parent: 2 type: Transform - - uid: 13509 + - uid: 13517 components: - rot: 3.141592653589793 rad pos: -19.5,21.5 parent: 2 type: Transform - - uid: 13510 + - uid: 13518 components: - rot: 3.141592653589793 rad pos: -19.5,22.5 parent: 2 type: Transform - - uid: 13511 + - uid: 13519 components: - rot: -1.5707963267948966 rad pos: -20.5,23.5 parent: 2 type: Transform - - uid: 13512 + - uid: 13520 components: - rot: -1.5707963267948966 rad pos: -21.5,23.5 parent: 2 type: Transform - - uid: 13513 + - uid: 13521 components: - rot: 3.141592653589793 rad pos: -22.5,24.5 parent: 2 type: Transform - - uid: 13514 + - uid: 13522 components: - rot: -1.5707963267948966 rad pos: -41.5,19.5 parent: 2 type: Transform - - uid: 13515 + - uid: 13523 components: - rot: -1.5707963267948966 rad pos: -35.5,19.5 parent: 2 type: Transform - - uid: 13516 + - uid: 13524 components: - rot: 1.5707963267948966 rad pos: -23.5,23.5 parent: 2 type: Transform - - uid: 13517 + - uid: 13525 components: - rot: 1.5707963267948966 rad pos: -24.5,23.5 parent: 2 type: Transform - - uid: 13518 + - uid: 13526 components: - rot: 1.5707963267948966 rad pos: -25.5,23.5 parent: 2 type: Transform - - uid: 13519 + - uid: 13527 components: - rot: 1.5707963267948966 rad pos: -26.5,23.5 parent: 2 type: Transform - - uid: 13520 + - uid: 13528 components: - rot: 1.5707963267948966 rad pos: -27.5,23.5 parent: 2 type: Transform - - uid: 13521 + - uid: 13529 components: - rot: 1.5707963267948966 rad pos: -28.5,23.5 parent: 2 type: Transform - - uid: 13522 + - uid: 13530 components: - rot: 1.5707963267948966 rad pos: -29.5,23.5 parent: 2 type: Transform - - uid: 13523 + - uid: 13531 components: - rot: 1.5707963267948966 rad pos: -30.5,23.5 parent: 2 type: Transform - - uid: 13524 + - uid: 13532 components: - rot: 1.5707963267948966 rad pos: -31.5,23.5 parent: 2 type: Transform - - uid: 13525 + - uid: 13533 components: - rot: 1.5707963267948966 rad pos: -32.5,23.5 parent: 2 type: Transform - - uid: 13526 + - uid: 13534 components: - rot: 1.5707963267948966 rad pos: -33.5,23.5 parent: 2 type: Transform - - uid: 13527 + - uid: 13535 components: - rot: 1.5707963267948966 rad pos: -34.5,23.5 parent: 2 type: Transform - - uid: 13528 + - uid: 13536 components: - rot: 1.5707963267948966 rad pos: -35.5,23.5 parent: 2 type: Transform - - uid: 13529 + - uid: 13537 components: - rot: 1.5707963267948966 rad pos: -36.5,23.5 parent: 2 type: Transform - - uid: 13530 + - uid: 13538 components: - rot: 1.5707963267948966 rad pos: -37.5,23.5 parent: 2 type: Transform - - uid: 13531 + - uid: 13539 components: - rot: 1.5707963267948966 rad pos: -38.5,23.5 parent: 2 type: Transform - - uid: 13532 + - uid: 13540 components: - rot: 3.141592653589793 rad pos: -46.5,10.5 parent: 2 type: Transform - - uid: 13533 + - uid: 13541 components: - rot: 1.5707963267948966 rad pos: -40.5,23.5 parent: 2 type: Transform - - uid: 13534 + - uid: 13542 components: - rot: 1.5707963267948966 rad pos: -41.5,23.5 parent: 2 type: Transform - - uid: 13535 + - uid: 13543 components: - rot: 3.141592653589793 rad pos: -42.5,24.5 parent: 2 type: Transform - - uid: 13536 + - uid: 13544 components: - rot: 3.141592653589793 rad pos: -42.5,25.5 parent: 2 type: Transform - - uid: 13537 + - uid: 13545 components: - rot: 3.141592653589793 rad pos: -42.5,26.5 parent: 2 type: Transform - - uid: 13538 + - uid: 13546 components: - rot: -1.5707963267948966 rad pos: -38.5,19.5 parent: 2 type: Transform - - uid: 13539 + - uid: 13547 components: - pos: -42.5,18.5 parent: 2 type: Transform - - uid: 13540 + - uid: 13548 components: - pos: -42.5,17.5 parent: 2 type: Transform - - uid: 13541 + - uid: 13549 components: - pos: -42.5,15.5 parent: 2 type: Transform - - uid: 13542 + - uid: 13550 components: - pos: -42.5,16.5 parent: 2 type: Transform - - uid: 13543 + - uid: 13551 components: - rot: 3.141592653589793 rad pos: -5.5,-19.5 parent: 2 type: Transform - - uid: 13544 + - uid: 13552 components: - rot: 3.141592653589793 rad pos: -5.5,-17.5 parent: 2 type: Transform - - uid: 13545 + - uid: 13553 components: - rot: -1.5707963267948966 rad pos: -44.5,5.5 parent: 2 type: Transform - - uid: 13546 + - uid: 13554 components: - pos: -45.5,4.5 parent: 2 type: Transform - - uid: 13547 + - uid: 13555 components: - pos: -45.5,3.5 parent: 2 type: Transform - - uid: 13548 + - uid: 13556 components: - pos: -45.5,2.5 parent: 2 type: Transform - - uid: 13549 + - uid: 13557 components: - pos: -45.5,1.5 parent: 2 type: Transform - - uid: 13550 + - uid: 13558 components: - pos: -45.5,0.5 parent: 2 type: Transform - - uid: 13551 + - uid: 13559 components: - rot: -1.5707963267948966 rad pos: -31.5,-0.5 parent: 2 type: Transform - - uid: 13552 + - uid: 13560 components: - rot: -1.5707963267948966 rad pos: -32.5,-0.5 parent: 2 type: Transform - - uid: 13553 + - uid: 13561 components: - rot: -1.5707963267948966 rad pos: -33.5,-0.5 parent: 2 type: Transform - - uid: 13554 + - uid: 13562 components: - rot: -1.5707963267948966 rad pos: -34.5,-0.5 parent: 2 type: Transform - - uid: 13555 + - uid: 13563 components: - rot: -1.5707963267948966 rad pos: -35.5,-0.5 parent: 2 type: Transform - - uid: 13556 + - uid: 13564 components: - rot: -1.5707963267948966 rad pos: -36.5,-0.5 parent: 2 type: Transform - - uid: 13557 + - uid: 13565 components: - rot: -1.5707963267948966 rad pos: -37.5,-0.5 parent: 2 type: Transform - - uid: 13558 + - uid: 13566 components: - rot: -1.5707963267948966 rad pos: -38.5,-0.5 parent: 2 type: Transform - - uid: 13559 + - uid: 13567 components: - rot: -1.5707963267948966 rad pos: -39.5,-0.5 parent: 2 type: Transform - - uid: 13560 + - uid: 13568 components: - rot: -1.5707963267948966 rad pos: -40.5,-0.5 parent: 2 type: Transform - - uid: 13561 + - uid: 13569 components: - rot: -1.5707963267948966 rad pos: -41.5,-0.5 parent: 2 type: Transform - - uid: 13562 + - uid: 13570 components: - rot: -1.5707963267948966 rad pos: -42.5,-0.5 parent: 2 type: Transform - - uid: 13563 + - uid: 13571 components: - rot: -1.5707963267948966 rad pos: -43.5,-0.5 parent: 2 type: Transform - - uid: 13564 + - uid: 13572 components: - rot: -1.5707963267948966 rad pos: -44.5,-0.5 parent: 2 type: Transform - - uid: 13565 + - uid: 13573 components: - rot: 3.141592653589793 rad pos: -5.5,-20.5 parent: 2 type: Transform - - uid: 13566 + - uid: 13574 components: - rot: 3.141592653589793 rad pos: -5.5,-18.5 parent: 2 type: Transform - - uid: 13567 + - uid: 13575 components: - rot: -1.5707963267948966 rad pos: -42.5,18.5 parent: 2 type: Transform - - uid: 13568 + - uid: 13576 components: - rot: 3.141592653589793 rad pos: -3.5,-22.5 parent: 2 type: Transform - - uid: 13569 + - uid: 13577 components: - rot: 3.141592653589793 rad pos: -3.5,-23.5 parent: 2 type: Transform - - uid: 13570 + - uid: 13578 components: - rot: 1.5707963267948966 rad pos: -7.5,-9.5 parent: 2 type: Transform - - uid: 13571 + - uid: 13579 components: - rot: 1.5707963267948966 rad pos: 28.5,-86.5 parent: 2 type: Transform - - uid: 13572 + - uid: 13580 components: - rot: 3.141592653589793 rad pos: 15.5,-30.5 parent: 2 type: Transform - - uid: 13573 + - uid: 13581 components: - rot: 3.141592653589793 rad pos: 25.5,-53.5 parent: 2 type: Transform - - uid: 13574 + - uid: 13582 components: - rot: 3.141592653589793 rad pos: 18.5,-53.5 parent: 2 type: Transform - - uid: 13575 + - uid: 13583 components: - rot: 3.141592653589793 rad pos: 15.5,-40.5 parent: 2 type: Transform - - uid: 13576 + - uid: 13584 components: - rot: 3.141592653589793 rad pos: 15.5,-38.5 parent: 2 type: Transform - - uid: 13577 + - uid: 13585 components: - pos: -5.5,-55.5 parent: 2 type: Transform - - uid: 13578 + - uid: 13586 components: - pos: -5.5,-56.5 parent: 2 type: Transform - - uid: 13579 + - uid: 13587 components: - pos: -5.5,-57.5 parent: 2 type: Transform - - uid: 13580 + - uid: 13588 components: - pos: -5.5,-58.5 parent: 2 type: Transform - - uid: 13581 + - uid: 13589 components: - pos: -5.5,-59.5 parent: 2 type: Transform - - uid: 13582 + - uid: 13590 components: - pos: -5.5,-60.5 parent: 2 type: Transform - - uid: 13583 + - uid: 13591 components: - pos: -6.5,-62.5 parent: 2 type: Transform - - uid: 13584 + - uid: 13592 components: - pos: -6.5,-63.5 parent: 2 type: Transform - - uid: 13585 + - uid: 13593 components: - pos: -6.5,-64.5 parent: 2 type: Transform - - uid: 13586 + - uid: 13594 components: - rot: 1.5707963267948966 rad pos: -8.5,-66.5 parent: 2 type: Transform - - uid: 13587 + - uid: 13595 components: - rot: 3.141592653589793 rad pos: -3.5,-66.5 parent: 2 type: Transform - - uid: 13588 + - uid: 13596 components: - rot: 3.141592653589793 rad pos: -3.5,-65.5 parent: 2 type: Transform - - uid: 13589 + - uid: 13597 components: - rot: 3.141592653589793 rad pos: -3.5,-64.5 parent: 2 type: Transform - - uid: 13590 + - uid: 13598 components: - rot: 3.141592653589793 rad pos: -3.5,-63.5 parent: 2 type: Transform - - uid: 13591 + - uid: 13599 components: - rot: 3.141592653589793 rad pos: -3.5,-62.5 parent: 2 type: Transform - - uid: 13592 + - uid: 13600 components: - rot: -1.5707963267948966 rad pos: -4.5,-61.5 parent: 2 type: Transform - - uid: 13593 + - uid: 13601 components: - rot: -1.5707963267948966 rad pos: -2.5,-61.5 parent: 2 type: Transform - - uid: 13594 + - uid: 13602 components: - rot: -1.5707963267948966 rad pos: -1.5,-61.5 parent: 2 type: Transform - - uid: 13595 + - uid: 13603 components: - rot: -1.5707963267948966 rad pos: -0.5,-61.5 parent: 2 type: Transform - - uid: 13596 + - uid: 13604 components: - rot: -1.5707963267948966 rad pos: 0.5,-61.5 parent: 2 type: Transform - - uid: 13597 + - uid: 13605 components: - rot: -1.5707963267948966 rad pos: 1.5,-61.5 parent: 2 type: Transform - - uid: 13598 + - uid: 13606 components: - pos: 2.5,-62.5 parent: 2 type: Transform - - uid: 13599 + - uid: 13607 components: - rot: -1.5707963267948966 rad pos: -7.5,-61.5 parent: 2 type: Transform - - uid: 13600 + - uid: 13608 components: - rot: -1.5707963267948966 rad pos: -8.5,-61.5 parent: 2 type: Transform - - uid: 13601 + - uid: 13609 components: - rot: -1.5707963267948966 rad pos: -9.5,-61.5 parent: 2 type: Transform - - uid: 13602 + - uid: 13610 components: - rot: -1.5707963267948966 rad pos: -10.5,-61.5 parent: 2 type: Transform - - uid: 13603 + - uid: 13611 components: - rot: -1.5707963267948966 rad pos: -11.5,-61.5 parent: 2 type: Transform - - uid: 13604 + - uid: 13612 components: - rot: -1.5707963267948966 rad pos: -12.5,-61.5 parent: 2 type: Transform - - uid: 13605 + - uid: 13613 components: - pos: -13.5,-62.5 parent: 2 type: Transform - - uid: 13606 + - uid: 13614 components: - rot: 3.141592653589793 rad pos: -13.5,-63.5 parent: 2 type: Transform - - uid: 13607 + - uid: 13615 components: - rot: 3.141592653589793 rad pos: -13.5,-64.5 parent: 2 type: Transform - - uid: 13608 + - uid: 13616 components: - rot: 3.141592653589793 rad pos: -13.5,-65.5 parent: 2 type: Transform - - uid: 13609 + - uid: 13617 components: - rot: 3.141592653589793 rad pos: -13.5,-66.5 parent: 2 type: Transform - - uid: 13610 + - uid: 13618 components: - rot: 1.5707963267948966 rad pos: -14.5,-67.5 parent: 2 type: Transform - - uid: 13611 + - uid: 13619 components: - rot: 1.5707963267948966 rad pos: -15.5,-67.5 parent: 2 type: Transform - - uid: 13612 + - uid: 13620 components: - rot: 3.141592653589793 rad pos: -3.5,-26.5 parent: 2 type: Transform - - uid: 13613 + - uid: 13621 components: - rot: 3.141592653589793 rad pos: -12.5,6.5 parent: 2 type: Transform - - uid: 13614 + - uid: 13622 components: - rot: 3.141592653589793 rad pos: -12.5,7.5 parent: 2 type: Transform - - uid: 13615 + - uid: 13623 components: - pos: -45.5,12.5 parent: 2 type: Transform - - uid: 13616 + - uid: 13624 components: - pos: -45.5,13.5 parent: 2 type: Transform - - uid: 13617 + - uid: 13625 components: - rot: 1.5707963267948966 rad pos: -44.5,18.5 parent: 2 type: Transform - - uid: 13618 + - uid: 13626 components: - rot: -1.5707963267948966 rad pos: -39.5,23.5 parent: 2 type: Transform - - uid: 13619 + - uid: 13627 components: - pos: -45.5,14.5 parent: 2 type: Transform - - uid: 13620 + - uid: 13628 components: - pos: -45.5,15.5 parent: 2 type: Transform - - uid: 13621 + - uid: 13629 components: - pos: -45.5,16.5 parent: 2 type: Transform - - uid: 13622 + - uid: 13630 components: - pos: -45.5,17.5 parent: 2 type: Transform - - uid: 13623 + - uid: 13631 components: - rot: -1.5707963267948966 rad pos: -43.5,18.5 parent: 2 type: Transform - - uid: 13624 + - uid: 13632 components: - pos: -19.5,24.5 parent: 2 type: Transform - - uid: 13625 + - uid: 13633 components: - pos: -19.5,25.5 parent: 2 type: Transform - - uid: 13626 + - uid: 13634 components: - pos: -19.5,26.5 parent: 2 type: Transform - - uid: 13627 + - uid: 13635 components: - pos: -19.5,27.5 parent: 2 type: Transform - - uid: 13628 + - uid: 13636 components: - pos: -19.5,28.5 parent: 2 type: Transform - - uid: 13629 + - uid: 13637 components: - rot: 1.5707963267948966 rad pos: -18.5,29.5 parent: 2 type: Transform - - uid: 13630 + - uid: 13638 components: - rot: 1.5707963267948966 rad pos: -17.5,29.5 parent: 2 type: Transform - - uid: 13631 + - uid: 13639 components: - rot: 1.5707963267948966 rad pos: -16.5,29.5 parent: 2 type: Transform - - uid: 13632 + - uid: 13640 components: - rot: 3.141592653589793 rad pos: -15.5,30.5 parent: 2 type: Transform - - uid: 13633 + - uid: 13641 components: - rot: 3.141592653589793 rad pos: -15.5,31.5 parent: 2 type: Transform - - uid: 13634 + - uid: 13642 components: - rot: 3.141592653589793 rad pos: -15.5,32.5 parent: 2 type: Transform - - uid: 13635 + - uid: 13643 components: - rot: 3.141592653589793 rad pos: -15.5,33.5 parent: 2 type: Transform - - uid: 13636 + - uid: 13644 components: - rot: 3.141592653589793 rad pos: -15.5,34.5 parent: 2 type: Transform - - uid: 13637 + - uid: 13645 components: - rot: 3.141592653589793 rad pos: -15.5,35.5 parent: 2 type: Transform - - uid: 13638 + - uid: 13646 components: - rot: 3.141592653589793 rad pos: -15.5,36.5 parent: 2 type: Transform - - uid: 13639 + - uid: 13647 components: - rot: -1.5707963267948966 rad pos: -16.5,37.5 parent: 2 type: Transform - - uid: 13640 + - uid: 13648 components: - pos: -15.5,38.5 parent: 2 type: Transform - - uid: 13641 + - uid: 13649 components: - pos: -15.5,39.5 parent: 2 type: Transform - - uid: 13642 + - uid: 13650 components: - pos: -15.5,40.5 parent: 2 type: Transform - - uid: 13643 + - uid: 13651 components: - pos: -15.5,41.5 parent: 2 type: Transform - - uid: 13644 + - uid: 13652 components: - pos: -15.5,42.5 parent: 2 type: Transform - - uid: 13645 + - uid: 13653 components: - pos: -15.5,43.5 parent: 2 type: Transform - - uid: 13646 + - uid: 13654 components: - rot: -1.5707963267948966 rad pos: -14.5,44.5 parent: 2 type: Transform - - uid: 13647 + - uid: 13655 components: - rot: -1.5707963267948966 rad pos: -13.5,44.5 parent: 2 type: Transform - - uid: 13648 + - uid: 13656 components: - rot: -1.5707963267948966 rad pos: -12.5,44.5 parent: 2 type: Transform - - uid: 13649 + - uid: 13657 components: - rot: -1.5707963267948966 rad pos: -11.5,44.5 parent: 2 type: Transform - - uid: 13650 + - uid: 13658 components: - rot: -1.5707963267948966 rad pos: -16.5,44.5 parent: 2 type: Transform - - uid: 13651 + - uid: 13659 components: - rot: 3.141592653589793 rad pos: -17.5,45.5 parent: 2 type: Transform - - uid: 13652 + - uid: 13660 components: - rot: 3.141592653589793 rad pos: -17.5,46.5 parent: 2 type: Transform - - uid: 13653 + - uid: 13661 components: - rot: 3.141592653589793 rad pos: -17.5,47.5 parent: 2 type: Transform - - uid: 13654 + - uid: 13662 components: - rot: 3.141592653589793 rad pos: -17.5,48.5 parent: 2 type: Transform - - uid: 13655 + - uid: 13663 components: - rot: 3.141592653589793 rad pos: -17.5,49.5 parent: 2 type: Transform - - uid: 13656 + - uid: 13664 components: - rot: -1.5707963267948966 rad pos: -5.5,44.5 parent: 2 type: Transform - - uid: 13657 + - uid: 13665 components: - rot: -1.5707963267948966 rad pos: -6.5,44.5 parent: 2 type: Transform - - uid: 13658 + - uid: 13666 components: - rot: -1.5707963267948966 rad pos: -7.5,44.5 parent: 2 type: Transform - - uid: 13659 + - uid: 13667 components: - rot: -1.5707963267948966 rad pos: -8.5,44.5 parent: 2 type: Transform - - uid: 13660 + - uid: 13668 components: - rot: -1.5707963267948966 rad pos: -9.5,44.5 parent: 2 type: Transform - - uid: 13661 + - uid: 13669 components: - rot: -1.5707963267948966 rad pos: -10.5,44.5 parent: 2 type: Transform - - uid: 13662 + - uid: 13670 components: - rot: -1.5707963267948966 rad pos: -14.5,50.5 parent: 2 type: Transform - - uid: 13663 + - uid: 13671 components: - rot: -1.5707963267948966 rad pos: -16.5,50.5 parent: 2 type: Transform - - uid: 13664 + - uid: 13672 components: - rot: -1.5707963267948966 rad pos: -15.5,50.5 parent: 2 type: Transform - - uid: 13665 + - uid: 13673 components: - pos: -37.5,-94.5 parent: 2 type: Transform - - uid: 13666 + - uid: 13674 components: - rot: -1.5707963267948966 rad pos: -39.5,-95.5 parent: 2 type: Transform - - uid: 13667 + - uid: 13675 components: - rot: -1.5707963267948966 rad pos: -40.5,-95.5 parent: 2 type: Transform - - uid: 13668 + - uid: 13676 components: - rot: 3.141592653589793 rad pos: -41.5,-94.5 parent: 2 type: Transform - - uid: 13669 + - uid: 13677 components: - rot: 3.141592653589793 rad pos: -41.5,-93.5 parent: 2 type: Transform - - uid: 13670 + - uid: 13678 components: - rot: 3.141592653589793 rad pos: -41.5,-92.5 parent: 2 type: Transform - - uid: 13671 + - uid: 13679 components: - rot: 3.141592653589793 rad pos: -41.5,-91.5 parent: 2 type: Transform - - uid: 13672 + - uid: 13680 components: - rot: 3.141592653589793 rad pos: -41.5,-90.5 parent: 2 type: Transform - - uid: 13673 + - uid: 13681 components: - rot: 3.141592653589793 rad pos: -41.5,-89.5 parent: 2 type: Transform - - uid: 13674 + - uid: 13682 components: - rot: 3.141592653589793 rad pos: -41.5,-88.5 parent: 2 type: Transform - - uid: 13675 + - uid: 13683 components: - rot: 1.5707963267948966 rad pos: 68.5,-47.5 parent: 2 type: Transform - - uid: 13676 + - uid: 13684 components: - rot: 1.5707963267948966 rad pos: 69.5,-47.5 parent: 2 type: Transform - - uid: 13677 + - uid: 13685 components: - rot: 1.5707963267948966 rad pos: 70.5,-47.5 parent: 2 type: Transform - - uid: 13678 + - uid: 13686 components: - rot: 1.5707963267948966 rad pos: 71.5,-47.5 parent: 2 type: Transform - - uid: 13679 + - uid: 13687 components: - rot: 1.5707963267948966 rad pos: 72.5,-47.5 parent: 2 type: Transform - - uid: 13680 + - uid: 13688 components: - rot: 1.5707963267948966 rad pos: 73.5,-47.5 parent: 2 type: Transform - - uid: 13681 + - uid: 13689 components: - rot: 1.5707963267948966 rad pos: 74.5,-47.5 parent: 2 type: Transform - - uid: 13682 + - uid: 13690 components: - rot: 3.141592653589793 rad pos: 75.5,-46.5 parent: 2 type: Transform - - uid: 13683 + - uid: 13691 components: - rot: 3.141592653589793 rad pos: 75.5,-45.5 parent: 2 type: Transform - - uid: 13684 + - uid: 13692 components: - rot: 3.141592653589793 rad pos: 75.5,-44.5 parent: 2 type: Transform - - uid: 13685 + - uid: 13693 components: - rot: 3.141592653589793 rad pos: 75.5,-43.5 parent: 2 type: Transform - - uid: 13686 + - uid: 13694 components: - rot: 3.141592653589793 rad pos: 75.5,-42.5 parent: 2 type: Transform - - uid: 13687 + - uid: 13695 components: - rot: 3.141592653589793 rad pos: 75.5,-41.5 parent: 2 type: Transform - - uid: 13688 + - uid: 13696 components: - rot: 3.141592653589793 rad pos: 75.5,-40.5 parent: 2 type: Transform - - uid: 13689 + - uid: 13697 components: - rot: 3.141592653589793 rad pos: 75.5,-39.5 parent: 2 type: Transform - - uid: 13690 + - uid: 13698 components: - rot: 3.141592653589793 rad pos: 75.5,-38.5 parent: 2 type: Transform - - uid: 13691 + - uid: 13699 components: - rot: 3.141592653589793 rad pos: 75.5,-37.5 parent: 2 type: Transform - - uid: 13692 + - uid: 13700 components: - rot: 3.141592653589793 rad pos: 75.5,-36.5 parent: 2 type: Transform - - uid: 13693 + - uid: 13701 components: - rot: 3.141592653589793 rad pos: 75.5,-35.5 parent: 2 type: Transform - - uid: 13694 + - uid: 13702 components: - rot: 3.141592653589793 rad pos: 75.5,-34.5 parent: 2 type: Transform - - uid: 13695 + - uid: 13703 components: - rot: 3.141592653589793 rad pos: 75.5,-33.5 parent: 2 type: Transform - - uid: 13696 + - uid: 13704 components: - rot: 3.141592653589793 rad pos: -4.5,-3.5 parent: 2 type: Transform - - uid: 13697 + - uid: 13705 components: - rot: 3.141592653589793 rad pos: -4.5,-4.5 parent: 2 type: Transform - - uid: 13698 + - uid: 13706 components: - rot: 3.141592653589793 rad pos: 15.5,-31.5 parent: 2 type: Transform - - uid: 13699 + - uid: 13707 components: - pos: -42.5,14.5 parent: 2 type: Transform - - uid: 13700 + - uid: 13708 components: - rot: 1.5707963267948966 rad pos: -53.5,-64.5 parent: 2 type: Transform - - uid: 13701 + - uid: 13709 components: - pos: 30.5,-81.5 parent: 2 type: Transform - - uid: 13702 + - uid: 13710 components: - rot: 3.141592653589793 rad pos: -5.5,-16.5 parent: 2 type: Transform - - uid: 13703 + - uid: 13711 components: - rot: 3.141592653589793 rad pos: -5.5,-15.5 parent: 2 type: Transform - - uid: 13704 + - uid: 13712 components: - rot: 3.141592653589793 rad pos: -5.5,-14.5 parent: 2 type: Transform - - uid: 13705 + - uid: 13713 components: - rot: -1.5707963267948966 rad pos: -6.5,-13.5 parent: 2 type: Transform - - uid: 13706 + - uid: 13714 components: - rot: -1.5707963267948966 rad pos: -7.5,-13.5 parent: 2 type: Transform - - uid: 13707 + - uid: 13715 components: - rot: -1.5707963267948966 rad pos: -8.5,-13.5 parent: 2 type: Transform - - uid: 13708 + - uid: 13716 components: - rot: -1.5707963267948966 rad pos: -9.5,-13.5 parent: 2 type: Transform - - uid: 13709 + - uid: 13717 components: - pos: -12.5,-13.5 parent: 2 type: Transform - - uid: 13710 + - uid: 13718 components: - rot: -1.5707963267948966 rad pos: -13.5,-14.5 parent: 2 type: Transform - - uid: 13711 + - uid: 13719 components: - rot: -1.5707963267948966 rad pos: -14.5,-14.5 parent: 2 type: Transform - - uid: 13712 + - uid: 13720 components: - rot: -1.5707963267948966 rad pos: -15.5,-14.5 parent: 2 type: Transform - - uid: 13713 + - uid: 13721 components: - rot: -1.5707963267948966 rad pos: -16.5,-14.5 parent: 2 type: Transform - - uid: 13714 + - uid: 13722 components: - rot: -1.5707963267948966 rad pos: -17.5,-14.5 parent: 2 type: Transform - - uid: 13715 + - uid: 13723 components: - rot: 3.141592653589793 rad pos: -18.5,-13.5 parent: 2 type: Transform - - uid: 13716 + - uid: 13724 components: - rot: 3.141592653589793 rad pos: -18.5,-12.5 parent: 2 type: Transform - - uid: 13717 + - uid: 13725 components: - rot: 3.141592653589793 rad pos: -18.5,-11.5 parent: 2 type: Transform - - uid: 13718 + - uid: 13726 components: - rot: 3.141592653589793 rad pos: -18.5,-10.5 parent: 2 type: Transform - - uid: 13719 + - uid: 13727 components: - rot: 3.141592653589793 rad pos: -18.5,-9.5 parent: 2 type: Transform - - uid: 13720 + - uid: 13728 components: - rot: 3.141592653589793 rad pos: -18.5,-8.5 parent: 2 type: Transform - - uid: 13721 + - uid: 13729 components: - rot: 3.141592653589793 rad pos: -18.5,-7.5 parent: 2 type: Transform - - uid: 13722 + - uid: 13730 components: - rot: 3.141592653589793 rad pos: -18.5,-6.5 parent: 2 type: Transform - - uid: 13723 + - uid: 13731 components: - rot: 3.141592653589793 rad pos: -18.5,-5.5 parent: 2 type: Transform - - uid: 13724 + - uid: 13732 components: - rot: -1.5707963267948966 rad pos: -19.5,-4.5 parent: 2 type: Transform - - uid: 13725 + - uid: 13733 components: - rot: -1.5707963267948966 rad pos: -20.5,-4.5 parent: 2 type: Transform - - uid: 13726 + - uid: 13734 components: - rot: -1.5707963267948966 rad pos: -21.5,-4.5 parent: 2 type: Transform - - uid: 13727 + - uid: 13735 components: - rot: -1.5707963267948966 rad pos: -22.5,-4.5 parent: 2 type: Transform - - uid: 13728 + - uid: 13736 components: - rot: -1.5707963267948966 rad pos: -23.5,-4.5 parent: 2 type: Transform - - uid: 13729 + - uid: 13737 components: - rot: 3.141592653589793 rad pos: -24.5,-3.5 parent: 2 type: Transform - - uid: 13730 + - uid: 13738 components: - rot: 3.141592653589793 rad pos: -24.5,-2.5 parent: 2 type: Transform - - uid: 13731 + - uid: 13739 components: - rot: 3.141592653589793 rad pos: -24.5,-1.5 parent: 2 type: Transform - - uid: 13732 + - uid: 13740 components: - rot: 3.141592653589793 rad pos: -24.5,-0.5 parent: 2 type: Transform - - uid: 13733 + - uid: 13741 components: - rot: 3.141592653589793 rad pos: -24.5,0.5 parent: 2 type: Transform - - uid: 13734 + - uid: 13742 components: - rot: 3.141592653589793 rad pos: -24.5,1.5 parent: 2 type: Transform - - uid: 13735 + - uid: 13743 components: - rot: 3.141592653589793 rad pos: -24.5,2.5 parent: 2 type: Transform - - uid: 13736 + - uid: 13744 components: - rot: 3.141592653589793 rad pos: -24.5,3.5 parent: 2 type: Transform - - uid: 13737 + - uid: 13745 components: - rot: 3.141592653589793 rad pos: -24.5,4.5 parent: 2 type: Transform - - uid: 13738 + - uid: 13746 components: - rot: 3.141592653589793 rad pos: -24.5,5.5 parent: 2 type: Transform - - uid: 13739 + - uid: 13747 components: - rot: 3.141592653589793 rad pos: -24.5,6.5 parent: 2 type: Transform - - uid: 13740 + - uid: 13748 components: - rot: 3.141592653589793 rad pos: -24.5,7.5 parent: 2 type: Transform - - uid: 13741 + - uid: 13749 components: - rot: 1.5707963267948966 rad pos: -23.5,8.5 parent: 2 type: Transform - - uid: 13742 + - uid: 13750 components: - rot: 1.5707963267948966 rad pos: -22.5,8.5 parent: 2 type: Transform - - uid: 13743 + - uid: 13751 components: - rot: 1.5707963267948966 rad pos: -21.5,8.5 parent: 2 type: Transform - - uid: 13744 + - uid: 13752 components: - rot: 3.141592653589793 rad pos: -20.5,9.5 parent: 2 type: Transform - - uid: 13745 + - uid: 13753 components: - rot: 3.141592653589793 rad pos: -20.5,10.5 parent: 2 type: Transform - - uid: 13746 + - uid: 13754 components: - rot: 3.141592653589793 rad pos: -20.5,11.5 parent: 2 type: Transform - - uid: 13747 + - uid: 13755 components: - rot: 3.141592653589793 rad pos: -20.5,12.5 parent: 2 type: Transform - - uid: 13748 + - uid: 13756 components: - rot: 3.141592653589793 rad pos: -20.5,13.5 parent: 2 type: Transform - - uid: 13749 + - uid: 13757 components: - rot: 3.141592653589793 rad pos: -20.5,14.5 parent: 2 type: Transform - - uid: 13750 + - uid: 13758 components: - rot: 3.141592653589793 rad pos: -20.5,15.5 parent: 2 type: Transform - - uid: 13751 + - uid: 13759 components: - rot: 3.141592653589793 rad pos: -20.5,16.5 parent: 2 type: Transform - - uid: 13752 + - uid: 13760 components: - rot: 3.141592653589793 rad pos: -20.5,17.5 parent: 2 type: Transform - - uid: 13753 + - uid: 13761 components: - rot: 3.141592653589793 rad pos: -20.5,18.5 parent: 2 type: Transform - - uid: 13754 + - uid: 13762 components: - rot: 3.141592653589793 rad pos: -20.5,19.5 parent: 2 type: Transform - - uid: 13755 + - uid: 13763 components: - rot: -1.5707963267948966 rad pos: -21.5,20.5 parent: 2 type: Transform - - uid: 13756 + - uid: 13764 components: - rot: -1.5707963267948966 rad pos: -22.5,20.5 parent: 2 type: Transform - - uid: 13757 + - uid: 13765 components: - rot: -1.5707963267948966 rad pos: -23.5,20.5 parent: 2 type: Transform - - uid: 13758 + - uid: 13766 components: - rot: -1.5707963267948966 rad pos: -24.5,20.5 parent: 2 type: Transform - - uid: 13759 + - uid: 13767 components: - rot: -1.5707963267948966 rad pos: -26.5,19.5 parent: 2 type: Transform - - uid: 13760 + - uid: 13768 components: - rot: -1.5707963267948966 rad pos: -27.5,19.5 parent: 2 type: Transform - - uid: 13761 + - uid: 13769 components: - rot: -1.5707963267948966 rad pos: -28.5,19.5 parent: 2 type: Transform - - uid: 13762 + - uid: 13770 components: - rot: -1.5707963267948966 rad pos: -29.5,19.5 parent: 2 type: Transform - - uid: 13763 + - uid: 13771 components: - rot: -1.5707963267948966 rad pos: -30.5,19.5 parent: 2 type: Transform - - uid: 13764 + - uid: 13772 components: - rot: -1.5707963267948966 rad pos: -31.5,19.5 parent: 2 type: Transform - - uid: 13765 + - uid: 13773 components: - rot: -1.5707963267948966 rad pos: -32.5,19.5 parent: 2 type: Transform - - uid: 13766 + - uid: 13774 components: - rot: -1.5707963267948966 rad pos: -33.5,19.5 parent: 2 type: Transform - - uid: 13767 + - uid: 13775 components: - rot: -1.5707963267948966 rad pos: -34.5,19.5 parent: 2 type: Transform - - uid: 13768 + - uid: 13776 components: - rot: -1.5707963267948966 rad pos: -36.5,19.5 parent: 2 type: Transform - - uid: 13769 + - uid: 13777 components: - rot: -1.5707963267948966 rad pos: -39.5,19.5 parent: 2 type: Transform - - uid: 13770 + - uid: 13778 components: - rot: -1.5707963267948966 rad pos: -40.5,19.5 parent: 2 type: Transform - - uid: 13771 + - uid: 13779 components: - rot: -1.5707963267948966 rad pos: -37.5,19.5 parent: 2 type: Transform - - uid: 13772 + - uid: 13780 components: - rot: 3.141592653589793 rad pos: -46.5,9.5 parent: 2 type: Transform - - uid: 13773 + - uid: 13781 components: - rot: 3.141592653589793 rad pos: -46.5,8.5 parent: 2 type: Transform - - uid: 13774 + - uid: 13782 components: - rot: 3.141592653589793 rad pos: -46.5,7.5 parent: 2 type: Transform - - uid: 13775 + - uid: 13783 components: - rot: 3.141592653589793 rad pos: -46.5,6.5 parent: 2 type: Transform - - uid: 13776 + - uid: 13784 components: - rot: 3.141592653589793 rad pos: -46.5,5.5 parent: 2 type: Transform - - uid: 13777 + - uid: 13785 components: - rot: 3.141592653589793 rad pos: -46.5,4.5 parent: 2 type: Transform - - uid: 13778 + - uid: 13786 components: - rot: 3.141592653589793 rad pos: -46.5,3.5 parent: 2 type: Transform - - uid: 13779 + - uid: 13787 components: - rot: 3.141592653589793 rad pos: -46.5,2.5 parent: 2 type: Transform - - uid: 13780 + - uid: 13788 components: - rot: 3.141592653589793 rad pos: -46.5,1.5 parent: 2 type: Transform - - uid: 13781 + - uid: 13789 components: - rot: 1.5707963267948966 rad pos: -45.5,0.5 parent: 2 type: Transform - - uid: 13782 + - uid: 13790 components: - rot: 1.5707963267948966 rad pos: -44.5,0.5 parent: 2 type: Transform - - uid: 13783 + - uid: 13791 components: - rot: 1.5707963267948966 rad pos: -43.5,0.5 parent: 2 type: Transform - - uid: 13784 + - uid: 13792 components: - rot: 1.5707963267948966 rad pos: -42.5,0.5 parent: 2 type: Transform - - uid: 13785 + - uid: 13793 components: - rot: 1.5707963267948966 rad pos: -41.5,0.5 parent: 2 type: Transform - - uid: 13786 + - uid: 13794 components: - rot: 1.5707963267948966 rad pos: -40.5,0.5 parent: 2 type: Transform - - uid: 13787 + - uid: 13795 components: - rot: 1.5707963267948966 rad pos: -39.5,0.5 parent: 2 type: Transform - - uid: 13788 + - uid: 13796 components: - rot: 1.5707963267948966 rad pos: -38.5,0.5 parent: 2 type: Transform - - uid: 13789 + - uid: 13797 components: - rot: 1.5707963267948966 rad pos: -37.5,0.5 parent: 2 type: Transform - - uid: 13790 + - uid: 13798 components: - rot: 1.5707963267948966 rad pos: -36.5,0.5 parent: 2 type: Transform - - uid: 13791 + - uid: 13799 components: - rot: 1.5707963267948966 rad pos: -35.5,0.5 parent: 2 type: Transform - - uid: 13792 + - uid: 13800 components: - rot: 1.5707963267948966 rad pos: -34.5,0.5 parent: 2 type: Transform - - uid: 13793 + - uid: 13801 components: - rot: 1.5707963267948966 rad pos: -33.5,0.5 parent: 2 type: Transform - - uid: 13794 + - uid: 13802 components: - rot: 1.5707963267948966 rad pos: -32.5,0.5 parent: 2 type: Transform - - uid: 13795 + - uid: 13803 components: - rot: 1.5707963267948966 rad pos: -31.5,0.5 parent: 2 type: Transform - - uid: 13796 + - uid: 13804 components: - rot: 1.5707963267948966 rad pos: -30.5,0.5 parent: 2 type: Transform - - uid: 13797 + - uid: 13805 components: - rot: 1.5707963267948966 rad pos: -29.5,0.5 parent: 2 type: Transform - - uid: 13798 + - uid: 13806 components: - rot: 1.5707963267948966 rad pos: -28.5,0.5 parent: 2 type: Transform - - uid: 13799 + - uid: 13807 components: - rot: 1.5707963267948966 rad pos: -27.5,0.5 parent: 2 type: Transform - - uid: 13800 + - uid: 13808 components: - pos: -26.5,-0.5 parent: 2 type: Transform - - uid: 13801 + - uid: 13809 components: - pos: -26.5,-1.5 parent: 2 type: Transform - - uid: 13802 + - uid: 13810 components: - pos: -26.5,-2.5 parent: 2 type: Transform - - uid: 13803 + - uid: 13811 components: - pos: -26.5,-3.5 parent: 2 type: Transform - - uid: 13804 + - uid: 13812 components: - pos: -26.5,-4.5 parent: 2 type: Transform - - uid: 13805 + - uid: 13813 components: - rot: 1.5707963267948966 rad pos: -25.5,-5.5 parent: 2 type: Transform - - uid: 13806 + - uid: 13814 components: - rot: 1.5707963267948966 rad pos: -24.5,-5.5 parent: 2 type: Transform - - uid: 13807 + - uid: 13815 components: - rot: 1.5707963267948966 rad pos: -23.5,-5.5 parent: 2 type: Transform - - uid: 13808 + - uid: 13816 components: - rot: 1.5707963267948966 rad pos: -22.5,-5.5 parent: 2 type: Transform - - uid: 13809 + - uid: 13817 components: - rot: 1.5707963267948966 rad pos: -21.5,-5.5 parent: 2 type: Transform - - uid: 13810 + - uid: 13818 components: - pos: -20.5,-6.5 parent: 2 type: Transform - - uid: 13811 + - uid: 13819 components: - pos: -20.5,-7.5 parent: 2 type: Transform - - uid: 13812 + - uid: 13820 components: - pos: -20.5,-8.5 parent: 2 type: Transform - - uid: 13813 + - uid: 13821 components: - pos: -20.5,-9.5 parent: 2 type: Transform - - uid: 13814 + - uid: 13822 components: - pos: -20.5,-10.5 parent: 2 type: Transform - - uid: 13815 + - uid: 13823 components: - pos: -20.5,-11.5 parent: 2 type: Transform - - uid: 13816 + - uid: 13824 components: - pos: -20.5,-12.5 parent: 2 type: Transform - - uid: 13817 + - uid: 13825 components: - pos: -20.5,-13.5 parent: 2 type: Transform - - uid: 13818 + - uid: 13826 components: - pos: -20.5,-14.5 parent: 2 type: Transform - - uid: 13819 + - uid: 13827 components: - pos: -20.5,-15.5 parent: 2 type: Transform - - uid: 13820 + - uid: 13828 components: - pos: -20.5,-16.5 parent: 2 type: Transform - - uid: 13821 + - uid: 13829 components: - pos: -20.5,-17.5 parent: 2 type: Transform - - uid: 13822 + - uid: 13830 components: - pos: -20.5,-18.5 parent: 2 type: Transform - - uid: 13823 + - uid: 13831 components: - pos: -20.5,-19.5 parent: 2 type: Transform - - uid: 13824 + - uid: 13832 components: - pos: -20.5,-20.5 parent: 2 type: Transform - - uid: 13825 + - uid: 13833 components: - pos: -20.5,-21.5 parent: 2 type: Transform - - uid: 13826 + - uid: 13834 components: - pos: -20.5,-22.5 parent: 2 type: Transform - - uid: 13827 + - uid: 13835 components: - pos: -20.5,-23.5 parent: 2 type: Transform - - uid: 13828 + - uid: 13836 components: - pos: -20.5,-24.5 parent: 2 type: Transform - - uid: 13829 + - uid: 13837 components: - rot: 1.5707963267948966 rad pos: -19.5,-25.5 parent: 2 type: Transform - - uid: 13830 + - uid: 13838 components: - rot: 1.5707963267948966 rad pos: -18.5,-25.5 parent: 2 type: Transform - - uid: 13831 + - uid: 13839 components: - rot: 1.5707963267948966 rad pos: -17.5,-25.5 parent: 2 type: Transform - - uid: 13832 + - uid: 13840 components: - rot: 1.5707963267948966 rad pos: -16.5,-25.5 parent: 2 type: Transform - - uid: 13833 + - uid: 13841 components: - rot: 1.5707963267948966 rad pos: -15.5,-25.5 parent: 2 type: Transform - - uid: 13834 + - uid: 13842 components: - rot: 1.5707963267948966 rad pos: -14.5,-25.5 parent: 2 type: Transform - - uid: 13835 + - uid: 13843 components: - rot: 1.5707963267948966 rad pos: -13.5,-25.5 parent: 2 type: Transform - - uid: 13836 + - uid: 13844 components: - rot: 1.5707963267948966 rad pos: -12.5,-25.5 parent: 2 type: Transform - - uid: 13837 + - uid: 13845 components: - rot: 1.5707963267948966 rad pos: -11.5,-25.5 parent: 2 type: Transform - - uid: 13838 + - uid: 13846 components: - rot: 1.5707963267948966 rad pos: -10.5,-25.5 parent: 2 type: Transform - - uid: 13839 + - uid: 13847 components: - rot: 1.5707963267948966 rad pos: -9.5,-25.5 parent: 2 type: Transform - - uid: 13840 + - uid: 13848 components: - rot: 1.5707963267948966 rad pos: -8.5,-25.5 parent: 2 type: Transform - - uid: 13841 + - uid: 13849 components: - rot: 1.5707963267948966 rad pos: -7.5,-25.5 parent: 2 type: Transform - - uid: 13842 + - uid: 13850 components: - rot: 1.5707963267948966 rad pos: -6.5,-25.5 parent: 2 type: Transform - - uid: 13843 + - uid: 13851 components: - rot: -1.5707963267948966 rad pos: -41.5,18.5 parent: 2 type: Transform - - uid: 13844 + - uid: 13852 components: - pos: 30.5,-74.5 parent: 2 type: Transform - - uid: 13845 + - uid: 13853 components: - rot: 1.5707963267948966 rad pos: 26.5,-73.5 parent: 2 type: Transform - - uid: 13846 + - uid: 13854 components: - rot: 1.5707963267948966 rad pos: 27.5,-73.5 parent: 2 type: Transform - - uid: 13847 + - uid: 13855 components: - rot: 1.5707963267948966 rad pos: 28.5,-73.5 parent: 2 type: Transform - - uid: 13848 + - uid: 13856 components: - rot: 1.5707963267948966 rad pos: 29.5,-73.5 parent: 2 type: Transform - - uid: 13849 + - uid: 13857 components: - pos: 30.5,-76.5 parent: 2 type: Transform - - uid: 13850 + - uid: 13858 components: - pos: 30.5,-75.5 parent: 2 type: Transform - - uid: 13851 + - uid: 13859 components: - pos: 30.5,-82.5 parent: 2 type: Transform - - uid: 13852 + - uid: 13860 components: - rot: 1.5707963267948966 rad pos: 31.5,-73.5 parent: 2 type: Transform - - uid: 13853 + - uid: 13861 components: - rot: 1.5707963267948966 rad pos: 32.5,-73.5 parent: 2 type: Transform - - uid: 13854 + - uid: 13862 components: - rot: 1.5707963267948966 rad pos: 33.5,-73.5 parent: 2 type: Transform - - uid: 13855 + - uid: 13863 components: - rot: 1.5707963267948966 rad pos: 34.5,-73.5 parent: 2 type: Transform - - uid: 13856 + - uid: 13864 components: - rot: 1.5707963267948966 rad pos: 35.5,-73.5 parent: 2 type: Transform - - uid: 13857 + - uid: 13865 components: - rot: 1.5707963267948966 rad pos: 36.5,-73.5 parent: 2 type: Transform - - uid: 13858 + - uid: 13866 components: - rot: 1.5707963267948966 rad pos: 37.5,-73.5 parent: 2 type: Transform - - uid: 13859 + - uid: 13867 components: - rot: 1.5707963267948966 rad pos: 38.5,-73.5 parent: 2 type: Transform - - uid: 13860 + - uid: 13868 components: - rot: -1.5707963267948966 rad pos: 10.5,2.5 @@ -107664,394 +107681,394 @@ entities: type: Transform - proto: DisposalRouterFlipped entities: - - uid: 13861 + - uid: 13869 components: - rot: -1.5707963267948966 rad pos: 18.5,-25.5 parent: 2 type: Transform - - uid: 13862 + - uid: 13870 components: - rot: 1.5707963267948966 rad pos: -13.5,-53.5 parent: 2 type: Transform - - uid: 13863 + - uid: 13871 components: - pos: -13.5,0.5 parent: 2 type: Transform - - uid: 13864 + - uid: 13872 components: - pos: -19.5,8.5 parent: 2 type: Transform - proto: DisposalTrunk entities: - - uid: 13865 + - uid: 13873 components: - rot: 1.5707963267948966 rad pos: -20.5,-57.5 parent: 2 type: Transform - - uid: 13866 + - uid: 13874 components: - pos: 52.5,3.5 parent: 2 type: Transform - - uid: 13867 + - uid: 13875 components: - pos: -9.5,5.5 parent: 2 type: Transform - - uid: 13868 + - uid: 13876 components: - rot: 3.141592653589793 rad pos: 4.5,-7.5 parent: 2 type: Transform - - uid: 13869 + - uid: 13877 components: - rot: -1.5707963267948966 rad pos: 12.5,-3.5 parent: 2 type: Transform - - uid: 13870 + - uid: 13878 components: - rot: 1.5707963267948966 rad pos: -6.5,-33.5 parent: 2 type: Transform - - uid: 13871 + - uid: 13879 components: - pos: 21.5,20.5 parent: 2 type: Transform - - uid: 13872 + - uid: 13880 components: - rot: 3.141592653589793 rad pos: 6.5,-2.5 parent: 2 type: Transform - - uid: 13873 + - uid: 13881 components: - pos: 22.5,-10.5 parent: 2 type: Transform - - uid: 13874 + - uid: 13882 components: - rot: 3.141592653589793 rad pos: 21.5,-37.5 parent: 2 type: Transform - - uid: 13875 + - uid: 13883 components: - rot: -1.5707963267948966 rad pos: 37.5,-18.5 parent: 2 type: Transform - - uid: 13876 + - uid: 13884 components: - rot: 3.141592653589793 rad pos: 1.5,-59.5 parent: 2 type: Transform - - uid: 13877 + - uid: 13885 components: - pos: 6.5,5.5 parent: 2 type: Transform - - uid: 13878 + - uid: 13886 components: - rot: -1.5707963267948966 rad pos: -17.5,-73.5 parent: 2 type: Transform - - uid: 13879 + - uid: 13887 components: - pos: 8.5,15.5 parent: 2 type: Transform - - uid: 13880 + - uid: 13888 components: - pos: 18.5,9.5 parent: 2 type: Transform - - uid: 13881 + - uid: 13889 components: - rot: -1.5707963267948966 rad pos: 27.5,-10.5 parent: 2 type: Transform - - uid: 13882 + - uid: 13890 components: - rot: 3.141592653589793 rad pos: -7.5,-2.5 parent: 2 type: Transform - - uid: 13883 + - uid: 13891 components: - pos: 25.5,-34.5 parent: 2 type: Transform - - uid: 13884 + - uid: 13892 components: - rot: -1.5707963267948966 rad pos: -21.5,-84.5 parent: 2 type: Transform - - uid: 13885 + - uid: 13893 components: - rot: 1.5707963267948966 rad pos: -25.5,-75.5 parent: 2 type: Transform - - uid: 13886 + - uid: 13894 components: - rot: -1.5707963267948966 rad pos: 14.5,5.5 parent: 2 type: Transform - - uid: 13887 + - uid: 13895 components: - rot: 1.5707963267948966 rad pos: -2.5,-45.5 parent: 2 type: Transform - - uid: 13888 + - uid: 13896 components: - rot: 3.141592653589793 rad pos: 18.5,-54.5 parent: 2 type: Transform - - uid: 13889 + - uid: 13897 components: - pos: -10.5,-23.5 parent: 2 type: Transform - - uid: 13890 + - uid: 13898 components: - rot: 1.5707963267948966 rad pos: 14.5,19.5 parent: 2 type: Transform - - uid: 13891 + - uid: 13899 components: - pos: 34.5,17.5 parent: 2 type: Transform - - uid: 13892 + - uid: 13900 components: - rot: 3.141592653589793 rad pos: -14.5,-10.5 parent: 2 type: Transform - - uid: 13893 + - uid: 13901 components: - rot: 3.141592653589793 rad pos: 54.5,-14.5 parent: 2 type: Transform - - uid: 13894 + - uid: 13902 components: - rot: -1.5707963267948966 rad pos: 51.5,-47.5 parent: 2 type: Transform - - uid: 13895 + - uid: 13903 components: - pos: 46.5,-35.5 parent: 2 type: Transform - - uid: 13896 + - uid: 13904 components: - rot: 3.141592653589793 rad pos: 67.5,-49.5 parent: 2 type: Transform - - uid: 13897 + - uid: 13905 components: - rot: 1.5707963267948966 rad pos: 48.5,-50.5 parent: 2 type: Transform - - uid: 13898 + - uid: 13906 components: - rot: 1.5707963267948966 rad pos: 48.5,-55.5 parent: 2 type: Transform - - uid: 13899 + - uid: 13907 components: - rot: 3.141592653589793 rad pos: 49.5,-60.5 parent: 2 type: Transform - - uid: 13900 + - uid: 13908 components: - rot: 1.5707963267948966 rad pos: -27.5,6.5 parent: 2 type: Transform - - uid: 13901 + - uid: 13909 components: - rot: 3.141592653589793 rad pos: 29.5,-62.5 parent: 2 type: Transform - - uid: 13902 + - uid: 13910 components: - rot: -1.5707963267948966 rad pos: -22.5,-15.5 parent: 2 type: Transform - - uid: 13903 + - uid: 13911 components: - rot: 3.141592653589793 rad pos: 24.5,-74.5 parent: 2 type: Transform - - uid: 13904 + - uid: 13912 components: - pos: -38.5,-4.5 parent: 2 type: Transform - - uid: 13905 + - uid: 13913 components: - rot: -1.5707963267948966 rad pos: 0.5,-75.5 parent: 2 type: Transform - - uid: 13906 + - uid: 13914 components: - rot: 3.141592653589793 rad pos: -36.5,-80.5 parent: 2 type: Transform - - uid: 13907 + - uid: 13915 components: - pos: -22.5,25.5 parent: 2 type: Transform - - uid: 13908 + - uid: 13916 components: - pos: -42.5,27.5 parent: 2 type: Transform - - uid: 13909 + - uid: 13917 components: - rot: -1.5707963267948966 rad pos: -43.5,5.5 parent: 2 type: Transform - - uid: 13910 + - uid: 13918 components: - rot: 1.5707963267948966 rad pos: 27.5,-86.5 parent: 2 type: Transform - - uid: 13911 + - uid: 13919 components: - pos: 20.5,-23.5 parent: 2 type: Transform - - uid: 13912 + - uid: 13920 components: - rot: 1.5707963267948966 rad pos: -9.5,-66.5 parent: 2 type: Transform - - uid: 13913 + - uid: 13921 components: - rot: 3.141592653589793 rad pos: -3.5,-67.5 parent: 2 type: Transform - - uid: 13914 + - uid: 13922 components: - rot: 3.141592653589793 rad pos: 2.5,-63.5 parent: 2 type: Transform - - uid: 13915 + - uid: 13923 components: - rot: 1.5707963267948966 rad pos: -16.5,-67.5 parent: 2 type: Transform - - uid: 13916 + - uid: 13924 components: - pos: -12.5,8.5 parent: 2 type: Transform - - uid: 13917 + - uid: 13925 components: - pos: 20.5,-39.5 parent: 2 type: Transform - - uid: 13918 + - uid: 13926 components: - rot: 1.5707963267948966 rad pos: -17.5,37.5 parent: 2 type: Transform - - uid: 13919 + - uid: 13927 components: - rot: 3.141592653589793 rad pos: -4.5,43.5 parent: 2 type: Transform - - uid: 13920 + - uid: 13928 components: - rot: 3.141592653589793 rad pos: -13.5,49.5 parent: 2 type: Transform - - uid: 13921 + - uid: 13929 components: - pos: -37.5,-93.5 parent: 2 type: Transform - - uid: 13922 + - uid: 13930 components: - pos: 75.5,-32.5 parent: 2 type: Transform - - uid: 13923 + - uid: 13931 components: - rot: 1.5707963267948966 rad pos: -54.5,-64.5 parent: 2 type: Transform - - uid: 13924 + - uid: 13932 components: - rot: -1.5707963267948966 rad pos: -52.5,-64.5 parent: 2 type: Transform - - uid: 13925 + - uid: 13933 components: - pos: -10.5,-12.5 parent: 2 type: Transform - - uid: 13926 + - uid: 13934 components: - pos: -12.5,-12.5 parent: 2 type: Transform - - uid: 13927 + - uid: 13935 components: - rot: 3.141592653589793 rad pos: -42.5,13.5 parent: 2 type: Transform - - uid: 13928 + - uid: 13936 components: - rot: -1.5707963267948966 rad pos: -40.5,18.5 parent: 2 type: Transform - - uid: 13929 + - uid: 13937 components: - rot: 3.141592653589793 rad pos: 6.5,-45.5 @@ -108059,547 +108076,547 @@ entities: type: Transform - proto: DisposalUnit entities: - - uid: 13930 + - uid: 13938 components: - pos: 25.5,-34.5 parent: 2 type: Transform - - uid: 13931 + - uid: 13939 components: - pos: 6.5,-45.5 parent: 2 type: Transform - - uid: 13932 + - uid: 13940 components: - pos: -6.5,-33.5 parent: 2 type: Transform - - uid: 13933 + - uid: 13941 components: - pos: 6.5,5.5 parent: 2 type: Transform - - uid: 13934 + - uid: 13942 components: - pos: 4.5,-7.5 parent: 2 type: Transform - - uid: 13935 + - uid: 13943 components: - pos: 22.5,-10.5 parent: 2 type: Transform - - uid: 13936 + - uid: 13944 components: - pos: 27.5,-10.5 parent: 2 type: Transform - - uid: 13937 + - uid: 13945 components: - pos: 21.5,20.5 parent: 2 type: Transform - - uid: 13938 + - uid: 13946 components: - pos: 37.5,-18.5 parent: 2 type: Transform - - uid: 13939 + - uid: 13947 components: - pos: 1.5,-59.5 parent: 2 type: Transform - - uid: 13940 + - uid: 13948 components: - pos: -2.5,-45.5 parent: 2 type: Transform - - uid: 13941 + - uid: 13949 components: - pos: -10.5,-23.5 parent: 2 type: Transform - - uid: 13942 + - uid: 13950 components: - pos: -20.5,-57.5 parent: 2 type: Transform - - uid: 13943 + - uid: 13951 components: - pos: -17.5,-73.5 parent: 2 type: Transform - - uid: 13944 + - uid: 13952 components: - pos: 12.5,-3.5 parent: 2 type: Transform - - uid: 13945 + - uid: 13953 components: - pos: -7.5,-2.5 parent: 2 type: Transform - - uid: 13946 + - uid: 13954 components: - pos: -9.5,5.5 parent: 2 type: Transform - - uid: 13947 + - uid: 13955 components: - pos: -21.5,-84.5 parent: 2 type: Transform - - uid: 13948 + - uid: 13956 components: - pos: 8.5,15.5 parent: 2 type: Transform - - uid: 13949 + - uid: 13957 components: - pos: 6.5,-2.5 parent: 2 type: Transform - - uid: 13950 + - uid: 13958 components: - pos: 20.5,-23.5 parent: 2 type: Transform - - uid: 13951 + - uid: 13959 components: - pos: -25.5,-75.5 parent: 2 type: Transform - - uid: 13952 + - uid: 13960 components: - pos: 18.5,9.5 parent: 2 type: Transform - - uid: 13953 + - uid: 13961 components: - pos: 14.5,5.5 parent: 2 type: Transform - - uid: 13954 + - uid: 13962 components: - pos: -10.5,-12.5 parent: 2 type: Transform - type: Timer - - uid: 13955 + - uid: 13963 components: - name: cargo type: MetaData - pos: -12.5,-12.5 parent: 2 type: Transform - - uid: 13956 + - uid: 13964 components: - pos: 14.5,19.5 parent: 2 type: Transform - - uid: 13957 + - uid: 13965 components: - pos: 34.5,17.5 parent: 2 type: Transform - - uid: 13958 + - uid: 13966 components: - pos: 52.5,3.5 parent: 2 type: Transform - - uid: 13959 + - uid: 13967 components: - pos: 54.5,-14.5 parent: 2 type: Transform - - uid: 13960 + - uid: 13968 components: - pos: 46.5,-35.5 parent: 2 type: Transform - - uid: 13961 + - uid: 13969 components: - pos: 51.5,-47.5 parent: 2 type: Transform - - uid: 13962 + - uid: 13970 components: - pos: 67.5,-49.5 parent: 2 type: Transform - - uid: 13963 + - uid: 13971 components: - pos: 49.5,-60.5 parent: 2 type: Transform - - uid: 13964 + - uid: 13972 components: - pos: 48.5,-55.5 parent: 2 type: Transform - - uid: 13965 + - uid: 13973 components: - pos: 48.5,-50.5 parent: 2 type: Transform - - uid: 13966 + - uid: 13974 components: - pos: -22.5,-15.5 parent: 2 type: Transform - - uid: 13967 + - uid: 13975 components: - pos: 29.5,-62.5 parent: 2 type: Transform - - uid: 13968 + - uid: 13976 components: - pos: 24.5,-74.5 parent: 2 type: Transform - - uid: 13969 + - uid: 13977 components: - pos: 27.5,-86.5 parent: 2 type: Transform - - uid: 13970 + - uid: 13978 components: - pos: -27.5,6.5 parent: 2 type: Transform - - uid: 13971 + - uid: 13979 components: - pos: -38.5,-4.5 parent: 2 type: Transform - - uid: 13972 + - uid: 13980 components: - name: suspicious disposal unit type: MetaData - pos: 0.5,-75.5 parent: 2 type: Transform - - uid: 13973 + - uid: 13981 components: - pos: -22.5,25.5 parent: 2 type: Transform - - uid: 13974 + - uid: 13982 components: - pos: -42.5,27.5 parent: 2 type: Transform - - uid: 13975 + - uid: 13983 components: - pos: -43.5,5.5 parent: 2 type: Transform - - uid: 13976 + - uid: 13984 components: - pos: 21.5,-37.5 parent: 2 type: Transform - - uid: 13977 + - uid: 13985 components: - pos: -9.5,-66.5 parent: 2 type: Transform - - uid: 13978 + - uid: 13986 components: - pos: -16.5,-67.5 parent: 2 type: Transform - - uid: 13979 + - uid: 13987 components: - pos: -3.5,-67.5 parent: 2 type: Transform - - uid: 13980 + - uid: 13988 components: - pos: 2.5,-63.5 parent: 2 type: Transform - - uid: 13981 + - uid: 13989 components: - pos: -12.5,8.5 parent: 2 type: Transform - - uid: 13982 + - uid: 13990 components: - pos: 20.5,-39.5 parent: 2 type: Transform - - uid: 13983 + - uid: 13991 components: - pos: -17.5,37.5 parent: 2 type: Transform - - uid: 13984 + - uid: 13992 components: - pos: -4.5,43.5 parent: 2 type: Transform - - uid: 13985 + - uid: 13993 components: - pos: -13.5,49.5 parent: 2 type: Transform - - uid: 13986 + - uid: 13994 components: - pos: -40.5,18.5 parent: 2 type: Transform - - uid: 13987 + - uid: 13995 components: - pos: 75.5,-32.5 parent: 2 type: Transform - - uid: 13988 + - uid: 13996 components: - pos: -54.5,-64.5 parent: 2 type: Transform - - uid: 13989 + - uid: 13997 components: - pos: -52.5,-64.5 parent: 2 type: Transform - - uid: 13990 + - uid: 13998 components: - pos: -36.5,-80.5 parent: 2 type: Transform - proto: DisposalYJunction entities: - - uid: 13991 + - uid: 13999 components: - pos: 25.5,17.5 parent: 2 type: Transform - - uid: 13992 + - uid: 14000 components: - rot: 3.141592653589793 rad pos: -3.5,-27.5 parent: 2 type: Transform - - uid: 13993 + - uid: 14001 components: - rot: 3.141592653589793 rad pos: 16.5,-43.5 parent: 2 type: Transform - - uid: 13994 + - uid: 14002 components: - rot: -1.5707963267948966 rad pos: -4.5,-9.5 parent: 2 type: Transform - - uid: 13995 + - uid: 14003 components: - pos: -4.5,0.5 parent: 2 type: Transform - - uid: 13996 + - uid: 14004 components: - rot: -1.5707963267948966 rad pos: 16.5,-27.5 parent: 2 type: Transform - - uid: 13997 + - uid: 14005 components: - rot: 3.141592653589793 rad pos: -0.5,-53.5 parent: 2 type: Transform - - uid: 13998 + - uid: 14006 components: - rot: 3.141592653589793 rad pos: -4.5,-43.5 parent: 2 type: Transform - - uid: 13999 + - uid: 14007 components: - rot: 3.141592653589793 rad pos: -19.5,-73.5 parent: 2 type: Transform - - uid: 14000 + - uid: 14008 components: - rot: -1.5707963267948966 rad pos: 52.5,1.5 parent: 2 type: Transform - - uid: 14001 + - uid: 14009 components: - rot: 1.5707963267948966 rad pos: -19.5,-27.5 parent: 2 type: Transform - - uid: 14002 + - uid: 14010 components: - pos: -19.5,-6.5 parent: 2 type: Transform - - uid: 14003 + - uid: 14011 components: - pos: -25.5,6.5 parent: 2 type: Transform - - uid: 14004 + - uid: 14012 components: - rot: 3.141592653589793 rad pos: -5.5,-61.5 parent: 2 type: Transform - - uid: 14005 + - uid: 14013 components: - pos: -15.5,44.5 parent: 2 type: Transform - proto: DogBed entities: - - uid: 14006 + - uid: 14014 components: - pos: 21.5,-35.5 parent: 2 type: Transform - - uid: 14007 + - uid: 14015 components: - name: fox bed type: MetaData - pos: 32.5,-28.5 parent: 2 type: Transform - - uid: 14008 + - uid: 14016 components: - name: racoon bed type: MetaData - pos: -33.5,31.5 parent: 2 type: Transform - - uid: 14009 + - uid: 14017 components: - name: bear bed type: MetaData - pos: 65.5,49.5 parent: 2 type: Transform - - uid: 14010 + - uid: 14018 components: - pos: 26.5,23.5 parent: 2 type: Transform - proto: DonkpocketBoxSpawner entities: - - uid: 14011 + - uid: 14019 components: - pos: -9.5,41.5 parent: 2 type: Transform - - uid: 14012 + - uid: 14020 components: - pos: -10.5,41.5 parent: 2 type: Transform - proto: DoorElectronics entities: - - uid: 14013 + - uid: 14021 components: - pos: -9.437697,39.446274 parent: 2 type: Transform - - uid: 14014 + - uid: 14022 components: - pos: -9.640822,39.74315 parent: 2 type: Transform - - uid: 14015 + - uid: 14023 components: - pos: -43.560223,-27.412916 parent: 2 type: Transform - proto: DoubleEmergencyOxygenTankFilled entities: - - uid: 14016 + - uid: 14024 components: - pos: -36.45104,-33.42174 parent: 2 type: Transform - proto: Dresser entities: - - uid: 14017 + - uid: 14025 components: - pos: 22.5,14.5 parent: 2 type: Transform - - uid: 14018 + - uid: 14026 components: - pos: 32.5,-27.5 parent: 2 type: Transform - - uid: 14019 + - uid: 14027 components: - pos: -26.5,46.5 parent: 2 type: Transform - - uid: 14020 + - uid: 14028 components: - pos: 7.5,22.5 parent: 2 type: Transform - - uid: 14021 + - uid: 14029 components: - pos: 23.5,-34.5 parent: 2 type: Transform - - uid: 14022 + - uid: 14030 components: - pos: -42.5,11.5 parent: 2 type: Transform - - uid: 14023 + - uid: 14031 components: - pos: -51.5,15.5 parent: 2 type: Transform - - uid: 14024 + - uid: 14032 components: - pos: -52.5,6.5 parent: 2 type: Transform - - uid: 14025 + - uid: 14033 components: - pos: -31.5,12.5 parent: 2 type: Transform - - uid: 14026 + - uid: 14034 components: - pos: -24.5,31.5 parent: 2 type: Transform - - uid: 14027 + - uid: 14035 components: - pos: 54.5,32.5 parent: 2 type: Transform - - uid: 14028 + - uid: 14036 components: - pos: -19.5,35.5 parent: 2 type: Transform - - uid: 14029 + - uid: 14037 components: - pos: -10.5,32.5 parent: 2 type: Transform - - uid: 14030 + - uid: 14038 components: - pos: -20.5,39.5 parent: 2 type: Transform - proto: Drill entities: - - uid: 14031 + - uid: 14039 components: - rot: -1.5707963267948966 rad pos: -7.0942874,-100.40229 @@ -108607,282 +108624,282 @@ entities: type: Transform - proto: DrinkAntifreeze entities: - - uid: 14032 + - uid: 14040 components: - pos: -25.524792,55.598667 parent: 2 type: Transform - proto: DrinkBeer entities: - - uid: 14033 + - uid: 14041 components: - pos: 16.20447,-64.18169 parent: 2 type: Transform - - uid: 14034 + - uid: 14042 components: - pos: 16.48572,-64.21294 parent: 2 type: Transform - - uid: 14035 + - uid: 14043 components: - pos: -56.96358,-25.301325 parent: 2 type: Transform - proto: DrinkBlackRussianGlass entities: - - uid: 14036 + - uid: 14044 components: - pos: 65.5063,-0.9249393 parent: 2 type: Transform - proto: DrinkBloodyMaryGlass entities: - - uid: 14037 + - uid: 14045 components: - pos: 61.61879,-53.35289 parent: 2 type: Transform - proto: DrinkBottleOfNothingFull entities: - - uid: 14038 + - uid: 14046 components: - pos: -28.300186,46.612503 parent: 2 type: Transform - proto: DrinkBottleWhiskey entities: - - uid: 14039 + - uid: 14047 components: - pos: -10.628431,-32.17821 parent: 2 type: Transform - proto: DrinkBottleWine entities: - - uid: 14040 + - uid: 14048 components: - pos: -37.38547,16.742819 parent: 2 type: Transform - proto: DrinkCarrotJuice entities: - - uid: 14041 + - uid: 14049 components: - pos: -20.541529,49.622677 parent: 2 type: Transform - proto: DrinkDetFlask entities: - - uid: 14042 + - uid: 14050 components: - pos: 20.044777,-12.206265 parent: 2 type: Transform - proto: DrinkDoctorsDelightGlass entities: - - uid: 14043 + - uid: 14051 components: - pos: -18.294592,-56.251144 parent: 2 type: Transform - proto: DrinkGlass entities: - - uid: 14044 + - uid: 14052 components: - pos: 0.54256004,-5.358738 parent: 2 type: Transform - - uid: 14045 + - uid: 14053 components: - pos: 0.54256004,-5.358738 parent: 2 type: Transform - - uid: 14046 + - uid: 14054 components: - pos: 37.335964,-5.423753 parent: 2 type: Transform - - uid: 14047 + - uid: 14055 components: - pos: 42.510113,-48.4107 parent: 2 type: Transform - - uid: 14048 + - uid: 14056 components: - pos: 42.510113,-48.4107 parent: 2 type: Transform - - uid: 14049 + - uid: 14057 components: - pos: 0.54256004,-5.358738 parent: 2 type: Transform - - uid: 14050 + - uid: 14058 components: - pos: -29.533712,-69.34898 parent: 2 type: Transform - - uid: 14051 + - uid: 14059 components: - pos: 0.54256004,-5.358738 parent: 2 type: Transform - - uid: 14052 + - uid: 14060 components: - pos: 0.54256004,-5.358738 parent: 2 type: Transform - - uid: 14053 + - uid: 14061 components: - pos: 0.54256004,-5.358738 parent: 2 type: Transform - - uid: 14054 + - uid: 14062 components: - pos: 0.54256004,-5.358738 parent: 2 type: Transform - - uid: 14055 + - uid: 14063 components: - pos: 0.54256004,-5.358738 parent: 2 type: Transform - - uid: 14056 + - uid: 14064 components: - pos: 0.54256004,-5.358738 parent: 2 type: Transform - proto: DrinkGoldenCup entities: - - uid: 14057 + - uid: 14065 components: - pos: 48.422813,-25.09548 parent: 2 type: Transform - proto: DrinkGoldschlagerBottleFull entities: - - uid: 14058 + - uid: 14066 components: - pos: 47.41234,-30.196692 parent: 2 type: Transform - proto: DrinkGrapeJuice entities: - - uid: 14059 + - uid: 14067 components: - pos: -21.385279,49.66955 parent: 2 type: Transform - proto: DrinkGrogGlass entities: - - uid: 14060 + - uid: 14068 components: - pos: -42.795,-78.417305 parent: 2 type: Transform - - uid: 14061 + - uid: 14069 components: - pos: -40.300255,-77.37566 parent: 2 type: Transform - - uid: 14062 + - uid: 14070 components: - pos: -41.117695,-78.40168 parent: 2 type: Transform - proto: DrinkHippiesDelightGlass entities: - - uid: 14063 + - uid: 14071 components: - pos: -22.44165,-100.292145 parent: 2 type: Transform - proto: DrinkHotCoffee entities: - - uid: 14064 + - uid: 14072 components: - pos: -26.93719,14.6217785 parent: 2 type: Transform - proto: DrinkIceCreamGlass entities: - - uid: 14065 + - uid: 14073 components: - pos: 0.5,-2.5 parent: 2 type: Transform - proto: DrinkIrishCoffeeGlass entities: - - uid: 14066 + - uid: 14074 components: - pos: 31.04821,-61.292328 parent: 2 type: Transform - proto: DrinkLean entities: - - uid: 14067 + - uid: 14075 components: - pos: -52.43649,-16.426428 parent: 2 type: Transform - proto: DrinkLongIslandIcedTeaGlass entities: - - uid: 14068 + - uid: 14076 components: - pos: 23.326912,-28.451742 parent: 2 type: Transform - proto: DrinkMilkCarton entities: - - uid: 14069 + - uid: 14077 components: - pos: 4.089875,7.6089945 parent: 2 type: Transform - - uid: 14070 + - uid: 14078 components: - pos: 4.246125,7.3902445 parent: 2 type: Transform - proto: DrinkMugBlack entities: - - uid: 14071 + - uid: 14079 components: - pos: 53.58285,-67.465065 parent: 2 type: Transform - proto: DrinkMugOne entities: - - uid: 14072 + - uid: 14080 components: - pos: 47.469124,50.58469 parent: 2 type: Transform - - uid: 14073 + - uid: 14081 components: - pos: -31.248182,29.795187 parent: 2 type: Transform - proto: DrinkShaker entities: - - uid: 14074 + - uid: 14082 components: - pos: 18.551043,13.384511 parent: 2 type: Transform - - uid: 14075 + - uid: 14083 components: - pos: 18.316668,13.478261 parent: 2 type: Transform - - uid: 14076 + - uid: 14084 components: - pos: 18.582293,13.603261 parent: 2 type: Transform - proto: DrinkSpaceMountainWindGlass entities: - - uid: 14077 + - uid: 14085 components: - pos: 38.7514,49.607887 parent: 2 @@ -108893,7 +108910,7 @@ entities: type: EmitSoundOnCollide - proto: DrinkSpaceUpGlass entities: - - uid: 14078 + - uid: 14086 components: - pos: 38.377674,49.717262 parent: 2 @@ -108904,128 +108921,128 @@ entities: type: EmitSoundOnCollide - proto: DrinkToxinsSpecialGlass entities: - - uid: 14079 + - uid: 14087 components: - pos: -9.4857435,-36.467285 parent: 2 type: Transform - proto: DrinkVodkaTonicGlass entities: - - uid: 14080 + - uid: 14088 components: - pos: 43.581966,-2.7850537 parent: 2 type: Transform - proto: DrinkWaterBottleFull entities: - - uid: 14081 + - uid: 14089 components: - pos: -14.530239,-37.26908 parent: 2 type: Transform - proto: DrinkWaterCup entities: - - uid: 14082 + - uid: 14090 components: - pos: -9.380106,-35.52635 parent: 2 type: Transform - - uid: 14083 + - uid: 14091 components: - pos: -9.380106,-35.52635 parent: 2 type: Transform - - uid: 14084 + - uid: 14092 components: - pos: -9.380106,-35.52635 parent: 2 type: Transform - - uid: 14085 + - uid: 14093 components: - pos: -9.380106,-35.52635 parent: 2 type: Transform - - uid: 14086 + - uid: 14094 components: - pos: -9.380106,-35.52635 parent: 2 type: Transform - - uid: 14087 + - uid: 14095 components: - pos: -9.380106,-35.52635 parent: 2 type: Transform - proto: DrinkWhiskeyGlass entities: - - uid: 14088 + - uid: 14096 components: - pos: -29.929981,15.531138 parent: 2 type: Transform - - uid: 14089 + - uid: 14097 components: - pos: 15.324228,-79.460625 parent: 2 type: Transform - proto: DrinkWhiskeySodaGlass entities: - - uid: 14090 + - uid: 14098 components: - pos: 7.0699005,20.752857 parent: 2 type: Transform - proto: Dropper entities: - - uid: 14091 + - uid: 14099 components: - pos: 7.590159,-45.315723 parent: 2 type: Transform - - uid: 14092 + - uid: 14100 components: - pos: 7.480784,-45.628223 parent: 2 type: Transform - - uid: 14093 + - uid: 14101 components: - pos: 7.449534,-45.440723 parent: 2 type: Transform - proto: EggplantSeeds entities: - - uid: 14094 + - uid: 14102 components: - pos: 11.993146,54.637722 parent: 2 type: Transform - - uid: 14095 + - uid: 14103 components: - pos: 11.993146,54.637722 parent: 2 type: Transform - - uid: 14096 + - uid: 14104 components: - pos: 11.993146,54.637722 parent: 2 type: Transform - - uid: 14097 + - uid: 14105 components: - pos: 11.993146,54.637722 parent: 2 type: Transform - - uid: 14098 + - uid: 14106 components: - pos: 11.993146,54.637722 parent: 2 type: Transform - - uid: 14099 + - uid: 14107 components: - pos: 11.993146,54.637722 parent: 2 type: Transform - proto: EmergencyLight entities: - - uid: 14100 + - uid: 14108 components: - rot: -1.5707963267948966 rad pos: -44.5,7.5 @@ -109036,7 +109053,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14101 + - uid: 14109 components: - rot: 3.141592653589793 rad pos: 22.5,-25.5 @@ -109047,7 +109064,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14102 + - uid: 14110 components: - rot: 3.141592653589793 rad pos: 29.5,-25.5 @@ -109058,7 +109075,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14103 + - uid: 14111 components: - pos: 30.5,-41.5 parent: 2 @@ -109068,7 +109085,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14104 + - uid: 14112 components: - pos: -12.5,-52.5 parent: 2 @@ -109078,7 +109095,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14105 + - uid: 14113 components: - rot: 1.5707963267948966 rad pos: -25.5,-76.5 @@ -109089,7 +109106,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14106 + - uid: 14114 components: - rot: -1.5707963267948966 rad pos: 26.5,-50.5 @@ -109100,7 +109117,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14107 + - uid: 14115 components: - pos: 29.5,-4.5 parent: 2 @@ -109110,7 +109127,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14108 + - uid: 14116 components: - rot: 1.5707963267948966 rad pos: 40.5,6.5 @@ -109121,7 +109138,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14109 + - uid: 14117 components: - pos: 54.5,-5.5 parent: 2 @@ -109131,7 +109148,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14110 + - uid: 14118 components: - rot: 3.141592653589793 rad pos: -23.5,-62.5 @@ -109142,7 +109159,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14111 + - uid: 14119 components: - rot: 1.5707963267948966 rad pos: -13.5,52.5 @@ -109153,7 +109170,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14112 + - uid: 14120 components: - pos: -5.5,59.5 parent: 2 @@ -109163,7 +109180,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14113 + - uid: 14121 components: - pos: -10.5,-59.5 parent: 2 @@ -109173,7 +109190,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14114 + - uid: 14122 components: - pos: -61.5,-23.5 parent: 2 @@ -109183,7 +109200,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14115 + - uid: 14123 components: - rot: -1.5707963267948966 rad pos: -52.5,-15.5 @@ -109194,7 +109211,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14116 + - uid: 14124 components: - pos: 15.5,-52.5 parent: 2 @@ -109204,7 +109221,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14117 + - uid: 14125 components: - rot: 1.5707963267948966 rad pos: 17.5,-4.5 @@ -109215,7 +109232,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14118 + - uid: 14126 components: - rot: -1.5707963267948966 rad pos: -18.5,28.5 @@ -109226,7 +109243,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14119 + - uid: 14127 components: - rot: 1.5707963267948966 rad pos: -16.5,36.5 @@ -109237,7 +109254,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14120 + - uid: 14128 components: - rot: -1.5707963267948966 rad pos: 65.5,-12.5 @@ -109248,7 +109265,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14121 + - uid: 14129 components: - pos: -2.5,46.5 parent: 2 @@ -109258,7 +109275,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14122 + - uid: 14130 components: - rot: 1.5707963267948966 rad pos: -22.5,54.5 @@ -109269,7 +109286,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14123 + - uid: 14131 components: - pos: -5.5,3.5 parent: 2 @@ -109279,7 +109296,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14124 + - uid: 14132 components: - pos: 8.5,3.5 parent: 2 @@ -109289,7 +109306,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14125 + - uid: 14133 components: - rot: 1.5707963267948966 rad pos: -0.5,8.5 @@ -109300,7 +109317,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14126 + - uid: 14134 components: - pos: 14.5,14.5 parent: 2 @@ -109310,7 +109327,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14127 + - uid: 14135 components: - pos: -20.5,-4.5 parent: 2 @@ -109320,7 +109337,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14128 + - uid: 14136 components: - pos: -16.5,4.5 parent: 2 @@ -109330,7 +109347,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14129 + - uid: 14137 components: - rot: -1.5707963267948966 rad pos: -18.5,-12.5 @@ -109341,7 +109358,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14130 + - uid: 14138 components: - pos: 30.5,8.5 parent: 2 @@ -109351,7 +109368,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14131 + - uid: 14139 components: - pos: 23.5,18.5 parent: 2 @@ -109361,7 +109378,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14132 + - uid: 14140 components: - pos: 10.5,-41.5 parent: 2 @@ -109371,7 +109388,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14133 + - uid: 14141 components: - pos: 38.5,-41.5 parent: 2 @@ -109381,7 +109398,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14134 + - uid: 14142 components: - pos: -14.5,-41.5 parent: 2 @@ -109391,7 +109408,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14135 + - uid: 14143 components: - rot: -1.5707963267948966 rad pos: -34.5,-42.5 @@ -109402,7 +109419,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14136 + - uid: 14144 components: - rot: 1.5707963267948966 rad pos: -35.5,-52.5 @@ -109413,7 +109430,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14137 + - uid: 14145 components: - rot: -1.5707963267948966 rad pos: -23.5,-16.5 @@ -109424,7 +109441,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14138 + - uid: 14146 components: - pos: -12.5,-25.5 parent: 2 @@ -109434,7 +109451,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14139 + - uid: 14147 components: - rot: -1.5707963267948966 rad pos: -31.5,-14.5 @@ -109445,7 +109462,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14140 + - uid: 14148 components: - rot: 3.141592653589793 rad pos: -45.5,-6.5 @@ -109456,7 +109473,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14141 + - uid: 14149 components: - pos: -17.5,-69.5 parent: 2 @@ -109466,7 +109483,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14142 + - uid: 14150 components: - rot: 3.141592653589793 rad pos: 30.5,-18.5 @@ -109477,7 +109494,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14143 + - uid: 14151 components: - rot: 3.141592653589793 rad pos: 20.5,-18.5 @@ -109488,7 +109505,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14144 + - uid: 14152 components: - rot: -1.5707963267948966 rad pos: 18.5,4.5 @@ -109499,7 +109516,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14145 + - uid: 14153 components: - pos: 37.5,-25.5 parent: 2 @@ -109509,7 +109526,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14146 + - uid: 14154 components: - rot: -1.5707963267948966 rad pos: 42.5,-26.5 @@ -109520,7 +109537,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14147 + - uid: 14155 components: - rot: 3.141592653589793 rad pos: 40.5,0.5 @@ -109531,7 +109548,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14148 + - uid: 14156 components: - rot: -1.5707963267948966 rad pos: 54.5,1.5 @@ -109542,7 +109559,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14149 + - uid: 14157 components: - rot: -1.5707963267948966 rad pos: 65.5,-35.5 @@ -109553,7 +109570,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14150 + - uid: 14158 components: - pos: 60.5,-51.5 parent: 2 @@ -109563,7 +109580,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14151 + - uid: 14159 components: - pos: 53.5,-51.5 parent: 2 @@ -109573,7 +109590,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14152 + - uid: 14160 components: - rot: -1.5707963267948966 rad pos: 46.5,-47.5 @@ -109584,7 +109601,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14153 + - uid: 14161 components: - rot: -1.5707963267948966 rad pos: 46.5,-38.5 @@ -109595,7 +109612,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14154 + - uid: 14162 components: - rot: 1.5707963267948966 rad pos: 25.5,-35.5 @@ -109606,7 +109623,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14155 + - uid: 14163 components: - rot: -1.5707963267948966 rad pos: 16.5,-27.5 @@ -109617,7 +109634,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14156 + - uid: 14164 components: - rot: 1.5707963267948966 rad pos: 34.5,-27.5 @@ -109628,7 +109645,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14157 + - uid: 14165 components: - pos: 4.5,-25.5 parent: 2 @@ -109638,7 +109655,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14158 + - uid: 14166 components: - pos: -2.5,-25.5 parent: 2 @@ -109648,7 +109665,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14159 + - uid: 14167 components: - pos: 5.5,-41.5 parent: 2 @@ -109658,7 +109675,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14160 + - uid: 14168 components: - rot: -1.5707963267948966 rad pos: -18.5,-35.5 @@ -109669,7 +109686,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14161 + - uid: 14169 components: - rot: 3.141592653589793 rad pos: -30.5,-35.5 @@ -109680,7 +109697,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14162 + - uid: 14170 components: - rot: 1.5707963267948966 rad pos: -55.5,-10.5 @@ -109691,7 +109708,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14163 + - uid: 14171 components: - rot: -1.5707963267948966 rad pos: -64.5,-26.5 @@ -109702,7 +109719,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14164 + - uid: 14172 components: - pos: -71.5,-23.5 parent: 2 @@ -109712,7 +109729,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14165 + - uid: 14173 components: - rot: 3.141592653589793 rad pos: -35.5,-0.5 @@ -109723,7 +109740,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14166 + - uid: 14174 components: - rot: -1.5707963267948966 rad pos: 30.5,23.5 @@ -109734,7 +109751,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14167 + - uid: 14175 components: - rot: 3.141592653589793 rad pos: 30.5,14.5 @@ -109745,7 +109762,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14168 + - uid: 14176 components: - rot: 1.5707963267948966 rad pos: 20.5,20.5 @@ -109756,7 +109773,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14169 + - uid: 14177 components: - rot: -1.5707963267948966 rad pos: -2.5,8.5 @@ -109767,7 +109784,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14170 + - uid: 14178 components: - rot: 3.141592653589793 rad pos: -27.5,-14.5 @@ -109778,7 +109795,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14171 + - uid: 14179 components: - rot: 3.141592653589793 rad pos: -34.5,-13.5 @@ -109789,7 +109806,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14172 + - uid: 14180 components: - rot: 1.5707963267948966 rad pos: 4.5,20.5 @@ -109800,7 +109817,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14173 + - uid: 14181 components: - pos: 45.5,-71.5 parent: 2 @@ -109810,7 +109827,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14174 + - uid: 14182 components: - rot: -1.5707963267948966 rad pos: 40.5,-61.5 @@ -109821,7 +109838,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14175 + - uid: 14183 components: - pos: 27.5,-58.5 parent: 2 @@ -109831,7 +109848,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14176 + - uid: 14184 components: - rot: 1.5707963267948966 rad pos: -25.5,20.5 @@ -109842,7 +109859,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14177 + - uid: 14185 components: - rot: -1.5707963267948966 rad pos: -36.5,20.5 @@ -109853,7 +109870,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14178 + - uid: 14186 components: - rot: 3.141592653589793 rad pos: -44.5,28.5 @@ -109864,7 +109881,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14179 + - uid: 14187 components: - rot: 1.5707963267948966 rad pos: -38.5,30.5 @@ -109875,7 +109892,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14180 + - uid: 14188 components: - rot: 3.141592653589793 rad pos: -34.5,28.5 @@ -109886,7 +109903,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14181 + - uid: 14189 components: - pos: -17.5,7.5 parent: 2 @@ -109896,7 +109913,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14182 + - uid: 14190 components: - rot: -1.5707963267948966 rad pos: -3.5,-30.5 @@ -109907,7 +109924,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14183 + - uid: 14191 components: - rot: 1.5707963267948966 rad pos: 70.5,-35.5 @@ -109918,7 +109935,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14184 + - uid: 14192 components: - rot: 3.141592653589793 rad pos: 74.5,-49.5 @@ -109929,7 +109946,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14185 + - uid: 14193 components: - pos: 60.5,-43.5 parent: 2 @@ -109939,7 +109956,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14186 + - uid: 14194 components: - pos: 6.5,-29.5 parent: 2 @@ -109949,7 +109966,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14187 + - uid: 14195 components: - pos: 30.5,-71.5 parent: 2 @@ -109959,7 +109976,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14188 + - uid: 14196 components: - rot: 3.141592653589793 rad pos: 18.5,-86.5 @@ -109970,7 +109987,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14189 + - uid: 14197 components: - rot: -1.5707963267948966 rad pos: 31.5,-83.5 @@ -109981,7 +109998,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14190 + - uid: 14198 components: - rot: -1.5707963267948966 rad pos: 49.5,-84.5 @@ -109992,7 +110009,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14191 + - uid: 14199 components: - rot: -1.5707963267948966 rad pos: 26.5,23.5 @@ -110005,84 +110022,84 @@ entities: - type: ActiveEmergencyLight - proto: EmergencyOxygenTankFilled entities: - - uid: 14192 + - uid: 14200 components: - pos: -2.5493312,-73.46234 parent: 2 type: Transform - proto: EmergencyRollerBed entities: - - uid: 14193 + - uid: 14201 components: - pos: -20.356709,-75.42545 parent: 2 type: Transform - proto: Emitter entities: - - uid: 14194 + - uid: 14202 components: - pos: -55.5,-8.5 parent: 2 type: Transform - - uid: 14195 + - uid: 14203 components: - pos: -62.5,-6.5 parent: 2 type: Transform - - uid: 14196 + - uid: 14204 components: - rot: -1.5707963267948966 rad pos: -59.5,-9.5 parent: 2 type: Transform - - uid: 14197 + - uid: 14205 components: - rot: 1.5707963267948966 rad pos: -73.5,-9.5 parent: 2 type: Transform - - uid: 14198 + - uid: 14206 components: - pos: -70.5,-6.5 parent: 2 type: Transform - - uid: 14199 + - uid: 14207 components: - rot: 1.5707963267948966 rad pos: -73.5,-17.5 parent: 2 type: Transform - - uid: 14200 + - uid: 14208 components: - rot: 3.141592653589793 rad pos: -70.5,-20.5 parent: 2 type: Transform - - uid: 14201 + - uid: 14209 components: - rot: 3.141592653589793 rad pos: -62.5,-20.5 parent: 2 type: Transform - - uid: 14202 + - uid: 14210 components: - rot: -1.5707963267948966 rad pos: -59.5,-17.5 parent: 2 type: Transform - - uid: 14203 + - uid: 14211 components: - rot: 3.141592653589793 rad pos: -61.5,-30.5 parent: 2 type: Transform - - uid: 14204 + - uid: 14212 components: - rot: 1.5707963267948966 rad pos: -55.5,-7.5 parent: 2 type: Transform - - uid: 14205 + - uid: 14213 components: - rot: 3.141592653589793 rad pos: -60.5,-30.5 @@ -110090,111 +110107,111 @@ entities: type: Transform - proto: EmitterCircuitboard entities: - - uid: 14206 + - uid: 14214 components: - pos: -37.508507,-17.430883 parent: 2 type: Transform - proto: EncryptionKeyCargo entities: - - uid: 14208 + - uid: 14216 components: - flags: InContainer type: MetaData - - parent: 14207 + - parent: 14215 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyCommand entities: - - uid: 14210 + - uid: 14218 components: - flags: InContainer type: MetaData - - parent: 14209 + - parent: 14217 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyCommon entities: - - uid: 14212 + - uid: 14220 components: - flags: InContainer type: MetaData - - parent: 14211 + - parent: 14219 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyEngineering entities: - - uid: 14214 + - uid: 14222 components: - flags: InContainer type: MetaData - - parent: 14213 + - parent: 14221 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyMedical entities: - - uid: 14216 + - uid: 14224 components: - flags: InContainer type: MetaData - - parent: 14215 + - parent: 14223 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyRobo entities: - - uid: 14218 + - uid: 14226 components: - flags: InContainer type: MetaData - - parent: 14217 + - parent: 14225 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyScience entities: - - uid: 14219 + - uid: 14227 components: - flags: InContainer type: MetaData - - parent: 14217 + - parent: 14225 type: Transform - canCollide: False type: Physics - proto: EncryptionKeySecurity entities: - - uid: 14221 + - uid: 14229 components: - flags: InContainer type: MetaData - - parent: 14220 + - parent: 14228 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyService entities: - - uid: 14223 + - uid: 14231 components: - flags: InContainer type: MetaData - - parent: 14222 + - parent: 14230 type: Transform - canCollide: False type: Physics - proto: ExosuitFabricator entities: - - uid: 14224 + - uid: 14232 components: - pos: 69.5,-43.5 parent: 2 type: Transform - proto: ExplosivesSignMed entities: - - uid: 30681 + - uid: 14233 components: - rot: 1.5707963267948966 rad pos: 67.5,-32.5 @@ -110202,186 +110219,186 @@ entities: type: Transform - proto: ExtendedEmergencyOxygenTankFilled entities: - - uid: 14225 + - uid: 14234 components: - pos: -70.53087,-25.890057 parent: 2 type: Transform - - uid: 14226 + - uid: 14235 components: - pos: -40.389053,32.87297 parent: 2 type: Transform - - uid: 14227 + - uid: 14236 components: - pos: 3.7780228,-75.4205 parent: 2 type: Transform - proto: ExtinguisherCabinetFilled entities: - - uid: 14228 + - uid: 14237 components: - pos: -20.5,64.5 parent: 2 type: Transform - - uid: 14229 + - uid: 14238 components: - pos: -1.5,47.5 parent: 2 type: Transform - - uid: 14230 + - uid: 14239 components: - pos: -20.5,53.5 parent: 2 type: Transform - - uid: 14231 + - uid: 14240 components: - pos: -13.5,32.5 parent: 2 type: Transform - - uid: 14232 + - uid: 14241 components: - pos: -1.5,8.5 parent: 2 type: Transform - - uid: 14233 + - uid: 14242 components: - pos: -33.5,-39.5 parent: 2 type: Transform - - uid: 14234 + - uid: 14243 components: - pos: -15.5,-2.5 parent: 2 type: Transform - - uid: 14235 + - uid: 14244 components: - pos: -17.5,-17.5 parent: 2 type: Transform - - uid: 14236 + - uid: 14245 components: - pos: -21.5,-30.5 parent: 2 type: Transform - - uid: 14237 + - uid: 14246 components: - pos: -2.5,-29.5 parent: 2 type: Transform - - uid: 14238 + - uid: 14247 components: - pos: 52.5,-46.5 parent: 2 type: Transform - - uid: 14239 + - uid: 14248 components: - pos: -10.5,-47.5 parent: 2 type: Transform - - uid: 14240 + - uid: 14249 components: - pos: 19.5,18.5 parent: 2 type: Transform - - uid: 14241 + - uid: 14250 components: - pos: 3.5,13.5 parent: 2 type: Transform - - uid: 14242 + - uid: 14251 components: - pos: -6.5,-17.5 parent: 2 type: Transform - - uid: 14243 + - uid: 14252 components: - pos: 23.5,-51.5 parent: 2 type: Transform - - uid: 14244 + - uid: 14253 components: - pos: 77.5,-48.5 parent: 2 type: Transform - - uid: 14245 + - uid: 14254 components: - pos: 76.5,-38.5 parent: 2 type: Transform - proto: FaxMachineBase entities: - - uid: 14246 + - uid: 14255 components: - pos: -28.5,-9.5 parent: 2 type: Transform - name: engineering fax type: FaxMachine - - uid: 14247 + - uid: 14256 components: - pos: -34.5,23.5 parent: 2 type: Transform - name: cargo fax type: FaxMachine - - uid: 14248 + - uid: 14257 components: - pos: 40.5,-39.5 parent: 2 type: Transform - name: science fax type: FaxMachine - - uid: 14249 + - uid: 14258 components: - pos: -16.5,-61.5 parent: 2 type: Transform - name: medbay fax type: FaxMachine - - uid: 14250 + - uid: 14259 components: - pos: -25.5,-35.5 parent: 2 type: Transform - name: atmos fax type: FaxMachine - - uid: 14251 + - uid: 14260 components: - pos: 23.5,-37.5 parent: 2 type: Transform - name: head of personel fax type: FaxMachine - - uid: 14252 + - uid: 14261 components: - pos: 18.5,-14.5 parent: 2 type: Transform - name: detective fax type: FaxMachine - - uid: 14253 + - uid: 14262 components: - pos: 22.5,23.5 parent: 2 type: Transform - name: security fax type: FaxMachine - - uid: 14254 + - uid: 14263 components: - pos: 12.5,-5.5 parent: 2 type: Transform - name: library fax type: FaxMachine - - uid: 14255 + - uid: 14264 components: - pos: -22.5,-98.5 parent: 2 type: Transform - name: maint fax type: FaxMachine - - uid: 14256 + - uid: 14265 components: - pos: -12.5,-19.5 parent: 2 @@ -110390,2074 +110407,2074 @@ entities: type: FaxMachine - proto: FaxMachineCaptain entities: - - uid: 14257 + - uid: 14266 components: - pos: 30.5,-29.5 parent: 2 type: Transform - proto: FigureSpawner entities: - - uid: 14258 + - uid: 14267 components: - pos: 9.5,-6.5 parent: 2 type: Transform - - uid: 14259 + - uid: 14268 components: - pos: 10.5,-6.5 parent: 2 type: Transform - - uid: 14260 + - uid: 14269 components: - pos: -0.5,31.5 parent: 2 type: Transform - - uid: 14261 + - uid: 14270 components: - pos: -1.5,30.5 parent: 2 type: Transform - proto: filingCabinet entities: - - uid: 14262 + - uid: 14271 components: - pos: 17.5,-14.5 parent: 2 type: Transform - - uid: 14263 + - uid: 14272 components: - pos: 62.5,-3.5 parent: 2 type: Transform - proto: filingCabinetDrawer entities: - - uid: 14264 + - uid: 14273 components: - pos: 57.5,-41.5 parent: 2 type: Transform - - uid: 14265 + - uid: 14274 components: - pos: -24.5,-69.5 parent: 2 type: Transform - - uid: 14266 + - uid: 14275 components: - pos: 58.5,31.5 parent: 2 type: Transform - - uid: 14267 + - uid: 14276 components: - pos: 63.5,-3.5 parent: 2 type: Transform - proto: filingCabinetDrawerRandom entities: - - uid: 14268 + - uid: 14277 components: - pos: 41.5,-3.5 parent: 2 type: Transform - - uid: 14269 + - uid: 14278 components: - pos: -22.5,13.5 parent: 2 type: Transform - proto: filingCabinetRandom entities: - - uid: 14270 + - uid: 14279 components: - pos: 41.5,-2.5 parent: 2 type: Transform - - uid: 14271 + - uid: 14280 components: - pos: -23.5,13.5 parent: 2 type: Transform - proto: FireAlarm entities: - - uid: 14272 + - uid: 14281 components: - pos: -6.5,-44.5 parent: 2 type: Transform - devices: - - 773 - - 14717 - - 14718 - - 14362 - - 14361 - - 14384 - - 14360 - - 14359 - - 14358 - - 14559 - - 14560 - - 14606 - - 14682 - - 14681 - - 14683 - - 14456 - - 14491 + - 774 + - 14726 + - 14727 + - 14371 + - 14370 + - 14393 + - 14369 + - 14368 + - 14367 + - 14568 + - 14569 + - 14615 + - 14691 + - 14690 + - 14692 + - 14465 + - 14500 type: DeviceList - - uid: 14273 + - uid: 14282 components: - pos: 30.5,-40.5 parent: 2 type: Transform - devices: - - 14659 - - 14658 - - 14657 - - 14610 - - 14528 + - 14668 + - 14667 + - 14666 + - 14619 + - 14537 + - 14561 + - 14755 + - 14630 + - 14553 - 14552 - - 14746 - - 14621 - - 14544 - - 14543 - - 14605 - - 14607 - - 14613 - - 14649 - - 14584 - - 14370 - - 778 - - 14548 - - 14609 - - 14637 - - 14635 - - 14480 + - 14614 + - 14616 + - 14622 + - 14658 + - 14593 + - 14379 + - 779 + - 14557 + - 14618 + - 14646 + - 14644 + - 14489 type: DeviceList - - uid: 14274 + - uid: 14283 components: - rot: -1.5707963267948966 rad pos: 5.5,-3.5 parent: 2 type: Transform - devices: - - 770 - - 19296 - - 19075 - - 14371 - - 14539 - - 14627 - - 14520 - - 14577 + - 771 + - 19311 + - 19089 + - 14380 + - 14548 + - 14636 + - 14529 + - 14586 type: DeviceList - - uid: 14275 + - uid: 14284 components: - rot: -1.5707963267948966 rad pos: -20.5,58.5 parent: 2 type: Transform - devices: - - 14800 - - 14795 + - 14809 + - 14804 + - 14805 + - 14798 + - 14797 - 14796 - - 14789 + - 14801 + - 14800 + - 820 - 14788 - 14787 - - 14792 - - 14791 - - 819 - - 14779 - - 14778 type: DeviceList - - uid: 14276 + - uid: 14285 components: - rot: -1.5707963267948966 rad pos: -11.5,62.5 parent: 2 type: Transform - devices: - - 14795 - - 14796 - - 14798 - - 14793 - - 14794 - - 14790 - - 14768 - - 820 + - 14804 + - 14805 + - 14807 + - 14802 + - 14803 + - 14799 + - 14777 + - 821 type: DeviceList - - uid: 14277 + - uid: 14286 components: - pos: -29.5,-15.5 parent: 2 type: Transform - devices: - - 832 - - 14670 - - 14685 - - 14686 - - 14699 - - 14698 - - 14444 - - 14700 - - 14701 + - 833 + - 14679 + - 14694 + - 14695 + - 14708 + - 14707 + - 14453 + - 14709 + - 14710 type: DeviceList - - uid: 14278 + - uid: 14287 components: - rot: 1.5707963267948966 rad pos: 51.5,12.5 parent: 2 type: Transform - devices: - - 814 - - 14498 - - 14497 - - 14496 - - 14495 - - 14494 - - 14499 - - 14500 - - 14501 - - 14641 - - 14640 - - 14648 - - 14724 - - 14643 + - 815 + - 14507 + - 14506 + - 14505 + - 14504 + - 14503 + - 14508 + - 14509 + - 14510 + - 14650 + - 14649 + - 14657 + - 14733 + - 14652 type: DeviceList - - uid: 14279 + - uid: 14288 components: - pos: 28.5,-57.5 parent: 2 type: Transform - devices: - - 813 - - 14675 - - 14674 - - 14676 - - 14355 - - 14544 - - 14621 - - 14746 - - 14751 + - 814 + - 14684 + - 14683 + - 14685 + - 14364 + - 14553 + - 14630 + - 14755 + - 14760 type: DeviceList - - uid: 14280 + - uid: 14289 components: - rot: -1.5707963267948966 rad pos: -17.5,20.5 parent: 2 type: Transform - devices: - - 850 - - 14708 - - 14707 - - 14709 - - 14710 - - 14711 - - 14647 - - 14773 - - 14774 - - 14712 + - 851 + - 14717 + - 14716 + - 14718 + - 14719 + - 14720 + - 14656 + - 14782 + - 14783 + - 14721 type: DeviceList - - uid: 14281 + - uid: 14290 components: - pos: 65.5,-42.5 parent: 2 type: Transform - devices: - - 858 - - 14654 - - 14504 - - 14503 - - 14397 - - 14655 - - 14766 - - 14767 + - 859 + - 14663 + - 14513 + - 14512 + - 14406 + - 14664 + - 14775 + - 14776 type: DeviceList - - uid: 14282 + - uid: 14291 components: - rot: 1.5707963267948966 rad pos: -30.5,-11.5 parent: 2 type: Transform - devices: - - 14745 - - 14443 - - 14444 - - 880 + - 14754 + - 14452 + - 14453 + - 881 type: DeviceList - - uid: 14283 + - uid: 14292 components: - rot: 3.141592653589793 rad pos: -38.5,-14.5 parent: 2 type: Transform - devices: - - 854 - - 14688 - - 14687 - - 14701 - - 14700 - - 14756 - - 14704 - - 14445 + - 855 + - 14697 + - 14696 + - 14710 + - 14709 + - 14765 + - 14713 + - 14454 type: DeviceList - - uid: 14284 + - uid: 14293 components: - pos: 8.5,18.5 parent: 2 type: Transform - devices: - - 14761 - - 14461 - - 14462 - - 14628 - - 14629 - - 14373 - - 14387 - - 14582 - - 802 + - 14770 + - 14470 + - 14471 + - 14637 + - 14638 + - 14382 + - 14396 + - 14591 + - 803 type: DeviceList - - uid: 14285 + - uid: 14294 components: - pos: -4.5,60.5 parent: 2 type: Transform - devices: - - 14793 + - 14802 + - 14803 + - 14808 + - 14795 - 14794 - - 14799 - - 14786 - - 14785 - - 14784 - - 821 + - 14793 + - 822 type: DeviceList - - uid: 14286 + - uid: 14295 components: - rot: -1.5707963267948966 rad pos: 47.5,-36.5 parent: 2 type: Transform - devices: - - 856 - - 14396 - - 14650 - - 14399 - - 14398 + - 857 + - 14405 + - 14659 + - 14408 + - 14407 type: DeviceList - - uid: 14287 + - uid: 14296 components: - pos: 6.5,4.5 parent: 2 type: Transform - devices: - - 14633 - - 14591 - - 14634 - - 14597 - - 14536 - - 14576 - - 14602 - - 14574 - - 14627 - - 14539 - - 14520 - - 14583 - - 14514 - - 14513 - - 14550 - - 14512 + - 14642 + - 14600 + - 14643 + - 14606 - 14545 - - 14537 + - 14585 + - 14611 + - 14583 + - 14636 + - 14548 + - 14529 + - 14592 - 14523 - - 14390 - - 800 + - 14522 + - 14559 + - 14521 + - 14554 + - 14546 + - 14532 + - 14399 + - 801 type: DeviceList - - uid: 14288 + - uid: 14297 components: - pos: -9.5,4.5 parent: 2 type: Transform - devices: + - 14756 - 14747 - - 14738 - - 14739 - - 14736 - - 14737 - - 14394 - - 14553 - - 14600 - - 14554 - - 14574 - - 14602 - - 14576 - - 14536 - - 14522 - - 14573 - - 14535 - - 799 + - 14748 + - 14745 + - 14746 + - 14403 + - 14562 + - 14609 + - 14563 + - 14583 + - 14611 + - 14585 + - 14545 + - 14531 + - 14582 + - 14544 + - 800 type: DeviceList - - uid: 14289 + - uid: 14298 components: - pos: -15.5,-3.5 parent: 2 type: Transform - devices: - - 823 - - 14728 - - 14727 - - 14729 - - 14671 - - 14668 - - 14604 - - 14740 - - 14738 - - 14739 - - 14736 + - 824 - 14737 - - 14381 + - 14736 + - 14738 + - 14680 + - 14677 + - 14613 + - 14749 + - 14747 + - 14748 + - 14745 + - 14746 + - 14390 type: DeviceList - - uid: 14290 + - uid: 14299 components: - pos: 22.5,24.5 parent: 2 type: Transform - devices: - - 14760 - - 14744 - - 14743 - - 14742 - - 14638 - - 809 + - 14769 + - 14753 + - 14752 + - 14751 + - 14647 + - 810 type: DeviceList - - uid: 14291 + - uid: 14300 components: - pos: 6.5,11.5 parent: 2 type: Transform - devices: - - 14628 - - 14629 - - 14572 - - 14593 - - 14521 - - 14633 - - 14591 - - 14634 - - 803 - - 14601 - - 14597 + - 14637 + - 14638 + - 14581 + - 14602 + - 14530 + - 14642 + - 14600 + - 14643 + - 804 + - 14610 + - 14606 type: DeviceList - - uid: 14292 + - uid: 14301 components: - rot: 1.5707963267948966 rad pos: -26.5,-15.5 parent: 2 type: Transform - devices: - - 830 - - 14745 - - 14551 - - 14555 - - 14698 - - 14699 - - 14443 + - 831 + - 14754 + - 14560 + - 14564 + - 14707 + - 14708 + - 14452 type: DeviceList - - uid: 14293 + - uid: 14302 components: - pos: -13.5,-40.5 parent: 2 type: Transform - devices: - - 14533 - - 14532 - - 14531 - - 14636 - - 14358 - - 14359 - - 14360 - - 14384 - - 14361 - - 14362 - - 14607 - - 14605 - - 14543 - - 774 - - 14630 - - 14631 - - 14632 + - 14542 + - 14541 + - 14540 + - 14645 + - 14367 + - 14368 + - 14369 + - 14393 + - 14370 + - 14371 + - 14616 + - 14614 + - 14552 + - 775 + - 14639 + - 14640 + - 14641 type: DeviceList - - uid: 14294 + - uid: 14303 components: - rot: 3.141592653589793 rad pos: 4.5,-51.5 parent: 2 type: Transform - devices: - - 791 - - 14719 - - 14530 - - 14718 - - 14717 + - 792 + - 14728 + - 14539 + - 14727 + - 14726 type: DeviceList - - uid: 14295 + - uid: 14304 components: - pos: -16.5,-24.5 parent: 2 type: Transform - devices: - - 14690 - - 838 - - 14412 - - 14393 - - 14672 - - 14588 - - 14508 - - 14625 - - 14697 - - 14669 - - 14696 - - 14732 - - 14733 - - 14734 + - 14699 + - 839 + - 14421 + - 14402 + - 14681 + - 14597 + - 14517 + - 14634 + - 14706 + - 14678 + - 14705 + - 14741 + - 14742 + - 14743 type: DeviceList - - uid: 14296 + - uid: 14305 components: - pos: -16.5,-58.5 parent: 2 type: Transform - devices: - - 14563 - - 14720 - - 14721 - - 14562 - - 14561 - - 14590 - - 14677 - - 14678 - - 14684 - - 14725 - - 14749 - - 14750 - - 14748 - - 14754 - - 777 - - 14364 - - 14378 + - 14572 + - 14729 + - 14730 + - 14571 + - 14570 + - 14599 + - 14686 + - 14687 + - 14693 + - 14734 + - 14758 + - 14759 + - 14757 + - 14763 + - 778 + - 14373 + - 14387 type: DeviceList - - uid: 14297 + - uid: 14306 components: - rot: -1.5707963267948966 rad pos: 41.5,-61.5 parent: 2 type: Transform - devices: - - 816 - - 14675 - - 14674 - - 14676 - - 14673 - - 14515 - - 14679 - - 14680 + - 817 + - 14684 + - 14683 + - 14685 + - 14682 + - 14524 + - 14688 + - 14689 type: DeviceList - - uid: 14298 + - uid: 14307 components: - pos: -7.5,-24.5 parent: 2 type: Transform - devices: - - 797 - - 14732 - - 14733 - - 14734 - - 14369 - - 14626 - - 14592 - - 14586 - - 14556 - - 14587 - - 14624 - - 14630 - - 14631 - - 14632 + - 798 + - 14741 + - 14742 + - 14743 + - 14378 + - 14635 + - 14601 + - 14595 + - 14565 + - 14596 + - 14633 + - 14639 + - 14640 + - 14641 type: DeviceList - - uid: 14299 + - uid: 14308 components: - pos: 27.5,-15.5 parent: 2 type: Transform - devices: - - 14571 - - 14558 - - 14598 - - 14615 - - 14511 - - 14612 - - 14534 - - 14575 - - 14541 - - 14542 - - 840 + - 14580 + - 14567 + - 14607 + - 14624 + - 14520 + - 14621 + - 14543 + - 14584 + - 14550 + - 14551 + - 841 type: DeviceList - - uid: 14300 + - uid: 14309 components: - pos: 24.5,-3.5 parent: 2 type: Transform - devices: - - 824 - - 14623 - - 14603 - - 14538 - - 14519 - - 14549 - - 14578 - - 14511 + - 825 + - 14632 - 14612 - - 14534 + - 14547 + - 14528 + - 14558 + - 14587 + - 14520 + - 14621 + - 14543 type: DeviceList - - uid: 14301 + - uid: 14310 components: - rot: -1.5707963267948966 rad pos: 19.5,-3.5 parent: 2 type: Transform - devices: - - 825 - - 14512 - - 14545 - - 14537 - - 14523 - - 14516 - - 14580 - - 14581 - - 14599 - - 14623 - - 14603 - - 14538 + - 826 + - 14521 + - 14554 + - 14546 + - 14532 + - 14525 + - 14589 + - 14590 + - 14608 + - 14632 + - 14612 + - 14547 type: DeviceList - - uid: 14302 + - uid: 14311 components: - pos: 12.5,-24.5 parent: 2 type: Transform - devices: - - 795 - - 14351 - - 14595 - - 14510 - - 14589 - - 14571 - - 14558 + - 796 + - 14360 + - 14604 + - 14519 - 14598 - - 14584 - - 14649 - - 14613 - - 14345 + - 14580 + - 14567 + - 14607 + - 14593 + - 14658 + - 14622 + - 14354 type: DeviceList - - uid: 14303 + - uid: 14312 components: - pos: 37.5,-24.5 parent: 2 type: Transform - devices: - - 14350 - - 14344 - - 14343 - - 781 + - 14359 + - 14353 - 14352 - - 14575 - - 14541 - - 14542 - - 14610 - - 14528 - - 14552 + - 782 + - 14361 + - 14584 + - 14550 + - 14551 + - 14619 + - 14537 + - 14561 type: DeviceList - - uid: 14304 + - uid: 14313 components: - pos: 33.5,9.5 parent: 2 type: Transform - devices: - - 827 - - 14618 - - 14519 - - 14549 - - 14578 - - 14564 - - 14546 - - 14579 - - 14568 - - 14594 - - 14730 - - 14565 + - 828 + - 14627 + - 14528 + - 14558 + - 14587 + - 14573 + - 14555 + - 14588 + - 14577 + - 14603 + - 14739 + - 14574 type: DeviceList - - uid: 14305 + - uid: 14314 components: - pos: 56.5,-4.5 parent: 2 type: Transform - devices: - - 14402 - - 812 - - 14664 - - 14646 - - 14645 - - 14644 - - 14752 - - 14663 + - 14411 + - 813 + - 14673 + - 14655 + - 14654 + - 14653 + - 14761 + - 14672 type: DeviceList - - uid: 14306 + - uid: 14315 components: - pos: 40.5,3.5 parent: 2 type: Transform - devices: - - 810 - - 14718 - - 14717 - - 791 - - 14568 - - 14594 - - 14730 - - 14611 - - 14644 - - 14645 - - 14646 - - 14802 - - 14801 + - 811 + - 14727 + - 14726 + - 792 + - 14577 + - 14603 + - 14739 + - 14620 + - 14653 + - 14654 + - 14655 + - 14811 + - 14810 type: DeviceList - - uid: 14307 + - uid: 14316 components: - rot: -1.5707963267948966 rad pos: -2.5,-10.5 parent: 2 type: Transform - devices: - - 798 - - 14626 - - 14592 - - 14586 - - 14554 - - 14600 - - 14553 + - 799 + - 14635 + - 14601 + - 14595 + - 14563 + - 14609 + - 14562 type: DeviceList - - uid: 14308 + - uid: 14317 components: - pos: -31.5,2.5 parent: 2 type: Transform - devices: - - 843 - - 14604 - - 14668 - - 14671 - - 14379 - - 14714 - - 14713 - - 14715 - - 14716 + - 844 + - 14613 + - 14677 + - 14680 + - 14388 - 14723 + - 14722 + - 14724 + - 14725 + - 14732 type: DeviceList - - uid: 14309 + - uid: 14318 components: - pos: -48.5,9.5 parent: 2 type: Transform - devices: - - 14726 - - 14722 - - 844 - - 14715 - - 14716 - - 14723 + - 14735 + - 14731 + - 845 + - 14724 + - 14725 + - 14732 type: DeviceList - - uid: 14310 + - uid: 14319 components: - rot: -1.5707963267948966 rad pos: -52.5,-10.5 parent: 2 type: Transform - devices: - - 853 - - 14694 - - 14693 - - 14755 - - 14414 - - 14415 + - 854 + - 14703 + - 14702 + - 14764 + - 14423 + - 14424 type: DeviceList - - uid: 14311 + - uid: 14320 components: - pos: -58.5,-22.5 parent: 2 type: Transform - devices: - - 852 - - 14705 - - 14735 - - 14410 - - 14693 - - 14694 + - 853 + - 14714 + - 14744 + - 14419 + - 14702 + - 14703 type: DeviceList - - uid: 14312 + - uid: 14321 components: - rot: -1.5707963267948966 rad pos: -29.5,-35.5 parent: 2 type: Transform - devices: - - 836 - - 14691 - - 14692 - - 14665 - - 14666 - - 14405 - - 14404 - - 14409 - - 14408 + - 837 + - 14700 + - 14701 + - 14674 + - 14675 + - 14414 + - 14413 + - 14418 + - 14417 type: DeviceList - - uid: 14313 + - uid: 14322 components: - pos: 52.5,-38.5 parent: 2 type: Transform - devices: - - 818 - - 14650 - - 14653 + - 819 + - 14659 - 14662 - - 14651 - - 14652 - - 14656 + - 14671 - 14660 - 14661 - - 14764 - - 14765 + - 14665 + - 14669 + - 14670 + - 14773 + - 14774 type: DeviceList - - uid: 14314 + - uid: 14323 components: - pos: 22.5,9.5 parent: 2 type: Transform - devices: - - 826 - - 14366 - - 14356 - - 14354 - - 14441 - - 14581 - - 14599 - - 14564 - - 14546 - - 14579 + - 827 + - 14375 + - 14365 + - 14363 + - 14450 + - 14590 + - 14608 + - 14573 + - 14555 + - 14588 type: DeviceList - - uid: 14315 + - uid: 14324 components: - pos: -26.5,-76.5 parent: 2 type: Transform - devices: - - 784 - - 14753 - - 14619 - - 14569 + - 785 + - 14762 + - 14628 + - 14578 type: DeviceList - - uid: 14316 + - uid: 14325 components: - rot: 1.5707963267948966 rad pos: 27.5,15.5 parent: 2 type: Transform - devices: - - 14642 - - 14547 - - 14570 - - 14518 - - 14638 - - 14388 - - 14377 - - 14357 - - 811 - - 14802 - - 14801 + - 14651 + - 14556 + - 14579 + - 14527 + - 14647 + - 14397 + - 14386 + - 14366 + - 812 + - 14811 + - 14810 type: DeviceList - - uid: 14317 + - uid: 14326 components: - pos: -17.5,-68.5 parent: 2 type: Transform - devices: - - 783 + - 784 + - 14771 - 14762 - - 14753 - - 14509 - - 14458 + - 14518 + - 14467 type: DeviceList - - uid: 14318 + - uid: 14327 components: - pos: 46.5,-40.5 parent: 2 type: Transform - devices: - - 14396 - - 14653 + - 14405 - 14662 - - 14651 - - 14659 - - 14658 - - 14657 - - 14398 - - 14399 - - 867 + - 14671 + - 14660 + - 14668 + - 14667 + - 14666 + - 14407 + - 14408 + - 868 type: DeviceList - - uid: 14319 + - uid: 14328 components: - pos: -18.5,68.5 parent: 2 type: Transform - devices: - - 869 - - 14835 - - 14834 + - 870 + - 14844 + - 14843 type: DeviceList - - uid: 14320 + - uid: 14329 components: - rot: -1.5707963267948966 rad pos: -13.5,40.5 parent: 2 type: Transform - devices: - - 871 - - 14781 - - 14782 + - 872 + - 14790 + - 14791 + - 14792 + - 14476 + - 14473 + - 14475 + - 14474 - 14783 - - 14467 - - 14464 - - 14466 - - 14465 - - 14774 - - 14773 - - 14770 - - 14771 - - 14772 - - 14787 - - 14788 - - 14789 - - 14442 + - 14782 + - 14779 + - 14780 + - 14781 + - 14796 + - 14797 + - 14798 + - 14451 type: DeviceList - - uid: 14321 + - uid: 14330 components: - pos: -7.5,47.5 parent: 2 type: Transform - devices: - - 872 - - 14781 - - 14782 - - 14783 - - 14776 - - 14777 - - 14784 + - 873 + - 14790 + - 14791 + - 14792 - 14785 - 14786 - - 14797 + - 14793 + - 14794 + - 14795 + - 14806 type: DeviceList - - uid: 14322 + - uid: 14331 components: - pos: -7.5,12.5 parent: 2 type: Transform - devices: - - 805 - - 14403 - - 14522 - - 14573 - - 14535 - - 14747 - - 14601 + - 806 + - 14412 + - 14531 + - 14582 + - 14544 + - 14756 + - 14610 type: DeviceList - - uid: 14323 + - uid: 14332 components: - rot: 3.141592653589793 rad pos: 65.5,-36.5 parent: 2 type: Transform - devices: - - 878 - - 14400 - - 14474 - - 14476 - - 14475 + - 879 + - 14409 + - 14483 + - 14485 + - 14484 type: DeviceList - - uid: 14324 + - uid: 14333 components: - pos: 73.5,-42.5 parent: 2 type: Transform - devices: - - 14809 - - 14810 - - 14504 - - 14503 - - 14397 - - 861 + - 14818 + - 14819 + - 14513 + - 14512 + - 14406 + - 862 type: DeviceList - - uid: 14325 + - uid: 14334 components: - rot: -1.5707963267948966 rad pos: -17.5,-13.5 parent: 2 type: Transform - devices: - - 14729 - - 14727 - - 14728 - - 14551 - - 14555 - - 14696 - - 14669 - - 14697 - - 14479 - - 831 - - 14667 - - 14811 - - 14812 + - 14738 + - 14736 + - 14737 + - 14560 + - 14564 + - 14705 + - 14678 + - 14706 + - 14488 + - 832 + - 14676 + - 14820 + - 14821 type: DeviceList - - uid: 14326 + - uid: 14335 components: - rot: 3.141592653589793 rad pos: 21.5,-26.5 parent: 2 type: Transform - devices: - - 839 - - 14352 - - 14350 - - 14345 - - 14351 - - 14380 - - 14372 - - 14385 + - 840 + - 14361 + - 14359 + - 14354 + - 14360 + - 14389 + - 14381 + - 14394 type: DeviceList - - uid: 14327 + - uid: 14336 components: - rot: 3.141592653589793 rad pos: 72.5,-39.5 parent: 2 type: Transform - devices: - - 877 - - 14478 - - 14477 - - 14808 - - 14807 + - 878 + - 14487 + - 14486 + - 14817 + - 14816 type: DeviceList - - uid: 14328 + - uid: 14337 components: - pos: 30.5,-70.5 parent: 2 type: Transform - devices: - - 885 - - 14825 - - 14826 - - 14827 - - 14824 - - 14823 - - 14822 + - 886 + - 14834 + - 14835 + - 14836 + - 14833 + - 14832 + - 14831 type: DeviceList - - uid: 14329 + - uid: 14338 components: - rot: -1.5707963267948966 rad pos: 20.5,-85.5 parent: 2 type: Transform - devices: - - 14821 - - 886 + - 14830 + - 887 type: DeviceList - - uid: 14330 + - uid: 14339 components: - rot: -1.5707963267948966 rad pos: 32.5,-81.5 parent: 2 type: Transform - devices: - - 868 - - 14820 - - 14822 - - 14823 - - 14824 + - 869 + - 14829 + - 14831 + - 14832 + - 14833 type: DeviceList - - uid: 14331 + - uid: 14340 components: - rot: 3.141592653589793 rad pos: 42.5,-74.5 parent: 2 type: Transform - devices: - - 14828 - - 14829 - - 14830 - - 14825 - - 14826 - - 14827 - - 815 + - 14837 + - 14838 + - 14839 + - 14834 + - 14835 + - 14836 + - 816 type: DeviceList - - uid: 14332 + - uid: 14341 components: - rot: -1.5707963267948966 rad pos: 50.5,-75.5 parent: 2 type: Transform - devices: - - 876 - - 14828 - - 14829 - - 14830 - - 14833 - - 14832 - - 14831 + - 877 + - 14837 + - 14838 + - 14839 + - 14842 + - 14841 + - 14840 type: DeviceList - - uid: 14333 + - uid: 14342 components: - rot: -1.5707963267948966 rad pos: 50.5,-85.5 parent: 2 type: Transform - devices: - - 875 - - 14831 - - 14832 - - 14833 + - 876 + - 14840 + - 14841 + - 14842 type: DeviceList - - uid: 14334 + - uid: 14343 components: - rot: -1.5707963267948966 rad pos: 48.5,4.5 parent: 2 type: Transform - devices: - - 14836 - - 14741 - - 771 - - 14639 + - 14845 + - 14750 + - 772 + - 14648 type: DeviceList - - uid: 14335 + - uid: 14344 components: - pos: 1.5,-51.5 parent: 2 type: Transform - devices: - - 14719 - - 14530 - - 776 - - 14682 - - 14681 - - 14683 - - 14616 - - 14689 - - 14596 - - 14525 - - 14608 - - 14614 - - 14559 - - 14560 - - 14606 - - 14622 - - 14620 - - 14759 - - 14491 + - 14728 + - 14539 + - 777 + - 14691 + - 14690 + - 14692 + - 14625 + - 14698 + - 14605 + - 14534 + - 14617 + - 14623 + - 14568 + - 14569 + - 14615 + - 14631 + - 14629 + - 14768 + - 14500 type: DeviceList - proto: FireAxeCabinetFilled entities: - - uid: 14336 + - uid: 14345 components: - pos: 30.5,-20.5 parent: 2 type: Transform - - uid: 14337 + - uid: 14346 components: - pos: -37.5,-47.5 parent: 2 type: Transform - proto: FireExtinguisher entities: - - uid: 14338 + - uid: 14347 components: - pos: -40.44795,34.218018 parent: 2 type: Transform - - uid: 14339 + - uid: 14348 components: - pos: -40.7292,33.999268 parent: 2 type: Transform - - uid: 14340 + - uid: 14349 components: - pos: -47.435944,26.604792 parent: 2 type: Transform - - uid: 14341 + - uid: 14350 components: - pos: 22.516739,-54.502064 parent: 2 type: Transform - proto: Firelock entities: - - uid: 14342 + - uid: 14351 components: - pos: 10.5,-64.5 parent: 2 type: Transform - - uid: 14343 + - uid: 14352 components: - pos: 39.5,-26.5 parent: 2 type: Transform - - uid: 14344 + - uid: 14353 components: - pos: 39.5,-25.5 parent: 2 type: Transform - - uid: 14345 + - uid: 14354 components: - pos: 18.5,-24.5 parent: 2 type: Transform - - uid: 14346 + - uid: 14355 components: - pos: -5.5,15.5 parent: 2 type: Transform - - uid: 14347 + - uid: 14356 components: - pos: -3.5,16.5 parent: 2 type: Transform - - uid: 14348 + - uid: 14357 components: - pos: 56.5,-2.5 parent: 2 type: Transform - - uid: 14349 + - uid: 14358 components: - rot: 3.141592653589793 rad pos: 15.5,-13.5 parent: 2 type: Transform - - uid: 14350 + - uid: 14359 components: - rot: 1.5707963267948966 rad pos: 32.5,-25.5 parent: 2 type: Transform - - uid: 14351 + - uid: 14360 components: - rot: 1.5707963267948966 rad pos: 18.5,-25.5 parent: 2 type: Transform - - uid: 14352 + - uid: 14361 components: - pos: 32.5,-24.5 parent: 2 type: Transform - - uid: 14353 + - uid: 14362 components: - pos: 40.5,-14.5 parent: 2 type: Transform - - uid: 14354 + - uid: 14363 components: - rot: 1.5707963267948966 rad pos: 26.5,14.5 parent: 2 type: Transform - - uid: 14355 + - uid: 14364 components: - pos: 23.5,-53.5 parent: 2 type: Transform - - uid: 14356 + - uid: 14365 components: - rot: 1.5707963267948966 rad pos: 25.5,14.5 parent: 2 type: Transform - - uid: 14357 + - uid: 14366 components: - pos: 30.5,23.5 parent: 2 type: Transform - - uid: 14358 + - uid: 14367 components: - pos: -9.5,-44.5 parent: 2 type: Transform - - uid: 14359 + - uid: 14368 components: - pos: -8.5,-44.5 parent: 2 type: Transform - - uid: 14360 + - uid: 14369 components: - pos: -7.5,-44.5 parent: 2 type: Transform - - uid: 14361 + - uid: 14370 components: - pos: -0.5,-44.5 parent: 2 type: Transform - - uid: 14362 + - uid: 14371 components: - pos: 0.5,-44.5 parent: 2 type: Transform - - uid: 14363 + - uid: 14372 components: - rot: -1.5707963267948966 rad pos: 11.5,-49.5 parent: 2 type: Transform - - uid: 14364 + - uid: 14373 components: - pos: -13.5,-62.5 parent: 2 type: Transform - - uid: 14365 + - uid: 14374 components: - pos: -21.5,-52.5 parent: 2 type: Transform - - uid: 14366 + - uid: 14375 components: - rot: 1.5707963267948966 rad pos: 24.5,14.5 parent: 2 type: Transform - - uid: 14367 + - uid: 14376 components: - pos: 18.5,-51.5 parent: 2 type: Transform - - uid: 14368 + - uid: 14377 components: - pos: -47.5,-27.5 parent: 2 type: Transform - - uid: 14369 + - uid: 14378 components: - pos: -11.5,-24.5 parent: 2 type: Transform - - uid: 14370 + - uid: 14379 components: - pos: 31.5,-44.5 parent: 2 type: Transform - - uid: 14371 + - uid: 14380 components: - pos: 3.5,-8.5 parent: 2 type: Transform - - uid: 14372 + - uid: 14381 components: - pos: 26.5,-26.5 parent: 2 type: Transform - - uid: 14373 + - uid: 14382 components: - pos: 14.5,17.5 parent: 2 type: Transform - - uid: 14374 + - uid: 14383 components: - rot: 1.5707963267948966 rad pos: -27.5,-41.5 parent: 2 type: Transform - - uid: 14375 + - uid: 14384 components: - pos: 14.5,-51.5 parent: 2 type: Transform - - uid: 14376 + - uid: 14385 components: - pos: 54.5,38.5 parent: 2 type: Transform - - uid: 14377 + - uid: 14386 components: - pos: 29.5,23.5 parent: 2 type: Transform - - uid: 14378 + - uid: 14387 components: - pos: -19.5,-62.5 parent: 2 type: Transform - - uid: 14379 + - uid: 14388 components: - pos: -29.5,-1.5 parent: 2 type: Transform - - uid: 14380 + - uid: 14389 components: - pos: 23.5,-26.5 parent: 2 type: Transform - - uid: 14381 + - uid: 14390 components: - pos: -19.5,-3.5 parent: 2 type: Transform - - uid: 14382 + - uid: 14391 components: - pos: -10.5,-75.5 parent: 2 type: Transform - - uid: 14383 + - uid: 14392 components: - pos: 34.5,22.5 parent: 2 type: Transform - - uid: 14384 + - uid: 14393 components: - pos: -1.5,-44.5 parent: 2 type: Transform - - uid: 14385 + - uid: 14394 components: - pos: 28.5,-26.5 parent: 2 type: Transform - - uid: 14386 + - uid: 14395 components: - pos: -1.5,-72.5 parent: 2 type: Transform - - uid: 14387 + - uid: 14396 components: - pos: 14.5,16.5 parent: 2 type: Transform - - uid: 14388 + - uid: 14397 components: - pos: 28.5,23.5 parent: 2 type: Transform - - uid: 14389 + - uid: 14398 components: - pos: -50.5,-76.5 parent: 2 type: Transform - - uid: 14390 + - uid: 14399 components: - rot: 3.141592653589793 rad pos: 14.5,-3.5 parent: 2 type: Transform - - uid: 14391 + - uid: 14400 components: - pos: 19.5,-8.5 parent: 2 type: Transform - - uid: 14392 + - uid: 14401 components: - pos: -9.5,-29.5 parent: 2 type: Transform - - uid: 14393 + - uid: 14402 components: - rot: -1.5707963267948966 rad pos: -16.5,-30.5 parent: 2 type: Transform - - uid: 14394 + - uid: 14403 components: - rot: -1.5707963267948966 rad pos: -9.5,-2.5 parent: 2 type: Transform - - uid: 14395 + - uid: 14404 components: - rot: -1.5707963267948966 rad pos: 37.5,20.5 parent: 2 type: Transform - - uid: 14396 + - uid: 14405 components: - pos: 45.5,-40.5 parent: 2 type: Transform - - uid: 14397 + - uid: 14406 components: - pos: 66.5,-48.5 parent: 2 type: Transform - - uid: 14398 + - uid: 14407 components: - pos: 42.5,-40.5 parent: 2 type: Transform - - uid: 14399 + - uid: 14408 components: - pos: 43.5,-40.5 parent: 2 type: Transform - - uid: 14400 + - uid: 14409 components: - pos: 62.5,-37.5 parent: 2 type: Transform - - uid: 14401 + - uid: 14410 components: - pos: -38.5,-22.5 parent: 2 type: Transform - - uid: 14402 + - uid: 14411 components: - rot: -1.5707963267948966 rad pos: 62.5,-16.5 parent: 2 type: Transform - - uid: 14403 + - uid: 14412 components: - pos: -3.5,13.5 parent: 2 type: Transform - - uid: 14404 + - uid: 14413 components: - pos: -31.5,-30.5 parent: 2 type: Transform - - uid: 14405 + - uid: 14414 components: - pos: -32.5,-30.5 parent: 2 type: Transform - - uid: 14406 + - uid: 14415 components: - pos: 41.5,-11.5 parent: 2 type: Transform - - uid: 14407 + - uid: 14416 components: - pos: 36.5,-8.5 parent: 2 type: Transform - - uid: 14408 + - uid: 14417 components: - pos: -29.5,-34.5 parent: 2 type: Transform - - uid: 14409 + - uid: 14418 components: - pos: -29.5,-33.5 parent: 2 type: Transform - - uid: 14410 + - uid: 14419 components: - pos: -60.5,-26.5 parent: 2 type: Transform - - uid: 14411 + - uid: 14420 components: - rot: 1.5707963267948966 rad pos: 6.5,-63.5 parent: 2 type: Transform - - uid: 14412 + - uid: 14421 components: - pos: -22.5,-26.5 parent: 2 type: Transform - - uid: 14413 + - uid: 14422 components: - pos: -29.5,-26.5 parent: 2 type: Transform - - uid: 14414 + - uid: 14423 components: - pos: -49.5,-5.5 parent: 2 type: Transform - - uid: 14415 + - uid: 14424 components: - pos: -49.5,-6.5 parent: 2 type: Transform - - uid: 14416 + - uid: 14425 components: - pos: -41.5,-69.5 parent: 2 type: Transform - - uid: 14417 + - uid: 14426 components: - pos: -42.5,-69.5 parent: 2 type: Transform - - uid: 14418 + - uid: 14427 components: - pos: -51.5,-63.5 parent: 2 type: Transform - - uid: 14419 + - uid: 14428 components: - pos: -56.5,-57.5 parent: 2 type: Transform - - uid: 14420 + - uid: 14429 components: - pos: -23.5,-51.5 parent: 2 type: Transform - - uid: 14421 + - uid: 14430 components: - pos: -42.5,-64.5 parent: 2 type: Transform - - uid: 14422 + - uid: 14431 components: - pos: -24.5,-64.5 parent: 2 type: Transform - - uid: 14423 + - uid: 14432 components: - pos: -30.5,-49.5 parent: 2 type: Transform - - uid: 14424 + - uid: 14433 components: - pos: -28.5,-56.5 parent: 2 type: Transform - - uid: 14425 + - uid: 14434 components: - pos: 44.5,-64.5 parent: 2 type: Transform - - uid: 14426 + - uid: 14435 components: - rot: 3.141592653589793 rad pos: 10.5,24.5 parent: 2 type: Transform - - uid: 14427 + - uid: 14436 components: - pos: 58.5,27.5 parent: 2 type: Transform - - uid: 14428 + - uid: 14437 components: - pos: -14.5,14.5 parent: 2 type: Transform - - uid: 14429 + - uid: 14438 components: - pos: 46.5,33.5 parent: 2 type: Transform - - uid: 14430 + - uid: 14439 components: - pos: 48.5,30.5 parent: 2 type: Transform - - uid: 14431 + - uid: 14440 components: - rot: -1.5707963267948966 rad pos: 6.5,-13.5 parent: 2 type: Transform - - uid: 14432 + - uid: 14441 components: - rot: -1.5707963267948966 rad pos: 0.5,-14.5 parent: 2 type: Transform - - uid: 14433 + - uid: 14442 components: - pos: 2.5,-13.5 parent: 2 type: Transform - - uid: 14434 + - uid: 14443 components: - pos: -45.5,13.5 parent: 2 type: Transform - - uid: 14435 + - uid: 14444 components: - pos: -26.5,22.5 parent: 2 type: Transform - - uid: 14436 + - uid: 14445 components: - pos: -1.5,14.5 parent: 2 type: Transform - - uid: 14437 + - uid: 14446 components: - pos: -45.5,17.5 parent: 2 type: Transform - - uid: 14438 + - uid: 14447 components: - rot: -1.5707963267948966 rad pos: -55.5,-29.5 parent: 2 type: Transform - - uid: 14439 + - uid: 14448 components: - pos: -24.5,-49.5 parent: 2 type: Transform - - uid: 14440 + - uid: 14449 components: - rot: 3.141592653589793 rad pos: -46.5,-2.5 parent: 2 type: Transform - - uid: 14441 + - uid: 14450 components: - pos: 21.5,9.5 parent: 2 type: Transform - - uid: 14442 + - uid: 14451 components: - rot: -1.5707963267948966 rad pos: -15.5,28.5 parent: 2 type: Transform - - uid: 14443 + - uid: 14452 components: - rot: -1.5707963267948966 rad pos: -26.5,-14.5 parent: 2 type: Transform - - uid: 14444 + - uid: 14453 components: - rot: -1.5707963267948966 rad pos: -30.5,-10.5 parent: 2 type: Transform - - uid: 14445 + - uid: 14454 components: - pos: -36.5,-14.5 parent: 2 type: Transform - - uid: 14446 + - uid: 14455 components: - rot: -1.5707963267948966 rad pos: -8.5,13.5 parent: 2 type: Transform - - uid: 14447 + - uid: 14456 components: - rot: -1.5707963267948966 rad pos: 64.5,16.5 parent: 2 type: Transform - - uid: 14448 + - uid: 14457 components: - rot: -1.5707963267948966 rad pos: 65.5,3.5 parent: 2 type: Transform - - uid: 14449 + - uid: 14458 components: - pos: 43.5,-55.5 parent: 2 type: Transform - - uid: 14450 + - uid: 14459 components: - rot: 3.141592653589793 rad pos: 4.5,-15.5 parent: 2 type: Transform - - uid: 14451 + - uid: 14460 components: - rot: 3.141592653589793 rad pos: -23.5,-45.5 parent: 2 type: Transform - - uid: 14452 + - uid: 14461 components: - pos: 8.5,-54.5 parent: 2 type: Transform - - uid: 14453 + - uid: 14462 components: - pos: 36.5,-47.5 parent: 2 type: Transform - - uid: 14454 + - uid: 14463 components: - pos: 14.5,-46.5 parent: 2 type: Transform - - uid: 14455 + - uid: 14464 components: - rot: -1.5707963267948966 rad pos: 36.5,-55.5 parent: 2 type: Transform - - uid: 14456 + - uid: 14465 components: - pos: -10.5,-46.5 parent: 2 type: Transform - - uid: 14457 + - uid: 14466 components: - pos: 0.5,10.5 parent: 2 type: Transform - - uid: 14458 + - uid: 14467 components: - pos: -16.5,-69.5 parent: 2 type: Transform - - uid: 14459 + - uid: 14468 components: - pos: -29.5,-72.5 parent: 2 type: Transform - - uid: 14460 + - uid: 14469 components: - pos: -35.5,-70.5 parent: 2 type: Transform - - uid: 14461 + - uid: 14470 components: - pos: 3.5,17.5 parent: 2 type: Transform - - uid: 14462 + - uid: 14471 components: - pos: 3.5,16.5 parent: 2 type: Transform - - uid: 14463 + - uid: 14472 components: - pos: -19.5,45.5 parent: 2 type: Transform - - uid: 14464 + - uid: 14473 components: - pos: -13.5,38.5 parent: 2 type: Transform - - uid: 14465 + - uid: 14474 components: - pos: -17.5,34.5 parent: 2 type: Transform - - uid: 14466 + - uid: 14475 components: - pos: -13.5,34.5 parent: 2 type: Transform - - uid: 14467 + - uid: 14476 components: - pos: -13.5,41.5 parent: 2 type: Transform - - uid: 14468 + - uid: 14477 components: - pos: -38.5,39.5 parent: 2 type: Transform - - uid: 14469 + - uid: 14478 components: - pos: -25.5,41.5 parent: 2 type: Transform - - uid: 14470 + - uid: 14479 components: - pos: -27.5,32.5 parent: 2 type: Transform - - uid: 14471 + - uid: 14480 components: - pos: -8.5,-76.5 parent: 2 type: Transform - - uid: 14472 + - uid: 14481 components: - pos: -13.5,-97.5 parent: 2 type: Transform - - uid: 14473 + - uid: 14482 components: - rot: 1.5707963267948966 rad pos: -72.5,-27.5 parent: 2 type: Transform - - uid: 14474 + - uid: 14483 components: - pos: 61.5,-37.5 parent: 2 type: Transform - - uid: 14475 + - uid: 14484 components: - pos: 66.5,-33.5 parent: 2 type: Transform - - uid: 14476 + - uid: 14485 components: - pos: 66.5,-34.5 parent: 2 type: Transform - - uid: 14477 + - uid: 14486 components: - pos: 69.5,-33.5 parent: 2 type: Transform - - uid: 14478 + - uid: 14487 components: - pos: 69.5,-34.5 parent: 2 type: Transform - - uid: 14479 + - uid: 14488 components: - pos: -17.5,-20.5 parent: 2 type: Transform - - uid: 14480 + - uid: 14489 components: - pos: 19.5,-44.5 parent: 2 type: Transform - - uid: 14481 + - uid: 14490 components: - rot: -1.5707963267948966 rad pos: 68.5,-62.5 parent: 2 type: Transform - - uid: 14482 + - uid: 14491 components: - rot: -1.5707963267948966 rad pos: 65.5,-65.5 parent: 2 type: Transform - - uid: 14483 + - uid: 14492 components: - rot: -1.5707963267948966 rad pos: 57.5,-65.5 parent: 2 type: Transform - - uid: 14484 + - uid: 14493 components: - rot: -1.5707963267948966 rad pos: 73.5,-57.5 parent: 2 type: Transform - - uid: 14485 + - uid: 14494 components: - pos: 16.5,30.5 parent: 2 type: Transform - - uid: 14486 + - uid: 14495 components: - pos: -6.5,-13.5 parent: 2 type: Transform - - uid: 14487 + - uid: 14496 components: - pos: -6.5,-9.5 parent: 2 type: Transform - - uid: 14488 + - uid: 14497 components: - pos: -13.5,-7.5 parent: 2 type: Transform - - uid: 14489 + - uid: 14498 components: - pos: -14.5,-14.5 parent: 2 type: Transform - - uid: 14490 + - uid: 14499 components: - pos: -15.5,-17.5 parent: 2 type: Transform - - uid: 14491 + - uid: 14500 components: - pos: -4.5,-51.5 parent: 2 type: Transform - proto: FirelockEdge entities: - - uid: 14492 + - uid: 14501 components: - rot: -1.5707963267948966 rad pos: 10.5,13.5 parent: 2 type: Transform - - uid: 14493 + - uid: 14502 components: - rot: -1.5707963267948966 rad pos: 10.5,14.5 parent: 2 type: Transform - - uid: 14494 + - uid: 14503 components: - rot: 3.141592653589793 rad pos: 59.5,21.5 parent: 2 type: Transform - - uid: 14495 + - uid: 14504 components: - rot: 3.141592653589793 rad pos: 56.5,21.5 parent: 2 type: Transform - - uid: 14496 + - uid: 14505 components: - rot: 3.141592653589793 rad pos: 53.5,21.5 parent: 2 type: Transform - - uid: 14497 + - uid: 14506 components: - rot: 3.141592653589793 rad pos: 50.5,21.5 parent: 2 type: Transform - - uid: 14498 + - uid: 14507 components: - rot: 3.141592653589793 rad pos: 47.5,21.5 parent: 2 type: Transform - - uid: 14499 + - uid: 14508 components: - rot: 1.5707963267948966 rad pos: 59.5,18.5 parent: 2 type: Transform - - uid: 14500 + - uid: 14509 components: - rot: 1.5707963267948966 rad pos: 59.5,15.5 parent: 2 type: Transform - - uid: 14501 + - uid: 14510 components: - rot: 1.5707963267948966 rad pos: 59.5,13.5 parent: 2 type: Transform - - uid: 14502 + - uid: 14511 components: - rot: -1.5707963267948966 rad pos: 61.5,21.5 parent: 2 type: Transform - - uid: 14503 + - uid: 14512 components: - rot: 1.5707963267948966 rad pos: 65.5,-46.5 parent: 2 type: Transform - - uid: 14504 + - uid: 14513 components: - rot: 1.5707963267948966 rad pos: 65.5,-45.5 @@ -112465,1810 +112482,1810 @@ entities: type: Transform - proto: FirelockElectronics entities: - - uid: 14505 + - uid: 14514 components: - pos: -8.422072,39.102524 parent: 2 type: Transform - - uid: 14506 + - uid: 14515 components: - pos: -8.656447,38.727524 parent: 2 type: Transform - proto: FirelockGlass entities: - - uid: 14507 + - uid: 14516 components: - pos: -69.5,-23.5 parent: 2 type: Transform - - uid: 14508 + - uid: 14517 components: - pos: -19.5,-39.5 parent: 2 type: Transform - - uid: 14509 + - uid: 14518 components: - pos: -19.5,-68.5 parent: 2 type: Transform - - uid: 14510 + - uid: 14519 components: - pos: 10.5,-26.5 parent: 2 type: Transform - - uid: 14511 + - uid: 14520 components: - pos: 24.5,-15.5 parent: 2 type: Transform - - uid: 14512 + - uid: 14521 components: - rot: -1.5707963267948966 rad pos: 15.5,3.5 parent: 2 type: Transform - - uid: 14513 + - uid: 14522 components: - pos: 11.5,4.5 parent: 2 type: Transform - - uid: 14514 + - uid: 14523 components: - pos: 11.5,-2.5 parent: 2 type: Transform - - uid: 14515 + - uid: 14524 components: - pos: 38.5,-69.5 parent: 2 type: Transform - - uid: 14516 + - uid: 14525 components: - pos: 15.5,7.5 parent: 2 type: Transform - - uid: 14517 + - uid: 14526 components: - pos: 16.5,18.5 parent: 2 type: Transform - - uid: 14518 + - uid: 14527 components: - pos: 27.5,18.5 parent: 2 type: Transform - - uid: 14519 + - uid: 14528 components: - pos: 31.5,-4.5 parent: 2 type: Transform - - uid: 14520 + - uid: 14529 components: - pos: 4.5,-2.5 parent: 2 type: Transform - - uid: 14521 + - uid: 14530 components: - pos: 7.5,7.5 parent: 2 type: Transform - - uid: 14522 + - uid: 14531 components: - pos: -6.5,4.5 parent: 2 type: Transform - - uid: 14523 + - uid: 14532 components: - rot: -1.5707963267948966 rad pos: 15.5,-1.5 parent: 2 type: Transform - - uid: 14524 + - uid: 14533 components: - pos: 18.5,-32.5 parent: 2 type: Transform - - uid: 14525 + - uid: 14534 components: - pos: -5.5,-55.5 parent: 2 type: Transform - - uid: 14526 + - uid: 14535 components: - pos: 32.5,-32.5 parent: 2 type: Transform - - uid: 14527 + - uid: 14536 components: - rot: -1.5707963267948966 rad pos: 18.5,15.5 parent: 2 type: Transform - - uid: 14528 + - uid: 14537 components: - pos: 35.5,-38.5 parent: 2 type: Transform - - uid: 14529 + - uid: 14538 components: - pos: -0.5,-69.5 parent: 2 type: Transform - - uid: 14530 + - uid: 14539 components: - rot: 3.141592653589793 rad pos: 3.5,-51.5 parent: 2 type: Transform - - uid: 14531 + - uid: 14540 components: - pos: -16.5,-43.5 parent: 2 type: Transform - - uid: 14532 + - uid: 14541 components: - pos: -16.5,-42.5 parent: 2 type: Transform - - uid: 14533 + - uid: 14542 components: - pos: -16.5,-41.5 parent: 2 type: Transform - - uid: 14534 + - uid: 14543 components: - pos: 26.5,-15.5 parent: 2 type: Transform - - uid: 14535 + - uid: 14544 components: - pos: -8.5,4.5 parent: 2 type: Transform - - uid: 14536 + - uid: 14545 components: - pos: -1.5,3.5 parent: 2 type: Transform - - uid: 14537 + - uid: 14546 components: - rot: -1.5707963267948966 rad pos: 15.5,-0.5 parent: 2 type: Transform - - uid: 14538 + - uid: 14547 components: - pos: 19.5,-6.5 parent: 2 type: Transform - - uid: 14539 + - uid: 14548 components: - pos: 1.5,-2.5 parent: 2 type: Transform - - uid: 14540 + - uid: 14549 components: - pos: 8.5,-68.5 parent: 2 type: Transform - - uid: 14541 + - uid: 14550 components: - pos: 35.5,-19.5 parent: 2 type: Transform - - uid: 14542 + - uid: 14551 components: - pos: 36.5,-19.5 parent: 2 type: Transform - - uid: 14543 + - uid: 14552 components: - pos: 7.5,-41.5 parent: 2 type: Transform - - uid: 14544 + - uid: 14553 components: - pos: 24.5,-44.5 parent: 2 type: Transform - - uid: 14545 + - uid: 14554 components: - rot: -1.5707963267948966 rad pos: 15.5,2.5 parent: 2 type: Transform - - uid: 14546 + - uid: 14555 components: - pos: 31.5,7.5 parent: 2 type: Transform - - uid: 14547 + - uid: 14556 components: - rot: 1.5707963267948966 rad pos: 43.5,14.5 parent: 2 type: Transform - - uid: 14548 + - uid: 14557 components: - pos: 22.5,-40.5 parent: 2 type: Transform - - uid: 14549 + - uid: 14558 components: - pos: 31.5,-5.5 parent: 2 type: Transform - - uid: 14550 + - uid: 14559 components: - pos: 10.5,4.5 parent: 2 type: Transform - - uid: 14551 + - uid: 14560 components: - pos: -21.5,-11.5 parent: 2 type: Transform - - uid: 14552 + - uid: 14561 components: - pos: 36.5,-38.5 parent: 2 type: Transform - - uid: 14553 + - uid: 14562 components: - pos: -3.5,-2.5 parent: 2 type: Transform - - uid: 14554 + - uid: 14563 components: - pos: -5.5,-2.5 parent: 2 type: Transform - - uid: 14555 + - uid: 14564 components: - pos: -21.5,-12.5 parent: 2 type: Transform - - uid: 14556 + - uid: 14565 components: - pos: -0.5,-25.5 parent: 2 type: Transform - - uid: 14557 + - uid: 14566 components: - rot: -1.5707963267948966 rad pos: 17.5,15.5 parent: 2 type: Transform - - uid: 14558 + - uid: 14567 components: - pos: 15.5,-19.5 parent: 2 type: Transform - - uid: 14559 + - uid: 14568 components: - pos: -9.5,-51.5 parent: 2 type: Transform - - uid: 14560 + - uid: 14569 components: - pos: -8.5,-51.5 parent: 2 type: Transform - - uid: 14561 + - uid: 14570 components: - pos: -19.5,-58.5 parent: 2 type: Transform - - uid: 14562 + - uid: 14571 components: - pos: -6.5,-62.5 parent: 2 type: Transform - - uid: 14563 + - uid: 14572 components: - pos: -2.5,-62.5 parent: 2 type: Transform - - uid: 14564 + - uid: 14573 components: - pos: 31.5,8.5 parent: 2 type: Transform - - uid: 14565 + - uid: 14574 components: - pos: 31.5,1.5 parent: 2 type: Transform - - uid: 14566 + - uid: 14575 components: - rot: -1.5707963267948966 rad pos: 19.5,14.5 parent: 2 type: Transform - - uid: 14567 + - uid: 14576 components: - pos: -46.5,27.5 parent: 2 type: Transform - - uid: 14568 + - uid: 14577 components: - pos: 35.5,2.5 parent: 2 type: Transform - - uid: 14569 + - uid: 14578 components: - pos: -23.5,-81.5 parent: 2 type: Transform - - uid: 14570 + - uid: 14579 components: - pos: 27.5,17.5 parent: 2 type: Transform - - uid: 14571 + - uid: 14580 components: - pos: 14.5,-19.5 parent: 2 type: Transform - - uid: 14572 + - uid: 14581 components: - pos: 7.5,9.5 parent: 2 type: Transform - - uid: 14573 + - uid: 14582 components: - pos: -7.5,4.5 parent: 2 type: Transform - - uid: 14574 + - uid: 14583 components: - pos: -1.5,-1.5 parent: 2 type: Transform - - uid: 14575 + - uid: 14584 components: - pos: 34.5,-19.5 parent: 2 type: Transform - - uid: 14576 + - uid: 14585 components: - pos: -1.5,2.5 parent: 2 type: Transform - - uid: 14577 + - uid: 14586 components: - pos: -0.5,-2.5 parent: 2 type: Transform - - uid: 14578 + - uid: 14587 components: - pos: 31.5,-6.5 parent: 2 type: Transform - - uid: 14579 + - uid: 14588 components: - pos: 31.5,6.5 parent: 2 type: Transform - - uid: 14580 + - uid: 14589 components: - pos: 15.5,6.5 parent: 2 type: Transform - - uid: 14581 + - uid: 14590 components: - pos: 19.5,7.5 parent: 2 type: Transform - - uid: 14582 + - uid: 14591 components: - pos: 11.5,18.5 parent: 2 type: Transform - - uid: 14583 + - uid: 14592 components: - pos: 10.5,-2.5 parent: 2 type: Transform - - uid: 14584 + - uid: 14593 components: - pos: 16.5,-38.5 parent: 2 type: Transform - - uid: 14585 + - uid: 14594 components: - pos: 26.5,-31.5 parent: 2 type: Transform - - uid: 14586 + - uid: 14595 components: - pos: -3.5,-22.5 parent: 2 type: Transform - - uid: 14587 + - uid: 14596 components: - pos: -0.5,-26.5 parent: 2 type: Transform - - uid: 14588 + - uid: 14597 components: - pos: -20.5,-39.5 parent: 2 type: Transform - - uid: 14589 + - uid: 14598 components: - pos: 10.5,-27.5 parent: 2 type: Transform - - uid: 14590 + - uid: 14599 components: - pos: -15.5,-58.5 parent: 2 type: Transform - - uid: 14591 + - uid: 14600 components: - pos: 1.5,4.5 parent: 2 type: Transform - - uid: 14592 + - uid: 14601 components: - pos: -4.5,-22.5 parent: 2 type: Transform - - uid: 14593 + - uid: 14602 components: - pos: 7.5,8.5 parent: 2 type: Transform - - uid: 14594 + - uid: 14603 components: - pos: 35.5,1.5 parent: 2 type: Transform - - uid: 14595 + - uid: 14604 components: - pos: 10.5,-25.5 parent: 2 type: Transform - - uid: 14596 + - uid: 14605 components: - pos: -2.5,-55.5 parent: 2 type: Transform - - uid: 14597 + - uid: 14606 components: - pos: 5.5,4.5 parent: 2 type: Transform - - uid: 14598 + - uid: 14607 components: - pos: 16.5,-19.5 parent: 2 type: Transform - - uid: 14599 + - uid: 14608 components: - pos: 19.5,6.5 parent: 2 type: Transform - - uid: 14600 + - uid: 14609 components: - pos: -4.5,-2.5 parent: 2 type: Transform - - uid: 14601 + - uid: 14610 components: - pos: -1.5,7.5 parent: 2 type: Transform - - uid: 14602 + - uid: 14611 components: - pos: -1.5,-0.5 parent: 2 type: Transform - - uid: 14603 + - uid: 14612 components: - pos: 19.5,-5.5 parent: 2 type: Transform - - uid: 14604 + - uid: 14613 components: - pos: -27.5,1.5 parent: 2 type: Transform - - uid: 14605 + - uid: 14614 components: - pos: 7.5,-42.5 parent: 2 type: Transform - - uid: 14606 + - uid: 14615 components: - pos: -7.5,-51.5 parent: 2 type: Transform - - uid: 14607 + - uid: 14616 components: - pos: 7.5,-43.5 parent: 2 type: Transform - - uid: 14608 + - uid: 14617 components: - pos: -8.5,-55.5 parent: 2 type: Transform - - uid: 14609 + - uid: 14618 components: - pos: 28.5,-40.5 parent: 2 type: Transform - - uid: 14610 + - uid: 14619 components: - pos: 34.5,-38.5 parent: 2 type: Transform - - uid: 14611 + - uid: 14620 components: - pos: 38.5,-0.5 parent: 2 type: Transform - - uid: 14612 + - uid: 14621 components: - pos: 25.5,-15.5 parent: 2 type: Transform - - uid: 14613 + - uid: 14622 components: - pos: 14.5,-38.5 parent: 2 type: Transform - - uid: 14614 + - uid: 14623 components: - pos: -11.5,-55.5 parent: 2 type: Transform - - uid: 14615 + - uid: 14624 components: - pos: 20.5,-15.5 parent: 2 type: Transform - - uid: 14616 + - uid: 14625 components: - pos: 0.5,-55.5 parent: 2 type: Transform - - uid: 14617 + - uid: 14626 components: - pos: 11.5,-29.5 parent: 2 type: Transform - - uid: 14618 + - uid: 14627 components: - pos: 35.5,-3.5 parent: 2 type: Transform - - uid: 14619 + - uid: 14628 components: - pos: -22.5,-81.5 parent: 2 type: Transform - - uid: 14620 + - uid: 14629 components: - pos: -15.5,-55.5 parent: 2 type: Transform - - uid: 14621 + - uid: 14630 components: - pos: 25.5,-44.5 parent: 2 type: Transform - - uid: 14622 + - uid: 14631 components: - pos: -14.5,-55.5 parent: 2 type: Transform - - uid: 14623 + - uid: 14632 components: - pos: 19.5,-4.5 parent: 2 type: Transform - - uid: 14624 + - uid: 14633 components: - pos: -0.5,-27.5 parent: 2 type: Transform - - uid: 14625 + - uid: 14634 components: - pos: -18.5,-39.5 parent: 2 type: Transform - - uid: 14626 + - uid: 14635 components: - pos: -5.5,-22.5 parent: 2 type: Transform - - uid: 14627 + - uid: 14636 components: - pos: 0.5,-2.5 parent: 2 type: Transform - - uid: 14628 + - uid: 14637 components: - pos: 4.5,11.5 parent: 2 type: Transform - - uid: 14629 + - uid: 14638 components: - pos: 5.5,11.5 parent: 2 type: Transform - - uid: 14630 + - uid: 14639 components: - pos: -5.5,-39.5 parent: 2 type: Transform - - uid: 14631 + - uid: 14640 components: - pos: -4.5,-39.5 parent: 2 type: Transform - - uid: 14632 + - uid: 14641 components: - pos: -3.5,-39.5 parent: 2 type: Transform - - uid: 14633 + - uid: 14642 components: - pos: 0.5,4.5 parent: 2 type: Transform - - uid: 14634 + - uid: 14643 components: - pos: 2.5,4.5 parent: 2 type: Transform - - uid: 14635 + - uid: 14644 components: - pos: 22.5,-44.5 parent: 2 type: Transform - - uid: 14636 + - uid: 14645 components: - pos: -8.5,-40.5 parent: 2 type: Transform - - uid: 14637 + - uid: 14646 components: - pos: 21.5,-44.5 parent: 2 type: Transform - - uid: 14638 + - uid: 14647 components: - pos: 27.5,21.5 parent: 2 type: Transform - - uid: 14639 + - uid: 14648 components: - rot: 1.5707963267948966 rad pos: 48.5,6.5 parent: 2 type: Transform - - uid: 14640 + - uid: 14649 components: - rot: 1.5707963267948966 rad pos: 43.5,19.5 parent: 2 type: Transform - - uid: 14641 + - uid: 14650 components: - rot: 1.5707963267948966 rad pos: 43.5,20.5 parent: 2 type: Transform - - uid: 14642 + - uid: 14651 components: - rot: 1.5707963267948966 rad pos: 43.5,15.5 parent: 2 type: Transform - - uid: 14643 + - uid: 14652 components: - rot: 1.5707963267948966 rad pos: 61.5,4.5 parent: 2 type: Transform - - uid: 14644 + - uid: 14653 components: - pos: 51.5,-3.5 parent: 2 type: Transform - - uid: 14645 + - uid: 14654 components: - pos: 52.5,-3.5 parent: 2 type: Transform - - uid: 14646 + - uid: 14655 components: - pos: 53.5,-3.5 parent: 2 type: Transform - - uid: 14647 + - uid: 14656 components: - pos: -21.5,30.5 parent: 2 type: Transform - - uid: 14648 + - uid: 14657 components: - rot: 1.5707963267948966 rad pos: 46.5,15.5 parent: 2 type: Transform - - uid: 14649 + - uid: 14658 components: - pos: 15.5,-38.5 parent: 2 type: Transform - - uid: 14650 + - uid: 14659 components: - pos: 47.5,-37.5 parent: 2 type: Transform - - uid: 14651 + - uid: 14660 components: - pos: 47.5,-43.5 parent: 2 type: Transform - - uid: 14652 + - uid: 14661 components: - pos: 47.5,-45.5 parent: 2 type: Transform - - uid: 14653 + - uid: 14662 components: - pos: 47.5,-41.5 parent: 2 type: Transform - - uid: 14654 + - uid: 14663 components: - pos: 62.5,-41.5 parent: 2 type: Transform - - uid: 14655 + - uid: 14664 components: - pos: 62.5,-50.5 parent: 2 type: Transform - - uid: 14656 + - uid: 14665 components: - pos: 47.5,-46.5 parent: 2 type: Transform - - uid: 14657 + - uid: 14666 components: - pos: 40.5,-43.5 parent: 2 type: Transform - - uid: 14658 + - uid: 14667 components: - pos: 40.5,-42.5 parent: 2 type: Transform - - uid: 14659 + - uid: 14668 components: - pos: 40.5,-41.5 parent: 2 type: Transform - - uid: 14660 + - uid: 14669 components: - pos: 49.5,-48.5 parent: 2 type: Transform - - uid: 14661 + - uid: 14670 components: - pos: 50.5,-48.5 parent: 2 type: Transform - - uid: 14662 + - uid: 14671 components: - pos: 47.5,-42.5 parent: 2 type: Transform - - uid: 14663 + - uid: 14672 components: - pos: 46.5,-10.5 parent: 2 type: Transform - - uid: 14664 + - uid: 14673 components: - rot: -1.5707963267948966 rad pos: 64.5,-4.5 parent: 2 type: Transform - - uid: 14665 + - uid: 14674 components: - pos: -34.5,-33.5 parent: 2 type: Transform - - uid: 14666 + - uid: 14675 components: - pos: -34.5,-34.5 parent: 2 type: Transform - - uid: 14667 + - uid: 14676 components: - pos: -21.5,-21.5 parent: 2 type: Transform - - uid: 14668 + - uid: 14677 components: - pos: -27.5,0.5 parent: 2 type: Transform - - uid: 14669 + - uid: 14678 components: - pos: -19.5,-24.5 parent: 2 type: Transform - - uid: 14670 + - uid: 14679 components: - pos: -33.5,-16.5 parent: 2 type: Transform - - uid: 14671 + - uid: 14680 components: - pos: -27.5,-0.5 parent: 2 type: Transform - - uid: 14672 + - uid: 14681 components: - pos: -21.5,-32.5 parent: 2 type: Transform - - uid: 14673 + - uid: 14682 components: - pos: 39.5,-57.5 parent: 2 type: Transform - - uid: 14674 + - uid: 14683 components: - pos: 35.5,-59.5 parent: 2 type: Transform - - uid: 14675 + - uid: 14684 components: - pos: 35.5,-58.5 parent: 2 type: Transform - - uid: 14676 + - uid: 14685 components: - pos: 35.5,-60.5 parent: 2 type: Transform - - uid: 14677 + - uid: 14686 components: - pos: -14.5,-58.5 parent: 2 type: Transform - - uid: 14678 + - uid: 14687 components: - pos: -11.5,-58.5 parent: 2 type: Transform - - uid: 14679 + - uid: 14688 components: - pos: 39.5,-69.5 parent: 2 type: Transform - - uid: 14680 + - uid: 14689 components: - pos: 40.5,-69.5 parent: 2 type: Transform - - uid: 14681 + - uid: 14690 components: - pos: -0.5,-51.5 parent: 2 type: Transform - - uid: 14682 + - uid: 14691 components: - pos: -1.5,-51.5 parent: 2 type: Transform - - uid: 14683 + - uid: 14692 components: - pos: 0.5,-51.5 parent: 2 type: Transform - - uid: 14684 + - uid: 14693 components: - pos: -8.5,-58.5 parent: 2 type: Transform - - uid: 14685 + - uid: 14694 components: - pos: -32.5,-19.5 parent: 2 type: Transform - - uid: 14686 + - uid: 14695 components: - pos: -31.5,-19.5 parent: 2 type: Transform - - uid: 14687 + - uid: 14696 components: - pos: -40.5,-6.5 parent: 2 type: Transform - - uid: 14688 + - uid: 14697 components: - pos: -40.5,-5.5 parent: 2 type: Transform - - uid: 14689 + - uid: 14698 components: - pos: 3.5,-55.5 parent: 2 type: Transform - - uid: 14690 + - uid: 14699 components: - pos: -21.5,-34.5 parent: 2 type: Transform - - uid: 14691 + - uid: 14700 components: - pos: -33.5,-40.5 parent: 2 type: Transform - - uid: 14692 + - uid: 14701 components: - pos: -33.5,-41.5 parent: 2 type: Transform - - uid: 14693 + - uid: 14702 components: - pos: -54.5,-21.5 parent: 2 type: Transform - - uid: 14694 + - uid: 14703 components: - pos: -53.5,-21.5 parent: 2 type: Transform - - uid: 14695 + - uid: 14704 components: - pos: -69.5,-24.5 parent: 2 type: Transform - - uid: 14696 + - uid: 14705 components: - pos: -20.5,-24.5 parent: 2 type: Transform - - uid: 14697 + - uid: 14706 components: - pos: -18.5,-24.5 parent: 2 type: Transform - - uid: 14698 + - uid: 14707 components: - pos: -26.5,-16.5 parent: 2 type: Transform - - uid: 14699 + - uid: 14708 components: - pos: -26.5,-17.5 parent: 2 type: Transform - - uid: 14700 + - uid: 14709 components: - pos: -33.5,-11.5 parent: 2 type: Transform - - uid: 14701 + - uid: 14710 components: - pos: -33.5,-10.5 parent: 2 type: Transform - - uid: 14702 + - uid: 14711 components: - pos: -41.5,-8.5 parent: 2 type: Transform - - uid: 14703 + - uid: 14712 components: - pos: -42.5,-8.5 parent: 2 type: Transform - - uid: 14704 + - uid: 14713 components: - pos: -40.5,-10.5 parent: 2 type: Transform - - uid: 14705 + - uid: 14714 components: - pos: -63.5,-23.5 parent: 2 type: Transform - - uid: 14706 + - uid: 14715 components: - pos: -21.5,-60.5 parent: 2 type: Transform - - uid: 14707 + - uid: 14716 components: - pos: -21.5,20.5 parent: 2 type: Transform - - uid: 14708 + - uid: 14717 components: - pos: -21.5,21.5 parent: 2 type: Transform - - uid: 14709 + - uid: 14718 components: - pos: -20.5,14.5 parent: 2 type: Transform - - uid: 14710 + - uid: 14719 components: - pos: -19.5,14.5 parent: 2 type: Transform - - uid: 14711 + - uid: 14720 components: - pos: -18.5,14.5 parent: 2 type: Transform - - uid: 14712 + - uid: 14721 components: - rot: -1.5707963267948966 rad pos: -17.5,25.5 parent: 2 type: Transform - - uid: 14713 + - uid: 14722 components: - pos: -38.5,2.5 parent: 2 type: Transform - - uid: 14714 + - uid: 14723 components: - pos: -37.5,2.5 parent: 2 type: Transform - - uid: 14715 + - uid: 14724 components: - pos: -44.5,1.5 parent: 2 type: Transform - - uid: 14716 + - uid: 14725 components: - pos: -44.5,0.5 parent: 2 type: Transform - - uid: 14717 + - uid: 14726 components: - pos: 1.5,-46.5 parent: 2 type: Transform - - uid: 14718 + - uid: 14727 components: - pos: 1.5,-48.5 parent: 2 type: Transform - - uid: 14719 + - uid: 14728 components: - rot: 3.141592653589793 rad pos: 5.5,-51.5 parent: 2 type: Transform - - uid: 14720 + - uid: 14729 components: - pos: -3.5,-62.5 parent: 2 type: Transform - - uid: 14721 + - uid: 14730 components: - pos: -5.5,-62.5 parent: 2 type: Transform - - uid: 14722 + - uid: 14731 components: - pos: -45.5,9.5 parent: 2 type: Transform - - uid: 14723 + - uid: 14732 components: - pos: -44.5,-0.5 parent: 2 type: Transform - - uid: 14724 + - uid: 14733 components: - rot: 1.5707963267948966 rad pos: 46.5,14.5 parent: 2 type: Transform - - uid: 14725 + - uid: 14734 components: - pos: -5.5,-58.5 parent: 2 type: Transform - - uid: 14726 + - uid: 14735 components: - pos: -46.5,9.5 parent: 2 type: Transform - - uid: 14727 + - uid: 14736 components: - pos: -19.5,-7.5 parent: 2 type: Transform - - uid: 14728 + - uid: 14737 components: - pos: -18.5,-7.5 parent: 2 type: Transform - - uid: 14729 + - uid: 14738 components: - pos: -20.5,-7.5 parent: 2 type: Transform - - uid: 14730 + - uid: 14739 components: - pos: 35.5,0.5 parent: 2 type: Transform - - uid: 14731 + - uid: 14740 components: - pos: -32.5,27.5 parent: 2 type: Transform - - uid: 14732 + - uid: 14741 components: - pos: -13.5,-25.5 parent: 2 type: Transform - - uid: 14733 + - uid: 14742 components: - pos: -13.5,-26.5 parent: 2 type: Transform - - uid: 14734 + - uid: 14743 components: - pos: -13.5,-27.5 parent: 2 type: Transform - - uid: 14735 + - uid: 14744 components: - pos: -63.5,-24.5 parent: 2 type: Transform - - uid: 14736 + - uid: 14745 components: - pos: -11.5,-0.5 parent: 2 type: Transform - - uid: 14737 + - uid: 14746 components: - pos: -11.5,-1.5 parent: 2 type: Transform - - uid: 14738 + - uid: 14747 components: - pos: -11.5,3.5 parent: 2 type: Transform - - uid: 14739 + - uid: 14748 components: - pos: -11.5,2.5 parent: 2 type: Transform - - uid: 14740 + - uid: 14749 components: - pos: -24.5,9.5 parent: 2 type: Transform - - uid: 14741 + - uid: 14750 components: - rot: 3.141592653589793 rad pos: 43.5,6.5 parent: 2 type: Transform - - uid: 14742 + - uid: 14751 components: - pos: 26.5,19.5 parent: 2 type: Transform - - uid: 14743 + - uid: 14752 components: - pos: 25.5,19.5 parent: 2 type: Transform - - uid: 14744 + - uid: 14753 components: - pos: 24.5,19.5 parent: 2 type: Transform - - uid: 14745 + - uid: 14754 components: - rot: 3.141592653589793 rad pos: -26.5,-12.5 parent: 2 type: Transform - - uid: 14746 + - uid: 14755 components: - pos: 26.5,-44.5 parent: 2 type: Transform - - uid: 14747 + - uid: 14756 components: - pos: -10.5,4.5 parent: 2 type: Transform - - uid: 14748 + - uid: 14757 components: - pos: 3.5,-58.5 parent: 2 type: Transform - - uid: 14749 + - uid: 14758 components: - pos: -2.5,-58.5 parent: 2 type: Transform - - uid: 14750 + - uid: 14759 components: - pos: 0.5,-58.5 parent: 2 type: Transform - - uid: 14751 + - uid: 14760 components: - pos: 31.5,-57.5 parent: 2 type: Transform - - uid: 14752 + - uid: 14761 components: - pos: 49.5,-13.5 parent: 2 type: Transform - - uid: 14753 + - uid: 14762 components: - pos: -24.5,-74.5 parent: 2 type: Transform - - uid: 14754 + - uid: 14763 components: - pos: 3.5,-62.5 parent: 2 type: Transform - - uid: 14755 + - uid: 14764 components: - pos: -51.5,-21.5 parent: 2 type: Transform - - uid: 14756 + - uid: 14765 components: - pos: -40.5,-11.5 parent: 2 type: Transform - - uid: 14757 + - uid: 14766 components: - pos: -43.5,-10.5 parent: 2 type: Transform - - uid: 14758 + - uid: 14767 components: - pos: -43.5,-11.5 parent: 2 type: Transform - - uid: 14759 + - uid: 14768 components: - pos: -13.5,-51.5 parent: 2 type: Transform - - uid: 14760 + - uid: 14769 components: - pos: 22.5,19.5 parent: 2 type: Transform - - uid: 14761 + - uid: 14770 components: - pos: 6.5,18.5 parent: 2 type: Transform - - uid: 14762 + - uid: 14771 components: - pos: -18.5,-74.5 parent: 2 type: Transform - - uid: 14763 + - uid: 14772 components: - pos: -20.5,-83.5 parent: 2 type: Transform - - uid: 14764 + - uid: 14773 components: - pos: 54.5,-44.5 parent: 2 type: Transform - - uid: 14765 + - uid: 14774 components: - pos: 54.5,-45.5 parent: 2 type: Transform - - uid: 14766 + - uid: 14775 components: - pos: 58.5,-44.5 parent: 2 type: Transform - - uid: 14767 + - uid: 14776 components: - pos: 58.5,-45.5 parent: 2 type: Transform - - uid: 14768 + - uid: 14777 components: - pos: -12.5,68.5 parent: 2 type: Transform - - uid: 14769 + - uid: 14778 components: - rot: 1.5707963267948966 rad pos: -18.5,55.5 parent: 2 type: Transform - - uid: 14770 + - uid: 14779 components: - pos: -19.5,43.5 parent: 2 type: Transform - - uid: 14771 + - uid: 14780 components: - pos: -19.5,42.5 parent: 2 type: Transform - - uid: 14772 + - uid: 14781 components: - pos: -19.5,41.5 parent: 2 type: Transform - - uid: 14773 + - uid: 14782 components: - pos: -17.5,30.5 parent: 2 type: Transform - - uid: 14774 + - uid: 14783 components: - pos: -17.5,29.5 parent: 2 type: Transform - - uid: 14775 + - uid: 14784 components: - pos: -11.5,43.5 parent: 2 type: Transform - - uid: 14776 + - uid: 14785 components: - pos: -10.5,43.5 parent: 2 type: Transform - - uid: 14777 + - uid: 14786 components: - pos: -9.5,43.5 parent: 2 type: Transform - - uid: 14778 + - uid: 14787 components: - pos: -20.5,49.5 parent: 2 type: Transform - - uid: 14779 + - uid: 14788 components: - pos: -21.5,49.5 parent: 2 type: Transform - - uid: 14780 + - uid: 14789 components: - pos: 8.5,-38.5 parent: 2 type: Transform - - uid: 14781 + - uid: 14790 components: - pos: -13.5,46.5 parent: 2 type: Transform - - uid: 14782 + - uid: 14791 components: - pos: -13.5,45.5 parent: 2 type: Transform - - uid: 14783 + - uid: 14792 components: - pos: -13.5,44.5 parent: 2 type: Transform - - uid: 14784 + - uid: 14793 components: - pos: 1.5,53.5 parent: 2 type: Transform - - uid: 14785 + - uid: 14794 components: - pos: 0.5,53.5 parent: 2 type: Transform - - uid: 14786 + - uid: 14795 components: - pos: -0.5,53.5 parent: 2 type: Transform - - uid: 14787 + - uid: 14796 components: - pos: -18.5,48.5 parent: 2 type: Transform - - uid: 14788 + - uid: 14797 components: - pos: -17.5,48.5 parent: 2 type: Transform - - uid: 14789 + - uid: 14798 components: - pos: -16.5,48.5 parent: 2 type: Transform - - uid: 14790 + - uid: 14799 components: - pos: -13.5,68.5 parent: 2 type: Transform - - uid: 14791 + - uid: 14800 components: - pos: -21.5,68.5 parent: 2 type: Transform - - uid: 14792 + - uid: 14801 components: - pos: -22.5,68.5 parent: 2 type: Transform - - uid: 14793 + - uid: 14802 components: - pos: -11.5,59.5 parent: 2 type: Transform - - uid: 14794 + - uid: 14803 components: - pos: -11.5,58.5 parent: 2 type: Transform - - uid: 14795 + - uid: 14804 components: - pos: -15.5,51.5 parent: 2 type: Transform - - uid: 14796 + - uid: 14805 components: - pos: -15.5,50.5 parent: 2 type: Transform - - uid: 14797 + - uid: 14806 components: - rot: 3.141592653589793 rad pos: -4.5,47.5 parent: 2 type: Transform - - uid: 14798 + - uid: 14807 components: - rot: 3.141592653589793 rad pos: -11.5,52.5 parent: 2 type: Transform - - uid: 14799 + - uid: 14808 components: - rot: 3.141592653589793 rad pos: -6.5,57.5 parent: 2 type: Transform - - uid: 14800 + - uid: 14809 components: - pos: -24.5,48.5 parent: 2 type: Transform - - uid: 14801 + - uid: 14810 components: - rot: 3.141592653589793 rad pos: 42.5,3.5 parent: 2 type: Transform - - uid: 14802 + - uid: 14811 components: - rot: 3.141592653589793 rad pos: 41.5,3.5 parent: 2 type: Transform - - uid: 14803 + - uid: 14812 components: - pos: -42.5,-86.5 parent: 2 type: Transform - - uid: 14804 + - uid: 14813 components: - pos: -41.5,-86.5 parent: 2 type: Transform - - uid: 14805 + - uid: 14814 components: - pos: -31.5,-97.5 parent: 2 type: Transform - - uid: 14806 + - uid: 14815 components: - pos: 61.5,-41.5 parent: 2 type: Transform - - uid: 14807 + - uid: 14816 components: - pos: 74.5,-39.5 parent: 2 type: Transform - - uid: 14808 + - uid: 14817 components: - pos: 75.5,-39.5 parent: 2 type: Transform - - uid: 14809 + - uid: 14818 components: - pos: 74.5,-42.5 parent: 2 type: Transform - - uid: 14810 + - uid: 14819 components: - pos: 75.5,-42.5 parent: 2 type: Transform - - uid: 14811 + - uid: 14820 components: - pos: -17.5,-22.5 parent: 2 type: Transform - - uid: 14812 + - uid: 14821 components: - pos: -17.5,-23.5 parent: 2 type: Transform - - uid: 14813 + - uid: 14822 components: - rot: 3.141592653589793 rad pos: 43.5,-33.5 parent: 2 type: Transform - - uid: 14814 + - uid: 14823 components: - pos: 4.5,-28.5 parent: 2 type: Transform - - uid: 14815 + - uid: 14824 components: - pos: -45.5,27.5 parent: 2 type: Transform - - uid: 14816 + - uid: 14825 components: - pos: 55.5,-29.5 parent: 2 type: Transform - - uid: 14817 + - uid: 14826 components: - pos: -41.5,26.5 parent: 2 type: Transform - - uid: 14818 + - uid: 14827 components: - pos: 55.5,-38.5 parent: 2 type: Transform - - uid: 14819 + - uid: 14828 components: - rot: -1.5707963267948966 rad pos: 6.5,-72.5 parent: 2 type: Transform - - uid: 14820 + - uid: 14829 components: - pos: 23.5,-83.5 parent: 2 type: Transform - - uid: 14821 + - uid: 14830 components: - pos: 20.5,-83.5 parent: 2 type: Transform - - uid: 14822 + - uid: 14831 components: - rot: 3.141592653589793 rad pos: 29.5,-76.5 parent: 2 type: Transform - - uid: 14823 + - uid: 14832 components: - rot: 3.141592653589793 rad pos: 30.5,-76.5 parent: 2 type: Transform - - uid: 14824 + - uid: 14833 components: - rot: 3.141592653589793 rad pos: 31.5,-76.5 parent: 2 type: Transform - - uid: 14825 + - uid: 14834 components: - rot: 3.141592653589793 rad pos: 32.5,-71.5 parent: 2 type: Transform - - uid: 14826 + - uid: 14835 components: - rot: 3.141592653589793 rad pos: 32.5,-72.5 parent: 2 type: Transform - - uid: 14827 + - uid: 14836 components: - rot: 3.141592653589793 rad pos: 32.5,-73.5 parent: 2 type: Transform - - uid: 14828 + - uid: 14837 components: - rot: 3.141592653589793 rad pos: 46.5,-71.5 parent: 2 type: Transform - - uid: 14829 + - uid: 14838 components: - rot: 3.141592653589793 rad pos: 46.5,-72.5 parent: 2 type: Transform - - uid: 14830 + - uid: 14839 components: - rot: 3.141592653589793 rad pos: 46.5,-73.5 parent: 2 type: Transform - - uid: 14831 + - uid: 14840 components: - rot: 3.141592653589793 rad pos: 47.5,-76.5 parent: 2 type: Transform - - uid: 14832 + - uid: 14841 components: - rot: 3.141592653589793 rad pos: 48.5,-76.5 parent: 2 type: Transform - - uid: 14833 + - uid: 14842 components: - rot: 3.141592653589793 rad pos: 49.5,-76.5 parent: 2 type: Transform - - uid: 14834 + - uid: 14843 components: - rot: 3.141592653589793 rad pos: -14.5,66.5 parent: 2 type: Transform - - uid: 14835 + - uid: 14844 components: - rot: 3.141592653589793 rad pos: -20.5,66.5 parent: 2 type: Transform - - uid: 14836 + - uid: 14845 components: - pos: 45.5,3.5 parent: 2 type: Transform - - uid: 14837 + - uid: 14846 components: - pos: 8.5,-83.5 parent: 2 type: Transform - - uid: 14838 + - uid: 14847 components: - pos: -46.5,37.5 parent: 2 type: Transform - - uid: 14839 + - uid: 14848 components: - pos: -45.5,37.5 parent: 2 type: Transform - proto: Fireplace entities: - - uid: 14840 + - uid: 14849 components: - pos: 31.5,-27.5 parent: 2 type: Transform - - uid: 14841 + - uid: 14850 components: - pos: 12.5,14.5 parent: 2 type: Transform - proto: Flash entities: - - uid: 14842 + - uid: 14851 components: - pos: 2.3260884,20.921833 parent: 2 type: Transform - - uid: 14843 + - uid: 14852 components: - pos: 2.5760884,21.156208 parent: 2 type: Transform - - uid: 14844 + - uid: 14853 components: - pos: -15.513895,-23.550434 parent: 2 type: Transform - proto: FlashlightLantern entities: - - uid: 14845 + - uid: 14854 components: - pos: -57.60324,-35.44005 parent: 2 type: Transform - - uid: 14846 + - uid: 14855 components: - pos: 2.4386559,-17.536861 parent: 2 type: Transform - - uid: 14847 + - uid: 14856 components: - pos: 11.541302,-66.381775 parent: 2 type: Transform - - uid: 14848 + - uid: 14857 components: - pos: 10.459883,-56.492657 parent: 2 type: Transform - - uid: 14849 + - uid: 14858 components: - pos: 6.4653053,-69.51486 parent: 2 type: Transform - - uid: 14850 + - uid: 14859 components: - pos: 19.460886,-28.487753 parent: 2 type: Transform - - uid: 14851 + - uid: 14860 components: - pos: -31.518282,-62.54614 parent: 2 type: Transform - - uid: 14852 + - uid: 14861 components: - pos: 2.6315942,23.576332 parent: 2 type: Transform - - uid: 14853 + - uid: 14862 components: - pos: 58.39165,-37.43153 parent: 2 type: Transform - proto: FlashlightSeclite entities: - - uid: 14854 + - uid: 14863 components: - pos: 17.395416,21.653858 parent: 2 type: Transform - - uid: 14855 + - uid: 14864 components: - rot: 3.141592653589793 rad pos: 7.161119,12.488324 @@ -114276,124 +114293,124 @@ entities: type: Transform - proto: Floodlight entities: - - uid: 14856 + - uid: 14865 components: - pos: 6.532791,48.672844 parent: 2 type: Transform - - uid: 14857 + - uid: 14866 components: - pos: 9.471183,54.298565 parent: 2 type: Transform - proto: FloodlightBroken entities: - - uid: 14858 + - uid: 14867 components: - pos: 11.494867,-70.44923 parent: 2 type: Transform - proto: FloorDrain entities: - - uid: 14859 + - uid: 14868 components: - pos: 3.5,-48.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 14860 + - uid: 14869 components: - pos: -1.5,-66.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 14861 + - uid: 14870 components: - pos: 3.5,8.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 14862 + - uid: 14871 components: - pos: -15.5,-78.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 14863 + - uid: 14872 components: - pos: -1.5,-64.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 14864 + - uid: 14873 components: - pos: -7.5,-65.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 14865 + - uid: 14874 components: - pos: -9.5,-22.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 14866 + - uid: 14875 components: - pos: -15.5,-75.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 14867 + - uid: 14876 components: - pos: -20.5,-89.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 14868 + - uid: 14877 components: - pos: -25.5,-89.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 14869 + - uid: 14878 components: - pos: 53.5,17.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 14870 + - uid: 14879 components: - pos: 57.5,5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 14871 + - uid: 14880 components: - pos: 62.5,12.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 14872 + - uid: 14881 components: - pos: 62.5,22.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 14873 + - uid: 14882 components: - rot: 3.141592653589793 rad pos: 71.5,-49.5 @@ -114401,35 +114418,35 @@ entities: type: Transform - fixtures: {} type: Fixtures - - uid: 14874 + - uid: 14883 components: - pos: -9.5,-69.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 14875 + - uid: 14884 components: - pos: 1.5,-6.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 14876 + - uid: 14885 components: - pos: 3.5,-46.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 14877 + - uid: 14886 components: - pos: 1.5,12.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 14878 + - uid: 14887 components: - rot: 3.141592653589793 rad pos: 45.5,6.5 @@ -114439,7 +114456,7 @@ entities: type: Fixtures - proto: FloorTileItemFreezer entities: - - uid: 14879 + - uid: 14888 components: - pos: -9.469288,-100.35687 parent: 2 @@ -114448,7 +114465,7 @@ entities: type: Stack - proto: FloorTileItemLaundry entities: - - uid: 14880 + - uid: 14889 components: - pos: -9.484913,-95.4242 parent: 2 @@ -114457,7 +114474,7 @@ entities: type: Stack - proto: FloorTileItemWhite entities: - - uid: 14881 + - uid: 14890 components: - pos: -10.013714,-95.45264 parent: 2 @@ -114466,217 +114483,217 @@ entities: type: Stack - proto: FloraRockSolid01 entities: - - uid: 14882 + - uid: 14891 components: - pos: -35.842815,62.48777 parent: 2 type: Transform - - uid: 14883 + - uid: 14892 components: - pos: 64.48079,45.764553 parent: 2 type: Transform - proto: FloraRockSolid03 entities: - - uid: 14884 + - uid: 14893 components: - pos: -36.12132,66.345604 parent: 2 type: Transform - - uid: 14885 + - uid: 14894 components: - pos: 63.527668,48.936428 parent: 2 type: Transform - - uid: 14886 + - uid: 14895 components: - pos: 13.129076,49.02767 parent: 2 type: Transform - - uid: 14887 + - uid: 14896 components: - pos: 16.257528,57.816456 parent: 2 type: Transform - - uid: 14888 + - uid: 14897 components: - pos: 78.52854,-58.425747 parent: 2 type: Transform - proto: FloraTree01 entities: - - uid: 14889 + - uid: 14898 components: - pos: -40.510788,5.4778786 parent: 2 type: Transform - - uid: 14890 + - uid: 14899 components: - pos: 45.883274,-86.48348 parent: 2 type: Transform - proto: FloraTree02 entities: - - uid: 14891 + - uid: 14900 components: - pos: -3.160706,55.605114 parent: 2 type: Transform - - uid: 14892 + - uid: 14901 components: - pos: 33.292767,-85.71786 parent: 2 type: Transform - proto: FloraTree03 entities: - - uid: 14893 + - uid: 14902 components: - pos: 33.02714,-87.53036 parent: 2 type: Transform - proto: FloraTree04 entities: - - uid: 14894 + - uid: 14903 components: - pos: 31.9344,-39.9966 parent: 2 type: Transform - - uid: 14895 + - uid: 14904 components: - pos: 60.920433,-8.196068 parent: 2 type: Transform - - uid: 14896 + - uid: 14905 components: - pos: -9.341627,55.436527 parent: 2 type: Transform - - uid: 14897 + - uid: 14906 components: - pos: -35.771816,4.543429 parent: 2 type: Transform - proto: FloraTree05 entities: - - uid: 14898 + - uid: 14907 components: - pos: 54.09217,-7.7980886 parent: 2 type: Transform - - uid: 14899 + - uid: 14908 components: - pos: -8.496121,50.8569 parent: 2 type: Transform - proto: FloraTree06 entities: - - uid: 14900 + - uid: 14909 components: - pos: -35.026413,5.9935036 parent: 2 type: Transform - proto: FloraTreeLarge03 entities: - - uid: 14901 + - uid: 14910 components: - pos: 15.442133,-83.60979 parent: 2 type: Transform - proto: FoamBlade entities: - - uid: 14902 + - uid: 14911 components: - pos: -14.780027,-76.18346 parent: 2 type: Transform - proto: FoamCrossbow entities: - - uid: 14903 + - uid: 14912 components: - pos: -11.410641,41.56952 parent: 2 type: Transform - proto: FoodBakedCookieRaisin entities: - - uid: 14904 + - uid: 14913 components: - pos: -2.526709,-33.523388 parent: 2 type: Transform - proto: FoodBowlBig entities: - - uid: 14905 + - uid: 14914 components: - pos: -22.492924,44.20428 parent: 2 type: Transform - - uid: 14906 + - uid: 14915 components: - pos: -22.508549,43.813656 parent: 2 type: Transform - proto: FoodBoxDonkpocketDink entities: - - uid: 14907 + - uid: 14916 components: - pos: 46.42201,-49.40806 parent: 2 type: Transform - proto: FoodBoxDonkpocketHonk entities: - - uid: 14908 + - uid: 14917 components: - pos: 32.37506,-20.42581 parent: 2 type: Transform - proto: FoodBoxDonkpocketPizza entities: - - uid: 14909 + - uid: 14918 components: - pos: -30.632925,-69.35548 parent: 2 type: Transform - - uid: 14910 + - uid: 14919 components: - pos: 46.42201,-49.329933 parent: 2 type: Transform - proto: FoodBoxDonkpocketSpicy entities: - - uid: 14911 + - uid: 14920 components: - pos: -39.41441,-32.343586 parent: 2 type: Transform - proto: FoodBoxDonut entities: - - uid: 14912 + - uid: 14921 components: - pos: 52.62345,11.736868 parent: 2 type: Transform - - uid: 14913 + - uid: 14922 components: - pos: 25.290524,19.578499 parent: 2 type: Transform - proto: FoodBreadBanana entities: - - uid: 14914 + - uid: 14923 components: - pos: -36.588596,16.602194 parent: 2 type: Transform - proto: FoodBurgerBrain entities: - - uid: 14915 + - uid: 14924 components: - pos: -12.411479,-50.405228 parent: 2 type: Transform - proto: FoodBurgerRobot entities: - - uid: 14916 + - uid: 14925 components: - rot: 12.566370614359172 rad pos: 70.44214,-43.360043 @@ -114684,33 +114701,33 @@ entities: type: Transform - proto: FoodCakeClown entities: - - uid: 14917 + - uid: 14926 components: - pos: 1.5450791,-4.436863 parent: 2 type: Transform - proto: FoodCakeSpacemanSlice entities: - - uid: 14918 + - uid: 14927 components: - pos: -34.24552,17.570845 parent: 2 type: Transform - proto: FoodCondimentBottleEnzyme entities: - - uid: 14919 + - uid: 14928 components: - pos: 3.5430002,6.7808695 parent: 2 type: Transform - - uid: 14920 + - uid: 14929 components: - pos: 3.2617502,6.8589945 parent: 2 type: Transform - proto: FoodCornTrash entities: - - uid: 14921 + - uid: 14930 components: - rot: -1.5707963267948966 rad pos: 48.732845,33.42303 @@ -114718,28 +114735,28 @@ entities: type: Transform - proto: FoodDonkpocketBerry entities: - - uid: 14922 + - uid: 14931 components: - pos: -9.518124,43.595463 parent: 2 type: Transform - proto: FoodDonkpocketDink entities: - - uid: 14923 + - uid: 14932 components: - pos: -10.231451,43.574326 parent: 2 type: Transform - proto: FoodDonutChocolate entities: - - uid: 14924 + - uid: 14933 components: - pos: 8.49275,13.726382 parent: 2 type: Transform - proto: FoodFrozenPopsicleTrash entities: - - uid: 14925 + - uid: 14934 components: - rot: -1.5707963267948966 rad pos: 50.420345,33.45428 @@ -114747,62 +114764,62 @@ entities: type: Transform - proto: FoodLemon entities: - - uid: 14926 + - uid: 14935 components: - pos: 55.628414,-67.334946 parent: 2 type: Transform - proto: FoodMealEggplantParm entities: - - uid: 14927 + - uid: 14936 components: - pos: -23.359459,-71.33451 parent: 2 type: Transform - proto: FoodMealPotatoYaki entities: - - uid: 14928 + - uid: 14937 components: - pos: 44.419395,-49.295273 parent: 2 type: Transform - proto: FoodMeat entities: - - uid: 14929 + - uid: 14938 components: - pos: -16.53665,-77.55797 parent: 2 type: Transform - - uid: 14930 + - uid: 14939 components: - pos: 64.3404,48.319218 parent: 2 type: Transform - proto: FoodMeatHawaiianKebab entities: - - uid: 14931 + - uid: 14940 components: - pos: -12.469789,31.726183 parent: 2 type: Transform - proto: FoodPieBananaCream entities: - - uid: 14932 + - uid: 14941 components: - pos: 1.5036734,4.5642977 parent: 2 type: Transform - - uid: 14933 + - uid: 14942 components: - pos: 2.4842715,-4.47469 parent: 2 type: Transform - - uid: 14934 + - uid: 14943 components: - pos: -21.504532,37.662663 parent: 2 type: Transform - - uid: 30650 + - uid: 14944 components: - pos: 5.023752,11.565053 parent: 2 @@ -114811,94 +114828,94 @@ entities: type: EmitSoundOnCollide - proto: FoodPizzaMoldySlice entities: - - uid: 14935 + - uid: 14945 components: - pos: -58.327778,-27.35657 parent: 2 type: Transform - proto: FoodPizzaPineapple entities: - - uid: 14936 + - uid: 14946 components: - pos: -25.559431,-79.20157 parent: 2 type: Transform - proto: FoodPizzaVegetableSlice entities: - - uid: 14937 + - uid: 14947 components: - pos: 34.483707,-35.33738 parent: 2 type: Transform - proto: FoodPlatePlastic entities: - - uid: 14938 + - uid: 14948 components: - pos: 58.37584,20.738062 parent: 2 type: Transform - - uid: 14939 + - uid: 14949 components: - pos: 57.68834,19.831812 parent: 2 type: Transform - proto: FoodPlateSmallTrash entities: - - uid: 14940 + - uid: 14950 components: - pos: 12.393527,-66.326096 parent: 2 type: Transform - proto: FoodPlateTrash entities: - - uid: 14941 + - uid: 14951 components: - pos: 49.46722,33.501156 parent: 2 type: Transform - proto: FoodRiceBoiled entities: - - uid: 14942 + - uid: 14952 components: - pos: -19.538637,41.826466 parent: 2 type: Transform - proto: FoodRiceEgg entities: - - uid: 14943 + - uid: 14953 components: - pos: -19.538637,43.451466 parent: 2 type: Transform - proto: FoodRicePork entities: - - uid: 14944 + - uid: 14954 components: - pos: -14.4963455,47.699337 parent: 2 type: Transform - - uid: 14945 + - uid: 14955 components: - pos: -19.554262,42.701466 parent: 2 type: Transform - proto: FoodRicePudding entities: - - uid: 14946 + - uid: 14956 components: - pos: -18.492641,33.633274 parent: 2 type: Transform - proto: FoodSaladValid entities: - - uid: 14947 + - uid: 14957 components: - pos: -7.4460807,4.484113 parent: 2 type: Transform - proto: FoodSnackBoritos entities: - - uid: 14948 + - uid: 14958 components: - rot: -1.5707963267948966 rad pos: -11.473979,-49.827103 @@ -114906,14 +114923,14 @@ entities: type: Transform - proto: FoodSnackDanDanNoodles entities: - - uid: 14949 + - uid: 14959 components: - pos: -17.010939,42.53945 parent: 2 type: Transform - proto: FoodSnackRaisins entities: - - uid: 14950 + - uid: 14960 components: - rot: -1.5707963267948966 rad pos: -54.526974,-39.17369 @@ -114921,56 +114938,56 @@ entities: type: Transform - proto: FoodSnackSus entities: - - uid: 14951 + - uid: 14961 components: - pos: -12.469789,32.52306 parent: 2 type: Transform - proto: FoodSoupClown entities: - - uid: 14952 + - uid: 14962 components: - pos: 48.47484,-21.900894 parent: 2 type: Transform - proto: FoodSoupVegetable entities: - - uid: 14953 + - uid: 14963 components: - pos: -16.443905,21.40528 parent: 2 type: Transform - proto: FoodTartGapple entities: - - uid: 14954 + - uid: 14964 components: - pos: 44.89154,-26.413532 parent: 2 type: Transform - proto: FoodTartMime entities: - - uid: 14955 + - uid: 14965 components: - pos: -28.494537,45.97597 parent: 2 type: Transform - proto: FoodTinPeachesMaint entities: - - uid: 14956 + - uid: 14966 components: - pos: -27.385347,-52.20374 parent: 2 type: Transform - proto: FoodTinPeachesMaintOpen entities: - - uid: 14957 + - uid: 14967 components: - pos: 50.52597,42.757114 parent: 2 type: Transform - proto: FoodTinPeachesTrash entities: - - uid: 14958 + - uid: 14968 components: - rot: -1.5707963267948966 rad pos: 50.40472,33.469906 @@ -114978,7 +114995,7 @@ entities: type: Transform - proto: ForensicScanner entities: - - uid: 14959 + - uid: 14969 components: - rot: -1.5707963267948966 rad pos: 22.266937,-14.419123 @@ -114986,7 +115003,7 @@ entities: type: Transform - proto: GarlicSeeds entities: - - uid: 14960 + - uid: 14970 components: - pos: -10.5823765,11.42968 parent: 2 @@ -114995,121 +115012,121 @@ entities: type: EmitSoundOnCollide - proto: GasAnalyzer entities: - - uid: 14961 + - uid: 14971 components: - pos: -22.469156,-58.33799 parent: 2 type: Transform - - uid: 14962 + - uid: 14972 components: - pos: 53.6123,-53.30506 parent: 2 type: Transform - - uid: 14963 + - uid: 14973 components: - pos: -35.42214,-48.770245 parent: 2 type: Transform - - uid: 14964 + - uid: 14974 components: - pos: -37.231743,-32.468967 parent: 2 type: Transform - - uid: 14965 + - uid: 14975 components: - pos: 4.481148,-75.45175 parent: 2 type: Transform - proto: GasCanisterBrokenBase entities: - - uid: 14966 + - uid: 14976 components: - pos: -28.5,-21.5 parent: 2 type: Transform - proto: GasFilterFlipped entities: - - uid: 14967 + - uid: 14977 components: - rot: 3.141592653589793 rad pos: 45.5,-59.5 parent: 2 type: Transform - - uid: 14968 + - uid: 14978 components: - pos: -44.5,-46.5 parent: 2 type: Transform - - uid: 14969 + - uid: 14979 components: - pos: -44.5,-44.5 parent: 2 type: Transform - - uid: 14970 + - uid: 14980 components: - pos: -44.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 14971 + - uid: 14981 components: - pos: -44.5,-48.5 parent: 2 type: Transform - - uid: 14972 + - uid: 14982 components: - pos: -44.5,-50.5 parent: 2 type: Transform - - uid: 14973 + - uid: 14983 components: - pos: -44.5,-52.5 parent: 2 type: Transform - - uid: 14974 + - uid: 14984 components: - pos: -44.5,-54.5 parent: 2 type: Transform - proto: GasMinerCarbonDioxide entities: - - uid: 14975 + - uid: 14985 components: - pos: -49.5,-50.5 parent: 2 type: Transform - proto: GasMinerNitrogenStationLarge entities: - - uid: 14976 + - uid: 14986 components: - pos: -49.5,-54.5 parent: 2 type: Transform - proto: GasMinerOxygenStationLarge entities: - - uid: 14977 + - uid: 14987 components: - pos: -49.5,-52.5 parent: 2 type: Transform - proto: GasMinerPlasma entities: - - uid: 14978 + - uid: 14988 components: - pos: -49.5,-46.5 parent: 2 type: Transform - proto: GasMinerWaterVapor entities: - - uid: 14979 + - uid: 14989 components: - pos: -49.5,-48.5 parent: 2 type: Transform - proto: GasMixer entities: - - uid: 14980 + - uid: 14990 components: - rot: 1.5707963267948966 rad pos: 55.5,-59.5 @@ -115117,7 +115134,7 @@ entities: type: Transform - proto: GasMixerFlipped entities: - - uid: 14981 + - uid: 14991 components: - pos: -42.5,-51.5 parent: 2 @@ -115125,7 +115142,7 @@ entities: - inletTwoConcentration: 0 inletOneConcentration: 1 type: GasMixer - - uid: 14982 + - uid: 14992 components: - pos: -42.5,-52.5 parent: 2 @@ -115133,7 +115150,7 @@ entities: - inletTwoConcentration: 1 inletOneConcentration: 0 type: GasMixer - - uid: 14983 + - uid: 14993 components: - rot: -1.5707963267948966 rad pos: -42.5,-55.5 @@ -115144,7 +115161,7 @@ entities: type: GasMixer - color: '#03FCD3FF' type: AtmosPipeColor - - uid: 14984 + - uid: 14994 components: - pos: -42.5,-49.5 parent: 2 @@ -115152,7 +115169,7 @@ entities: - inletTwoConcentration: 0 inletOneConcentration: 1 type: GasMixer - - uid: 14985 + - uid: 14995 components: - pos: -42.5,-47.5 parent: 2 @@ -115160,7 +115177,7 @@ entities: - inletTwoConcentration: 0 inletOneConcentration: 1 type: GasMixer - - uid: 14986 + - uid: 14996 components: - pos: -42.5,-45.5 parent: 2 @@ -115168,7 +115185,7 @@ entities: - inletTwoConcentration: 0 inletOneConcentration: 1 type: GasMixer - - uid: 14987 + - uid: 14997 components: - pos: -42.5,-43.5 parent: 2 @@ -115178,80 +115195,80 @@ entities: type: GasMixer - proto: GasOutletInjector entities: - - uid: 14988 + - uid: 14998 components: - rot: 1.5707963267948966 rad pos: -48.5,-54.5 parent: 2 type: Transform - - uid: 14989 + - uid: 14999 components: - rot: 1.5707963267948966 rad pos: -48.5,-52.5 parent: 2 type: Transform - - uid: 14990 + - uid: 15000 components: - rot: 1.5707963267948966 rad pos: -48.5,-50.5 parent: 2 type: Transform - - uid: 14991 + - uid: 15001 components: - rot: 1.5707963267948966 rad pos: -48.5,-48.5 parent: 2 type: Transform - - uid: 14992 + - uid: 15002 components: - rot: 1.5707963267948966 rad pos: -48.5,-46.5 parent: 2 type: Transform - - uid: 14993 + - uid: 15003 components: - rot: 1.5707963267948966 rad pos: -48.5,-44.5 parent: 2 type: Transform - - uid: 14994 + - uid: 15004 components: - rot: 1.5707963267948966 rad pos: -48.5,-42.5 parent: 2 type: Transform - - uid: 14995 + - uid: 15005 components: - pos: -42.5,-35.5 parent: 2 type: Transform - proto: GasPassiveVent entities: - - uid: 14996 + - uid: 15006 components: - pos: -50.5,-52.5 parent: 2 type: Transform - - uid: 14997 + - uid: 15007 components: - pos: 73.5,-26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 14998 + - uid: 15008 components: - rot: 3.141592653589793 rad pos: 51.5,-60.5 parent: 2 type: Transform - - uid: 14999 + - uid: 15009 components: - rot: 3.141592653589793 rad pos: 48.5,-60.5 parent: 2 type: Transform - - uid: 15000 + - uid: 15010 components: - rot: 3.141592653589793 rad pos: 49.5,-63.5 @@ -115259,63 +115276,63 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15001 + - uid: 15011 components: - pos: -50.5,-54.5 parent: 2 type: Transform - - uid: 15002 + - uid: 15012 components: - pos: -50.5,-50.5 parent: 2 type: Transform - - uid: 15003 + - uid: 15013 components: - pos: -50.5,-48.5 parent: 2 type: Transform - - uid: 15004 + - uid: 15014 components: - pos: -50.5,-46.5 parent: 2 type: Transform - - uid: 15005 + - uid: 15015 components: - pos: -50.5,-44.5 parent: 2 type: Transform - - uid: 15006 + - uid: 15016 components: - pos: -50.5,-42.5 parent: 2 type: Transform - - uid: 15007 + - uid: 15017 components: - pos: -44.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15008 + - uid: 15018 components: - rot: 3.141592653589793 rad pos: -38.5,-60.5 parent: 2 type: Transform - - uid: 15009 + - uid: 15019 components: - pos: 1.5,26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15010 + - uid: 15020 components: - rot: 3.141592653589793 rad pos: 70.5,32.5 parent: 2 type: Transform - - uid: 15011 + - uid: 15021 components: - rot: 3.141592653589793 rad pos: 3.5,64.5 @@ -115323,7 +115340,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15012 + - uid: 15022 components: - rot: 3.141592653589793 rad pos: 2.5,63.5 @@ -115331,7 +115348,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15013 + - uid: 15023 components: - rot: 3.141592653589793 rad pos: -5.5,63.5 @@ -115339,7 +115356,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15014 + - uid: 15024 components: - rot: 3.141592653589793 rad pos: -6.5,64.5 @@ -115347,7 +115364,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15015 + - uid: 15025 components: - rot: 1.5707963267948966 rad pos: -0.5,69.5 @@ -115355,7 +115372,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15016 + - uid: 15026 components: - rot: -1.5707963267948966 rad pos: -2.5,69.5 @@ -115363,13 +115380,13 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15017 + - uid: 15027 components: - rot: 1.5707963267948966 rad pos: -73.5,-44.5 parent: 2 type: Transform - - uid: 15018 + - uid: 15028 components: - rot: 3.141592653589793 rad pos: 66.5,-40.5 @@ -115377,27 +115394,27 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15019 + - uid: 15029 components: - pos: 72.5,-29.5 parent: 2 type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 15020 + - uid: 15030 components: - rot: 3.141592653589793 rad pos: -55.5,-63.5 parent: 2 type: Transform - - uid: 15021 + - uid: 15031 components: - pos: 71.5,-29.5 parent: 2 type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 15022 + - uid: 15032 components: - rot: 1.5707963267948966 rad pos: 68.5,-38.5 @@ -115405,13 +115422,13 @@ entities: type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 15023 + - uid: 15033 components: - rot: 3.141592653589793 rad pos: 55.5,-51.5 parent: 2 type: Transform - - uid: 15024 + - uid: 15034 components: - rot: 1.5707963267948966 rad pos: 68.5,-37.5 @@ -115419,7 +115436,7 @@ entities: type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 15025 + - uid: 15035 components: - rot: -1.5707963267948966 rad pos: -44.5,-35.5 @@ -115427,7 +115444,7 @@ entities: type: Transform - proto: GasPipeBend entities: - - uid: 15026 + - uid: 15036 components: - rot: -1.5707963267948966 rad pos: 35.5,3.5 @@ -115437,7 +115454,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15027 + - uid: 15037 components: - rot: 3.141592653589793 rad pos: 20.5,-42.5 @@ -115445,7 +115462,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15028 + - uid: 15038 components: - rot: 1.5707963267948966 rad pos: -3.5,-53.5 @@ -115453,7 +115470,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15029 + - uid: 15039 components: - rot: 1.5707963267948966 rad pos: -1.5,-46.5 @@ -115461,21 +115478,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15030 + - uid: 15040 components: - pos: -7.5,-46.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15031 + - uid: 15041 components: - pos: -6.5,-63.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15032 + - uid: 15042 components: - rot: -1.5707963267948966 rad pos: 22.5,-5.5 @@ -115483,7 +115500,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15033 + - uid: 15043 components: - rot: 3.141592653589793 rad pos: 7.5,13.5 @@ -115491,21 +115508,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15034 + - uid: 15044 components: - pos: 36.5,5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15035 + - uid: 15045 components: - pos: 4.5,-3.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15036 + - uid: 15046 components: - rot: -1.5707963267948966 rad pos: 4.5,-6.5 @@ -115513,7 +115530,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15037 + - uid: 15047 components: - rot: 1.5707963267948966 rad pos: 3.5,-6.5 @@ -115521,14 +115538,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15038 + - uid: 15048 components: - pos: 29.5,21.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15039 + - uid: 15049 components: - rot: 3.141592653589793 rad pos: 29.5,18.5 @@ -115536,7 +115553,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15040 + - uid: 15050 components: - rot: 3.141592653589793 rad pos: -12.5,5.5 @@ -115544,7 +115561,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15041 + - uid: 15051 components: - rot: 1.5707963267948966 rad pos: -9.5,-1.5 @@ -115552,14 +115569,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15042 + - uid: 15052 components: - pos: -4.5,-60.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15043 + - uid: 15053 components: - rot: 1.5707963267948966 rad pos: -6.5,-60.5 @@ -115567,7 +115584,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15044 + - uid: 15054 components: - rot: -1.5707963267948966 rad pos: -6.5,-61.5 @@ -115575,7 +115592,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15045 + - uid: 15055 components: - rot: 1.5707963267948966 rad pos: 26.5,-22.5 @@ -115583,7 +115600,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15046 + - uid: 15056 components: - rot: 3.141592653589793 rad pos: 36.5,11.5 @@ -115593,7 +115610,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15047 + - uid: 15057 components: - rot: 1.5707963267948966 rad pos: 28.5,10.5 @@ -115601,14 +115618,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15048 + - uid: 15058 components: - pos: -12.5,7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15049 + - uid: 15059 components: - rot: 3.141592653589793 rad pos: 5.5,12.5 @@ -115616,14 +115633,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15050 + - uid: 15060 components: - pos: 34.5,5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15051 + - uid: 15061 components: - rot: 3.141592653589793 rad pos: 11.5,-43.5 @@ -115631,7 +115648,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15052 + - uid: 15062 components: - rot: 1.5707963267948966 rad pos: -14.5,-41.5 @@ -115639,7 +115656,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15053 + - uid: 15063 components: - rot: 1.5707963267948966 rad pos: -9.5,-53.5 @@ -115647,7 +115664,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15054 + - uid: 15064 components: - rot: 3.141592653589793 rad pos: -7.5,-63.5 @@ -115655,7 +115672,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15055 + - uid: 15065 components: - pos: 35.5,9.5 parent: 2 @@ -115664,7 +115681,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15056 + - uid: 15066 components: - rot: 3.141592653589793 rad pos: 17.5,-5.5 @@ -115672,7 +115689,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15057 + - uid: 15067 components: - rot: 1.5707963267948966 rad pos: 31.5,10.5 @@ -115680,7 +115697,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15058 + - uid: 15068 components: - rot: 3.141592653589793 rad pos: 29.5,15.5 @@ -115688,14 +115705,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15059 + - uid: 15069 components: - pos: 29.5,17.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15060 + - uid: 15070 components: - rot: 1.5707963267948966 rad pos: 25.5,12.5 @@ -115703,21 +115720,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15061 + - uid: 15071 components: - pos: 14.5,-27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15062 + - uid: 15072 components: - pos: 11.5,12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15063 + - uid: 15073 components: - rot: -1.5707963267948966 rad pos: 23.5,16.5 @@ -115725,7 +115742,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15064 + - uid: 15074 components: - rot: 3.141592653589793 rad pos: 26.5,9.5 @@ -115733,7 +115750,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15065 + - uid: 15075 components: - rot: 3.141592653589793 rad pos: 28.5,-35.5 @@ -115741,7 +115758,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15066 + - uid: 15076 components: - rot: 3.141592653589793 rad pos: 21.5,7.5 @@ -115749,7 +115766,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15067 + - uid: 15077 components: - rot: -1.5707963267948966 rad pos: 20.5,7.5 @@ -115757,7 +115774,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15068 + - uid: 15078 components: - rot: 1.5707963267948966 rad pos: 18.5,7.5 @@ -115765,14 +115782,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15069 + - uid: 15079 components: - pos: 1.5,1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15070 + - uid: 15080 components: - rot: 1.5707963267948966 rad pos: 1.5,-9.5 @@ -115780,7 +115797,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15071 + - uid: 15081 components: - rot: -1.5707963267948966 rad pos: 10.5,2.5 @@ -115788,7 +115805,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15072 + - uid: 15082 components: - rot: 1.5707963267948966 rad pos: 9.5,2.5 @@ -115796,7 +115813,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15073 + - uid: 15083 components: - rot: 3.141592653589793 rad pos: 9.5,-1.5 @@ -115804,14 +115821,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15074 + - uid: 15084 components: - pos: 11.5,-1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15075 + - uid: 15085 components: - rot: -1.5707963267948966 rad pos: 11.5,-9.5 @@ -115819,7 +115836,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15076 + - uid: 15086 components: - rot: 1.5707963267948966 rad pos: 19.5,21.5 @@ -115829,7 +115846,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15077 + - uid: 15087 components: - rot: 1.5707963267948966 rad pos: 23.5,20.5 @@ -115837,7 +115854,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15078 + - uid: 15088 components: - rot: -1.5707963267948966 rad pos: 25.5,20.5 @@ -115845,7 +115862,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15079 + - uid: 15089 components: - rot: -1.5707963267948966 rad pos: -23.5,-16.5 @@ -115853,7 +115870,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15080 + - uid: 15090 components: - rot: 1.5707963267948966 rad pos: 26.5,-6.5 @@ -115861,7 +115878,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15081 + - uid: 15091 components: - rot: 3.141592653589793 rad pos: 25.5,-7.5 @@ -115869,7 +115886,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15082 + - uid: 15092 components: - rot: 3.141592653589793 rad pos: 20.5,-23.5 @@ -115877,7 +115894,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15083 + - uid: 15093 components: - rot: 3.141592653589793 rad pos: 24.5,-52.5 @@ -115885,7 +115902,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15084 + - uid: 15094 components: - rot: -1.5707963267948966 rad pos: -10.5,5.5 @@ -115893,7 +115910,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15085 + - uid: 15095 components: - rot: 1.5707963267948966 rad pos: -10.5,7.5 @@ -115901,7 +115918,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15086 + - uid: 15096 components: - rot: 3.141592653589793 rad pos: -9.5,-5.5 @@ -115909,7 +115926,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15087 + - uid: 15097 components: - rot: 3.141592653589793 rad pos: -10.5,-6.5 @@ -115917,7 +115934,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15088 + - uid: 15098 components: - rot: 3.141592653589793 rad pos: -4.5,-61.5 @@ -115925,14 +115942,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15089 + - uid: 15099 components: - pos: 11.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15090 + - uid: 15100 components: - rot: 1.5707963267948966 rad pos: -21.5,-84.5 @@ -115940,14 +115957,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15091 + - uid: 15101 components: - pos: 36.5,8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15092 + - uid: 15102 components: - rot: -1.5707963267948966 rad pos: -3.5,7.5 @@ -115955,7 +115972,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15093 + - uid: 15103 components: - rot: 3.141592653589793 rad pos: -3.5,-60.5 @@ -115963,7 +115980,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15094 + - uid: 15104 components: - rot: 1.5707963267948966 rad pos: -7.5,-59.5 @@ -115971,7 +115988,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15095 + - uid: 15105 components: - rot: -1.5707963267948966 rad pos: -2.5,10.5 @@ -115979,14 +115996,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15096 + - uid: 15106 components: - pos: 1.5,7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15097 + - uid: 15107 components: - rot: 1.5707963267948966 rad pos: 34.5,10.5 @@ -115994,7 +116011,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15098 + - uid: 15108 components: - rot: 3.141592653589793 rad pos: 4.5,16.5 @@ -116002,7 +116019,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15099 + - uid: 15109 components: - pos: -4.5,14.5 parent: 2 @@ -116011,7 +116028,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15100 + - uid: 15110 components: - rot: 1.5707963267948966 rad pos: -6.5,14.5 @@ -116021,7 +116038,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15101 + - uid: 15111 components: - rot: -1.5707963267948966 rad pos: -6.5,8.5 @@ -116029,7 +116046,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15102 + - uid: 15112 components: - rot: 3.141592653589793 rad pos: -16.5,-38.5 @@ -116037,14 +116054,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15103 + - uid: 15113 components: - pos: -2.5,11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15104 + - uid: 15114 components: - rot: 3.141592653589793 rad pos: 1.5,5.5 @@ -116052,14 +116069,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15105 + - uid: 15115 components: - pos: 8.5,13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15106 + - uid: 15116 components: - rot: -1.5707963267948966 rad pos: 19.5,17.5 @@ -116067,7 +116084,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15107 + - uid: 15117 components: - rot: -1.5707963267948966 rad pos: 24.5,-31.5 @@ -116077,7 +116094,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15108 + - uid: 15118 components: - rot: 3.141592653589793 rad pos: 41.5,-27.5 @@ -116085,7 +116102,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15109 + - uid: 15119 components: - rot: 1.5707963267948966 rad pos: 23.5,-31.5 @@ -116095,7 +116112,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15110 + - uid: 15120 components: - rot: -1.5707963267948966 rad pos: -16.5,30.5 @@ -116103,7 +116120,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15111 + - uid: 15121 components: - rot: 1.5707963267948966 rad pos: -3.5,10.5 @@ -116111,7 +116128,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15112 + - uid: 15122 components: - rot: -1.5707963267948966 rad pos: 2.5,-14.5 @@ -116119,7 +116136,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15113 + - uid: 15123 components: - pos: 36.5,12.5 parent: 2 @@ -116128,7 +116145,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15114 + - uid: 15124 components: - rot: 3.141592653589793 rad pos: 0.5,7.5 @@ -116136,21 +116153,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15115 + - uid: 15125 components: - pos: 2.5,5.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15116 + - uid: 15126 components: - pos: 4.5,0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15117 + - uid: 15127 components: - rot: 3.141592653589793 rad pos: 4.5,-0.5 @@ -116158,7 +116175,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15118 + - uid: 15128 components: - rot: -1.5707963267948966 rad pos: -7.5,-53.5 @@ -116166,7 +116183,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15119 + - uid: 15129 components: - rot: 1.5707963267948966 rad pos: -8.5,8.5 @@ -116174,7 +116191,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15120 + - uid: 15130 components: - rot: 3.141592653589793 rad pos: 26.5,-18.5 @@ -116182,7 +116199,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15121 + - uid: 15131 components: - rot: 3.141592653589793 rad pos: 21.5,-18.5 @@ -116190,7 +116207,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15122 + - uid: 15132 components: - rot: 1.5707963267948966 rad pos: 10.5,11.5 @@ -116198,14 +116215,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15123 + - uid: 15133 components: - pos: 24.5,-23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15124 + - uid: 15134 components: - rot: -1.5707963267948966 rad pos: 3.5,-9.5 @@ -116213,7 +116230,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15125 + - uid: 15135 components: - rot: 3.141592653589793 rad pos: 1.5,-3.5 @@ -116221,7 +116238,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15126 + - uid: 15136 components: - rot: -1.5707963267948966 rad pos: -15.5,29.5 @@ -116229,7 +116246,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15127 + - uid: 15137 components: - rot: -1.5707963267948966 rad pos: 26.5,-35.5 @@ -116237,7 +116254,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15128 + - uid: 15138 components: - rot: 1.5707963267948966 rad pos: -24.5,-85.5 @@ -116245,7 +116262,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15129 + - uid: 15139 components: - rot: -1.5707963267948966 rad pos: 34.5,-6.5 @@ -116253,7 +116270,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15130 + - uid: 15140 components: - rot: 1.5707963267948966 rad pos: 15.5,-17.5 @@ -116261,7 +116278,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15131 + - uid: 15141 components: - rot: -1.5707963267948966 rad pos: -1.5,-53.5 @@ -116269,7 +116286,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15132 + - uid: 15142 components: - rot: 1.5707963267948966 rad pos: -23.5,-73.5 @@ -116277,7 +116294,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15133 + - uid: 15143 components: - rot: -1.5707963267948966 rad pos: 30.5,-22.5 @@ -116285,21 +116302,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15134 + - uid: 15144 components: - pos: 36.5,-16.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15135 + - uid: 15145 components: - pos: 34.5,-18.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15136 + - uid: 15146 components: - rot: 1.5707963267948966 rad pos: 41.5,-24.5 @@ -116307,7 +116324,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15137 + - uid: 15147 components: - rot: -1.5707963267948966 rad pos: 47.5,-28.5 @@ -116315,14 +116332,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15138 + - uid: 15148 components: - pos: 46.5,-23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15139 + - uid: 15149 components: - rot: 3.141592653589793 rad pos: 44.5,-28.5 @@ -116330,7 +116347,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15140 + - uid: 15150 components: - rot: 1.5707963267948966 rad pos: 44.5,-23.5 @@ -116338,7 +116355,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15141 + - uid: 15151 components: - rot: -1.5707963267948966 rad pos: -27.5,-79.5 @@ -116346,7 +116363,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15142 + - uid: 15152 components: - rot: 1.5707963267948966 rad pos: -25.5,-72.5 @@ -116354,7 +116371,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15143 + - uid: 15153 components: - rot: 1.5707963267948966 rad pos: -20.5,-61.5 @@ -116362,7 +116379,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15144 + - uid: 15154 components: - rot: 1.5707963267948966 rad pos: 32.5,-41.5 @@ -116370,7 +116387,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15145 + - uid: 15155 components: - rot: -1.5707963267948966 rad pos: 32.5,-42.5 @@ -116378,7 +116395,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15146 + - uid: 15156 components: - rot: 3.141592653589793 rad pos: 30.5,14.5 @@ -116386,7 +116403,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15147 + - uid: 15157 components: - rot: 3.141592653589793 rad pos: 47.5,21.5 @@ -116394,7 +116411,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15148 + - uid: 15158 components: - rot: 3.141592653589793 rad pos: 50.5,13.5 @@ -116402,7 +116419,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15149 + - uid: 15159 components: - rot: 3.141592653589793 rad pos: 49.5,12.5 @@ -116410,7 +116427,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15150 + - uid: 15160 components: - rot: -1.5707963267948966 rad pos: 58.5,12.5 @@ -116418,7 +116435,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15151 + - uid: 15161 components: - rot: 3.141592653589793 rad pos: 59.5,11.5 @@ -116426,7 +116443,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15152 + - uid: 15162 components: - rot: -1.5707963267948966 rad pos: 44.5,-3.5 @@ -116434,7 +116451,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15153 + - uid: 15163 components: - rot: 3.141592653589793 rad pos: 25.5,-60.5 @@ -116442,7 +116459,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15154 + - uid: 15164 components: - rot: 3.141592653589793 rad pos: 52.5,-11.5 @@ -116450,7 +116467,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15155 + - uid: 15165 components: - rot: 3.141592653589793 rad pos: 55.5,-12.5 @@ -116458,28 +116475,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15156 + - uid: 15166 components: - pos: 57.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15157 + - uid: 15167 components: - pos: 49.5,-52.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15158 + - uid: 15168 components: - pos: 63.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15159 + - uid: 15169 components: - rot: 3.141592653589793 rad pos: 62.5,-42.5 @@ -116487,7 +116504,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15160 + - uid: 15170 components: - rot: 1.5707963267948966 rad pos: 62.5,-35.5 @@ -116495,14 +116512,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15161 + - uid: 15171 components: - pos: 61.5,-35.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15162 + - uid: 15172 components: - rot: -1.5707963267948966 rad pos: 64.5,-35.5 @@ -116510,14 +116527,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15163 + - uid: 15173 components: - pos: 64.5,-32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15164 + - uid: 15174 components: - rot: 3.141592653589793 rad pos: 60.5,-35.5 @@ -116525,7 +116542,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15165 + - uid: 15175 components: - rot: -1.5707963267948966 rad pos: 61.5,-32.5 @@ -116533,7 +116550,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15166 + - uid: 15176 components: - rot: 3.141592653589793 rad pos: 63.5,-32.5 @@ -116541,7 +116558,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15167 + - uid: 15177 components: - rot: 1.5707963267948966 rad pos: 61.5,-10.5 @@ -116549,7 +116566,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15168 + - uid: 15178 components: - rot: -1.5707963267948966 rad pos: 62.5,-10.5 @@ -116557,14 +116574,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15169 + - uid: 15179 components: - pos: 64.5,-46.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15170 + - uid: 15180 components: - rot: 1.5707963267948966 rad pos: 60.5,-46.5 @@ -116572,7 +116589,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15171 + - uid: 15181 components: - rot: 1.5707963267948966 rad pos: 42.5,-45.5 @@ -116580,7 +116597,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15172 + - uid: 15182 components: - rot: 3.141592653589793 rad pos: 26.5,-58.5 @@ -116588,7 +116605,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15173 + - uid: 15183 components: - rot: -1.5707963267948966 rad pos: 34.5,-52.5 @@ -116596,7 +116613,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15174 + - uid: 15184 components: - rot: 3.141592653589793 rad pos: 28.5,-49.5 @@ -116604,19 +116621,19 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15175 + - uid: 15185 components: - rot: 3.141592653589793 rad pos: 50.5,-58.5 parent: 2 type: Transform - - uid: 15176 + - uid: 15186 components: - rot: 3.141592653589793 rad pos: 47.5,-58.5 parent: 2 type: Transform - - uid: 15177 + - uid: 15187 components: - rot: 1.5707963267948966 rad pos: -24.5,-22.5 @@ -116624,7 +116641,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15178 + - uid: 15188 components: - rot: 1.5707963267948966 rad pos: -23.5,-21.5 @@ -116632,7 +116649,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15179 + - uid: 15189 components: - rot: -1.5707963267948966 rad pos: -25.5,-17.5 @@ -116640,7 +116657,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15180 + - uid: 15190 components: - rot: 3.141592653589793 rad pos: 50.5,-54.5 @@ -116648,14 +116665,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15181 + - uid: 15191 components: - pos: 52.5,-54.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15182 + - uid: 15192 components: - rot: 3.141592653589793 rad pos: 52.5,-57.5 @@ -116663,28 +116680,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15183 + - uid: 15193 components: - pos: -14.5,6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15184 + - uid: 15194 components: - pos: -18.5,-4.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15185 + - uid: 15195 components: - pos: -20.5,-5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15186 + - uid: 15196 components: - rot: -1.5707963267948966 rad pos: -18.5,-46.5 @@ -116692,7 +116709,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15187 + - uid: 15197 components: - rot: 3.141592653589793 rad pos: -20.5,-47.5 @@ -116700,7 +116717,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15188 + - uid: 15198 components: - rot: 1.5707963267948966 rad pos: 2.5,-56.5 @@ -116708,7 +116725,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15189 + - uid: 15199 components: - rot: 3.141592653589793 rad pos: -42.5,-15.5 @@ -116716,7 +116733,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15190 + - uid: 15200 components: - rot: 1.5707963267948966 rad pos: -26.5,6.5 @@ -116724,7 +116741,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15191 + - uid: 15201 components: - rot: 3.141592653589793 rad pos: -26.5,-5.5 @@ -116732,7 +116749,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15192 + - uid: 15202 components: - rot: 3.141592653589793 rad pos: -24.5,-4.5 @@ -116740,7 +116757,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15193 + - uid: 15203 components: - rot: 1.5707963267948966 rad pos: -24.5,7.5 @@ -116748,7 +116765,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15194 + - uid: 15204 components: - rot: 1.5707963267948966 rad pos: -44.5,-11.5 @@ -116756,7 +116773,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15195 + - uid: 15205 components: - rot: 3.141592653589793 rad pos: -44.5,-10.5 @@ -116764,28 +116781,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15196 + - uid: 15206 components: - pos: -42.5,-6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15197 + - uid: 15207 components: - pos: -41.5,-5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15198 + - uid: 15208 components: - pos: -31.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15199 + - uid: 15209 components: - rot: 1.5707963267948966 rad pos: -53.5,-5.5 @@ -116793,7 +116810,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15200 + - uid: 15210 components: - rot: 1.5707963267948966 rad pos: -52.5,-6.5 @@ -116801,21 +116818,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15201 + - uid: 15211 components: - pos: -50.5,-17.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15202 + - uid: 15212 components: - pos: -51.5,-19.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15203 + - uid: 15213 components: - rot: 3.141592653589793 rad pos: -51.5,-25.5 @@ -116823,7 +116840,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15204 + - uid: 15214 components: - rot: 3.141592653589793 rad pos: -50.5,-24.5 @@ -116831,7 +116848,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15205 + - uid: 15215 components: - rot: -1.5707963267948966 rad pos: -47.5,-24.5 @@ -116841,7 +116858,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15206 + - uid: 15216 components: - rot: -1.5707963267948966 rad pos: -45.5,-25.5 @@ -116851,7 +116868,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15207 + - uid: 15217 components: - rot: 1.5707963267948966 rad pos: -54.5,-17.5 @@ -116859,7 +116876,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15208 + - uid: 15218 components: - rot: -1.5707963267948966 rad pos: -54.5,-23.5 @@ -116867,7 +116884,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15209 + - uid: 15219 components: - rot: -1.5707963267948966 rad pos: -53.5,-25.5 @@ -116875,7 +116892,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15210 + - uid: 15220 components: - rot: 3.141592653589793 rad pos: -50.5,-55.5 @@ -116883,7 +116900,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 15211 + - uid: 15221 components: - rot: 3.141592653589793 rad pos: -50.5,-53.5 @@ -116891,7 +116908,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 15212 + - uid: 15222 components: - rot: 3.141592653589793 rad pos: -50.5,-51.5 @@ -116899,7 +116916,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 15213 + - uid: 15223 components: - rot: 3.141592653589793 rad pos: -50.5,-49.5 @@ -116907,7 +116924,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 15214 + - uid: 15224 components: - rot: 3.141592653589793 rad pos: -50.5,-47.5 @@ -116915,7 +116932,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 15215 + - uid: 15225 components: - rot: 3.141592653589793 rad pos: -50.5,-45.5 @@ -116923,7 +116940,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 15216 + - uid: 15226 components: - rot: 3.141592653589793 rad pos: -50.5,-43.5 @@ -116931,7 +116948,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 15217 + - uid: 15227 components: - rot: 1.5707963267948966 rad pos: -43.5,-52.5 @@ -116939,7 +116956,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 15218 + - uid: 15228 components: - rot: 3.141592653589793 rad pos: -44.5,-57.5 @@ -116947,7 +116964,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 15219 + - uid: 15229 components: - pos: -37.5,-48.5 parent: 2 @@ -116956,7 +116973,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15220 + - uid: 15230 components: - rot: 1.5707963267948966 rad pos: -40.5,-48.5 @@ -116966,7 +116983,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15221 + - uid: 15231 components: - rot: -1.5707963267948966 rad pos: -34.5,-57.5 @@ -116974,7 +116991,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15222 + - uid: 15232 components: - rot: 1.5707963267948966 rad pos: -34.5,-40.5 @@ -116982,7 +116999,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15223 + - uid: 15233 components: - rot: -1.5707963267948966 rad pos: -32.5,-40.5 @@ -116990,7 +117007,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15224 + - uid: 15234 components: - rot: 1.5707963267948966 rad pos: -35.5,-41.5 @@ -116998,7 +117015,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15225 + - uid: 15235 components: - rot: -1.5707963267948966 rad pos: -31.5,-41.5 @@ -117006,14 +117023,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15226 + - uid: 15236 components: - pos: -38.5,-35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15227 + - uid: 15237 components: - rot: 3.141592653589793 rad pos: -40.5,-35.5 @@ -117021,14 +117038,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15228 + - uid: 15238 components: - pos: -40.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15229 + - uid: 15239 components: - rot: 3.141592653589793 rad pos: -20.5,-60.5 @@ -117036,7 +117053,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15230 + - uid: 15240 components: - rot: 1.5707963267948966 rad pos: -42.5,-69.5 @@ -117044,7 +117061,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15231 + - uid: 15241 components: - pos: -20.5,-58.5 parent: 2 @@ -117053,7 +117070,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15232 + - uid: 15242 components: - rot: 1.5707963267948966 rad pos: -25.5,-57.5 @@ -117061,21 +117078,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15233 + - uid: 15243 components: - pos: -41.5,31.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15234 + - uid: 15244 components: - pos: -40.5,33.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15235 + - uid: 15245 components: - rot: -1.5707963267948966 rad pos: -49.5,31.5 @@ -117083,7 +117100,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15236 + - uid: 15246 components: - rot: 1.5707963267948966 rad pos: -37.5,13.5 @@ -117091,7 +117108,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15237 + - uid: 15247 components: - rot: 1.5707963267948966 rad pos: -38.5,14.5 @@ -117099,19 +117116,19 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15238 + - uid: 15248 components: - rot: -1.5707963267948966 rad pos: -33.5,-53.5 parent: 2 type: Transform - - uid: 15239 + - uid: 15249 components: - rot: -1.5707963267948966 rad pos: -33.5,-55.5 parent: 2 type: Transform - - uid: 15240 + - uid: 15250 components: - rot: 1.5707963267948966 rad pos: 19.5,-53.5 @@ -117121,7 +117138,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15241 + - uid: 15251 components: - rot: 1.5707963267948966 rad pos: -45.5,-71.5 @@ -117131,7 +117148,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15242 + - uid: 15252 components: - rot: -1.5707963267948966 rad pos: -45.5,-76.5 @@ -117139,7 +117156,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15243 + - uid: 15253 components: - rot: -1.5707963267948966 rad pos: -40.5,-72.5 @@ -117147,7 +117164,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15244 + - uid: 15254 components: - rot: 1.5707963267948966 rad pos: -46.5,-72.5 @@ -117155,7 +117172,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15245 + - uid: 15255 components: - rot: -1.5707963267948966 rad pos: -46.5,-75.5 @@ -117163,7 +117180,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15246 + - uid: 15256 components: - rot: 3.141592653589793 rad pos: -54.5,-75.5 @@ -117171,7 +117188,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15247 + - uid: 15257 components: - rot: 1.5707963267948966 rad pos: -54.5,-76.5 @@ -117179,7 +117196,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15248 + - uid: 15258 components: - rot: -1.5707963267948966 rad pos: -19.5,-43.5 @@ -117187,7 +117204,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15249 + - uid: 15259 components: - rot: 1.5707963267948966 rad pos: -19.5,-41.5 @@ -117195,14 +117212,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15250 + - uid: 15260 components: - pos: -15.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15251 + - uid: 15261 components: - rot: 3.141592653589793 rad pos: -15.5,-43.5 @@ -117210,7 +117227,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15252 + - uid: 15262 components: - rot: -1.5707963267948966 rad pos: 2.5,11.5 @@ -117218,7 +117235,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15253 + - uid: 15263 components: - rot: 3.141592653589793 rad pos: 1.5,11.5 @@ -117226,7 +117243,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15254 + - uid: 15264 components: - rot: 1.5707963267948966 rad pos: -72.5,-23.5 @@ -117234,14 +117251,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15255 + - uid: 15265 components: - pos: -5.5,-64.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15256 + - uid: 15266 components: - rot: 1.5707963267948966 rad pos: 45.5,27.5 @@ -117251,7 +117268,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15257 + - uid: 15267 components: - rot: 1.5707963267948966 rad pos: 44.5,26.5 @@ -117259,7 +117276,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15258 + - uid: 15268 components: - rot: -1.5707963267948966 rad pos: 52.5,27.5 @@ -117267,7 +117284,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15259 + - uid: 15269 components: - rot: -1.5707963267948966 rad pos: 54.5,26.5 @@ -117275,14 +117292,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15260 + - uid: 15270 components: - pos: -15.5,45.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15261 + - uid: 15271 components: - rot: 3.141592653589793 rad pos: -17.5,45.5 @@ -117290,7 +117307,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15262 + - uid: 15272 components: - rot: 1.5707963267948966 rad pos: 47.5,50.5 @@ -117298,7 +117315,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15263 + - uid: 15273 components: - rot: 1.5707963267948966 rad pos: 45.5,49.5 @@ -117306,7 +117323,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15264 + - uid: 15274 components: - rot: -1.5707963267948966 rad pos: 47.5,46.5 @@ -117314,7 +117331,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15265 + - uid: 15275 components: - rot: -1.5707963267948966 rad pos: 45.5,45.5 @@ -117322,7 +117339,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15266 + - uid: 15276 components: - rot: 3.141592653589793 rad pos: 2.5,69.5 @@ -117330,7 +117347,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15267 + - uid: 15277 components: - rot: -1.5707963267948966 rad pos: -5.5,69.5 @@ -117338,14 +117355,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15268 + - uid: 15278 components: - pos: 3.5,69.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15269 + - uid: 15279 components: - rot: 1.5707963267948966 rad pos: -6.5,69.5 @@ -117353,7 +117370,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15270 + - uid: 15280 components: - rot: -1.5707963267948966 rad pos: -1.5,67.5 @@ -117361,7 +117378,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15271 + - uid: 15281 components: - rot: 1.5707963267948966 rad pos: -2.5,67.5 @@ -117369,7 +117386,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15272 + - uid: 15282 components: - rot: -1.5707963267948966 rad pos: -0.5,46.5 @@ -117377,7 +117394,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15273 + - uid: 15283 components: - rot: -1.5707963267948966 rad pos: 1.5,44.5 @@ -117385,7 +117402,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15274 + - uid: 15284 components: - rot: 3.141592653589793 rad pos: -21.5,51.5 @@ -117393,7 +117410,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15275 + - uid: 15285 components: - rot: 3.141592653589793 rad pos: -22.5,50.5 @@ -117401,7 +117418,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15276 + - uid: 15286 components: - rot: -1.5707963267948966 rad pos: -13.5,51.5 @@ -117409,7 +117426,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15277 + - uid: 15287 components: - rot: -1.5707963267948966 rad pos: -12.5,50.5 @@ -117417,28 +117434,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15278 + - uid: 15288 components: - pos: 1.5,59.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15279 + - uid: 15289 components: - pos: -0.5,58.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15280 + - uid: 15290 components: - pos: 40.5,47.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15281 + - uid: 15291 components: - rot: -1.5707963267948966 rad pos: 40.5,44.5 @@ -117446,7 +117463,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15282 + - uid: 15292 components: - rot: 1.5707963267948966 rad pos: 29.5,47.5 @@ -117454,7 +117471,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15283 + - uid: 15293 components: - rot: 1.5707963267948966 rad pos: 23.5,46.5 @@ -117462,7 +117479,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15284 + - uid: 15294 components: - rot: 3.141592653589793 rad pos: 29.5,44.5 @@ -117470,7 +117487,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15285 + - uid: 15295 components: - rot: 3.141592653589793 rad pos: -22.5,-98.5 @@ -117478,7 +117495,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15286 + - uid: 15296 components: - rot: -1.5707963267948966 rad pos: -6.5,-93.5 @@ -117486,34 +117503,34 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15287 + - uid: 15297 components: - rot: -1.5707963267948966 rad pos: -70.5,-43.5 parent: 2 type: Transform - - uid: 15288 + - uid: 15298 components: - pos: 62.5,-6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15289 + - uid: 15299 components: - pos: 75.5,-33.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15290 + - uid: 15300 components: - pos: 74.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15291 + - uid: 15301 components: - rot: -1.5707963267948966 rad pos: 73.5,-48.5 @@ -117521,7 +117538,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15292 + - uid: 15302 components: - rot: -1.5707963267948966 rad pos: 75.5,-46.5 @@ -117529,7 +117546,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15293 + - uid: 15303 components: - rot: 1.5707963267948966 rad pos: 73.5,-46.5 @@ -117537,7 +117554,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15294 + - uid: 15304 components: - rot: -1.5707963267948966 rad pos: 71.5,-47.5 @@ -117545,7 +117562,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15295 + - uid: 15305 components: - rot: 1.5707963267948966 rad pos: 71.5,-45.5 @@ -117553,7 +117570,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15296 + - uid: 15306 components: - rot: -1.5707963267948966 rad pos: 74.5,-45.5 @@ -117561,14 +117578,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15297 + - uid: 15307 components: - pos: 72.5,-36.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15298 + - uid: 15308 components: - rot: 3.141592653589793 rad pos: 72.5,-37.5 @@ -117576,7 +117593,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15299 + - uid: 15309 components: - rot: -1.5707963267948966 rad pos: 67.5,-37.5 @@ -117584,18 +117601,18 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15300 + - uid: 15310 components: - pos: -56.5,-58.5 parent: 2 type: Transform - - uid: 15301 + - uid: 15311 components: - rot: 3.141592653589793 rad pos: -57.5,-60.5 parent: 2 type: Transform - - uid: 15302 + - uid: 15312 components: - rot: 3.141592653589793 rad pos: -56.5,-61.5 @@ -117603,25 +117620,25 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 15303 + - uid: 15313 components: - pos: -55.5,-61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 15304 + - uid: 15314 components: - pos: 55.5,-48.5 parent: 2 type: Transform - - uid: 15305 + - uid: 15315 components: - rot: 3.141592653589793 rad pos: 53.5,-48.5 parent: 2 type: Transform - - uid: 15306 + - uid: 15316 components: - rot: 3.141592653589793 rad pos: 53.5,-6.5 @@ -117629,7 +117646,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15307 + - uid: 15317 components: - rot: 1.5707963267948966 rad pos: 67.5,-36.5 @@ -117637,7 +117654,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15308 + - uid: 15318 components: - rot: 3.141592653589793 rad pos: -10.5,-21.5 @@ -117645,14 +117662,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15309 + - uid: 15319 components: - pos: -8.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15310 + - uid: 15320 components: - rot: 3.141592653589793 rad pos: -25.5,-60.5 @@ -117662,7 +117679,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15311 + - uid: 15321 components: - rot: -1.5707963267948966 rad pos: -22.5,-62.5 @@ -117670,7 +117687,7 @@ entities: type: Transform - color: '#97C3FCCC' type: AtmosPipeColor - - uid: 15312 + - uid: 15322 components: - rot: 3.141592653589793 rad pos: -23.5,-62.5 @@ -117678,7 +117695,7 @@ entities: type: Transform - color: '#97C3FCCC' type: AtmosPipeColor - - uid: 15313 + - uid: 15323 components: - rot: 1.5707963267948966 rad pos: -48.5,-35.5 @@ -117686,7 +117703,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 15314 + - uid: 15324 components: - rot: 1.5707963267948966 rad pos: 18.5,-82.5 @@ -117694,7 +117711,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15315 + - uid: 15325 components: - rot: 3.141592653589793 rad pos: 25.5,-72.5 @@ -117702,7 +117719,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15316 + - uid: 15326 components: - rot: 3.141592653589793 rad pos: 24.5,-73.5 @@ -117710,7 +117727,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15317 + - uid: 15327 components: - rot: 3.141592653589793 rad pos: 29.5,-85.5 @@ -117718,7 +117735,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15318 + - uid: 15328 components: - rot: 3.141592653589793 rad pos: 47.5,-86.5 @@ -117726,7 +117743,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15319 + - uid: 15329 components: - rot: -1.5707963267948966 rad pos: 45.5,6.5 @@ -117734,7 +117751,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15320 + - uid: 15330 components: - rot: 3.141592653589793 rad pos: -45.5,33.5 @@ -117744,7 +117761,7 @@ entities: type: AtmosPipeColor - nextSound: 1362.0315417 type: EmitSoundOnCollide - - uid: 15321 + - uid: 15331 components: - rot: 3.141592653589793 rad pos: -47.5,31.5 @@ -117754,7 +117771,7 @@ entities: type: AtmosPipeColor - nextSound: 1374.2225868 type: EmitSoundOnCollide - - uid: 15322 + - uid: 15332 components: - rot: -1.5707963267948966 rad pos: -46.5,34.5 @@ -117764,7 +117781,7 @@ entities: type: AtmosPipeColor - nextSound: 1376.9106127 type: EmitSoundOnCollide - - uid: 15323 + - uid: 15333 components: - rot: 1.5707963267948966 rad pos: -47.5,34.5 @@ -117776,56 +117793,56 @@ entities: type: EmitSoundOnCollide - proto: GasPipeFourway entities: - - uid: 15324 + - uid: 15334 components: - pos: 38.5,1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15325 + - uid: 15335 components: - pos: 31.5,12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15326 + - uid: 15336 components: - pos: 21.5,16.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15327 + - uid: 15337 components: - pos: 31.5,15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15328 + - uid: 15338 components: - pos: 21.5,12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15329 + - uid: 15339 components: - pos: 17.5,17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15330 + - uid: 15340 components: - pos: 34.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15331 + - uid: 15341 components: - pos: -24.5,-60.5 parent: 2 @@ -117834,168 +117851,168 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15332 + - uid: 15342 components: - pos: 26.5,-30.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15333 + - uid: 15343 components: - pos: -5.5,-27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15334 + - uid: 15344 components: - pos: -33.5,20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15335 + - uid: 15345 components: - pos: -3.5,-25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15336 + - uid: 15346 components: - pos: 30.5,-18.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15337 + - uid: 15347 components: - pos: -32.5,23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15338 + - uid: 15348 components: - pos: 24.5,-29.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15339 + - uid: 15349 components: - pos: -18.5,29.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15340 + - uid: 15350 components: - pos: 49.5,20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15341 + - uid: 15351 components: - pos: 50.5,21.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15342 + - uid: 15352 components: - pos: 42.5,1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15343 + - uid: 15353 components: - pos: 44.5,-1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15344 + - uid: 15354 components: - pos: 64.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15345 + - uid: 15355 components: - pos: 29.5,-47.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15346 + - uid: 15356 components: - pos: -41.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15347 + - uid: 15357 components: - pos: -42.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15348 + - uid: 15358 components: - pos: -20.5,30.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15349 + - uid: 15359 components: - pos: -31.5,-34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15350 + - uid: 15360 components: - pos: -32.5,-33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15351 + - uid: 15361 components: - pos: -45.5,11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15352 + - uid: 15362 components: - pos: -5.5,-14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15353 + - uid: 15363 components: - pos: -16.5,43.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15354 + - uid: 15364 components: - pos: -15.5,44.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18955 + - uid: 15365 components: - pos: 68.5,-33.5 parent: 2 @@ -118006,7 +118023,7 @@ entities: type: EmitSoundOnCollide - proto: GasPipeStraight entities: - - uid: 15355 + - uid: 15366 components: - rot: 1.5707963267948966 rad pos: -11.5,5.5 @@ -118016,7 +118033,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15356 + - uid: 15367 components: - rot: 3.141592653589793 rad pos: 38.5,10.5 @@ -118024,7 +118041,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15357 + - uid: 15368 components: - rot: 3.141592653589793 rad pos: 26.5,-26.5 @@ -118034,7 +118051,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15358 + - uid: 15369 components: - rot: 1.5707963267948966 rad pos: 32.5,9.5 @@ -118044,7 +118061,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15359 + - uid: 15370 components: - pos: 28.5,-31.5 parent: 2 @@ -118053,7 +118070,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15360 + - uid: 15371 components: - rot: 3.141592653589793 rad pos: 42.5,10.5 @@ -118061,21 +118078,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15361 + - uid: 15372 components: - pos: -18.5,31.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15362 + - uid: 15373 components: - pos: 46.5,-25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15363 + - uid: 15374 components: - rot: 3.141592653589793 rad pos: 34.5,-36.5 @@ -118083,14 +118100,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15364 + - uid: 15375 components: - pos: 46.5,-24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15365 + - uid: 15376 components: - rot: -1.5707963267948966 rad pos: 24.5,-42.5 @@ -118098,14 +118115,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15366 + - uid: 15377 components: - pos: 34.5,-21.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15367 + - uid: 15378 components: - rot: 3.141592653589793 rad pos: -9.5,-40.5 @@ -118115,7 +118132,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15368 + - uid: 15379 components: - rot: 3.141592653589793 rad pos: -5.5,-34.5 @@ -118123,7 +118140,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15369 + - uid: 15380 components: - rot: -1.5707963267948966 rad pos: -12.5,-41.5 @@ -118131,7 +118148,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15370 + - uid: 15381 components: - rot: 3.141592653589793 rad pos: -14.5,-42.5 @@ -118139,7 +118156,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15371 + - uid: 15382 components: - rot: 3.141592653589793 rad pos: -14.5,-44.5 @@ -118149,7 +118166,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15372 + - uid: 15383 components: - rot: 1.5707963267948966 rad pos: -14.5,-60.5 @@ -118157,7 +118174,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15373 + - uid: 15384 components: - rot: 3.141592653589793 rad pos: -12.5,-44.5 @@ -118167,7 +118184,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15374 + - uid: 15385 components: - rot: 1.5707963267948966 rad pos: -10.5,-42.5 @@ -118175,42 +118192,42 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15375 + - uid: 15386 components: - pos: -7.5,-48.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15376 + - uid: 15387 components: - pos: -7.5,-47.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15377 + - uid: 15388 components: - pos: -0.5,-45.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15378 + - uid: 15389 components: - pos: -0.5,-44.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15379 + - uid: 15390 components: - pos: -0.5,-43.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15380 + - uid: 15391 components: - rot: -1.5707963267948966 rad pos: 1.5,-41.5 @@ -118218,14 +118235,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15381 + - uid: 15392 components: - pos: -8.5,-45.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15382 + - uid: 15393 components: - rot: 3.141592653589793 rad pos: 3.5,-44.5 @@ -118235,14 +118252,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15383 + - uid: 15394 components: - pos: -12.5,-61.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15384 + - uid: 15395 components: - rot: 3.141592653589793 rad pos: -7.5,-62.5 @@ -118252,7 +118269,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15385 + - uid: 15396 components: - rot: -1.5707963267948966 rad pos: -4.5,-59.5 @@ -118260,7 +118277,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15386 + - uid: 15397 components: - rot: -1.5707963267948966 rad pos: -6.5,-59.5 @@ -118268,7 +118285,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15387 + - uid: 15398 components: - rot: -1.5707963267948966 rad pos: 27.5,-6.5 @@ -118276,7 +118293,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15388 + - uid: 15399 components: - rot: -1.5707963267948966 rad pos: 29.5,-6.5 @@ -118284,7 +118301,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15389 + - uid: 15400 components: - rot: 3.141592653589793 rad pos: 40.5,6.5 @@ -118292,7 +118309,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15390 + - uid: 15401 components: - pos: 46.5,-26.5 parent: 2 @@ -118301,28 +118318,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15391 + - uid: 15402 components: - pos: 46.5,-27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15392 + - uid: 15403 components: - pos: 46.5,-28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15393 + - uid: 15404 components: - pos: 46.5,-29.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15394 + - uid: 15405 components: - pos: 8.5,11.5 parent: 2 @@ -118331,14 +118348,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15395 + - uid: 15406 components: - pos: 8.5,7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15396 + - uid: 15407 components: - rot: -1.5707963267948966 rad pos: -12.5,-38.5 @@ -118346,7 +118363,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15397 + - uid: 15408 components: - rot: 3.141592653589793 rad pos: 34.5,-32.5 @@ -118354,7 +118371,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15398 + - uid: 15409 components: - rot: 1.5707963267948966 rad pos: 9.5,17.5 @@ -118362,7 +118379,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15399 + - uid: 15410 components: - rot: 1.5707963267948966 rad pos: 6.5,8.5 @@ -118370,7 +118387,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15400 + - uid: 15411 components: - rot: -1.5707963267948966 rad pos: 45.5,-23.5 @@ -118378,14 +118395,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15401 + - uid: 15412 components: - pos: 30.5,-21.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15402 + - uid: 15413 components: - rot: 3.141592653589793 rad pos: 34.5,-35.5 @@ -118393,7 +118410,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15403 + - uid: 15414 components: - rot: 3.141592653589793 rad pos: -5.5,-35.5 @@ -118401,7 +118418,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15404 + - uid: 15415 components: - rot: 1.5707963267948966 rad pos: 3.5,-3.5 @@ -118409,7 +118426,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15405 + - uid: 15416 components: - rot: 3.141592653589793 rad pos: 4.5,-5.5 @@ -118417,21 +118434,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15406 + - uid: 15417 components: - pos: 3.5,-7.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15407 + - uid: 15418 components: - pos: 3.5,-8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15408 + - uid: 15419 components: - rot: -1.5707963267948966 rad pos: 20.5,21.5 @@ -118439,7 +118456,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15409 + - uid: 15420 components: - rot: 1.5707963267948966 rad pos: 23.5,21.5 @@ -118447,7 +118464,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15410 + - uid: 15421 components: - rot: 1.5707963267948966 rad pos: 24.5,21.5 @@ -118455,7 +118472,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15411 + - uid: 15422 components: - rot: 1.5707963267948966 rad pos: 25.5,21.5 @@ -118463,7 +118480,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15412 + - uid: 15423 components: - rot: 1.5707963267948966 rad pos: 28.5,21.5 @@ -118471,21 +118488,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15413 + - uid: 15424 components: - pos: 29.5,20.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15414 + - uid: 15425 components: - pos: 29.5,19.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15415 + - uid: 15426 components: - rot: 3.141592653589793 rad pos: 30.5,17.5 @@ -118493,14 +118510,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15416 + - uid: 15427 components: - pos: 24.5,-25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15417 + - uid: 15428 components: - rot: -1.5707963267948966 rad pos: 2.5,-61.5 @@ -118508,7 +118525,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15418 + - uid: 15429 components: - rot: 1.5707963267948966 rad pos: 4.5,-61.5 @@ -118516,7 +118533,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15419 + - uid: 15430 components: - rot: -1.5707963267948966 rad pos: -7.5,-61.5 @@ -118524,7 +118541,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15420 + - uid: 15431 components: - pos: -8.5,-62.5 parent: 2 @@ -118533,7 +118550,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15421 + - uid: 15432 components: - rot: 3.141592653589793 rad pos: -0.5,-63.5 @@ -118541,7 +118558,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15422 + - uid: 15433 components: - rot: 1.5707963267948966 rad pos: -2.5,-60.5 @@ -118549,7 +118566,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15423 + - uid: 15434 components: - rot: -1.5707963267948966 rad pos: 5.5,-60.5 @@ -118557,7 +118574,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15424 + - uid: 15435 components: - rot: -1.5707963267948966 rad pos: 6.5,-60.5 @@ -118565,7 +118582,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15425 + - uid: 15436 components: - rot: -1.5707963267948966 rad pos: 7.5,-60.5 @@ -118573,7 +118590,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15426 + - uid: 15437 components: - rot: -1.5707963267948966 rad pos: 8.5,-60.5 @@ -118581,7 +118598,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15427 + - uid: 15438 components: - rot: -1.5707963267948966 rad pos: 5.5,-61.5 @@ -118589,7 +118606,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15428 + - uid: 15439 components: - rot: -1.5707963267948966 rad pos: 7.5,-61.5 @@ -118599,7 +118616,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15429 + - uid: 15440 components: - rot: -1.5707963267948966 rad pos: 8.5,-61.5 @@ -118607,7 +118624,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15430 + - uid: 15441 components: - rot: 3.141592653589793 rad pos: -5.5,-28.5 @@ -118615,14 +118632,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15431 + - uid: 15442 components: - pos: -3.5,-35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15432 + - uid: 15443 components: - rot: -1.5707963267948966 rad pos: 28.5,-43.5 @@ -118630,7 +118647,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15433 + - uid: 15444 components: - rot: 1.5707963267948966 rad pos: -36.5,20.5 @@ -118638,14 +118655,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15434 + - uid: 15445 components: - pos: -20.5,-83.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15435 + - uid: 15446 components: - pos: -20.5,-74.5 parent: 2 @@ -118654,21 +118671,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15436 + - uid: 15447 components: - pos: -25.5,-75.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15437 + - uid: 15448 components: - pos: -25.5,-73.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15438 + - uid: 15449 components: - rot: 1.5707963267948966 rad pos: -24.5,-72.5 @@ -118676,7 +118693,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15439 + - uid: 15450 components: - pos: 35.5,6.5 parent: 2 @@ -118685,7 +118702,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15440 + - uid: 15451 components: - rot: 1.5707963267948966 rad pos: 33.5,9.5 @@ -118695,7 +118712,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15441 + - uid: 15452 components: - rot: 3.141592653589793 rad pos: 2.5,-3.5 @@ -118703,7 +118720,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15442 + - uid: 15453 components: - rot: 1.5707963267948966 rad pos: -25.5,-80.5 @@ -118711,7 +118728,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15443 + - uid: 15454 components: - rot: 3.141592653589793 rad pos: 5.5,13.5 @@ -118719,28 +118736,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15444 + - uid: 15455 components: - pos: -3.5,-29.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15445 + - uid: 15456 components: - pos: -3.5,-28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15446 + - uid: 15457 components: - pos: -3.5,-26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15447 + - uid: 15458 components: - rot: 1.5707963267948966 rad pos: -5.5,-25.5 @@ -118748,7 +118765,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15448 + - uid: 15459 components: - rot: 3.141592653589793 rad pos: -11.5,-26.5 @@ -118756,7 +118773,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15449 + - uid: 15460 components: - rot: 1.5707963267948966 rad pos: -6.5,-27.5 @@ -118764,7 +118781,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15450 + - uid: 15461 components: - rot: 1.5707963267948966 rad pos: 0.5,-25.5 @@ -118772,7 +118789,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15451 + - uid: 15462 components: - pos: 3.5,-28.5 parent: 2 @@ -118781,7 +118798,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15452 + - uid: 15463 components: - rot: 1.5707963267948966 rad pos: 3.5,-25.5 @@ -118789,7 +118806,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15453 + - uid: 15464 components: - rot: 1.5707963267948966 rad pos: 1.5,-25.5 @@ -118797,7 +118814,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15454 + - uid: 15465 components: - rot: 3.141592653589793 rad pos: -5.5,-36.5 @@ -118805,7 +118822,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15455 + - uid: 15466 components: - rot: 3.141592653589793 rad pos: -5.5,-37.5 @@ -118813,7 +118830,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15456 + - uid: 15467 components: - rot: 3.141592653589793 rad pos: -5.5,-38.5 @@ -118821,7 +118838,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15457 + - uid: 15468 components: - rot: 3.141592653589793 rad pos: -5.5,-39.5 @@ -118829,7 +118846,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15458 + - uid: 15469 components: - rot: 3.141592653589793 rad pos: -5.5,-40.5 @@ -118837,7 +118854,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15459 + - uid: 15470 components: - rot: 1.5707963267948966 rad pos: 9.5,-27.5 @@ -118845,7 +118862,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15460 + - uid: 15471 components: - rot: 3.141592653589793 rad pos: 14.5,-28.5 @@ -118853,7 +118870,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15461 + - uid: 15472 components: - rot: 1.5707963267948966 rad pos: 13.5,-27.5 @@ -118861,7 +118878,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15462 + - uid: 15473 components: - rot: 1.5707963267948966 rad pos: 13.5,-25.5 @@ -118869,7 +118886,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15463 + - uid: 15474 components: - rot: 3.141592653589793 rad pos: 14.5,-35.5 @@ -118877,14 +118894,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15464 + - uid: 15475 components: - pos: 15.5,-37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15465 + - uid: 15476 components: - rot: 1.5707963267948966 rad pos: 22.5,-43.5 @@ -118892,7 +118909,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15466 + - uid: 15477 components: - rot: 1.5707963267948966 rad pos: 12.5,-25.5 @@ -118900,7 +118917,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15467 + - uid: 15478 components: - rot: 1.5707963267948966 rad pos: 21.5,-43.5 @@ -118908,7 +118925,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15468 + - uid: 15479 components: - rot: 1.5707963267948966 rad pos: 30.5,-43.5 @@ -118916,14 +118933,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15469 + - uid: 15480 components: - pos: 20.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15470 + - uid: 15481 components: - pos: 20.5,-19.5 parent: 2 @@ -118932,7 +118949,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15471 + - uid: 15482 components: - rot: -1.5707963267948966 rad pos: 23.5,-12.5 @@ -118942,7 +118959,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15472 + - uid: 15483 components: - rot: -1.5707963267948966 rad pos: 25.5,-12.5 @@ -118950,7 +118967,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15473 + - uid: 15484 components: - rot: 1.5707963267948966 rad pos: 4.5,19.5 @@ -118958,7 +118975,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15474 + - uid: 15485 components: - rot: -1.5707963267948966 rad pos: 21.5,21.5 @@ -118966,7 +118983,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15475 + - uid: 15486 components: - pos: 19.5,20.5 parent: 2 @@ -118975,7 +118992,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15476 + - uid: 15487 components: - rot: -1.5707963267948966 rad pos: 35.5,12.5 @@ -118983,7 +119000,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15477 + - uid: 15488 components: - rot: 1.5707963267948966 rad pos: 16.5,-43.5 @@ -118991,7 +119008,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15478 + - uid: 15489 components: - rot: 1.5707963267948966 rad pos: 18.5,-43.5 @@ -118999,7 +119016,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15479 + - uid: 15490 components: - pos: 0.5,15.5 parent: 2 @@ -119008,7 +119025,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15480 + - uid: 15491 components: - rot: 3.141592653589793 rad pos: 40.5,4.5 @@ -119016,7 +119033,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15481 + - uid: 15492 components: - rot: 3.141592653589793 rad pos: 42.5,8.5 @@ -119024,7 +119041,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15482 + - uid: 15493 components: - rot: 1.5707963267948966 rad pos: 16.5,-41.5 @@ -119032,7 +119049,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15483 + - uid: 15494 components: - rot: 1.5707963267948966 rad pos: 18.5,-41.5 @@ -119040,14 +119057,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15484 + - uid: 15495 components: - pos: -3.5,-40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15485 + - uid: 15496 components: - rot: 3.141592653589793 rad pos: 29.5,16.5 @@ -119055,7 +119072,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15486 + - uid: 15497 components: - rot: 1.5707963267948966 rad pos: 27.5,17.5 @@ -119063,7 +119080,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15487 + - uid: 15498 components: - rot: 1.5707963267948966 rad pos: 10.5,-25.5 @@ -119071,7 +119088,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15488 + - uid: 15499 components: - rot: -1.5707963267948966 rad pos: 13.5,17.5 @@ -119079,7 +119096,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15489 + - uid: 15500 components: - rot: 1.5707963267948966 rad pos: 1.5,17.5 @@ -119087,14 +119104,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15490 + - uid: 15501 components: - pos: 0.5,16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15491 + - uid: 15502 components: - rot: 1.5707963267948966 rad pos: -2.5,13.5 @@ -119104,7 +119121,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15492 + - uid: 15503 components: - rot: -1.5707963267948966 rad pos: -5.5,14.5 @@ -119114,7 +119131,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15493 + - uid: 15504 components: - pos: -6.5,13.5 parent: 2 @@ -119123,63 +119140,63 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15494 + - uid: 15505 components: - pos: -6.5,11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15495 + - uid: 15506 components: - pos: -6.5,10.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15496 + - uid: 15507 components: - pos: -8.5,4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15497 + - uid: 15508 components: - pos: 3.5,-29.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15498 + - uid: 15509 components: - pos: 15.5,-40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15499 + - uid: 15510 components: - pos: 15.5,-32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15500 + - uid: 15511 components: - pos: 15.5,-24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15501 + - uid: 15512 components: - pos: -23.5,-77.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15502 + - uid: 15513 components: - pos: 17.5,18.5 parent: 2 @@ -119188,7 +119205,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15503 + - uid: 15514 components: - rot: 1.5707963267948966 rad pos: 9.5,8.5 @@ -119196,21 +119213,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15504 + - uid: 15515 components: - pos: 2.5,-9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15505 + - uid: 15516 components: - pos: 2.5,-7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15506 + - uid: 15517 components: - rot: 1.5707963267948966 rad pos: 0.5,-1.5 @@ -119218,7 +119235,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15507 + - uid: 15518 components: - pos: -18.5,32.5 parent: 2 @@ -119227,42 +119244,42 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15508 + - uid: 15519 components: - pos: -20.5,28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15509 + - uid: 15520 components: - pos: 34.5,-24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15510 + - uid: 15521 components: - pos: 31.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15511 + - uid: 15522 components: - pos: 24.5,-27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15512 + - uid: 15523 components: - pos: 36.5,-26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15513 + - uid: 15524 components: - rot: -1.5707963267948966 rad pos: 28.5,-18.5 @@ -119270,14 +119287,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15514 + - uid: 15525 components: - pos: 47.5,-24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15515 + - uid: 15526 components: - rot: 3.141592653589793 rad pos: 34.5,-38.5 @@ -119285,7 +119302,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15516 + - uid: 15527 components: - pos: 21.5,15.5 parent: 2 @@ -119294,14 +119311,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15517 + - uid: 15528 components: - pos: 8.5,8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15518 + - uid: 15529 components: - rot: 1.5707963267948966 rad pos: 29.5,-22.5 @@ -119309,7 +119326,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15519 + - uid: 15530 components: - rot: 3.141592653589793 rad pos: 38.5,6.5 @@ -119319,28 +119336,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15520 + - uid: 15531 components: - pos: -20.5,31.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15521 + - uid: 15532 components: - pos: 8.5,9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15522 + - uid: 15533 components: - pos: -18.5,30.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15523 + - uid: 15534 components: - rot: 1.5707963267948966 rad pos: -4.5,-1.5 @@ -119348,7 +119365,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15524 + - uid: 15535 components: - rot: 3.141592653589793 rad pos: -5.5,-32.5 @@ -119356,7 +119373,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15525 + - uid: 15536 components: - rot: -1.5707963267948966 rad pos: 6.5,-41.5 @@ -119364,56 +119381,56 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15526 + - uid: 15537 components: - pos: 15.5,-30.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15527 + - uid: 15538 components: - pos: -3.5,-13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15528 + - uid: 15539 components: - pos: -3.5,-9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15529 + - uid: 15540 components: - pos: -3.5,-8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15530 + - uid: 15541 components: - pos: -3.5,-7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15531 + - uid: 15542 components: - pos: -3.5,-5.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15532 + - uid: 15543 components: - pos: -5.5,-7.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15533 + - uid: 15544 components: - rot: -1.5707963267948966 rad pos: 24.5,10.5 @@ -119421,7 +119438,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15534 + - uid: 15545 components: - rot: 1.5707963267948966 rad pos: 17.5,-29.5 @@ -119431,7 +119448,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15535 + - uid: 15546 components: - rot: 1.5707963267948966 rad pos: 18.5,-29.5 @@ -119439,7 +119456,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15536 + - uid: 15547 components: - rot: -1.5707963267948966 rad pos: 20.5,-29.5 @@ -119449,7 +119466,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15537 + - uid: 15548 components: - rot: -1.5707963267948966 rad pos: 22.5,-29.5 @@ -119457,7 +119474,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15538 + - uid: 15549 components: - rot: 1.5707963267948966 rad pos: -15.5,-42.5 @@ -119465,7 +119482,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15539 + - uid: 15550 components: - rot: 1.5707963267948966 rad pos: -14.5,-42.5 @@ -119473,7 +119490,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15540 + - uid: 15551 components: - rot: 3.141592653589793 rad pos: -14.5,-45.5 @@ -119481,7 +119498,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15541 + - uid: 15552 components: - rot: 3.141592653589793 rad pos: -17.5,-58.5 @@ -119491,7 +119508,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15542 + - uid: 15553 components: - rot: 3.141592653589793 rad pos: -17.5,-59.5 @@ -119499,7 +119516,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15543 + - uid: 15554 components: - rot: 1.5707963267948966 rad pos: -16.5,-60.5 @@ -119507,7 +119524,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15544 + - uid: 15555 components: - rot: 1.5707963267948966 rad pos: -15.5,-60.5 @@ -119515,7 +119532,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15545 + - uid: 15556 components: - rot: 3.141592653589793 rad pos: -12.5,-46.5 @@ -119523,7 +119540,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15546 + - uid: 15557 components: - rot: 3.141592653589793 rad pos: -12.5,-43.5 @@ -119531,7 +119548,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15547 + - uid: 15558 components: - rot: 1.5707963267948966 rad pos: -13.5,-42.5 @@ -119539,7 +119556,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15548 + - uid: 15559 components: - rot: 1.5707963267948966 rad pos: -11.5,-42.5 @@ -119547,14 +119564,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15549 + - uid: 15560 components: - pos: -9.5,-59.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15550 + - uid: 15561 components: - pos: -9.5,-58.5 parent: 2 @@ -119563,21 +119580,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15551 + - uid: 15562 components: - pos: -9.5,-57.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15552 + - uid: 15563 components: - pos: -9.5,-56.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15553 + - uid: 15564 components: - pos: -9.5,-55.5 parent: 2 @@ -119586,7 +119603,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15554 + - uid: 15565 components: - rot: 3.141592653589793 rad pos: -1.5,-52.5 @@ -119594,42 +119611,42 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15555 + - uid: 15566 components: - pos: -7.5,-52.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15556 + - uid: 15567 components: - pos: -7.5,-51.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15557 + - uid: 15568 components: - pos: -7.5,-50.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15558 + - uid: 15569 components: - pos: -7.5,-49.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15559 + - uid: 15570 components: - pos: -0.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15560 + - uid: 15571 components: - rot: -1.5707963267948966 rad pos: 0.5,-41.5 @@ -119637,7 +119654,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15561 + - uid: 15572 components: - rot: -1.5707963267948966 rad pos: 2.5,-41.5 @@ -119645,21 +119662,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15562 + - uid: 15573 components: - pos: -8.5,-44.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15563 + - uid: 15574 components: - pos: -8.5,-43.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15564 + - uid: 15575 components: - rot: 3.141592653589793 rad pos: 5.5,-43.5 @@ -119667,7 +119684,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15565 + - uid: 15576 components: - rot: -1.5707963267948966 rad pos: -9.5,-60.5 @@ -119675,7 +119692,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15566 + - uid: 15577 components: - rot: -1.5707963267948966 rad pos: -8.5,-60.5 @@ -119683,14 +119700,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15567 + - uid: 15578 components: - pos: -6.5,-64.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15568 + - uid: 15579 components: - rot: 3.141592653589793 rad pos: -7.5,-61.5 @@ -119698,7 +119715,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15569 + - uid: 15580 components: - rot: -1.5707963267948966 rad pos: -5.5,-59.5 @@ -119706,14 +119723,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15570 + - uid: 15581 components: - pos: 34.5,1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15571 + - uid: 15582 components: - rot: 1.5707963267948966 rad pos: 29.5,9.5 @@ -119723,7 +119740,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15572 + - uid: 15583 components: - rot: 1.5707963267948966 rad pos: 37.5,0.5 @@ -119731,7 +119748,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15573 + - uid: 15584 components: - rot: 1.5707963267948966 rad pos: 7.5,8.5 @@ -119739,14 +119756,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15574 + - uid: 15585 components: - pos: 17.5,-3.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15575 + - uid: 15586 components: - rot: -1.5707963267948966 rad pos: 11.5,-0.5 @@ -119754,7 +119771,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15576 + - uid: 15587 components: - rot: -1.5707963267948966 rad pos: 15.5,-0.5 @@ -119762,7 +119779,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15577 + - uid: 15588 components: - rot: -1.5707963267948966 rad pos: 38.5,15.5 @@ -119770,7 +119787,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15578 + - uid: 15589 components: - rot: -1.5707963267948966 rad pos: 36.5,15.5 @@ -119778,7 +119795,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15579 + - uid: 15590 components: - rot: -1.5707963267948966 rad pos: 34.5,1.5 @@ -119786,7 +119803,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15580 + - uid: 15591 components: - rot: -1.5707963267948966 rad pos: 30.5,1.5 @@ -119794,7 +119811,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15581 + - uid: 15592 components: - rot: -1.5707963267948966 rad pos: 31.5,1.5 @@ -119802,7 +119819,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15582 + - uid: 15593 components: - rot: -1.5707963267948966 rad pos: 32.5,1.5 @@ -119810,7 +119827,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15583 + - uid: 15594 components: - rot: -1.5707963267948966 rad pos: 36.5,1.5 @@ -119818,14 +119835,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15584 + - uid: 15595 components: - pos: 42.5,14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15585 + - uid: 15596 components: - rot: 1.5707963267948966 rad pos: 22.5,16.5 @@ -119833,7 +119850,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15586 + - uid: 15597 components: - rot: 1.5707963267948966 rad pos: 24.5,17.5 @@ -119841,7 +119858,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15587 + - uid: 15598 components: - rot: 1.5707963267948966 rad pos: 25.5,17.5 @@ -119849,7 +119866,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15588 + - uid: 15599 components: - rot: 1.5707963267948966 rad pos: 26.5,17.5 @@ -119857,35 +119874,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15589 + - uid: 15600 components: - pos: 38.5,2.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15590 + - uid: 15601 components: - pos: 38.5,4.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15591 + - uid: 15602 components: - pos: 25.5,10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15592 + - uid: 15603 components: - pos: 25.5,11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15593 + - uid: 15604 components: - rot: 1.5707963267948966 rad pos: 26.5,12.5 @@ -119893,14 +119910,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15594 + - uid: 15605 components: - pos: 21.5,11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15595 + - uid: 15606 components: - rot: 1.5707963267948966 rad pos: 27.5,9.5 @@ -119910,7 +119927,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15596 + - uid: 15607 components: - rot: 1.5707963267948966 rad pos: -6.5,-1.5 @@ -119918,21 +119935,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15597 + - uid: 15608 components: - pos: -5.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15598 + - uid: 15609 components: - pos: -5.5,-17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15599 + - uid: 15610 components: - rot: -1.5707963267948966 rad pos: 29.5,-42.5 @@ -119940,7 +119957,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15600 + - uid: 15611 components: - rot: 3.141592653589793 rad pos: 17.5,-2.5 @@ -119948,7 +119965,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15601 + - uid: 15612 components: - rot: 3.141592653589793 rad pos: 38.5,9.5 @@ -119958,7 +119975,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15602 + - uid: 15613 components: - rot: -1.5707963267948966 rad pos: 7.5,12.5 @@ -119966,7 +119983,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15603 + - uid: 15614 components: - rot: 3.141592653589793 rad pos: -3.5,-56.5 @@ -119974,7 +119991,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15604 + - uid: 15615 components: - rot: 3.141592653589793 rad pos: -3.5,-57.5 @@ -119982,7 +119999,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15605 + - uid: 15616 components: - rot: 3.141592653589793 rad pos: -1.5,-47.5 @@ -119990,42 +120007,42 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15606 + - uid: 15617 components: - pos: 15.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15607 + - uid: 15618 components: - pos: -3.5,-23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15608 + - uid: 15619 components: - pos: -3.5,-24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15609 + - uid: 15620 components: - pos: -3.5,-22.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15610 + - uid: 15621 components: - pos: -3.5,-18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15611 + - uid: 15622 components: - rot: 1.5707963267948966 rad pos: 10.5,-27.5 @@ -120033,7 +120050,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15612 + - uid: 15623 components: - rot: -1.5707963267948966 rad pos: 7.5,-27.5 @@ -120041,7 +120058,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15613 + - uid: 15624 components: - rot: 1.5707963267948966 rad pos: 6.5,-27.5 @@ -120049,7 +120066,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15614 + - uid: 15625 components: - rot: 1.5707963267948966 rad pos: 11.5,-25.5 @@ -120057,14 +120074,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15615 + - uid: 15626 components: - pos: -20.5,29.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15616 + - uid: 15627 components: - rot: -1.5707963267948966 rad pos: 19.5,-43.5 @@ -120072,7 +120089,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15617 + - uid: 15628 components: - rot: 1.5707963267948966 rad pos: 26.5,-16.5 @@ -120080,7 +120097,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15618 + - uid: 15629 components: - rot: 1.5707963267948966 rad pos: 32.5,-16.5 @@ -120088,7 +120105,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15619 + - uid: 15630 components: - rot: 1.5707963267948966 rad pos: -6.5,1.5 @@ -120096,7 +120113,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15620 + - uid: 15631 components: - rot: 1.5707963267948966 rad pos: -7.5,1.5 @@ -120104,21 +120121,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15621 + - uid: 15632 components: - pos: -8.5,5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15622 + - uid: 15633 components: - pos: -8.5,6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15623 + - uid: 15634 components: - rot: 1.5707963267948966 rad pos: 11.5,17.5 @@ -120126,7 +120143,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15624 + - uid: 15635 components: - rot: -1.5707963267948966 rad pos: 23.5,10.5 @@ -120136,14 +120153,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15625 + - uid: 15636 components: - pos: -23.5,-82.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15626 + - uid: 15637 components: - rot: 1.5707963267948966 rad pos: 30.5,-16.5 @@ -120151,7 +120168,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15627 + - uid: 15638 components: - rot: 3.141592653589793 rad pos: 8.5,1.5 @@ -120159,7 +120176,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15628 + - uid: 15639 components: - rot: 3.141592653589793 rad pos: 30.5,-19.5 @@ -120169,14 +120186,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15629 + - uid: 15640 components: - pos: -5.5,-23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15630 + - uid: 15641 components: - rot: -1.5707963267948966 rad pos: 4.5,-42.5 @@ -120184,7 +120201,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15631 + - uid: 15642 components: - rot: 1.5707963267948966 rad pos: -10.5,-27.5 @@ -120192,7 +120209,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15632 + - uid: 15643 components: - rot: -1.5707963267948966 rad pos: 1.5,-14.5 @@ -120200,7 +120217,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15633 + - uid: 15644 components: - rot: 1.5707963267948966 rad pos: -6.5,-25.5 @@ -120208,7 +120225,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15634 + - uid: 15645 components: - rot: 1.5707963267948966 rad pos: -4.5,-25.5 @@ -120216,7 +120233,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15635 + - uid: 15646 components: - rot: -1.5707963267948966 rad pos: 29.5,-18.5 @@ -120224,7 +120241,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15636 + - uid: 15647 components: - rot: -1.5707963267948966 rad pos: 27.5,-18.5 @@ -120232,7 +120249,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15637 + - uid: 15648 components: - rot: 1.5707963267948966 rad pos: 28.5,-16.5 @@ -120240,7 +120257,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15638 + - uid: 15649 components: - rot: 1.5707963267948966 rad pos: 25.5,-16.5 @@ -120248,7 +120265,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15639 + - uid: 15650 components: - rot: 3.141592653589793 rad pos: 14.5,-29.5 @@ -120256,7 +120273,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15640 + - uid: 15651 components: - rot: 1.5707963267948966 rad pos: 8.5,-27.5 @@ -120264,7 +120281,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15641 + - uid: 15652 components: - rot: 1.5707963267948966 rad pos: 11.5,-27.5 @@ -120272,14 +120289,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15642 + - uid: 15653 components: - pos: -3.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15643 + - uid: 15654 components: - rot: 3.141592653589793 rad pos: 36.5,-29.5 @@ -120287,14 +120304,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15644 + - uid: 15655 components: - pos: 47.5,-25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15645 + - uid: 15656 components: - rot: -1.5707963267948966 rad pos: 9.5,16.5 @@ -120302,7 +120319,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15646 + - uid: 15657 components: - rot: -1.5707963267948966 rad pos: 13.5,16.5 @@ -120310,7 +120327,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15647 + - uid: 15658 components: - rot: -1.5707963267948966 rad pos: 35.5,1.5 @@ -120318,7 +120335,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15648 + - uid: 15659 components: - rot: -1.5707963267948966 rad pos: 29.5,1.5 @@ -120326,7 +120343,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15649 + - uid: 15660 components: - rot: -1.5707963267948966 rad pos: 34.5,15.5 @@ -120334,7 +120351,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15650 + - uid: 15661 components: - rot: -1.5707963267948966 rad pos: 32.5,15.5 @@ -120342,7 +120359,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15651 + - uid: 15662 components: - rot: -1.5707963267948966 rad pos: 41.5,15.5 @@ -120350,7 +120367,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15652 + - uid: 15663 components: - rot: -1.5707963267948966 rad pos: 13.5,-0.5 @@ -120358,7 +120375,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15653 + - uid: 15664 components: - rot: -1.5707963267948966 rad pos: 30.5,-42.5 @@ -120366,7 +120383,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15654 + - uid: 15665 components: - rot: -1.5707963267948966 rad pos: -7.5,-42.5 @@ -120374,7 +120391,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15655 + - uid: 15666 components: - rot: 1.5707963267948966 rad pos: -5.5,-42.5 @@ -120382,7 +120399,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15656 + - uid: 15667 components: - rot: -1.5707963267948966 rad pos: 2.5,-42.5 @@ -120390,7 +120407,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15657 + - uid: 15668 components: - rot: 3.141592653589793 rad pos: 14.5,-33.5 @@ -120398,7 +120415,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15658 + - uid: 15669 components: - rot: -1.5707963267948966 rad pos: 10.5,-42.5 @@ -120406,7 +120423,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15659 + - uid: 15670 components: - rot: 3.141592653589793 rad pos: -5.5,-33.5 @@ -120414,7 +120431,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15660 + - uid: 15671 components: - rot: 3.141592653589793 rad pos: -5.5,-31.5 @@ -120422,7 +120439,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15661 + - uid: 15672 components: - rot: 3.141592653589793 rad pos: -5.5,-29.5 @@ -120430,7 +120447,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15662 + - uid: 15673 components: - rot: 1.5707963267948966 rad pos: 19.5,-5.5 @@ -120438,14 +120455,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15663 + - uid: 15674 components: - pos: 10.5,7.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15664 + - uid: 15675 components: - rot: 3.141592653589793 rad pos: 42.5,7.5 @@ -120453,7 +120470,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15665 + - uid: 15676 components: - rot: 3.141592653589793 rad pos: 8.5,4.5 @@ -120463,7 +120480,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15666 + - uid: 15677 components: - rot: 3.141592653589793 rad pos: 38.5,7.5 @@ -120471,14 +120488,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15667 + - uid: 15678 components: - pos: 34.5,-25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15668 + - uid: 15679 components: - pos: 10.5,18.5 parent: 2 @@ -120487,21 +120504,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15669 + - uid: 15680 components: - pos: -5.5,-26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15670 + - uid: 15681 components: - pos: -9.5,-4.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15671 + - uid: 15682 components: - rot: -1.5707963267948966 rad pos: 6.5,-61.5 @@ -120509,21 +120526,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15672 + - uid: 15683 components: - pos: 0.5,14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15673 + - uid: 15684 components: - pos: 34.5,4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15674 + - uid: 15685 components: - rot: 3.141592653589793 rad pos: 28.5,-32.5 @@ -120531,7 +120548,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15675 + - uid: 15686 components: - rot: 3.141592653589793 rad pos: 26.5,-32.5 @@ -120539,7 +120556,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15676 + - uid: 15687 components: - rot: 1.5707963267948966 rad pos: 15.5,-30.5 @@ -120547,7 +120564,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15677 + - uid: 15688 components: - rot: 1.5707963267948966 rad pos: 17.5,-30.5 @@ -120557,14 +120574,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15678 + - uid: 15689 components: - pos: 28.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15679 + - uid: 15690 components: - rot: -1.5707963267948966 rad pos: 14.5,16.5 @@ -120572,7 +120589,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15680 + - uid: 15691 components: - rot: -1.5707963267948966 rad pos: 10.5,16.5 @@ -120580,7 +120597,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15681 + - uid: 15692 components: - rot: -1.5707963267948966 rad pos: 8.5,16.5 @@ -120588,28 +120605,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15682 + - uid: 15693 components: - pos: 21.5,10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15683 + - uid: 15694 components: - pos: 21.5,9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15684 + - uid: 15695 components: - pos: 21.5,8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15685 + - uid: 15696 components: - rot: 1.5707963267948966 rad pos: 27.5,12.5 @@ -120619,21 +120636,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15686 + - uid: 15697 components: - pos: 25.5,9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15687 + - uid: 15698 components: - pos: 25.5,8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15688 + - uid: 15699 components: - rot: -1.5707963267948966 rad pos: 22.5,7.5 @@ -120641,7 +120658,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15689 + - uid: 15700 components: - rot: -1.5707963267948966 rad pos: 23.5,7.5 @@ -120649,7 +120666,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15690 + - uid: 15701 components: - rot: 1.5707963267948966 rad pos: 24.5,7.5 @@ -120657,7 +120674,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15691 + - uid: 15702 components: - pos: 38.5,3.5 parent: 2 @@ -120666,21 +120683,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15692 + - uid: 15703 components: - pos: 31.5,13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15693 + - uid: 15704 components: - pos: 31.5,14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15694 + - uid: 15705 components: - rot: -1.5707963267948966 rad pos: 30.5,15.5 @@ -120688,7 +120705,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15695 + - uid: 15706 components: - rot: 1.5707963267948966 rad pos: 20.5,-5.5 @@ -120696,21 +120713,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15696 + - uid: 15707 components: - pos: 20.5,12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15697 + - uid: 15708 components: - pos: 20.5,11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15698 + - uid: 15709 components: - pos: 20.5,9.5 parent: 2 @@ -120719,14 +120736,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15699 + - uid: 15710 components: - pos: 20.5,8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15700 + - uid: 15711 components: - rot: 1.5707963267948966 rad pos: 19.5,7.5 @@ -120734,7 +120751,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15701 + - uid: 15712 components: - rot: 3.141592653589793 rad pos: 18.5,6.5 @@ -120742,7 +120759,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15702 + - uid: 15713 components: - rot: 3.141592653589793 rad pos: 18.5,5.5 @@ -120750,7 +120767,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15703 + - uid: 15714 components: - rot: 3.141592653589793 rad pos: 18.5,4.5 @@ -120758,7 +120775,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15704 + - uid: 15715 components: - rot: 1.5707963267948966 rad pos: 19.5,13.5 @@ -120768,7 +120785,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15705 + - uid: 15716 components: - rot: 1.5707963267948966 rad pos: 18.5,13.5 @@ -120776,7 +120793,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15706 + - uid: 15717 components: - rot: 3.141592653589793 rad pos: 17.5,14.5 @@ -120784,7 +120801,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15707 + - uid: 15718 components: - rot: 3.141592653589793 rad pos: 17.5,15.5 @@ -120792,7 +120809,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15708 + - uid: 15719 components: - rot: 3.141592653589793 rad pos: 17.5,16.5 @@ -120800,7 +120817,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15709 + - uid: 15720 components: - rot: 3.141592653589793 rad pos: 5.5,18.5 @@ -120810,7 +120827,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15710 + - uid: 15721 components: - rot: 1.5707963267948966 rad pos: 14.5,17.5 @@ -120818,7 +120835,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15711 + - uid: 15722 components: - rot: 1.5707963267948966 rad pos: 3.5,17.5 @@ -120826,7 +120843,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15712 + - uid: 15723 components: - rot: 1.5707963267948966 rad pos: 2.5,17.5 @@ -120834,7 +120851,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15713 + - uid: 15724 components: - rot: 1.5707963267948966 rad pos: -3.5,13.5 @@ -120842,14 +120859,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15714 + - uid: 15725 components: - pos: -8.5,3.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15715 + - uid: 15726 components: - rot: 1.5707963267948966 rad pos: -4.5,1.5 @@ -120857,7 +120874,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15716 + - uid: 15727 components: - rot: 1.5707963267948966 rad pos: -3.5,1.5 @@ -120865,7 +120882,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15717 + - uid: 15728 components: - rot: 1.5707963267948966 rad pos: -2.5,1.5 @@ -120873,7 +120890,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15718 + - uid: 15729 components: - rot: 1.5707963267948966 rad pos: -1.5,1.5 @@ -120883,7 +120900,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15719 + - uid: 15730 components: - rot: 1.5707963267948966 rad pos: -0.5,1.5 @@ -120891,7 +120908,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15720 + - uid: 15731 components: - rot: 1.5707963267948966 rad pos: 0.5,1.5 @@ -120899,35 +120916,35 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15721 + - uid: 15732 components: - pos: 1.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15722 + - uid: 15733 components: - pos: 1.5,-0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15723 + - uid: 15734 components: - pos: 1.5,-1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15724 + - uid: 15735 components: - pos: 1.5,-2.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15725 + - uid: 15736 components: - rot: 1.5707963267948966 rad pos: 2.5,-3.5 @@ -120935,7 +120952,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15726 + - uid: 15737 components: - rot: 1.5707963267948966 rad pos: 2.5,-9.5 @@ -120943,35 +120960,35 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15727 + - uid: 15738 components: - pos: 1.5,-10.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15728 + - uid: 15739 components: - pos: 1.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15729 + - uid: 15740 components: - pos: 9.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15730 + - uid: 15741 components: - pos: 9.5,-0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15731 + - uid: 15742 components: - rot: 1.5707963267948966 rad pos: 10.5,-1.5 @@ -120979,56 +120996,56 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15732 + - uid: 15743 components: - pos: 11.5,-2.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15733 + - uid: 15744 components: - pos: 11.5,-3.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15734 + - uid: 15745 components: - pos: 11.5,-4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15735 + - uid: 15746 components: - pos: 11.5,-5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15736 + - uid: 15747 components: - pos: 11.5,-6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15737 + - uid: 15748 components: - pos: 11.5,-7.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15738 + - uid: 15749 components: - pos: 11.5,-8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15739 + - uid: 15750 components: - rot: -1.5707963267948966 rad pos: 9.5,-9.5 @@ -121036,7 +121053,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15740 + - uid: 15751 components: - rot: 3.141592653589793 rad pos: 19.5,19.5 @@ -121046,7 +121063,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15741 + - uid: 15752 components: - rot: 1.5707963267948966 rad pos: 26.5,21.5 @@ -121054,7 +121071,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15742 + - uid: 15753 components: - rot: 1.5707963267948966 rad pos: 27.5,21.5 @@ -121062,14 +121079,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15743 + - uid: 15754 components: - pos: 23.5,18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15744 + - uid: 15755 components: - pos: 23.5,19.5 parent: 2 @@ -121078,7 +121095,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15745 + - uid: 15756 components: - rot: 1.5707963267948966 rad pos: 24.5,20.5 @@ -121086,7 +121103,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15746 + - uid: 15757 components: - rot: 3.141592653589793 rad pos: 25.5,21.5 @@ -121094,7 +121111,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15747 + - uid: 15758 components: - rot: -1.5707963267948966 rad pos: -15.5,-38.5 @@ -121102,7 +121119,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15748 + - uid: 15759 components: - rot: -1.5707963267948966 rad pos: -14.5,-38.5 @@ -121110,21 +121127,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15749 + - uid: 15760 components: - pos: 7.5,17.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15750 + - uid: 15761 components: - pos: 17.5,19.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15751 + - uid: 15762 components: - rot: 3.141592653589793 rad pos: 16.5,19.5 @@ -121132,14 +121149,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15752 + - uid: 15763 components: - pos: 34.5,2.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15753 + - uid: 15764 components: - rot: -1.5707963267948966 rad pos: 30.5,0.5 @@ -121147,7 +121164,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15754 + - uid: 15765 components: - rot: 1.5707963267948966 rad pos: -6.5,-64.5 @@ -121155,14 +121172,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15755 + - uid: 15766 components: - pos: 21.5,-12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15756 + - uid: 15767 components: - rot: 3.141592653589793 rad pos: 34.5,-0.5 @@ -121170,7 +121187,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15757 + - uid: 15768 components: - rot: 3.141592653589793 rad pos: 34.5,-1.5 @@ -121178,7 +121195,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15758 + - uid: 15769 components: - rot: 3.141592653589793 rad pos: 34.5,-2.5 @@ -121186,7 +121203,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15759 + - uid: 15770 components: - rot: 3.141592653589793 rad pos: 34.5,-3.5 @@ -121194,7 +121211,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15760 + - uid: 15771 components: - rot: 3.141592653589793 rad pos: 34.5,-4.5 @@ -121202,7 +121219,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15761 + - uid: 15772 components: - rot: 3.141592653589793 rad pos: 34.5,-5.5 @@ -121210,7 +121227,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15762 + - uid: 15773 components: - rot: -1.5707963267948966 rad pos: 33.5,-6.5 @@ -121218,7 +121235,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15763 + - uid: 15774 components: - rot: -1.5707963267948966 rad pos: 32.5,-6.5 @@ -121226,7 +121243,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15764 + - uid: 15775 components: - rot: -1.5707963267948966 rad pos: 30.5,-6.5 @@ -121234,7 +121251,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15765 + - uid: 15776 components: - rot: -1.5707963267948966 rad pos: 28.5,-6.5 @@ -121242,7 +121259,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15766 + - uid: 15777 components: - rot: 1.5707963267948966 rad pos: 5.5,19.5 @@ -121250,7 +121267,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15767 + - uid: 15778 components: - rot: 1.5707963267948966 rad pos: 3.5,19.5 @@ -121260,7 +121277,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15768 + - uid: 15779 components: - rot: 1.5707963267948966 rad pos: 2.5,19.5 @@ -121268,7 +121285,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15769 + - uid: 15780 components: - rot: -1.5707963267948966 rad pos: 1.5,19.5 @@ -121276,21 +121293,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15770 + - uid: 15781 components: - pos: 26.5,-9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15771 + - uid: 15782 components: - pos: 26.5,-10.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15772 + - uid: 15783 components: - rot: -1.5707963267948966 rad pos: 24.5,-12.5 @@ -121298,7 +121315,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15773 + - uid: 15784 components: - rot: -1.5707963267948966 rad pos: 22.5,-12.5 @@ -121306,7 +121323,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15774 + - uid: 15785 components: - rot: 3.141592653589793 rad pos: 26.5,-14.5 @@ -121314,7 +121331,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15775 + - uid: 15786 components: - rot: 3.141592653589793 rad pos: 26.5,-15.5 @@ -121322,7 +121339,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15776 + - uid: 15787 components: - rot: 3.141592653589793 rad pos: 26.5,-17.5 @@ -121330,7 +121347,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15777 + - uid: 15788 components: - rot: 1.5707963267948966 rad pos: 23.5,-23.5 @@ -121338,7 +121355,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15778 + - uid: 15789 components: - rot: 1.5707963267948966 rad pos: 22.5,-23.5 @@ -121346,7 +121363,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15779 + - uid: 15790 components: - rot: 1.5707963267948966 rad pos: 28.5,-22.5 @@ -121354,7 +121371,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15780 + - uid: 15791 components: - rot: 3.141592653589793 rad pos: 21.5,-15.5 @@ -121362,7 +121379,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15781 + - uid: 15792 components: - rot: 1.5707963267948966 rad pos: 21.5,-23.5 @@ -121370,7 +121387,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15782 + - uid: 15793 components: - pos: 24.5,-26.5 parent: 2 @@ -121379,14 +121396,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15783 + - uid: 15794 components: - pos: 24.5,-28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15784 + - uid: 15795 components: - rot: 3.141592653589793 rad pos: 26.5,-25.5 @@ -121394,7 +121411,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15785 + - uid: 15796 components: - rot: 3.141592653589793 rad pos: 26.5,-28.5 @@ -121402,7 +121419,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15786 + - uid: 15797 components: - rot: 3.141592653589793 rad pos: 26.5,-29.5 @@ -121410,7 +121427,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15787 + - uid: 15798 components: - rot: -1.5707963267948966 rad pos: 28.5,-30.5 @@ -121418,7 +121435,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15788 + - uid: 15799 components: - rot: -1.5707963267948966 rad pos: 26.5,-29.5 @@ -121426,7 +121443,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15789 + - uid: 15800 components: - pos: 28.5,-33.5 parent: 2 @@ -121435,21 +121452,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15790 + - uid: 15801 components: - pos: 22.5,-32.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15791 + - uid: 15802 components: - pos: 22.5,-33.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15792 + - uid: 15803 components: - rot: 3.141592653589793 rad pos: 21.5,-29.5 @@ -121457,28 +121474,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15793 + - uid: 15804 components: - pos: 22.5,-35.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15794 + - uid: 15805 components: - pos: -11.5,-25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15795 + - uid: 15806 components: - pos: -8.5,-24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15796 + - uid: 15807 components: - rot: 1.5707963267948966 rad pos: 2.5,-25.5 @@ -121486,14 +121503,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15797 + - uid: 15808 components: - pos: 2.5,-11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15798 + - uid: 15809 components: - rot: 1.5707963267948966 rad pos: -6.5,7.5 @@ -121501,7 +121518,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15799 + - uid: 15810 components: - rot: 1.5707963267948966 rad pos: -7.5,7.5 @@ -121509,7 +121526,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15800 + - uid: 15811 components: - rot: 1.5707963267948966 rad pos: -8.5,7.5 @@ -121517,7 +121534,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15801 + - uid: 15812 components: - rot: 1.5707963267948966 rad pos: -9.5,7.5 @@ -121525,7 +121542,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15802 + - uid: 15813 components: - rot: -1.5707963267948966 rad pos: -9.5,1.5 @@ -121533,7 +121550,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15803 + - uid: 15814 components: - rot: -1.5707963267948966 rad pos: -11.5,1.5 @@ -121543,7 +121560,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15804 + - uid: 15815 components: - rot: -1.5707963267948966 rad pos: -12.5,1.5 @@ -121551,63 +121568,63 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15805 + - uid: 15816 components: - pos: -9.5,-2.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15806 + - uid: 15817 components: - pos: -9.5,-3.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15807 + - uid: 15818 components: - pos: -10.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15808 + - uid: 15819 components: - pos: -10.5,-0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15809 + - uid: 15820 components: - pos: -10.5,-1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15810 + - uid: 15821 components: - pos: -10.5,-3.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15811 + - uid: 15822 components: - pos: -10.5,-4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15812 + - uid: 15823 components: - pos: -10.5,-5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15813 + - uid: 15824 components: - rot: 3.141592653589793 rad pos: -2.5,-64.5 @@ -121615,7 +121632,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15814 + - uid: 15825 components: - rot: 3.141592653589793 rad pos: -2.5,-63.5 @@ -121623,7 +121640,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15815 + - uid: 15826 components: - rot: 3.141592653589793 rad pos: -2.5,-62.5 @@ -121631,7 +121648,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15816 + - uid: 15827 components: - rot: -1.5707963267948966 rad pos: -3.5,-61.5 @@ -121639,7 +121656,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15817 + - uid: 15828 components: - rot: -1.5707963267948966 rad pos: -0.5,-61.5 @@ -121647,7 +121664,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15818 + - uid: 15829 components: - rot: -1.5707963267948966 rad pos: 0.5,-61.5 @@ -121655,7 +121672,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15819 + - uid: 15830 components: - rot: -1.5707963267948966 rad pos: 1.5,-61.5 @@ -121663,14 +121680,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15820 + - uid: 15831 components: - pos: -8.5,-63.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15821 + - uid: 15832 components: - rot: -1.5707963267948966 rad pos: -10.5,-61.5 @@ -121678,7 +121695,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15822 + - uid: 15833 components: - rot: -1.5707963267948966 rad pos: -11.5,-61.5 @@ -121686,7 +121703,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15823 + - uid: 15834 components: - rot: -1.5707963267948966 rad pos: -12.5,-61.5 @@ -121694,7 +121711,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15824 + - uid: 15835 components: - rot: -1.5707963267948966 rad pos: -13.5,-61.5 @@ -121702,7 +121719,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15825 + - uid: 15836 components: - rot: -1.5707963267948966 rad pos: -14.5,-61.5 @@ -121710,7 +121727,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15826 + - uid: 15837 components: - pos: -15.5,-62.5 parent: 2 @@ -121719,21 +121736,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15827 + - uid: 15838 components: - pos: -15.5,-63.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15828 + - uid: 15839 components: - pos: -15.5,-64.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15829 + - uid: 15840 components: - rot: 3.141592653589793 rad pos: -0.5,-61.5 @@ -121741,7 +121758,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15830 + - uid: 15841 components: - rot: 3.141592653589793 rad pos: -0.5,-62.5 @@ -121751,7 +121768,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15831 + - uid: 15842 components: - rot: 3.141592653589793 rad pos: -0.5,-64.5 @@ -121759,7 +121776,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15832 + - uid: 15843 components: - rot: -1.5707963267948966 rad pos: -10.5,-60.5 @@ -121767,7 +121784,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15833 + - uid: 15844 components: - rot: -1.5707963267948966 rad pos: -11.5,-60.5 @@ -121775,7 +121792,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15834 + - uid: 15845 components: - pos: -12.5,-62.5 parent: 2 @@ -121784,21 +121801,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15835 + - uid: 15846 components: - pos: -12.5,-63.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15836 + - uid: 15847 components: - pos: -12.5,-64.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15837 + - uid: 15848 components: - rot: -1.5707963267948966 rad pos: 0.5,-60.5 @@ -121806,7 +121823,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15838 + - uid: 15849 components: - rot: -1.5707963267948966 rad pos: 1.5,-60.5 @@ -121814,7 +121831,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15839 + - uid: 15850 components: - rot: 1.5707963267948966 rad pos: 3.5,-60.5 @@ -121822,7 +121839,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15840 + - uid: 15851 components: - rot: -1.5707963267948966 rad pos: 4.5,-60.5 @@ -121830,7 +121847,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15841 + - uid: 15852 components: - rot: 3.141592653589793 rad pos: 5.5,-44.5 @@ -121840,7 +121857,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15842 + - uid: 15853 components: - rot: 3.141592653589793 rad pos: 5.5,-42.5 @@ -121848,7 +121865,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15843 + - uid: 15854 components: - rot: 3.141592653589793 rad pos: 3.5,-43.5 @@ -121856,7 +121873,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15844 + - uid: 15855 components: - rot: -1.5707963267948966 rad pos: 1.5,-42.5 @@ -121864,7 +121881,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15845 + - uid: 15856 components: - rot: -1.5707963267948966 rad pos: 0.5,-42.5 @@ -121872,7 +121889,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15846 + - uid: 15857 components: - rot: -1.5707963267948966 rad pos: -0.5,-42.5 @@ -121880,7 +121897,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15847 + - uid: 15858 components: - rot: -1.5707963267948966 rad pos: -1.5,-42.5 @@ -121888,7 +121905,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15848 + - uid: 15859 components: - rot: -1.5707963267948966 rad pos: -2.5,-42.5 @@ -121896,7 +121913,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15849 + - uid: 15860 components: - rot: -1.5707963267948966 rad pos: 4.5,-41.5 @@ -121904,7 +121921,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15850 + - uid: 15861 components: - rot: 3.141592653589793 rad pos: -1.5,-51.5 @@ -121912,7 +121929,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15851 + - uid: 15862 components: - rot: 3.141592653589793 rad pos: -9.5,-60.5 @@ -121920,7 +121937,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15852 + - uid: 15863 components: - rot: 1.5707963267948966 rad pos: -13.5,-60.5 @@ -121928,7 +121945,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15853 + - uid: 15864 components: - rot: -1.5707963267948966 rad pos: -13.5,-41.5 @@ -121936,7 +121953,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15854 + - uid: 15865 components: - rot: -1.5707963267948966 rad pos: 19.5,-29.5 @@ -121944,7 +121961,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15855 + - uid: 15866 components: - rot: -1.5707963267948966 rad pos: 21.5,10.5 @@ -121952,7 +121969,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15856 + - uid: 15867 components: - rot: 1.5707963267948966 rad pos: 6.5,-25.5 @@ -121960,7 +121977,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15857 + - uid: 15868 components: - rot: 1.5707963267948966 rad pos: -4.5,-27.5 @@ -121968,7 +121985,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15858 + - uid: 15869 components: - rot: 1.5707963267948966 rad pos: -3.5,-27.5 @@ -121976,7 +121993,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15859 + - uid: 15870 components: - rot: 1.5707963267948966 rad pos: -2.5,-27.5 @@ -121984,7 +122001,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15860 + - uid: 15871 components: - rot: 1.5707963267948966 rad pos: 0.5,-27.5 @@ -121992,7 +122009,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15861 + - uid: 15872 components: - rot: 1.5707963267948966 rad pos: -9.5,-27.5 @@ -122000,42 +122017,42 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15862 + - uid: 15873 components: - pos: -3.5,-33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15863 + - uid: 15874 components: - pos: -3.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15864 + - uid: 15875 components: - pos: -3.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15865 + - uid: 15876 components: - pos: -3.5,-37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15866 + - uid: 15877 components: - pos: -3.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15867 + - uid: 15878 components: - rot: 1.5707963267948966 rad pos: 17.5,-41.5 @@ -122043,7 +122060,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15868 + - uid: 15879 components: - rot: 1.5707963267948966 rad pos: 23.5,-43.5 @@ -122051,7 +122068,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15869 + - uid: 15880 components: - rot: -1.5707963267948966 rad pos: 25.5,-43.5 @@ -122059,7 +122076,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15870 + - uid: 15881 components: - rot: -1.5707963267948966 rad pos: 26.5,-43.5 @@ -122067,7 +122084,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15871 + - uid: 15882 components: - rot: -1.5707963267948966 rad pos: 27.5,-43.5 @@ -122075,7 +122092,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15872 + - uid: 15883 components: - rot: -1.5707963267948966 rad pos: 29.5,-43.5 @@ -122083,7 +122100,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15873 + - uid: 15884 components: - rot: -1.5707963267948966 rad pos: 21.5,-12.5 @@ -122091,7 +122108,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15874 + - uid: 15885 components: - rot: 3.141592653589793 rad pos: -11.5,-40.5 @@ -122101,7 +122118,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15875 + - uid: 15886 components: - pos: 35.5,7.5 parent: 2 @@ -122110,7 +122127,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15876 + - uid: 15887 components: - rot: 1.5707963267948966 rad pos: -34.5,20.5 @@ -122118,7 +122135,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15877 + - uid: 15888 components: - rot: 1.5707963267948966 rad pos: -32.5,20.5 @@ -122126,7 +122143,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15878 + - uid: 15889 components: - rot: -1.5707963267948966 rad pos: -26.5,-77.5 @@ -122134,7 +122151,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15879 + - uid: 15890 components: - rot: 3.141592653589793 rad pos: -18.5,-74.5 @@ -122142,7 +122159,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15880 + - uid: 15891 components: - rot: 3.141592653589793 rad pos: -18.5,-77.5 @@ -122150,7 +122167,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15881 + - uid: 15892 components: - rot: 1.5707963267948966 rad pos: -24.5,-78.5 @@ -122158,7 +122175,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15882 + - uid: 15893 components: - rot: 1.5707963267948966 rad pos: -25.5,-78.5 @@ -122166,7 +122183,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15883 + - uid: 15894 components: - rot: 1.5707963267948966 rad pos: -17.5,-61.5 @@ -122174,7 +122191,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15884 + - uid: 15895 components: - rot: 1.5707963267948966 rad pos: -16.5,-61.5 @@ -122182,14 +122199,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15885 + - uid: 15896 components: - pos: -24.5,-87.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15886 + - uid: 15897 components: - rot: 1.5707963267948966 rad pos: -18.5,-61.5 @@ -122197,14 +122214,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15887 + - uid: 15898 components: - pos: -3.5,-4.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15888 + - uid: 15899 components: - pos: 35.5,4.5 parent: 2 @@ -122213,21 +122230,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15889 + - uid: 15900 components: - pos: 17.5,-4.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15890 + - uid: 15901 components: - pos: 17.5,-1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15891 + - uid: 15902 components: - rot: -1.5707963267948966 rad pos: 16.5,-0.5 @@ -122235,7 +122252,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15892 + - uid: 15903 components: - rot: -1.5707963267948966 rad pos: 12.5,-0.5 @@ -122243,7 +122260,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15893 + - uid: 15904 components: - rot: -1.5707963267948966 rad pos: 35.5,15.5 @@ -122251,7 +122268,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15894 + - uid: 15905 components: - rot: -1.5707963267948966 rad pos: 33.5,15.5 @@ -122259,7 +122276,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15895 + - uid: 15906 components: - rot: 3.141592653589793 rad pos: 21.5,13.5 @@ -122267,14 +122284,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15896 + - uid: 15907 components: - pos: 23.5,-35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15897 + - uid: 15908 components: - rot: 1.5707963267948966 rad pos: 30.5,9.5 @@ -122284,7 +122301,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15898 + - uid: 15909 components: - pos: 2.5,-8.5 parent: 2 @@ -122293,7 +122310,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15899 + - uid: 15910 components: - rot: -1.5707963267948966 rad pos: 0.5,-14.5 @@ -122301,14 +122318,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15900 + - uid: 15911 components: - pos: 2.5,-6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15901 + - uid: 15912 components: - rot: -1.5707963267948966 rad pos: -4.5,7.5 @@ -122316,21 +122333,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15902 + - uid: 15913 components: - pos: -3.5,9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15903 + - uid: 15914 components: - pos: 7.5,15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15904 + - uid: 15915 components: - rot: 1.5707963267948966 rad pos: -1.5,-1.5 @@ -122338,7 +122355,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15905 + - uid: 15916 components: - rot: 3.141592653589793 rad pos: 2.5,4.5 @@ -122346,14 +122363,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15906 + - uid: 15917 components: - pos: 0.5,9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15907 + - uid: 15918 components: - rot: 1.5707963267948966 rad pos: -1.5,11.5 @@ -122363,7 +122380,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15908 + - uid: 15919 components: - rot: 1.5707963267948966 rad pos: -7.5,-1.5 @@ -122371,7 +122388,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15909 + - uid: 15920 components: - rot: 1.5707963267948966 rad pos: 1.5,-1.5 @@ -122379,28 +122396,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15910 + - uid: 15921 components: - pos: 10.5,4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15911 + - uid: 15922 components: - pos: 10.5,6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15912 + - uid: 15923 components: - pos: 10.5,5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15913 + - uid: 15924 components: - rot: 3.141592653589793 rad pos: -21.5,-86.5 @@ -122408,14 +122425,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15914 + - uid: 15925 components: - pos: -19.5,-58.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15915 + - uid: 15926 components: - rot: 1.5707963267948966 rad pos: 24.5,-16.5 @@ -122423,7 +122440,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15916 + - uid: 15927 components: - rot: 1.5707963267948966 rad pos: 29.5,-16.5 @@ -122431,14 +122448,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15917 + - uid: 15928 components: - pos: 31.5,-17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15918 + - uid: 15929 components: - pos: 31.5,-15.5 parent: 2 @@ -122447,7 +122464,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15919 + - uid: 15930 components: - rot: 3.141592653589793 rad pos: 10.5,-3.5 @@ -122455,7 +122472,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15920 + - uid: 15931 components: - rot: 3.141592653589793 rad pos: 10.5,-2.5 @@ -122463,7 +122480,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15921 + - uid: 15932 components: - rot: -1.5707963267948966 rad pos: 7.5,-0.5 @@ -122471,7 +122488,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15922 + - uid: 15933 components: - rot: 3.141592653589793 rad pos: 10.5,-1.5 @@ -122479,7 +122496,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15923 + - uid: 15934 components: - rot: 1.5707963267948966 rad pos: 18.5,12.5 @@ -122487,7 +122504,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15924 + - uid: 15935 components: - rot: 1.5707963267948966 rad pos: 19.5,12.5 @@ -122497,7 +122514,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15925 + - uid: 15936 components: - rot: -1.5707963267948966 rad pos: 5.5,-0.5 @@ -122505,7 +122522,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15926 + - uid: 15937 components: - rot: -1.5707963267948966 rad pos: 6.5,-0.5 @@ -122513,7 +122530,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15927 + - uid: 15938 components: - rot: -1.5707963267948966 rad pos: 9.5,-0.5 @@ -122521,7 +122538,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15928 + - uid: 15939 components: - rot: 3.141592653589793 rad pos: -9.5,-41.5 @@ -122529,14 +122546,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15929 + - uid: 15940 components: - pos: 8.5,6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15930 + - uid: 15941 components: - rot: 3.141592653589793 rad pos: 21.5,14.5 @@ -122544,28 +122561,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15931 + - uid: 15942 components: - pos: -3.5,-30.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15932 + - uid: 15943 components: - pos: -3.5,-31.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15933 + - uid: 15944 components: - pos: -3.5,-32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15934 + - uid: 15945 components: - rot: 1.5707963267948966 rad pos: -0.5,-1.5 @@ -122573,7 +122590,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15935 + - uid: 15946 components: - rot: 1.5707963267948966 rad pos: 9.5,-25.5 @@ -122581,7 +122598,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15936 + - uid: 15947 components: - rot: 1.5707963267948966 rad pos: 8.5,-25.5 @@ -122589,7 +122606,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15937 + - uid: 15948 components: - rot: -1.5707963267948966 rad pos: 18.5,17.5 @@ -122597,7 +122614,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15938 + - uid: 15949 components: - rot: 1.5707963267948966 rad pos: -0.5,13.5 @@ -122605,7 +122622,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15939 + - uid: 15950 components: - pos: -6.5,12.5 parent: 2 @@ -122614,21 +122631,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15940 + - uid: 15951 components: - pos: -6.5,9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15941 + - uid: 15952 components: - pos: 15.5,-41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15942 + - uid: 15953 components: - rot: 1.5707963267948966 rad pos: 4.5,-27.5 @@ -122636,7 +122653,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15943 + - uid: 15954 components: - rot: 1.5707963267948966 rad pos: 5.5,-27.5 @@ -122644,7 +122661,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15944 + - uid: 15955 components: - rot: 1.5707963267948966 rad pos: 13.5,-43.5 @@ -122652,7 +122669,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15945 + - uid: 15956 components: - rot: -1.5707963267948966 rad pos: 6.5,-42.5 @@ -122660,7 +122677,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15946 + - uid: 15957 components: - rot: 3.141592653589793 rad pos: 14.5,-36.5 @@ -122668,7 +122685,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15947 + - uid: 15958 components: - rot: -1.5707963267948966 rad pos: 11.5,-41.5 @@ -122676,7 +122693,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15948 + - uid: 15959 components: - rot: 3.141592653589793 rad pos: 14.5,-39.5 @@ -122684,7 +122701,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15949 + - uid: 15960 components: - rot: 3.141592653589793 rad pos: 14.5,-40.5 @@ -122692,7 +122709,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15950 + - uid: 15961 components: - rot: -1.5707963267948966 rad pos: 12.5,-41.5 @@ -122700,7 +122717,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15951 + - uid: 15962 components: - rot: 3.141592653589793 rad pos: 14.5,-38.5 @@ -122708,7 +122725,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15952 + - uid: 15963 components: - rot: -1.5707963267948966 rad pos: 13.5,-41.5 @@ -122716,14 +122733,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15953 + - uid: 15964 components: - pos: 15.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15954 + - uid: 15965 components: - rot: -1.5707963267948966 rad pos: 8.5,-41.5 @@ -122731,7 +122748,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15955 + - uid: 15966 components: - rot: -1.5707963267948966 rad pos: 7.5,-41.5 @@ -122739,7 +122756,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15956 + - uid: 15967 components: - rot: -1.5707963267948966 rad pos: 9.5,-41.5 @@ -122747,14 +122764,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15957 + - uid: 15968 components: - pos: 15.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15958 + - uid: 15969 components: - rot: 3.141592653589793 rad pos: 40.5,-72.5 @@ -122762,7 +122779,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15959 + - uid: 15970 components: - rot: 3.141592653589793 rad pos: 16.5,17.5 @@ -122770,7 +122787,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15960 + - uid: 15971 components: - rot: 3.141592653589793 rad pos: 16.5,18.5 @@ -122778,7 +122795,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15961 + - uid: 15972 components: - rot: 3.141592653589793 rad pos: 16.5,20.5 @@ -122786,7 +122803,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15962 + - uid: 15973 components: - rot: 3.141592653589793 rad pos: 16.5,21.5 @@ -122794,7 +122811,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15963 + - uid: 15974 components: - rot: -1.5707963267948966 rad pos: 33.5,0.5 @@ -122802,7 +122819,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15964 + - uid: 15975 components: - rot: -1.5707963267948966 rad pos: 32.5,0.5 @@ -122810,7 +122827,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15965 + - uid: 15976 components: - rot: -1.5707963267948966 rad pos: 31.5,0.5 @@ -122820,7 +122837,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15966 + - uid: 15977 components: - rot: -1.5707963267948966 rad pos: 29.5,0.5 @@ -122828,7 +122845,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15967 + - uid: 15978 components: - rot: -1.5707963267948966 rad pos: 28.5,0.5 @@ -122836,7 +122853,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15968 + - uid: 15979 components: - rot: 3.141592653589793 rad pos: 14.5,-34.5 @@ -122844,14 +122861,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15969 + - uid: 15980 components: - pos: 15.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15970 + - uid: 15981 components: - rot: 3.141592653589793 rad pos: 14.5,-31.5 @@ -122859,49 +122876,49 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15971 + - uid: 15982 components: - pos: 15.5,-33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15972 + - uid: 15983 components: - pos: 15.5,-35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15973 + - uid: 15984 components: - pos: 15.5,-31.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15974 + - uid: 15985 components: - pos: 15.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15975 + - uid: 15986 components: - pos: 15.5,-20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15976 + - uid: 15987 components: - pos: 15.5,-19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15977 + - uid: 15988 components: - rot: 1.5707963267948966 rad pos: 19.5,-17.5 @@ -122909,14 +122926,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15978 + - uid: 15989 components: - pos: 15.5,-18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15979 + - uid: 15990 components: - rot: 1.5707963267948966 rad pos: 16.5,-17.5 @@ -122924,7 +122941,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15980 + - uid: 15991 components: - rot: 1.5707963267948966 rad pos: 17.5,-17.5 @@ -122932,7 +122949,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15981 + - uid: 15992 components: - rot: 1.5707963267948966 rad pos: 18.5,-17.5 @@ -122940,7 +122957,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15982 + - uid: 15993 components: - rot: 3.141592653589793 rad pos: 15.5,-27.5 @@ -122948,14 +122965,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15983 + - uid: 15994 components: - pos: 26.5,-8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15984 + - uid: 15995 components: - rot: 1.5707963267948966 rad pos: -2.5,-25.5 @@ -122963,7 +122980,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15985 + - uid: 15996 components: - rot: -1.5707963267948966 rad pos: 20.5,-30.5 @@ -122973,7 +122990,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15986 + - uid: 15997 components: - rot: -1.5707963267948966 rad pos: 19.5,-30.5 @@ -122981,14 +122998,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15987 + - uid: 15998 components: - pos: 22.5,-34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15988 + - uid: 15999 components: - rot: -1.5707963267948966 rad pos: 23.5,-30.5 @@ -122996,14 +123013,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15989 + - uid: 16000 components: - pos: 28.5,-30.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15990 + - uid: 16001 components: - rot: 3.141592653589793 rad pos: 15.5,-28.5 @@ -123011,14 +123028,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15991 + - uid: 16002 components: - pos: -3.5,-16.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15992 + - uid: 16003 components: - rot: 1.5707963267948966 rad pos: 16.5,-30.5 @@ -123026,7 +123043,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15993 + - uid: 16004 components: - rot: 1.5707963267948966 rad pos: -1.5,-25.5 @@ -123034,7 +123051,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15994 + - uid: 16005 components: - rot: 3.141592653589793 rad pos: 15.5,-26.5 @@ -123042,14 +123059,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15995 + - uid: 16006 components: - pos: -3.5,-19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15996 + - uid: 16007 components: - rot: 1.5707963267948966 rad pos: -29.5,-80.5 @@ -123057,7 +123074,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15997 + - uid: 16008 components: - rot: -1.5707963267948966 rad pos: -20.5,-73.5 @@ -123065,14 +123082,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15998 + - uid: 16009 components: - pos: -3.5,8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15999 + - uid: 16010 components: - rot: -1.5707963267948966 rad pos: -8.5,-41.5 @@ -123080,21 +123097,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16000 + - uid: 16011 components: - pos: -23.5,-76.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16001 + - uid: 16012 components: - pos: -23.5,-75.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16002 + - uid: 16013 components: - rot: -1.5707963267948966 rad pos: -19.5,-73.5 @@ -123102,7 +123119,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16003 + - uid: 16014 components: - rot: -1.5707963267948966 rad pos: 8.5,12.5 @@ -123110,7 +123127,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16004 + - uid: 16015 components: - rot: 3.141592653589793 rad pos: 8.5,12.5 @@ -123118,7 +123135,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16005 + - uid: 16016 components: - rot: -1.5707963267948966 rad pos: -9.5,-41.5 @@ -123126,7 +123143,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16006 + - uid: 16017 components: - rot: 3.141592653589793 rad pos: -12.5,-45.5 @@ -123134,14 +123151,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16007 + - uid: 16018 components: - pos: -9.5,-54.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16008 + - uid: 16019 components: - rot: 3.141592653589793 rad pos: -3.5,-54.5 @@ -123149,7 +123166,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16009 + - uid: 16020 components: - rot: 3.141592653589793 rad pos: -3.5,-55.5 @@ -123157,7 +123174,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16010 + - uid: 16021 components: - rot: 3.141592653589793 rad pos: -1.5,-49.5 @@ -123165,7 +123182,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16011 + - uid: 16022 components: - rot: -1.5707963267948966 rad pos: -1.5,-41.5 @@ -123173,7 +123190,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16012 + - uid: 16023 components: - rot: -1.5707963267948966 rad pos: -2.5,-41.5 @@ -123181,35 +123198,35 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16013 + - uid: 16024 components: - pos: -5.5,-16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16014 + - uid: 16025 components: - pos: 2.5,-13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16015 + - uid: 16026 components: - pos: -5.5,-13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16016 + - uid: 16027 components: - pos: -5.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16017 + - uid: 16028 components: - rot: -1.5707963267948966 rad pos: -6.5,-41.5 @@ -123217,84 +123234,84 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16018 + - uid: 16029 components: - pos: -5.5,-6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16019 + - uid: 16030 components: - pos: -5.5,-4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16020 + - uid: 16031 components: - pos: -5.5,-3.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16021 + - uid: 16032 components: - pos: -5.5,-1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16022 + - uid: 16033 components: - pos: -5.5,-0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16023 + - uid: 16034 components: - pos: -5.5,-12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16024 + - uid: 16035 components: - pos: -5.5,-21.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16025 + - uid: 16036 components: - pos: -5.5,-15.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16026 + - uid: 16037 components: - pos: -5.5,-20.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16027 + - uid: 16038 components: - pos: -5.5,-19.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16028 + - uid: 16039 components: - pos: -5.5,-5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16029 + - uid: 16040 components: - rot: 1.5707963267948966 rad pos: -1.5,13.5 @@ -123304,7 +123321,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16030 + - uid: 16041 components: - rot: 3.141592653589793 rad pos: -1.5,-48.5 @@ -123312,7 +123329,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16031 + - uid: 16042 components: - rot: 3.141592653589793 rad pos: -21.5,-88.5 @@ -123320,7 +123337,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16032 + - uid: 16043 components: - rot: 3.141592653589793 rad pos: 34.5,-31.5 @@ -123328,7 +123345,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16033 + - uid: 16044 components: - rot: -1.5707963267948966 rad pos: -1.5,-14.5 @@ -123336,7 +123353,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16034 + - uid: 16045 components: - rot: 3.141592653589793 rad pos: 34.5,-30.5 @@ -123344,7 +123361,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16035 + - uid: 16046 components: - rot: 1.5707963267948966 rad pos: 43.5,-24.5 @@ -123352,7 +123369,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16036 + - uid: 16047 components: - rot: 1.5707963267948966 rad pos: -28.5,-78.5 @@ -123360,7 +123377,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16037 + - uid: 16048 components: - rot: 1.5707963267948966 rad pos: -29.5,-78.5 @@ -123368,7 +123385,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16038 + - uid: 16049 components: - rot: -1.5707963267948966 rad pos: -21.5,30.5 @@ -123376,7 +123393,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16039 + - uid: 16050 components: - rot: 3.141592653589793 rad pos: 34.5,-37.5 @@ -123384,7 +123401,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16040 + - uid: 16051 components: - rot: 3.141592653589793 rad pos: 34.5,-33.5 @@ -123392,14 +123409,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16041 + - uid: 16052 components: - pos: 24.5,-30.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16042 + - uid: 16053 components: - rot: -1.5707963267948966 rad pos: 30.5,12.5 @@ -123409,7 +123426,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16043 + - uid: 16054 components: - rot: -1.5707963267948966 rad pos: 19.5,16.5 @@ -123417,7 +123434,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16044 + - uid: 16055 components: - rot: 3.141592653589793 rad pos: -12.5,6.5 @@ -123425,7 +123442,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16045 + - uid: 16056 components: - rot: -1.5707963267948966 rad pos: 32.5,12.5 @@ -123433,7 +123450,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16046 + - uid: 16057 components: - rot: 3.141592653589793 rad pos: 30.5,-20.5 @@ -123443,7 +123460,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16047 + - uid: 16058 components: - rot: 3.141592653589793 rad pos: 10.5,10.5 @@ -123451,7 +123468,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16048 + - uid: 16059 components: - rot: 1.5707963267948966 rad pos: 8.5,8.5 @@ -123459,7 +123476,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16049 + - uid: 16060 components: - rot: -1.5707963267948966 rad pos: -22.5,30.5 @@ -123467,7 +123484,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16050 + - uid: 16061 components: - rot: -1.5707963267948966 rad pos: -20.5,29.5 @@ -123475,28 +123492,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16051 + - uid: 16062 components: - pos: -20.5,26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16052 + - uid: 16063 components: - pos: 26.5,-31.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16053 + - uid: 16064 components: - pos: 26.5,-27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16054 + - uid: 16065 components: - rot: 3.141592653589793 rad pos: 2.5,-2.5 @@ -123506,42 +123523,42 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16055 + - uid: 16066 components: - pos: 2.5,-5.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16056 + - uid: 16067 components: - pos: -3.5,-3.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16057 + - uid: 16068 components: - pos: -3.5,-2.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16058 + - uid: 16069 components: - pos: -3.5,-15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16059 + - uid: 16070 components: - pos: 47.5,-27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16060 + - uid: 16071 components: - rot: 3.141592653589793 rad pos: 8.5,5.5 @@ -123549,7 +123566,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16061 + - uid: 16072 components: - rot: -1.5707963267948966 rad pos: 29.5,12.5 @@ -123557,7 +123574,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16062 + - uid: 16073 components: - rot: 3.141592653589793 rad pos: 40.5,3.5 @@ -123567,7 +123584,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16063 + - uid: 16074 components: - rot: 1.5707963267948966 rad pos: 42.5,-27.5 @@ -123575,7 +123592,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16064 + - uid: 16075 components: - rot: 1.5707963267948966 rad pos: 17.5,12.5 @@ -123583,7 +123600,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16065 + - uid: 16076 components: - rot: 1.5707963267948966 rad pos: 43.5,-27.5 @@ -123591,7 +123608,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16066 + - uid: 16077 components: - rot: -1.5707963267948966 rad pos: 10.5,12.5 @@ -123599,21 +123616,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16067 + - uid: 16078 components: - pos: 26.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16068 + - uid: 16079 components: - pos: 26.5,-16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16069 + - uid: 16080 components: - rot: -1.5707963267948966 rad pos: 27.5,-30.5 @@ -123623,7 +123640,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16070 + - uid: 16081 components: - rot: -1.5707963267948966 rad pos: 22.5,-42.5 @@ -123631,7 +123648,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16071 + - uid: 16082 components: - rot: -1.5707963267948966 rad pos: 23.5,-42.5 @@ -123639,7 +123656,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16072 + - uid: 16083 components: - rot: -1.5707963267948966 rad pos: 27.5,-42.5 @@ -123647,7 +123664,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16073 + - uid: 16084 components: - rot: 3.141592653589793 rad pos: 8.5,2.5 @@ -123655,14 +123672,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16074 + - uid: 16085 components: - pos: -11.5,-24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16075 + - uid: 16086 components: - rot: 3.141592653589793 rad pos: -8.5,-23.5 @@ -123670,7 +123687,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16076 + - uid: 16087 components: - rot: 3.141592653589793 rad pos: 10.5,9.5 @@ -123678,14 +123695,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16077 + - uid: 16088 components: - pos: 2.5,-12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16078 + - uid: 16089 components: - rot: -1.5707963267948966 rad pos: 20.5,16.5 @@ -123693,14 +123710,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16079 + - uid: 16090 components: - pos: 23.5,-33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16080 + - uid: 16091 components: - rot: 1.5707963267948966 rad pos: 23.5,-54.5 @@ -123710,28 +123727,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16081 + - uid: 16092 components: - pos: -3.5,-17.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16082 + - uid: 16093 components: - pos: -5.5,-22.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16083 + - uid: 16094 components: - pos: -5.5,-18.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16084 + - uid: 16095 components: - rot: -1.5707963267948966 rad pos: -23.5,30.5 @@ -123739,7 +123756,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16085 + - uid: 16096 components: - rot: -1.5707963267948966 rad pos: -16.5,29.5 @@ -123747,7 +123764,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16086 + - uid: 16097 components: - rot: -1.5707963267948966 rad pos: -19.5,29.5 @@ -123755,7 +123772,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16087 + - uid: 16098 components: - rot: -1.5707963267948966 rad pos: 10.5,-9.5 @@ -123763,7 +123780,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16088 + - uid: 16099 components: - rot: 3.141592653589793 rad pos: 34.5,-34.5 @@ -123771,7 +123788,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16089 + - uid: 16100 components: - rot: 1.5707963267948966 rad pos: 6.5,19.5 @@ -123779,7 +123796,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16090 + - uid: 16101 components: - rot: 3.141592653589793 rad pos: 40.5,1.5 @@ -123787,21 +123804,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16091 + - uid: 16102 components: - pos: 0.5,8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16092 + - uid: 16103 components: - pos: 0.5,10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16093 + - uid: 16104 components: - rot: 1.5707963267948966 rad pos: -0.5,11.5 @@ -123809,7 +123826,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16094 + - uid: 16105 components: - rot: 3.141592653589793 rad pos: 2.5,3.5 @@ -123817,12 +123834,12 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16095 + - uid: 16106 components: - pos: 2.5,12.5 parent: 2 type: Transform - - uid: 16096 + - uid: 16107 components: - rot: 3.141592653589793 rad pos: 8.5,3.5 @@ -123830,26 +123847,26 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16097 + - uid: 16108 components: - pos: 34.5,-27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16098 + - uid: 16109 components: - pos: 2.5,13.5 parent: 2 type: Transform - - uid: 16099 + - uid: 16110 components: - pos: 2.5,-0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16100 + - uid: 16111 components: - rot: 1.5707963267948966 rad pos: 3.5,0.5 @@ -123857,7 +123874,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16101 + - uid: 16112 components: - rot: 1.5707963267948966 rad pos: -2.5,-1.5 @@ -123865,7 +123882,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16102 + - uid: 16113 components: - rot: 1.5707963267948966 rad pos: -5.5,-1.5 @@ -123873,7 +123890,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16103 + - uid: 16114 components: - rot: 3.141592653589793 rad pos: -1.5,-50.5 @@ -123881,7 +123898,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16104 + - uid: 16115 components: - rot: -1.5707963267948966 rad pos: 37.5,11.5 @@ -123889,7 +123906,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16105 + - uid: 16116 components: - rot: 1.5707963267948966 rad pos: 8.5,17.5 @@ -123897,7 +123914,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16106 + - uid: 16117 components: - rot: 1.5707963267948966 rad pos: 7.5,17.5 @@ -123905,7 +123922,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16107 + - uid: 16118 components: - rot: 1.5707963267948966 rad pos: 6.5,17.5 @@ -123913,14 +123930,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16108 + - uid: 16119 components: - pos: -8.5,7.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16109 + - uid: 16120 components: - rot: 1.5707963267948966 rad pos: 12.5,17.5 @@ -123928,7 +123945,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16110 + - uid: 16121 components: - rot: 3.141592653589793 rad pos: -3.5,-58.5 @@ -123938,14 +123955,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16111 + - uid: 16122 components: - pos: -3.5,-20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16112 + - uid: 16123 components: - rot: -1.5707963267948966 rad pos: -6.5,-42.5 @@ -123953,7 +123970,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16113 + - uid: 16124 components: - rot: 3.141592653589793 rad pos: 2.5,2.5 @@ -123961,7 +123978,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16114 + - uid: 16125 components: - rot: -1.5707963267948966 rad pos: 18.5,-12.5 @@ -123969,7 +123986,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16115 + - uid: 16126 components: - rot: 1.5707963267948966 rad pos: 22.5,-16.5 @@ -123977,7 +123994,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16116 + - uid: 16127 components: - rot: 1.5707963267948966 rad pos: 23.5,-16.5 @@ -123985,7 +124002,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16117 + - uid: 16128 components: - rot: 1.5707963267948966 rad pos: 27.5,-16.5 @@ -123993,7 +124010,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16118 + - uid: 16129 components: - rot: 1.5707963267948966 rad pos: 31.5,-16.5 @@ -124001,28 +124018,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16119 + - uid: 16130 components: - pos: 21.5,-13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16120 + - uid: 16131 components: - pos: 21.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16121 + - uid: 16132 components: - pos: 21.5,-11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16122 + - uid: 16133 components: - pos: 21.5,-9.5 parent: 2 @@ -124031,7 +124048,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16123 + - uid: 16134 components: - pos: 21.5,-7.5 parent: 2 @@ -124040,28 +124057,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16124 + - uid: 16135 components: - pos: 21.5,-8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16125 + - uid: 16136 components: - pos: 21.5,-6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16126 + - uid: 16137 components: - pos: 22.5,-36.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16127 + - uid: 16138 components: - rot: 3.141592653589793 rad pos: 26.5,-23.5 @@ -124069,7 +124086,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16128 + - uid: 16139 components: - rot: 1.5707963267948966 rad pos: 27.5,-22.5 @@ -124077,14 +124094,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16129 + - uid: 16140 components: - pos: 20.5,-22.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16130 + - uid: 16141 components: - rot: 3.141592653589793 rad pos: 26.5,-13.5 @@ -124092,14 +124109,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16131 + - uid: 16142 components: - pos: 31.5,-16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16132 + - uid: 16143 components: - pos: 33.5,-15.5 parent: 2 @@ -124108,21 +124125,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16133 + - uid: 16144 components: - pos: -5.5,-25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16134 + - uid: 16145 components: - pos: -5.5,-24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16135 + - uid: 16146 components: - rot: -1.5707963267948966 rad pos: 28.5,-42.5 @@ -124130,7 +124147,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16136 + - uid: 16147 components: - pos: 26.5,-33.5 parent: 2 @@ -124139,7 +124156,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16137 + - uid: 16148 components: - rot: -1.5707963267948966 rad pos: 25.5,-29.5 @@ -124149,7 +124166,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16138 + - uid: 16149 components: - rot: -1.5707963267948966 rad pos: 6.5,12.5 @@ -124157,7 +124174,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16139 + - uid: 16150 components: - rot: -1.5707963267948966 rad pos: 9.5,12.5 @@ -124167,7 +124184,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16140 + - uid: 16151 components: - rot: -1.5707963267948966 rad pos: 20.5,-12.5 @@ -124175,7 +124192,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16141 + - uid: 16152 components: - rot: 1.5707963267948966 rad pos: 15.5,-41.5 @@ -124183,7 +124200,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16142 + - uid: 16153 components: - rot: -1.5707963267948966 rad pos: -17.5,29.5 @@ -124191,7 +124208,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16143 + - uid: 16154 components: - rot: -1.5707963267948966 rad pos: -17.5,30.5 @@ -124199,7 +124216,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16144 + - uid: 16155 components: - rot: -1.5707963267948966 rad pos: -18.5,30.5 @@ -124207,7 +124224,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16145 + - uid: 16156 components: - rot: -1.5707963267948966 rad pos: -19.5,30.5 @@ -124215,7 +124232,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16146 + - uid: 16157 components: - rot: -1.5707963267948966 rad pos: -22.5,29.5 @@ -124223,7 +124240,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16147 + - uid: 16158 components: - rot: -1.5707963267948966 rad pos: -21.5,29.5 @@ -124233,28 +124250,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16148 + - uid: 16159 components: - pos: 36.5,-24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16149 + - uid: 16160 components: - pos: 36.5,-23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16150 + - uid: 16161 components: - pos: 23.5,-32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16151 + - uid: 16162 components: - rot: 3.141592653589793 rad pos: -10.5,6.5 @@ -124262,21 +124279,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16152 + - uid: 16163 components: - pos: -18.5,27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16153 + - uid: 16164 components: - pos: 36.5,-22.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16154 + - uid: 16165 components: - pos: 47.5,-26.5 parent: 2 @@ -124285,7 +124302,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16155 + - uid: 16166 components: - rot: -1.5707963267948966 rad pos: 25.5,-30.5 @@ -124295,7 +124312,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16156 + - uid: 16167 components: - rot: 3.141592653589793 rad pos: 34.5,-29.5 @@ -124303,7 +124320,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16157 + - uid: 16168 components: - rot: -1.5707963267948966 rad pos: 19.5,-12.5 @@ -124311,7 +124328,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16158 + - uid: 16169 components: - rot: -1.5707963267948966 rad pos: -1.5,-61.5 @@ -124319,7 +124336,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16159 + - uid: 16170 components: - pos: -10.5,-2.5 parent: 2 @@ -124328,7 +124345,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16160 + - uid: 16171 components: - rot: -1.5707963267948966 rad pos: 24.5,-30.5 @@ -124336,14 +124353,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16161 + - uid: 16172 components: - pos: 26.5,-34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16162 + - uid: 16173 components: - rot: 1.5707963267948966 rad pos: 16.5,17.5 @@ -124351,7 +124368,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16163 + - uid: 16174 components: - rot: 1.5707963267948966 rad pos: 18.5,-5.5 @@ -124359,7 +124376,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16164 + - uid: 16175 components: - rot: -1.5707963267948966 rad pos: 15.5,16.5 @@ -124367,7 +124384,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16165 + - uid: 16176 components: - rot: -1.5707963267948966 rad pos: 18.5,16.5 @@ -124375,7 +124392,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16166 + - uid: 16177 components: - rot: -1.5707963267948966 rad pos: 17.5,16.5 @@ -124383,7 +124400,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16167 + - uid: 16178 components: - rot: -1.5707963267948966 rad pos: 33.5,12.5 @@ -124393,7 +124410,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16168 + - uid: 16179 components: - rot: 3.141592653589793 rad pos: 40.5,2.5 @@ -124401,21 +124418,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16169 + - uid: 16180 components: - pos: -20.5,27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16170 + - uid: 16181 components: - pos: 22.5,-31.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16171 + - uid: 16182 components: - pos: -20.5,32.5 parent: 2 @@ -124424,7 +124441,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16172 + - uid: 16183 components: - rot: 1.5707963267948966 rad pos: 46.5,-28.5 @@ -124432,14 +124449,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16173 + - uid: 16184 components: - pos: 36.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16174 + - uid: 16185 components: - rot: 1.5707963267948966 rad pos: 42.5,-24.5 @@ -124447,7 +124464,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16175 + - uid: 16186 components: - rot: 1.5707963267948966 rad pos: -7.5,-64.5 @@ -124455,14 +124472,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16176 + - uid: 16187 components: - pos: -23.5,-81.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16177 + - uid: 16188 components: - rot: 1.5707963267948966 rad pos: -27.5,-80.5 @@ -124470,7 +124487,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16178 + - uid: 16189 components: - rot: -1.5707963267948966 rad pos: 8.5,-42.5 @@ -124478,14 +124495,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16179 + - uid: 16190 components: - pos: -23.5,-79.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16180 + - uid: 16191 components: - rot: 1.5707963267948966 rad pos: -28.5,-80.5 @@ -124493,7 +124510,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16181 + - uid: 16192 components: - rot: 1.5707963267948966 rad pos: -26.5,-80.5 @@ -124501,7 +124518,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16182 + - uid: 16193 components: - rot: -1.5707963267948966 rad pos: 7.5,-42.5 @@ -124509,7 +124526,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16183 + - uid: 16194 components: - rot: -1.5707963267948966 rad pos: 5.5,-42.5 @@ -124517,7 +124534,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16184 + - uid: 16195 components: - rot: 3.141592653589793 rad pos: 14.5,-37.5 @@ -124525,7 +124542,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16185 + - uid: 16196 components: - rot: 1.5707963267948966 rad pos: 12.5,-43.5 @@ -124533,7 +124550,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16186 + - uid: 16197 components: - rot: 1.5707963267948966 rad pos: 14.5,-25.5 @@ -124541,7 +124558,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16187 + - uid: 16198 components: - rot: 1.5707963267948966 rad pos: 14.5,-43.5 @@ -124549,14 +124566,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16188 + - uid: 16199 components: - pos: 15.5,-39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16189 + - uid: 16200 components: - rot: 3.141592653589793 rad pos: 5.5,14.5 @@ -124564,7 +124581,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16190 + - uid: 16201 components: - rot: 3.141592653589793 rad pos: 5.5,15.5 @@ -124572,21 +124589,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16191 + - uid: 16202 components: - pos: -3.5,-27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16192 + - uid: 16203 components: - pos: 20.5,-18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16193 + - uid: 16204 components: - pos: 20.5,-20.5 parent: 2 @@ -124595,7 +124612,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16194 + - uid: 16205 components: - rot: -1.5707963267948966 rad pos: 39.5,15.5 @@ -124603,7 +124620,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16195 + - uid: 16206 components: - rot: -1.5707963267948966 rad pos: 14.5,-0.5 @@ -124611,7 +124628,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16196 + - uid: 16207 components: - rot: -1.5707963267948966 rad pos: 37.5,15.5 @@ -124619,7 +124636,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16197 + - uid: 16208 components: - rot: 3.141592653589793 rad pos: -21.5,-85.5 @@ -124627,7 +124644,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16198 + - uid: 16209 components: - rot: 3.141592653589793 rad pos: -21.5,-87.5 @@ -124635,7 +124652,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16199 + - uid: 16210 components: - rot: -1.5707963267948966 rad pos: -22.5,-88.5 @@ -124643,7 +124660,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16200 + - uid: 16211 components: - rot: -1.5707963267948966 rad pos: -23.5,-88.5 @@ -124651,14 +124668,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16201 + - uid: 16212 components: - pos: -24.5,-86.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16202 + - uid: 16213 components: - rot: -1.5707963267948966 rad pos: 27.5,-29.5 @@ -124668,14 +124685,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16203 + - uid: 16214 components: - pos: 23.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16204 + - uid: 16215 components: - rot: -1.5707963267948966 rad pos: 31.5,-6.5 @@ -124683,28 +124700,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16205 + - uid: 16216 components: - pos: -3.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16206 + - uid: 16217 components: - pos: -3.5,-6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16207 + - uid: 16218 components: - pos: -5.5,-8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16208 + - uid: 16219 components: - rot: -1.5707963267948966 rad pos: 22.5,10.5 @@ -124712,7 +124729,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16209 + - uid: 16220 components: - rot: -1.5707963267948966 rad pos: 25.5,10.5 @@ -124720,7 +124737,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16210 + - uid: 16221 components: - rot: -1.5707963267948966 rad pos: 16.5,-29.5 @@ -124728,7 +124745,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16211 + - uid: 16222 components: - rot: -1.5707963267948966 rad pos: 21.5,-29.5 @@ -124736,7 +124753,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16212 + - uid: 16223 components: - rot: -1.5707963267948966 rad pos: -10.5,-41.5 @@ -124744,7 +124761,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16213 + - uid: 16224 components: - rot: 3.141592653589793 rad pos: -5.5,-30.5 @@ -124752,28 +124769,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16214 + - uid: 16225 components: - pos: -3.5,-41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16215 + - uid: 16226 components: - pos: -19.5,-60.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16216 + - uid: 16227 components: - pos: -19.5,-59.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16217 + - uid: 16228 components: - rot: 1.5707963267948966 rad pos: 19.5,-41.5 @@ -124781,7 +124798,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16218 + - uid: 16229 components: - rot: 1.5707963267948966 rad pos: -0.5,-25.5 @@ -124789,7 +124806,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16219 + - uid: 16230 components: - rot: 1.5707963267948966 rad pos: -0.5,-27.5 @@ -124797,7 +124814,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16220 + - uid: 16231 components: - rot: 1.5707963267948966 rad pos: -1.5,-27.5 @@ -124805,7 +124822,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16221 + - uid: 16232 components: - rot: 1.5707963267948966 rad pos: 1.5,-27.5 @@ -124813,7 +124830,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16222 + - uid: 16233 components: - rot: 1.5707963267948966 rad pos: -7.5,-27.5 @@ -124821,14 +124838,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16223 + - uid: 16234 components: - pos: -3.5,-39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16224 + - uid: 16235 components: - rot: 3.141592653589793 rad pos: 34.5,-39.5 @@ -124836,7 +124853,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16225 + - uid: 16236 components: - rot: 3.141592653589793 rad pos: 34.5,-40.5 @@ -124844,28 +124861,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16226 + - uid: 16237 components: - pos: 34.5,-22.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16227 + - uid: 16238 components: - pos: -18.5,28.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16228 + - uid: 16239 components: - pos: -18.5,26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16229 + - uid: 16240 components: - rot: -1.5707963267948966 rad pos: 3.5,-41.5 @@ -124873,7 +124890,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16230 + - uid: 16241 components: - rot: -1.5707963267948966 rad pos: -7.5,-41.5 @@ -124881,7 +124898,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16231 + - uid: 16242 components: - rot: 1.5707963267948966 rad pos: -3.5,-41.5 @@ -124889,7 +124906,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16232 + - uid: 16243 components: - rot: -1.5707963267948966 rad pos: -2.5,-14.5 @@ -124899,7 +124916,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16233 + - uid: 16244 components: - rot: -1.5707963267948966 rad pos: 31.5,-42.5 @@ -124907,7 +124924,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16234 + - uid: 16245 components: - pos: -23.5,-74.5 parent: 2 @@ -124916,7 +124933,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16235 + - uid: 16246 components: - rot: -1.5707963267948966 rad pos: -22.5,-73.5 @@ -124924,7 +124941,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16236 + - uid: 16247 components: - rot: 1.5707963267948966 rad pos: 33.5,-18.5 @@ -124932,7 +124949,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16237 + - uid: 16248 components: - rot: 1.5707963267948966 rad pos: 32.5,-18.5 @@ -124940,7 +124957,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16238 + - uid: 16249 components: - rot: 3.141592653589793 rad pos: 34.5,-19.5 @@ -124948,7 +124965,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16239 + - uid: 16250 components: - rot: 3.141592653589793 rad pos: 34.5,-20.5 @@ -124956,7 +124973,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16240 + - uid: 16251 components: - rot: 3.141592653589793 rad pos: 36.5,-20.5 @@ -124964,7 +124981,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16241 + - uid: 16252 components: - rot: 3.141592653589793 rad pos: 36.5,-19.5 @@ -124972,7 +124989,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16242 + - uid: 16253 components: - rot: 3.141592653589793 rad pos: 36.5,-18.5 @@ -124980,7 +124997,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16243 + - uid: 16254 components: - rot: 3.141592653589793 rad pos: 36.5,-17.5 @@ -124988,7 +125005,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16244 + - uid: 16255 components: - rot: -1.5707963267948966 rad pos: 35.5,-16.5 @@ -124996,7 +125013,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16245 + - uid: 16256 components: - rot: -1.5707963267948966 rad pos: 34.5,-16.5 @@ -125004,14 +125021,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16246 + - uid: 16257 components: - pos: 25.5,-6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16247 + - uid: 16258 components: - rot: 3.141592653589793 rad pos: 24.5,-45.5 @@ -125019,7 +125036,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16248 + - uid: 16259 components: - rot: 3.141592653589793 rad pos: 24.5,-44.5 @@ -125027,7 +125044,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16249 + - uid: 16260 components: - rot: 3.141592653589793 rad pos: 26.5,-45.5 @@ -125035,7 +125052,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16250 + - uid: 16261 components: - rot: 3.141592653589793 rad pos: 26.5,-44.5 @@ -125043,7 +125060,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16251 + - uid: 16262 components: - rot: 3.141592653589793 rad pos: 26.5,-43.5 @@ -125051,14 +125068,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16252 + - uid: 16263 components: - pos: 23.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16253 + - uid: 16264 components: - rot: -1.5707963267948966 rad pos: 40.5,-25.5 @@ -125066,7 +125083,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16254 + - uid: 16265 components: - rot: -1.5707963267948966 rad pos: 35.5,-26.5 @@ -125074,7 +125091,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16255 + - uid: 16266 components: - rot: -1.5707963267948966 rad pos: 36.5,-26.5 @@ -125082,7 +125099,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16256 + - uid: 16267 components: - rot: -1.5707963267948966 rad pos: 37.5,-26.5 @@ -125090,7 +125107,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16257 + - uid: 16268 components: - rot: -1.5707963267948966 rad pos: 38.5,-26.5 @@ -125098,7 +125115,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16258 + - uid: 16269 components: - rot: -1.5707963267948966 rad pos: 39.5,-26.5 @@ -125106,7 +125123,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16259 + - uid: 16270 components: - rot: -1.5707963267948966 rad pos: 40.5,-26.5 @@ -125114,14 +125131,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16260 + - uid: 16271 components: - pos: 36.5,-28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16261 + - uid: 16272 components: - rot: -1.5707963267948966 rad pos: 39.5,-25.5 @@ -125129,7 +125146,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16262 + - uid: 16273 components: - rot: -1.5707963267948966 rad pos: 38.5,-25.5 @@ -125137,7 +125154,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16263 + - uid: 16274 components: - rot: -1.5707963267948966 rad pos: 37.5,-25.5 @@ -125145,21 +125162,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16264 + - uid: 16275 components: - pos: 34.5,-28.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16265 + - uid: 16276 components: - pos: 36.5,-27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16266 + - uid: 16277 components: - rot: 1.5707963267948966 rad pos: 45.5,-28.5 @@ -125167,63 +125184,63 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16267 + - uid: 16278 components: - pos: -27.5,-78.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16268 + - uid: 16279 components: - pos: -20.5,-82.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16269 + - uid: 16280 components: - pos: -20.5,-81.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16270 + - uid: 16281 components: - pos: -20.5,-79.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16271 + - uid: 16282 components: - pos: -20.5,-78.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16272 + - uid: 16283 components: - pos: -20.5,-77.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16273 + - uid: 16284 components: - pos: -20.5,-76.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16274 + - uid: 16285 components: - pos: -20.5,-73.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16275 + - uid: 16286 components: - pos: -25.5,-74.5 parent: 2 @@ -125232,7 +125249,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16276 + - uid: 16287 components: - rot: 1.5707963267948966 rad pos: -23.5,-72.5 @@ -125240,7 +125257,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16277 + - uid: 16288 components: - rot: 1.5707963267948966 rad pos: -22.5,-72.5 @@ -125248,7 +125265,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16278 + - uid: 16289 components: - rot: 3.141592653589793 rad pos: -20.5,-71.5 @@ -125256,7 +125273,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16279 + - uid: 16290 components: - rot: 1.5707963267948966 rad pos: -21.5,-72.5 @@ -125264,21 +125281,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16280 + - uid: 16291 components: - pos: -23.5,-84.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16281 + - uid: 16292 components: - pos: -23.5,-83.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16282 + - uid: 16293 components: - rot: 1.5707963267948966 rad pos: -27.5,-78.5 @@ -125286,7 +125303,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16283 + - uid: 16294 components: - rot: 1.5707963267948966 rad pos: -26.5,-78.5 @@ -125294,7 +125311,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16284 + - uid: 16295 components: - rot: 3.141592653589793 rad pos: -18.5,-76.5 @@ -125302,7 +125319,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16285 + - uid: 16296 components: - rot: 3.141592653589793 rad pos: -18.5,-75.5 @@ -125310,7 +125327,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16286 + - uid: 16297 components: - rot: -1.5707963267948966 rad pos: -21.5,-73.5 @@ -125318,7 +125335,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16287 + - uid: 16298 components: - rot: 3.141592653589793 rad pos: -25.5,-76.5 @@ -125326,14 +125343,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16288 + - uid: 16299 components: - pos: -20.5,-80.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16289 + - uid: 16300 components: - rot: 3.141592653589793 rad pos: -18.5,-70.5 @@ -125341,14 +125358,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16290 + - uid: 16301 components: - pos: 9.5,-43.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16291 + - uid: 16302 components: - pos: 9.5,-44.5 parent: 2 @@ -125357,28 +125374,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16292 + - uid: 16303 components: - pos: 9.5,-45.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16293 + - uid: 16304 components: - pos: 10.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16294 + - uid: 16305 components: - pos: 10.5,-43.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16295 + - uid: 16306 components: - pos: 10.5,-44.5 parent: 2 @@ -125387,7 +125404,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16296 + - uid: 16307 components: - pos: 10.5,-45.5 parent: 2 @@ -125396,7 +125413,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16297 + - uid: 16308 components: - rot: -1.5707963267948966 rad pos: -21.5,-88.5 @@ -125404,7 +125421,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16298 + - uid: 16309 components: - rot: 3.141592653589793 rad pos: -18.5,-69.5 @@ -125412,7 +125429,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16299 + - uid: 16310 components: - rot: 3.141592653589793 rad pos: -18.5,-68.5 @@ -125422,7 +125439,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16300 + - uid: 16311 components: - rot: 3.141592653589793 rad pos: -20.5,-68.5 @@ -125432,7 +125449,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16301 + - uid: 16312 components: - rot: 3.141592653589793 rad pos: -20.5,-67.5 @@ -125440,7 +125457,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16302 + - uid: 16313 components: - rot: 3.141592653589793 rad pos: -18.5,-66.5 @@ -125448,7 +125465,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16303 + - uid: 16314 components: - rot: 3.141592653589793 rad pos: -18.5,-65.5 @@ -125458,7 +125475,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16304 + - uid: 16315 components: - rot: 3.141592653589793 rad pos: -20.5,-65.5 @@ -125468,7 +125485,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16305 + - uid: 16316 components: - rot: 3.141592653589793 rad pos: -20.5,-64.5 @@ -125476,7 +125493,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16306 + - uid: 16317 components: - pos: -20.5,-62.5 parent: 2 @@ -125485,14 +125502,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16307 + - uid: 16318 components: - pos: -18.5,-63.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16308 + - uid: 16319 components: - pos: -18.5,-62.5 parent: 2 @@ -125501,14 +125518,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16309 + - uid: 16320 components: - pos: -18.5,-61.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16310 + - uid: 16321 components: - rot: 3.141592653589793 rad pos: 36.5,-30.5 @@ -125516,7 +125533,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16311 + - uid: 16322 components: - rot: 3.141592653589793 rad pos: 36.5,-32.5 @@ -125524,7 +125541,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16312 + - uid: 16323 components: - rot: 3.141592653589793 rad pos: 36.5,-33.5 @@ -125532,7 +125549,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16313 + - uid: 16324 components: - rot: 3.141592653589793 rad pos: 36.5,-34.5 @@ -125540,7 +125557,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16314 + - uid: 16325 components: - rot: 3.141592653589793 rad pos: 36.5,-35.5 @@ -125548,7 +125565,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16315 + - uid: 16326 components: - rot: 3.141592653589793 rad pos: 36.5,-36.5 @@ -125556,7 +125573,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16316 + - uid: 16327 components: - rot: 3.141592653589793 rad pos: 36.5,-37.5 @@ -125564,7 +125581,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16317 + - uid: 16328 components: - rot: 3.141592653589793 rad pos: 36.5,-38.5 @@ -125572,7 +125589,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16318 + - uid: 16329 components: - rot: 3.141592653589793 rad pos: 36.5,-39.5 @@ -125580,7 +125597,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16319 + - uid: 16330 components: - rot: 3.141592653589793 rad pos: 36.5,-40.5 @@ -125588,7 +125605,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16320 + - uid: 16331 components: - rot: 3.141592653589793 rad pos: 36.5,-41.5 @@ -125596,7 +125613,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16321 + - uid: 16332 components: - rot: 3.141592653589793 rad pos: 36.5,-42.5 @@ -125604,7 +125621,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16322 + - uid: 16333 components: - rot: 1.5707963267948966 rad pos: 35.5,-43.5 @@ -125612,7 +125629,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16323 + - uid: 16334 components: - rot: 1.5707963267948966 rad pos: 34.5,-43.5 @@ -125620,7 +125637,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16324 + - uid: 16335 components: - rot: 1.5707963267948966 rad pos: 33.5,-43.5 @@ -125628,7 +125645,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16325 + - uid: 16336 components: - rot: 1.5707963267948966 rad pos: 32.5,-43.5 @@ -125636,7 +125653,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16326 + - uid: 16337 components: - rot: -1.5707963267948966 rad pos: 35.5,0.5 @@ -125644,7 +125661,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16327 + - uid: 16338 components: - rot: -1.5707963267948966 rad pos: 36.5,0.5 @@ -125652,7 +125669,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16328 + - uid: 16339 components: - rot: 1.5707963267948966 rad pos: 37.5,1.5 @@ -125660,7 +125677,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16329 + - uid: 16340 components: - rot: -1.5707963267948966 rad pos: 38.5,0.5 @@ -125668,7 +125685,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16330 + - uid: 16341 components: - rot: -1.5707963267948966 rad pos: 39.5,0.5 @@ -125676,7 +125693,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16331 + - uid: 16342 components: - rot: 1.5707963267948966 rad pos: 20.5,12.5 @@ -125684,21 +125701,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16332 + - uid: 16343 components: - pos: 11.5,18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16333 + - uid: 16344 components: - pos: 11.5,17.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16334 + - uid: 16345 components: - rot: 3.141592653589793 rad pos: 7.5,18.5 @@ -125708,7 +125725,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16335 + - uid: 16346 components: - rot: 3.141592653589793 rad pos: -11.5,-37.5 @@ -125716,7 +125733,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16336 + - uid: 16347 components: - rot: 3.141592653589793 rad pos: -11.5,-36.5 @@ -125724,7 +125741,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16337 + - uid: 16348 components: - rot: 3.141592653589793 rad pos: -11.5,-35.5 @@ -125732,7 +125749,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16338 + - uid: 16349 components: - rot: 3.141592653589793 rad pos: -11.5,-34.5 @@ -125740,7 +125757,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16339 + - uid: 16350 components: - rot: 3.141592653589793 rad pos: -11.5,-33.5 @@ -125748,7 +125765,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16340 + - uid: 16351 components: - rot: 3.141592653589793 rad pos: -9.5,-38.5 @@ -125756,7 +125773,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16341 + - uid: 16352 components: - rot: -1.5707963267948966 rad pos: -10.5,-37.5 @@ -125764,7 +125781,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16342 + - uid: 16353 components: - rot: -1.5707963267948966 rad pos: -11.5,-37.5 @@ -125772,7 +125789,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16343 + - uid: 16354 components: - rot: -1.5707963267948966 rad pos: -12.5,-37.5 @@ -125780,7 +125797,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16344 + - uid: 16355 components: - rot: -1.5707963267948966 rad pos: -13.5,-37.5 @@ -125790,7 +125807,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16345 + - uid: 16356 components: - rot: 3.141592653589793 rad pos: -9.5,-36.5 @@ -125798,7 +125815,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16346 + - uid: 16357 components: - rot: 3.141592653589793 rad pos: -9.5,-35.5 @@ -125806,7 +125823,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16347 + - uid: 16358 components: - rot: 3.141592653589793 rad pos: -9.5,-34.5 @@ -125816,7 +125833,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16348 + - uid: 16359 components: - rot: 3.141592653589793 rad pos: -9.5,-33.5 @@ -125824,7 +125841,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16349 + - uid: 16360 components: - rot: -1.5707963267948966 rad pos: -13.5,-38.5 @@ -125832,14 +125849,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16350 + - uid: 16361 components: - pos: 11.5,10.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16351 + - uid: 16362 components: - rot: 1.5707963267948966 rad pos: -4.5,-10.5 @@ -125847,7 +125864,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16352 + - uid: 16363 components: - rot: 1.5707963267948966 rad pos: -3.5,-10.5 @@ -125855,7 +125872,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16353 + - uid: 16364 components: - rot: 1.5707963267948966 rad pos: -2.5,-10.5 @@ -125865,7 +125882,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16354 + - uid: 16365 components: - rot: 1.5707963267948966 rad pos: -1.5,-10.5 @@ -125875,7 +125892,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16355 + - uid: 16366 components: - rot: -1.5707963267948966 rad pos: 35.5,-41.5 @@ -125883,7 +125900,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16356 + - uid: 16367 components: - rot: -1.5707963267948966 rad pos: 36.5,-41.5 @@ -125891,7 +125908,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16357 + - uid: 16368 components: - rot: -1.5707963267948966 rad pos: 37.5,-41.5 @@ -125899,7 +125916,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16358 + - uid: 16369 components: - rot: -1.5707963267948966 rad pos: 39.5,-41.5 @@ -125907,7 +125924,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16359 + - uid: 16370 components: - rot: -1.5707963267948966 rad pos: 38.5,-41.5 @@ -125915,7 +125932,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16360 + - uid: 16371 components: - rot: -1.5707963267948966 rad pos: 40.5,-41.5 @@ -125923,7 +125940,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16361 + - uid: 16372 components: - rot: -1.5707963267948966 rad pos: 41.5,-41.5 @@ -125931,7 +125948,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16362 + - uid: 16373 components: - rot: -1.5707963267948966 rad pos: 37.5,-43.5 @@ -125939,7 +125956,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16363 + - uid: 16374 components: - rot: -1.5707963267948966 rad pos: 38.5,-43.5 @@ -125947,7 +125964,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16364 + - uid: 16375 components: - rot: -1.5707963267948966 rad pos: 39.5,-43.5 @@ -125955,7 +125972,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16365 + - uid: 16376 components: - rot: -1.5707963267948966 rad pos: 40.5,-43.5 @@ -125963,7 +125980,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16366 + - uid: 16377 components: - rot: -1.5707963267948966 rad pos: 41.5,-43.5 @@ -125971,35 +125988,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16367 + - uid: 16378 components: - pos: 21.5,-43.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16368 + - uid: 16379 components: - pos: 21.5,-45.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16369 + - uid: 16380 components: - pos: 20.5,-45.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16370 + - uid: 16381 components: - pos: 20.5,-46.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16371 + - uid: 16382 components: - rot: 3.141592653589793 rad pos: 40.5,7.5 @@ -126007,7 +126024,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16372 + - uid: 16383 components: - rot: 3.141592653589793 rad pos: 30.5,16.5 @@ -126015,7 +126032,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16373 + - uid: 16384 components: - rot: 3.141592653589793 rad pos: 30.5,15.5 @@ -126023,7 +126040,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16374 + - uid: 16385 components: - rot: 3.141592653589793 rad pos: 30.5,20.5 @@ -126031,7 +126048,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16375 + - uid: 16386 components: - rot: 3.141592653589793 rad pos: 30.5,21.5 @@ -126039,7 +126056,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16376 + - uid: 16387 components: - rot: 3.141592653589793 rad pos: 30.5,22.5 @@ -126047,7 +126064,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16377 + - uid: 16388 components: - rot: 3.141592653589793 rad pos: 30.5,23.5 @@ -126055,7 +126072,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16378 + - uid: 16389 components: - rot: 3.141592653589793 rad pos: 30.5,24.5 @@ -126063,7 +126080,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16379 + - uid: 16390 components: - rot: 3.141592653589793 rad pos: 30.5,25.5 @@ -126071,7 +126088,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16380 + - uid: 16391 components: - rot: 3.141592653589793 rad pos: 30.5,26.5 @@ -126079,7 +126096,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16381 + - uid: 16392 components: - rot: 3.141592653589793 rad pos: 30.5,27.5 @@ -126087,7 +126104,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16382 + - uid: 16393 components: - rot: 3.141592653589793 rad pos: 28.5,18.5 @@ -126095,7 +126112,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16383 + - uid: 16394 components: - rot: 3.141592653589793 rad pos: 28.5,19.5 @@ -126103,7 +126120,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16384 + - uid: 16395 components: - rot: 3.141592653589793 rad pos: 28.5,20.5 @@ -126111,7 +126128,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16385 + - uid: 16396 components: - rot: 3.141592653589793 rad pos: 28.5,21.5 @@ -126119,7 +126136,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16386 + - uid: 16397 components: - rot: 3.141592653589793 rad pos: 28.5,23.5 @@ -126127,7 +126144,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16387 + - uid: 16398 components: - rot: 3.141592653589793 rad pos: 28.5,24.5 @@ -126135,7 +126152,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16388 + - uid: 16399 components: - rot: 3.141592653589793 rad pos: 28.5,25.5 @@ -126143,7 +126160,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16389 + - uid: 16400 components: - rot: 3.141592653589793 rad pos: 28.5,26.5 @@ -126151,7 +126168,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16390 + - uid: 16401 components: - rot: 3.141592653589793 rad pos: 28.5,27.5 @@ -126159,7 +126176,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16391 + - uid: 16402 components: - rot: 1.5707963267948966 rad pos: 40.5,15.5 @@ -126167,7 +126184,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16392 + - uid: 16403 components: - rot: -1.5707963267948966 rad pos: 43.5,15.5 @@ -126175,7 +126192,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16393 + - uid: 16404 components: - rot: -1.5707963267948966 rad pos: 43.5,14.5 @@ -126183,7 +126200,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16394 + - uid: 16405 components: - rot: -1.5707963267948966 rad pos: 42.5,14.5 @@ -126191,7 +126208,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16395 + - uid: 16406 components: - rot: -1.5707963267948966 rad pos: 40.5,14.5 @@ -126199,7 +126216,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16396 + - uid: 16407 components: - rot: -1.5707963267948966 rad pos: 39.5,14.5 @@ -126207,7 +126224,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16397 + - uid: 16408 components: - rot: -1.5707963267948966 rad pos: 38.5,14.5 @@ -126215,7 +126232,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16398 + - uid: 16409 components: - rot: -1.5707963267948966 rad pos: 37.5,14.5 @@ -126223,7 +126240,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16399 + - uid: 16410 components: - rot: -1.5707963267948966 rad pos: 36.5,14.5 @@ -126231,7 +126248,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16400 + - uid: 16411 components: - rot: -1.5707963267948966 rad pos: 35.5,14.5 @@ -126239,7 +126256,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16401 + - uid: 16412 components: - rot: -1.5707963267948966 rad pos: 34.5,14.5 @@ -126247,7 +126264,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16402 + - uid: 16413 components: - rot: -1.5707963267948966 rad pos: 33.5,14.5 @@ -126255,7 +126272,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16403 + - uid: 16414 components: - rot: -1.5707963267948966 rad pos: 32.5,14.5 @@ -126263,7 +126280,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16404 + - uid: 16415 components: - rot: -1.5707963267948966 rad pos: 31.5,14.5 @@ -126271,7 +126288,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16405 + - uid: 16416 components: - rot: 1.5707963267948966 rad pos: 44.5,14.5 @@ -126279,7 +126296,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16406 + - uid: 16417 components: - rot: 1.5707963267948966 rad pos: 45.5,15.5 @@ -126287,7 +126304,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16407 + - uid: 16418 components: - rot: 1.5707963267948966 rad pos: 46.5,15.5 @@ -126295,7 +126312,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16408 + - uid: 16419 components: - rot: 1.5707963267948966 rad pos: 46.5,14.5 @@ -126303,7 +126320,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16409 + - uid: 16420 components: - rot: 1.5707963267948966 rad pos: 48.5,15.5 @@ -126311,7 +126328,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16410 + - uid: 16421 components: - rot: 1.5707963267948966 rad pos: 48.5,14.5 @@ -126319,7 +126336,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16411 + - uid: 16422 components: - rot: -1.5707963267948966 rad pos: 49.5,14.5 @@ -126327,7 +126344,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16412 + - uid: 16423 components: - rot: 3.141592653589793 rad pos: 49.5,16.5 @@ -126335,7 +126352,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16413 + - uid: 16424 components: - rot: 3.141592653589793 rad pos: 49.5,17.5 @@ -126343,7 +126360,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16414 + - uid: 16425 components: - rot: 3.141592653589793 rad pos: 49.5,18.5 @@ -126351,7 +126368,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16415 + - uid: 16426 components: - rot: 3.141592653589793 rad pos: 49.5,19.5 @@ -126359,7 +126376,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16416 + - uid: 16427 components: - rot: -1.5707963267948966 rad pos: 50.5,20.5 @@ -126367,7 +126384,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16417 + - uid: 16428 components: - rot: 3.141592653589793 rad pos: 50.5,20.5 @@ -126375,7 +126392,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16418 + - uid: 16429 components: - rot: 3.141592653589793 rad pos: 50.5,18.5 @@ -126383,7 +126400,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16419 + - uid: 16430 components: - rot: 3.141592653589793 rad pos: 50.5,17.5 @@ -126391,7 +126408,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16420 + - uid: 16431 components: - rot: 3.141592653589793 rad pos: 50.5,16.5 @@ -126399,7 +126416,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16421 + - uid: 16432 components: - rot: 3.141592653589793 rad pos: 50.5,15.5 @@ -126407,7 +126424,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16422 + - uid: 16433 components: - rot: 1.5707963267948966 rad pos: 48.5,20.5 @@ -126415,7 +126432,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16423 + - uid: 16434 components: - rot: 1.5707963267948966 rad pos: 47.5,20.5 @@ -126423,7 +126440,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16424 + - uid: 16435 components: - rot: 1.5707963267948966 rad pos: 49.5,21.5 @@ -126431,7 +126448,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16425 + - uid: 16436 components: - rot: 1.5707963267948966 rad pos: 48.5,21.5 @@ -126439,7 +126456,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16426 + - uid: 16437 components: - rot: 3.141592653589793 rad pos: 49.5,21.5 @@ -126447,7 +126464,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16427 + - uid: 16438 components: - rot: 3.141592653589793 rad pos: 49.5,22.5 @@ -126455,7 +126472,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16428 + - uid: 16439 components: - rot: 3.141592653589793 rad pos: 50.5,22.5 @@ -126463,7 +126480,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16429 + - uid: 16440 components: - rot: 3.141592653589793 rad pos: 46.5,21.5 @@ -126471,7 +126488,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16430 + - uid: 16441 components: - rot: 3.141592653589793 rad pos: 46.5,22.5 @@ -126479,7 +126496,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16431 + - uid: 16442 components: - rot: 3.141592653589793 rad pos: 47.5,22.5 @@ -126487,7 +126504,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16432 + - uid: 16443 components: - rot: 1.5707963267948966 rad pos: 51.5,21.5 @@ -126495,7 +126512,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16433 + - uid: 16444 components: - rot: 1.5707963267948966 rad pos: 52.5,21.5 @@ -126503,7 +126520,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16434 + - uid: 16445 components: - rot: 3.141592653589793 rad pos: 53.5,22.5 @@ -126511,7 +126528,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16435 + - uid: 16446 components: - rot: 3.141592653589793 rad pos: 52.5,22.5 @@ -126519,7 +126536,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16436 + - uid: 16447 components: - rot: 3.141592653589793 rad pos: 52.5,21.5 @@ -126527,7 +126544,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16437 + - uid: 16448 components: - rot: 1.5707963267948966 rad pos: 51.5,20.5 @@ -126535,7 +126552,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16438 + - uid: 16449 components: - rot: 1.5707963267948966 rad pos: 53.5,20.5 @@ -126543,7 +126560,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16439 + - uid: 16450 components: - rot: 1.5707963267948966 rad pos: 54.5,20.5 @@ -126551,7 +126568,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16440 + - uid: 16451 components: - rot: 1.5707963267948966 rad pos: 56.5,20.5 @@ -126559,7 +126576,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16441 + - uid: 16452 components: - rot: 1.5707963267948966 rad pos: 57.5,20.5 @@ -126567,7 +126584,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16442 + - uid: 16453 components: - rot: 3.141592653589793 rad pos: 55.5,21.5 @@ -126575,7 +126592,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16443 + - uid: 16454 components: - rot: 3.141592653589793 rad pos: 55.5,22.5 @@ -126583,7 +126600,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16444 + - uid: 16455 components: - rot: 3.141592653589793 rad pos: 58.5,21.5 @@ -126591,7 +126608,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16445 + - uid: 16456 components: - rot: 3.141592653589793 rad pos: 58.5,22.5 @@ -126599,7 +126616,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16446 + - uid: 16457 components: - rot: 1.5707963267948966 rad pos: 54.5,21.5 @@ -126607,7 +126624,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16447 + - uid: 16458 components: - rot: 1.5707963267948966 rad pos: 55.5,21.5 @@ -126615,7 +126632,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16448 + - uid: 16459 components: - rot: 1.5707963267948966 rad pos: 57.5,21.5 @@ -126623,7 +126640,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16449 + - uid: 16460 components: - rot: 1.5707963267948966 rad pos: 58.5,21.5 @@ -126631,7 +126648,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16450 + - uid: 16461 components: - rot: 3.141592653589793 rad pos: 56.5,22.5 @@ -126639,7 +126656,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16451 + - uid: 16462 components: - rot: 3.141592653589793 rad pos: 59.5,22.5 @@ -126647,7 +126664,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16452 + - uid: 16463 components: - rot: 3.141592653589793 rad pos: 59.5,20.5 @@ -126655,7 +126672,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16453 + - uid: 16464 components: - rot: 3.141592653589793 rad pos: 59.5,19.5 @@ -126663,7 +126680,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16454 + - uid: 16465 components: - rot: 1.5707963267948966 rad pos: 60.5,18.5 @@ -126671,7 +126688,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16455 + - uid: 16466 components: - rot: -1.5707963267948966 rad pos: 59.5,19.5 @@ -126679,7 +126696,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16456 + - uid: 16467 components: - rot: -1.5707963267948966 rad pos: 60.5,19.5 @@ -126687,7 +126704,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16457 + - uid: 16468 components: - rot: -1.5707963267948966 rad pos: 60.5,16.5 @@ -126695,7 +126712,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16458 + - uid: 16469 components: - rot: -1.5707963267948966 rad pos: 59.5,16.5 @@ -126703,7 +126720,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16459 + - uid: 16470 components: - rot: -1.5707963267948966 rad pos: 60.5,15.5 @@ -126711,21 +126728,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16460 + - uid: 16471 components: - pos: 49.5,14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16461 + - uid: 16472 components: - pos: 49.5,13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16462 + - uid: 16473 components: - rot: -1.5707963267948966 rad pos: 51.5,13.5 @@ -126735,7 +126752,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16463 + - uid: 16474 components: - rot: -1.5707963267948966 rad pos: 50.5,12.5 @@ -126743,7 +126760,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16464 + - uid: 16475 components: - rot: -1.5707963267948966 rad pos: 51.5,12.5 @@ -126753,14 +126770,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16465 + - uid: 16476 components: - pos: 58.5,18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16466 + - uid: 16477 components: - pos: 58.5,17.5 parent: 2 @@ -126769,63 +126786,63 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16467 + - uid: 16478 components: - pos: 59.5,17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16468 + - uid: 16479 components: - pos: 59.5,16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16469 + - uid: 16480 components: - pos: 58.5,15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16470 + - uid: 16481 components: - pos: 58.5,14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16471 + - uid: 16482 components: - pos: 58.5,13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16472 + - uid: 16483 components: - pos: 59.5,14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16473 + - uid: 16484 components: - pos: 59.5,13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16474 + - uid: 16485 components: - pos: 59.5,12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16475 + - uid: 16486 components: - rot: 1.5707963267948966 rad pos: 44.5,20.5 @@ -126833,7 +126850,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16476 + - uid: 16487 components: - rot: 1.5707963267948966 rad pos: 43.5,20.5 @@ -126841,7 +126858,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16477 + - uid: 16488 components: - rot: 1.5707963267948966 rad pos: 42.5,20.5 @@ -126849,7 +126866,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16478 + - uid: 16489 components: - rot: 1.5707963267948966 rad pos: 41.5,20.5 @@ -126857,7 +126874,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16479 + - uid: 16490 components: - rot: -1.5707963267948966 rad pos: 39.5,20.5 @@ -126865,7 +126882,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16480 + - uid: 16491 components: - rot: -1.5707963267948966 rad pos: 38.5,20.5 @@ -126873,7 +126890,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16481 + - uid: 16492 components: - rot: -1.5707963267948966 rad pos: 37.5,20.5 @@ -126881,7 +126898,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16482 + - uid: 16493 components: - rot: -1.5707963267948966 rad pos: 36.5,20.5 @@ -126889,7 +126906,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16483 + - uid: 16494 components: - rot: -1.5707963267948966 rad pos: 35.5,20.5 @@ -126897,7 +126914,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16484 + - uid: 16495 components: - rot: -1.5707963267948966 rad pos: 49.5,19.5 @@ -126905,7 +126922,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16485 + - uid: 16496 components: - rot: -1.5707963267948966 rad pos: 48.5,19.5 @@ -126913,7 +126930,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16486 + - uid: 16497 components: - rot: -1.5707963267948966 rad pos: 47.5,19.5 @@ -126921,7 +126938,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16487 + - uid: 16498 components: - rot: -1.5707963267948966 rad pos: 46.5,19.5 @@ -126929,7 +126946,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16488 + - uid: 16499 components: - rot: -1.5707963267948966 rad pos: 45.5,19.5 @@ -126937,7 +126954,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16489 + - uid: 16500 components: - rot: -1.5707963267948966 rad pos: 43.5,19.5 @@ -126945,7 +126962,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16490 + - uid: 16501 components: - rot: -1.5707963267948966 rad pos: 42.5,19.5 @@ -126953,7 +126970,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16491 + - uid: 16502 components: - rot: -1.5707963267948966 rad pos: 41.5,19.5 @@ -126961,7 +126978,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16492 + - uid: 16503 components: - rot: -1.5707963267948966 rad pos: 40.5,19.5 @@ -126969,7 +126986,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16493 + - uid: 16504 components: - rot: -1.5707963267948966 rad pos: 38.5,19.5 @@ -126977,7 +126994,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16494 + - uid: 16505 components: - rot: -1.5707963267948966 rad pos: 37.5,19.5 @@ -126987,7 +127004,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16495 + - uid: 16506 components: - rot: -1.5707963267948966 rad pos: 36.5,19.5 @@ -126995,7 +127012,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16496 + - uid: 16507 components: - rot: -1.5707963267948966 rad pos: 35.5,19.5 @@ -127003,7 +127020,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16497 + - uid: 16508 components: - rot: -1.5707963267948966 rad pos: 39.5,1.5 @@ -127011,7 +127028,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16498 + - uid: 16509 components: - rot: -1.5707963267948966 rad pos: 40.5,1.5 @@ -127019,7 +127036,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16499 + - uid: 16510 components: - rot: -1.5707963267948966 rad pos: 41.5,1.5 @@ -127027,7 +127044,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16500 + - uid: 16511 components: - rot: -1.5707963267948966 rad pos: 43.5,1.5 @@ -127035,7 +127052,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16501 + - uid: 16512 components: - rot: -1.5707963267948966 rad pos: 41.5,0.5 @@ -127043,7 +127060,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16502 + - uid: 16513 components: - rot: -1.5707963267948966 rad pos: 42.5,0.5 @@ -127051,7 +127068,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16503 + - uid: 16514 components: - rot: -1.5707963267948966 rad pos: 43.5,0.5 @@ -127059,7 +127076,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16504 + - uid: 16515 components: - rot: -1.5707963267948966 rad pos: 44.5,1.5 @@ -127067,7 +127084,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16505 + - uid: 16516 components: - rot: -1.5707963267948966 rad pos: 45.5,1.5 @@ -127075,7 +127092,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16506 + - uid: 16517 components: - rot: -1.5707963267948966 rad pos: 46.5,1.5 @@ -127083,7 +127100,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16507 + - uid: 16518 components: - rot: -1.5707963267948966 rad pos: 47.5,1.5 @@ -127091,7 +127108,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16508 + - uid: 16519 components: - rot: -1.5707963267948966 rad pos: 48.5,1.5 @@ -127099,7 +127116,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16509 + - uid: 16520 components: - rot: -1.5707963267948966 rad pos: 49.5,1.5 @@ -127107,7 +127124,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16510 + - uid: 16521 components: - rot: -1.5707963267948966 rad pos: 50.5,1.5 @@ -127115,7 +127132,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16511 + - uid: 16522 components: - rot: -1.5707963267948966 rad pos: 51.5,1.5 @@ -127123,7 +127140,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16512 + - uid: 16523 components: - rot: -1.5707963267948966 rad pos: 46.5,0.5 @@ -127131,7 +127148,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16513 + - uid: 16524 components: - rot: -1.5707963267948966 rad pos: 47.5,0.5 @@ -127139,7 +127156,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16514 + - uid: 16525 components: - rot: -1.5707963267948966 rad pos: 48.5,0.5 @@ -127147,7 +127164,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16515 + - uid: 16526 components: - rot: -1.5707963267948966 rad pos: 49.5,0.5 @@ -127155,7 +127172,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16516 + - uid: 16527 components: - rot: -1.5707963267948966 rad pos: 50.5,0.5 @@ -127163,7 +127180,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16517 + - uid: 16528 components: - rot: -1.5707963267948966 rad pos: 51.5,0.5 @@ -127171,7 +127188,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16518 + - uid: 16529 components: - rot: -1.5707963267948966 rad pos: 52.5,0.5 @@ -127179,7 +127196,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16519 + - uid: 16530 components: - rot: -1.5707963267948966 rad pos: 54.5,0.5 @@ -127187,7 +127204,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16520 + - uid: 16531 components: - rot: -1.5707963267948966 rad pos: 55.5,0.5 @@ -127197,7 +127214,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16521 + - uid: 16532 components: - rot: -1.5707963267948966 rad pos: 56.5,0.5 @@ -127207,7 +127224,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16522 + - uid: 16533 components: - rot: -1.5707963267948966 rad pos: 53.5,1.5 @@ -127215,7 +127232,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16523 + - uid: 16534 components: - rot: -1.5707963267948966 rad pos: 54.5,1.5 @@ -127223,7 +127240,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16524 + - uid: 16535 components: - rot: -1.5707963267948966 rad pos: 55.5,1.5 @@ -127233,105 +127250,105 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16525 + - uid: 16536 components: - pos: 52.5,0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16526 + - uid: 16537 components: - pos: 52.5,-0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16527 + - uid: 16538 components: - pos: 52.5,-1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16528 + - uid: 16539 components: - pos: 52.5,-2.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16529 + - uid: 16540 components: - pos: 52.5,-3.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16530 + - uid: 16541 components: - pos: 52.5,-4.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16531 + - uid: 16542 components: - pos: 52.5,-5.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16532 + - uid: 16543 components: - pos: 52.5,-6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16533 + - uid: 16544 components: - pos: 52.5,-7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16534 + - uid: 16545 components: - pos: 53.5,-0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16535 + - uid: 16546 components: - pos: 53.5,-1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16536 + - uid: 16547 components: - pos: 53.5,-2.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16537 + - uid: 16548 components: - pos: 53.5,-3.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16538 + - uid: 16549 components: - pos: 53.5,-4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16539 + - uid: 16550 components: - rot: 1.5707963267948966 rad pos: 54.5,-5.5 @@ -127339,7 +127356,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16540 + - uid: 16551 components: - rot: 1.5707963267948966 rad pos: 55.5,-5.5 @@ -127347,14 +127364,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16541 + - uid: 16552 components: - pos: 42.5,0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16542 + - uid: 16553 components: - pos: 42.5,-0.5 parent: 2 @@ -127363,7 +127380,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16543 + - uid: 16554 components: - rot: 3.141592653589793 rad pos: 44.5,-0.5 @@ -127373,7 +127390,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16544 + - uid: 16555 components: - rot: 3.141592653589793 rad pos: 44.5,-2.5 @@ -127381,7 +127398,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16545 + - uid: 16556 components: - rot: 1.5707963267948966 rad pos: 43.5,-3.5 @@ -127389,7 +127406,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16546 + - uid: 16557 components: - rot: 1.5707963267948966 rad pos: 42.5,-3.5 @@ -127397,7 +127414,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16547 + - uid: 16558 components: - rot: 1.5707963267948966 rad pos: 41.5,-3.5 @@ -127405,7 +127422,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16548 + - uid: 16559 components: - rot: 1.5707963267948966 rad pos: 40.5,-3.5 @@ -127415,7 +127432,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16549 + - uid: 16560 components: - rot: 1.5707963267948966 rad pos: 39.5,-3.5 @@ -127423,7 +127440,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16550 + - uid: 16561 components: - rot: 1.5707963267948966 rad pos: 38.5,-3.5 @@ -127431,7 +127448,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16551 + - uid: 16562 components: - rot: 1.5707963267948966 rad pos: 37.5,-3.5 @@ -127439,7 +127456,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16552 + - uid: 16563 components: - rot: 1.5707963267948966 rad pos: 41.5,-2.5 @@ -127447,7 +127464,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16553 + - uid: 16564 components: - rot: 1.5707963267948966 rad pos: 40.5,-2.5 @@ -127457,7 +127474,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16554 + - uid: 16565 components: - rot: 1.5707963267948966 rad pos: 39.5,-2.5 @@ -127465,7 +127482,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16555 + - uid: 16566 components: - rot: 1.5707963267948966 rad pos: 38.5,-2.5 @@ -127473,7 +127490,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16556 + - uid: 16567 components: - rot: 1.5707963267948966 rad pos: 37.5,-2.5 @@ -127481,56 +127498,56 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16557 + - uid: 16568 components: - pos: 42.5,13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16558 + - uid: 16569 components: - pos: 42.5,12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16559 + - uid: 16570 components: - pos: 41.5,13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16560 + - uid: 16571 components: - pos: 41.5,12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16561 + - uid: 16572 components: - pos: 41.5,11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16562 + - uid: 16573 components: - pos: 41.5,9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16563 + - uid: 16574 components: - pos: 42.5,11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16564 + - uid: 16575 components: - rot: -1.5707963267948966 rad pos: 39.5,10.5 @@ -127540,49 +127557,49 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16565 + - uid: 16576 components: - pos: 24.5,-46.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16566 + - uid: 16577 components: - pos: 24.5,-47.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16567 + - uid: 16578 components: - pos: 24.5,-48.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16568 + - uid: 16579 components: - pos: 24.5,-49.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16569 + - uid: 16580 components: - pos: 24.5,-50.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16570 + - uid: 16581 components: - pos: 24.5,-51.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16571 + - uid: 16582 components: - rot: 3.141592653589793 rad pos: 25.5,-59.5 @@ -127590,7 +127607,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16572 + - uid: 16583 components: - rot: 3.141592653589793 rad pos: 25.5,-53.5 @@ -127598,7 +127615,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16573 + - uid: 16584 components: - rot: 3.141592653589793 rad pos: 25.5,-54.5 @@ -127606,77 +127623,77 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16574 + - uid: 16585 components: - pos: 26.5,-46.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16575 + - uid: 16586 components: - pos: 26.5,-47.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16576 + - uid: 16587 components: - pos: 26.5,-48.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16577 + - uid: 16588 components: - pos: 26.5,-49.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16578 + - uid: 16589 components: - pos: 26.5,-50.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16579 + - uid: 16590 components: - pos: 26.5,-51.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16580 + - uid: 16591 components: - pos: 26.5,-52.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16581 + - uid: 16592 components: - pos: 26.5,-54.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16582 + - uid: 16593 components: - pos: 26.5,-55.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16583 + - uid: 16594 components: - pos: 26.5,-57.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16584 + - uid: 16595 components: - rot: 1.5707963267948966 rad pos: 43.5,-2.5 @@ -127684,7 +127701,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16585 + - uid: 16596 components: - rot: 1.5707963267948966 rad pos: 44.5,-2.5 @@ -127692,7 +127709,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16586 + - uid: 16597 components: - rot: 1.5707963267948966 rad pos: 45.5,-2.5 @@ -127702,7 +127719,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16587 + - uid: 16598 components: - rot: 1.5707963267948966 rad pos: 45.5,-1.5 @@ -127712,28 +127729,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16588 + - uid: 16599 components: - pos: 52.5,-8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16589 + - uid: 16600 components: - pos: 52.5,-9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16590 + - uid: 16601 components: - pos: 52.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16591 + - uid: 16602 components: - rot: 1.5707963267948966 rad pos: 53.5,-11.5 @@ -127741,7 +127758,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16592 + - uid: 16603 components: - rot: 1.5707963267948966 rad pos: 54.5,-11.5 @@ -127749,7 +127766,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16593 + - uid: 16604 components: - rot: 1.5707963267948966 rad pos: 56.5,-12.5 @@ -127757,7 +127774,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16594 + - uid: 16605 components: - rot: 1.5707963267948966 rad pos: 56.5,-5.5 @@ -127765,21 +127782,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16595 + - uid: 16606 components: - pos: 62.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16596 + - uid: 16607 components: - pos: 62.5,-37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16597 + - uid: 16608 components: - pos: 73.5,-27.5 parent: 2 @@ -127788,14 +127805,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16598 + - uid: 16609 components: - pos: 49.5,-56.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16599 + - uid: 16610 components: - rot: 1.5707963267948966 rad pos: 42.5,-43.5 @@ -127803,7 +127820,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16600 + - uid: 16611 components: - rot: 1.5707963267948966 rad pos: 43.5,-41.5 @@ -127811,7 +127828,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16601 + - uid: 16612 components: - rot: 1.5707963267948966 rad pos: 45.5,-41.5 @@ -127819,7 +127836,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16602 + - uid: 16613 components: - rot: 1.5707963267948966 rad pos: 46.5,-41.5 @@ -127827,7 +127844,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16603 + - uid: 16614 components: - rot: 1.5707963267948966 rad pos: 47.5,-41.5 @@ -127835,7 +127852,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16604 + - uid: 16615 components: - rot: 1.5707963267948966 rad pos: 48.5,-41.5 @@ -127843,7 +127860,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16605 + - uid: 16616 components: - rot: 1.5707963267948966 rad pos: 44.5,-43.5 @@ -127851,7 +127868,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16606 + - uid: 16617 components: - rot: 1.5707963267948966 rad pos: 46.5,-43.5 @@ -127859,7 +127876,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16607 + - uid: 16618 components: - rot: 1.5707963267948966 rad pos: 47.5,-43.5 @@ -127867,7 +127884,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16608 + - uid: 16619 components: - rot: 1.5707963267948966 rad pos: 48.5,-43.5 @@ -127875,63 +127892,63 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16609 + - uid: 16620 components: - pos: 43.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16610 + - uid: 16621 components: - pos: 43.5,-40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16611 + - uid: 16622 components: - pos: 43.5,-41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16612 + - uid: 16623 components: - pos: 43.5,-39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16613 + - uid: 16624 components: - pos: 43.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16614 + - uid: 16625 components: - pos: 42.5,-39.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16615 + - uid: 16626 components: - pos: 42.5,-40.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16616 + - uid: 16627 components: - pos: 42.5,-38.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16617 + - uid: 16628 components: - rot: 3.141592653589793 rad pos: 49.5,-44.5 @@ -127939,7 +127956,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16618 + - uid: 16629 components: - rot: 1.5707963267948966 rad pos: 51.5,-41.5 @@ -127947,7 +127964,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16619 + - uid: 16630 components: - rot: 1.5707963267948966 rad pos: 52.5,-41.5 @@ -127955,7 +127972,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16620 + - uid: 16631 components: - rot: 1.5707963267948966 rad pos: 53.5,-41.5 @@ -127963,7 +127980,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16621 + - uid: 16632 components: - rot: 1.5707963267948966 rad pos: 54.5,-41.5 @@ -127971,7 +127988,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16622 + - uid: 16633 components: - rot: 1.5707963267948966 rad pos: 55.5,-41.5 @@ -127979,21 +127996,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16623 + - uid: 16634 components: - pos: 57.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16624 + - uid: 16635 components: - pos: 57.5,-43.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16625 + - uid: 16636 components: - rot: 1.5707963267948966 rad pos: 50.5,-45.5 @@ -128001,7 +128018,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16626 + - uid: 16637 components: - rot: 1.5707963267948966 rad pos: 51.5,-45.5 @@ -128009,7 +128026,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16627 + - uid: 16638 components: - rot: -1.5707963267948966 rad pos: 52.5,-45.5 @@ -128017,7 +128034,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16628 + - uid: 16639 components: - rot: 1.5707963267948966 rad pos: 53.5,-45.5 @@ -128025,7 +128042,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16629 + - uid: 16640 components: - rot: 1.5707963267948966 rad pos: 54.5,-45.5 @@ -128033,7 +128050,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16630 + - uid: 16641 components: - rot: 3.141592653589793 rad pos: 55.5,-44.5 @@ -128041,7 +128058,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16631 + - uid: 16642 components: - rot: 3.141592653589793 rad pos: 55.5,-43.5 @@ -128051,56 +128068,56 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16632 + - uid: 16643 components: - pos: 50.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16633 + - uid: 16644 components: - pos: 50.5,-43.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16634 + - uid: 16645 components: - pos: 50.5,-44.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16635 + - uid: 16646 components: - pos: 50.5,-45.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16636 + - uid: 16647 components: - pos: 50.5,-47.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16637 + - uid: 16648 components: - pos: 50.5,-48.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16638 + - uid: 16649 components: - pos: 49.5,-53.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16639 + - uid: 16650 components: - rot: -1.5707963267948966 rad pos: 48.5,-45.5 @@ -128108,7 +128125,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16640 + - uid: 16651 components: - rot: -1.5707963267948966 rad pos: 47.5,-45.5 @@ -128116,7 +128133,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16641 + - uid: 16652 components: - rot: -1.5707963267948966 rad pos: 46.5,-45.5 @@ -128124,7 +128141,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16642 + - uid: 16653 components: - rot: -1.5707963267948966 rad pos: 45.5,-45.5 @@ -128132,7 +128149,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16643 + - uid: 16654 components: - rot: 1.5707963267948966 rad pos: 49.5,-46.5 @@ -128140,7 +128157,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16644 + - uid: 16655 components: - rot: 1.5707963267948966 rad pos: 48.5,-46.5 @@ -128148,7 +128165,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16645 + - uid: 16656 components: - rot: 1.5707963267948966 rad pos: 47.5,-46.5 @@ -128156,7 +128173,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16646 + - uid: 16657 components: - rot: 1.5707963267948966 rad pos: 46.5,-46.5 @@ -128164,7 +128181,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16647 + - uid: 16658 components: - rot: 1.5707963267948966 rad pos: 45.5,-46.5 @@ -128172,7 +128189,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16648 + - uid: 16659 components: - rot: 3.141592653589793 rad pos: 73.5,-32.5 @@ -128180,7 +128197,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16649 + - uid: 16660 components: - rot: -1.5707963267948966 rad pos: 58.5,-44.5 @@ -128188,7 +128205,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16650 + - uid: 16661 components: - rot: -1.5707963267948966 rad pos: 59.5,-44.5 @@ -128196,7 +128213,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16651 + - uid: 16662 components: - rot: -1.5707963267948966 rad pos: 60.5,-44.5 @@ -128204,7 +128221,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16652 + - uid: 16663 components: - rot: -1.5707963267948966 rad pos: 57.5,-45.5 @@ -128212,7 +128229,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16653 + - uid: 16664 components: - rot: -1.5707963267948966 rad pos: 58.5,-45.5 @@ -128220,7 +128237,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16654 + - uid: 16665 components: - rot: -1.5707963267948966 rad pos: 59.5,-45.5 @@ -128228,7 +128245,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16655 + - uid: 16666 components: - rot: -1.5707963267948966 rad pos: 60.5,-45.5 @@ -128236,7 +128253,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16656 + - uid: 16667 components: - rot: -1.5707963267948966 rad pos: 61.5,-45.5 @@ -128244,7 +128261,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16657 + - uid: 16668 components: - rot: -1.5707963267948966 rad pos: 62.5,-45.5 @@ -128252,7 +128269,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16658 + - uid: 16669 components: - rot: 3.141592653589793 rad pos: 61.5,-43.5 @@ -128260,7 +128277,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16659 + - uid: 16670 components: - rot: 3.141592653589793 rad pos: 61.5,-42.5 @@ -128268,7 +128285,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16660 + - uid: 16671 components: - rot: 3.141592653589793 rad pos: 61.5,-41.5 @@ -128276,7 +128293,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16661 + - uid: 16672 components: - rot: 3.141592653589793 rad pos: 61.5,-40.5 @@ -128284,7 +128301,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16662 + - uid: 16673 components: - rot: 3.141592653589793 rad pos: 61.5,-39.5 @@ -128292,7 +128309,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16663 + - uid: 16674 components: - rot: 3.141592653589793 rad pos: 61.5,-37.5 @@ -128300,7 +128317,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16664 + - uid: 16675 components: - rot: 3.141592653589793 rad pos: 61.5,-36.5 @@ -128308,7 +128325,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16665 + - uid: 16676 components: - rot: 3.141592653589793 rad pos: 63.5,-44.5 @@ -128316,7 +128333,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16666 + - uid: 16677 components: - rot: 3.141592653589793 rad pos: 63.5,-43.5 @@ -128324,28 +128341,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16667 + - uid: 16678 components: - pos: 62.5,-41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16668 + - uid: 16679 components: - pos: 62.5,-40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16669 + - uid: 16680 components: - pos: 62.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16670 + - uid: 16681 components: - rot: -1.5707963267948966 rad pos: 63.5,-35.5 @@ -128353,7 +128370,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16671 + - uid: 16682 components: - rot: 3.141592653589793 rad pos: 61.5,-45.5 @@ -128361,7 +128378,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16672 + - uid: 16683 components: - rot: 1.5707963267948966 rad pos: 62.5,-34.5 @@ -128369,7 +128386,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16673 + - uid: 16684 components: - rot: 1.5707963267948966 rad pos: 61.5,-34.5 @@ -128377,21 +128394,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16674 + - uid: 16685 components: - pos: 64.5,-33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16675 + - uid: 16686 components: - pos: 60.5,-34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16677 + - uid: 16687 components: - rot: 3.141592653589793 rad pos: 63.5,-30.5 @@ -128399,7 +128416,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16678 + - uid: 16688 components: - rot: 3.141592653589793 rad pos: 63.5,-29.5 @@ -128407,7 +128424,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16679 + - uid: 16689 components: - rot: 3.141592653589793 rad pos: 63.5,-28.5 @@ -128415,7 +128432,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16680 + - uid: 16690 components: - rot: 3.141592653589793 rad pos: 63.5,-27.5 @@ -128425,7 +128442,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16681 + - uid: 16691 components: - rot: 3.141592653589793 rad pos: 61.5,-31.5 @@ -128433,7 +128450,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16682 + - uid: 16692 components: - rot: 3.141592653589793 rad pos: 61.5,-30.5 @@ -128441,7 +128458,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16683 + - uid: 16693 components: - rot: 3.141592653589793 rad pos: 61.5,-29.5 @@ -128449,7 +128466,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16684 + - uid: 16694 components: - rot: 3.141592653589793 rad pos: 61.5,-28.5 @@ -128457,7 +128474,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16685 + - uid: 16695 components: - rot: 3.141592653589793 rad pos: 61.5,-27.5 @@ -128467,7 +128484,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16686 + - uid: 16696 components: - rot: 3.141592653589793 rad pos: 61.5,-26.5 @@ -128475,7 +128492,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16687 + - uid: 16697 components: - rot: 3.141592653589793 rad pos: 61.5,-25.5 @@ -128485,7 +128502,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16688 + - uid: 16698 components: - pos: 61.5,-23.5 parent: 2 @@ -128494,7 +128511,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16689 + - uid: 16699 components: - pos: 61.5,-22.5 parent: 2 @@ -128503,7 +128520,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16690 + - uid: 16700 components: - pos: 61.5,-21.5 parent: 2 @@ -128512,7 +128529,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16691 + - uid: 16701 components: - pos: 61.5,-20.5 parent: 2 @@ -128521,7 +128538,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16692 + - uid: 16702 components: - pos: 61.5,-19.5 parent: 2 @@ -128530,7 +128547,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16693 + - uid: 16703 components: - pos: 61.5,-18.5 parent: 2 @@ -128539,7 +128556,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16694 + - uid: 16704 components: - pos: 61.5,-17.5 parent: 2 @@ -128548,7 +128565,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16695 + - uid: 16705 components: - pos: 61.5,-16.5 parent: 2 @@ -128557,7 +128574,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16696 + - uid: 16706 components: - pos: 61.5,-15.5 parent: 2 @@ -128566,7 +128583,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16697 + - uid: 16707 components: - pos: 61.5,-14.5 parent: 2 @@ -128575,56 +128592,56 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16698 + - uid: 16708 components: - pos: 61.5,-13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16699 + - uid: 16709 components: - pos: 61.5,-12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16700 + - uid: 16710 components: - pos: 61.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16701 + - uid: 16711 components: - pos: 62.5,-7.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16702 + - uid: 16712 components: - pos: 62.5,-8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16703 + - uid: 16713 components: - pos: 62.5,-9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16704 + - uid: 16714 components: - pos: 61.5,-5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16705 + - uid: 16715 components: - pos: 61.5,-4.5 parent: 2 @@ -128633,14 +128650,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16706 + - uid: 16716 components: - pos: 61.5,-3.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16707 + - uid: 16717 components: - pos: 63.5,-25.5 parent: 2 @@ -128649,7 +128666,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16708 + - uid: 16718 components: - pos: 63.5,-24.5 parent: 2 @@ -128658,7 +128675,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16709 + - uid: 16719 components: - pos: 63.5,-23.5 parent: 2 @@ -128667,7 +128684,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16710 + - uid: 16720 components: - pos: 63.5,-22.5 parent: 2 @@ -128676,7 +128693,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16711 + - uid: 16721 components: - pos: 63.5,-21.5 parent: 2 @@ -128685,7 +128702,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16712 + - uid: 16722 components: - pos: 63.5,-20.5 parent: 2 @@ -128694,7 +128711,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16713 + - uid: 16723 components: - pos: 63.5,-19.5 parent: 2 @@ -128703,7 +128720,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16714 + - uid: 16724 components: - pos: 63.5,-18.5 parent: 2 @@ -128712,7 +128729,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16715 + - uid: 16725 components: - pos: 63.5,-17.5 parent: 2 @@ -128721,7 +128738,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16716 + - uid: 16726 components: - pos: 63.5,-16.5 parent: 2 @@ -128730,7 +128747,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16717 + - uid: 16727 components: - pos: 63.5,-15.5 parent: 2 @@ -128739,7 +128756,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16718 + - uid: 16728 components: - pos: 63.5,-14.5 parent: 2 @@ -128748,63 +128765,63 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16719 + - uid: 16729 components: - pos: 63.5,-13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16720 + - uid: 16730 components: - pos: 63.5,-12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16721 + - uid: 16731 components: - pos: 63.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16722 + - uid: 16732 components: - pos: 63.5,-9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16723 + - uid: 16733 components: - pos: 63.5,-8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16724 + - uid: 16734 components: - pos: 63.5,-7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16725 + - uid: 16735 components: - pos: 63.5,-6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16726 + - uid: 16736 components: - pos: 63.5,-5.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16727 + - uid: 16737 components: - pos: 63.5,-4.5 parent: 2 @@ -128813,28 +128830,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16728 + - uid: 16738 components: - pos: 63.5,-3.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16729 + - uid: 16739 components: - pos: 64.5,-48.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16730 + - uid: 16740 components: - pos: 64.5,-49.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16731 + - uid: 16741 components: - pos: 64.5,-50.5 parent: 2 @@ -128843,28 +128860,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16732 + - uid: 16742 components: - pos: 64.5,-51.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16733 + - uid: 16743 components: - pos: 60.5,-47.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16734 + - uid: 16744 components: - pos: 60.5,-49.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16735 + - uid: 16745 components: - pos: 60.5,-50.5 parent: 2 @@ -128873,35 +128890,35 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16736 + - uid: 16746 components: - pos: 60.5,-51.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16737 + - uid: 16747 components: - pos: 50.5,-49.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16738 + - uid: 16748 components: - pos: 49.5,-57.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16739 + - uid: 16749 components: - pos: 49.5,-58.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16740 + - uid: 16750 components: - pos: 49.5,-59.5 parent: 2 @@ -128910,28 +128927,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16741 + - uid: 16751 components: - pos: 50.5,-50.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16742 + - uid: 16752 components: - pos: 50.5,-51.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16743 + - uid: 16753 components: - pos: 49.5,-55.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16744 + - uid: 16754 components: - rot: 1.5707963267948966 rad pos: 44.5,-45.5 @@ -128939,7 +128956,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16745 + - uid: 16755 components: - rot: 1.5707963267948966 rad pos: 43.5,-45.5 @@ -128947,7 +128964,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16746 + - uid: 16756 components: - rot: 1.5707963267948966 rad pos: 65.5,-47.5 @@ -128955,7 +128972,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16747 + - uid: 16757 components: - rot: 1.5707963267948966 rad pos: 66.5,-47.5 @@ -128965,7 +128982,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16748 + - uid: 16758 components: - rot: 1.5707963267948966 rad pos: 67.5,-47.5 @@ -128973,7 +128990,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16749 + - uid: 16759 components: - rot: 1.5707963267948966 rad pos: 68.5,-47.5 @@ -128981,7 +128998,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16750 + - uid: 16760 components: - rot: 1.5707963267948966 rad pos: 68.5,-48.5 @@ -128989,7 +129006,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16751 + - uid: 16761 components: - rot: 1.5707963267948966 rad pos: 67.5,-48.5 @@ -128997,7 +129014,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16752 + - uid: 16762 components: - rot: 1.5707963267948966 rad pos: 66.5,-48.5 @@ -129005,7 +129022,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16753 + - uid: 16763 components: - rot: 1.5707963267948966 rad pos: 65.5,-48.5 @@ -129013,7 +129030,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16754 + - uid: 16764 components: - rot: 1.5707963267948966 rad pos: 64.5,-48.5 @@ -129021,7 +129038,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16755 + - uid: 16765 components: - rot: 1.5707963267948966 rad pos: 63.5,-48.5 @@ -129029,7 +129046,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16756 + - uid: 16766 components: - rot: 1.5707963267948966 rad pos: 62.5,-48.5 @@ -129037,7 +129054,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16757 + - uid: 16767 components: - rot: 1.5707963267948966 rad pos: 61.5,-48.5 @@ -129045,7 +129062,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16758 + - uid: 16768 components: - rot: 1.5707963267948966 rad pos: 70.5,-48.5 @@ -129053,7 +129070,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16759 + - uid: 16769 components: - rot: 1.5707963267948966 rad pos: 69.5,-48.5 @@ -129061,7 +129078,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16760 + - uid: 16770 components: - rot: 3.141592653589793 rad pos: 25.5,-55.5 @@ -129069,7 +129086,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16761 + - uid: 16771 components: - rot: 1.5707963267948966 rad pos: 27.5,-58.5 @@ -129077,7 +129094,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16762 + - uid: 16772 components: - rot: 1.5707963267948966 rad pos: 28.5,-58.5 @@ -129085,7 +129102,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16763 + - uid: 16773 components: - rot: 3.141592653589793 rad pos: 25.5,-56.5 @@ -129093,7 +129110,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16764 + - uid: 16774 components: - rot: 1.5707963267948966 rad pos: 26.5,-60.5 @@ -129101,7 +129118,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16765 + - uid: 16775 components: - rot: 1.5707963267948966 rad pos: 27.5,-60.5 @@ -129109,7 +129126,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16766 + - uid: 16776 components: - rot: 1.5707963267948966 rad pos: 28.5,-60.5 @@ -129117,7 +129134,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16767 + - uid: 16777 components: - rot: 1.5707963267948966 rad pos: 29.5,-60.5 @@ -129125,7 +129142,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16768 + - uid: 16778 components: - rot: 1.5707963267948966 rad pos: 30.5,-60.5 @@ -129133,7 +129150,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16769 + - uid: 16779 components: - rot: 1.5707963267948966 rad pos: 31.5,-60.5 @@ -129141,7 +129158,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16770 + - uid: 16780 components: - rot: 3.141592653589793 rad pos: 29.5,-57.5 @@ -129151,56 +129168,56 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16771 + - uid: 16781 components: - pos: 29.5,-55.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16772 + - uid: 16782 components: - pos: 29.5,-54.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16773 + - uid: 16783 components: - pos: 29.5,-53.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16774 + - uid: 16784 components: - pos: 29.5,-51.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16775 + - uid: 16785 components: - pos: 29.5,-50.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16776 + - uid: 16786 components: - pos: 29.5,-49.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16777 + - uid: 16787 components: - pos: 29.5,-48.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16778 + - uid: 16788 components: - rot: -1.5707963267948966 rad pos: 30.5,-47.5 @@ -129208,7 +129225,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16779 + - uid: 16789 components: - rot: -1.5707963267948966 rad pos: 31.5,-47.5 @@ -129216,7 +129233,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16780 + - uid: 16790 components: - rot: -1.5707963267948966 rad pos: 32.5,-47.5 @@ -129224,7 +129241,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16781 + - uid: 16791 components: - rot: 3.141592653589793 rad pos: 29.5,-46.5 @@ -129232,7 +129249,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16782 + - uid: 16792 components: - rot: 1.5707963267948966 rad pos: 30.5,-58.5 @@ -129240,21 +129257,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16783 + - uid: 16793 components: - pos: 32.5,-59.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16784 + - uid: 16794 components: - pos: 32.5,-58.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16785 + - uid: 16795 components: - pos: 32.5,-57.5 parent: 2 @@ -129263,28 +129280,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16786 + - uid: 16796 components: - pos: 32.5,-55.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16787 + - uid: 16797 components: - pos: 32.5,-54.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16788 + - uid: 16798 components: - pos: 32.5,-53.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16789 + - uid: 16799 components: - rot: 1.5707963267948966 rad pos: 33.5,-52.5 @@ -129292,7 +129309,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16790 + - uid: 16800 components: - rot: 3.141592653589793 rad pos: 34.5,-51.5 @@ -129300,7 +129317,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16791 + - uid: 16801 components: - rot: 3.141592653589793 rad pos: 34.5,-50.5 @@ -129308,7 +129325,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16792 + - uid: 16802 components: - rot: -1.5707963267948966 rad pos: 33.5,-49.5 @@ -129316,7 +129333,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16793 + - uid: 16803 components: - rot: 3.141592653589793 rad pos: 34.5,-47.5 @@ -129324,7 +129341,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16794 + - uid: 16804 components: - rot: 3.141592653589793 rad pos: 34.5,-46.5 @@ -129332,7 +129349,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16795 + - uid: 16805 components: - rot: -1.5707963267948966 rad pos: 32.5,-49.5 @@ -129340,7 +129357,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16796 + - uid: 16806 components: - rot: -1.5707963267948966 rad pos: 31.5,-49.5 @@ -129348,7 +129365,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16797 + - uid: 16807 components: - rot: -1.5707963267948966 rad pos: 30.5,-49.5 @@ -129356,7 +129373,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16798 + - uid: 16808 components: - rot: -1.5707963267948966 rad pos: 29.5,-49.5 @@ -129364,7 +129381,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16799 + - uid: 16809 components: - rot: 3.141592653589793 rad pos: 48.5,-59.5 @@ -129372,20 +129389,20 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 16800 + - uid: 16810 components: - rot: 3.141592653589793 rad pos: 51.5,-59.5 parent: 2 type: Transform - - uid: 16801 + - uid: 16811 components: - pos: 49.5,-60.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16802 + - uid: 16812 components: - pos: 49.5,-62.5 parent: 2 @@ -129394,7 +129411,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16803 + - uid: 16813 components: - rot: -1.5707963267948966 rad pos: -14.5,7.5 @@ -129402,7 +129419,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16804 + - uid: 16814 components: - rot: -1.5707963267948966 rad pos: -15.5,7.5 @@ -129410,7 +129427,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16805 + - uid: 16815 components: - rot: -1.5707963267948966 rad pos: -16.5,7.5 @@ -129418,7 +129435,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16806 + - uid: 16816 components: - rot: -1.5707963267948966 rad pos: -17.5,7.5 @@ -129426,7 +129443,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16807 + - uid: 16817 components: - rot: -1.5707963267948966 rad pos: -18.5,7.5 @@ -129434,7 +129451,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16808 + - uid: 16818 components: - rot: 1.5707963267948966 rad pos: -15.5,1.5 @@ -129444,7 +129461,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16809 + - uid: 16819 components: - rot: 1.5707963267948966 rad pos: -16.5,1.5 @@ -129452,14 +129469,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16810 + - uid: 16820 components: - pos: -19.5,6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16811 + - uid: 16821 components: - pos: -19.5,5.5 parent: 2 @@ -129468,7 +129485,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16812 + - uid: 16822 components: - rot: 1.5707963267948966 rad pos: -9.5,-25.5 @@ -129476,7 +129493,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16813 + - uid: 16823 components: - rot: 1.5707963267948966 rad pos: -10.5,-25.5 @@ -129484,7 +129501,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16814 + - uid: 16824 components: - rot: 1.5707963267948966 rad pos: -11.5,-25.5 @@ -129492,7 +129509,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16815 + - uid: 16825 components: - rot: 1.5707963267948966 rad pos: -12.5,-25.5 @@ -129500,7 +129517,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16816 + - uid: 16826 components: - rot: 1.5707963267948966 rad pos: -13.5,-25.5 @@ -129508,7 +129525,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16817 + - uid: 16827 components: - rot: 1.5707963267948966 rad pos: -14.5,-25.5 @@ -129516,7 +129533,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16818 + - uid: 16828 components: - rot: 1.5707963267948966 rad pos: -15.5,-25.5 @@ -129524,7 +129541,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16819 + - uid: 16829 components: - rot: 1.5707963267948966 rad pos: -16.5,-25.5 @@ -129532,7 +129549,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16820 + - uid: 16830 components: - rot: 1.5707963267948966 rad pos: -17.5,-25.5 @@ -129540,7 +129557,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16821 + - uid: 16831 components: - rot: 1.5707963267948966 rad pos: -12.5,-27.5 @@ -129548,7 +129565,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16822 + - uid: 16832 components: - rot: 1.5707963267948966 rad pos: -13.5,-27.5 @@ -129556,7 +129573,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16823 + - uid: 16833 components: - rot: 1.5707963267948966 rad pos: -14.5,-27.5 @@ -129564,7 +129581,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16824 + - uid: 16834 components: - rot: 1.5707963267948966 rad pos: -15.5,-27.5 @@ -129572,7 +129589,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16825 + - uid: 16835 components: - rot: 1.5707963267948966 rad pos: -16.5,-27.5 @@ -129580,7 +129597,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16826 + - uid: 16836 components: - rot: 1.5707963267948966 rad pos: -17.5,-27.5 @@ -129588,7 +129605,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16827 + - uid: 16837 components: - rot: -1.5707963267948966 rad pos: -18.5,-27.5 @@ -129596,7 +129613,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16828 + - uid: 16838 components: - rot: -1.5707963267948966 rad pos: -19.5,-27.5 @@ -129604,7 +129621,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16829 + - uid: 16839 components: - rot: 3.141592653589793 rad pos: -18.5,-26.5 @@ -129612,7 +129629,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16830 + - uid: 16840 components: - rot: 3.141592653589793 rad pos: -18.5,-27.5 @@ -129620,7 +129637,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16831 + - uid: 16841 components: - rot: 3.141592653589793 rad pos: -18.5,-28.5 @@ -129628,7 +129645,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16832 + - uid: 16842 components: - rot: 3.141592653589793 rad pos: -18.5,-29.5 @@ -129636,7 +129653,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16833 + - uid: 16843 components: - rot: 3.141592653589793 rad pos: -18.5,-30.5 @@ -129644,7 +129661,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16834 + - uid: 16844 components: - rot: 3.141592653589793 rad pos: -20.5,-28.5 @@ -129652,7 +129669,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16835 + - uid: 16845 components: - rot: 3.141592653589793 rad pos: -20.5,-29.5 @@ -129660,7 +129677,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16836 + - uid: 16846 components: - rot: 3.141592653589793 rad pos: -20.5,-30.5 @@ -129668,7 +129685,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16837 + - uid: 16847 components: - rot: 3.141592653589793 rad pos: -20.5,-31.5 @@ -129676,7 +129693,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16838 + - uid: 16848 components: - rot: 3.141592653589793 rad pos: -20.5,-32.5 @@ -129684,7 +129701,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16839 + - uid: 16849 components: - rot: 3.141592653589793 rad pos: -20.5,-26.5 @@ -129692,7 +129709,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16840 + - uid: 16850 components: - rot: 3.141592653589793 rad pos: -20.5,-25.5 @@ -129700,7 +129717,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16841 + - uid: 16851 components: - rot: 3.141592653589793 rad pos: -20.5,-24.5 @@ -129708,7 +129725,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16842 + - uid: 16852 components: - rot: 3.141592653589793 rad pos: -20.5,-23.5 @@ -129716,7 +129733,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16843 + - uid: 16853 components: - rot: 3.141592653589793 rad pos: -18.5,-24.5 @@ -129724,7 +129741,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16844 + - uid: 16854 components: - rot: 3.141592653589793 rad pos: -18.5,-23.5 @@ -129732,7 +129749,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16845 + - uid: 16855 components: - rot: 3.141592653589793 rad pos: -18.5,-22.5 @@ -129740,7 +129757,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16846 + - uid: 16856 components: - rot: 3.141592653589793 rad pos: -18.5,-20.5 @@ -129748,7 +129765,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16847 + - uid: 16857 components: - rot: 3.141592653589793 rad pos: -20.5,-21.5 @@ -129756,7 +129773,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16848 + - uid: 16858 components: - rot: 3.141592653589793 rad pos: -20.5,-20.5 @@ -129764,7 +129781,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16849 + - uid: 16859 components: - rot: 3.141592653589793 rad pos: -20.5,-19.5 @@ -129772,7 +129789,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16850 + - uid: 16860 components: - rot: 3.141592653589793 rad pos: -18.5,-18.5 @@ -129780,7 +129797,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16851 + - uid: 16861 components: - rot: 3.141592653589793 rad pos: -18.5,-17.5 @@ -129788,14 +129805,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16852 + - uid: 16862 components: - pos: -23.5,-15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16853 + - uid: 16863 components: - rot: 3.141592653589793 rad pos: -20.5,-17.5 @@ -129803,7 +129820,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16854 + - uid: 16864 components: - rot: 3.141592653589793 rad pos: -20.5,-16.5 @@ -129811,7 +129828,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16855 + - uid: 16865 components: - rot: 3.141592653589793 rad pos: -20.5,-15.5 @@ -129819,7 +129836,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16856 + - uid: 16866 components: - rot: 3.141592653589793 rad pos: -18.5,-15.5 @@ -129827,7 +129844,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16857 + - uid: 16867 components: - rot: 3.141592653589793 rad pos: -18.5,-14.5 @@ -129835,7 +129852,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16858 + - uid: 16868 components: - rot: 3.141592653589793 rad pos: -18.5,-13.5 @@ -129843,7 +129860,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16859 + - uid: 16869 components: - rot: 3.141592653589793 rad pos: -18.5,-12.5 @@ -129851,7 +129868,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16860 + - uid: 16870 components: - rot: 3.141592653589793 rad pos: -18.5,-11.5 @@ -129859,7 +129876,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16861 + - uid: 16871 components: - rot: -1.5707963267948966 rad pos: -21.5,-13.5 @@ -129869,7 +129886,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16862 + - uid: 16872 components: - rot: -1.5707963267948966 rad pos: -22.5,-13.5 @@ -129877,7 +129894,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16863 + - uid: 16873 components: - rot: -1.5707963267948966 rad pos: -23.5,-13.5 @@ -129885,7 +129902,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16864 + - uid: 16874 components: - rot: -1.5707963267948966 rad pos: -19.5,-10.5 @@ -129893,7 +129910,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16865 + - uid: 16875 components: - rot: -1.5707963267948966 rad pos: -20.5,-10.5 @@ -129901,7 +129918,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16866 + - uid: 16876 components: - rot: -1.5707963267948966 rad pos: -21.5,-10.5 @@ -129911,7 +129928,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16867 + - uid: 16877 components: - rot: -1.5707963267948966 rad pos: -22.5,-10.5 @@ -129919,7 +129936,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16868 + - uid: 16878 components: - rot: -1.5707963267948966 rad pos: -25.5,-10.5 @@ -129927,7 +129944,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16869 + - uid: 16879 components: - rot: -1.5707963267948966 rad pos: -26.5,-10.5 @@ -129937,7 +129954,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16870 + - uid: 16880 components: - rot: -1.5707963267948966 rad pos: -27.5,-10.5 @@ -129945,7 +129962,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16871 + - uid: 16881 components: - rot: 1.5707963267948966 rad pos: -26.5,-13.5 @@ -129955,7 +129972,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16872 + - uid: 16882 components: - rot: 1.5707963267948966 rad pos: -27.5,-13.5 @@ -129963,91 +129980,91 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16873 + - uid: 16883 components: - pos: -20.5,-12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16874 + - uid: 16884 components: - pos: -20.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16875 + - uid: 16885 components: - pos: -20.5,-10.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16876 + - uid: 16886 components: - pos: -20.5,-9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16877 + - uid: 16887 components: - pos: -20.5,-8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16878 + - uid: 16888 components: - pos: -20.5,-7.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16879 + - uid: 16889 components: - pos: -20.5,-6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16880 + - uid: 16890 components: - pos: -18.5,-9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16881 + - uid: 16891 components: - pos: -18.5,-8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16882 + - uid: 16892 components: - pos: -18.5,-7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16883 + - uid: 16893 components: - pos: -18.5,-6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16884 + - uid: 16894 components: - pos: -18.5,-5.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16885 + - uid: 16895 components: - rot: -1.5707963267948966 rad pos: -21.5,-22.5 @@ -130057,7 +130074,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16886 + - uid: 16896 components: - rot: -1.5707963267948966 rad pos: -22.5,-22.5 @@ -130065,7 +130082,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16887 + - uid: 16897 components: - rot: -1.5707963267948966 rad pos: -23.5,-22.5 @@ -130073,7 +130090,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16888 + - uid: 16898 components: - rot: -1.5707963267948966 rad pos: -19.5,-21.5 @@ -130081,7 +130098,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16889 + - uid: 16899 components: - rot: -1.5707963267948966 rad pos: -20.5,-21.5 @@ -130089,7 +130106,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16890 + - uid: 16900 components: - rot: -1.5707963267948966 rad pos: -21.5,-21.5 @@ -130097,7 +130114,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16891 + - uid: 16901 components: - rot: -1.5707963267948966 rad pos: -22.5,-21.5 @@ -130105,28 +130122,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16892 + - uid: 16902 components: - pos: -25.5,-15.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16893 + - uid: 16903 components: - pos: -25.5,-16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16894 + - uid: 16904 components: - pos: -25.5,-14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16895 + - uid: 16905 components: - rot: 1.5707963267948966 rad pos: -26.5,-17.5 @@ -130134,7 +130151,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16896 + - uid: 16906 components: - rot: 1.5707963267948966 rad pos: -27.5,-17.5 @@ -130142,7 +130159,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16897 + - uid: 16907 components: - rot: 3.141592653589793 rad pos: -20.5,-18.5 @@ -130150,42 +130167,42 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16898 + - uid: 16908 components: - pos: -23.5,-14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16899 + - uid: 16909 components: - pos: -23.5,-13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16900 + - uid: 16910 components: - pos: -23.5,-12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16901 + - uid: 16911 components: - pos: -23.5,-11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16902 + - uid: 16912 components: - pos: -18.5,-16.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16903 + - uid: 16913 components: - rot: -1.5707963267948966 rad pos: -24.5,-16.5 @@ -130193,7 +130210,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16904 + - uid: 16914 components: - rot: -1.5707963267948966 rad pos: -25.5,-16.5 @@ -130201,7 +130218,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16905 + - uid: 16915 components: - rot: -1.5707963267948966 rad pos: -26.5,-16.5 @@ -130209,7 +130226,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16906 + - uid: 16916 components: - rot: -1.5707963267948966 rad pos: -27.5,-16.5 @@ -130217,7 +130234,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16907 + - uid: 16917 components: - rot: -1.5707963267948966 rad pos: -28.5,-16.5 @@ -130225,7 +130242,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16908 + - uid: 16918 components: - rot: -1.5707963267948966 rad pos: -17.5,-42.5 @@ -130233,7 +130250,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16909 + - uid: 16919 components: - rot: -1.5707963267948966 rad pos: -16.5,-42.5 @@ -130241,7 +130258,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16910 + - uid: 16920 components: - rot: 1.5707963267948966 rad pos: 31.5,-58.5 @@ -130249,7 +130266,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16911 + - uid: 16921 components: - rot: 1.5707963267948966 rad pos: 32.5,-58.5 @@ -130257,7 +130274,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16912 + - uid: 16922 components: - rot: 1.5707963267948966 rad pos: 33.5,-58.5 @@ -130265,7 +130282,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16913 + - uid: 16923 components: - rot: 1.5707963267948966 rad pos: 34.5,-58.5 @@ -130273,7 +130290,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16914 + - uid: 16924 components: - rot: 1.5707963267948966 rad pos: 35.5,-58.5 @@ -130281,7 +130298,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16915 + - uid: 16925 components: - rot: 1.5707963267948966 rad pos: 36.5,-58.5 @@ -130289,7 +130306,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16916 + - uid: 16926 components: - rot: 1.5707963267948966 rad pos: 33.5,-60.5 @@ -130297,7 +130314,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16917 + - uid: 16927 components: - rot: 1.5707963267948966 rad pos: 34.5,-60.5 @@ -130305,7 +130322,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16918 + - uid: 16928 components: - rot: 1.5707963267948966 rad pos: 35.5,-60.5 @@ -130313,7 +130330,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16919 + - uid: 16929 components: - rot: 1.5707963267948966 rad pos: 36.5,-60.5 @@ -130321,7 +130338,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16920 + - uid: 16930 components: - rot: 1.5707963267948966 rad pos: 37.5,-60.5 @@ -130329,7 +130346,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16921 + - uid: 16931 components: - rot: -1.5707963267948966 rad pos: 50.5,-61.5 @@ -130337,7 +130354,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16922 + - uid: 16932 components: - rot: -1.5707963267948966 rad pos: 51.5,-61.5 @@ -130345,7 +130362,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16923 + - uid: 16933 components: - rot: -1.5707963267948966 rad pos: 52.5,-61.5 @@ -130353,7 +130370,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16924 + - uid: 16934 components: - rot: -1.5707963267948966 rad pos: 53.5,-61.5 @@ -130361,7 +130378,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16925 + - uid: 16935 components: - rot: -1.5707963267948966 rad pos: 37.5,-58.5 @@ -130369,7 +130386,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16926 + - uid: 16936 components: - rot: -1.5707963267948966 rad pos: 38.5,-60.5 @@ -130377,7 +130394,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16927 + - uid: 16937 components: - rot: -1.5707963267948966 rad pos: 39.5,-60.5 @@ -130385,7 +130402,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16928 + - uid: 16938 components: - rot: 3.141592653589793 rad pos: 38.5,-57.5 @@ -130395,7 +130412,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16929 + - uid: 16939 components: - rot: 3.141592653589793 rad pos: 38.5,-56.5 @@ -130403,7 +130420,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16930 + - uid: 16940 components: - rot: 3.141592653589793 rad pos: 40.5,-59.5 @@ -130411,7 +130428,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16931 + - uid: 16941 components: - rot: 3.141592653589793 rad pos: 40.5,-58.5 @@ -130419,7 +130436,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16932 + - uid: 16942 components: - rot: 3.141592653589793 rad pos: 40.5,-57.5 @@ -130429,7 +130446,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16933 + - uid: 16943 components: - rot: 3.141592653589793 rad pos: 40.5,-56.5 @@ -130437,7 +130454,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16934 + - uid: 16944 components: - rot: 3.141592653589793 rad pos: 38.5,-59.5 @@ -130445,7 +130462,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16935 + - uid: 16945 components: - rot: 3.141592653589793 rad pos: 38.5,-60.5 @@ -130453,7 +130470,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16936 + - uid: 16946 components: - rot: 3.141592653589793 rad pos: 38.5,-61.5 @@ -130461,7 +130478,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16937 + - uid: 16947 components: - rot: 3.141592653589793 rad pos: 38.5,-62.5 @@ -130469,7 +130486,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16938 + - uid: 16948 components: - rot: 3.141592653589793 rad pos: 40.5,-61.5 @@ -130477,7 +130494,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16939 + - uid: 16949 components: - rot: 3.141592653589793 rad pos: 40.5,-62.5 @@ -130485,7 +130502,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16940 + - uid: 16950 components: - rot: 3.141592653589793 rad pos: 40.5,-63.5 @@ -130493,7 +130510,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16941 + - uid: 16951 components: - rot: 3.141592653589793 rad pos: 40.5,-64.5 @@ -130501,7 +130518,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16942 + - uid: 16952 components: - rot: 3.141592653589793 rad pos: 38.5,-64.5 @@ -130509,7 +130526,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16943 + - uid: 16953 components: - rot: 3.141592653589793 rad pos: 38.5,-65.5 @@ -130517,7 +130534,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16944 + - uid: 16954 components: - rot: 3.141592653589793 rad pos: 38.5,-66.5 @@ -130525,7 +130542,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16945 + - uid: 16955 components: - rot: 3.141592653589793 rad pos: 38.5,-67.5 @@ -130533,7 +130550,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16946 + - uid: 16956 components: - rot: 3.141592653589793 rad pos: 38.5,-68.5 @@ -130541,7 +130558,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16947 + - uid: 16957 components: - rot: 3.141592653589793 rad pos: 40.5,-66.5 @@ -130549,7 +130566,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16948 + - uid: 16958 components: - rot: 3.141592653589793 rad pos: 40.5,-67.5 @@ -130557,7 +130574,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16949 + - uid: 16959 components: - rot: 3.141592653589793 rad pos: 40.5,-68.5 @@ -130565,14 +130582,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16950 + - uid: 16960 components: - pos: 50.5,-53.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16951 + - uid: 16961 components: - rot: 3.141592653589793 rad pos: 52.5,-56.5 @@ -130582,7 +130599,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16952 + - uid: 16962 components: - rot: 3.141592653589793 rad pos: 52.5,-55.5 @@ -130590,7 +130607,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16953 + - uid: 16963 components: - rot: 1.5707963267948966 rad pos: 51.5,-54.5 @@ -130598,7 +130615,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16954 + - uid: 16964 components: - rot: 3.141592653589793 rad pos: -14.5,2.5 @@ -130606,7 +130623,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16955 + - uid: 16965 components: - rot: 3.141592653589793 rad pos: -14.5,3.5 @@ -130614,7 +130631,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16956 + - uid: 16966 components: - rot: 3.141592653589793 rad pos: -14.5,4.5 @@ -130622,7 +130639,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16957 + - uid: 16967 components: - rot: 3.141592653589793 rad pos: -14.5,5.5 @@ -130630,7 +130647,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16958 + - uid: 16968 components: - rot: -1.5707963267948966 rad pos: -15.5,6.5 @@ -130638,7 +130655,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16959 + - uid: 16969 components: - rot: -1.5707963267948966 rad pos: -16.5,6.5 @@ -130646,7 +130663,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16960 + - uid: 16970 components: - rot: -1.5707963267948966 rad pos: -17.5,6.5 @@ -130654,7 +130671,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16961 + - uid: 16971 components: - rot: 3.141592653589793 rad pos: -18.5,7.5 @@ -130662,7 +130679,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16962 + - uid: 16972 components: - rot: 3.141592653589793 rad pos: -18.5,8.5 @@ -130670,7 +130687,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16963 + - uid: 16973 components: - rot: 3.141592653589793 rad pos: -18.5,9.5 @@ -130678,7 +130695,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16964 + - uid: 16974 components: - rot: 3.141592653589793 rad pos: -18.5,10.5 @@ -130686,7 +130703,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16965 + - uid: 16975 components: - rot: 3.141592653589793 rad pos: -18.5,11.5 @@ -130694,7 +130711,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16966 + - uid: 16976 components: - rot: 3.141592653589793 rad pos: -20.5,8.5 @@ -130702,7 +130719,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16967 + - uid: 16977 components: - rot: 3.141592653589793 rad pos: -20.5,9.5 @@ -130710,7 +130727,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16968 + - uid: 16978 components: - rot: 3.141592653589793 rad pos: -20.5,10.5 @@ -130718,7 +130735,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16969 + - uid: 16979 components: - rot: 3.141592653589793 rad pos: -20.5,11.5 @@ -130726,7 +130743,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16970 + - uid: 16980 components: - rot: -1.5707963267948966 rad pos: -19.5,-4.5 @@ -130734,7 +130751,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16971 + - uid: 16981 components: - rot: -1.5707963267948966 rad pos: -20.5,-4.5 @@ -130742,7 +130759,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16972 + - uid: 16982 components: - rot: -1.5707963267948966 rad pos: -21.5,-4.5 @@ -130750,7 +130767,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16973 + - uid: 16983 components: - rot: -1.5707963267948966 rad pos: -22.5,-4.5 @@ -130758,7 +130775,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16974 + - uid: 16984 components: - rot: -1.5707963267948966 rad pos: -23.5,-4.5 @@ -130766,7 +130783,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16975 + - uid: 16985 components: - rot: -1.5707963267948966 rad pos: -21.5,-5.5 @@ -130774,7 +130791,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16976 + - uid: 16986 components: - rot: -1.5707963267948966 rad pos: -22.5,-5.5 @@ -130782,7 +130799,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16977 + - uid: 16987 components: - rot: -1.5707963267948966 rad pos: -23.5,-5.5 @@ -130790,7 +130807,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16978 + - uid: 16988 components: - rot: -1.5707963267948966 rad pos: -24.5,-5.5 @@ -130798,7 +130815,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16979 + - uid: 16989 components: - rot: -1.5707963267948966 rad pos: -25.5,-5.5 @@ -130806,7 +130823,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16980 + - uid: 16990 components: - rot: -1.5707963267948966 rad pos: -29.5,-13.5 @@ -130814,7 +130831,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16981 + - uid: 16991 components: - rot: -1.5707963267948966 rad pos: -30.5,-13.5 @@ -130824,7 +130841,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16982 + - uid: 16992 components: - rot: -1.5707963267948966 rad pos: -29.5,-10.5 @@ -130832,7 +130849,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16983 + - uid: 16993 components: - rot: -1.5707963267948966 rad pos: -30.5,-10.5 @@ -130840,7 +130857,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16984 + - uid: 16994 components: - rot: -1.5707963267948966 rad pos: -31.5,-10.5 @@ -130848,13 +130865,13 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16985 + - uid: 16995 components: - rot: -1.5707963267948966 rad pos: 51.5,-60.5 parent: 2 type: Transform - - uid: 16986 + - uid: 16996 components: - rot: -1.5707963267948966 rad pos: 52.5,-60.5 @@ -130862,126 +130879,126 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 16987 + - uid: 16997 components: - pos: -18.5,-41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16988 + - uid: 16998 components: - pos: -18.5,-40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16989 + - uid: 16999 components: - pos: -18.5,-39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16990 + - uid: 17000 components: - pos: -18.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16991 + - uid: 17001 components: - pos: -18.5,-37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16992 + - uid: 17002 components: - pos: -18.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16993 + - uid: 17003 components: - pos: -18.5,-35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16994 + - uid: 17004 components: - pos: -18.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16995 + - uid: 17005 components: - pos: -18.5,-33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16996 + - uid: 17006 components: - pos: -18.5,-32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16997 + - uid: 17007 components: - pos: -20.5,-34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16998 + - uid: 17008 components: - pos: -20.5,-35.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16999 + - uid: 17009 components: - pos: -20.5,-36.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17000 + - uid: 17010 components: - pos: -20.5,-37.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17001 + - uid: 17011 components: - pos: -20.5,-38.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17002 + - uid: 17012 components: - pos: -20.5,-39.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17003 + - uid: 17013 components: - pos: -20.5,-40.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17004 + - uid: 17014 components: - pos: -18.5,-44.5 parent: 2 @@ -130990,14 +131007,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17005 + - uid: 17015 components: - pos: -18.5,-45.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17006 + - uid: 17016 components: - rot: 3.141592653589793 rad pos: -20.5,-42.5 @@ -131005,7 +131022,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17007 + - uid: 17017 components: - rot: 3.141592653589793 rad pos: -20.5,-44.5 @@ -131015,7 +131032,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17008 + - uid: 17018 components: - rot: 3.141592653589793 rad pos: -20.5,-45.5 @@ -131023,7 +131040,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17009 + - uid: 17019 components: - rot: 3.141592653589793 rad pos: -20.5,-46.5 @@ -131031,7 +131048,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17010 + - uid: 17020 components: - rot: 1.5707963267948966 rad pos: 45.5,-72.5 @@ -131039,7 +131056,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17011 + - uid: 17021 components: - rot: 3.141592653589793 rad pos: 29.5,-79.5 @@ -131047,7 +131064,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17012 + - uid: 17022 components: - rot: 3.141592653589793 rad pos: 29.5,-84.5 @@ -131055,7 +131072,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17013 + - uid: 17023 components: - rot: 3.141592653589793 rad pos: 48.5,-79.5 @@ -131063,7 +131080,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17014 + - uid: 17024 components: - rot: 3.141592653589793 rad pos: 48.5,-75.5 @@ -131071,7 +131088,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17015 + - uid: 17025 components: - rot: 1.5707963267948966 rad pos: 41.5,-72.5 @@ -131079,7 +131096,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17016 + - uid: 17026 components: - rot: 1.5707963267948966 rad pos: 39.5,-72.5 @@ -131087,35 +131104,35 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17017 + - uid: 17027 components: - pos: 38.5,-70.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17018 + - uid: 17028 components: - pos: 38.5,-69.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17019 + - uid: 17029 components: - pos: 40.5,-69.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17020 + - uid: 17030 components: - pos: 40.5,-70.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17021 + - uid: 17031 components: - rot: 1.5707963267948966 rad pos: 44.5,-73.5 @@ -131123,7 +131140,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17022 + - uid: 17032 components: - rot: 1.5707963267948966 rad pos: 43.5,-73.5 @@ -131131,7 +131148,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17023 + - uid: 17033 components: - rot: 1.5707963267948966 rad pos: 42.5,-73.5 @@ -131139,7 +131156,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17024 + - uid: 17034 components: - rot: 3.141592653589793 rad pos: 30.5,-81.5 @@ -131147,7 +131164,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17025 + - uid: 17035 components: - rot: 3.141592653589793 rad pos: 29.5,-80.5 @@ -131155,7 +131172,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17026 + - uid: 17036 components: - rot: 1.5707963267948966 rad pos: 46.5,-72.5 @@ -131163,7 +131180,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17027 + - uid: 17037 components: - rot: 3.141592653589793 rad pos: 47.5,-79.5 @@ -131171,7 +131188,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17028 + - uid: 17038 components: - rot: 1.5707963267948966 rad pos: 40.5,-72.5 @@ -131179,7 +131196,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17029 + - uid: 17039 components: - rot: 3.141592653589793 rad pos: 47.5,-73.5 @@ -131187,7 +131204,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17030 + - uid: 17040 components: - rot: 3.141592653589793 rad pos: 29.5,-78.5 @@ -131195,7 +131212,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17031 + - uid: 17041 components: - rot: 3.141592653589793 rad pos: 30.5,-73.5 @@ -131203,7 +131220,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17032 + - uid: 17042 components: - rot: 3.141592653589793 rad pos: 29.5,-81.5 @@ -131211,7 +131228,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17033 + - uid: 17043 components: - rot: 3.141592653589793 rad pos: 2.5,-59.5 @@ -131219,7 +131236,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17034 + - uid: 17044 components: - rot: 3.141592653589793 rad pos: 2.5,-58.5 @@ -131229,7 +131246,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17035 + - uid: 17045 components: - rot: 3.141592653589793 rad pos: 3.5,-60.5 @@ -131237,7 +131254,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17036 + - uid: 17046 components: - rot: 3.141592653589793 rad pos: 3.5,-59.5 @@ -131245,7 +131262,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17037 + - uid: 17047 components: - rot: 3.141592653589793 rad pos: 3.5,-58.5 @@ -131253,7 +131270,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17038 + - uid: 17048 components: - rot: 3.141592653589793 rad pos: 2.5,-57.5 @@ -131261,7 +131278,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17039 + - uid: 17049 components: - rot: 3.141592653589793 rad pos: -41.5,-7.5 @@ -131269,14 +131286,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17040 + - uid: 17050 components: - pos: -31.5,-12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17041 + - uid: 17051 components: - rot: 1.5707963267948966 rad pos: -29.5,-17.5 @@ -131284,7 +131301,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17042 + - uid: 17052 components: - rot: 1.5707963267948966 rad pos: -30.5,-17.5 @@ -131292,7 +131309,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17043 + - uid: 17053 components: - rot: -1.5707963267948966 rad pos: -30.5,-16.5 @@ -131300,7 +131317,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17044 + - uid: 17054 components: - rot: -1.5707963267948966 rad pos: -31.5,-16.5 @@ -131308,28 +131325,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17045 + - uid: 17055 components: - pos: -31.5,-18.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17046 + - uid: 17056 components: - pos: -31.5,-16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17047 + - uid: 17057 components: - pos: -31.5,-14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17048 + - uid: 17058 components: - rot: 3.141592653589793 rad pos: -32.5,-11.5 @@ -131337,7 +131354,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17049 + - uid: 17059 components: - rot: 3.141592653589793 rad pos: -32.5,-12.5 @@ -131345,7 +131362,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17050 + - uid: 17060 components: - rot: 3.141592653589793 rad pos: -32.5,-13.5 @@ -131353,7 +131370,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17051 + - uid: 17061 components: - rot: 3.141592653589793 rad pos: -32.5,-14.5 @@ -131361,7 +131378,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17052 + - uid: 17062 components: - rot: 3.141592653589793 rad pos: -32.5,-15.5 @@ -131369,7 +131386,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17053 + - uid: 17063 components: - rot: 1.5707963267948966 rad pos: -32.5,-11.5 @@ -131377,7 +131394,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17054 + - uid: 17064 components: - rot: 1.5707963267948966 rad pos: -33.5,-11.5 @@ -131385,7 +131402,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17055 + - uid: 17065 components: - rot: 1.5707963267948966 rad pos: -34.5,-11.5 @@ -131393,7 +131410,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17056 + - uid: 17066 components: - rot: 1.5707963267948966 rad pos: -35.5,-11.5 @@ -131401,7 +131418,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17057 + - uid: 17067 components: - rot: 1.5707963267948966 rad pos: -33.5,-10.5 @@ -131409,7 +131426,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17058 + - uid: 17068 components: - rot: 1.5707963267948966 rad pos: -34.5,-10.5 @@ -131417,112 +131434,112 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17059 + - uid: 17069 components: - pos: -32.5,-18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17060 + - uid: 17070 components: - pos: -32.5,-19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17061 + - uid: 17071 components: - pos: -32.5,-20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17062 + - uid: 17072 components: - pos: -31.5,-19.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17063 + - uid: 17073 components: - pos: -31.5,-20.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17064 + - uid: 17074 components: - pos: -31.5,-21.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17065 + - uid: 17075 components: - pos: -32.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17066 + - uid: 17076 components: - pos: -32.5,-22.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17067 + - uid: 17077 components: - pos: -32.5,-23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17068 + - uid: 17078 components: - pos: -32.5,-24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17069 + - uid: 17079 components: - pos: -31.5,-22.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17070 + - uid: 17080 components: - pos: -31.5,-23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17071 + - uid: 17081 components: - pos: -31.5,-24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17072 + - uid: 17082 components: - pos: -31.5,-25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17073 + - uid: 17083 components: - pos: -31.5,-26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17074 + - uid: 17084 components: - rot: 3.141592653589793 rad pos: -32.5,-26.5 @@ -131530,7 +131547,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17075 + - uid: 17085 components: - rot: 3.141592653589793 rad pos: -32.5,-27.5 @@ -131538,7 +131555,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17076 + - uid: 17086 components: - rot: 3.141592653589793 rad pos: -32.5,-28.5 @@ -131546,7 +131563,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17077 + - uid: 17087 components: - rot: 3.141592653589793 rad pos: -32.5,-29.5 @@ -131554,7 +131571,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17078 + - uid: 17088 components: - rot: 3.141592653589793 rad pos: -32.5,-30.5 @@ -131562,7 +131579,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17079 + - uid: 17089 components: - rot: 3.141592653589793 rad pos: -31.5,-28.5 @@ -131570,7 +131587,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17080 + - uid: 17090 components: - rot: 3.141592653589793 rad pos: -31.5,-29.5 @@ -131578,7 +131595,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17081 + - uid: 17091 components: - rot: 3.141592653589793 rad pos: -31.5,-30.5 @@ -131586,7 +131603,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17082 + - uid: 17092 components: - rot: 1.5707963267948966 rad pos: -32.5,-15.5 @@ -131594,7 +131611,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17083 + - uid: 17093 components: - rot: 1.5707963267948966 rad pos: -33.5,-15.5 @@ -131604,7 +131621,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17084 + - uid: 17094 components: - rot: 1.5707963267948966 rad pos: -33.5,-17.5 @@ -131612,7 +131629,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17085 + - uid: 17095 components: - rot: -1.5707963267948966 rad pos: -37.5,-11.5 @@ -131620,7 +131637,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17086 + - uid: 17096 components: - rot: -1.5707963267948966 rad pos: -38.5,-11.5 @@ -131628,7 +131645,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17087 + - uid: 17097 components: - rot: -1.5707963267948966 rad pos: -39.5,-11.5 @@ -131636,7 +131653,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17088 + - uid: 17098 components: - rot: -1.5707963267948966 rad pos: -40.5,-11.5 @@ -131644,7 +131661,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17089 + - uid: 17099 components: - rot: -1.5707963267948966 rad pos: -36.5,-10.5 @@ -131652,7 +131669,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17090 + - uid: 17100 components: - rot: -1.5707963267948966 rad pos: -37.5,-10.5 @@ -131660,7 +131677,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17091 + - uid: 17101 components: - rot: -1.5707963267948966 rad pos: -38.5,-10.5 @@ -131668,7 +131685,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17092 + - uid: 17102 components: - rot: -1.5707963267948966 rad pos: -39.5,-10.5 @@ -131676,7 +131693,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17093 + - uid: 17103 components: - rot: -1.5707963267948966 rad pos: -40.5,-10.5 @@ -131684,7 +131701,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17094 + - uid: 17104 components: - rot: -1.5707963267948966 rad pos: -41.5,-10.5 @@ -131692,28 +131709,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17095 + - uid: 17105 components: - pos: -42.5,-11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17096 + - uid: 17106 components: - pos: -42.5,-12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17097 + - uid: 17107 components: - pos: -42.5,-13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17098 + - uid: 17108 components: - pos: -42.5,-14.5 parent: 2 @@ -131722,42 +131739,42 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17099 + - uid: 17109 components: - pos: -41.5,-12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17100 + - uid: 17110 components: - pos: -41.5,-13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17101 + - uid: 17111 components: - pos: -41.5,-14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17102 + - uid: 17112 components: - pos: -41.5,-15.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17103 + - uid: 17113 components: - pos: -20.5,12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17104 + - uid: 17114 components: - rot: -1.5707963267948966 rad pos: -19.5,6.5 @@ -131765,7 +131782,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17105 + - uid: 17115 components: - rot: -1.5707963267948966 rad pos: -20.5,6.5 @@ -131773,7 +131790,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17106 + - uid: 17116 components: - rot: -1.5707963267948966 rad pos: -21.5,6.5 @@ -131781,7 +131798,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17107 + - uid: 17117 components: - rot: -1.5707963267948966 rad pos: -22.5,6.5 @@ -131789,7 +131806,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17108 + - uid: 17118 components: - rot: -1.5707963267948966 rad pos: -23.5,6.5 @@ -131797,7 +131814,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17109 + - uid: 17119 components: - rot: -1.5707963267948966 rad pos: -21.5,7.5 @@ -131805,7 +131822,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17110 + - uid: 17120 components: - rot: -1.5707963267948966 rad pos: -22.5,7.5 @@ -131813,7 +131830,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17111 + - uid: 17121 components: - rot: -1.5707963267948966 rad pos: -23.5,7.5 @@ -131821,7 +131838,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17112 + - uid: 17122 components: - rot: -1.5707963267948966 rad pos: -24.5,6.5 @@ -131829,7 +131846,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17113 + - uid: 17123 components: - rot: -1.5707963267948966 rad pos: -25.5,6.5 @@ -131837,7 +131854,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17114 + - uid: 17124 components: - rot: 3.141592653589793 rad pos: -26.5,-3.5 @@ -131845,7 +131862,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17115 + - uid: 17125 components: - rot: 3.141592653589793 rad pos: -26.5,-2.5 @@ -131853,7 +131870,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17116 + - uid: 17126 components: - rot: 3.141592653589793 rad pos: -26.5,-1.5 @@ -131861,7 +131878,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17117 + - uid: 17127 components: - rot: 3.141592653589793 rad pos: -26.5,-0.5 @@ -131869,7 +131886,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17118 + - uid: 17128 components: - rot: 3.141592653589793 rad pos: -26.5,0.5 @@ -131877,7 +131894,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17119 + - uid: 17129 components: - rot: 3.141592653589793 rad pos: -26.5,2.5 @@ -131885,7 +131902,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17120 + - uid: 17130 components: - rot: 3.141592653589793 rad pos: -26.5,3.5 @@ -131893,7 +131910,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17121 + - uid: 17131 components: - rot: 3.141592653589793 rad pos: -26.5,4.5 @@ -131901,7 +131918,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17122 + - uid: 17132 components: - rot: 3.141592653589793 rad pos: -26.5,5.5 @@ -131909,7 +131926,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17123 + - uid: 17133 components: - rot: 3.141592653589793 rad pos: -24.5,6.5 @@ -131917,7 +131934,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17124 + - uid: 17134 components: - rot: 3.141592653589793 rad pos: -24.5,5.5 @@ -131925,7 +131942,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17125 + - uid: 17135 components: - rot: 3.141592653589793 rad pos: -24.5,4.5 @@ -131933,7 +131950,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17126 + - uid: 17136 components: - rot: 3.141592653589793 rad pos: -24.5,3.5 @@ -131941,7 +131958,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17127 + - uid: 17137 components: - rot: 3.141592653589793 rad pos: -24.5,2.5 @@ -131949,7 +131966,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17128 + - uid: 17138 components: - rot: 3.141592653589793 rad pos: -24.5,1.5 @@ -131957,7 +131974,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17129 + - uid: 17139 components: - rot: 3.141592653589793 rad pos: -24.5,-0.5 @@ -131965,7 +131982,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17130 + - uid: 17140 components: - rot: 3.141592653589793 rad pos: -24.5,-1.5 @@ -131973,7 +131990,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17131 + - uid: 17141 components: - rot: 3.141592653589793 rad pos: -24.5,-3.5 @@ -131981,7 +131998,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17132 + - uid: 17142 components: - rot: -1.5707963267948966 rad pos: -43.5,-10.5 @@ -131989,7 +132006,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17133 + - uid: 17143 components: - rot: -1.5707963267948966 rad pos: -42.5,-11.5 @@ -131997,7 +132014,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17134 + - uid: 17144 components: - rot: -1.5707963267948966 rad pos: -43.5,-11.5 @@ -132005,7 +132022,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17135 + - uid: 17145 components: - rot: 3.141592653589793 rad pos: -41.5,-10.5 @@ -132013,7 +132030,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17136 + - uid: 17146 components: - rot: 3.141592653589793 rad pos: -42.5,-7.5 @@ -132021,7 +132038,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17137 + - uid: 17147 components: - rot: 1.5707963267948966 rad pos: -42.5,-5.5 @@ -132029,7 +132046,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17138 + - uid: 17148 components: - rot: 1.5707963267948966 rad pos: -43.5,-5.5 @@ -132037,7 +132054,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17139 + - uid: 17149 components: - rot: 1.5707963267948966 rad pos: -44.5,-5.5 @@ -132045,7 +132062,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17140 + - uid: 17150 components: - rot: 1.5707963267948966 rad pos: -45.5,-5.5 @@ -132053,7 +132070,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17141 + - uid: 17151 components: - rot: 3.141592653589793 rad pos: -41.5,-9.5 @@ -132061,7 +132078,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17142 + - uid: 17152 components: - rot: 3.141592653589793 rad pos: -42.5,-9.5 @@ -132069,7 +132086,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17143 + - uid: 17153 components: - rot: 3.141592653589793 rad pos: -42.5,-8.5 @@ -132077,7 +132094,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17144 + - uid: 17154 components: - rot: 1.5707963267948966 rad pos: -43.5,-6.5 @@ -132085,7 +132102,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17145 + - uid: 17155 components: - rot: 1.5707963267948966 rad pos: -44.5,-6.5 @@ -132093,7 +132110,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17146 + - uid: 17156 components: - rot: 1.5707963267948966 rad pos: -45.5,-6.5 @@ -132101,7 +132118,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17147 + - uid: 17157 components: - rot: 1.5707963267948966 rad pos: -46.5,-6.5 @@ -132109,7 +132126,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17148 + - uid: 17158 components: - rot: 1.5707963267948966 rad pos: -47.5,-5.5 @@ -132117,7 +132134,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17149 + - uid: 17159 components: - rot: 1.5707963267948966 rad pos: -48.5,-5.5 @@ -132125,7 +132142,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17150 + - uid: 17160 components: - rot: 1.5707963267948966 rad pos: -49.5,-5.5 @@ -132133,7 +132150,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17151 + - uid: 17161 components: - rot: 1.5707963267948966 rad pos: -50.5,-5.5 @@ -132141,7 +132158,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17152 + - uid: 17162 components: - rot: 1.5707963267948966 rad pos: -51.5,-5.5 @@ -132149,7 +132166,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17153 + - uid: 17163 components: - rot: 1.5707963267948966 rad pos: -52.5,-5.5 @@ -132157,7 +132174,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17154 + - uid: 17164 components: - rot: 1.5707963267948966 rad pos: -48.5,-6.5 @@ -132165,7 +132182,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17155 + - uid: 17165 components: - rot: 1.5707963267948966 rad pos: -49.5,-6.5 @@ -132173,7 +132190,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17156 + - uid: 17166 components: - rot: 1.5707963267948966 rad pos: -50.5,-6.5 @@ -132181,7 +132198,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17157 + - uid: 17167 components: - rot: 1.5707963267948966 rad pos: -51.5,-6.5 @@ -132189,119 +132206,119 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17158 + - uid: 17168 components: - pos: -53.5,-6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17159 + - uid: 17169 components: - pos: -53.5,-7.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17160 + - uid: 17170 components: - pos: -53.5,-8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17161 + - uid: 17171 components: - pos: -53.5,-9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17162 + - uid: 17172 components: - pos: -53.5,-10.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17163 + - uid: 17173 components: - pos: -53.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17164 + - uid: 17174 components: - pos: -53.5,-12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17165 + - uid: 17175 components: - pos: -52.5,-7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17166 + - uid: 17176 components: - pos: -52.5,-8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17167 + - uid: 17177 components: - pos: -52.5,-9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17168 + - uid: 17178 components: - pos: -52.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17169 + - uid: 17179 components: - pos: -52.5,-11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17170 + - uid: 17180 components: - pos: -52.5,-12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17171 + - uid: 17181 components: - pos: -52.5,-13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17172 + - uid: 17182 components: - pos: -52.5,-14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17173 + - uid: 17183 components: - pos: -52.5,-15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17174 + - uid: 17184 components: - rot: 3.141592653589793 rad pos: -53.5,-14.5 @@ -132309,7 +132326,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17175 + - uid: 17185 components: - rot: 3.141592653589793 rad pos: -53.5,-15.5 @@ -132317,7 +132334,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17176 + - uid: 17186 components: - rot: 3.141592653589793 rad pos: -53.5,-16.5 @@ -132325,7 +132342,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17177 + - uid: 17187 components: - rot: 3.141592653589793 rad pos: -53.5,-17.5 @@ -132333,7 +132350,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17178 + - uid: 17188 components: - rot: 3.141592653589793 rad pos: -53.5,-18.5 @@ -132341,7 +132358,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17179 + - uid: 17189 components: - rot: 1.5707963267948966 rad pos: -51.5,-17.5 @@ -132349,7 +132366,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17180 + - uid: 17190 components: - rot: 1.5707963267948966 rad pos: -52.5,-19.5 @@ -132357,28 +132374,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17181 + - uid: 17191 components: - pos: -50.5,-18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17182 + - uid: 17192 components: - pos: -50.5,-19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17183 + - uid: 17193 components: - pos: -50.5,-20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17184 + - uid: 17194 components: - pos: -50.5,-21.5 parent: 2 @@ -132387,42 +132404,42 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17185 + - uid: 17195 components: - pos: -50.5,-22.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17186 + - uid: 17196 components: - pos: -51.5,-20.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17187 + - uid: 17197 components: - pos: -51.5,-21.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17188 + - uid: 17198 components: - pos: -51.5,-22.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17189 + - uid: 17199 components: - pos: -51.5,-23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17190 + - uid: 17200 components: - rot: 1.5707963267948966 rad pos: -50.5,-25.5 @@ -132430,7 +132447,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17191 + - uid: 17201 components: - rot: 1.5707963267948966 rad pos: -49.5,-25.5 @@ -132438,7 +132455,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17192 + - uid: 17202 components: - rot: 1.5707963267948966 rad pos: -48.5,-25.5 @@ -132446,7 +132463,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17193 + - uid: 17203 components: - rot: 1.5707963267948966 rad pos: -49.5,-24.5 @@ -132456,7 +132473,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17194 + - uid: 17204 components: - rot: 1.5707963267948966 rad pos: -48.5,-24.5 @@ -132466,7 +132483,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17195 + - uid: 17205 components: - rot: 1.5707963267948966 rad pos: -47.5,-25.5 @@ -132474,7 +132491,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17196 + - uid: 17206 components: - rot: 1.5707963267948966 rad pos: -46.5,-25.5 @@ -132482,7 +132499,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17197 + - uid: 17207 components: - rot: 3.141592653589793 rad pos: -47.5,-23.5 @@ -132490,7 +132507,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17198 + - uid: 17208 components: - rot: 3.141592653589793 rad pos: -45.5,-24.5 @@ -132500,7 +132517,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17199 + - uid: 17209 components: - rot: 3.141592653589793 rad pos: -45.5,-23.5 @@ -132508,7 +132525,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17200 + - uid: 17210 components: - rot: 3.141592653589793 rad pos: -41.5,-6.5 @@ -132516,7 +132533,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17201 + - uid: 17211 components: - rot: -1.5707963267948966 rad pos: -60.5,-23.5 @@ -132524,7 +132541,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17202 + - uid: 17212 components: - rot: -1.5707963267948966 rad pos: -62.5,-23.5 @@ -132532,77 +132549,77 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17203 + - uid: 17213 components: - pos: -53.5,-20.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17204 + - uid: 17214 components: - pos: -53.5,-21.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17205 + - uid: 17215 components: - pos: -53.5,-22.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17206 + - uid: 17216 components: - pos: -53.5,-23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17207 + - uid: 17217 components: - pos: -53.5,-24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17208 + - uid: 17218 components: - pos: -54.5,-18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17209 + - uid: 17219 components: - pos: -54.5,-19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17210 + - uid: 17220 components: - pos: -54.5,-20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17211 + - uid: 17221 components: - pos: -54.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17212 + - uid: 17222 components: - pos: -54.5,-22.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17213 + - uid: 17223 components: - rot: -1.5707963267948966 rad pos: -53.5,-17.5 @@ -132610,7 +132627,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17214 + - uid: 17224 components: - rot: 1.5707963267948966 rad pos: -54.5,-25.5 @@ -132618,7 +132635,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17215 + - uid: 17225 components: - rot: 1.5707963267948966 rad pos: -55.5,-25.5 @@ -132626,7 +132643,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17216 + - uid: 17226 components: - rot: 1.5707963267948966 rad pos: -56.5,-25.5 @@ -132634,7 +132651,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17217 + - uid: 17227 components: - rot: 1.5707963267948966 rad pos: -57.5,-25.5 @@ -132642,7 +132659,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17218 + - uid: 17228 components: - rot: 1.5707963267948966 rad pos: -58.5,-25.5 @@ -132650,7 +132667,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17219 + - uid: 17229 components: - rot: 1.5707963267948966 rad pos: -55.5,-23.5 @@ -132658,7 +132675,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17220 + - uid: 17230 components: - rot: 1.5707963267948966 rad pos: -57.5,-23.5 @@ -132666,7 +132683,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17221 + - uid: 17231 components: - rot: 1.5707963267948966 rad pos: -58.5,-23.5 @@ -132674,7 +132691,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17222 + - uid: 17232 components: - rot: -1.5707963267948966 rad pos: -59.5,-23.5 @@ -132682,7 +132699,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17223 + - uid: 17233 components: - rot: -1.5707963267948966 rad pos: -61.5,-23.5 @@ -132690,7 +132707,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17224 + - uid: 17234 components: - rot: -1.5707963267948966 rad pos: -63.5,-23.5 @@ -132698,7 +132715,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17225 + - uid: 17235 components: - rot: -1.5707963267948966 rad pos: -64.5,-23.5 @@ -132706,7 +132723,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17226 + - uid: 17236 components: - rot: -1.5707963267948966 rad pos: -65.5,-23.5 @@ -132714,7 +132731,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17227 + - uid: 17237 components: - rot: -1.5707963267948966 rad pos: -66.5,-23.5 @@ -132722,7 +132739,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17228 + - uid: 17238 components: - rot: -1.5707963267948966 rad pos: -67.5,-23.5 @@ -132730,49 +132747,49 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17229 + - uid: 17239 components: - pos: -68.5,-24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17230 + - uid: 17240 components: - pos: -68.5,-25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17231 + - uid: 17241 components: - pos: -68.5,-26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17232 + - uid: 17242 components: - pos: -68.5,-28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17233 + - uid: 17243 components: - pos: -68.5,-29.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17234 + - uid: 17244 components: - pos: -68.5,-30.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17235 + - uid: 17245 components: - rot: -1.5707963267948966 rad pos: -60.5,-25.5 @@ -132780,7 +132797,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17236 + - uid: 17246 components: - rot: -1.5707963267948966 rad pos: -61.5,-25.5 @@ -132788,7 +132805,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17237 + - uid: 17247 components: - rot: -1.5707963267948966 rad pos: -62.5,-25.5 @@ -132796,7 +132813,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17238 + - uid: 17248 components: - rot: -1.5707963267948966 rad pos: -63.5,-25.5 @@ -132806,14 +132823,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17239 + - uid: 17249 components: - pos: -64.5,-26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17240 + - uid: 17250 components: - rot: 3.141592653589793 rad pos: -64.5,-28.5 @@ -132821,7 +132838,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17241 + - uid: 17251 components: - rot: 3.141592653589793 rad pos: -64.5,-29.5 @@ -132829,7 +132846,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17242 + - uid: 17252 components: - rot: 3.141592653589793 rad pos: -64.5,-30.5 @@ -132837,7 +132854,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17243 + - uid: 17253 components: - rot: 1.5707963267948966 rad pos: -47.5,-42.5 @@ -132845,7 +132862,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17244 + - uid: 17254 components: - rot: 1.5707963267948966 rad pos: -47.5,-44.5 @@ -132853,7 +132870,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17245 + - uid: 17255 components: - rot: 1.5707963267948966 rad pos: -47.5,-46.5 @@ -132861,7 +132878,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17246 + - uid: 17256 components: - rot: 1.5707963267948966 rad pos: -47.5,-48.5 @@ -132869,7 +132886,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17247 + - uid: 17257 components: - rot: 1.5707963267948966 rad pos: -47.5,-50.5 @@ -132877,7 +132894,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17248 + - uid: 17258 components: - rot: 1.5707963267948966 rad pos: -47.5,-52.5 @@ -132885,7 +132902,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17249 + - uid: 17259 components: - rot: 1.5707963267948966 rad pos: -47.5,-54.5 @@ -132893,7 +132910,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17250 + - uid: 17260 components: - rot: 1.5707963267948966 rad pos: -49.5,-55.5 @@ -132901,7 +132918,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17251 + - uid: 17261 components: - rot: 1.5707963267948966 rad pos: -48.5,-55.5 @@ -132909,7 +132926,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17252 + - uid: 17262 components: - rot: 1.5707963267948966 rad pos: -47.5,-55.5 @@ -132917,7 +132934,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17253 + - uid: 17263 components: - rot: 1.5707963267948966 rad pos: -49.5,-53.5 @@ -132925,7 +132942,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17254 + - uid: 17264 components: - rot: 1.5707963267948966 rad pos: -48.5,-53.5 @@ -132933,7 +132950,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17255 + - uid: 17265 components: - rot: 1.5707963267948966 rad pos: -47.5,-53.5 @@ -132941,7 +132958,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17256 + - uid: 17266 components: - rot: 1.5707963267948966 rad pos: -49.5,-51.5 @@ -132949,7 +132966,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17257 + - uid: 17267 components: - rot: 1.5707963267948966 rad pos: -48.5,-51.5 @@ -132957,7 +132974,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17258 + - uid: 17268 components: - rot: 1.5707963267948966 rad pos: -47.5,-51.5 @@ -132965,7 +132982,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17259 + - uid: 17269 components: - rot: 1.5707963267948966 rad pos: -49.5,-49.5 @@ -132973,7 +132990,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17260 + - uid: 17270 components: - rot: 1.5707963267948966 rad pos: -48.5,-49.5 @@ -132981,7 +132998,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17261 + - uid: 17271 components: - rot: 1.5707963267948966 rad pos: -47.5,-49.5 @@ -132989,7 +133006,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17262 + - uid: 17272 components: - rot: 1.5707963267948966 rad pos: -49.5,-47.5 @@ -132997,7 +133014,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17263 + - uid: 17273 components: - rot: 1.5707963267948966 rad pos: -48.5,-47.5 @@ -133005,7 +133022,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17264 + - uid: 17274 components: - rot: 1.5707963267948966 rad pos: -47.5,-47.5 @@ -133013,7 +133030,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17265 + - uid: 17275 components: - rot: 1.5707963267948966 rad pos: -49.5,-45.5 @@ -133021,7 +133038,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17266 + - uid: 17276 components: - rot: 1.5707963267948966 rad pos: -48.5,-45.5 @@ -133029,7 +133046,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17267 + - uid: 17277 components: - rot: 1.5707963267948966 rad pos: -47.5,-45.5 @@ -133037,7 +133054,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17268 + - uid: 17278 components: - rot: 1.5707963267948966 rad pos: -49.5,-43.5 @@ -133045,7 +133062,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17269 + - uid: 17279 components: - rot: 1.5707963267948966 rad pos: -48.5,-43.5 @@ -133053,7 +133070,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17270 + - uid: 17280 components: - rot: 1.5707963267948966 rad pos: -47.5,-43.5 @@ -133061,7 +133078,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17271 + - uid: 17281 components: - rot: 1.5707963267948966 rad pos: -46.5,-52.5 @@ -133069,7 +133086,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17272 + - uid: 17282 components: - rot: 1.5707963267948966 rad pos: -45.5,-52.5 @@ -133077,7 +133094,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17273 + - uid: 17283 components: - rot: 1.5707963267948966 rad pos: -46.5,-54.5 @@ -133085,7 +133102,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17274 + - uid: 17284 components: - rot: 1.5707963267948966 rad pos: -45.5,-54.5 @@ -133093,7 +133110,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17275 + - uid: 17285 components: - rot: 1.5707963267948966 rad pos: -46.5,-50.5 @@ -133101,7 +133118,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17276 + - uid: 17286 components: - rot: 1.5707963267948966 rad pos: -45.5,-50.5 @@ -133109,7 +133126,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17277 + - uid: 17287 components: - rot: 1.5707963267948966 rad pos: -46.5,-48.5 @@ -133117,7 +133134,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17278 + - uid: 17288 components: - rot: 1.5707963267948966 rad pos: -45.5,-48.5 @@ -133125,7 +133142,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17279 + - uid: 17289 components: - rot: 1.5707963267948966 rad pos: -46.5,-46.5 @@ -133133,7 +133150,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17280 + - uid: 17290 components: - rot: 1.5707963267948966 rad pos: -45.5,-46.5 @@ -133141,7 +133158,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17281 + - uid: 17291 components: - rot: 1.5707963267948966 rad pos: -46.5,-44.5 @@ -133149,7 +133166,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17282 + - uid: 17292 components: - rot: 1.5707963267948966 rad pos: -45.5,-44.5 @@ -133157,7 +133174,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17283 + - uid: 17293 components: - rot: 1.5707963267948966 rad pos: -46.5,-42.5 @@ -133165,7 +133182,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17284 + - uid: 17294 components: - rot: 1.5707963267948966 rad pos: -45.5,-42.5 @@ -133173,7 +133190,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17285 + - uid: 17295 components: - rot: 1.5707963267948966 rad pos: -45.5,-55.5 @@ -133181,7 +133198,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17286 + - uid: 17296 components: - rot: 1.5707963267948966 rad pos: -46.5,-55.5 @@ -133189,7 +133206,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17287 + - uid: 17297 components: - rot: 1.5707963267948966 rad pos: -46.5,-53.5 @@ -133197,7 +133214,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17288 + - uid: 17298 components: - rot: 1.5707963267948966 rad pos: -45.5,-53.5 @@ -133205,7 +133222,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17289 + - uid: 17299 components: - rot: 1.5707963267948966 rad pos: -43.5,-53.5 @@ -133213,7 +133230,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17290 + - uid: 17300 components: - rot: 1.5707963267948966 rad pos: -46.5,-51.5 @@ -133221,7 +133238,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17291 + - uid: 17301 components: - rot: 1.5707963267948966 rad pos: -45.5,-51.5 @@ -133229,7 +133246,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17292 + - uid: 17302 components: - rot: 1.5707963267948966 rad pos: -43.5,-51.5 @@ -133237,7 +133254,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17293 + - uid: 17303 components: - rot: 1.5707963267948966 rad pos: -46.5,-49.5 @@ -133245,7 +133262,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17294 + - uid: 17304 components: - rot: 1.5707963267948966 rad pos: -45.5,-49.5 @@ -133253,7 +133270,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17295 + - uid: 17305 components: - rot: 1.5707963267948966 rad pos: -43.5,-49.5 @@ -133261,7 +133278,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17296 + - uid: 17306 components: - rot: 1.5707963267948966 rad pos: -46.5,-47.5 @@ -133269,7 +133286,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17297 + - uid: 17307 components: - rot: 1.5707963267948966 rad pos: -45.5,-47.5 @@ -133277,7 +133294,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17298 + - uid: 17308 components: - rot: 1.5707963267948966 rad pos: -43.5,-47.5 @@ -133285,7 +133302,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17299 + - uid: 17309 components: - rot: 1.5707963267948966 rad pos: -46.5,-45.5 @@ -133293,7 +133310,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17300 + - uid: 17310 components: - rot: 1.5707963267948966 rad pos: -45.5,-45.5 @@ -133301,7 +133318,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17301 + - uid: 17311 components: - rot: 1.5707963267948966 rad pos: -43.5,-45.5 @@ -133309,7 +133326,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17302 + - uid: 17312 components: - rot: 1.5707963267948966 rad pos: -46.5,-43.5 @@ -133317,7 +133334,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17303 + - uid: 17313 components: - rot: 1.5707963267948966 rad pos: -45.5,-43.5 @@ -133325,7 +133342,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17304 + - uid: 17314 components: - rot: 1.5707963267948966 rad pos: -43.5,-43.5 @@ -133333,7 +133350,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17305 + - uid: 17315 components: - rot: 3.141592653589793 rad pos: -42.5,-54.5 @@ -133341,7 +133358,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17306 + - uid: 17316 components: - rot: 3.141592653589793 rad pos: -43.5,-54.5 @@ -133349,7 +133366,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17307 + - uid: 17317 components: - rot: 3.141592653589793 rad pos: -43.5,-53.5 @@ -133357,98 +133374,98 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17308 + - uid: 17318 components: - pos: -42.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17309 + - uid: 17319 components: - pos: -42.5,-48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17310 + - uid: 17320 components: - pos: -42.5,-46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17311 + - uid: 17321 components: - pos: -42.5,-44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17312 + - uid: 17322 components: - pos: -42.5,-42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17313 + - uid: 17323 components: - pos: -44.5,-43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17314 + - uid: 17324 components: - pos: -44.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17315 + - uid: 17325 components: - pos: -44.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17316 + - uid: 17326 components: - pos: -44.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17317 + - uid: 17327 components: - pos: -44.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17318 + - uid: 17328 components: - pos: -44.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17319 + - uid: 17329 components: - pos: -44.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17320 + - uid: 17330 components: - pos: -44.5,-56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17321 + - uid: 17331 components: - rot: 1.5707963267948966 rad pos: -43.5,-57.5 @@ -133456,7 +133473,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17322 + - uid: 17332 components: - rot: 1.5707963267948966 rad pos: -42.5,-57.5 @@ -133464,7 +133481,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17323 + - uid: 17333 components: - rot: 1.5707963267948966 rad pos: -41.5,-57.5 @@ -133472,7 +133489,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17324 + - uid: 17334 components: - rot: 1.5707963267948966 rad pos: -40.5,-57.5 @@ -133480,7 +133497,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17325 + - uid: 17335 components: - rot: 1.5707963267948966 rad pos: -41.5,-55.5 @@ -133490,7 +133507,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17326 + - uid: 17336 components: - rot: 3.141592653589793 rad pos: -44.5,-39.5 @@ -133500,7 +133517,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17327 + - uid: 17337 components: - rot: 1.5707963267948966 rad pos: -36.5,-57.5 @@ -133508,31 +133525,31 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17328 + - uid: 17338 components: - rot: 3.141592653589793 rad pos: -42.5,-39.5 parent: 2 type: Transform - - uid: 17329 + - uid: 17339 components: - rot: 3.141592653589793 rad pos: -42.5,-38.5 parent: 2 type: Transform - - uid: 17330 + - uid: 17340 components: - rot: 3.141592653589793 rad pos: -42.5,-37.5 parent: 2 type: Transform - - uid: 17331 + - uid: 17341 components: - rot: 3.141592653589793 rad pos: -42.5,-36.5 parent: 2 type: Transform - - uid: 17332 + - uid: 17342 components: - rot: 3.141592653589793 rad pos: -38.5,-59.5 @@ -133540,7 +133557,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17333 + - uid: 17343 components: - rot: 3.141592653589793 rad pos: -40.5,-52.5 @@ -133550,7 +133567,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17334 + - uid: 17344 components: - rot: 3.141592653589793 rad pos: -37.5,-52.5 @@ -133560,7 +133577,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17335 + - uid: 17345 components: - rot: 1.5707963267948966 rad pos: -37.5,-55.5 @@ -133570,7 +133587,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17336 + - uid: 17346 components: - rot: -1.5707963267948966 rad pos: -38.5,-55.5 @@ -133580,7 +133597,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17337 + - uid: 17347 components: - rot: 1.5707963267948966 rad pos: -39.5,-48.5 @@ -133590,7 +133607,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17338 + - uid: 17348 components: - rot: 3.141592653589793 rad pos: -38.5,-47.5 @@ -133600,7 +133617,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17339 + - uid: 17349 components: - rot: 3.141592653589793 rad pos: -38.5,-46.5 @@ -133610,7 +133627,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17340 + - uid: 17350 components: - rot: 1.5707963267948966 rad pos: -35.5,-57.5 @@ -133618,35 +133635,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17341 + - uid: 17351 components: - pos: -31.5,-31.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17342 + - uid: 17352 components: - pos: -32.5,-31.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17343 + - uid: 17353 components: - pos: -32.5,-32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17344 + - uid: 17354 components: - pos: -31.5,-32.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17345 + - uid: 17355 components: - rot: 3.141592653589793 rad pos: -31.5,-33.5 @@ -133654,7 +133671,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17346 + - uid: 17356 components: - rot: 3.141592653589793 rad pos: -32.5,-34.5 @@ -133662,7 +133679,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17347 + - uid: 17357 components: - rot: 1.5707963267948966 rad pos: -31.5,-33.5 @@ -133670,7 +133687,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17348 + - uid: 17358 components: - rot: 1.5707963267948966 rad pos: -30.5,-33.5 @@ -133678,7 +133695,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17349 + - uid: 17359 components: - rot: 1.5707963267948966 rad pos: -29.5,-33.5 @@ -133686,7 +133703,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17350 + - uid: 17360 components: - rot: 1.5707963267948966 rad pos: -28.5,-33.5 @@ -133694,7 +133711,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17351 + - uid: 17361 components: - rot: 1.5707963267948966 rad pos: -27.5,-33.5 @@ -133702,7 +133719,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17352 + - uid: 17362 components: - rot: 1.5707963267948966 rad pos: -26.5,-33.5 @@ -133710,7 +133727,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17353 + - uid: 17363 components: - rot: 1.5707963267948966 rad pos: -25.5,-33.5 @@ -133718,7 +133735,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17354 + - uid: 17364 components: - rot: 1.5707963267948966 rad pos: -34.5,-33.5 @@ -133726,7 +133743,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17355 + - uid: 17365 components: - rot: 1.5707963267948966 rad pos: -35.5,-33.5 @@ -133734,7 +133751,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17356 + - uid: 17366 components: - rot: 1.5707963267948966 rad pos: -36.5,-33.5 @@ -133742,7 +133759,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17357 + - uid: 17367 components: - rot: 1.5707963267948966 rad pos: -37.5,-33.5 @@ -133750,7 +133767,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17358 + - uid: 17368 components: - rot: 1.5707963267948966 rad pos: -32.5,-34.5 @@ -133758,7 +133775,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17359 + - uid: 17369 components: - rot: 1.5707963267948966 rad pos: -33.5,-34.5 @@ -133766,7 +133783,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17360 + - uid: 17370 components: - rot: 1.5707963267948966 rad pos: -34.5,-34.5 @@ -133774,7 +133791,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17361 + - uid: 17371 components: - rot: 1.5707963267948966 rad pos: -35.5,-34.5 @@ -133782,7 +133799,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17362 + - uid: 17372 components: - rot: 1.5707963267948966 rad pos: -36.5,-34.5 @@ -133790,7 +133807,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17363 + - uid: 17373 components: - rot: 1.5707963267948966 rad pos: -37.5,-34.5 @@ -133798,70 +133815,70 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17364 + - uid: 17374 components: - pos: -32.5,-35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17365 + - uid: 17375 components: - pos: -32.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17366 + - uid: 17376 components: - pos: -32.5,-39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17367 + - uid: 17377 components: - pos: -31.5,-35.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17368 + - uid: 17378 components: - pos: -31.5,-36.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17369 + - uid: 17379 components: - pos: -31.5,-38.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17370 + - uid: 17380 components: - pos: -31.5,-37.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17371 + - uid: 17381 components: - pos: -31.5,-40.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17372 + - uid: 17382 components: - pos: -32.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17373 + - uid: 17383 components: - rot: -1.5707963267948966 rad pos: -29.5,-34.5 @@ -133869,7 +133886,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17374 + - uid: 17384 components: - rot: -1.5707963267948966 rad pos: -28.5,-34.5 @@ -133877,7 +133894,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17375 + - uid: 17385 components: - rot: -1.5707963267948966 rad pos: -27.5,-34.5 @@ -133885,7 +133902,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17376 + - uid: 17386 components: - rot: -1.5707963267948966 rad pos: -26.5,-34.5 @@ -133893,7 +133910,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17377 + - uid: 17387 components: - rot: -1.5707963267948966 rad pos: -25.5,-34.5 @@ -133901,7 +133918,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17378 + - uid: 17388 components: - rot: -1.5707963267948966 rad pos: -24.5,-34.5 @@ -133909,7 +133926,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17379 + - uid: 17389 components: - pos: -37.5,-55.5 parent: 2 @@ -133918,7 +133935,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17380 + - uid: 17390 components: - pos: -37.5,-56.5 parent: 2 @@ -133927,7 +133944,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17381 + - uid: 17391 components: - rot: 1.5707963267948966 rad pos: -36.5,-55.5 @@ -133935,7 +133952,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17382 + - uid: 17392 components: - rot: 3.141592653589793 rad pos: -35.5,-54.5 @@ -133943,7 +133960,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17383 + - uid: 17393 components: - rot: 3.141592653589793 rad pos: -35.5,-52.5 @@ -133951,7 +133968,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17384 + - uid: 17394 components: - rot: 3.141592653589793 rad pos: -35.5,-51.5 @@ -133959,7 +133976,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17385 + - uid: 17395 components: - rot: 3.141592653589793 rad pos: -35.5,-50.5 @@ -133967,7 +133984,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17386 + - uid: 17396 components: - rot: 3.141592653589793 rad pos: -35.5,-49.5 @@ -133975,7 +133992,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17387 + - uid: 17397 components: - rot: 3.141592653589793 rad pos: -35.5,-48.5 @@ -133983,7 +134000,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17388 + - uid: 17398 components: - rot: 3.141592653589793 rad pos: -35.5,-47.5 @@ -133991,7 +134008,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17389 + - uid: 17399 components: - rot: 3.141592653589793 rad pos: -35.5,-46.5 @@ -133999,7 +134016,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17390 + - uid: 17400 components: - rot: 3.141592653589793 rad pos: -35.5,-45.5 @@ -134007,7 +134024,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17391 + - uid: 17401 components: - rot: 3.141592653589793 rad pos: -35.5,-43.5 @@ -134015,7 +134032,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17392 + - uid: 17402 components: - rot: 3.141592653589793 rad pos: -35.5,-42.5 @@ -134023,7 +134040,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17393 + - uid: 17403 components: - rot: 3.141592653589793 rad pos: -34.5,-56.5 @@ -134031,7 +134048,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17394 + - uid: 17404 components: - rot: 3.141592653589793 rad pos: -34.5,-55.5 @@ -134039,7 +134056,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17395 + - uid: 17405 components: - rot: 3.141592653589793 rad pos: -34.5,-54.5 @@ -134047,7 +134064,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17396 + - uid: 17406 components: - rot: 3.141592653589793 rad pos: -34.5,-53.5 @@ -134055,7 +134072,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17397 + - uid: 17407 components: - rot: 3.141592653589793 rad pos: -34.5,-52.5 @@ -134063,7 +134080,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17398 + - uid: 17408 components: - rot: 3.141592653589793 rad pos: -34.5,-51.5 @@ -134071,7 +134088,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17399 + - uid: 17409 components: - rot: 3.141592653589793 rad pos: -34.5,-50.5 @@ -134079,7 +134096,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17400 + - uid: 17410 components: - rot: 3.141592653589793 rad pos: -34.5,-49.5 @@ -134087,7 +134104,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17401 + - uid: 17411 components: - rot: 3.141592653589793 rad pos: -34.5,-48.5 @@ -134095,7 +134112,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17402 + - uid: 17412 components: - rot: 3.141592653589793 rad pos: -34.5,-47.5 @@ -134103,7 +134120,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17403 + - uid: 17413 components: - rot: 3.141592653589793 rad pos: -34.5,-46.5 @@ -134111,7 +134128,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17404 + - uid: 17414 components: - rot: -1.5707963267948966 rad pos: -33.5,-40.5 @@ -134119,14 +134136,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17405 + - uid: 17415 components: - pos: -34.5,-41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17406 + - uid: 17416 components: - rot: -1.5707963267948966 rad pos: -34.5,-41.5 @@ -134134,7 +134151,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17407 + - uid: 17417 components: - rot: -1.5707963267948966 rad pos: -33.5,-41.5 @@ -134142,7 +134159,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17408 + - uid: 17418 components: - rot: -1.5707963267948966 rad pos: -32.5,-41.5 @@ -134150,7 +134167,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17409 + - uid: 17419 components: - pos: -38.5,-44.5 parent: 2 @@ -134159,7 +134176,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17410 + - uid: 17420 components: - pos: -38.5,-43.5 parent: 2 @@ -134168,35 +134185,35 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17411 + - uid: 17421 components: - pos: -38.5,-41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17412 + - uid: 17422 components: - pos: -38.5,-40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17413 + - uid: 17423 components: - pos: -38.5,-39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17414 + - uid: 17424 components: - pos: -38.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17415 + - uid: 17425 components: - pos: -38.5,-37.5 parent: 2 @@ -134205,14 +134222,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17416 + - uid: 17426 components: - pos: -38.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17417 + - uid: 17427 components: - rot: -1.5707963267948966 rad pos: -39.5,-35.5 @@ -134220,7 +134237,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17418 + - uid: 17428 components: - rot: -1.5707963267948966 rad pos: -41.5,-34.5 @@ -134230,7 +134247,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17419 + - uid: 17429 components: - rot: -1.5707963267948966 rad pos: -42.5,-34.5 @@ -134238,7 +134255,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17420 + - uid: 17430 components: - rot: 3.141592653589793 rad pos: -41.5,-8.5 @@ -134246,7 +134263,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17421 + - uid: 17431 components: - rot: -1.5707963267948966 rad pos: -23.5,-57.5 @@ -134254,7 +134271,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17422 + - uid: 17432 components: - rot: -1.5707963267948966 rad pos: -22.5,-57.5 @@ -134262,7 +134279,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17423 + - uid: 17433 components: - rot: -1.5707963267948966 rad pos: -20.5,-57.5 @@ -134270,7 +134287,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17424 + - uid: 17434 components: - rot: -1.5707963267948966 rad pos: -21.5,-57.5 @@ -134280,7 +134297,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17425 + - uid: 17435 components: - rot: -1.5707963267948966 rad pos: -19.5,-60.5 @@ -134288,7 +134305,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17426 + - uid: 17436 components: - rot: -1.5707963267948966 rad pos: -19.5,-71.5 @@ -134296,7 +134313,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17427 + - uid: 17437 components: - rot: -1.5707963267948966 rad pos: -20.5,-71.5 @@ -134304,7 +134321,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17428 + - uid: 17438 components: - rot: -1.5707963267948966 rad pos: -21.5,-71.5 @@ -134312,7 +134329,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17429 + - uid: 17439 components: - rot: -1.5707963267948966 rad pos: -22.5,-71.5 @@ -134320,7 +134337,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17430 + - uid: 17440 components: - rot: -1.5707963267948966 rad pos: -23.5,-71.5 @@ -134328,7 +134345,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17431 + - uid: 17441 components: - rot: -1.5707963267948966 rad pos: -24.5,-71.5 @@ -134336,7 +134353,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17432 + - uid: 17442 components: - rot: -1.5707963267948966 rad pos: -25.5,-71.5 @@ -134344,7 +134361,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17433 + - uid: 17443 components: - rot: -1.5707963267948966 rad pos: -26.5,-71.5 @@ -134354,7 +134371,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17434 + - uid: 17444 components: - rot: 3.141592653589793 rad pos: -28.5,-71.5 @@ -134362,7 +134379,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17435 + - uid: 17445 components: - rot: -1.5707963267948966 rad pos: -27.5,-71.5 @@ -134370,7 +134387,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17436 + - uid: 17446 components: - rot: 3.141592653589793 rad pos: -28.5,-70.5 @@ -134378,7 +134395,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17437 + - uid: 17447 components: - rot: -1.5707963267948966 rad pos: -31.5,-71.5 @@ -134386,7 +134403,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17438 + - uid: 17448 components: - rot: -1.5707963267948966 rad pos: -32.5,-71.5 @@ -134396,7 +134413,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17439 + - uid: 17449 components: - rot: -1.5707963267948966 rad pos: -33.5,-71.5 @@ -134406,7 +134423,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17440 + - uid: 17450 components: - rot: -1.5707963267948966 rad pos: -34.5,-71.5 @@ -134414,7 +134431,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17441 + - uid: 17451 components: - rot: -1.5707963267948966 rad pos: -35.5,-71.5 @@ -134424,7 +134441,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17442 + - uid: 17452 components: - rot: -1.5707963267948966 rad pos: -36.5,-71.5 @@ -134434,7 +134451,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17443 + - uid: 17453 components: - rot: -1.5707963267948966 rad pos: -37.5,-71.5 @@ -134444,7 +134461,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17444 + - uid: 17454 components: - rot: -1.5707963267948966 rad pos: -38.5,-71.5 @@ -134452,7 +134469,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17445 + - uid: 17455 components: - rot: -1.5707963267948966 rad pos: -39.5,-71.5 @@ -134462,7 +134479,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17446 + - uid: 17456 components: - rot: -1.5707963267948966 rad pos: -21.5,-69.5 @@ -134470,7 +134487,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17447 + - uid: 17457 components: - rot: -1.5707963267948966 rad pos: -22.5,-69.5 @@ -134478,7 +134495,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17448 + - uid: 17458 components: - rot: -1.5707963267948966 rad pos: -23.5,-69.5 @@ -134486,7 +134503,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17449 + - uid: 17459 components: - rot: -1.5707963267948966 rad pos: -24.5,-69.5 @@ -134494,7 +134511,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17450 + - uid: 17460 components: - rot: -1.5707963267948966 rad pos: -25.5,-69.5 @@ -134502,7 +134519,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17451 + - uid: 17461 components: - rot: -1.5707963267948966 rad pos: -26.5,-69.5 @@ -134512,7 +134529,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17452 + - uid: 17462 components: - rot: -1.5707963267948966 rad pos: -28.5,-71.5 @@ -134520,7 +134537,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17453 + - uid: 17463 components: - rot: -1.5707963267948966 rad pos: -29.5,-69.5 @@ -134528,7 +134545,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17454 + - uid: 17464 components: - rot: -1.5707963267948966 rad pos: -31.5,-69.5 @@ -134536,7 +134553,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17455 + - uid: 17465 components: - rot: -1.5707963267948966 rad pos: -32.5,-69.5 @@ -134544,7 +134561,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17456 + - uid: 17466 components: - rot: -1.5707963267948966 rad pos: -33.5,-69.5 @@ -134552,7 +134569,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17457 + - uid: 17467 components: - rot: -1.5707963267948966 rad pos: -34.5,-69.5 @@ -134560,7 +134577,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17458 + - uid: 17468 components: - rot: -1.5707963267948966 rad pos: -35.5,-69.5 @@ -134570,7 +134587,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17459 + - uid: 17469 components: - rot: -1.5707963267948966 rad pos: -36.5,-69.5 @@ -134580,7 +134597,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17460 + - uid: 17470 components: - rot: -1.5707963267948966 rad pos: -37.5,-69.5 @@ -134590,7 +134607,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17461 + - uid: 17471 components: - rot: -1.5707963267948966 rad pos: -38.5,-69.5 @@ -134600,7 +134617,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17462 + - uid: 17472 components: - rot: -1.5707963267948966 rad pos: -39.5,-69.5 @@ -134610,7 +134627,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17463 + - uid: 17473 components: - rot: -1.5707963267948966 rad pos: -40.5,-69.5 @@ -134620,7 +134637,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17464 + - uid: 17474 components: - rot: -1.5707963267948966 rad pos: -41.5,-69.5 @@ -134628,14 +134645,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17465 + - uid: 17475 components: - pos: -42.5,-70.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17466 + - uid: 17476 components: - rot: 1.5707963267948966 rad pos: -22.5,-58.5 @@ -134643,7 +134660,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17467 + - uid: 17477 components: - rot: 1.5707963267948966 rad pos: -21.5,-58.5 @@ -134653,7 +134670,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17468 + - uid: 17478 components: - rot: 3.141592653589793 rad pos: 21.5,-28.5 @@ -134661,14 +134678,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17469 + - uid: 17479 components: - pos: 23.5,-28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17470 + - uid: 17480 components: - rot: 1.5707963267948966 rad pos: -35.5,20.5 @@ -134678,7 +134695,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17471 + - uid: 17481 components: - rot: -1.5707963267948966 rad pos: -13.5,39.5 @@ -134686,7 +134703,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17472 + - uid: 17482 components: - rot: -1.5707963267948966 rad pos: -15.5,39.5 @@ -134694,7 +134711,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17473 + - uid: 17483 components: - rot: -1.5707963267948966 rad pos: -14.5,39.5 @@ -134702,7 +134719,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17474 + - uid: 17484 components: - rot: -1.5707963267948966 rad pos: -20.5,23.5 @@ -134710,91 +134727,91 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17475 + - uid: 17485 components: - pos: -20.5,14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17476 + - uid: 17486 components: - pos: -20.5,15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17477 + - uid: 17487 components: - pos: -20.5,17.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17478 + - uid: 17488 components: - pos: -20.5,18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17479 + - uid: 17489 components: - pos: -20.5,19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17480 + - uid: 17490 components: - pos: -18.5,13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17481 + - uid: 17491 components: - pos: -18.5,14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17482 + - uid: 17492 components: - pos: -18.5,15.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17483 + - uid: 17493 components: - pos: -18.5,16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17484 + - uid: 17494 components: - pos: -18.5,17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17485 + - uid: 17495 components: - pos: -18.5,18.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17486 + - uid: 17496 components: - pos: -18.5,20.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17487 + - uid: 17497 components: - rot: 3.141592653589793 rad pos: -18.5,21.5 @@ -134802,7 +134819,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17488 + - uid: 17498 components: - rot: -1.5707963267948966 rad pos: -21.5,20.5 @@ -134810,7 +134827,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17489 + - uid: 17499 components: - rot: -1.5707963267948966 rad pos: -22.5,20.5 @@ -134818,7 +134835,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17490 + - uid: 17500 components: - rot: 3.141592653589793 rad pos: -18.5,22.5 @@ -134826,7 +134843,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17491 + - uid: 17501 components: - rot: -1.5707963267948966 rad pos: -19.5,23.5 @@ -134834,7 +134851,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17492 + - uid: 17502 components: - rot: -1.5707963267948966 rad pos: -21.5,23.5 @@ -134844,7 +134861,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17493 + - uid: 17503 components: - rot: -1.5707963267948966 rad pos: -22.5,23.5 @@ -134852,7 +134869,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17494 + - uid: 17504 components: - rot: -1.5707963267948966 rad pos: -23.5,23.5 @@ -134860,7 +134877,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17495 + - uid: 17505 components: - rot: -1.5707963267948966 rad pos: -25.5,23.5 @@ -134868,7 +134885,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17496 + - uid: 17506 components: - rot: -1.5707963267948966 rad pos: -26.5,23.5 @@ -134878,7 +134895,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17497 + - uid: 17507 components: - rot: -1.5707963267948966 rad pos: -27.5,23.5 @@ -134886,7 +134903,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17498 + - uid: 17508 components: - rot: 1.5707963267948966 rad pos: -27.5,20.5 @@ -134896,7 +134913,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17499 + - uid: 17509 components: - rot: 1.5707963267948966 rad pos: -26.5,20.5 @@ -134906,7 +134923,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17500 + - uid: 17510 components: - rot: 1.5707963267948966 rad pos: -25.5,20.5 @@ -134914,7 +134931,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17501 + - uid: 17511 components: - rot: 1.5707963267948966 rad pos: -24.5,20.5 @@ -134922,7 +134939,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17502 + - uid: 17512 components: - rot: 1.5707963267948966 rad pos: -29.5,23.5 @@ -134932,7 +134949,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17503 + - uid: 17513 components: - rot: 1.5707963267948966 rad pos: -30.5,23.5 @@ -134940,7 +134957,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17504 + - uid: 17514 components: - rot: 1.5707963267948966 rad pos: -31.5,23.5 @@ -134948,7 +134965,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17505 + - uid: 17515 components: - rot: 1.5707963267948966 rad pos: -29.5,20.5 @@ -134958,7 +134975,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17506 + - uid: 17516 components: - rot: 1.5707963267948966 rad pos: -30.5,20.5 @@ -134966,7 +134983,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17507 + - uid: 17517 components: - rot: 1.5707963267948966 rad pos: -31.5,20.5 @@ -134974,7 +134991,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17508 + - uid: 17518 components: - rot: 1.5707963267948966 rad pos: -33.5,23.5 @@ -134982,7 +134999,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17509 + - uid: 17519 components: - rot: 1.5707963267948966 rad pos: -34.5,23.5 @@ -134990,7 +135007,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17510 + - uid: 17520 components: - rot: 1.5707963267948966 rad pos: -35.5,23.5 @@ -135000,7 +135017,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17511 + - uid: 17521 components: - rot: 1.5707963267948966 rad pos: -36.5,23.5 @@ -135008,77 +135025,77 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17512 + - uid: 17522 components: - pos: -32.5,24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17513 + - uid: 17523 components: - pos: -32.5,25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17514 + - uid: 17524 components: - pos: -32.5,26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17515 + - uid: 17525 components: - pos: -32.5,27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17516 + - uid: 17526 components: - pos: -33.5,21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17517 + - uid: 17527 components: - pos: -33.5,22.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17518 + - uid: 17528 components: - pos: -33.5,23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17519 + - uid: 17529 components: - pos: -33.5,24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17520 + - uid: 17530 components: - pos: -33.5,25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17521 + - uid: 17531 components: - pos: -33.5,26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17522 + - uid: 17532 components: - pos: -33.5,27.5 parent: 2 @@ -135087,7 +135104,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17523 + - uid: 17533 components: - rot: 1.5707963267948966 rad pos: -37.5,23.5 @@ -135095,7 +135112,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17524 + - uid: 17534 components: - rot: 1.5707963267948966 rad pos: -38.5,23.5 @@ -135103,7 +135120,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17525 + - uid: 17535 components: - rot: 1.5707963267948966 rad pos: -39.5,23.5 @@ -135111,7 +135128,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17526 + - uid: 17536 components: - rot: 1.5707963267948966 rad pos: -37.5,20.5 @@ -135119,7 +135136,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17527 + - uid: 17537 components: - rot: 1.5707963267948966 rad pos: -38.5,20.5 @@ -135127,7 +135144,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17528 + - uid: 17538 components: - rot: 1.5707963267948966 rad pos: -39.5,20.5 @@ -135135,7 +135152,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17529 + - uid: 17539 components: - rot: 1.5707963267948966 rad pos: -40.5,20.5 @@ -135143,21 +135160,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17530 + - uid: 17540 components: - pos: -40.5,24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17531 + - uid: 17541 components: - pos: -40.5,25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17532 + - uid: 17542 components: - pos: -40.5,26.5 parent: 2 @@ -135166,63 +135183,63 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17533 + - uid: 17543 components: - pos: -40.5,27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17534 + - uid: 17544 components: - pos: -41.5,21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17535 + - uid: 17545 components: - pos: -41.5,22.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17536 + - uid: 17546 components: - pos: -41.5,23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17537 + - uid: 17547 components: - pos: -41.5,24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17538 + - uid: 17548 components: - pos: -41.5,25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17539 + - uid: 17549 components: - pos: -41.5,26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17540 + - uid: 17550 components: - pos: -41.5,27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17541 + - uid: 17551 components: - rot: -1.5707963267948966 rad pos: -12.5,39.5 @@ -135230,49 +135247,49 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17542 + - uid: 17552 components: - pos: -40.5,32.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17543 + - uid: 17553 components: - pos: -40.5,31.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17544 + - uid: 17554 components: - pos: -41.5,30.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17545 + - uid: 17555 components: - pos: -40.5,29.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17546 + - uid: 17556 components: - pos: -40.5,28.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17547 + - uid: 17557 components: - pos: -41.5,28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17548 + - uid: 17558 components: - rot: -1.5707963267948966 rad pos: -40.5,29.5 @@ -135280,7 +135297,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17549 + - uid: 17559 components: - rot: -1.5707963267948966 rad pos: -39.5,29.5 @@ -135288,7 +135305,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17550 + - uid: 17560 components: - rot: -1.5707963267948966 rad pos: -38.5,29.5 @@ -135296,7 +135313,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17551 + - uid: 17561 components: - rot: -1.5707963267948966 rad pos: -39.5,30.5 @@ -135306,7 +135323,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17552 + - uid: 17562 components: - rot: -1.5707963267948966 rad pos: -38.5,30.5 @@ -135314,7 +135331,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17553 + - uid: 17563 components: - rot: -1.5707963267948966 rad pos: -41.5,33.5 @@ -135322,7 +135339,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17554 + - uid: 17564 components: - rot: -1.5707963267948966 rad pos: -42.5,33.5 @@ -135330,7 +135347,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17555 + - uid: 17565 components: - rot: -1.5707963267948966 rad pos: -43.5,33.5 @@ -135338,7 +135355,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17556 + - uid: 17566 components: - rot: -1.5707963267948966 rad pos: -42.5,31.5 @@ -135346,7 +135363,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17557 + - uid: 17567 components: - rot: -1.5707963267948966 rad pos: -43.5,31.5 @@ -135354,7 +135371,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17558 + - uid: 17568 components: - pos: -49.5,32.5 parent: 2 @@ -135363,7 +135380,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17559 + - uid: 17569 components: - rot: 1.5707963267948966 rad pos: -48.5,33.5 @@ -135371,7 +135388,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17560 + - uid: 17570 components: - rot: 1.5707963267948966 rad pos: -47.5,33.5 @@ -135379,7 +135396,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17561 + - uid: 17571 components: - rot: 1.5707963267948966 rad pos: -46.5,33.5 @@ -135387,7 +135404,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17562 + - uid: 17572 components: - rot: 1.5707963267948966 rad pos: -45.5,31.5 @@ -135397,7 +135414,7 @@ entities: type: AtmosPipeColor - nextSound: 1370.6480644 type: EmitSoundOnCollide - - uid: 17563 + - uid: 17573 components: - rot: -1.5707963267948966 rad pos: -21.5,13.5 @@ -135407,7 +135424,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17564 + - uid: 17574 components: - rot: -1.5707963267948966 rad pos: -22.5,13.5 @@ -135415,7 +135432,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17565 + - uid: 17575 components: - rot: -1.5707963267948966 rad pos: -23.5,13.5 @@ -135423,7 +135440,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17566 + - uid: 17576 components: - rot: -1.5707963267948966 rad pos: -24.5,13.5 @@ -135431,7 +135448,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17567 + - uid: 17577 components: - rot: -1.5707963267948966 rad pos: -19.5,12.5 @@ -135439,7 +135456,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17568 + - uid: 17578 components: - rot: -1.5707963267948966 rad pos: -20.5,12.5 @@ -135447,7 +135464,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17569 + - uid: 17579 components: - rot: -1.5707963267948966 rad pos: -21.5,12.5 @@ -135457,7 +135474,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17570 + - uid: 17580 components: - rot: -1.5707963267948966 rad pos: -22.5,12.5 @@ -135465,7 +135482,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17571 + - uid: 17581 components: - rot: -1.5707963267948966 rad pos: -23.5,12.5 @@ -135473,7 +135490,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17572 + - uid: 17582 components: - rot: -1.5707963267948966 rad pos: -24.5,12.5 @@ -135481,7 +135498,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17573 + - uid: 17583 components: - rot: -1.5707963267948966 rad pos: -25.5,12.5 @@ -135489,7 +135506,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17574 + - uid: 17584 components: - pos: 71.5,-30.5 parent: 2 @@ -135498,7 +135515,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17575 + - uid: 17585 components: - rot: -1.5707963267948966 rad pos: -27.5,1.5 @@ -135506,7 +135523,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17576 + - uid: 17586 components: - rot: -1.5707963267948966 rad pos: -29.5,1.5 @@ -135514,7 +135531,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17577 + - uid: 17587 components: - rot: -1.5707963267948966 rad pos: -30.5,1.5 @@ -135522,7 +135539,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17578 + - uid: 17588 components: - rot: -1.5707963267948966 rad pos: -31.5,1.5 @@ -135530,7 +135547,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17579 + - uid: 17589 components: - rot: -1.5707963267948966 rad pos: -32.5,1.5 @@ -135538,7 +135555,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17580 + - uid: 17590 components: - rot: -1.5707963267948966 rad pos: -33.5,1.5 @@ -135546,7 +135563,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17581 + - uid: 17591 components: - rot: -1.5707963267948966 rad pos: -34.5,1.5 @@ -135554,7 +135571,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17582 + - uid: 17592 components: - rot: -1.5707963267948966 rad pos: -35.5,1.5 @@ -135562,7 +135579,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17583 + - uid: 17593 components: - rot: -1.5707963267948966 rad pos: -36.5,1.5 @@ -135570,7 +135587,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17584 + - uid: 17594 components: - rot: -1.5707963267948966 rad pos: -25.5,0.5 @@ -135578,7 +135595,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17585 + - uid: 17595 components: - rot: -1.5707963267948966 rad pos: -26.5,0.5 @@ -135586,7 +135603,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17586 + - uid: 17596 components: - rot: -1.5707963267948966 rad pos: -27.5,0.5 @@ -135594,7 +135611,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17587 + - uid: 17597 components: - rot: -1.5707963267948966 rad pos: -28.5,0.5 @@ -135602,7 +135619,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17588 + - uid: 17598 components: - rot: -1.5707963267948966 rad pos: -30.5,0.5 @@ -135610,7 +135627,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17589 + - uid: 17599 components: - rot: -1.5707963267948966 rad pos: -31.5,0.5 @@ -135618,7 +135635,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17590 + - uid: 17600 components: - rot: -1.5707963267948966 rad pos: -32.5,0.5 @@ -135626,7 +135643,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17591 + - uid: 17601 components: - rot: -1.5707963267948966 rad pos: -33.5,0.5 @@ -135634,7 +135651,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17592 + - uid: 17602 components: - rot: -1.5707963267948966 rad pos: -34.5,0.5 @@ -135642,7 +135659,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17593 + - uid: 17603 components: - rot: -1.5707963267948966 rad pos: -35.5,0.5 @@ -135650,7 +135667,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17594 + - uid: 17604 components: - rot: -1.5707963267948966 rad pos: -36.5,0.5 @@ -135658,7 +135675,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17595 + - uid: 17605 components: - rot: -1.5707963267948966 rad pos: -37.5,0.5 @@ -135666,21 +135683,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17596 + - uid: 17606 components: - pos: -28.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17597 + - uid: 17607 components: - pos: -28.5,-0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17598 + - uid: 17608 components: - pos: -28.5,-1.5 parent: 2 @@ -135689,35 +135706,35 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17599 + - uid: 17609 components: - pos: -28.5,-2.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17600 + - uid: 17610 components: - pos: -29.5,-0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17601 + - uid: 17611 components: - pos: -29.5,-1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17602 + - uid: 17612 components: - pos: -29.5,-2.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17603 + - uid: 17613 components: - rot: 3.141592653589793 rad pos: -37.5,2.5 @@ -135725,7 +135742,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17604 + - uid: 17614 components: - rot: 3.141592653589793 rad pos: -37.5,3.5 @@ -135733,7 +135750,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17605 + - uid: 17615 components: - rot: 3.141592653589793 rad pos: -37.5,4.5 @@ -135741,7 +135758,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17606 + - uid: 17616 components: - rot: 3.141592653589793 rad pos: -37.5,6.5 @@ -135749,7 +135766,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17607 + - uid: 17617 components: - rot: 3.141592653589793 rad pos: -37.5,7.5 @@ -135757,7 +135774,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17608 + - uid: 17618 components: - rot: 3.141592653589793 rad pos: -38.5,1.5 @@ -135765,7 +135782,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17609 + - uid: 17619 components: - rot: 3.141592653589793 rad pos: -38.5,2.5 @@ -135773,7 +135790,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17610 + - uid: 17620 components: - rot: 3.141592653589793 rad pos: -38.5,4.5 @@ -135781,7 +135798,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17611 + - uid: 17621 components: - rot: 3.141592653589793 rad pos: -38.5,5.5 @@ -135789,7 +135806,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17612 + - uid: 17622 components: - rot: 3.141592653589793 rad pos: -38.5,6.5 @@ -135797,7 +135814,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17613 + - uid: 17623 components: - rot: 3.141592653589793 rad pos: -38.5,7.5 @@ -135805,7 +135822,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17614 + - uid: 17624 components: - rot: 3.141592653589793 rad pos: -37.5,9.5 @@ -135813,7 +135830,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17615 + - uid: 17625 components: - rot: 3.141592653589793 rad pos: -37.5,10.5 @@ -135821,7 +135838,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17616 + - uid: 17626 components: - rot: 3.141592653589793 rad pos: -37.5,11.5 @@ -135829,7 +135846,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17617 + - uid: 17627 components: - rot: 3.141592653589793 rad pos: -37.5,12.5 @@ -135837,7 +135854,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17618 + - uid: 17628 components: - rot: 3.141592653589793 rad pos: -38.5,9.5 @@ -135845,7 +135862,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17619 + - uid: 17629 components: - rot: 3.141592653589793 rad pos: -38.5,10.5 @@ -135853,7 +135870,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17620 + - uid: 17630 components: - rot: 3.141592653589793 rad pos: -38.5,11.5 @@ -135861,7 +135878,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17621 + - uid: 17631 components: - rot: 3.141592653589793 rad pos: -38.5,12.5 @@ -135869,14 +135886,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17622 + - uid: 17632 components: - pos: -38.5,13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17623 + - uid: 17633 components: - rot: 1.5707963267948966 rad pos: -37.5,14.5 @@ -135884,7 +135901,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17624 + - uid: 17634 components: - rot: 1.5707963267948966 rad pos: -36.5,14.5 @@ -135892,7 +135909,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17625 + - uid: 17635 components: - rot: 1.5707963267948966 rad pos: -35.5,14.5 @@ -135900,7 +135917,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17626 + - uid: 17636 components: - rot: 1.5707963267948966 rad pos: -34.5,14.5 @@ -135908,7 +135925,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17627 + - uid: 17637 components: - rot: 1.5707963267948966 rad pos: -33.5,14.5 @@ -135916,7 +135933,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17628 + - uid: 17638 components: - rot: 1.5707963267948966 rad pos: -32.5,14.5 @@ -135924,7 +135941,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17629 + - uid: 17639 components: - rot: 1.5707963267948966 rad pos: -31.5,14.5 @@ -135932,7 +135949,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17630 + - uid: 17640 components: - rot: 1.5707963267948966 rad pos: -36.5,13.5 @@ -135940,7 +135957,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17631 + - uid: 17641 components: - rot: 1.5707963267948966 rad pos: -35.5,13.5 @@ -135948,7 +135965,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17632 + - uid: 17642 components: - rot: 1.5707963267948966 rad pos: -34.5,13.5 @@ -135956,7 +135973,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17633 + - uid: 17643 components: - rot: 1.5707963267948966 rad pos: -33.5,13.5 @@ -135964,7 +135981,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17634 + - uid: 17644 components: - rot: 1.5707963267948966 rad pos: -32.5,13.5 @@ -135974,7 +135991,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17635 + - uid: 17645 components: - rot: 1.5707963267948966 rad pos: -31.5,13.5 @@ -135982,7 +135999,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17636 + - uid: 17646 components: - rot: -1.5707963267948966 rad pos: -38.5,1.5 @@ -135990,7 +136007,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17637 + - uid: 17647 components: - rot: -1.5707963267948966 rad pos: -39.5,1.5 @@ -135998,7 +136015,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17638 + - uid: 17648 components: - rot: -1.5707963267948966 rad pos: -40.5,1.5 @@ -136006,7 +136023,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17639 + - uid: 17649 components: - rot: -1.5707963267948966 rad pos: -40.5,0.5 @@ -136014,7 +136031,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17640 + - uid: 17650 components: - rot: -1.5707963267948966 rad pos: -41.5,0.5 @@ -136022,7 +136039,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17641 + - uid: 17651 components: - rot: -1.5707963267948966 rad pos: -42.5,0.5 @@ -136030,7 +136047,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17642 + - uid: 17652 components: - rot: -1.5707963267948966 rad pos: -43.5,0.5 @@ -136038,7 +136055,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17643 + - uid: 17653 components: - rot: -1.5707963267948966 rad pos: -42.5,1.5 @@ -136046,7 +136063,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17644 + - uid: 17654 components: - rot: -1.5707963267948966 rad pos: -43.5,1.5 @@ -136054,7 +136071,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17645 + - uid: 17655 components: - rot: -1.5707963267948966 rad pos: -30.5,13.5 @@ -136062,7 +136079,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17646 + - uid: 17656 components: - rot: 3.141592653589793 rad pos: -30.5,13.5 @@ -136070,7 +136087,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17647 + - uid: 17657 components: - rot: 3.141592653589793 rad pos: -30.5,12.5 @@ -136078,7 +136095,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17648 + - uid: 17658 components: - rot: 3.141592653589793 rad pos: -30.5,11.5 @@ -136086,7 +136103,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17649 + - uid: 17659 components: - rot: 3.141592653589793 rad pos: -30.5,10.5 @@ -136094,7 +136111,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17650 + - uid: 17660 components: - rot: 3.141592653589793 rad pos: -29.5,12.5 @@ -136102,7 +136119,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17651 + - uid: 17661 components: - rot: 3.141592653589793 rad pos: -29.5,11.5 @@ -136112,7 +136129,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17652 + - uid: 17662 components: - rot: 3.141592653589793 rad pos: -29.5,10.5 @@ -136120,7 +136137,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17653 + - uid: 17663 components: - rot: 3.141592653589793 rad pos: -29.5,14.5 @@ -136128,7 +136145,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17654 + - uid: 17664 components: - rot: -1.5707963267948966 rad pos: -44.5,1.5 @@ -136136,7 +136153,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17655 + - uid: 17665 components: - rot: -1.5707963267948966 rad pos: -44.5,0.5 @@ -136144,7 +136161,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17656 + - uid: 17666 components: - rot: -1.5707963267948966 rad pos: -45.5,0.5 @@ -136152,7 +136169,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17657 + - uid: 17667 components: - rot: -1.5707963267948966 rad pos: -46.5,0.5 @@ -136160,49 +136177,49 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17658 + - uid: 17668 components: - pos: -45.5,2.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17659 + - uid: 17669 components: - pos: -45.5,3.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17660 + - uid: 17670 components: - pos: -45.5,4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17661 + - uid: 17671 components: - pos: -45.5,5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17662 + - uid: 17672 components: - pos: -47.5,1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17663 + - uid: 17673 components: - pos: -47.5,2.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17664 + - uid: 17674 components: - rot: 3.141592653589793 rad pos: -47.5,4.5 @@ -136210,7 +136227,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17665 + - uid: 17675 components: - rot: 3.141592653589793 rad pos: -47.5,5.5 @@ -136218,7 +136235,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17666 + - uid: 17676 components: - rot: 3.141592653589793 rad pos: -47.5,6.5 @@ -136226,7 +136243,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17667 + - uid: 17677 components: - rot: 3.141592653589793 rad pos: -47.5,7.5 @@ -136234,7 +136251,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17668 + - uid: 17678 components: - rot: 3.141592653589793 rad pos: -47.5,8.5 @@ -136242,7 +136259,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17669 + - uid: 17679 components: - rot: 3.141592653589793 rad pos: -47.5,9.5 @@ -136252,7 +136269,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17670 + - uid: 17680 components: - rot: -1.5707963267948966 rad pos: -48.5,10.5 @@ -136260,7 +136277,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17671 + - uid: 17681 components: - rot: 3.141592653589793 rad pos: -46.5,11.5 @@ -136268,7 +136285,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17672 + - uid: 17682 components: - rot: 3.141592653589793 rad pos: -46.5,12.5 @@ -136276,7 +136293,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17673 + - uid: 17683 components: - rot: 3.141592653589793 rad pos: -46.5,13.5 @@ -136286,7 +136303,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17674 + - uid: 17684 components: - rot: 1.5707963267948966 rad pos: -49.5,10.5 @@ -136294,7 +136311,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17675 + - uid: 17685 components: - rot: 1.5707963267948966 rad pos: -50.5,10.5 @@ -136302,14 +136319,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17676 + - uid: 17686 components: - pos: -52.5,11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17677 + - uid: 17687 components: - pos: -52.5,12.5 parent: 2 @@ -136318,28 +136335,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17678 + - uid: 17688 components: - pos: -52.5,13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17679 + - uid: 17689 components: - pos: -52.5,9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17680 + - uid: 17690 components: - pos: -52.5,8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17681 + - uid: 17691 components: - rot: -1.5707963267948966 rad pos: -45.5,10.5 @@ -136347,7 +136364,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17682 + - uid: 17692 components: - rot: -1.5707963267948966 rad pos: -44.5,10.5 @@ -136357,7 +136374,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17683 + - uid: 17693 components: - rot: -1.5707963267948966 rad pos: -43.5,10.5 @@ -136365,7 +136382,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17684 + - uid: 17694 components: - rot: 1.5707963267948966 rad pos: -46.5,7.5 @@ -136373,7 +136390,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17685 + - uid: 17695 components: - rot: 1.5707963267948966 rad pos: -47.5,7.5 @@ -136381,7 +136398,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17686 + - uid: 17696 components: - rot: 1.5707963267948966 rad pos: -48.5,7.5 @@ -136389,7 +136406,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17687 + - uid: 17697 components: - rot: 1.5707963267948966 rad pos: -49.5,7.5 @@ -136397,7 +136414,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17688 + - uid: 17698 components: - rot: 1.5707963267948966 rad pos: -50.5,7.5 @@ -136407,28 +136424,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17689 + - uid: 17699 components: - pos: -45.5,8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17690 + - uid: 17700 components: - pos: -45.5,9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17691 + - uid: 17701 components: - pos: -45.5,10.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17692 + - uid: 17702 components: - rot: 3.141592653589793 rad pos: -45.5,12.5 @@ -136436,7 +136453,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17693 + - uid: 17703 components: - rot: 3.141592653589793 rad pos: -45.5,13.5 @@ -136444,7 +136461,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17694 + - uid: 17704 components: - rot: 1.5707963267948966 rad pos: -44.5,11.5 @@ -136452,7 +136469,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17695 + - uid: 17705 components: - rot: 1.5707963267948966 rad pos: -46.5,11.5 @@ -136460,7 +136477,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17696 + - uid: 17706 components: - rot: 1.5707963267948966 rad pos: -47.5,11.5 @@ -136468,7 +136485,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17697 + - uid: 17707 components: - rot: 1.5707963267948966 rad pos: -48.5,11.5 @@ -136476,7 +136493,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17698 + - uid: 17708 components: - rot: -1.5707963267948966 rad pos: -49.5,11.5 @@ -136484,7 +136501,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17699 + - uid: 17709 components: - rot: 1.5707963267948966 rad pos: -50.5,11.5 @@ -136492,7 +136509,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17700 + - uid: 17710 components: - rot: 3.141592653589793 rad pos: -51.5,12.5 @@ -136500,7 +136517,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17701 + - uid: 17711 components: - rot: 3.141592653589793 rad pos: -51.5,13.5 @@ -136508,14 +136525,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17702 + - uid: 17712 components: - pos: -46.5,14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17703 + - uid: 17713 components: - rot: 3.141592653589793 rad pos: -18.5,25.5 @@ -136523,7 +136540,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17704 + - uid: 17714 components: - rot: 3.141592653589793 rad pos: -20.5,21.5 @@ -136531,7 +136548,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17705 + - uid: 17715 components: - rot: 3.141592653589793 rad pos: -20.5,22.5 @@ -136539,7 +136556,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17706 + - uid: 17716 components: - rot: 3.141592653589793 rad pos: -20.5,23.5 @@ -136547,7 +136564,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17707 + - uid: 17717 components: - rot: 3.141592653589793 rad pos: -20.5,24.5 @@ -136555,7 +136572,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17708 + - uid: 17718 components: - rot: 1.5707963267948966 rad pos: 37.5,-72.5 @@ -136563,7 +136580,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17709 + - uid: 17719 components: - rot: 1.5707963267948966 rad pos: 22.5,-54.5 @@ -136571,7 +136588,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17710 + - uid: 17720 components: - rot: 1.5707963267948966 rad pos: 25.5,-53.5 @@ -136579,7 +136596,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17711 + - uid: 17721 components: - rot: 1.5707963267948966 rad pos: 24.5,-53.5 @@ -136587,7 +136604,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17712 + - uid: 17722 components: - rot: 1.5707963267948966 rad pos: 23.5,-53.5 @@ -136595,7 +136612,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17713 + - uid: 17723 components: - rot: 1.5707963267948966 rad pos: 22.5,-53.5 @@ -136605,7 +136622,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17714 + - uid: 17724 components: - rot: 1.5707963267948966 rad pos: 21.5,-53.5 @@ -136615,7 +136632,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17715 + - uid: 17725 components: - rot: 1.5707963267948966 rad pos: 20.5,-53.5 @@ -136623,7 +136640,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17716 + - uid: 17726 components: - rot: -1.5707963267948966 rad pos: -43.5,-71.5 @@ -136633,7 +136650,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17717 + - uid: 17727 components: - rot: -1.5707963267948966 rad pos: -44.5,-71.5 @@ -136643,35 +136660,35 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17718 + - uid: 17728 components: - pos: -45.5,-72.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17719 + - uid: 17729 components: - pos: -45.5,-73.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17720 + - uid: 17730 components: - pos: -45.5,-74.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17721 + - uid: 17731 components: - pos: -45.5,-75.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17722 + - uid: 17732 components: - rot: -1.5707963267948966 rad pos: -46.5,-76.5 @@ -136681,7 +136698,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17723 + - uid: 17733 components: - rot: -1.5707963267948966 rad pos: -47.5,-76.5 @@ -136689,7 +136706,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17724 + - uid: 17734 components: - rot: -1.5707963267948966 rad pos: -48.5,-76.5 @@ -136697,7 +136714,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17725 + - uid: 17735 components: - rot: -1.5707963267948966 rad pos: -49.5,-76.5 @@ -136705,7 +136722,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17726 + - uid: 17736 components: - rot: -1.5707963267948966 rad pos: -50.5,-76.5 @@ -136713,7 +136730,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17727 + - uid: 17737 components: - rot: -1.5707963267948966 rad pos: -51.5,-76.5 @@ -136721,7 +136738,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17728 + - uid: 17738 components: - rot: -1.5707963267948966 rad pos: -52.5,-76.5 @@ -136729,7 +136746,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17729 + - uid: 17739 components: - rot: -1.5707963267948966 rad pos: -53.5,-76.5 @@ -136737,7 +136754,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17730 + - uid: 17740 components: - rot: -1.5707963267948966 rad pos: -41.5,-72.5 @@ -136745,7 +136762,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17731 + - uid: 17741 components: - rot: -1.5707963267948966 rad pos: -42.5,-72.5 @@ -136753,7 +136770,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17732 + - uid: 17742 components: - rot: -1.5707963267948966 rad pos: -43.5,-72.5 @@ -136761,7 +136778,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17733 + - uid: 17743 components: - rot: -1.5707963267948966 rad pos: -44.5,-72.5 @@ -136769,7 +136786,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17734 + - uid: 17744 components: - rot: -1.5707963267948966 rad pos: -45.5,-72.5 @@ -136777,7 +136794,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17735 + - uid: 17745 components: - rot: 3.141592653589793 rad pos: -46.5,-73.5 @@ -136785,7 +136802,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17736 + - uid: 17746 components: - rot: 3.141592653589793 rad pos: -46.5,-74.5 @@ -136793,7 +136810,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17737 + - uid: 17747 components: - rot: 1.5707963267948966 rad pos: -47.5,-75.5 @@ -136801,7 +136818,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17738 + - uid: 17748 components: - rot: 1.5707963267948966 rad pos: -48.5,-75.5 @@ -136811,7 +136828,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17739 + - uid: 17749 components: - rot: 1.5707963267948966 rad pos: -49.5,-75.5 @@ -136821,7 +136838,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17740 + - uid: 17750 components: - rot: 1.5707963267948966 rad pos: -50.5,-75.5 @@ -136831,7 +136848,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17741 + - uid: 17751 components: - rot: 1.5707963267948966 rad pos: -51.5,-75.5 @@ -136839,7 +136856,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17742 + - uid: 17752 components: - rot: 1.5707963267948966 rad pos: -52.5,-75.5 @@ -136847,7 +136864,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17743 + - uid: 17753 components: - rot: 1.5707963267948966 rad pos: -53.5,-75.5 @@ -136857,7 +136874,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17744 + - uid: 17754 components: - rot: 1.5707963267948966 rad pos: -18.5,-41.5 @@ -136865,7 +136882,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17745 + - uid: 17755 components: - rot: 1.5707963267948966 rad pos: -17.5,-41.5 @@ -136873,7 +136890,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17746 + - uid: 17756 components: - rot: 1.5707963267948966 rad pos: -16.5,-41.5 @@ -136881,21 +136898,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17747 + - uid: 17757 components: - pos: -15.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17748 + - uid: 17758 components: - pos: -19.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17749 + - uid: 17759 components: - rot: 3.141592653589793 rad pos: 1.5,12.5 @@ -136903,7 +136920,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17750 + - uid: 17760 components: - rot: 3.141592653589793 rad pos: 1.5,13.5 @@ -136911,7 +136928,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17751 + - uid: 17761 components: - rot: 3.141592653589793 rad pos: 1.5,14.5 @@ -136919,7 +136936,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17752 + - uid: 17762 components: - rot: 3.141592653589793 rad pos: 1.5,15.5 @@ -136929,7 +136946,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17753 + - uid: 17763 components: - rot: 3.141592653589793 rad pos: 1.5,16.5 @@ -136937,7 +136954,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17754 + - uid: 17764 components: - rot: 3.141592653589793 rad pos: 1.5,17.5 @@ -136945,7 +136962,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17755 + - uid: 17765 components: - rot: 3.141592653589793 rad pos: 1.5,18.5 @@ -136953,7 +136970,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17756 + - uid: 17766 components: - rot: 3.141592653589793 rad pos: 1.5,19.5 @@ -136961,7 +136978,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17757 + - uid: 17767 components: - rot: 3.141592653589793 rad pos: 1.5,20.5 @@ -136969,7 +136986,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17758 + - uid: 17768 components: - rot: 3.141592653589793 rad pos: 1.5,21.5 @@ -136977,7 +136994,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17759 + - uid: 17769 components: - rot: 3.141592653589793 rad pos: 1.5,22.5 @@ -136987,7 +137004,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17760 + - uid: 17770 components: - rot: 3.141592653589793 rad pos: 1.5,23.5 @@ -136995,7 +137012,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17761 + - uid: 17771 components: - rot: 3.141592653589793 rad pos: 1.5,24.5 @@ -137005,7 +137022,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17762 + - uid: 17772 components: - rot: 3.141592653589793 rad pos: 1.5,25.5 @@ -137015,7 +137032,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17763 + - uid: 17773 components: - rot: -1.5707963267948966 rad pos: 28.5,1.5 @@ -137023,14 +137040,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17764 + - uid: 17774 components: - pos: -20.5,-59.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17765 + - uid: 17775 components: - rot: -1.5707963267948966 rad pos: -69.5,-23.5 @@ -137038,7 +137055,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17766 + - uid: 17776 components: - rot: -1.5707963267948966 rad pos: -70.5,-23.5 @@ -137046,7 +137063,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17767 + - uid: 17777 components: - rot: -1.5707963267948966 rad pos: -71.5,-23.5 @@ -137054,7 +137071,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17768 + - uid: 17778 components: - rot: -1.5707963267948966 rad pos: -65.5,-25.5 @@ -137064,7 +137081,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17769 + - uid: 17779 components: - rot: -1.5707963267948966 rad pos: -66.5,-25.5 @@ -137074,7 +137091,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17770 + - uid: 17780 components: - rot: -1.5707963267948966 rad pos: -67.5,-25.5 @@ -137084,7 +137101,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17771 + - uid: 17781 components: - rot: -1.5707963267948966 rad pos: -68.5,-25.5 @@ -137092,7 +137109,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17772 + - uid: 17782 components: - rot: -1.5707963267948966 rad pos: -69.5,-25.5 @@ -137102,7 +137119,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17773 + - uid: 17783 components: - rot: -1.5707963267948966 rad pos: -70.5,-25.5 @@ -137110,7 +137127,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17774 + - uid: 17784 components: - rot: 1.5707963267948966 rad pos: 18.5,-30.5 @@ -137118,7 +137135,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17775 + - uid: 17785 components: - rot: 3.141592653589793 rad pos: -23.5,-61.5 @@ -137126,7 +137143,7 @@ entities: type: Transform - color: '#97C3FCCC' type: AtmosPipeColor - - uid: 17776 + - uid: 17786 components: - rot: 3.141592653589793 rad pos: 30.5,-83.5 @@ -137134,7 +137151,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17777 + - uid: 17787 components: - rot: 3.141592653589793 rad pos: 25.5,-58.5 @@ -137142,7 +137159,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17778 + - uid: 17788 components: - rot: 3.141592653589793 rad pos: 25.5,-57.5 @@ -137150,7 +137167,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17779 + - uid: 17789 components: - rot: 3.141592653589793 rad pos: 47.5,-80.5 @@ -137158,7 +137175,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17780 + - uid: 17790 components: - rot: 3.141592653589793 rad pos: 42.5,5.5 @@ -137166,7 +137183,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17781 + - uid: 17791 components: - rot: 3.141592653589793 rad pos: 42.5,2.5 @@ -137174,7 +137191,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17782 + - uid: 17792 components: - rot: 3.141592653589793 rad pos: 42.5,4.5 @@ -137182,7 +137199,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17783 + - uid: 17793 components: - rot: 3.141592653589793 rad pos: 42.5,3.5 @@ -137190,7 +137207,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17784 + - uid: 17794 components: - rot: -1.5707963267948966 rad pos: 25.5,-42.5 @@ -137198,7 +137215,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17785 + - uid: 17795 components: - rot: 3.141592653589793 rad pos: 45.5,21.5 @@ -137206,7 +137223,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17786 + - uid: 17796 components: - rot: 3.141592653589793 rad pos: 45.5,22.5 @@ -137216,7 +137233,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17787 + - uid: 17797 components: - rot: 3.141592653589793 rad pos: 45.5,23.5 @@ -137226,7 +137243,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17788 + - uid: 17798 components: - rot: 3.141592653589793 rad pos: 45.5,24.5 @@ -137236,7 +137253,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17789 + - uid: 17799 components: - rot: 3.141592653589793 rad pos: 45.5,25.5 @@ -137246,7 +137263,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17790 + - uid: 17800 components: - rot: 3.141592653589793 rad pos: 45.5,26.5 @@ -137254,7 +137271,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17791 + - uid: 17801 components: - rot: 3.141592653589793 rad pos: 44.5,21.5 @@ -137262,7 +137279,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17792 + - uid: 17802 components: - rot: 3.141592653589793 rad pos: 44.5,22.5 @@ -137272,7 +137289,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17793 + - uid: 17803 components: - rot: 3.141592653589793 rad pos: 44.5,23.5 @@ -137282,7 +137299,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17794 + - uid: 17804 components: - rot: 3.141592653589793 rad pos: 44.5,24.5 @@ -137290,7 +137307,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17795 + - uid: 17805 components: - rot: 3.141592653589793 rad pos: 44.5,25.5 @@ -137298,7 +137315,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17796 + - uid: 17806 components: - rot: 3.141592653589793 rad pos: 44.5,20.5 @@ -137306,7 +137323,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17797 + - uid: 17807 components: - rot: 1.5707963267948966 rad pos: 46.5,27.5 @@ -137316,7 +137333,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17798 + - uid: 17808 components: - rot: 1.5707963267948966 rad pos: 47.5,27.5 @@ -137326,7 +137343,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17799 + - uid: 17809 components: - rot: 1.5707963267948966 rad pos: 45.5,26.5 @@ -137334,7 +137351,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17800 + - uid: 17810 components: - rot: 1.5707963267948966 rad pos: 46.5,26.5 @@ -137342,7 +137359,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17801 + - uid: 17811 components: - rot: 1.5707963267948966 rad pos: 47.5,26.5 @@ -137350,7 +137367,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17802 + - uid: 17812 components: - rot: 1.5707963267948966 rad pos: 48.5,26.5 @@ -137358,7 +137375,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17803 + - uid: 17813 components: - rot: 1.5707963267948966 rad pos: 49.5,26.5 @@ -137366,7 +137383,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17804 + - uid: 17814 components: - rot: 1.5707963267948966 rad pos: 50.5,26.5 @@ -137374,7 +137391,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17805 + - uid: 17815 components: - rot: 1.5707963267948966 rad pos: 51.5,26.5 @@ -137382,7 +137399,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17806 + - uid: 17816 components: - rot: 1.5707963267948966 rad pos: 52.5,26.5 @@ -137390,7 +137407,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17807 + - uid: 17817 components: - rot: 1.5707963267948966 rad pos: 53.5,26.5 @@ -137398,7 +137415,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17808 + - uid: 17818 components: - rot: 1.5707963267948966 rad pos: 48.5,27.5 @@ -137406,7 +137423,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17809 + - uid: 17819 components: - rot: 1.5707963267948966 rad pos: 49.5,27.5 @@ -137416,7 +137433,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17810 + - uid: 17820 components: - rot: 1.5707963267948966 rad pos: 50.5,27.5 @@ -137426,7 +137443,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17811 + - uid: 17821 components: - rot: 1.5707963267948966 rad pos: 51.5,27.5 @@ -137436,7 +137453,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17812 + - uid: 17822 components: - rot: 3.141592653589793 rad pos: 52.5,28.5 @@ -137444,7 +137461,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17813 + - uid: 17823 components: - rot: 3.141592653589793 rad pos: 52.5,29.5 @@ -137452,7 +137469,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17814 + - uid: 17824 components: - rot: 3.141592653589793 rad pos: 52.5,30.5 @@ -137462,7 +137479,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17815 + - uid: 17825 components: - rot: 3.141592653589793 rad pos: 52.5,31.5 @@ -137472,7 +137489,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17816 + - uid: 17826 components: - rot: 3.141592653589793 rad pos: 52.5,32.5 @@ -137482,7 +137499,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17817 + - uid: 17827 components: - rot: 3.141592653589793 rad pos: 52.5,33.5 @@ -137492,7 +137509,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17818 + - uid: 17828 components: - rot: 3.141592653589793 rad pos: 52.5,34.5 @@ -137500,7 +137517,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17819 + - uid: 17829 components: - rot: 3.141592653589793 rad pos: 52.5,35.5 @@ -137508,7 +137525,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17820 + - uid: 17830 components: - rot: 3.141592653589793 rad pos: 52.5,36.5 @@ -137516,7 +137533,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17821 + - uid: 17831 components: - rot: 3.141592653589793 rad pos: 52.5,37.5 @@ -137524,7 +137541,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17822 + - uid: 17832 components: - rot: 3.141592653589793 rad pos: 52.5,38.5 @@ -137534,7 +137551,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17823 + - uid: 17833 components: - rot: 3.141592653589793 rad pos: 52.5,39.5 @@ -137542,7 +137559,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17824 + - uid: 17834 components: - rot: 3.141592653589793 rad pos: 52.5,40.5 @@ -137550,7 +137567,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17825 + - uid: 17835 components: - rot: 3.141592653589793 rad pos: 52.5,41.5 @@ -137560,7 +137577,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17826 + - uid: 17836 components: - rot: 3.141592653589793 rad pos: 52.5,42.5 @@ -137568,7 +137585,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17827 + - uid: 17837 components: - rot: 3.141592653589793 rad pos: 54.5,27.5 @@ -137576,7 +137593,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17828 + - uid: 17838 components: - rot: 3.141592653589793 rad pos: 54.5,28.5 @@ -137584,7 +137601,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17829 + - uid: 17839 components: - rot: 3.141592653589793 rad pos: 54.5,29.5 @@ -137592,7 +137609,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17830 + - uid: 17840 components: - rot: 3.141592653589793 rad pos: 54.5,30.5 @@ -137602,7 +137619,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17831 + - uid: 17841 components: - rot: 3.141592653589793 rad pos: 54.5,31.5 @@ -137610,7 +137627,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17832 + - uid: 17842 components: - rot: 3.141592653589793 rad pos: 54.5,32.5 @@ -137618,7 +137635,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17833 + - uid: 17843 components: - rot: 3.141592653589793 rad pos: 54.5,33.5 @@ -137626,7 +137643,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17834 + - uid: 17844 components: - rot: 3.141592653589793 rad pos: 54.5,34.5 @@ -137636,7 +137653,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17835 + - uid: 17845 components: - rot: 3.141592653589793 rad pos: 54.5,35.5 @@ -137644,7 +137661,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17836 + - uid: 17846 components: - rot: 3.141592653589793 rad pos: 54.5,36.5 @@ -137652,7 +137669,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17837 + - uid: 17847 components: - rot: 3.141592653589793 rad pos: 54.5,37.5 @@ -137660,7 +137677,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17838 + - uid: 17848 components: - rot: 3.141592653589793 rad pos: 54.5,38.5 @@ -137668,7 +137685,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17839 + - uid: 17849 components: - rot: 3.141592653589793 rad pos: 54.5,39.5 @@ -137676,7 +137693,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17840 + - uid: 17850 components: - rot: 3.141592653589793 rad pos: 54.5,40.5 @@ -137684,7 +137701,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17841 + - uid: 17851 components: - rot: 3.141592653589793 rad pos: 54.5,41.5 @@ -137692,7 +137709,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17842 + - uid: 17852 components: - rot: 3.141592653589793 rad pos: 54.5,42.5 @@ -137700,7 +137717,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17843 + - uid: 17853 components: - rot: 3.141592653589793 rad pos: 54.5,44.5 @@ -137710,7 +137727,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17844 + - uid: 17854 components: - rot: 3.141592653589793 rad pos: 54.5,45.5 @@ -137718,7 +137735,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17845 + - uid: 17855 components: - rot: 3.141592653589793 rad pos: 54.5,46.5 @@ -137728,7 +137745,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17846 + - uid: 17856 components: - rot: 3.141592653589793 rad pos: 54.5,47.5 @@ -137736,7 +137753,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17847 + - uid: 17857 components: - rot: 3.141592653589793 rad pos: 54.5,48.5 @@ -137746,7 +137763,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17848 + - uid: 17858 components: - rot: 3.141592653589793 rad pos: 54.5,49.5 @@ -137754,7 +137771,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17849 + - uid: 17859 components: - rot: 3.141592653589793 rad pos: 54.5,51.5 @@ -137764,7 +137781,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17850 + - uid: 17860 components: - rot: 3.141592653589793 rad pos: 54.5,52.5 @@ -137774,7 +137791,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17851 + - uid: 17861 components: - rot: 3.141592653589793 rad pos: 54.5,53.5 @@ -137782,7 +137799,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17852 + - uid: 17862 components: - rot: 3.141592653589793 rad pos: 54.5,54.5 @@ -137792,7 +137809,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17853 + - uid: 17863 components: - rot: 3.141592653589793 rad pos: 54.5,55.5 @@ -137800,7 +137817,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17854 + - uid: 17864 components: - rot: 3.141592653589793 rad pos: 52.5,44.5 @@ -137810,7 +137827,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17855 + - uid: 17865 components: - rot: 3.141592653589793 rad pos: 52.5,45.5 @@ -137818,7 +137835,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17856 + - uid: 17866 components: - rot: 3.141592653589793 rad pos: 52.5,46.5 @@ -137828,7 +137845,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17857 + - uid: 17867 components: - rot: 3.141592653589793 rad pos: 52.5,47.5 @@ -137836,7 +137853,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17858 + - uid: 17868 components: - rot: 3.141592653589793 rad pos: 52.5,48.5 @@ -137846,7 +137863,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17859 + - uid: 17869 components: - rot: 3.141592653589793 rad pos: 52.5,50.5 @@ -137854,7 +137871,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17860 + - uid: 17870 components: - rot: 3.141592653589793 rad pos: 52.5,51.5 @@ -137862,7 +137879,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17861 + - uid: 17871 components: - rot: 3.141592653589793 rad pos: 52.5,52.5 @@ -137870,7 +137887,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17862 + - uid: 17872 components: - rot: 3.141592653589793 rad pos: 52.5,53.5 @@ -137878,7 +137895,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17863 + - uid: 17873 components: - rot: 3.141592653589793 rad pos: 52.5,54.5 @@ -137888,7 +137905,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17864 + - uid: 17874 components: - rot: 3.141592653589793 rad pos: 52.5,55.5 @@ -137896,49 +137913,49 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17865 + - uid: 17875 components: - pos: -16.5,31.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17866 + - uid: 17876 components: - pos: -15.5,30.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17867 + - uid: 17877 components: - pos: -15.5,31.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17868 + - uid: 17878 components: - pos: -15.5,32.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17869 + - uid: 17879 components: - pos: -16.5,32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17870 + - uid: 17880 components: - pos: -16.5,33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17871 + - uid: 17881 components: - rot: 1.5707963267948966 rad pos: -15.5,34.5 @@ -137946,7 +137963,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17872 + - uid: 17882 components: - rot: 1.5707963267948966 rad pos: -14.5,34.5 @@ -137954,7 +137971,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17873 + - uid: 17883 components: - rot: 1.5707963267948966 rad pos: -13.5,34.5 @@ -137962,7 +137979,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17874 + - uid: 17884 components: - rot: 1.5707963267948966 rad pos: -14.5,33.5 @@ -137970,7 +137987,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17875 + - uid: 17885 components: - rot: 1.5707963267948966 rad pos: -13.5,33.5 @@ -137980,133 +137997,133 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17876 + - uid: 17886 components: - pos: -16.5,35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17877 + - uid: 17887 components: - pos: -16.5,36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17878 + - uid: 17888 components: - pos: -16.5,37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17879 + - uid: 17889 components: - pos: -16.5,38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17880 + - uid: 17890 components: - pos: -16.5,40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17881 + - uid: 17891 components: - pos: -16.5,41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17882 + - uid: 17892 components: - pos: -16.5,42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17883 + - uid: 17893 components: - pos: -15.5,34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17884 + - uid: 17894 components: - pos: -15.5,35.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17885 + - uid: 17895 components: - pos: -15.5,36.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17886 + - uid: 17896 components: - pos: -15.5,37.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17887 + - uid: 17897 components: - pos: -15.5,39.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17888 + - uid: 17898 components: - pos: -15.5,40.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17889 + - uid: 17899 components: - pos: -15.5,41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17890 + - uid: 17900 components: - pos: -15.5,42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17891 + - uid: 17901 components: - pos: -15.5,43.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17892 + - uid: 17902 components: - pos: -16.5,44.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17893 + - uid: 17903 components: - pos: -16.5,45.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17894 + - uid: 17904 components: - rot: 1.5707963267948966 rad pos: -17.5,43.5 @@ -138114,7 +138131,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17895 + - uid: 17905 components: - rot: 1.5707963267948966 rad pos: -18.5,43.5 @@ -138122,7 +138139,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17896 + - uid: 17906 components: - rot: 1.5707963267948966 rad pos: -19.5,43.5 @@ -138130,7 +138147,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17897 + - uid: 17907 components: - rot: 1.5707963267948966 rad pos: -16.5,44.5 @@ -138138,7 +138155,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17898 + - uid: 17908 components: - rot: 1.5707963267948966 rad pos: -17.5,44.5 @@ -138146,7 +138163,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17899 + - uid: 17909 components: - rot: 1.5707963267948966 rad pos: -18.5,44.5 @@ -138154,7 +138171,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17900 + - uid: 17910 components: - rot: 1.5707963267948966 rad pos: -19.5,44.5 @@ -138164,7 +138181,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17901 + - uid: 17911 components: - rot: -1.5707963267948966 rad pos: -16.5,45.5 @@ -138172,7 +138189,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17902 + - uid: 17912 components: - rot: 3.141592653589793 rad pos: -17.5,46.5 @@ -138180,7 +138197,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17903 + - uid: 17913 components: - rot: 3.141592653589793 rad pos: -17.5,47.5 @@ -138188,7 +138205,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17904 + - uid: 17914 components: - rot: 3.141592653589793 rad pos: -17.5,48.5 @@ -138196,7 +138213,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17905 + - uid: 17915 components: - rot: 3.141592653589793 rad pos: -17.5,49.5 @@ -138204,7 +138221,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17906 + - uid: 17916 components: - rot: 3.141592653589793 rad pos: -16.5,47.5 @@ -138212,7 +138229,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17907 + - uid: 17917 components: - rot: 3.141592653589793 rad pos: -16.5,48.5 @@ -138220,7 +138237,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17908 + - uid: 17918 components: - rot: 3.141592653589793 rad pos: -16.5,49.5 @@ -138228,7 +138245,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17909 + - uid: 17919 components: - rot: 1.5707963267948966 rad pos: -15.5,43.5 @@ -138236,7 +138253,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17910 + - uid: 17920 components: - rot: -1.5707963267948966 rad pos: -15.5,46.5 @@ -138244,7 +138261,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17911 + - uid: 17921 components: - rot: -1.5707963267948966 rad pos: -14.5,46.5 @@ -138252,7 +138269,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17912 + - uid: 17922 components: - rot: -1.5707963267948966 rad pos: -13.5,46.5 @@ -138260,7 +138277,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17913 + - uid: 17923 components: - rot: -1.5707963267948966 rad pos: -12.5,46.5 @@ -138268,7 +138285,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17914 + - uid: 17924 components: - rot: -1.5707963267948966 rad pos: -13.5,44.5 @@ -138276,7 +138293,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17915 + - uid: 17925 components: - rot: -1.5707963267948966 rad pos: -12.5,44.5 @@ -138284,26 +138301,26 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17916 + - uid: 17926 components: - pos: 1.5,47.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17917 + - uid: 17927 components: - rot: 3.141592653589793 rad pos: 70.5,35.5 parent: 2 type: Transform - - uid: 17918 + - uid: 17928 components: - rot: 3.141592653589793 rad pos: 70.5,34.5 parent: 2 type: Transform - - uid: 17919 + - uid: 17929 components: - rot: 3.141592653589793 rad pos: 70.5,33.5 @@ -138311,7 +138328,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17920 + - uid: 17930 components: - rot: -1.5707963267948966 rad pos: -14.5,38.5 @@ -138319,7 +138336,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17921 + - uid: 17931 components: - rot: -1.5707963267948966 rad pos: -13.5,38.5 @@ -138327,7 +138344,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17922 + - uid: 17932 components: - rot: -1.5707963267948966 rad pos: -12.5,38.5 @@ -138335,7 +138352,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17923 + - uid: 17933 components: - rot: -1.5707963267948966 rad pos: 53.5,50.5 @@ -138343,7 +138360,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17924 + - uid: 17934 components: - rot: -1.5707963267948966 rad pos: 52.5,50.5 @@ -138351,7 +138368,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17925 + - uid: 17935 components: - rot: -1.5707963267948966 rad pos: 51.5,50.5 @@ -138359,7 +138376,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17926 + - uid: 17936 components: - rot: -1.5707963267948966 rad pos: 50.5,50.5 @@ -138369,7 +138386,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17927 + - uid: 17937 components: - rot: -1.5707963267948966 rad pos: 49.5,50.5 @@ -138379,7 +138396,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17928 + - uid: 17938 components: - rot: -1.5707963267948966 rad pos: 48.5,50.5 @@ -138387,7 +138404,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17929 + - uid: 17939 components: - rot: -1.5707963267948966 rad pos: 51.5,49.5 @@ -138395,7 +138412,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17930 + - uid: 17940 components: - rot: -1.5707963267948966 rad pos: 50.5,49.5 @@ -138403,7 +138420,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17931 + - uid: 17941 components: - rot: -1.5707963267948966 rad pos: 49.5,49.5 @@ -138413,7 +138430,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17932 + - uid: 17942 components: - rot: -1.5707963267948966 rad pos: 48.5,49.5 @@ -138421,7 +138438,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17933 + - uid: 17943 components: - rot: -1.5707963267948966 rad pos: 47.5,49.5 @@ -138429,7 +138446,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17934 + - uid: 17944 components: - rot: -1.5707963267948966 rad pos: 46.5,49.5 @@ -138437,21 +138454,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17935 + - uid: 17945 components: - pos: 47.5,49.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17936 + - uid: 17946 components: - pos: 47.5,48.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17937 + - uid: 17947 components: - pos: 47.5,47.5 parent: 2 @@ -138460,21 +138477,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17938 + - uid: 17948 components: - pos: 45.5,48.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17939 + - uid: 17949 components: - pos: 45.5,47.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17940 + - uid: 17950 components: - pos: 45.5,46.5 parent: 2 @@ -138483,7 +138500,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17941 + - uid: 17951 components: - rot: -1.5707963267948966 rad pos: 46.5,46.5 @@ -138491,7 +138508,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17942 + - uid: 17952 components: - rot: -1.5707963267948966 rad pos: 45.5,46.5 @@ -138501,7 +138518,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17943 + - uid: 17953 components: - rot: -1.5707963267948966 rad pos: 43.5,46.5 @@ -138509,7 +138526,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17944 + - uid: 17954 components: - rot: -1.5707963267948966 rad pos: 44.5,46.5 @@ -138517,7 +138534,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17945 + - uid: 17955 components: - rot: -1.5707963267948966 rad pos: 42.5,46.5 @@ -138527,7 +138544,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17946 + - uid: 17956 components: - rot: -1.5707963267948966 rad pos: 41.5,46.5 @@ -138537,7 +138554,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17947 + - uid: 17957 components: - rot: -1.5707963267948966 rad pos: 44.5,45.5 @@ -138545,7 +138562,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17948 + - uid: 17958 components: - rot: -1.5707963267948966 rad pos: 43.5,45.5 @@ -138553,7 +138570,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17949 + - uid: 17959 components: - rot: -1.5707963267948966 rad pos: 42.5,45.5 @@ -138561,7 +138578,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17950 + - uid: 17960 components: - rot: -1.5707963267948966 rad pos: 41.5,45.5 @@ -138571,7 +138588,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17951 + - uid: 17961 components: - rot: 3.141592653589793 rad pos: 2.5,67.5 @@ -138579,7 +138596,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17952 + - uid: 17962 components: - rot: 3.141592653589793 rad pos: 2.5,66.5 @@ -138587,7 +138604,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17953 + - uid: 17963 components: - rot: 3.141592653589793 rad pos: 2.5,65.5 @@ -138597,7 +138614,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17954 + - uid: 17964 components: - rot: 3.141592653589793 rad pos: 2.5,64.5 @@ -138607,7 +138624,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17955 + - uid: 17965 components: - rot: 3.141592653589793 rad pos: -5.5,67.5 @@ -138615,7 +138632,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17956 + - uid: 17966 components: - rot: 3.141592653589793 rad pos: -5.5,66.5 @@ -138623,7 +138640,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17957 + - uid: 17967 components: - rot: 3.141592653589793 rad pos: -5.5,65.5 @@ -138633,7 +138650,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17958 + - uid: 17968 components: - rot: 3.141592653589793 rad pos: -5.5,64.5 @@ -138643,7 +138660,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17959 + - uid: 17969 components: - rot: 3.141592653589793 rad pos: -6.5,68.5 @@ -138651,7 +138668,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17960 + - uid: 17970 components: - rot: 3.141592653589793 rad pos: -6.5,67.5 @@ -138659,7 +138676,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17961 + - uid: 17971 components: - rot: 3.141592653589793 rad pos: -6.5,66.5 @@ -138667,7 +138684,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17962 + - uid: 17972 components: - rot: 3.141592653589793 rad pos: -6.5,65.5 @@ -138677,7 +138694,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17963 + - uid: 17973 components: - rot: 3.141592653589793 rad pos: 3.5,68.5 @@ -138685,7 +138702,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17964 + - uid: 17974 components: - rot: 3.141592653589793 rad pos: 3.5,67.5 @@ -138693,7 +138710,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17965 + - uid: 17975 components: - rot: 3.141592653589793 rad pos: 3.5,66.5 @@ -138701,7 +138718,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17966 + - uid: 17976 components: - rot: 3.141592653589793 rad pos: 3.5,65.5 @@ -138711,7 +138728,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17967 + - uid: 17977 components: - rot: 1.5707963267948966 rad pos: 0.5,69.5 @@ -138719,7 +138736,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17968 + - uid: 17978 components: - rot: 1.5707963267948966 rad pos: -3.5,69.5 @@ -138727,21 +138744,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17969 + - uid: 17979 components: - pos: -2.5,66.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17970 + - uid: 17980 components: - pos: -2.5,65.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17971 + - uid: 17981 components: - pos: -2.5,64.5 parent: 2 @@ -138750,21 +138767,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17972 + - uid: 17982 components: - pos: -2.5,63.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17973 + - uid: 17983 components: - pos: -2.5,61.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17974 + - uid: 17984 components: - pos: -2.5,60.5 parent: 2 @@ -138773,49 +138790,49 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17975 + - uid: 17985 components: - pos: -2.5,59.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17976 + - uid: 17986 components: - pos: -1.5,65.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17977 + - uid: 17987 components: - pos: -1.5,64.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17978 + - uid: 17988 components: - pos: -1.5,63.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17979 + - uid: 17989 components: - pos: -1.5,62.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17980 + - uid: 17990 components: - pos: -1.5,60.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17981 + - uid: 17991 components: - rot: -1.5707963267948966 rad pos: -11.5,46.5 @@ -138823,7 +138840,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17982 + - uid: 17992 components: - rot: -1.5707963267948966 rad pos: -10.5,46.5 @@ -138831,7 +138848,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17983 + - uid: 17993 components: - rot: -1.5707963267948966 rad pos: -9.5,46.5 @@ -138839,7 +138856,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17984 + - uid: 17994 components: - rot: -1.5707963267948966 rad pos: -8.5,46.5 @@ -138847,7 +138864,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17985 + - uid: 17995 components: - rot: -1.5707963267948966 rad pos: -7.5,46.5 @@ -138855,7 +138872,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17986 + - uid: 17996 components: - rot: -1.5707963267948966 rad pos: -6.5,46.5 @@ -138863,7 +138880,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17987 + - uid: 17997 components: - rot: -1.5707963267948966 rad pos: -5.5,46.5 @@ -138871,7 +138888,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17988 + - uid: 17998 components: - rot: -1.5707963267948966 rad pos: -4.5,46.5 @@ -138879,7 +138896,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17989 + - uid: 17999 components: - rot: -1.5707963267948966 rad pos: -3.5,46.5 @@ -138887,7 +138904,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17990 + - uid: 18000 components: - rot: -1.5707963267948966 rad pos: -2.5,46.5 @@ -138895,7 +138912,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17991 + - uid: 18001 components: - rot: -1.5707963267948966 rad pos: -1.5,46.5 @@ -138903,7 +138920,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17992 + - uid: 18002 components: - rot: -1.5707963267948966 rad pos: -11.5,44.5 @@ -138911,7 +138928,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17993 + - uid: 18003 components: - rot: -1.5707963267948966 rad pos: -10.5,44.5 @@ -138919,7 +138936,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17994 + - uid: 18004 components: - rot: -1.5707963267948966 rad pos: -9.5,44.5 @@ -138927,7 +138944,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17995 + - uid: 18005 components: - rot: -1.5707963267948966 rad pos: -8.5,44.5 @@ -138935,7 +138952,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17996 + - uid: 18006 components: - rot: -1.5707963267948966 rad pos: -7.5,44.5 @@ -138943,7 +138960,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17997 + - uid: 18007 components: - rot: -1.5707963267948966 rad pos: -6.5,44.5 @@ -138951,7 +138968,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17998 + - uid: 18008 components: - rot: -1.5707963267948966 rad pos: -5.5,44.5 @@ -138959,7 +138976,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17999 + - uid: 18009 components: - rot: -1.5707963267948966 rad pos: -4.5,44.5 @@ -138967,7 +138984,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18000 + - uid: 18010 components: - rot: -1.5707963267948966 rad pos: -3.5,44.5 @@ -138975,7 +138992,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18001 + - uid: 18011 components: - rot: -1.5707963267948966 rad pos: -2.5,44.5 @@ -138983,7 +139000,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18002 + - uid: 18012 components: - rot: -1.5707963267948966 rad pos: -1.5,44.5 @@ -138991,7 +139008,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18003 + - uid: 18013 components: - rot: -1.5707963267948966 rad pos: -0.5,44.5 @@ -138999,7 +139016,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18004 + - uid: 18014 components: - rot: -1.5707963267948966 rad pos: 0.5,44.5 @@ -139007,7 +139024,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18005 + - uid: 18015 components: - rot: 3.141592653589793 rad pos: 1.5,45.5 @@ -139015,7 +139032,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18006 + - uid: 18016 components: - rot: 3.141592653589793 rad pos: -0.5,47.5 @@ -139023,98 +139040,98 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18007 + - uid: 18017 components: - pos: 1.5,48.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18008 + - uid: 18018 components: - pos: 1.5,49.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18009 + - uid: 18019 components: - pos: 1.5,50.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18010 + - uid: 18020 components: - pos: 1.5,51.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18011 + - uid: 18021 components: - pos: 1.5,52.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18012 + - uid: 18022 components: - pos: 1.5,53.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18013 + - uid: 18023 components: - pos: 1.5,54.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18014 + - uid: 18024 components: - pos: -0.5,49.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18015 + - uid: 18025 components: - pos: -0.5,50.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18016 + - uid: 18026 components: - pos: -0.5,51.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18017 + - uid: 18027 components: - pos: -0.5,52.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18018 + - uid: 18028 components: - pos: -0.5,53.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18019 + - uid: 18029 components: - pos: -0.5,54.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18020 + - uid: 18030 components: - rot: -1.5707963267948966 rad pos: -17.5,51.5 @@ -139122,7 +139139,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18021 + - uid: 18031 components: - rot: -1.5707963267948966 rad pos: -18.5,51.5 @@ -139130,7 +139147,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18022 + - uid: 18032 components: - rot: -1.5707963267948966 rad pos: -19.5,51.5 @@ -139138,7 +139155,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18023 + - uid: 18033 components: - rot: -1.5707963267948966 rad pos: -18.5,50.5 @@ -139146,7 +139163,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18024 + - uid: 18034 components: - rot: -1.5707963267948966 rad pos: -19.5,50.5 @@ -139154,7 +139171,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18025 + - uid: 18035 components: - rot: -1.5707963267948966 rad pos: -20.5,50.5 @@ -139162,7 +139179,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18026 + - uid: 18036 components: - rot: 3.141592653589793 rad pos: -20.5,50.5 @@ -139170,7 +139187,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18027 + - uid: 18037 components: - rot: 3.141592653589793 rad pos: -20.5,49.5 @@ -139180,7 +139197,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18028 + - uid: 18038 components: - rot: 3.141592653589793 rad pos: -21.5,49.5 @@ -139190,7 +139207,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18029 + - uid: 18039 components: - rot: 3.141592653589793 rad pos: -16.5,50.5 @@ -139198,7 +139215,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18030 + - uid: 18040 components: - rot: 1.5707963267948966 rad pos: -16.5,50.5 @@ -139206,7 +139223,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18031 + - uid: 18041 components: - rot: 1.5707963267948966 rad pos: -15.5,50.5 @@ -139214,7 +139231,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18032 + - uid: 18042 components: - rot: 1.5707963267948966 rad pos: -14.5,50.5 @@ -139222,7 +139239,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18033 + - uid: 18043 components: - rot: 1.5707963267948966 rad pos: -13.5,50.5 @@ -139230,7 +139247,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18034 + - uid: 18044 components: - rot: 1.5707963267948966 rad pos: -15.5,51.5 @@ -139238,7 +139255,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18035 + - uid: 18045 components: - rot: 1.5707963267948966 rad pos: -14.5,51.5 @@ -139246,140 +139263,140 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18036 + - uid: 18046 components: - pos: -21.5,52.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18037 + - uid: 18047 components: - pos: -21.5,53.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18038 + - uid: 18048 components: - pos: -21.5,54.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18039 + - uid: 18049 components: - pos: -21.5,55.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18040 + - uid: 18050 components: - pos: -21.5,56.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18041 + - uid: 18051 components: - pos: -21.5,57.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18042 + - uid: 18052 components: - pos: -22.5,51.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18043 + - uid: 18053 components: - pos: -22.5,52.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18044 + - uid: 18054 components: - pos: -22.5,53.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18045 + - uid: 18055 components: - pos: -22.5,54.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18046 + - uid: 18056 components: - pos: -22.5,55.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18047 + - uid: 18057 components: - pos: -22.5,56.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18048 + - uid: 18058 components: - pos: -22.5,57.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18049 + - uid: 18059 components: - pos: -22.5,58.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18050 + - uid: 18060 components: - pos: -22.5,59.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18051 + - uid: 18061 components: - pos: -21.5,59.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18052 + - uid: 18062 components: - pos: -21.5,60.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18053 + - uid: 18063 components: - pos: -21.5,61.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18054 + - uid: 18064 components: - pos: -22.5,62.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18055 + - uid: 18065 components: - rot: -1.5707963267948966 rad pos: -20.5,62.5 @@ -139389,7 +139406,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18056 + - uid: 18066 components: - rot: -1.5707963267948966 rad pos: -19.5,62.5 @@ -139399,7 +139416,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18057 + - uid: 18067 components: - rot: -1.5707963267948966 rad pos: -18.5,62.5 @@ -139407,7 +139424,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18058 + - uid: 18068 components: - rot: -1.5707963267948966 rad pos: -21.5,61.5 @@ -139415,7 +139432,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18059 + - uid: 18069 components: - rot: -1.5707963267948966 rad pos: -20.5,61.5 @@ -139425,7 +139442,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18060 + - uid: 18070 components: - rot: -1.5707963267948966 rad pos: -19.5,61.5 @@ -139433,7 +139450,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18061 + - uid: 18071 components: - rot: -1.5707963267948966 rad pos: -18.5,61.5 @@ -139443,140 +139460,140 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18062 + - uid: 18072 components: - pos: -22.5,63.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18063 + - uid: 18073 components: - pos: -22.5,64.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18064 + - uid: 18074 components: - pos: -22.5,65.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18065 + - uid: 18075 components: - pos: -22.5,67.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18066 + - uid: 18076 components: - pos: -22.5,68.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18067 + - uid: 18077 components: - pos: -22.5,69.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18068 + - uid: 18078 components: - pos: -22.5,70.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18069 + - uid: 18079 components: - pos: -22.5,71.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18070 + - uid: 18080 components: - pos: -22.5,72.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18071 + - uid: 18081 components: - pos: -21.5,63.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18072 + - uid: 18082 components: - pos: -21.5,64.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18073 + - uid: 18083 components: - pos: -21.5,65.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18074 + - uid: 18084 components: - pos: -21.5,66.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18075 + - uid: 18085 components: - pos: -21.5,67.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18076 + - uid: 18086 components: - pos: -21.5,68.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18077 + - uid: 18087 components: - pos: -21.5,69.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18078 + - uid: 18088 components: - pos: -21.5,70.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18079 + - uid: 18089 components: - pos: -21.5,71.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18080 + - uid: 18090 components: - pos: -21.5,72.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18081 + - uid: 18091 components: - rot: -1.5707963267948966 rad pos: -16.5,62.5 @@ -139584,7 +139601,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18082 + - uid: 18092 components: - rot: -1.5707963267948966 rad pos: -15.5,62.5 @@ -139592,7 +139609,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18083 + - uid: 18093 components: - rot: -1.5707963267948966 rad pos: -14.5,62.5 @@ -139602,7 +139619,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18084 + - uid: 18094 components: - rot: -1.5707963267948966 rad pos: -16.5,61.5 @@ -139610,7 +139627,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18085 + - uid: 18095 components: - rot: -1.5707963267948966 rad pos: -15.5,61.5 @@ -139618,7 +139635,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18086 + - uid: 18096 components: - rot: -1.5707963267948966 rad pos: -14.5,61.5 @@ -139628,7 +139645,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18087 + - uid: 18097 components: - rot: -1.5707963267948966 rad pos: -13.5,61.5 @@ -139636,168 +139653,168 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18088 + - uid: 18098 components: - pos: -13.5,61.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18089 + - uid: 18099 components: - pos: -13.5,60.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18090 + - uid: 18100 components: - pos: -13.5,59.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18091 + - uid: 18101 components: - pos: -12.5,62.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18092 + - uid: 18102 components: - pos: -12.5,63.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18093 + - uid: 18103 components: - pos: -12.5,64.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18094 + - uid: 18104 components: - pos: -12.5,65.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18095 + - uid: 18105 components: - pos: -12.5,66.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18096 + - uid: 18106 components: - pos: -12.5,67.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18097 + - uid: 18107 components: - pos: -12.5,68.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18098 + - uid: 18108 components: - pos: -12.5,69.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18099 + - uid: 18109 components: - pos: -12.5,70.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18100 + - uid: 18110 components: - pos: -12.5,71.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18101 + - uid: 18111 components: - pos: -12.5,72.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18102 + - uid: 18112 components: - pos: -13.5,63.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18103 + - uid: 18113 components: - pos: -13.5,64.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18104 + - uid: 18114 components: - pos: -13.5,65.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18105 + - uid: 18115 components: - pos: -13.5,67.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18106 + - uid: 18116 components: - pos: -13.5,68.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18107 + - uid: 18117 components: - pos: -13.5,69.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18108 + - uid: 18118 components: - pos: -13.5,70.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18109 + - uid: 18119 components: - pos: -13.5,71.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18110 + - uid: 18120 components: - pos: -13.5,72.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18111 + - uid: 18121 components: - rot: 1.5707963267948966 rad pos: -11.5,59.5 @@ -139805,7 +139822,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18112 + - uid: 18122 components: - rot: 1.5707963267948966 rad pos: -10.5,59.5 @@ -139813,7 +139830,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18113 + - uid: 18123 components: - rot: 1.5707963267948966 rad pos: -9.5,59.5 @@ -139821,7 +139838,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18114 + - uid: 18124 components: - rot: 1.5707963267948966 rad pos: -8.5,59.5 @@ -139829,7 +139846,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18115 + - uid: 18125 components: - rot: 1.5707963267948966 rad pos: -7.5,59.5 @@ -139837,7 +139854,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18116 + - uid: 18126 components: - rot: 1.5707963267948966 rad pos: -6.5,59.5 @@ -139845,7 +139862,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18117 + - uid: 18127 components: - rot: 1.5707963267948966 rad pos: -5.5,59.5 @@ -139853,7 +139870,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18118 + - uid: 18128 components: - rot: 1.5707963267948966 rad pos: -4.5,59.5 @@ -139861,7 +139878,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18119 + - uid: 18129 components: - rot: 1.5707963267948966 rad pos: -12.5,58.5 @@ -139869,7 +139886,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18120 + - uid: 18130 components: - rot: 1.5707963267948966 rad pos: -11.5,58.5 @@ -139877,7 +139894,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18121 + - uid: 18131 components: - rot: 1.5707963267948966 rad pos: -10.5,58.5 @@ -139885,7 +139902,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18122 + - uid: 18132 components: - rot: 1.5707963267948966 rad pos: -9.5,58.5 @@ -139893,7 +139910,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18123 + - uid: 18133 components: - rot: 1.5707963267948966 rad pos: -8.5,58.5 @@ -139901,7 +139918,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18124 + - uid: 18134 components: - rot: 1.5707963267948966 rad pos: -7.5,58.5 @@ -139909,7 +139926,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18125 + - uid: 18135 components: - rot: 1.5707963267948966 rad pos: -6.5,58.5 @@ -139917,7 +139934,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18126 + - uid: 18136 components: - rot: 1.5707963267948966 rad pos: -5.5,58.5 @@ -139925,98 +139942,98 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18127 + - uid: 18137 components: - pos: -12.5,58.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18128 + - uid: 18138 components: - pos: -12.5,57.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18129 + - uid: 18139 components: - pos: -12.5,56.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18130 + - uid: 18140 components: - pos: -12.5,55.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18131 + - uid: 18141 components: - pos: -12.5,54.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18132 + - uid: 18142 components: - pos: -12.5,53.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18133 + - uid: 18143 components: - pos: -12.5,52.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18134 + - uid: 18144 components: - pos: -12.5,51.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18135 + - uid: 18145 components: - pos: -13.5,56.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18136 + - uid: 18146 components: - pos: -13.5,55.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18137 + - uid: 18147 components: - pos: -13.5,54.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18138 + - uid: 18148 components: - pos: -13.5,53.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18139 + - uid: 18149 components: - pos: -13.5,52.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18140 + - uid: 18150 components: - rot: 1.5707963267948966 rad pos: -3.5,59.5 @@ -140024,7 +140041,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18141 + - uid: 18151 components: - rot: 1.5707963267948966 rad pos: -2.5,59.5 @@ -140032,7 +140049,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18142 + - uid: 18152 components: - rot: 1.5707963267948966 rad pos: -4.5,58.5 @@ -140040,7 +140057,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18143 + - uid: 18153 components: - rot: 1.5707963267948966 rad pos: -3.5,58.5 @@ -140048,7 +140065,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18144 + - uid: 18154 components: - rot: -1.5707963267948966 rad pos: 0.5,59.5 @@ -140056,7 +140073,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18145 + - uid: 18155 components: - rot: 1.5707963267948966 rad pos: -1.5,58.5 @@ -140064,14 +140081,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18146 + - uid: 18156 components: - pos: -0.5,57.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18147 + - uid: 18157 components: - rot: 1.5707963267948966 rad pos: -0.5,59.5 @@ -140079,35 +140096,35 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18148 + - uid: 18158 components: - pos: -0.5,55.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18149 + - uid: 18159 components: - pos: 1.5,58.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18150 + - uid: 18160 components: - pos: 1.5,56.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18151 + - uid: 18161 components: - pos: 1.5,55.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18152 + - uid: 18162 components: - rot: -1.5707963267948966 rad pos: 39.5,47.5 @@ -140117,7 +140134,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18153 + - uid: 18163 components: - rot: -1.5707963267948966 rad pos: 38.5,47.5 @@ -140127,7 +140144,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18154 + - uid: 18164 components: - rot: -1.5707963267948966 rad pos: 37.5,47.5 @@ -140135,7 +140152,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18155 + - uid: 18165 components: - rot: -1.5707963267948966 rad pos: 36.5,47.5 @@ -140143,7 +140160,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18156 + - uid: 18166 components: - rot: -1.5707963267948966 rad pos: 35.5,47.5 @@ -140151,7 +140168,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18157 + - uid: 18167 components: - rot: -1.5707963267948966 rad pos: 34.5,47.5 @@ -140161,7 +140178,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18158 + - uid: 18168 components: - rot: -1.5707963267948966 rad pos: 33.5,47.5 @@ -140169,7 +140186,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18159 + - uid: 18169 components: - rot: -1.5707963267948966 rad pos: 32.5,47.5 @@ -140177,7 +140194,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18160 + - uid: 18170 components: - rot: -1.5707963267948966 rad pos: 31.5,47.5 @@ -140187,7 +140204,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18161 + - uid: 18171 components: - rot: -1.5707963267948966 rad pos: 30.5,47.5 @@ -140195,7 +140212,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18162 + - uid: 18172 components: - rot: -1.5707963267948966 rad pos: 28.5,45.5 @@ -140203,7 +140220,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18163 + - uid: 18173 components: - rot: -1.5707963267948966 rad pos: 27.5,45.5 @@ -140211,7 +140228,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18164 + - uid: 18174 components: - rot: -1.5707963267948966 rad pos: 26.5,45.5 @@ -140219,7 +140236,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18165 + - uid: 18175 components: - rot: -1.5707963267948966 rad pos: 25.5,45.5 @@ -140227,7 +140244,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18166 + - uid: 18176 components: - rot: -1.5707963267948966 rad pos: 28.5,46.5 @@ -140235,7 +140252,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18167 + - uid: 18177 components: - rot: -1.5707963267948966 rad pos: 27.5,46.5 @@ -140245,7 +140262,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18168 + - uid: 18178 components: - rot: -1.5707963267948966 rad pos: 26.5,46.5 @@ -140253,7 +140270,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18169 + - uid: 18179 components: - rot: -1.5707963267948966 rad pos: 25.5,46.5 @@ -140261,7 +140278,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18170 + - uid: 18180 components: - rot: -1.5707963267948966 rad pos: 24.5,46.5 @@ -140269,7 +140286,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18171 + - uid: 18181 components: - rot: 1.5707963267948966 rad pos: 30.5,44.5 @@ -140277,7 +140294,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18172 + - uid: 18182 components: - rot: 1.5707963267948966 rad pos: 31.5,44.5 @@ -140287,7 +140304,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18173 + - uid: 18183 components: - rot: 1.5707963267948966 rad pos: 32.5,44.5 @@ -140295,7 +140312,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18174 + - uid: 18184 components: - rot: 1.5707963267948966 rad pos: 33.5,44.5 @@ -140303,7 +140320,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18175 + - uid: 18185 components: - rot: 1.5707963267948966 rad pos: 34.5,44.5 @@ -140313,7 +140330,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18176 + - uid: 18186 components: - rot: 1.5707963267948966 rad pos: 35.5,44.5 @@ -140321,7 +140338,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18177 + - uid: 18187 components: - rot: 1.5707963267948966 rad pos: 36.5,44.5 @@ -140331,7 +140348,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18178 + - uid: 18188 components: - rot: 1.5707963267948966 rad pos: 37.5,44.5 @@ -140339,7 +140356,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18179 + - uid: 18189 components: - rot: 1.5707963267948966 rad pos: 38.5,44.5 @@ -140349,7 +140366,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18180 + - uid: 18190 components: - rot: 1.5707963267948966 rad pos: 39.5,44.5 @@ -140357,7 +140374,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18181 + - uid: 18191 components: - rot: 3.141592653589793 rad pos: -6.5,-91.5 @@ -140365,14 +140382,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18182 + - uid: 18192 components: - pos: -22.5,-90.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18183 + - uid: 18193 components: - pos: -22.5,-91.5 parent: 2 @@ -140381,7 +140398,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18184 + - uid: 18194 components: - pos: -22.5,-92.5 parent: 2 @@ -140390,7 +140407,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18185 + - uid: 18195 components: - pos: -22.5,-93.5 parent: 2 @@ -140399,7 +140416,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18186 + - uid: 18196 components: - pos: -22.5,-94.5 parent: 2 @@ -140408,28 +140425,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18187 + - uid: 18197 components: - pos: -22.5,-95.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18188 + - uid: 18198 components: - pos: -20.5,-89.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18189 + - uid: 18199 components: - pos: -20.5,-90.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18190 + - uid: 18200 components: - pos: -20.5,-91.5 parent: 2 @@ -140438,7 +140455,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18191 + - uid: 18201 components: - pos: -20.5,-92.5 parent: 2 @@ -140447,7 +140464,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18192 + - uid: 18202 components: - pos: -20.5,-93.5 parent: 2 @@ -140456,7 +140473,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18193 + - uid: 18203 components: - pos: -20.5,-94.5 parent: 2 @@ -140465,14 +140482,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18194 + - uid: 18204 components: - pos: -20.5,-95.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18195 + - uid: 18205 components: - rot: 3.141592653589793 rad pos: -22.5,-97.5 @@ -140480,7 +140497,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18196 + - uid: 18206 components: - rot: 1.5707963267948966 rad pos: -21.5,-97.5 @@ -140488,7 +140505,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18197 + - uid: 18207 components: - rot: 1.5707963267948966 rad pos: -22.5,-97.5 @@ -140496,7 +140513,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18198 + - uid: 18208 components: - rot: 1.5707963267948966 rad pos: -23.5,-97.5 @@ -140504,7 +140521,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18199 + - uid: 18209 components: - rot: 1.5707963267948966 rad pos: -24.5,-97.5 @@ -140512,7 +140529,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18200 + - uid: 18210 components: - rot: 1.5707963267948966 rad pos: -25.5,-97.5 @@ -140520,7 +140537,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18201 + - uid: 18211 components: - rot: 1.5707963267948966 rad pos: -26.5,-97.5 @@ -140530,7 +140547,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18202 + - uid: 18212 components: - rot: 1.5707963267948966 rad pos: -27.5,-97.5 @@ -140538,7 +140555,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18203 + - uid: 18213 components: - rot: 1.5707963267948966 rad pos: -28.5,-97.5 @@ -140546,7 +140563,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18204 + - uid: 18214 components: - rot: 1.5707963267948966 rad pos: -29.5,-97.5 @@ -140554,7 +140571,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18205 + - uid: 18215 components: - rot: 1.5707963267948966 rad pos: -30.5,-97.5 @@ -140562,7 +140579,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18206 + - uid: 18216 components: - rot: 1.5707963267948966 rad pos: -23.5,-96.5 @@ -140570,7 +140587,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18207 + - uid: 18217 components: - rot: 1.5707963267948966 rad pos: -24.5,-96.5 @@ -140578,7 +140595,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18208 + - uid: 18218 components: - rot: 1.5707963267948966 rad pos: -25.5,-96.5 @@ -140586,7 +140603,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18209 + - uid: 18219 components: - rot: 1.5707963267948966 rad pos: -26.5,-96.5 @@ -140594,7 +140611,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18210 + - uid: 18220 components: - rot: 1.5707963267948966 rad pos: -27.5,-96.5 @@ -140602,7 +140619,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18211 + - uid: 18221 components: - rot: 1.5707963267948966 rad pos: -28.5,-96.5 @@ -140612,7 +140629,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18212 + - uid: 18222 components: - rot: 1.5707963267948966 rad pos: -29.5,-96.5 @@ -140620,7 +140637,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18213 + - uid: 18223 components: - rot: 1.5707963267948966 rad pos: -30.5,-96.5 @@ -140628,7 +140645,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18214 + - uid: 18224 components: - rot: 1.5707963267948966 rad pos: -20.5,-98.5 @@ -140636,7 +140653,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18215 + - uid: 18225 components: - rot: 1.5707963267948966 rad pos: -19.5,-98.5 @@ -140644,7 +140661,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18216 + - uid: 18226 components: - rot: 1.5707963267948966 rad pos: -18.5,-98.5 @@ -140652,7 +140669,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18217 + - uid: 18227 components: - rot: 1.5707963267948966 rad pos: -17.5,-98.5 @@ -140660,7 +140677,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18218 + - uid: 18228 components: - rot: 1.5707963267948966 rad pos: -16.5,-98.5 @@ -140668,7 +140685,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18219 + - uid: 18229 components: - rot: 1.5707963267948966 rad pos: -19.5,-97.5 @@ -140676,7 +140693,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18220 + - uid: 18230 components: - rot: 1.5707963267948966 rad pos: -18.5,-97.5 @@ -140686,7 +140703,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18221 + - uid: 18231 components: - rot: 1.5707963267948966 rad pos: -17.5,-97.5 @@ -140694,7 +140711,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18222 + - uid: 18232 components: - rot: 1.5707963267948966 rad pos: -16.5,-97.5 @@ -140702,7 +140719,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18223 + - uid: 18233 components: - rot: 1.5707963267948966 rad pos: -15.5,-97.5 @@ -140710,7 +140727,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18224 + - uid: 18234 components: - rot: 1.5707963267948966 rad pos: -14.5,-97.5 @@ -140718,7 +140735,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18225 + - uid: 18235 components: - rot: 1.5707963267948966 rad pos: -13.5,-97.5 @@ -140726,7 +140743,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18226 + - uid: 18236 components: - rot: 1.5707963267948966 rad pos: -12.5,-97.5 @@ -140734,7 +140751,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18227 + - uid: 18237 components: - rot: 1.5707963267948966 rad pos: -11.5,-97.5 @@ -140742,7 +140759,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18228 + - uid: 18238 components: - rot: 1.5707963267948966 rad pos: -10.5,-97.5 @@ -140750,7 +140767,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18229 + - uid: 18239 components: - rot: 1.5707963267948966 rad pos: -15.5,-98.5 @@ -140758,7 +140775,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18230 + - uid: 18240 components: - rot: 1.5707963267948966 rad pos: -14.5,-98.5 @@ -140766,7 +140783,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18231 + - uid: 18241 components: - rot: 1.5707963267948966 rad pos: -13.5,-98.5 @@ -140776,7 +140793,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18232 + - uid: 18242 components: - rot: 1.5707963267948966 rad pos: -12.5,-98.5 @@ -140784,7 +140801,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18233 + - uid: 18243 components: - rot: 1.5707963267948966 rad pos: -11.5,-98.5 @@ -140792,7 +140809,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18234 + - uid: 18244 components: - rot: 1.5707963267948966 rad pos: -10.5,-98.5 @@ -140800,7 +140817,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18235 + - uid: 18245 components: - rot: 1.5707963267948966 rad pos: -9.5,-98.5 @@ -140808,7 +140825,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18236 + - uid: 18246 components: - rot: 1.5707963267948966 rad pos: -8.5,-98.5 @@ -140816,7 +140833,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18237 + - uid: 18247 components: - rot: 1.5707963267948966 rad pos: -9.5,-97.5 @@ -140824,21 +140841,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18238 + - uid: 18248 components: - pos: -8.5,-96.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18239 + - uid: 18249 components: - pos: -8.5,-95.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18240 + - uid: 18250 components: - pos: -8.5,-94.5 parent: 2 @@ -140847,56 +140864,56 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18241 + - uid: 18251 components: - pos: -8.5,-93.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18242 + - uid: 18252 components: - pos: -8.5,-92.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18243 + - uid: 18253 components: - pos: -7.5,-97.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18244 + - uid: 18254 components: - pos: -7.5,-96.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18245 + - uid: 18255 components: - pos: -7.5,-95.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18246 + - uid: 18256 components: - pos: -7.5,-94.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18247 + - uid: 18257 components: - pos: -8.5,-90.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18248 + - uid: 18258 components: - pos: -8.5,-89.5 parent: 2 @@ -140905,7 +140922,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18249 + - uid: 18259 components: - pos: -8.5,-88.5 parent: 2 @@ -140914,28 +140931,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18250 + - uid: 18260 components: - pos: -8.5,-87.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18251 + - uid: 18261 components: - pos: -8.5,-86.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18252 + - uid: 18262 components: - pos: -8.5,-85.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18253 + - uid: 18263 components: - rot: 3.141592653589793 rad pos: -6.5,-89.5 @@ -140945,7 +140962,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18254 + - uid: 18264 components: - rot: 3.141592653589793 rad pos: -6.5,-90.5 @@ -140953,7 +140970,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18255 + - uid: 18265 components: - rot: 3.141592653589793 rad pos: -6.5,-92.5 @@ -140961,7 +140978,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18256 + - uid: 18266 components: - rot: 3.141592653589793 rad pos: -6.5,-88.5 @@ -140971,7 +140988,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18257 + - uid: 18267 components: - rot: 3.141592653589793 rad pos: -6.5,-87.5 @@ -140981,7 +140998,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18258 + - uid: 18268 components: - rot: 3.141592653589793 rad pos: -6.5,-86.5 @@ -140991,7 +141008,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18259 + - uid: 18269 components: - rot: 3.141592653589793 rad pos: -6.5,-85.5 @@ -140999,7 +141016,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18260 + - uid: 18270 components: - rot: -1.5707963267948966 rad pos: -31.5,-96.5 @@ -141009,7 +141026,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18261 + - uid: 18271 components: - rot: -1.5707963267948966 rad pos: -31.5,-97.5 @@ -141017,7 +141034,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18262 + - uid: 18272 components: - rot: -1.5707963267948966 rad pos: -32.5,-96.5 @@ -141025,7 +141042,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18263 + - uid: 18273 components: - rot: -1.5707963267948966 rad pos: -32.5,-97.5 @@ -141033,7 +141050,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18264 + - uid: 18274 components: - rot: -1.5707963267948966 rad pos: -33.5,-96.5 @@ -141041,7 +141058,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18265 + - uid: 18275 components: - rot: -1.5707963267948966 rad pos: -33.5,-97.5 @@ -141049,13 +141066,13 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18266 + - uid: 18276 components: - rot: 3.141592653589793 rad pos: -70.5,-42.5 parent: 2 type: Transform - - uid: 18267 + - uid: 18277 components: - rot: 1.5707963267948966 rad pos: -72.5,-44.5 @@ -141063,7 +141080,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 18268 + - uid: 18278 components: - rot: 1.5707963267948966 rad pos: 36.5,-72.5 @@ -141071,7 +141088,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18269 + - uid: 18279 components: - rot: 1.5707963267948966 rad pos: 63.5,-34.5 @@ -141079,14 +141096,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18270 + - uid: 18280 components: - pos: 70.5,-48.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18271 + - uid: 18281 components: - rot: -1.5707963267948966 rad pos: 61.5,-33.5 @@ -141094,7 +141111,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18272 + - uid: 18282 components: - rot: -1.5707963267948966 rad pos: 62.5,-33.5 @@ -141102,7 +141119,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18273 + - uid: 18283 components: - rot: -1.5707963267948966 rad pos: 63.5,-33.5 @@ -141110,7 +141127,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18274 + - uid: 18284 components: - rot: -1.5707963267948966 rad pos: 64.5,-33.5 @@ -141118,7 +141135,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18275 + - uid: 18285 components: - rot: -1.5707963267948966 rad pos: 66.5,-33.5 @@ -141126,7 +141143,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18276 + - uid: 18286 components: - rot: -1.5707963267948966 rad pos: 67.5,-33.5 @@ -141134,7 +141151,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18277 + - uid: 18287 components: - rot: -1.5707963267948966 rad pos: 66.5,-34.5 @@ -141142,7 +141159,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18278 + - uid: 18288 components: - rot: -1.5707963267948966 rad pos: 68.5,-34.5 @@ -141150,7 +141167,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18279 + - uid: 18289 components: - rot: -1.5707963267948966 rad pos: 69.5,-34.5 @@ -141158,7 +141175,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18280 + - uid: 18290 components: - rot: -1.5707963267948966 rad pos: 69.5,-33.5 @@ -141166,7 +141183,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18281 + - uid: 18291 components: - rot: -1.5707963267948966 rad pos: 70.5,-33.5 @@ -141174,7 +141191,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18282 + - uid: 18292 components: - rot: -1.5707963267948966 rad pos: 70.5,-34.5 @@ -141182,14 +141199,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18283 + - uid: 18293 components: - pos: 72.5,-32.5 parent: 2 type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 18284 + - uid: 18294 components: - rot: -1.5707963267948966 rad pos: 71.5,-34.5 @@ -141197,7 +141214,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18285 + - uid: 18295 components: - rot: -1.5707963267948966 rad pos: 72.5,-34.5 @@ -141205,70 +141222,70 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18286 + - uid: 18296 components: - pos: 74.5,-35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18287 + - uid: 18297 components: - pos: 74.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18288 + - uid: 18298 components: - pos: 74.5,-37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18289 + - uid: 18299 components: - pos: 74.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18290 + - uid: 18300 components: - pos: 74.5,-39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18291 + - uid: 18301 components: - pos: 74.5,-40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18292 + - uid: 18302 components: - pos: 75.5,-34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18293 + - uid: 18303 components: - pos: 75.5,-35.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18294 + - uid: 18304 components: - pos: 75.5,-36.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18295 + - uid: 18305 components: - rot: 1.5707963267948966 rad pos: 74.5,-37.5 @@ -141276,21 +141293,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18296 + - uid: 18306 components: - pos: 75.5,-38.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18297 + - uid: 18307 components: - pos: 75.5,-39.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18298 + - uid: 18308 components: - rot: 3.141592653589793 rad pos: 72.5,-30.5 @@ -141298,7 +141315,7 @@ entities: type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 18299 + - uid: 18309 components: - rot: 3.141592653589793 rad pos: 75.5,-41.5 @@ -141306,7 +141323,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18300 + - uid: 18310 components: - rot: 3.141592653589793 rad pos: 75.5,-42.5 @@ -141314,7 +141331,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18301 + - uid: 18311 components: - rot: 3.141592653589793 rad pos: 74.5,-42.5 @@ -141322,7 +141339,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18302 + - uid: 18312 components: - rot: 3.141592653589793 rad pos: 74.5,-43.5 @@ -141330,7 +141347,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18303 + - uid: 18313 components: - rot: 3.141592653589793 rad pos: 74.5,-44.5 @@ -141338,7 +141355,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18304 + - uid: 18314 components: - rot: 3.141592653589793 rad pos: 75.5,-43.5 @@ -141346,7 +141363,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18305 + - uid: 18315 components: - rot: 3.141592653589793 rad pos: 75.5,-44.5 @@ -141354,7 +141371,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18306 + - uid: 18316 components: - rot: 3.141592653589793 rad pos: 75.5,-45.5 @@ -141362,7 +141379,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18307 + - uid: 18317 components: - rot: 1.5707963267948966 rad pos: 71.5,-48.5 @@ -141370,7 +141387,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18308 + - uid: 18318 components: - rot: 1.5707963267948966 rad pos: 74.5,-46.5 @@ -141378,7 +141395,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18309 + - uid: 18319 components: - rot: 1.5707963267948966 rad pos: 69.5,-47.5 @@ -141386,7 +141403,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18310 + - uid: 18320 components: - rot: -1.5707963267948966 rad pos: 73.5,-45.5 @@ -141394,7 +141411,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18311 + - uid: 18321 components: - rot: -1.5707963267948966 rad pos: 72.5,-45.5 @@ -141402,21 +141419,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18312 + - uid: 18322 components: - pos: 5.5,-26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18313 + - uid: 18323 components: - pos: 5.5,-27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18314 + - uid: 18324 components: - rot: -1.5707963267948966 rad pos: 4.5,-25.5 @@ -141424,7 +141441,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18315 + - uid: 18325 components: - rot: -1.5707963267948966 rad pos: 62.5,-11.5 @@ -141432,7 +141449,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18316 + - uid: 18326 components: - pos: 66.5,-39.5 parent: 2 @@ -141441,7 +141458,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18317 + - uid: 18327 components: - rot: 1.5707963267948966 rad pos: 73.5,-37.5 @@ -141449,7 +141466,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18318 + - uid: 18328 components: - rot: -1.5707963267948966 rad pos: 70.5,-36.5 @@ -141457,7 +141474,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18319 + - uid: 18329 components: - rot: -1.5707963267948966 rad pos: 68.5,-36.5 @@ -141465,7 +141482,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18320 + - uid: 18330 components: - rot: -1.5707963267948966 rad pos: 69.5,-37.5 @@ -141473,7 +141490,7 @@ entities: type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 18321 + - uid: 18331 components: - rot: -1.5707963267948966 rad pos: 69.5,-36.5 @@ -141483,14 +141500,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18322 + - uid: 18332 components: - pos: 71.5,-32.5 parent: 2 type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 18323 + - uid: 18333 components: - rot: 1.5707963267948966 rad pos: 71.5,-33.5 @@ -141498,7 +141515,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18324 + - uid: 18334 components: - rot: 1.5707963267948966 rad pos: 72.5,-33.5 @@ -141506,12 +141523,12 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18325 + - uid: 18335 components: - pos: -55.5,-62.5 parent: 2 type: Transform - - uid: 18326 + - uid: 18336 components: - rot: -1.5707963267948966 rad pos: 71.5,-38.5 @@ -141519,7 +141536,7 @@ entities: type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 18327 + - uid: 18337 components: - rot: -1.5707963267948966 rad pos: 69.5,-38.5 @@ -141529,7 +141546,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18328 + - uid: 18338 components: - rot: 3.141592653589793 rad pos: 73.5,-31.5 @@ -141537,7 +141554,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18329 + - uid: 18339 components: - rot: 3.141592653589793 rad pos: 73.5,-30.5 @@ -141547,7 +141564,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18330 + - uid: 18340 components: - pos: 5.5,-28.5 parent: 2 @@ -141556,14 +141573,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18331 + - uid: 18341 components: - pos: 5.5,-29.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18332 + - uid: 18342 components: - rot: 1.5707963267948966 rad pos: 60.5,-34.5 @@ -141571,7 +141588,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18333 + - uid: 18343 components: - rot: 3.141592653589793 rad pos: 55.5,-50.5 @@ -141579,31 +141596,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 18334 + - uid: 18344 components: - rot: 3.141592653589793 rad pos: 55.5,-49.5 parent: 2 type: Transform - - uid: 18335 + - uid: 18345 components: - rot: 1.5707963267948966 rad pos: 54.5,-48.5 parent: 2 type: Transform - - uid: 18336 + - uid: 18346 components: - pos: -54.5,-62.5 parent: 2 type: Transform - - uid: 18337 + - uid: 18347 components: - pos: -54.5,-61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 18338 + - uid: 18348 components: - rot: -1.5707963267948966 rad pos: 61.5,-11.5 @@ -141611,7 +141628,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18339 + - uid: 18349 components: - rot: -1.5707963267948966 rad pos: 60.5,-11.5 @@ -141619,7 +141636,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18340 + - uid: 18350 components: - rot: -1.5707963267948966 rad pos: 59.5,-11.5 @@ -141627,7 +141644,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18341 + - uid: 18351 components: - rot: -1.5707963267948966 rad pos: 58.5,-11.5 @@ -141635,7 +141652,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18342 + - uid: 18352 components: - rot: -1.5707963267948966 rad pos: 57.5,-11.5 @@ -141643,7 +141660,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18343 + - uid: 18353 components: - rot: -1.5707963267948966 rad pos: 56.5,-11.5 @@ -141651,7 +141668,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18344 + - uid: 18354 components: - rot: 1.5707963267948966 rad pos: 54.5,-6.5 @@ -141659,7 +141676,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18345 + - uid: 18355 components: - rot: 1.5707963267948966 rad pos: 55.5,-6.5 @@ -141667,7 +141684,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18346 + - uid: 18356 components: - rot: 1.5707963267948966 rad pos: 56.5,-6.5 @@ -141675,7 +141692,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18347 + - uid: 18357 components: - rot: 1.5707963267948966 rad pos: 57.5,-6.5 @@ -141683,7 +141700,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18348 + - uid: 18358 components: - rot: 1.5707963267948966 rad pos: 58.5,-6.5 @@ -141691,7 +141708,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18349 + - uid: 18359 components: - rot: 1.5707963267948966 rad pos: 59.5,-6.5 @@ -141699,7 +141716,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18350 + - uid: 18360 components: - rot: 1.5707963267948966 rad pos: 60.5,-6.5 @@ -141707,7 +141724,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18351 + - uid: 18361 components: - rot: 1.5707963267948966 rad pos: 31.5,-72.5 @@ -141715,7 +141732,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18352 + - uid: 18362 components: - rot: 1.5707963267948966 rad pos: 35.5,-72.5 @@ -141723,7 +141740,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18353 + - uid: 18363 components: - rot: 1.5707963267948966 rad pos: -19.5,25.5 @@ -141731,7 +141748,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18354 + - uid: 18364 components: - rot: 1.5707963267948966 rad pos: -18.5,25.5 @@ -141739,7 +141756,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18355 + - uid: 18365 components: - rot: 1.5707963267948966 rad pos: -17.5,25.5 @@ -141747,7 +141764,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18356 + - uid: 18366 components: - rot: 1.5707963267948966 rad pos: -16.5,25.5 @@ -141755,7 +141772,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18357 + - uid: 18367 components: - rot: 1.5707963267948966 rad pos: -17.5,24.5 @@ -141765,7 +141782,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18358 + - uid: 18368 components: - rot: 1.5707963267948966 rad pos: -16.5,24.5 @@ -141773,7 +141790,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18359 + - uid: 18369 components: - rot: -1.5707963267948966 rad pos: 71.5,-36.5 @@ -141781,7 +141798,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18360 + - uid: 18370 components: - rot: -1.5707963267948966 rad pos: 71.5,-37.5 @@ -141789,14 +141806,14 @@ entities: type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 18361 + - uid: 18371 components: - pos: -5.5,-9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18362 + - uid: 18372 components: - rot: -1.5707963267948966 rad pos: -4.5,-12.5 @@ -141804,7 +141821,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18363 + - uid: 18373 components: - rot: -1.5707963267948966 rad pos: -5.5,-12.5 @@ -141812,7 +141829,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18364 + - uid: 18374 components: - rot: -1.5707963267948966 rad pos: -6.5,-12.5 @@ -141820,7 +141837,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18365 + - uid: 18375 components: - rot: -1.5707963267948966 rad pos: -7.5,-12.5 @@ -141828,7 +141845,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18366 + - uid: 18376 components: - rot: -1.5707963267948966 rad pos: -6.5,-14.5 @@ -141838,7 +141855,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18367 + - uid: 18377 components: - rot: -1.5707963267948966 rad pos: -7.5,-14.5 @@ -141846,7 +141863,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18368 + - uid: 18378 components: - rot: 3.141592653589793 rad pos: -11.5,-23.5 @@ -141854,7 +141871,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18369 + - uid: 18379 components: - rot: 3.141592653589793 rad pos: -11.5,-21.5 @@ -141862,7 +141879,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18370 + - uid: 18380 components: - rot: 3.141592653589793 rad pos: -11.5,-20.5 @@ -141872,7 +141889,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18371 + - uid: 18381 components: - rot: 3.141592653589793 rad pos: -11.5,-19.5 @@ -141880,7 +141897,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18372 + - uid: 18382 components: - rot: 3.141592653589793 rad pos: -10.5,-19.5 @@ -141888,7 +141905,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18373 + - uid: 18383 components: - rot: 3.141592653589793 rad pos: -10.5,-20.5 @@ -141898,7 +141915,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18374 + - uid: 18384 components: - rot: -1.5707963267948966 rad pos: -9.5,-21.5 @@ -141906,7 +141923,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18375 + - uid: 18385 components: - pos: -25.5,-58.5 parent: 2 @@ -141915,7 +141932,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18376 + - uid: 18386 components: - rot: 3.141592653589793 rad pos: -28.5,-72.5 @@ -141925,7 +141942,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18377 + - uid: 18387 components: - rot: 3.141592653589793 rad pos: -28.5,-73.5 @@ -141933,7 +141950,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18378 + - uid: 18388 components: - rot: 3.141592653589793 rad pos: -30.5,-72.5 @@ -141943,7 +141960,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18379 + - uid: 18389 components: - rot: 3.141592653589793 rad pos: -30.5,-73.5 @@ -141951,7 +141968,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18380 + - uid: 18390 components: - rot: 1.5707963267948966 rad pos: 34.5,-72.5 @@ -141959,7 +141976,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18381 + - uid: 18391 components: - rot: 1.5707963267948966 rad pos: 33.5,-72.5 @@ -141967,7 +141984,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18382 + - uid: 18392 components: - rot: -1.5707963267948966 rad pos: -45.5,-35.5 @@ -141975,7 +141992,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 18383 + - uid: 18393 components: - rot: -1.5707963267948966 rad pos: -46.5,-35.5 @@ -141983,7 +142000,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 18384 + - uid: 18394 components: - rot: -1.5707963267948966 rad pos: -47.5,-35.5 @@ -141991,7 +142008,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 18385 + - uid: 18395 components: - rot: 3.141592653589793 rad pos: 30.5,-80.5 @@ -141999,7 +142016,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18386 + - uid: 18396 components: - rot: 3.141592653589793 rad pos: 47.5,-76.5 @@ -142007,7 +142024,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18387 + - uid: 18397 components: - rot: 3.141592653589793 rad pos: 47.5,-77.5 @@ -142015,7 +142032,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18388 + - uid: 18398 components: - rot: 3.141592653589793 rad pos: 47.5,-78.5 @@ -142023,7 +142040,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18389 + - uid: 18399 components: - rot: 3.141592653589793 rad pos: 29.5,-82.5 @@ -142031,7 +142048,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18390 + - uid: 18400 components: - rot: 1.5707963267948966 rad pos: 47.5,-73.5 @@ -142039,7 +142056,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18391 + - uid: 18401 components: - rot: 3.141592653589793 rad pos: 48.5,-80.5 @@ -142047,7 +142064,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18392 + - uid: 18402 components: - rot: 1.5707963267948966 rad pos: 43.5,-72.5 @@ -142055,7 +142072,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18393 + - uid: 18403 components: - rot: 3.141592653589793 rad pos: 29.5,-75.5 @@ -142063,7 +142080,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18394 + - uid: 18404 components: - rot: 1.5707963267948966 rad pos: 29.5,-72.5 @@ -142071,7 +142088,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18395 + - uid: 18405 components: - rot: 1.5707963267948966 rad pos: 28.5,-72.5 @@ -142079,7 +142096,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18396 + - uid: 18406 components: - rot: 1.5707963267948966 rad pos: 27.5,-72.5 @@ -142087,7 +142104,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18397 + - uid: 18407 components: - rot: 1.5707963267948966 rad pos: 26.5,-72.5 @@ -142095,7 +142112,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18398 + - uid: 18408 components: - rot: 1.5707963267948966 rad pos: 39.5,-73.5 @@ -142103,7 +142120,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18399 + - uid: 18409 components: - rot: 1.5707963267948966 rad pos: 38.5,-73.5 @@ -142111,7 +142128,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18400 + - uid: 18410 components: - rot: 1.5707963267948966 rad pos: 37.5,-73.5 @@ -142119,7 +142136,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18401 + - uid: 18411 components: - rot: 1.5707963267948966 rad pos: 36.5,-73.5 @@ -142127,7 +142144,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18402 + - uid: 18412 components: - rot: 1.5707963267948966 rad pos: 35.5,-73.5 @@ -142135,7 +142152,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18403 + - uid: 18413 components: - rot: 1.5707963267948966 rad pos: 34.5,-73.5 @@ -142143,7 +142160,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18404 + - uid: 18414 components: - rot: 1.5707963267948966 rad pos: 33.5,-73.5 @@ -142151,7 +142168,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18405 + - uid: 18415 components: - rot: 1.5707963267948966 rad pos: 31.5,-73.5 @@ -142159,7 +142176,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18406 + - uid: 18416 components: - rot: 1.5707963267948966 rad pos: 30.5,-73.5 @@ -142167,7 +142184,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18407 + - uid: 18417 components: - rot: 3.141592653589793 rad pos: 29.5,-74.5 @@ -142175,7 +142192,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18408 + - uid: 18418 components: - rot: 1.5707963267948966 rad pos: 28.5,-73.5 @@ -142183,7 +142200,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18409 + - uid: 18419 components: - rot: 1.5707963267948966 rad pos: 27.5,-73.5 @@ -142191,7 +142208,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18410 + - uid: 18420 components: - rot: 1.5707963267948966 rad pos: 26.5,-73.5 @@ -142199,7 +142216,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18411 + - uid: 18421 components: - rot: -1.5707963267948966 rad pos: 25.5,-73.5 @@ -142207,7 +142224,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18412 + - uid: 18422 components: - rot: 1.5707963267948966 rad pos: 26.5,-82.5 @@ -142215,7 +142232,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18413 + - uid: 18423 components: - rot: 3.141592653589793 rad pos: 29.5,-76.5 @@ -142223,7 +142240,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18414 + - uid: 18424 components: - rot: 3.141592653589793 rad pos: 29.5,-77.5 @@ -142231,7 +142248,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18415 + - uid: 18425 components: - rot: 1.5707963267948966 rad pos: 27.5,-82.5 @@ -142239,7 +142256,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18416 + - uid: 18426 components: - rot: 1.5707963267948966 rad pos: 28.5,-82.5 @@ -142247,7 +142264,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18417 + - uid: 18427 components: - rot: 1.5707963267948966 rad pos: 24.5,-83.5 @@ -142255,7 +142272,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18418 + - uid: 18428 components: - rot: 1.5707963267948966 rad pos: 25.5,-83.5 @@ -142263,7 +142280,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18419 + - uid: 18429 components: - rot: 1.5707963267948966 rad pos: 26.5,-83.5 @@ -142271,7 +142288,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18420 + - uid: 18430 components: - rot: 1.5707963267948966 rad pos: 27.5,-83.5 @@ -142279,7 +142296,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18421 + - uid: 18431 components: - rot: 1.5707963267948966 rad pos: 28.5,-83.5 @@ -142287,7 +142304,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18422 + - uid: 18432 components: - rot: -1.5707963267948966 rad pos: 23.5,-82.5 @@ -142297,7 +142314,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18423 + - uid: 18433 components: - rot: -1.5707963267948966 rad pos: 22.5,-82.5 @@ -142307,7 +142324,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18424 + - uid: 18434 components: - rot: -1.5707963267948966 rad pos: 21.5,-82.5 @@ -142317,7 +142334,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18425 + - uid: 18435 components: - rot: -1.5707963267948966 rad pos: 20.5,-82.5 @@ -142327,7 +142344,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18426 + - uid: 18436 components: - rot: -1.5707963267948966 rad pos: 19.5,-82.5 @@ -142335,7 +142352,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18427 + - uid: 18437 components: - rot: -1.5707963267948966 rad pos: 23.5,-83.5 @@ -142343,7 +142360,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18428 + - uid: 18438 components: - rot: -1.5707963267948966 rad pos: 22.5,-83.5 @@ -142351,7 +142368,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18429 + - uid: 18439 components: - rot: -1.5707963267948966 rad pos: 21.5,-83.5 @@ -142359,7 +142376,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18430 + - uid: 18440 components: - rot: -1.5707963267948966 rad pos: 20.5,-83.5 @@ -142367,7 +142384,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18431 + - uid: 18441 components: - rot: -1.5707963267948966 rad pos: 29.5,-82.5 @@ -142375,7 +142392,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18432 + - uid: 18442 components: - rot: 1.5707963267948966 rad pos: 25.5,-82.5 @@ -142383,7 +142400,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18433 + - uid: 18443 components: - rot: 1.5707963267948966 rad pos: 24.5,-82.5 @@ -142391,7 +142408,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18434 + - uid: 18444 components: - rot: 3.141592653589793 rad pos: 30.5,-74.5 @@ -142399,7 +142416,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18435 + - uid: 18445 components: - rot: 3.141592653589793 rad pos: 30.5,-78.5 @@ -142407,7 +142424,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18436 + - uid: 18446 components: - rot: 3.141592653589793 rad pos: 30.5,-77.5 @@ -142415,7 +142432,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18437 + - uid: 18447 components: - rot: 3.141592653589793 rad pos: 30.5,-75.5 @@ -142423,7 +142440,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18438 + - uid: 18448 components: - rot: 3.141592653589793 rad pos: 30.5,-76.5 @@ -142431,7 +142448,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18439 + - uid: 18449 components: - rot: 3.141592653589793 rad pos: 30.5,-79.5 @@ -142439,7 +142456,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18440 + - uid: 18450 components: - rot: 1.5707963267948966 rad pos: 41.5,-73.5 @@ -142447,7 +142464,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18441 + - uid: 18451 components: - rot: 3.141592653589793 rad pos: 48.5,-74.5 @@ -142455,7 +142472,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18442 + - uid: 18452 components: - rot: 3.141592653589793 rad pos: 48.5,-76.5 @@ -142463,7 +142480,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18443 + - uid: 18453 components: - rot: 3.141592653589793 rad pos: 48.5,-83.5 @@ -142471,7 +142488,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18444 + - uid: 18454 components: - rot: 3.141592653589793 rad pos: 48.5,-84.5 @@ -142479,7 +142496,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18445 + - uid: 18455 components: - rot: 3.141592653589793 rad pos: 48.5,-77.5 @@ -142487,7 +142504,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18446 + - uid: 18456 components: - rot: 3.141592653589793 rad pos: 48.5,-78.5 @@ -142495,7 +142512,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18447 + - uid: 18457 components: - rot: 3.141592653589793 rad pos: 48.5,-81.5 @@ -142503,7 +142520,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18448 + - uid: 18458 components: - rot: 3.141592653589793 rad pos: 48.5,-82.5 @@ -142511,7 +142528,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18449 + - uid: 18459 components: - rot: 1.5707963267948966 rad pos: 44.5,-72.5 @@ -142519,7 +142536,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18450 + - uid: 18460 components: - rot: 1.5707963267948966 rad pos: 42.5,-72.5 @@ -142527,7 +142544,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18451 + - uid: 18461 components: - rot: 3.141592653589793 rad pos: 47.5,-84.5 @@ -142535,7 +142552,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18452 + - uid: 18462 components: - rot: 3.141592653589793 rad pos: 47.5,-74.5 @@ -142543,7 +142560,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18453 + - uid: 18463 components: - rot: 3.141592653589793 rad pos: 47.5,-75.5 @@ -142551,7 +142568,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18454 + - uid: 18464 components: - rot: 1.5707963267948966 rad pos: 45.5,-73.5 @@ -142559,7 +142576,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18455 + - uid: 18465 components: - rot: 1.5707963267948966 rad pos: 46.5,-73.5 @@ -142567,7 +142584,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18456 + - uid: 18466 components: - rot: 3.141592653589793 rad pos: 47.5,-85.5 @@ -142575,7 +142592,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18457 + - uid: 18467 components: - rot: 3.141592653589793 rad pos: 47.5,-81.5 @@ -142583,7 +142600,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18458 + - uid: 18468 components: - rot: 3.141592653589793 rad pos: 47.5,-82.5 @@ -142591,7 +142608,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18459 + - uid: 18469 components: - rot: 3.141592653589793 rad pos: 47.5,-83.5 @@ -142599,7 +142616,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18460 + - uid: 18470 components: - rot: 1.5707963267948966 rad pos: -21.5,66.5 @@ -142607,7 +142624,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18461 + - uid: 18471 components: - rot: 1.5707963267948966 rad pos: -20.5,66.5 @@ -142615,7 +142632,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18462 + - uid: 18472 components: - rot: 1.5707963267948966 rad pos: -19.5,66.5 @@ -142623,7 +142640,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18463 + - uid: 18473 components: - rot: 1.5707963267948966 rad pos: -15.5,66.5 @@ -142631,7 +142648,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18464 + - uid: 18474 components: - rot: 1.5707963267948966 rad pos: -14.5,66.5 @@ -142639,7 +142656,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18465 + - uid: 18475 components: - rot: -1.5707963267948966 rad pos: 32.5,-72.5 @@ -142647,7 +142664,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18466 + - uid: 18476 components: - rot: -1.5707963267948966 rad pos: 32.5,-73.5 @@ -142655,7 +142672,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18467 + - uid: 18477 components: - rot: -1.5707963267948966 rad pos: 14.5,-22.5 @@ -142663,7 +142680,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18468 + - uid: 18478 components: - rot: -1.5707963267948966 rad pos: 13.5,-22.5 @@ -142673,7 +142690,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18469 + - uid: 18479 components: - rot: -1.5707963267948966 rad pos: 12.5,-22.5 @@ -142681,7 +142698,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18470 + - uid: 18480 components: - rot: -1.5707963267948966 rad pos: 11.5,-22.5 @@ -142689,7 +142706,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18471 + - uid: 18481 components: - rot: -1.5707963267948966 rad pos: 10.5,-22.5 @@ -142697,7 +142714,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18472 + - uid: 18482 components: - rot: -1.5707963267948966 rad pos: 9.5,-22.5 @@ -142705,7 +142722,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18473 + - uid: 18483 components: - rot: -1.5707963267948966 rad pos: 8.5,-22.5 @@ -142713,28 +142730,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18474 + - uid: 18484 components: - pos: 12.5,-25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18475 + - uid: 18485 components: - pos: 12.5,-26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18476 + - uid: 18486 components: - pos: 12.5,-23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18477 + - uid: 18487 components: - pos: 12.5,-24.5 parent: 2 @@ -142743,7 +142760,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18478 + - uid: 18488 components: - rot: 3.141592653589793 rad pos: 40.5,9.5 @@ -142751,7 +142768,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18479 + - uid: 18489 components: - rot: 3.141592653589793 rad pos: 40.5,8.5 @@ -142759,7 +142776,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18480 + - uid: 18490 components: - rot: 1.5707963267948966 rad pos: 43.5,6.5 @@ -142767,7 +142784,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18481 + - uid: 18491 components: - rot: 1.5707963267948966 rad pos: 44.5,6.5 @@ -142775,7 +142792,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18482 + - uid: 18492 components: - rot: 1.5707963267948966 rad pos: 41.5,5.5 @@ -142783,7 +142800,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18483 + - uid: 18493 components: - rot: 1.5707963267948966 rad pos: 42.5,5.5 @@ -142791,7 +142808,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18484 + - uid: 18494 components: - rot: 1.5707963267948966 rad pos: 43.5,5.5 @@ -142801,7 +142818,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18485 + - uid: 18495 components: - rot: 1.5707963267948966 rad pos: 44.5,5.5 @@ -142809,7 +142826,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18486 + - uid: 18496 components: - rot: 1.5707963267948966 rad pos: -46.5,31.5 @@ -142819,7 +142836,7 @@ entities: type: AtmosPipeColor - nextSound: 1371.0817623 type: EmitSoundOnCollide - - uid: 18487 + - uid: 18497 components: - pos: -47.5,33.5 parent: 2 @@ -142828,7 +142845,7 @@ entities: type: AtmosPipeColor - nextSound: 1381.6419038 type: EmitSoundOnCollide - - uid: 18488 + - uid: 18498 components: - pos: -47.5,32.5 parent: 2 @@ -142837,7 +142854,7 @@ entities: type: AtmosPipeColor - nextSound: 1381.9820415 type: EmitSoundOnCollide - - uid: 18489 + - uid: 18499 components: - pos: -45.5,34.5 parent: 2 @@ -142846,7 +142863,7 @@ entities: type: AtmosPipeColor - nextSound: 1386.795262 type: EmitSoundOnCollide - - uid: 18490 + - uid: 18500 components: - pos: -45.5,35.5 parent: 2 @@ -142855,7 +142872,7 @@ entities: type: AtmosPipeColor - nextSound: 1386.795262 type: EmitSoundOnCollide - - uid: 18491 + - uid: 18501 components: - pos: -45.5,36.5 parent: 2 @@ -142864,7 +142881,7 @@ entities: type: AtmosPipeColor - nextSound: 1386.795262 type: EmitSoundOnCollide - - uid: 18492 + - uid: 18502 components: - pos: -45.5,37.5 parent: 2 @@ -142873,7 +142890,7 @@ entities: type: AtmosPipeColor - nextSound: 1386.795262 type: EmitSoundOnCollide - - uid: 18493 + - uid: 18503 components: - pos: -45.5,38.5 parent: 2 @@ -142882,7 +142899,7 @@ entities: type: AtmosPipeColor - nextSound: 1386.795262 type: EmitSoundOnCollide - - uid: 18494 + - uid: 18504 components: - pos: -45.5,39.5 parent: 2 @@ -142891,7 +142908,7 @@ entities: type: AtmosPipeColor - nextSound: 1386.795262 type: EmitSoundOnCollide - - uid: 18495 + - uid: 18505 components: - pos: -45.5,40.5 parent: 2 @@ -142900,7 +142917,7 @@ entities: type: AtmosPipeColor - nextSound: 1386.795262 type: EmitSoundOnCollide - - uid: 18496 + - uid: 18506 components: - pos: -45.5,41.5 parent: 2 @@ -142909,7 +142926,7 @@ entities: type: AtmosPipeColor - nextSound: 1386.795262 type: EmitSoundOnCollide - - uid: 18497 + - uid: 18507 components: - pos: -45.5,42.5 parent: 2 @@ -142918,7 +142935,7 @@ entities: type: AtmosPipeColor - nextSound: 1386.795262 type: EmitSoundOnCollide - - uid: 18498 + - uid: 18508 components: - pos: -46.5,35.5 parent: 2 @@ -142927,7 +142944,7 @@ entities: type: AtmosPipeColor - nextSound: 1389.6882786 type: EmitSoundOnCollide - - uid: 18499 + - uid: 18509 components: - pos: -46.5,36.5 parent: 2 @@ -142936,7 +142953,7 @@ entities: type: AtmosPipeColor - nextSound: 1389.6882786 type: EmitSoundOnCollide - - uid: 18500 + - uid: 18510 components: - pos: -46.5,37.5 parent: 2 @@ -142945,7 +142962,7 @@ entities: type: AtmosPipeColor - nextSound: 1389.6882786 type: EmitSoundOnCollide - - uid: 18501 + - uid: 18511 components: - pos: -46.5,38.5 parent: 2 @@ -142954,7 +142971,7 @@ entities: type: AtmosPipeColor - nextSound: 1389.6882786 type: EmitSoundOnCollide - - uid: 18502 + - uid: 18512 components: - pos: -46.5,39.5 parent: 2 @@ -142963,7 +142980,7 @@ entities: type: AtmosPipeColor - nextSound: 1389.6882786 type: EmitSoundOnCollide - - uid: 18503 + - uid: 18513 components: - pos: -46.5,40.5 parent: 2 @@ -142972,7 +142989,7 @@ entities: type: AtmosPipeColor - nextSound: 1389.6882786 type: EmitSoundOnCollide - - uid: 18504 + - uid: 18514 components: - pos: -46.5,41.5 parent: 2 @@ -142981,7 +142998,7 @@ entities: type: AtmosPipeColor - nextSound: 1389.6882786 type: EmitSoundOnCollide - - uid: 18505 + - uid: 18515 components: - pos: -46.5,42.5 parent: 2 @@ -142990,7 +143007,7 @@ entities: type: AtmosPipeColor - nextSound: 1389.6882786 type: EmitSoundOnCollide - - uid: 30657 + - uid: 18516 components: - pos: 68.5,-32.5 parent: 2 @@ -142999,7 +143016,7 @@ entities: type: AtmosPipeColor - nextSound: 699.6173808 type: EmitSoundOnCollide - - uid: 30659 + - uid: 18517 components: - rot: 1.5707963267948966 rad pos: 64.5,-31.5 @@ -143009,7 +143026,7 @@ entities: type: AtmosPipeColor - nextSound: 722.839309 type: EmitSoundOnCollide - - uid: 30660 + - uid: 18518 components: - rot: 1.5707963267948966 rad pos: 65.5,-31.5 @@ -143021,7 +143038,7 @@ entities: type: AmbientSound - nextSound: 724.9120804 type: EmitSoundOnCollide - - uid: 30661 + - uid: 18519 components: - rot: 1.5707963267948966 rad pos: 66.5,-31.5 @@ -143035,7 +143052,7 @@ entities: type: EmitSoundOnCollide - proto: GasPipeTJunction entities: - - uid: 16676 + - uid: 18520 components: - rot: 1.5707963267948966 rad pos: 63.5,-31.5 @@ -143045,7 +143062,7 @@ entities: type: AtmosPipeColor - nextSound: 719.6508269 type: EmitSoundOnCollide - - uid: 18506 + - uid: 18521 components: - rot: 1.5707963267948966 rad pos: 40.5,5.5 @@ -143053,21 +143070,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18507 + - uid: 18522 components: - pos: 28.5,-29.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18508 + - uid: 18523 components: - pos: -8.5,-53.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18509 + - uid: 18524 components: - rot: -1.5707963267948966 rad pos: 2.5,-4.5 @@ -143075,14 +143092,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18510 + - uid: 18525 components: - pos: -12.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18511 + - uid: 18526 components: - rot: -1.5707963267948966 rad pos: 26.5,-7.5 @@ -143090,7 +143107,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18512 + - uid: 18527 components: - rot: 1.5707963267948966 rad pos: 8.5,10.5 @@ -143098,7 +143115,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18513 + - uid: 18528 components: - rot: 1.5707963267948966 rad pos: 8.5,0.5 @@ -143106,7 +143123,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18514 + - uid: 18529 components: - rot: -1.5707963267948966 rad pos: -11.5,-38.5 @@ -143114,7 +143131,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18515 + - uid: 18530 components: - rot: -1.5707963267948966 rad pos: 7.5,14.5 @@ -143122,7 +143139,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18516 + - uid: 18531 components: - rot: -1.5707963267948966 rad pos: 4.5,-4.5 @@ -143130,7 +143147,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18517 + - uid: 18532 components: - rot: 3.141592653589793 rad pos: 22.5,21.5 @@ -143138,7 +143155,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18518 + - uid: 18533 components: - rot: 3.141592653589793 rad pos: 2.5,-60.5 @@ -143146,21 +143163,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18519 + - uid: 18534 components: - pos: -5.5,-60.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18520 + - uid: 18535 components: - pos: -8.5,-61.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18521 + - uid: 18536 components: - rot: 1.5707963267948966 rad pos: -8.5,-64.5 @@ -143168,7 +143185,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18522 + - uid: 18537 components: - rot: 3.141592653589793 rad pos: -24.5,-80.5 @@ -143176,7 +143193,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18523 + - uid: 18538 components: - rot: -1.5707963267948966 rad pos: 20.5,13.5 @@ -143184,7 +143201,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18524 + - uid: 18539 components: - rot: 3.141592653589793 rad pos: 31.5,-43.5 @@ -143192,7 +143209,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18525 + - uid: 18540 components: - rot: 3.141592653589793 rad pos: 17.5,-43.5 @@ -143200,7 +143217,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18526 + - uid: 18541 components: - rot: 1.5707963267948966 rad pos: 35.5,8.5 @@ -143210,7 +143227,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18527 + - uid: 18542 components: - rot: -1.5707963267948966 rad pos: 26.5,10.5 @@ -143218,14 +143235,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18528 + - uid: 18543 components: - pos: 7.5,-25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18529 + - uid: 18544 components: - rot: -1.5707963267948966 rad pos: 0.5,13.5 @@ -143233,14 +143250,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18530 + - uid: 18545 components: - pos: -24.5,-57.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18531 + - uid: 18546 components: - rot: -1.5707963267948966 rad pos: 2.5,-1.5 @@ -143248,7 +143265,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18532 + - uid: 18547 components: - rot: 1.5707963267948966 rad pos: 2.5,0.5 @@ -143256,7 +143273,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18533 + - uid: 18548 components: - rot: 1.5707963267948966 rad pos: -20.5,-33.5 @@ -143264,7 +143281,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18534 + - uid: 18549 components: - rot: 1.5707963267948966 rad pos: 15.5,-29.5 @@ -143272,7 +143289,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18535 + - uid: 18550 components: - rot: 3.141592653589793 rad pos: -11.5,-41.5 @@ -143280,7 +143297,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18536 + - uid: 18551 components: - rot: -1.5707963267948966 rad pos: -14.5,-43.5 @@ -143288,7 +143305,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18537 + - uid: 18552 components: - rot: 3.141592653589793 rad pos: -17.5,-60.5 @@ -143296,7 +143313,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18538 + - uid: 18553 components: - rot: 3.141592653589793 rad pos: -9.5,-42.5 @@ -143304,21 +143321,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18539 + - uid: 18554 components: - pos: -0.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18540 + - uid: 18555 components: - pos: -8.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18541 + - uid: 18556 components: - rot: -1.5707963267948966 rad pos: -7.5,-60.5 @@ -143326,7 +143343,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18542 + - uid: 18557 components: - rot: -1.5707963267948966 rad pos: -3.5,-59.5 @@ -143334,7 +143351,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18543 + - uid: 18558 components: - rot: 1.5707963267948966 rad pos: 35.5,5.5 @@ -143344,7 +143361,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18544 + - uid: 18559 components: - rot: 3.141592653589793 rad pos: 28.5,9.5 @@ -143354,7 +143371,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18545 + - uid: 18560 components: - rot: -1.5707963267948966 rad pos: 17.5,-0.5 @@ -143362,14 +143379,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18546 + - uid: 18561 components: - pos: 41.5,14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18547 + - uid: 18562 components: - rot: 3.141592653589793 rad pos: 33.5,1.5 @@ -143377,7 +143394,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18548 + - uid: 18563 components: - rot: 1.5707963267948966 rad pos: 23.5,17.5 @@ -143385,7 +143402,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18549 + - uid: 18564 components: - rot: 1.5707963267948966 rad pos: 7.5,16.5 @@ -143393,14 +143410,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18550 + - uid: 18565 components: - pos: 44.5,-27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18551 + - uid: 18566 components: - rot: 3.141592653589793 rad pos: -3.5,-42.5 @@ -143408,7 +143425,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18552 + - uid: 18567 components: - rot: 3.141592653589793 rad pos: 12.5,-27.5 @@ -143416,14 +143433,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18553 + - uid: 18568 components: - pos: -7.5,-25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18554 + - uid: 18569 components: - rot: 3.141592653589793 rad pos: 33.5,-16.5 @@ -143431,7 +143448,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18555 + - uid: 18570 components: - rot: 1.5707963267948966 rad pos: -18.5,-25.5 @@ -143439,7 +143456,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18556 + - uid: 18571 components: - rot: 3.141592653589793 rad pos: -8.5,1.5 @@ -143447,7 +143464,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18557 + - uid: 18572 components: - rot: 3.141592653589793 rad pos: 17.5,13.5 @@ -143455,14 +143472,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18558 + - uid: 18573 components: - pos: 28.5,12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18559 + - uid: 18574 components: - rot: -1.5707963267948966 rad pos: 38.5,8.5 @@ -143470,7 +143487,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18560 + - uid: 18575 components: - rot: -1.5707963267948966 rad pos: 38.5,5.5 @@ -143478,7 +143495,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18561 + - uid: 18576 components: - rot: -1.5707963267948966 rad pos: 38.5,11.5 @@ -143486,14 +143503,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18562 + - uid: 18577 components: - pos: 34.5,12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18563 + - uid: 18578 components: - rot: 3.141592653589793 rad pos: -8.5,-27.5 @@ -143501,7 +143518,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18564 + - uid: 18579 components: - rot: -1.5707963267948966 rad pos: -8.5,2.5 @@ -143509,7 +143526,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18565 + - uid: 18580 components: - rot: 3.141592653589793 rad pos: 2.5,-27.5 @@ -143517,7 +143534,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18566 + - uid: 18581 components: - rot: 3.141592653589793 rad pos: 12.5,16.5 @@ -143525,7 +143542,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18567 + - uid: 18582 components: - rot: 3.141592653589793 rad pos: -5.5,-41.5 @@ -143533,14 +143550,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18568 + - uid: 18583 components: - pos: 3.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18569 + - uid: 18584 components: - rot: 3.141592653589793 rad pos: 8.5,-0.5 @@ -143548,7 +143565,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18570 + - uid: 18585 components: - rot: 3.141592653589793 rad pos: 16.5,16.5 @@ -143556,7 +143573,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18571 + - uid: 18586 components: - rot: 3.141592653589793 rad pos: 25.5,7.5 @@ -143564,7 +143581,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18572 + - uid: 18587 components: - rot: 3.141592653589793 rad pos: 28.5,17.5 @@ -143572,7 +143589,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18573 + - uid: 18588 components: - rot: 1.5707963267948966 rad pos: 20.5,10.5 @@ -143580,14 +143597,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18574 + - uid: 18589 components: - pos: 4.5,17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18575 + - uid: 18590 components: - rot: -1.5707963267948966 rad pos: 9.5,1.5 @@ -143595,7 +143612,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18576 + - uid: 18591 components: - rot: 1.5707963267948966 rad pos: 19.5,18.5 @@ -143605,7 +143622,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18577 + - uid: 18592 components: - rot: -1.5707963267948966 rad pos: 30.5,18.5 @@ -143613,14 +143630,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18578 + - uid: 18593 components: - pos: 21.5,-5.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18579 + - uid: 18594 components: - rot: -1.5707963267948966 rad pos: 26.5,-12.5 @@ -143628,7 +143645,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18580 + - uid: 18595 components: - rot: 1.5707963267948966 rad pos: 26.5,-24.5 @@ -143636,7 +143653,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18581 + - uid: 18596 components: - rot: -1.5707963267948966 rad pos: 21.5,-17.5 @@ -143644,14 +143661,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18582 + - uid: 18597 components: - pos: 20.5,-17.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18583 + - uid: 18598 components: - rot: 3.141592653589793 rad pos: 23.5,-29.5 @@ -143659,7 +143676,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18584 + - uid: 18599 components: - rot: 1.5707963267948966 rad pos: -8.5,-22.5 @@ -143667,21 +143684,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18585 + - uid: 18600 components: - pos: -10.5,1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18586 + - uid: 18601 components: - pos: -2.5,-61.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18587 + - uid: 18602 components: - rot: 3.141592653589793 rad pos: -9.5,-61.5 @@ -143689,21 +143706,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18588 + - uid: 18603 components: - pos: -15.5,-61.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18589 + - uid: 18604 components: - pos: -0.5,-60.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18590 + - uid: 18605 components: - rot: 3.141592653589793 rad pos: -1.5,-60.5 @@ -143711,14 +143728,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18591 + - uid: 18606 components: - pos: -12.5,-60.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18592 + - uid: 18607 components: - rot: 3.141592653589793 rad pos: 3.5,-61.5 @@ -143726,14 +143743,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18593 + - uid: 18608 components: - pos: 5.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18594 + - uid: 18609 components: - rot: 1.5707963267948966 rad pos: -8.5,-46.5 @@ -143741,14 +143758,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18595 + - uid: 18610 components: - pos: 5.5,-25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18596 + - uid: 18611 components: - rot: 3.141592653589793 rad pos: -11.5,-27.5 @@ -143756,21 +143773,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18597 + - uid: 18612 components: - pos: 24.5,-43.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18598 + - uid: 18613 components: - pos: 20.5,-43.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18599 + - uid: 18614 components: - rot: 3.141592653589793 rad pos: 31.5,9.5 @@ -143780,7 +143797,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18600 + - uid: 18615 components: - rot: -1.5707963267948966 rad pos: -23.5,-78.5 @@ -143788,7 +143805,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18601 + - uid: 18616 components: - rot: -1.5707963267948966 rad pos: -23.5,-80.5 @@ -143796,7 +143813,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18602 + - uid: 18617 components: - rot: 3.141592653589793 rad pos: 34.5,9.5 @@ -143806,7 +143823,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18603 + - uid: 18618 components: - rot: -1.5707963267948966 rad pos: 2.5,-10.5 @@ -143814,7 +143831,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18604 + - uid: 18619 components: - rot: -1.5707963267948966 rad pos: 1.5,6.5 @@ -143822,7 +143839,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18605 + - uid: 18620 components: - rot: 1.5707963267948966 rad pos: 2.5,1.5 @@ -143830,14 +143847,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18606 + - uid: 18621 components: - pos: 10.5,-0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18607 + - uid: 18622 components: - rot: 1.5707963267948966 rad pos: -9.5,-39.5 @@ -143845,21 +143862,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18608 + - uid: 18623 components: - pos: 15.5,17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18609 + - uid: 18624 components: - pos: 0.5,17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18610 + - uid: 18625 components: - rot: 3.141592653589793 rad pos: -7.5,8.5 @@ -143867,7 +143884,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18611 + - uid: 18626 components: - rot: -1.5707963267948966 rad pos: -20.5,-84.5 @@ -143875,7 +143892,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18612 + - uid: 18627 components: - rot: 3.141592653589793 rad pos: 15.5,-43.5 @@ -143883,7 +143900,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18613 + - uid: 18628 components: - rot: 1.5707963267948966 rad pos: 14.5,-32.5 @@ -143891,7 +143908,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18614 + - uid: 18629 components: - rot: 3.141592653589793 rad pos: 21.5,-30.5 @@ -143899,7 +143916,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18615 + - uid: 18630 components: - rot: 1.5707963267948966 rad pos: 15.5,-23.5 @@ -143907,7 +143924,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18616 + - uid: 18631 components: - rot: 1.5707963267948966 rad pos: 14.5,-30.5 @@ -143915,14 +143932,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18617 + - uid: 18632 components: - pos: 22.5,-30.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18618 + - uid: 18633 components: - rot: 3.141592653589793 rad pos: -8.5,-25.5 @@ -143930,7 +143947,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18619 + - uid: 18634 components: - rot: -1.5707963267948966 rad pos: 15.5,-25.5 @@ -143938,7 +143955,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18620 + - uid: 18635 components: - rot: -1.5707963267948966 rad pos: 15.5,-22.5 @@ -143946,7 +143963,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18621 + - uid: 18636 components: - rot: -1.5707963267948966 rad pos: -0.5,-46.5 @@ -143954,14 +143971,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18622 + - uid: 18637 components: - pos: 0.5,11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18623 + - uid: 18638 components: - rot: -1.5707963267948966 rad pos: -3.5,-11.5 @@ -143969,7 +143986,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18624 + - uid: 18639 components: - rot: 1.5707963267948966 rad pos: -5.5,-10.5 @@ -143977,7 +143994,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18625 + - uid: 18640 components: - rot: -1.5707963267948966 rad pos: 36.5,-31.5 @@ -143985,14 +144002,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18626 + - uid: 18641 components: - pos: -5.5,7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18627 + - uid: 18642 components: - rot: 1.5707963267948966 rad pos: -4.5,13.5 @@ -144002,7 +144019,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18628 + - uid: 18643 components: - rot: 3.141592653589793 rad pos: -0.5,-14.5 @@ -144010,7 +144027,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18629 + - uid: 18644 components: - rot: -1.5707963267948966 rad pos: -3.5,-12.5 @@ -144018,14 +144035,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18630 + - uid: 18645 components: - pos: -20.5,-88.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18631 + - uid: 18646 components: - rot: -1.5707963267948966 rad pos: 10.5,3.5 @@ -144033,7 +144050,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18632 + - uid: 18647 components: - rot: 1.5707963267948966 rad pos: -11.5,-22.5 @@ -144041,7 +144058,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18633 + - uid: 18648 components: - rot: 3.141592653589793 rad pos: 44.5,-24.5 @@ -144049,7 +144066,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18634 + - uid: 18649 components: - rot: 1.5707963267948966 rad pos: 34.5,3.5 @@ -144057,7 +144074,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18635 + - uid: 18650 components: - rot: 3.141592653589793 rad pos: -19.5,-61.5 @@ -144065,14 +144082,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18636 + - uid: 18651 components: - pos: -5.5,1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18637 + - uid: 18652 components: - rot: 3.141592653589793 rad pos: -8.5,-1.5 @@ -144080,7 +144097,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18638 + - uid: 18653 components: - rot: -1.5707963267948966 rad pos: -11.5,-39.5 @@ -144088,7 +144105,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18639 + - uid: 18654 components: - rot: 3.141592653589793 rad pos: 5.5,17.5 @@ -144096,7 +144113,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18640 + - uid: 18655 components: - rot: 3.141592653589793 rad pos: -2.5,-53.5 @@ -144104,7 +144121,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18641 + - uid: 18656 components: - rot: -1.5707963267948966 rad pos: 21.5,-14.5 @@ -144112,7 +144129,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18642 + - uid: 18657 components: - rot: 3.141592653589793 rad pos: 31.5,-18.5 @@ -144120,7 +144137,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18643 + - uid: 18658 components: - rot: -1.5707963267948966 rad pos: -18.5,-64.5 @@ -144128,7 +144145,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18644 + - uid: 18659 components: - rot: 1.5707963267948966 rad pos: 21.5,-16.5 @@ -144136,7 +144153,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18645 + - uid: 18660 components: - rot: -1.5707963267948966 rad pos: 20.5,-41.5 @@ -144144,7 +144161,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18646 + - uid: 18661 components: - rot: -1.5707963267948966 rad pos: 10.5,8.5 @@ -144152,7 +144169,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18647 + - uid: 18662 components: - rot: -1.5707963267948966 rad pos: 11.5,11.5 @@ -144160,35 +144177,35 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18648 + - uid: 18663 components: - pos: -22.5,-89.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18649 + - uid: 18664 components: - pos: 26.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18650 + - uid: 18665 components: - pos: 10.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18651 + - uid: 18666 components: - pos: 9.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18652 + - uid: 18667 components: - rot: 3.141592653589793 rad pos: 14.5,-41.5 @@ -144196,14 +144213,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18653 + - uid: 18668 components: - pos: 5.5,16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18654 + - uid: 18669 components: - rot: 1.5707963267948966 rad pos: -24.5,-88.5 @@ -144211,7 +144228,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18655 + - uid: 18670 components: - rot: -1.5707963267948966 rad pos: 24.5,-24.5 @@ -144219,35 +144236,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18656 + - uid: 18671 components: - pos: 7.5,19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18657 + - uid: 18672 components: - pos: -3.5,-1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18658 + - uid: 18673 components: - pos: -19.5,-57.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18659 + - uid: 18674 components: - pos: 41.5,-26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18660 + - uid: 18675 components: - rot: 3.141592653589793 rad pos: 41.5,-25.5 @@ -144255,7 +144272,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18661 + - uid: 18676 components: - rot: 1.5707963267948966 rad pos: 36.5,-25.5 @@ -144263,7 +144280,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18662 + - uid: 18677 components: - rot: 1.5707963267948966 rad pos: 34.5,-26.5 @@ -144271,14 +144288,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18663 + - uid: 18678 components: - pos: -27.5,-77.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18664 + - uid: 18679 components: - rot: 3.141592653589793 rad pos: -25.5,-77.5 @@ -144286,7 +144303,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18665 + - uid: 18680 components: - rot: -1.5707963267948966 rad pos: -23.5,-85.5 @@ -144294,7 +144311,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18666 + - uid: 18681 components: - rot: 1.5707963267948966 rad pos: -18.5,-72.5 @@ -144302,7 +144319,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18667 + - uid: 18682 components: - rot: -1.5707963267948966 rad pos: -18.5,-73.5 @@ -144310,7 +144327,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18668 + - uid: 18683 components: - rot: -1.5707963267948966 rad pos: -20.5,-72.5 @@ -144318,7 +144335,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18669 + - uid: 18684 components: - rot: -1.5707963267948966 rad pos: -20.5,-69.5 @@ -144326,7 +144343,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18670 + - uid: 18685 components: - rot: 1.5707963267948966 rad pos: -20.5,-75.5 @@ -144334,7 +144351,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18671 + - uid: 18686 components: - rot: 1.5707963267948966 rad pos: -20.5,-70.5 @@ -144342,7 +144359,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18672 + - uid: 18687 components: - rot: -1.5707963267948966 rad pos: -18.5,-71.5 @@ -144350,7 +144367,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18673 + - uid: 18688 components: - rot: -1.5707963267948966 rad pos: -21.5,-89.5 @@ -144358,7 +144375,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18674 + - uid: 18689 components: - rot: -1.5707963267948966 rad pos: -18.5,-67.5 @@ -144366,7 +144383,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18675 + - uid: 18690 components: - rot: 1.5707963267948966 rad pos: -20.5,-66.5 @@ -144374,7 +144391,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18676 + - uid: 18691 components: - rot: 1.5707963267948966 rad pos: -20.5,-63.5 @@ -144382,14 +144399,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18677 + - uid: 18692 components: - pos: -18.5,-60.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18678 + - uid: 18693 components: - rot: 1.5707963267948966 rad pos: 34.5,-23.5 @@ -144397,7 +144414,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18679 + - uid: 18694 components: - rot: 3.141592653589793 rad pos: 36.5,-43.5 @@ -144405,7 +144422,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18680 + - uid: 18695 components: - rot: 3.141592653589793 rad pos: 34.5,-41.5 @@ -144413,14 +144430,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18681 + - uid: 18696 components: - pos: 33.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18682 + - uid: 18697 components: - rot: 3.141592653589793 rad pos: 10.5,17.5 @@ -144428,7 +144445,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18683 + - uid: 18698 components: - rot: 3.141592653589793 rad pos: 11.5,16.5 @@ -144436,7 +144453,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18684 + - uid: 18699 components: - rot: -1.5707963267948966 rad pos: -9.5,-37.5 @@ -144444,7 +144461,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18685 + - uid: 18700 components: - rot: 1.5707963267948966 rad pos: -3.5,-14.5 @@ -144452,14 +144469,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18686 + - uid: 18701 components: - pos: 21.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18687 + - uid: 18702 components: - rot: 3.141592653589793 rad pos: 56.5,21.5 @@ -144467,14 +144484,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18688 + - uid: 18703 components: - pos: 40.5,10.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18689 + - uid: 18704 components: - rot: 1.5707963267948966 rad pos: 28.5,22.5 @@ -144482,7 +144499,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18690 + - uid: 18705 components: - rot: -1.5707963267948966 rad pos: 30.5,19.5 @@ -144490,21 +144507,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18691 + - uid: 18706 components: - pos: 42.5,15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18692 + - uid: 18707 components: - pos: 44.5,15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18693 + - uid: 18708 components: - rot: 3.141592653589793 rad pos: 45.5,14.5 @@ -144512,14 +144529,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18694 + - uid: 18709 components: - pos: 47.5,14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18695 + - uid: 18710 components: - rot: 3.141592653589793 rad pos: 47.5,15.5 @@ -144527,7 +144544,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18696 + - uid: 18711 components: - rot: -1.5707963267948966 rad pos: 49.5,15.5 @@ -144535,7 +144552,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18697 + - uid: 18712 components: - rot: -1.5707963267948966 rad pos: 50.5,14.5 @@ -144543,7 +144560,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18698 + - uid: 18713 components: - rot: -1.5707963267948966 rad pos: 50.5,19.5 @@ -144551,7 +144568,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18699 + - uid: 18714 components: - rot: 3.141592653589793 rad pos: 46.5,20.5 @@ -144559,7 +144576,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18700 + - uid: 18715 components: - rot: 3.141592653589793 rad pos: 53.5,21.5 @@ -144567,7 +144584,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18701 + - uid: 18716 components: - rot: -1.5707963267948966 rad pos: 58.5,20.5 @@ -144575,7 +144592,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18702 + - uid: 18717 components: - rot: 3.141592653589793 rad pos: 55.5,20.5 @@ -144583,7 +144600,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18703 + - uid: 18718 components: - rot: 3.141592653589793 rad pos: 52.5,20.5 @@ -144591,7 +144608,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18704 + - uid: 18719 components: - rot: -1.5707963267948966 rad pos: 59.5,21.5 @@ -144599,7 +144616,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18705 + - uid: 18720 components: - rot: 1.5707963267948966 rad pos: 59.5,18.5 @@ -144607,7 +144624,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18706 + - uid: 18721 components: - rot: 1.5707963267948966 rad pos: 59.5,15.5 @@ -144615,7 +144632,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18707 + - uid: 18722 components: - rot: 1.5707963267948966 rad pos: 58.5,16.5 @@ -144623,7 +144640,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18708 + - uid: 18723 components: - rot: 1.5707963267948966 rad pos: 58.5,19.5 @@ -144631,14 +144648,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18709 + - uid: 18724 components: - pos: 40.5,20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18710 + - uid: 18725 components: - rot: 3.141592653589793 rad pos: 45.5,20.5 @@ -144646,7 +144663,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18711 + - uid: 18726 components: - rot: 3.141592653589793 rad pos: 39.5,19.5 @@ -144654,7 +144671,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18712 + - uid: 18727 components: - rot: 3.141592653589793 rad pos: 40.5,0.5 @@ -144662,14 +144679,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18713 + - uid: 18728 components: - pos: 44.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18714 + - uid: 18729 components: - rot: 3.141592653589793 rad pos: 45.5,0.5 @@ -144677,21 +144694,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18715 + - uid: 18730 components: - pos: 53.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18716 + - uid: 18731 components: - pos: 52.5,1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18717 + - uid: 18732 components: - rot: 1.5707963267948966 rad pos: 53.5,-5.5 @@ -144699,7 +144716,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18718 + - uid: 18733 components: - rot: -1.5707963267948966 rad pos: 42.5,-1.5 @@ -144707,7 +144724,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18719 + - uid: 18734 components: - rot: 3.141592653589793 rad pos: 42.5,-2.5 @@ -144715,7 +144732,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18720 + - uid: 18735 components: - rot: -1.5707963267948966 rad pos: 41.5,10.5 @@ -144723,7 +144740,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18721 + - uid: 18736 components: - rot: -1.5707963267948966 rad pos: 42.5,9.5 @@ -144731,7 +144748,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18722 + - uid: 18737 components: - rot: -1.5707963267948966 rad pos: 26.5,-53.5 @@ -144739,7 +144756,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18723 + - uid: 18738 components: - rot: -1.5707963267948966 rad pos: 26.5,-56.5 @@ -144747,7 +144764,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18724 + - uid: 18739 components: - rot: 3.141592653589793 rad pos: 61.5,-6.5 @@ -144755,7 +144772,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18725 + - uid: 18740 components: - rot: -1.5707963267948966 rad pos: 63.5,-11.5 @@ -144763,7 +144780,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18726 + - uid: 18741 components: - rot: -1.5707963267948966 rad pos: 62.5,-39.5 @@ -144771,7 +144788,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18727 + - uid: 18742 components: - rot: 3.141592653589793 rad pos: 42.5,-41.5 @@ -144779,7 +144796,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18728 + - uid: 18743 components: - rot: 3.141592653589793 rad pos: 43.5,-43.5 @@ -144787,7 +144804,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18729 + - uid: 18744 components: - rot: 3.141592653589793 rad pos: 45.5,-43.5 @@ -144795,28 +144812,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18730 + - uid: 18745 components: - pos: 44.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18731 + - uid: 18746 components: - pos: 49.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18732 + - uid: 18747 components: - pos: 49.5,-43.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18733 + - uid: 18748 components: - rot: 3.141592653589793 rad pos: 49.5,-45.5 @@ -144824,21 +144841,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18734 + - uid: 18749 components: - pos: 50.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18735 + - uid: 18750 components: - pos: 56.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18736 + - uid: 18751 components: - rot: 3.141592653589793 rad pos: 56.5,-45.5 @@ -144846,7 +144863,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18737 + - uid: 18752 components: - rot: 3.141592653589793 rad pos: 55.5,-45.5 @@ -144854,7 +144871,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18738 + - uid: 18753 components: - rot: -1.5707963267948966 rad pos: 50.5,-46.5 @@ -144862,7 +144879,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18739 + - uid: 18754 components: - rot: 1.5707963267948966 rad pos: 49.5,-54.5 @@ -144870,7 +144887,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18740 + - uid: 18755 components: - rot: 1.5707963267948966 rad pos: 57.5,-44.5 @@ -144878,7 +144895,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18741 + - uid: 18756 components: - rot: -1.5707963267948966 rad pos: 63.5,-45.5 @@ -144886,7 +144903,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18742 + - uid: 18757 components: - rot: -1.5707963267948966 rad pos: 61.5,-44.5 @@ -144894,7 +144911,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18743 + - uid: 18758 components: - rot: 1.5707963267948966 rad pos: 63.5,-46.5 @@ -144902,7 +144919,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18744 + - uid: 18759 components: - rot: -1.5707963267948966 rad pos: 61.5,-46.5 @@ -144910,7 +144927,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18745 + - uid: 18760 components: - rot: 1.5707963267948966 rad pos: 60.5,-33.5 @@ -144918,14 +144935,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18746 + - uid: 18761 components: - pos: 60.5,-32.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18747 + - uid: 18762 components: - rot: -1.5707963267948966 rad pos: 63.5,-26.5 @@ -144935,7 +144952,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18748 + - uid: 18763 components: - rot: 1.5707963267948966 rad pos: 61.5,-24.5 @@ -144945,14 +144962,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18749 + - uid: 18764 components: - pos: 55.5,-11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18750 + - uid: 18765 components: - rot: 1.5707963267948966 rad pos: 60.5,-48.5 @@ -144960,7 +144977,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18751 + - uid: 18766 components: - rot: 1.5707963267948966 rad pos: 64.5,-47.5 @@ -144968,7 +144985,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18752 + - uid: 18767 components: - rot: 1.5707963267948966 rad pos: 50.5,-52.5 @@ -144976,7 +144993,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18753 + - uid: 18768 components: - rot: 3.141592653589793 rad pos: 29.5,-58.5 @@ -144984,7 +145001,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18754 + - uid: 18769 components: - rot: 3.141592653589793 rad pos: 32.5,-60.5 @@ -144992,7 +145009,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18755 + - uid: 18770 components: - rot: 1.5707963267948966 rad pos: 29.5,-56.5 @@ -145000,7 +145017,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18756 + - uid: 18771 components: - rot: 1.5707963267948966 rad pos: 29.5,-52.5 @@ -145008,7 +145025,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18757 + - uid: 18772 components: - rot: 1.5707963267948966 rad pos: 32.5,-56.5 @@ -145016,7 +145033,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18758 + - uid: 18773 components: - rot: -1.5707963267948966 rad pos: 34.5,-48.5 @@ -145024,14 +145041,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18759 + - uid: 18774 components: - pos: 32.5,-52.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18760 + - uid: 18775 components: - rot: -1.5707963267948966 rad pos: 34.5,-49.5 @@ -145039,19 +145056,19 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18761 + - uid: 18776 components: - rot: -1.5707963267948966 rad pos: 51.5,-58.5 parent: 2 type: Transform - - uid: 18762 + - uid: 18777 components: - rot: -1.5707963267948966 rad pos: 48.5,-58.5 parent: 2 type: Transform - - uid: 18763 + - uid: 18778 components: - rot: 1.5707963267948966 rad pos: 49.5,-61.5 @@ -145059,14 +145076,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18764 + - uid: 18779 components: - pos: -19.5,7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18765 + - uid: 18780 components: - rot: 3.141592653589793 rad pos: -13.5,1.5 @@ -145074,7 +145091,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18766 + - uid: 18781 components: - rot: 3.141592653589793 rad pos: -14.5,1.5 @@ -145082,14 +145099,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18767 + - uid: 18782 components: - pos: -13.5,7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18768 + - uid: 18783 components: - rot: 1.5707963267948966 rad pos: -20.5,-27.5 @@ -145097,7 +145114,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18769 + - uid: 18784 components: - rot: -1.5707963267948966 rad pos: -18.5,-19.5 @@ -145105,7 +145122,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18770 + - uid: 18785 components: - rot: -1.5707963267948966 rad pos: -20.5,-22.5 @@ -145113,7 +145130,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18771 + - uid: 18786 components: - rot: -1.5707963267948966 rad pos: -18.5,-21.5 @@ -145121,7 +145138,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18772 + - uid: 18787 components: - rot: 1.5707963267948966 rad pos: -20.5,-14.5 @@ -145129,7 +145146,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18773 + - uid: 18788 components: - rot: -1.5707963267948966 rad pos: -20.5,-13.5 @@ -145137,7 +145154,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18774 + - uid: 18789 components: - rot: -1.5707963267948966 rad pos: -18.5,-10.5 @@ -145145,14 +145162,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18775 + - uid: 18790 components: - pos: -23.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18776 + - uid: 18791 components: - rot: 3.141592653589793 rad pos: -24.5,-10.5 @@ -145160,21 +145177,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18777 + - uid: 18792 components: - pos: -24.5,-13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18778 + - uid: 18793 components: - pos: -28.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18779 + - uid: 18794 components: - rot: 3.141592653589793 rad pos: -28.5,-13.5 @@ -145182,14 +145199,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18780 + - uid: 18795 components: - pos: -25.5,-13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18781 + - uid: 18796 components: - rot: 3.141592653589793 rad pos: -28.5,-17.5 @@ -145197,7 +145214,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18782 + - uid: 18797 components: - rot: 1.5707963267948966 rad pos: -18.5,-42.5 @@ -145205,7 +145222,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18783 + - uid: 18798 components: - rot: -1.5707963267948966 rad pos: 38.5,-58.5 @@ -145213,7 +145230,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18784 + - uid: 18799 components: - rot: -1.5707963267948966 rad pos: 40.5,-60.5 @@ -145221,7 +145238,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18785 + - uid: 18800 components: - rot: 1.5707963267948966 rad pos: 38.5,-63.5 @@ -145229,7 +145246,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18786 + - uid: 18801 components: - rot: -1.5707963267948966 rad pos: 40.5,-65.5 @@ -145237,7 +145254,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18787 + - uid: 18802 components: - rot: 3.141592653589793 rad pos: -18.5,6.5 @@ -145245,7 +145262,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18788 + - uid: 18803 components: - rot: 3.141592653589793 rad pos: -20.5,7.5 @@ -145253,7 +145270,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18789 + - uid: 18804 components: - rot: 1.5707963267948966 rad pos: -31.5,-13.5 @@ -145261,7 +145278,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18790 + - uid: 18805 components: - rot: -1.5707963267948966 rad pos: -18.5,-31.5 @@ -145269,7 +145286,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18791 + - uid: 18806 components: - rot: 1.5707963267948966 rad pos: -20.5,-41.5 @@ -145277,7 +145294,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18792 + - uid: 18807 components: - rot: 1.5707963267948966 rad pos: -18.5,-43.5 @@ -145285,7 +145302,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18793 + - uid: 18808 components: - rot: 1.5707963267948966 rad pos: -20.5,-43.5 @@ -145293,14 +145310,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18794 + - uid: 18809 components: - pos: 48.5,-73.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18795 + - uid: 18810 components: - rot: 1.5707963267948966 rad pos: 40.5,-71.5 @@ -145308,7 +145325,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18796 + - uid: 18811 components: - rot: -1.5707963267948966 rad pos: 38.5,-71.5 @@ -145316,7 +145333,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18797 + - uid: 18812 components: - rot: -1.5707963267948966 rad pos: 29.5,-83.5 @@ -145324,21 +145341,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18798 + - uid: 18813 components: - pos: 47.5,-72.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18799 + - uid: 18814 components: - pos: -29.5,-16.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18800 + - uid: 18815 components: - rot: 1.5707963267948966 rad pos: -32.5,-16.5 @@ -145346,7 +145363,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18801 + - uid: 18816 components: - rot: 1.5707963267948966 rad pos: -31.5,-17.5 @@ -145354,7 +145371,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18802 + - uid: 18817 components: - rot: -1.5707963267948966 rad pos: -32.5,-17.5 @@ -145362,7 +145379,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18803 + - uid: 18818 components: - rot: -1.5707963267948966 rad pos: -31.5,-15.5 @@ -145370,7 +145387,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18804 + - uid: 18819 components: - rot: 1.5707963267948966 rad pos: -32.5,-25.5 @@ -145378,7 +145395,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18805 + - uid: 18820 components: - rot: -1.5707963267948966 rad pos: -31.5,-27.5 @@ -145386,7 +145403,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18806 + - uid: 18821 components: - rot: 3.141592653589793 rad pos: -35.5,-10.5 @@ -145394,14 +145411,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18807 + - uid: 18822 components: - pos: -36.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18808 + - uid: 18823 components: - rot: 1.5707963267948966 rad pos: 42.5,6.5 @@ -145409,7 +145426,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18809 + - uid: 18824 components: - rot: -1.5707963267948966 rad pos: -24.5,-2.5 @@ -145417,7 +145434,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18810 + - uid: 18825 components: - rot: -1.5707963267948966 rad pos: -24.5,0.5 @@ -145425,7 +145442,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18811 + - uid: 18826 components: - rot: -1.5707963267948966 rad pos: -26.5,1.5 @@ -145433,7 +145450,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18812 + - uid: 18827 components: - rot: -1.5707963267948966 rad pos: -18.5,12.5 @@ -145441,7 +145458,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18813 + - uid: 18828 components: - rot: 1.5707963267948966 rad pos: -51.5,-24.5 @@ -145449,7 +145466,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18814 + - uid: 18829 components: - rot: 3.141592653589793 rad pos: -52.5,-17.5 @@ -145457,21 +145474,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18815 + - uid: 18830 components: - pos: -32.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18816 + - uid: 18831 components: - pos: -46.5,-5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18817 + - uid: 18832 components: - rot: 3.141592653589793 rad pos: -47.5,-6.5 @@ -145479,7 +145496,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18818 + - uid: 18833 components: - rot: -1.5707963267948966 rad pos: -53.5,-13.5 @@ -145487,7 +145504,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18819 + - uid: 18834 components: - rot: -1.5707963267948966 rad pos: -52.5,-16.5 @@ -145495,7 +145512,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18820 + - uid: 18835 components: - rot: 1.5707963267948966 rad pos: -53.5,-19.5 @@ -145503,7 +145520,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18821 + - uid: 18836 components: - rot: -1.5707963267948966 rad pos: -50.5,-23.5 @@ -145511,7 +145528,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18822 + - uid: 18837 components: - rot: 3.141592653589793 rad pos: -59.5,-25.5 @@ -145519,21 +145536,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18823 + - uid: 18838 components: - pos: -56.5,-23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18824 + - uid: 18839 components: - pos: -68.5,-23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18825 + - uid: 18840 components: - rot: 1.5707963267948966 rad pos: -68.5,-27.5 @@ -145541,14 +145558,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18826 + - uid: 18841 components: - pos: -64.5,-25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18827 + - uid: 18842 components: - rot: -1.5707963267948966 rad pos: -64.5,-27.5 @@ -145556,7 +145573,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18828 + - uid: 18843 components: - rot: 3.141592653589793 rad pos: -43.5,-55.5 @@ -145564,7 +145581,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 18829 + - uid: 18844 components: - rot: -1.5707963267948966 rad pos: -42.5,-53.5 @@ -145572,7 +145589,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 18830 + - uid: 18845 components: - rot: 3.141592653589793 rad pos: -40.5,-55.5 @@ -145582,7 +145599,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18831 + - uid: 18846 components: - rot: 1.5707963267948966 rad pos: -44.5,-41.5 @@ -145592,7 +145609,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18832 + - uid: 18847 components: - rot: -1.5707963267948966 rad pos: -42.5,-41.5 @@ -145600,7 +145617,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 18833 + - uid: 18848 components: - rot: 3.141592653589793 rad pos: -37.5,-57.5 @@ -145610,7 +145627,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18834 + - uid: 18849 components: - rot: -1.5707963267948966 rad pos: -37.5,-51.5 @@ -145620,7 +145637,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18835 + - uid: 18850 components: - rot: 1.5707963267948966 rad pos: -40.5,-51.5 @@ -145630,7 +145647,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18836 + - uid: 18851 components: - rot: 1.5707963267948966 rad pos: -40.5,-50.5 @@ -145640,7 +145657,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18837 + - uid: 18852 components: - rot: 1.5707963267948966 rad pos: -40.5,-49.5 @@ -145650,7 +145667,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18838 + - uid: 18853 components: - rot: -1.5707963267948966 rad pos: -37.5,-49.5 @@ -145660,7 +145677,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18839 + - uid: 18854 components: - rot: -1.5707963267948966 rad pos: -37.5,-50.5 @@ -145670,7 +145687,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18840 + - uid: 18855 components: - pos: -38.5,-57.5 parent: 2 @@ -145679,7 +145696,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18841 + - uid: 18856 components: - rot: 3.141592653589793 rad pos: -38.5,-48.5 @@ -145689,14 +145706,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18842 + - uid: 18857 components: - pos: -33.5,-33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18843 + - uid: 18858 components: - rot: 3.141592653589793 rad pos: -30.5,-34.5 @@ -145704,7 +145721,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18844 + - uid: 18859 components: - rot: 1.5707963267948966 rad pos: -32.5,-37.5 @@ -145712,7 +145729,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18845 + - uid: 18860 components: - rot: -1.5707963267948966 rad pos: -31.5,-39.5 @@ -145720,7 +145737,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18846 + - uid: 18861 components: - rot: 3.141592653589793 rad pos: -35.5,-55.5 @@ -145728,7 +145745,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18847 + - uid: 18862 components: - rot: 1.5707963267948966 rad pos: -35.5,-53.5 @@ -145736,7 +145753,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18848 + - uid: 18863 components: - rot: -1.5707963267948966 rad pos: -35.5,-44.5 @@ -145744,7 +145761,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18849 + - uid: 18864 components: - rot: 1.5707963267948966 rad pos: -34.5,-43.5 @@ -145752,7 +145769,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18850 + - uid: 18865 components: - rot: 1.5707963267948966 rad pos: -34.5,-45.5 @@ -145760,7 +145777,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18851 + - uid: 18866 components: - rot: 1.5707963267948966 rad pos: -34.5,-44.5 @@ -145768,7 +145785,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18852 + - uid: 18867 components: - rot: -1.5707963267948966 rad pos: -34.5,-42.5 @@ -145776,7 +145793,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18853 + - uid: 18868 components: - rot: -1.5707963267948966 rad pos: -23.5,-60.5 @@ -145786,21 +145803,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18854 + - uid: 18869 components: - pos: -27.5,-69.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18855 + - uid: 18870 components: - pos: -40.5,-71.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18856 + - uid: 18871 components: - rot: 3.141592653589793 rad pos: -29.5,-71.5 @@ -145808,14 +145825,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18857 + - uid: 18872 components: - pos: -30.5,-69.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18858 + - uid: 18873 components: - rot: -1.5707963267948966 rad pos: -42.5,-71.5 @@ -145823,7 +145840,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18859 + - uid: 18874 components: - rot: 1.5707963267948966 rad pos: -23.5,-58.5 @@ -145833,7 +145850,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18860 + - uid: 18875 components: - rot: -1.5707963267948966 rad pos: -20.5,13.5 @@ -145841,7 +145858,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18861 + - uid: 18876 components: - rot: 1.5707963267948966 rad pos: -20.5,16.5 @@ -145849,7 +145866,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18862 + - uid: 18877 components: - rot: -1.5707963267948966 rad pos: -18.5,19.5 @@ -145857,7 +145874,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18863 + - uid: 18878 components: - rot: -1.5707963267948966 rad pos: -20.5,20.5 @@ -145865,7 +145882,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18864 + - uid: 18879 components: - rot: -1.5707963267948966 rad pos: -18.5,23.5 @@ -145873,28 +145890,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18865 + - uid: 18880 components: - pos: -24.5,23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18866 + - uid: 18881 components: - pos: -23.5,20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18867 + - uid: 18882 components: - pos: -28.5,23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18868 + - uid: 18883 components: - rot: 3.141592653589793 rad pos: -28.5,20.5 @@ -145904,7 +145921,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18869 + - uid: 18884 components: - rot: 3.141592653589793 rad pos: -40.5,23.5 @@ -145912,7 +145929,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18870 + - uid: 18885 components: - rot: 3.141592653589793 rad pos: -41.5,20.5 @@ -145920,7 +145937,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18871 + - uid: 18886 components: - rot: 1.5707963267948966 rad pos: -40.5,30.5 @@ -145928,7 +145945,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18872 + - uid: 18887 components: - rot: 1.5707963267948966 rad pos: -41.5,29.5 @@ -145936,7 +145953,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18873 + - uid: 18888 components: - rot: 3.141592653589793 rad pos: -44.5,33.5 @@ -145944,28 +145961,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18874 + - uid: 18889 components: - pos: -49.5,33.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18875 + - uid: 18890 components: - pos: -28.5,1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18876 + - uid: 18891 components: - pos: -29.5,0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18877 + - uid: 18892 components: - rot: 3.141592653589793 rad pos: -37.5,1.5 @@ -145973,7 +145990,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18878 + - uid: 18893 components: - rot: 3.141592653589793 rad pos: -38.5,0.5 @@ -145981,7 +145998,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18879 + - uid: 18894 components: - rot: 1.5707963267948966 rad pos: -38.5,3.5 @@ -145989,7 +146006,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18880 + - uid: 18895 components: - rot: -1.5707963267948966 rad pos: -37.5,5.5 @@ -145997,7 +146014,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18881 + - uid: 18896 components: - rot: 1.5707963267948966 rad pos: -37.5,8.5 @@ -146005,7 +146022,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18882 + - uid: 18897 components: - rot: -1.5707963267948966 rad pos: -38.5,8.5 @@ -146013,21 +146030,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18883 + - uid: 18898 components: - pos: -39.5,0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18884 + - uid: 18899 components: - pos: -41.5,1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18885 + - uid: 18900 components: - rot: -1.5707963267948966 rad pos: -30.5,14.5 @@ -146035,7 +146052,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18886 + - uid: 18901 components: - rot: -1.5707963267948966 rad pos: -29.5,13.5 @@ -146043,7 +146060,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18887 + - uid: 18902 components: - rot: 1.5707963267948966 rad pos: -47.5,0.5 @@ -146051,7 +146068,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18888 + - uid: 18903 components: - rot: 1.5707963267948966 rad pos: -45.5,1.5 @@ -146059,7 +146076,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18889 + - uid: 18904 components: - rot: -1.5707963267948966 rad pos: -47.5,3.5 @@ -146067,14 +146084,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18890 + - uid: 18905 components: - pos: -47.5,10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18891 + - uid: 18906 components: - rot: 3.141592653589793 rad pos: -46.5,10.5 @@ -146082,7 +146099,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18892 + - uid: 18907 components: - rot: 3.141592653589793 rad pos: -51.5,10.5 @@ -146090,7 +146107,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18893 + - uid: 18908 components: - rot: 1.5707963267948966 rad pos: -52.5,10.5 @@ -146098,7 +146115,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18894 + - uid: 18909 components: - rot: 1.5707963267948966 rad pos: -45.5,6.5 @@ -146106,7 +146123,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18895 + - uid: 18910 components: - rot: -1.5707963267948966 rad pos: -45.5,7.5 @@ -146114,7 +146131,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18896 + - uid: 18911 components: - rot: 3.141592653589793 rad pos: -51.5,11.5 @@ -146122,7 +146139,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18897 + - uid: 18912 components: - rot: 1.5707963267948966 rad pos: -20.5,25.5 @@ -146130,7 +146147,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18898 + - uid: 18913 components: - rot: 1.5707963267948966 rad pos: -18.5,24.5 @@ -146138,7 +146155,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18899 + - uid: 18914 components: - rot: 3.141592653589793 rad pos: -4.5,-41.5 @@ -146146,14 +146163,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18900 + - uid: 18915 components: - pos: -4.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18901 + - uid: 18916 components: - rot: 1.5707963267948966 rad pos: -26.5,-4.5 @@ -146161,7 +146178,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18902 + - uid: 18917 components: - rot: -1.5707963267948966 rad pos: 25.5,-52.5 @@ -146169,7 +146186,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18903 + - uid: 18918 components: - rot: 3.141592653589793 rad pos: 44.5,19.5 @@ -146177,7 +146194,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18904 + - uid: 18919 components: - rot: 1.5707963267948966 rad pos: 54.5,43.5 @@ -146185,7 +146202,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18905 + - uid: 18920 components: - rot: -1.5707963267948966 rad pos: 52.5,43.5 @@ -146193,7 +146210,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18906 + - uid: 18921 components: - rot: -1.5707963267948966 rad pos: 54.5,50.5 @@ -146201,7 +146218,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18907 + - uid: 18922 components: - rot: -1.5707963267948966 rad pos: 52.5,49.5 @@ -146209,7 +146226,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18908 + - uid: 18923 components: - rot: 1.5707963267948966 rad pos: -16.5,34.5 @@ -146217,7 +146234,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18909 + - uid: 18924 components: - rot: 1.5707963267948966 rad pos: -15.5,33.5 @@ -146225,7 +146242,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18910 + - uid: 18925 components: - rot: 1.5707963267948966 rad pos: -16.5,39.5 @@ -146233,7 +146250,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18911 + - uid: 18926 components: - rot: 1.5707963267948966 rad pos: -15.5,38.5 @@ -146241,7 +146258,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18912 + - uid: 18927 components: - rot: 1.5707963267948966 rad pos: -16.5,46.5 @@ -146249,7 +146266,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18913 + - uid: 18928 components: - rot: 3.141592653589793 rad pos: -14.5,44.5 @@ -146257,7 +146274,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18914 + - uid: 18929 components: - rot: 3.141592653589793 rad pos: 40.5,46.5 @@ -146265,14 +146282,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18915 + - uid: 18930 components: - pos: 40.5,45.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18916 + - uid: 18931 components: - rot: 1.5707963267948966 rad pos: -1.5,61.5 @@ -146280,7 +146297,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18917 + - uid: 18932 components: - rot: 1.5707963267948966 rad pos: -2.5,62.5 @@ -146288,7 +146305,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18918 + - uid: 18933 components: - rot: 3.141592653589793 rad pos: -1.5,59.5 @@ -146296,7 +146313,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18919 + - uid: 18934 components: - rot: -1.5707963267948966 rad pos: 1.5,46.5 @@ -146304,7 +146321,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18920 + - uid: 18935 components: - rot: 1.5707963267948966 rad pos: -0.5,48.5 @@ -146312,35 +146329,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18921 + - uid: 18936 components: - pos: -17.5,50.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18922 + - uid: 18937 components: - pos: -16.5,51.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18923 + - uid: 18938 components: - pos: -21.5,50.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18924 + - uid: 18939 components: - pos: -20.5,51.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18925 + - uid: 18940 components: - rot: -1.5707963267948966 rad pos: -21.5,58.5 @@ -146348,7 +146365,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18926 + - uid: 18941 components: - rot: 1.5707963267948966 rad pos: -22.5,60.5 @@ -146356,7 +146373,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18927 + - uid: 18942 components: - rot: 1.5707963267948966 rad pos: -22.5,61.5 @@ -146364,7 +146381,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18928 + - uid: 18943 components: - rot: 1.5707963267948966 rad pos: -21.5,62.5 @@ -146372,7 +146389,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18929 + - uid: 18944 components: - rot: 3.141592653589793 rad pos: -17.5,62.5 @@ -146382,7 +146399,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18930 + - uid: 18945 components: - pos: -17.5,61.5 parent: 2 @@ -146391,7 +146408,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18931 + - uid: 18946 components: - rot: 1.5707963267948966 rad pos: -22.5,66.5 @@ -146399,7 +146416,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18932 + - uid: 18947 components: - rot: -1.5707963267948966 rad pos: -13.5,62.5 @@ -146407,7 +146424,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18933 + - uid: 18948 components: - rot: -1.5707963267948966 rad pos: -12.5,61.5 @@ -146415,7 +146432,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18934 + - uid: 18949 components: - rot: -1.5707963267948966 rad pos: -12.5,60.5 @@ -146423,7 +146440,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18935 + - uid: 18950 components: - rot: 1.5707963267948966 rad pos: -13.5,58.5 @@ -146431,7 +146448,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18936 + - uid: 18951 components: - rot: -1.5707963267948966 rad pos: -13.5,66.5 @@ -146439,7 +146456,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18937 + - uid: 18952 components: - rot: 1.5707963267948966 rad pos: -12.5,59.5 @@ -146447,7 +146464,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18938 + - uid: 18953 components: - rot: 1.5707963267948966 rad pos: -13.5,57.5 @@ -146455,7 +146472,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18939 + - uid: 18954 components: - rot: 3.141592653589793 rad pos: -2.5,58.5 @@ -146463,7 +146480,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18940 + - uid: 18955 components: - rot: 1.5707963267948966 rad pos: -0.5,56.5 @@ -146471,7 +146488,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18941 + - uid: 18956 components: - rot: -1.5707963267948966 rad pos: 1.5,57.5 @@ -146479,7 +146496,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18942 + - uid: 18957 components: - rot: 3.141592653589793 rad pos: 29.5,46.5 @@ -146487,14 +146504,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18943 + - uid: 18958 components: - pos: 29.5,45.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18944 + - uid: 18959 components: - rot: -1.5707963267948966 rad pos: -22.5,-96.5 @@ -146502,7 +146519,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18945 + - uid: 18960 components: - rot: -1.5707963267948966 rad pos: -20.5,-96.5 @@ -146510,7 +146527,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18946 + - uid: 18961 components: - rot: 3.141592653589793 rad pos: -20.5,-97.5 @@ -146518,7 +146535,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18947 + - uid: 18962 components: - rot: 3.141592653589793 rad pos: -21.5,-98.5 @@ -146526,7 +146543,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18948 + - uid: 18963 components: - rot: 3.141592653589793 rad pos: -8.5,-97.5 @@ -146534,7 +146551,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18949 + - uid: 18964 components: - rot: 3.141592653589793 rad pos: -7.5,-98.5 @@ -146542,7 +146559,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18950 + - uid: 18965 components: - rot: 1.5707963267948966 rad pos: -8.5,-91.5 @@ -146550,7 +146567,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18951 + - uid: 18966 components: - rot: 1.5707963267948966 rad pos: -7.5,-93.5 @@ -146558,7 +146575,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18952 + - uid: 18967 components: - rot: 3.141592653589793 rad pos: 65.5,-33.5 @@ -146566,14 +146583,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18953 + - uid: 18968 components: - pos: 65.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18954 + - uid: 18969 components: - rot: 3.141592653589793 rad pos: 67.5,-34.5 @@ -146581,14 +146598,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18956 + - uid: 18970 components: - pos: 73.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18957 + - uid: 18971 components: - rot: 3.141592653589793 rad pos: 73.5,-33.5 @@ -146596,7 +146613,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18958 + - uid: 18972 components: - rot: -1.5707963267948966 rad pos: 75.5,-40.5 @@ -146604,7 +146621,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18959 + - uid: 18973 components: - rot: 1.5707963267948966 rad pos: 74.5,-41.5 @@ -146612,14 +146629,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18960 + - uid: 18974 components: - pos: 72.5,-48.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18961 + - uid: 18975 components: - rot: 1.5707963267948966 rad pos: 73.5,-47.5 @@ -146627,14 +146644,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18962 + - uid: 18976 components: - pos: 70.5,-47.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18963 + - uid: 18977 components: - rot: 1.5707963267948966 rad pos: 71.5,-46.5 @@ -146642,7 +146659,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18964 + - uid: 18978 components: - rot: -1.5707963267948966 rad pos: 75.5,-37.5 @@ -146650,7 +146667,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18965 + - uid: 18979 components: - rot: 3.141592653589793 rad pos: 74.5,-33.5 @@ -146658,13 +146675,13 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18966 + - uid: 18980 components: - rot: -1.5707963267948966 rad pos: -56.5,-60.5 parent: 2 type: Transform - - uid: 18967 + - uid: 18981 components: - rot: 1.5707963267948966 rad pos: 61.5,-38.5 @@ -146672,14 +146689,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18968 + - uid: 18982 components: - pos: 3.5,-27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18969 + - uid: 18983 components: - rot: 3.141592653589793 rad pos: 38.5,-72.5 @@ -146687,7 +146704,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18970 + - uid: 18984 components: - rot: 3.141592653589793 rad pos: 40.5,-73.5 @@ -146695,21 +146712,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18971 + - uid: 18985 components: - pos: -30.5,-71.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18972 + - uid: 18986 components: - pos: -28.5,-69.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18973 + - uid: 18987 components: - rot: -1.5707963267948966 rad pos: 30.5,-82.5 @@ -146717,21 +146734,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18974 + - uid: 18988 components: - pos: 30.5,-72.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18975 + - uid: 18989 components: - pos: 29.5,-73.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18976 + - uid: 18990 components: - pos: -44.5,31.5 parent: 2 @@ -146742,52 +146759,52 @@ entities: type: EmitSoundOnCollide - proto: GasPort entities: - - uid: 18977 + - uid: 18991 components: - pos: 45.5,-58.5 parent: 2 type: Transform - - uid: 18978 + - uid: 18992 components: - rot: -1.5707963267948966 rad pos: 46.5,-59.5 parent: 2 type: Transform - - uid: 18979 + - uid: 18993 components: - rot: 3.141592653589793 rad pos: 45.5,-60.5 parent: 2 type: Transform - - uid: 18980 + - uid: 18994 components: - pos: 47.5,-56.5 parent: 2 type: Transform - - uid: 18981 + - uid: 18995 components: - pos: 50.5,-56.5 parent: 2 type: Transform - - uid: 18982 + - uid: 18996 components: - rot: 3.141592653589793 rad pos: 55.5,-61.5 parent: 2 type: Transform - - uid: 18983 + - uid: 18997 components: - rot: 1.5707963267948966 rad pos: 53.5,-59.5 parent: 2 type: Transform - - uid: 18984 + - uid: 18998 components: - rot: -1.5707963267948966 rad pos: 57.5,-59.5 parent: 2 type: Transform - - uid: 18985 + - uid: 18999 components: - name: scrubber to connector port type: MetaData @@ -146795,7 +146812,7 @@ entities: pos: 54.5,-60.5 parent: 2 type: Transform - - uid: 18986 + - uid: 19000 components: - rot: -1.5707963267948966 rad pos: -39.5,-49.5 @@ -146803,7 +146820,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 18987 + - uid: 19001 components: - rot: -1.5707963267948966 rad pos: -39.5,-50.5 @@ -146811,7 +146828,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 18988 + - uid: 19002 components: - rot: -1.5707963267948966 rad pos: -39.5,-51.5 @@ -146819,7 +146836,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 18989 + - uid: 19003 components: - rot: 1.5707963267948966 rad pos: -38.5,-49.5 @@ -146827,7 +146844,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 18990 + - uid: 19004 components: - rot: 1.5707963267948966 rad pos: -38.5,-50.5 @@ -146835,7 +146852,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 18991 + - uid: 19005 components: - rot: 1.5707963267948966 rad pos: -38.5,-51.5 @@ -146843,13 +146860,13 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 18992 + - uid: 19006 components: - rot: 3.141592653589793 rad pos: -24.5,-62.5 parent: 2 type: Transform - - uid: 18993 + - uid: 19007 components: - rot: 3.141592653589793 rad pos: -5.5,-65.5 @@ -146857,7 +146874,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18994 + - uid: 19008 components: - rot: -1.5707963267948966 rad pos: -33.5,-43.5 @@ -146865,7 +146882,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18995 + - uid: 19009 components: - rot: -1.5707963267948966 rad pos: -33.5,-44.5 @@ -146873,7 +146890,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18996 + - uid: 19010 components: - rot: -1.5707963267948966 rad pos: -33.5,-45.5 @@ -146881,18 +146898,18 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18997 + - uid: 19011 components: - pos: 70.5,38.5 parent: 2 type: Transform - - uid: 18998 + - uid: 19012 components: - rot: 1.5707963267948966 rad pos: -71.5,-43.5 parent: 2 type: Transform - - uid: 18999 + - uid: 19013 components: - rot: -1.5707963267948966 rad pos: 72.5,-37.5 @@ -146900,7 +146917,7 @@ entities: type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 19000 + - uid: 19014 components: - rot: -1.5707963267948966 rad pos: 72.5,-38.5 @@ -146908,7 +146925,7 @@ entities: type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 19001 + - uid: 19015 components: - rot: 3.141592653589793 rad pos: 71.5,-33.5 @@ -146916,7 +146933,7 @@ entities: type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 19002 + - uid: 19016 components: - rot: 3.141592653589793 rad pos: 72.5,-33.5 @@ -146924,18 +146941,18 @@ entities: type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 19003 + - uid: 19017 components: - rot: 1.5707963267948966 rad pos: -57.5,-58.5 parent: 2 type: Transform - - uid: 19004 + - uid: 19018 components: - pos: -54.5,-59.5 parent: 2 type: Transform - - uid: 19005 + - uid: 19019 components: - rot: 3.141592653589793 rad pos: -48.5,-38.5 @@ -146943,72 +146960,72 @@ entities: type: Transform - proto: GasPressurePump entities: - - uid: 19006 + - uid: 19020 components: - rot: 3.141592653589793 rad pos: 50.5,-57.5 parent: 2 type: Transform - - uid: 19007 + - uid: 19021 components: - pos: 47.5,-57.5 parent: 2 type: Transform - - uid: 19008 + - uid: 19022 components: - rot: 3.141592653589793 rad pos: 55.5,-60.5 parent: 2 type: Transform - - uid: 19009 + - uid: 19023 components: - rot: 1.5707963267948966 rad pos: 54.5,-59.5 parent: 2 type: Transform - - uid: 19010 + - uid: 19024 components: - rot: 1.5707963267948966 rad pos: -44.5,-53.5 parent: 2 type: Transform - - uid: 19011 + - uid: 19025 components: - rot: 1.5707963267948966 rad pos: -44.5,-55.5 parent: 2 type: Transform - - uid: 19012 + - uid: 19026 components: - rot: 1.5707963267948966 rad pos: -44.5,-51.5 parent: 2 type: Transform - - uid: 19013 + - uid: 19027 components: - rot: 1.5707963267948966 rad pos: -44.5,-49.5 parent: 2 type: Transform - - uid: 19014 + - uid: 19028 components: - rot: 1.5707963267948966 rad pos: -44.5,-47.5 parent: 2 type: Transform - - uid: 19015 + - uid: 19029 components: - rot: 1.5707963267948966 rad pos: -44.5,-45.5 parent: 2 type: Transform - - uid: 19016 + - uid: 19030 components: - rot: 1.5707963267948966 rad pos: -44.5,-43.5 parent: 2 type: Transform - - uid: 19017 + - uid: 19031 components: - rot: 1.5707963267948966 rad pos: -39.5,-55.5 @@ -147016,34 +147033,34 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19018 + - uid: 19032 components: - pos: -40.5,-54.5 parent: 2 type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - uid: 19019 + - uid: 19033 components: - rot: 3.141592653589793 rad pos: -42.5,-40.5 parent: 2 type: Transform - - uid: 19020 + - uid: 19034 components: - pos: -37.5,-54.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19021 + - uid: 19035 components: - pos: -38.5,-45.5 parent: 2 type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 19022 + - uid: 19036 components: - rot: 3.141592653589793 rad pos: -24.5,-61.5 @@ -147051,7 +147068,7 @@ entities: type: Transform - color: '#97C3FCCC' type: AtmosPipeColor - - uid: 19023 + - uid: 19037 components: - rot: 3.141592653589793 rad pos: -25.5,-59.5 @@ -147059,14 +147076,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19024 + - uid: 19038 components: - pos: -23.5,-59.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19025 + - uid: 19039 components: - rot: 3.141592653589793 rad pos: 72.5,-31.5 @@ -147074,19 +147091,19 @@ entities: type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 19026 + - uid: 19040 components: - pos: 71.5,-31.5 parent: 2 type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 19027 + - uid: 19041 components: - pos: -56.5,-59.5 parent: 2 type: Transform - - uid: 19028 + - uid: 19042 components: - rot: -1.5707963267948966 rad pos: 70.5,-38.5 @@ -147094,13 +147111,13 @@ entities: type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 19029 + - uid: 19043 components: - rot: 3.141592653589793 rad pos: -54.5,-60.5 parent: 2 type: Transform - - uid: 19030 + - uid: 19044 components: - rot: 1.5707963267948966 rad pos: 70.5,-37.5 @@ -147108,69 +147125,69 @@ entities: type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 19031 + - uid: 19045 components: - pos: -48.5,-37.5 parent: 2 type: Transform - proto: GasRecyclerMachineCircuitboard entities: - - uid: 19032 + - uid: 19046 components: - pos: 53.993114,35.55658 parent: 2 type: Transform - proto: GasThermoMachineFreezer entities: - - uid: 19033 + - uid: 19047 components: - pos: 51.5,-57.5 parent: 2 type: Transform - - uid: 19034 + - uid: 19048 components: - pos: 2.5,14.5 parent: 2 type: Transform - - uid: 19035 + - uid: 19049 components: - pos: -33.5,-52.5 parent: 2 type: Transform - - uid: 19036 + - uid: 19050 components: - pos: 2.5,68.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19037 + - uid: 19051 components: - pos: 2.5,70.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19038 + - uid: 19052 components: - pos: -5.5,68.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19039 + - uid: 19053 components: - pos: -5.5,70.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19040 + - uid: 19054 components: - pos: 53.5,-47.5 parent: 2 type: Transform - - uid: 19041 + - uid: 19055 components: - pos: -22.5,-61.5 parent: 2 @@ -147179,24 +147196,24 @@ entities: type: AtmosPipeColor - proto: GasThermoMachineHeater entities: - - uid: 19042 + - uid: 19056 components: - pos: 48.5,-57.5 parent: 2 type: Transform - - uid: 19043 + - uid: 19057 components: - pos: -33.5,-54.5 parent: 2 type: Transform - - uid: 19044 + - uid: 19058 components: - pos: -57.5,-59.5 parent: 2 type: Transform - proto: GasValve entities: - - uid: 19045 + - uid: 19059 components: - rot: -1.5707963267948966 rad pos: 56.5,-59.5 @@ -147206,7 +147223,7 @@ entities: type: GasValve - enabled: False type: AmbientSound - - uid: 19046 + - uid: 19060 components: - rot: 1.5707963267948966 rad pos: 53.5,-60.5 @@ -147216,14 +147233,14 @@ entities: type: GasValve - enabled: False type: AmbientSound - - uid: 19047 + - uid: 19061 components: - pos: -44.5,-40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19048 + - uid: 19062 components: - rot: -1.5707963267948966 rad pos: -43.5,-41.5 @@ -147231,7 +147248,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19049 + - uid: 19063 components: - pos: -40.5,-53.5 parent: 2 @@ -147242,7 +147259,7 @@ entities: type: AmbientSound - color: '#947507FF' type: AtmosPipeColor - - uid: 19050 + - uid: 19064 components: - rot: 3.141592653589793 rad pos: -38.5,-58.5 @@ -147254,7 +147271,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19051 + - uid: 19065 components: - pos: -37.5,-53.5 parent: 2 @@ -147265,7 +147282,7 @@ entities: type: AmbientSound - color: '#947507FF' type: AtmosPipeColor - - uid: 19052 + - uid: 19066 components: - pos: -38.5,-42.5 parent: 2 @@ -147276,7 +147293,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19053 + - uid: 19067 components: - rot: -1.5707963267948966 rad pos: -34.5,-53.5 @@ -147288,7 +147305,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19054 + - uid: 19068 components: - rot: 1.5707963267948966 rad pos: -34.5,-55.5 @@ -147300,7 +147317,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19055 + - uid: 19069 components: - pos: -48.5,-36.5 parent: 2 @@ -147311,7 +147328,7 @@ entities: type: AmbientSound - proto: GasVentPump entities: - - uid: 19056 + - uid: 19070 components: - rot: 1.5707963267948966 rad pos: -9.5,2.5 @@ -147321,7 +147338,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19057 + - uid: 19071 components: - pos: -1.5,-59.5 parent: 2 @@ -147330,7 +147347,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19058 + - uid: 19072 components: - rot: 3.141592653589793 rad pos: -14.5,-46.5 @@ -147340,7 +147357,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19059 + - uid: 19073 components: - pos: 25.5,-5.5 parent: 2 @@ -147349,7 +147366,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19060 + - uid: 19074 components: - rot: 1.5707963267948966 rad pos: -12.5,-39.5 @@ -147359,7 +147376,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19061 + - uid: 19075 components: - rot: 3.141592653589793 rad pos: -0.5,-65.5 @@ -147369,7 +147386,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19062 + - uid: 19076 components: - rot: 3.141592653589793 rad pos: -23.5,-86.5 @@ -147379,7 +147396,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19063 + - uid: 19077 components: - pos: 2.5,-26.5 parent: 2 @@ -147388,7 +147405,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19064 + - uid: 19078 components: - pos: 20.5,-40.5 parent: 2 @@ -147397,7 +147414,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19065 + - uid: 19079 components: - rot: -1.5707963267948966 rad pos: 6.5,16.5 @@ -147407,7 +147424,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19066 + - uid: 19080 components: - pos: 26.5,11.5 parent: 2 @@ -147416,7 +147433,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19067 + - uid: 19081 components: - rot: 1.5707963267948966 rad pos: 5.5,8.5 @@ -147426,7 +147443,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19068 + - uid: 19082 components: - rot: -1.5707963267948966 rad pos: -4.5,-14.5 @@ -147436,7 +147453,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19069 + - uid: 19083 components: - pos: -17.5,-57.5 parent: 2 @@ -147445,7 +147462,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19070 + - uid: 19084 components: - rot: -1.5707963267948966 rad pos: 32.5,10.5 @@ -147455,7 +147472,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19071 + - uid: 19085 components: - rot: 1.5707963267948966 rad pos: 16.5,13.5 @@ -147465,7 +147482,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19072 + - uid: 19086 components: - rot: -1.5707963267948966 rad pos: 45.5,-27.5 @@ -147475,7 +147492,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19073 + - uid: 19087 components: - rot: 1.5707963267948966 rad pos: 25.5,-35.5 @@ -147485,7 +147502,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19074 + - uid: 19088 components: - pos: 10.5,19.5 parent: 2 @@ -147494,7 +147511,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19075 + - uid: 19089 components: - rot: 1.5707963267948966 rad pos: 3.5,-4.5 @@ -147504,7 +147521,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19076 + - uid: 19090 components: - rot: -1.5707963267948966 rad pos: 29.5,10.5 @@ -147514,7 +147531,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19077 + - uid: 19091 components: - rot: 3.141592653589793 rad pos: 18.5,3.5 @@ -147524,7 +147541,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19078 + - uid: 19092 components: - rot: 3.141592653589793 rad pos: 1.5,-12.5 @@ -147534,7 +147551,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19079 + - uid: 19093 components: - rot: 1.5707963267948966 rad pos: 8.5,1.5 @@ -147544,7 +147561,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19080 + - uid: 19094 components: - rot: 1.5707963267948966 rad pos: 8.5,-9.5 @@ -147554,7 +147571,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19081 + - uid: 19095 components: - pos: 22.5,22.5 parent: 2 @@ -147563,7 +147580,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19082 + - uid: 19096 components: - rot: 3.141592653589793 rad pos: 15.5,16.5 @@ -147573,7 +147590,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19083 + - uid: 19097 components: - rot: 1.5707963267948966 rad pos: -0.5,17.5 @@ -147583,7 +147600,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19084 + - uid: 19098 components: - rot: 3.141592653589793 rad pos: 22.5,-37.5 @@ -147593,7 +147610,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19085 + - uid: 19099 components: - rot: -1.5707963267948966 rad pos: -10.5,-22.5 @@ -147603,7 +147620,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19086 + - uid: 19100 components: - rot: -1.5707963267948966 rad pos: -9.5,-6.5 @@ -147613,7 +147630,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19087 + - uid: 19101 components: - rot: 3.141592653589793 rad pos: -6.5,-65.5 @@ -147623,7 +147640,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19088 + - uid: 19102 components: - rot: 3.141592653589793 rad pos: -12.5,-65.5 @@ -147633,7 +147650,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19089 + - uid: 19103 components: - pos: -2.5,-52.5 parent: 2 @@ -147642,7 +147659,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19090 + - uid: 19104 components: - rot: 3.141592653589793 rad pos: 5.5,-45.5 @@ -147652,7 +147669,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19091 + - uid: 19105 components: - rot: 3.141592653589793 rad pos: -0.5,-47.5 @@ -147662,7 +147679,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19092 + - uid: 19106 components: - rot: -1.5707963267948966 rad pos: 9.5,-60.5 @@ -147672,7 +147689,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19093 + - uid: 19107 components: - rot: -1.5707963267948966 rad pos: 35.5,10.5 @@ -147682,7 +147699,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19094 + - uid: 19108 components: - rot: 1.5707963267948966 rad pos: -30.5,-80.5 @@ -147692,7 +147709,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19095 + - uid: 19109 components: - rot: 3.141592653589793 rad pos: 36.5,7.5 @@ -147702,7 +147719,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19096 + - uid: 19110 components: - rot: 3.141592653589793 rad pos: 11.5,9.5 @@ -147712,7 +147729,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19097 + - uid: 19111 components: - rot: 1.5707963267948966 rad pos: 9.5,3.5 @@ -147722,7 +147739,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19098 + - uid: 19112 components: - pos: 20.5,14.5 parent: 2 @@ -147731,7 +147748,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19099 + - uid: 19113 components: - pos: 5.5,19.5 parent: 2 @@ -147740,7 +147757,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19100 + - uid: 19114 components: - rot: 3.141592653589793 rad pos: 0.5,12.5 @@ -147750,7 +147767,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19101 + - uid: 19115 components: - pos: -24.5,-79.5 parent: 2 @@ -147759,7 +147776,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19102 + - uid: 19116 components: - rot: 3.141592653589793 rad pos: -18.5,-78.5 @@ -147769,7 +147786,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19103 + - uid: 19117 components: - rot: -1.5707963267948966 rad pos: 20.5,18.5 @@ -147779,7 +147796,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19104 + - uid: 19118 components: - pos: 17.5,20.5 parent: 2 @@ -147788,7 +147805,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19105 + - uid: 19119 components: - rot: 1.5707963267948966 rad pos: 33.5,5.5 @@ -147798,7 +147815,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19106 + - uid: 19120 components: - pos: -4.5,-40.5 parent: 2 @@ -147807,7 +147824,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19107 + - uid: 19121 components: - rot: 3.141592653589793 rad pos: -4.5,12.5 @@ -147817,7 +147834,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19108 + - uid: 19122 components: - pos: -29.5,-70.5 parent: 2 @@ -147826,7 +147843,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19109 + - uid: 19123 components: - rot: 1.5707963267948966 rad pos: -23.5,29.5 @@ -147836,7 +147853,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19110 + - uid: 19124 components: - pos: 47.5,-23.5 parent: 2 @@ -147845,7 +147862,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19111 + - uid: 19125 components: - rot: 1.5707963267948966 rad pos: 27.5,0.5 @@ -147855,7 +147872,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19112 + - uid: 19126 components: - pos: -7.5,9.5 parent: 2 @@ -147864,7 +147881,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19113 + - uid: 19127 components: - rot: -1.5707963267948966 rad pos: 15.5,-32.5 @@ -147874,7 +147891,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19114 + - uid: 19128 components: - rot: 1.5707963267948966 rad pos: 17.5,-12.5 @@ -147884,7 +147901,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19115 + - uid: 19129 components: - pos: 30.5,-17.5 parent: 2 @@ -147893,7 +147910,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19116 + - uid: 19130 components: - pos: -18.5,33.5 parent: 2 @@ -147902,7 +147919,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19117 + - uid: 19131 components: - rot: 3.141592653589793 rad pos: 36.5,4.5 @@ -147912,7 +147929,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19118 + - uid: 19132 components: - rot: -1.5707963267948966 rad pos: 27.5,-24.5 @@ -147922,7 +147939,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19119 + - uid: 19133 components: - rot: 3.141592653589793 rad pos: -24.5,-89.5 @@ -147932,7 +147949,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19120 + - uid: 19134 components: - rot: 1.5707963267948966 rad pos: -19.5,-64.5 @@ -147942,7 +147959,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19121 + - uid: 19135 components: - pos: 31.5,-14.5 parent: 2 @@ -147951,7 +147968,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19122 + - uid: 19136 components: - rot: -1.5707963267948966 rad pos: 42.5,-26.5 @@ -147961,7 +147978,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19123 + - uid: 19137 components: - rot: -1.5707963267948966 rad pos: -17.5,-72.5 @@ -147971,7 +147988,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19124 + - uid: 19138 components: - rot: 1.5707963267948966 rad pos: -19.5,-67.5 @@ -147981,7 +147998,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19125 + - uid: 19139 components: - rot: -1.5707963267948966 rad pos: -19.5,-88.5 @@ -147991,7 +148008,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19126 + - uid: 19140 components: - rot: 3.141592653589793 rad pos: 10.5,-46.5 @@ -148001,7 +148018,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19127 + - uid: 19141 components: - rot: -1.5707963267948966 rad pos: 35.5,-23.5 @@ -148011,7 +148028,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19128 + - uid: 19142 components: - pos: -16.5,-37.5 parent: 2 @@ -148020,7 +148037,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19129 + - uid: 19143 components: - pos: -11.5,-32.5 parent: 2 @@ -148029,7 +148046,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19130 + - uid: 19144 components: - rot: -1.5707963267948966 rad pos: -0.5,-10.5 @@ -148039,7 +148056,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19131 + - uid: 19145 components: - rot: 3.141592653589793 rad pos: 21.5,-46.5 @@ -148049,7 +148066,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19132 + - uid: 19146 components: - pos: 30.5,28.5 parent: 2 @@ -148058,7 +148075,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19133 + - uid: 19147 components: - pos: 45.5,15.5 parent: 2 @@ -148067,7 +148084,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19134 + - uid: 19148 components: - rot: -1.5707963267948966 rad pos: 61.5,15.5 @@ -148077,7 +148094,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19135 + - uid: 19149 components: - rot: -1.5707963267948966 rad pos: 52.5,13.5 @@ -148087,7 +148104,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19136 + - uid: 19150 components: - rot: -1.5707963267948966 rad pos: 61.5,18.5 @@ -148097,7 +148114,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19137 + - uid: 19151 components: - pos: 59.5,23.5 parent: 2 @@ -148106,7 +148123,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19138 + - uid: 19152 components: - pos: 56.5,23.5 parent: 2 @@ -148115,7 +148132,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19139 + - uid: 19153 components: - pos: 53.5,23.5 parent: 2 @@ -148124,7 +148141,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19140 + - uid: 19154 components: - pos: 50.5,23.5 parent: 2 @@ -148133,7 +148150,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19141 + - uid: 19155 components: - pos: 47.5,23.5 parent: 2 @@ -148142,7 +148159,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19142 + - uid: 19156 components: - rot: 3.141592653589793 rad pos: 47.5,13.5 @@ -148152,7 +148169,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19143 + - uid: 19157 components: - rot: -1.5707963267948966 rad pos: 60.5,11.5 @@ -148162,7 +148179,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19144 + - uid: 19158 components: - pos: 39.5,20.5 parent: 2 @@ -148171,7 +148188,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19145 + - uid: 19159 components: - rot: 1.5707963267948966 rad pos: 34.5,19.5 @@ -148181,7 +148198,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19146 + - uid: 19160 components: - pos: 45.5,1.5 parent: 2 @@ -148190,7 +148207,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19147 + - uid: 19161 components: - rot: -1.5707963267948966 rad pos: 57.5,0.5 @@ -148200,7 +148217,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19148 + - uid: 19162 components: - rot: 1.5707963267948966 rad pos: 43.5,-1.5 @@ -148210,7 +148227,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19149 + - uid: 19163 components: - rot: 1.5707963267948966 rad pos: 36.5,-3.5 @@ -148220,7 +148237,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19150 + - uid: 19164 components: - rot: 3.141592653589793 rad pos: 41.5,8.5 @@ -148230,7 +148247,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19151 + - uid: 19165 components: - rot: 1.5707963267948966 rad pos: 29.5,19.5 @@ -148240,7 +148257,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19152 + - uid: 19166 components: - rot: 1.5707963267948966 rad pos: 38.5,10.5 @@ -148250,7 +148267,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19153 + - uid: 19167 components: - rot: -1.5707963267948966 rad pos: 46.5,-1.5 @@ -148260,7 +148277,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19154 + - uid: 19168 components: - rot: -1.5707963267948966 rad pos: 57.5,-5.5 @@ -148270,7 +148287,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19155 + - uid: 19169 components: - rot: 3.141592653589793 rad pos: 49.5,-42.5 @@ -148280,7 +148297,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19156 + - uid: 19170 components: - pos: 42.5,-37.5 parent: 2 @@ -148289,7 +148306,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19157 + - uid: 19171 components: - rot: 3.141592653589793 rad pos: 56.5,-42.5 @@ -148299,7 +148316,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19158 + - uid: 19172 components: - rot: 3.141592653589793 rad pos: 44.5,-42.5 @@ -148309,7 +148326,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19159 + - uid: 19173 components: - rot: 3.141592653589793 rad pos: 57.5,-45.5 @@ -148319,7 +148336,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19160 + - uid: 19174 components: - rot: 3.141592653589793 rad pos: 61.5,-47.5 @@ -148329,7 +148346,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19161 + - uid: 19175 components: - rot: 1.5707963267948966 rad pos: 59.5,-32.5 @@ -148339,7 +148356,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19162 + - uid: 19176 components: - rot: -1.5707963267948966 rad pos: 62.5,-24.5 @@ -148349,7 +148366,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19163 + - uid: 19177 components: - pos: 61.5,-2.5 parent: 2 @@ -148358,7 +148375,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19164 + - uid: 19178 components: - rot: 3.141592653589793 rad pos: 60.5,-52.5 @@ -148368,7 +148385,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19165 + - uid: 19179 components: - rot: 1.5707963267948966 rad pos: 44.5,-46.5 @@ -148378,7 +148395,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19166 + - uid: 19180 components: - rot: -1.5707963267948966 rad pos: 51.5,-52.5 @@ -148388,7 +148405,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19167 + - uid: 19181 components: - rot: 1.5707963267948966 rad pos: 25.5,-56.5 @@ -148398,7 +148415,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19168 + - uid: 19182 components: - rot: -1.5707963267948966 rad pos: 30.5,-56.5 @@ -148408,7 +148425,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19169 + - uid: 19183 components: - rot: -1.5707963267948966 rad pos: 30.5,-52.5 @@ -148418,7 +148435,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19170 + - uid: 19184 components: - rot: 1.5707963267948966 rad pos: 28.5,-47.5 @@ -148428,7 +148445,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19171 + - uid: 19185 components: - rot: -1.5707963267948966 rad pos: 33.5,-47.5 @@ -148438,7 +148455,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19172 + - uid: 19186 components: - pos: 29.5,-45.5 parent: 2 @@ -148447,7 +148464,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19173 + - uid: 19187 components: - rot: -1.5707963267948966 rad pos: 53.5,-57.5 @@ -148457,7 +148474,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19174 + - uid: 19188 components: - pos: -13.5,2.5 parent: 2 @@ -148466,7 +148483,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19175 + - uid: 19189 components: - rot: 1.5707963267948966 rad pos: -17.5,1.5 @@ -148476,7 +148493,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19176 + - uid: 19190 components: - rot: 3.141592653589793 rad pos: -24.5,-14.5 @@ -148486,7 +148503,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19177 + - uid: 19191 components: - pos: -28.5,-12.5 parent: 2 @@ -148495,7 +148512,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19178 + - uid: 19192 components: - rot: -1.5707963267948966 rad pos: -19.5,-14.5 @@ -148505,7 +148522,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19179 + - uid: 19193 components: - rot: 3.141592653589793 rad pos: -24.5,-23.5 @@ -148515,7 +148532,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19180 + - uid: 19194 components: - pos: 38.5,-55.5 parent: 2 @@ -148524,7 +148541,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19181 + - uid: 19195 components: - rot: -1.5707963267948966 rad pos: 39.5,-63.5 @@ -148534,7 +148551,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19182 + - uid: 19196 components: - rot: -1.5707963267948966 rad pos: -19.5,-41.5 @@ -148544,7 +148561,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19183 + - uid: 19197 components: - rot: -1.5707963267948966 rad pos: -19.5,-47.5 @@ -148554,7 +148571,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19184 + - uid: 19198 components: - rot: -1.5707963267948966 rad pos: -19.5,-33.5 @@ -148564,7 +148581,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19185 + - uid: 19199 components: - rot: 1.5707963267948966 rad pos: 37.5,-71.5 @@ -148574,7 +148591,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19186 + - uid: 19200 components: - rot: -1.5707963267948966 rad pos: 3.5,-56.5 @@ -148584,7 +148601,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19187 + - uid: 19201 components: - pos: -28.5,-16.5 parent: 2 @@ -148593,7 +148610,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19188 + - uid: 19202 components: - rot: 1.5707963267948966 rad pos: -32.5,-27.5 @@ -148603,7 +148620,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19189 + - uid: 19203 components: - rot: 1.5707963267948966 rad pos: -34.5,-15.5 @@ -148613,7 +148630,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19190 + - uid: 19204 components: - rot: 3.141592653589793 rad pos: -36.5,-12.5 @@ -148623,7 +148640,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19191 + - uid: 19205 components: - rot: 3.141592653589793 rad pos: -41.5,-16.5 @@ -148633,7 +148650,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19192 + - uid: 19206 components: - rot: -1.5707963267948966 rad pos: -25.5,-4.5 @@ -148643,7 +148660,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19193 + - uid: 19207 components: - rot: 3.141592653589793 rad pos: -44.5,-12.5 @@ -148653,7 +148670,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19194 + - uid: 19208 components: - rot: 3.141592653589793 rad pos: -46.5,-6.5 @@ -148663,7 +148680,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19195 + - uid: 19209 components: - rot: 1.5707963267948966 rad pos: -54.5,-13.5 @@ -148673,7 +148690,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19196 + - uid: 19210 components: - rot: -1.5707963267948966 rad pos: -50.5,-24.5 @@ -148683,7 +148700,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19197 + - uid: 19211 components: - pos: -45.5,-22.5 parent: 2 @@ -148692,7 +148709,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19198 + - uid: 19212 components: - pos: -59.5,-24.5 parent: 2 @@ -148701,7 +148718,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19199 + - uid: 19213 components: - rot: 1.5707963267948966 rad pos: -65.5,-27.5 @@ -148711,7 +148728,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19200 + - uid: 19214 components: - rot: 3.141592653589793 rad pos: -64.5,-31.5 @@ -148721,7 +148738,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19201 + - uid: 19215 components: - rot: 1.5707963267948966 rad pos: -32.5,-39.5 @@ -148731,7 +148748,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19202 + - uid: 19216 components: - pos: -30.5,-33.5 parent: 2 @@ -148740,7 +148757,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19203 + - uid: 19217 components: - rot: 1.5707963267948966 rad pos: -38.5,-34.5 @@ -148750,7 +148767,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19204 + - uid: 19218 components: - rot: -1.5707963267948966 rad pos: -23.5,-34.5 @@ -148760,7 +148777,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19205 + - uid: 19219 components: - pos: -23.5,-57.5 parent: 2 @@ -148769,7 +148786,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19206 + - uid: 19220 components: - rot: 1.5707963267948966 rad pos: -41.5,-71.5 @@ -148779,7 +148796,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19207 + - uid: 19221 components: - pos: 21.5,-27.5 parent: 2 @@ -148788,7 +148805,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19208 + - uid: 19222 components: - rot: -1.5707963267948966 rad pos: 29.5,-30.5 @@ -148798,7 +148815,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19209 + - uid: 19223 components: - rot: 1.5707963267948966 rad pos: -19.5,19.5 @@ -148808,7 +148825,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19210 + - uid: 19224 components: - rot: 3.141592653589793 rad pos: -28.5,22.5 @@ -148818,7 +148835,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19211 + - uid: 19225 components: - rot: 3.141592653589793 rad pos: -32.5,22.5 @@ -148828,7 +148845,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19212 + - uid: 19226 components: - pos: -32.5,28.5 parent: 2 @@ -148837,7 +148854,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19213 + - uid: 19227 components: - rot: 1.5707963267948966 rad pos: -41.5,23.5 @@ -148847,7 +148864,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19214 + - uid: 19228 components: - rot: 3.141592653589793 rad pos: -24.5,22.5 @@ -148857,7 +148874,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19215 + - uid: 19229 components: - rot: 1.5707963267948966 rad pos: -50.5,33.5 @@ -148867,7 +148884,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19216 + - uid: 19230 components: - rot: 1.5707963267948966 rad pos: -50.5,31.5 @@ -148877,7 +148894,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19217 + - uid: 19231 components: - pos: -44.5,34.5 parent: 2 @@ -148886,7 +148903,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19218 + - uid: 19232 components: - rot: -1.5707963267948966 rad pos: -37.5,30.5 @@ -148896,7 +148913,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19219 + - uid: 19233 components: - rot: 1.5707963267948966 rad pos: -26.5,12.5 @@ -148906,7 +148923,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19220 + - uid: 19234 components: - rot: 3.141592653589793 rad pos: -28.5,-3.5 @@ -148916,7 +148933,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19221 + - uid: 19235 components: - rot: 3.141592653589793 rad pos: -29.5,9.5 @@ -148926,7 +148943,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19222 + - uid: 19236 components: - pos: -29.5,15.5 parent: 2 @@ -148935,7 +148952,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19223 + - uid: 19237 components: - rot: -1.5707963267948966 rad pos: -36.5,8.5 @@ -148945,7 +148962,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19224 + - uid: 19238 components: - rot: 1.5707963267948966 rad pos: -38.5,5.5 @@ -148955,7 +148972,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19225 + - uid: 19239 components: - rot: 3.141592653589793 rad pos: -41.5,0.5 @@ -148965,7 +148982,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19226 + - uid: 19240 components: - rot: 3.141592653589793 rad pos: -45.5,0.5 @@ -148975,7 +148992,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19227 + - uid: 19241 components: - rot: -1.5707963267948966 rad pos: -44.5,6.5 @@ -148985,7 +149002,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19228 + - uid: 19242 components: - rot: 1.5707963267948966 rad pos: -51.5,7.5 @@ -148995,7 +149012,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19229 + - uid: 19243 components: - rot: -1.5707963267948966 rad pos: -43.5,11.5 @@ -149005,7 +149022,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19230 + - uid: 19244 components: - pos: -45.5,14.5 parent: 2 @@ -149014,7 +149031,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19231 + - uid: 19245 components: - pos: -51.5,14.5 parent: 2 @@ -149023,7 +149040,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19232 + - uid: 19246 components: - rot: 1.5707963267948966 rad pos: -52.5,11.5 @@ -149033,7 +149050,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19233 + - uid: 19247 components: - rot: 3.141592653589793 rad pos: 19.5,-54.5 @@ -149043,7 +149060,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19234 + - uid: 19248 components: - rot: 3.141592653589793 rad pos: 19.5,-54.5 @@ -149053,7 +149070,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19235 + - uid: 19249 components: - pos: -54.5,-74.5 parent: 2 @@ -149062,7 +149079,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19236 + - uid: 19250 components: - pos: -8.5,-26.5 parent: 2 @@ -149071,7 +149088,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19237 + - uid: 19251 components: - rot: 3.141592653589793 rad pos: 33.5,-42.5 @@ -149081,7 +149098,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19238 + - uid: 19252 components: - rot: 1.5707963267948966 rad pos: -36.5,-44.5 @@ -149091,7 +149108,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19239 + - uid: 19253 components: - rot: 1.5707963267948966 rad pos: -71.5,-25.5 @@ -149101,7 +149118,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19240 + - uid: 19254 components: - rot: 1.5707963267948966 rad pos: -30.5,-78.5 @@ -149111,7 +149128,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19241 + - uid: 19255 components: - rot: 1.5707963267948966 rad pos: 39.5,46.5 @@ -149121,7 +149138,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19242 + - uid: 19256 components: - pos: 54.5,56.5 parent: 2 @@ -149130,7 +149147,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19243 + - uid: 19257 components: - rot: -1.5707963267948966 rad pos: 55.5,43.5 @@ -149140,7 +149157,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19244 + - uid: 19258 components: - rot: -1.5707963267948966 rad pos: -12.5,33.5 @@ -149150,7 +149167,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19245 + - uid: 19259 components: - rot: 1.5707963267948966 rad pos: -20.5,44.5 @@ -149160,7 +149177,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19246 + - uid: 19260 components: - pos: -14.5,45.5 parent: 2 @@ -149169,7 +149186,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19247 + - uid: 19261 components: - rot: 3.141592653589793 rad pos: 70.5,37.5 @@ -149177,7 +149194,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 19248 + - uid: 19262 components: - rot: -1.5707963267948966 rad pos: -11.5,38.5 @@ -149187,7 +149204,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19249 + - uid: 19263 components: - pos: -1.5,66.5 parent: 2 @@ -149196,7 +149213,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19250 + - uid: 19264 components: - rot: -1.5707963267948966 rad pos: -0.5,61.5 @@ -149206,7 +149223,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19251 + - uid: 19265 components: - rot: 1.5707963267948966 rad pos: 0.5,46.5 @@ -149216,7 +149233,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19252 + - uid: 19266 components: - rot: 1.5707963267948966 rad pos: -13.5,60.5 @@ -149226,7 +149243,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19253 + - uid: 19267 components: - rot: 3.141592653589793 rad pos: -17.5,60.5 @@ -149236,7 +149253,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19254 + - uid: 19268 components: - pos: -12.5,73.5 parent: 2 @@ -149245,7 +149262,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19255 + - uid: 19269 components: - pos: -22.5,73.5 parent: 2 @@ -149254,7 +149271,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19256 + - uid: 19270 components: - rot: -1.5707963267948966 rad pos: -21.5,60.5 @@ -149264,7 +149281,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19257 + - uid: 19271 components: - rot: 1.5707963267948966 rad pos: 0.5,57.5 @@ -149274,7 +149291,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19258 + - uid: 19272 components: - rot: -1.5707963267948966 rad pos: 30.5,46.5 @@ -149284,7 +149301,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19259 + - uid: 19273 components: - rot: 3.141592653589793 rad pos: 23.5,45.5 @@ -149294,7 +149311,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19260 + - uid: 19274 components: - rot: -1.5707963267948966 rad pos: -7.5,-91.5 @@ -149304,7 +149321,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19261 + - uid: 19275 components: - rot: 1.5707963267948966 rad pos: -21.5,-96.5 @@ -149314,7 +149331,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19262 + - uid: 19276 components: - rot: -1.5707963267948966 rad pos: -7.5,-97.5 @@ -149324,7 +149341,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19263 + - uid: 19277 components: - pos: -8.5,-84.5 parent: 2 @@ -149333,7 +149350,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19264 + - uid: 19278 components: - rot: 1.5707963267948966 rad pos: -34.5,-97.5 @@ -149343,14 +149360,14 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19265 + - uid: 19279 components: - pos: -70.5,-41.5 parent: 2 type: Transform - enabled: False type: AmbientSound - - uid: 19266 + - uid: 19280 components: - pos: 65.5,-32.5 parent: 2 @@ -149359,7 +149376,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19267 + - uid: 19281 components: - rot: 3.141592653589793 rad pos: 68.5,-34.5 @@ -149369,7 +149386,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19268 + - uid: 19282 components: - rot: 1.5707963267948966 rad pos: 74.5,-40.5 @@ -149379,7 +149396,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19269 + - uid: 19283 components: - rot: -1.5707963267948966 rad pos: 74.5,-47.5 @@ -149389,7 +149406,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19270 + - uid: 19284 components: - rot: 1.5707963267948966 rad pos: 66.5,-37.5 @@ -149399,7 +149416,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19271 + - uid: 19285 components: - pos: 74.5,-32.5 parent: 2 @@ -149408,7 +149425,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19272 + - uid: 19286 components: - pos: 73.5,-29.5 parent: 2 @@ -149417,7 +149434,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19273 + - uid: 19287 components: - rot: 3.141592653589793 rad pos: 3.5,-30.5 @@ -149427,7 +149444,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19274 + - uid: 19288 components: - rot: -1.5707963267948966 rad pos: -18.5,66.5 @@ -149437,7 +149454,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19275 + - uid: 19289 components: - rot: 3.141592653589793 rad pos: 72.5,-49.5 @@ -149447,7 +149464,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19276 + - uid: 19290 components: - rot: -1.5707963267948966 rad pos: -15.5,24.5 @@ -149457,7 +149474,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19277 + - uid: 19291 components: - rot: 1.5707963267948966 rad pos: -8.5,-14.5 @@ -149467,7 +149484,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19278 + - uid: 19292 components: - pos: -11.5,-18.5 parent: 2 @@ -149476,7 +149493,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19279 + - uid: 19293 components: - rot: 3.141592653589793 rad pos: -30.5,-74.5 @@ -149486,7 +149503,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19280 + - uid: 19294 components: - rot: -1.5707963267948966 rad pos: 62.5,-38.5 @@ -149496,7 +149513,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19281 + - uid: 19295 components: - rot: 3.141592653589793 rad pos: 30.5,-84.5 @@ -149506,7 +149523,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19282 + - uid: 19296 components: - rot: -1.5707963267948966 rad pos: 48.5,-72.5 @@ -149516,7 +149533,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19283 + - uid: 19297 components: - pos: 25.5,-71.5 parent: 2 @@ -149525,7 +149542,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19284 + - uid: 19298 components: - rot: 3.141592653589793 rad pos: 18.5,-83.5 @@ -149535,7 +149552,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19285 + - uid: 19299 components: - rot: -1.5707963267948966 rad pos: 48.5,-86.5 @@ -149545,7 +149562,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19286 + - uid: 19300 components: - pos: 12.5,-22.5 parent: 2 @@ -149554,7 +149571,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19287 + - uid: 19301 components: - rot: -1.5707963267948966 rad pos: 45.5,5.5 @@ -149564,7 +149581,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19288 + - uid: 19302 components: - pos: -45.5,43.5 parent: 2 @@ -149575,7 +149592,7 @@ entities: type: AtmosPipeColor - nextSound: 1395.7052389 type: EmitSoundOnCollide - - uid: 30662 + - uid: 19303 components: - pos: 68.5,-31.5 parent: 2 @@ -149588,7 +149605,7 @@ entities: type: EmitSoundOnCollide - proto: GasVentScrubber entities: - - uid: 19289 + - uid: 19304 components: - pos: 25.5,-51.5 parent: 2 @@ -149597,7 +149614,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19290 + - uid: 19305 components: - rot: 1.5707963267948966 rad pos: 1.5,-10.5 @@ -149607,7 +149624,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19291 + - uid: 19306 components: - pos: 22.5,-4.5 parent: 2 @@ -149616,7 +149633,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19292 + - uid: 19307 components: - pos: 11.5,19.5 parent: 2 @@ -149625,7 +149642,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19293 + - uid: 19308 components: - rot: 1.5707963267948966 rad pos: -3.5,11.5 @@ -149635,7 +149652,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19294 + - uid: 19309 components: - rot: 1.5707963267948966 rad pos: 27.5,1.5 @@ -149645,7 +149662,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19295 + - uid: 19310 components: - rot: 3.141592653589793 rad pos: 7.5,-26.5 @@ -149655,7 +149672,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19296 + - uid: 19311 components: - rot: 1.5707963267948966 rad pos: 1.5,-4.5 @@ -149665,7 +149682,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19297 + - uid: 19312 components: - pos: -8.5,-0.5 parent: 2 @@ -149674,7 +149691,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19298 + - uid: 19313 components: - pos: 31.5,-41.5 parent: 2 @@ -149683,7 +149700,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19299 + - uid: 19314 components: - pos: 31.5,16.5 parent: 2 @@ -149692,7 +149709,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19300 + - uid: 19315 components: - rot: 3.141592653589793 rad pos: -5.5,6.5 @@ -149702,7 +149719,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19301 + - uid: 19316 components: - rot: -1.5707963267948966 rad pos: -8.5,-39.5 @@ -149712,7 +149729,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19302 + - uid: 19317 components: - rot: 3.141592653589793 rad pos: 31.5,11.5 @@ -149722,7 +149739,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19303 + - uid: 19318 components: - rot: 1.5707963267948966 rad pos: 37.5,8.5 @@ -149732,7 +149749,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19304 + - uid: 19319 components: - rot: 1.5707963267948966 rad pos: 37.5,5.5 @@ -149742,7 +149759,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19305 + - uid: 19320 components: - rot: 3.141592653589793 rad pos: 28.5,11.5 @@ -149752,7 +149769,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19306 + - uid: 19321 components: - pos: 38.5,12.5 parent: 2 @@ -149761,7 +149778,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19307 + - uid: 19322 components: - rot: 3.141592653589793 rad pos: -4.5,-43.5 @@ -149771,7 +149788,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19308 + - uid: 19323 components: - rot: 1.5707963267948966 rad pos: 16.5,12.5 @@ -149781,7 +149798,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19309 + - uid: 19324 components: - rot: 3.141592653589793 rad pos: 34.5,11.5 @@ -149791,7 +149808,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19310 + - uid: 19325 components: - rot: -1.5707963267948966 rad pos: 29.5,-35.5 @@ -149801,7 +149818,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19311 + - uid: 19326 components: - rot: -1.5707963267948966 rad pos: 26.5,7.5 @@ -149811,7 +149828,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19312 + - uid: 19327 components: - rot: -1.5707963267948966 rad pos: 8.5,19.5 @@ -149821,7 +149838,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19313 + - uid: 19328 components: - rot: -1.5707963267948966 rad pos: 22.5,-18.5 @@ -149831,7 +149848,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19314 + - uid: 19329 components: - rot: -1.5707963267948966 rad pos: 29.5,-29.5 @@ -149841,7 +149858,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19315 + - uid: 19330 components: - pos: 23.5,-27.5 parent: 2 @@ -149850,7 +149867,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19316 + - uid: 19331 components: - rot: -1.5707963267948966 rad pos: -8.5,-5.5 @@ -149860,7 +149877,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19317 + - uid: 19332 components: - rot: 3.141592653589793 rad pos: -2.5,-65.5 @@ -149870,7 +149887,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19318 + - uid: 19333 components: - rot: 3.141592653589793 rad pos: -8.5,-65.5 @@ -149880,7 +149897,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19319 + - uid: 19334 components: - rot: 3.141592653589793 rad pos: -15.5,-65.5 @@ -149890,7 +149907,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19320 + - uid: 19335 components: - rot: 3.141592653589793 rad pos: -5.5,-61.5 @@ -149900,7 +149917,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19321 + - uid: 19336 components: - rot: 3.141592653589793 rad pos: -8.5,-54.5 @@ -149910,7 +149927,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19322 + - uid: 19337 components: - rot: 3.141592653589793 rad pos: 3.5,-45.5 @@ -149920,7 +149937,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19323 + - uid: 19338 components: - rot: 3.141592653589793 rad pos: -8.5,-47.5 @@ -149930,7 +149947,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19324 + - uid: 19339 components: - rot: -1.5707963267948966 rad pos: 9.5,-61.5 @@ -149940,7 +149957,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19325 + - uid: 19340 components: - rot: 3.141592653589793 rad pos: -12.5,-47.5 @@ -149950,7 +149967,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19326 + - uid: 19341 components: - rot: 3.141592653589793 rad pos: -20.5,-85.5 @@ -149960,7 +149977,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19327 + - uid: 19342 components: - rot: -1.5707963267948966 rad pos: -24.5,-77.5 @@ -149970,7 +149987,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19328 + - uid: 19343 components: - rot: 1.5707963267948966 rad pos: -28.5,-77.5 @@ -149980,7 +149997,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19329 + - uid: 19344 components: - pos: 17.5,0.5 parent: 2 @@ -149989,7 +150006,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19330 + - uid: 19345 components: - pos: 33.5,2.5 parent: 2 @@ -149998,7 +150015,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19331 + - uid: 19346 components: - rot: -1.5707963267948966 rad pos: 1.5,11.5 @@ -150008,7 +150025,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19332 + - uid: 19347 components: - rot: -1.5707963267948966 rad pos: 9.5,0.5 @@ -150018,7 +150035,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19333 + - uid: 19348 components: - rot: 1.5707963267948966 rad pos: -23.5,-89.5 @@ -150028,7 +150045,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19334 + - uid: 19349 components: - rot: 3.141592653589793 rad pos: -21.5,-90.5 @@ -150038,7 +150055,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19335 + - uid: 19350 components: - pos: 33.5,-14.5 parent: 2 @@ -150047,7 +150064,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19336 + - uid: 19351 components: - rot: 3.141592653589793 rad pos: 10.5,-4.5 @@ -150057,7 +150074,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19337 + - uid: 19352 components: - pos: 25.5,22.5 parent: 2 @@ -150066,7 +150083,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19338 + - uid: 19353 components: - pos: 16.5,22.5 parent: 2 @@ -150075,7 +150092,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19339 + - uid: 19354 components: - rot: -1.5707963267948966 rad pos: 16.5,-23.5 @@ -150085,7 +150102,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19340 + - uid: 19355 components: - rot: 3.141592653589793 rad pos: 23.5,-37.5 @@ -150095,7 +150112,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19341 + - uid: 19356 components: - rot: 1.5707963267948966 rad pos: -4.5,-11.5 @@ -150105,7 +150122,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19342 + - uid: 19357 components: - rot: -1.5707963267948966 rad pos: 22.5,12.5 @@ -150115,7 +150132,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19343 + - uid: 19358 components: - rot: 3.141592653589793 rad pos: 46.5,-30.5 @@ -150125,7 +150142,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19344 + - uid: 19359 components: - rot: -1.5707963267948966 rad pos: 45.5,-24.5 @@ -150135,7 +150152,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19345 + - uid: 19360 components: - pos: -20.5,33.5 parent: 2 @@ -150144,7 +150161,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19346 + - uid: 19361 components: - rot: -1.5707963267948966 rad pos: 3.5,1.5 @@ -150154,7 +150171,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19347 + - uid: 19362 components: - pos: 21.5,17.5 parent: 2 @@ -150163,7 +150180,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19348 + - uid: 19363 components: - rot: 1.5707963267948966 rad pos: 0.5,6.5 @@ -150173,7 +150190,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19349 + - uid: 19364 components: - rot: 1.5707963267948966 rad pos: -28.5,-79.5 @@ -150183,7 +150200,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19350 + - uid: 19365 components: - rot: 1.5707963267948966 rad pos: 20.5,-14.5 @@ -150193,7 +150210,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19351 + - uid: 19366 components: - pos: 12.5,17.5 parent: 2 @@ -150202,7 +150219,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19352 + - uid: 19367 components: - rot: 1.5707963267948966 rad pos: 23.5,-24.5 @@ -150212,7 +150229,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19353 + - uid: 19368 components: - rot: 1.5707963267948966 rad pos: 6.5,14.5 @@ -150222,7 +150239,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19354 + - uid: 19369 components: - rot: -1.5707963267948966 rad pos: 42.5,-25.5 @@ -150232,7 +150249,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19355 + - uid: 19370 components: - rot: -1.5707963267948966 rad pos: -19.5,-75.5 @@ -150242,7 +150259,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19356 + - uid: 19371 components: - rot: -1.5707963267948966 rad pos: -19.5,-70.5 @@ -150252,7 +150269,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19357 + - uid: 19372 components: - rot: -1.5707963267948966 rad pos: -19.5,-66.5 @@ -150262,7 +150279,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19358 + - uid: 19373 components: - rot: -1.5707963267948966 rad pos: -19.5,-63.5 @@ -150272,7 +150289,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19359 + - uid: 19374 components: - rot: 3.141592653589793 rad pos: 9.5,-46.5 @@ -150282,7 +150299,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19360 + - uid: 19375 components: - rot: 1.5707963267948966 rad pos: 35.5,-31.5 @@ -150292,7 +150309,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19361 + - uid: 19376 components: - rot: -1.5707963267948966 rad pos: 9.5,10.5 @@ -150302,7 +150319,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19362 + - uid: 19377 components: - rot: 1.5707963267948966 rad pos: -14.5,-37.5 @@ -150312,7 +150329,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19363 + - uid: 19378 components: - pos: -9.5,-32.5 parent: 2 @@ -150321,7 +150338,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19364 + - uid: 19379 components: - rot: 1.5707963267948966 rad pos: 0.5,19.5 @@ -150331,7 +150348,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19365 + - uid: 19380 components: - pos: -0.5,-13.5 parent: 2 @@ -150340,7 +150357,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19366 + - uid: 19381 components: - rot: 3.141592653589793 rad pos: 20.5,-47.5 @@ -150350,7 +150367,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19367 + - uid: 19382 components: - pos: 28.5,28.5 parent: 2 @@ -150359,7 +150376,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19368 + - uid: 19383 components: - rot: 3.141592653589793 rad pos: 44.5,14.5 @@ -150369,7 +150386,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19369 + - uid: 19384 components: - pos: 47.5,16.5 parent: 2 @@ -150378,7 +150395,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19370 + - uid: 19385 components: - rot: -1.5707963267948966 rad pos: 52.5,12.5 @@ -150388,7 +150405,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19371 + - uid: 19386 components: - pos: 46.5,23.5 parent: 2 @@ -150397,7 +150414,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19372 + - uid: 19387 components: - pos: 49.5,23.5 parent: 2 @@ -150406,7 +150423,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19373 + - uid: 19388 components: - pos: 52.5,23.5 parent: 2 @@ -150415,7 +150432,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19374 + - uid: 19389 components: - pos: 55.5,23.5 parent: 2 @@ -150424,7 +150441,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19375 + - uid: 19390 components: - pos: 58.5,23.5 parent: 2 @@ -150433,7 +150450,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19376 + - uid: 19391 components: - rot: -1.5707963267948966 rad pos: 61.5,19.5 @@ -150443,7 +150460,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19377 + - uid: 19392 components: - rot: -1.5707963267948966 rad pos: 61.5,16.5 @@ -150453,7 +150470,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19378 + - uid: 19393 components: - rot: 1.5707963267948966 rad pos: 57.5,12.5 @@ -150463,7 +150480,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19379 + - uid: 19394 components: - rot: 3.141592653589793 rad pos: 40.5,19.5 @@ -150473,7 +150490,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19380 + - uid: 19395 components: - rot: 1.5707963267948966 rad pos: 34.5,20.5 @@ -150483,7 +150500,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19381 + - uid: 19396 components: - rot: -1.5707963267948966 rad pos: 56.5,1.5 @@ -150493,7 +150510,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19382 + - uid: 19397 components: - rot: 1.5707963267948966 rad pos: 41.5,-1.5 @@ -150503,7 +150520,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19383 + - uid: 19398 components: - rot: 1.5707963267948966 rad pos: 36.5,-2.5 @@ -150513,7 +150530,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19384 + - uid: 19399 components: - rot: -1.5707963267948966 rad pos: 29.5,22.5 @@ -150523,7 +150540,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19385 + - uid: 19400 components: - rot: 3.141592653589793 rad pos: 38.5,0.5 @@ -150533,7 +150550,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19386 + - uid: 19401 components: - rot: -1.5707963267948966 rad pos: 46.5,-2.5 @@ -150543,7 +150560,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19387 + - uid: 19402 components: - rot: 1.5707963267948966 rad pos: 41.5,9.5 @@ -150553,7 +150570,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19388 + - uid: 19403 components: - rot: -1.5707963267948966 rad pos: 57.5,-12.5 @@ -150563,7 +150580,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19389 + - uid: 19404 components: - rot: 3.141592653589793 rad pos: 73.5,-28.5 @@ -150573,7 +150590,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19390 + - uid: 19405 components: - pos: 43.5,-37.5 parent: 2 @@ -150582,7 +150599,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19391 + - uid: 19406 components: - rot: -1.5707963267948966 rad pos: 50.5,-43.5 @@ -150592,7 +150609,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19392 + - uid: 19407 components: - pos: 55.5,-42.5 parent: 2 @@ -150601,7 +150618,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19393 + - uid: 19408 components: - pos: 45.5,-42.5 parent: 2 @@ -150610,7 +150627,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19394 + - uid: 19409 components: - pos: 56.5,-44.5 parent: 2 @@ -150619,7 +150636,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19395 + - uid: 19410 components: - rot: 3.141592653589793 rad pos: 63.5,-47.5 @@ -150629,7 +150646,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19396 + - uid: 19411 components: - rot: 1.5707963267948966 rad pos: 62.5,-26.5 @@ -150639,7 +150656,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19397 + - uid: 19412 components: - pos: 63.5,-2.5 parent: 2 @@ -150648,7 +150665,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19398 + - uid: 19413 components: - rot: 3.141592653589793 rad pos: 64.5,-52.5 @@ -150658,7 +150675,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19399 + - uid: 19414 components: - rot: 3.141592653589793 rad pos: 42.5,-46.5 @@ -150668,7 +150685,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19400 + - uid: 19415 components: - rot: -1.5707963267948966 rad pos: 50.5,-54.5 @@ -150678,7 +150695,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19401 + - uid: 19416 components: - rot: 1.5707963267948966 rad pos: 48.5,-52.5 @@ -150688,7 +150705,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19402 + - uid: 19417 components: - rot: 3.141592653589793 rad pos: 70.5,-49.5 @@ -150698,7 +150715,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19403 + - uid: 19418 components: - rot: 1.5707963267948966 rad pos: 31.5,-52.5 @@ -150708,7 +150725,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19404 + - uid: 19419 components: - rot: -1.5707963267948966 rad pos: 33.5,-56.5 @@ -150718,7 +150735,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19405 + - uid: 19420 components: - rot: 1.5707963267948966 rad pos: 33.5,-48.5 @@ -150728,7 +150745,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19406 + - uid: 19421 components: - pos: 34.5,-45.5 parent: 2 @@ -150737,7 +150754,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19407 + - uid: 19422 components: - pos: 28.5,-48.5 parent: 2 @@ -150746,7 +150763,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19408 + - uid: 19423 components: - rot: 3.141592653589793 rad pos: -13.5,6.5 @@ -150756,7 +150773,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19409 + - uid: 19424 components: - rot: 3.141592653589793 rad pos: -19.5,4.5 @@ -150766,7 +150783,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19410 + - uid: 19425 components: - pos: -24.5,-9.5 parent: 2 @@ -150775,7 +150792,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19411 + - uid: 19426 components: - rot: 3.141592653589793 rad pos: -28.5,-11.5 @@ -150785,7 +150802,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19412 + - uid: 19427 components: - rot: 1.5707963267948966 rad pos: -19.5,-19.5 @@ -150795,7 +150812,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19413 + - uid: 19428 components: - rot: 3.141592653589793 rad pos: -23.5,-22.5 @@ -150805,7 +150822,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19414 + - uid: 19429 components: - rot: -1.5707963267948966 rad pos: 54.5,-61.5 @@ -150815,7 +150832,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19415 + - uid: 19430 components: - rot: 1.5707963267948966 rad pos: 50.5,-60.5 @@ -150823,7 +150840,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 19416 + - uid: 19431 components: - pos: 40.5,-55.5 parent: 2 @@ -150832,7 +150849,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19417 + - uid: 19432 components: - rot: 1.5707963267948966 rad pos: 39.5,-65.5 @@ -150842,7 +150859,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19418 + - uid: 19433 components: - rot: -1.5707963267948966 rad pos: -17.5,-43.5 @@ -150852,7 +150869,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19419 + - uid: 19434 components: - rot: 1.5707963267948966 rad pos: -19.5,-31.5 @@ -150862,7 +150879,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19420 + - uid: 19435 components: - rot: 1.5707963267948966 rad pos: -19.5,-46.5 @@ -150872,7 +150889,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19421 + - uid: 19436 components: - rot: -1.5707963267948966 rad pos: 30.5,-85.5 @@ -150882,7 +150899,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19422 + - uid: 19437 components: - rot: -1.5707963267948966 rad pos: 49.5,-73.5 @@ -150892,7 +150909,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19423 + - uid: 19438 components: - rot: -1.5707963267948966 rad pos: 41.5,-71.5 @@ -150902,7 +150919,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19424 + - uid: 19439 components: - pos: 3.5,-57.5 parent: 2 @@ -150911,7 +150928,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19425 + - uid: 19440 components: - rot: 3.141592653589793 rad pos: -29.5,-17.5 @@ -150921,7 +150938,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19426 + - uid: 19441 components: - rot: -1.5707963267948966 rad pos: -31.5,-25.5 @@ -150931,7 +150948,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19427 + - uid: 19442 components: - rot: 1.5707963267948966 rad pos: -34.5,-17.5 @@ -150941,7 +150958,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19428 + - uid: 19443 components: - pos: -35.5,-9.5 parent: 2 @@ -150950,7 +150967,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19429 + - uid: 19444 components: - rot: -1.5707963267948966 rad pos: -41.5,-15.5 @@ -150960,7 +150977,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19430 + - uid: 19445 components: - pos: -44.5,-9.5 parent: 2 @@ -150969,7 +150986,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19431 + - uid: 19446 components: - pos: -47.5,-22.5 parent: 2 @@ -150978,7 +150995,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19432 + - uid: 19447 components: - rot: 1.5707963267948966 rad pos: -51.5,-23.5 @@ -150988,7 +151005,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19433 + - uid: 19448 components: - rot: 1.5707963267948966 rad pos: -53.5,-16.5 @@ -150998,7 +151015,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19434 + - uid: 19449 components: - pos: -47.5,-5.5 parent: 2 @@ -151007,7 +151024,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19435 + - uid: 19450 components: - rot: 3.141592653589793 rad pos: -56.5,-24.5 @@ -151017,7 +151034,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19436 + - uid: 19451 components: - rot: -1.5707963267948966 rad pos: -67.5,-27.5 @@ -151027,7 +151044,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19437 + - uid: 19452 components: - rot: 3.141592653589793 rad pos: -68.5,-31.5 @@ -151037,7 +151054,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19438 + - uid: 19453 components: - rot: -1.5707963267948966 rad pos: -31.5,-37.5 @@ -151047,7 +151064,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19439 + - uid: 19454 components: - rot: 3.141592653589793 rad pos: -33.5,-34.5 @@ -151057,7 +151074,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19440 + - uid: 19455 components: - rot: 1.5707963267948966 rad pos: -38.5,-33.5 @@ -151067,7 +151084,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19441 + - uid: 19456 components: - rot: -1.5707963267948966 rad pos: -24.5,-33.5 @@ -151077,7 +151094,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19442 + - uid: 19457 components: - rot: 1.5707963267948966 rad pos: -43.5,-34.5 @@ -151087,7 +151104,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19443 + - uid: 19458 components: - rot: 3.141592653589793 rad pos: -24.5,-58.5 @@ -151097,7 +151114,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19444 + - uid: 19459 components: - rot: 3.141592653589793 rad pos: -27.5,-70.5 @@ -151107,7 +151124,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19445 + - uid: 19460 components: - rot: -1.5707963267948966 rad pos: -18.5,-57.5 @@ -151117,7 +151134,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19446 + - uid: 19461 components: - rot: 3.141592653589793 rad pos: -42.5,-72.5 @@ -151127,7 +151144,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19447 + - uid: 19462 components: - rot: -1.5707963267948966 rad pos: -19.5,16.5 @@ -151137,7 +151154,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19448 + - uid: 19463 components: - rot: 3.141592653589793 rad pos: -23.5,19.5 @@ -151147,7 +151164,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19449 + - uid: 19464 components: - pos: -28.5,21.5 parent: 2 @@ -151156,7 +151173,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19450 + - uid: 19465 components: - rot: 3.141592653589793 rad pos: -33.5,19.5 @@ -151166,7 +151183,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19451 + - uid: 19466 components: - rot: 1.5707963267948966 rad pos: -42.5,20.5 @@ -151176,7 +151193,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19452 + - uid: 19467 components: - pos: -33.5,28.5 parent: 2 @@ -151185,7 +151202,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19453 + - uid: 19468 components: - rot: -1.5707963267948966 rad pos: -37.5,29.5 @@ -151195,7 +151212,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19454 + - uid: 19469 components: - rot: 1.5707963267948966 rad pos: -25.5,13.5 @@ -151205,7 +151222,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19455 + - uid: 19470 components: - rot: 3.141592653589793 rad pos: -29.5,-3.5 @@ -151215,7 +151232,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19456 + - uid: 19471 components: - rot: 3.141592653589793 rad pos: -39.5,-0.5 @@ -151225,7 +151242,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19457 + - uid: 19472 components: - rot: -1.5707963267948966 rad pos: -37.5,3.5 @@ -151235,7 +151252,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19458 + - uid: 19473 components: - rot: 1.5707963267948966 rad pos: -39.5,8.5 @@ -151245,7 +151262,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19459 + - uid: 19474 components: - pos: -30.5,15.5 parent: 2 @@ -151254,7 +151271,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19460 + - uid: 19475 components: - rot: 3.141592653589793 rad pos: -30.5,9.5 @@ -151264,7 +151281,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19461 + - uid: 19476 components: - rot: 3.141592653589793 rad pos: -52.5,7.5 @@ -151274,7 +151291,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19462 + - uid: 19477 components: - pos: -51.5,11.5 parent: 2 @@ -151283,7 +151300,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19463 + - uid: 19478 components: - pos: -52.5,14.5 parent: 2 @@ -151292,7 +151309,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19464 + - uid: 19479 components: - rot: -1.5707963267948966 rad pos: -42.5,10.5 @@ -151302,7 +151319,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19465 + - uid: 19480 components: - rot: 1.5707963267948966 rad pos: -48.5,3.5 @@ -151312,7 +151329,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19466 + - uid: 19481 components: - rot: 3.141592653589793 rad pos: -47.5,-0.5 @@ -151322,7 +151339,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19467 + - uid: 19482 components: - pos: -46.5,15.5 parent: 2 @@ -151331,7 +151348,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19468 + - uid: 19483 components: - rot: 1.5707963267948966 rad pos: 21.5,-54.5 @@ -151341,7 +151358,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19469 + - uid: 19484 components: - rot: 3.141592653589793 rad pos: -54.5,-77.5 @@ -151351,7 +151368,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19470 + - uid: 19485 components: - rot: 3.141592653589793 rad pos: -7.5,-26.5 @@ -151361,7 +151378,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19471 + - uid: 19486 components: - pos: 17.5,-42.5 parent: 2 @@ -151370,7 +151387,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19472 + - uid: 19487 components: - rot: 1.5707963267948966 rad pos: -25.5,-2.5 @@ -151380,7 +151397,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19473 + - uid: 19488 components: - rot: 1.5707963267948966 rad pos: -35.5,-42.5 @@ -151390,7 +151407,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19474 + - uid: 19489 components: - rot: 3.141592653589793 rad pos: -72.5,-24.5 @@ -151400,7 +151417,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19475 + - uid: 19490 components: - rot: 1.5707963267948966 rad pos: 39.5,45.5 @@ -151410,7 +151427,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19476 + - uid: 19491 components: - rot: 1.5707963267948966 rad pos: 51.5,43.5 @@ -151420,7 +151437,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19477 + - uid: 19492 components: - pos: 52.5,56.5 parent: 2 @@ -151429,7 +151446,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19478 + - uid: 19493 components: - rot: -1.5707963267948966 rad pos: -12.5,34.5 @@ -151439,7 +151456,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19479 + - uid: 19494 components: - rot: 1.5707963267948966 rad pos: -24.5,30.5 @@ -151449,7 +151466,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19480 + - uid: 19495 components: - rot: -1.5707963267948966 rad pos: -14.5,43.5 @@ -151459,7 +151476,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19481 + - uid: 19496 components: - rot: 1.5707963267948966 rad pos: -20.5,43.5 @@ -151469,14 +151486,14 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19482 + - uid: 19497 components: - pos: 70.5,36.5 parent: 2 type: Transform - enabled: False type: AmbientSound - - uid: 19483 + - uid: 19498 components: - rot: -1.5707963267948966 rad pos: -11.5,39.5 @@ -151486,7 +151503,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19484 + - uid: 19499 components: - rot: -1.5707963267948966 rad pos: 1.5,69.5 @@ -151496,7 +151513,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19485 + - uid: 19500 components: - rot: 1.5707963267948966 rad pos: -4.5,69.5 @@ -151506,7 +151523,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19486 + - uid: 19501 components: - rot: -1.5707963267948966 rad pos: -1.5,62.5 @@ -151516,7 +151533,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19487 + - uid: 19502 components: - pos: -1.5,68.5 parent: 2 @@ -151525,7 +151542,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19488 + - uid: 19503 components: - rot: -1.5707963267948966 rad pos: 0.5,48.5 @@ -151535,7 +151552,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19489 + - uid: 19504 components: - rot: 1.5707963267948966 rad pos: -22.5,58.5 @@ -151545,7 +151562,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19490 + - uid: 19505 components: - pos: -17.5,63.5 parent: 2 @@ -151554,7 +151571,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19491 + - uid: 19506 components: - pos: -21.5,73.5 parent: 2 @@ -151563,7 +151580,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19492 + - uid: 19507 components: - pos: -13.5,73.5 parent: 2 @@ -151572,7 +151589,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19493 + - uid: 19508 components: - rot: -1.5707963267948966 rad pos: -12.5,57.5 @@ -151582,7 +151599,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19494 + - uid: 19509 components: - rot: -1.5707963267948966 rad pos: 0.5,56.5 @@ -151592,7 +151609,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19495 + - uid: 19510 components: - rot: -1.5707963267948966 rad pos: 30.5,45.5 @@ -151602,7 +151619,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19496 + - uid: 19511 components: - rot: 1.5707963267948966 rad pos: 24.5,45.5 @@ -151612,7 +151629,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19497 + - uid: 19512 components: - pos: -7.5,-92.5 parent: 2 @@ -151621,7 +151638,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19498 + - uid: 19513 components: - pos: -21.5,-97.5 parent: 2 @@ -151630,7 +151647,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19499 + - uid: 19514 components: - rot: -1.5707963267948966 rad pos: -6.5,-98.5 @@ -151640,7 +151657,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19500 + - uid: 19515 components: - pos: -6.5,-84.5 parent: 2 @@ -151649,7 +151666,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19501 + - uid: 19516 components: - rot: 1.5707963267948966 rad pos: -34.5,-96.5 @@ -151659,7 +151676,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19502 + - uid: 19517 components: - rot: -1.5707963267948966 rad pos: -71.5,-44.5 @@ -151667,7 +151684,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 19503 + - uid: 19518 components: - rot: 3.141592653589793 rad pos: 65.5,-35.5 @@ -151677,7 +151694,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19504 + - uid: 19519 components: - pos: 67.5,-33.5 parent: 2 @@ -151686,7 +151703,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19505 + - uid: 19520 components: - rot: 3.141592653589793 rad pos: 73.5,-35.5 @@ -151696,7 +151713,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19506 + - uid: 19521 components: - rot: -1.5707963267948966 rad pos: 75.5,-41.5 @@ -151706,7 +151723,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19507 + - uid: 19522 components: - rot: -1.5707963267948966 rad pos: 72.5,-46.5 @@ -151716,7 +151733,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19508 + - uid: 19523 components: - pos: 66.5,-38.5 parent: 2 @@ -151725,7 +151742,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19509 + - uid: 19524 components: - rot: 3.141592653589793 rad pos: 5.5,-30.5 @@ -151735,7 +151752,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19510 + - uid: 19525 components: - rot: 1.5707963267948966 rad pos: 59.5,-34.5 @@ -151745,7 +151762,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19511 + - uid: 19526 components: - rot: 3.141592653589793 rad pos: -54.5,-63.5 @@ -151753,7 +151770,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 19512 + - uid: 19527 components: - rot: -1.5707963267948966 rad pos: -15.5,25.5 @@ -151763,7 +151780,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19513 + - uid: 19528 components: - rot: 1.5707963267948966 rad pos: -8.5,-12.5 @@ -151773,7 +151790,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19514 + - uid: 19529 components: - rot: -1.5707963267948966 rad pos: -7.5,-22.5 @@ -151783,7 +151800,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19515 + - uid: 19530 components: - pos: -10.5,-18.5 parent: 2 @@ -151792,7 +151809,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19516 + - uid: 19531 components: - rot: 3.141592653589793 rad pos: -30.5,-70.5 @@ -151802,7 +151819,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19517 + - uid: 19532 components: - rot: 3.141592653589793 rad pos: -28.5,-74.5 @@ -151812,7 +151829,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19518 + - uid: 19533 components: - rot: 1.5707963267948966 rad pos: 61.5,-39.5 @@ -151822,7 +151839,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19519 + - uid: 19534 components: - rot: 1.5707963267948966 rad pos: 19.5,-83.5 @@ -151832,7 +151849,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19520 + - uid: 19535 components: - pos: 24.5,-72.5 parent: 2 @@ -151841,7 +151858,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19521 + - uid: 19536 components: - rot: 3.141592653589793 rad pos: 48.5,-85.5 @@ -151851,7 +151868,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19522 + - uid: 19537 components: - rot: 1.5707963267948966 rad pos: -16.5,66.5 @@ -151861,7 +151878,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19523 + - uid: 19538 components: - rot: 1.5707963267948966 rad pos: 7.5,-22.5 @@ -151871,7 +151888,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19524 + - uid: 19539 components: - pos: 45.5,7.5 parent: 2 @@ -151880,7 +151897,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19525 + - uid: 19540 components: - rot: 3.141592653589793 rad pos: -44.5,30.5 @@ -151892,7 +151909,7 @@ entities: type: AtmosPipeColor - nextSound: 1401.3353177 type: EmitSoundOnCollide - - uid: 19526 + - uid: 19541 components: - pos: -46.5,43.5 parent: 2 @@ -151903,7 +151920,7 @@ entities: type: AtmosPipeColor - nextSound: 1403.4394167 type: EmitSoundOnCollide - - uid: 30658 + - uid: 19542 components: - rot: -1.5707963267948966 rad pos: 67.5,-31.5 @@ -151917,7 +151934,7 @@ entities: type: EmitSoundOnCollide - proto: GasVolumePump entities: - - uid: 19527 + - uid: 19543 components: - rot: -1.5707963267948966 rad pos: -39.5,-57.5 @@ -151927,5096 +151944,5101 @@ entities: type: AtmosPipeColor - proto: Gauze1 entities: - - uid: 19528 + - uid: 19544 components: - pos: -6.3074856,-49.39305 parent: 2 type: Transform - proto: GeneratorBasic entities: - - uid: 19529 + - uid: 19545 components: - pos: -58.5,-88.5 parent: 2 type: Transform - - uid: 19530 + - uid: 19546 components: - pos: -58.5,-86.5 parent: 2 type: Transform - proto: GeneratorPlasma entities: - - uid: 19531 + - uid: 19547 components: - pos: 4.5,-22.5 parent: 2 type: Transform + - uid: 19548 + components: + - pos: 4.5,-23.5 + parent: 2 + type: Transform - proto: Girder entities: - - uid: 19532 + - uid: 19549 components: - pos: -36.5,-68.5 parent: 2 type: Transform - - uid: 19533 + - uid: 19550 components: - pos: 20.5,-54.5 parent: 2 type: Transform - - uid: 19534 + - uid: 19551 components: - pos: -22.5,-64.5 parent: 2 type: Transform - - uid: 19535 + - uid: 19552 components: - pos: -23.5,-42.5 parent: 2 type: Transform - - uid: 19536 + - uid: 19553 components: - pos: -28.5,-39.5 parent: 2 type: Transform - proto: GoldOre1 entities: - - uid: 19537 + - uid: 19554 components: - rot: 3.141592653589793 rad pos: 19.789879,45.273663 parent: 2 type: Transform - - uid: 19538 + - uid: 19555 components: - pos: 79.30878,-64.25522 parent: 2 type: Transform - proto: GravityGenerator entities: - - uid: 19539 + - uid: 19556 components: - pos: -19.5,2.5 parent: 2 type: Transform - proto: GrenadeFlashBang entities: - - uid: 19540 + - uid: 19557 components: - pos: 52.279568,11.553763 parent: 2 type: Transform - proto: Grille entities: - - uid: 19541 + - uid: 19558 components: - rot: 3.141592653589793 rad pos: 5.5,18.5 parent: 2 type: Transform - - uid: 19542 + - uid: 19559 components: - rot: -1.5707963267948966 rad pos: -46.5,45.5 parent: 2 type: Transform - - uid: 19543 + - uid: 19560 components: - rot: -1.5707963267948966 rad pos: -45.5,45.5 parent: 2 type: Transform - - uid: 19544 + - uid: 19561 components: - rot: -1.5707963267948966 rad pos: -47.5,45.5 parent: 2 type: Transform - - uid: 19545 + - uid: 19562 components: - pos: 32.5,-9.5 parent: 2 type: Transform - - uid: 19546 + - uid: 19563 components: - rot: 3.141592653589793 rad pos: 28.5,-63.5 parent: 2 type: Transform - - uid: 19547 + - uid: 19564 components: - pos: 19.5,-0.5 parent: 2 type: Transform - - uid: 19548 + - uid: 19565 components: - pos: -24.5,-91.5 parent: 2 type: Transform - - uid: 19549 + - uid: 19566 components: - pos: -18.5,-88.5 parent: 2 type: Transform - - uid: 19550 + - uid: 19567 components: - pos: -18.5,-58.5 parent: 2 type: Transform - - uid: 19551 + - uid: 19568 components: - pos: 31.5,-15.5 parent: 2 type: Transform - - uid: 19552 + - uid: 19569 components: - pos: -9.5,-55.5 parent: 2 type: Transform - - uid: 19553 + - uid: 19570 components: - pos: -12.5,-55.5 parent: 2 type: Transform - - uid: 19554 + - uid: 19571 components: - pos: -4.5,-56.5 parent: 2 type: Transform - - uid: 19555 + - uid: 19572 components: - pos: 22.5,-20.5 parent: 2 type: Transform - - uid: 19556 + - uid: 19573 components: - pos: 21.5,5.5 parent: 2 type: Transform - - uid: 19557 + - uid: 19574 components: - pos: 23.5,5.5 parent: 2 type: Transform - - uid: 19558 + - uid: 19575 components: - pos: 25.5,5.5 parent: 2 type: Transform - - uid: 19559 + - uid: 19576 components: - pos: 3.5,-39.5 parent: 2 type: Transform - - uid: 19560 + - uid: 19577 components: - pos: -7.5,-56.5 parent: 2 type: Transform - - uid: 19561 + - uid: 19578 components: - pos: 1.5,-47.5 parent: 2 type: Transform - - uid: 19562 + - uid: 19579 components: - pos: 29.5,26.5 parent: 2 type: Transform - - uid: 19563 + - uid: 19580 components: - pos: -13.5,-56.5 parent: 2 type: Transform - - uid: 19564 + - uid: 19581 components: - pos: -7.5,-57.5 parent: 2 type: Transform - - uid: 19565 + - uid: 19582 components: - pos: 7.5,-59.5 parent: 2 type: Transform - - uid: 19566 + - uid: 19583 components: - pos: -18.5,-68.5 parent: 2 type: Transform - - uid: 19567 + - uid: 19584 components: - pos: -20.5,-68.5 parent: 2 type: Transform - - uid: 19568 + - uid: 19585 components: - pos: -3.5,-44.5 parent: 2 type: Transform - - uid: 19569 + - uid: 19586 components: - pos: 0.5,-24.5 parent: 2 type: Transform - - uid: 19570 + - uid: 19587 components: - pos: 12.5,-34.5 parent: 2 type: Transform - - uid: 19571 + - uid: 19588 components: - pos: -1.5,49.5 parent: 2 type: Transform - - uid: 19572 + - uid: 19589 components: - rot: 3.141592653589793 rad pos: 3.5,-44.5 parent: 2 type: Transform - - uid: 19573 + - uid: 19590 components: - pos: 7.5,18.5 parent: 2 type: Transform - - uid: 19574 + - uid: 19591 components: - rot: 1.5707963267948966 rad pos: 23.5,-46.5 parent: 2 type: Transform - - uid: 19575 + - uid: 19592 components: - pos: 2.5,-62.5 parent: 2 type: Transform - - uid: 19576 + - uid: 19593 components: - pos: 3.5,-78.5 parent: 2 type: Transform - - uid: 19577 + - uid: 19594 components: - pos: -6.5,-55.5 parent: 2 type: Transform - - uid: 19578 + - uid: 19595 components: - pos: -12.5,-58.5 parent: 2 type: Transform - - uid: 19579 + - uid: 19596 components: - rot: 1.5707963267948966 rad pos: -17.5,26.5 parent: 2 type: Transform - - uid: 19580 + - uid: 19597 components: - pos: -1.5,-35.5 parent: 2 type: Transform - - uid: 19581 + - uid: 19598 components: - pos: -28.5,-47.5 parent: 2 type: Transform - - uid: 19582 + - uid: 19599 components: - rot: -1.5707963267948966 rad pos: 3.5,-2.5 parent: 2 type: Transform - - uid: 19583 + - uid: 19600 components: - pos: 24.5,-60.5 parent: 2 type: Transform - - uid: 19584 + - uid: 19601 components: - rot: 3.141592653589793 rad pos: 22.5,30.5 parent: 2 type: Transform - - uid: 19585 + - uid: 19602 components: - pos: 23.5,-40.5 parent: 2 type: Transform - - uid: 19586 + - uid: 19603 components: - pos: 24.5,-40.5 parent: 2 type: Transform - - uid: 19587 + - uid: 19604 components: - pos: 25.5,-40.5 parent: 2 type: Transform - - uid: 19588 + - uid: 19605 components: - pos: 26.5,-40.5 parent: 2 type: Transform - - uid: 19589 + - uid: 19606 components: - pos: 21.5,-3.5 parent: 2 type: Transform - - uid: 19590 + - uid: 19607 components: - pos: 23.5,-3.5 parent: 2 type: Transform - - uid: 19591 + - uid: 19608 components: - pos: -6.5,-58.5 parent: 2 type: Transform - - uid: 19592 + - uid: 19609 components: - pos: 25.5,24.5 parent: 2 type: Transform - - uid: 19593 + - uid: 19610 components: - pos: -10.5,-57.5 parent: 2 type: Transform - - uid: 19594 + - uid: 19611 components: - pos: 1.5,-24.5 parent: 2 type: Transform - - uid: 19595 + - uid: 19612 components: - pos: 29.5,9.5 parent: 2 type: Transform - - uid: 19596 + - uid: 19613 components: - rot: 3.141592653589793 rad pos: 22.5,32.5 parent: 2 type: Transform - - uid: 19597 + - uid: 19614 components: - pos: 15.5,18.5 parent: 2 type: Transform - - uid: 19598 + - uid: 19615 components: - pos: -13.5,-11.5 parent: 2 type: Transform - - uid: 19599 + - uid: 19616 components: - rot: 3.141592653589793 rad pos: 33.5,-63.5 parent: 2 type: Transform - - uid: 19600 + - uid: 19617 components: - rot: 3.141592653589793 rad pos: 22.5,-55.5 parent: 2 type: Transform - - uid: 19601 + - uid: 19618 components: - pos: -9.5,-62.5 parent: 2 type: Transform - - uid: 19602 + - uid: 19619 components: - pos: 4.5,-85.5 parent: 2 type: Transform - - uid: 19603 + - uid: 19620 components: - pos: 18.5,-38.5 parent: 2 type: Transform - - uid: 19604 + - uid: 19621 components: - pos: 17.5,-36.5 parent: 2 type: Transform - - uid: 19605 + - uid: 19622 components: - pos: 17.5,-34.5 parent: 2 type: Transform - - uid: 19606 + - uid: 19623 components: - pos: -27.5,-89.5 parent: 2 type: Transform - - uid: 19607 + - uid: 19624 components: - pos: -1.5,-33.5 parent: 2 type: Transform - - uid: 19608 + - uid: 19625 components: - pos: 4.5,-84.5 parent: 2 type: Transform - - uid: 19609 + - uid: 19626 components: - pos: -14.5,-77.5 parent: 2 type: Transform - - uid: 19610 + - uid: 19627 components: - pos: -21.5,-91.5 parent: 2 type: Transform - - uid: 19611 + - uid: 19628 components: - pos: 4.5,-88.5 parent: 2 type: Transform - - uid: 19612 + - uid: 19629 components: - pos: -25.5,-91.5 parent: 2 type: Transform - - uid: 19613 + - uid: 19630 components: - pos: 4.5,-81.5 parent: 2 type: Transform - - uid: 19614 + - uid: 19631 components: - pos: -18.5,-89.5 parent: 2 type: Transform - - uid: 19615 + - uid: 19632 components: - pos: 4.5,-87.5 parent: 2 type: Transform - - uid: 19616 + - uid: 19633 components: - pos: 19.5,0.5 parent: 2 type: Transform - - uid: 19617 + - uid: 19634 components: - pos: 19.5,-38.5 parent: 2 type: Transform - - uid: 19618 + - uid: 19635 components: - pos: 2.5,-24.5 parent: 2 type: Transform - - uid: 19619 + - uid: 19636 components: - pos: 23.5,-12.5 parent: 2 type: Transform - - uid: 19620 + - uid: 19637 components: - pos: 21.5,-15.5 parent: 2 type: Transform - - uid: 19621 + - uid: 19638 components: - pos: 19.5,1.5 parent: 2 type: Transform - - uid: 19622 + - uid: 19639 components: - pos: 28.5,-20.5 parent: 2 type: Transform - - uid: 19623 + - uid: 19640 components: - rot: 3.141592653589793 rad pos: 20.5,-55.5 parent: 2 type: Transform - - uid: 19624 + - uid: 19641 components: - rot: 3.141592653589793 rad pos: 21.5,-55.5 parent: 2 type: Transform - - uid: 19625 + - uid: 19642 components: - pos: 18.5,-66.5 parent: 2 type: Transform - - uid: 19626 + - uid: 19643 components: - pos: 18.5,-65.5 parent: 2 type: Transform - - uid: 19627 + - uid: 19644 components: - rot: 3.141592653589793 rad pos: 28.5,-62.5 parent: 2 type: Transform - - uid: 19628 + - uid: 19645 components: - pos: 42.5,-23.5 parent: 2 type: Transform - - uid: 19629 + - uid: 19646 components: - pos: 41.5,-23.5 parent: 2 type: Transform - - uid: 19630 + - uid: 19647 components: - rot: 3.141592653589793 rad pos: 31.5,-64.5 parent: 2 type: Transform - - uid: 19631 + - uid: 19648 components: - pos: -21.5,11.5 parent: 2 type: Transform - - uid: 19632 + - uid: 19649 components: - pos: 27.5,-38.5 parent: 2 type: Transform - - uid: 19633 + - uid: 19650 components: - pos: -10.5,-11.5 parent: 2 type: Transform - - uid: 19634 + - uid: 19651 components: - pos: -12.5,-16.5 parent: 2 type: Transform - - uid: 19635 + - uid: 19652 components: - rot: -1.5707963267948966 rad pos: -26.5,-9.5 parent: 2 type: Transform - - uid: 19636 + - uid: 19653 components: - pos: 12.5,-33.5 parent: 2 type: Transform - - uid: 19637 + - uid: 19654 components: - pos: 12.5,-32.5 parent: 2 type: Transform - - uid: 19638 + - uid: 19655 components: - rot: 3.141592653589793 rad pos: 26.5,-20.5 parent: 2 type: Transform - - uid: 19639 + - uid: 19656 components: - pos: 3.5,-36.5 parent: 2 type: Transform - - uid: 19640 + - uid: 19657 components: - pos: 2.5,-39.5 parent: 2 type: Transform - - uid: 19641 + - uid: 19658 components: - rot: 3.141592653589793 rad pos: 22.5,29.5 parent: 2 type: Transform - - uid: 19642 + - uid: 19659 components: - rot: 3.141592653589793 rad pos: 22.5,31.5 parent: 2 type: Transform - - uid: 19643 + - uid: 19660 components: - rot: 3.141592653589793 rad pos: 22.5,33.5 parent: 2 type: Transform - - uid: 19644 + - uid: 19661 components: - rot: 3.141592653589793 rad pos: 22.5,37.5 parent: 2 type: Transform - - uid: 19645 + - uid: 19662 components: - pos: 5.5,-58.5 parent: 2 type: Transform - - uid: 19646 + - uid: 19663 components: - rot: -1.5707963267948966 rad pos: 43.5,5.5 parent: 2 type: Transform - - uid: 19647 + - uid: 19664 components: - pos: 4.5,-86.5 parent: 2 type: Transform - - uid: 19648 + - uid: 19665 components: - pos: 4.5,-83.5 parent: 2 type: Transform - - uid: 19649 + - uid: 19666 components: - pos: 18.5,33.5 parent: 2 type: Transform - - uid: 19650 + - uid: 19667 components: - pos: -1.5,-31.5 parent: 2 type: Transform - - uid: 19651 + - uid: 19668 components: - pos: 15.5,-68.5 parent: 2 type: Transform - - uid: 19652 + - uid: 19669 components: - pos: 42.5,-28.5 parent: 2 type: Transform - - uid: 19653 + - uid: 19670 components: - pos: 41.5,-28.5 parent: 2 type: Transform - - uid: 19654 + - uid: 19671 components: - rot: -1.5707963267948966 rad pos: -31.5,-77.5 parent: 2 type: Transform - - uid: 19655 + - uid: 19672 components: - pos: -1.5,-32.5 parent: 2 type: Transform - - uid: 19656 + - uid: 19673 components: - rot: 3.141592653589793 rad pos: 6.5,-20.5 parent: 2 type: Transform - - uid: 19657 + - uid: 19674 components: - pos: 0.5,-62.5 parent: 2 type: Transform - - uid: 19658 + - uid: 19675 components: - pos: 7.5,-61.5 parent: 2 type: Transform - - uid: 19659 + - uid: 19676 components: - pos: 26.5,-3.5 parent: 2 type: Transform - - uid: 19660 + - uid: 19677 components: - pos: -13.5,37.5 parent: 2 type: Transform - - uid: 19661 + - uid: 19678 components: - pos: -15.5,-77.5 parent: 2 type: Transform - - uid: 19662 + - uid: 19679 components: - pos: 3.5,-79.5 parent: 2 type: Transform - - uid: 19663 + - uid: 19680 components: - pos: 19.5,2.5 parent: 2 type: Transform - - uid: 19664 + - uid: 19681 components: - rot: -1.5707963267948966 rad pos: -21.5,-20.5 parent: 2 type: Transform - - uid: 19665 + - uid: 19682 components: - pos: 34.5,9.5 parent: 2 type: Transform - - uid: 19666 + - uid: 19683 components: - pos: 35.5,4.5 parent: 2 type: Transform - - uid: 19667 + - uid: 19684 components: - pos: 1.5,-56.5 parent: 2 type: Transform - - uid: 19668 + - uid: 19685 components: - pos: 1.5,-57.5 parent: 2 type: Transform - - uid: 19669 + - uid: 19686 components: - pos: -10.5,-56.5 parent: 2 type: Transform - - uid: 19670 + - uid: 19687 components: - pos: -13.5,-57.5 parent: 2 type: Transform - - uid: 19671 + - uid: 19688 components: - pos: -4.5,-44.5 parent: 2 type: Transform - - uid: 19672 + - uid: 19689 components: - pos: -5.5,-44.5 parent: 2 type: Transform - - uid: 19673 + - uid: 19690 components: - pos: 5.5,-44.5 parent: 2 type: Transform - - uid: 19674 + - uid: 19691 components: - pos: 4.5,-44.5 parent: 2 type: Transform - - uid: 19675 + - uid: 19692 components: - pos: 18.5,32.5 parent: 2 type: Transform - - uid: 19676 + - uid: 19693 components: - pos: -0.5,-62.5 parent: 2 type: Transform - - uid: 19677 + - uid: 19694 components: - pos: -8.5,-62.5 parent: 2 type: Transform - - uid: 19678 + - uid: 19695 components: - rot: 1.5707963267948966 rad pos: -2.5,-4.5 parent: 2 type: Transform - - uid: 19679 + - uid: 19696 components: - pos: 3.5,-77.5 parent: 2 type: Transform - - uid: 19680 + - uid: 19697 components: - rot: 3.141592653589793 rad pos: 33.5,-62.5 parent: 2 type: Transform - - uid: 19681 + - uid: 19698 components: - rot: 3.141592653589793 rad pos: 30.5,-64.5 parent: 2 type: Transform - - uid: 19682 + - uid: 19699 components: - pos: 9.5,14.5 parent: 2 type: Transform - - uid: 19683 + - uid: 19700 components: - rot: 3.141592653589793 rad pos: 22.5,28.5 parent: 2 type: Transform - - uid: 19684 + - uid: 19701 components: - pos: 27.5,-40.5 parent: 2 type: Transform - - uid: 19685 + - uid: 19702 components: - pos: 68.5,-56.5 parent: 2 type: Transform - - uid: 19686 + - uid: 19703 components: - pos: -1.5,-57.5 parent: 2 type: Transform - - uid: 19687 + - uid: 19704 components: - pos: -1.5,-56.5 parent: 2 type: Transform - - uid: 19688 + - uid: 19705 components: - pos: 2.5,-58.5 parent: 2 type: Transform - - uid: 19689 + - uid: 19706 components: - pos: -3.5,-58.5 parent: 2 type: Transform - - uid: 19690 + - uid: 19707 components: - pos: 4.5,-62.5 parent: 2 type: Transform - - uid: 19691 + - uid: 19708 components: - pos: -0.5,-58.5 parent: 2 type: Transform - - uid: 19692 + - uid: 19709 components: - pos: 31.5,-38.5 parent: 2 type: Transform - - uid: 19693 + - uid: 19710 components: - pos: 33.5,-36.5 parent: 2 type: Transform - - uid: 19694 + - uid: 19711 components: - pos: 33.5,-34.5 parent: 2 type: Transform - - uid: 19695 + - uid: 19712 components: - pos: 26.5,5.5 parent: 2 type: Transform - - uid: 19696 + - uid: 19713 components: - pos: 9.5,13.5 parent: 2 type: Transform - - uid: 19697 + - uid: 19714 components: - pos: 17.5,18.5 parent: 2 type: Transform - - uid: 19698 + - uid: 19715 components: - rot: 3.141592653589793 rad pos: -7.5,-76.5 parent: 2 type: Transform - - uid: 19699 + - uid: 19716 components: - pos: 24.5,-59.5 parent: 2 type: Transform - - uid: 19700 + - uid: 19717 components: - pos: -29.5,45.5 parent: 2 type: Transform - - uid: 19701 + - uid: 19718 components: - pos: 24.5,-58.5 parent: 2 type: Transform - - uid: 19702 + - uid: 19719 components: - pos: -6.5,-36.5 parent: 2 type: Transform - - uid: 19703 + - uid: 19720 components: - pos: 19.5,-1.5 parent: 2 type: Transform - - uid: 19704 + - uid: 19721 components: - pos: -1.5,-34.5 parent: 2 type: Transform - - uid: 19705 + - uid: 19722 components: - pos: -27.5,-88.5 parent: 2 type: Transform - - uid: 19706 + - uid: 19723 components: - pos: -20.5,-91.5 parent: 2 type: Transform - - uid: 19707 + - uid: 19724 components: - pos: 17.5,-35.5 parent: 2 type: Transform - - uid: 19708 + - uid: 19725 components: - pos: 33.5,-35.5 parent: 2 type: Transform - - uid: 19709 + - uid: 19726 components: - pos: 22.5,5.5 parent: 2 type: Transform - - uid: 19710 + - uid: 19727 components: - pos: 27.5,5.5 parent: 2 type: Transform - - uid: 19711 + - uid: 19728 components: - pos: 35.5,7.5 parent: 2 type: Transform - - uid: 19712 + - uid: 19729 components: - pos: 32.5,9.5 parent: 2 type: Transform - - uid: 19713 + - uid: 19730 components: - rot: 3.141592653589793 rad pos: 22.5,34.5 parent: 2 type: Transform - - uid: 19714 + - uid: 19731 components: - pos: -3.5,-55.5 parent: 2 type: Transform - - uid: 19715 + - uid: 19732 components: - pos: -0.5,-55.5 parent: 2 type: Transform - - uid: 19716 + - uid: 19733 components: - pos: 2.5,-55.5 parent: 2 type: Transform - - uid: 19717 + - uid: 19734 components: - pos: -20.5,-58.5 parent: 2 type: Transform - - uid: 19718 + - uid: 19735 components: - pos: -9.5,-58.5 parent: 2 type: Transform - - uid: 19719 + - uid: 19736 components: - rot: -1.5707963267948966 rad pos: -31.5,-79.5 parent: 2 type: Transform - - uid: 19720 + - uid: 19737 components: - rot: 3.141592653589793 rad pos: 37.5,-35.5 parent: 2 type: Transform - - uid: 19721 + - uid: 19738 components: - pos: 33.5,-15.5 parent: 2 type: Transform - - uid: 19722 + - uid: 19739 components: - pos: -13.5,39.5 parent: 2 type: Transform - - uid: 19723 + - uid: 19740 components: - pos: -4.5,-57.5 parent: 2 type: Transform - - uid: 19724 + - uid: 19741 components: - pos: 19.5,3.5 parent: 2 type: Transform - - uid: 19725 + - uid: 19742 components: - pos: 4.5,-82.5 parent: 2 type: Transform - - uid: 19726 + - uid: 19743 components: - pos: 32.5,-38.5 parent: 2 type: Transform - - uid: 19727 + - uid: 19744 components: - rot: 3.141592653589793 rad pos: 6.5,-19.5 parent: 2 type: Transform - - uid: 19728 + - uid: 19745 components: - pos: 23.5,-20.5 parent: 2 type: Transform - - uid: 19729 + - uid: 19746 components: - pos: 25.5,-20.5 parent: 2 type: Transform - - uid: 19730 + - uid: 19747 components: - pos: 27.5,-20.5 parent: 2 type: Transform - - uid: 19731 + - uid: 19748 components: - pos: 19.5,-15.5 parent: 2 type: Transform - - uid: 19732 + - uid: 19749 components: - pos: 23.5,-11.5 parent: 2 type: Transform - - uid: 19733 + - uid: 19750 components: - pos: 25.5,-3.5 parent: 2 type: Transform - - uid: 19734 + - uid: 19751 components: - pos: 27.5,-3.5 parent: 2 type: Transform - - uid: 19735 + - uid: 19752 components: - pos: 22.5,-3.5 parent: 2 type: Transform - - uid: 19736 + - uid: 19753 components: - rot: 3.141592653589793 rad pos: -9.5,-76.5 parent: 2 type: Transform - - uid: 19737 + - uid: 19754 components: - rot: 3.141592653589793 rad pos: 24.5,-20.5 parent: 2 type: Transform - - uid: 19738 + - uid: 19755 components: - pos: 16.5,-68.5 parent: 2 type: Transform - - uid: 19739 + - uid: 19756 components: - rot: 3.141592653589793 rad pos: 31.5,13.5 parent: 2 type: Transform - - uid: 19740 + - uid: 19757 components: - rot: 3.141592653589793 rad pos: 34.5,13.5 parent: 2 type: Transform - - uid: 19741 + - uid: 19758 components: - pos: -6.5,-37.5 parent: 2 type: Transform - - uid: 19742 + - uid: 19759 components: - pos: -6.5,-38.5 parent: 2 type: Transform - - uid: 19743 + - uid: 19760 components: - pos: -9.5,-40.5 parent: 2 type: Transform - - uid: 19744 + - uid: 19761 components: - pos: -10.5,-40.5 parent: 2 type: Transform - - uid: 19745 + - uid: 19762 components: - pos: -11.5,-40.5 parent: 2 type: Transform - - uid: 19746 + - uid: 19763 components: - rot: -1.5707963267948966 rad pos: 68.5,-4.5 parent: 2 type: Transform - - uid: 19747 + - uid: 19764 components: - pos: -12.5,-11.5 parent: 2 type: Transform - - uid: 19748 + - uid: 19765 components: - pos: -9.5,-11.5 parent: 2 type: Transform - - uid: 19749 + - uid: 19766 components: - pos: -8.5,-11.5 parent: 2 type: Transform - - uid: 19750 + - uid: 19767 components: - pos: -10.5,-16.5 parent: 2 type: Transform - - uid: 19751 + - uid: 19768 components: - rot: 3.141592653589793 rad pos: 28.5,13.5 parent: 2 type: Transform - - uid: 19752 + - uid: 19769 components: - rot: 3.141592653589793 rad pos: 39.5,8.5 parent: 2 type: Transform - - uid: 19753 + - uid: 19770 components: - rot: 3.141592653589793 rad pos: 39.5,5.5 parent: 2 type: Transform - - uid: 19754 + - uid: 19771 components: - pos: -12.5,14.5 parent: 2 type: Transform - - uid: 19755 + - uid: 19772 components: - rot: 1.5707963267948966 rad pos: 20.5,-44.5 parent: 2 type: Transform - - uid: 19756 + - uid: 19773 components: - pos: 37.5,-36.5 parent: 2 type: Transform - - uid: 19757 + - uid: 19774 components: - pos: 33.5,37.5 parent: 2 type: Transform - - uid: 19758 + - uid: 19775 components: - pos: 32.5,37.5 parent: 2 type: Transform - - uid: 19759 + - uid: 19776 components: - pos: 31.5,37.5 parent: 2 type: Transform - - uid: 19760 + - uid: 19777 components: - pos: 30.5,37.5 parent: 2 type: Transform - - uid: 19761 + - uid: 19778 components: - pos: 29.5,37.5 parent: 2 type: Transform - - uid: 19762 + - uid: 19779 components: - pos: 28.5,37.5 parent: 2 type: Transform - - uid: 19763 + - uid: 19780 components: - pos: 27.5,37.5 parent: 2 type: Transform - - uid: 19764 + - uid: 19781 components: - pos: 26.5,37.5 parent: 2 type: Transform - - uid: 19765 + - uid: 19782 components: - pos: 25.5,37.5 parent: 2 type: Transform - - uid: 19766 + - uid: 19783 components: - rot: 3.141592653589793 rad pos: 23.5,37.5 parent: 2 type: Transform - - uid: 19767 + - uid: 19784 components: - pos: 43.5,11.5 parent: 2 type: Transform - - uid: 19768 + - uid: 19785 components: - pos: 43.5,10.5 parent: 2 type: Transform - - uid: 19769 + - uid: 19786 components: - pos: 53.5,14.5 parent: 2 type: Transform - - uid: 19770 + - uid: 19787 components: - pos: 52.5,14.5 parent: 2 type: Transform - - uid: 19771 + - uid: 19788 components: - pos: 54.5,14.5 parent: 2 type: Transform - - uid: 19772 + - uid: 19789 components: - pos: 51.5,13.5 parent: 2 type: Transform - - uid: 19773 + - uid: 19790 components: - pos: 51.5,11.5 parent: 2 type: Transform - - uid: 19774 + - uid: 19791 components: - pos: 55.5,13.5 parent: 2 type: Transform - - uid: 19775 + - uid: 19792 components: - pos: 55.5,12.5 parent: 2 type: Transform - - uid: 19776 + - uid: 19793 components: - pos: 55.5,11.5 parent: 2 type: Transform - - uid: 19777 + - uid: 19794 components: - pos: 52.5,10.5 parent: 2 type: Transform - - uid: 19778 + - uid: 19795 components: - pos: 54.5,10.5 parent: 2 type: Transform - - uid: 19779 + - uid: 19796 components: - pos: 27.5,22.5 parent: 2 type: Transform - - uid: 19780 + - uid: 19797 components: - pos: -15.5,2.5 parent: 2 type: Transform - - uid: 19781 + - uid: 19798 components: - pos: 48.5,-0.5 parent: 2 type: Transform - - uid: 19782 + - uid: 19799 components: - pos: 43.5,-0.5 parent: 2 type: Transform - - uid: 19783 + - uid: 19800 components: - pos: 42.5,-0.5 parent: 2 type: Transform - - uid: 19784 + - uid: 19801 components: - pos: 41.5,-0.5 parent: 2 type: Transform - - uid: 19785 + - uid: 19802 components: - pos: 39.5,-0.5 parent: 2 type: Transform - - uid: 19786 + - uid: 19803 components: - pos: 37.5,-0.5 parent: 2 type: Transform - - uid: 19787 + - uid: 19804 components: - pos: 35.5,-1.5 parent: 2 type: Transform - - uid: 19788 + - uid: 19805 components: - pos: 35.5,-2.5 parent: 2 type: Transform - - uid: 19789 + - uid: 19806 components: - pos: 35.5,-4.5 parent: 2 type: Transform - - uid: 19790 + - uid: 19807 components: - pos: 35.5,-5.5 parent: 2 type: Transform - - uid: 19791 + - uid: 19808 components: - rot: -1.5707963267948966 rad pos: 36.5,24.5 parent: 2 type: Transform - - uid: 19792 + - uid: 19809 components: - rot: -1.5707963267948966 rad pos: 38.5,24.5 parent: 2 type: Transform - - uid: 19793 + - uid: 19810 components: - rot: -1.5707963267948966 rad pos: 40.5,24.5 parent: 2 type: Transform - - uid: 19794 + - uid: 19811 components: - rot: -1.5707963267948966 rad pos: 42.5,24.5 parent: 2 type: Transform - - uid: 19795 + - uid: 19812 components: - rot: 3.141592653589793 rad pos: 22.5,27.5 parent: 2 type: Transform - - uid: 19796 + - uid: 19813 components: - pos: 43.5,7.5 parent: 2 type: Transform - - uid: 19797 + - uid: 19814 components: - pos: 66.5,25.5 parent: 2 type: Transform - - uid: 19798 + - uid: 19815 components: - pos: 66.5,23.5 parent: 2 type: Transform - - uid: 19799 + - uid: 19816 components: - pos: 64.5,27.5 parent: 2 type: Transform - - uid: 19800 + - uid: 19817 components: - pos: 62.5,27.5 parent: 2 type: Transform - - uid: 19801 + - uid: 19818 components: - rot: -1.5707963267948966 rad pos: 42.5,-44.5 parent: 2 type: Transform - - uid: 19802 + - uid: 19819 components: - pos: 46.5,9.5 parent: 2 type: Transform - - uid: 19803 + - uid: 19820 components: - rot: -1.5707963267948966 rad pos: 67.5,-7.5 parent: 2 type: Transform - - uid: 19804 + - uid: 19821 components: - rot: -1.5707963267948966 rad pos: 66.5,-0.5 parent: 2 type: Transform - - uid: 19805 + - uid: 19822 components: - rot: -1.5707963267948966 rad pos: 66.5,-1.5 parent: 2 type: Transform - - uid: 19806 + - uid: 19823 components: - pos: 60.5,-4.5 parent: 2 type: Transform - - uid: 19807 + - uid: 19824 components: - rot: -1.5707963267948966 rad pos: 67.5,-8.5 parent: 2 type: Transform - - uid: 19808 + - uid: 19825 components: - rot: -1.5707963267948966 rad pos: 67.5,-9.5 parent: 2 type: Transform - - uid: 19809 + - uid: 19826 components: - rot: -1.5707963267948966 rad pos: 68.5,-2.5 parent: 2 type: Transform - - uid: 19810 + - uid: 19827 components: - rot: -1.5707963267948966 rad pos: 68.5,-10.5 parent: 2 type: Transform - - uid: 19811 + - uid: 19828 components: - rot: -1.5707963267948966 rad pos: 68.5,-12.5 parent: 2 type: Transform - - uid: 19812 + - uid: 19829 components: - rot: -1.5707963267948966 rad pos: 68.5,-6.5 parent: 2 type: Transform - - uid: 19813 + - uid: 19830 components: - pos: 61.5,-18.5 parent: 2 type: Transform - - uid: 19814 + - uid: 19831 components: - pos: 63.5,-18.5 parent: 2 type: Transform - - uid: 19815 + - uid: 19832 components: - pos: 61.5,-20.5 parent: 2 type: Transform - - uid: 19816 + - uid: 19833 components: - pos: 63.5,-20.5 parent: 2 type: Transform - - uid: 19817 + - uid: 19834 components: - pos: 61.5,-22.5 parent: 2 type: Transform - - uid: 19818 + - uid: 19835 components: - pos: 63.5,-22.5 parent: 2 type: Transform - - uid: 19819 + - uid: 19836 components: - pos: 61.5,-24.5 parent: 2 type: Transform - - uid: 19820 + - uid: 19837 components: - pos: 63.5,-24.5 parent: 2 type: Transform - - uid: 19821 + - uid: 19838 components: - pos: 63.5,-26.5 parent: 2 type: Transform - - uid: 19822 + - uid: 19839 components: - pos: 49.5,-62.5 parent: 2 type: Transform - - uid: 19824 + - uid: 19840 components: - pos: 56.5,-46.5 parent: 2 type: Transform - - uid: 19825 + - uid: 19841 components: - pos: 63.5,-50.5 parent: 2 type: Transform - - uid: 19826 + - uid: 19842 components: - pos: 61.5,-50.5 parent: 2 type: Transform - - uid: 19827 + - uid: 19843 components: - pos: 58.5,-51.5 parent: 2 type: Transform - - uid: 19828 + - uid: 19844 components: - pos: 58.5,-52.5 parent: 2 type: Transform - - uid: 19829 + - uid: 19845 components: - pos: 54.5,-51.5 parent: 2 type: Transform - - uid: 19830 + - uid: 19846 components: - pos: 54.5,-52.5 parent: 2 type: Transform - - uid: 19831 + - uid: 19847 components: - pos: 54.5,-53.5 parent: 2 type: Transform - - uid: 19832 + - uid: 19848 components: - pos: 61.5,-56.5 parent: 2 type: Transform - - uid: 19833 + - uid: 19849 components: - pos: 62.5,-56.5 parent: 2 type: Transform - - uid: 19834 + - uid: 19850 components: - pos: 63.5,-56.5 parent: 2 type: Transform - - uid: 19835 + - uid: 19851 components: - pos: 66.5,-51.5 parent: 2 type: Transform - - uid: 19836 + - uid: 19852 components: - pos: 66.5,-52.5 parent: 2 type: Transform - - uid: 19837 + - uid: 19853 components: - pos: 36.5,33.5 parent: 2 type: Transform - - uid: 19838 + - uid: 19854 components: - pos: 36.5,32.5 parent: 2 type: Transform - - uid: 19839 + - uid: 19855 components: - pos: 36.5,31.5 parent: 2 type: Transform - - uid: 19840 + - uid: 19856 components: - pos: 36.5,30.5 parent: 2 type: Transform - - uid: 19841 + - uid: 19857 components: - pos: 36.5,29.5 parent: 2 type: Transform - - uid: 19842 + - uid: 19858 components: - pos: 36.5,28.5 parent: 2 type: Transform - - uid: 19843 + - uid: 19859 components: - pos: 36.5,27.5 parent: 2 type: Transform - - uid: 19844 + - uid: 19860 components: - pos: 51.5,-62.5 parent: 2 type: Transform - - uid: 19845 + - uid: 19861 components: - rot: -1.5707963267948966 rad pos: 71.5,-50.5 parent: 2 type: Transform - - uid: 19846 + - uid: 19862 components: - pos: 68.5,-42.5 parent: 2 type: Transform - - uid: 19847 + - uid: 19863 components: - pos: 77.5,-38.5 parent: 2 type: Transform - - uid: 19848 + - uid: 19864 components: - pos: 78.5,-46.5 parent: 2 type: Transform - - uid: 19849 + - uid: 19865 components: - rot: 1.5707963267948966 rad pos: 33.5,-57.5 parent: 2 type: Transform - - uid: 19850 + - uid: 19866 components: - rot: 1.5707963267948966 rad pos: 32.5,-57.5 parent: 2 type: Transform - - uid: 19851 + - uid: 19867 components: - rot: 1.5707963267948966 rad pos: 30.5,-57.5 parent: 2 type: Transform - - uid: 19852 + - uid: 19868 components: - rot: 1.5707963267948966 rad pos: 29.5,-57.5 parent: 2 type: Transform - - uid: 19853 + - uid: 19869 components: - rot: 1.5707963267948966 rad pos: 27.5,-54.5 parent: 2 type: Transform - - uid: 19854 + - uid: 19870 components: - rot: 1.5707963267948966 rad pos: 27.5,-55.5 parent: 2 type: Transform - - uid: 19855 + - uid: 19871 components: - rot: 1.5707963267948966 rad pos: 27.5,-51.5 parent: 2 type: Transform - - uid: 19856 + - uid: 19872 components: - rot: 1.5707963267948966 rad pos: 27.5,-47.5 parent: 2 type: Transform - - uid: 19857 + - uid: 19873 components: - rot: 3.141592653589793 rad pos: 64.5,-37.5 parent: 2 type: Transform - - uid: 19858 + - uid: 19874 components: - pos: -12.5,-44.5 parent: 2 type: Transform - - uid: 19859 + - uid: 19875 components: - pos: -13.5,-44.5 parent: 2 type: Transform - - uid: 19860 + - uid: 19876 components: - pos: -14.5,-44.5 parent: 2 type: Transform - - uid: 19861 + - uid: 19877 components: - rot: 3.141592653589793 rad pos: 49.5,-59.5 parent: 2 type: Transform - - uid: 19862 + - uid: 19878 components: - rot: 3.141592653589793 rad pos: 50.5,-59.5 parent: 2 type: Transform - - uid: 19863 + - uid: 19879 components: - pos: -19.5,5.5 parent: 2 type: Transform - - uid: 19864 + - uid: 19880 components: - pos: -23.5,2.5 parent: 2 type: Transform - - uid: 19865 + - uid: 19881 components: - pos: -2.5,42.5 parent: 2 type: Transform - - uid: 19866 + - uid: 19882 components: - rot: -1.5707963267948966 rad pos: -21.5,-22.5 parent: 2 type: Transform - - uid: 19867 + - uid: 19883 components: - pos: -21.5,-13.5 parent: 2 type: Transform - - uid: 19868 + - uid: 19884 components: - pos: -21.5,-14.5 parent: 2 type: Transform - - uid: 19869 + - uid: 19885 components: - pos: -21.5,-9.5 parent: 2 type: Transform - - uid: 19870 + - uid: 19886 components: - pos: -21.5,-10.5 parent: 2 type: Transform - - uid: 19871 + - uid: 19887 components: - pos: -26.5,-10.5 parent: 2 type: Transform - - uid: 19872 + - uid: 19888 components: - pos: -26.5,-11.5 parent: 2 type: Transform - - uid: 19873 + - uid: 19889 components: - pos: -30.5,-12.5 parent: 2 type: Transform - - uid: 19874 + - uid: 19890 components: - pos: -30.5,-13.5 parent: 2 type: Transform - - uid: 19875 + - uid: 19891 components: - pos: -22.5,-3.5 parent: 2 type: Transform - - uid: 19876 + - uid: 19892 components: - pos: -21.5,-3.5 parent: 2 type: Transform - - uid: 19877 + - uid: 19893 components: - pos: -22.5,-1.5 parent: 2 type: Transform - - uid: 19878 + - uid: 19894 components: - pos: -21.5,-1.5 parent: 2 type: Transform - - uid: 19879 + - uid: 19895 components: - pos: -17.5,-1.5 parent: 2 type: Transform - - uid: 19880 + - uid: 19896 components: - pos: -16.5,-1.5 parent: 2 type: Transform - - uid: 19881 + - uid: 19897 components: - pos: -19.5,0.5 parent: 2 type: Transform - - uid: 19882 + - uid: 19898 components: - pos: -17.5,0.5 parent: 2 type: Transform - - uid: 19883 + - uid: 19899 components: - pos: -16.5,0.5 parent: 2 type: Transform - - uid: 19884 + - uid: 19900 components: - pos: -17.5,-3.5 parent: 2 type: Transform - - uid: 19885 + - uid: 19901 components: - pos: -16.5,-3.5 parent: 2 type: Transform - - uid: 19886 + - uid: 19902 components: - rot: 1.5707963267948966 rad pos: -26.5,-13.5 parent: 2 type: Transform - - uid: 19887 + - uid: 19903 components: - rot: -1.5707963267948966 rad pos: -24.5,-18.5 parent: 2 type: Transform - - uid: 19888 + - uid: 19904 components: - pos: 52.5,-57.5 parent: 2 type: Transform - - uid: 19889 + - uid: 19905 components: - rot: 3.141592653589793 rad pos: 56.5,-55.5 parent: 2 type: Transform - - uid: 19890 + - uid: 19906 components: - rot: 3.141592653589793 rad pos: 59.5,-54.5 parent: 2 type: Transform - - uid: 19891 + - uid: 19907 components: - rot: 3.141592653589793 rad pos: 65.5,-54.5 parent: 2 type: Transform - - uid: 19892 + - uid: 19908 components: - pos: 41.5,-74.5 parent: 2 type: Transform - - uid: 19893 + - uid: 19909 components: - pos: 32.5,-77.5 parent: 2 type: Transform - - uid: 19894 + - uid: 19910 components: - pos: 32.5,-78.5 parent: 2 type: Transform - - uid: 19895 + - uid: 19911 components: - pos: 32.5,-79.5 parent: 2 type: Transform - - uid: 19896 + - uid: 19912 components: - rot: 3.141592653589793 rad pos: 25.5,-80.5 parent: 2 type: Transform - - uid: 19897 + - uid: 19913 components: - rot: 3.141592653589793 rad pos: 51.5,-73.5 parent: 2 type: Transform - - uid: 19898 + - uid: 19914 components: - rot: 1.5707963267948966 rad pos: 34.5,-84.5 parent: 2 type: Transform - - uid: 19899 + - uid: 19915 components: - pos: 17.5,-71.5 parent: 2 type: Transform - - uid: 19900 + - uid: 19916 components: - pos: 18.5,-71.5 parent: 2 type: Transform - - uid: 19901 + - uid: 19917 components: - rot: 1.5707963267948966 rad pos: 34.5,-85.5 parent: 2 type: Transform - - uid: 19902 + - uid: 19918 components: - rot: 1.5707963267948966 rad pos: 34.5,-86.5 parent: 2 type: Transform - - uid: 19903 + - uid: 19919 components: - pos: 15.5,-71.5 parent: 2 type: Transform - - uid: 19904 + - uid: 19920 components: - pos: 18.5,-74.5 parent: 2 type: Transform - - uid: 19905 + - uid: 19921 components: - pos: 17.5,-74.5 parent: 2 type: Transform - - uid: 19906 + - uid: 19922 components: - pos: 14.5,-71.5 parent: 2 type: Transform - - uid: 19907 + - uid: 19923 components: - pos: 14.5,-74.5 parent: 2 type: Transform - - uid: 19908 + - uid: 19924 components: - pos: 15.5,-74.5 parent: 2 type: Transform - - uid: 19909 + - uid: 19925 components: - rot: 1.5707963267948966 rad pos: 44.5,-86.5 parent: 2 type: Transform - - uid: 19910 + - uid: 19926 components: - rot: 1.5707963267948966 rad pos: 44.5,-87.5 parent: 2 type: Transform - - uid: 19911 + - uid: 19927 components: - rot: 1.5707963267948966 rad pos: 34.5,-87.5 parent: 2 type: Transform - - uid: 19912 + - uid: 19928 components: - rot: 1.5707963267948966 rad pos: 44.5,-84.5 parent: 2 type: Transform - - uid: 19913 + - uid: 19929 components: - rot: 1.5707963267948966 rad pos: 44.5,-85.5 parent: 2 type: Transform - - uid: 19914 + - uid: 19930 components: - rot: 1.5707963267948966 rad pos: 42.5,-69.5 parent: 2 type: Transform - - uid: 19915 + - uid: 19931 components: - rot: 1.5707963267948966 rad pos: 43.5,-69.5 parent: 2 type: Transform - - uid: 19916 + - uid: 19932 components: - rot: 1.5707963267948966 rad pos: 44.5,-69.5 parent: 2 type: Transform - - uid: 19917 + - uid: 19933 components: - rot: 1.5707963267948966 rad pos: 34.5,-69.5 parent: 2 type: Transform - - uid: 19918 + - uid: 19934 components: - rot: 1.5707963267948966 rad pos: 35.5,-69.5 parent: 2 type: Transform - - uid: 19919 + - uid: 19935 components: - rot: 1.5707963267948966 rad pos: 36.5,-69.5 parent: 2 type: Transform - - uid: 19920 + - uid: 19936 components: - rot: 1.5707963267948966 rad pos: 37.5,-66.5 parent: 2 type: Transform - - uid: 19921 + - uid: 19937 components: - rot: 1.5707963267948966 rad pos: 38.5,-74.5 parent: 2 type: Transform - - uid: 19922 + - uid: 19938 components: - rot: 1.5707963267948966 rad pos: 39.5,-74.5 parent: 2 type: Transform - - uid: 19923 + - uid: 19939 components: - rot: 1.5707963267948966 rad pos: 40.5,-74.5 parent: 2 type: Transform - - uid: 19924 + - uid: 19940 components: - rot: -1.5707963267948966 rad pos: -37.5,-14.5 parent: 2 type: Transform - - uid: 19925 + - uid: 19941 components: - pos: -33.5,-17.5 parent: 2 type: Transform - - uid: 19926 + - uid: 19942 components: - pos: -33.5,-15.5 parent: 2 type: Transform - - uid: 19927 + - uid: 19943 components: - rot: 3.141592653589793 rad pos: -33.5,-12.5 parent: 2 type: Transform - - uid: 19928 + - uid: 19944 components: - rot: 3.141592653589793 rad pos: -33.5,-9.5 parent: 2 type: Transform - - uid: 19929 + - uid: 19945 components: - rot: 3.141592653589793 rad pos: -40.5,-9.5 parent: 2 type: Transform - - uid: 19930 + - uid: 19946 components: - rot: 3.141592653589793 rad pos: -40.5,-12.5 parent: 2 type: Transform - - uid: 19931 + - uid: 19947 components: - pos: 50.5,-31.5 parent: 2 type: Transform - - uid: 19932 + - uid: 19948 components: - pos: 51.5,-31.5 parent: 2 type: Transform - - uid: 19933 + - uid: 19949 components: - rot: -1.5707963267948966 rad pos: -21.5,-35.5 parent: 2 type: Transform - - uid: 19934 + - uid: 19950 components: - pos: -38.5,-37.5 parent: 2 type: Transform - - uid: 19935 + - uid: 19951 components: - pos: -37.5,-37.5 parent: 2 type: Transform - - uid: 19936 + - uid: 19952 components: - pos: -45.5,-18.5 parent: 2 type: Transform - - uid: 19937 + - uid: 19953 components: - rot: 3.141592653589793 rad pos: -43.5,-13.5 parent: 2 type: Transform - - uid: 19938 + - uid: 19954 components: - rot: 3.141592653589793 rad pos: -46.5,-7.5 parent: 2 type: Transform - - uid: 19939 + - uid: 19955 components: - rot: 3.141592653589793 rad pos: -49.5,-19.5 parent: 2 type: Transform - - uid: 19940 + - uid: 19956 components: - pos: -68.5,-22.5 parent: 2 type: Transform - - uid: 19941 + - uid: 19957 components: - pos: -67.5,-22.5 parent: 2 type: Transform - - uid: 19942 + - uid: 19958 components: - pos: -66.5,-22.5 parent: 2 type: Transform - - uid: 19943 + - uid: 19959 components: - pos: -65.5,-22.5 parent: 2 type: Transform - - uid: 19944 + - uid: 19960 components: - pos: -64.5,-22.5 parent: 2 type: Transform - - uid: 19945 + - uid: 19961 components: - pos: -66.5,-29.5 parent: 2 type: Transform - - uid: 19946 + - uid: 19962 components: - pos: -56.5,-11.5 parent: 2 type: Transform - - uid: 19947 + - uid: 19963 components: - pos: -56.5,-12.5 parent: 2 type: Transform - - uid: 19948 + - uid: 19964 components: - pos: -56.5,-13.5 parent: 2 type: Transform - - uid: 19949 + - uid: 19965 components: - pos: -56.5,-14.5 parent: 2 type: Transform - - uid: 19950 + - uid: 19966 components: - pos: -56.5,-15.5 parent: 2 type: Transform - - uid: 19951 + - uid: 19967 components: - pos: -65.5,-33.5 parent: 2 type: Transform - - uid: 19952 + - uid: 19968 components: - pos: -66.5,-33.5 parent: 2 type: Transform - - uid: 19953 + - uid: 19969 components: - pos: -67.5,-33.5 parent: 2 type: Transform - - uid: 19954 + - uid: 19970 components: - rot: 3.141592653589793 rad pos: -41.5,-19.5 parent: 2 type: Transform - - uid: 19955 + - uid: 19971 components: - pos: -61.5,-31.5 parent: 2 type: Transform - - uid: 19956 + - uid: 19972 components: - pos: -47.5,-54.5 parent: 2 type: Transform - - uid: 19957 + - uid: 19973 components: - pos: -47.5,-52.5 parent: 2 type: Transform - - uid: 19958 + - uid: 19974 components: - pos: -47.5,-50.5 parent: 2 type: Transform - - uid: 19959 + - uid: 19975 components: - pos: -47.5,-48.5 parent: 2 type: Transform - - uid: 19960 + - uid: 19976 components: - pos: -47.5,-46.5 parent: 2 type: Transform - - uid: 19961 + - uid: 19977 components: - pos: -47.5,-44.5 parent: 2 type: Transform - - uid: 19962 + - uid: 19978 components: - pos: -47.5,-42.5 parent: 2 type: Transform - - uid: 19963 + - uid: 19979 components: - pos: -44.5,-39.5 parent: 2 type: Transform - - uid: 19964 + - uid: 19980 components: - pos: -41.5,-33.5 parent: 2 type: Transform - - uid: 19965 + - uid: 19981 components: - pos: -41.5,-34.5 parent: 2 type: Transform - - uid: 19966 + - uid: 19982 components: - pos: -41.5,-35.5 parent: 2 type: Transform - - uid: 19967 + - uid: 19983 components: - pos: -45.5,-33.5 parent: 2 type: Transform - - uid: 19968 + - uid: 19984 components: - pos: -45.5,-35.5 parent: 2 type: Transform - - uid: 19969 + - uid: 19985 components: - pos: -59.5,-3.5 parent: 2 type: Transform - - uid: 19970 + - uid: 19986 components: - pos: -60.5,-3.5 parent: 2 type: Transform - - uid: 19971 + - uid: 19987 components: - pos: -61.5,-3.5 parent: 2 type: Transform - - uid: 19972 + - uid: 19988 components: - pos: -62.5,-3.5 parent: 2 type: Transform - - uid: 19973 + - uid: 19989 components: - pos: -66.5,-3.5 parent: 2 type: Transform - - uid: 19974 + - uid: 19990 components: - pos: -67.5,-3.5 parent: 2 type: Transform - - uid: 19975 + - uid: 19991 components: - pos: -68.5,-3.5 parent: 2 type: Transform - - uid: 19976 + - uid: 19992 components: - pos: -69.5,-3.5 parent: 2 type: Transform - - uid: 19977 + - uid: 19993 components: - pos: -76.5,-3.5 parent: 2 type: Transform - - uid: 19978 + - uid: 19994 components: - pos: -73.5,-3.5 parent: 2 type: Transform - - uid: 19979 + - uid: 19995 components: - pos: -74.5,-3.5 parent: 2 type: Transform - - uid: 19980 + - uid: 19996 components: - pos: -75.5,-3.5 parent: 2 type: Transform - - uid: 19981 + - uid: 19997 components: - pos: -76.5,-7.5 parent: 2 type: Transform - - uid: 19982 + - uid: 19998 components: - pos: -76.5,-8.5 parent: 2 type: Transform - - uid: 19983 + - uid: 19999 components: - pos: -76.5,-9.5 parent: 2 type: Transform - - uid: 19984 + - uid: 20000 components: - pos: -76.5,-10.5 parent: 2 type: Transform - - uid: 19985 + - uid: 20001 components: - pos: -76.5,-14.5 parent: 2 type: Transform - - uid: 19986 + - uid: 20002 components: - pos: -76.5,-15.5 parent: 2 type: Transform - - uid: 19987 + - uid: 20003 components: - pos: -76.5,-16.5 parent: 2 type: Transform - - uid: 19988 + - uid: 20004 components: - pos: -76.5,-17.5 parent: 2 type: Transform - - uid: 19989 + - uid: 20005 components: - pos: -76.5,-21.5 parent: 2 type: Transform - - uid: 19990 + - uid: 20006 components: - pos: -76.5,-22.5 parent: 2 type: Transform - - uid: 19991 + - uid: 20007 components: - rot: -1.5707963267948966 rad pos: -76.5,-24.5 parent: 2 type: Transform - - uid: 19992 + - uid: 20008 components: - pos: -76.5,-23.5 parent: 2 type: Transform - - uid: 19993 + - uid: 20009 components: - pos: -35.5,-58.5 parent: 2 type: Transform - - uid: 19994 + - uid: 20010 components: - rot: 3.141592653589793 rad pos: -38.5,-59.5 parent: 2 type: Transform - - uid: 19995 + - uid: 20011 components: - pos: -41.5,-58.5 parent: 2 type: Transform - - uid: 19996 + - uid: 20012 components: - pos: -42.5,-58.5 parent: 2 type: Transform - - uid: 19997 + - uid: 20013 components: - pos: -44.5,-58.5 parent: 2 type: Transform - - uid: 19998 + - uid: 20014 components: - pos: -21.5,-61.5 parent: 2 type: Transform - - uid: 19999 + - uid: 20015 components: - rot: -1.5707963267948966 rad pos: -53.5,-83.5 parent: 2 type: Transform - - uid: 20000 + - uid: 20016 components: - pos: -28.5,-72.5 parent: 2 type: Transform - - uid: 20001 + - uid: 20017 components: - pos: -35.5,-76.5 parent: 2 type: Transform - - uid: 20002 + - uid: 20018 components: - pos: -35.5,-77.5 parent: 2 type: Transform - - uid: 20003 + - uid: 20019 components: - pos: -35.5,-78.5 parent: 2 type: Transform - - uid: 20004 + - uid: 20020 components: - pos: -35.5,-81.5 parent: 2 type: Transform - - uid: 20005 + - uid: 20021 components: - pos: -35.5,-82.5 parent: 2 type: Transform - - uid: 20006 + - uid: 20022 components: - pos: -35.5,-83.5 parent: 2 type: Transform - - uid: 20007 + - uid: 20023 components: - pos: -40.5,-86.5 parent: 2 type: Transform - - uid: 20008 + - uid: 20024 components: - pos: -43.5,-86.5 parent: 2 type: Transform - - uid: 20009 + - uid: 20025 components: - pos: -21.5,-59.5 parent: 2 type: Transform - - uid: 20010 + - uid: 20026 components: - rot: -1.5707963267948966 rad pos: -55.5,-83.5 parent: 2 type: Transform - - uid: 20011 + - uid: 20027 components: - pos: -57.5,-75.5 parent: 2 type: Transform - - uid: 20012 + - uid: 20028 components: - pos: -57.5,-76.5 parent: 2 type: Transform - - uid: 20013 + - uid: 20029 components: - pos: -57.5,-77.5 parent: 2 type: Transform - - uid: 20014 + - uid: 20030 components: - pos: -58.5,-52.5 parent: 2 type: Transform - - uid: 20015 + - uid: 20031 components: - pos: -58.5,-51.5 parent: 2 type: Transform - - uid: 20016 + - uid: 20032 components: - pos: -58.5,-48.5 parent: 2 type: Transform - - uid: 20017 + - uid: 20033 components: - pos: -58.5,-47.5 parent: 2 type: Transform - - uid: 20018 + - uid: 20034 components: - pos: -58.5,-43.5 parent: 2 type: Transform - - uid: 20019 + - uid: 20035 components: - pos: -58.5,-44.5 parent: 2 type: Transform - - uid: 20020 + - uid: 20036 components: - pos: -53.5,-36.5 parent: 2 type: Transform - - uid: 20021 + - uid: 20037 components: - pos: -53.5,-37.5 parent: 2 type: Transform - - uid: 20022 + - uid: 20038 components: - pos: -58.5,-36.5 parent: 2 type: Transform - - uid: 20023 + - uid: 20039 components: - pos: -58.5,-37.5 parent: 2 type: Transform - - uid: 20024 + - uid: 20040 components: - pos: -55.5,-85.5 parent: 2 type: Transform - - uid: 20025 + - uid: 20041 components: - pos: 25.5,-38.5 parent: 2 type: Transform - - uid: 20026 + - uid: 20042 components: - rot: 1.5707963267948966 rad pos: -58.5,-59.5 parent: 2 type: Transform - - uid: 20027 + - uid: 20043 components: - pos: -48.5,-81.5 parent: 2 type: Transform - - uid: 20028 + - uid: 20044 components: - pos: 50.5,58.5 parent: 2 type: Transform - - uid: 20029 + - uid: 20045 components: - rot: -1.5707963267948966 rad pos: -3.5,27.5 parent: 2 type: Transform - - uid: 20030 + - uid: 20046 components: - pos: 50.5,57.5 parent: 2 type: Transform - - uid: 20031 + - uid: 20047 components: - pos: 58.5,58.5 parent: 2 type: Transform - - uid: 20032 + - uid: 20048 components: - pos: -2.5,35.5 parent: 2 type: Transform - - uid: 20033 + - uid: 20049 components: - pos: -1.5,35.5 parent: 2 type: Transform - - uid: 20034 + - uid: 20050 components: - pos: -0.5,35.5 parent: 2 type: Transform - - uid: 20035 + - uid: 20051 components: - pos: 6.5,25.5 parent: 2 type: Transform - - uid: 20036 + - uid: 20052 components: - pos: 4.5,25.5 parent: 2 type: Transform - - uid: 20037 + - uid: 20053 components: - pos: 2.5,25.5 parent: 2 type: Transform - - uid: 20038 + - uid: 20054 components: - pos: 58.5,56.5 parent: 2 type: Transform - - uid: 20039 + - uid: 20055 components: - rot: -1.5707963267948966 rad pos: -1.5,27.5 parent: 2 type: Transform - - uid: 20040 + - uid: 20056 components: - pos: -21.5,24.5 parent: 2 type: Transform - - uid: 20041 + - uid: 20057 components: - pos: -21.5,23.5 parent: 2 type: Transform - - uid: 20042 + - uid: 20058 components: - pos: -26.5,21.5 parent: 2 type: Transform - - uid: 20043 + - uid: 20059 components: - rot: -1.5707963267948966 rad pos: -26.5,23.5 parent: 2 type: Transform - - uid: 20044 + - uid: 20060 components: - pos: -1.5,42.5 parent: 2 type: Transform - - uid: 20045 + - uid: 20061 components: - pos: -29.5,23.5 parent: 2 type: Transform - - uid: 20046 + - uid: 20062 components: - pos: -29.5,21.5 parent: 2 type: Transform - - uid: 20047 + - uid: 20063 components: - rot: 1.5707963267948966 rad pos: -50.5,21.5 parent: 2 type: Transform - - uid: 20048 + - uid: 20064 components: - rot: 1.5707963267948966 rad pos: -49.5,21.5 parent: 2 type: Transform - - uid: 20049 + - uid: 20065 components: - rot: -1.5707963267948966 rad pos: -50.5,18.5 parent: 2 type: Transform - - uid: 20050 + - uid: 20066 components: - rot: -1.5707963267948966 rad pos: -50.5,24.5 parent: 2 type: Transform - - uid: 20051 + - uid: 20067 components: - pos: 58.5,57.5 parent: 2 type: Transform - - uid: 20052 + - uid: 20068 components: - pos: 50.5,56.5 parent: 2 type: Transform - - uid: 20053 + - uid: 20069 components: - pos: -33.5,27.5 parent: 2 type: Transform - - uid: 20054 + - uid: 20070 components: - pos: -33.5,32.5 parent: 2 type: Transform - - uid: 20055 + - uid: 20071 components: - pos: -32.5,32.5 parent: 2 type: Transform - - uid: 20056 + - uid: 20072 components: - pos: -31.5,32.5 parent: 2 type: Transform - - uid: 20057 + - uid: 20073 components: - pos: -31.5,27.5 parent: 2 type: Transform - - uid: 20058 + - uid: 20074 components: - pos: -30.5,27.5 parent: 2 type: Transform - - uid: 20059 + - uid: 20075 components: - rot: -1.5707963267948966 rad pos: -52.5,21.5 parent: 2 type: Transform - - uid: 20060 + - uid: 20076 components: - rot: -1.5707963267948966 rad pos: -53.5,21.5 parent: 2 type: Transform - - uid: 20061 + - uid: 20077 components: - rot: -1.5707963267948966 rad pos: -49.5,29.5 parent: 2 type: Transform - - uid: 20062 + - uid: 20078 components: - rot: -1.5707963267948966 rad pos: -52.5,29.5 parent: 2 type: Transform - - uid: 20063 + - uid: 20079 components: - rot: -1.5707963267948966 rad pos: -52.5,35.5 parent: 2 type: Transform - - uid: 20064 + - uid: 20080 components: - rot: -1.5707963267948966 rad pos: -49.5,35.5 parent: 2 type: Transform - - uid: 20065 + - uid: 20081 components: - pos: -52.5,24.5 parent: 2 type: Transform - - uid: 20066 + - uid: 20082 components: - pos: -52.5,18.5 parent: 2 type: Transform - - uid: 20067 + - uid: 20083 components: - pos: -39.5,31.5 parent: 2 type: Transform - - uid: 20068 + - uid: 20084 components: - rot: 1.5707963267948966 rad pos: -17.5,24.5 parent: 2 type: Transform - - uid: 20069 + - uid: 20085 components: - rot: 1.5707963267948966 rad pos: -21.5,12.5 parent: 2 type: Transform - - uid: 20070 + - uid: 20086 components: - rot: 1.5707963267948966 rad pos: -22.5,9.5 parent: 2 type: Transform - - uid: 20071 + - uid: 20087 components: - rot: 1.5707963267948966 rad pos: -23.5,9.5 parent: 2 type: Transform - - uid: 20072 + - uid: 20088 components: - rot: 1.5707963267948966 rad pos: -25.5,9.5 parent: 2 type: Transform - - uid: 20073 + - uid: 20089 components: - rot: 1.5707963267948966 rad pos: -26.5,9.5 parent: 2 type: Transform - - uid: 20074 + - uid: 20090 components: - pos: -36.5,7.5 parent: 2 type: Transform - - uid: 20075 + - uid: 20091 components: - pos: -41.5,2.5 parent: 2 type: Transform - - uid: 20076 + - uid: 20092 components: - pos: -35.5,2.5 parent: 2 type: Transform - - uid: 20077 + - uid: 20093 components: - pos: -34.5,2.5 parent: 2 type: Transform - - uid: 20078 + - uid: 20094 components: - pos: -40.5,2.5 parent: 2 type: Transform - - uid: 20079 + - uid: 20095 components: - pos: -39.5,2.5 parent: 2 type: Transform - - uid: 20080 + - uid: 20096 components: - pos: -36.5,2.5 parent: 2 type: Transform - - uid: 20081 + - uid: 20097 components: - pos: -39.5,7.5 parent: 2 type: Transform - - uid: 20082 + - uid: 20098 components: - pos: -1.5,50.5 parent: 2 type: Transform - - uid: 20083 + - uid: 20099 components: - pos: 29.5,24.5 parent: 2 type: Transform - - uid: 20084 + - uid: 20100 components: - rot: -1.5707963267948966 rad pos: -49.5,13.5 parent: 2 type: Transform - - uid: 20085 + - uid: 20101 components: - pos: -46.5,13.5 parent: 2 type: Transform - - uid: 20086 + - uid: 20102 components: - pos: -53.5,11.5 parent: 2 type: Transform - - uid: 20087 + - uid: 20103 components: - pos: -53.5,10.5 parent: 2 type: Transform - - uid: 20088 + - uid: 20104 components: - rot: -1.5707963267948966 rad pos: -48.5,13.5 parent: 2 type: Transform - - uid: 20089 + - uid: 20105 components: - rot: 1.5707963267948966 rad pos: -52.5,-0.5 parent: 2 type: Transform - - uid: 20090 + - uid: 20106 components: - pos: -44.5,-37.5 parent: 2 type: Transform - - uid: 20091 + - uid: 20107 components: - pos: 2.5,-94.5 parent: 2 type: Transform - - uid: 20092 + - uid: 20108 components: - pos: 2.5,-95.5 parent: 2 type: Transform - - uid: 20093 + - uid: 20109 components: - pos: 2.5,-96.5 parent: 2 type: Transform - - uid: 20094 + - uid: 20110 components: - pos: 2.5,-97.5 parent: 2 type: Transform - - uid: 20095 + - uid: 20111 components: - pos: 2.5,-98.5 parent: 2 type: Transform - - uid: 20096 + - uid: 20112 components: - pos: 2.5,-99.5 parent: 2 type: Transform - - uid: 20097 + - uid: 20113 components: - pos: 2.5,-100.5 parent: 2 type: Transform - - uid: 20098 + - uid: 20114 components: - pos: 2.5,-101.5 parent: 2 type: Transform - - uid: 20099 + - uid: 20115 components: - pos: 2.5,-102.5 parent: 2 type: Transform - - uid: 20100 + - uid: 20116 components: - pos: 2.5,-103.5 parent: 2 type: Transform - - uid: 20101 + - uid: 20117 components: - pos: 2.5,-104.5 parent: 2 type: Transform - - uid: 20102 + - uid: 20118 components: - pos: 4.5,-107.5 parent: 2 type: Transform - - uid: 20103 + - uid: 20119 components: - pos: 5.5,-107.5 parent: 2 type: Transform - - uid: 20104 + - uid: 20120 components: - pos: 6.5,-107.5 parent: 2 type: Transform - - uid: 20105 + - uid: 20121 components: - pos: 7.5,-107.5 parent: 2 type: Transform - - uid: 20106 + - uid: 20122 components: - pos: 8.5,-107.5 parent: 2 type: Transform - - uid: 20107 + - uid: 20123 components: - pos: 9.5,-107.5 parent: 2 type: Transform - - uid: 20108 + - uid: 20124 components: - pos: 10.5,-107.5 parent: 2 type: Transform - - uid: 20109 + - uid: 20125 components: - pos: 11.5,-107.5 parent: 2 type: Transform - - uid: 20110 + - uid: 20126 components: - pos: 12.5,-107.5 parent: 2 type: Transform - - uid: 20111 + - uid: 20127 components: - pos: 13.5,-107.5 parent: 2 type: Transform - - uid: 20112 + - uid: 20128 components: - pos: 14.5,-107.5 parent: 2 type: Transform - - uid: 20113 + - uid: 20129 components: - pos: 15.5,-107.5 parent: 2 type: Transform - - uid: 20114 + - uid: 20130 components: - pos: 16.5,-107.5 parent: 2 type: Transform - - uid: 20115 + - uid: 20131 components: - pos: 17.5,-107.5 parent: 2 type: Transform - - uid: 20116 + - uid: 20132 components: - pos: 20.5,-105.5 parent: 2 type: Transform - - uid: 20117 + - uid: 20133 components: - pos: 20.5,-104.5 parent: 2 type: Transform - - uid: 20118 + - uid: 20134 components: - pos: 20.5,-103.5 parent: 2 type: Transform - - uid: 20119 + - uid: 20135 components: - pos: 20.5,-102.5 parent: 2 type: Transform - - uid: 20120 + - uid: 20136 components: - pos: 20.5,-101.5 parent: 2 type: Transform - - uid: 20121 + - uid: 20137 components: - pos: 20.5,-100.5 parent: 2 type: Transform - - uid: 20122 + - uid: 20138 components: - pos: 20.5,-99.5 parent: 2 type: Transform - - uid: 20123 + - uid: 20139 components: - pos: 20.5,-98.5 parent: 2 type: Transform - - uid: 20124 + - uid: 20140 components: - pos: 20.5,-97.5 parent: 2 type: Transform - - uid: 20125 + - uid: 20141 components: - pos: 20.5,-96.5 parent: 2 type: Transform - - uid: 20126 + - uid: 20142 components: - pos: 20.5,-95.5 parent: 2 type: Transform - - uid: 20127 + - uid: 20143 components: - pos: 20.5,-94.5 parent: 2 type: Transform - - uid: 20128 + - uid: 20144 components: - pos: 13.5,-92.5 parent: 2 type: Transform - - uid: 20129 + - uid: 20145 components: - pos: 14.5,-92.5 parent: 2 type: Transform - - uid: 20130 + - uid: 20146 components: - pos: 15.5,-92.5 parent: 2 type: Transform - - uid: 20131 + - uid: 20147 components: - pos: 16.5,-92.5 parent: 2 type: Transform - - uid: 20132 + - uid: 20148 components: - pos: 17.5,-92.5 parent: 2 type: Transform - - uid: 20133 + - uid: 20149 components: - pos: 18.5,-92.5 parent: 2 type: Transform - - uid: 20134 + - uid: 20150 components: - pos: 38.5,-57.5 parent: 2 type: Transform - - uid: 20135 + - uid: 20151 components: - pos: 40.5,-57.5 parent: 2 type: Transform - - uid: 20136 + - uid: 20152 components: - pos: 37.5,-21.5 parent: 2 type: Transform - - uid: 20137 + - uid: 20153 components: - pos: 37.5,-22.5 parent: 2 type: Transform - - uid: 20138 + - uid: 20154 components: - rot: -1.5707963267948966 rad pos: -76.5,-11.5 parent: 2 type: Transform - - uid: 20139 + - uid: 20155 components: - rot: -1.5707963267948966 rad pos: -76.5,-13.5 parent: 2 type: Transform - - uid: 20140 + - uid: 20156 components: - pos: 55.5,-15.5 parent: 2 type: Transform - - uid: 20141 + - uid: 20157 components: - pos: 56.5,-15.5 parent: 2 type: Transform - - uid: 20142 + - uid: 20158 components: - pos: 58.5,-15.5 parent: 2 type: Transform - - uid: 20143 + - uid: 20159 components: - pos: 59.5,-15.5 parent: 2 type: Transform - - uid: 20144 + - uid: 20160 components: - pos: 58.5,-59.5 parent: 2 type: Transform - - uid: 20145 + - uid: 20161 components: - pos: 58.5,-60.5 parent: 2 type: Transform - - uid: 20146 + - uid: 20162 components: - pos: 42.5,-31.5 parent: 2 type: Transform - - uid: 20147 + - uid: 20163 components: - pos: 37.5,-64.5 parent: 2 type: Transform - - uid: 20148 + - uid: 20164 components: - rot: 3.141592653589793 rad pos: 24.5,37.5 parent: 2 type: Transform - - uid: 20149 + - uid: 20165 components: - rot: 3.141592653589793 rad pos: 21.5,37.5 parent: 2 type: Transform - - uid: 20150 + - uid: 20166 components: - pos: 32.5,35.5 parent: 2 type: Transform - - uid: 20151 + - uid: 20167 components: - pos: 26.5,35.5 parent: 2 type: Transform - - uid: 20152 + - uid: 20168 components: - pos: 34.5,37.5 parent: 2 type: Transform - - uid: 20153 + - uid: 20169 components: - pos: 35.5,37.5 parent: 2 type: Transform - - uid: 20154 + - uid: 20170 components: - pos: 36.5,37.5 parent: 2 type: Transform - - uid: 20155 + - uid: 20171 components: - pos: 36.5,36.5 parent: 2 type: Transform - - uid: 20156 + - uid: 20172 components: - pos: 36.5,35.5 parent: 2 type: Transform - - uid: 20157 + - uid: 20173 components: - pos: 36.5,34.5 parent: 2 type: Transform - - uid: 20158 + - uid: 20174 components: - pos: -45.5,-42.5 parent: 2 type: Transform - - uid: 20159 + - uid: 20175 components: - pos: -45.5,-43.5 parent: 2 type: Transform - - uid: 20160 + - uid: 20176 components: - pos: -45.5,-44.5 parent: 2 type: Transform - - uid: 20161 + - uid: 20177 components: - pos: -45.5,-45.5 parent: 2 type: Transform - - uid: 20162 + - uid: 20178 components: - pos: -45.5,-46.5 parent: 2 type: Transform - - uid: 20163 + - uid: 20179 components: - pos: -45.5,-47.5 parent: 2 type: Transform - - uid: 20164 + - uid: 20180 components: - pos: -45.5,-48.5 parent: 2 type: Transform - - uid: 20165 + - uid: 20181 components: - pos: -45.5,-49.5 parent: 2 type: Transform - - uid: 20166 + - uid: 20182 components: - pos: -45.5,-50.5 parent: 2 type: Transform - - uid: 20167 + - uid: 20183 components: - pos: -45.5,-51.5 parent: 2 type: Transform - - uid: 20168 + - uid: 20184 components: - pos: -45.5,-52.5 parent: 2 type: Transform - - uid: 20169 + - uid: 20185 components: - pos: -45.5,-53.5 parent: 2 type: Transform - - uid: 20170 + - uid: 20186 components: - pos: -45.5,-54.5 parent: 2 type: Transform - - uid: 20171 + - uid: 20187 components: - pos: -45.5,-55.5 parent: 2 type: Transform - - uid: 20172 + - uid: 20188 components: - rot: 3.141592653589793 rad pos: 46.5,3.5 parent: 2 type: Transform - - uid: 20173 + - uid: 20189 components: - rot: -1.5707963267948966 rad pos: 27.5,20.5 parent: 2 type: Transform - - uid: 20174 + - uid: 20190 components: - pos: 41.5,-31.5 parent: 2 type: Transform - - uid: 20175 + - uid: 20191 components: - pos: -48.5,-82.5 parent: 2 type: Transform - - uid: 20176 + - uid: 20192 components: - pos: -48.5,-83.5 parent: 2 type: Transform - - uid: 20177 + - uid: 20193 components: - pos: 1.5,-18.5 parent: 2 type: Transform - - uid: 20178 + - uid: 20194 components: - pos: 2.5,-18.5 parent: 2 type: Transform - - uid: 20179 + - uid: 20195 components: - pos: 54.5,61.5 parent: 2 type: Transform - - uid: 20180 + - uid: 20196 components: - pos: 55.5,61.5 parent: 2 type: Transform - - uid: 20181 + - uid: 20197 components: - pos: 53.5,61.5 parent: 2 type: Transform - - uid: 20182 + - uid: 20198 components: - pos: 26.5,-38.5 parent: 2 type: Transform - - uid: 20183 + - uid: 20199 components: - pos: 20.5,-35.5 parent: 2 type: Transform - - uid: 20184 + - uid: 20200 components: - pos: 20.5,-36.5 parent: 2 type: Transform - - uid: 20185 + - uid: 20201 components: - pos: -30.5,-72.5 parent: 2 type: Transform - - uid: 20186 + - uid: 20202 components: - pos: 10.5,18.5 parent: 2 type: Transform - - uid: 20187 + - uid: 20203 components: - pos: 12.5,18.5 parent: 2 type: Transform - - uid: 20188 + - uid: 20204 components: - rot: -1.5707963267948966 rad pos: 59.5,33.5 parent: 2 type: Transform - - uid: 20189 + - uid: 20205 components: - rot: -1.5707963267948966 rad pos: 59.5,32.5 parent: 2 type: Transform - - uid: 20190 + - uid: 20206 components: - rot: 3.141592653589793 rad pos: 59.5,43.5 parent: 2 type: Transform - - uid: 20191 + - uid: 20207 components: - pos: 2.5,51.5 parent: 2 type: Transform - - uid: 20192 + - uid: 20208 components: - pos: -14.5,65.5 parent: 2 type: Transform - - uid: 20193 + - uid: 20209 components: - rot: 3.141592653589793 rad pos: -14.5,67.5 parent: 2 type: Transform - - uid: 20194 + - uid: 20210 components: - rot: -1.5707963267948966 rad pos: 7.5,35.5 parent: 2 type: Transform - - uid: 20195 + - uid: 20211 components: - rot: -1.5707963267948966 rad pos: 8.5,35.5 parent: 2 type: Transform - - uid: 20196 + - uid: 20212 components: - rot: -1.5707963267948966 rad pos: 7.5,29.5 parent: 2 type: Transform - - uid: 20197 + - uid: 20213 components: - rot: -1.5707963267948966 rad pos: 8.5,29.5 parent: 2 type: Transform - - uid: 20198 + - uid: 20214 components: - rot: -1.5707963267948966 rad pos: 68.5,11.5 parent: 2 type: Transform - - uid: 20199 + - uid: 20215 components: - rot: -1.5707963267948966 rad pos: 68.5,10.5 parent: 2 type: Transform - - uid: 20200 + - uid: 20216 components: - rot: -1.5707963267948966 rad pos: 68.5,8.5 parent: 2 type: Transform - - uid: 20201 + - uid: 20217 components: - rot: -1.5707963267948966 rad pos: 68.5,7.5 parent: 2 type: Transform - - uid: 20202 + - uid: 20218 components: - rot: -1.5707963267948966 rad pos: -7.5,28.5 parent: 2 type: Transform - - uid: 20203 + - uid: 20219 components: - rot: -1.5707963267948966 rad pos: -7.5,27.5 parent: 2 type: Transform - - uid: 20204 + - uid: 20220 components: - rot: -1.5707963267948966 rad pos: -33.5,35.5 parent: 2 type: Transform - - uid: 20205 + - uid: 20221 components: - rot: -1.5707963267948966 rad pos: -32.5,35.5 parent: 2 type: Transform - - uid: 20206 + - uid: 20222 components: - rot: -1.5707963267948966 rad pos: -31.5,35.5 parent: 2 type: Transform - - uid: 20207 + - uid: 20223 components: - rot: 1.5707963267948966 rad pos: 46.5,-17.5 parent: 2 type: Transform - - uid: 20208 + - uid: 20224 components: - rot: 1.5707963267948966 rad pos: 45.5,-17.5 parent: 2 type: Transform - - uid: 20209 + - uid: 20225 components: - rot: 3.141592653589793 rad pos: -19.5,44.5 parent: 2 type: Transform - - uid: 20210 + - uid: 20226 components: - pos: 2.5,50.5 parent: 2 type: Transform - - uid: 20211 + - uid: 20227 components: - pos: 2.5,47.5 parent: 2 type: Transform - - uid: 20212 + - uid: 20228 components: - rot: 3.141592653589793 rad pos: 41.5,32.5 parent: 2 type: Transform - - uid: 20213 + - uid: 20229 components: - rot: 3.141592653589793 rad pos: 41.5,31.5 parent: 2 type: Transform - - uid: 20214 + - uid: 20230 components: - rot: 3.141592653589793 rad pos: 41.5,30.5 parent: 2 type: Transform - - uid: 20215 + - uid: 20231 components: - rot: 1.5707963267948966 rad pos: 45.5,40.5 parent: 2 type: Transform - - uid: 20216 + - uid: 20232 components: - rot: 1.5707963267948966 rad pos: 47.5,40.5 parent: 2 type: Transform - - uid: 20217 + - uid: 20233 components: - rot: -1.5707963267948966 rad pos: 41.5,42.5 parent: 2 type: Transform - - uid: 20218 + - uid: 20234 components: - rot: -1.5707963267948966 rad pos: 40.5,42.5 parent: 2 type: Transform - - uid: 20219 + - uid: 20235 components: - rot: -1.5707963267948966 rad pos: 39.5,42.5 parent: 2 type: Transform - - uid: 20220 + - uid: 20236 components: - rot: 3.141592653589793 rad pos: -20.5,65.5 parent: 2 type: Transform - - uid: 20221 + - uid: 20237 components: - pos: -2.5,60.5 parent: 2 type: Transform - - uid: 20222 + - uid: 20238 components: - pos: -0.5,60.5 parent: 2 type: Transform - - uid: 20223 + - uid: 20239 components: - pos: 71.5,39.5 parent: 2 type: Transform - - uid: 20224 + - uid: 20240 components: - pos: 73.5,39.5 parent: 2 type: Transform - - uid: 20225 + - uid: 20241 components: - pos: 73.5,33.5 parent: 2 type: Transform - - uid: 20226 + - uid: 20242 components: - pos: 71.5,33.5 parent: 2 type: Transform - - uid: 20227 + - uid: 20243 components: - pos: 5.5,69.5 parent: 2 type: Transform - - uid: 20228 + - uid: 20244 components: - pos: -8.5,69.5 parent: 2 type: Transform - - uid: 20229 + - uid: 20245 components: - pos: -3.5,42.5 parent: 2 type: Transform - - uid: 20230 + - uid: 20246 components: - pos: 78.5,46.5 parent: 2 type: Transform - - uid: 20231 + - uid: 20247 components: - pos: 79.5,46.5 parent: 2 type: Transform - - uid: 20232 + - uid: 20248 components: - pos: 80.5,46.5 parent: 2 type: Transform - - uid: 20233 + - uid: 20249 components: - pos: 81.5,46.5 parent: 2 type: Transform - - uid: 20234 + - uid: 20250 components: - pos: 82.5,46.5 parent: 2 type: Transform - - uid: 20235 + - uid: 20251 components: - pos: 86.5,46.5 parent: 2 type: Transform - - uid: 20236 + - uid: 20252 components: - pos: 87.5,46.5 parent: 2 type: Transform - - uid: 20237 + - uid: 20253 components: - pos: 88.5,46.5 parent: 2 type: Transform - - uid: 20238 + - uid: 20254 components: - pos: 89.5,46.5 parent: 2 type: Transform - - uid: 20239 + - uid: 20255 components: - pos: 90.5,46.5 parent: 2 type: Transform - - uid: 20240 + - uid: 20256 components: - pos: 93.5,41.5 parent: 2 type: Transform - - uid: 20241 + - uid: 20257 components: - pos: 93.5,40.5 parent: 2 type: Transform - - uid: 20242 + - uid: 20258 components: - pos: 93.5,39.5 parent: 2 type: Transform - - uid: 20243 + - uid: 20259 components: - pos: 93.5,38.5 parent: 2 type: Transform - - uid: 20244 + - uid: 20260 components: - pos: 93.5,37.5 parent: 2 type: Transform - - uid: 20245 + - uid: 20261 components: - pos: 93.5,36.5 parent: 2 type: Transform - - uid: 20246 + - uid: 20262 components: - pos: 93.5,35.5 parent: 2 type: Transform - - uid: 20247 + - uid: 20263 components: - pos: 93.5,34.5 parent: 2 type: Transform - - uid: 20248 + - uid: 20264 components: - pos: 93.5,33.5 parent: 2 type: Transform - - uid: 20249 + - uid: 20265 components: - pos: 93.5,32.5 parent: 2 type: Transform - - uid: 20250 + - uid: 20266 components: - pos: 93.5,31.5 parent: 2 type: Transform - - uid: 20251 + - uid: 20267 components: - pos: 93.5,30.5 parent: 2 type: Transform - - uid: 20252 + - uid: 20268 components: - pos: 90.5,26.5 parent: 2 type: Transform - - uid: 20253 + - uid: 20269 components: - pos: 89.5,26.5 parent: 2 type: Transform - - uid: 20254 + - uid: 20270 components: - pos: 88.5,26.5 parent: 2 type: Transform - - uid: 20255 + - uid: 20271 components: - pos: 87.5,26.5 parent: 2 type: Transform - - uid: 20256 + - uid: 20272 components: - pos: 86.5,26.5 parent: 2 type: Transform - - uid: 20257 + - uid: 20273 components: - pos: 85.5,26.5 parent: 2 type: Transform - - uid: 20258 + - uid: 20274 components: - pos: 81.5,26.5 parent: 2 type: Transform - - uid: 20259 + - uid: 20275 components: - pos: 80.5,26.5 parent: 2 type: Transform - - uid: 20260 + - uid: 20276 components: - pos: 79.5,26.5 parent: 2 type: Transform - - uid: 20261 + - uid: 20277 components: - pos: 78.5,26.5 parent: 2 type: Transform - - uid: 20262 + - uid: 20278 components: - pos: 77.5,26.5 parent: 2 type: Transform - - uid: 20263 + - uid: 20279 components: - pos: 70.5,29.5 parent: 2 type: Transform - - uid: 20264 + - uid: 20280 components: - pos: 71.5,29.5 parent: 2 type: Transform - - uid: 20265 + - uid: 20281 components: - pos: 72.5,29.5 parent: 2 type: Transform - - uid: 20266 + - uid: 20282 components: - pos: 73.5,29.5 parent: 2 type: Transform - - uid: 20267 + - uid: 20283 components: - pos: 74.5,29.5 parent: 2 type: Transform - - uid: 20268 + - uid: 20284 components: - pos: -33.5,40.5 parent: 2 type: Transform - - uid: 20269 + - uid: 20285 components: - pos: -32.5,40.5 parent: 2 type: Transform - - uid: 20270 + - uid: 20286 components: - pos: -32.5,37.5 parent: 2 type: Transform - - uid: 20271 + - uid: 20287 components: - pos: -16.5,55.5 parent: 2 type: Transform - - uid: 20272 + - uid: 20288 components: - pos: -16.5,56.5 parent: 2 type: Transform - - uid: 20273 + - uid: 20289 components: - pos: -14.5,56.5 parent: 2 type: Transform - - uid: 20274 + - uid: 20290 components: - pos: -14.5,55.5 parent: 2 type: Transform - - uid: 20275 + - uid: 20291 components: - pos: -20.5,62.5 parent: 2 type: Transform - - uid: 20276 + - uid: 20292 components: - pos: -14.5,62.5 parent: 2 type: Transform - - uid: 20277 + - uid: 20293 components: - pos: -11.5,69.5 parent: 2 type: Transform - - uid: 20278 + - uid: 20294 components: - pos: -11.5,68.5 parent: 2 type: Transform - - uid: 20279 + - uid: 20295 components: - pos: -11.5,67.5 parent: 2 type: Transform - - uid: 20280 + - uid: 20296 components: - pos: -11.5,73.5 parent: 2 type: Transform - - uid: 20281 + - uid: 20297 components: - pos: -14.5,73.5 parent: 2 type: Transform - - uid: 20282 + - uid: 20298 components: - pos: -20.5,73.5 parent: 2 type: Transform - - uid: 20283 + - uid: 20299 components: - pos: -23.5,73.5 parent: 2 type: Transform - - uid: 20284 + - uid: 20300 components: - pos: -23.5,63.5 parent: 2 type: Transform - - uid: 20285 + - uid: 20301 components: - pos: -23.5,62.5 parent: 2 type: Transform - - uid: 20286 + - uid: 20302 components: - pos: -23.5,61.5 parent: 2 type: Transform - - uid: 20287 + - uid: 20303 components: - rot: 1.5707963267948966 rad pos: 39.5,52.5 parent: 2 type: Transform - - uid: 20288 + - uid: 20304 components: - rot: 3.141592653589793 rad pos: -11.5,51.5 parent: 2 type: Transform - - uid: 20289 + - uid: 20305 components: - rot: 3.141592653589793 rad pos: -11.5,53.5 parent: 2 type: Transform - - uid: 20290 + - uid: 20306 components: - rot: 3.141592653589793 rad pos: -5.5,47.5 parent: 2 type: Transform - - uid: 20291 + - uid: 20307 components: - rot: 3.141592653589793 rad pos: -3.5,47.5 parent: 2 type: Transform - - uid: 20292 + - uid: 20308 components: - rot: 3.141592653589793 rad pos: -5.5,57.5 parent: 2 type: Transform - - uid: 20293 + - uid: 20309 components: - rot: 3.141592653589793 rad pos: -7.5,57.5 parent: 2 type: Transform - - uid: 20294 + - uid: 20310 components: - rot: 3.141592653589793 rad pos: -20.5,67.5 parent: 2 type: Transform - - uid: 20295 + - uid: 20311 components: - rot: -1.5707963267948966 rad pos: -26.5,54.5 parent: 2 type: Transform - - uid: 20296 + - uid: 20312 components: - rot: -1.5707963267948966 rad pos: -26.5,53.5 parent: 2 type: Transform - - uid: 20297 + - uid: 20313 components: - pos: 46.5,43.5 parent: 2 type: Transform - - uid: 20298 + - uid: 20314 components: - rot: -1.5707963267948966 rad pos: -16.5,-88.5 parent: 2 type: Transform - - uid: 20299 + - uid: 20315 components: - rot: -1.5707963267948966 rad pos: -2.5,-82.5 parent: 2 type: Transform - - uid: 20300 + - uid: 20316 components: - rot: -1.5707963267948966 rad pos: -0.5,-82.5 parent: 2 type: Transform - - uid: 20301 + - uid: 20317 components: - pos: -26.5,-97.5 parent: 2 type: Transform - - uid: 20302 + - uid: 20318 components: - pos: -18.5,-97.5 parent: 2 type: Transform - - uid: 20303 + - uid: 20319 components: - pos: -21.5,-94.5 parent: 2 type: Transform - - uid: 20304 + - uid: 20320 components: - pos: -22.5,-94.5 parent: 2 type: Transform - - uid: 20305 + - uid: 20321 components: - pos: -23.5,-94.5 parent: 2 type: Transform - - uid: 20306 + - uid: 20322 components: - pos: -3.5,-97.5 parent: 2 type: Transform - - uid: 20307 + - uid: 20323 components: - pos: -3.5,-98.5 parent: 2 type: Transform - - uid: 20308 + - uid: 20324 components: - pos: -5.5,-101.5 parent: 2 type: Transform - - uid: 20309 + - uid: 20325 components: - pos: -6.5,-101.5 parent: 2 type: Transform - - uid: 20310 + - uid: 20326 components: - pos: -8.5,-101.5 parent: 2 type: Transform - - uid: 20311 + - uid: 20327 components: - pos: -9.5,-101.5 parent: 2 type: Transform - - uid: 20312 + - uid: 20328 components: - rot: 3.141592653589793 rad pos: -44.5,-89.5 parent: 2 type: Transform - - uid: 20313 + - uid: 20329 components: - rot: 3.141592653589793 rad pos: -44.5,-90.5 parent: 2 type: Transform - - uid: 20314 + - uid: 20330 components: - pos: -36.5,-100.5 parent: 2 type: Transform - - uid: 20315 + - uid: 20331 components: - pos: -21.5,-101.5 parent: 2 type: Transform - - uid: 20316 + - uid: 20332 components: - pos: -34.5,-100.5 parent: 2 type: Transform - - uid: 20317 + - uid: 20333 components: - rot: 1.5707963267948966 rad pos: -39.5,-89.5 parent: 2 type: Transform - - uid: 20318 + - uid: 20334 components: - rot: 1.5707963267948966 rad pos: -39.5,-90.5 parent: 2 type: Transform - - uid: 20319 + - uid: 20335 components: - rot: 1.5707963267948966 rad pos: -44.5,-95.5 parent: 2 type: Transform - - uid: 20320 + - uid: 20336 components: - rot: 1.5707963267948966 rad pos: -44.5,-96.5 parent: 2 type: Transform - - uid: 20321 + - uid: 20337 components: - rot: 1.5707963267948966 rad pos: -42.5,-98.5 parent: 2 type: Transform - - uid: 20322 + - uid: 20338 components: - rot: 1.5707963267948966 rad pos: -41.5,-98.5 parent: 2 type: Transform - - uid: 20323 + - uid: 20339 components: - pos: -23.5,-101.5 parent: 2 type: Transform - - uid: 20324 + - uid: 20340 components: - pos: -22.5,-101.5 parent: 2 type: Transform - - uid: 20325 + - uid: 20341 components: - rot: 3.141592653589793 rad pos: -73.5,-27.5 parent: 2 type: Transform - - uid: 20326 + - uid: 20342 components: - rot: 3.141592653589793 rad pos: -69.5,-31.5 parent: 2 type: Transform - - uid: 20327 + - uid: 20343 components: - pos: -70.5,-46.5 parent: 2 type: Transform - - uid: 20328 + - uid: 20344 components: - pos: -69.5,-46.5 parent: 2 type: Transform - - uid: 20329 + - uid: 20345 components: - pos: -68.5,-46.5 parent: 2 type: Transform - - uid: 20330 + - uid: 20346 components: - pos: -72.5,-42.5 parent: 2 type: Transform - - uid: 20331 + - uid: 20347 components: - pos: -72.5,-43.5 parent: 2 type: Transform - - uid: 20332 + - uid: 20348 components: - pos: -72.5,-44.5 parent: 2 type: Transform - - uid: 20333 + - uid: 20349 components: - pos: 78.5,-38.5 parent: 2 type: Transform - - uid: 20334 + - uid: 20350 components: - pos: 76.5,-35.5 parent: 2 type: Transform - - uid: 20335 + - uid: 20351 components: - pos: 77.5,-35.5 parent: 2 type: Transform - - uid: 20336 + - uid: 20352 components: - pos: 78.5,-35.5 parent: 2 type: Transform - - uid: 20337 + - uid: 20353 components: - pos: 79.5,-35.5 parent: 2 type: Transform - - uid: 20338 + - uid: 20354 components: - pos: 77.5,-32.5 parent: 2 type: Transform - - uid: 20339 + - uid: 20355 components: - pos: 78.5,-32.5 parent: 2 type: Transform - - uid: 20340 + - uid: 20356 components: - pos: 78.5,-44.5 parent: 2 type: Transform - - uid: 20341 + - uid: 20357 components: - pos: 78.5,-45.5 parent: 2 type: Transform - - uid: 20342 + - uid: 20358 components: - pos: 69.5,-42.5 parent: 2 type: Transform - - uid: 20343 + - uid: 20359 components: - pos: 70.5,-42.5 parent: 2 type: Transform - - uid: 20344 + - uid: 20360 components: - rot: -1.5707963267948966 rad pos: 72.5,-50.5 parent: 2 type: Transform - - uid: 20346 + - uid: 20361 components: - pos: 63.5,-61.5 parent: 2 type: Transform - - uid: 20347 + - uid: 20362 components: - pos: 62.5,-61.5 parent: 2 type: Transform - - uid: 20348 + - uid: 20363 components: - pos: 61.5,-61.5 parent: 2 type: Transform - - uid: 20349 + - uid: 20364 components: - pos: 52.5,-61.5 parent: 2 type: Transform - - uid: 20350 + - uid: 20365 components: - pos: 50.5,-64.5 parent: 2 type: Transform - - uid: 20351 + - uid: 20366 components: - pos: 3.5,-28.5 parent: 2 type: Transform - - uid: 20352 + - uid: 20367 components: - pos: 1.5,-30.5 parent: 2 type: Transform - - uid: 20353 + - uid: 20368 components: - pos: 61.5,-70.5 parent: 2 type: Transform - - uid: 20354 + - uid: 20369 components: - pos: 5.5,-28.5 parent: 2 type: Transform - - uid: 20355 + - uid: 20370 components: - pos: 1.5,-31.5 parent: 2 type: Transform - - uid: 20356 + - uid: 20371 components: - pos: 9.5,-31.5 parent: 2 type: Transform - - uid: 20357 + - uid: 20372 components: - pos: 9.5,-34.5 parent: 2 type: Transform - - uid: 20358 + - uid: 20373 components: - rot: -1.5707963267948966 rad pos: 69.5,-36.5 parent: 2 type: Transform - - uid: 20359 + - uid: 20374 components: - rot: -1.5707963267948966 rad pos: 69.5,-38.5 parent: 2 type: Transform - - uid: 20360 + - uid: 20375 components: - rot: 3.141592653589793 rad pos: 68.5,-39.5 parent: 2 type: Transform - - uid: 20361 + - uid: 20376 components: - rot: 3.141592653589793 rad pos: 66.5,-39.5 parent: 2 type: Transform - - uid: 20362 + - uid: 20377 components: - pos: -48.5,-74.5 parent: 2 type: Transform - - uid: 20363 + - uid: 20378 components: - rot: 3.141592653589793 rad pos: 73.5,-30.5 parent: 2 type: Transform - - uid: 20364 + - uid: 20379 components: - rot: 3.141592653589793 rad pos: 71.5,-27.5 parent: 2 type: Transform - - uid: 20365 + - uid: 20380 components: - rot: 3.141592653589793 rad pos: 73.5,-27.5 parent: 2 type: Transform - - uid: 20366 + - uid: 20381 components: - rot: 1.5707963267948966 rad pos: -58.5,-60.5 parent: 2 type: Transform - - uid: 20367 + - uid: 20382 components: - rot: 1.5707963267948966 rad pos: -54.5,-57.5 parent: 2 type: Transform - - uid: 20368 + - uid: 20383 components: - rot: 1.5707963267948966 rad pos: -52.5,-60.5 parent: 2 type: Transform - - uid: 20369 + - uid: 20384 components: - rot: 3.141592653589793 rad pos: 31.5,-33.5 parent: 2 type: Transform - - uid: 20370 + - uid: 20385 components: - rot: 3.141592653589793 rad pos: 19.5,-33.5 parent: 2 type: Transform - - uid: 20371 + - uid: 20386 components: - pos: 60.5,-70.5 parent: 2 type: Transform - - uid: 20372 + - uid: 20387 components: - pos: 2.5,-36.5 parent: 2 type: Transform - - uid: 20373 + - uid: 20388 components: - pos: 51.5,-68.5 parent: 2 type: Transform - - uid: 20374 + - uid: 20389 components: - pos: 50.5,-68.5 parent: 2 type: Transform - - uid: 20375 + - uid: 20390 components: - rot: -1.5707963267948966 rad pos: 43.5,-44.5 parent: 2 type: Transform - - uid: 20376 + - uid: 20391 components: - rot: -1.5707963267948966 rad pos: 44.5,-44.5 parent: 2 type: Transform - - uid: 20377 + - uid: 20392 components: - rot: -1.5707963267948966 rad pos: 16.5,38.5 parent: 2 type: Transform - - uid: 20378 + - uid: 20393 components: - rot: -1.5707963267948966 rad pos: 18.5,37.5 parent: 2 type: Transform - - uid: 20379 + - uid: 20394 components: - rot: -1.5707963267948966 rad pos: 14.5,37.5 parent: 2 type: Transform - - uid: 20380 + - uid: 20395 components: - pos: 62.5,-70.5 parent: 2 type: Transform - - uid: 20381 + - uid: 20396 components: - pos: 71.5,-64.5 parent: 2 type: Transform - - uid: 20382 + - uid: 20397 components: - rot: -1.5707963267948966 rad pos: 54.5,-68.5 parent: 2 type: Transform - - uid: 20383 + - uid: 20398 components: - rot: -1.5707963267948966 rad pos: 55.5,-68.5 parent: 2 type: Transform - - uid: 20384 + - uid: 20399 components: - rot: -1.5707963267948966 rad pos: 56.5,-68.5 parent: 2 type: Transform - - uid: 20385 + - uid: 20400 components: - pos: 54.5,-25.5 parent: 2 type: Transform - - uid: 20386 + - uid: 20401 components: - pos: 56.5,-25.5 parent: 2 type: Transform - - uid: 20387 + - uid: 20402 components: - pos: 58.5,-25.5 parent: 2 type: Transform - - uid: 20388 + - uid: 20403 components: - pos: 68.5,-57.5 parent: 2 type: Transform - - uid: 20389 + - uid: 20404 components: - rot: 1.5707963267948966 rad pos: -2.5,-5.5 parent: 2 type: Transform - - uid: 20390 + - uid: 20405 components: - pos: 71.5,-54.5 parent: 2 type: Transform - - uid: 20391 + - uid: 20406 components: - pos: 70.5,-54.5 parent: 2 type: Transform - - uid: 20392 + - uid: 20407 components: - pos: -12.5,43.5 parent: 2 type: Transform - - uid: 20393 + - uid: 20408 components: - pos: -8.5,43.5 parent: 2 type: Transform - - uid: 20394 + - uid: 20409 components: - pos: 73.5,46.5 parent: 2 type: Transform - - uid: 20395 + - uid: 20410 components: - pos: 72.5,46.5 parent: 2 type: Transform - - uid: 20396 + - uid: 20411 components: - rot: -1.5707963267948966 rad pos: 70.5,-50.5 parent: 2 type: Transform - - uid: 20397 + - uid: 20412 components: - rot: -1.5707963267948966 rad pos: -25.5,-18.5 parent: 2 type: Transform - - uid: 20398 + - uid: 20413 components: - pos: -66.5,-50.5 parent: 2 type: Transform - - uid: 20399 + - uid: 20414 components: - pos: -66.5,-51.5 parent: 2 type: Transform - - uid: 20400 + - uid: 20415 components: - pos: -66.5,-52.5 parent: 2 type: Transform - - uid: 20401 + - uid: 20416 components: - pos: -66.5,-53.5 parent: 2 type: Transform - - uid: 20402 + - uid: 20417 components: - pos: -66.5,-54.5 parent: 2 type: Transform - - uid: 20403 + - uid: 20418 components: - pos: -66.5,-55.5 parent: 2 type: Transform - - uid: 20404 + - uid: 20419 components: - pos: -66.5,-56.5 parent: 2 type: Transform - - uid: 20405 + - uid: 20420 components: - pos: -66.5,-57.5 parent: 2 type: Transform - - uid: 20406 + - uid: 20421 components: - pos: 36.5,18.5 parent: 2 type: Transform - - uid: 20407 + - uid: 20422 components: - pos: 35.5,18.5 parent: 2 type: Transform - - uid: 20408 + - uid: 20423 components: - pos: 34.5,18.5 parent: 2 type: Transform - - uid: 20409 + - uid: 20424 components: - rot: 3.141592653589793 rad pos: 71.5,-30.5 parent: 2 type: Transform - - uid: 20410 + - uid: 20425 components: - rot: 1.5707963267948966 rad pos: -52.5,-85.5 parent: 2 type: Transform - - uid: 20411 + - uid: 20426 components: - rot: 1.5707963267948966 rad pos: -52.5,-89.5 parent: 2 type: Transform - - uid: 20412 + - uid: 20427 components: - rot: 1.5707963267948966 rad pos: -49.5,-87.5 parent: 2 type: Transform - - uid: 20413 + - uid: 20428 components: - rot: 1.5707963267948966 rad pos: -50.5,-87.5 parent: 2 type: Transform - - uid: 20414 + - uid: 20429 components: - pos: -31.5,72.5 parent: 2 type: Transform - - uid: 20415 + - uid: 20430 components: - pos: -30.5,72.5 parent: 2 type: Transform - - uid: 20416 + - uid: 20431 components: - pos: -29.5,72.5 parent: 2 type: Transform - - uid: 20417 + - uid: 20432 components: - pos: -28.5,72.5 parent: 2 type: Transform - - uid: 20418 + - uid: 20433 components: - pos: -27.5,72.5 parent: 2 type: Transform - - uid: 20419 + - uid: 20434 components: - pos: -26.5,72.5 parent: 2 type: Transform - - uid: 20420 + - uid: 20435 components: - pos: -40.5,-62.5 parent: 2 type: Transform - - uid: 20421 + - uid: 20436 components: - pos: -41.5,-62.5 parent: 2 type: Transform - - uid: 20422 + - uid: 20437 components: - rot: 3.141592653589793 rad pos: -46.5,-39.5 parent: 2 type: Transform - - uid: 20423 + - uid: 20438 components: - pos: -47.5,-34.5 parent: 2 type: Transform - - uid: 20424 + - uid: 20439 components: - pos: -47.5,-35.5 parent: 2 type: Transform - - uid: 20425 + - uid: 20440 components: - pos: -51.5,-36.5 parent: 2 type: Transform - - uid: 20426 + - uid: 20441 components: - pos: -51.5,-37.5 parent: 2 type: Transform - - uid: 20427 + - uid: 20442 components: - pos: 46.5,-78.5 parent: 2 type: Transform - - uid: 20428 + - uid: 20443 components: - pos: 46.5,-77.5 parent: 2 type: Transform - - uid: 20429 + - uid: 20444 components: - pos: 46.5,-79.5 parent: 2 type: Transform - - uid: 20430 + - uid: 20445 components: - rot: 3.141592653589793 rad pos: 24.5,-80.5 parent: 2 type: Transform - - uid: 20431 + - uid: 20446 components: - rot: 3.141592653589793 rad pos: 50.5,-88.5 parent: 2 type: Transform - - uid: 20432 + - uid: 20447 components: - rot: 3.141592653589793 rad pos: 50.5,-89.5 parent: 2 type: Transform - - uid: 20433 + - uid: 20448 components: - rot: 3.141592653589793 rad pos: 50.5,-90.5 parent: 2 type: Transform - - uid: 20434 + - uid: 20449 components: - rot: 3.141592653589793 rad pos: 28.5,-89.5 parent: 2 type: Transform - - uid: 20435 + - uid: 20450 components: - rot: 3.141592653589793 rad pos: 25.5,-75.5 parent: 2 type: Transform - - uid: 20436 + - uid: 20451 components: - rot: 3.141592653589793 rad pos: 26.5,-75.5 parent: 2 type: Transform - - uid: 20437 + - uid: 20452 components: - rot: 3.141592653589793 rad pos: 28.5,-90.5 parent: 2 type: Transform - - uid: 20438 + - uid: 20453 components: - rot: 3.141592653589793 rad pos: 50.5,-83.5 parent: 2 type: Transform - - uid: 20439 + - uid: 20454 components: - rot: 3.141592653589793 rad pos: 50.5,-81.5 parent: 2 type: Transform - - uid: 20440 + - uid: 20455 components: - rot: 3.141592653589793 rad pos: 50.5,-82.5 parent: 2 type: Transform - - uid: 20441 + - uid: 20456 components: - rot: 3.141592653589793 rad pos: 14.5,-78.5 parent: 2 type: Transform - - uid: 20442 + - uid: 20457 components: - rot: 3.141592653589793 rad pos: 13.5,-78.5 parent: 2 type: Transform - - uid: 20443 + - uid: 20458 components: - rot: 3.141592653589793 rad pos: 25.5,-86.5 parent: 2 type: Transform - - uid: 20444 + - uid: 20459 components: - rot: 3.141592653589793 rad pos: 25.5,-67.5 parent: 2 type: Transform - - uid: 20445 + - uid: 20460 components: - rot: 1.5707963267948966 rad pos: 37.5,-74.5 parent: 2 type: Transform - - uid: 20446 + - uid: 20461 components: - rot: 3.141592653589793 rad pos: 26.5,-67.5 parent: 2 type: Transform - - uid: 20447 + - uid: 20462 components: - rot: 3.141592653589793 rad pos: 17.5,-78.5 parent: 2 type: Transform - - uid: 20448 + - uid: 20463 components: - rot: 3.141592653589793 rad pos: 16.5,-78.5 parent: 2 type: Transform - - uid: 20449 + - uid: 20464 components: - rot: 3.141592653589793 rad pos: 14.5,-88.5 parent: 2 type: Transform - - uid: 20450 + - uid: 20465 components: - rot: 3.141592653589793 rad pos: 13.5,-88.5 parent: 2 type: Transform - - uid: 20451 + - uid: 20466 components: - rot: 3.141592653589793 rad pos: 17.5,-88.5 parent: 2 type: Transform - - uid: 20452 + - uid: 20467 components: - rot: 3.141592653589793 rad pos: 16.5,-88.5 parent: 2 type: Transform - - uid: 20453 + - uid: 20468 components: - rot: 3.141592653589793 rad pos: 24.5,-86.5 parent: 2 type: Transform - - uid: 20454 + - uid: 20469 components: - rot: 3.141592653589793 rad pos: 51.5,-72.5 parent: 2 type: Transform - - uid: 20455 + - uid: 20470 components: - rot: 3.141592653589793 rad pos: 51.5,-71.5 parent: 2 type: Transform - - uid: 20456 + - uid: 20471 components: - pos: 9.5,-18.5 parent: 2 type: Transform - - uid: 20457 + - uid: 20472 components: - rot: 3.141592653589793 rad pos: 6.5,-22.5 parent: 2 type: Transform - - uid: 20458 + - uid: 20473 components: - rot: 3.141592653589793 rad pos: 6.5,-23.5 parent: 2 type: Transform - - uid: 20459 + - uid: 20474 components: - pos: 45.5,9.5 parent: 2 type: Transform - - uid: 20460 + - uid: 20475 components: - pos: 48.5,7.5 parent: 2 type: Transform - - uid: 20461 + - uid: 20476 components: - rot: -1.5707963267948966 rad pos: 1.5,-74.5 parent: 2 type: Transform - - uid: 20462 + - uid: 20477 components: - pos: -76.5,-25.5 parent: 2 type: Transform - - uid: 20463 + - uid: 20478 components: - pos: -76.5,-12.5 parent: 2 type: Transform - - uid: 20464 + - uid: 20479 components: - rot: -1.5707963267948966 rad pos: 31.5,35.5 parent: 2 type: Transform - - uid: 20465 + - uid: 20480 components: - rot: -1.5707963267948966 rad pos: 30.5,35.5 parent: 2 type: Transform - - uid: 20466 + - uid: 20481 components: - rot: -1.5707963267948966 rad pos: 29.5,35.5 parent: 2 type: Transform - - uid: 20467 + - uid: 20482 components: - rot: -1.5707963267948966 rad pos: 28.5,35.5 parent: 2 type: Transform - - uid: 20468 + - uid: 20483 components: - rot: -1.5707963267948966 rad pos: 27.5,35.5 parent: 2 type: Transform - - uid: 30655 + - uid: 20484 components: - pos: 67.5,-32.5 parent: 2 type: Transform - proto: GrilleBroken entities: - - uid: 20469 + - uid: 20485 components: - rot: 3.141592653589793 rad pos: -2.5,-71.5 parent: 2 type: Transform - - uid: 20470 + - uid: 20486 components: - pos: -2.5,-71.5 parent: 2 type: Transform - - uid: 20471 + - uid: 20487 components: - rot: -1.5707963267948966 rad pos: -54.5,-83.5 parent: 2 type: Transform - - uid: 20472 + - uid: 20488 components: - rot: 1.5707963267948966 rad pos: -54.5,-83.5 parent: 2 type: Transform - - uid: 20473 + - uid: 20489 components: - rot: -1.5707963267948966 rad pos: 2.5,49.5 parent: 2 type: Transform - - uid: 20474 + - uid: 20490 components: - rot: 1.5707963267948966 rad pos: 2.5,49.5 parent: 2 type: Transform - - uid: 20475 + - uid: 20491 components: - rot: 3.141592653589793 rad pos: 2.5,48.5 parent: 2 type: Transform - - uid: 20476 + - uid: 20492 components: - pos: 2.5,48.5 parent: 2 type: Transform - proto: GunpetInstrument entities: - - uid: 20477 + - uid: 20493 components: - pos: 18.804333,-20.357145 parent: 2 type: Transform - proto: Handcuffs entities: - - uid: 20478 + - uid: 20494 components: - pos: -1.4479281,19.547018 parent: 2 type: Transform - - uid: 20479 + - uid: 20495 components: - pos: -15.367192,-23.36869 parent: 2 type: Transform - - uid: 20480 + - uid: 20496 components: - pos: -16.022211,23.522974 parent: 2 type: Transform - proto: HandheldHealthAnalyzer entities: - - uid: 20481 + - uid: 20497 components: - pos: 10.274347,-58.341446 parent: 2 type: Transform - - uid: 20482 + - uid: 20498 components: - pos: 10.539972,-58.60707 parent: 2 type: Transform - - uid: 20483 + - uid: 20499 components: - pos: 45.505707,8.483616 parent: 2 type: Transform - proto: HandLabeler entities: - - uid: 20484 + - uid: 20500 components: - pos: 25.911264,-37.50932 parent: 2 type: Transform - - uid: 20485 + - uid: 20501 components: - pos: 7.5090528,-45.828945 parent: 2 type: Transform - - uid: 20486 + - uid: 20502 components: - pos: 39.184,-39.455414 parent: 2 type: Transform - - uid: 20487 + - uid: 20503 components: - pos: -33.328754,17.574179 parent: 2 type: Transform - - uid: 20488 + - uid: 20504 components: - pos: -28.559744,21.679361 parent: 2 type: Transform - - uid: 20489 + - uid: 20505 components: - rot: 3.141592653589793 rad pos: -32.198154,29.656374 @@ -157024,14 +157046,14 @@ entities: type: Transform - proto: HappyHonk entities: - - uid: 20490 + - uid: 20506 components: - pos: 0.93736494,-5.096624 parent: 2 type: Transform - proto: HappyHonkCluwne entities: - - uid: 20491 + - uid: 20507 components: - pos: -21.391912,47.73093 parent: 2 @@ -157040,7 +157062,7 @@ entities: type: EmitSoundOnCollide - proto: HappyHonkNukie entities: - - uid: 20492 + - uid: 20508 components: - pos: 22.60001,-29.307062 parent: 2 @@ -157049,67 +157071,67 @@ entities: type: EmitSoundOnCollide - proto: HarmonicaInstrument entities: - - uid: 20493 + - uid: 20509 components: - pos: 53.479427,24.562923 parent: 2 type: Transform - proto: Hemostat entities: - - uid: 20494 + - uid: 20510 components: - pos: 0.5210637,-64.93571 parent: 2 type: Transform - - uid: 20495 + - uid: 20511 components: - pos: 73.5331,-48.317677 parent: 2 type: Transform - proto: HighSecArmoryLocked entities: - - uid: 20496 + - uid: 20512 components: - pos: 28.5,26.5 parent: 2 type: Transform - - uid: 20497 + - uid: 20513 components: - pos: 30.5,26.5 parent: 2 type: Transform - - uid: 20498 + - uid: 20514 components: - pos: 30.5,24.5 parent: 2 type: Transform - - uid: 20499 + - uid: 20515 components: - pos: 28.5,24.5 parent: 2 type: Transform - proto: HighSecCaptainLocked entities: - - uid: 20500 + - uid: 20516 components: - name: vault type: MetaData - pos: 43.5,-24.5 parent: 2 type: Transform - - uid: 20501 + - uid: 20517 components: - name: vault type: MetaData - pos: 43.5,-27.5 parent: 2 type: Transform - - uid: 20502 + - uid: 20518 components: - pos: -1.5,64.5 parent: 2 type: Transform - - uid: 20503 + - uid: 20519 components: - name: AI type: MetaData @@ -157118,39 +157140,39 @@ entities: type: Transform - proto: HighSecCommandLocked entities: - - uid: 20504 + - uid: 20520 components: - pos: 13.5,-21.5 parent: 2 type: Transform - proto: HolofanProjector entities: - - uid: 20505 + - uid: 20521 components: - pos: -42.447636,35.63477 parent: 2 type: Transform - - uid: 20506 + - uid: 20522 components: - pos: -51.61548,-16.423727 parent: 2 type: Transform - - uid: 20507 + - uid: 20523 components: - pos: -37.369167,-8.432599 parent: 2 type: Transform - proto: HospitalCurtains entities: - - uid: 20508 + - uid: 20524 components: - pos: 60.5,21.5 parent: 2 type: Transform - - SecondsUntilStateChange: -488857.78 + - SecondsUntilStateChange: -489341.06 state: Opening type: Door - - uid: 20509 + - uid: 20525 components: - rot: 3.141592653589793 rad pos: 60.5,13.5 @@ -157158,528 +157180,528 @@ entities: type: Transform - proto: HospitalCurtainsOpen entities: - - uid: 20510 + - uid: 20526 components: - pos: -2.5,-55.5 parent: 2 type: Transform - - uid: 20511 + - uid: 20527 components: - pos: -5.5,-55.5 parent: 2 type: Transform - - uid: 20512 + - uid: 20528 components: - pos: -11.5,-55.5 parent: 2 type: Transform - - uid: 20513 + - uid: 20529 components: - pos: 3.5,-62.5 parent: 2 type: Transform - - SecondsUntilStateChange: -563419.3 + - SecondsUntilStateChange: -563902.6 state: Closing type: Door - - uid: 20514 + - uid: 20530 components: - pos: 0.5,-55.5 parent: 2 type: Transform - - uid: 20515 + - uid: 20531 components: - pos: -8.5,-55.5 parent: 2 type: Transform - proto: hydroponicsSoil entities: - - uid: 20516 + - uid: 20532 components: - name: grave type: MetaData - pos: -31.5,6.5 parent: 2 type: Transform - - uid: 20517 + - uid: 20533 components: - name: grave type: MetaData - pos: -31.5,4.5 parent: 2 type: Transform - - uid: 20518 + - uid: 20534 components: - name: grave type: MetaData - pos: -29.5,6.5 parent: 2 type: Transform - - uid: 20519 + - uid: 20535 components: - name: grave type: MetaData - pos: -29.5,4.5 parent: 2 type: Transform - - uid: 20520 + - uid: 20536 components: - pos: 9.5,55.5 parent: 2 type: Transform - - uid: 20521 + - uid: 20537 components: - pos: 8.5,55.5 parent: 2 type: Transform - - uid: 20522 + - uid: 20538 components: - pos: 10.5,55.5 parent: 2 type: Transform - - uid: 20523 + - uid: 20539 components: - pos: 11.5,55.5 parent: 2 type: Transform - - uid: 20524 + - uid: 20540 components: - pos: 7.5,55.5 parent: 2 type: Transform - - uid: 20525 + - uid: 20541 components: - pos: 11.5,52.5 parent: 2 type: Transform - - uid: 20526 + - uid: 20542 components: - pos: 10.5,52.5 parent: 2 type: Transform - - uid: 20527 + - uid: 20543 components: - pos: 9.5,52.5 parent: 2 type: Transform - - uid: 20528 + - uid: 20544 components: - pos: -6.5,49.5 parent: 2 type: Transform - - uid: 20529 + - uid: 20545 components: - pos: -4.5,55.5 parent: 2 type: Transform - proto: HydroponicsToolClippers entities: - - uid: 20530 + - uid: 20546 components: - pos: -47.467487,-3.558907 parent: 2 type: Transform - proto: HydroponicsToolHatchet entities: - - uid: 20531 + - uid: 20547 components: - pos: 9.725508,-56.44578 parent: 2 type: Transform - proto: HydroponicsToolMiniHoe entities: - - uid: 20532 + - uid: 20548 components: - pos: 57.497448,6.490094 parent: 2 type: Transform - - uid: 20533 + - uid: 20549 components: - pos: -28.501194,4.4131045 parent: 2 type: Transform - - uid: 20534 + - uid: 20550 components: - pos: 55.4544,56.501 parent: 2 type: Transform - - uid: 20535 + - uid: 20551 components: - pos: 7.1714664,53.671818 parent: 2 type: Transform - proto: HydroponicsToolSpade entities: - - uid: 20536 + - uid: 20552 components: - pos: 57.622448,6.583844 parent: 2 type: Transform - - uid: 20537 + - uid: 20553 components: - pos: -28.61099,3.5269613 parent: 2 type: Transform - - uid: 20538 + - uid: 20554 components: - pos: 55.54815,56.53225 parent: 2 type: Transform - proto: hydroponicsTray entities: - - uid: 20539 + - uid: 20555 components: - pos: -6.5,10.5 parent: 2 type: Transform - - uid: 20540 + - uid: 20556 components: - pos: -10.5,10.5 parent: 2 type: Transform - - uid: 20541 + - uid: 20557 components: - pos: -4.5,7.5 parent: 2 type: Transform - - uid: 20542 + - uid: 20558 components: - pos: -8.5,9.5 parent: 2 type: Transform - - uid: 20543 + - uid: 20559 components: - pos: -6.5,7.5 parent: 2 type: Transform - - uid: 20544 + - uid: 20560 components: - pos: -6.5,9.5 parent: 2 type: Transform - - uid: 20545 + - uid: 20561 components: - pos: -8.5,8.5 parent: 2 type: Transform - - uid: 20546 + - uid: 20562 components: - pos: -4.5,8.5 parent: 2 type: Transform - - uid: 20547 + - uid: 20563 components: - pos: -8.5,10.5 parent: 2 type: Transform - - uid: 20548 + - uid: 20564 components: - pos: -6.5,11.5 parent: 2 type: Transform - - uid: 20549 + - uid: 20565 components: - pos: -6.5,8.5 parent: 2 type: Transform - - uid: 20550 + - uid: 20566 components: - pos: -10.5,8.5 parent: 2 type: Transform - - uid: 20551 + - uid: 20567 components: - pos: -8.5,7.5 parent: 2 type: Transform - - uid: 20552 + - uid: 20568 components: - pos: -10.5,7.5 parent: 2 type: Transform - - uid: 20553 + - uid: 20569 components: - pos: -10.5,9.5 parent: 2 type: Transform - - uid: 20554 + - uid: 20570 components: - pos: -8.5,11.5 parent: 2 type: Transform - - uid: 20555 + - uid: 20571 components: - pos: 58.5,8.5 parent: 2 type: Transform - - uid: 20556 + - uid: 20572 components: - pos: 58.5,7.5 parent: 2 type: Transform - - uid: 20557 + - uid: 20573 components: - pos: 58.5,6.5 parent: 2 type: Transform - - uid: 20558 + - uid: 20574 components: - pos: 56.5,8.5 parent: 2 type: Transform - - uid: 20559 + - uid: 20575 components: - pos: 56.5,7.5 parent: 2 type: Transform - - uid: 20560 + - uid: 20576 components: - pos: 56.5,6.5 parent: 2 type: Transform - - uid: 20561 + - uid: 20577 components: - pos: 52.5,55.5 parent: 2 type: Transform - - uid: 20562 + - uid: 20578 components: - pos: 56.5,55.5 parent: 2 type: Transform - proto: HydroponicsTrayMachineCircuitboard entities: - - uid: 20563 + - uid: 20579 components: - pos: 38.518326,-56.124916 parent: 2 type: Transform - proto: InflatableDoorStack1 entities: - - uid: 20564 + - uid: 20580 components: - pos: 41.577766,-55.382984 parent: 2 type: Transform - proto: InflatableWall entities: - - uid: 20565 + - uid: 20581 components: - pos: -51.5,-66.5 parent: 2 type: Transform - - uid: 20566 + - uid: 20582 components: - pos: -51.5,-67.5 parent: 2 type: Transform - - uid: 20567 + - uid: 20583 components: - pos: -49.5,-72.5 parent: 2 type: Transform - proto: InflatableWallStack entities: - - uid: 20568 + - uid: 20584 components: - pos: 7.4753633,-16.474928 parent: 2 type: Transform - proto: InflatableWallStack1 entities: - - uid: 20569 + - uid: 20585 components: - pos: -38.56672,-98.45029 parent: 2 type: Transform - proto: IngotGold entities: - - uid: 20570 + - uid: 20586 components: - pos: 48.54513,-24.041304 parent: 2 type: Transform - - uid: 20571 + - uid: 20587 components: - pos: 48.16234,-27.566782 parent: 2 type: Transform - proto: IngotGold1 entities: - - uid: 20572 + - uid: 20588 components: - pos: 14.545005,56.593597 parent: 2 type: Transform - - uid: 20573 + - uid: 20589 components: - pos: 59.385517,-51.41954 parent: 2 type: Transform - - uid: 20574 + - uid: 20590 components: - pos: 59.432392,-51.591415 parent: 2 type: Transform - proto: Intercom entities: - - uid: 20575 + - uid: 20591 components: - pos: -38.5,-70.5 parent: 2 type: Transform - - uid: 20576 + - uid: 20592 components: - rot: 1.5707963267948966 rad pos: -14.5,57.5 parent: 2 type: Transform - - uid: 20577 + - uid: 20593 components: - rot: 1.5707963267948966 rad pos: 0.5,-10.5 parent: 2 type: Transform - - uid: 20578 + - uid: 20594 components: - pos: 37.5,-69.5 parent: 2 type: Transform - - uid: 20579 + - uid: 20595 components: - rot: -1.5707963267948966 rad pos: 29.5,-2.5 parent: 2 type: Transform - - uid: 20580 + - uid: 20596 components: - rot: -1.5707963267948966 rad pos: 7.5,6.5 parent: 2 type: Transform - - uid: 20581 + - uid: 20597 components: - pos: 14.5,4.5 parent: 2 type: Transform - - uid: 20582 + - uid: 20598 components: - pos: 9.5,11.5 parent: 2 type: Transform - - uid: 20583 + - uid: 20599 components: - rot: 1.5707963267948966 rad pos: 15.5,-3.5 parent: 2 type: Transform - - uid: 20584 + - uid: 20600 components: - pos: -31.5,11.5 parent: 2 type: Transform - - uid: 20585 + - uid: 20601 components: - rot: 1.5707963267948966 rad pos: -50.5,7.5 parent: 2 type: Transform - - uid: 20586 + - uid: 20602 components: - pos: -30.5,2.5 parent: 2 type: Transform - - uid: 20587 + - uid: 20603 components: - pos: -14.5,9.5 parent: 2 type: Transform - - uid: 20588 + - uid: 20604 components: - pos: -15.5,-24.5 parent: 2 type: Transform - - uid: 20589 + - uid: 20605 components: - pos: 4.5,-39.5 parent: 2 type: Transform - - uid: 20590 + - uid: 20606 components: - pos: 39.5,-40.5 parent: 2 type: Transform - - uid: 20591 + - uid: 20607 components: - pos: 29.5,-15.5 parent: 2 type: Transform - - uid: 20592 + - uid: 20608 components: - pos: 39.5,3.5 parent: 2 type: Transform - - uid: 20593 + - uid: 20609 components: - pos: 54.5,-4.5 parent: 2 type: Transform - - uid: 20594 + - uid: 20610 components: - rot: -1.5707963267948966 rad pos: 13.5,-8.5 parent: 2 type: Transform - - uid: 20595 + - uid: 20611 components: - rot: 1.5707963267948966 rad pos: -1.5,48.5 parent: 2 type: Transform - - uid: 20596 + - uid: 20612 components: - rot: 1.5707963267948966 rad pos: -19.5,40.5 parent: 2 type: Transform - - uid: 20597 + - uid: 20613 components: - rot: -1.5707963267948966 rad pos: -2.5,-18.5 parent: 2 type: Transform - - uid: 20598 + - uid: 20614 components: - pos: -14.5,-40.5 parent: 2 type: Transform - - uid: 20599 + - uid: 20615 components: - rot: -1.5707963267948966 rad pos: 17.5,-28.5 parent: 2 type: Transform - - uid: 20600 + - uid: 20616 components: - pos: 17.5,-51.5 parent: 2 type: Transform - - uid: 20601 + - uid: 20617 components: - pos: -25.5,-94.5 parent: 2 type: Transform - - uid: 20602 + - uid: 20618 components: - rot: 1.5707963267948966 rad pos: -21.5,29.5 parent: 2 type: Transform - - uid: 20603 + - uid: 20619 components: - pos: 23.5,-69.5 parent: 2 type: Transform - - uid: 20604 + - uid: 20620 components: - rot: -1.5707963267948966 rad pos: 20.5,-84.5 @@ -157687,41 +157709,41 @@ entities: type: Transform - proto: IntercomAll entities: - - uid: 20605 + - uid: 20621 components: - pos: 20.5,-20.5 parent: 2 type: Transform - proto: IntercomCommand entities: - - uid: 20606 + - uid: 20622 components: - pos: -34.5,-14.5 parent: 2 type: Transform - - uid: 20607 + - uid: 20623 components: - pos: 64.5,0.5 parent: 2 type: Transform - - uid: 20608 + - uid: 20624 components: - pos: 64.5,-50.5 parent: 2 type: Transform - - uid: 20609 + - uid: 20625 components: - rot: -1.5707963267948966 rad pos: 9.5,21.5 parent: 2 type: Transform - - uid: 20610 + - uid: 20626 components: - rot: 1.5707963267948966 rad pos: 24.5,-35.5 parent: 2 type: Transform - - uid: 20611 + - uid: 20627 components: - rot: -1.5707963267948966 rad pos: -16.5,-57.5 @@ -157729,33 +157751,33 @@ entities: type: Transform - proto: IntercomEngineering entities: - - uid: 20612 + - uid: 20628 components: - pos: -24.5,-7.5 parent: 2 type: Transform - - uid: 20613 + - uid: 20629 components: - pos: -35.5,-4.5 parent: 2 type: Transform - - uid: 20614 + - uid: 20630 components: - rot: -1.5707963267948966 rad pos: -52.5,-9.5 parent: 2 type: Transform - - uid: 20615 + - uid: 20631 components: - pos: -61.5,-26.5 parent: 2 type: Transform - - uid: 20616 + - uid: 20632 components: - pos: -28.5,-32.5 parent: 2 type: Transform - - uid: 20617 + - uid: 20633 components: - rot: -1.5707963267948966 rad pos: -32.5,-49.5 @@ -157763,159 +157785,159 @@ entities: type: Transform - proto: IntercomMedical entities: - - uid: 20618 + - uid: 20634 components: - pos: -13.5,-58.5 parent: 2 type: Transform - - uid: 20619 + - uid: 20635 components: - rot: 1.5707963267948966 rad pos: -32.5,-70.5 parent: 2 type: Transform - - uid: 20620 + - uid: 20636 components: - pos: -24.5,-56.5 parent: 2 type: Transform - - uid: 20621 + - uid: 20637 components: - pos: 2.5,-51.5 parent: 2 type: Transform - - uid: 20622 + - uid: 20638 components: - pos: -25.5,-68.5 parent: 2 type: Transform - - uid: 20623 + - uid: 20639 components: - rot: -1.5707963267948966 rad pos: -4.5,-64.5 parent: 2 type: Transform - - uid: 20624 + - uid: 20640 components: - rot: 1.5707963267948966 rad pos: -13.5,-36.5 parent: 2 type: Transform - - uid: 20625 + - uid: 20641 components: - rot: 1.5707963267948966 rad pos: -27.5,-85.5 parent: 2 type: Transform - - uid: 20626 + - uid: 20642 components: - rot: -1.5707963267948966 rad pos: -21.5,-80.5 parent: 2 type: Transform - - uid: 20627 + - uid: 20643 components: - pos: -19.5,-74.5 parent: 2 type: Transform - proto: IntercomScience entities: - - uid: 20628 + - uid: 20644 components: - pos: 42.5,-34.5 parent: 2 type: Transform - - uid: 20629 + - uid: 20645 components: - pos: 44.5,-40.5 parent: 2 type: Transform - - uid: 20630 + - uid: 20646 components: - rot: 1.5707963267948966 rad pos: 40.5,-45.5 parent: 2 type: Transform - - uid: 20631 + - uid: 20647 components: - rot: -1.5707963267948966 rad pos: 53.5,-55.5 parent: 2 type: Transform - - uid: 20632 + - uid: 20648 components: - pos: 67.5,-42.5 parent: 2 type: Transform - - uid: 20633 + - uid: 20649 components: - rot: -1.5707963267948966 rad pos: 76.5,-40.5 parent: 2 type: Transform - - uid: 20634 + - uid: 20650 components: - pos: 60.5,-30.5 parent: 2 type: Transform - - uid: 20635 + - uid: 20651 components: - pos: 53.5,-38.5 parent: 2 type: Transform - proto: IntercomSecurity entities: - - uid: 20636 + - uid: 20652 components: - rot: 1.5707963267948966 rad pos: 3.5,14.5 parent: 2 type: Transform - - uid: 20637 + - uid: 20653 components: - rot: -1.5707963267948966 rad pos: -13.5,24.5 parent: 2 type: Transform - - uid: 20638 + - uid: 20654 components: - pos: -16.5,-19.5 parent: 2 type: Transform - - uid: 20639 + - uid: 20655 components: - rot: 1.5707963267948966 rad pos: -2.5,18.5 parent: 2 type: Transform - - uid: 20640 + - uid: 20656 components: - pos: 26.5,24.5 parent: 2 type: Transform - - uid: 20641 + - uid: 20657 components: - pos: 16.5,24.5 parent: 2 type: Transform - - uid: 20642 + - uid: 20658 components: - rot: 1.5707963267948966 rad pos: 18.5,-45.5 parent: 2 type: Transform - - uid: 20643 + - uid: 20659 components: - rot: 1.5707963267948966 rad pos: 16.5,-13.5 parent: 2 type: Transform - - uid: 20644 + - uid: 20660 components: - pos: 4.5,-55.5 parent: 2 type: Transform - - uid: 20645 + - uid: 20661 components: - rot: -1.5707963267948966 rad pos: 43.5,9.5 @@ -157923,17 +157945,17 @@ entities: type: Transform - proto: IntercomService entities: - - uid: 20646 + - uid: 20662 components: - pos: 20.5,15.5 parent: 2 type: Transform - - uid: 20647 + - uid: 20663 components: - pos: -26.5,16.5 parent: 2 type: Transform - - uid: 20648 + - uid: 20664 components: - rot: 1.5707963267948966 rad pos: -11.5,5.5 @@ -157941,35 +157963,35 @@ entities: type: Transform - proto: IntercomSupply entities: - - uid: 20649 + - uid: 20665 components: - rot: -1.5707963267948966 rad pos: -29.5,24.5 parent: 2 type: Transform - - uid: 20650 + - uid: 20666 components: - pos: -48.5,17.5 parent: 2 type: Transform - - uid: 20651 + - uid: 20667 components: - rot: 1.5707963267948966 rad pos: -26.5,20.5 parent: 2 type: Transform - - uid: 20652 + - uid: 20668 components: - rot: 1.5707963267948966 rad pos: -35.5,30.5 parent: 2 type: Transform - - uid: 20653 + - uid: 20669 components: - pos: -43.5,26.5 parent: 2 type: Transform - - uid: 20654 + - uid: 20670 components: - rot: -1.5707963267948966 rad pos: -39.5,28.5 @@ -157977,7 +157999,7 @@ entities: type: Transform - proto: JanitorialTrolley entities: - - uid: 20655 + - uid: 20671 components: - rot: -1.5707963267948966 rad pos: -7.5,-22.5 @@ -157985,19 +158007,19 @@ entities: type: Transform - proto: JetpackBlueFilled entities: - - uid: 20656 + - uid: 20672 components: - rot: 3.141592653589793 rad pos: 33.468403,-14.391748 parent: 2 type: Transform - - uid: 20657 + - uid: 20673 components: - rot: 3.141592653589793 rad pos: 33.499653,-14.469873 parent: 2 type: Transform - - uid: 20658 + - uid: 20674 components: - rot: 3.141592653589793 rad pos: 33.640278,-14.579248 @@ -158005,95 +158027,95 @@ entities: type: Transform - proto: KitchenMicrowave entities: - - uid: 20659 + - uid: 20675 components: - pos: -31.5,-69.5 parent: 2 type: Transform - - uid: 20660 + - uid: 20676 components: - pos: 2.5,7.5 parent: 2 type: Transform - - uid: 20661 + - uid: 20677 components: - pos: 4.5,6.5 parent: 2 type: Transform - - uid: 20662 + - uid: 20678 components: - pos: 31.5,-20.5 parent: 2 type: Transform - - uid: 20663 + - uid: 20679 components: - pos: 52.5,18.5 parent: 2 type: Transform - - uid: 20664 + - uid: 20680 components: - pos: 45.5,-49.5 parent: 2 type: Transform - - uid: 20665 + - uid: 20681 components: - pos: -38.5,-32.5 parent: 2 type: Transform - - uid: 20666 + - uid: 20682 components: - pos: -22.5,45.5 parent: 2 type: Transform - - uid: 20667 + - uid: 20683 components: - pos: -8.5,41.5 parent: 2 type: Transform - proto: KitchenReagentGrinder entities: - - uid: 20668 + - uid: 20684 components: - pos: -3.5,5.5 parent: 2 type: Transform - - uid: 20669 + - uid: 20685 components: - pos: 3.5,-47.5 parent: 2 type: Transform - - uid: 20670 + - uid: 20686 components: - pos: 3.5,7.5 parent: 2 type: Transform - - uid: 20671 + - uid: 20687 components: - pos: 53.5,18.5 parent: 2 type: Transform - proto: KitchenSpike entities: - - uid: 20672 + - uid: 20688 components: - pos: -0.5,11.5 parent: 2 type: Transform - proto: Lamp entities: - - uid: 20673 + - uid: 20689 components: - rot: -1.5707963267948966 rad pos: -3.8543606,-48.096176 parent: 2 type: Transform - - uid: 20674 + - uid: 20690 components: - rot: 1.5707963267948966 rad pos: 24.558033,-21.226107 parent: 2 type: Transform - - uid: 20675 + - uid: 20691 components: - pos: 21.425192,-12.111239 parent: 2 @@ -158118,71 +158140,71 @@ entities: temporary: False event: !type:ToggleActionEvent {} type: HandheldLight - - uid: 20676 + - uid: 20692 components: - rot: -1.5707963267948966 rad pos: 7.6524577,20.90233 parent: 2 type: Transform - - uid: 20677 + - uid: 20693 components: - rot: -1.5707963267948966 rad pos: -9.565374,-37.00866 parent: 2 type: Transform - - uid: 20678 + - uid: 20694 components: - rot: 1.5707963267948966 rad pos: 51.608532,-40.935013 parent: 2 type: Transform - - uid: 20679 + - uid: 20695 components: - pos: 59.696476,-1.1797758 parent: 2 type: Transform - - uid: 20680 + - uid: 20696 components: - rot: 1.5707963267948966 rad pos: -33.336697,29.910027 parent: 2 type: Transform - - uid: 20681 + - uid: 20697 components: - pos: -24.34436,11.920202 parent: 2 type: Transform - - uid: 20682 + - uid: 20698 components: - rot: 1.5707963267948966 rad pos: -28.600471,45.10426 parent: 2 type: Transform - - uid: 20683 + - uid: 20699 components: - pos: -12.458234,-18.122696 parent: 2 type: Transform - proto: LampBanana entities: - - uid: 20684 + - uid: 20700 components: - pos: 4.618959,-10.256847 parent: 2 type: Transform - - uid: 20685 + - uid: 20701 components: - pos: -22.53235,37.89803 parent: 2 type: Transform - proto: LampGold entities: - - uid: 20686 + - uid: 20702 components: - pos: -22.537891,-69.31316 parent: 2 type: Transform - - uid: 20687 + - uid: 20703 components: - pos: -18.78946,-56.159798 parent: 2 @@ -158207,33 +158229,33 @@ entities: temporary: False event: !type:ToggleActionEvent {} type: HandheldLight - - uid: 20688 + - uid: 20704 components: - pos: -10.485052,-3.11381 parent: 2 type: Transform - - uid: 20689 + - uid: 20705 components: - rot: 1.5707963267948966 rad pos: 43.557644,-4.1465535 parent: 2 type: Transform - - uid: 20690 + - uid: 20706 components: - pos: 37.53909,-2.5487528 parent: 2 type: Transform - - uid: 20691 + - uid: 20707 components: - pos: 32.892563,-50.10114 parent: 2 type: Transform - - uid: 20692 + - uid: 20708 components: - pos: 28.845686,-50.06989 parent: 2 type: Transform - - uid: 20693 + - uid: 20709 components: - rot: 1.5707963267948966 rad pos: -22.520432,-96.69095 @@ -158241,440 +158263,72 @@ entities: type: Transform - proto: LargeBeaker entities: - - uid: 20694 + - uid: 20710 components: - pos: 3.6272888,-45.59047 parent: 2 type: Transform - - uid: 20695 + - uid: 20711 components: - pos: 3.2216597,-45.50144 parent: 2 type: Transform - - uid: 20696 + - uid: 20712 components: - pos: 3.6444578,-45.294815 parent: 2 type: Transform - - uid: 20697 + - uid: 20713 components: - pos: 4.621125,7.7027445 parent: 2 type: Transform - - uid: 20698 + - uid: 20714 components: - pos: -25.403534,-78.32023 parent: 2 type: Transform - - uid: 20699 + - uid: 20715 components: - pos: -25.716034,-78.71085 parent: 2 type: Transform - - uid: 20700 + - uid: 20716 components: - pos: -25.591316,-84.223625 parent: 2 type: Transform - proto: LauncherCreamPie entities: - - uid: 20701 + - uid: 20717 components: - pos: 4.462709,-9.678722 parent: 2 type: Transform - proto: Lighter entities: - - uid: 20702 + - uid: 20718 components: - pos: 13.70992,-34.538578 parent: 2 type: Transform - - uid: 20703 + - uid: 20719 components: - pos: 15.667978,-79.47625 parent: 2 type: Transform - proto: LightTube entities: - - uid: 20704 + - uid: 20720 components: - pos: -39.78844,-85.422134 parent: 2 type: Transform - proto: LockerAtmosphericsFilled entities: - - uid: 20705 - components: - - pos: -33.5,-32.5 - parent: 2 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 20706 - components: - - pos: -39.5,-36.5 - parent: 2 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 20707 - components: - - pos: -37.5,-36.5 - parent: 2 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 20708 - components: - - pos: -35.5,-36.5 - parent: 2 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerBoozeFilled - entities: - - uid: 20709 - components: - - pos: 22.5,12.5 - parent: 2 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerBotanistFilled - entities: - - uid: 20710 - components: - - pos: -4.5,11.5 - parent: 2 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerCaptainFilled - entities: - - uid: 20711 - components: - - pos: 29.5,-27.5 - parent: 2 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerChemistryFilled - entities: - - uid: 20712 - components: - - pos: 7.5,-50.5 - parent: 2 - type: Transform -- proto: LockerChiefEngineerFilled - entities: - - uid: 20713 - components: - - pos: -37.5,-15.5 - parent: 2 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerChiefMedicalOfficerFilled - entities: - - uid: 20714 - components: - - pos: -18.5,-54.5 - parent: 2 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerDetectiveFilled - entities: - - uid: 20715 - components: - - pos: 17.5,-10.5 - parent: 2 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerElectricalSupplies - entities: - - uid: 20716 - components: - - pos: -74.5,-28.5 - parent: 2 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 20717 - components: - - pos: -7.5,-17.5 - parent: 2 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerElectricalSuppliesFilled - entities: - - uid: 20718 - components: - - pos: 46.5,-3.5 - parent: 2 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 20719 - components: - - pos: -53.5,0.5 - parent: 2 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 20720 - components: - - pos: 32.5,25.5 - parent: 2 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 20721 components: - - pos: 39.5,-28.5 + - pos: -33.5,-32.5 parent: 2 type: Transform - air: @@ -158695,11 +158349,9 @@ entities: - 0 - 0 type: EntityStorage -- proto: LockerEngineerFilled - entities: - uid: 20722 components: - - pos: -39.5,-7.5 + - pos: -39.5,-36.5 parent: 2 type: Transform - air: @@ -158722,7 +158374,7 @@ entities: type: EntityStorage - uid: 20723 components: - - pos: -39.5,-12.5 + - pos: -37.5,-36.5 parent: 2 type: Transform - air: @@ -158745,7 +158397,7 @@ entities: type: EntityStorage - uid: 20724 components: - - pos: -39.5,-8.5 + - pos: -35.5,-36.5 parent: 2 type: Transform - air: @@ -158766,9 +158418,11 @@ entities: - 0 - 0 type: EntityStorage +- proto: LockerBoozeFilled + entities: - uid: 20725 components: - - pos: -39.5,-9.5 + - pos: 22.5,12.5 parent: 2 type: Transform - air: @@ -158789,7 +158443,375 @@ entities: - 0 - 0 type: EntityStorage +- proto: LockerBotanistFilled + entities: - uid: 20726 + components: + - pos: -4.5,11.5 + parent: 2 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 8.402782 + - 31.610466 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerCaptainFilled + entities: + - uid: 20727 + components: + - pos: 29.5,-27.5 + parent: 2 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 8.402782 + - 31.610466 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerChemistryFilled + entities: + - uid: 20728 + components: + - pos: 7.5,-50.5 + parent: 2 + type: Transform +- proto: LockerChiefEngineerFilled + entities: + - uid: 20729 + components: + - pos: -37.5,-15.5 + parent: 2 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 8.402782 + - 31.610466 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerChiefMedicalOfficerFilled + entities: + - uid: 20730 + components: + - pos: -18.5,-54.5 + parent: 2 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 8.402782 + - 31.610466 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerDetectiveFilled + entities: + - uid: 20731 + components: + - pos: 17.5,-10.5 + parent: 2 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 8.402782 + - 31.610466 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerElectricalSupplies + entities: + - uid: 20732 + components: + - pos: -74.5,-28.5 + parent: 2 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 8.402782 + - 31.610466 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 20733 + components: + - pos: -7.5,-17.5 + parent: 2 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 8.402782 + - 31.610466 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerElectricalSuppliesFilled + entities: + - uid: 20734 + components: + - pos: 46.5,-3.5 + parent: 2 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 8.402782 + - 31.610466 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 20735 + components: + - pos: -53.5,0.5 + parent: 2 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 8.402782 + - 31.610466 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 20736 + components: + - pos: 32.5,25.5 + parent: 2 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 8.402782 + - 31.610466 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 20737 + components: + - pos: 39.5,-28.5 + parent: 2 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 8.402782 + - 31.610466 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerEngineerFilled + entities: + - uid: 20738 + components: + - pos: -39.5,-7.5 + parent: 2 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 8.402782 + - 31.610466 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 20739 + components: + - pos: -39.5,-12.5 + parent: 2 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 8.402782 + - 31.610466 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 20740 + components: + - pos: -39.5,-8.5 + parent: 2 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 8.402782 + - 31.610466 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 20741 + components: + - pos: -39.5,-9.5 + parent: 2 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 8.402782 + - 31.610466 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 20742 components: - pos: -50.5,-20.5 parent: 2 @@ -158814,7 +158836,7 @@ entities: type: EntityStorage - proto: LockerEvidence entities: - - uid: 20727 + - uid: 20743 components: - pos: 4.5,-57.5 parent: 2 @@ -158837,7 +158859,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20728 + - uid: 20744 components: - pos: 34.5,-45.5 parent: 2 @@ -158860,7 +158882,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20729 + - uid: 20745 components: - pos: 18.5,23.5 parent: 2 @@ -158883,17 +158905,17 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20730 + - uid: 20746 components: - pos: 37.5,12.5 parent: 2 type: Transform - - uid: 20731 + - uid: 20747 components: - pos: 37.5,11.5 parent: 2 type: Transform - - uid: 20732 + - uid: 20748 components: - pos: 41.5,16.5 parent: 2 @@ -158916,7 +158938,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20733 + - uid: 20749 components: - pos: 40.5,16.5 parent: 2 @@ -158939,7 +158961,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20734 + - uid: 20750 components: - pos: 39.5,16.5 parent: 2 @@ -158962,7 +158984,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20735 + - uid: 20751 components: - pos: 38.5,16.5 parent: 2 @@ -158985,7 +159007,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20736 + - uid: 20752 components: - pos: 42.5,16.5 parent: 2 @@ -159008,7 +159030,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20737 + - uid: 20753 components: - pos: 37.5,16.5 parent: 2 @@ -159031,14 +159053,14 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20738 + - uid: 20754 components: - pos: 37.5,10.5 parent: 2 type: Transform - proto: LockerFreezer entities: - - uid: 20739 + - uid: 20755 components: - pos: -38.5,37.5 parent: 2 @@ -159061,7 +159083,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20740 + - uid: 20756 components: - pos: -38.5,36.5 parent: 2 @@ -159084,7 +159106,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20741 + - uid: 20757 components: - pos: 1.5,14.5 parent: 2 @@ -159107,7 +159129,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20742 + - uid: 20758 components: - pos: -5.5,-95.5 parent: 2 @@ -159132,7 +159154,7 @@ entities: type: EntityStorage - proto: LockerHeadOfPersonnelFilled entities: - - uid: 20743 + - uid: 20759 components: - pos: 21.5,-34.5 parent: 2 @@ -159157,7 +159179,7 @@ entities: type: EntityStorage - proto: LockerHeadOfSecurityFilled entities: - - uid: 20744 + - uid: 20760 components: - pos: 4.5,22.5 parent: 2 @@ -159182,7 +159204,7 @@ entities: type: EntityStorage - proto: LockerMedicalFilled entities: - - uid: 20745 + - uid: 20761 components: - pos: -15.5,-49.5 parent: 2 @@ -159205,7 +159227,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20746 + - uid: 20762 components: - pos: -15.5,-47.5 parent: 2 @@ -159228,7 +159250,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20747 + - uid: 20763 components: - pos: -15.5,-45.5 parent: 2 @@ -159251,26 +159273,26 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20748 + - uid: 20764 components: - pos: -15.5,-61.5 parent: 2 type: Transform - - uid: 20749 + - uid: 20765 components: - pos: -14.5,-61.5 parent: 2 type: Transform - proto: LockerParamedicFilled entities: - - uid: 20750 + - uid: 20766 components: - pos: 2.5,-64.5 parent: 2 type: Transform - proto: LockerQuarterMasterFilled entities: - - uid: 20751 + - uid: 20767 components: - pos: -34.5,31.5 parent: 2 @@ -159295,7 +159317,7 @@ entities: type: EntityStorage - proto: LockerResearchDirectorFilled entities: - - uid: 20752 + - uid: 20768 components: - pos: 63.5,-55.5 parent: 2 @@ -159320,7 +159342,7 @@ entities: type: EntityStorage - proto: LockerSalvageSpecialistFilled entities: - - uid: 20753 + - uid: 20769 components: - pos: -36.5,32.5 parent: 2 @@ -159343,7 +159365,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20754 + - uid: 20770 components: - pos: -36.5,30.5 parent: 2 @@ -159366,7 +159388,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20755 + - uid: 20771 components: - pos: -36.5,28.5 parent: 2 @@ -159389,14 +159411,14 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20756 + - uid: 20772 components: - pos: -45.5,44.5 parent: 2 type: Transform - proto: LockerScienceFilled entities: - - uid: 20757 + - uid: 20773 components: - pos: 44.5,-45.5 parent: 2 @@ -159419,7 +159441,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20758 + - uid: 20774 components: - pos: 42.5,-45.5 parent: 2 @@ -159442,7 +159464,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20759 + - uid: 20775 components: - pos: 41.5,-45.5 parent: 2 @@ -159467,7 +159489,7 @@ entities: type: EntityStorage - proto: LockerSecurity entities: - - uid: 20760 + - uid: 20776 components: - pos: 19.5,-47.5 parent: 2 @@ -159490,7 +159512,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20761 + - uid: 20777 components: - pos: 52.5,13.5 parent: 2 @@ -159513,7 +159535,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20762 + - uid: 20778 components: - pos: -14.5,23.5 parent: 2 @@ -159538,7 +159560,7 @@ entities: type: EntityStorage - proto: LockerSecurityFilled entities: - - uid: 20763 + - uid: 20779 components: - pos: -0.5,17.5 parent: 2 @@ -159561,7 +159583,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20764 + - uid: 20780 components: - pos: -0.5,19.5 parent: 2 @@ -159586,7 +159608,7 @@ entities: type: EntityStorage - proto: LockerSyndicatePersonal entities: - - uid: 20765 + - uid: 20781 components: - pos: -53.5,-86.5 parent: 2 @@ -159609,9 +159631,16 @@ entities: - 0 - 0 type: EntityStorage +- proto: LockerWallMedicalDoctorFilled + entities: + - uid: 20782 + components: + - pos: 6.5,-58.5 + parent: 2 + type: Transform - proto: LockerWallMedicalFilled entities: - - uid: 20766 + - uid: 20783 components: - pos: -26.5,-56.5 parent: 2 @@ -159636,7 +159665,7 @@ entities: type: EntityStorage - proto: LockerWardenFilled entities: - - uid: 20767 + - uid: 20784 components: - pos: 20.5,23.5 parent: 2 @@ -159661,7 +159690,7 @@ entities: type: EntityStorage - proto: LockerWeldingSuppliesFilled entities: - - uid: 20768 + - uid: 20785 components: - pos: 38.5,-53.5 parent: 2 @@ -159684,7 +159713,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20769 + - uid: 20786 components: - pos: 13.5,-47.5 parent: 2 @@ -159707,7 +159736,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20770 + - uid: 20787 components: - pos: -53.5,-61.5 parent: 2 @@ -159732,7 +159761,7 @@ entities: type: EntityStorage - proto: MachineAnomalyGenerator entities: - - uid: 20771 + - uid: 20788 components: - pos: 62.5,-30.5 parent: 2 @@ -159741,31 +159770,31 @@ entities: type: AmbientSound - proto: MachineAnomalyVessel entities: - - uid: 20772 + - uid: 20789 components: - pos: 58.5,-32.5 parent: 2 type: Transform - - uid: 20773 + - uid: 20790 components: - pos: 57.5,-32.5 parent: 2 type: Transform - proto: MachineAPE entities: - - uid: 20774 + - uid: 20791 components: - rot: 1.5707963267948966 rad pos: 57.5,-34.5 parent: 2 type: Transform - - uid: 20775 + - uid: 20792 components: - rot: 1.5707963267948966 rad pos: 57.5,-35.5 parent: 2 type: Transform - - uid: 20776 + - uid: 20793 components: - rot: 1.5707963267948966 rad pos: 58.5,-35.5 @@ -159773,7 +159802,7 @@ entities: type: Transform - proto: MachineArtifactAnalyzer entities: - - uid: 20777 + - uid: 20794 components: - rot: -1.5707963267948966 rad pos: 72.5,-28.5 @@ -159782,88 +159811,88 @@ entities: - inputs: ArtifactAnalyzerReceiver: - port: ArtifactAnalyzerSender - uid: 12270 + uid: 12276 type: SignalReceiver - proto: MachineFrame entities: - - uid: 20778 + - uid: 20795 components: - pos: -7.5,-63.5 parent: 2 type: Transform - - uid: 20779 + - uid: 20796 components: - pos: -9.5,-63.5 parent: 2 type: Transform - proto: MachineFrameDestroyed entities: - - uid: 20780 + - uid: 20797 components: - pos: 45.5,44.5 parent: 2 type: Transform - - uid: 20781 + - uid: 20798 components: - pos: -16.5,-8.5 parent: 2 type: Transform - - uid: 20782 + - uid: 20799 components: - pos: -36.5,-29.5 parent: 2 type: Transform - proto: MagazinePistolHighVelocity entities: - - uid: 20783 + - uid: 20800 components: - pos: 32.305683,32.48245 parent: 2 type: Transform - - uid: 20784 + - uid: 20801 components: - pos: 32.32131,32.48245 parent: 2 type: Transform - - uid: 20785 + - uid: 20802 components: - pos: 32.32131,32.48245 parent: 2 type: Transform - - uid: 20786 + - uid: 20803 components: - pos: 32.305683,32.48245 parent: 2 type: Transform - proto: MagazinePistolSubMachineGunHighVelocity entities: - - uid: 20787 + - uid: 20804 components: - pos: 29.960567,32.527683 parent: 2 type: Transform - - uid: 20788 + - uid: 20805 components: - pos: 29.952528,32.56383 parent: 2 type: Transform - - uid: 20789 + - uid: 20806 components: - pos: 29.936903,32.548206 parent: 2 type: Transform - - uid: 20790 + - uid: 20807 components: - pos: 29.968153,32.610706 parent: 2 type: Transform - - uid: 20791 + - uid: 20808 components: - rot: 3.141592653589793 rad pos: 29.992437,32.514297 parent: 2 type: Transform - - uid: 20792 + - uid: 20809 components: - rot: 3.141592653589793 rad pos: 29.976812,32.483047 @@ -159871,622 +159900,622 @@ entities: type: Transform - proto: MagazinePistolSubMachineGunTopMounted entities: - - uid: 20793 + - uid: 20810 components: - pos: 6.551134,22.646631 parent: 2 type: Transform - proto: MagicDiceBag entities: - - uid: 20794 + - uid: 20811 components: - pos: -47.440662,5.801874 parent: 2 type: Transform - proto: MaintenanceFluffSpawner entities: - - uid: 20795 + - uid: 20812 components: - pos: 15.5,-66.5 parent: 2 type: Transform - - uid: 20796 + - uid: 20813 components: - pos: 12.5,-53.5 parent: 2 type: Transform - - uid: 20797 + - uid: 20814 components: - pos: -15.5,-29.5 parent: 2 type: Transform - - uid: 20798 + - uid: 20815 components: - rot: -1.5707963267948966 rad pos: -16.5,-16.5 parent: 2 type: Transform - - uid: 20799 + - uid: 20816 components: - rot: -1.5707963267948966 rad pos: -8.5,-10.5 parent: 2 type: Transform - - uid: 20800 + - uid: 20817 components: - rot: -1.5707963267948966 rad pos: -11.5,-8.5 parent: 2 type: Transform - - uid: 20801 + - uid: 20818 components: - pos: -35.5,-22.5 parent: 2 type: Transform - - uid: 20802 + - uid: 20819 components: - pos: 43.5,-8.5 parent: 2 type: Transform - - uid: 20803 + - uid: 20820 components: - pos: -50.5,-62.5 parent: 2 type: Transform - - uid: 20804 + - uid: 20821 components: - pos: -36.5,-69.5 parent: 2 type: Transform - - uid: 20805 + - uid: 20822 components: - pos: 57.5,-3.5 parent: 2 type: Transform - - uid: 20806 + - uid: 20823 components: - pos: -3.5,30.5 parent: 2 type: Transform - - uid: 20807 + - uid: 20824 components: - pos: -15.5,21.5 parent: 2 type: Transform - - uid: 20808 + - uid: 20825 components: - pos: -49.5,15.5 parent: 2 type: Transform - - uid: 20809 + - uid: 20826 components: - pos: 15.5,57.5 parent: 2 type: Transform - - uid: 20810 + - uid: 20827 components: - pos: -14.5,-82.5 parent: 2 type: Transform - - uid: 20811 + - uid: 20828 components: - pos: -69.5,-43.5 parent: 2 type: Transform - - uid: 20812 + - uid: 20829 components: - rot: 3.141592653589793 rad pos: 43.5,-62.5 parent: 2 type: Transform - - uid: 20813 + - uid: 20830 components: - pos: -32.5,-7.5 parent: 2 type: Transform - proto: MaintenanceToolSpawner entities: - - uid: 20814 + - uid: 20831 components: - pos: -13.5,12.5 parent: 2 type: Transform - - uid: 20815 + - uid: 20832 components: - pos: 36.5,-50.5 parent: 2 type: Transform - - uid: 20816 + - uid: 20833 components: - rot: 1.5707963267948966 rad pos: -55.5,-6.5 parent: 2 type: Transform - - uid: 20817 + - uid: 20834 components: - pos: -52.5,-15.5 parent: 2 type: Transform - - uid: 20818 + - uid: 20835 components: - pos: -50.5,-16.5 parent: 2 type: Transform - - uid: 20819 + - uid: 20836 components: - pos: -24.5,-52.5 parent: 2 type: Transform - - uid: 20820 + - uid: 20837 components: - pos: 0.5,23.5 parent: 2 type: Transform - - uid: 20821 + - uid: 20838 components: - pos: -3.5,34.5 parent: 2 type: Transform - - uid: 20822 + - uid: 20839 components: - pos: -49.5,14.5 parent: 2 type: Transform - - uid: 20823 + - uid: 20840 components: - pos: 3.5,-17.5 parent: 2 type: Transform - - uid: 20824 + - uid: 20841 components: - pos: 59.5,2.5 parent: 2 type: Transform - - uid: 20825 + - uid: 20842 components: - pos: 18.5,-30.5 parent: 2 type: Transform - - uid: 20826 + - uid: 20843 components: - pos: 53.5,47.5 parent: 2 type: Transform - - uid: 20827 + - uid: 20844 components: - pos: 67.5,8.5 parent: 2 type: Transform - - uid: 20828 + - uid: 20845 components: - pos: 18.5,39.5 parent: 2 type: Transform - - uid: 20829 + - uid: 20846 components: - pos: 16.5,56.5 parent: 2 type: Transform - - uid: 20830 + - uid: 20847 components: - pos: -4.5,-82.5 parent: 2 type: Transform - - uid: 20831 + - uid: 20848 components: - pos: -8.5,-82.5 parent: 2 type: Transform - - uid: 20832 + - uid: 20849 components: - pos: -68.5,-44.5 parent: 2 type: Transform - - uid: 20833 + - uid: 20850 components: - pos: 58.5,-30.5 parent: 2 type: Transform - - uid: 20834 + - uid: 20851 components: - pos: 53.5,-28.5 parent: 2 type: Transform - - uid: 20835 + - uid: 20852 components: - pos: 46.5,-63.5 parent: 2 type: Transform - - uid: 20836 + - uid: 20853 components: - pos: 44.5,-8.5 parent: 2 type: Transform - proto: MaintenanceWeaponSpawner entities: - - uid: 20837 + - uid: 20854 components: - rot: 3.141592653589793 rad pos: 55.5,60.5 parent: 2 type: Transform - - uid: 20838 + - uid: 20855 components: - pos: -49.5,-74.5 parent: 2 type: Transform - - uid: 20839 + - uid: 20856 components: - pos: -52.5,-86.5 parent: 2 type: Transform - - uid: 20840 + - uid: 20857 components: - pos: -52.5,-88.5 parent: 2 type: Transform - - uid: 20841 + - uid: 20858 components: - pos: 35.5,-12.5 parent: 2 type: Transform - - uid: 20842 + - uid: 20859 components: - pos: -29.5,-28.5 parent: 2 type: Transform - - uid: 20843 + - uid: 20860 components: - pos: -12.5,17.5 parent: 2 type: Transform - - uid: 20844 + - uid: 20861 components: - pos: 18.5,-27.5 parent: 2 type: Transform - - uid: 20845 + - uid: 20862 components: - pos: 51.5,45.5 parent: 2 type: Transform - - uid: 20846 + - uid: 20863 components: - pos: 43.5,37.5 parent: 2 type: Transform - - uid: 20847 + - uid: 20864 components: - pos: -6.5,-88.5 parent: 2 type: Transform - - uid: 20848 + - uid: 20865 components: - rot: 3.141592653589793 rad pos: 49.5,-66.5 parent: 2 type: Transform - - uid: 20849 + - uid: 20866 components: - rot: 3.141592653589793 rad pos: 66.5,-61.5 parent: 2 type: Transform - - uid: 20850 + - uid: 20867 components: - pos: -48.5,16.5 parent: 2 type: Transform - - uid: 20851 + - uid: 20868 components: - pos: -28.5,-5.5 parent: 2 type: Transform - - uid: 20852 + - uid: 20869 components: - pos: 42.5,-7.5 parent: 2 type: Transform - proto: Matchbox entities: - - uid: 20853 + - uid: 20870 components: - pos: 61.092392,-1.3427626 parent: 2 type: Transform - - uid: 20854 + - uid: 20871 components: - pos: -38.035473,16.606607 parent: 2 type: Transform - proto: MaterialCloth entities: - - uid: 20855 + - uid: 20872 components: - pos: 27.39636,-34.472717 parent: 2 type: Transform - - uid: 20856 + - uid: 20873 components: - pos: 27.36511,-34.347717 parent: 2 type: Transform - proto: MaterialDiamond1 entities: - - uid: 20857 + - uid: 20874 components: - pos: 59.45189,-51.928257 parent: 2 type: Transform - proto: MaterialDurathread entities: - - uid: 20858 + - uid: 20875 components: - pos: 27.74011,-34.597717 parent: 2 type: Transform - - uid: 20859 + - uid: 20876 components: - pos: 27.74011,-34.597717 parent: 2 type: Transform - proto: MaterialReclaimer entities: - - uid: 20860 + - uid: 20877 components: - pos: -39.5,18.5 parent: 2 type: Transform - proto: MaterialWoodPlank entities: - - uid: 20861 + - uid: 20878 components: - pos: -14.580205,-35.49298 parent: 2 type: Transform - - uid: 20862 + - uid: 20879 components: - rot: 3.141592653589793 rad pos: 38.425755,46.464603 parent: 2 type: Transform - - uid: 20863 + - uid: 20880 components: - pos: -32.447933,-98.42257 parent: 2 type: Transform - proto: MaterialWoodPlank1 entities: - - uid: 20864 + - uid: 20881 components: - pos: 50.46261,24.730665 parent: 2 type: Transform - - uid: 20865 + - uid: 20882 components: - pos: 17.500986,29.51836 parent: 2 type: Transform - proto: MedicalBed entities: - - uid: 20866 + - uid: 20883 components: - pos: 44.5,5.5 parent: 2 type: Transform - - uid: 20867 + - uid: 20884 components: - pos: -9.5,-57.5 parent: 2 type: Transform - - uid: 20868 + - uid: 20885 components: - pos: -12.5,-57.5 parent: 2 type: Transform - - uid: 20869 + - uid: 20886 components: - pos: -3.5,-57.5 parent: 2 type: Transform - - uid: 20870 + - uid: 20887 components: - pos: -0.5,-57.5 parent: 2 type: Transform - - uid: 20871 + - uid: 20888 components: - pos: -17.5,-54.5 parent: 2 type: Transform - - uid: 20872 + - uid: 20889 components: - pos: 44.5,4.5 parent: 2 type: Transform - - uid: 20873 + - uid: 20890 components: - pos: -6.5,-57.5 parent: 2 type: Transform - - uid: 20874 + - uid: 20891 components: - pos: 6.5,-56.5 parent: 2 type: Transform - proto: MedicalTechFab entities: - - uid: 20875 + - uid: 20892 components: - pos: -16.5,-48.5 parent: 2 type: Transform - proto: MedkitBruteFilled entities: - - uid: 20876 + - uid: 20893 components: - pos: 45.394405,8.60885 parent: 2 type: Transform - - uid: 20877 + - uid: 20894 components: - pos: 19.413246,-20.453436 parent: 2 type: Transform - - uid: 20878 + - uid: 20895 components: - pos: 9.446222,-62.560196 parent: 2 type: Transform - - uid: 20879 + - uid: 20896 components: - pos: 29.573622,4.6594224 parent: 2 type: Transform - - uid: 20880 + - uid: 20897 components: - pos: 9.774347,-62.35707 parent: 2 type: Transform - - uid: 20881 + - uid: 20898 components: - pos: 55.59084,42.504738 parent: 2 type: Transform - proto: MedkitBurnFilled entities: - - uid: 20882 + - uid: 20899 components: - pos: 9.368097,-58.216446 parent: 2 type: Transform - - uid: 20883 + - uid: 20900 components: - pos: 9.633722,-58.372696 parent: 2 type: Transform - - uid: 20884 + - uid: 20901 components: - pos: 18.55885,-21.682238 parent: 2 type: Transform - proto: MedkitCombatFilled entities: - - uid: 20885 + - uid: 20902 components: - pos: -20.500343,-54.36298 parent: 2 type: Transform - proto: MedkitFilled entities: - - uid: 20886 + - uid: 20903 components: - pos: 18.506996,-21.230959 parent: 2 type: Transform - - uid: 20887 + - uid: 20904 components: - pos: 24.82079,23.494219 parent: 2 type: Transform - - uid: 20888 + - uid: 20905 components: - pos: 52.41982,-43.535877 parent: 2 type: Transform - proto: MedkitOxygenFilled entities: - - uid: 20889 + - uid: 20906 components: - pos: 10.352472,-61.403946 parent: 2 type: Transform - - uid: 20890 + - uid: 20907 components: - pos: 10.649347,-61.57582 parent: 2 type: Transform - - uid: 20891 + - uid: 20908 components: - pos: 18.533411,-22.207966 parent: 2 type: Transform - - uid: 20892 + - uid: 20909 components: - pos: -23.768847,-36.553474 parent: 2 type: Transform - - uid: 20893 + - uid: 20910 components: - pos: 59.446957,-3.3832169 parent: 2 type: Transform - - uid: 20894 + - uid: 20911 components: - pos: 65.55114,-6.3846307 parent: 2 type: Transform - - uid: 20895 + - uid: 20912 components: - pos: -34.54821,20.589455 parent: 2 type: Transform - - uid: 20896 + - uid: 20913 components: - pos: 64.63776,28.514448 parent: 2 type: Transform - - uid: 20897 + - uid: 20914 components: - pos: -70.47538,-28.482313 parent: 2 type: Transform - proto: MedkitRadiationFilled entities: - - uid: 20898 + - uid: 20915 components: - pos: 10.352472,-60.278946 parent: 2 type: Transform - - uid: 20899 + - uid: 20916 components: - pos: 10.649347,-60.466446 parent: 2 type: Transform - - uid: 20900 + - uid: 20917 components: - pos: -62.43085,-27.543978 parent: 2 type: Transform - proto: MedkitToxinFilled entities: - - uid: 20901 + - uid: 20918 components: - pos: 10.350285,-59.237457 parent: 2 type: Transform - - uid: 20902 + - uid: 20919 components: - pos: 10.649347,-59.372696 parent: 2 type: Transform - proto: MicroManipulatorStockPart entities: - - uid: 20903 + - uid: 20920 components: - pos: 57.42882,-47.52101 parent: 2 type: Transform - proto: MicrowaveMachineCircuitboard entities: - - uid: 20904 + - uid: 20921 components: - pos: 41.53089,-54.195484 parent: 2 type: Transform - proto: ModularGrenade entities: - - uid: 30675 + - uid: 20922 components: - pos: 65.475975,-29.06539 parent: 2 @@ -160495,7 +160524,7 @@ entities: type: EmitSoundOnCollide - proto: MonkeyCube entities: - - uid: 20905 + - uid: 20923 components: - rot: -1.5707963267948966 rad pos: -10.530531,-95.43873 @@ -160503,40 +160532,40 @@ entities: type: Transform - proto: MonkeyCubeBox entities: - - uid: 20906 + - uid: 20924 components: - pos: -24.421421,-84.24069 parent: 2 type: Transform - proto: MonkeyCubeWrapped entities: - - uid: 20907 + - uid: 20925 components: - pos: 2.4904222,-5.293855 parent: 2 type: Transform - - uid: 20908 + - uid: 20926 components: - pos: 73.2274,-38.215343 parent: 2 type: Transform - nextSound: 540.1257387 type: EmitSoundOnCollide - - uid: 20909 + - uid: 20927 components: - pos: 73.19615,-38.35597 parent: 2 type: Transform - nextSound: 541.3871677 type: EmitSoundOnCollide - - uid: 20910 + - uid: 20928 components: - pos: -6.631571,49.76703 parent: 2 type: Transform - nextSound: 564.3033104 type: EmitSoundOnCollide - - uid: 20911 + - uid: 20929 components: - pos: -6.787821,49.64203 parent: 2 @@ -160545,57 +160574,57 @@ entities: type: EmitSoundOnCollide - proto: MopBucket entities: - - uid: 20912 + - uid: 20930 components: - pos: -9.522026,-69.41262 parent: 2 type: Transform - - uid: 20913 + - uid: 20931 components: - pos: -7.441774,-23.373123 parent: 2 type: Transform - - uid: 20914 + - uid: 20932 components: - pos: 52.057404,15.557394 parent: 2 type: Transform - - uid: 20915 + - uid: 20933 components: - pos: 15.4907,31.562498 parent: 2 type: Transform - - uid: 20916 + - uid: 20934 components: - pos: -8.510638,-21.457159 parent: 2 type: Transform - proto: MopItem entities: - - uid: 20917 + - uid: 20935 components: - rot: -1.5707963267948966 rad pos: -9.459526,-68.63137 parent: 2 type: Transform - - uid: 20918 + - uid: 20936 components: - pos: -13.596031,-22.66943 parent: 2 type: Transform - - uid: 20919 + - uid: 20937 components: - pos: -13.473024,-22.732498 parent: 2 type: Transform - - uid: 20920 + - uid: 20938 components: - pos: 51.744904,15.651144 parent: 2 type: Transform - proto: Morgue entities: - - uid: 20921 + - uid: 20939 components: - rot: -1.5707963267948966 rad pos: -11.5,-65.5 @@ -160619,7 +160648,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20922 + - uid: 20940 components: - rot: -1.5707963267948966 rad pos: -11.5,-64.5 @@ -160643,7 +160672,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20923 + - uid: 20941 components: - rot: 1.5707963267948966 rad pos: -13.5,-64.5 @@ -160667,7 +160696,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20924 + - uid: 20942 components: - rot: 1.5707963267948966 rad pos: -13.5,-65.5 @@ -160691,7 +160720,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20925 + - uid: 20943 components: - rot: 1.5707963267948966 rad pos: -13.5,-66.5 @@ -160715,7 +160744,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20926 + - uid: 20944 components: - rot: -1.5707963267948966 rad pos: -14.5,-64.5 @@ -160739,7 +160768,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20927 + - uid: 20945 components: - rot: -1.5707963267948966 rad pos: -14.5,-65.5 @@ -160763,7 +160792,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20928 + - uid: 20946 components: - rot: -1.5707963267948966 rad pos: -14.5,-66.5 @@ -160787,7 +160816,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20929 + - uid: 20947 components: - rot: -1.5707963267948966 rad pos: -11.5,-66.5 @@ -160811,7 +160840,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20930 + - uid: 20948 components: - rot: -1.5707963267948966 rad pos: -11.5,-63.5 @@ -160835,7 +160864,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20931 + - uid: 20949 components: - rot: 1.5707963267948966 rad pos: -16.5,-63.5 @@ -160859,7 +160888,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20932 + - uid: 20950 components: - rot: 1.5707963267948966 rad pos: -16.5,-64.5 @@ -160883,7 +160912,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20933 + - uid: 20951 components: - rot: 1.5707963267948966 rad pos: -16.5,-65.5 @@ -160907,7 +160936,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20934 + - uid: 20952 components: - rot: 1.5707963267948966 rad pos: -16.5,-66.5 @@ -160931,7 +160960,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20935 + - uid: 20953 components: - rot: -1.5707963267948966 rad pos: -28.5,10.5 @@ -160955,7 +160984,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20936 + - uid: 20954 components: - rot: -1.5707963267948966 rad pos: -28.5,9.5 @@ -160981,241 +161010,241 @@ entities: type: EntityStorage - proto: MouseTimedSpawner entities: - - uid: 20937 + - uid: 20955 components: - pos: -56.5,-48.5 parent: 2 type: Transform - - uid: 20938 + - uid: 20956 components: - pos: 43.5,-10.5 parent: 2 type: Transform - - uid: 20939 + - uid: 20957 components: - pos: 62.5,13.5 parent: 2 type: Transform - - uid: 20940 + - uid: 20958 components: - pos: 5.5,-70.5 parent: 2 type: Transform - proto: Multitool entities: - - uid: 20941 + - uid: 20959 components: - pos: 53.354275,-43.443607 parent: 2 type: Transform - - uid: 20942 + - uid: 20960 components: - pos: -24.521326,-24.45921 parent: 2 type: Transform - - uid: 20943 + - uid: 20961 components: - pos: -23.347115,-36.422188 parent: 2 type: Transform - - uid: 20944 + - uid: 20962 components: - rot: -1.5707963267948966 rad pos: -36.559425,-33.012554 parent: 2 type: Transform - - uid: 20945 + - uid: 20963 components: - pos: -56.47646,-35.42343 parent: 2 type: Transform - - uid: 20946 + - uid: 20964 components: - pos: -40.522213,25.653383 parent: 2 type: Transform - - uid: 20947 + - uid: 20965 components: - rot: 3.141592653589793 rad pos: -32.80296,29.595348 parent: 2 type: Transform - - uid: 20948 + - uid: 20966 components: - pos: -27.507483,24.649845 parent: 2 type: Transform - - uid: 20949 + - uid: 20967 components: - pos: 73.29074,-44.41717 parent: 2 type: Transform - - uid: 20950 + - uid: 20968 components: - pos: 58.474205,51.52541 parent: 2 type: Transform - - uid: 20951 + - uid: 20969 components: - pos: -57.653404,-25.398897 parent: 2 type: Transform - devices: - 'UID: 31532': 12331 + 'UID: 31532': 12338 type: NetworkConfigurator - - uid: 20952 + - uid: 20970 components: - pos: -9.540877,-65.36475 parent: 2 type: Transform - - uid: 20953 + - uid: 20971 components: - pos: 72.48785,36.5135 parent: 2 type: Transform - - uid: 20954 + - uid: 20972 components: - pos: -29.3818,-98.32888 parent: 2 type: Transform - devices: - 'UID: 39451': 19264 - 'UID: 39450': 19501 - 'UID: 39636': 874 + 'UID: 39451': 19278 + 'UID: 39450': 19516 + 'UID: 39636': 875 type: NetworkConfigurator - - uid: 20955 + - uid: 20973 components: - pos: 65.54721,-51.514313 parent: 2 type: Transform - - uid: 20956 + - uid: 20974 components: - pos: -28.40416,-19.522995 parent: 2 type: Transform - - uid: 20957 + - uid: 20975 components: - pos: -26.512882,-61.421627 parent: 2 type: Transform - proto: NitrogenCanister entities: - - uid: 20958 + - uid: 20976 components: - pos: -8.5,-72.5 parent: 2 type: Transform - - uid: 20959 + - uid: 20977 components: - pos: 45.5,-51.5 parent: 2 type: Transform - - uid: 20960 + - uid: 20978 components: - pos: -50.5,-54.5 parent: 2 type: Transform - - uid: 20961 + - uid: 20979 components: - pos: -39.5,-38.5 parent: 2 type: Transform - - uid: 20962 + - uid: 20980 components: - pos: -51.5,-70.5 parent: 2 type: Transform - - uid: 20963 + - uid: 20981 components: - pos: -26.5,37.5 parent: 2 type: Transform - - uid: 20964 + - uid: 20982 components: - pos: -28.5,41.5 parent: 2 type: Transform - - uid: 20965 + - uid: 20983 components: - pos: 72.5,-35.5 parent: 2 type: Transform - - uid: 20966 + - uid: 20984 components: - pos: 46.5,-51.5 parent: 2 type: Transform - - uid: 20967 + - uid: 20985 components: - pos: -22.5,-62.5 parent: 2 type: Transform - - uid: 20968 + - uid: 20986 components: - pos: 3.5,-73.5 parent: 2 type: Transform - proto: NitrogenTankFilled entities: - - uid: 20969 + - uid: 20987 components: - pos: -22.469156,-57.61924 parent: 2 type: Transform - - uid: 20970 + - uid: 20988 components: - pos: -54.344475,0.46202505 parent: 2 type: Transform - - uid: 20971 + - uid: 20989 components: - pos: -49.491314,1.5773844 parent: 2 type: Transform - - uid: 20972 + - uid: 20990 components: - pos: -70.575325,-25.445038 parent: 2 type: Transform - - uid: 20973 + - uid: 20991 components: - pos: -9.511479,16.495153 parent: 2 type: Transform - - uid: 20974 + - uid: 20992 components: - pos: 64.52838,29.170698 parent: 2 type: Transform - proto: NitrousOxideCanister entities: - - uid: 20975 + - uid: 20993 components: - pos: -38.5,-38.5 parent: 2 type: Transform - - uid: 20976 + - uid: 20994 components: - pos: 54.5,-55.5 parent: 2 type: Transform - proto: NitrousOxideTank entities: - - uid: 20977 + - uid: 20995 components: - pos: -3.498691,-65.92361 parent: 2 type: Transform - proto: NodeScanner entities: - - uid: 20978 + - uid: 20996 components: - pos: 73.66279,-38.523205 parent: 2 type: Transform - proto: NuclearBomb entities: - - uid: 20979 + - uid: 20997 components: - rot: -1.5707963267948966 rad pos: 46.5,-22.5 @@ -161223,47 +161252,47 @@ entities: type: Transform - proto: NuclearBombKeg entities: - - uid: 20980 + - uid: 20998 components: - pos: 46.5,-29.5 parent: 2 type: Transform - proto: Ointment entities: - - uid: 20981 + - uid: 20999 components: - rot: -1.5707963267948966 rad pos: 47.628784,4.507307 parent: 2 type: Transform - - uid: 20982 + - uid: 21000 components: - pos: -12.245195,-56.394966 parent: 2 type: Transform - - uid: 20983 + - uid: 21001 components: - pos: -9.307695,-56.332466 parent: 2 type: Transform - - uid: 20984 + - uid: 21002 components: - pos: -6.2759557,-56.37934 parent: 2 type: Transform - - uid: 20985 + - uid: 21003 components: - pos: -3.256374,-56.363716 parent: 2 type: Transform - - uid: 20986 + - uid: 21004 components: - pos: -0.2810341,-56.37934 parent: 2 type: Transform - proto: OnionRedSeeds entities: - - uid: 20987 + - uid: 21005 components: - pos: -32.362232,6.029836 parent: 2 @@ -161272,942 +161301,942 @@ entities: type: EmitSoundOnCollide - proto: OnionSeeds entities: - - uid: 20988 + - uid: 21006 components: - pos: -32.52041,6.4317174 parent: 2 type: Transform - proto: OperatingTable entities: - - uid: 20989 + - uid: 21007 components: - pos: -1.5,-65.5 parent: 2 type: Transform - - uid: 20990 + - uid: 21008 components: - pos: -7.5,-97.5 parent: 2 type: Transform - - uid: 20991 + - uid: 21009 components: - pos: 71.5,-48.5 parent: 2 type: Transform - proto: OreBag entities: - - uid: 20992 + - uid: 21010 components: - pos: -41.057323,35.546143 parent: 2 type: Transform - proto: OreProcessor entities: - - uid: 20993 + - uid: 21011 components: - pos: -41.5,26.5 parent: 2 type: Transform - proto: OxygenCanister entities: - - uid: 20994 + - uid: 21012 components: - pos: -9.5,-72.5 parent: 2 type: Transform - - uid: 20995 + - uid: 21013 components: - pos: 59.5,29.5 parent: 2 type: Transform - - uid: 20996 + - uid: 21014 components: - pos: 45.5,-52.5 parent: 2 type: Transform - - uid: 20997 + - uid: 21015 components: - pos: -25.5,-31.5 parent: 2 type: Transform - - uid: 20998 + - uid: 21016 components: - pos: -50.5,-52.5 parent: 2 type: Transform - - uid: 20999 + - uid: 21017 components: - pos: -37.5,-38.5 parent: 2 type: Transform - - uid: 21000 + - uid: 21018 components: - pos: -25.5,-55.5 parent: 2 type: Transform - - uid: 21001 + - uid: 21019 components: - pos: -34.5,-30.5 parent: 2 type: Transform - - uid: 21002 + - uid: 21020 components: - pos: -48.5,28.5 parent: 2 type: Transform - - uid: 21003 + - uid: 21021 components: - pos: -31.5,17.5 parent: 2 type: Transform - - uid: 21004 + - uid: 21022 components: - pos: -29.5,41.5 parent: 2 type: Transform - - uid: 21005 + - uid: 21023 components: - pos: 73.5,-35.5 parent: 2 type: Transform - - uid: 21006 + - uid: 21024 components: - pos: 46.5,-52.5 parent: 2 type: Transform - - uid: 21007 + - uid: 21025 components: - pos: -25.5,-62.5 parent: 2 type: Transform - - uid: 21008 + - uid: 21026 components: - pos: 4.5,-73.5 parent: 2 type: Transform - proto: OxygenTankFilled entities: - - uid: 21009 + - uid: 21027 components: - pos: -54.60223,0.49364984 parent: 2 type: Transform - - uid: 21010 + - uid: 21028 components: - pos: -22.609781,-57.353615 parent: 2 type: Transform - proto: PaintingAmogusTriptych entities: - - uid: 21011 + - uid: 21029 components: - pos: -16.5,-36.5 parent: 2 type: Transform - - uid: 21012 + - uid: 21030 components: - pos: 45.5,-12.5 parent: 2 type: Transform - proto: PaintingMonkey entities: - - uid: 21013 + - uid: 21031 components: - pos: 13.5,-9.5 parent: 2 type: Transform - proto: PaintingMoony entities: - - uid: 21014 + - uid: 21032 components: - pos: -15.5,-36.5 parent: 2 type: Transform - proto: PaintingNightHawks entities: - - uid: 21015 + - uid: 21033 components: - pos: -9.5,-34.5 parent: 2 type: Transform - proto: PaintingSkeletonBoof entities: - - uid: 21016 + - uid: 21034 components: - pos: 9.5,-3.5 parent: 2 type: Transform - proto: PaintingSkeletonCigarette entities: - - uid: 21017 + - uid: 21035 components: - pos: -14.5,-36.5 parent: 2 type: Transform - proto: PaintingTheGreatWave entities: - - uid: 21018 + - uid: 21036 components: - pos: 30.5,-26.5 parent: 2 type: Transform - proto: PaintingTheKiss entities: - - uid: 21019 + - uid: 21037 components: - pos: 27.5,-33.5 parent: 2 type: Transform - proto: PaintingTheScream entities: - - uid: 21020 + - uid: 21038 components: - pos: -7.5,-35.5 parent: 2 type: Transform - proto: PaintingTheSonOfMan entities: - - uid: 21021 + - uid: 21039 components: - pos: -25.5,16.5 parent: 2 type: Transform - proto: Paper entities: - - uid: 21022 + - uid: 21040 components: - rot: -1.5707963267948966 rad pos: 29.503365,-39.44397 parent: 2 type: Transform - - uid: 21023 + - uid: 21041 components: - rot: -1.5707963267948966 rad pos: 29.503365,-39.44397 parent: 2 type: Transform - - uid: 21024 + - uid: 21042 components: - rot: -1.5707963267948966 rad pos: 29.503365,-39.428345 parent: 2 type: Transform - - uid: 21025 + - uid: 21043 components: - rot: -1.5707963267948966 rad pos: 29.503365,-39.428345 parent: 2 type: Transform - - uid: 21026 + - uid: 21044 components: - rot: -1.5707963267948966 rad pos: 29.534615,-39.428345 parent: 2 type: Transform - - uid: 21027 + - uid: 21045 components: - rot: -1.5707963267948966 rad pos: 29.51899,-39.44397 parent: 2 type: Transform - - uid: 21028 + - uid: 21046 components: - rot: -1.5707963267948966 rad pos: 29.534615,-39.428345 parent: 2 type: Transform - - uid: 21029 + - uid: 21047 components: - rot: -1.5707963267948966 rad pos: 29.503365,-39.44397 parent: 2 type: Transform - - uid: 21030 + - uid: 21048 components: - rot: -1.5707963267948966 rad pos: 29.503365,-39.44397 parent: 2 type: Transform - - uid: 21031 + - uid: 21049 components: - rot: -1.5707963267948966 rad pos: 29.51899,-39.44397 parent: 2 type: Transform - - uid: 21032 + - uid: 21050 components: - rot: -1.5707963267948966 rad pos: 29.534615,-39.428345 parent: 2 type: Transform - - uid: 21033 + - uid: 21051 components: - pos: 20.483978,-12.296361 parent: 2 type: Transform - - uid: 21034 + - uid: 21052 components: - pos: 20.661783,-12.471693 parent: 2 type: Transform - - uid: 21035 + - uid: 21053 components: - pos: 24.486351,19.53259 parent: 2 type: Transform - - uid: 21036 + - uid: 21054 components: - rot: -1.5707963267948966 rad pos: 29.503365,-39.44397 parent: 2 type: Transform - - uid: 21037 + - uid: 21055 components: - pos: 6.351438,20.675463 parent: 2 type: Transform - - uid: 21038 + - uid: 21056 components: - rot: -1.5707963267948966 rad pos: 29.503365,-39.428345 parent: 2 type: Transform - - uid: 21039 + - uid: 21057 components: - rot: -1.5707963267948966 rad pos: -12.583234,-18.98207 parent: 2 type: Transform - - uid: 21040 + - uid: 21058 components: - pos: 4.462709,-11.197436 parent: 2 type: Transform - - uid: 21041 + - uid: 21059 components: - pos: 4.462709,-11.197436 parent: 2 type: Transform - - uid: 21042 + - uid: 21060 components: - pos: 4.462709,-11.197436 parent: 2 type: Transform - - uid: 21043 + - uid: 21061 components: - rot: -1.5707963267948966 rad pos: 29.503365,-39.44397 parent: 2 type: Transform - - uid: 21044 + - uid: 21062 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21045 + - uid: 21063 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21046 + - uid: 21064 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21047 + - uid: 21065 components: - rot: -1.5707963267948966 rad pos: 29.503365,-39.44397 parent: 2 type: Transform - - uid: 21048 + - uid: 21066 components: - rot: -1.5707963267948966 rad pos: 29.503365,-39.44397 parent: 2 type: Transform - - uid: 21049 + - uid: 21067 components: - rot: -1.5707963267948966 rad pos: 29.503365,-39.44397 parent: 2 type: Transform - - uid: 21050 + - uid: 21068 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21051 + - uid: 21069 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21052 + - uid: 21070 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21053 + - uid: 21071 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21054 + - uid: 21072 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21055 + - uid: 21073 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21056 + - uid: 21074 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21057 + - uid: 21075 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21058 + - uid: 21076 components: - rot: -1.5707963267948966 rad pos: 29.534615,-39.428345 parent: 2 type: Transform - - uid: 21059 + - uid: 21077 components: - rot: -1.5707963267948966 rad pos: 29.503365,-39.44397 parent: 2 type: Transform - - uid: 21060 + - uid: 21078 components: - rot: 3.141592653589793 rad pos: -10.57877,-37.384254 parent: 2 type: Transform - - uid: 21061 + - uid: 21079 components: - rot: 3.141592653589793 rad pos: -10.57877,-37.384254 parent: 2 type: Transform - - uid: 21062 + - uid: 21080 components: - rot: 3.141592653589793 rad pos: -10.57877,-37.384254 parent: 2 type: Transform - - uid: 21063 + - uid: 21081 components: - rot: 3.141592653589793 rad pos: -10.57877,-37.384254 parent: 2 type: Transform - - uid: 21064 + - uid: 21082 components: - rot: 3.141592653589793 rad pos: -10.57877,-37.384254 parent: 2 type: Transform - - uid: 21065 + - uid: 21083 components: - pos: 24.486351,19.53259 parent: 2 type: Transform - - uid: 21066 + - uid: 21084 components: - pos: 24.486351,19.53259 parent: 2 type: Transform - - uid: 21067 + - uid: 21085 components: - pos: 24.486351,19.53259 parent: 2 type: Transform - - uid: 21068 + - uid: 21086 components: - pos: 24.486351,19.53259 parent: 2 type: Transform - - uid: 21069 + - uid: 21087 components: - pos: 24.486351,19.53259 parent: 2 type: Transform - - uid: 21070 + - uid: 21088 components: - pos: 24.486351,19.53259 parent: 2 type: Transform - - uid: 21071 + - uid: 21089 components: - rot: 3.141592653589793 rad pos: 16.421602,22.571196 parent: 2 type: Transform - - uid: 21072 + - uid: 21090 components: - rot: 3.141592653589793 rad pos: 16.515352,22.55557 parent: 2 type: Transform - - uid: 21073 + - uid: 21091 components: - rot: 3.141592653589793 rad pos: 16.499727,22.571196 parent: 2 type: Transform - - uid: 21074 + - uid: 21092 components: - rot: 3.141592653589793 rad pos: 16.499727,22.571196 parent: 2 type: Transform - - uid: 21075 + - uid: 21093 components: - rot: 3.141592653589793 rad pos: 16.499727,22.571196 parent: 2 type: Transform - - uid: 21076 + - uid: 21094 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21077 + - uid: 21095 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21078 + - uid: 21096 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21079 + - uid: 21097 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21080 + - uid: 21098 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21081 + - uid: 21099 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21082 + - uid: 21100 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21083 + - uid: 21101 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21084 + - uid: 21102 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21085 + - uid: 21103 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21086 + - uid: 21104 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21087 + - uid: 21105 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21088 + - uid: 21106 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21089 + - uid: 21107 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21090 + - uid: 21108 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21091 + - uid: 21109 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21092 + - uid: 21110 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21093 + - uid: 21111 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21094 + - uid: 21112 components: - rot: 1.5707963267948966 rad pos: 37.488216,-3.5194297 parent: 2 type: Transform - - uid: 21095 + - uid: 21113 components: - rot: 1.5707963267948966 rad pos: 37.488216,-3.5194297 parent: 2 type: Transform - - uid: 21096 + - uid: 21114 components: - rot: 1.5707963267948966 rad pos: 37.488216,-3.5194297 parent: 2 type: Transform - - uid: 21097 + - uid: 21115 components: - rot: 1.5707963267948966 rad pos: 37.488216,-3.5194297 parent: 2 type: Transform - - uid: 21098 + - uid: 21116 components: - rot: 1.5707963267948966 rad pos: 37.59759,-3.6288047 parent: 2 type: Transform - - uid: 21099 + - uid: 21117 components: - rot: 1.5707963267948966 rad pos: 37.59759,-3.6288047 parent: 2 type: Transform - - uid: 21100 + - uid: 21118 components: - rot: 1.5707963267948966 rad pos: 37.550716,-3.6131797 parent: 2 type: Transform - - uid: 21101 + - uid: 21119 components: - rot: 1.5707963267948966 rad pos: 37.550716,-3.6131797 parent: 2 type: Transform - - uid: 21102 + - uid: 21120 components: - rot: 1.5707963267948966 rad pos: 37.56634,-3.6131797 parent: 2 type: Transform - - uid: 21103 + - uid: 21121 components: - rot: 1.5707963267948966 rad pos: 37.59759,-3.6288047 parent: 2 type: Transform - - uid: 21104 + - uid: 21122 components: - rot: 1.5707963267948966 rad pos: 37.59759,-3.6288047 parent: 2 type: Transform - - uid: 21105 + - uid: 21123 components: - rot: 1.5707963267948966 rad pos: 37.59759,-3.6288047 parent: 2 type: Transform - - uid: 21106 + - uid: 21124 components: - pos: 38.47659,-2.4393778 parent: 2 type: Transform - - uid: 21107 + - uid: 21125 components: - pos: 38.47659,-2.4393778 parent: 2 type: Transform - - uid: 21108 + - uid: 21126 components: - pos: 38.47659,-2.4393778 parent: 2 type: Transform - - uid: 21109 + - uid: 21127 components: - pos: 38.47659,-2.4393778 parent: 2 type: Transform - - uid: 21110 + - uid: 21128 components: - pos: 38.47659,-2.4393778 parent: 2 type: Transform - - uid: 21111 + - uid: 21129 components: - pos: 38.47659,-2.4393778 parent: 2 type: Transform - - uid: 21112 + - uid: 21130 components: - pos: 38.47659,-2.4393778 parent: 2 type: Transform - - uid: 21113 + - uid: 21131 components: - rot: 1.5707963267948966 rad pos: 51.483532,-41.966263 parent: 2 type: Transform - - uid: 21114 + - uid: 21132 components: - rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 type: Transform - - uid: 21115 + - uid: 21133 components: - rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 type: Transform - - uid: 21116 + - uid: 21134 components: - rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 type: Transform - - uid: 21117 + - uid: 21135 components: - rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 type: Transform - - uid: 21118 + - uid: 21136 components: - rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 type: Transform - - uid: 21119 + - uid: 21137 components: - rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 type: Transform - - uid: 21120 + - uid: 21138 components: - rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 type: Transform - - uid: 21121 + - uid: 21139 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21122 + - uid: 21140 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21123 + - uid: 21141 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21124 + - uid: 21142 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21125 + - uid: 21143 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21126 + - uid: 21144 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21127 + - uid: 21145 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21128 + - uid: 21146 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21129 + - uid: 21147 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21130 + - uid: 21148 components: - rot: -1.5707963267948966 rad pos: -35.467735,-16.567335 parent: 2 type: Transform - - uid: 21131 + - uid: 21149 components: - rot: -1.5707963267948966 rad pos: -35.467735,-16.567335 parent: 2 type: Transform - - uid: 21132 + - uid: 21150 components: - rot: -1.5707963267948966 rad pos: -35.467735,-16.567335 parent: 2 type: Transform - - uid: 21133 + - uid: 21151 components: - rot: -1.5707963267948966 rad pos: -35.467735,-16.567335 parent: 2 type: Transform - - uid: 21134 + - uid: 21152 components: - pos: 1.3868889,23.62748 parent: 2 type: Transform - - uid: 21135 + - uid: 21153 components: - pos: 1.3868889,23.643105 parent: 2 type: Transform - - uid: 21136 + - uid: 21154 components: - rot: 3.141592653589793 rad pos: -26.49969,14.6061535 parent: 2 type: Transform - - uid: 21137 + - uid: 21155 components: - rot: 3.141592653589793 rad pos: -26.49969,14.6061535 parent: 2 type: Transform - - uid: 21138 + - uid: 21156 components: - rot: 3.141592653589793 rad pos: -26.49969,14.6061535 parent: 2 type: Transform - - uid: 21139 + - uid: 21157 components: - rot: 3.141592653589793 rad pos: -26.49969,14.6061535 parent: 2 type: Transform - - uid: 21140 + - uid: 21158 components: - rot: 3.141592653589793 rad pos: -26.49969,14.6061535 parent: 2 type: Transform - - uid: 21141 + - uid: 21159 components: - rot: 3.141592653589793 rad pos: -26.49969,14.6061535 parent: 2 type: Transform - - uid: 21142 + - uid: 21160 components: - pos: -31.206972,15.691786 parent: 2 type: Transform - - uid: 21143 + - uid: 21161 components: - pos: -31.206972,15.691786 parent: 2 type: Transform - - uid: 21144 + - uid: 21162 components: - pos: -31.363222,15.551161 parent: 2 type: Transform - - uid: 21145 + - uid: 21163 components: - pos: -31.363222,15.551161 parent: 2 type: Transform - - uid: 21146 + - uid: 21164 components: - pos: 10.165828,-6.3936543 parent: 2 type: Transform - - uid: 21147 + - uid: 21165 components: - pos: 10.165828,-6.3936543 parent: 2 type: Transform - - uid: 21148 + - uid: 21166 components: - pos: 10.165828,-6.3936543 parent: 2 type: Transform - - uid: 21149 + - uid: 21167 components: - pos: -11.489469,-13.479897 parent: 2 @@ -162217,7 +162246,7 @@ entities: Anything suspicious, please inform security. type: Paper - - uid: 21150 + - uid: 21168 components: - pos: -42.540462,17.447073 parent: 2 @@ -162227,58 +162256,58 @@ entities: type: Paper - proto: PaperBin10 entities: - - uid: 21151 + - uid: 21169 components: - rot: -1.5707963267948966 rad pos: 22.5,-21.5 parent: 2 type: Transform - - uid: 21152 + - uid: 21170 components: - pos: -22.48288,-97.58025 parent: 2 type: Transform - proto: PaperBin5 entities: - - uid: 21153 + - uid: 21171 components: - pos: -19.490406,-56.387535 parent: 2 type: Transform - - uid: 21154 + - uid: 21172 components: - pos: -34.544167,24.426237 parent: 2 type: Transform - - uid: 21155 + - uid: 21173 components: - pos: 27.161951,-37.425274 parent: 2 type: Transform - - uid: 21156 + - uid: 21174 components: - rot: 3.141592653589793 rad pos: -25.63709,-36.050198 parent: 2 type: Transform - - uid: 21157 + - uid: 21175 components: - pos: -27.800707,-9.411719 parent: 2 type: Transform - - uid: 21158 + - uid: 21176 components: - pos: 39.827625,-39.412262 parent: 2 type: Transform - - uid: 21159 + - uid: 21177 components: - pos: -17.5,-61.5 parent: 2 type: Transform - proto: PaperCaptainsThoughts entities: - - uid: 21160 + - uid: 21178 components: - rot: 1.5707963267948966 rad pos: 30.690884,-28.507551 @@ -162286,21 +162315,21 @@ entities: type: Transform - proto: PaperRolling entities: - - uid: 21161 + - uid: 21179 components: - pos: 51.67759,57.788548 parent: 2 type: Transform - proto: ParticleAcceleratorControlBoxUnfinished entities: - - uid: 21162 + - uid: 21180 components: - pos: -66.5,-30.5 parent: 2 type: Transform - proto: ParticleAcceleratorEmitterCenterUnfinished entities: - - uid: 21163 + - uid: 21181 components: - rot: 3.141592653589793 rad pos: -66.5,-24.5 @@ -162308,7 +162337,7 @@ entities: type: Transform - proto: ParticleAcceleratorEmitterLeftUnfinished entities: - - uid: 21164 + - uid: 21182 components: - rot: 3.141592653589793 rad pos: -65.5,-24.5 @@ -162316,7 +162345,7 @@ entities: type: Transform - proto: ParticleAcceleratorEmitterRightUnfinished entities: - - uid: 21165 + - uid: 21183 components: - rot: 3.141592653589793 rad pos: -67.5,-24.5 @@ -162324,7 +162353,7 @@ entities: type: Transform - proto: ParticleAcceleratorEndCapUnfinished entities: - - uid: 21166 + - uid: 21184 components: - rot: 3.141592653589793 rad pos: -66.5,-27.5 @@ -162332,7 +162361,7 @@ entities: type: Transform - proto: ParticleAcceleratorFuelChamberUnfinished entities: - - uid: 21167 + - uid: 21185 components: - rot: 3.141592653589793 rad pos: -65.5,-26.5 @@ -162340,7 +162369,7 @@ entities: type: Transform - proto: ParticleAcceleratorPowerBoxUnfinished entities: - - uid: 21168 + - uid: 21186 components: - rot: 3.141592653589793 rad pos: -66.5,-25.5 @@ -162348,22 +162377,22 @@ entities: type: Transform - proto: PartRodMetal entities: - - uid: 21169 + - uid: 21187 components: - pos: -40.15428,-18.425268 parent: 2 type: Transform - - uid: 21170 + - uid: 21188 components: - pos: -39.68701,25.670773 parent: 2 type: Transform - - uid: 21171 + - uid: 21189 components: - pos: -40.541622,33.38082 parent: 2 type: Transform - - uid: 21172 + - uid: 21190 components: - pos: -47.52058,40.270145 parent: 2 @@ -162372,18 +162401,18 @@ entities: type: EmitSoundOnCollide - proto: PartRodMetal1 entities: - - uid: 21173 + - uid: 21191 components: - pos: -34.56476,-25.498856 parent: 2 type: Transform - - uid: 21174 + - uid: 21192 components: - rot: -1.5707963267948966 rad pos: 3.9014397,49.543682 parent: 2 type: Transform - - uid: 21175 + - uid: 21193 components: - rot: 3.141592653589793 rad pos: 1.4099668,48.504288 @@ -162391,46 +162420,46 @@ entities: type: Transform - proto: Pen entities: - - uid: 21176 + - uid: 21194 components: - rot: 3.141592653589793 rad pos: 27.572367,-37.387577 parent: 2 type: Transform - - uid: 21177 + - uid: 21195 components: - rot: -1.5707963267948966 rad pos: -4.7918606,-48.471176 parent: 2 type: Transform - - uid: 21178 + - uid: 21196 components: - rot: 3.141592653589793 rad pos: -10.781895,-37.52488 parent: 2 type: Transform - - uid: 21179 + - uid: 21197 components: - rot: 3.141592653589793 rad pos: 16.218477,22.61807 parent: 2 type: Transform - - uid: 21180 + - uid: 21198 components: - pos: 16.327852,21.55557 parent: 2 type: Transform - - uid: 21181 + - uid: 21199 components: - pos: 43.66009,-3.5506787 parent: 2 type: Transform - - uid: 21182 + - uid: 21200 components: - pos: 37.66009,-3.7069297 parent: 2 type: Transform - - uid: 21183 + - uid: 21201 components: - rot: -1.5707963267948966 rad pos: -35.775307,-16.265104 @@ -162438,35 +162467,35 @@ entities: type: Transform - proto: PersonalAI entities: - - uid: 21184 + - uid: 21202 components: - flags: SessionSpecific type: MetaData - pos: 26.517971,-21.50738 parent: 2 type: Transform - - uid: 21185 + - uid: 21203 components: - flags: SessionSpecific type: MetaData - pos: 11.402888,8.363556 parent: 2 type: Transform - - uid: 21186 + - uid: 21204 components: - flags: SessionSpecific type: MetaData - pos: 12.500859,-4.4425125 parent: 2 type: Transform - - uid: 21187 + - uid: 21205 components: - flags: SessionSpecific type: MetaData - pos: 56.49031,-41.437515 parent: 2 type: Transform - - uid: 21188 + - uid: 21206 components: - flags: SessionSpecific type: MetaData @@ -162475,14 +162504,14 @@ entities: type: Transform - proto: PhoneInstrument entities: - - uid: 21189 + - uid: 21207 components: - pos: 60.321476,-1.3655583 parent: 2 type: Transform - proto: PianoInstrument entities: - - uid: 21190 + - uid: 21208 components: - rot: -1.5707963267948966 rad pos: 8.5,0.5 @@ -162490,32 +162519,32 @@ entities: type: Transform - proto: Pickaxe entities: - - uid: 21191 + - uid: 21209 components: - pos: -38.26402,27.606245 parent: 2 type: Transform - - uid: 21192 + - uid: 21210 components: - pos: -38.54527,27.71562 parent: 2 type: Transform - - uid: 21193 + - uid: 21211 components: - pos: -47.972298,26.558094 parent: 2 type: Transform - - uid: 21194 + - uid: 21212 components: - pos: 68.4767,50.00708 parent: 2 type: Transform - - uid: 21195 + - uid: 21213 components: - pos: 20.350138,46.202785 parent: 2 type: Transform - - uid: 21196 + - uid: 21214 components: - pos: -47.48462,39.252865 parent: 2 @@ -162526,187 +162555,187 @@ entities: type: EmitSoundOnCollide - proto: PillCanister entities: - - uid: 21197 + - uid: 21215 components: - pos: -10.04752,-37.290504 parent: 2 type: Transform - proto: PillDexalin entities: - - uid: 21198 + - uid: 21216 components: - pos: -10.034681,-32.27196 parent: 2 type: Transform - - uid: 21199 + - uid: 21217 components: - pos: -10.034681,-32.27196 parent: 2 type: Transform - - uid: 21200 + - uid: 21218 components: - pos: -10.019056,-32.27196 parent: 2 type: Transform - - uid: 21201 + - uid: 21219 components: - pos: -10.019056,-32.27196 parent: 2 type: Transform - proto: PillDylovene entities: - - uid: 21202 + - uid: 21220 components: - pos: -9.519056,-32.52196 parent: 2 type: Transform - - uid: 21203 + - uid: 21221 components: - pos: -9.519056,-32.52196 parent: 2 type: Transform - - uid: 21204 + - uid: 21222 components: - pos: -9.503431,-32.52196 parent: 2 type: Transform - - uid: 21205 + - uid: 21223 components: - pos: -9.487806,-32.537586 parent: 2 type: Transform - proto: PillHyronalin entities: - - uid: 21206 + - uid: 21224 components: - pos: -9.534681,-32.256336 parent: 2 type: Transform - - uid: 21207 + - uid: 21225 components: - pos: -9.534681,-32.256336 parent: 2 type: Transform - - uid: 21208 + - uid: 21226 components: - pos: -9.534681,-32.256336 parent: 2 type: Transform - - uid: 21209 + - uid: 21227 components: - pos: -9.534681,-32.256336 parent: 2 type: Transform - proto: PillIron entities: - - uid: 21210 + - uid: 21228 components: - pos: -9.034681,-32.506336 parent: 2 type: Transform - - uid: 21211 + - uid: 21229 components: - pos: -9.034681,-32.506336 parent: 2 type: Transform - - uid: 21212 + - uid: 21230 components: - pos: -9.034681,-32.506336 parent: 2 type: Transform - - uid: 21213 + - uid: 21231 components: - pos: -9.034681,-32.506336 parent: 2 type: Transform - proto: PillKelotane entities: - - uid: 21214 + - uid: 21232 components: - pos: -9.034681,-32.24071 parent: 2 type: Transform - - uid: 21215 + - uid: 21233 components: - pos: -9.034681,-32.24071 parent: 2 type: Transform - - uid: 21216 + - uid: 21234 components: - pos: -9.034681,-32.24071 parent: 2 type: Transform - - uid: 21217 + - uid: 21235 components: - pos: -9.034681,-32.24071 parent: 2 type: Transform - proto: PillSpaceDrugs entities: - - uid: 21218 + - uid: 21236 components: - pos: -8.5,-32.5 parent: 2 type: Transform - - uid: 21219 + - uid: 21237 components: - pos: -8.5,-32.5 parent: 2 type: Transform - - uid: 21220 + - uid: 21238 components: - pos: -8.5,-32.5 parent: 2 type: Transform - - uid: 21221 + - uid: 21239 components: - pos: -8.5,-32.5 parent: 2 type: Transform - proto: PillTricordrazine entities: - - uid: 21222 + - uid: 21240 components: - pos: -8.519056,-32.256336 parent: 2 type: Transform - - uid: 21223 + - uid: 21241 components: - pos: -8.503431,-32.256336 parent: 2 type: Transform - - uid: 21224 + - uid: 21242 components: - pos: -8.519056,-32.256336 parent: 2 type: Transform - - uid: 21225 + - uid: 21243 components: - pos: -8.519056,-32.256336 parent: 2 type: Transform - proto: PinpointerNuclear entities: - - uid: 21226 + - uid: 21244 components: - pos: 47.542713,-21.502851 parent: 2 type: Transform - proto: PlasmaCanister entities: - - uid: 21227 + - uid: 21245 components: - pos: -40.5,-39.5 parent: 2 type: Transform - - uid: 21228 + - uid: 21246 components: - pos: -50.5,-46.5 parent: 2 type: Transform - proto: PlasmaOre1 entities: - - uid: 21229 + - uid: 21247 components: - rot: 3.141592653589793 rad pos: 13.8918705,48.240677 @@ -162714,47 +162743,47 @@ entities: type: Transform - proto: PlasticFlapsAirtightClear entities: - - uid: 21230 + - uid: 21248 components: - pos: -49.5,19.5 parent: 2 type: Transform - - uid: 21231 + - uid: 21249 components: - pos: -49.5,23.5 parent: 2 type: Transform - - uid: 21232 + - uid: 21250 components: - pos: -49.5,30.5 parent: 2 type: Transform - - uid: 21233 + - uid: 21251 components: - pos: -49.5,34.5 parent: 2 type: Transform - - uid: 21234 + - uid: 21252 components: - pos: -52.5,34.5 parent: 2 type: Transform - - uid: 21235 + - uid: 21253 components: - pos: -52.5,30.5 parent: 2 type: Transform - - uid: 21236 + - uid: 21254 components: - pos: -53.5,23.5 parent: 2 type: Transform - - uid: 21237 + - uid: 21255 components: - pos: -53.5,19.5 parent: 2 type: Transform - - uid: 21238 + - uid: 21256 components: - rot: -1.5707963267948966 rad pos: 18.5,-56.5 @@ -162762,12 +162791,12 @@ entities: type: Transform - proto: PlasticFlapsAirtightOpaque entities: - - uid: 21239 + - uid: 21257 components: - pos: -35.5,25.5 parent: 2 type: Transform - - uid: 21240 + - uid: 21258 components: - rot: -1.5707963267948966 rad pos: -37.5,-99.5 @@ -162775,29 +162804,29 @@ entities: type: Transform - proto: PlasticFlapsClear entities: - - uid: 21241 + - uid: 21259 components: - pos: -26.5,25.5 parent: 2 type: Transform - - uid: 21242 + - uid: 21260 components: - pos: -29.5,25.5 parent: 2 type: Transform - - uid: 21243 + - uid: 21261 components: - rot: -1.5707963267948966 rad pos: -47.5,13.5 parent: 2 type: Transform - - uid: 21244 + - uid: 21262 components: - rot: 1.5707963267948966 rad pos: -42.5,16.5 parent: 2 type: Transform - - uid: 21245 + - uid: 21263 components: - rot: -1.5707963267948966 rad pos: -11.5,-11.5 @@ -162805,29 +162834,29 @@ entities: type: Transform - proto: PlasticFlapsOpaque entities: - - uid: 21246 + - uid: 21264 components: - pos: -11.5,27.5 parent: 2 type: Transform - - uid: 21247 + - uid: 21265 components: - rot: -1.5707963267948966 rad pos: -9.5,25.5 parent: 2 type: Transform - - uid: 21248 + - uid: 21266 components: - pos: -7.5,22.5 parent: 2 type: Transform - - uid: 21249 + - uid: 21267 components: - rot: 3.141592653589793 rad pos: 44.5,37.5 parent: 2 type: Transform - - uid: 21250 + - uid: 21268 components: - rot: 1.5707963267948966 rad pos: 48.5,37.5 @@ -162835,145 +162864,156 @@ entities: type: Transform - proto: PlushieAtmosian entities: - - uid: 21251 + - uid: 21269 components: - pos: -22.54358,-34.49993 parent: 2 type: Transform - proto: PlushieBee entities: - - uid: 21252 + - uid: 21270 components: - pos: 10.893783,54.42024 parent: 2 type: Transform - - uid: 21253 + - uid: 21271 components: - pos: 8.284408,54.20149 parent: 2 type: Transform - - uid: 21254 + - uid: 21272 components: - pos: -7.8529105,54.918877 parent: 2 type: Transform - - uid: 21255 + - uid: 21273 components: - pos: -6.6029105,50.731377 parent: 2 type: Transform - proto: PlushieCarp entities: - - uid: 21256 + - uid: 21274 components: - pos: -38.3623,28.544445 parent: 2 type: Transform - proto: PlushieDiona entities: - - uid: 21257 + - uid: 21275 components: - pos: 17.550053,-79.57761 parent: 2 type: Transform +- proto: PlushieHampter + entities: + - uid: 30684 + components: + - pos: 2.519814,7.511129 + parent: 2 + type: Transform + - nextAttack: 48.3115082 + type: MeleeWeapon + - nextSound: 48.5115082 + type: EmitSoundOnCollide - proto: PlushieLizard entities: - - uid: 21258 + - uid: 21276 components: - pos: -69.52961,-42.46661 parent: 2 type: Transform - - uid: 21259 + - uid: 21277 components: - pos: 61.496056,-69.34596 parent: 2 type: Transform - proto: PlushieNar entities: - - uid: 21260 + - uid: 21278 components: - pos: 44.413727,31.423994 parent: 2 type: Transform - proto: PlushieNuke entities: - - uid: 21261 + - uid: 21279 components: - pos: -14.485033,-78.68338 parent: 2 type: Transform - - uid: 21262 + - uid: 21280 components: - pos: 54.50363,58.48181 parent: 2 type: Transform - proto: PlushieRatvar entities: - - uid: 21263 + - uid: 21281 components: - pos: 22.555937,-28.535349 parent: 2 type: Transform - proto: PlushieSharkBlue entities: - - uid: 21264 + - uid: 21282 components: - pos: -69.39385,-44.387226 parent: 2 type: Transform - proto: PlushieSharkGrey entities: - - uid: 21265 + - uid: 21283 components: - pos: -56.49192,-87.62071 parent: 2 type: Transform - proto: PlushieSharkPink entities: - - uid: 21266 + - uid: 21284 components: - pos: -44.508965,16.421295 parent: 2 type: Transform - proto: PlushieSlime entities: - - uid: 21267 + - uid: 21285 components: - pos: 44.49185,33.486496 parent: 2 type: Transform - proto: PlushieSnake entities: - - uid: 21268 + - uid: 21286 components: - pos: 43.507477,33.486496 parent: 2 type: Transform - - uid: 21269 + - uid: 21287 components: - pos: -55.49481,-49.261024 parent: 2 type: Transform - proto: PlushieSpaceLizard entities: - - uid: 21270 + - uid: 21288 components: - pos: -44.46209,15.43692 parent: 2 type: Transform - - uid: 21271 + - uid: 21289 components: - pos: 42.55435,33.392746 parent: 2 type: Transform - - uid: 21272 + - uid: 21290 components: - pos: -68.482735,-42.46661 parent: 2 type: Transform - proto: PlushieXeno entities: - - uid: 21273 + - uid: 21291 components: - pos: -25.59123,-6.437059 parent: 2 @@ -162984,383 +163024,383 @@ entities: type: EmitSoundOnCollide - proto: PortableFlasher entities: - - uid: 21274 + - uid: 21292 components: - pos: 32.5,31.5 parent: 2 type: Transform - proto: PortableScrubber entities: - - uid: 21275 + - uid: 21293 components: - pos: -9.5,-68.5 parent: 2 type: Transform - - uid: 21276 + - uid: 21294 components: - pos: -33.5,-43.5 parent: 2 type: Transform - - uid: 21277 + - uid: 21295 components: - pos: -33.5,-44.5 parent: 2 type: Transform - - uid: 21278 + - uid: 21296 components: - pos: -33.5,-45.5 parent: 2 type: Transform - proto: PosterBroken entities: - - uid: 21279 + - uid: 21297 components: - pos: 0.5,-70.5 parent: 2 type: Transform - proto: PosterContrabandAmbrosiaVulgaris entities: - - uid: 21280 + - uid: 21298 components: - pos: -10.5,-34.5 parent: 2 type: Transform - proto: PosterContrabandAtmosiaDeclarationIndependence entities: - - uid: 21281 + - uid: 21299 components: - pos: -36.5,-52.5 parent: 2 type: Transform - proto: PosterContrabandBeachStarYamamoto entities: - - uid: 21282 + - uid: 21300 components: - pos: -9.5,-31.5 parent: 2 type: Transform - proto: PosterContrabandBountyHunters entities: - - uid: 21283 + - uid: 21301 components: - pos: 14.5,-56.5 parent: 2 type: Transform - proto: PosterContrabandCC64KAd entities: - - uid: 21284 + - uid: 21302 components: - pos: 20.5,-3.5 parent: 2 type: Transform - proto: PosterContrabandClown entities: - - uid: 21285 + - uid: 21303 components: - rot: 1.5707963267948966 rad pos: -23.5,39.5 parent: 2 type: Transform - - uid: 21286 + - uid: 21304 components: - pos: 2.5,-8.5 parent: 2 type: Transform - - uid: 21287 + - uid: 21305 components: - pos: 3.5,-13.5 parent: 2 type: Transform - proto: PosterContrabandCommunistState entities: - - uid: 21288 + - uid: 21306 components: - pos: 0.5,-15.5 parent: 2 type: Transform - - uid: 21289 + - uid: 21307 components: - pos: 53.5,-64.5 parent: 2 type: Transform - proto: PosterContrabandDDayPromo entities: - - uid: 21290 + - uid: 21308 components: - pos: 14.5,33.5 parent: 2 type: Transform - proto: PosterContrabandDonutCorp entities: - - uid: 21291 + - uid: 21309 components: - pos: 49.5,34.5 parent: 2 type: Transform - proto: PosterContrabandEAT entities: - - uid: 21292 + - uid: 21310 components: - pos: 4.5,4.5 parent: 2 type: Transform - proto: PosterContrabandEnergySwords entities: - - uid: 21293 + - uid: 21311 components: - pos: -8.5,19.5 parent: 2 type: Transform - proto: PosterContrabandFreeSyndicateEncryptionKey entities: - - uid: 21294 + - uid: 21312 components: - pos: -53.5,-85.5 parent: 2 type: Transform - proto: PosterContrabandFreeTonto entities: - - uid: 21295 + - uid: 21313 components: - pos: -6.5,-14.5 parent: 2 type: Transform - proto: PosterContrabandFunPolice entities: - - uid: 21296 + - uid: 21314 components: - pos: 4.5,18.5 parent: 2 type: Transform - proto: PosterContrabandGreyTide entities: - - uid: 21297 + - uid: 21315 components: - pos: 55.5,-9.5 parent: 2 type: Transform - - uid: 21298 + - uid: 21316 components: - pos: 41.5,-57.5 parent: 2 type: Transform - - uid: 21299 + - uid: 21317 components: - pos: -19.5,64.5 parent: 2 type: Transform - proto: PosterContrabandHackingGuide entities: - - uid: 21300 + - uid: 21318 components: - pos: 15.5,40.5 parent: 2 type: Transform - proto: PosterContrabandHighEffectEngineering entities: - - uid: 21301 + - uid: 21319 components: - pos: -48.5,-7.5 parent: 2 type: Transform - proto: PosterContrabandKosmicheskayaStantsiya entities: - - uid: 21302 + - uid: 21320 components: - pos: -25.5,-63.5 parent: 2 type: Transform - proto: PosterContrabandLamarr entities: - - uid: 21303 + - uid: 21321 components: - pos: 10.5,35.5 parent: 2 type: Transform - proto: PosterContrabandLustyExomorph entities: - - uid: 21304 + - uid: 21322 components: - pos: -9.5,-73.5 parent: 2 type: Transform - - uid: 21305 + - uid: 21323 components: - pos: 45.5,50.5 parent: 2 type: Transform - proto: PosterContrabandMaskedMen entities: - - uid: 21306 + - uid: 21324 components: - pos: 47.5,51.5 parent: 2 type: Transform - proto: PosterContrabandMissingGloves entities: - - uid: 21307 + - uid: 21325 components: - pos: 20.5,19.5 parent: 2 type: Transform - - uid: 21308 + - uid: 21326 components: - pos: 41.5,-52.5 parent: 2 type: Transform - - uid: 21309 + - uid: 21327 components: - pos: -26.5,-18.5 parent: 2 type: Transform - proto: PosterContrabandNuclearDeviceInformational entities: - - uid: 21310 + - uid: 21328 components: - pos: 39.5,-24.5 parent: 2 type: Transform - proto: PosterContrabandPower entities: - - uid: 21311 + - uid: 21329 components: - pos: -61.5,-22.5 parent: 2 type: Transform - - uid: 21312 + - uid: 21330 components: - pos: -23.5,-7.5 parent: 2 type: Transform - proto: PosterContrabandPwrGame entities: - - uid: 21313 + - uid: 21331 components: - pos: -41.5,-40.5 parent: 2 type: Transform - proto: PosterContrabandRebelsUnite entities: - - uid: 21314 + - uid: 21332 components: - pos: -0.5,-72.5 parent: 2 type: Transform - - uid: 21315 + - uid: 21333 components: - pos: -42.5,-73.5 parent: 2 type: Transform - proto: PosterContrabandRedRum entities: - - uid: 21316 + - uid: 21334 components: - pos: 13.5,4.5 parent: 2 type: Transform - - uid: 21317 + - uid: 21335 components: - pos: 11.5,15.5 parent: 2 type: Transform - - uid: 21318 + - uid: 21336 components: - pos: 35.5,49.5 parent: 2 type: Transform - proto: PosterContrabandRevolt entities: - - uid: 21319 + - uid: 21337 components: - pos: -40.5,-73.5 parent: 2 type: Transform - - uid: 21320 + - uid: 21338 components: - pos: -7.5,-73.5 parent: 2 type: Transform - - uid: 21321 + - uid: 21339 components: - pos: 57.5,55.5 parent: 2 type: Transform - - uid: 21322 + - uid: 21340 components: - pos: 51.5,55.5 parent: 2 type: Transform - - uid: 21323 + - uid: 21341 components: - pos: 56.5,60.5 parent: 2 type: Transform - - uid: 21324 + - uid: 21342 components: - pos: 52.5,60.5 parent: 2 type: Transform - - uid: 21325 + - uid: 21343 components: - pos: 51.5,59.5 parent: 2 type: Transform - - uid: 21326 + - uid: 21344 components: - pos: 57.5,59.5 parent: 2 type: Transform - proto: PosterContrabandRevolver entities: - - uid: 21327 + - uid: 21345 components: - pos: -30.5,-42.5 parent: 2 type: Transform - - uid: 21328 + - uid: 21346 components: - pos: 42.5,49.5 parent: 2 type: Transform - proto: PosterContrabandRIPBadger entities: - - uid: 21329 + - uid: 21347 components: - pos: -41.5,-27.5 parent: 2 type: Transform - proto: PosterContrabandRise entities: - - uid: 21330 + - uid: 21348 components: - pos: 63.5,10.5 parent: 2 type: Transform - - uid: 21331 + - uid: 21349 components: - pos: -28.5,-50.5 parent: 2 type: Transform - - uid: 21332 + - uid: 21350 components: - pos: -40.5,-69.5 parent: 2 type: Transform - - uid: 21333 + - uid: 21351 components: - pos: 57.5,53.5 parent: 2 type: Transform - proto: PosterContrabandRobustSoftdrinks entities: - - uid: 21334 + - uid: 21352 components: - pos: -6.5,-31.5 parent: 2 type: Transform - proto: PosterContrabandShamblersJuice entities: - - uid: 21335 + - uid: 21353 components: - name: changs type: MetaData @@ -163370,335 +163410,335 @@ entities: type: Transform - proto: PosterContrabandSmoke entities: - - uid: 21336 + - uid: 21354 components: - pos: -6.5,-51.5 parent: 2 type: Transform - proto: PosterContrabandSpaceCube entities: - - uid: 21337 + - uid: 21355 components: - pos: -14.5,-32.5 parent: 2 type: Transform - proto: PosterContrabandSyndicatePistol entities: - - uid: 21338 + - uid: 21356 components: - pos: -46.5,-71.5 parent: 2 type: Transform - proto: PosterContrabandSyndicateRecruitment entities: - - uid: 21339 + - uid: 21357 components: - pos: -44.5,-74.5 parent: 2 type: Transform - proto: PosterContrabandTheGriffin entities: - - uid: 21340 + - uid: 21358 components: - pos: -43.5,-73.5 parent: 2 type: Transform - proto: PosterContrabandTools entities: - - uid: 21341 + - uid: 21359 components: - pos: -54.5,-69.5 parent: 2 type: Transform - - uid: 21342 + - uid: 21360 components: - pos: -22.5,-19.5 parent: 2 type: Transform - proto: PosterContrabandVoteWeh entities: - - uid: 21343 + - uid: 21361 components: - pos: -46.5,-65.5 parent: 2 type: Transform - - uid: 21344 + - uid: 21362 components: - pos: 59.5,41.5 parent: 2 type: Transform - proto: PosterContrabandWehWatches entities: - - uid: 21345 + - uid: 21363 components: - pos: 55.5,-4.5 parent: 2 type: Transform - proto: PosterLegit12Gauge entities: - - uid: 21346 + - uid: 21364 components: - pos: 31.5,23.5 parent: 2 type: Transform - proto: PosterLegit50thAnniversaryVintageReprint entities: - - uid: 21347 + - uid: 21365 components: - pos: 44.5,-34.5 parent: 2 type: Transform - proto: PosterLegitBlessThisSpess entities: - - uid: 21348 + - uid: 21366 components: - pos: 61.5,-4.5 parent: 2 type: Transform - proto: PosterLegitBuild entities: - - uid: 21349 + - uid: 21367 components: - pos: -34.5,-4.5 parent: 2 type: Transform - proto: PosterLegitCarbonDioxide entities: - - uid: 21350 + - uid: 21368 components: - pos: 46.5,-55.5 parent: 2 type: Transform - proto: PosterLegitCleanliness entities: - - uid: 21351 + - uid: 21369 components: - pos: -10.5,-24.5 parent: 2 type: Transform - - uid: 21352 + - uid: 21370 components: - pos: 1.5,-58.5 parent: 2 type: Transform - proto: PosterLegitCohibaRobustoAd entities: - - uid: 21353 + - uid: 21371 components: - pos: 13.5,-30.5 parent: 2 type: Transform - - uid: 21354 + - uid: 21372 components: - pos: 57.5,-9.5 parent: 2 type: Transform - proto: PosterLegitDickGumshue entities: - - uid: 21355 + - uid: 21373 components: - pos: 17.5,-15.5 parent: 2 type: Transform - proto: PosterLegitDoNotQuestion entities: - - uid: 21356 + - uid: 21374 components: - pos: 23.5,19.5 parent: 2 type: Transform - - uid: 21357 + - uid: 21375 components: - pos: -17.5,-21.5 parent: 2 type: Transform - proto: PosterLegitEnlist entities: - - uid: 21358 + - uid: 21376 components: - pos: -17.5,-31.5 parent: 2 type: Transform - - uid: 21359 + - uid: 21377 components: - pos: 59.5,-9.5 parent: 2 type: Transform - - uid: 21360 + - uid: 21378 components: - pos: -13.5,27.5 parent: 2 type: Transform - proto: PosterLegitFoamForceAd entities: - - uid: 21361 + - uid: 21379 components: - pos: 1.5,-39.5 parent: 2 type: Transform - proto: PosterLegitFruitBowl entities: - - uid: 21362 + - uid: 21380 components: - pos: -4.5,9.5 parent: 2 type: Transform - - uid: 21363 + - uid: 21381 components: - pos: -22.5,49.5 parent: 2 type: Transform - proto: PosterLegitGetYourLEGS entities: - - uid: 21364 + - uid: 21382 components: - pos: -16.5,64.5 parent: 2 type: Transform - proto: PosterLegitHelpOthers entities: - - uid: 21365 + - uid: 21383 components: - pos: -7.5,-40.5 parent: 2 type: Transform - proto: PosterLegitHereForYourSafety entities: - - uid: 21366 + - uid: 21384 components: - pos: 28.5,9.5 parent: 2 type: Transform - proto: PosterLegitHighClassMartini entities: - - uid: 21367 + - uid: 21385 components: - pos: 8.5,11.5 parent: 2 type: Transform - - uid: 21368 + - uid: 21386 components: - pos: -39.5,-74.5 parent: 2 type: Transform - proto: PosterLegitIan entities: - - uid: 21369 + - uid: 21387 components: - pos: 21.5,-40.5 parent: 2 type: Transform - proto: PosterLegitIonRifle entities: - - uid: 21370 + - uid: 21388 components: - pos: 27.5,33.5 parent: 2 type: Transform - proto: PosterLegitJustAWeekAway entities: - - uid: 21371 + - uid: 21389 components: - pos: -37.5,-31.5 parent: 2 type: Transform - proto: PosterLegitLoveIan entities: - - uid: 21372 + - uid: 21390 components: - pos: 21.5,-33.5 parent: 2 type: Transform - proto: PosterLegitNanomichiAd entities: - - uid: 21373 + - uid: 21391 components: - pos: -21.5,-27.5 parent: 2 type: Transform - proto: PosterLegitNanotrasenLogo entities: - - uid: 21374 + - uid: 21392 components: - rot: 3.141592653589793 rad pos: -15.5,9.5 parent: 2 type: Transform - - uid: 21375 + - uid: 21393 components: - pos: 28.5,-31.5 parent: 2 type: Transform - - uid: 21376 + - uid: 21394 components: - pos: 25.5,-33.5 parent: 2 type: Transform - proto: PosterLegitNoERP entities: - - uid: 21377 + - uid: 21395 components: - pos: 40.5,49.5 parent: 2 type: Transform - proto: PosterLegitObey entities: - - uid: 21378 + - uid: 21396 components: - pos: 31.5,-3.5 parent: 2 type: Transform - proto: PosterLegitPDAAd entities: - - uid: 21379 + - uid: 21397 components: - pos: 29.5,-40.5 parent: 2 type: Transform - proto: PosterLegitReportCrimes entities: - - uid: 21380 + - uid: 21398 components: - pos: 18.5,-15.5 parent: 2 type: Transform - - uid: 21381 + - uid: 21399 components: - pos: 30.5,-46.5 parent: 2 type: Transform - proto: PosterLegitSafetyEyeProtection entities: - - uid: 21382 + - uid: 21400 components: - pos: -33.5,-31.5 parent: 2 type: Transform - proto: PosterLegitSafetyInternals entities: - - uid: 21383 + - uid: 21401 components: - pos: -39.5,-31.5 parent: 2 type: Transform - - uid: 21384 + - uid: 21402 components: - pos: 24.5,-54.5 parent: 2 type: Transform - proto: PosterLegitSecWatch entities: - - uid: 21385 + - uid: 21403 components: - pos: 10.5,15.5 parent: 2 type: Transform - - uid: 21386 + - uid: 21404 components: - pos: 18.5,-9.5 parent: 2 type: Transform - - uid: 21387 + - uid: 21405 components: - rot: 3.141592653589793 rad pos: -18.5,-44.5 @@ -163706,349 +163746,342 @@ entities: type: Transform - proto: PosterLegitStateLaws entities: - - uid: 21388 + - uid: 21406 components: - pos: 37.5,-32.5 parent: 2 type: Transform - - uid: 21389 + - uid: 21407 components: - pos: -17.5,27.5 parent: 2 type: Transform - proto: PosterLegitTheOwl entities: - - uid: 21390 + - uid: 21408 components: - pos: 30.5,48.5 parent: 2 type: Transform - proto: PosterLegitWalk entities: - - uid: 21391 + - uid: 21409 components: - pos: -7.5,-28.5 parent: 2 type: Transform - proto: PosterLegitWorkForAFuture entities: - - uid: 21392 + - uid: 21410 components: - pos: 23.5,-38.5 parent: 2 type: Transform -- proto: PosterMapOrigin - entities: - - uid: 21394 - components: - - pos: 5.5,-24.5 - parent: 2 - type: Transform - proto: PottedPlant1 entities: - - uid: 21398 + - uid: 21411 components: - pos: -2.5,-40.5 parent: 2 type: Transform - proto: PottedPlant14 entities: - - uid: 21399 + - uid: 21412 components: - pos: 36.5,-16.5 parent: 2 type: Transform - proto: PottedPlant24 entities: - - uid: 21400 + - uid: 21413 components: - pos: -6.5,-40.5 parent: 2 type: Transform - proto: PottedPlant26 entities: - - uid: 21401 + - uid: 21414 components: - pos: 6.5,-52.5 parent: 2 type: Transform - proto: PottedPlant27 entities: - - uid: 21402 + - uid: 21415 components: - pos: 46.5,31.5 parent: 2 type: Transform - - uid: 21403 + - uid: 21416 components: - pos: -43.5,-87.5 parent: 2 type: Transform - proto: PottedPlant28 entities: - - uid: 21404 + - uid: 21417 components: - pos: 46.5,30.5 parent: 2 type: Transform - - uid: 21405 + - uid: 21418 components: - pos: -54.5,-47.5 parent: 2 type: Transform - proto: PottedPlant29 entities: - - uid: 21406 + - uid: 21419 components: - pos: 46.5,29.5 parent: 2 type: Transform - - uid: 21407 + - uid: 21420 components: - pos: -54.5,-50.5 parent: 2 type: Transform - - uid: 21408 + - uid: 21421 components: - pos: -40.5,-87.5 parent: 2 type: Transform - proto: PottedPlant3 entities: - - uid: 21409 + - uid: 21422 components: - pos: 14.5,-16.5 parent: 2 type: Transform - - uid: 21410 + - uid: 21423 components: - pos: 54.5,-1.5 parent: 2 type: Transform - proto: PottedPlant5 entities: - - uid: 21411 + - uid: 21424 components: - pos: -26.5,8.5 parent: 2 type: Transform - - uid: 21412 + - uid: 21425 components: - pos: 50.5,-1.5 parent: 2 type: Transform - proto: PottedPlant8 entities: - - uid: 21413 + - uid: 21426 components: - pos: -22.5,8.5 parent: 2 type: Transform - proto: PottedPlantBioluminscent entities: - - uid: 21414 + - uid: 21427 components: - pos: -27.5,17.5 parent: 2 type: Transform - proto: PottedPlantRandom entities: - - uid: 21415 + - uid: 21428 components: - pos: 20.5,18.5 parent: 2 type: Transform - - uid: 21416 + - uid: 21429 components: - pos: 1.5,-40.5 parent: 2 type: Transform - - uid: 21417 + - uid: 21430 components: - pos: 24.5,-81.5 parent: 2 type: Transform - - uid: 21418 + - uid: 21431 components: - pos: -44.5,8.5 parent: 2 type: Transform - - uid: 21419 + - uid: 21432 components: - pos: -49.5,8.5 parent: 2 type: Transform - - uid: 21420 + - uid: 21433 components: - pos: 23.5,-43.5 parent: 2 type: Transform - - uid: 21421 + - uid: 21434 components: - pos: 27.5,-43.5 parent: 2 type: Transform - - uid: 21422 + - uid: 21435 components: - pos: -23.5,-73.5 parent: 2 type: Transform - - uid: 21423 + - uid: 21436 components: - pos: -49.5,12.5 parent: 2 type: Transform - - uid: 21424 + - uid: 21437 components: - pos: -19.5,-73.5 parent: 2 type: Transform - - uid: 21425 + - uid: 21438 components: - pos: -2.5,46.5 parent: 2 type: Transform - - uid: 21426 + - uid: 21439 components: - pos: -14.5,42.5 parent: 2 type: Transform - - uid: 21427 + - uid: 21440 components: - pos: -6.5,46.5 parent: 2 type: Transform - - uid: 21428 + - uid: 21441 components: - pos: -1.5,21.5 parent: 2 type: Transform - - uid: 21429 + - uid: 21442 components: - pos: 24.5,-85.5 parent: 2 type: Transform - - uid: 21430 + - uid: 21443 components: - pos: 25.5,-74.5 parent: 2 type: Transform - - uid: 21431 + - uid: 21444 components: - pos: -20.5,-66.5 parent: 2 type: Transform - - uid: 21432 + - uid: 21445 components: - pos: -18.5,-66.5 parent: 2 type: Transform - proto: PottedPlantRandomPlastic entities: - - uid: 21433 + - uid: 21446 components: - pos: -6.5,-45.5 parent: 2 type: Transform - - uid: 21434 + - uid: 21447 components: - pos: -55.5,-58.5 parent: 2 type: Transform - - uid: 21435 + - uid: 21448 components: - pos: 54.5,31.5 parent: 2 type: Transform - - uid: 21436 + - uid: 21449 components: - pos: -12.5,-96.5 parent: 2 type: Transform - - uid: 21437 + - uid: 21450 components: - pos: -57.5,-60.5 parent: 2 type: Transform - proto: PowerCellMediumPrinted entities: - - uid: 21438 + - uid: 21451 components: - pos: -5.4825964,19.558506 parent: 2 type: Transform - proto: PowerCellRecharger entities: - - uid: 21439 + - uid: 21452 components: - pos: -10.5,-61.5 parent: 2 type: Transform - - uid: 21440 + - uid: 21453 components: - pos: -11.5,-61.5 parent: 2 type: Transform - - uid: 21441 + - uid: 21454 components: - pos: -26.5,-20.5 parent: 2 type: Transform - - uid: 21442 + - uid: 21455 components: - pos: 8.5,14.5 parent: 2 type: Transform - - uid: 21443 + - uid: 21456 components: - pos: -23.5,-8.5 parent: 2 type: Transform - - uid: 21444 + - uid: 21457 components: - pos: -35.5,-13.5 parent: 2 type: Transform - - uid: 21445 + - uid: 21458 components: - pos: -32.5,17.5 parent: 2 type: Transform - - uid: 21446 + - uid: 21459 components: - pos: -22.5,-33.5 parent: 2 type: Transform - - uid: 21447 + - uid: 21460 components: - pos: 38.5,-55.5 parent: 2 type: Transform - - uid: 21448 + - uid: 21461 components: - pos: -22.5,17.5 parent: 2 type: Transform - - uid: 21449 + - uid: 21462 components: - pos: 43.5,-40.5 parent: 2 type: Transform - proto: PowerDrill entities: - - uid: 21450 + - uid: 21463 components: - pos: 62.617344,-53.460384 parent: 2 type: Transform - - uid: 21451 + - uid: 21464 components: - pos: -52.61403,65.565544 parent: 2 type: Transform - proto: Poweredlight entities: - - uid: 21452 + - uid: 21465 components: - rot: -1.5707963267948966 rad pos: -22.5,-77.5 @@ -164056,7 +164089,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21453 + - uid: 21466 components: - rot: 1.5707963267948966 rad pos: -42.5,-9.5 @@ -164064,7 +164097,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21454 + - uid: 21467 components: - rot: -1.5707963267948966 rad pos: 48.5,-29.5 @@ -164072,7 +164105,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21455 + - uid: 21468 components: - rot: 1.5707963267948966 rad pos: 25.5,-34.5 @@ -164080,7 +164113,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21456 + - uid: 21469 components: - rot: -1.5707963267948966 rad pos: 14.5,8.5 @@ -164088,7 +164121,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21457 + - uid: 21470 components: - rot: 3.141592653589793 rad pos: -10.5,-1.5 @@ -164096,7 +164129,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21458 + - uid: 21471 components: - rot: 3.141592653589793 rad pos: -2.5,-1.5 @@ -164104,14 +164137,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21459 + - uid: 21472 components: - pos: 4.5,-59.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21460 + - uid: 21473 components: - rot: 1.5707963267948966 rad pos: -5.5,-31.5 @@ -164119,7 +164152,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21461 + - uid: 21474 components: - rot: -1.5707963267948966 rad pos: 4.5,-4.5 @@ -164129,7 +164162,7 @@ entities: type: PointLight - powerLoad: 0 type: ApcPowerReceiver - - uid: 21462 + - uid: 21475 components: - rot: -1.5707963267948966 rad pos: 16.5,-22.5 @@ -164137,21 +164170,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21463 + - uid: 21476 components: - pos: 30.5,-47.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21464 + - uid: 21477 components: - pos: 40.5,-25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21465 + - uid: 21478 components: - rot: 1.5707963267948966 rad pos: 44.5,-23.5 @@ -164159,7 +164192,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21466 + - uid: 21479 components: - rot: 3.141592653589793 rad pos: -10.5,-61.5 @@ -164167,7 +164200,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21467 + - uid: 21480 components: - rot: 3.141592653589793 rad pos: -4.5,-61.5 @@ -164175,7 +164208,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21468 + - uid: 21481 components: - rot: 1.5707963267948966 rad pos: -20.5,-77.5 @@ -164183,7 +164216,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21469 + - uid: 21482 components: - rot: 3.141592653589793 rad pos: -9.5,-27.5 @@ -164191,7 +164224,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21470 + - uid: 21483 components: - rot: 3.141592653589793 rad pos: 12.5,-27.5 @@ -164199,21 +164232,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21471 + - uid: 21484 components: - pos: 21.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21472 + - uid: 21485 components: - pos: 29.5,-45.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21473 + - uid: 21486 components: - rot: -1.5707963267948966 rad pos: 42.5,8.5 @@ -164221,7 +164254,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21474 + - uid: 21487 components: - rot: 3.141592653589793 rad pos: 24.5,-2.5 @@ -164229,14 +164262,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21475 + - uid: 21488 components: - pos: 33.5,-45.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21476 + - uid: 21489 components: - rot: 3.141592653589793 rad pos: 2.5,-43.5 @@ -164244,7 +164277,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21477 + - uid: 21490 components: - rot: -1.5707963267948966 rad pos: 7.5,-46.5 @@ -164252,7 +164285,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21478 + - uid: 21491 components: - rot: -1.5707963267948966 rad pos: -27.5,-70.5 @@ -164260,7 +164293,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21479 + - uid: 21492 components: - rot: -1.5707963267948966 rad pos: 30.5,0.5 @@ -164268,14 +164301,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21480 + - uid: 21493 components: - pos: -23.5,-8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21481 + - uid: 21494 components: - rot: -1.5707963267948966 rad pos: 10.5,-60.5 @@ -164283,7 +164316,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21482 + - uid: 21495 components: - rot: 1.5707963267948966 rad pos: -5.5,-35.5 @@ -164291,7 +164324,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21483 + - uid: 21496 components: - rot: -1.5707963267948966 rad pos: 23.5,-35.5 @@ -164299,7 +164332,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21484 + - uid: 21497 components: - rot: 3.141592653589793 rad pos: -8.5,44.5 @@ -164307,7 +164340,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21485 + - uid: 21498 components: - rot: -1.5707963267948966 rad pos: -0.5,62.5 @@ -164315,14 +164348,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21486 + - uid: 21499 components: - pos: 4.5,3.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21487 + - uid: 21500 components: - rot: 1.5707963267948966 rad pos: 44.5,-28.5 @@ -164330,7 +164363,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21488 + - uid: 21501 components: - rot: -1.5707963267948966 rad pos: 29.5,-34.5 @@ -164338,7 +164371,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21489 + - uid: 21502 components: - rot: -1.5707963267948966 rad pos: 42.5,-25.5 @@ -164346,7 +164379,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21490 + - uid: 21503 components: - rot: -1.5707963267948966 rad pos: 32.5,-29.5 @@ -164354,7 +164387,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21491 + - uid: 21504 components: - rot: 1.5707963267948966 rad pos: 8.5,-9.5 @@ -164362,28 +164395,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21492 + - uid: 21505 components: - pos: -21.5,-84.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21493 + - uid: 21506 components: - pos: 12.5,3.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21494 + - uid: 21507 components: - pos: 29.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21495 + - uid: 21508 components: - rot: -1.5707963267948966 rad pos: -18.5,-9.5 @@ -164391,14 +164424,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21496 + - uid: 21509 components: - pos: 4.5,-56.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21497 + - uid: 21510 components: - rot: -1.5707963267948966 rad pos: 34.5,3.5 @@ -164408,7 +164441,7 @@ entities: type: PointLight - powerLoad: 0 type: ApcPowerReceiver - - uid: 21498 + - uid: 21511 components: - rot: 1.5707963267948966 rad pos: -35.5,-50.5 @@ -164416,7 +164449,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21499 + - uid: 21512 components: - rot: -1.5707963267948966 rad pos: 65.5,-2.5 @@ -164424,14 +164457,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21500 + - uid: 21513 components: - pos: 27.5,-16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21501 + - uid: 21514 components: - rot: 1.5707963267948966 rad pos: -3.5,-65.5 @@ -164439,7 +164472,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21502 + - uid: 21515 components: - rot: 1.5707963267948966 rad pos: -9.5,-64.5 @@ -164447,7 +164480,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21503 + - uid: 21516 components: - rot: -1.5707963267948966 rad pos: 0.5,-45.5 @@ -164455,7 +164488,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21504 + - uid: 21517 components: - rot: 1.5707963267948966 rad pos: -9.5,-48.5 @@ -164463,14 +164496,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21505 + - uid: 21518 components: - pos: -23.5,-69.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21506 + - uid: 21519 components: - rot: 3.141592653589793 rad pos: -22.5,-73.5 @@ -164478,14 +164511,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21507 + - uid: 21520 components: - pos: 16.5,-16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21508 + - uid: 21521 components: - rot: 1.5707963267948966 rad pos: -5.5,-11.5 @@ -164493,7 +164526,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21509 + - uid: 21522 components: - rot: -1.5707963267948966 rad pos: 48.5,-22.5 @@ -164501,14 +164534,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21510 + - uid: 21523 components: - pos: 24.5,4.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21511 + - uid: 21524 components: - rot: 1.5707963267948966 rad pos: -1.5,-6.5 @@ -164516,7 +164549,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21512 + - uid: 21525 components: - rot: 1.5707963267948966 rad pos: 10.5,11.5 @@ -164524,14 +164557,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21513 + - uid: 21526 components: - pos: 16.5,14.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21514 + - uid: 21527 components: - rot: 1.5707963267948966 rad pos: -12.5,-37.5 @@ -164539,14 +164572,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21515 + - uid: 21528 components: - pos: -8.5,-35.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21516 + - uid: 21529 components: - rot: 1.5707963267948966 rad pos: -10.5,8.5 @@ -164554,14 +164587,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21517 + - uid: 21530 components: - pos: 6.5,22.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21518 + - uid: 21531 components: - rot: 1.5707963267948966 rad pos: 24.5,-47.5 @@ -164569,14 +164602,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21519 + - uid: 21532 components: - pos: 13.5,17.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21520 + - uid: 21533 components: - rot: 1.5707963267948966 rad pos: 14.5,21.5 @@ -164584,14 +164617,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21521 + - uid: 21534 components: - pos: 44.5,8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21522 + - uid: 21535 components: - rot: 3.141592653589793 rad pos: 47.5,4.5 @@ -164599,28 +164632,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21523 + - uid: 21536 components: - pos: 44.5,2.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21524 + - uid: 21537 components: - pos: -4.5,3.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21525 + - uid: 21538 components: - pos: 11.5,22.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21526 + - uid: 21539 components: - rot: -1.5707963267948966 rad pos: -3.5,-6.5 @@ -164628,7 +164661,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21527 + - uid: 21540 components: - rot: 3.141592653589793 rad pos: -2.5,-27.5 @@ -164636,7 +164669,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21528 + - uid: 21541 components: - rot: 1.5707963267948966 rad pos: -5.5,-18.5 @@ -164644,14 +164677,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21529 + - uid: 21542 components: - pos: -9.5,-21.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21530 + - uid: 21543 components: - rot: 1.5707963267948966 rad pos: -13.5,-22.5 @@ -164659,7 +164692,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21531 + - uid: 21544 components: - rot: -1.5707963267948966 rad pos: 39.5,-2.5 @@ -164667,7 +164700,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21532 + - uid: 21545 components: - rot: 3.141592653589793 rad pos: 36.5,-6.5 @@ -164675,7 +164708,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21533 + - uid: 21546 components: - rot: 1.5707963267948966 rad pos: 26.5,31.5 @@ -164683,7 +164716,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21534 + - uid: 21547 components: - rot: 3.141592653589793 rad pos: 29.5,27.5 @@ -164691,7 +164724,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21535 + - uid: 21548 components: - rot: -1.5707963267948966 rad pos: 30.5,20.5 @@ -164699,7 +164732,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21536 + - uid: 21549 components: - rot: 1.5707963267948966 rad pos: 28.5,14.5 @@ -164707,35 +164740,35 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21537 + - uid: 21550 components: - pos: 33.5,16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21538 + - uid: 21551 components: - pos: 39.5,16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21539 + - uid: 21552 components: - pos: 55.5,9.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21540 + - uid: 21553 components: - pos: 51.5,9.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21541 + - uid: 21554 components: - rot: 3.141592653589793 rad pos: 55.5,15.5 @@ -164743,7 +164776,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21542 + - uid: 21555 components: - rot: 3.141592653589793 rad pos: 51.5,15.5 @@ -164751,7 +164784,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21543 + - uid: 21556 components: - rot: 3.141592653589793 rad pos: 48.5,12.5 @@ -164759,7 +164792,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21544 + - uid: 21557 components: - rot: 3.141592653589793 rad pos: 58.5,12.5 @@ -164767,7 +164800,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21545 + - uid: 21558 components: - rot: -1.5707963267948966 rad pos: 59.5,20.5 @@ -164775,7 +164808,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21546 + - uid: 21559 components: - rot: 3.141592653589793 rad pos: 59.5,4.5 @@ -164783,7 +164816,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21547 + - uid: 21560 components: - rot: 3.141592653589793 rad pos: 48.5,18.5 @@ -164791,7 +164824,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21548 + - uid: 21561 components: - rot: 1.5707963267948966 rad pos: 32.5,-3.5 @@ -164799,7 +164832,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21549 + - uid: 21562 components: - rot: 3.141592653589793 rad pos: 24.5,6.5 @@ -164807,7 +164840,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21550 + - uid: 21563 components: - rot: 3.141592653589793 rad pos: 29.5,6.5 @@ -164815,7 +164848,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21551 + - uid: 21564 components: - rot: 1.5707963267948966 rad pos: 24.5,-13.5 @@ -164823,7 +164856,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21552 + - uid: 21565 components: - rot: 3.141592653589793 rad pos: 21.5,-6.5 @@ -164831,7 +164864,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21553 + - uid: 21566 components: - rot: -1.5707963267948966 rad pos: 26.5,-9.5 @@ -164839,7 +164872,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21554 + - uid: 21567 components: - rot: 3.141592653589793 rad pos: 57.5,-6.5 @@ -164847,14 +164880,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21555 + - uid: 21568 components: - pos: 57.5,-10.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21556 + - uid: 21569 components: - rot: -1.5707963267948966 rad pos: 54.5,-8.5 @@ -164862,7 +164895,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21557 + - uid: 21570 components: - rot: 1.5707963267948966 rad pos: 59.5,-1.5 @@ -164870,7 +164903,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21558 + - uid: 21571 components: - rot: 3.141592653589793 rad pos: 57.5,-14.5 @@ -164878,7 +164911,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21559 + - uid: 21572 components: - rot: 3.141592653589793 rad pos: 33.5,-60.5 @@ -164886,7 +164919,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21560 + - uid: 21573 components: - rot: 3.141592653589793 rad pos: 45.5,-43.5 @@ -164894,14 +164927,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21561 + - uid: 21574 components: - pos: 72.5,-43.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21562 + - uid: 21575 components: - rot: 3.141592653589793 rad pos: 67.5,-49.5 @@ -164909,7 +164942,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21563 + - uid: 21576 components: - rot: 3.141592653589793 rad pos: 60.5,-49.5 @@ -164917,7 +164950,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21564 + - uid: 21577 components: - rot: 3.141592653589793 rad pos: 57.5,-45.5 @@ -164925,14 +164958,14 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 21565 + - uid: 21578 components: - pos: 56.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21566 + - uid: 21579 components: - rot: -1.5707963267948966 rad pos: 53.5,-42.5 @@ -164940,7 +164973,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21567 + - uid: 21580 components: - rot: 1.5707963267948966 rad pos: 48.5,-38.5 @@ -164948,7 +164981,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21568 + - uid: 21581 components: - rot: 1.5707963267948966 rad pos: 48.5,-47.5 @@ -164956,21 +164989,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21569 + - uid: 21582 components: - pos: 39.5,-35.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21570 + - uid: 21583 components: - pos: 44.5,-35.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21571 + - uid: 21584 components: - rot: 3.141592653589793 rad pos: 10.5,-43.5 @@ -164978,7 +165011,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21572 + - uid: 21585 components: - rot: 3.141592653589793 rad pos: 35.5,-43.5 @@ -164986,7 +165019,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21573 + - uid: 21586 components: - rot: 3.141592653589793 rad pos: 28.5,-6.5 @@ -164994,7 +165027,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21574 + - uid: 21587 components: - rot: 3.141592653589793 rad pos: 16.5,-43.5 @@ -165002,21 +165035,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21575 + - uid: 21588 components: - pos: 33.5,-39.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21576 + - uid: 21589 components: - pos: 45.5,-45.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21577 + - uid: 21590 components: - rot: 3.141592653589793 rad pos: 42.5,-49.5 @@ -165024,7 +165057,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21578 + - uid: 21591 components: - rot: 3.141592653589793 rad pos: 65.5,-35.5 @@ -165032,7 +165065,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21579 + - uid: 21592 components: - rot: -1.5707963267948966 rad pos: 64.5,-53.5 @@ -165040,14 +165073,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21580 + - uid: 21593 components: - pos: 32.5,-47.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21581 + - uid: 21594 components: - rot: -1.5707963267948966 rad pos: 34.5,-51.5 @@ -165055,7 +165088,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21582 + - uid: 21595 components: - rot: 1.5707963267948966 rad pos: 28.5,-50.5 @@ -165063,7 +165096,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21583 + - uid: 21596 components: - rot: -1.5707963267948966 rad pos: 34.5,-55.5 @@ -165071,7 +165104,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21584 + - uid: 21597 components: - rot: 1.5707963267948966 rad pos: 28.5,-56.5 @@ -165079,7 +165112,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21585 + - uid: 21598 components: - rot: 1.5707963267948966 rad pos: 24.5,-52.5 @@ -165087,7 +165120,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21586 + - uid: 21599 components: - rot: -1.5707963267948966 rad pos: 26.5,-56.5 @@ -165095,21 +165128,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21587 + - uid: 21600 components: - pos: 28.5,-58.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21588 + - uid: 21601 components: - pos: -15.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21589 + - uid: 21602 components: - rot: 3.141592653589793 rad pos: 37.5,-60.5 @@ -165117,7 +165150,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21590 + - uid: 21603 components: - rot: 3.141592653589793 rad pos: -25.5,-17.5 @@ -165125,7 +165158,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21591 + - uid: 21604 components: - rot: -1.5707963267948966 rad pos: 16.5,-31.5 @@ -165133,7 +165166,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21592 + - uid: 21605 components: - rot: 1.5707963267948966 rad pos: -20.5,-15.5 @@ -165141,7 +165174,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21593 + - uid: 21606 components: - rot: 1.5707963267948966 rad pos: -20.5,-19.5 @@ -165149,7 +165182,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21594 + - uid: 21607 components: - rot: 1.5707963267948966 rad pos: -26.5,-21.5 @@ -165157,14 +165190,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21595 + - uid: 21608 components: - pos: -30.5,-16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21596 + - uid: 21609 components: - rot: 3.141592653589793 rad pos: -28.5,-14.5 @@ -165172,7 +165205,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21597 + - uid: 21610 components: - rot: 1.5707963267948966 rad pos: -39.5,-8.5 @@ -165180,7 +165213,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21598 + - uid: 21611 components: - rot: 1.5707963267948966 rad pos: 38.5,-54.5 @@ -165188,14 +165221,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21599 + - uid: 21612 components: - pos: 56.5,-58.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21600 + - uid: 21613 components: - rot: -1.5707963267948966 rad pos: 51.5,-56.5 @@ -165203,14 +165236,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21601 + - uid: 21614 components: - pos: 45.5,-56.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21602 + - uid: 21615 components: - rot: -1.5707963267948966 rad pos: 52.5,-50.5 @@ -165218,7 +165251,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21603 + - uid: 21616 components: - rot: 1.5707963267948966 rad pos: 48.5,-61.5 @@ -165226,7 +165259,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21604 + - uid: 21617 components: - rot: -1.5707963267948966 rad pos: 12.5,-5.5 @@ -165234,7 +165267,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21605 + - uid: 21618 components: - rot: -1.5707963267948966 rad pos: 49.5,-86.5 @@ -165242,7 +165275,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21606 + - uid: 21619 components: - rot: 1.5707963267948966 rad pos: 24.5,-84.5 @@ -165250,7 +165283,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21607 + - uid: 21620 components: - rot: -1.5707963267948966 rad pos: 49.5,-91.5 @@ -165258,21 +165291,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21608 + - uid: 21621 components: - pos: 41.5,-70.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21609 + - uid: 21622 components: - pos: 37.5,-70.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21610 + - uid: 21623 components: - rot: 1.5707963267948966 rad pos: 38.5,-61.5 @@ -165280,7 +165313,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21611 + - uid: 21624 components: - rot: 3.141592653589793 rad pos: -35.5,-18.5 @@ -165288,7 +165321,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21612 + - uid: 21625 components: - rot: 3.141592653589793 rad pos: -35.5,-13.5 @@ -165296,21 +165329,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21613 + - uid: 21626 components: - pos: -35.5,-5.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21614 + - uid: 21627 components: - pos: -16.5,-25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21615 + - uid: 21628 components: - rot: 1.5707963267948966 rad pos: -20.5,-29.5 @@ -165318,7 +165351,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21616 + - uid: 21629 components: - rot: 1.5707963267948966 rad pos: -20.5,-37.5 @@ -165326,7 +165359,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21617 + - uid: 21630 components: - rot: 1.5707963267948966 rad pos: -20.5,-41.5 @@ -165334,7 +165367,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21618 + - uid: 21631 components: - rot: -1.5707963267948966 rad pos: 44.5,-3.5 @@ -165342,7 +165375,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21619 + - uid: 21632 components: - rot: -1.5707963267948966 rad pos: -6.5,11.5 @@ -165350,28 +165383,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21620 + - uid: 21633 components: - pos: -41.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21621 + - uid: 21634 components: - pos: -36.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21622 + - uid: 21635 components: - pos: -36.5,-53.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21623 + - uid: 21636 components: - rot: 3.141592653589793 rad pos: -43.5,-57.5 @@ -165379,7 +165412,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 21624 + - uid: 21637 components: - rot: 1.5707963267948966 rad pos: -46.5,-43.5 @@ -165387,7 +165420,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21625 + - uid: 21638 components: - rot: 1.5707963267948966 rad pos: -46.5,-45.5 @@ -165395,7 +165428,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21626 + - uid: 21639 components: - rot: 1.5707963267948966 rad pos: -46.5,-47.5 @@ -165403,7 +165436,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21627 + - uid: 21640 components: - rot: 1.5707963267948966 rad pos: -46.5,-49.5 @@ -165411,7 +165444,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21628 + - uid: 21641 components: - rot: 1.5707963267948966 rad pos: -46.5,-51.5 @@ -165419,7 +165452,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21629 + - uid: 21642 components: - rot: 1.5707963267948966 rad pos: -46.5,-53.5 @@ -165427,7 +165460,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21630 + - uid: 21643 components: - rot: 1.5707963267948966 rad pos: -46.5,-55.5 @@ -165435,7 +165468,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21631 + - uid: 21644 components: - rot: -1.5707963267948966 rad pos: -31.5,-39.5 @@ -165443,14 +165476,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21632 + - uid: 21645 components: - pos: -27.5,-33.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21633 + - uid: 21646 components: - rot: -1.5707963267948966 rad pos: -22.5,-33.5 @@ -165458,7 +165491,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21634 + - uid: 21647 components: - rot: 3.141592653589793 rad pos: -33.5,-35.5 @@ -165466,7 +165499,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21635 + - uid: 21648 components: - rot: 3.141592653589793 rad pos: -39.5,-36.5 @@ -165474,7 +165507,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21636 + - uid: 21649 components: - rot: -1.5707963267948966 rad pos: -33.5,-47.5 @@ -165482,7 +165515,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21637 + - uid: 21650 components: - rot: 1.5707963267948966 rad pos: 21.5,-28.5 @@ -165490,7 +165523,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21638 + - uid: 21651 components: - rot: -1.5707963267948966 rad pos: -56.5,-43.5 @@ -165498,7 +165531,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21639 + - uid: 21652 components: - rot: -1.5707963267948966 rad pos: -54.5,-48.5 @@ -165506,7 +165539,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21640 + - uid: 21653 components: - rot: -1.5707963267948966 rad pos: 18.5,5.5 @@ -165514,7 +165547,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21641 + - uid: 21654 components: - rot: 1.5707963267948966 rad pos: 16.5,1.5 @@ -165522,7 +165555,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21642 + - uid: 21655 components: - rot: -1.5707963267948966 rad pos: -12.5,5.5 @@ -165530,14 +165563,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21643 + - uid: 21656 components: - pos: -18.5,-4.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21644 + - uid: 21657 components: - rot: 3.141592653589793 rad pos: -14.5,-6.5 @@ -165545,14 +165578,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21645 + - uid: 21658 components: - pos: -15.5,8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21646 + - uid: 21659 components: - rot: 3.141592653589793 rad pos: -19.5,6.5 @@ -165560,7 +165593,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21647 + - uid: 21660 components: - rot: 1.5707963267948966 rad pos: -26.5,5.5 @@ -165568,7 +165601,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21648 + - uid: 21661 components: - rot: 1.5707963267948966 rad pos: -26.5,-1.5 @@ -165576,21 +165609,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21649 + - uid: 21662 components: - pos: -72.5,-23.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21650 + - uid: 21663 components: - pos: -66.5,-30.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21651 + - uid: 21664 components: - rot: -1.5707963267948966 rad pos: -53.5,-24.5 @@ -165598,7 +165631,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21652 + - uid: 21665 components: - rot: 1.5707963267948966 rad pos: -68.5,-25.5 @@ -165606,7 +165639,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21653 + - uid: 21666 components: - rot: -1.5707963267948966 rad pos: -52.5,-14.5 @@ -165614,7 +165647,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21654 + - uid: 21667 components: - rot: 1.5707963267948966 rad pos: -55.5,-8.5 @@ -165622,14 +165655,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21655 + - uid: 21668 components: - pos: -51.5,-5.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21656 + - uid: 21669 components: - rot: -1.5707963267948966 rad pos: -50.5,-18.5 @@ -165637,14 +165670,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21657 + - uid: 21670 components: - pos: -46.5,-19.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21658 + - uid: 21671 components: - rot: 1.5707963267948966 rad pos: -42.5,-21.5 @@ -165652,7 +165685,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21659 + - uid: 21672 components: - rot: 1.5707963267948966 rad pos: -48.5,-11.5 @@ -165660,7 +165693,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21660 + - uid: 21673 components: - rot: 1.5707963267948966 rad pos: -48.5,-15.5 @@ -165668,21 +165701,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21661 + - uid: 21674 components: - pos: -45.5,-5.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21662 + - uid: 21675 components: - pos: -40.5,-5.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21663 + - uid: 21676 components: - rot: -1.5707963267948966 rad pos: -31.5,-13.5 @@ -165690,7 +165723,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21664 + - uid: 21677 components: - rot: 1.5707963267948966 rad pos: -32.5,-24.5 @@ -165698,7 +165731,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21665 + - uid: 21678 components: - rot: -1.5707963267948966 rad pos: 2.5,13.5 @@ -165706,7 +165739,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21666 + - uid: 21679 components: - rot: -1.5707963267948966 rad pos: -2.5,11.5 @@ -165714,14 +165747,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21667 + - uid: 21680 components: - pos: -4.5,8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21668 + - uid: 21681 components: - rot: 3.141592653589793 rad pos: 3.5,5.5 @@ -165729,7 +165762,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21669 + - uid: 21682 components: - rot: -1.5707963267948966 rad pos: 6.5,10.5 @@ -165737,7 +165770,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21670 + - uid: 21683 components: - rot: 1.5707963267948966 rad pos: -1.5,17.5 @@ -165745,21 +165778,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21671 + - uid: 21684 components: - pos: 1.5,21.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21672 + - uid: 21685 components: - pos: -42.5,1.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21673 + - uid: 21686 components: - rot: -1.5707963267948966 rad pos: 8.5,15.5 @@ -165767,7 +165800,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21674 + - uid: 21687 components: - rot: 3.141592653589793 rad pos: 23.5,16.5 @@ -165775,21 +165808,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21675 + - uid: 21688 components: - pos: 25.5,23.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21676 + - uid: 21689 components: - pos: 38.5,2.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21677 + - uid: 21690 components: - rot: 3.141592653589793 rad pos: 49.5,0.5 @@ -165797,7 +165830,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21678 + - uid: 21691 components: - rot: -1.5707963267948966 rad pos: 54.5,0.5 @@ -165805,7 +165838,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21679 + - uid: 21692 components: - rot: 3.141592653589793 rad pos: -23.5,17.5 @@ -165813,7 +165846,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21680 + - uid: 21693 components: - rot: 3.141592653589793 rad pos: -50.5,29.5 @@ -165821,14 +165854,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21681 + - uid: 21694 components: - pos: -22.5,25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21682 + - uid: 21695 components: - rot: -1.5707963267948966 rad pos: -18.5,15.5 @@ -165836,7 +165869,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21683 + - uid: 21696 components: - rot: -1.5707963267948966 rad pos: -18.5,22.5 @@ -165844,14 +165877,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21684 + - uid: 21697 components: - pos: -27.5,23.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21685 + - uid: 21698 components: - rot: 1.5707963267948966 rad pos: -34.5,23.5 @@ -165859,7 +165892,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21686 + - uid: 21699 components: - rot: 3.141592653589793 rad pos: -29.5,17.5 @@ -165867,7 +165900,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21687 + - uid: 21700 components: - rot: -1.5707963267948966 rad pos: -30.5,30.5 @@ -165875,7 +165908,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21688 + - uid: 21701 components: - rot: 3.141592653589793 rad pos: -39.5,18.5 @@ -165883,7 +165916,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21689 + - uid: 21702 components: - rot: -1.5707963267948966 rad pos: -36.5,23.5 @@ -165891,14 +165924,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21690 + - uid: 21703 components: - pos: -43.5,25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21691 + - uid: 21704 components: - rot: 1.5707963267948966 rad pos: -48.5,21.5 @@ -165906,7 +165939,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21692 + - uid: 21705 components: - rot: 1.5707963267948966 rad pos: -48.5,26.5 @@ -165914,7 +165947,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21693 + - uid: 21706 components: - rot: -1.5707963267948966 rad pos: -36.5,30.5 @@ -165922,7 +165955,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21694 + - uid: 21707 components: - rot: 3.141592653589793 rad pos: -47.5,28.5 @@ -165930,14 +165963,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21695 + - uid: 21708 components: - pos: -47.5,36.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21696 + - uid: 21709 components: - rot: 1.5707963267948966 rad pos: -48.5,32.5 @@ -165945,7 +165978,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21697 + - uid: 21710 components: - rot: 3.141592653589793 rad pos: -51.5,19.5 @@ -165953,21 +165986,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21698 + - uid: 21711 components: - pos: -7.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21699 + - uid: 21712 components: - pos: -1.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21700 + - uid: 21713 components: - rot: -1.5707963267948966 rad pos: -11.5,-47.5 @@ -165975,7 +166008,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21701 + - uid: 21714 components: - rot: 3.141592653589793 rad pos: 1.5,-54.5 @@ -165983,14 +166016,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21702 + - uid: 21715 components: - pos: -3.5,-52.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21703 + - uid: 21716 components: - rot: 3.141592653589793 rad pos: -7.5,-54.5 @@ -165998,14 +166031,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21704 + - uid: 21717 components: - pos: -11.5,-52.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21705 + - uid: 21718 components: - rot: 1.5707963267948966 rad pos: -15.5,-53.5 @@ -166013,28 +166046,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21706 + - uid: 21719 components: - pos: -17.5,-54.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21707 + - uid: 21720 components: - pos: -17.5,-59.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21708 + - uid: 21721 components: - pos: 63.5,-28.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21709 + - uid: 21722 components: - rot: -1.5707963267948966 rad pos: -22.5,11.5 @@ -166042,14 +166075,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21710 + - uid: 21723 components: - pos: -26.5,15.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21711 + - uid: 21724 components: - rot: -1.5707963267948966 rad pos: 26.5,11.5 @@ -166057,7 +166090,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21712 + - uid: 21725 components: - rot: 1.5707963267948966 rad pos: -48.5,16.5 @@ -166065,14 +166098,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21713 + - uid: 21726 components: - pos: -47.5,8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21714 + - uid: 21727 components: - rot: 3.141592653589793 rad pos: -46.5,-0.5 @@ -166080,21 +166113,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21715 + - uid: 21728 components: - pos: 8.5,-25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21716 + - uid: 21729 components: - pos: 1.5,-25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21717 + - uid: 21730 components: - rot: -1.5707963267948966 rad pos: 36.5,-34.5 @@ -166102,7 +166135,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21718 + - uid: 21731 components: - rot: 1.5707963267948966 rad pos: 34.5,-29.5 @@ -166110,7 +166143,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21719 + - uid: 21732 components: - rot: -1.5707963267948966 rad pos: 36.5,-24.5 @@ -166118,28 +166151,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21720 + - uid: 21733 components: - pos: 21.5,-21.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21721 + - uid: 21734 components: - pos: 29.5,-21.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21722 + - uid: 21735 components: - pos: -29.5,1.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21723 + - uid: 21736 components: - rot: 3.141592653589793 rad pos: -38.5,-0.5 @@ -166147,7 +166180,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21724 + - uid: 21737 components: - rot: 3.141592653589793 rad pos: -51.5,10.5 @@ -166155,7 +166188,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21725 + - uid: 21738 components: - rot: 1.5707963267948966 rad pos: 19.5,-46.5 @@ -166163,14 +166196,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21726 + - uid: 21739 components: - pos: 32.5,19.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21727 + - uid: 21740 components: - rot: -1.5707963267948966 rad pos: 13.5,-11.5 @@ -166178,7 +166211,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21728 + - uid: 21741 components: - rot: 3.141592653589793 rad pos: 3.5,-65.5 @@ -166186,7 +166219,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21729 + - uid: 21742 components: - rot: 1.5707963267948966 rad pos: 38.5,19.5 @@ -166194,14 +166227,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21730 + - uid: 21743 components: - pos: 64.5,-43.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21731 + - uid: 21744 components: - rot: 3.141592653589793 rad pos: -24.5,-6.5 @@ -166209,7 +166242,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21732 + - uid: 21745 components: - rot: 1.5707963267948966 rad pos: -26.5,-60.5 @@ -166217,14 +166250,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21733 + - uid: 21746 components: - pos: -23.5,-57.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21734 + - uid: 21747 components: - rot: 1.5707963267948966 rad pos: -31.5,-73.5 @@ -166232,7 +166265,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21735 + - uid: 21748 components: - rot: -1.5707963267948966 rad pos: 18.5,9.5 @@ -166240,7 +166273,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21736 + - uid: 21749 components: - rot: 3.141592653589793 rad pos: -18.5,65.5 @@ -166248,14 +166281,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21737 + - uid: 21750 components: - pos: -21.5,45.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21738 + - uid: 21751 components: - rot: 1.5707963267948966 rad pos: -16.5,32.5 @@ -166263,7 +166296,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21739 + - uid: 21752 components: - rot: -1.5707963267948966 rad pos: -14.5,40.5 @@ -166271,7 +166304,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21740 + - uid: 21753 components: - rot: 1.5707963267948966 rad pos: -18.5,46.5 @@ -166279,7 +166312,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21741 + - uid: 21754 components: - rot: 1.5707963267948966 rad pos: -20.5,28.5 @@ -166287,7 +166320,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21742 + - uid: 21755 components: - rot: -1.5707963267948966 rad pos: -2.5,52.5 @@ -166295,7 +166328,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21743 + - uid: 21756 components: - rot: 1.5707963267948966 rad pos: -10.5,55.5 @@ -166303,7 +166336,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21744 + - uid: 21757 components: - rot: 1.5707963267948966 rad pos: -10.5,49.5 @@ -166311,7 +166344,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21745 + - uid: 21758 components: - rot: -1.5707963267948966 rad pos: -40.5,32.5 @@ -166319,14 +166352,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21746 + - uid: 21759 components: - pos: -1.5,46.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21747 + - uid: 21760 components: - rot: 1.5707963267948966 rad pos: -0.5,51.5 @@ -166334,7 +166367,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21748 + - uid: 21761 components: - rot: 1.5707963267948966 rad pos: -0.5,57.5 @@ -166342,21 +166375,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21749 + - uid: 21762 components: - pos: -6.5,59.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21750 + - uid: 21763 components: - pos: -19.5,51.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21751 + - uid: 21764 components: - rot: 1.5707963267948966 rad pos: -22.5,55.5 @@ -166364,7 +166397,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21752 + - uid: 21765 components: - rot: 1.5707963267948966 rad pos: -22.5,66.5 @@ -166372,7 +166405,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21753 + - uid: 21766 components: - rot: -1.5707963267948966 rad pos: -12.5,66.5 @@ -166380,7 +166413,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21754 + - uid: 21767 components: - rot: 1.5707963267948966 rad pos: -13.5,60.5 @@ -166388,7 +166421,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21755 + - uid: 21768 components: - rot: -1.5707963267948966 rad pos: -12.5,54.5 @@ -166396,7 +166429,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21756 + - uid: 21769 components: - rot: 3.141592653589793 rad pos: 28.5,44.5 @@ -166404,7 +166437,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21757 + - uid: 21770 components: - rot: -1.5707963267948966 rad pos: -54.5,-48.5 @@ -166412,7 +166445,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21758 + - uid: 21771 components: - rot: 3.141592653589793 rad pos: -44.5,-85.5 @@ -166420,7 +166453,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21759 + - uid: 21772 components: - rot: -1.5707963267948966 rad pos: -35.5,-95.5 @@ -166428,7 +166461,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21760 + - uid: 21773 components: - rot: 3.141592653589793 rad pos: -71.5,-32.5 @@ -166436,7 +166469,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21761 + - uid: 21774 components: - rot: -1.5707963267948966 rad pos: -67.5,-44.5 @@ -166444,7 +166477,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21762 + - uid: 21775 components: - rot: -1.5707963267948966 rad pos: 18.5,-2.5 @@ -166452,7 +166485,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21763 + - uid: 21776 components: - rot: 1.5707963267948966 rad pos: 60.5,-8.5 @@ -166460,7 +166493,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21764 + - uid: 21777 components: - rot: 1.5707963267948966 rad pos: 57.5,-33.5 @@ -166468,7 +166501,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21765 + - uid: 21778 components: - rot: -1.5707963267948966 rad pos: 75.5,-35.5 @@ -166476,7 +166509,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21766 + - uid: 21779 components: - rot: -1.5707963267948966 rad pos: -5.5,-65.5 @@ -166484,7 +166517,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21767 + - uid: 21780 components: - rot: -1.5707963267948966 rad pos: -15.5,-21.5 @@ -166492,14 +166525,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21768 + - uid: 21781 components: - pos: 67.5,-36.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21769 + - uid: 21782 components: - rot: 1.5707963267948966 rad pos: 60.5,-31.5 @@ -166507,14 +166540,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21770 + - uid: 21783 components: - pos: -62.5,-23.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21771 + - uid: 21784 components: - rot: -1.5707963267948966 rad pos: 73.5,-28.5 @@ -166522,7 +166555,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21772 + - uid: 21785 components: - rot: -1.5707963267948966 rad pos: -53.5,-59.5 @@ -166530,7 +166563,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21773 + - uid: 21786 components: - rot: 1.5707963267948966 rad pos: 71.5,-31.5 @@ -166538,7 +166571,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21774 + - uid: 21787 components: - rot: 3.141592653589793 rad pos: 4.5,-35.5 @@ -166546,7 +166579,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21775 + - uid: 21788 components: - rot: -1.5707963267948966 rad pos: 32.5,28.5 @@ -166554,21 +166587,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21776 + - uid: 21789 components: - pos: 58.5,-28.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21777 + - uid: 21790 components: - pos: 34.5,-16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21778 + - uid: 21791 components: - rot: -1.5707963267948966 rad pos: 6.5,-30.5 @@ -166576,14 +166609,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21779 + - uid: 21792 components: - pos: 55.5,-47.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21780 + - uid: 21793 components: - rot: -1.5707963267948966 rad pos: -43.5,4.5 @@ -166591,7 +166624,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21781 + - uid: 21794 components: - rot: -1.5707963267948966 rad pos: 76.5,-49.5 @@ -166599,7 +166632,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21782 + - uid: 21795 components: - rot: -1.5707963267948966 rad pos: -60.5,-28.5 @@ -166607,14 +166640,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21783 + - uid: 21796 components: - pos: -50.5,35.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21784 + - uid: 21797 components: - rot: -1.5707963267948966 rad pos: -14.5,25.5 @@ -166622,7 +166655,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21785 + - uid: 21798 components: - rot: 1.5707963267948966 rad pos: -0.5,6.5 @@ -166630,7 +166663,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21786 + - uid: 21799 components: - rot: 3.141592653589793 rad pos: 25.5,-25.5 @@ -166638,14 +166671,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21787 + - uid: 21800 components: - pos: -21.5,8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21788 + - uid: 21801 components: - rot: 3.141592653589793 rad pos: -33.5,-0.5 @@ -166653,14 +166686,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21789 + - uid: 21802 components: - pos: -51.5,23.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21790 + - uid: 21803 components: - rot: -1.5707963267948966 rad pos: -44.5,15.5 @@ -166668,7 +166701,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21791 + - uid: 21804 components: - rot: -1.5707963267948966 rad pos: -10.5,-18.5 @@ -166676,7 +166709,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21792 + - uid: 21805 components: - rot: 1.5707963267948966 rad pos: -25.5,-15.5 @@ -166684,7 +166717,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21793 + - uid: 21806 components: - rot: 1.5707963267948966 rad pos: -14.5,-0.5 @@ -166692,7 +166725,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21794 + - uid: 21807 components: - rot: -1.5707963267948966 rad pos: -45.5,10.5 @@ -166700,7 +166733,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21795 + - uid: 21808 components: - rot: 1.5707963267948966 rad pos: 2.5,-49.5 @@ -166708,7 +166741,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21796 + - uid: 21809 components: - rot: -1.5707963267948966 rad pos: 32.5,-21.5 @@ -166716,7 +166749,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21797 + - uid: 21810 components: - rot: 1.5707963267948966 rad pos: 18.5,-21.5 @@ -166724,7 +166757,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21798 + - uid: 21811 components: - rot: 1.5707963267948966 rad pos: -0.5,9.5 @@ -166732,7 +166765,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21799 + - uid: 21812 components: - rot: -1.5707963267948966 rad pos: 6.5,5.5 @@ -166740,7 +166773,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21800 + - uid: 21813 components: - rot: 3.141592653589793 rad pos: 9.5,-1.5 @@ -166748,7 +166781,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21801 + - uid: 21814 components: - rot: 1.5707963267948966 rad pos: -50.5,-38.5 @@ -166756,21 +166789,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21802 + - uid: 21815 components: - pos: -49.5,-34.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21803 + - uid: 21816 components: - pos: 28.5,-80.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21804 + - uid: 21817 components: - rot: -1.5707963267948966 rad pos: 31.5,-88.5 @@ -166778,7 +166811,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21805 + - uid: 21818 components: - rot: -1.5707963267948966 rad pos: 49.5,-80.5 @@ -166786,14 +166819,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21806 + - uid: 21819 components: - pos: 48.5,-71.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21807 + - uid: 21820 components: - rot: -1.5707963267948966 rad pos: 19.5,-82.5 @@ -166801,7 +166834,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21808 + - uid: 21821 components: - rot: 3.141592653589793 rad pos: 12.5,-86.5 @@ -166809,7 +166842,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21809 + - uid: 21822 components: - rot: 1.5707963267948966 rad pos: 22.5,-72.5 @@ -166817,14 +166850,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21810 + - uid: 21823 components: - pos: 29.5,-71.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21811 + - uid: 21824 components: - rot: -1.5707963267948966 rad pos: 40.5,-66.5 @@ -166832,21 +166865,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21812 + - uid: 21825 components: - pos: 24.5,-69.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21813 + - uid: 21826 components: - pos: 15.5,-79.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21814 + - uid: 21827 components: - rot: 1.5707963267948966 rad pos: 37.5,11.5 @@ -166854,7 +166887,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21815 + - uid: 21828 components: - rot: 3.141592653589793 rad pos: 28.5,-2.5 @@ -166862,7 +166895,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21816 + - uid: 21829 components: - rot: -1.5707963267948966 rad pos: -38.5,-47.5 @@ -166870,7 +166903,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 21817 + - uid: 21830 components: - rot: 1.5707963267948966 rad pos: -44.5,-41.5 @@ -166878,7 +166911,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 21818 + - uid: 21831 components: - rot: 1.5707963267948966 rad pos: 20.5,22.5 @@ -166886,7 +166919,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 21819 + - uid: 21832 components: - rot: -1.5707963267948966 rad pos: -45.5,41.5 @@ -166894,7 +166927,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 21820 + - uid: 21833 components: - rot: 1.5707963267948966 rad pos: -50.5,44.5 @@ -166902,7 +166935,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 30676 + - uid: 21834 components: - rot: 3.141592653589793 rad pos: 67.5,-31.5 @@ -166910,7 +166943,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 30677 + - uid: 21835 components: - rot: 1.5707963267948966 rad pos: 65.5,-29.5 @@ -166920,7 +166953,7 @@ entities: type: AmbientSound - proto: PoweredlightEmpty entities: - - uid: 21821 + - uid: 21836 components: - rot: 3.141592653589793 rad pos: -39.5,-85.5 @@ -166928,7 +166961,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21822 + - uid: 21837 components: - rot: 3.141592653589793 rad pos: -40.5,-92.5 @@ -166936,7 +166969,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21823 + - uid: 21838 components: - rot: 3.141592653589793 rad pos: -40.5,-97.5 @@ -166944,7 +166977,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21824 + - uid: 21839 components: - rot: 3.141592653589793 rad pos: -28.5,-98.5 @@ -166952,7 +166985,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21825 + - uid: 21840 components: - rot: 3.141592653589793 rad pos: -16.5,-98.5 @@ -166962,14 +166995,14 @@ entities: type: ApcPowerReceiver - proto: PoweredlightExterior entities: - - uid: 21826 + - uid: 21841 components: - pos: -1.5,72.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21827 + - uid: 21842 components: - rot: 1.5707963267948966 rad pos: -7.5,68.5 @@ -166977,7 +167010,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21828 + - uid: 21843 components: - rot: -1.5707963267948966 rad pos: 4.5,68.5 @@ -166985,7 +167018,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21829 + - uid: 21844 components: - rot: -1.5707963267948966 rad pos: -54.5,-85.5 @@ -166993,7 +167026,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21830 + - uid: 21845 components: - rot: -1.5707963267948966 rad pos: -54.5,-89.5 @@ -167003,19 +167036,19 @@ entities: type: ApcPowerReceiver - proto: PoweredLightPostSmall entities: - - uid: 21831 + - uid: 21846 components: - pos: -0.5,-85.5 parent: 2 type: Transform - - uid: 21832 + - uid: 21847 components: - pos: -2.5,-85.5 parent: 2 type: Transform - proto: PoweredlightSodium entities: - - uid: 21833 + - uid: 21848 components: - rot: 3.141592653589793 rad pos: 72.5,34.5 @@ -167023,7 +167056,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21834 + - uid: 21849 components: - rot: 1.5707963267948966 rad pos: 14.5,-65.5 @@ -167031,28 +167064,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21835 + - uid: 21850 components: - pos: -18.5,4.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21836 + - uid: 21851 components: - pos: -40.5,-15.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21837 + - uid: 21852 components: - pos: -20.5,-95.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21838 + - uid: 21853 components: - rot: 3.141592653589793 rad pos: -7.5,-100.5 @@ -167060,7 +167093,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21839 + - uid: 21854 components: - rot: -1.5707963267948966 rad pos: 12.5,-20.5 @@ -167070,20 +167103,20 @@ entities: type: ApcPowerReceiver - proto: PoweredSmallLight entities: - - uid: 21840 + - uid: 21855 components: - rot: -1.5707963267948966 rad pos: -49.5,46.5 parent: 2 type: Transform - - uid: 21841 + - uid: 21856 components: - pos: 20.5,-52.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21842 + - uid: 21857 components: - rot: 3.141592653589793 rad pos: 16.5,-55.5 @@ -167091,14 +167124,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21843 + - uid: 21858 components: - pos: 16.5,-52.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21844 + - uid: 21859 components: - rot: -1.5707963267948966 rad pos: 29.5,-39.5 @@ -167106,14 +167139,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21845 + - uid: 21860 components: - pos: 1.5,-40.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21846 + - uid: 21861 components: - rot: 1.5707963267948966 rad pos: -31.5,-47.5 @@ -167121,7 +167154,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21847 + - uid: 21862 components: - rot: 3.141592653589793 rad pos: 20.5,-32.5 @@ -167129,7 +167162,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21848 + - uid: 21863 components: - rot: -1.5707963267948966 rad pos: -4.5,-74.5 @@ -167137,21 +167170,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21849 + - uid: 21864 components: - pos: 0.5,-73.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21850 + - uid: 21865 components: - pos: 33.5,-10.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21851 + - uid: 21866 components: - rot: 3.141592653589793 rad pos: 10.5,-17.5 @@ -167159,7 +167192,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21852 + - uid: 21867 components: - rot: 1.5707963267948966 rad pos: 17.5,-12.5 @@ -167167,7 +167200,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21853 + - uid: 21868 components: - rot: -1.5707963267948966 rad pos: 22.5,-13.5 @@ -167175,7 +167208,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21854 + - uid: 21869 components: - rot: -1.5707963267948966 rad pos: 4.5,-11.5 @@ -167183,7 +167216,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21855 + - uid: 21870 components: - rot: 1.5707963267948966 rad pos: -74.5,-12.5 @@ -167191,7 +167224,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21856 + - uid: 21871 components: - rot: 1.5707963267948966 rad pos: 6.5,49.5 @@ -167199,14 +167232,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21857 + - uid: 21872 components: - pos: 33.5,-89.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21858 + - uid: 21873 components: - rot: -1.5707963267948966 rad pos: -7.5,-5.5 @@ -167214,14 +167247,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21859 + - uid: 21874 components: - pos: 23.5,-39.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21860 + - uid: 21875 components: - rot: -1.5707963267948966 rad pos: 26.5,-29.5 @@ -167229,7 +167262,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21861 + - uid: 21876 components: - rot: 1.5707963267948966 rad pos: -2.5,-78.5 @@ -167237,14 +167270,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21862 + - uid: 21877 components: - pos: -15.5,-63.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21863 + - uid: 21878 components: - rot: 3.141592653589793 rad pos: -13.5,-67.5 @@ -167252,14 +167285,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21864 + - uid: 21879 components: - pos: -20.5,-66.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21865 + - uid: 21880 components: - rot: 3.141592653589793 rad pos: -5.5,-50.5 @@ -167267,28 +167300,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21866 + - uid: 21881 components: - pos: -20.5,-63.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21867 + - uid: 21882 components: - pos: -15.5,-75.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21868 + - uid: 21883 components: - pos: -15.5,-69.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21869 + - uid: 21884 components: - rot: 3.141592653589793 rad pos: -15.5,-79.5 @@ -167296,7 +167329,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21870 + - uid: 21885 components: - rot: 1.5707963267948966 rad pos: -30.5,-80.5 @@ -167304,7 +167337,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21871 + - uid: 21886 components: - rot: 1.5707963267948966 rad pos: -30.5,-78.5 @@ -167312,7 +167345,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21872 + - uid: 21887 components: - rot: 3.141592653589793 rad pos: -26.5,-90.5 @@ -167320,7 +167353,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21873 + - uid: 21888 components: - rot: 3.141592653589793 rad pos: -22.5,-90.5 @@ -167328,7 +167361,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21874 + - uid: 21889 components: - rot: -1.5707963267948966 rad pos: -50.5,-23.5 @@ -167336,7 +167369,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21875 + - uid: 21890 components: - rot: 3.141592653589793 rad pos: -30.5,-7.5 @@ -167344,7 +167377,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21876 + - uid: 21891 components: - rot: -1.5707963267948966 rad pos: 22.5,12.5 @@ -167352,7 +167385,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21877 + - uid: 21892 components: - rot: -1.5707963267948966 rad pos: -14.5,-37.5 @@ -167360,14 +167393,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21878 + - uid: 21893 components: - pos: -11.5,-32.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21879 + - uid: 21894 components: - rot: -1.5707963267948966 rad pos: 55.5,29.5 @@ -167375,28 +167408,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21880 + - uid: 21895 components: - pos: 49.5,-33.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21881 + - uid: 21896 components: - pos: -8.5,-29.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21882 + - uid: 21897 components: - pos: -16.5,-29.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21883 + - uid: 21898 components: - rot: -1.5707963267948966 rad pos: 30.5,25.5 @@ -167404,21 +167437,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21884 + - uid: 21899 components: - pos: 37.5,8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21885 + - uid: 21900 components: - pos: 37.5,5.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21886 + - uid: 21901 components: - rot: 1.5707963267948966 rad pos: 34.5,11.5 @@ -167426,7 +167459,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21887 + - uid: 21902 components: - rot: 1.5707963267948966 rad pos: 31.5,11.5 @@ -167434,7 +167467,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21888 + - uid: 21903 components: - rot: 1.5707963267948966 rad pos: 28.5,11.5 @@ -167442,7 +167475,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21889 + - uid: 21904 components: - rot: 3.141592653589793 rad pos: 45.5,14.5 @@ -167450,7 +167483,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21890 + - uid: 21905 components: - rot: 1.5707963267948966 rad pos: 58.5,23.5 @@ -167458,7 +167491,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21891 + - uid: 21906 components: - rot: 1.5707963267948966 rad pos: 55.5,23.5 @@ -167466,7 +167499,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21892 + - uid: 21907 components: - rot: 1.5707963267948966 rad pos: 52.5,23.5 @@ -167474,7 +167507,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21893 + - uid: 21908 components: - rot: 1.5707963267948966 rad pos: 49.5,23.5 @@ -167482,7 +167515,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21894 + - uid: 21909 components: - rot: 1.5707963267948966 rad pos: 46.5,23.5 @@ -167490,21 +167523,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21895 + - uid: 21910 components: - pos: 61.5,19.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21896 + - uid: 21911 components: - pos: 61.5,16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21897 + - uid: 21912 components: - rot: 1.5707963267948966 rad pos: 62.5,11.5 @@ -167512,14 +167545,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21898 + - uid: 21913 components: - pos: 62.5,22.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21899 + - uid: 21914 components: - rot: -1.5707963267948966 rad pos: 54.5,12.5 @@ -167527,7 +167560,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21900 + - uid: 21915 components: - rot: 1.5707963267948966 rad pos: 62.5,6.5 @@ -167535,14 +167568,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21901 + - uid: 21916 components: - pos: 60.5,2.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21902 + - uid: 21917 components: - rot: 1.5707963267948966 rad pos: 56.5,-1.5 @@ -167550,14 +167583,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21903 + - uid: 21918 components: - pos: 35.5,20.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21904 + - uid: 21919 components: - rot: 1.5707963267948966 rad pos: 44.5,18.5 @@ -167565,7 +167598,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21905 + - uid: 21920 components: - rot: -1.5707963267948966 rad pos: 48.5,-2.5 @@ -167573,14 +167606,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21906 + - uid: 21921 components: - pos: 49.5,-7.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21907 + - uid: 21922 components: - rot: -1.5707963267948966 rad pos: 62.5,-38.5 @@ -167588,7 +167621,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21908 + - uid: 21923 components: - rot: -1.5707963267948966 rad pos: 39.5,-45.5 @@ -167596,7 +167629,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21909 + - uid: 21924 components: - rot: 1.5707963267948966 rad pos: 62.5,-19.5 @@ -167604,7 +167637,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21910 + - uid: 21925 components: - rot: -1.5707963267948966 rad pos: 62.5,-15.5 @@ -167612,14 +167645,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21911 + - uid: 21926 components: - pos: -18.5,-0.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21912 + - uid: 21927 components: - rot: -1.5707963267948966 rad pos: -28.5,-21.5 @@ -167627,35 +167660,35 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21913 + - uid: 21928 components: - pos: 46.5,-51.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21914 + - uid: 21929 components: - pos: 12.5,-72.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21915 + - uid: 21930 components: - pos: 45.5,-89.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21916 + - uid: 21931 components: - pos: 45.5,-82.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21917 + - uid: 21932 components: - rot: 1.5707963267948966 rad pos: 48.5,-94.5 @@ -167663,14 +167696,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21918 + - uid: 21933 components: - pos: 20.5,-73.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21919 + - uid: 21934 components: - rot: 1.5707963267948966 rad pos: -32.5,-5.5 @@ -167678,28 +167711,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21920 + - uid: 21935 components: - pos: -20.5,-45.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21921 + - uid: 21936 components: - pos: -26.5,-26.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21922 + - uid: 21937 components: - pos: 43.5,-51.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21923 + - uid: 21938 components: - rot: 1.5707963267948966 rad pos: 36.5,-51.5 @@ -167707,7 +167740,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21924 + - uid: 21939 components: - rot: -1.5707963267948966 rad pos: 15.5,-48.5 @@ -167715,49 +167748,49 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21925 + - uid: 21940 components: - pos: 10.5,-55.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21926 + - uid: 21941 components: - pos: 15.5,-57.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21927 + - uid: 21942 components: - pos: 9.5,-64.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21928 + - uid: 21943 components: - pos: -5.5,-68.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21929 + - uid: 21944 components: - pos: -43.5,-33.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21930 + - uid: 21945 components: - pos: -33.5,-69.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21931 + - uid: 21946 components: - rot: 1.5707963267948966 rad pos: -56.5,-78.5 @@ -167765,7 +167798,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21932 + - uid: 21947 components: - rot: 3.141592653589793 rad pos: -51.5,-79.5 @@ -167773,14 +167806,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21933 + - uid: 21948 components: - pos: -26.5,-66.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21934 + - uid: 21949 components: - rot: 1.5707963267948966 rad pos: -28.5,-61.5 @@ -167788,7 +167821,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21935 + - uid: 21950 components: - rot: 1.5707963267948966 rad pos: -50.5,-68.5 @@ -167796,21 +167829,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21936 + - uid: 21951 components: - pos: -37.5,-63.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21937 + - uid: 21952 components: - pos: -44.5,-63.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21938 + - uid: 21953 components: - rot: 1.5707963267948966 rad pos: -22.5,-55.5 @@ -167818,14 +167851,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21939 + - uid: 21954 components: - pos: -29.5,-43.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21940 + - uid: 21955 components: - rot: 1.5707963267948966 rad pos: -28.5,-53.5 @@ -167833,14 +167866,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21941 + - uid: 21956 components: - pos: -22.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21942 + - uid: 21957 components: - rot: 1.5707963267948966 rad pos: -29.5,-41.5 @@ -167848,21 +167881,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21943 + - uid: 21958 components: - pos: 24.5,-32.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21944 + - uid: 21959 components: - pos: 44.5,-13.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21945 + - uid: 21960 components: - rot: 1.5707963267948966 rad pos: 35.5,-13.5 @@ -167870,21 +167903,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21946 + - uid: 21961 components: - pos: 39.5,-7.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21947 + - uid: 21962 components: - pos: 31.5,-8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21948 + - uid: 21963 components: - rot: 1.5707963267948966 rad pos: 46.5,-7.5 @@ -167892,7 +167925,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21949 + - uid: 21964 components: - rot: 1.5707963267948966 rad pos: 65.5,24.5 @@ -167900,14 +167933,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21950 + - uid: 21965 components: - pos: 57.5,26.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21951 + - uid: 21966 components: - rot: 3.141592653589793 rad pos: 49.5,26.5 @@ -167915,28 +167948,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21952 + - uid: 21967 components: - pos: -41.5,-24.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21953 + - uid: 21968 components: - pos: -39.5,-28.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21954 + - uid: 21969 components: - pos: -45.5,-27.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21955 + - uid: 21970 components: - rot: 1.5707963267948966 rad pos: -44.5,-30.5 @@ -167944,7 +167977,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21956 + - uid: 21971 components: - rot: -1.5707963267948966 rad pos: -35.5,-29.5 @@ -167952,14 +167985,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21957 + - uid: 21972 components: - pos: -49.5,-32.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21958 + - uid: 21973 components: - rot: -1.5707963267948966 rad pos: -54.5,-33.5 @@ -167967,7 +168000,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21959 + - uid: 21974 components: - rot: 1.5707963267948966 rad pos: -57.5,-38.5 @@ -167975,7 +168008,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21960 + - uid: 21975 components: - rot: 1.5707963267948966 rad pos: -29.5,-29.5 @@ -167983,14 +168016,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21961 + - uid: 21976 components: - pos: -29.5,-25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21962 + - uid: 21977 components: - rot: 3.141592653589793 rad pos: -35.5,-26.5 @@ -167998,14 +168031,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21963 + - uid: 21978 components: - pos: 15.5,-8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21964 + - uid: 21979 components: - rot: 1.5707963267948966 rad pos: 14.5,-4.5 @@ -168013,7 +168046,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21965 + - uid: 21980 components: - rot: 3.141592653589793 rad pos: 14.5,-14.5 @@ -168021,7 +168054,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21966 + - uid: 21981 components: - rot: 1.5707963267948966 rad pos: -0.5,-13.5 @@ -168029,21 +168062,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21967 + - uid: 21982 components: - pos: 1.5,-16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21968 + - uid: 21983 components: - pos: -51.5,-27.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21969 + - uid: 21984 components: - rot: 1.5707963267948966 rad pos: -32.5,-7.5 @@ -168051,7 +168084,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21970 + - uid: 21985 components: - rot: 1.5707963267948966 rad pos: 62.5,28.5 @@ -168059,56 +168092,56 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21971 + - uid: 21986 components: - pos: -49.5,-42.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21972 + - uid: 21987 components: - pos: -49.5,-44.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21973 + - uid: 21988 components: - pos: -49.5,-46.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21974 + - uid: 21989 components: - pos: -49.5,-48.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21975 + - uid: 21990 components: - pos: -49.5,-50.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21976 + - uid: 21991 components: - pos: -49.5,-52.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21977 + - uid: 21992 components: - pos: -49.5,-54.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21978 + - uid: 21993 components: - rot: 1.5707963267948966 rad pos: 15.5,33.5 @@ -168116,14 +168149,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21979 + - uid: 21994 components: - pos: 21.5,25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21980 + - uid: 21995 components: - rot: 3.141592653589793 rad pos: 11.5,24.5 @@ -168131,14 +168164,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21981 + - uid: 21996 components: - pos: -6.5,32.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21982 + - uid: 21997 components: - rot: -1.5707963267948966 rad pos: 0.5,33.5 @@ -168146,7 +168179,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21983 + - uid: 21998 components: - rot: 1.5707963267948966 rad pos: -0.5,-10.5 @@ -168154,7 +168187,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21984 + - uid: 21999 components: - rot: 1.5707963267948966 rad pos: -54.5,-0.5 @@ -168162,7 +168195,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21985 + - uid: 22000 components: - rot: -1.5707963267948966 rad pos: -28.5,-3.5 @@ -168170,7 +168203,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21986 + - uid: 22001 components: - rot: 1.5707963267948966 rad pos: -41.5,4.5 @@ -168178,7 +168211,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21987 + - uid: 22002 components: - rot: 3.141592653589793 rad pos: -30.5,3.5 @@ -168186,7 +168219,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21988 + - uid: 22003 components: - rot: 1.5707963267948966 rad pos: -33.5,9.5 @@ -168194,7 +168227,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21989 + - uid: 22004 components: - rot: -1.5707963267948966 rad pos: -28.5,9.5 @@ -168202,7 +168235,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21990 + - uid: 22005 components: - rot: -1.5707963267948966 rad pos: -29.5,14.5 @@ -168210,14 +168243,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21991 + - uid: 22006 components: - pos: -35.5,15.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21992 + - uid: 22007 components: - rot: -1.5707963267948966 rad pos: -35.5,9.5 @@ -168225,7 +168258,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21993 + - uid: 22008 components: - rot: 1.5707963267948966 rad pos: -40.5,9.5 @@ -168233,14 +168266,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21994 + - uid: 22009 components: - pos: -13.5,13.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21995 + - uid: 22010 components: - rot: -1.5707963267948966 rad pos: -12.5,19.5 @@ -168248,7 +168281,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21996 + - uid: 22011 components: - rot: 1.5707963267948966 rad pos: -16.5,21.5 @@ -168256,7 +168289,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21997 + - uid: 22012 components: - rot: -1.5707963267948966 rad pos: -14.5,14.5 @@ -168264,14 +168297,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21998 + - uid: 22013 components: - pos: -9.5,16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21999 + - uid: 22014 components: - rot: 3.141592653589793 rad pos: -9.5,21.5 @@ -168279,7 +168312,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22000 + - uid: 22015 components: - rot: 3.141592653589793 rad pos: -4.5,16.5 @@ -168287,14 +168320,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22001 + - uid: 22016 components: - pos: -0.5,24.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22002 + - uid: 22017 components: - rot: -1.5707963267948966 rad pos: -42.5,10.5 @@ -168302,7 +168335,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22003 + - uid: 22018 components: - rot: 1.5707963267948966 rad pos: -52.5,14.5 @@ -168310,7 +168343,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22004 + - uid: 22019 components: - rot: -1.5707963267948966 rad pos: -51.5,7.5 @@ -168318,28 +168351,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22005 + - uid: 22020 components: - pos: -44.5,-2.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22006 + - uid: 22021 components: - pos: -40.5,-2.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22007 + - uid: 22022 components: - pos: -49.5,1.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22008 + - uid: 22023 components: - rot: -1.5707963267948966 rad pos: -37.5,-39.5 @@ -168347,14 +168380,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22009 + - uid: 22024 components: - pos: -35.5,-38.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22010 + - uid: 22025 components: - rot: -1.5707963267948966 rad pos: 2.5,-69.5 @@ -168362,7 +168395,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22011 + - uid: 22026 components: - rot: 3.141592653589793 rad pos: -63.5,-21.5 @@ -168370,7 +168403,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22012 + - uid: 22027 components: - rot: 3.141592653589793 rad pos: -69.5,-21.5 @@ -168378,7 +168411,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22013 + - uid: 22028 components: - rot: 1.5707963267948966 rad pos: -73.5,-13.5 @@ -168386,21 +168419,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22014 + - uid: 22029 components: - pos: -68.5,-5.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22015 + - uid: 22030 components: - pos: -64.5,-5.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22016 + - uid: 22031 components: - rot: -1.5707963267948966 rad pos: -57.5,-10.5 @@ -168408,7 +168441,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22017 + - uid: 22032 components: - rot: -1.5707963267948966 rad pos: -57.5,-16.5 @@ -168416,7 +168449,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22018 + - uid: 22033 components: - rot: -1.5707963267948966 rad pos: 61.5,24.5 @@ -168424,7 +168457,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22019 + - uid: 22034 components: - rot: -1.5707963267948966 rad pos: 63.5,24.5 @@ -168432,7 +168465,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22020 + - uid: 22035 components: - rot: 3.141592653589793 rad pos: 63.5,13.5 @@ -168440,7 +168473,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22021 + - uid: 22036 components: - rot: 3.141592653589793 rad pos: 63.5,11.5 @@ -168448,7 +168481,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22022 + - uid: 22037 components: - rot: 3.141592653589793 rad pos: 63.5,9.5 @@ -168456,7 +168489,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22023 + - uid: 22038 components: - rot: -1.5707963267948966 rad pos: 19.5,-29.5 @@ -168464,7 +168497,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22024 + - uid: 22039 components: - rot: 3.141592653589793 rad pos: -47.5,53.5 @@ -168472,7 +168505,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22025 + - uid: 22040 components: - rot: 3.141592653589793 rad pos: -41.5,53.5 @@ -168480,7 +168513,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22026 + - uid: 22041 components: - rot: 1.5707963267948966 rad pos: -40.5,52.5 @@ -168488,7 +168521,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22027 + - uid: 22042 components: - rot: 1.5707963267948966 rad pos: -46.5,52.5 @@ -168496,14 +168529,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22028 + - uid: 22043 components: - pos: -48.5,-25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22029 + - uid: 22044 components: - rot: -1.5707963267948966 rad pos: 23.5,34.5 @@ -168511,14 +168544,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22030 + - uid: 22045 components: - pos: -6.5,14.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22031 + - uid: 22046 components: - rot: 1.5707963267948966 rad pos: 13.5,-45.5 @@ -168526,21 +168559,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22032 + - uid: 22047 components: - pos: -51.5,-73.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22033 + - uid: 22048 components: - pos: -8.5,-71.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22034 + - uid: 22049 components: - rot: 1.5707963267948966 rad pos: 7.5,-17.5 @@ -168548,7 +168581,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22035 + - uid: 22050 components: - rot: -1.5707963267948966 rad pos: -72.5,-34.5 @@ -168556,7 +168589,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22036 + - uid: 22051 components: - rot: 3.141592653589793 rad pos: 39.5,-30.5 @@ -168564,7 +168597,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22037 + - uid: 22052 components: - rot: 3.141592653589793 rad pos: 29.5,-32.5 @@ -168572,14 +168605,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22038 + - uid: 22053 components: - pos: -30.5,-54.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22039 + - uid: 22054 components: - rot: 3.141592653589793 rad pos: 10.5,-47.5 @@ -168587,14 +168620,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22040 + - uid: 22055 components: - pos: 56.5,59.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22041 + - uid: 22056 components: - rot: 3.141592653589793 rad pos: 52.5,55.5 @@ -168602,7 +168635,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22042 + - uid: 22057 components: - rot: 3.141592653589793 rad pos: 58.5,42.5 @@ -168610,7 +168643,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22043 + - uid: 22058 components: - rot: 3.141592653589793 rad pos: 51.5,42.5 @@ -168618,14 +168651,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22044 + - uid: 22059 components: - pos: 15.5,39.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22045 + - uid: 22060 components: - rot: 1.5707963267948966 rad pos: 60.5,46.5 @@ -168633,7 +168666,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22046 + - uid: 22061 components: - rot: 1.5707963267948966 rad pos: 65.5,9.5 @@ -168641,21 +168674,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22047 + - uid: 22062 components: - pos: 9.5,34.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22048 + - uid: 22063 components: - pos: -23.5,31.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22049 + - uid: 22064 components: - rot: 3.141592653589793 rad pos: 57.5,28.5 @@ -168663,7 +168696,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22050 + - uid: 22065 components: - rot: 1.5707963267948966 rad pos: -21.5,33.5 @@ -168671,28 +168704,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22051 + - uid: 22066 components: - pos: 46.5,39.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22052 + - uid: 22067 components: - pos: 54.5,50.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22053 + - uid: 22068 components: - pos: 45.5,32.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22054 + - uid: 22069 components: - rot: -1.5707963267948966 rad pos: 48.5,46.5 @@ -168700,7 +168733,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22055 + - uid: 22070 components: - rot: -1.5707963267948966 rad pos: -11.5,33.5 @@ -168708,14 +168741,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22056 + - uid: 22071 components: - pos: -11.5,39.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22057 + - uid: 22072 components: - rot: 3.141592653589793 rad pos: 43.5,44.5 @@ -168723,7 +168756,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22058 + - uid: 22073 components: - rot: 3.141592653589793 rad pos: -20.5,37.5 @@ -168731,14 +168764,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22059 + - uid: 22074 components: - pos: -27.5,46.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22060 + - uid: 22075 components: - rot: -1.5707963267948966 rad pos: -20.5,48.5 @@ -168746,14 +168779,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22061 + - uid: 22076 components: - pos: -10.5,29.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22062 + - uid: 22077 components: - rot: -1.5707963267948966 rad pos: -17.5,69.5 @@ -168761,7 +168794,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22063 + - uid: 22078 components: - rot: -1.5707963267948966 rad pos: -12.5,74.5 @@ -168769,7 +168802,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22064 + - uid: 22079 components: - rot: 1.5707963267948966 rad pos: -22.5,74.5 @@ -168777,7 +168810,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22065 + - uid: 22080 components: - rot: 3.141592653589793 rad pos: -15.5,60.5 @@ -168785,14 +168818,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22066 + - uid: 22081 components: - pos: -18.5,55.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22067 + - uid: 22082 components: - rot: -1.5707963267948966 rad pos: -24.5,42.5 @@ -168800,7 +168833,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22068 + - uid: 22083 components: - rot: 3.141592653589793 rad pos: -25.5,33.5 @@ -168808,21 +168841,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22069 + - uid: 22084 components: - pos: -30.5,39.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22070 + - uid: 22085 components: - pos: -42.5,39.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22071 + - uid: 22086 components: - rot: 3.141592653589793 rad pos: -28.5,27.5 @@ -168830,7 +168863,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22072 + - uid: 22087 components: - rot: 3.141592653589793 rad pos: 54.5,52.5 @@ -168838,7 +168871,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22073 + - uid: 22088 components: - rot: -1.5707963267948966 rad pos: -45.5,-87.5 @@ -168846,14 +168879,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22074 + - uid: 22089 components: - pos: -71.5,-36.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22075 + - uid: 22090 components: - rot: -1.5707963267948966 rad pos: -69.5,-39.5 @@ -168861,14 +168894,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22076 + - uid: 22091 components: - pos: -65.5,-43.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22077 + - uid: 22092 components: - rot: 1.5707963267948966 rad pos: 8.5,-37.5 @@ -168876,7 +168909,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22078 + - uid: 22093 components: - rot: 1.5707963267948966 rad pos: 74.5,-40.5 @@ -168884,28 +168917,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22079 + - uid: 22094 components: - pos: 67.5,-33.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22080 + - uid: 22095 components: - pos: 67.5,-11.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22081 + - uid: 22096 components: - pos: 67.5,-3.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22082 + - uid: 22097 components: - rot: -1.5707963267948966 rad pos: -5.5,-56.5 @@ -168913,21 +168946,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22083 + - uid: 22098 components: - pos: 67.5,-5.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22084 + - uid: 22099 components: - pos: 67.5,-13.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22085 + - uid: 22100 components: - rot: -1.5707963267948966 rad pos: -8.5,-56.5 @@ -168935,7 +168968,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22086 + - uid: 22101 components: - rot: -1.5707963267948966 rad pos: -11.5,-56.5 @@ -168943,7 +168976,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22087 + - uid: 22102 components: - rot: -1.5707963267948966 rad pos: 0.5,-56.5 @@ -168951,7 +168984,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22088 + - uid: 22103 components: - rot: -1.5707963267948966 rad pos: -2.5,-56.5 @@ -168959,21 +168992,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22089 + - uid: 22104 components: - pos: 78.5,-33.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22090 + - uid: 22105 components: - pos: 78.5,-36.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22091 + - uid: 22106 components: - rot: 1.5707963267948966 rad pos: 54.5,-55.5 @@ -168981,7 +169014,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22092 + - uid: 22107 components: - rot: 3.141592653589793 rad pos: 41.5,-33.5 @@ -168989,7 +169022,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22093 + - uid: 22108 components: - rot: 1.5707963267948966 rad pos: 77.5,-57.5 @@ -168997,7 +169030,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22094 + - uid: 22109 components: - rot: -1.5707963267948966 rad pos: 43.5,-63.5 @@ -169005,7 +169038,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22095 + - uid: 22110 components: - rot: -1.5707963267948966 rad pos: 56.5,-66.5 @@ -169013,7 +169046,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22096 + - uid: 22111 components: - rot: 3.141592653589793 rad pos: 54.5,-37.5 @@ -169021,7 +169054,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22097 + - uid: 22112 components: - rot: 1.5707963267948966 rad pos: 53.5,-26.5 @@ -169029,14 +169062,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22098 + - uid: 22113 components: - pos: 59.5,-26.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22099 + - uid: 22114 components: - rot: -1.5707963267948966 rad pos: 63.5,-68.5 @@ -169044,7 +169077,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22100 + - uid: 22115 components: - rot: 1.5707963267948966 rad pos: 58.5,-66.5 @@ -169052,7 +169085,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22101 + - uid: 22116 components: - rot: 3.141592653589793 rad pos: 67.5,-66.5 @@ -169060,7 +169093,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22102 + - uid: 22117 components: - rot: 1.5707963267948966 rad pos: 72.5,-67.5 @@ -169068,7 +169101,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22103 + - uid: 22118 components: - rot: 1.5707963267948966 rad pos: 75.5,-53.5 @@ -169076,7 +169109,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22104 + - uid: 22119 components: - rot: 1.5707963267948966 rad pos: 73.5,-63.5 @@ -169084,7 +169117,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22105 + - uid: 22120 components: - rot: -1.5707963267948966 rad pos: 72.5,-55.5 @@ -169092,7 +169125,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22106 + - uid: 22121 components: - rot: 3.141592653589793 rad pos: -11.5,41.5 @@ -169100,7 +169133,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22107 + - uid: 22122 components: - rot: 1.5707963267948966 rad pos: -42.5,13.5 @@ -169108,7 +169141,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22108 + - uid: 22123 components: - rot: -1.5707963267948966 rad pos: 30.5,-94.5 @@ -169116,7 +169149,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22109 + - uid: 22124 components: - rot: 1.5707963267948966 rad pos: -8.5,-18.5 @@ -169124,7 +169157,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22110 + - uid: 22125 components: - rot: -1.5707963267948966 rad pos: -7.5,-12.5 @@ -169132,7 +169165,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22111 + - uid: 22126 components: - rot: 1.5707963267948966 rad pos: -13.5,-13.5 @@ -169140,21 +169173,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22112 + - uid: 22127 components: - pos: -8.5,-8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22113 + - uid: 22128 components: - pos: -12.5,-8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22114 + - uid: 22129 components: - rot: 1.5707963267948966 rad pos: -16.5,-9.5 @@ -169162,14 +169195,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22115 + - uid: 22130 components: - pos: -15.5,-12.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22116 + - uid: 22131 components: - rot: -1.5707963267948966 rad pos: -28.5,-5.5 @@ -169177,7 +169210,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22117 + - uid: 22132 components: - rot: -1.5707963267948966 rad pos: -28.5,-7.5 @@ -169185,7 +169218,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22118 + - uid: 22133 components: - rot: -1.5707963267948966 rad pos: -8.5,-68.5 @@ -169193,21 +169226,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22119 + - uid: 22134 components: - pos: 13.5,-31.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22120 + - uid: 22135 components: - pos: -19.5,-51.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22121 + - uid: 22136 components: - rot: 3.141592653589793 rad pos: -19.5,-49.5 @@ -169215,7 +169248,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22122 + - uid: 22137 components: - rot: 1.5707963267948966 rad pos: 28.5,-14.5 @@ -169223,7 +169256,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22123 + - uid: 22138 components: - rot: 1.5707963267948966 rad pos: 29.5,-12.5 @@ -169231,21 +169264,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22124 + - uid: 22139 components: - pos: 33.5,-82.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22125 + - uid: 22140 components: - pos: 22.5,-83.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22126 + - uid: 22141 components: - rot: 3.141592653589793 rad pos: 5.5,-23.5 @@ -169253,14 +169286,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22127 + - uid: 22142 components: - pos: -57.5,-18.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22128 + - uid: 22143 components: - rot: 1.5707963267948966 rad pos: 6.5,-78.5 @@ -169268,14 +169301,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22129 + - uid: 22144 components: - pos: 3.5,-73.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22130 + - uid: 22145 components: - rot: -1.5707963267948966 rad pos: 6.5,-85.5 @@ -169283,24 +169316,24 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22131 + - uid: 22146 components: - rot: 3.141592653589793 rad pos: 32.5,-25.5 parent: 2 type: Transform - - uid: 22132 + - uid: 22147 components: - rot: 3.141592653589793 rad pos: 18.5,-25.5 parent: 2 type: Transform - - uid: 22133 + - uid: 22148 components: - pos: -52.5,43.5 parent: 2 type: Transform - - uid: 22134 + - uid: 22149 components: - rot: -1.5707963267948966 rad pos: -37.5,42.5 @@ -169308,7 +169341,7 @@ entities: type: Transform - proto: PoweredSmallLightEmpty entities: - - uid: 22135 + - uid: 22150 components: - rot: -1.5707963267948966 rad pos: -36.5,-79.5 @@ -169316,7 +169349,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22136 + - uid: 22151 components: - rot: 3.141592653589793 rad pos: -37.5,-84.5 @@ -169324,7 +169357,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22137 + - uid: 22152 components: - rot: 3.141592653589793 rad pos: -46.5,-84.5 @@ -169332,7 +169365,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22138 + - uid: 22153 components: - rot: 1.5707963267948966 rad pos: -47.5,-79.5 @@ -169340,14 +169373,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22139 + - uid: 22154 components: - pos: -42.5,-74.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22140 + - uid: 22155 components: - rot: -1.5707963267948966 rad pos: -36.5,-72.5 @@ -169355,7 +169388,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22141 + - uid: 22156 components: - rot: 1.5707963267948966 rad pos: -47.5,-72.5 @@ -169363,7 +169396,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22142 + - uid: 22157 components: - rot: 1.5707963267948966 rad pos: -56.5,-80.5 @@ -169371,7 +169404,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22143 + - uid: 22158 components: - rot: 1.5707963267948966 rad pos: -56.5,-74.5 @@ -169379,7 +169412,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22144 + - uid: 22159 components: - rot: 1.5707963267948966 rad pos: -56.5,-72.5 @@ -169387,7 +169420,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22145 + - uid: 22160 components: - rot: -1.5707963267948966 rad pos: -27.5,-36.5 @@ -169395,14 +169428,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22146 + - uid: 22161 components: - pos: 57.5,34.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22147 + - uid: 22162 components: - rot: -1.5707963267948966 rad pos: 43.5,47.5 @@ -169410,7 +169443,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22148 + - uid: 22163 components: - rot: 1.5707963267948966 rad pos: 36.5,50.5 @@ -169418,7 +169451,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22149 + - uid: 22164 components: - rot: 3.141592653589793 rad pos: 37.5,43.5 @@ -169426,7 +169459,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22150 + - uid: 22165 components: - pos: 34.5,47.5 parent: 2 @@ -169435,7 +169468,7 @@ entities: type: ApcPowerReceiver - proto: Protolathe entities: - - uid: 22151 + - uid: 22166 components: - pos: 43.5,-35.5 parent: 2 @@ -169449,1162 +169482,1162 @@ entities: type: MaterialStorage - proto: ProximitySensor entities: - - uid: 22152 + - uid: 22167 components: - pos: 59.550594,-52.45363 parent: 2 type: Transform - proto: Rack entities: - - uid: 22153 + - uid: 22168 components: - pos: 29.5,-13.5 parent: 2 type: Transform - - uid: 22154 + - uid: 22169 components: - pos: 13.5,-72.5 parent: 2 type: Transform - - uid: 22155 + - uid: 22170 components: - pos: 10.5,-16.5 parent: 2 type: Transform - - uid: 22156 + - uid: 22171 components: - pos: 31.5,-11.5 parent: 2 type: Transform - - uid: 22157 + - uid: 22172 components: - pos: 22.5,-54.5 parent: 2 type: Transform - - uid: 22158 + - uid: 22173 components: - pos: 33.5,-11.5 parent: 2 type: Transform - - uid: 22159 + - uid: 22174 components: - pos: 33.5,-13.5 parent: 2 type: Transform - - uid: 22160 + - uid: 22175 components: - pos: 31.5,-13.5 parent: 2 type: Transform - - uid: 22161 + - uid: 22176 components: - pos: 29.5,-11.5 parent: 2 type: Transform - - uid: 22162 + - uid: 22177 components: - pos: -6.5,-68.5 parent: 2 type: Transform - - uid: 22163 + - uid: 22178 components: - pos: 4.5,-69.5 parent: 2 type: Transform - - uid: 22164 + - uid: 22179 components: - pos: 6.5,-69.5 parent: 2 type: Transform - - uid: 22165 + - uid: 22180 components: - rot: 3.141592653589793 rad pos: -28.5,-19.5 parent: 2 type: Transform - - uid: 22166 + - uid: 22181 components: - pos: -16.5,-15.5 parent: 2 type: Transform - - uid: 22167 + - uid: 22182 components: - pos: 36.5,-50.5 parent: 2 type: Transform - - uid: 22168 + - uid: 22183 components: - pos: 37.5,-50.5 parent: 2 type: Transform - - uid: 22169 + - uid: 22184 components: - pos: 42.5,-7.5 parent: 2 type: Transform - - uid: 22170 + - uid: 22185 components: - pos: -8.5,-10.5 parent: 2 type: Transform - - uid: 22171 + - uid: 22186 components: - pos: -16.5,-16.5 parent: 2 type: Transform - - uid: 22172 + - uid: 22187 components: - pos: -9.5,-10.5 parent: 2 type: Transform - - uid: 22173 + - uid: 22188 components: - pos: -11.5,-8.5 parent: 2 type: Transform - - uid: 22174 + - uid: 22189 components: - pos: -50.5,-29.5 parent: 2 type: Transform - - uid: 22175 + - uid: 22190 components: - pos: -50.5,-28.5 parent: 2 type: Transform - - uid: 22176 + - uid: 22191 components: - pos: -50.5,-27.5 parent: 2 type: Transform - - uid: 22177 + - uid: 22192 components: - pos: -45.5,-19.5 parent: 2 type: Transform - - uid: 22178 + - uid: 22193 components: - pos: -47.5,-19.5 parent: 2 type: Transform - - uid: 22179 + - uid: 22194 components: - pos: -55.5,-6.5 parent: 2 type: Transform - - uid: 22180 + - uid: 22195 components: - pos: -31.5,-56.5 parent: 2 type: Transform - - uid: 22181 + - uid: 22196 components: - pos: -56.5,-70.5 parent: 2 type: Transform - - uid: 22182 + - uid: 22197 components: - pos: -38.5,-67.5 parent: 2 type: Transform - - uid: 22183 + - uid: 22198 components: - pos: -32.5,-62.5 parent: 2 type: Transform - - uid: 22184 + - uid: 22199 components: - pos: -31.5,-62.5 parent: 2 type: Transform - - uid: 22185 + - uid: 22200 components: - pos: -46.5,-30.5 parent: 2 type: Transform - - uid: 22186 + - uid: 22201 components: - pos: -44.5,-25.5 parent: 2 type: Transform - - uid: 22187 + - uid: 22202 components: - pos: -42.5,-24.5 parent: 2 type: Transform - - uid: 22188 + - uid: 22203 components: - pos: 35.5,-12.5 parent: 2 type: Transform - - uid: 22189 + - uid: 22204 components: - pos: -31.5,-43.5 parent: 2 type: Transform - - uid: 22190 + - uid: 22205 components: - pos: -29.5,-46.5 parent: 2 type: Transform - - uid: 22191 + - uid: 22206 components: - pos: -28.5,-28.5 parent: 2 type: Transform - - uid: 22192 + - uid: 22207 components: - pos: -23.5,-28.5 parent: 2 type: Transform - - uid: 22193 + - uid: 22208 components: - pos: -34.5,-25.5 parent: 2 type: Transform - - uid: 22194 + - uid: 22209 components: - pos: -42.5,-20.5 parent: 2 type: Transform - - uid: 22195 + - uid: 22210 components: - pos: -42.5,-21.5 parent: 2 type: Transform - - uid: 22196 + - uid: 22211 components: - pos: 4.5,-17.5 parent: 2 type: Transform - - uid: 22197 + - uid: 22212 components: - pos: 3.5,-17.5 parent: 2 type: Transform - - uid: 22198 + - uid: 22213 components: - pos: -44.5,16.5 parent: 2 type: Transform - - uid: 22199 + - uid: 22214 components: - pos: -3.5,21.5 parent: 2 type: Transform - - uid: 22200 + - uid: 22215 components: - pos: 0.5,23.5 parent: 2 type: Transform - - uid: 22201 + - uid: 22216 components: - pos: -3.5,34.5 parent: 2 type: Transform - - uid: 22202 + - uid: 22217 components: - pos: 15.5,34.5 parent: 2 type: Transform - - uid: 22203 + - uid: 22218 components: - pos: -10.5,16.5 parent: 2 type: Transform - - uid: 22204 + - uid: 22219 components: - pos: -12.5,17.5 parent: 2 type: Transform - - uid: 22205 + - uid: 22220 components: - pos: -49.5,15.5 parent: 2 type: Transform - - uid: 22206 + - uid: 22221 components: - pos: -49.5,14.5 parent: 2 type: Transform - - uid: 22207 + - uid: 22222 components: - pos: -44.5,15.5 parent: 2 type: Transform - - uid: 22208 + - uid: 22223 components: - pos: -47.5,-3.5 parent: 2 type: Transform - - uid: 22209 + - uid: 22224 components: - pos: -52.5,2.5 parent: 2 type: Transform - - uid: 22210 + - uid: 22225 components: - pos: -56.5,-4.5 parent: 2 type: Transform - - uid: 22211 + - uid: 22226 components: - pos: 18.5,39.5 parent: 2 type: Transform - - uid: 22212 + - uid: 22227 components: - pos: -24.5,-67.5 parent: 2 type: Transform - - uid: 22213 + - uid: 22228 components: - pos: -23.5,-67.5 parent: 2 type: Transform - - uid: 22214 + - uid: 22229 components: - pos: 9.5,-16.5 parent: 2 type: Transform - - uid: 22215 + - uid: 22230 components: - pos: 39.5,-30.5 parent: 2 type: Transform - - uid: 22216 + - uid: 22231 components: - pos: 59.5,2.5 parent: 2 type: Transform - - uid: 22217 + - uid: 22232 components: - pos: 18.5,-27.5 parent: 2 type: Transform - - uid: 22218 + - uid: 22233 components: - pos: -34.5,-72.5 parent: 2 type: Transform - - uid: 22219 + - uid: 22234 components: - pos: -33.5,-72.5 parent: 2 type: Transform - - uid: 22220 + - uid: 22235 components: - pos: -41.5,37.5 parent: 2 type: Transform - - uid: 22221 + - uid: 22236 components: - pos: -36.5,35.5 parent: 2 type: Transform - - uid: 22222 + - uid: 22237 components: - pos: -26.5,39.5 parent: 2 type: Transform - - uid: 22223 + - uid: 22238 components: - pos: -26.5,30.5 parent: 2 type: Transform - - uid: 22224 + - uid: 22239 components: - pos: -8.5,-82.5 parent: 2 type: Transform - - uid: 22225 + - uid: 22240 components: - pos: -14.5,-82.5 parent: 2 type: Transform - - uid: 22226 + - uid: 22241 components: - pos: -4.5,-82.5 parent: 2 type: Transform - - uid: 22227 + - uid: 22242 components: - pos: -6.5,-88.5 parent: 2 type: Transform - - uid: 22228 + - uid: 22243 components: - pos: -19.5,53.5 parent: 2 type: Transform - - uid: 22229 + - uid: 22244 components: - pos: 42.5,-32.5 parent: 2 type: Transform - - uid: 22230 + - uid: 22245 components: - pos: 54.5,-63.5 parent: 2 type: Transform - - uid: 22231 + - uid: 22246 components: - pos: 54.5,-64.5 parent: 2 type: Transform - - uid: 22232 + - uid: 22247 components: - pos: 54.5,-30.5 parent: 2 type: Transform - - uid: 22233 + - uid: 22248 components: - pos: 37.5,-10.5 parent: 2 type: Transform - - uid: 22234 + - uid: 22249 components: - pos: -8.5,-17.5 parent: 2 type: Transform - - uid: 22235 + - uid: 22250 components: - rot: 1.5707963267948966 rad pos: -28.5,-20.5 parent: 2 type: Transform - - uid: 22236 + - uid: 22251 components: - pos: -48.5,16.5 parent: 2 type: Transform - - uid: 22237 + - uid: 22252 components: - pos: -13.5,-13.5 parent: 2 type: Transform - - uid: 22238 + - uid: 22253 components: - pos: -13.5,-12.5 parent: 2 type: Transform - - uid: 22239 + - uid: 22254 components: - pos: -20.5,-51.5 parent: 2 type: Transform - - uid: 22240 + - uid: 22255 components: - pos: 44.5,-8.5 parent: 2 type: Transform - - uid: 22241 + - uid: 22256 components: - pos: 7.5,-80.5 parent: 2 type: Transform - - uid: 22242 + - uid: 22257 components: - pos: 31.5,27.5 parent: 2 type: Transform - - uid: 22243 + - uid: 22258 components: - pos: 27.5,29.5 parent: 2 type: Transform - - uid: 22244 + - uid: 22259 components: - pos: 27.5,27.5 parent: 2 type: Transform - - uid: 22245 + - uid: 22260 components: - pos: 31.5,29.5 parent: 2 type: Transform - proto: RadiationCollector entities: - - uid: 22246 + - uid: 22261 components: - pos: -63.5,-20.5 parent: 2 type: Transform - - uid: 22247 + - uid: 22262 components: - pos: -64.5,-20.5 parent: 2 type: Transform - - uid: 22248 + - uid: 22263 components: - pos: -65.5,-20.5 parent: 2 type: Transform - - uid: 22249 + - uid: 22264 components: - pos: -67.5,-20.5 parent: 2 type: Transform - - uid: 22250 + - uid: 22265 components: - pos: -68.5,-20.5 parent: 2 type: Transform - - uid: 22251 + - uid: 22266 components: - pos: -69.5,-20.5 parent: 2 type: Transform - - uid: 22252 + - uid: 22267 components: - pos: -63.5,-6.5 parent: 2 type: Transform - - uid: 22253 + - uid: 22268 components: - pos: -64.5,-6.5 parent: 2 type: Transform - - uid: 22254 + - uid: 22269 components: - pos: -65.5,-6.5 parent: 2 type: Transform - - uid: 22255 + - uid: 22270 components: - pos: -69.5,-6.5 parent: 2 type: Transform - - uid: 22256 + - uid: 22271 components: - pos: -68.5,-6.5 parent: 2 type: Transform - - uid: 22257 + - uid: 22272 components: - pos: -67.5,-6.5 parent: 2 type: Transform - proto: RadioHandheld entities: - - uid: 22258 + - uid: 22273 components: - pos: -21.414516,35.539524 parent: 2 type: Transform - proto: Railing entities: - - uid: 22259 + - uid: 22274 components: - pos: 24.5,-1.5 parent: 2 type: Transform - - uid: 22260 + - uid: 22275 components: - pos: 25.5,-1.5 parent: 2 type: Transform - - uid: 22261 + - uid: 22276 components: - rot: -1.5707963267948966 rad pos: 21.5,1.5 parent: 2 type: Transform - - uid: 22262 + - uid: 22277 components: - rot: 3.141592653589793 rad pos: 24.5,-19.5 parent: 2 type: Transform - - uid: 22263 + - uid: 22278 components: - rot: -1.5707963267948966 rad pos: 21.5,0.5 parent: 2 type: Transform - - uid: 22264 + - uid: 22279 components: - rot: 3.141592653589793 rad pos: 25.5,3.5 parent: 2 type: Transform - - uid: 22265 + - uid: 22280 components: - rot: 3.141592653589793 rad pos: 11.5,1.5 parent: 2 type: Transform - - uid: 22266 + - uid: 22281 components: - pos: 22.5,-1.5 parent: 2 type: Transform - - uid: 22267 + - uid: 22282 components: - pos: 10.5,0.5 parent: 2 type: Transform - - uid: 22268 + - uid: 22283 components: - rot: 1.5707963267948966 rad pos: 26.5,2.5 parent: 2 type: Transform - - uid: 22269 + - uid: 22284 components: - rot: 3.141592653589793 rad pos: 24.5,3.5 parent: 2 type: Transform - - uid: 22270 + - uid: 22285 components: - pos: 6.5,0.5 parent: 2 type: Transform - - uid: 22271 + - uid: 22286 components: - rot: 3.141592653589793 rad pos: 22.5,3.5 parent: 2 type: Transform - - uid: 22272 + - uid: 22287 components: - rot: 3.141592653589793 rad pos: 10.5,1.5 parent: 2 type: Transform - - uid: 22273 + - uid: 22288 components: - rot: 3.141592653589793 rad pos: 26.5,-19.5 parent: 2 type: Transform - - uid: 22274 + - uid: 22289 components: - rot: 1.5707963267948966 rad pos: 26.5,-0.5 parent: 2 type: Transform - - uid: 22275 + - uid: 22290 components: - rot: 3.141592653589793 rad pos: 25.5,-19.5 parent: 2 type: Transform - - uid: 22276 + - uid: 22291 components: - rot: 3.141592653589793 rad pos: 23.5,-19.5 parent: 2 type: Transform - - uid: 22277 + - uid: 22292 components: - pos: 23.5,-1.5 parent: 2 type: Transform - - uid: 22278 + - uid: 22293 components: - rot: 3.141592653589793 rad pos: 28.5,-19.5 parent: 2 type: Transform - - uid: 22279 + - uid: 22294 components: - rot: -1.5707963267948966 rad pos: 21.5,-0.5 parent: 2 type: Transform - - uid: 22280 + - uid: 22295 components: - rot: -1.5707963267948966 rad pos: 21.5,2.5 parent: 2 type: Transform - - uid: 22281 + - uid: 22296 components: - pos: 11.5,0.5 parent: 2 type: Transform - - uid: 22282 + - uid: 22297 components: - rot: 3.141592653589793 rad pos: 6.5,1.5 parent: 2 type: Transform - - uid: 22283 + - uid: 22298 components: - rot: 3.141592653589793 rad pos: 7.5,1.5 parent: 2 type: Transform - - uid: 22284 + - uid: 22299 components: - pos: 7.5,0.5 parent: 2 type: Transform - - uid: 22285 + - uid: 22300 components: - rot: 3.141592653589793 rad pos: 23.5,3.5 parent: 2 type: Transform - - uid: 22286 + - uid: 22301 components: - rot: 3.141592653589793 rad pos: 27.5,-19.5 parent: 2 type: Transform - - uid: 22287 + - uid: 22302 components: - rot: 1.5707963267948966 rad pos: 26.5,1.5 parent: 2 type: Transform - - uid: 22288 + - uid: 22303 components: - rot: 3.141592653589793 rad pos: 22.5,-19.5 parent: 2 type: Transform - - uid: 22289 + - uid: 22304 components: - rot: 3.141592653589793 rad pos: 54.5,19.5 parent: 2 type: Transform - - uid: 22290 + - uid: 22305 components: - rot: 3.141592653589793 rad pos: 53.5,19.5 parent: 2 type: Transform - - uid: 22291 + - uid: 22306 components: - rot: 3.141592653589793 rad pos: 52.5,19.5 parent: 2 type: Transform - - uid: 22292 + - uid: 22307 components: - rot: -1.5707963267948966 rad pos: 51.5,18.5 parent: 2 type: Transform - - uid: 22293 + - uid: 22308 components: - rot: -1.5707963267948966 rad pos: 51.5,17.5 parent: 2 type: Transform - - uid: 22294 + - uid: 22309 components: - rot: -1.5707963267948966 rad pos: 51.5,15.5 parent: 2 type: Transform - - uid: 22295 + - uid: 22310 components: - rot: 1.5707963267948966 rad pos: 55.5,18.5 parent: 2 type: Transform - - uid: 22296 + - uid: 22311 components: - rot: 1.5707963267948966 rad pos: 55.5,17.5 parent: 2 type: Transform - - uid: 22297 + - uid: 22312 components: - rot: 1.5707963267948966 rad pos: 55.5,15.5 parent: 2 type: Transform - - uid: 22298 + - uid: 22313 components: - rot: 3.141592653589793 rad pos: 58.5,8.5 parent: 2 type: Transform - - uid: 22299 + - uid: 22314 components: - rot: 3.141592653589793 rad pos: 56.5,8.5 parent: 2 type: Transform - - uid: 22300 + - uid: 22315 components: - rot: -1.5707963267948966 rad pos: 55.5,6.5 parent: 2 type: Transform - - uid: 22301 + - uid: 22316 components: - rot: 1.5707963267948966 rad pos: 59.5,7.5 parent: 2 type: Transform - - uid: 22302 + - uid: 22317 components: - rot: 1.5707963267948966 rad pos: 59.5,6.5 parent: 2 type: Transform - - uid: 22303 + - uid: 22318 components: - pos: 58.5,5.5 parent: 2 type: Transform - - uid: 22304 + - uid: 22319 components: - pos: 56.5,5.5 parent: 2 type: Transform - - uid: 22305 + - uid: 22320 components: - rot: 3.141592653589793 rad pos: 57.5,8.5 parent: 2 type: Transform - - uid: 22306 + - uid: 22321 components: - rot: 1.5707963267948966 rad pos: 61.5,-8.5 parent: 2 type: Transform - - uid: 22307 + - uid: 22322 components: - pos: 54.5,-9.5 parent: 2 type: Transform - - uid: 22308 + - uid: 22323 components: - rot: 3.141592653589793 rad pos: 54.5,-7.5 parent: 2 type: Transform - - uid: 22309 + - uid: 22324 components: - rot: 1.5707963267948966 rad pos: 50.5,-5.5 parent: 2 type: Transform - - uid: 22310 + - uid: 22325 components: - rot: 1.5707963267948966 rad pos: 50.5,-11.5 parent: 2 type: Transform - - uid: 22311 + - uid: 22326 components: - rot: -1.5707963267948966 rad pos: 53.5,-8.5 parent: 2 type: Transform - - uid: 22312 + - uid: 22327 components: - rot: 1.5707963267948966 rad pos: 46.5,-86.5 parent: 2 type: Transform - - uid: 22313 + - uid: 22328 components: - rot: -1.5707963267948966 rad pos: 32.5,-84.5 parent: 2 type: Transform - - uid: 22314 + - uid: 22329 components: - rot: -1.5707963267948966 rad pos: 32.5,-85.5 parent: 2 type: Transform - - uid: 22315 + - uid: 22330 components: - rot: 1.5707963267948966 rad pos: 46.5,-87.5 parent: 2 type: Transform - - uid: 22316 + - uid: 22331 components: - rot: -1.5707963267948966 rad pos: 32.5,-86.5 parent: 2 type: Transform - - uid: 22317 + - uid: 22332 components: - rot: 1.5707963267948966 rad pos: 46.5,-84.5 parent: 2 type: Transform - - uid: 22318 + - uid: 22333 components: - rot: -1.5707963267948966 rad pos: 32.5,-87.5 parent: 2 type: Transform - - uid: 22319 + - uid: 22334 components: - rot: 3.141592653589793 rad pos: -40.5,-80.5 parent: 2 type: Transform - - uid: 22320 + - uid: 22335 components: - rot: 3.141592653589793 rad pos: -41.5,-80.5 parent: 2 type: Transform - - uid: 22321 + - uid: 22336 components: - rot: 3.141592653589793 rad pos: -42.5,-80.5 parent: 2 type: Transform - - uid: 22322 + - uid: 22337 components: - rot: 3.141592653589793 rad pos: -43.5,-80.5 parent: 2 type: Transform - - uid: 22323 + - uid: 22338 components: - pos: -40.5,-84.5 parent: 2 type: Transform - - uid: 22324 + - uid: 22339 components: - pos: -41.5,-84.5 parent: 2 type: Transform - - uid: 22325 + - uid: 22340 components: - pos: -42.5,-84.5 parent: 2 type: Transform - - uid: 22326 + - uid: 22341 components: - pos: -43.5,-84.5 parent: 2 type: Transform - - uid: 22327 + - uid: 22342 components: - rot: 1.5707963267948966 rad pos: -39.5,-81.5 parent: 2 type: Transform - - uid: 22328 + - uid: 22343 components: - rot: 1.5707963267948966 rad pos: -39.5,-82.5 parent: 2 type: Transform - - uid: 22329 + - uid: 22344 components: - rot: -1.5707963267948966 rad pos: -44.5,-81.5 parent: 2 type: Transform - - uid: 22330 + - uid: 22345 components: - rot: -1.5707963267948966 rad pos: -44.5,-82.5 parent: 2 type: Transform - - uid: 22331 + - uid: 22346 components: - rot: -1.5707963267948966 rad pos: -44.5,-83.5 parent: 2 type: Transform - - uid: 22332 + - uid: 22347 components: - rot: 3.141592653589793 rad pos: -39.5,-29.5 parent: 2 type: Transform - - uid: 22333 + - uid: 22348 components: - rot: 3.141592653589793 rad pos: -38.5,-29.5 parent: 2 type: Transform - - uid: 22334 + - uid: 22349 components: - rot: -1.5707963267948966 rad pos: 66.5,-8.5 parent: 2 type: Transform - - uid: 22335 + - uid: 22350 components: - rot: -1.5707963267948966 rad pos: 66.5,-7.5 parent: 2 type: Transform - - uid: 22336 + - uid: 22351 components: - rot: -1.5707963267948966 rad pos: 66.5,-9.5 parent: 2 type: Transform - - uid: 22337 + - uid: 22352 components: - rot: 3.141592653589793 rad pos: -40.5,38.5 parent: 2 type: Transform - - uid: 22338 + - uid: 22353 components: - rot: 3.141592653589793 rad pos: -43.5,38.5 parent: 2 type: Transform - - uid: 22339 + - uid: 22354 components: - pos: 60.5,-9.5 parent: 2 type: Transform - - uid: 22340 + - uid: 22355 components: - rot: 3.141592653589793 rad pos: 60.5,-7.5 parent: 2 type: Transform - - uid: 22341 + - uid: 22356 components: - rot: 1.5707963267948966 rad pos: -39.5,3.5 parent: 2 type: Transform - - uid: 22342 + - uid: 22357 components: - rot: 1.5707963267948966 rad pos: -39.5,4.5 parent: 2 type: Transform - - uid: 22343 + - uid: 22358 components: - pos: 31.5,-40.5 parent: 2 type: Transform - - uid: 22344 + - uid: 22359 components: - rot: 1.5707963267948966 rad pos: 32.5,-39.5 parent: 2 type: Transform - - uid: 22345 + - uid: 22360 components: - rot: 1.5707963267948966 rad pos: -39.5,5.5 parent: 2 type: Transform - - uid: 22346 + - uid: 22361 components: - rot: 1.5707963267948966 rad pos: -39.5,6.5 parent: 2 type: Transform - - uid: 22347 + - uid: 22362 components: - rot: -1.5707963267948966 rad pos: -36.5,6.5 parent: 2 type: Transform - - uid: 22348 + - uid: 22363 components: - rot: -1.5707963267948966 rad pos: -36.5,5.5 parent: 2 type: Transform - - uid: 22349 + - uid: 22364 components: - rot: -1.5707963267948966 rad pos: -36.5,4.5 parent: 2 type: Transform - - uid: 22350 + - uid: 22365 components: - rot: -1.5707963267948966 rad pos: -36.5,3.5 parent: 2 type: Transform - - uid: 22351 + - uid: 22366 components: - rot: 1.5707963267948966 rad pos: 46.5,-85.5 parent: 2 type: Transform - - uid: 22352 + - uid: 22367 components: - rot: 1.5707963267948966 rad pos: 13.5,-84.5 parent: 2 type: Transform - - uid: 22353 + - uid: 22368 components: - rot: 1.5707963267948966 rad pos: 13.5,-83.5 parent: 2 type: Transform - - uid: 22354 + - uid: 22369 components: - rot: 1.5707963267948966 rad pos: 13.5,-82.5 parent: 2 type: Transform - - uid: 22355 + - uid: 22370 components: - rot: -1.5707963267948966 rad pos: 17.5,-82.5 parent: 2 type: Transform - - uid: 22356 + - uid: 22371 components: - rot: -1.5707963267948966 rad pos: 17.5,-83.5 parent: 2 type: Transform - - uid: 22357 + - uid: 22372 components: - rot: -1.5707963267948966 rad pos: 17.5,-84.5 parent: 2 type: Transform - - uid: 22358 + - uid: 22373 components: - rot: 3.141592653589793 rad pos: 16.5,-85.5 parent: 2 type: Transform - - uid: 22359 + - uid: 22374 components: - rot: 3.141592653589793 rad pos: 15.5,-85.5 parent: 2 type: Transform - - uid: 22360 + - uid: 22375 components: - rot: 3.141592653589793 rad pos: 14.5,-85.5 parent: 2 type: Transform - - uid: 22361 + - uid: 22376 components: - pos: 14.5,-81.5 parent: 2 type: Transform - - uid: 22362 + - uid: 22377 components: - pos: 15.5,-81.5 parent: 2 type: Transform - - uid: 22363 + - uid: 22378 components: - pos: 16.5,-81.5 parent: 2 type: Transform - - uid: 30667 + - uid: 22379 components: - rot: -1.5707963267948966 rad pos: 67.5,-28.5 @@ -170613,7 +170646,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 30668 + - uid: 22380 components: - rot: -1.5707963267948966 rad pos: 67.5,-27.5 @@ -170622,7 +170655,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 30670 + - uid: 22381 components: - pos: 68.5,-29.5 parent: 2 @@ -170630,7 +170663,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 30671 + - uid: 22382 components: - pos: 69.5,-29.5 parent: 2 @@ -170640,162 +170673,162 @@ entities: - Destructible - proto: RailingCorner entities: - - uid: 22364 + - uid: 22383 components: - rot: 1.5707963267948966 rad pos: 61.5,-7.5 parent: 2 type: Transform - - uid: 22365 + - uid: 22384 components: - pos: -39.5,-84.5 parent: 2 type: Transform - - uid: 22366 + - uid: 22385 components: - rot: -1.5707963267948966 rad pos: 5.5,0.5 parent: 2 type: Transform - - uid: 22367 + - uid: 22386 components: - pos: 26.5,-1.5 parent: 2 type: Transform - - uid: 22368 + - uid: 22387 components: - rot: 1.5707963267948966 rad pos: 26.5,3.5 parent: 2 type: Transform - - uid: 22369 + - uid: 22388 components: - rot: 3.141592653589793 rad pos: 5.5,1.5 parent: 2 type: Transform - - uid: 22370 + - uid: 22389 components: - pos: 12.5,0.5 parent: 2 type: Transform - - uid: 22371 + - uid: 22390 components: - rot: 3.141592653589793 rad pos: 21.5,3.5 parent: 2 type: Transform - - uid: 22372 + - uid: 22391 components: - rot: 1.5707963267948966 rad pos: 12.5,1.5 parent: 2 type: Transform - - uid: 22373 + - uid: 22392 components: - rot: -1.5707963267948966 rad pos: 21.5,-1.5 parent: 2 type: Transform - - uid: 22374 + - uid: 22393 components: - rot: 1.5707963267948966 rad pos: 29.5,-19.5 parent: 2 type: Transform - - uid: 22375 + - uid: 22394 components: - rot: 3.141592653589793 rad pos: 21.5,-19.5 parent: 2 type: Transform - - uid: 22376 + - uid: 22395 components: - pos: 32.5,-40.5 parent: 2 type: Transform - - uid: 22377 + - uid: 22396 components: - rot: 3.141592653589793 rad pos: 51.5,19.5 parent: 2 type: Transform - - uid: 22378 + - uid: 22397 components: - rot: 1.5707963267948966 rad pos: 55.5,19.5 parent: 2 type: Transform - - uid: 22379 + - uid: 22398 components: - pos: 59.5,5.5 parent: 2 type: Transform - - uid: 22380 + - uid: 22399 components: - rot: -1.5707963267948966 rad pos: 55.5,5.5 parent: 2 type: Transform - - uid: 22381 + - uid: 22400 components: - rot: 3.141592653589793 rad pos: 55.5,8.5 parent: 2 type: Transform - - uid: 22382 + - uid: 22401 components: - rot: 1.5707963267948966 rad pos: 59.5,8.5 parent: 2 type: Transform - - uid: 22383 + - uid: 22402 components: - rot: 1.5707963267948966 rad pos: 50.5,-10.5 parent: 2 type: Transform - - uid: 22384 + - uid: 22403 components: - pos: 50.5,-6.5 parent: 2 type: Transform - - uid: 22385 + - uid: 22404 components: - rot: -1.5707963267948966 rad pos: 53.5,-9.5 parent: 2 type: Transform - - uid: 22386 + - uid: 22405 components: - rot: 3.141592653589793 rad pos: 53.5,-7.5 parent: 2 type: Transform - - uid: 22387 + - uid: 22406 components: - rot: -1.5707963267948966 rad pos: -44.5,-84.5 parent: 2 type: Transform - - uid: 22388 + - uid: 22407 components: - rot: 3.141592653589793 rad pos: -44.5,-80.5 parent: 2 type: Transform - - uid: 22389 + - uid: 22408 components: - rot: 1.5707963267948966 rad pos: -39.5,-80.5 parent: 2 type: Transform - - uid: 22390 + - uid: 22409 components: - pos: 61.5,-9.5 parent: 2 type: Transform - - uid: 30666 + - uid: 22410 components: - rot: -1.5707963267948966 rad pos: 67.5,-29.5 @@ -170806,24 +170839,24 @@ entities: - Destructible - proto: RailingCornerSmall entities: - - uid: 22391 + - uid: 22411 components: - pos: 17.5,-85.5 parent: 2 type: Transform - - uid: 22392 + - uid: 22412 components: - rot: 3.141592653589793 rad pos: 13.5,-81.5 parent: 2 type: Transform - - uid: 22393 + - uid: 22413 components: - rot: 1.5707963267948966 rad pos: 17.5,-81.5 parent: 2 type: Transform - - uid: 22394 + - uid: 22414 components: - rot: -1.5707963267948966 rad pos: 13.5,-85.5 @@ -170831,640 +170864,640 @@ entities: type: Transform - proto: RandomArcade entities: - - uid: 22395 + - uid: 22415 components: - pos: 44.5,12.5 parent: 2 type: Transform - - uid: 22396 + - uid: 22416 components: - pos: 45.5,12.5 parent: 2 type: Transform - - uid: 22397 + - uid: 22417 components: - pos: 9.5,34.5 parent: 2 type: Transform - - uid: 22398 + - uid: 22418 components: - pos: 7.5,34.5 parent: 2 type: Transform - - uid: 22399 + - uid: 22419 components: - rot: 3.141592653589793 rad pos: 9.5,30.5 parent: 2 type: Transform - - uid: 22400 + - uid: 22420 components: - rot: 3.141592653589793 rad pos: 7.5,30.5 parent: 2 type: Transform - - uid: 22401 + - uid: 22421 components: - pos: 4.5,-32.5 parent: 2 type: Transform - - uid: 22402 + - uid: 22422 components: - pos: 4.5,-30.5 parent: 2 type: Transform - - uid: 22403 + - uid: 22423 components: - pos: 2.5,-30.5 parent: 2 type: Transform - - uid: 22404 + - uid: 22424 components: - pos: 2.5,-32.5 parent: 2 type: Transform - - uid: 22405 + - uid: 22425 components: - pos: 6.5,-30.5 parent: 2 type: Transform - - uid: 22406 + - uid: 22426 components: - pos: 6.5,-32.5 parent: 2 type: Transform - proto: RandomArtifactSpawner entities: - - uid: 22407 + - uid: 22427 components: - pos: 67.5,-37.5 parent: 2 type: Transform - - uid: 22408 + - uid: 22428 components: - pos: -46.5,65.5 parent: 2 type: Transform - - uid: 22409 + - uid: 22429 components: - pos: 71.5,-28.5 parent: 2 type: Transform - proto: RandomArtifactSpawner20 entities: - - uid: 22410 + - uid: 22430 components: - pos: 50.5,51.5 parent: 2 type: Transform - - uid: 22411 + - uid: 22431 components: - pos: -20.5,-99.5 parent: 2 type: Transform - - uid: 22412 + - uid: 22432 components: - pos: 11.5,53.5 parent: 2 type: Transform - - uid: 22413 + - uid: 22433 components: - pos: -51.5,22.5 parent: 2 type: Transform - proto: RandomDrinkBottle entities: - - uid: 22414 + - uid: 22434 components: - pos: 15.5,13.5 parent: 2 type: Transform - proto: RandomDrinkGlass entities: - - uid: 22415 + - uid: 22435 components: - pos: 15.5,11.5 parent: 2 type: Transform - - uid: 22416 + - uid: 22436 components: - pos: 15.5,11.5 parent: 2 type: Transform - - uid: 22417 + - uid: 22437 components: - pos: 18.5,15.5 parent: 2 type: Transform - - uid: 22418 + - uid: 22438 components: - pos: -8.5,1.5 parent: 2 type: Transform - proto: RandomFoodBakedSingle entities: - - uid: 22419 + - uid: 22439 components: - pos: 2.5,0.5 parent: 2 type: Transform - - uid: 22420 + - uid: 22440 components: - pos: -4.5,1.5 parent: 2 type: Transform - - uid: 22421 + - uid: 22441 components: - pos: -8.5,0.5 parent: 2 type: Transform - proto: RandomFoodMeal entities: - - uid: 22422 + - uid: 22442 components: - pos: 25.5,-68.5 parent: 2 type: Transform - proto: RandomFoodSingle entities: - - uid: 22423 + - uid: 22443 components: - pos: 11.5,7.5 parent: 2 type: Transform - - uid: 22424 + - uid: 22444 components: - pos: 4.5,15.5 parent: 2 type: Transform - - uid: 22425 + - uid: 22445 components: - pos: 67.5,10.5 parent: 2 type: Transform - proto: RandomInstruments entities: - - uid: 22426 + - uid: 22446 components: - pos: 54.5,-28.5 parent: 2 type: Transform - proto: RandomPainting entities: - - uid: 22427 + - uid: 22447 components: - pos: 49.5,48.5 parent: 2 type: Transform - proto: RandomPosterAny entities: - - uid: 22428 + - uid: 22448 components: - pos: -52.5,-61.5 parent: 2 type: Transform - - uid: 22429 + - uid: 22449 components: - pos: -55.5,-57.5 parent: 2 type: Transform - - uid: 22430 + - uid: 22450 components: - pos: -57.5,-57.5 parent: 2 type: Transform - proto: RandomPosterContraband entities: - - uid: 22431 + - uid: 22451 components: - pos: 7.5,-68.5 parent: 2 type: Transform - - uid: 22432 + - uid: 22452 components: - pos: -30.5,-45.5 parent: 2 type: Transform - - uid: 22433 + - uid: 22453 components: - pos: -24.5,-50.5 parent: 2 type: Transform - - uid: 22434 + - uid: 22454 components: - pos: -26.5,-50.5 parent: 2 type: Transform - - uid: 22435 + - uid: 22455 components: - pos: -5.5,-94.5 parent: 2 type: Transform - - uid: 22436 + - uid: 22456 components: - pos: -36.5,-92.5 parent: 2 type: Transform - - uid: 22437 + - uid: 22457 components: - pos: -48.5,-73.5 parent: 2 type: Transform - - uid: 22438 + - uid: 22458 components: - pos: -41.5,-65.5 parent: 2 type: Transform - - uid: 22439 + - uid: 22459 components: - pos: -39.5,-88.5 parent: 2 type: Transform - - uid: 22440 + - uid: 22460 components: - pos: -20.5,-94.5 parent: 2 type: Transform - - uid: 22441 + - uid: 22461 components: - pos: -29.5,-53.5 parent: 2 type: Transform - - uid: 22442 + - uid: 22462 components: - pos: -11.5,-99.5 parent: 2 type: Transform - - uid: 22443 + - uid: 22463 components: - pos: -27.5,-95.5 parent: 2 type: Transform - - uid: 22444 + - uid: 22464 components: - pos: -15.5,14.5 parent: 2 type: Transform - - uid: 22445 + - uid: 22465 components: - pos: -9.5,14.5 parent: 2 type: Transform - - uid: 22446 + - uid: 22466 components: - pos: 11.5,-54.5 parent: 2 type: Transform - - uid: 22447 + - uid: 22467 components: - pos: 15.5,-46.5 parent: 2 type: Transform - - uid: 22448 + - uid: 22468 components: - pos: 11.5,-48.5 parent: 2 type: Transform - - uid: 22449 + - uid: 22469 components: - pos: -24.5,-43.5 parent: 2 type: Transform - - uid: 22450 + - uid: 22470 components: - pos: -25.5,-37.5 parent: 2 type: Transform - - uid: 22451 + - uid: 22471 components: - pos: -13.5,-32.5 parent: 2 type: Transform - - uid: 22452 + - uid: 22472 components: - pos: -15.5,-30.5 parent: 2 type: Transform - - uid: 22453 + - uid: 22473 components: - pos: 16.5,-49.5 parent: 2 type: Transform - - uid: 22454 + - uid: 22474 components: - pos: 11.5,-48.5 parent: 2 type: Transform - - uid: 22455 + - uid: 22475 components: - pos: 12.5,-54.5 parent: 2 type: Transform - - uid: 22456 + - uid: 22476 components: - pos: 13.5,-63.5 parent: 2 type: Transform - - uid: 22457 + - uid: 22477 components: - pos: 41.5,-50.5 parent: 2 type: Transform - - uid: 22458 + - uid: 22478 components: - pos: 37.5,-47.5 parent: 2 type: Transform - - uid: 22459 + - uid: 22479 components: - pos: 61.5,-16.5 parent: 2 type: Transform - - uid: 22460 + - uid: 22480 components: - pos: 55.5,1.5 parent: 2 type: Transform - - uid: 22461 + - uid: 22481 components: - pos: 54.5,30.5 parent: 2 type: Transform - - uid: 22462 + - uid: 22482 components: - pos: 52.5,30.5 parent: 2 type: Transform - - uid: 22463 + - uid: 22483 components: - pos: 59.5,30.5 parent: 2 type: Transform - - uid: 22464 + - uid: 22484 components: - pos: 60.5,27.5 parent: 2 type: Transform - - uid: 22465 + - uid: 22485 components: - pos: 12.5,-13.5 parent: 2 type: Transform - - uid: 22466 + - uid: 22486 components: - pos: 8.5,-13.5 parent: 2 type: Transform - - uid: 22467 + - uid: 22487 components: - pos: -9.5,-94.5 parent: 2 type: Transform - - uid: 22468 + - uid: 22488 components: - pos: -17.5,-95.5 parent: 2 type: Transform - - uid: 22469 + - uid: 22489 components: - pos: -24.5,-94.5 parent: 2 type: Transform - - uid: 22470 + - uid: 22490 components: - pos: -68.5,-40.5 parent: 2 type: Transform - - uid: 22471 + - uid: 22491 components: - pos: -11.5,63.5 parent: 2 type: Transform - - uid: 22472 + - uid: 22492 components: - pos: 53.5,-66.5 parent: 2 type: Transform - - uid: 22473 + - uid: 22493 components: - pos: 6.5,-28.5 parent: 2 type: Transform - - uid: 22474 + - uid: 22494 components: - pos: 1.5,-29.5 parent: 2 type: Transform - - uid: 22475 + - uid: 22495 components: - pos: 52.5,-34.5 parent: 2 type: Transform - - uid: 22476 + - uid: 22496 components: - pos: 59.5,-27.5 parent: 2 type: Transform - - uid: 22477 + - uid: 22497 components: - pos: 44.5,-32.5 parent: 2 type: Transform - - uid: 22478 + - uid: 22498 components: - pos: 69.5,-62.5 parent: 2 type: Transform - - uid: 22479 + - uid: 22499 components: - pos: 58.5,-61.5 parent: 2 type: Transform - - uid: 22480 + - uid: 22500 components: - pos: 57.5,-67.5 parent: 2 type: Transform - - uid: 22481 + - uid: 22501 components: - pos: 48.5,-64.5 parent: 2 type: Transform - - uid: 22482 + - uid: 22502 components: - pos: -29.5,-62.5 parent: 2 type: Transform - - uid: 22483 + - uid: 22503 components: - rot: 3.141592653589793 rad pos: 15.5,-78.5 parent: 2 type: Transform - - uid: 22484 + - uid: 22504 components: - rot: 3.141592653589793 rad pos: 15.5,-88.5 parent: 2 type: Transform - - uid: 22485 + - uid: 22505 components: - pos: 4.5,-72.5 parent: 2 type: Transform - proto: RandomPosterLegit entities: - - uid: 22486 + - uid: 22506 components: - pos: -40.5,-7.5 parent: 2 type: Transform - - uid: 22487 + - uid: 22507 components: - pos: -24.5,14.5 parent: 2 type: Transform - - uid: 22488 + - uid: 22508 components: - pos: -21.5,-40.5 parent: 2 type: Transform - - uid: 22489 + - uid: 22509 components: - rot: 3.141592653589793 rad pos: -19.5,32.5 parent: 2 type: Transform - - uid: 22490 + - uid: 22510 components: - rot: 3.141592653589793 rad pos: -13.5,35.5 parent: 2 type: Transform - - uid: 22491 + - uid: 22511 components: - rot: 3.141592653589793 rad pos: -8.5,47.5 parent: 2 type: Transform - - uid: 22492 + - uid: 22512 components: - rot: 3.141592653589793 rad pos: 23.5,-74.5 parent: 2 type: Transform - - uid: 22493 + - uid: 22513 components: - pos: 50.5,-80.5 parent: 2 type: Transform - - uid: 22494 + - uid: 22514 components: - pos: 49.5,-70.5 parent: 2 type: Transform - - uid: 22495 + - uid: 22515 components: - rot: 3.141592653589793 rad pos: -1.5,55.5 parent: 2 type: Transform - - uid: 22496 + - uid: 22516 components: - rot: 3.141592653589793 rad pos: -7.5,60.5 parent: 2 type: Transform - - uid: 22497 + - uid: 22517 components: - rot: 3.141592653589793 rad pos: -5.5,60.5 parent: 2 type: Transform - - uid: 22498 + - uid: 22518 components: - rot: 3.141592653589793 rad pos: -14.5,58.5 parent: 2 type: Transform - - uid: 22499 + - uid: 22519 components: - rot: 3.141592653589793 rad pos: -20.5,57.5 parent: 2 type: Transform - - uid: 22500 + - uid: 22520 components: - rot: 3.141592653589793 rad pos: -23.5,60.5 parent: 2 type: Transform - - uid: 22501 + - uid: 22521 components: - rot: 3.141592653589793 rad pos: -23.5,67.5 parent: 2 type: Transform - - uid: 22502 + - uid: 22522 components: - rot: 3.141592653589793 rad pos: -11.5,65.5 parent: 2 type: Transform - - uid: 22503 + - uid: 22523 components: - pos: 2.5,-28.5 parent: 2 type: Transform - - uid: 22504 + - uid: 22524 components: - pos: 32.5,-91.5 parent: 2 type: Transform - - uid: 22505 + - uid: 22525 components: - pos: 66.5,-62.5 parent: 2 type: Transform - - uid: 22506 + - uid: 22526 components: - pos: 34.5,-57.5 parent: 2 type: Transform - - uid: 22507 + - uid: 22527 components: - pos: 41.5,-65.5 parent: 2 type: Transform - - uid: 22508 + - uid: 22528 components: - pos: -47.5,9.5 parent: 2 type: Transform - - uid: 22509 + - uid: 22529 components: - pos: -44.5,12.5 parent: 2 type: Transform - - uid: 22510 + - uid: 22530 components: - pos: 28.5,-79.5 parent: 2 type: Transform - - uid: 22511 + - uid: 22531 components: - rot: 3.141592653589793 rad pos: 31.5,-70.5 parent: 2 type: Transform - - uid: 22512 + - uid: 22532 components: - pos: 5.5,-75.5 parent: 2 type: Transform - proto: RandomSnacks entities: - - uid: 22513 + - uid: 22533 components: - rot: -1.5707963267948966 rad pos: 37.5,-50.5 @@ -171472,426 +171505,426 @@ entities: type: Transform - proto: RandomSoap entities: - - uid: 22514 + - uid: 22534 components: - pos: -6.5,-68.5 parent: 2 type: Transform - - uid: 22515 + - uid: 22535 components: - pos: -50.5,62.5 parent: 2 type: Transform - - uid: 22516 + - uid: 22536 components: - pos: -56.5,-62.5 parent: 2 type: Transform - proto: RandomSpawner entities: - - uid: 22517 + - uid: 22537 components: - pos: 34.5,15.5 parent: 2 type: Transform - - uid: 22518 + - uid: 22538 components: - pos: 16.5,-65.5 parent: 2 type: Transform - - uid: 22519 + - uid: 22539 components: - pos: -5.5,-26.5 parent: 2 type: Transform - - uid: 22520 + - uid: 22540 components: - pos: 25.5,7.5 parent: 2 type: Transform - - uid: 22521 + - uid: 22541 components: - pos: -6.5,-74.5 parent: 2 type: Transform - - uid: 22522 + - uid: 22542 components: - pos: 35.5,-72.5 parent: 2 type: Transform - - uid: 22523 + - uid: 22543 components: - pos: 22.5,17.5 parent: 2 type: Transform - - uid: 22524 + - uid: 22544 components: - pos: 5.5,13.5 parent: 2 type: Transform - - uid: 22525 + - uid: 22545 components: - pos: 6.5,15.5 parent: 2 type: Transform - - uid: 22526 + - uid: 22546 components: - pos: 17.5,0.5 parent: 2 type: Transform - - uid: 22527 + - uid: 22547 components: - pos: 33.5,0.5 parent: 2 type: Transform - - uid: 22528 + - uid: 22548 components: - pos: 32.5,-2.5 parent: 2 type: Transform - - uid: 22529 + - uid: 22549 components: - pos: 26.5,-11.5 parent: 2 type: Transform - - uid: 22530 + - uid: 22550 components: - pos: -5.5,-32.5 parent: 2 type: Transform - - uid: 22531 + - uid: 22551 components: - pos: -2.5,-46.5 parent: 2 type: Transform - - uid: 22532 + - uid: 22552 components: - pos: 35.5,-17.5 parent: 2 type: Transform - - uid: 22533 + - uid: 22553 components: - pos: 49.5,32.5 parent: 2 type: Transform - - uid: 22534 + - uid: 22554 components: - pos: 49.5,33.5 parent: 2 type: Transform - - uid: 22535 + - uid: 22555 components: - pos: 50.5,32.5 parent: 2 type: Transform - - uid: 22536 + - uid: 22556 components: - pos: 48.5,32.5 parent: 2 type: Transform - - uid: 22537 + - uid: 22557 components: - pos: 50.5,33.5 parent: 2 type: Transform - - uid: 22538 + - uid: 22558 components: - pos: 54.5,-12.5 parent: 2 type: Transform - - uid: 22539 + - uid: 22559 components: - pos: 52.5,-6.5 parent: 2 type: Transform - - uid: 22540 + - uid: 22560 components: - pos: 52.5,0.5 parent: 2 type: Transform - - uid: 22541 + - uid: 22561 components: - pos: 50.5,-45.5 parent: 2 type: Transform - - uid: 22542 + - uid: 22562 components: - pos: 42.5,-49.5 parent: 2 type: Transform - - uid: 22543 + - uid: 22563 components: - pos: -4.5,-0.5 parent: 2 type: Transform - - uid: 22544 + - uid: 22564 components: - pos: 7.5,2.5 parent: 2 type: Transform - - uid: 22545 + - uid: 22565 components: - pos: 17.5,-41.5 parent: 2 type: Transform - - uid: 22546 + - uid: 22566 components: - pos: -7.5,-53.5 parent: 2 type: Transform - - uid: 22547 + - uid: 22567 components: - rot: 3.141592653589793 rad pos: 29.5,-72.5 parent: 2 type: Transform - - uid: 22548 + - uid: 22568 components: - pos: -37.5,-6.5 parent: 2 type: Transform - - uid: 22549 + - uid: 22569 components: - pos: -25.5,-67.5 parent: 2 type: Transform - - uid: 22550 + - uid: 22570 components: - pos: -27.5,-58.5 parent: 2 type: Transform - - uid: 22551 + - uid: 22571 components: - pos: -24.5,-53.5 parent: 2 type: Transform - - uid: 22552 + - uid: 22572 components: - pos: -26.5,-46.5 parent: 2 type: Transform - - uid: 22553 + - uid: 22573 components: - pos: -20.5,-29.5 parent: 2 type: Transform - - uid: 22554 + - uid: 22574 components: - pos: -32.5,-23.5 parent: 2 type: Transform - - uid: 22555 + - uid: 22575 components: - pos: -23.5,-13.5 parent: 2 type: Transform - - uid: 22556 + - uid: 22576 components: - pos: -53.5,-18.5 parent: 2 type: Transform - - uid: 22557 + - uid: 22577 components: - pos: -32.5,-34.5 parent: 2 type: Transform - - uid: 22558 + - uid: 22578 components: - pos: -33.5,-46.5 parent: 2 type: Transform - - uid: 22559 + - uid: 22579 components: - pos: -37.5,-76.5 parent: 2 type: Transform - - uid: 22560 + - uid: 22580 components: - pos: -46.5,-78.5 parent: 2 type: Transform - - uid: 22561 + - uid: 22581 components: - pos: -45.5,-73.5 parent: 2 type: Transform - - uid: 22562 + - uid: 22582 components: - pos: -52.5,-74.5 parent: 2 type: Transform - - uid: 22563 + - uid: 22583 components: - pos: -35.5,-20.5 parent: 2 type: Transform - - uid: 22564 + - uid: 22584 components: - pos: -45.5,-28.5 parent: 2 type: Transform - - uid: 22565 + - uid: 22585 components: - pos: -57.5,-33.5 parent: 2 type: Transform - - uid: 22566 + - uid: 22586 components: - pos: -31.5,-51.5 parent: 2 type: Transform - - uid: 22567 + - uid: 22587 components: - rot: 3.141592653589793 rad pos: -47.5,11.5 parent: 2 type: Transform - - uid: 22568 + - uid: 22588 components: - rot: 3.141592653589793 rad pos: -45.5,6.5 parent: 2 type: Transform - - uid: 22569 + - uid: 22589 components: - rot: 3.141592653589793 rad pos: -46.5,3.5 parent: 2 type: Transform - - uid: 22570 + - uid: 22590 components: - rot: 3.141592653589793 rad pos: -34.5,0.5 parent: 2 type: Transform - - uid: 22571 + - uid: 22591 components: - rot: 3.141592653589793 rad pos: 25.5,-71.5 parent: 2 type: Transform - - uid: 22572 + - uid: 22592 components: - rot: 3.141592653589793 rad pos: 17.5,-84.5 parent: 2 type: Transform - - uid: 22573 + - uid: 22593 components: - pos: 48.5,33.5 parent: 2 type: Transform - - uid: 22574 + - uid: 22594 components: - pos: 22.5,7.5 parent: 2 type: Transform - - uid: 22575 + - uid: 22595 components: - pos: 26.5,-18.5 parent: 2 type: Transform - - uid: 22576 + - uid: 22596 components: - rot: -1.5707963267948966 rad pos: 14.5,-27.5 parent: 2 type: Transform - - uid: 22577 + - uid: 22597 components: - pos: -15.5,36.5 parent: 2 type: Transform - - uid: 22578 + - uid: 22598 components: - pos: -19.5,26.5 parent: 2 type: Transform - - uid: 22579 + - uid: 22599 components: - pos: -17.5,44.5 parent: 2 type: Transform - - uid: 22580 + - uid: 22600 components: - pos: -14.5,45.5 parent: 2 type: Transform - - uid: 22581 + - uid: 22601 components: - pos: 0.5,32.5 parent: 2 type: Transform - - uid: 22582 + - uid: 22602 components: - pos: 53.5,36.5 parent: 2 type: Transform - - uid: 22583 + - uid: 22603 components: - pos: 65.5,22.5 parent: 2 type: Transform - - uid: 22584 + - uid: 22604 components: - pos: -23.5,-98.5 parent: 2 type: Transform - - uid: 22585 + - uid: 22605 components: - pos: -33.5,-97.5 parent: 2 type: Transform - - uid: 22586 + - uid: 22606 components: - pos: -41.5,-89.5 parent: 2 type: Transform - - uid: 22587 + - uid: 22607 components: - pos: -43.5,-91.5 parent: 2 type: Transform - - uid: 22588 + - uid: 22608 components: - pos: -10.5,-97.5 parent: 2 type: Transform - - uid: 22589 + - uid: 22609 components: - pos: -8.5,-85.5 parent: 2 type: Transform - - uid: 22590 + - uid: 22610 components: - rot: 3.141592653589793 rad pos: 29.5,-81.5 parent: 2 type: Transform - - uid: 22591 + - uid: 22611 components: - rot: 3.141592653589793 rad pos: 30.5,-84.5 parent: 2 type: Transform - - uid: 22592 + - uid: 22612 components: - rot: 3.141592653589793 rad pos: 49.5,-88.5 parent: 2 type: Transform - - uid: 22593 + - uid: 22613 components: - rot: 3.141592653589793 rad pos: 48.5,-80.5 parent: 2 type: Transform - - uid: 22594 + - uid: 22614 components: - pos: 13.5,7.5 parent: 2 type: Transform - - uid: 22595 + - uid: 22615 components: - rot: 3.141592653589793 rad pos: 49.5,-73.5 @@ -171899,72 +171932,72 @@ entities: type: Transform - proto: RCD entities: - - uid: 22596 + - uid: 22616 components: - pos: -35.581818,-15.369191 parent: 2 type: Transform - proto: RCDAmmo entities: - - uid: 22597 + - uid: 22617 components: - pos: -35.753693,-15.681691 parent: 2 type: Transform - proto: ReagentContainerFlour entities: - - uid: 22598 + - uid: 22618 components: - pos: 2.337051,6.9047713 parent: 2 type: Transform - - uid: 22599 + - uid: 22619 components: - pos: 2.696426,6.7797713 parent: 2 type: Transform - - uid: 22600 + - uid: 22620 components: - pos: 2.399551,6.5610213 parent: 2 type: Transform - - uid: 22601 + - uid: 22621 components: - pos: 54.086075,18.83411 parent: 2 type: Transform - - uid: 22602 + - uid: 22622 components: - pos: 53.9767,18.568485 parent: 2 type: Transform - - uid: 22603 + - uid: 22623 components: - pos: 54.2892,18.568485 parent: 2 type: Transform - proto: ReagentContainerRice entities: - - uid: 22604 + - uid: 22624 components: - pos: -22.276304,44.96307 parent: 2 type: Transform - - uid: 22605 + - uid: 22625 components: - pos: -22.620054,44.759945 parent: 2 type: Transform - proto: ReagentContainerSugar entities: - - uid: 22606 + - uid: 22626 components: - pos: 4.6055,7.306335 parent: 2 type: Transform - proto: Recycler entities: - - uid: 22607 + - uid: 22627 components: - rot: 1.5707963267948966 rad pos: 17.5,-55.5 @@ -171973,3210 +172006,3210 @@ entities: - inputs: Reverse: - port: Right - uid: 25013 + uid: 25047 Forward: - port: Left - uid: 25013 + uid: 25047 Off: - port: Middle - uid: 25013 + uid: 25047 type: SignalReceiver - proto: ReinforcedPlasmaWindow entities: - - uid: 22608 + - uid: 22628 components: - rot: 3.141592653589793 rad pos: 28.5,-20.5 parent: 2 type: Transform - - uid: 22609 + - uid: 22629 components: - pos: -23.5,2.5 parent: 2 type: Transform - - uid: 22610 + - uid: 22630 components: - pos: 71.5,-27.5 parent: 2 type: Transform - - uid: 22611 + - uid: 22631 components: - pos: 29.5,26.5 parent: 2 type: Transform - - uid: 22612 + - uid: 22632 components: - pos: -15.5,2.5 parent: 2 type: Transform - - uid: 22613 + - uid: 22633 components: - rot: 3.141592653589793 rad pos: 23.5,-20.5 parent: 2 type: Transform - - uid: 22614 + - uid: 22634 components: - pos: 29.5,24.5 parent: 2 type: Transform - - uid: 22615 + - uid: 22635 components: - rot: 3.141592653589793 rad pos: 25.5,-20.5 parent: 2 type: Transform - - uid: 22616 + - uid: 22636 components: - pos: -19.5,5.5 parent: 2 type: Transform - - uid: 22617 + - uid: 22637 components: - rot: 3.141592653589793 rad pos: 22.5,-20.5 parent: 2 type: Transform - - uid: 22618 + - uid: 22638 components: - rot: 3.141592653589793 rad pos: 27.5,-20.5 parent: 2 type: Transform - - uid: 22619 + - uid: 22639 components: - rot: 3.141592653589793 rad pos: 6.5,-20.5 parent: 2 type: Transform - - uid: 22620 + - uid: 22640 components: - rot: 3.141592653589793 rad pos: 26.5,-20.5 parent: 2 type: Transform - - uid: 22621 + - uid: 22641 components: - rot: 3.141592653589793 rad pos: 24.5,-20.5 parent: 2 type: Transform - - uid: 22622 + - uid: 22642 components: - pos: 66.5,-39.5 parent: 2 type: Transform - - uid: 22623 + - uid: 22643 components: - pos: -41.5,-33.5 parent: 2 type: Transform - - uid: 22624 + - uid: 22644 components: - pos: -41.5,-35.5 parent: 2 type: Transform - - uid: 22625 + - uid: 22645 components: - pos: -41.5,-34.5 parent: 2 type: Transform - - uid: 22626 + - uid: 22646 components: - pos: -56.5,-11.5 parent: 2 type: Transform - - uid: 22627 + - uid: 22647 components: - pos: -56.5,-12.5 parent: 2 type: Transform - - uid: 22628 + - uid: 22648 components: - pos: -56.5,-13.5 parent: 2 type: Transform - - uid: 22629 + - uid: 22649 components: - pos: -56.5,-14.5 parent: 2 type: Transform - - uid: 22630 + - uid: 22650 components: - pos: -68.5,-22.5 parent: 2 type: Transform - - uid: 22631 + - uid: 22651 components: - pos: -67.5,-22.5 parent: 2 type: Transform - - uid: 22632 + - uid: 22652 components: - pos: -66.5,-22.5 parent: 2 type: Transform - - uid: 22633 + - uid: 22653 components: - pos: -65.5,-22.5 parent: 2 type: Transform - - uid: 22634 + - uid: 22654 components: - pos: -64.5,-22.5 parent: 2 type: Transform - - uid: 22635 + - uid: 22655 components: - pos: -47.5,-54.5 parent: 2 type: Transform - - uid: 22636 + - uid: 22656 components: - pos: -47.5,-50.5 parent: 2 type: Transform - - uid: 22637 + - uid: 22657 components: - pos: -47.5,-52.5 parent: 2 type: Transform - - uid: 22638 + - uid: 22658 components: - pos: -47.5,-48.5 parent: 2 type: Transform - - uid: 22639 + - uid: 22659 components: - pos: -47.5,-46.5 parent: 2 type: Transform - - uid: 22640 + - uid: 22660 components: - pos: -47.5,-44.5 parent: 2 type: Transform - - uid: 22641 + - uid: 22661 components: - pos: -47.5,-42.5 parent: 2 type: Transform - - uid: 22642 + - uid: 22662 components: - pos: -45.5,-33.5 parent: 2 type: Transform - - uid: 22643 + - uid: 22663 components: - pos: -45.5,-35.5 parent: 2 type: Transform - - uid: 22644 + - uid: 22664 components: - rot: 1.5707963267948966 rad pos: -52.5,-85.5 parent: 2 type: Transform - - uid: 22645 + - uid: 22665 components: - rot: 1.5707963267948966 rad pos: -52.5,-89.5 parent: 2 type: Transform - - uid: 22646 + - uid: 22666 components: - pos: -49.5,-87.5 parent: 2 type: Transform - - uid: 22647 + - uid: 22667 components: - pos: -50.5,-87.5 parent: 2 type: Transform - - uid: 22648 + - uid: 22668 components: - pos: -0.5,60.5 parent: 2 type: Transform - - uid: 22649 + - uid: 22669 components: - pos: -2.5,60.5 parent: 2 type: Transform - - uid: 22650 + - uid: 22670 components: - pos: 5.5,69.5 parent: 2 type: Transform - - uid: 22651 + - uid: 22671 components: - pos: -8.5,69.5 parent: 2 type: Transform - - uid: 22652 + - uid: 22672 components: - pos: -56.5,-15.5 parent: 2 type: Transform - - uid: 22653 + - uid: 22673 components: - pos: 68.5,-39.5 parent: 2 type: Transform - - uid: 22654 + - uid: 22674 components: - pos: 73.5,-30.5 parent: 2 type: Transform - - uid: 22655 + - uid: 22675 components: - pos: 73.5,-27.5 parent: 2 type: Transform - - uid: 22656 + - uid: 22676 components: - pos: 69.5,-36.5 parent: 2 type: Transform - - uid: 22657 + - uid: 22677 components: - pos: 69.5,-38.5 parent: 2 type: Transform - - uid: 22658 + - uid: 22678 components: - pos: -44.5,-37.5 parent: 2 type: Transform - - uid: 22659 + - uid: 22679 components: - pos: 71.5,-30.5 parent: 2 type: Transform - - uid: 22660 + - uid: 22680 components: - rot: 3.141592653589793 rad pos: 6.5,-22.5 parent: 2 type: Transform - - uid: 22661 + - uid: 22681 components: - rot: 3.141592653589793 rad pos: 6.5,-23.5 parent: 2 type: Transform - - uid: 22662 + - uid: 22682 components: - pos: 9.5,-18.5 parent: 2 type: Transform - - uid: 22663 + - uid: 22683 components: - rot: 3.141592653589793 rad pos: 6.5,-19.5 parent: 2 type: Transform - - uid: 26105 + - uid: 22684 components: - pos: 67.5,-32.5 parent: 2 type: Transform - proto: ReinforcedWindow entities: - - uid: 22664 + - uid: 22685 components: - rot: 3.141592653589793 rad pos: 5.5,18.5 parent: 2 type: Transform - - uid: 22665 + - uid: 22686 components: - rot: -1.5707963267948966 rad pos: -46.5,45.5 parent: 2 type: Transform - - uid: 22666 + - uid: 22687 components: - rot: -1.5707963267948966 rad pos: -47.5,45.5 parent: 2 type: Transform - - uid: 22667 + - uid: 22688 components: - pos: 69.5,-42.5 parent: 2 type: Transform - - uid: 22668 + - uid: 22689 components: - pos: 68.5,-42.5 parent: 2 type: Transform - - uid: 22669 + - uid: 22690 components: - pos: 78.5,-45.5 parent: 2 type: Transform - - uid: 22670 + - uid: 22691 components: - pos: 3.5,-39.5 parent: 2 type: Transform - - uid: 22671 + - uid: 22692 components: - pos: 70.5,-42.5 parent: 2 type: Transform - - uid: 22672 + - uid: 22693 components: - rot: 3.141592653589793 rad pos: 28.5,-62.5 parent: 2 type: Transform - - uid: 22673 + - uid: 22694 components: - rot: 3.141592653589793 rad pos: 31.5,-64.5 parent: 2 type: Transform - - uid: 22674 + - uid: 22695 components: - rot: 3.141592653589793 rad pos: 22.5,-55.5 parent: 2 type: Transform - - uid: 22675 + - uid: 22696 components: - rot: 3.141592653589793 rad pos: 33.5,-63.5 parent: 2 type: Transform - - uid: 22676 + - uid: 22697 components: - pos: 32.5,-9.5 parent: 2 type: Transform - - uid: 22677 + - uid: 22698 components: - pos: 3.5,-28.5 parent: 2 type: Transform - - uid: 22678 + - uid: 22699 components: - rot: -1.5707963267948966 rad pos: -15.5,-77.5 parent: 2 type: Transform - - uid: 22679 + - uid: 22700 components: - pos: 19.5,-15.5 parent: 2 type: Transform - - uid: 22680 + - uid: 22701 components: - pos: -18.5,-89.5 parent: 2 type: Transform - - uid: 22681 + - uid: 22702 components: - rot: 3.141592653589793 rad pos: 31.5,-33.5 parent: 2 type: Transform - - uid: 22682 + - uid: 22703 components: - pos: 7.5,-59.5 parent: 2 type: Transform - - uid: 22683 + - uid: 22704 components: - rot: 3.141592653589793 rad pos: -9.5,-76.5 parent: 2 type: Transform - - uid: 22684 + - uid: 22705 components: - rot: -1.5707963267948966 rad pos: 35.5,4.5 parent: 2 type: Transform - - uid: 22685 + - uid: 22706 components: - pos: -20.5,-91.5 parent: 2 type: Transform - - uid: 22686 + - uid: 22707 components: - pos: -1.5,-35.5 parent: 2 type: Transform - - uid: 22687 + - uid: 22708 components: - rot: 1.5707963267948966 rad pos: 1.5,-18.5 parent: 2 type: Transform - - uid: 22688 + - uid: 22709 components: - rot: 1.5707963267948966 rad pos: 39.5,52.5 parent: 2 type: Transform - - uid: 22689 + - uid: 22710 components: - rot: 1.5707963267948966 rad pos: 23.5,-46.5 parent: 2 type: Transform - - uid: 22690 + - uid: 22711 components: - pos: -17.5,-1.5 parent: 2 type: Transform - - uid: 22691 + - uid: 22712 components: - rot: -1.5707963267948966 rad pos: -13.5,-11.5 parent: 2 type: Transform - - uid: 22692 + - uid: 22713 components: - pos: -45.5,-50.5 parent: 2 type: Transform - - uid: 22693 + - uid: 22714 components: - rot: -1.5707963267948966 rad pos: -14.5,-77.5 parent: 2 type: Transform - - uid: 22694 + - uid: 22715 components: - pos: 20.5,-35.5 parent: 2 type: Transform - - uid: 22695 + - uid: 22716 components: - pos: 20.5,-36.5 parent: 2 type: Transform - - uid: 22696 + - uid: 22717 components: - pos: 43.5,11.5 parent: 2 type: Transform - - uid: 22697 + - uid: 22718 components: - pos: -16.5,-1.5 parent: 2 type: Transform - - uid: 22698 + - uid: 22719 components: - rot: -1.5707963267948966 rad pos: 5.5,-44.5 parent: 2 type: Transform - - uid: 22699 + - uid: 22720 components: - rot: -1.5707963267948966 rad pos: -10.5,-11.5 parent: 2 type: Transform - - uid: 22700 + - uid: 22721 components: - pos: 17.5,18.5 parent: 2 type: Transform - - uid: 22701 + - uid: 22722 components: - pos: -1.5,-32.5 parent: 2 type: Transform - - uid: 22702 + - uid: 22723 components: - pos: 23.5,-12.5 parent: 2 type: Transform - - uid: 22703 + - uid: 22724 components: - pos: -1.5,-34.5 parent: 2 type: Transform - - uid: 22704 + - uid: 22725 components: - rot: -1.5707963267948966 rad pos: 32.5,9.5 parent: 2 type: Transform - - uid: 22705 + - uid: 22726 components: - rot: 3.141592653589793 rad pos: 28.5,13.5 parent: 2 type: Transform - - uid: 22706 + - uid: 22727 components: - pos: 31.5,-38.5 parent: 2 type: Transform - - uid: 22707 + - uid: 22728 components: - pos: 18.5,-38.5 parent: 2 type: Transform - - uid: 22708 + - uid: 22729 components: - rot: 3.141592653589793 rad pos: 10.5,18.5 parent: 2 type: Transform - - uid: 22709 + - uid: 22730 components: - rot: 3.141592653589793 rad pos: 21.5,-55.5 parent: 2 type: Transform - - uid: 22710 + - uid: 22731 components: - rot: 3.141592653589793 rad pos: 33.5,-15.5 parent: 2 type: Transform - - uid: 22711 + - uid: 22732 components: - rot: 3.141592653589793 rad pos: 37.5,-35.5 parent: 2 type: Transform - - uid: 22712 + - uid: 22733 components: - rot: -1.5707963267948966 rad pos: 34.5,9.5 parent: 2 type: Transform - - uid: 22713 + - uid: 22734 components: - pos: 43.5,7.5 parent: 2 type: Transform - - uid: 22714 + - uid: 22735 components: - pos: 23.5,-11.5 parent: 2 type: Transform - - uid: 22715 + - uid: 22736 components: - pos: 35.5,18.5 parent: 2 type: Transform - - uid: 22716 + - uid: 22737 components: - rot: 3.141592653589793 rad pos: 39.5,5.5 parent: 2 type: Transform - - uid: 22717 + - uid: 22738 components: - rot: 3.141592653589793 rad pos: 34.5,13.5 parent: 2 type: Transform - - uid: 22718 + - uid: 22739 components: - rot: 3.141592653589793 rad pos: 31.5,-15.5 parent: 2 type: Transform - - uid: 22719 + - uid: 22740 components: - pos: 37.5,-21.5 parent: 2 type: Transform - - uid: 22720 + - uid: 22741 components: - pos: 37.5,-22.5 parent: 2 type: Transform - - uid: 22721 + - uid: 22742 components: - pos: 43.5,10.5 parent: 2 type: Transform - - uid: 22722 + - uid: 22743 components: - rot: 3.141592653589793 rad pos: 25.5,-38.5 parent: 2 type: Transform - - uid: 22723 + - uid: 22744 components: - rot: 3.141592653589793 rad pos: 26.5,-38.5 parent: 2 type: Transform - - uid: 22724 + - uid: 22745 components: - pos: 17.5,-34.5 parent: 2 type: Transform - - uid: 22725 + - uid: 22746 components: - pos: 17.5,-35.5 parent: 2 type: Transform - - uid: 22726 + - uid: 22747 components: - pos: 17.5,-36.5 parent: 2 type: Transform - - uid: 22727 + - uid: 22748 components: - pos: 19.5,-38.5 parent: 2 type: Transform - - uid: 22728 + - uid: 22749 components: - pos: 32.5,-38.5 parent: 2 type: Transform - - uid: 22729 + - uid: 22750 components: - pos: 33.5,-34.5 parent: 2 type: Transform - - uid: 22730 + - uid: 22751 components: - pos: 33.5,-36.5 parent: 2 type: Transform - - uid: 22731 + - uid: 22752 components: - pos: 33.5,-35.5 parent: 2 type: Transform - - uid: 22732 + - uid: 22753 components: - rot: -1.5707963267948966 rad pos: -9.5,-11.5 parent: 2 type: Transform - - uid: 22733 + - uid: 22754 components: - pos: 48.5,-0.5 parent: 2 type: Transform - - uid: 22734 + - uid: 22755 components: - rot: -1.5707963267948966 rad pos: -26.5,-10.5 parent: 2 type: Transform - - uid: 22735 + - uid: 22756 components: - rot: 1.5707963267948966 rad pos: -26.5,-13.5 parent: 2 type: Transform - - uid: 22736 + - uid: 22757 components: - rot: -1.5707963267948966 rad pos: 4.5,-44.5 parent: 2 type: Transform - - uid: 22737 + - uid: 22758 components: - rot: 1.5707963267948966 rad pos: 2.5,-18.5 parent: 2 type: Transform - - uid: 22738 + - uid: 22759 components: - pos: 12.5,-33.5 parent: 2 type: Transform - - uid: 22739 + - uid: 22760 components: - pos: 12.5,-32.5 parent: 2 type: Transform - - uid: 22740 + - uid: 22761 components: - pos: 2.5,-39.5 parent: 2 type: Transform - - uid: 22741 + - uid: 22762 components: - pos: -18.5,-58.5 parent: 2 type: Transform - - uid: 22742 + - uid: 22763 components: - pos: -20.5,-58.5 parent: 2 type: Transform - - uid: 22743 + - uid: 22764 components: - pos: 27.5,22.5 parent: 2 type: Transform - - uid: 22744 + - uid: 22765 components: - pos: -27.5,-89.5 parent: 2 type: Transform - - uid: 22745 + - uid: 22766 components: - pos: -48.5,-81.5 parent: 2 type: Transform - - uid: 22746 + - uid: 22767 components: - pos: -48.5,-82.5 parent: 2 type: Transform - - uid: 22747 + - uid: 22768 components: - pos: 21.5,-15.5 parent: 2 type: Transform - - uid: 22748 + - uid: 22769 components: - pos: -22.5,-3.5 parent: 2 type: Transform - - uid: 22749 + - uid: 22770 components: - pos: -16.5,-3.5 parent: 2 type: Transform - - uid: 22750 + - uid: 22771 components: - pos: 9.5,13.5 parent: 2 type: Transform - - uid: 22751 + - uid: 22772 components: - rot: -1.5707963267948966 rad pos: 27.5,20.5 parent: 2 type: Transform - - uid: 22752 + - uid: 22773 components: - rot: -1.5707963267948966 rad pos: -12.5,-11.5 parent: 2 type: Transform - - uid: 22753 + - uid: 22774 components: - rot: 3.141592653589793 rad pos: 31.5,13.5 parent: 2 type: Transform - - uid: 22754 + - uid: 22775 components: - pos: -24.5,-91.5 parent: 2 type: Transform - - uid: 22755 + - uid: 22776 components: - rot: -1.5707963267948966 rad pos: -0.5,-82.5 parent: 2 type: Transform - - uid: 22756 + - uid: 22777 components: - rot: 3.141592653589793 rad pos: 39.5,8.5 parent: 2 type: Transform - - uid: 22757 + - uid: 22778 components: - pos: 42.5,-28.5 parent: 2 type: Transform - - uid: 22758 + - uid: 22779 components: - pos: 16.5,-68.5 parent: 2 type: Transform - - uid: 22759 + - uid: 22780 components: - rot: 3.141592653589793 rad pos: -7.5,-76.5 parent: 2 type: Transform - - uid: 22760 + - uid: 22781 components: - rot: -1.5707963267948966 rad pos: -8.5,-11.5 parent: 2 type: Transform - - uid: 22761 + - uid: 22782 components: - pos: -27.5,-88.5 parent: 2 type: Transform - - uid: 22762 + - uid: 22783 components: - rot: -1.5707963267948966 rad pos: -26.5,-11.5 parent: 2 type: Transform - - uid: 22763 + - uid: 22784 components: - pos: -1.5,-31.5 parent: 2 type: Transform - - uid: 22764 + - uid: 22785 components: - pos: 1.5,-30.5 parent: 2 type: Transform - - uid: 22765 + - uid: 22786 components: - rot: -1.5707963267948966 rad pos: 0.5,-24.5 parent: 2 type: Transform - - uid: 22766 + - uid: 22787 components: - rot: -1.5707963267948966 rad pos: 1.5,-24.5 parent: 2 type: Transform - - uid: 22767 + - uid: 22788 components: - rot: -1.5707963267948966 rad pos: 2.5,-24.5 parent: 2 type: Transform - - uid: 22768 + - uid: 22789 components: - rot: 3.141592653589793 rad pos: 3.5,-44.5 parent: 2 type: Transform - - uid: 22769 + - uid: 22790 components: - rot: -1.5707963267948966 rad pos: 29.5,9.5 parent: 2 type: Transform - - uid: 22770 + - uid: 22791 components: - rot: -1.5707963267948966 rad pos: 7.5,18.5 parent: 2 type: Transform - - uid: 22771 + - uid: 22792 components: - pos: -21.5,-3.5 parent: 2 type: Transform - - uid: 22772 + - uid: 22793 components: - pos: 37.5,-36.5 parent: 2 type: Transform - - uid: 22773 + - uid: 22794 components: - rot: -1.5707963267948966 rad pos: 1.5,-74.5 parent: 2 type: Transform - - uid: 22774 + - uid: 22795 components: - pos: -29.5,45.5 parent: 2 type: Transform - - uid: 22775 + - uid: 22796 components: - pos: 9.5,14.5 parent: 2 type: Transform - - uid: 22776 + - uid: 22797 components: - pos: -25.5,-91.5 parent: 2 type: Transform - - uid: 22777 + - uid: 22798 components: - pos: -21.5,-91.5 parent: 2 type: Transform - - uid: 22778 + - uid: 22799 components: - rot: -1.5707963267948966 rad pos: 35.5,7.5 parent: 2 type: Transform - - uid: 22779 + - uid: 22800 components: - rot: -1.5707963267948966 rad pos: -31.5,-79.5 parent: 2 type: Transform - - uid: 22780 + - uid: 22801 components: - rot: -1.5707963267948966 rad pos: -31.5,-77.5 parent: 2 type: Transform - - uid: 22781 + - uid: 22802 components: - pos: 15.5,18.5 parent: 2 type: Transform - - uid: 22782 + - uid: 22803 components: - pos: 5.5,-28.5 parent: 2 type: Transform - - uid: 22783 + - uid: 22804 components: - pos: 18.5,-65.5 parent: 2 type: Transform - - uid: 22784 + - uid: 22805 components: - rot: 3.141592653589793 rad pos: 28.5,-63.5 parent: 2 type: Transform - - uid: 22785 + - uid: 22806 components: - pos: -45.5,-49.5 parent: 2 type: Transform - - uid: 22786 + - uid: 22807 components: - pos: 7.5,-61.5 parent: 2 type: Transform - - uid: 22787 + - uid: 22808 components: - rot: 3.141592653589793 rad pos: 12.5,18.5 parent: 2 type: Transform - - uid: 22788 + - uid: 22809 components: - pos: 1.5,-31.5 parent: 2 type: Transform - - uid: 22789 + - uid: 22810 components: - rot: -1.5707963267948966 rad pos: -13.5,37.5 parent: 2 type: Transform - - uid: 22790 + - uid: 22811 components: - pos: 15.5,-68.5 parent: 2 type: Transform - - uid: 22791 + - uid: 22812 components: - rot: 3.141592653589793 rad pos: 30.5,-64.5 parent: 2 type: Transform - - uid: 22792 + - uid: 22813 components: - rot: 3.141592653589793 rad pos: 33.5,-62.5 parent: 2 type: Transform - - uid: 22793 + - uid: 22814 components: - rot: -1.5707963267948966 rad pos: -2.5,-82.5 parent: 2 type: Transform - - uid: 22794 + - uid: 22815 components: - pos: -18.5,-88.5 parent: 2 type: Transform - - uid: 22795 + - uid: 22816 components: - rot: -1.5707963267948966 rad pos: 1.5,-47.5 parent: 2 type: Transform - - uid: 22796 + - uid: 22817 components: - pos: -1.5,-33.5 parent: 2 type: Transform - - uid: 22797 + - uid: 22818 components: - rot: 3.141592653589793 rad pos: 27.5,-38.5 parent: 2 type: Transform - - uid: 22798 + - uid: 22819 components: - pos: -22.5,-1.5 parent: 2 type: Transform - - uid: 22799 + - uid: 22820 components: - pos: -21.5,-1.5 parent: 2 type: Transform - - uid: 22800 + - uid: 22821 components: - pos: -17.5,-3.5 parent: 2 type: Transform - - uid: 22801 + - uid: 22822 components: - pos: 12.5,-34.5 parent: 2 type: Transform - - uid: 22802 + - uid: 22823 components: - rot: 3.141592653589793 rad pos: 20.5,-55.5 parent: 2 type: Transform - - uid: 22803 + - uid: 22824 components: - pos: 18.5,-66.5 parent: 2 type: Transform - - uid: 22804 + - uid: 22825 components: - pos: 42.5,-23.5 parent: 2 type: Transform - - uid: 22805 + - uid: 22826 components: - pos: 41.5,-28.5 parent: 2 type: Transform - - uid: 22806 + - uid: 22827 components: - pos: 41.5,-23.5 parent: 2 type: Transform - - uid: 22807 + - uid: 22828 components: - pos: -2.5,42.5 parent: 2 type: Transform - - uid: 22808 + - uid: 22829 components: - pos: 6.5,25.5 parent: 2 type: Transform - - uid: 22809 + - uid: 22830 components: - pos: 2.5,25.5 parent: 2 type: Transform - - uid: 22810 + - uid: 22831 components: - pos: 54.5,61.5 parent: 2 type: Transform - - uid: 22811 + - uid: 22832 components: - pos: 18.5,32.5 parent: 2 type: Transform - - uid: 22812 + - uid: 22833 components: - pos: 18.5,33.5 parent: 2 type: Transform - - uid: 22813 + - uid: 22834 components: - rot: -1.5707963267948966 rad pos: 7.5,35.5 parent: 2 type: Transform - - uid: 22814 + - uid: 22835 components: - pos: 4.5,25.5 parent: 2 type: Transform - - uid: 22815 + - uid: 22836 components: - rot: -1.5707963267948966 rad pos: 36.5,24.5 parent: 2 type: Transform - - uid: 22816 + - uid: 22837 components: - rot: -1.5707963267948966 rad pos: 38.5,24.5 parent: 2 type: Transform - - uid: 22817 + - uid: 22838 components: - rot: -1.5707963267948966 rad pos: 40.5,24.5 parent: 2 type: Transform - - uid: 22818 + - uid: 22839 components: - rot: 3.141592653589793 rad pos: 52.5,14.5 parent: 2 type: Transform - - uid: 22819 + - uid: 22840 components: - rot: 3.141592653589793 rad pos: 53.5,14.5 parent: 2 type: Transform - - uid: 22820 + - uid: 22841 components: - rot: 3.141592653589793 rad pos: 54.5,14.5 parent: 2 type: Transform - - uid: 22821 + - uid: 22842 components: - rot: 3.141592653589793 rad pos: 51.5,13.5 parent: 2 type: Transform - - uid: 22822 + - uid: 22843 components: - rot: 3.141592653589793 rad pos: 51.5,11.5 parent: 2 type: Transform - - uid: 22823 + - uid: 22844 components: - rot: 3.141592653589793 rad pos: 52.5,10.5 parent: 2 type: Transform - - uid: 22824 + - uid: 22845 components: - rot: 3.141592653589793 rad pos: 54.5,10.5 parent: 2 type: Transform - - uid: 22825 + - uid: 22846 components: - rot: 3.141592653589793 rad pos: 55.5,11.5 parent: 2 type: Transform - - uid: 22826 + - uid: 22847 components: - rot: 3.141592653589793 rad pos: 55.5,12.5 parent: 2 type: Transform - - uid: 22827 + - uid: 22848 components: - rot: 3.141592653589793 rad pos: 55.5,13.5 parent: 2 type: Transform - - uid: 22828 + - uid: 22849 components: - pos: 46.5,9.5 parent: 2 type: Transform - - uid: 22829 + - uid: 22850 components: - rot: -1.5707963267948966 rad pos: 42.5,24.5 parent: 2 type: Transform - - uid: 22830 + - uid: 22851 components: - rot: -1.5707963267948966 rad pos: 43.5,5.5 parent: 2 type: Transform - - uid: 22831 + - uid: 22852 components: - pos: 24.5,-58.5 parent: 2 type: Transform - - uid: 22832 + - uid: 22853 components: - pos: 24.5,-59.5 parent: 2 type: Transform - - uid: 22833 + - uid: 22854 components: - pos: 66.5,25.5 parent: 2 type: Transform - - uid: 22834 + - uid: 22855 components: - pos: 66.5,23.5 parent: 2 type: Transform - - uid: 22835 + - uid: 22856 components: - pos: 64.5,27.5 parent: 2 type: Transform - - uid: 22836 + - uid: 22857 components: - pos: 62.5,27.5 parent: 2 type: Transform - - uid: 22837 + - uid: 22858 components: - rot: 1.5707963267948966 rad pos: 68.5,-6.5 parent: 2 type: Transform - - uid: 22838 + - uid: 22859 components: - pos: 60.5,-4.5 parent: 2 type: Transform - - uid: 22839 + - uid: 22860 components: - rot: 1.5707963267948966 rad pos: 68.5,-12.5 parent: 2 type: Transform - - uid: 22840 + - uid: 22861 components: - rot: 1.5707963267948966 rad pos: 68.5,-10.5 parent: 2 type: Transform - - uid: 22841 + - uid: 22862 components: - rot: 1.5707963267948966 rad pos: 68.5,-4.5 parent: 2 type: Transform - - uid: 22842 + - uid: 22863 components: - pos: 59.5,-15.5 parent: 2 type: Transform - - uid: 22843 + - uid: 22864 components: - pos: 58.5,-15.5 parent: 2 type: Transform - - uid: 22844 + - uid: 22865 components: - pos: 56.5,-15.5 parent: 2 type: Transform - - uid: 22845 + - uid: 22866 components: - pos: 55.5,-15.5 parent: 2 type: Transform - - uid: 22846 + - uid: 22867 components: - pos: 63.5,-26.5 parent: 2 type: Transform - - uid: 22847 + - uid: 22868 components: - pos: 63.5,-24.5 parent: 2 type: Transform - - uid: 22848 + - uid: 22869 components: - pos: 61.5,-22.5 parent: 2 type: Transform - - uid: 22849 + - uid: 22870 components: - pos: 61.5,-20.5 parent: 2 type: Transform - - uid: 22850 + - uid: 22871 components: - pos: 63.5,-18.5 parent: 2 type: Transform - - uid: 22852 + - uid: 22872 components: - pos: 61.5,-24.5 parent: 2 type: Transform - - uid: 22853 + - uid: 22873 components: - pos: 63.5,-22.5 parent: 2 type: Transform - - uid: 22854 + - uid: 22874 components: - pos: 63.5,-20.5 parent: 2 type: Transform - - uid: 22855 + - uid: 22875 components: - pos: 61.5,-18.5 parent: 2 type: Transform - - uid: 22856 + - uid: 22876 components: - rot: 1.5707963267948966 rad pos: 68.5,-2.5 parent: 2 type: Transform - - uid: 22857 + - uid: 22877 components: - pos: 64.5,-37.5 parent: 2 type: Transform - - uid: 22858 + - uid: 22878 components: - pos: 78.5,-38.5 parent: 2 type: Transform - - uid: 22859 + - uid: 22879 components: - pos: 77.5,-32.5 parent: 2 type: Transform - - uid: 22860 + - uid: 22880 components: - pos: 78.5,-32.5 parent: 2 type: Transform - - uid: 22861 + - uid: 22881 components: - pos: 77.5,-38.5 parent: 2 type: Transform - - uid: 22862 + - uid: 22882 components: - rot: -1.5707963267948966 rad pos: 42.5,-31.5 parent: 2 type: Transform - - uid: 22863 + - uid: 22883 components: - pos: 56.5,-46.5 parent: 2 type: Transform - - uid: 22864 + - uid: 22884 components: - pos: 61.5,-56.5 parent: 2 type: Transform - - uid: 22865 + - uid: 22885 components: - pos: 61.5,-50.5 parent: 2 type: Transform - - uid: 22866 + - uid: 22886 components: - pos: 63.5,-50.5 parent: 2 type: Transform - - uid: 22867 + - uid: 22887 components: - pos: 62.5,-56.5 parent: 2 type: Transform - - uid: 22868 + - uid: 22888 components: - pos: 58.5,-52.5 parent: 2 type: Transform - - uid: 22869 + - uid: 22889 components: - pos: 58.5,-51.5 parent: 2 type: Transform - - uid: 22870 + - uid: 22890 components: - pos: 66.5,-52.5 parent: 2 type: Transform - - uid: 22871 + - uid: 22891 components: - pos: 66.5,-51.5 parent: 2 type: Transform - - uid: 22872 + - uid: 22892 components: - pos: 63.5,-56.5 parent: 2 type: Transform - - uid: 22873 + - uid: 22893 components: - pos: 54.5,-51.5 parent: 2 type: Transform - - uid: 22874 + - uid: 22894 components: - pos: 54.5,-52.5 parent: 2 type: Transform - - uid: 22875 + - uid: 22895 components: - pos: 54.5,-53.5 parent: 2 type: Transform - - uid: 22876 + - uid: 22896 components: - pos: 50.5,-31.5 parent: 2 type: Transform - - uid: 22877 + - uid: 22897 components: - pos: 51.5,-31.5 parent: 2 type: Transform - - uid: 22878 + - uid: 22898 components: - pos: 79.5,-35.5 parent: 2 type: Transform - - uid: 22879 + - uid: 22899 components: - pos: 58.5,-25.5 parent: 2 type: Transform - - uid: 22880 + - uid: 22900 components: - pos: 76.5,-35.5 parent: 2 type: Transform - - uid: 22881 + - uid: 22901 components: - pos: 77.5,-35.5 parent: 2 type: Transform - - uid: 22882 + - uid: 22902 components: - pos: 78.5,-35.5 parent: 2 type: Transform - - uid: 22883 + - uid: 22903 components: - pos: 78.5,-46.5 parent: 2 type: Transform - - uid: 22884 + - uid: 22904 components: - pos: -45.5,-51.5 parent: 2 type: Transform - - uid: 22885 + - uid: 22905 components: - pos: 49.5,-59.5 parent: 2 type: Transform - - uid: 22886 + - uid: 22906 components: - pos: 50.5,-59.5 parent: 2 type: Transform - - uid: 22887 + - uid: 22907 components: - pos: 52.5,-61.5 parent: 2 type: Transform - - uid: 22888 + - uid: 22908 components: - pos: 49.5,-62.5 parent: 2 type: Transform - - uid: 22889 + - uid: 22909 components: - pos: 51.5,-62.5 parent: 2 type: Transform - - uid: 22890 + - uid: 22910 components: - pos: 43.5,-69.5 parent: 2 type: Transform - - uid: 22891 + - uid: 22911 components: - pos: 42.5,-69.5 parent: 2 type: Transform - - uid: 22892 + - uid: 22912 components: - pos: 35.5,-69.5 parent: 2 type: Transform - - uid: 22893 + - uid: 22913 components: - pos: 44.5,-69.5 parent: 2 type: Transform - - uid: 22894 + - uid: 22914 components: - rot: 1.5707963267948966 rad pos: 20.5,-44.5 parent: 2 type: Transform - - uid: 22895 + - uid: 22915 components: - pos: -40.5,-12.5 parent: 2 type: Transform - - uid: 22896 + - uid: 22916 components: - pos: -40.5,-9.5 parent: 2 type: Transform - - uid: 22897 + - uid: 22917 components: - pos: -33.5,-17.5 parent: 2 type: Transform - - uid: 22898 + - uid: 22918 components: - pos: -33.5,-15.5 parent: 2 type: Transform - - uid: 22899 + - uid: 22919 components: - rot: -1.5707963267948966 rad pos: -30.5,-12.5 parent: 2 type: Transform - - uid: 22900 + - uid: 22920 components: - rot: -1.5707963267948966 rad pos: -30.5,-13.5 parent: 2 type: Transform - - uid: 22901 + - uid: 22921 components: - pos: -26.5,-9.5 parent: 2 type: Transform - - uid: 22902 + - uid: 22922 components: - rot: -1.5707963267948966 rad pos: -21.5,-35.5 parent: 2 type: Transform - - uid: 22903 + - uid: 22923 components: - pos: 58.5,-59.5 parent: 2 type: Transform - - uid: 22904 + - uid: 22924 components: - pos: 58.5,-60.5 parent: 2 type: Transform - - uid: 22905 + - uid: 22925 components: - pos: 54.5,-25.5 parent: 2 type: Transform - - uid: 22906 + - uid: 22926 components: - rot: 3.141592653589793 rad pos: 56.5,-55.5 parent: 2 type: Transform - - uid: 22907 + - uid: 22927 components: - rot: 3.141592653589793 rad pos: 59.5,-54.5 parent: 2 type: Transform - - uid: 22908 + - uid: 22928 components: - rot: 3.141592653589793 rad pos: 65.5,-54.5 parent: 2 type: Transform - - uid: 22909 + - uid: 22929 components: - rot: 1.5707963267948966 rad pos: 44.5,-85.5 parent: 2 type: Transform - - uid: 22910 + - uid: 22930 components: - pos: 41.5,-74.5 parent: 2 type: Transform - - uid: 22911 + - uid: 22931 components: - rot: -1.5707963267948966 rad pos: 37.5,-74.5 parent: 2 type: Transform - - uid: 22912 + - uid: 22932 components: - pos: 37.5,-66.5 parent: 2 type: Transform - - uid: 22913 + - uid: 22933 components: - pos: 36.5,-69.5 parent: 2 type: Transform - - uid: 22914 + - uid: 22934 components: - pos: 34.5,-69.5 parent: 2 type: Transform - - uid: 22915 + - uid: 22935 components: - pos: 37.5,-64.5 parent: 2 type: Transform - - uid: 22916 + - uid: 22936 components: - rot: 1.5707963267948966 rad pos: 34.5,-86.5 parent: 2 type: Transform - - uid: 22917 + - uid: 22937 components: - rot: 1.5707963267948966 rad pos: 34.5,-87.5 parent: 2 type: Transform - - uid: 22918 + - uid: 22938 components: - rot: 1.5707963267948966 rad pos: 46.5,-78.5 parent: 2 type: Transform - - uid: 22919 + - uid: 22939 components: - rot: 1.5707963267948966 rad pos: 16.5,-88.5 parent: 2 type: Transform - - uid: 22920 + - uid: 22940 components: - rot: 1.5707963267948966 rad pos: 13.5,-78.5 parent: 2 type: Transform - - uid: 22921 + - uid: 22941 components: - rot: 3.141592653589793 rad pos: 50.5,-81.5 parent: 2 type: Transform - - uid: 22922 + - uid: 22942 components: - rot: 3.141592653589793 rad pos: 50.5,-83.5 parent: 2 type: Transform - - uid: 22923 + - uid: 22943 components: - rot: 1.5707963267948966 rad pos: 14.5,-88.5 parent: 2 type: Transform - - uid: 22924 + - uid: 22944 components: - rot: 1.5707963267948966 rad pos: 17.5,-78.5 parent: 2 type: Transform - - uid: 22925 + - uid: 22945 components: - rot: 1.5707963267948966 rad pos: 44.5,-84.5 parent: 2 type: Transform - - uid: 22926 + - uid: 22946 components: - pos: 38.5,-74.5 parent: 2 type: Transform - - uid: 22927 + - uid: 22947 components: - pos: 39.5,-74.5 parent: 2 type: Transform - - uid: 22928 + - uid: 22948 components: - pos: 40.5,-74.5 parent: 2 type: Transform - - uid: 22929 + - uid: 22949 components: - pos: 17.5,-74.5 parent: 2 type: Transform - - uid: 22930 + - uid: 22950 components: - pos: 18.5,-74.5 parent: 2 type: Transform - - uid: 22931 + - uid: 22951 components: - pos: 14.5,-74.5 parent: 2 type: Transform - - uid: 22932 + - uid: 22952 components: - pos: 17.5,-71.5 parent: 2 type: Transform - - uid: 22933 + - uid: 22953 components: - rot: 1.5707963267948966 rad pos: 44.5,-86.5 parent: 2 type: Transform - - uid: 22934 + - uid: 22954 components: - pos: 15.5,-71.5 parent: 2 type: Transform - - uid: 22935 + - uid: 22955 components: - pos: 15.5,-74.5 parent: 2 type: Transform - - uid: 22936 + - uid: 22956 components: - rot: 3.141592653589793 rad pos: 26.5,-67.5 parent: 2 type: Transform - - uid: 22937 + - uid: 22957 components: - rot: 3.141592653589793 rad pos: 28.5,-90.5 parent: 2 type: Transform - - uid: 22938 + - uid: 22958 components: - rot: 3.141592653589793 rad pos: 24.5,-80.5 parent: 2 type: Transform - - uid: 22939 + - uid: 22959 components: - pos: 14.5,-71.5 parent: 2 type: Transform - - uid: 22940 + - uid: 22960 components: - pos: 18.5,-71.5 parent: 2 type: Transform - - uid: 22941 + - uid: 22961 components: - rot: 3.141592653589793 rad pos: 25.5,-80.5 parent: 2 type: Transform - - uid: 22942 + - uid: 22962 components: - rot: 1.5707963267948966 rad pos: 46.5,-79.5 parent: 2 type: Transform - - uid: 22943 + - uid: 22963 components: - rot: 1.5707963267948966 rad pos: 13.5,-88.5 parent: 2 type: Transform - - uid: 22944 + - uid: 22964 components: - rot: 1.5707963267948966 rad pos: 17.5,-88.5 parent: 2 type: Transform - - uid: 22945 + - uid: 22965 components: - rot: 1.5707963267948966 rad pos: 32.5,-77.5 parent: 2 type: Transform - - uid: 22946 + - uid: 22966 components: - rot: 1.5707963267948966 rad pos: 16.5,-78.5 parent: 2 type: Transform - - uid: 22947 + - uid: 22967 components: - rot: 1.5707963267948966 rad pos: 14.5,-78.5 parent: 2 type: Transform - - uid: 22948 + - uid: 22968 components: - rot: 3.141592653589793 rad pos: 25.5,-67.5 parent: 2 type: Transform - - uid: 22949 + - uid: 22969 components: - rot: -1.5707963267948966 rad pos: 50.5,-64.5 parent: 2 type: Transform - - uid: 22950 + - uid: 22970 components: - pos: -33.5,-9.5 parent: 2 type: Transform - - uid: 22951 + - uid: 22971 components: - pos: -33.5,-12.5 parent: 2 type: Transform - - uid: 22952 + - uid: 22972 components: - pos: -45.5,-47.5 parent: 2 type: Transform - - uid: 22953 + - uid: 22973 components: - rot: -1.5707963267948966 rad pos: -37.5,-14.5 parent: 2 type: Transform - - uid: 22954 + - uid: 22974 components: - pos: -45.5,-48.5 parent: 2 type: Transform - - uid: 22955 + - uid: 22975 components: - pos: 78.5,-44.5 parent: 2 type: Transform - - uid: 22956 + - uid: 22976 components: - pos: 68.5,-56.5 parent: 2 type: Transform - - uid: 22957 + - uid: 22977 components: - pos: -43.5,-13.5 parent: 2 type: Transform - - uid: 22958 + - uid: 22978 components: - rot: 3.141592653589793 rad pos: -41.5,-19.5 parent: 2 type: Transform - - uid: 22959 + - uid: 22979 components: - pos: 48.5,7.5 parent: 2 type: Transform - - uid: 22960 + - uid: 22980 components: - pos: 70.5,-54.5 parent: 2 type: Transform - - uid: 22961 + - uid: 22981 components: - pos: 61.5,-61.5 parent: 2 type: Transform - - uid: 22962 + - uid: 22982 components: - pos: 62.5,-61.5 parent: 2 type: Transform - - uid: 22963 + - uid: 22983 components: - pos: 63.5,-61.5 parent: 2 type: Transform - - uid: 22964 + - uid: 22984 components: - pos: 71.5,-64.5 parent: 2 type: Transform - - uid: 22965 + - uid: 22985 components: - pos: -38.5,-37.5 parent: 2 type: Transform - - uid: 22966 + - uid: 22986 components: - pos: -37.5,-37.5 parent: 2 type: Transform - - uid: 22967 + - uid: 22987 components: - pos: -46.5,-7.5 parent: 2 type: Transform - - uid: 22968 + - uid: 22988 components: - pos: -45.5,-18.5 parent: 2 type: Transform - - uid: 22969 + - uid: 22989 components: - rot: 3.141592653589793 rad pos: -49.5,-19.5 parent: 2 type: Transform - - uid: 22970 + - uid: 22990 components: - pos: -61.5,-31.5 parent: 2 type: Transform - - uid: 22971 + - uid: 22991 components: - pos: -65.5,-33.5 parent: 2 type: Transform - - uid: 22972 + - uid: 22992 components: - pos: -66.5,-33.5 parent: 2 type: Transform - - uid: 22973 + - uid: 22993 components: - pos: -67.5,-33.5 parent: 2 type: Transform - - uid: 22974 + - uid: 22994 components: - rot: 3.141592653589793 rad pos: -69.5,-31.5 parent: 2 type: Transform - - uid: 22975 + - uid: 22995 components: - pos: -45.5,-43.5 parent: 2 type: Transform - - uid: 22976 + - uid: 22996 components: - pos: -44.5,-39.5 parent: 2 type: Transform - - uid: 22977 + - uid: 22997 components: - pos: -45.5,-45.5 parent: 2 type: Transform - - uid: 22978 + - uid: 22998 components: - pos: -45.5,-46.5 parent: 2 type: Transform - - uid: 22979 + - uid: 22999 components: - pos: -45.5,-44.5 parent: 2 type: Transform - - uid: 22980 + - uid: 23000 components: - pos: -45.5,-42.5 parent: 2 type: Transform - - uid: 22981 + - uid: 23001 components: - pos: -35.5,-58.5 parent: 2 type: Transform - - uid: 22982 + - uid: 23002 components: - rot: 3.141592653589793 rad pos: -38.5,-59.5 parent: 2 type: Transform - - uid: 22983 + - uid: 23003 components: - pos: -44.5,-58.5 parent: 2 type: Transform - - uid: 22984 + - uid: 23004 components: - pos: -42.5,-58.5 parent: 2 type: Transform - - uid: 22985 + - uid: 23005 components: - pos: -41.5,-58.5 parent: 2 type: Transform - - uid: 22986 + - uid: 23006 components: - rot: 3.141592653589793 rad pos: -73.5,-27.5 parent: 2 type: Transform - - uid: 22987 + - uid: 23007 components: - pos: -53.5,-37.5 parent: 2 type: Transform - - uid: 22988 + - uid: 23008 components: - pos: -53.5,-36.5 parent: 2 type: Transform - - uid: 22989 + - uid: 23009 components: - rot: 1.5707963267948966 rad pos: -52.5,-60.5 parent: 2 type: Transform - - uid: 22990 + - uid: 23010 components: - rot: 1.5707963267948966 rad pos: -58.5,-60.5 parent: 2 type: Transform - - uid: 22991 + - uid: 23011 components: - rot: 1.5707963267948966 rad pos: -58.5,-59.5 parent: 2 type: Transform - - uid: 22992 + - uid: 23012 components: - pos: -58.5,-37.5 parent: 2 type: Transform - - uid: 22993 + - uid: 23013 components: - pos: -58.5,-36.5 parent: 2 type: Transform - - uid: 22994 + - uid: 23014 components: - pos: -58.5,-52.5 parent: 2 type: Transform - - uid: 22995 + - uid: 23015 components: - pos: -58.5,-51.5 parent: 2 type: Transform - - uid: 22996 + - uid: 23016 components: - pos: -58.5,-44.5 parent: 2 type: Transform - - uid: 22997 + - uid: 23017 components: - pos: -58.5,-43.5 parent: 2 type: Transform - - uid: 22998 + - uid: 23018 components: - pos: -58.5,-48.5 parent: 2 type: Transform - - uid: 22999 + - uid: 23019 components: - pos: -58.5,-47.5 parent: 2 type: Transform - - uid: 23000 + - uid: 23020 components: - pos: -41.5,-62.5 parent: 2 type: Transform - - uid: 23001 + - uid: 23021 components: - pos: -40.5,-62.5 parent: 2 type: Transform - - uid: 23002 + - uid: 23022 components: - rot: -1.5707963267948966 rad pos: -55.5,-83.5 parent: 2 type: Transform - - uid: 23003 + - uid: 23023 components: - rot: -1.5707963267948966 rad pos: -53.5,-83.5 parent: 2 type: Transform - - uid: 23004 + - uid: 23024 components: - pos: -57.5,-75.5 parent: 2 type: Transform - - uid: 23005 + - uid: 23025 components: - pos: -57.5,-76.5 parent: 2 type: Transform - - uid: 23006 + - uid: 23026 components: - pos: -57.5,-77.5 parent: 2 type: Transform - - uid: 23007 + - uid: 23027 components: - pos: -48.5,-83.5 parent: 2 type: Transform - - uid: 23008 + - uid: 23028 components: - pos: -35.5,-82.5 parent: 2 type: Transform - - uid: 23009 + - uid: 23029 components: - pos: -35.5,-81.5 parent: 2 type: Transform - - uid: 23010 + - uid: 23030 components: - pos: -35.5,-77.5 parent: 2 type: Transform - - uid: 23011 + - uid: 23031 components: - pos: -35.5,-83.5 parent: 2 type: Transform - - uid: 23012 + - uid: 23032 components: - pos: -35.5,-76.5 parent: 2 type: Transform - - uid: 23013 + - uid: 23033 components: - pos: -35.5,-78.5 parent: 2 type: Transform - - uid: 23014 + - uid: 23034 components: - pos: -40.5,-86.5 parent: 2 type: Transform - - uid: 23015 + - uid: 23035 components: - pos: -43.5,-86.5 parent: 2 type: Transform - - uid: 23016 + - uid: 23036 components: - rot: 3.141592653589793 rad pos: 19.5,-33.5 parent: 2 type: Transform - - uid: 23017 + - uid: 23037 components: - rot: 3.141592653589793 rad pos: -46.5,-39.5 parent: 2 type: Transform - - uid: 23018 + - uid: 23038 components: - rot: -1.5707963267948966 rad pos: 8.5,35.5 parent: 2 type: Transform - - uid: 23019 + - uid: 23039 components: - pos: 53.5,61.5 parent: 2 type: Transform - - uid: 23020 + - uid: 23040 components: - pos: 50.5,56.5 parent: 2 type: Transform - - uid: 23021 + - uid: 23041 components: - rot: -1.5707963267948966 rad pos: -7.5,28.5 parent: 2 type: Transform - - uid: 23022 + - uid: 23042 components: - rot: -1.5707963267948966 rad pos: -7.5,27.5 parent: 2 type: Transform - - uid: 23023 + - uid: 23043 components: - pos: 55.5,61.5 parent: 2 type: Transform - - uid: 23024 + - uid: 23044 components: - pos: -0.5,35.5 parent: 2 type: Transform - - uid: 23025 + - uid: 23045 components: - pos: -1.5,35.5 parent: 2 type: Transform - - uid: 23026 + - uid: 23046 components: - pos: -2.5,35.5 parent: 2 type: Transform - - uid: 23027 + - uid: 23047 components: - pos: 50.5,57.5 parent: 2 type: Transform - - uid: 23028 + - uid: 23048 components: - pos: 58.5,56.5 parent: 2 type: Transform - - uid: 23029 + - uid: 23049 components: - rot: -1.5707963267948966 rad pos: 7.5,29.5 parent: 2 type: Transform - - uid: 23030 + - uid: 23050 components: - rot: -1.5707963267948966 rad pos: -26.5,23.5 parent: 2 type: Transform - - uid: 23031 + - uid: 23051 components: - pos: -3.5,42.5 parent: 2 type: Transform - - uid: 23032 + - uid: 23052 components: - pos: 45.5,9.5 parent: 2 type: Transform - - uid: 23033 + - uid: 23053 components: - pos: -29.5,21.5 parent: 2 type: Transform - - uid: 23034 + - uid: 23054 components: - pos: -29.5,23.5 parent: 2 type: Transform - - uid: 23035 + - uid: 23055 components: - pos: -26.5,21.5 parent: 2 type: Transform - - uid: 23036 + - uid: 23056 components: - pos: -31.5,27.5 parent: 2 type: Transform - - uid: 23037 + - uid: 23057 components: - pos: -33.5,27.5 parent: 2 type: Transform - - uid: 23038 + - uid: 23058 components: - pos: -30.5,27.5 parent: 2 type: Transform - - uid: 23039 + - uid: 23059 components: - rot: 1.5707963267948966 rad pos: -49.5,21.5 parent: 2 type: Transform - - uid: 23040 + - uid: 23060 components: - rot: 1.5707963267948966 rad pos: -50.5,21.5 parent: 2 type: Transform - - uid: 23041 + - uid: 23061 components: - rot: -1.5707963267948966 rad pos: -50.5,18.5 parent: 2 type: Transform - - uid: 23042 + - uid: 23062 components: - rot: -1.5707963267948966 rad pos: -50.5,24.5 parent: 2 type: Transform - - uid: 23043 + - uid: 23063 components: - rot: -1.5707963267948966 rad pos: 8.5,29.5 parent: 2 type: Transform - - uid: 23044 + - uid: 23064 components: - pos: 58.5,57.5 parent: 2 type: Transform - - uid: 23045 + - uid: 23065 components: - pos: 50.5,58.5 parent: 2 type: Transform - - uid: 23046 + - uid: 23066 components: - pos: 58.5,58.5 parent: 2 type: Transform - - uid: 23047 + - uid: 23067 components: - rot: 1.5707963267948966 rad pos: 67.5,-8.5 parent: 2 type: Transform - - uid: 23048 + - uid: 23068 components: - pos: -33.5,32.5 parent: 2 type: Transform - - uid: 23049 + - uid: 23069 components: - pos: -32.5,32.5 parent: 2 type: Transform - - uid: 23050 + - uid: 23070 components: - pos: -31.5,32.5 parent: 2 type: Transform - - uid: 23051 + - uid: 23071 components: - pos: -49.5,29.5 parent: 2 type: Transform - - uid: 23052 + - uid: 23072 components: - pos: -49.5,35.5 parent: 2 type: Transform - - uid: 23053 + - uid: 23073 components: - pos: -52.5,35.5 parent: 2 type: Transform - - uid: 23054 + - uid: 23074 components: - pos: -52.5,29.5 parent: 2 type: Transform - - uid: 23055 + - uid: 23075 components: - pos: -52.5,18.5 parent: 2 type: Transform - - uid: 23056 + - uid: 23076 components: - pos: -52.5,24.5 parent: 2 type: Transform - - uid: 23057 + - uid: 23077 components: - rot: -1.5707963267948966 rad pos: -52.5,21.5 parent: 2 type: Transform - - uid: 23058 + - uid: 23078 components: - rot: -1.5707963267948966 rad pos: -53.5,21.5 parent: 2 type: Transform - - uid: 23059 + - uid: 23079 components: - rot: -1.5707963267948966 rad pos: -31.5,35.5 parent: 2 type: Transform - - uid: 23060 + - uid: 23080 components: - pos: -39.5,31.5 parent: 2 type: Transform - - uid: 23061 + - uid: 23081 components: - rot: -1.5707963267948966 rad pos: -32.5,35.5 parent: 2 type: Transform - - uid: 23062 + - uid: 23082 components: - rot: -1.5707963267948966 rad pos: -17.5,26.5 parent: 2 type: Transform - - uid: 23063 + - uid: 23083 components: - rot: 1.5707963267948966 rad pos: 66.5,-1.5 parent: 2 type: Transform - - uid: 23064 + - uid: 23084 components: - pos: -53.5,11.5 parent: 2 type: Transform - - uid: 23065 + - uid: 23085 components: - pos: -53.5,10.5 parent: 2 type: Transform - - uid: 23066 + - uid: 23086 components: - rot: -1.5707963267948966 rad pos: -49.5,13.5 parent: 2 type: Transform - - uid: 23067 + - uid: 23087 components: - rot: -1.5707963267948966 rad pos: -48.5,13.5 parent: 2 type: Transform - - uid: 23068 + - uid: 23088 components: - pos: 56.5,-25.5 parent: 2 type: Transform - - uid: 23069 + - uid: 23089 components: - rot: 1.5707963267948966 rad pos: 67.5,-7.5 parent: 2 type: Transform - - uid: 23070 + - uid: 23090 components: - rot: 1.5707963267948966 rad pos: 67.5,-9.5 parent: 2 type: Transform - - uid: 23071 + - uid: 23091 components: - rot: 1.5707963267948966 rad pos: 66.5,-0.5 parent: 2 type: Transform - - uid: 23072 + - uid: 23092 components: - rot: 1.5707963267948966 rad pos: 46.5,-77.5 parent: 2 type: Transform - - uid: 23073 + - uid: 23093 components: - pos: 25.5,24.5 parent: 2 type: Transform - - uid: 23074 + - uid: 23094 components: - pos: -45.5,-52.5 parent: 2 type: Transform - - uid: 23075 + - uid: 23095 components: - pos: -45.5,-53.5 parent: 2 type: Transform - - uid: 23076 + - uid: 23096 components: - pos: -45.5,-54.5 parent: 2 type: Transform - - uid: 23077 + - uid: 23097 components: - pos: -45.5,-55.5 parent: 2 type: Transform - - uid: 23079 + - uid: 23098 components: - pos: 24.5,-60.5 parent: 2 type: Transform - - uid: 23080 + - uid: 23099 components: - pos: 46.5,43.5 parent: 2 type: Transform - - uid: 23081 + - uid: 23100 components: - rot: 3.141592653589793 rad pos: 46.5,3.5 parent: 2 type: Transform - - uid: 23082 + - uid: 23101 components: - rot: 3.141592653589793 rad pos: 59.5,43.5 parent: 2 type: Transform - - uid: 23083 + - uid: 23102 components: - rot: -1.5707963267948966 rad pos: -13.5,39.5 parent: 2 type: Transform - - uid: 23084 + - uid: 23103 components: - pos: -14.5,56.5 parent: 2 type: Transform - - uid: 23085 + - uid: 23104 components: - pos: -11.5,69.5 parent: 2 type: Transform - - uid: 23086 + - uid: 23105 components: - pos: -14.5,55.5 parent: 2 type: Transform - - uid: 23087 + - uid: 23106 components: - pos: -16.5,55.5 parent: 2 type: Transform - - uid: 23088 + - uid: 23107 components: - pos: -16.5,56.5 parent: 2 type: Transform - - uid: 23089 + - uid: 23108 components: - pos: -23.5,61.5 parent: 2 type: Transform - - uid: 23090 + - uid: 23109 components: - pos: -23.5,62.5 parent: 2 type: Transform - - uid: 23091 + - uid: 23110 components: - pos: -11.5,68.5 parent: 2 type: Transform - - uid: 23092 + - uid: 23111 components: - pos: -11.5,67.5 parent: 2 type: Transform - - uid: 23093 + - uid: 23112 components: - pos: -14.5,73.5 parent: 2 type: Transform - - uid: 23094 + - uid: 23113 components: - pos: -20.5,73.5 parent: 2 type: Transform - - uid: 23095 + - uid: 23114 components: - pos: -11.5,73.5 parent: 2 type: Transform - - uid: 23096 + - uid: 23115 components: - pos: -23.5,63.5 parent: 2 type: Transform - - uid: 23097 + - uid: 23116 components: - pos: -23.5,73.5 parent: 2 type: Transform - - uid: 23098 + - uid: 23117 components: - rot: -1.5707963267948966 rad pos: -17.5,24.5 parent: 2 type: Transform - - uid: 23099 + - uid: 23118 components: - rot: -1.5707963267948966 rad pos: 68.5,11.5 parent: 2 type: Transform - - uid: 23100 + - uid: 23119 components: - rot: -1.5707963267948966 rad pos: 68.5,10.5 parent: 2 type: Transform - - uid: 23101 + - uid: 23120 components: - rot: -1.5707963267948966 rad pos: 68.5,8.5 parent: 2 type: Transform - - uid: 23102 + - uid: 23121 components: - rot: -1.5707963267948966 rad pos: 68.5,7.5 parent: 2 type: Transform - - uid: 23103 + - uid: 23122 components: - rot: -1.5707963267948966 rad pos: 59.5,33.5 parent: 2 type: Transform - - uid: 23104 + - uid: 23123 components: - rot: -1.5707963267948966 rad pos: 59.5,32.5 parent: 2 type: Transform - - uid: 23105 + - uid: 23124 components: - rot: -1.5707963267948966 rad pos: -1.5,27.5 parent: 2 type: Transform - - uid: 23106 + - uid: 23125 components: - rot: -1.5707963267948966 rad pos: -3.5,27.5 parent: 2 type: Transform - - uid: 23107 + - uid: 23126 components: - rot: -1.5707963267948966 rad pos: -33.5,35.5 parent: 2 type: Transform - - uid: 23108 + - uid: 23127 components: - rot: 3.141592653589793 rad pos: -32.5,37.5 parent: 2 type: Transform - - uid: 23109 + - uid: 23128 components: - rot: 1.5707963267948966 rad pos: 46.5,-17.5 parent: 2 type: Transform - - uid: 23110 + - uid: 23129 components: - rot: 1.5707963267948966 rad pos: 45.5,-17.5 parent: 2 type: Transform - - uid: 23111 + - uid: 23130 components: - pos: -46.5,13.5 parent: 2 type: Transform - - uid: 23112 + - uid: 23131 components: - pos: -1.5,42.5 parent: 2 type: Transform - - uid: 23113 + - uid: 23132 components: - rot: 1.5707963267948966 rad pos: 47.5,40.5 parent: 2 type: Transform - - uid: 23114 + - uid: 23133 components: - rot: 1.5707963267948966 rad pos: 45.5,40.5 parent: 2 type: Transform - - uid: 23115 + - uid: 23134 components: - rot: -1.5707963267948966 rad pos: 41.5,42.5 parent: 2 type: Transform - - uid: 23116 + - uid: 23135 components: - rot: 3.141592653589793 rad pos: 41.5,32.5 parent: 2 type: Transform - - uid: 23117 + - uid: 23136 components: - rot: 3.141592653589793 rad pos: 41.5,31.5 parent: 2 type: Transform - - uid: 23118 + - uid: 23137 components: - rot: 3.141592653589793 rad pos: 41.5,30.5 parent: 2 type: Transform - - uid: 23119 + - uid: 23138 components: - rot: -1.5707963267948966 rad pos: 40.5,42.5 parent: 2 type: Transform - - uid: 23120 + - uid: 23139 components: - rot: -1.5707963267948966 rad pos: 39.5,42.5 parent: 2 type: Transform - - uid: 23121 + - uid: 23140 components: - pos: 71.5,39.5 parent: 2 type: Transform - - uid: 23122 + - uid: 23141 components: - pos: 73.5,39.5 parent: 2 type: Transform - - uid: 23123 + - uid: 23142 components: - pos: 73.5,33.5 parent: 2 type: Transform - - uid: 23124 + - uid: 23143 components: - pos: 71.5,33.5 parent: 2 type: Transform - - uid: 23125 + - uid: 23144 components: - pos: -33.5,40.5 parent: 2 type: Transform - - uid: 23126 + - uid: 23145 components: - pos: -32.5,40.5 parent: 2 type: Transform - - uid: 23127 + - uid: 23146 components: - pos: -26.5,54.5 parent: 2 type: Transform - - uid: 23128 + - uid: 23147 components: - pos: -26.5,53.5 parent: 2 type: Transform - - uid: 23129 + - uid: 23148 components: - rot: -1.5707963267948966 rad pos: -16.5,-88.5 parent: 2 type: Transform - - uid: 23130 + - uid: 23149 components: - pos: -18.5,-97.5 parent: 2 type: Transform - - uid: 23131 + - uid: 23150 components: - pos: -26.5,-97.5 parent: 2 type: Transform - - uid: 23132 + - uid: 23151 components: - pos: -23.5,-94.5 parent: 2 type: Transform - - uid: 23133 + - uid: 23152 components: - pos: -22.5,-94.5 parent: 2 type: Transform - - uid: 23134 + - uid: 23153 components: - pos: -21.5,-94.5 parent: 2 type: Transform - - uid: 23135 + - uid: 23154 components: - pos: -9.5,-101.5 parent: 2 type: Transform - - uid: 23136 + - uid: 23155 components: - pos: -8.5,-101.5 parent: 2 type: Transform - - uid: 23137 + - uid: 23156 components: - pos: -6.5,-101.5 parent: 2 type: Transform - - uid: 23138 + - uid: 23157 components: - pos: -5.5,-101.5 parent: 2 type: Transform - - uid: 23139 + - uid: 23158 components: - pos: -3.5,-97.5 parent: 2 type: Transform - - uid: 23140 + - uid: 23159 components: - pos: -3.5,-98.5 parent: 2 type: Transform - - uid: 23141 + - uid: 23160 components: - rot: 3.141592653589793 rad pos: -44.5,-90.5 parent: 2 type: Transform - - uid: 23142 + - uid: 23161 components: - rot: 3.141592653589793 rad pos: -44.5,-89.5 parent: 2 type: Transform - - uid: 23143 + - uid: 23162 components: - pos: -39.5,-90.5 parent: 2 type: Transform - - uid: 23144 + - uid: 23163 components: - pos: -39.5,-89.5 parent: 2 type: Transform - - uid: 23145 + - uid: 23164 components: - pos: -34.5,-100.5 parent: 2 type: Transform - - uid: 23146 + - uid: 23165 components: - pos: -36.5,-100.5 parent: 2 type: Transform - - uid: 23147 + - uid: 23166 components: - rot: 1.5707963267948966 rad pos: -44.5,-95.5 parent: 2 type: Transform - - uid: 23148 + - uid: 23167 components: - rot: 1.5707963267948966 rad pos: -44.5,-96.5 parent: 2 type: Transform - - uid: 23149 + - uid: 23168 components: - rot: 1.5707963267948966 rad pos: -42.5,-98.5 parent: 2 type: Transform - - uid: 23150 + - uid: 23169 components: - rot: 1.5707963267948966 rad pos: -41.5,-98.5 parent: 2 type: Transform - - uid: 23151 + - uid: 23170 components: - pos: -23.5,-101.5 parent: 2 type: Transform - - uid: 23152 + - uid: 23171 components: - pos: -22.5,-101.5 parent: 2 type: Transform - - uid: 23153 + - uid: 23172 components: - pos: -21.5,-101.5 parent: 2 type: Transform - - uid: 23154 + - uid: 23173 components: - pos: -72.5,-43.5 parent: 2 type: Transform - - uid: 23155 + - uid: 23174 components: - pos: -72.5,-42.5 parent: 2 type: Transform - - uid: 23156 + - uid: 23175 components: - pos: -72.5,-44.5 parent: 2 type: Transform - - uid: 23157 + - uid: 23176 components: - pos: -70.5,-46.5 parent: 2 type: Transform - - uid: 23158 + - uid: 23177 components: - pos: -69.5,-46.5 parent: 2 type: Transform - - uid: 23159 + - uid: 23178 components: - pos: -68.5,-46.5 parent: 2 type: Transform - - uid: 23160 + - uid: 23179 components: - rot: -1.5707963267948966 rad pos: 72.5,-50.5 parent: 2 type: Transform - - uid: 23161 + - uid: 23180 components: - rot: -1.5707963267948966 rad pos: 70.5,-50.5 parent: 2 type: Transform - - uid: 23162 + - uid: 23181 components: - rot: -1.5707963267948966 rad pos: 71.5,-50.5 parent: 2 type: Transform - - uid: 23163 + - uid: 23182 components: - pos: 51.5,-68.5 parent: 2 type: Transform - - uid: 23164 + - uid: 23183 components: - rot: 3.141592653589793 rad pos: 55.5,-68.5 parent: 2 type: Transform - - uid: 23165 + - uid: 23184 components: - rot: 3.141592653589793 rad pos: 56.5,-68.5 parent: 2 type: Transform - - uid: 23166 + - uid: 23185 components: - pos: 61.5,-70.5 parent: 2 type: Transform - - uid: 23167 + - uid: 23186 components: - pos: 62.5,-70.5 parent: 2 type: Transform - - uid: 23168 + - uid: 23187 components: - rot: 3.141592653589793 rad pos: 54.5,-68.5 parent: 2 type: Transform - - uid: 23169 + - uid: 23188 components: - pos: 50.5,-68.5 parent: 2 type: Transform - - uid: 23170 + - uid: 23189 components: - pos: 3.5,-36.5 parent: 2 type: Transform - - uid: 23171 + - uid: 23190 components: - pos: 68.5,-57.5 parent: 2 type: Transform - - uid: 23172 + - uid: 23191 components: - pos: 71.5,-54.5 parent: 2 type: Transform - - uid: 23173 + - uid: 23192 components: - rot: 1.5707963267948966 rad pos: -54.5,-57.5 parent: 2 type: Transform - - uid: 23174 + - uid: 23193 components: - rot: -1.5707963267948966 rad pos: 41.5,-31.5 parent: 2 type: Transform - - uid: 23175 + - uid: 23194 components: - pos: 60.5,-70.5 parent: 2 type: Transform - - uid: 23176 + - uid: 23195 components: - pos: 9.5,-31.5 parent: 2 type: Transform - - uid: 23177 + - uid: 23196 components: - pos: 9.5,-34.5 parent: 2 type: Transform - - uid: 23178 + - uid: 23197 components: - pos: 2.5,-36.5 parent: 2 type: Transform - - uid: 23179 + - uid: 23198 components: - pos: 36.5,18.5 parent: 2 type: Transform - - uid: 23180 + - uid: 23199 components: - pos: 34.5,18.5 parent: 2 type: Transform - - uid: 23181 + - uid: 23200 components: - pos: 52.5,-57.5 parent: 2 type: Transform - - uid: 23182 + - uid: 23201 components: - pos: -51.5,-37.5 parent: 2 type: Transform - - uid: 23183 + - uid: 23202 components: - pos: -51.5,-36.5 parent: 2 type: Transform - - uid: 23184 + - uid: 23203 components: - pos: -47.5,-34.5 parent: 2 type: Transform - - uid: 23185 + - uid: 23204 components: - pos: -47.5,-35.5 parent: 2 type: Transform - - uid: 23186 + - uid: 23205 components: - rot: 3.141592653589793 rad pos: 51.5,-72.5 parent: 2 type: Transform - - uid: 23187 + - uid: 23206 components: - rot: 3.141592653589793 rad pos: 51.5,-71.5 parent: 2 type: Transform - - uid: 23188 + - uid: 23207 components: - rot: 3.141592653589793 rad pos: 24.5,-86.5 parent: 2 type: Transform - - uid: 23189 + - uid: 23208 components: - rot: 3.141592653589793 rad pos: 25.5,-86.5 parent: 2 type: Transform - - uid: 23190 + - uid: 23209 components: - rot: 3.141592653589793 rad pos: 50.5,-82.5 parent: 2 type: Transform - - uid: 23191 + - uid: 23210 components: - rot: 3.141592653589793 rad pos: 25.5,-75.5 parent: 2 type: Transform - - uid: 23192 + - uid: 23211 components: - rot: 3.141592653589793 rad pos: 50.5,-89.5 parent: 2 type: Transform - - uid: 23193 + - uid: 23212 components: - rot: 3.141592653589793 rad pos: 50.5,-90.5 parent: 2 type: Transform - - uid: 23194 + - uid: 23213 components: - rot: 3.141592653589793 rad pos: 50.5,-88.5 parent: 2 type: Transform - - uid: 23195 + - uid: 23214 components: - rot: 3.141592653589793 rad pos: 28.5,-89.5 parent: 2 type: Transform - - uid: 23196 + - uid: 23215 components: - rot: 1.5707963267948966 rad pos: 32.5,-79.5 parent: 2 type: Transform - - uid: 23197 + - uid: 23216 components: - rot: 1.5707963267948966 rad pos: 34.5,-84.5 parent: 2 type: Transform - - uid: 23198 + - uid: 23217 components: - rot: 1.5707963267948966 rad pos: 34.5,-85.5 parent: 2 type: Transform - - uid: 23199 + - uid: 23218 components: - rot: 3.141592653589793 rad pos: 26.5,-75.5 parent: 2 type: Transform - - uid: 23200 + - uid: 23219 components: - rot: 3.141592653589793 rad pos: 51.5,-73.5 parent: 2 type: Transform - - uid: 23201 + - uid: 23220 components: - rot: 1.5707963267948966 rad pos: 32.5,-78.5 parent: 2 type: Transform - - uid: 23202 + - uid: 23221 components: - rot: 1.5707963267948966 rad pos: 44.5,-87.5 parent: 2 type: Transform - - uid: 23203 + - uid: 23222 components: - rot: -1.5707963267948966 rad pos: -45.5,45.5 @@ -175184,38 +175217,38 @@ entities: type: Transform - proto: ResearchAndDevelopmentServer entities: - - uid: 23204 + - uid: 23223 components: - pos: 55.5,-49.5 parent: 2 type: Transform - proto: Retractor entities: - - uid: 23205 + - uid: 23224 components: - pos: 0.5210637,-65.43571 parent: 2 type: Transform - - uid: 23206 + - uid: 23225 components: - pos: 73.5331,-48.86455 parent: 2 type: Transform - proto: RevolverCapGun entities: - - uid: 23207 + - uid: 23226 components: - pos: 48.521713,-29.492037 parent: 2 type: Transform - - uid: 23208 + - uid: 23227 components: - pos: 3.523116,-35.41609 parent: 2 type: Transform - proto: RiceSeeds entities: - - uid: 23209 + - uid: 23228 components: - pos: -32.424732,6.232961 parent: 2 @@ -175224,40 +175257,40 @@ entities: type: EmitSoundOnCollide - proto: RockGuitarInstrument entities: - - uid: 23210 + - uid: 23229 components: - pos: -10.563177,-6.285685 parent: 2 type: Transform - proto: RollerBed entities: - - uid: 23211 + - uid: 23230 components: - pos: -29.534147,-77.30682 parent: 2 type: Transform - - uid: 23212 + - uid: 23231 components: - pos: -29.534147,-79.2912 parent: 2 type: Transform - proto: RubberStampApproved entities: - - uid: 23213 + - uid: 23232 components: - pos: 25.390406,-37.463814 parent: 2 type: Transform - proto: RubberStampDenied entities: - - uid: 23214 + - uid: 23233 components: - pos: 25.421656,-37.713814 parent: 2 type: Transform - proto: SalvageMagnet entities: - - uid: 23215 + - uid: 23234 components: - rot: -1.5707963267948966 rad pos: -46.5,32.5 @@ -175265,46 +175298,46 @@ entities: type: Transform - proto: Saw entities: - - uid: 23216 + - uid: 23235 components: - pos: 0.4741887,-64.29508 parent: 2 type: Transform - - uid: 23217 + - uid: 23236 components: - pos: 73.565475,-49.416637 parent: 2 type: Transform - proto: SawElectric entities: - - uid: 23218 + - uid: 23237 components: - pos: 0.5054387,-66.18094 parent: 2 type: Transform - proto: Scalpel entities: - - uid: 23219 + - uid: 23238 components: - pos: 0.4585637,-63.810703 parent: 2 type: Transform - proto: ScalpelShiv entities: - - uid: 23220 + - uid: 23239 components: - rot: -1.5707963267948966 rad pos: -7.55561,-100.43354 parent: 2 type: Transform - - uid: 23221 + - uid: 23240 components: - pos: 54.135303,18.76531 parent: 2 type: Transform - proto: ScreenTimerElectronics entities: - - uid: 23222 + - uid: 23241 components: - pos: -8.601834,37.95101 parent: 2 @@ -175313,39 +175346,39 @@ entities: type: EmitSoundOnCollide - proto: Screwdriver entities: - - uid: 23223 + - uid: 23242 components: - pos: 43.519844,-49.259262 parent: 2 type: Transform - - uid: 23224 + - uid: 23243 components: - pos: -25.458826,-24.443584 parent: 2 type: Transform - - uid: 23225 + - uid: 23244 components: - pos: -9.599733,-10.450774 parent: 2 type: Transform - nextAttack: 989.4976064 type: MeleeWeapon - - uid: 23226 + - uid: 23245 components: - pos: -62.449627,-28.095568 parent: 2 type: Transform - - uid: 23227 + - uid: 23246 components: - pos: -38.450848,-27.350416 parent: 2 type: Transform - - uid: 23228 + - uid: 23247 components: - pos: -8.398262,20.58135 parent: 2 type: Transform - - uid: 23229 + - uid: 23248 components: - rot: 12.566370614359172 rad pos: 72.048706,-43.392498 @@ -175355,7 +175388,7 @@ entities: type: MeleeWeapon - proto: SecurityTechFab entities: - - uid: 23230 + - uid: 23249 components: - pos: 20.5,22.5 parent: 2 @@ -175367,49 +175400,49 @@ entities: type: MaterialStorage - proto: SeedExtractor entities: - - uid: 23231 + - uid: 23250 components: - pos: -10.5,11.5 parent: 2 type: Transform - - uid: 23232 + - uid: 23251 components: - pos: 57.5,8.5 parent: 2 type: Transform - proto: ShardGlass entities: - - uid: 23233 + - uid: 23252 components: - pos: -54.711452,-83.287796 parent: 2 type: Transform - proto: ShardGlassReinforced entities: - - uid: 23234 + - uid: 23253 components: - rot: 1.5707963267948966 rad pos: -54.638016,-82.45104 parent: 2 type: Transform - - uid: 23235 + - uid: 23254 components: - rot: 3.141592653589793 rad pos: 2.3392181,49.47093 parent: 2 type: Transform - - uid: 23236 + - uid: 23255 components: - rot: 3.141592653589793 rad pos: 1.651718,49.767803 parent: 2 type: Transform - - uid: 23237 + - uid: 23256 components: - pos: 3.3860931,48.767803 parent: 2 type: Transform - - uid: 23238 + - uid: 23257 components: - rot: -1.5707963267948966 rad pos: 1.745468,48.361553 @@ -175417,31 +175450,31 @@ entities: type: Transform - proto: SheetGlass entities: - - uid: 23239 + - uid: 23258 components: - pos: 38.525932,-39.04589 parent: 2 type: Transform - count: 28 type: Stack - - uid: 23240 + - uid: 23259 components: - pos: -41.74803,-18.440893 parent: 2 type: Transform - - uid: 23241 + - uid: 23260 components: - pos: -55.463116,-25.47082 parent: 2 type: Transform - - uid: 23242 + - uid: 23261 components: - pos: -24.799974,-52.361668 parent: 2 type: Transform - proto: SheetGlass1 entities: - - uid: 23243 + - uid: 23262 components: - rot: 12.566370614359172 rad pos: 77.45773,-46.509197 @@ -175451,69 +175484,69 @@ entities: type: Stack - proto: SheetPaper1 entities: - - uid: 23244 + - uid: 23263 components: - pos: -4.555317,-48.4215 parent: 2 type: Transform - proto: SheetPlasma entities: - - uid: 23245 + - uid: 23264 components: - pos: 62.516293,-33.369144 parent: 2 type: Transform - proto: SheetPlasma1 entities: - - uid: 23246 + - uid: 23265 components: - pos: 7.512034,-46.1751 parent: 2 type: Transform - - uid: 23247 + - uid: 23266 components: - pos: 39.28695,-35.266556 parent: 2 type: Transform - - uid: 23248 + - uid: 23267 components: - pos: 39.583824,-35.40718 parent: 2 type: Transform - proto: SheetPlasteel entities: - - uid: 23249 + - uid: 23268 components: - pos: -42.49803,-16.612768 parent: 2 type: Transform - - uid: 23250 + - uid: 23269 components: - pos: -43.304523,25.592714 parent: 2 type: Transform - proto: SheetPlastic entities: - - uid: 23251 + - uid: 23270 components: - pos: 38.479057,-36.60921 parent: 2 type: Transform - - uid: 23252 + - uid: 23271 components: - pos: -40.982407,-18.456518 parent: 2 type: Transform - proto: SheetRGlass entities: - - uid: 23253 + - uid: 23272 components: - pos: -42.558216,-17.530426 parent: 2 type: Transform - proto: SheetSteel entities: - - uid: 23254 + - uid: 23273 components: - rot: 3.141592653589793 rad pos: -37.461926,-7.6284776 @@ -175521,114 +175554,114 @@ entities: type: Transform - nextSound: 504.3029646 type: EmitSoundOnCollide - - uid: 23255 + - uid: 23274 components: - pos: 38.51507,-38.238213 parent: 2 type: Transform - - uid: 23256 + - uid: 23275 components: - pos: 38.494682,-37.42171 parent: 2 type: Transform - - uid: 23257 + - uid: 23276 components: - pos: -27.53877,-10.535285 parent: 2 type: Transform - - uid: 23258 + - uid: 23277 components: - pos: -39.513657,-16.565893 parent: 2 type: Transform - - uid: 23259 + - uid: 23278 components: - pos: -39.544514,-17.164497 parent: 2 type: Transform - - uid: 23260 + - uid: 23279 components: - pos: -67.49896,-32.46533 parent: 2 type: Transform - - uid: 23261 + - uid: 23280 components: - pos: 58.50727,52.410095 parent: 2 type: Transform - - uid: 23262 + - uid: 23281 components: - pos: 77.369896,-46.771843 parent: 2 type: Transform - proto: Shovel entities: - - uid: 23263 + - uid: 23282 components: - pos: -40.5417,35.280518 parent: 2 type: Transform - - uid: 23264 + - uid: 23283 components: - pos: -40.51045,34.905518 parent: 2 type: Transform - - uid: 23265 + - uid: 23284 components: - pos: -48.500484,26.545332 parent: 2 type: Transform - proto: ShowcaseRobot entities: - - uid: 23266 + - uid: 23285 components: - pos: 62.5,-45.5 parent: 2 type: Transform - - uid: 23267 + - uid: 23286 components: - pos: -0.5,63.5 parent: 2 type: Transform - - uid: 23268 + - uid: 23287 components: - pos: -2.5,63.5 parent: 2 type: Transform - proto: ShowcaseRobotAntique entities: - - uid: 23269 + - uid: 23288 components: - pos: 61.5,-46.5 parent: 2 type: Transform - proto: ShowcaseRobotMarauder entities: - - uid: 23270 + - uid: 23289 components: - pos: 63.5,-46.5 parent: 2 type: Transform - proto: ShowcaseRobotWhite entities: - - uid: 23271 + - uid: 23290 components: - pos: 62.5,-47.5 parent: 2 type: Transform - proto: ShuttersNormal entities: - - uid: 23272 + - uid: 23291 components: - pos: -9.5,-24.5 parent: 2 type: Transform - - uid: 23273 + - uid: 23292 components: - pos: -8.5,-24.5 parent: 2 type: Transform - - uid: 23274 + - uid: 23293 components: - rot: -1.5707963267948966 rad pos: 66.5,-45.5 @@ -175638,7 +175671,7 @@ entities: type: Occluder - canCollide: False type: Physics - - SecondsUntilStateChange: -98942.01 + - SecondsUntilStateChange: -99425.305 state: Closing type: Door - airBlocked: False @@ -175646,13 +175679,13 @@ entities: - inputs: Open: - port: On - uid: 23389 + uid: 23408 Close: - port: Off - uid: 23389 + uid: 23408 Toggle: [] type: SignalReceiver - - uid: 23275 + - uid: 23294 components: - rot: -1.5707963267948966 rad pos: 66.5,-46.5 @@ -175662,7 +175695,7 @@ entities: type: Occluder - canCollide: False type: Physics - - SecondsUntilStateChange: -98942.01 + - SecondsUntilStateChange: -99425.305 state: Closing type: Door - airBlocked: False @@ -175670,21 +175703,21 @@ entities: - inputs: Open: - port: On - uid: 23389 + uid: 23408 Close: - port: Off - uid: 23389 + uid: 23408 Toggle: [] type: SignalReceiver - proto: ShuttersNormalOpen entities: - - uid: 23276 + - uid: 23295 components: - rot: -1.5707963267948966 rad pos: 15.5,13.5 parent: 2 type: Transform - - SecondsUntilStateChange: -79997.09 + - SecondsUntilStateChange: -80480.39 state: Opening type: Door - canCollide: True @@ -175696,24 +175729,24 @@ entities: - inputs: Open: - port: On - uid: 23386 + uid: 23405 Close: - port: Off - uid: 23386 + uid: 23405 Toggle: [] type: SignalReceiver - - uid: 23277 + - uid: 23296 components: - rot: -1.5707963267948966 rad pos: 15.5,9.5 parent: 2 type: Transform - - uid: 23278 + - uid: 23297 components: - pos: -32.5,32.5 parent: 2 type: Transform - - SecondsUntilStateChange: -109555.484 + - SecondsUntilStateChange: -110038.78 state: Opening type: Door - canCollide: True @@ -175725,18 +175758,18 @@ entities: - inputs: Open: - port: On - uid: 23419 + uid: 23438 Close: - port: Off - uid: 23419 + uid: 23438 Toggle: [] type: SignalReceiver - - uid: 23279 + - uid: 23298 components: - pos: 37.5,-0.5 parent: 2 type: Transform - - SecondsUntilStateChange: -17645.34 + - SecondsUntilStateChange: -18128.639 state: Opening type: Door - canCollide: True @@ -175748,13 +175781,13 @@ entities: - inputs: Open: - port: On - uid: 23388 + uid: 23407 Close: - port: Off - uid: 23388 + uid: 23407 Toggle: [] type: SignalReceiver - - uid: 23280 + - uid: 23299 components: - pos: -8.5,4.5 parent: 2 @@ -175762,19 +175795,19 @@ entities: - inputs: Open: - port: On - uid: 23437 + uid: 23456 Close: - port: Off - uid: 23437 + uid: 23456 Toggle: [] type: SignalReceiver - - uid: 23281 + - uid: 23300 components: - rot: -1.5707963267948966 rad pos: 15.5,11.5 parent: 2 type: Transform - - SecondsUntilStateChange: -79997.09 + - SecondsUntilStateChange: -80480.39 state: Opening type: Door - canCollide: True @@ -175786,19 +175819,19 @@ entities: - inputs: Open: - port: On - uid: 23386 + uid: 23405 Close: - port: Off - uid: 23386 + uid: 23405 Toggle: [] type: SignalReceiver - - uid: 23282 + - uid: 23301 components: - rot: -1.5707963267948966 rad pos: 15.5,10.5 parent: 2 type: Transform - - SecondsUntilStateChange: -79997.09 + - SecondsUntilStateChange: -80480.39 state: Opening type: Door - canCollide: True @@ -175810,19 +175843,19 @@ entities: - inputs: Open: - port: On - uid: 23386 + uid: 23405 Close: - port: Off - uid: 23386 + uid: 23405 Toggle: [] type: SignalReceiver - - uid: 23283 + - uid: 23302 components: - rot: -1.5707963267948966 rad pos: -2.5,-5.5 parent: 2 type: Transform - - SecondsUntilStateChange: -59666.258 + - SecondsUntilStateChange: -60149.555 state: Opening type: Door - canCollide: True @@ -175834,18 +175867,18 @@ entities: - inputs: Open: - port: On - uid: 23436 + uid: 23455 Close: - port: Off - uid: 23436 + uid: 23455 Toggle: [] type: SignalReceiver - - uid: 23284 + - uid: 23303 components: - pos: -0.5,-2.5 parent: 2 type: Transform - - SecondsUntilStateChange: -59666.258 + - SecondsUntilStateChange: -60149.555 state: Opening type: Door - canCollide: True @@ -175857,18 +175890,18 @@ entities: - inputs: Open: - port: On - uid: 23436 + uid: 23455 Close: - port: Off - uid: 23436 + uid: 23455 Toggle: [] type: SignalReceiver - - uid: 23285 + - uid: 23304 components: - pos: 18.5,15.5 parent: 2 type: Transform - - SecondsUntilStateChange: -79997.09 + - SecondsUntilStateChange: -80480.39 state: Opening type: Door - canCollide: True @@ -175880,18 +175913,18 @@ entities: - inputs: Open: - port: On - uid: 23386 + uid: 23405 Close: - port: Off - uid: 23386 + uid: 23405 Toggle: [] type: SignalReceiver - - uid: 23286 + - uid: 23305 components: - pos: 17.5,15.5 parent: 2 type: Transform - - SecondsUntilStateChange: -79997.09 + - SecondsUntilStateChange: -80480.39 state: Opening type: Door - canCollide: True @@ -175903,13 +175936,13 @@ entities: - inputs: Open: - port: On - uid: 23386 + uid: 23405 Close: - port: Off - uid: 23386 + uid: 23405 Toggle: [] type: SignalReceiver - - uid: 23287 + - uid: 23306 components: - pos: -6.5,4.5 parent: 2 @@ -175917,19 +175950,19 @@ entities: - inputs: Open: - port: On - uid: 23437 + uid: 23456 Close: - port: Off - uid: 23437 + uid: 23456 Toggle: [] type: SignalReceiver - - uid: 23288 + - uid: 23307 components: - rot: 1.5707963267948966 rad pos: 48.5,6.5 parent: 2 type: Transform - - SecondsUntilStateChange: -15191.17 + - SecondsUntilStateChange: -15674.467 state: Opening type: Door - canCollide: True @@ -175941,19 +175974,19 @@ entities: - inputs: Open: - port: On - uid: 23385 + uid: 23404 Close: - port: Off - uid: 23385 + uid: 23404 Toggle: [] type: SignalReceiver - - uid: 23289 + - uid: 23308 components: - rot: -1.5707963267948966 rad pos: 35.5,4.5 parent: 2 type: Transform - - SecondsUntilStateChange: -79084.37 + - SecondsUntilStateChange: -79567.664 state: Opening type: Door - canCollide: True @@ -175965,19 +175998,19 @@ entities: - inputs: Open: - port: On - uid: 23429 + uid: 23448 Close: - port: Off - uid: 23429 + uid: 23448 Toggle: [] type: SignalReceiver - - uid: 23290 + - uid: 23309 components: - rot: -1.5707963267948966 rad pos: 15.5,12.5 parent: 2 type: Transform - - SecondsUntilStateChange: -79997.09 + - SecondsUntilStateChange: -80480.39 state: Opening type: Door - canCollide: True @@ -175989,18 +176022,18 @@ entities: - inputs: Open: - port: On - uid: 23386 + uid: 23405 Close: - port: Off - uid: 23386 + uid: 23405 Toggle: [] type: SignalReceiver - - uid: 23291 + - uid: 23310 components: - pos: 61.5,-56.5 parent: 2 type: Transform - - SecondsUntilStateChange: -109469.75 + - SecondsUntilStateChange: -109953.05 state: Opening type: Door - canCollide: True @@ -176012,19 +176045,19 @@ entities: - inputs: Open: - port: On - uid: 23430 + uid: 23449 Close: - port: Off - uid: 23430 + uid: 23449 Toggle: [] type: SignalReceiver - - uid: 23292 + - uid: 23311 components: - rot: -1.5707963267948966 rad pos: 15.5,14.5 parent: 2 type: Transform - - SecondsUntilStateChange: -79997.09 + - SecondsUntilStateChange: -80480.39 state: Opening type: Door - canCollide: True @@ -176036,18 +176069,18 @@ entities: - inputs: Open: - port: On - uid: 23386 + uid: 23405 Close: - port: Off - uid: 23386 + uid: 23405 Toggle: [] type: SignalReceiver - - uid: 23293 + - uid: 23312 components: - pos: 45.5,9.5 parent: 2 type: Transform - - SecondsUntilStateChange: -15191.17 + - SecondsUntilStateChange: -15674.467 state: Opening type: Door - canCollide: True @@ -176059,18 +176092,18 @@ entities: - inputs: Open: - port: On - uid: 23385 + uid: 23404 Close: - port: Off - uid: 23385 + uid: 23404 Toggle: [] type: SignalReceiver - - uid: 23294 + - uid: 23313 components: - pos: 43.5,7.5 parent: 2 type: Transform - - SecondsUntilStateChange: -15191.17 + - SecondsUntilStateChange: -15674.467 state: Opening type: Door - canCollide: True @@ -176082,18 +176115,18 @@ entities: - inputs: Open: - port: On - uid: 23385 + uid: 23404 Close: - port: Off - uid: 23385 + uid: 23404 Toggle: [] type: SignalReceiver - - uid: 23295 + - uid: 23314 components: - pos: 62.5,-56.5 parent: 2 type: Transform - - SecondsUntilStateChange: -109469.75 + - SecondsUntilStateChange: -109953.05 state: Opening type: Door - canCollide: True @@ -176105,18 +176138,18 @@ entities: - inputs: Open: - port: On - uid: 23430 + uid: 23449 Close: - port: Off - uid: 23430 + uid: 23449 Toggle: [] type: SignalReceiver - - uid: 23296 + - uid: 23315 components: - pos: 63.5,-56.5 parent: 2 type: Transform - - SecondsUntilStateChange: -109469.75 + - SecondsUntilStateChange: -109953.05 state: Opening type: Door - canCollide: True @@ -176128,18 +176161,18 @@ entities: - inputs: Open: - port: On - uid: 23430 + uid: 23449 Close: - port: Off - uid: 23430 + uid: 23449 Toggle: [] type: SignalReceiver - - uid: 23297 + - uid: 23316 components: - pos: 22.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -104561.16 + - SecondsUntilStateChange: -105044.45 state: Opening type: Door - canCollide: True @@ -176151,18 +176184,18 @@ entities: - inputs: Open: - port: On - uid: 23418 + uid: 23437 Close: - port: Off - uid: 23418 + uid: 23437 Toggle: [] type: SignalReceiver - - uid: 23298 + - uid: 23317 components: - pos: -30.5,27.5 parent: 2 type: Transform - - SecondsUntilStateChange: -109555.484 + - SecondsUntilStateChange: -110038.78 state: Opening type: Door - canCollide: True @@ -176174,18 +176207,18 @@ entities: - inputs: Open: - port: On - uid: 23419 + uid: 23438 Close: - port: Off - uid: 23419 + uid: 23438 Toggle: [] type: SignalReceiver - - uid: 23299 + - uid: 23318 components: - pos: 29.5,9.5 parent: 2 type: Transform - - SecondsUntilStateChange: -79084.37 + - SecondsUntilStateChange: -79567.664 state: Opening type: Door - canCollide: True @@ -176197,18 +176230,18 @@ entities: - inputs: Open: - port: On - uid: 23429 + uid: 23448 Close: - port: Off - uid: 23429 + uid: 23448 Toggle: [] type: SignalReceiver - - uid: 23300 + - uid: 23319 components: - pos: 34.5,9.5 parent: 2 type: Transform - - SecondsUntilStateChange: -79084.37 + - SecondsUntilStateChange: -79567.664 state: Opening type: Door - canCollide: True @@ -176220,18 +176253,18 @@ entities: - inputs: Open: - port: On - uid: 23429 + uid: 23448 Close: - port: Off - uid: 23429 + uid: 23448 Toggle: [] type: SignalReceiver - - uid: 23301 + - uid: 23320 components: - pos: -31.5,27.5 parent: 2 type: Transform - - SecondsUntilStateChange: -109555.484 + - SecondsUntilStateChange: -110038.78 state: Opening type: Door - canCollide: True @@ -176243,19 +176276,19 @@ entities: - inputs: Open: - port: On - uid: 23419 + uid: 23438 Close: - port: Off - uid: 23419 + uid: 23438 Toggle: [] type: SignalReceiver - - uid: 23302 + - uid: 23321 components: - rot: -1.5707963267948966 rad pos: 35.5,7.5 parent: 2 type: Transform - - SecondsUntilStateChange: -79084.37 + - SecondsUntilStateChange: -79567.664 state: Opening type: Door - canCollide: True @@ -176267,18 +176300,18 @@ entities: - inputs: Open: - port: On - uid: 23429 + uid: 23448 Close: - port: Off - uid: 23429 + uid: 23448 Toggle: [] type: SignalReceiver - - uid: 23303 + - uid: 23322 components: - pos: -33.5,27.5 parent: 2 type: Transform - - SecondsUntilStateChange: -109555.484 + - SecondsUntilStateChange: -110038.78 state: Opening type: Door - canCollide: True @@ -176290,18 +176323,18 @@ entities: - inputs: Open: - port: On - uid: 23419 + uid: 23438 Close: - port: Off - uid: 23419 + uid: 23438 Toggle: [] type: SignalReceiver - - uid: 23304 + - uid: 23323 components: - pos: -49.5,13.5 parent: 2 type: Transform - - SecondsUntilStateChange: -69734.305 + - SecondsUntilStateChange: -70217.6 state: Opening type: Door - canCollide: True @@ -176313,18 +176346,18 @@ entities: - inputs: Open: - port: On - uid: 23404 + uid: 23423 Close: - port: Off - uid: 23404 + uid: 23423 Toggle: [] type: SignalReceiver - - uid: 23305 + - uid: 23324 components: - pos: -48.5,13.5 parent: 2 type: Transform - - SecondsUntilStateChange: -69734.305 + - SecondsUntilStateChange: -70217.6 state: Opening type: Door - canCollide: True @@ -176336,18 +176369,18 @@ entities: - inputs: Open: - port: On - uid: 23404 + uid: 23423 Close: - port: Off - uid: 23404 + uid: 23423 Toggle: [] type: SignalReceiver - - uid: 23306 + - uid: 23325 components: - pos: -31.5,32.5 parent: 2 type: Transform - - SecondsUntilStateChange: -109555.484 + - SecondsUntilStateChange: -110038.78 state: Opening type: Door - canCollide: True @@ -176359,18 +176392,18 @@ entities: - inputs: Open: - port: On - uid: 23419 + uid: 23438 Close: - port: Off - uid: 23419 + uid: 23438 Toggle: [] type: SignalReceiver - - uid: 23307 + - uid: 23326 components: - pos: 32.5,9.5 parent: 2 type: Transform - - SecondsUntilStateChange: -79084.37 + - SecondsUntilStateChange: -79567.664 state: Opening type: Door - canCollide: True @@ -176382,18 +176415,18 @@ entities: - inputs: Open: - port: On - uid: 23429 + uid: 23448 Close: - port: Off - uid: 23429 + uid: 23448 Toggle: [] type: SignalReceiver - - uid: 23308 + - uid: 23327 components: - pos: 39.5,-0.5 parent: 2 type: Transform - - SecondsUntilStateChange: -17645.34 + - SecondsUntilStateChange: -18128.639 state: Opening type: Door - canCollide: True @@ -176405,18 +176438,18 @@ entities: - inputs: Open: - port: On - uid: 23388 + uid: 23407 Close: - port: Off - uid: 23388 + uid: 23407 Toggle: [] type: SignalReceiver - - uid: 23309 + - uid: 23328 components: - pos: -33.5,32.5 parent: 2 type: Transform - - SecondsUntilStateChange: -109555.484 + - SecondsUntilStateChange: -110038.78 state: Opening type: Door - canCollide: True @@ -176428,18 +176461,18 @@ entities: - inputs: Open: - port: On - uid: 23419 + uid: 23438 Close: - port: Off - uid: 23419 + uid: 23438 Toggle: [] type: SignalReceiver - - uid: 23310 + - uid: 23329 components: - pos: -46.5,13.5 parent: 2 type: Transform - - SecondsUntilStateChange: -69734.305 + - SecondsUntilStateChange: -70217.6 state: Opening type: Door - canCollide: True @@ -176451,18 +176484,18 @@ entities: - inputs: Open: - port: On - uid: 23404 + uid: 23423 Close: - port: Off - uid: 23404 + uid: 23423 Toggle: [] type: SignalReceiver - - uid: 23311 + - uid: 23330 components: - pos: -47.5,13.5 parent: 2 type: Transform - - SecondsUntilStateChange: -69734.305 + - SecondsUntilStateChange: -70217.6 state: Opening type: Door - canCollide: True @@ -176474,18 +176507,18 @@ entities: - inputs: Open: - port: On - uid: 23404 + uid: 23423 Close: - port: Off - uid: 23404 + uid: 23423 Toggle: [] type: SignalReceiver - - uid: 23312 + - uid: 23331 components: - pos: 43.5,5.5 parent: 2 type: Transform - - SecondsUntilStateChange: -15191.17 + - SecondsUntilStateChange: -15674.467 state: Opening type: Door - canCollide: True @@ -176497,18 +176530,18 @@ entities: - inputs: Open: - port: On - uid: 23385 + uid: 23404 Close: - port: Off - uid: 23385 + uid: 23404 Toggle: [] type: SignalReceiver - - uid: 23313 + - uid: 23332 components: - pos: 59.5,-54.5 parent: 2 type: Transform - - SecondsUntilStateChange: -109469.75 + - SecondsUntilStateChange: -109953.05 state: Opening type: Door - canCollide: True @@ -176520,18 +176553,18 @@ entities: - inputs: Open: - port: On - uid: 23430 + uid: 23449 Close: - port: Off - uid: 23430 + uid: 23449 Toggle: [] type: SignalReceiver - - uid: 23314 + - uid: 23333 components: - pos: 65.5,-54.5 parent: 2 type: Transform - - SecondsUntilStateChange: -109469.75 + - SecondsUntilStateChange: -109953.05 state: Opening type: Door - canCollide: True @@ -176543,19 +176576,19 @@ entities: - inputs: Open: - port: On - uid: 23430 + uid: 23449 Close: - port: Off - uid: 23430 + uid: 23449 Toggle: [] type: SignalReceiver - - uid: 23315 + - uid: 23334 components: - rot: 1.5707963267948966 rad pos: 66.5,-51.5 parent: 2 type: Transform - - SecondsUntilStateChange: -109469.75 + - SecondsUntilStateChange: -109953.05 state: Opening type: Door - canCollide: True @@ -176567,19 +176600,19 @@ entities: - inputs: Open: - port: On - uid: 23430 + uid: 23449 Close: - port: Off - uid: 23430 + uid: 23449 Toggle: [] type: SignalReceiver - - uid: 23316 + - uid: 23335 components: - rot: 1.5707963267948966 rad pos: 66.5,-52.5 parent: 2 type: Transform - - SecondsUntilStateChange: -109469.75 + - SecondsUntilStateChange: -109953.05 state: Opening type: Door - canCollide: True @@ -176591,19 +176624,19 @@ entities: - inputs: Open: - port: On - uid: 23430 + uid: 23449 Close: - port: Off - uid: 23430 + uid: 23449 Toggle: [] type: SignalReceiver - - uid: 23317 + - uid: 23336 components: - rot: -1.5707963267948966 rad pos: 58.5,-51.5 parent: 2 type: Transform - - SecondsUntilStateChange: -109469.75 + - SecondsUntilStateChange: -109953.05 state: Opening type: Door - canCollide: True @@ -176615,19 +176648,19 @@ entities: - inputs: Open: - port: On - uid: 23430 + uid: 23449 Close: - port: Off - uid: 23430 + uid: 23449 Toggle: [] type: SignalReceiver - - uid: 23318 + - uid: 23337 components: - rot: -1.5707963267948966 rad pos: 58.5,-52.5 parent: 2 type: Transform - - SecondsUntilStateChange: -109469.75 + - SecondsUntilStateChange: -109953.05 state: Opening type: Door - canCollide: True @@ -176639,18 +176672,18 @@ entities: - inputs: Open: - port: On - uid: 23430 + uid: 23449 Close: - port: Off - uid: 23430 + uid: 23449 Toggle: [] type: SignalReceiver - - uid: 23319 + - uid: 23338 components: - pos: 61.5,-50.5 parent: 2 type: Transform - - SecondsUntilStateChange: -109469.75 + - SecondsUntilStateChange: -109953.05 state: Opening type: Door - canCollide: True @@ -176662,18 +176695,18 @@ entities: - inputs: Open: - port: On - uid: 23430 + uid: 23449 Close: - port: Off - uid: 23430 + uid: 23449 Toggle: [] type: SignalReceiver - - uid: 23320 + - uid: 23339 components: - pos: 63.5,-50.5 parent: 2 type: Transform - - SecondsUntilStateChange: -109469.75 + - SecondsUntilStateChange: -109953.05 state: Opening type: Door - canCollide: True @@ -176685,18 +176718,18 @@ entities: - inputs: Open: - port: On - uid: 23430 + uid: 23449 Close: - port: Off - uid: 23430 + uid: 23449 Toggle: [] type: SignalReceiver - - uid: 23321 + - uid: 23340 components: - pos: -20.5,-58.5 parent: 2 type: Transform - - SecondsUntilStateChange: -109410.555 + - SecondsUntilStateChange: -109893.85 state: Opening type: Door - canCollide: True @@ -176708,18 +176741,18 @@ entities: - inputs: Open: - port: On - uid: 23431 + uid: 23450 Close: - port: Off - uid: 23431 + uid: 23450 Toggle: [] type: SignalReceiver - - uid: 23322 + - uid: 23341 components: - pos: -18.5,-58.5 parent: 2 type: Transform - - SecondsUntilStateChange: -109410.555 + - SecondsUntilStateChange: -109893.85 state: Opening type: Door - canCollide: True @@ -176731,18 +176764,18 @@ entities: - inputs: Open: - port: On - uid: 23431 + uid: 23450 Close: - port: Off - uid: 23431 + uid: 23450 Toggle: [] type: SignalReceiver - - uid: 23323 + - uid: 23342 components: - pos: -37.5,-14.5 parent: 2 type: Transform - - SecondsUntilStateChange: -59623.406 + - SecondsUntilStateChange: -60106.703 state: Opening type: Door - canCollide: True @@ -176754,19 +176787,19 @@ entities: - inputs: Open: - port: On - uid: 23432 + uid: 23451 Close: - port: Off - uid: 23432 + uid: 23451 Toggle: [] type: SignalReceiver - - uid: 23324 + - uid: 23343 components: - rot: -1.5707963267948966 rad pos: -33.5,-15.5 parent: 2 type: Transform - - SecondsUntilStateChange: -59623.406 + - SecondsUntilStateChange: -60106.703 state: Opening type: Door - canCollide: True @@ -176778,19 +176811,19 @@ entities: - inputs: Open: - port: On - uid: 23432 + uid: 23451 Close: - port: Off - uid: 23432 + uid: 23451 Toggle: [] type: SignalReceiver - - uid: 23325 + - uid: 23344 components: - rot: -1.5707963267948966 rad pos: -33.5,-17.5 parent: 2 type: Transform - - SecondsUntilStateChange: -59623.406 + - SecondsUntilStateChange: -60106.703 state: Opening type: Door - canCollide: True @@ -176802,18 +176835,18 @@ entities: - inputs: Open: - port: On - uid: 23432 + uid: 23451 Close: - port: Off - uid: 23432 + uid: 23451 Toggle: [] type: SignalReceiver - - uid: 23326 + - uid: 23345 components: - pos: 0.5,-2.5 parent: 2 type: Transform - - SecondsUntilStateChange: -59666.258 + - SecondsUntilStateChange: -60149.555 state: Opening type: Door - canCollide: True @@ -176825,18 +176858,18 @@ entities: - inputs: Open: - port: On - uid: 23436 + uid: 23455 Close: - port: Off - uid: 23436 + uid: 23455 Toggle: [] type: SignalReceiver - - uid: 23327 + - uid: 23346 components: - pos: 1.5,-2.5 parent: 2 type: Transform - - SecondsUntilStateChange: -59666.258 + - SecondsUntilStateChange: -60149.555 state: Opening type: Door - canCollide: True @@ -176848,19 +176881,19 @@ entities: - inputs: Open: - port: On - uid: 23436 + uid: 23455 Close: - port: Off - uid: 23436 + uid: 23455 Toggle: [] type: SignalReceiver - - uid: 23328 + - uid: 23347 components: - rot: -1.5707963267948966 rad pos: 7.5,9.5 parent: 2 type: Transform - - SecondsUntilStateChange: -48819.336 + - SecondsUntilStateChange: -49302.633 state: Opening type: Door - canCollide: True @@ -176872,19 +176905,19 @@ entities: - inputs: Open: - port: On - uid: 23434 + uid: 23453 Close: - port: Off - uid: 23434 + uid: 23453 Toggle: [] type: SignalReceiver - - uid: 23329 + - uid: 23348 components: - rot: -1.5707963267948966 rad pos: 7.5,8.5 parent: 2 type: Transform - - SecondsUntilStateChange: -48819.336 + - SecondsUntilStateChange: -49302.633 state: Opening type: Door - canCollide: True @@ -176896,19 +176929,19 @@ entities: - inputs: Open: - port: On - uid: 23434 + uid: 23453 Close: - port: Off - uid: 23434 + uid: 23453 Toggle: [] type: SignalReceiver - - uid: 23330 + - uid: 23349 components: - rot: -1.5707963267948966 rad pos: 7.5,7.5 parent: 2 type: Transform - - SecondsUntilStateChange: -48819.336 + - SecondsUntilStateChange: -49302.633 state: Opening type: Door - canCollide: True @@ -176920,18 +176953,18 @@ entities: - inputs: Open: - port: On - uid: 23434 + uid: 23453 Close: - port: Off - uid: 23434 + uid: 23453 Toggle: [] type: SignalReceiver - - uid: 23331 + - uid: 23350 components: - pos: 2.5,4.5 parent: 2 type: Transform - - SecondsUntilStateChange: -48819.336 + - SecondsUntilStateChange: -49302.633 state: Opening type: Door - canCollide: True @@ -176943,13 +176976,13 @@ entities: - inputs: Open: - port: On - uid: 23434 + uid: 23453 Close: - port: Off - uid: 23434 + uid: 23453 Toggle: [] type: SignalReceiver - - uid: 23332 + - uid: 23351 components: - pos: 1.5,4.5 parent: 2 @@ -176957,18 +176990,18 @@ entities: - inputs: Open: - port: On - uid: 23434 + uid: 23453 Close: - port: Off - uid: 23434 + uid: 23453 Toggle: [] type: SignalReceiver - - uid: 23333 + - uid: 23352 components: - pos: 0.5,4.5 parent: 2 type: Transform - - SecondsUntilStateChange: -48819.336 + - SecondsUntilStateChange: -49302.633 state: Opening type: Door - canCollide: True @@ -176980,18 +177013,18 @@ entities: - inputs: Open: - port: On - uid: 23434 + uid: 23453 Close: - port: Off - uid: 23434 + uid: 23453 Toggle: [] type: SignalReceiver - - uid: 23334 + - uid: 23353 components: - pos: 5.5,11.5 parent: 2 type: Transform - - SecondsUntilStateChange: -48819.336 + - SecondsUntilStateChange: -49302.633 state: Opening type: Door - canCollide: True @@ -177003,18 +177036,18 @@ entities: - inputs: Open: - port: On - uid: 23434 + uid: 23453 Close: - port: Off - uid: 23434 + uid: 23453 Toggle: [] type: SignalReceiver - - uid: 23335 + - uid: 23354 components: - pos: 4.5,11.5 parent: 2 type: Transform - - SecondsUntilStateChange: -48819.336 + - SecondsUntilStateChange: -49302.633 state: Opening type: Door - canCollide: True @@ -177026,18 +177059,18 @@ entities: - inputs: Open: - port: On - uid: 23434 + uid: 23453 Close: - port: Off - uid: 23434 + uid: 23453 Toggle: [] type: SignalReceiver - - uid: 23336 + - uid: 23355 components: - pos: 23.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -104561.16 + - SecondsUntilStateChange: -105044.45 state: Opening type: Door - canCollide: True @@ -177049,18 +177082,18 @@ entities: - inputs: Open: - port: On - uid: 23418 + uid: 23437 Close: - port: Off - uid: 23418 + uid: 23437 Toggle: [] type: SignalReceiver - - uid: 23337 + - uid: 23356 components: - pos: 24.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -104561.16 + - SecondsUntilStateChange: -105044.45 state: Opening type: Door - canCollide: True @@ -177072,18 +177105,18 @@ entities: - inputs: Open: - port: On - uid: 23418 + uid: 23437 Close: - port: Off - uid: 23418 + uid: 23437 Toggle: [] type: SignalReceiver - - uid: 23338 + - uid: 23357 components: - pos: 25.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -104561.16 + - SecondsUntilStateChange: -105044.45 state: Opening type: Door - canCollide: True @@ -177095,18 +177128,18 @@ entities: - inputs: Open: - port: On - uid: 23418 + uid: 23437 Close: - port: Off - uid: 23418 + uid: 23437 Toggle: [] type: SignalReceiver - - uid: 23339 + - uid: 23358 components: - pos: 26.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -104561.16 + - SecondsUntilStateChange: -105044.45 state: Opening type: Door - canCollide: True @@ -177118,18 +177151,18 @@ entities: - inputs: Open: - port: On - uid: 23418 + uid: 23437 Close: - port: Off - uid: 23418 + uid: 23437 Toggle: [] type: SignalReceiver - - uid: 23340 + - uid: 23359 components: - pos: 27.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -104561.16 + - SecondsUntilStateChange: -105044.45 state: Opening type: Door - canCollide: True @@ -177141,18 +177174,18 @@ entities: - inputs: Open: - port: On - uid: 23418 + uid: 23437 Close: - port: Off - uid: 23418 + uid: 23437 Toggle: [] type: SignalReceiver - - uid: 23341 + - uid: 23360 components: - pos: 28.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -104561.16 + - SecondsUntilStateChange: -105044.45 state: Opening type: Door - canCollide: True @@ -177164,19 +177197,19 @@ entities: - inputs: Open: - port: On - uid: 23418 + uid: 23437 Close: - port: Off - uid: 23418 + uid: 23437 Toggle: [] type: SignalReceiver - - uid: 23342 + - uid: 23361 components: - rot: -1.5707963267948966 rad pos: -2.5,-4.5 parent: 2 type: Transform - - SecondsUntilStateChange: -59666.258 + - SecondsUntilStateChange: -60149.555 state: Opening type: Door - canCollide: True @@ -177188,19 +177221,19 @@ entities: - inputs: Open: - port: On - uid: 23436 + uid: 23455 Close: - port: Off - uid: 23436 + uid: 23455 Toggle: [] type: SignalReceiver - - uid: 23343 + - uid: 23362 components: - rot: -1.5707963267948966 rad pos: 1.5,-46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -15060.927 + - SecondsUntilStateChange: -15544.224 state: Opening type: Door - canCollide: True @@ -177212,18 +177245,18 @@ entities: - inputs: Open: - port: On - uid: 23384 + uid: 23403 Close: - port: Off - uid: 23384 + uid: 23403 Toggle: [] type: SignalReceiver - - uid: 23344 + - uid: 23363 components: - pos: 34.5,18.5 parent: 2 type: Transform - - SecondsUntilStateChange: -77579.96 + - SecondsUntilStateChange: -78063.26 state: Opening type: Door - canCollide: True @@ -177235,18 +177268,18 @@ entities: - inputs: Open: - port: On - uid: 23435 + uid: 23454 Close: - port: Off - uid: 23435 + uid: 23454 Toggle: [] type: SignalReceiver - - uid: 23345 + - uid: 23364 components: - pos: 35.5,18.5 parent: 2 type: Transform - - SecondsUntilStateChange: -77579.96 + - SecondsUntilStateChange: -78063.26 state: Opening type: Door - canCollide: True @@ -177258,18 +177291,18 @@ entities: - inputs: Open: - port: On - uid: 23435 + uid: 23454 Close: - port: Off - uid: 23435 + uid: 23454 Toggle: [] type: SignalReceiver - - uid: 23346 + - uid: 23365 components: - pos: 36.5,18.5 parent: 2 type: Transform - - SecondsUntilStateChange: -77579.96 + - SecondsUntilStateChange: -78063.26 state: Opening type: Door - canCollide: True @@ -177281,13 +177314,13 @@ entities: - inputs: Open: - port: On - uid: 23435 + uid: 23454 Close: - port: Off - uid: 23435 + uid: 23454 Toggle: [] type: SignalReceiver - - uid: 23347 + - uid: 23366 components: - pos: -7.5,4.5 parent: 2 @@ -177295,19 +177328,19 @@ entities: - inputs: Open: - port: On - uid: 23437 + uid: 23456 Close: - port: Off - uid: 23437 + uid: 23456 Toggle: [] type: SignalReceiver - - uid: 23348 + - uid: 23367 components: - rot: 1.5707963267948966 rad pos: 48.5,7.5 parent: 2 type: Transform - - SecondsUntilStateChange: -15191.17 + - SecondsUntilStateChange: -15674.467 state: Opening type: Door - canCollide: True @@ -177319,18 +177352,18 @@ entities: - inputs: Open: - port: On - uid: 23385 + uid: 23404 Close: - port: Off - uid: 23385 + uid: 23404 Toggle: [] type: SignalReceiver - - uid: 23349 + - uid: 23368 components: - pos: 46.5,9.5 parent: 2 type: Transform - - SecondsUntilStateChange: -15191.17 + - SecondsUntilStateChange: -15674.467 state: Opening type: Door - canCollide: True @@ -177342,19 +177375,19 @@ entities: - inputs: Open: - port: On - uid: 23385 + uid: 23404 Close: - port: Off - uid: 23385 + uid: 23404 Toggle: [] type: SignalReceiver - - uid: 23350 + - uid: 23369 components: - rot: 1.5707963267948966 rad pos: 35.5,-1.5 parent: 2 type: Transform - - SecondsUntilStateChange: -17645.34 + - SecondsUntilStateChange: -18128.639 state: Opening type: Door - canCollide: True @@ -177366,19 +177399,19 @@ entities: - inputs: Open: - port: On - uid: 23388 + uid: 23407 Close: - port: Off - uid: 23388 + uid: 23407 Toggle: [] type: SignalReceiver - - uid: 23351 + - uid: 23370 components: - rot: 1.5707963267948966 rad pos: 35.5,-2.5 parent: 2 type: Transform - - SecondsUntilStateChange: -17645.34 + - SecondsUntilStateChange: -18128.639 state: Opening type: Door - canCollide: True @@ -177390,19 +177423,19 @@ entities: - inputs: Open: - port: On - uid: 23388 + uid: 23407 Close: - port: Off - uid: 23388 + uid: 23407 Toggle: [] type: SignalReceiver - - uid: 23352 + - uid: 23371 components: - rot: 1.5707963267948966 rad pos: 35.5,-4.5 parent: 2 type: Transform - - SecondsUntilStateChange: -17645.34 + - SecondsUntilStateChange: -18128.639 state: Opening type: Door - canCollide: True @@ -177414,19 +177447,19 @@ entities: - inputs: Open: - port: On - uid: 23388 + uid: 23407 Close: - port: Off - uid: 23388 + uid: 23407 Toggle: [] type: SignalReceiver - - uid: 23353 + - uid: 23372 components: - rot: 1.5707963267948966 rad pos: 35.5,-5.5 parent: 2 type: Transform - - SecondsUntilStateChange: -17645.34 + - SecondsUntilStateChange: -18128.639 state: Opening type: Door - canCollide: True @@ -177438,18 +177471,18 @@ entities: - inputs: Open: - port: On - uid: 23388 + uid: 23407 Close: - port: Off - uid: 23388 + uid: 23407 Toggle: [] type: SignalReceiver - - uid: 23354 + - uid: 23373 components: - pos: 41.5,-0.5 parent: 2 type: Transform - - SecondsUntilStateChange: -17640.84 + - SecondsUntilStateChange: -18124.139 state: Opening type: Door - canCollide: True @@ -177461,18 +177494,18 @@ entities: - inputs: Open: - port: On - uid: 23438 + uid: 23457 Close: - port: Off - uid: 23438 + uid: 23457 Toggle: [] type: SignalReceiver - - uid: 23355 + - uid: 23374 components: - pos: 42.5,-0.5 parent: 2 type: Transform - - SecondsUntilStateChange: -17640.84 + - SecondsUntilStateChange: -18124.139 state: Opening type: Door - canCollide: True @@ -177484,18 +177517,18 @@ entities: - inputs: Open: - port: On - uid: 23438 + uid: 23457 Close: - port: Off - uid: 23438 + uid: 23457 Toggle: [] type: SignalReceiver - - uid: 23356 + - uid: 23375 components: - pos: 43.5,-0.5 parent: 2 type: Transform - - SecondsUntilStateChange: -17640.84 + - SecondsUntilStateChange: -18124.139 state: Opening type: Door - canCollide: True @@ -177507,18 +177540,18 @@ entities: - inputs: Open: - port: On - uid: 23438 + uid: 23457 Close: - port: Off - uid: 23438 + uid: 23457 Toggle: [] type: SignalReceiver - - uid: 23357 + - uid: 23376 components: - pos: 46.5,3.5 parent: 2 type: Transform - - SecondsUntilStateChange: -15191.17 + - SecondsUntilStateChange: -15674.467 state: Opening type: Door - canCollide: True @@ -177530,19 +177563,19 @@ entities: - inputs: Open: - port: On - uid: 23385 + uid: 23404 Close: - port: Off - uid: 23385 + uid: 23404 Toggle: [] type: SignalReceiver - - uid: 23358 + - uid: 23377 components: - rot: -1.5707963267948966 rad pos: 1.5,-47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -15060.927 + - SecondsUntilStateChange: -15544.224 state: Opening type: Door - canCollide: True @@ -177554,19 +177587,19 @@ entities: - inputs: Open: - port: On - uid: 23384 + uid: 23403 Close: - port: Off - uid: 23384 + uid: 23403 Toggle: [] type: SignalReceiver - - uid: 23359 + - uid: 23378 components: - rot: -1.5707963267948966 rad pos: 1.5,-48.5 parent: 2 type: Transform - - SecondsUntilStateChange: -15060.927 + - SecondsUntilStateChange: -15544.224 state: Opening type: Door - canCollide: True @@ -177578,18 +177611,18 @@ entities: - inputs: Open: - port: On - uid: 23384 + uid: 23403 Close: - port: Off - uid: 23384 + uid: 23403 Toggle: [] type: SignalReceiver - - uid: 23360 + - uid: 23379 components: - pos: 3.5,-44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -15060.927 + - SecondsUntilStateChange: -15544.224 state: Opening type: Door - canCollide: True @@ -177601,18 +177634,18 @@ entities: - inputs: Open: - port: On - uid: 23384 + uid: 23403 Close: - port: Off - uid: 23384 + uid: 23403 Toggle: [] type: SignalReceiver - - uid: 23361 + - uid: 23380 components: - pos: 4.5,-44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -15060.927 + - SecondsUntilStateChange: -15544.224 state: Opening type: Door - canCollide: True @@ -177624,18 +177657,18 @@ entities: - inputs: Open: - port: On - uid: 23384 + uid: 23403 Close: - port: Off - uid: 23384 + uid: 23403 Toggle: [] type: SignalReceiver - - uid: 23362 + - uid: 23381 components: - pos: 5.5,-44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -15060.927 + - SecondsUntilStateChange: -15544.224 state: Opening type: Door - canCollide: True @@ -177647,18 +177680,18 @@ entities: - inputs: Open: - port: On - uid: 23384 + uid: 23403 Close: - port: Off - uid: 23384 + uid: 23403 Toggle: [] type: SignalReceiver - - uid: 23363 + - uid: 23382 components: - pos: 3.5,-51.5 parent: 2 type: Transform - - SecondsUntilStateChange: -15060.927 + - SecondsUntilStateChange: -15544.224 state: Opening type: Door - canCollide: True @@ -177670,13 +177703,13 @@ entities: - inputs: Open: - port: On - uid: 23384 + uid: 23403 Close: - port: Off - uid: 23384 + uid: 23403 Toggle: [] type: SignalReceiver - - uid: 23364 + - uid: 23383 components: - pos: 23.5,5.5 parent: 2 @@ -177684,13 +177717,13 @@ entities: - inputs: Open: - port: On - uid: 23439 + uid: 23458 Close: - port: Off - uid: 23439 + uid: 23458 Toggle: [] type: SignalReceiver - - uid: 23365 + - uid: 23384 components: - pos: 22.5,5.5 parent: 2 @@ -177698,13 +177731,13 @@ entities: - inputs: Open: - port: On - uid: 23439 + uid: 23458 Close: - port: Off - uid: 23439 + uid: 23458 Toggle: [] type: SignalReceiver - - uid: 23366 + - uid: 23385 components: - pos: 21.5,5.5 parent: 2 @@ -177712,13 +177745,13 @@ entities: - inputs: Open: - port: On - uid: 23439 + uid: 23458 Close: - port: Off - uid: 23439 + uid: 23458 Toggle: [] type: SignalReceiver - - uid: 23367 + - uid: 23386 components: - pos: 25.5,5.5 parent: 2 @@ -177726,13 +177759,13 @@ entities: - inputs: Open: - port: On - uid: 23439 + uid: 23458 Close: - port: Off - uid: 23439 + uid: 23458 Toggle: [] type: SignalReceiver - - uid: 23368 + - uid: 23387 components: - pos: 26.5,5.5 parent: 2 @@ -177740,13 +177773,13 @@ entities: - inputs: Open: - port: On - uid: 23439 + uid: 23458 Close: - port: Off - uid: 23439 + uid: 23458 Toggle: [] type: SignalReceiver - - uid: 23369 + - uid: 23388 components: - pos: 27.5,5.5 parent: 2 @@ -177754,13 +177787,13 @@ entities: - inputs: Open: - port: On - uid: 23439 + uid: 23458 Close: - port: Off - uid: 23439 + uid: 23458 Toggle: [] type: SignalReceiver - - uid: 23370 + - uid: 23389 components: - pos: 27.5,-3.5 parent: 2 @@ -177768,13 +177801,13 @@ entities: - inputs: Open: - port: On - uid: 23439 + uid: 23458 Close: - port: Off - uid: 23439 + uid: 23458 Toggle: [] type: SignalReceiver - - uid: 23371 + - uid: 23390 components: - pos: 26.5,-3.5 parent: 2 @@ -177782,13 +177815,13 @@ entities: - inputs: Open: - port: On - uid: 23439 + uid: 23458 Close: - port: Off - uid: 23439 + uid: 23458 Toggle: [] type: SignalReceiver - - uid: 23372 + - uid: 23391 components: - pos: 25.5,-3.5 parent: 2 @@ -177796,13 +177829,13 @@ entities: - inputs: Open: - port: On - uid: 23439 + uid: 23458 Close: - port: Off - uid: 23439 + uid: 23458 Toggle: [] type: SignalReceiver - - uid: 23373 + - uid: 23392 components: - pos: 23.5,-3.5 parent: 2 @@ -177810,18 +177843,18 @@ entities: - inputs: Open: - port: On - uid: 23439 + uid: 23458 Close: - port: Off - uid: 23439 + uid: 23458 Toggle: [] type: SignalReceiver - - uid: 23374 + - uid: 23393 components: - pos: 22.5,-3.5 parent: 2 type: Transform - - uid: 23375 + - uid: 23394 components: - pos: 21.5,-3.5 parent: 2 @@ -177829,13 +177862,13 @@ entities: - inputs: Open: - port: On - uid: 23439 + uid: 23458 Close: - port: Off - uid: 23439 + uid: 23458 Toggle: [] type: SignalReceiver - - uid: 23376 + - uid: 23395 components: - rot: 1.5707963267948966 rad pos: 19.5,3.5 @@ -177844,13 +177877,13 @@ entities: - inputs: Open: - port: On - uid: 23439 + uid: 23458 Close: - port: Off - uid: 23439 + uid: 23458 Toggle: [] type: SignalReceiver - - uid: 23377 + - uid: 23396 components: - rot: 1.5707963267948966 rad pos: 19.5,2.5 @@ -177859,13 +177892,13 @@ entities: - inputs: Open: - port: On - uid: 23439 + uid: 23458 Close: - port: Off - uid: 23439 + uid: 23458 Toggle: [] type: SignalReceiver - - uid: 23378 + - uid: 23397 components: - rot: 1.5707963267948966 rad pos: 19.5,1.5 @@ -177874,13 +177907,13 @@ entities: - inputs: Open: - port: On - uid: 23439 + uid: 23458 Close: - port: Off - uid: 23439 + uid: 23458 Toggle: [] type: SignalReceiver - - uid: 23379 + - uid: 23398 components: - rot: 1.5707963267948966 rad pos: 19.5,0.5 @@ -177889,13 +177922,13 @@ entities: - inputs: Open: - port: On - uid: 23439 + uid: 23458 Close: - port: Off - uid: 23439 + uid: 23458 Toggle: [] type: SignalReceiver - - uid: 23380 + - uid: 23399 components: - rot: 1.5707963267948966 rad pos: 19.5,-0.5 @@ -177904,13 +177937,13 @@ entities: - inputs: Open: - port: On - uid: 23439 + uid: 23458 Close: - port: Off - uid: 23439 + uid: 23458 Toggle: [] type: SignalReceiver - - uid: 23381 + - uid: 23400 components: - rot: 1.5707963267948966 rad pos: 19.5,-1.5 @@ -177919,15 +177952,15 @@ entities: - inputs: Open: - port: On - uid: 23439 + uid: 23458 Close: - port: Off - uid: 23439 + uid: 23458 Toggle: [] type: SignalReceiver - proto: ShuttleConsoleCircuitboard entities: - - uid: 23382 + - uid: 23401 components: - pos: 9.781719,43.54237 parent: 2 @@ -177936,14 +177969,14 @@ entities: type: EmitSoundOnCollide - proto: SignAi entities: - - uid: 23383 + - uid: 23402 components: - pos: -3.5,60.5 parent: 2 type: Transform - proto: SignalSwitch entities: - - uid: 23384 + - uid: 23403 components: - rot: -1.5707963267948966 rad pos: 8.5,-48.5 @@ -177954,37 +177987,37 @@ entities: - outputs: On: - port: Open - uid: 23363 + uid: 23382 - port: Open - uid: 23359 + uid: 23378 - port: Open - uid: 23358 + uid: 23377 - port: Open - uid: 23343 + uid: 23362 - port: Open - uid: 23360 + uid: 23379 - port: Open - uid: 23361 + uid: 23380 - port: Open - uid: 23362 + uid: 23381 Off: - port: Close - uid: 23363 + uid: 23382 - port: Close - uid: 23359 + uid: 23378 - port: Close - uid: 23358 + uid: 23377 - port: Close - uid: 23343 + uid: 23362 - port: Close - uid: 23360 + uid: 23379 - port: Close - uid: 23361 + uid: 23380 - port: Close - uid: 23362 + uid: 23381 type: SignalTransmitter - type: ItemCooldown - - uid: 23385 + - uid: 23404 components: - rot: -1.5707963267948966 rad pos: 47.5,8.5 @@ -177995,37 +178028,37 @@ entities: - outputs: On: - port: Open - uid: 23288 + uid: 23307 - port: Open - uid: 23348 + uid: 23367 - port: Open - uid: 23349 + uid: 23368 - port: Open - uid: 23293 + uid: 23312 - port: Open - uid: 23294 + uid: 23313 - port: Open - uid: 23312 + uid: 23331 - port: Open - uid: 23357 + uid: 23376 Off: - port: Close - uid: 23288 + uid: 23307 - port: Close - uid: 23348 + uid: 23367 - port: Close - uid: 23349 + uid: 23368 - port: Close - uid: 23293 + uid: 23312 - port: Close - uid: 23294 + uid: 23313 - port: Close - uid: 23312 + uid: 23331 - port: Close - uid: 23357 + uid: 23376 type: SignalTransmitter - type: ItemCooldown - - uid: 23386 + - uid: 23405 components: - pos: 16.5,15.5 parent: 2 @@ -178035,37 +178068,37 @@ entities: - outputs: On: - port: Open - uid: 23276 + uid: 23295 - port: Open - uid: 23281 + uid: 23300 - port: Open - uid: 23282 + uid: 23301 - port: Open - uid: 23290 + uid: 23309 - port: Open - uid: 23286 + uid: 23305 - port: Open - uid: 23285 + uid: 23304 - port: Open - uid: 23292 + uid: 23311 Off: - port: Close - uid: 23276 + uid: 23295 - port: Close - uid: 23281 + uid: 23300 - port: Close - uid: 23282 + uid: 23301 - port: Close - uid: 23290 + uid: 23309 - port: Close - uid: 23286 + uid: 23305 - port: Close - uid: 23285 + uid: 23304 - port: Close - uid: 23292 + uid: 23311 type: SignalTransmitter - type: ItemCooldown - - uid: 23387 + - uid: 23406 components: - rot: 3.141592653589793 rad pos: -13.5,-16.5 @@ -178074,13 +178107,13 @@ entities: - outputs: On: - port: Open - uid: 2119 + uid: 2120 Off: - port: Close - uid: 2119 + uid: 2120 type: SignalTransmitter - type: ItemCooldown - - uid: 23388 + - uid: 23407 components: - rot: -1.5707963267948966 rad pos: 40.5,-3.5 @@ -178091,33 +178124,33 @@ entities: - outputs: On: - port: Open - uid: 23308 + uid: 23327 - port: Open - uid: 23279 + uid: 23298 - port: Open - uid: 23350 + uid: 23369 - port: Open - uid: 23351 + uid: 23370 - port: Open - uid: 23352 + uid: 23371 - port: Open - uid: 23353 + uid: 23372 Off: - port: Close - uid: 23308 + uid: 23327 - port: Close - uid: 23279 + uid: 23298 - port: Close - uid: 23350 + uid: 23369 - port: Close - uid: 23351 + uid: 23370 - port: Close - uid: 23352 + uid: 23371 - port: Close - uid: 23353 + uid: 23372 type: SignalTransmitter - type: ItemCooldown - - uid: 23389 + - uid: 23408 components: - rot: 1.5707963267948966 rad pos: 66.5,-44.5 @@ -178126,17 +178159,17 @@ entities: - outputs: On: - port: Open - uid: 23274 + uid: 23293 - port: Open - uid: 23275 + uid: 23294 Off: - port: Close - uid: 23274 + uid: 23293 - port: Close - uid: 23275 + uid: 23294 type: SignalTransmitter - type: ItemCooldown - - uid: 23390 + - uid: 23409 components: - rot: 3.141592653589793 rad pos: 70.5,-39.5 @@ -178145,37 +178178,37 @@ entities: - outputs: On: - port: Open - uid: 2099 + uid: 2100 Off: - port: Close - uid: 2099 + uid: 2100 type: SignalTransmitter - - uid: 23391 + - uid: 23410 components: - pos: 47.5,-55.5 parent: 2 type: Transform - outputs: On: + - port: Open + uid: 2058 - port: Open uid: 2057 - port: Open uid: 2056 - port: Open uid: 2055 - - port: Open - uid: 2054 Off: + - port: Close + uid: 2058 - port: Close uid: 2057 - port: Close uid: 2056 - port: Close uid: 2055 - - port: Close - uid: 2054 type: SignalTransmitter - - uid: 23392 + - uid: 23411 components: - rot: -1.5707963267948966 rad pos: 52.5,-56.5 @@ -178184,12 +178217,12 @@ entities: - outputs: On: - port: Open - uid: 2058 + uid: 2059 Off: - port: Close - uid: 2058 + uid: 2059 type: SignalTransmitter - - uid: 23393 + - uid: 23412 components: - pos: -51.5,32.5 parent: 2 @@ -178197,13 +178230,13 @@ entities: - outputs: On: - port: Open - uid: 2072 + uid: 2073 Off: - port: Close - uid: 2072 + uid: 2073 type: SignalTransmitter - type: ItemCooldown - - uid: 23394 + - uid: 23413 components: - rot: 3.141592653589793 rad pos: 60.5,-55.5 @@ -178211,17 +178244,17 @@ entities: type: Transform - outputs: On: - - port: Open - uid: 2060 - port: Open uid: 2061 + - port: Open + uid: 2062 Off: - - port: Close - uid: 2060 - port: Close uid: 2061 + - port: Close + uid: 2062 type: SignalTransmitter - - uid: 23395 + - uid: 23414 components: - pos: 16.5,-51.5 parent: 2 @@ -178229,12 +178262,12 @@ entities: - outputs: On: - port: Open - uid: 2053 + uid: 2054 Off: - port: Close - uid: 2053 + uid: 2054 type: SignalTransmitter - - uid: 23396 + - uid: 23415 components: - pos: -62.5,-26.5 parent: 2 @@ -178243,6 +178276,8 @@ entities: type: SignalSwitch - outputs: On: + - port: Open + uid: 2130 - port: Open uid: 2129 - port: Open @@ -178251,9 +178286,9 @@ entities: uid: 2127 - port: Open uid: 2126 - - port: Open - uid: 2125 Off: + - port: Close + uid: 2130 - port: Close uid: 2129 - port: Close @@ -178262,11 +178297,9 @@ entities: uid: 2127 - port: Close uid: 2126 - - port: Close - uid: 2125 type: SignalTransmitter - type: ItemCooldown - - uid: 23397 + - uid: 23416 components: - pos: -52.5,-11.5 parent: 2 @@ -178275,8 +178308,6 @@ entities: type: SignalSwitch - outputs: On: - - port: Open - uid: 2120 - port: Open uid: 2121 - port: Open @@ -178285,9 +178316,9 @@ entities: uid: 2123 - port: Open uid: 2124 + - port: Open + uid: 2125 Off: - - port: Close - uid: 2120 - port: Close uid: 2121 - port: Close @@ -178296,8 +178327,10 @@ entities: uid: 2123 - port: Close uid: 2124 + - port: Close + uid: 2125 type: SignalTransmitter - - uid: 23398 + - uid: 23417 components: - pos: -43.5,-39.5 parent: 2 @@ -178305,55 +178338,55 @@ entities: - outputs: On: - port: Open - uid: 2062 + uid: 2063 Off: - port: Close - uid: 2062 + uid: 2063 type: SignalTransmitter - - uid: 23399 + - uid: 23418 components: - pos: -36.5,-40.5 parent: 2 type: Transform - outputs: On: + - port: Open + uid: 2067 - port: Open uid: 2066 - port: Open uid: 2065 - port: Open uid: 2064 - - port: Open - uid: 2063 Off: + - port: Close + uid: 2067 - port: Close uid: 2066 - port: Close uid: 2065 - port: Close uid: 2064 - - port: Close - uid: 2063 type: SignalTransmitter - - uid: 23400 + - uid: 23419 components: - pos: -51.5,21.5 parent: 2 type: Transform - outputs: On: - - port: Open - uid: 2073 - port: Open uid: 2074 + - port: Open + uid: 2075 Off: - - port: Close - uid: 2073 - port: Close uid: 2074 + - port: Close + uid: 2075 type: SignalTransmitter - type: ItemCooldown - - uid: 23401 + - uid: 23420 components: - pos: -49.5,24.5 parent: 2 @@ -178361,16 +178394,16 @@ entities: - outputs: On: - port: Open - uid: 2068 + uid: 2069 - port: Open - uid: 2067 + uid: 2068 Off: - port: Close - uid: 2068 + uid: 2069 - port: Close - uid: 2067 + uid: 2068 type: SignalTransmitter - - uid: 23402 + - uid: 23421 components: - pos: 50.5,48.5 parent: 2 @@ -178380,16 +178413,16 @@ entities: - outputs: On: - port: Open - uid: 2079 + uid: 2080 - port: Close - uid: 2081 + uid: 2082 Off: - port: Close - uid: 2079 + uid: 2080 - port: Open - uid: 2081 + uid: 2082 type: SignalTransmitter - - uid: 23403 + - uid: 23422 components: - pos: 52.5,48.5 parent: 2 @@ -178399,16 +178432,16 @@ entities: - outputs: On: - port: Open - uid: 2083 + uid: 2084 - port: Close - uid: 2075 + uid: 2076 Off: - port: Close - uid: 2083 + uid: 2084 - port: Open - uid: 2075 + uid: 2076 type: SignalTransmitter - - uid: 23404 + - uid: 23423 components: - pos: -46.5,17.5 parent: 2 @@ -178418,25 +178451,25 @@ entities: - outputs: On: - port: Open - uid: 23304 + uid: 23323 - port: Open - uid: 23305 + uid: 23324 - port: Open - uid: 23310 + uid: 23329 - port: Open - uid: 23311 + uid: 23330 Off: - port: Close - uid: 23304 + uid: 23323 - port: Close - uid: 23305 + uid: 23324 - port: Close - uid: 23310 + uid: 23329 - port: Close - uid: 23311 + uid: 23330 type: SignalTransmitter - type: ItemCooldown - - uid: 23405 + - uid: 23424 components: - pos: 58.5,48.5 parent: 2 @@ -178446,16 +178479,16 @@ entities: - outputs: On: - port: Open - uid: 2077 + uid: 2078 - port: Close - uid: 2094 + uid: 2095 Off: - port: Close - uid: 2077 + uid: 2078 - port: Open - uid: 2094 + uid: 2095 type: SignalTransmitter - - uid: 23406 + - uid: 23425 components: - pos: 54.5,46.5 parent: 2 @@ -178463,16 +178496,16 @@ entities: - outputs: On: - port: Open - uid: 2084 + uid: 2085 - port: Close - uid: 2088 + uid: 2089 Off: - port: Close - uid: 2084 + uid: 2085 - port: Open - uid: 2088 + uid: 2089 type: SignalTransmitter - - uid: 23407 + - uid: 23426 components: - pos: 52.5,46.5 parent: 2 @@ -178480,16 +178513,16 @@ entities: - outputs: On: - port: Open - uid: 2076 + uid: 2077 - port: Close - uid: 2070 + uid: 2071 Off: - port: Close - uid: 2076 + uid: 2077 - port: Open - uid: 2070 + uid: 2071 type: SignalTransmitter - - uid: 23408 + - uid: 23427 components: - pos: 54.5,48.5 parent: 2 @@ -178499,16 +178532,16 @@ entities: - outputs: On: - port: Open - uid: 2088 + uid: 2089 - port: Close - uid: 2093 + uid: 2094 Off: - port: Close - uid: 2088 + uid: 2089 - port: Open - uid: 2093 + uid: 2094 type: SignalTransmitter - - uid: 23409 + - uid: 23428 components: - pos: 56.5,44.5 parent: 2 @@ -178518,16 +178551,16 @@ entities: - outputs: On: - port: Open - uid: 2070 + uid: 2071 - port: Close - uid: 2069 + uid: 2070 Off: - port: Close - uid: 2070 + uid: 2071 - port: Open - uid: 2069 + uid: 2070 type: SignalTransmitter - - uid: 23410 + - uid: 23429 components: - pos: 50.5,44.5 parent: 2 @@ -178537,16 +178570,16 @@ entities: - outputs: On: - port: Open - uid: 2090 + uid: 2091 - port: Close - uid: 2076 + uid: 2077 Off: - port: Close - uid: 2090 + uid: 2091 - port: Open - uid: 2076 + uid: 2077 type: SignalTransmitter - - uid: 23411 + - uid: 23430 components: - pos: 52.5,44.5 parent: 2 @@ -178556,16 +178589,16 @@ entities: - outputs: On: - port: Close - uid: 2069 + uid: 2070 - port: Open - uid: 2078 + uid: 2079 Off: - port: Open - uid: 2069 + uid: 2070 - port: Close - uid: 2078 + uid: 2079 type: SignalTransmitter - - uid: 23412 + - uid: 23431 components: - pos: 58.5,46.5 parent: 2 @@ -178573,16 +178606,16 @@ entities: - outputs: On: - port: Open - uid: 2075 + uid: 2076 - port: Close - uid: 2091 + uid: 2092 Off: - port: Close - uid: 2075 + uid: 2076 - port: Open - uid: 2091 + uid: 2092 type: SignalTransmitter - - uid: 23413 + - uid: 23432 components: - pos: 54.5,44.5 parent: 2 @@ -178592,16 +178625,16 @@ entities: - outputs: On: - port: Open - uid: 2086 + uid: 2087 - port: Close - uid: 2085 + uid: 2086 Off: - port: Close - uid: 2086 + uid: 2087 - port: Open - uid: 2085 + uid: 2086 type: SignalTransmitter - - uid: 23414 + - uid: 23433 components: - pos: 50.5,46.5 parent: 2 @@ -178609,16 +178642,16 @@ entities: - outputs: On: - port: Close - uid: 2087 + uid: 2088 - port: Open - uid: 2093 + uid: 2094 Off: - port: Open - uid: 2087 + uid: 2088 - port: Close - uid: 2093 + uid: 2094 type: SignalTransmitter - - uid: 23415 + - uid: 23434 components: - pos: 56.5,46.5 parent: 2 @@ -178628,16 +178661,16 @@ entities: - outputs: On: - port: Open - uid: 2094 + uid: 2095 - port: Close - uid: 2084 + uid: 2085 Off: - port: Close - uid: 2094 + uid: 2095 - port: Open - uid: 2084 + uid: 2085 type: SignalTransmitter - - uid: 23416 + - uid: 23435 components: - pos: 58.5,44.5 parent: 2 @@ -178647,20 +178680,20 @@ entities: - outputs: On: - port: Open - uid: 2086 + uid: 2087 - port: Open - uid: 2092 + uid: 2093 - port: Close - uid: 2069 + uid: 2070 Off: - port: Close - uid: 2086 + uid: 2087 - port: Close - uid: 2092 + uid: 2093 - port: Open - uid: 2069 + uid: 2070 type: SignalTransmitter - - uid: 23417 + - uid: 23436 components: - pos: 56.5,48.5 parent: 2 @@ -178668,24 +178701,24 @@ entities: - outputs: On: - port: Open - uid: 2082 + uid: 2083 - port: Open - uid: 2081 + uid: 2082 - port: Close - uid: 2088 + uid: 2089 - port: Close - uid: 2092 + uid: 2093 Off: - port: Close - uid: 2082 + uid: 2083 - port: Close - uid: 2081 + uid: 2082 - port: Open - uid: 2088 + uid: 2089 - port: Open - uid: 2092 + uid: 2093 type: SignalTransmitter - - uid: 23418 + - uid: 23437 components: - rot: -1.5707963267948966 rad pos: 30.5,-35.5 @@ -178696,37 +178729,37 @@ entities: - outputs: On: - port: Open - uid: 23297 + uid: 23316 - port: Open - uid: 23336 + uid: 23355 - port: Open - uid: 23338 + uid: 23357 - port: Open - uid: 23339 + uid: 23358 - port: Open - uid: 23340 + uid: 23359 - port: Open - uid: 23341 + uid: 23360 - port: Open - uid: 23337 + uid: 23356 Off: - port: Close - uid: 23297 + uid: 23316 - port: Close - uid: 23336 + uid: 23355 - port: Close - uid: 23338 + uid: 23357 - port: Close - uid: 23339 + uid: 23358 - port: Close - uid: 23340 + uid: 23359 - port: Close - uid: 23341 + uid: 23360 - port: Close - uid: 23337 + uid: 23356 type: SignalTransmitter - type: ItemCooldown - - uid: 23419 + - uid: 23438 components: - rot: 1.5707963267948966 rad pos: -35.5,29.5 @@ -178737,33 +178770,33 @@ entities: - outputs: On: - port: Open - uid: 23303 + uid: 23322 - port: Open - uid: 23301 + uid: 23320 - port: Open - uid: 23298 + uid: 23317 - port: Open - uid: 23309 + uid: 23328 - port: Open - uid: 23278 + uid: 23297 - port: Open - uid: 23306 + uid: 23325 Off: - port: Close - uid: 23303 + uid: 23322 - port: Close - uid: 23301 + uid: 23320 - port: Close - uid: 23298 + uid: 23317 - port: Close - uid: 23309 + uid: 23328 - port: Close - uid: 23278 + uid: 23297 - port: Close - uid: 23306 + uid: 23325 type: SignalTransmitter - type: ItemCooldown - - uid: 23420 + - uid: 23439 components: - pos: 54.5,51.5 parent: 2 @@ -178771,41 +178804,41 @@ entities: - outputs: On: - port: Open - uid: 2081 + uid: 2082 - port: Open - uid: 2075 + uid: 2076 - port: Open - uid: 2085 + uid: 2086 Off: - port: Close - uid: 2081 + uid: 2082 - port: Close - uid: 2075 + uid: 2076 - port: Close - uid: 2085 + uid: 2086 type: SignalTransmitter - - uid: 23421 + - uid: 23440 components: - pos: 5.5,49.5 parent: 2 type: Transform - outputs: On: - - port: Open - uid: 2051 - port: Open uid: 2052 - port: Open - uid: 2050 - Off: - - port: Close + uid: 2053 + - port: Open uid: 2051 + Off: - port: Close uid: 2052 - port: Close - uid: 2050 + uid: 2053 + - port: Close + uid: 2051 type: SignalTransmitter - - uid: 23422 + - uid: 23441 components: - pos: 27.5,44.5 parent: 2 @@ -178815,82 +178848,82 @@ entities: - outputs: On: - port: Open - uid: 2104 - - port: Open - uid: 2107 + uid: 2105 - port: Open uid: 2108 - port: Open - uid: 2103 + uid: 2109 - port: Open - uid: 2101 + uid: 2104 - port: Open uid: 2102 + - port: Open + uid: 2103 + - port: Open + uid: 2111 - port: Open uid: 2110 - port: Open - uid: 2109 + uid: 2107 - port: Open uid: 2106 - - port: Open - uid: 2105 Off: - port: Close - uid: 2104 - - port: Close - uid: 2107 + uid: 2105 - port: Close uid: 2108 - port: Close - uid: 2103 + uid: 2109 - port: Close - uid: 2101 + uid: 2104 - port: Close uid: 2102 + - port: Close + uid: 2103 + - port: Close + uid: 2111 - port: Close uid: 2110 - port: Close - uid: 2109 + uid: 2107 - port: Close uid: 2106 - - port: Close - uid: 2105 type: SignalTransmitter - - uid: 23423 + - uid: 23442 components: - pos: -28.5,-96.5 parent: 2 type: Transform - outputs: On: - - port: Open - uid: 2095 - port: Open uid: 2096 + - port: Open + uid: 2097 Off: - - port: Close - uid: 2095 - port: Close uid: 2096 + - port: Close + uid: 2097 type: SignalTransmitter - - uid: 23424 + - uid: 23443 components: - pos: -16.5,-96.5 parent: 2 type: Transform - outputs: On: - - port: Open - uid: 2097 - port: Open uid: 2098 + - port: Open + uid: 2099 Off: - - port: Close - uid: 2097 - port: Close uid: 2098 + - port: Close + uid: 2099 type: SignalTransmitter - - uid: 23425 + - uid: 23444 components: - rot: 3.141592653589793 rad pos: -5.5,-89.5 @@ -178901,40 +178934,40 @@ entities: - outputs: On: - port: Open - uid: 2118 - - port: Open - uid: 2111 + uid: 2119 - port: Open uid: 2112 - - port: Open - uid: 2115 - port: Open uid: 2113 + - port: Open + uid: 2116 - port: Open uid: 2114 - port: Open - uid: 2116 + uid: 2115 - port: Open uid: 2117 - Off: - - port: Close + - port: Open uid: 2118 + Off: - port: Close - uid: 2111 + uid: 2119 - port: Close uid: 2112 - - port: Close - uid: 2115 - port: Close uid: 2113 + - port: Close + uid: 2116 - port: Close uid: 2114 - port: Close - uid: 2116 + uid: 2115 - port: Close uid: 2117 + - port: Close + uid: 2118 type: SignalTransmitter - - uid: 23426 + - uid: 23445 components: - pos: -8.5,-94.5 parent: 2 @@ -178944,40 +178977,40 @@ entities: - outputs: On: - port: Open - uid: 2118 - - port: Open - uid: 2111 + uid: 2119 - port: Open uid: 2112 - port: Open uid: 2113 - - port: Open - uid: 2115 - port: Open uid: 2114 - port: Open uid: 2116 + - port: Open + uid: 2115 - port: Open uid: 2117 - Off: - - port: Close + - port: Open uid: 2118 + Off: - port: Close - uid: 2111 + uid: 2119 - port: Close uid: 2112 - port: Close uid: 2113 - - port: Close - uid: 2115 - port: Close uid: 2114 - port: Close uid: 2116 + - port: Close + uid: 2115 - port: Close uid: 2117 + - port: Close + uid: 2118 type: SignalTransmitter - - uid: 23427 + - uid: 23446 components: - rot: 3.141592653589793 rad pos: 48.5,-59.5 @@ -178986,12 +179019,12 @@ entities: - outputs: On: - port: Open - uid: 2059 + uid: 2060 Off: - port: Close - uid: 2059 + uid: 2060 type: SignalTransmitter - - uid: 23428 + - uid: 23447 components: - pos: 69.5,-32.5 parent: 2 @@ -178999,12 +179032,12 @@ entities: - outputs: On: - port: Open - uid: 2100 + uid: 2101 Off: - port: Close - uid: 2100 + uid: 2101 type: SignalTransmitter - - uid: 23429 + - uid: 23448 components: - pos: 33.483017,17.346874 parent: 2 @@ -179014,29 +179047,29 @@ entities: - outputs: On: - port: Open - uid: 23299 + uid: 23318 - port: Open - uid: 23307 + uid: 23326 - port: Open - uid: 23300 + uid: 23319 - port: Open - uid: 23302 + uid: 23321 - port: Open - uid: 23289 + uid: 23308 Off: - port: Close - uid: 23299 + uid: 23318 - port: Close - uid: 23307 + uid: 23326 - port: Close - uid: 23300 + uid: 23319 - port: Close - uid: 23302 + uid: 23321 - port: Close - uid: 23289 + uid: 23308 type: SignalTransmitter - type: ItemCooldown - - uid: 23430 + - uid: 23449 components: - rot: 3.141592653589793 rad pos: 64.5,-55.5 @@ -179047,53 +179080,53 @@ entities: - outputs: On: - port: Open - uid: 23296 + uid: 23315 - port: Open - uid: 23295 + uid: 23314 - port: Open - uid: 23291 + uid: 23310 - port: Open - uid: 23314 + uid: 23333 - port: Open - uid: 23313 + uid: 23332 - port: Open - uid: 23316 + uid: 23335 - port: Open - uid: 23315 + uid: 23334 - port: Open - uid: 23317 + uid: 23336 - port: Open - uid: 23318 + uid: 23337 - port: Open - uid: 23319 + uid: 23338 - port: Open - uid: 23320 + uid: 23339 Off: - port: Close - uid: 23296 + uid: 23315 - port: Close - uid: 23295 + uid: 23314 - port: Close - uid: 23291 + uid: 23310 - port: Close - uid: 23314 + uid: 23333 - port: Close - uid: 23313 + uid: 23332 - port: Close - uid: 23316 + uid: 23335 - port: Close - uid: 23315 + uid: 23334 - port: Close - uid: 23317 + uid: 23336 - port: Close - uid: 23318 + uid: 23337 - port: Close - uid: 23319 + uid: 23338 - port: Close - uid: 23320 + uid: 23339 type: SignalTransmitter - type: ItemCooldown - - uid: 23431 + - uid: 23450 components: - rot: -1.5707963267948966 rad pos: -16.5,-55.5 @@ -179104,17 +179137,17 @@ entities: - outputs: On: - port: Open - uid: 23322 + uid: 23341 - port: Open - uid: 23321 + uid: 23340 Off: - port: Close - uid: 23322 + uid: 23341 - port: Close - uid: 23321 + uid: 23340 type: SignalTransmitter - type: ItemCooldown - - uid: 23432 + - uid: 23451 components: - rot: -1.5707963267948966 rad pos: -33.5,-18.5 @@ -179125,21 +179158,21 @@ entities: - outputs: On: - port: Open - uid: 23325 + uid: 23344 - port: Open - uid: 23324 + uid: 23343 - port: Open - uid: 23323 + uid: 23342 Off: - port: Close - uid: 23325 + uid: 23344 - port: Close - uid: 23324 + uid: 23343 - port: Close - uid: 23323 + uid: 23342 type: SignalTransmitter - type: ItemCooldown - - uid: 23433 + - uid: 23452 components: - pos: -51.5,36.5 parent: 2 @@ -179147,13 +179180,13 @@ entities: - outputs: On: - port: Open - uid: 2071 + uid: 2072 Off: - port: Close - uid: 2071 + uid: 2072 type: SignalTransmitter - type: ItemCooldown - - uid: 23434 + - uid: 23453 components: - rot: 1.5707963267948966 rad pos: 3.5,10.5 @@ -179164,41 +179197,41 @@ entities: - outputs: On: - port: Open - uid: 23328 + uid: 23347 - port: Open - uid: 23329 + uid: 23348 - port: Open - uid: 23330 + uid: 23349 - port: Open - uid: 23335 + uid: 23354 - port: Open - uid: 23334 + uid: 23353 - port: Open - uid: 23333 + uid: 23352 - port: Open - uid: 23332 + uid: 23351 - port: Open - uid: 23331 + uid: 23350 Off: - port: Close - uid: 23328 + uid: 23347 - port: Close - uid: 23329 + uid: 23348 - port: Close - uid: 23330 + uid: 23349 - port: Close - uid: 23335 + uid: 23354 - port: Close - uid: 23334 + uid: 23353 - port: Close - uid: 23333 + uid: 23352 - port: Close - uid: 23332 + uid: 23351 - port: Close - uid: 23331 + uid: 23350 type: SignalTransmitter - type: ItemCooldown - - uid: 23435 + - uid: 23454 components: - pos: 33.487907,17.698355 parent: 2 @@ -179208,21 +179241,21 @@ entities: - outputs: On: - port: Open - uid: 23344 + uid: 23363 - port: Open - uid: 23345 + uid: 23364 - port: Open - uid: 23346 + uid: 23365 Off: - port: Close - uid: 23344 + uid: 23363 - port: Close - uid: 23345 + uid: 23364 - port: Close - uid: 23346 + uid: 23365 type: SignalTransmitter - type: ItemCooldown - - uid: 23436 + - uid: 23455 components: - rot: 3.141592653589793 rad pos: 0.5,-8.5 @@ -179233,29 +179266,29 @@ entities: - outputs: On: - port: Open - uid: 23284 + uid: 23303 - port: Open - uid: 23326 + uid: 23345 - port: Open - uid: 23327 + uid: 23346 - port: Open - uid: 23342 + uid: 23361 - port: Open - uid: 23283 + uid: 23302 Off: - port: Close - uid: 23284 + uid: 23303 - port: Close - uid: 23326 + uid: 23345 - port: Close - uid: 23327 + uid: 23346 - port: Close - uid: 23342 + uid: 23361 - port: Close - uid: 23283 + uid: 23302 type: SignalTransmitter - type: ItemCooldown - - uid: 23437 + - uid: 23456 components: - rot: -1.5707963267948966 rad pos: -5.5,10.5 @@ -179264,20 +179297,20 @@ entities: - outputs: On: - port: Open - uid: 23280 + uid: 23299 - port: Open - uid: 23347 + uid: 23366 - port: Open - uid: 23287 + uid: 23306 Off: - port: Close - uid: 23280 + uid: 23299 - port: Close - uid: 23347 + uid: 23366 - port: Close - uid: 23287 + uid: 23306 type: SignalTransmitter - - uid: 23438 + - uid: 23457 components: - rot: -1.5707963267948966 rad pos: 45.5,-2.5 @@ -179288,21 +179321,21 @@ entities: - outputs: On: - port: Open - uid: 23356 + uid: 23375 - port: Open - uid: 23355 + uid: 23374 - port: Open - uid: 23354 + uid: 23373 Off: - port: Close - uid: 23356 + uid: 23375 - port: Close - uid: 23355 + uid: 23374 - port: Close - uid: 23354 + uid: 23373 type: SignalTransmitter - type: ItemCooldown - - uid: 23439 + - uid: 23458 components: - rot: -1.5707963267948966 rad pos: 29.5,-1.5 @@ -179311,123 +179344,123 @@ entities: - outputs: On: - port: Open - uid: 23366 + uid: 23385 - port: Open - uid: 23365 + uid: 23384 - port: Open - uid: 23364 + uid: 23383 - port: Open - uid: 23367 + uid: 23386 - port: Open - uid: 23368 + uid: 23387 - port: Open - uid: 23369 + uid: 23388 - port: Open - uid: 23370 + uid: 23389 - port: Open - uid: 23371 + uid: 23390 - port: Open - uid: 23372 + uid: 23391 - port: Open - uid: 23373 + uid: 23392 - port: Open - uid: 23375 + uid: 23394 - port: Open - uid: 23381 + uid: 23400 - port: Open - uid: 23380 + uid: 23399 - port: Open - uid: 23379 + uid: 23398 - port: Open - uid: 23378 + uid: 23397 - port: Open - uid: 23377 + uid: 23396 - port: Open - uid: 23376 + uid: 23395 Off: - port: Close - uid: 23366 + uid: 23385 - port: Close - uid: 23365 + uid: 23384 - port: Close - uid: 23364 + uid: 23383 - port: Close - uid: 23367 + uid: 23386 - port: Close - uid: 23368 + uid: 23387 - port: Close - uid: 23369 + uid: 23388 - port: Close - uid: 23370 + uid: 23389 - port: Close - uid: 23371 + uid: 23390 - port: Close - uid: 23372 + uid: 23391 - port: Close - uid: 23373 + uid: 23392 - port: Close - uid: 23375 + uid: 23394 - port: Close - uid: 23381 + uid: 23400 - port: Close - uid: 23380 + uid: 23399 - port: Close - uid: 23379 + uid: 23398 - port: Close - uid: 23378 + uid: 23397 - port: Close - uid: 23377 + uid: 23396 - port: Close - uid: 23376 + uid: 23395 type: SignalTransmitter - proto: SignAnomaly entities: - - uid: 23440 + - uid: 23459 components: - pos: 76.5,-42.5 parent: 2 type: Transform - proto: SignAnomaly2 entities: - - uid: 23441 + - uid: 23460 components: - pos: 63.5,-41.5 parent: 2 type: Transform - proto: SignArmory entities: - - uid: 23442 + - uid: 23461 components: - pos: 29.5,24.5 parent: 2 type: Transform - proto: SignAtmos entities: - - uid: 23443 + - uid: 23462 components: - pos: -21.5,-31.5 parent: 2 type: Transform - proto: SignAtmosMinsky entities: - - uid: 23444 + - uid: 23463 components: - pos: -30.5,-29.5 parent: 2 type: Transform - - uid: 23445 + - uid: 23464 components: - pos: -21.5,-33.5 parent: 2 type: Transform - proto: SignBar entities: - - uid: 23446 + - uid: 23465 components: - pos: 15.5,5.5 parent: 2 type: Transform - - uid: 23447 + - uid: 23466 components: - rot: 1.5707963267948966 rad pos: 12.5,4.5 @@ -179435,97 +179468,97 @@ entities: type: Transform - proto: SignBiohazardMed entities: - - uid: 23448 + - uid: 23467 components: - pos: -23.5,-74.5 parent: 2 type: Transform - proto: SignBridge entities: - - uid: 23449 + - uid: 23468 components: - pos: 17.5,-26.5 parent: 2 type: Transform - - uid: 23450 + - uid: 23469 components: - pos: 33.5,-26.5 parent: 2 type: Transform - proto: SignCanisters entities: - - uid: 23451 + - uid: 23470 components: - pos: -36.5,-39.5 parent: 2 type: Transform - - uid: 23452 + - uid: 23471 components: - pos: 47.5,-50.5 parent: 2 type: Transform - proto: SignCargo entities: - - uid: 23453 + - uid: 23472 components: - pos: -21.5,22.5 parent: 2 type: Transform - proto: SignCargoDock entities: - - uid: 23454 + - uid: 23473 components: - pos: -35.532974,23.594805 parent: 2 type: Transform - proto: SignChem entities: - - uid: 23455 + - uid: 23474 components: - pos: 2.5,-44.5 parent: 2 type: Transform - proto: SignCloning entities: - - uid: 23456 + - uid: 23475 components: - pos: -7.5,-62.5 parent: 2 type: Transform - proto: SignConference entities: - - uid: 23457 + - uid: 23476 components: - pos: 22.5,-26.5 parent: 2 type: Transform - proto: SignDangerMed entities: - - uid: 23458 + - uid: 23477 components: - pos: 15.5,35.5 parent: 2 type: Transform - proto: SignDirectionalBar entities: - - uid: 23459 + - uid: 23478 components: - pos: -19.478512,48.31118 parent: 2 type: Transform - - uid: 23460 + - uid: 23479 components: - rot: 1.5707963267948966 rad pos: -17.472397,9.2931385 parent: 2 type: Transform - - uid: 23461 + - uid: 23480 components: - rot: 3.141592653589793 rad pos: 23.49888,-45.152493 parent: 2 type: Transform - - uid: 23462 + - uid: 23481 components: - rot: 1.5707963267948966 rad pos: -27.50719,3.4686704 @@ -179533,52 +179566,52 @@ entities: type: Transform - proto: SignDirectionalBridge entities: - - uid: 23463 + - uid: 23482 components: - pos: -19.478844,48.09307 parent: 2 type: Transform - - uid: 23464 + - uid: 23483 components: - rot: 1.5707963267948966 rad pos: -1.5055174,1.4292434 parent: 2 type: Transform - - uid: 23465 + - uid: 23484 components: - rot: 1.5707963267948966 rad pos: -2.4872613,-24.496803 parent: 2 type: Transform - - uid: 23466 + - uid: 23485 components: - pos: 27.5,-7.5 parent: 2 type: Transform - - uid: 23467 + - uid: 23486 components: - pos: 15.5507345,4.4965997 parent: 2 type: Transform - - uid: 23468 + - uid: 23487 components: - rot: 1.5707963267948966 rad pos: -11.506838,1.2987667 parent: 2 type: Transform - - uid: 23469 + - uid: 23488 components: - rot: 1.5707963267948966 rad pos: -1.4898663,-40.13394 parent: 2 type: Transform - - uid: 23470 + - uid: 23489 components: - rot: 1.5707963267948966 rad pos: -17.465254,8.332064 parent: 2 type: Transform - - uid: 23471 + - uid: 23490 components: - rot: 1.5707963267948966 rad pos: -27.50719,3.2186704 @@ -179586,19 +179619,19 @@ entities: type: Transform - proto: SignDirectionalChapel entities: - - uid: 23472 + - uid: 23491 components: - rot: -1.5707963267948966 rad pos: -27.5,2.5 parent: 2 type: Transform - - uid: 23473 + - uid: 23492 components: - rot: 3.141592653589793 rad pos: -17.448181,-40.311073 parent: 2 type: Transform - - uid: 23474 + - uid: 23493 components: - rot: -1.5707963267948966 rad pos: -21.478504,9.770466 @@ -179606,238 +179639,238 @@ entities: type: Transform - proto: SignDirectionalEng entities: - - uid: 23475 + - uid: 23494 components: - rot: -1.5707963267948966 rad pos: 23.456676,-44.465714 parent: 2 type: Transform - - uid: 23476 + - uid: 23495 components: - rot: -1.5707963267948966 rad pos: 13.481093,-40.52887 parent: 2 type: Transform - - uid: 23477 + - uid: 23496 components: - rot: -1.5707963267948966 rad pos: -1.5094987,0.23005629 parent: 2 type: Transform - - uid: 23478 + - uid: 23497 components: - rot: -1.5707963267948966 rad pos: 15.5186825,0.3410281 parent: 2 type: Transform - - uid: 23479 + - uid: 23498 components: - rot: -1.5707963267948966 rad pos: -6.468719,-24.535433 parent: 2 type: Transform - - uid: 23480 + - uid: 23499 components: - rot: -1.5707963267948966 rad pos: 13.494198,-28.706446 parent: 2 type: Transform - - uid: 23481 + - uid: 23500 components: - rot: -1.5707963267948966 rad pos: 27.506605,-7.2696166 parent: 2 type: Transform - - uid: 23482 + - uid: 23501 components: - pos: -11.54485,0.20892155 parent: 2 type: Transform - - uid: 23483 + - uid: 23502 components: - rot: -1.5707963267948966 rad pos: -12.525326,-40.537384 parent: 2 type: Transform - - uid: 23484 + - uid: 23503 components: - rot: -1.5707963267948966 rad pos: 37.56283,-40.519398 parent: 2 type: Transform - - uid: 23485 + - uid: 23504 components: - pos: -19.479143,47.185772 parent: 2 type: Transform - - uid: 23486 + - uid: 23505 components: - pos: -21.4735,10.205865 parent: 2 type: Transform - - uid: 23487 + - uid: 23506 components: - rot: 3.141592653589793 rad pos: -17.5,-33.5 parent: 2 type: Transform - - uid: 23488 + - uid: 23507 components: - pos: -27.491566,-1.4688294 parent: 2 type: Transform - proto: SignDirectionalEvac entities: - - uid: 23489 + - uid: 23508 components: - rot: 1.5707963267948966 rad pos: 23.453842,-7.240517 parent: 2 type: Transform - - uid: 23490 + - uid: 23509 components: - rot: 3.141592653589793 rad pos: 13.494197,-24.550196 parent: 2 type: Transform - - uid: 23491 + - uid: 23510 components: - rot: 3.141592653589793 rad pos: 17.50633,-38.506306 parent: 2 type: Transform - - uid: 23492 + - uid: 23511 components: - rot: 3.141592653589793 rad pos: 27.469652,-44.466072 parent: 2 type: Transform - - uid: 23493 + - uid: 23512 components: - rot: 3.141592653589793 rad pos: 33.56561,-38.47694 parent: 2 type: Transform - - uid: 23494 + - uid: 23513 components: - rot: 1.5707963267948966 rad pos: 15.500585,1.4258997 parent: 2 type: Transform - - uid: 23495 + - uid: 23514 components: - rot: 1.5707963267948966 rad pos: -2.4941144,-24.735882 parent: 2 type: Transform - - uid: 23496 + - uid: 23515 components: - rot: 1.5707963267948966 rad pos: -1.5055175,1.6636184 parent: 2 type: Transform - - uid: 23497 + - uid: 23516 components: - rot: 1.5707963267948966 rad pos: -11.506838,1.7987667 parent: 2 type: Transform - - uid: 23498 + - uid: 23517 components: - rot: 1.5707963267948966 rad pos: -1.4898663,-40.82144 parent: 2 type: Transform - - uid: 23499 + - uid: 23518 components: - rot: 1.5707963267948966 rad pos: 35.5,3.5 parent: 2 type: Transform - - uid: 23500 + - uid: 23519 components: - pos: -19.483376,48.548702 parent: 2 type: Transform - - uid: 23501 + - uid: 23520 components: - rot: 1.5707963267948966 rad pos: -17.48425,-7.298242 parent: 2 type: Transform - - uid: 23502 + - uid: 23521 components: - rot: 1.5707963267948966 rad pos: -17.5155,-24.43221 parent: 2 type: Transform - - uid: 23503 + - uid: 23522 components: - rot: 1.5707963267948966 rad pos: -17.453,-40.550083 parent: 2 type: Transform - - uid: 23504 + - uid: 23523 components: - rot: 1.5707963267948966 rad pos: -17.465254,9.066439 parent: 2 type: Transform - - uid: 23505 + - uid: 23524 components: - rot: 3.141592653589793 rad pos: 60.5,-42.5 parent: 2 type: Transform - - uid: 23506 + - uid: 23525 components: - pos: -17.5,22.5 parent: 2 type: Transform - - uid: 23507 + - uid: 23526 components: - pos: -17.5,33.5 parent: 2 type: Transform - proto: SignDirectionalFood entities: - - uid: 23508 + - uid: 23527 components: - rot: -1.5707963267948966 rad pos: 23.455772,-7.472424 parent: 2 type: Transform - - uid: 23509 + - uid: 23528 components: - rot: 3.141592653589793 rad pos: -6.442209,-23.658274 parent: 2 type: Transform - - uid: 23510 + - uid: 23529 components: - rot: -1.5707963267948966 rad pos: 13.515763,-23.596605 parent: 2 type: Transform - - uid: 23511 + - uid: 23530 components: - rot: 3.141592653589793 rad pos: 13.482204,-40.04481 parent: 2 type: Transform - - uid: 23512 + - uid: 23531 components: - rot: 3.141592653589793 rad pos: -6.4057527,-39.46833 parent: 2 type: Transform - - uid: 23513 + - uid: 23532 components: - rot: 3.141592653589793 rad pos: 23.49562,-45.402493 parent: 2 type: Transform - - uid: 23514 + - uid: 23533 components: - rot: 1.5707963267948966 rad pos: -27.50719,2.7655454 @@ -179845,24 +179878,24 @@ entities: type: Transform - proto: SignDirectionalJanitor entities: - - uid: 23515 + - uid: 23534 components: - pos: -6.5,-2.5 parent: 2 type: Transform - - uid: 23516 + - uid: 23535 components: - rot: -1.5707963267948966 rad pos: 13.511264,-23.825424 parent: 2 type: Transform - - uid: 23517 + - uid: 23536 components: - rot: -1.5707963267948966 rad pos: 13.468106,-40.766113 parent: 2 type: Transform - - uid: 23518 + - uid: 23537 components: - rot: 3.141592653589793 rad pos: -6.4057527,-39.226246 @@ -179870,230 +179903,230 @@ entities: type: Transform - proto: SignDirectionalMed entities: - - uid: 23519 + - uid: 23538 components: - pos: -19.479143,47.404522 parent: 2 type: Transform - - uid: 23520 + - uid: 23539 components: - rot: -1.5707963267948966 rad pos: 13.494197,-24.31582 parent: 2 type: Transform - - uid: 23521 + - uid: 23540 components: - rot: -1.5707963267948966 rad pos: 23.456676,-44.23134 parent: 2 type: Transform - - uid: 23522 + - uid: 23541 components: - rot: -1.5707963267948966 rad pos: 13.481093,-40.279392 parent: 2 type: Transform - - uid: 23523 + - uid: 23542 components: - rot: -1.5707963267948966 rad pos: 15.518682,0.809778 parent: 2 type: Transform - - uid: 23524 + - uid: 23543 components: - pos: -1.509499,0.7144314 parent: 2 type: Transform - - uid: 23525 + - uid: 23544 components: - pos: -6.468719,-24.785433 parent: 2 type: Transform - - uid: 23526 + - uid: 23545 components: - pos: -11.538088,0.45501685 parent: 2 type: Transform - - uid: 23527 + - uid: 23546 components: - rot: -1.5707963267948966 rad pos: 37.560596,-40.278557 parent: 2 type: Transform - - uid: 23528 + - uid: 23547 components: - pos: -17.51201,-24.680704 parent: 2 type: Transform - - uid: 23529 + - uid: 23548 components: - pos: -21.471863,9.993778 parent: 2 type: Transform - - uid: 23530 + - uid: 23549 components: - pos: -17.494442,-12.803106 parent: 2 type: Transform - - uid: 23531 + - uid: 23550 components: - pos: -27.491566,-1.7032045 parent: 2 type: Transform - proto: SignDirectionalSci entities: - - uid: 23532 + - uid: 23551 components: - rot: 1.5707963267948966 rad pos: -2.4872613,-24.231178 parent: 2 type: Transform - - uid: 23533 + - uid: 23552 components: - rot: 1.5707963267948966 rad pos: 27.465042,-44.22285 parent: 2 type: Transform - - uid: 23534 + - uid: 23553 components: - pos: 15.550735,4.2699327 parent: 2 type: Transform - - uid: 23535 + - uid: 23554 components: - pos: 13.494197,-28.22207 parent: 2 type: Transform - - uid: 23536 + - uid: 23555 components: - pos: 27.506117,-7.7341094 parent: 2 type: Transform - - uid: 23537 + - uid: 23556 components: - rot: 1.5707963267948966 rad pos: -11.506838,1.5487667 parent: 2 type: Transform - - uid: 23538 + - uid: 23557 components: - rot: 1.5707963267948966 rad pos: -1.4898663,-40.368317 parent: 2 type: Transform - - uid: 23539 + - uid: 23558 components: - pos: -19.479143,47.623272 parent: 2 type: Transform - - uid: 23540 + - uid: 23559 components: - rot: 1.5707963267948966 rad pos: -17.465254,8.816439 parent: 2 type: Transform - - uid: 23541 + - uid: 23560 components: - rot: 1.5707963267948966 rad pos: -17.460167,-40.790154 parent: 2 type: Transform - - uid: 23542 + - uid: 23561 components: - pos: -17.507042,-24.18393 parent: 2 type: Transform - - uid: 23543 + - uid: 23562 components: - pos: -27.491566,-1.2344544 parent: 2 type: Transform - proto: SignDirectionalSec entities: - - uid: 23544 + - uid: 23563 components: - rot: 3.141592653589793 rad pos: 23.45433,-7.7213244 parent: 2 type: Transform - - uid: 23545 + - uid: 23564 components: - rot: 3.141592653589793 rad pos: 27.468637,-44.695934 parent: 2 type: Transform - - uid: 23546 + - uid: 23565 components: - rot: 3.141592653589793 rad pos: 33.55467,-38.221992 parent: 2 type: Transform - - uid: 23547 + - uid: 23566 components: - rot: 3.141592653589793 rad pos: 17.50898,-38.26922 parent: 2 type: Transform - - uid: 23548 + - uid: 23567 components: - rot: 3.141592653589793 rad pos: 15.5581455,4.7444477 parent: 2 type: Transform - - uid: 23549 + - uid: 23568 components: - rot: 3.141592653589793 rad pos: 13.4980955,-24.785376 parent: 2 type: Transform - - uid: 23550 + - uid: 23569 components: - rot: 1.5707963267948966 rad pos: -6.4826374,-24.301481 parent: 2 type: Transform - - uid: 23551 + - uid: 23570 components: - rot: 1.5707963267948966 rad pos: -1.4980723,1.197365 parent: 2 type: Transform - - uid: 23552 + - uid: 23571 components: - rot: 1.5707963267948966 rad pos: -11.517976,1.041115 parent: 2 type: Transform - - uid: 23553 + - uid: 23572 components: - rot: 1.5707963267948966 rad pos: -1.4758278,-40.604027 parent: 2 type: Transform - - uid: 23554 + - uid: 23573 components: - pos: -19.471409,47.857254 parent: 2 type: Transform - - uid: 23555 + - uid: 23574 components: - rot: 1.5707963267948966 rad pos: -17.523046,-28.22695 parent: 2 type: Transform - - uid: 23556 + - uid: 23575 components: - rot: 1.5707963267948966 rad pos: -17.476206,8.574429 parent: 2 type: Transform - - uid: 23557 + - uid: 23576 components: - rot: 1.5707963267948966 rad pos: -17.478817,-7.5615916 parent: 2 type: Transform - - uid: 23558 + - uid: 23577 components: - rot: 1.5707963267948966 rad pos: -27.522816,2.2499206 @@ -180101,12 +180134,12 @@ entities: type: Transform - proto: SignDirectionalSolar entities: - - uid: 23559 + - uid: 23578 components: - pos: -0.5,-76.5 parent: 2 type: Transform - - uid: 23560 + - uid: 23579 components: - rot: 3.141592653589793 rad pos: 65.5,27.5 @@ -180114,220 +180147,220 @@ entities: type: Transform - proto: SignDirectionalSupply entities: - - uid: 23561 + - uid: 23580 components: - rot: -1.5707963267948966 rad pos: 23.453947,-44.6932 parent: 2 type: Transform - - uid: 23562 + - uid: 23581 components: - rot: -1.5707963267948966 rad pos: 15.5186825,0.5754031 parent: 2 type: Transform - - uid: 23563 + - uid: 23582 components: - rot: -1.5707963267948966 rad pos: -1.5094988,0.4800564 parent: 2 type: Transform - - uid: 23564 + - uid: 23583 components: - rot: -1.5707963267948966 rad pos: 13.494197,-28.47207 parent: 2 type: Transform - - uid: 23565 + - uid: 23584 components: - rot: 3.141592653589793 rad pos: -11.522463,0.70501685 parent: 2 type: Transform - - uid: 23566 + - uid: 23585 components: - rot: -1.5707963267948966 rad pos: -12.525326,-40.287384 parent: 2 type: Transform - - uid: 23567 + - uid: 23586 components: - rot: -1.5707963267948966 rad pos: 37.56283,-40.753773 parent: 2 type: Transform - - uid: 23568 + - uid: 23587 components: - rot: 3.141592653589793 rad pos: -21.4735,9.533642 parent: 2 type: Transform - - uid: 23569 + - uid: 23588 components: - rot: 3.141592653589793 rad pos: -2.5,-23.5 parent: 2 type: Transform - - uid: 23570 + - uid: 23589 components: - rot: 3.141592653589793 rad pos: -17.496458,-33.756527 parent: 2 type: Transform - - uid: 23571 + - uid: 23590 components: - rot: 3.141592653589793 rad pos: -17.5,-12.5 parent: 2 type: Transform - - uid: 23572 + - uid: 23591 components: - rot: 3.141592653589793 rad pos: -27.491566,3.7030454 parent: 2 type: Transform - - uid: 23573 + - uid: 23592 components: - pos: -19.471409,48.794754 parent: 2 type: Transform - proto: SignDisposalSpace entities: - - uid: 23574 + - uid: 23593 components: - pos: 23.5,-52.5 parent: 2 type: Transform - proto: SignElectrical entities: - - uid: 23575 + - uid: 23594 components: - pos: -78.5,-5.5 parent: 2 type: Transform - - uid: 23576 + - uid: 23595 components: - pos: -78.5,-19.5 parent: 2 type: Transform - - uid: 23577 + - uid: 23596 components: - pos: -71.5,-2.5 parent: 2 type: Transform - - uid: 23578 + - uid: 23597 components: - pos: -64.5,-2.5 parent: 2 type: Transform - - uid: 23579 + - uid: 23598 components: - pos: 24.5,39.5 parent: 2 type: Transform - - uid: 23580 + - uid: 23599 components: - pos: 32.5,39.5 parent: 2 type: Transform - - uid: 23581 + - uid: 23600 components: - pos: 38.5,31.5 parent: 2 type: Transform - proto: SignElectricalMed entities: - - uid: 23582 + - uid: 23601 components: - pos: -12.5,-70.5 parent: 2 type: Transform - - uid: 23583 + - uid: 23602 components: - pos: 42.5,-60.5 parent: 2 type: Transform - - uid: 23584 + - uid: 23603 components: - pos: 8.5,-44.5 parent: 2 type: Transform - - uid: 23585 + - uid: 23604 components: - pos: 37.5,-44.5 parent: 2 type: Transform - - uid: 23586 + - uid: 23605 components: - pos: 37.5,-29.5 parent: 2 type: Transform - - uid: 23587 + - uid: 23606 components: - pos: 46.5,-6.5 parent: 2 type: Transform - - uid: 23588 + - uid: 23607 components: - pos: 47.5,-0.5 parent: 2 type: Transform - - uid: 23589 + - uid: 23608 components: - pos: 33.5,23.5 parent: 2 type: Transform - - uid: 23590 + - uid: 23609 components: - pos: -29.5,-54.5 parent: 2 type: Transform - proto: SignEngine entities: - - uid: 23591 + - uid: 23610 components: - pos: -43.5,-9.5 parent: 2 type: Transform - proto: SignEngineering entities: - - uid: 23592 + - uid: 23611 components: - pos: -21.5,-8.5 parent: 2 type: Transform - - uid: 23593 + - uid: 23612 components: - pos: -21.5,-15.5 parent: 2 type: Transform - proto: SignEscapePods entities: - - uid: 23594 + - uid: 23613 components: - pos: 29.5,-93.5 parent: 2 type: Transform - - uid: 23595 + - uid: 23614 components: - pos: -16.5,68.5 parent: 2 type: Transform - - uid: 23596 + - uid: 23615 components: - pos: 49.5,-93.5 parent: 2 type: Transform - proto: SignEVA entities: - - uid: 23597 + - uid: 23616 components: - pos: 34.5,-15.5 parent: 2 type: Transform - proto: SignExplosives entities: - - uid: 30680 + - uid: 23617 components: - rot: 1.5707963267948966 rad pos: 68.5,-26.5 @@ -180335,98 +180368,98 @@ entities: type: Transform - proto: SignFlammableMed entities: - - uid: 23598 + - uid: 23618 components: - pos: -42.5,-63.5 parent: 2 type: Transform - proto: SignGravity entities: - - uid: 23599 + - uid: 23619 components: - pos: -18.5,-3.5 parent: 2 type: Transform - proto: SignHydro3 entities: - - uid: 23600 + - uid: 23620 components: - pos: -5.5,4.5 parent: 2 type: Transform - proto: SignInterrogation entities: - - uid: 23601 + - uid: 23621 components: - pos: 18.5,18.5 parent: 2 type: Transform - proto: SignLaserMed entities: - - uid: 23602 + - uid: 23622 components: - rot: 3.141592653589793 rad pos: -63.5,-29.5 parent: 2 type: Transform - - uid: 23603 + - uid: 23623 components: - pos: -62.5,-22.5 parent: 2 type: Transform - - uid: 23604 + - uid: 23624 components: - pos: -70.5,-22.5 parent: 2 type: Transform - proto: SignLibrary entities: - - uid: 23605 + - uid: 23625 components: - pos: 9.5,-2.5 parent: 2 type: Transform - proto: SignMagneticsMed entities: - - uid: 23606 + - uid: 23626 components: - pos: -47.5,27.5 parent: 2 type: Transform - proto: SignMedical entities: - - uid: 23607 + - uid: 23627 components: - pos: -2.5,-44.5 parent: 2 type: Transform - proto: SignMinerDock entities: - - uid: 23608 + - uid: 23628 components: - pos: -44.5,27.5 parent: 2 type: Transform - proto: SignMorgue entities: - - uid: 23609 + - uid: 23629 components: - pos: -15.5,-68.5 parent: 2 type: Transform - - uid: 23610 + - uid: 23630 components: - pos: -12.5,-62.5 parent: 2 type: Transform - proto: SignPrison entities: - - uid: 23611 + - uid: 23631 components: - pos: 39.5,24.5 parent: 2 type: Transform - - uid: 23612 + - uid: 23632 components: - name: open prison sign type: MetaData @@ -180435,24 +180468,24 @@ entities: type: Transform - proto: SignRadiationMed entities: - - uid: 23613 + - uid: 23633 components: - pos: -63.5,-25.5 parent: 2 type: Transform - proto: SignRedFive entities: - - uid: 23614 + - uid: 23634 components: - pos: 57.5,22.5 parent: 2 type: Transform - - uid: 23615 + - uid: 23635 components: - pos: 41.5,17.5 parent: 2 type: Transform - - uid: 23616 + - uid: 23636 components: - rot: 3.141592653589793 rad pos: 39.5,5.5 @@ -180460,17 +180493,17 @@ entities: type: Transform - proto: SignRedFour entities: - - uid: 23617 + - uid: 23637 components: - pos: 40.5,17.5 parent: 2 type: Transform - - uid: 23618 + - uid: 23638 components: - pos: 54.5,22.5 parent: 2 type: Transform - - uid: 23619 + - uid: 23639 components: - rot: 3.141592653589793 rad pos: 39.5,8.5 @@ -180478,66 +180511,66 @@ entities: type: Transform - proto: SignRedNine entities: - - uid: 23620 + - uid: 23640 components: - pos: 51.62568,41.505035 parent: 2 type: Transform - proto: SignRedOne entities: - - uid: 23621 + - uid: 23641 components: - pos: 45.5,22.5 parent: 2 type: Transform - - uid: 23622 + - uid: 23642 components: - rot: 3.141592653589793 rad pos: 28.5,13.5 parent: 2 type: Transform - - uid: 23623 + - uid: 23643 components: - pos: 30.70196,-15.491432 parent: 2 type: Transform - - uid: 23624 + - uid: 23644 components: - pos: 37.5,17.5 parent: 2 type: Transform - proto: SignRedSeven entities: - - uid: 23625 + - uid: 23645 components: - pos: 60.5,17.5 parent: 2 type: Transform - proto: SignRedSix entities: - - uid: 23626 + - uid: 23646 components: - pos: 60.5,20.5 parent: 2 type: Transform - - uid: 23627 + - uid: 23647 components: - pos: 51.40693,41.505035 parent: 2 type: Transform - proto: SignRedThree entities: - - uid: 23628 + - uid: 23648 components: - pos: 51.5,22.5 parent: 2 type: Transform - - uid: 23629 + - uid: 23649 components: - pos: 39.5,17.5 parent: 2 type: Transform - - uid: 23630 + - uid: 23650 components: - rot: 3.141592653589793 rad pos: 34.5,13.5 @@ -180545,18 +180578,18 @@ entities: type: Transform - proto: SignRedTwo entities: - - uid: 23631 + - uid: 23651 components: - pos: 48.5,22.5 parent: 2 type: Transform - - uid: 23632 + - uid: 23652 components: - rot: 3.141592653589793 rad pos: 38.5,17.5 parent: 2 type: Transform - - uid: 23633 + - uid: 23653 components: - rot: 3.141592653589793 rad pos: 31.5,13.5 @@ -180564,137 +180597,137 @@ entities: type: Transform - proto: SignRedZero entities: - - uid: 23634 + - uid: 23654 components: - pos: 30.467585,-15.491432 parent: 2 type: Transform - - uid: 23635 + - uid: 23655 components: - pos: 30.23321,-15.491432 parent: 2 type: Transform - proto: SignRND entities: - - uid: 23636 + - uid: 23656 components: - pos: 47.5,-38.5 parent: 2 type: Transform - proto: SignRobo entities: - - uid: 23637 + - uid: 23657 components: - pos: 66.5,-47.5 parent: 2 type: Transform - proto: SignScience1 entities: - - uid: 23638 + - uid: 23658 components: - pos: 38.5,-40.5 parent: 2 type: Transform - proto: SignShipDock entities: - - uid: 23639 + - uid: 23659 components: - name: docking arm type: MetaData - pos: -14.5,70.5 parent: 2 type: Transform - - uid: 23640 + - uid: 23660 components: - name: docking arm type: MetaData - pos: -20.5,70.5 parent: 2 type: Transform - - uid: 23641 + - uid: 23661 components: - pos: 76.5,-32.5 parent: 2 type: Transform - proto: SignShock entities: - - uid: 23642 + - uid: 23662 components: - pos: 17.5,-30.5 parent: 2 type: Transform - - uid: 23643 + - uid: 23663 components: - pos: 11.5,-15.5 parent: 2 type: Transform - proto: SignSmoking entities: - - uid: 23644 + - uid: 23664 components: - pos: 1.5,-49.5 parent: 2 type: Transform - - uid: 23645 + - uid: 23665 components: - pos: -10.5,-49.5 parent: 2 type: Transform - proto: SignSomethingOld entities: - - uid: 23646 + - uid: 23666 components: - pos: -29.5,2.5 parent: 2 type: Transform - proto: SignSomethingOld2 entities: - - uid: 23647 + - uid: 23667 components: - pos: -42.5,26.5 parent: 2 type: Transform - proto: SignSpace entities: - - uid: 23648 + - uid: 23668 components: - pos: -2.5,-76.5 parent: 2 type: Transform - - uid: 23649 + - uid: 23669 components: - pos: -58.5,-53.5 parent: 2 type: Transform - - uid: 23650 + - uid: 23670 components: - pos: -49.5,18.5 parent: 2 type: Transform - proto: SignSurgery entities: - - uid: 23651 + - uid: 23671 components: - pos: -1.5,-62.5 parent: 2 type: Transform - proto: SignTelecomms entities: - - uid: 23652 + - uid: 23672 components: - pos: 13.5,-22.5 parent: 2 type: Transform - proto: SignToolStorage entities: - - uid: 23653 + - uid: 23673 components: - pos: -33.5,-13.5 parent: 2 type: Transform - proto: SignToxins2 entities: - - uid: 23654 + - uid: 23674 components: - name: toxin lab sign type: MetaData @@ -180703,40 +180736,40 @@ entities: type: Transform - proto: SignVirology entities: - - uid: 23655 + - uid: 23675 components: - pos: -18.5,-62.5 parent: 2 type: Transform - proto: SilverOre1 entities: - - uid: 23656 + - uid: 23676 components: - pos: 73.48065,-67.68085 parent: 2 type: Transform - proto: SingularityGenerator entities: - - uid: 23657 + - uid: 23677 components: - pos: -66.5,-13.5 parent: 2 type: Transform - proto: SinkStemlessWater entities: - - uid: 23658 + - uid: 23678 components: - rot: 1.5707963267948966 rad pos: -31.5,-3.5 parent: 2 type: Transform - - uid: 23659 + - uid: 23679 components: - rot: 1.5707963267948966 rad pos: -31.5,-2.5 parent: 2 type: Transform - - uid: 23660 + - uid: 23680 components: - rot: -1.5707963267948966 rad pos: -4.5,-96.5 @@ -180744,92 +180777,92 @@ entities: type: Transform - proto: SinkWide entities: - - uid: 23661 + - uid: 23681 components: - rot: -1.5707963267948966 rad pos: 7.5,-48.5 parent: 2 type: Transform - - uid: 23662 + - uid: 23682 components: - pos: 1.5,9.5 parent: 2 type: Transform - - uid: 23663 + - uid: 23683 components: - rot: 3.141592653589793 rad pos: 17.5,9.5 parent: 2 type: Transform - - uid: 23664 + - uid: 23684 components: - rot: -1.5707963267948966 rad pos: -8.5,-69.5 parent: 2 type: Transform - - uid: 23665 + - uid: 23685 components: - rot: 1.5707963267948966 rad pos: -1.5,-7.5 parent: 2 type: Transform - - uid: 23666 + - uid: 23686 components: - rot: -1.5707963267948966 rad pos: -2.5,5.5 parent: 2 type: Transform - - uid: 23667 + - uid: 23687 components: - rot: -1.5707963267948966 rad pos: -2.5,6.5 parent: 2 type: Transform - - uid: 23668 + - uid: 23688 components: - rot: 3.141592653589793 rad pos: -21.5,41.5 parent: 2 type: Transform - - uid: 23669 + - uid: 23689 components: - rot: 1.5707963267948966 rad pos: -11.5,-32.5 parent: 2 type: Transform - - uid: 23670 + - uid: 23690 components: - rot: 3.141592653589793 rad pos: 62.5,21.5 parent: 2 type: Transform - - uid: 23671 + - uid: 23691 components: - pos: 63.5,13.5 parent: 2 type: Transform - - uid: 23672 + - uid: 23692 components: - pos: 63.5,11.5 parent: 2 type: Transform - - uid: 23673 + - uid: 23693 components: - pos: 63.5,9.5 parent: 2 type: Transform - - uid: 23674 + - uid: 23694 components: - rot: 1.5707963267948966 rad pos: -33.5,9.5 parent: 2 type: Transform - - uid: 23675 + - uid: 23695 components: - pos: -3.5,56.5 parent: 2 type: Transform - - uid: 23676 + - uid: 23696 components: - rot: 3.141592653589793 rad pos: 46.5,-39.5 @@ -180837,7 +180870,7 @@ entities: type: Transform - proto: SmallLight entities: - - uid: 23677 + - uid: 23697 components: - rot: -1.5707963267948966 rad pos: 17.5,-48.5 @@ -180845,128 +180878,128 @@ entities: type: Transform - proto: SMESBasic entities: - - uid: 23678 + - uid: 23698 components: - pos: 4.5,-20.5 parent: 2 type: Transform - - uid: 23679 + - uid: 23699 components: - pos: -2.5,-78.5 parent: 2 type: Transform - - uid: 23680 + - uid: 23700 components: - pos: 48.5,-3.5 parent: 2 type: Transform - - uid: 23681 + - uid: 23701 components: - pos: -48.5,-21.5 parent: 2 type: Transform - - uid: 23682 + - uid: 23702 components: - pos: -46.5,-21.5 parent: 2 type: Transform - - uid: 23683 + - uid: 23703 components: - pos: -44.5,-21.5 parent: 2 type: Transform - - uid: 23684 + - uid: 23704 components: - pos: -50.5,-9.5 parent: 2 type: Transform - - uid: 23685 + - uid: 23705 components: - pos: -56.5,-20.5 parent: 2 type: Transform - - uid: 23686 + - uid: 23706 components: - pos: -28.5,-37.5 parent: 2 type: Transform - - uid: 23687 + - uid: 23707 components: - pos: -55.5,-88.5 parent: 2 type: Transform - - uid: 23688 + - uid: 23708 components: - pos: 73.5,38.5 parent: 2 type: Transform - - uid: 23689 + - uid: 23709 components: - pos: 73.5,34.5 parent: 2 type: Transform - - uid: 23690 + - uid: 23710 components: - pos: -0.5,-78.5 parent: 2 type: Transform - - uid: 23691 + - uid: 23711 components: - pos: -70.5,-30.5 parent: 2 type: Transform - - uid: 23692 + - uid: 23712 components: - pos: -74.5,-30.5 parent: 2 type: Transform - - uid: 23693 + - uid: 23713 components: - pos: -72.5,-30.5 parent: 2 type: Transform - proto: Soap entities: - - uid: 23694 + - uid: 23714 components: - pos: 4.478334,-9.306811 parent: 2 type: Transform - - uid: 23695 + - uid: 23715 components: - pos: -13.533843,-21.411894 parent: 2 type: Transform - - uid: 23696 + - uid: 23716 components: - pos: -13.440093,-21.677519 parent: 2 type: Transform - proto: soda_dispenser entities: - - uid: 23697 + - uid: 23717 components: - rot: -1.5707963267948966 rad pos: 0.5,-4.5 parent: 2 type: Transform - - uid: 23698 + - uid: 23718 components: - rot: -1.5707963267948966 rad pos: 18.5,11.5 parent: 2 type: Transform - - uid: 23699 + - uid: 23719 components: - pos: -40.5,-74.5 parent: 2 type: Transform - - uid: 23700 + - uid: 23720 components: - pos: 37.5,51.5 parent: 2 type: Transform - - uid: 23701 + - uid: 23721 components: - rot: 3.141592653589793 rad pos: -20.5,47.5 @@ -180974,648 +181007,648 @@ entities: type: Transform - proto: SodiumLightTube entities: - - uid: 23702 + - uid: 23722 components: - pos: -42.50719,-90.42425 parent: 2 type: Transform - proto: SolarPanel entities: - - uid: 23703 + - uid: 23723 components: - pos: 10.5,-101.5 parent: 2 type: Transform - - uid: 23704 + - uid: 23724 components: - pos: 16.5,-95.5 parent: 2 type: Transform - - uid: 23705 + - uid: 23725 components: - pos: 18.5,-95.5 parent: 2 type: Transform - - uid: 23706 + - uid: 23726 components: - pos: 6.5,-104.5 parent: 2 type: Transform - - uid: 23707 + - uid: 23727 components: - pos: 10.5,-95.5 parent: 2 type: Transform - - uid: 23708 + - uid: 23728 components: - pos: 12.5,-101.5 parent: 2 type: Transform - - uid: 23709 + - uid: 23729 components: - pos: 8.5,-104.5 parent: 2 type: Transform - - uid: 23710 + - uid: 23730 components: - pos: 14.5,-98.5 parent: 2 type: Transform - - uid: 23711 + - uid: 23731 components: - pos: 10.5,-98.5 parent: 2 type: Transform - - uid: 23712 + - uid: 23732 components: - pos: 8.5,-98.5 parent: 2 type: Transform - - uid: 23713 + - uid: 23733 components: - pos: 8.5,-95.5 parent: 2 type: Transform - - uid: 23714 + - uid: 23734 components: - pos: 12.5,-95.5 parent: 2 type: Transform - - uid: 23715 + - uid: 23735 components: - pos: 12.5,-98.5 parent: 2 type: Transform - - uid: 23716 + - uid: 23736 components: - pos: 14.5,-101.5 parent: 2 type: Transform - - uid: 23717 + - uid: 23737 components: - pos: 14.5,-95.5 parent: 2 type: Transform - - uid: 23718 + - uid: 23738 components: - pos: 6.5,-95.5 parent: 2 type: Transform - - uid: 23719 + - uid: 23739 components: - pos: 8.5,-101.5 parent: 2 type: Transform - - uid: 23720 + - uid: 23740 components: - pos: 4.5,-95.5 parent: 2 type: Transform - - uid: 23721 + - uid: 23741 components: - pos: 12.5,-104.5 parent: 2 type: Transform - - uid: 23722 + - uid: 23742 components: - pos: 16.5,-101.5 parent: 2 type: Transform - - uid: 23723 + - uid: 23743 components: - pos: 18.5,-101.5 parent: 2 type: Transform - - uid: 23724 + - uid: 23744 components: - pos: 18.5,-98.5 parent: 2 type: Transform - - uid: 23725 + - uid: 23745 components: - pos: 16.5,-98.5 parent: 2 type: Transform - - uid: 23726 + - uid: 23746 components: - pos: 18.5,-104.5 parent: 2 type: Transform - - uid: 23727 + - uid: 23747 components: - pos: 16.5,-104.5 parent: 2 type: Transform - - uid: 23728 + - uid: 23748 components: - pos: 4.5,-104.5 parent: 2 type: Transform - - uid: 23729 + - uid: 23749 components: - pos: 4.5,-101.5 parent: 2 type: Transform - - uid: 23730 + - uid: 23750 components: - pos: 6.5,-101.5 parent: 2 type: Transform - - uid: 23731 + - uid: 23751 components: - pos: 4.5,-98.5 parent: 2 type: Transform - - uid: 23732 + - uid: 23752 components: - pos: 6.5,-98.5 parent: 2 type: Transform - - uid: 23733 + - uid: 23753 components: - pos: 14.5,-104.5 parent: 2 type: Transform - - uid: 23734 + - uid: 23754 components: - pos: 10.5,-104.5 parent: 2 type: Transform - - uid: 23735 + - uid: 23755 components: - rot: 1.5707963267948966 rad pos: 90.5,44.5 parent: 2 type: Transform - - uid: 23736 + - uid: 23756 components: - rot: 1.5707963267948966 rad pos: 90.5,43.5 parent: 2 type: Transform - - uid: 23737 + - uid: 23757 components: - rot: 1.5707963267948966 rad pos: 90.5,41.5 parent: 2 type: Transform - - uid: 23738 + - uid: 23758 components: - rot: 1.5707963267948966 rad pos: 90.5,42.5 parent: 2 type: Transform - - uid: 23739 + - uid: 23759 components: - rot: 1.5707963267948966 rad pos: 90.5,40.5 parent: 2 type: Transform - - uid: 23740 + - uid: 23760 components: - rot: 1.5707963267948966 rad pos: 90.5,39.5 parent: 2 type: Transform - - uid: 23741 + - uid: 23761 components: - rot: 1.5707963267948966 rad pos: 90.5,38.5 parent: 2 type: Transform - - uid: 23742 + - uid: 23762 components: - rot: 1.5707963267948966 rad pos: 90.5,37.5 parent: 2 type: Transform - - uid: 23743 + - uid: 23763 components: - rot: 1.5707963267948966 rad pos: 87.5,44.5 parent: 2 type: Transform - - uid: 23744 + - uid: 23764 components: - rot: 1.5707963267948966 rad pos: 87.5,43.5 parent: 2 type: Transform - - uid: 23745 + - uid: 23765 components: - rot: 1.5707963267948966 rad pos: 87.5,42.5 parent: 2 type: Transform - - uid: 23746 + - uid: 23766 components: - rot: 1.5707963267948966 rad pos: 87.5,41.5 parent: 2 type: Transform - - uid: 23747 + - uid: 23767 components: - rot: 1.5707963267948966 rad pos: 87.5,40.5 parent: 2 type: Transform - - uid: 23748 + - uid: 23768 components: - rot: 1.5707963267948966 rad pos: 87.5,39.5 parent: 2 type: Transform - - uid: 23749 + - uid: 23769 components: - rot: 1.5707963267948966 rad pos: 87.5,38.5 parent: 2 type: Transform - - uid: 23750 + - uid: 23770 components: - rot: 1.5707963267948966 rad pos: 87.5,37.5 parent: 2 type: Transform - - uid: 23751 + - uid: 23771 components: - rot: 1.5707963267948966 rad pos: 84.5,44.5 parent: 2 type: Transform - - uid: 23752 + - uid: 23772 components: - rot: 1.5707963267948966 rad pos: 84.5,43.5 parent: 2 type: Transform - - uid: 23753 + - uid: 23773 components: - rot: 1.5707963267948966 rad pos: 84.5,42.5 parent: 2 type: Transform - - uid: 23754 + - uid: 23774 components: - rot: 1.5707963267948966 rad pos: 84.5,41.5 parent: 2 type: Transform - - uid: 23755 + - uid: 23775 components: - rot: 1.5707963267948966 rad pos: 84.5,40.5 parent: 2 type: Transform - - uid: 23756 + - uid: 23776 components: - rot: 1.5707963267948966 rad pos: 84.5,39.5 parent: 2 type: Transform - - uid: 23757 + - uid: 23777 components: - rot: 1.5707963267948966 rad pos: 84.5,38.5 parent: 2 type: Transform - - uid: 23758 + - uid: 23778 components: - rot: 1.5707963267948966 rad pos: 84.5,37.5 parent: 2 type: Transform - - uid: 23759 + - uid: 23779 components: - rot: 1.5707963267948966 rad pos: 81.5,44.5 parent: 2 type: Transform - - uid: 23760 + - uid: 23780 components: - rot: 1.5707963267948966 rad pos: 81.5,43.5 parent: 2 type: Transform - - uid: 23761 + - uid: 23781 components: - rot: 1.5707963267948966 rad pos: 81.5,42.5 parent: 2 type: Transform - - uid: 23762 + - uid: 23782 components: - rot: 1.5707963267948966 rad pos: 81.5,41.5 parent: 2 type: Transform - - uid: 23763 + - uid: 23783 components: - rot: 1.5707963267948966 rad pos: 81.5,40.5 parent: 2 type: Transform - - uid: 23764 + - uid: 23784 components: - rot: 1.5707963267948966 rad pos: 81.5,39.5 parent: 2 type: Transform - - uid: 23765 + - uid: 23785 components: - rot: 1.5707963267948966 rad pos: 81.5,38.5 parent: 2 type: Transform - - uid: 23766 + - uid: 23786 components: - rot: 1.5707963267948966 rad pos: 81.5,37.5 parent: 2 type: Transform - - uid: 23767 + - uid: 23787 components: - rot: 1.5707963267948966 rad pos: 78.5,44.5 parent: 2 type: Transform - - uid: 23768 + - uid: 23788 components: - rot: 1.5707963267948966 rad pos: 78.5,43.5 parent: 2 type: Transform - - uid: 23769 + - uid: 23789 components: - rot: 1.5707963267948966 rad pos: 78.5,42.5 parent: 2 type: Transform - - uid: 23770 + - uid: 23790 components: - rot: 1.5707963267948966 rad pos: 78.5,41.5 parent: 2 type: Transform - - uid: 23771 + - uid: 23791 components: - rot: 1.5707963267948966 rad pos: 78.5,40.5 parent: 2 type: Transform - - uid: 23772 + - uid: 23792 components: - rot: 1.5707963267948966 rad pos: 78.5,39.5 parent: 2 type: Transform - - uid: 23773 + - uid: 23793 components: - rot: 1.5707963267948966 rad pos: 78.5,38.5 parent: 2 type: Transform - - uid: 23774 + - uid: 23794 components: - rot: 1.5707963267948966 rad pos: 78.5,37.5 parent: 2 type: Transform - - uid: 23775 + - uid: 23795 components: - rot: 1.5707963267948966 rad pos: 78.5,35.5 parent: 2 type: Transform - - uid: 23776 + - uid: 23796 components: - rot: 1.5707963267948966 rad pos: 78.5,34.5 parent: 2 type: Transform - - uid: 23777 + - uid: 23797 components: - rot: 1.5707963267948966 rad pos: 78.5,33.5 parent: 2 type: Transform - - uid: 23778 + - uid: 23798 components: - rot: 1.5707963267948966 rad pos: 78.5,32.5 parent: 2 type: Transform - - uid: 23779 + - uid: 23799 components: - rot: 1.5707963267948966 rad pos: 78.5,31.5 parent: 2 type: Transform - - uid: 23780 + - uid: 23800 components: - rot: 1.5707963267948966 rad pos: 78.5,30.5 parent: 2 type: Transform - - uid: 23781 + - uid: 23801 components: - rot: 1.5707963267948966 rad pos: 78.5,29.5 parent: 2 type: Transform - - uid: 23782 + - uid: 23802 components: - rot: 1.5707963267948966 rad pos: 78.5,28.5 parent: 2 type: Transform - - uid: 23783 + - uid: 23803 components: - rot: 1.5707963267948966 rad pos: 81.5,35.5 parent: 2 type: Transform - - uid: 23784 + - uid: 23804 components: - rot: 1.5707963267948966 rad pos: 81.5,34.5 parent: 2 type: Transform - - uid: 23785 + - uid: 23805 components: - rot: 1.5707963267948966 rad pos: 81.5,33.5 parent: 2 type: Transform - - uid: 23786 + - uid: 23806 components: - rot: 1.5707963267948966 rad pos: 81.5,32.5 parent: 2 type: Transform - - uid: 23787 + - uid: 23807 components: - rot: 1.5707963267948966 rad pos: 81.5,31.5 parent: 2 type: Transform - - uid: 23788 + - uid: 23808 components: - rot: 1.5707963267948966 rad pos: 81.5,30.5 parent: 2 type: Transform - - uid: 23789 + - uid: 23809 components: - rot: 1.5707963267948966 rad pos: 81.5,29.5 parent: 2 type: Transform - - uid: 23790 + - uid: 23810 components: - rot: 1.5707963267948966 rad pos: 81.5,28.5 parent: 2 type: Transform - - uid: 23791 + - uid: 23811 components: - rot: 1.5707963267948966 rad pos: 84.5,35.5 parent: 2 type: Transform - - uid: 23792 + - uid: 23812 components: - rot: 1.5707963267948966 rad pos: 84.5,34.5 parent: 2 type: Transform - - uid: 23793 + - uid: 23813 components: - rot: 1.5707963267948966 rad pos: 84.5,33.5 parent: 2 type: Transform - - uid: 23794 + - uid: 23814 components: - rot: 1.5707963267948966 rad pos: 84.5,32.5 parent: 2 type: Transform - - uid: 23795 + - uid: 23815 components: - rot: 1.5707963267948966 rad pos: 84.5,31.5 parent: 2 type: Transform - - uid: 23796 + - uid: 23816 components: - rot: 1.5707963267948966 rad pos: 84.5,30.5 parent: 2 type: Transform - - uid: 23797 + - uid: 23817 components: - rot: 1.5707963267948966 rad pos: 84.5,29.5 parent: 2 type: Transform - - uid: 23798 + - uid: 23818 components: - rot: 1.5707963267948966 rad pos: 84.5,28.5 parent: 2 type: Transform - - uid: 23799 + - uid: 23819 components: - rot: 1.5707963267948966 rad pos: 87.5,35.5 parent: 2 type: Transform - - uid: 23800 + - uid: 23820 components: - rot: 1.5707963267948966 rad pos: 87.5,34.5 parent: 2 type: Transform - - uid: 23801 + - uid: 23821 components: - rot: 1.5707963267948966 rad pos: 87.5,33.5 parent: 2 type: Transform - - uid: 23802 + - uid: 23822 components: - rot: 1.5707963267948966 rad pos: 87.5,32.5 parent: 2 type: Transform - - uid: 23803 + - uid: 23823 components: - rot: 1.5707963267948966 rad pos: 87.5,31.5 parent: 2 type: Transform - - uid: 23804 + - uid: 23824 components: - rot: 1.5707963267948966 rad pos: 87.5,30.5 parent: 2 type: Transform - - uid: 23805 + - uid: 23825 components: - rot: 1.5707963267948966 rad pos: 87.5,29.5 parent: 2 type: Transform - - uid: 23806 + - uid: 23826 components: - rot: 1.5707963267948966 rad pos: 87.5,28.5 parent: 2 type: Transform - - uid: 23807 + - uid: 23827 components: - rot: 1.5707963267948966 rad pos: 90.5,35.5 parent: 2 type: Transform - - uid: 23808 + - uid: 23828 components: - rot: 1.5707963267948966 rad pos: 90.5,34.5 parent: 2 type: Transform - - uid: 23809 + - uid: 23829 components: - rot: 1.5707963267948966 rad pos: 90.5,33.5 parent: 2 type: Transform - - uid: 23810 + - uid: 23830 components: - rot: 1.5707963267948966 rad pos: 90.5,32.5 parent: 2 type: Transform - - uid: 23811 + - uid: 23831 components: - rot: 1.5707963267948966 rad pos: 90.5,31.5 parent: 2 type: Transform - - uid: 23812 + - uid: 23832 components: - rot: 1.5707963267948966 rad pos: 90.5,30.5 parent: 2 type: Transform - - uid: 23813 + - uid: 23833 components: - rot: 1.5707963267948966 rad pos: 90.5,29.5 parent: 2 type: Transform - - uid: 23814 + - uid: 23834 components: - rot: 1.5707963267948966 rad pos: 90.5,28.5 @@ -181623,68 +181656,68 @@ entities: type: Transform - proto: SolarPanelBroken entities: - - uid: 23815 + - uid: 23835 components: - pos: -4.5,-73.5 parent: 2 type: Transform - - uid: 23816 + - uid: 23836 components: - rot: 3.141592653589793 rad pos: 62.5,29.5 parent: 2 type: Transform - - uid: 23817 + - uid: 23837 components: - pos: 46.5,-62.5 parent: 2 type: Transform - proto: SolarTracker entities: - - uid: 23818 + - uid: 23838 components: - pos: 11.5,-105.5 parent: 2 type: Transform - - uid: 23819 + - uid: 23839 components: - pos: 91.5,36.5 parent: 2 type: Transform - proto: SpaceCash entities: - - uid: 23820 + - uid: 23840 components: - rot: 1.5707963267948966 rad pos: 53.352566,29.426033 parent: 2 type: Transform - - uid: 23821 + - uid: 23841 components: - pos: 53.49319,28.910408 parent: 2 type: Transform - - uid: 23822 + - uid: 23842 components: - pos: 53.58694,28.691658 parent: 2 type: Transform - proto: SpaceCash1000 entities: - - uid: 23823 + - uid: 23843 components: - pos: 59.59177,-29.360462 parent: 2 type: Transform - proto: SpaceMedipen entities: - - uid: 23824 + - uid: 23844 components: - rot: -1.5707963267948966 rad pos: 4.2126236,-11.336138 parent: 2 type: Transform - - uid: 23825 + - uid: 23845 components: - rot: -1.5707963267948966 rad pos: -55.678448,-39.42407 @@ -181692,964 +181725,964 @@ entities: type: Transform - proto: SpaceQuartz1 entities: - - uid: 23826 + - uid: 23846 components: - pos: -31.635456,29.591772 parent: 2 type: Transform - proto: SpaceVillainArcadeComputerCircuitboard entities: - - uid: 23827 + - uid: 23847 components: - pos: -12.610414,35.61681 parent: 2 type: Transform - proto: SpawnMobAlexander entities: - - uid: 23828 + - uid: 23848 components: - pos: 3.5,5.5 parent: 2 type: Transform - proto: SpawnMobBear entities: - - uid: 23829 + - uid: 23849 components: - pos: -37.5,63.5 parent: 2 type: Transform - proto: SpawnMobCat entities: - - uid: 23830 + - uid: 23850 components: - pos: -12.5,-38.5 parent: 2 type: Transform - - uid: 23831 + - uid: 23851 components: - pos: 57.5,16.5 parent: 2 type: Transform - proto: SpawnMobCatGeneric entities: - - uid: 23832 + - uid: 23852 components: - pos: -55.5,-64.5 parent: 2 type: Transform - proto: SpawnMobCleanBot entities: - - uid: 23833 + - uid: 23853 components: - pos: 15.5,-42.5 parent: 2 type: Transform - proto: SpawnMobCorgi entities: - - uid: 23834 + - uid: 23854 components: - pos: 21.5,-35.5 parent: 2 type: Transform - proto: SpawnMobFoxRenault entities: - - uid: 23835 + - uid: 23855 components: - pos: 32.5,-28.5 parent: 2 type: Transform - proto: SpawnMobHamsterHamlet entities: - - uid: 23836 + - uid: 23856 components: - pos: 30.5,-23.5 parent: 2 type: Transform - proto: SpawnMobKangaroo entities: - - uid: 23837 + - uid: 23857 components: - pos: -54.5,62.5 parent: 2 type: Transform - proto: SpawnMobKangarooWillow entities: - - uid: 23838 + - uid: 23858 components: - pos: 25.5,-0.5 parent: 2 type: Transform - proto: SpawnMobMcGriff entities: - - uid: 23839 + - uid: 23859 components: - pos: 26.5,23.5 parent: 2 type: Transform - proto: SpawnMobMedibot entities: - - uid: 23840 + - uid: 23860 components: - pos: -8.5,-46.5 parent: 2 type: Transform - proto: SpawnMobMonkeyPunpun entities: - - uid: 23841 + - uid: 23861 components: - pos: 16.5,9.5 parent: 2 type: Transform - proto: SpawnMobMouse entities: - - uid: 23842 + - uid: 23862 components: - pos: 2.5,-69.5 parent: 2 type: Transform - - uid: 23843 + - uid: 23863 components: - pos: -0.5,33.5 parent: 2 type: Transform - - uid: 23844 + - uid: 23864 components: - pos: -28.5,-41.5 parent: 2 type: Transform - - uid: 23845 + - uid: 23865 components: - pos: -29.5,-47.5 parent: 2 type: Transform - - uid: 23846 + - uid: 23866 components: - pos: 49.5,-33.5 parent: 2 type: Transform - - uid: 23847 + - uid: 23867 components: - pos: -7.5,-81.5 parent: 2 type: Transform - - uid: 23848 + - uid: 23868 components: - pos: 6.5,32.5 parent: 2 type: Transform - - uid: 23849 + - uid: 23869 components: - pos: 35.5,22.5 parent: 2 type: Transform - - uid: 23850 + - uid: 23870 components: - pos: -15.5,13.5 parent: 2 type: Transform - - uid: 23851 + - uid: 23871 components: - pos: 52.5,36.5 parent: 2 type: Transform - - uid: 23852 + - uid: 23872 components: - pos: -51.5,-0.5 parent: 2 type: Transform - - uid: 23853 + - uid: 23873 components: - pos: -38.5,-64.5 parent: 2 type: Transform - - uid: 23854 + - uid: 23874 components: - pos: -40.5,-81.5 parent: 2 type: Transform - - uid: 23855 + - uid: 23875 components: - pos: -45.5,-77.5 parent: 2 type: Transform - - uid: 23856 + - uid: 23876 components: - pos: 48.5,-65.5 parent: 2 type: Transform - proto: SpawnMobPossumMorty entities: - - uid: 23857 + - uid: 23877 components: - pos: -15.5,-63.5 parent: 2 type: Transform - proto: SpawnMobRaccoonMorticia entities: - - uid: 23858 + - uid: 23878 components: - pos: -33.5,31.5 parent: 2 type: Transform - proto: SpawnMobShiva entities: - - uid: 23859 + - uid: 23879 components: - pos: 4.5,19.5 parent: 2 type: Transform - proto: SpawnMobSlothPaperwork entities: - - uid: 23860 + - uid: 23880 components: - pos: 12.5,-7.5 parent: 2 type: Transform - proto: SpawnMobSpaceSpider entities: - - uid: 23861 + - uid: 23881 components: - pos: -47.5,68.5 parent: 2 type: Transform - proto: SpawnMobWalter entities: - - uid: 23862 + - uid: 23882 components: - pos: -0.5,-53.5 parent: 2 type: Transform - proto: SpawnPointAssistant entities: - - uid: 23863 + - uid: 23883 components: - pos: -25.5,-22.5 parent: 2 type: Transform - - uid: 23864 + - uid: 23884 components: - pos: -23.5,-22.5 parent: 2 type: Transform - - uid: 23865 + - uid: 23885 components: - pos: 41.5,-72.5 parent: 2 type: Transform - - uid: 23866 + - uid: 23886 components: - pos: 38.5,-72.5 parent: 2 type: Transform - - uid: 23867 + - uid: 23887 components: - pos: 40.5,-55.5 parent: 2 type: Transform - - uid: 23868 + - uid: 23888 components: - pos: -51.5,14.5 parent: 2 type: Transform - - uid: 23869 + - uid: 23889 components: - pos: -45.5,5.5 parent: 2 type: Transform - - uid: 23870 + - uid: 23890 components: - pos: -52.5,7.5 parent: 2 type: Transform - - uid: 23871 + - uid: 23891 components: - pos: 39.5,-54.5 parent: 2 type: Transform - - uid: 23872 + - uid: 23892 components: - pos: -46.5,7.5 parent: 2 type: Transform - - uid: 23873 + - uid: 23893 components: - pos: -19.5,34.5 parent: 2 type: Transform - - uid: 23874 + - uid: 23894 components: - pos: -11.5,32.5 parent: 2 type: Transform - - uid: 23875 + - uid: 23895 components: - pos: -23.5,30.5 parent: 2 type: Transform - - uid: 23876 + - uid: 23896 components: - pos: -42.5,10.5 parent: 2 type: Transform - - uid: 23877 + - uid: 23897 components: - pos: -24.5,-20.5 parent: 2 type: Transform - - uid: 23878 + - uid: 23898 components: - pos: -44.5,3.5 parent: 2 type: Transform - - uid: 23879 + - uid: 23899 components: - pos: 43.5,-72.5 parent: 2 type: Transform - - uid: 23880 + - uid: 23900 components: - pos: 36.5,-72.5 parent: 2 type: Transform - proto: SpawnPointAtmos entities: - - uid: 23881 + - uid: 23901 components: - pos: -39.5,-34.5 parent: 2 type: Transform - - uid: 23882 + - uid: 23902 components: - pos: -37.5,-35.5 parent: 2 type: Transform - - uid: 23883 + - uid: 23903 components: - pos: -36.5,-34.5 parent: 2 type: Transform - proto: SpawnPointBartender entities: - - uid: 23884 + - uid: 23904 components: - pos: 17.5,13.5 parent: 2 type: Transform - - uid: 23885 + - uid: 23905 components: - pos: 17.5,11.5 parent: 2 type: Transform - - uid: 23886 + - uid: 23906 components: - pos: -42.5,-75.5 parent: 2 type: Transform - proto: SpawnPointBotanist entities: - - uid: 23887 + - uid: 23907 components: - pos: -5.5,7.5 parent: 2 type: Transform - - uid: 23888 + - uid: 23908 components: - pos: -7.5,7.5 parent: 2 type: Transform - - uid: 23889 + - uid: 23909 components: - pos: -9.5,7.5 parent: 2 type: Transform - proto: SpawnPointBoxer entities: - - uid: 23890 + - uid: 23910 components: - pos: 22.5,2.5 parent: 2 type: Transform - proto: SpawnPointCaptain entities: - - uid: 23891 + - uid: 23911 components: - pos: 26.5,-22.5 parent: 2 type: Transform - proto: SpawnPointCargoTechnician entities: - - uid: 23892 + - uid: 23912 components: - pos: -46.5,16.5 parent: 2 type: Transform - - uid: 23893 + - uid: 23913 components: - pos: -31.5,24.5 parent: 2 type: Transform - - uid: 23894 + - uid: 23914 components: - pos: -33.5,22.5 parent: 2 type: Transform - - uid: 23895 + - uid: 23915 components: - pos: -31.5,19.5 parent: 2 type: Transform - - uid: 23896 + - uid: 23916 components: - pos: -31.5,21.5 parent: 2 type: Transform - proto: SpawnPointChaplain entities: - - uid: 23897 + - uid: 23917 components: - pos: -30.5,13.5 parent: 2 type: Transform - - uid: 23898 + - uid: 23918 components: - pos: -30.5,14.5 parent: 2 type: Transform - proto: SpawnPointChef entities: - - uid: 23899 + - uid: 23919 components: - pos: 0.5,7.5 parent: 2 type: Transform - - uid: 23900 + - uid: 23920 components: - pos: 5.5,7.5 parent: 2 type: Transform - - uid: 23901 + - uid: 23921 components: - pos: 5.5,9.5 parent: 2 type: Transform - proto: SpawnPointChemist entities: - - uid: 23902 + - uid: 23922 components: - pos: 3.5,-50.5 parent: 2 type: Transform - - uid: 23903 + - uid: 23923 components: - pos: 3.5,-48.5 parent: 2 type: Transform - - uid: 23904 + - uid: 23924 components: - pos: 3.5,-46.5 parent: 2 type: Transform - proto: SpawnPointChiefEngineer entities: - - uid: 23905 + - uid: 23925 components: - pos: -36.5,-17.5 parent: 2 type: Transform - proto: SpawnPointChiefMedicalOfficer entities: - - uid: 23906 + - uid: 23926 components: - pos: -18.5,-55.5 parent: 2 type: Transform - proto: SpawnPointClown entities: - - uid: 23907 + - uid: 23927 components: - pos: 2.5,-10.5 parent: 2 type: Transform - proto: SpawnPointDetective entities: - - uid: 23908 + - uid: 23928 components: - pos: 19.5,-11.5 parent: 2 type: Transform - proto: SpawnPointHeadOfPersonnel entities: - - uid: 23909 + - uid: 23929 components: - pos: 27.5,-35.5 parent: 2 type: Transform - proto: SpawnPointHeadOfSecurity entities: - - uid: 23910 + - uid: 23930 components: - pos: 5.5,21.5 parent: 2 type: Transform - proto: SpawnPointJanitor entities: - - uid: 23911 + - uid: 23931 components: - pos: -11.5,-18.5 parent: 2 type: Transform - - uid: 23912 + - uid: 23932 components: - pos: -10.5,-22.5 parent: 2 type: Transform - - uid: 23913 + - uid: 23933 components: - pos: -12.5,-22.5 parent: 2 type: Transform - proto: SpawnPointLatejoin entities: - - uid: 23914 + - uid: 23934 components: - pos: 39.5,-72.5 parent: 2 type: Transform - - uid: 23915 + - uid: 23935 components: - pos: 40.5,-72.5 parent: 2 type: Transform - - uid: 23916 + - uid: 23936 components: - pos: 42.5,-72.5 parent: 2 type: Transform - - uid: 23917 + - uid: 23937 components: - pos: 37.5,-72.5 parent: 2 type: Transform - proto: SpawnPointLawyer entities: - - uid: 23918 + - uid: 23938 components: - pos: 42.5,-2.5 parent: 2 type: Transform - - uid: 23919 + - uid: 23939 components: - pos: 39.5,-4.5 parent: 2 type: Transform - proto: SpawnPointLibrarian entities: - - uid: 23920 + - uid: 23940 components: - pos: 11.5,-9.5 parent: 2 type: Transform - - uid: 23921 + - uid: 23941 components: - pos: 9.5,-9.5 parent: 2 type: Transform - proto: SpawnPointMedicalDoctor entities: - - uid: 23922 + - uid: 23942 components: - pos: -14.5,-46.5 parent: 2 type: Transform - - uid: 23923 + - uid: 23943 components: - pos: -12.5,-46.5 parent: 2 type: Transform - - uid: 23924 + - uid: 23944 components: - pos: -12.5,-48.5 parent: 2 type: Transform - - uid: 23925 + - uid: 23945 components: - pos: -14.5,-48.5 parent: 2 type: Transform - - uid: 23926 + - uid: 23946 components: - pos: -28.5,-74.5 parent: 2 type: Transform - proto: SpawnPointMedicalIntern entities: - - uid: 23927 + - uid: 23947 components: - pos: -15.5,-38.5 parent: 2 type: Transform - - uid: 23928 + - uid: 23948 components: - pos: -1.5,-47.5 parent: 2 type: Transform - proto: SpawnPointMime entities: - - uid: 23929 + - uid: 23949 components: - pos: -27.5,45.5 parent: 2 type: Transform - proto: SpawnPointMusician entities: - - uid: 23930 + - uid: 23950 components: - pos: -9.5,-5.5 parent: 2 type: Transform - - uid: 23931 + - uid: 23951 components: - pos: -7.5,-5.5 parent: 2 type: Transform - proto: SpawnPointObserver entities: - - uid: 23932 + - uid: 23952 components: - pos: -4.5,-41.5 parent: 2 type: Transform - proto: SpawnPointParamedic entities: - - uid: 23933 + - uid: 23953 components: - pos: 3.5,-64.5 parent: 2 type: Transform - proto: SpawnPointQuartermaster entities: - - uid: 23934 + - uid: 23954 components: - pos: -31.5,30.5 parent: 2 type: Transform - proto: SpawnPointResearchAssistant entities: - - uid: 23935 + - uid: 23955 components: - pos: 49.5,-40.5 parent: 2 type: Transform - - uid: 23936 + - uid: 23956 components: - pos: 50.5,-43.5 parent: 2 type: Transform - proto: SpawnPointResearchDirector entities: - - uid: 23937 + - uid: 23957 components: - pos: 63.5,-52.5 parent: 2 type: Transform - proto: SpawnPointSalvageSpecialist entities: - - uid: 23938 + - uid: 23958 components: - pos: -37.5,32.5 parent: 2 type: Transform - - uid: 23939 + - uid: 23959 components: - pos: -37.5,30.5 parent: 2 type: Transform - - uid: 23940 + - uid: 23960 components: - pos: -37.5,28.5 parent: 2 type: Transform - proto: SpawnPointScientist entities: - - uid: 23941 + - uid: 23961 components: - pos: 45.5,-46.5 parent: 2 type: Transform - - uid: 23942 + - uid: 23962 components: - pos: 43.5,-46.5 parent: 2 type: Transform - - uid: 23943 + - uid: 23963 components: - pos: 41.5,-46.5 parent: 2 type: Transform - - uid: 23944 + - uid: 23964 components: - pos: 44.5,-47.5 parent: 2 type: Transform - - uid: 23945 + - uid: 23965 components: - pos: 74.5,-34.5 parent: 2 type: Transform - proto: SpawnPointSecurityCadet entities: - - uid: 23946 + - uid: 23966 components: - pos: 24.5,17.5 parent: 2 type: Transform - - uid: 23947 + - uid: 23967 components: - pos: 23.5,18.5 parent: 2 type: Transform - - uid: 23948 + - uid: 23968 components: - pos: 25.5,18.5 parent: 2 type: Transform - proto: SpawnPointSecurityOfficer entities: - - uid: 23949 + - uid: 23969 components: - pos: 1.5,19.5 parent: 2 type: Transform - - uid: 23950 + - uid: 23970 components: - pos: 7.5,16.5 parent: 2 type: Transform - - uid: 23951 + - uid: 23971 components: - pos: 5.5,16.5 parent: 2 type: Transform - - uid: 23952 + - uid: 23972 components: - pos: 0.5,18.5 parent: 2 type: Transform - - uid: 23953 + - uid: 23973 components: - pos: 1.5,17.5 parent: 2 type: Transform - - uid: 23954 + - uid: 23974 components: - pos: 6.5,13.5 parent: 2 type: Transform - proto: SpawnPointServiceWorker entities: - - uid: 23955 + - uid: 23975 components: - pos: -21.5,44.5 parent: 2 type: Transform - - uid: 23956 + - uid: 23976 components: - pos: -10.5,42.5 parent: 2 type: Transform - - uid: 23957 + - uid: 23977 components: - pos: -25.5,11.5 parent: 2 type: Transform - - uid: 23958 + - uid: 23978 components: - pos: -21.5,48.5 parent: 2 type: Transform - proto: SpawnPointStationEngineer entities: - - uid: 23959 + - uid: 23979 components: - pos: -37.5,-10.5 parent: 2 type: Transform - - uid: 23960 + - uid: 23980 components: - pos: -38.5,-12.5 parent: 2 type: Transform - - uid: 23961 + - uid: 23981 components: - pos: -36.5,-12.5 parent: 2 type: Transform - - uid: 23962 + - uid: 23982 components: - pos: -35.5,-10.5 parent: 2 type: Transform - - uid: 23963 + - uid: 23983 components: - pos: -35.5,-7.5 parent: 2 type: Transform - proto: SpawnPointTechnicalAssistant entities: - - uid: 23964 + - uid: 23984 components: - pos: -23.5,-10.5 parent: 2 type: Transform - - uid: 23965 + - uid: 23985 components: - pos: -24.5,-12.5 parent: 2 type: Transform - proto: SpawnPointWarden entities: - - uid: 23966 + - uid: 23986 components: - pos: 23.5,21.5 parent: 2 type: Transform - proto: SpawnVehicleJanicart entities: - - uid: 23967 + - uid: 23987 components: - pos: -12.5,-23.5 parent: 2 type: Transform - proto: SpawnVehicleSecway entities: - - uid: 23968 + - uid: 23988 components: - pos: 10.5,22.5 parent: 2 type: Transform - - uid: 23969 + - uid: 23989 components: - pos: 10.5,21.5 parent: 2 type: Transform - - uid: 23970 + - uid: 23990 components: - pos: 10.5,20.5 parent: 2 type: Transform - proto: SpawnVendingMachineRestockFoodDrink entities: - - uid: 23971 + - uid: 23991 components: - pos: 37.5,-10.5 parent: 2 type: Transform - - uid: 23972 + - uid: 23992 components: - pos: -13.5,-12.5 parent: 2 type: Transform - proto: SprayBottle entities: - - uid: 23973 + - uid: 23993 components: - pos: 53.44381,-51.454926 parent: 2 type: Transform - proto: SprayBottleSpaceCleaner entities: - - uid: 23974 + - uid: 23994 components: - pos: -13.517906,-22.26318 parent: 2 type: Transform - - uid: 23975 + - uid: 23995 components: - pos: -13.721031,-22.20068 parent: 2 type: Transform - - uid: 23976 + - uid: 23996 components: - pos: -13.62392,-22.29671 parent: 2 type: Transform - - uid: 23977 + - uid: 23997 components: - pos: -13.389545,-22.218584 parent: 2 type: Transform - proto: StasisBed entities: - - uid: 23978 + - uid: 23998 components: - pos: 4.5,-64.5 parent: 2 type: Transform - - uid: 23979 + - uid: 23999 components: - pos: 4.5,-63.5 parent: 2 type: Transform - proto: StationMap entities: - - uid: 21393 + - uid: 24000 + components: + - pos: 5.5,-24.5 + parent: 2 + type: Transform + - uid: 24001 components: - pos: 12.5,-40.5 parent: 2 type: Transform - - uid: 21395 + - uid: 24002 components: - pos: -32.5,2.5 parent: 2 type: Transform - - uid: 21396 + - uid: 24003 components: - pos: -0.5,4.5 parent: 2 type: Transform - - uid: 21397 + - uid: 24004 components: - pos: -18.5,52.5 parent: 2 type: Transform - - uid: 30642 - components: - - pos: -1.5,-24.5 - parent: 2 - type: Transform - - uid: 30643 + - uid: 24005 components: - pos: 45.5,-70.5 parent: 2 type: Transform - - uid: 30644 + - uid: 24006 components: - pos: 41.5,-40.5 parent: 2 type: Transform - - uid: 30645 + - uid: 24007 components: - pos: 48.5,3.5 parent: 2 type: Transform - - uid: 30646 + - uid: 24008 components: - pos: 20.5,9.5 parent: 2 type: Transform - - uid: 30647 + - uid: 24009 components: - pos: -8.5,47.5 parent: 2 type: Transform - - uid: 30648 + - uid: 24010 components: - pos: 12.5,-79.5 parent: 2 type: Transform - proto: StationMapCircuitboard entities: - - uid: 30649 + - uid: 24011 components: - pos: -8.453156,37.616253 parent: 2 @@ -182658,7 +182691,7 @@ entities: type: EmitSoundOnCollide - proto: SteelOre1 entities: - - uid: 23980 + - uid: 24012 components: - rot: 3.141592653589793 rad pos: 20.04077,49.432205 @@ -182666,13 +182699,13 @@ entities: type: Transform - proto: Stool entities: - - uid: 23981 + - uid: 24013 components: - rot: -1.5707963267948966 rad pos: 9.5,5.5 parent: 2 type: Transform - - uid: 23982 + - uid: 24014 components: - rot: -1.5707963267948966 rad pos: -33.5,13.5 @@ -182680,18 +182713,18 @@ entities: type: Transform - proto: StoolBar entities: - - uid: 23983 + - uid: 24015 components: - pos: -0.5,-1.5 parent: 2 type: Transform - - uid: 23984 + - uid: 24016 components: - rot: 1.5707963267948966 rad pos: 14.5,10.5 parent: 2 type: Transform - - uid: 23985 + - uid: 24017 components: - name: stool type: MetaData @@ -182699,14 +182732,14 @@ entities: pos: -6.5,3.5 parent: 2 type: Transform - - uid: 23986 + - uid: 24018 components: - name: stool type: MetaData - pos: 0.5,-1.5 parent: 2 type: Transform - - uid: 23987 + - uid: 24019 components: - name: stool type: MetaData @@ -182714,31 +182747,31 @@ entities: pos: 1.5,3.5 parent: 2 type: Transform - - uid: 23988 + - uid: 24020 components: - rot: 1.5707963267948966 rad pos: 14.5,13.5 parent: 2 type: Transform - - uid: 23989 + - uid: 24021 components: - rot: 1.5707963267948966 rad pos: 14.5,12.5 parent: 2 type: Transform - - uid: 23990 + - uid: 24022 components: - pos: 5.5,12.5 parent: 2 type: Transform - - uid: 23991 + - uid: 24023 components: - name: stool type: MetaData - pos: 1.5,-1.5 parent: 2 type: Transform - - uid: 23992 + - uid: 24024 components: - name: stool type: MetaData @@ -182746,7 +182779,7 @@ entities: pos: 0.5,3.5 parent: 2 type: Transform - - uid: 23993 + - uid: 24025 components: - name: stool type: MetaData @@ -182754,78 +182787,78 @@ entities: pos: 2.5,3.5 parent: 2 type: Transform - - uid: 23994 + - uid: 24026 components: - rot: 1.5707963267948966 rad pos: 14.5,11.5 parent: 2 type: Transform - - uid: 23995 + - uid: 24027 components: - rot: -1.5707963267948966 rad pos: 8.5,9.5 parent: 2 type: Transform - - uid: 23996 + - uid: 24028 components: - rot: -1.5707963267948966 rad pos: 8.5,8.5 parent: 2 type: Transform - - uid: 23997 + - uid: 24029 components: - rot: -1.5707963267948966 rad pos: 8.5,7.5 parent: 2 type: Transform - - uid: 23998 + - uid: 24030 components: - rot: 1.5707963267948966 rad pos: 14.5,9.5 parent: 2 type: Transform - - uid: 23999 + - uid: 24031 components: - rot: 3.141592653589793 rad pos: -40.5,-79.5 parent: 2 type: Transform - - uid: 24000 + - uid: 24032 components: - rot: 3.141592653589793 rad pos: -41.5,-79.5 parent: 2 type: Transform - - uid: 24001 + - uid: 24033 components: - rot: 3.141592653589793 rad pos: -42.5,-79.5 parent: 2 type: Transform - - uid: 24002 + - uid: 24034 components: - rot: 3.141592653589793 rad pos: -43.5,-79.5 parent: 2 type: Transform - - uid: 24003 + - uid: 24035 components: - rot: -1.5707963267948966 rad pos: -39.5,-78.5 parent: 2 type: Transform - - uid: 24004 + - uid: 24036 components: - rot: 1.5707963267948966 rad pos: -44.5,-78.5 parent: 2 type: Transform - - uid: 24005 + - uid: 24037 components: - pos: 4.5,12.5 parent: 2 type: Transform - - uid: 24006 + - uid: 24038 components: - name: stool type: MetaData @@ -182833,7 +182866,7 @@ entities: pos: -7.5,3.5 parent: 2 type: Transform - - uid: 24007 + - uid: 24039 components: - name: stool type: MetaData @@ -182841,50 +182874,50 @@ entities: pos: -8.5,3.5 parent: 2 type: Transform - - uid: 24008 + - uid: 24040 components: - rot: 3.141592653589793 rad pos: 39.5,48.5 parent: 2 type: Transform - - uid: 24009 + - uid: 24041 components: - rot: 3.141592653589793 rad pos: 38.5,48.5 parent: 2 type: Transform - - uid: 24010 + - uid: 24042 components: - rot: 3.141592653589793 rad pos: 37.5,48.5 parent: 2 type: Transform - - uid: 24011 + - uid: 24043 components: - rot: 3.141592653589793 rad pos: 36.5,48.5 parent: 2 type: Transform - - uid: 24012 + - uid: 24044 components: - name: donk stool type: MetaData - pos: -9.5,44.5 parent: 2 type: Transform - - uid: 24013 + - uid: 24045 components: - name: donk stool type: MetaData - pos: -10.5,44.5 parent: 2 type: Transform - - uid: 24014 + - uid: 24046 components: - pos: -30.5,-96.5 parent: 2 type: Transform - - uid: 24015 + - uid: 24047 components: - name: donk stool type: MetaData @@ -182893,441 +182926,441 @@ entities: type: Transform - proto: StorageCanister entities: - - uid: 24016 + - uid: 24048 components: - pos: 45.5,-54.5 parent: 2 type: Transform - - uid: 24017 + - uid: 24049 components: - pos: 45.5,-58.5 parent: 2 type: Transform - - uid: 24018 + - uid: 24050 components: - pos: -16.5,-10.5 parent: 2 type: Transform - - uid: 24019 + - uid: 24051 components: - pos: -38.5,-51.5 parent: 2 type: Transform - - uid: 24020 + - uid: 24052 components: - pos: -38.5,-50.5 parent: 2 type: Transform - - uid: 24021 + - uid: 24053 components: - pos: -38.5,-49.5 parent: 2 type: Transform - - uid: 24022 + - uid: 24054 components: - pos: -34.5,-39.5 parent: 2 type: Transform - - uid: 24023 + - uid: 24055 components: - pos: -35.5,-39.5 parent: 2 type: Transform - - uid: 24024 + - uid: 24056 components: - pos: -50.5,-44.5 parent: 2 type: Transform - - uid: 24025 + - uid: 24057 components: - pos: -50.5,-42.5 parent: 2 type: Transform - - uid: 24026 + - uid: 24058 components: - pos: 53.5,-37.5 parent: 2 type: Transform - - uid: 24027 + - uid: 24059 components: - pos: -24.5,-55.5 parent: 2 type: Transform - - uid: 24028 + - uid: 24060 components: - pos: -26.5,-55.5 parent: 2 type: Transform - - uid: 24029 + - uid: 24061 components: - pos: 51.5,-35.5 parent: 2 type: Transform - - uid: 24030 + - uid: 24062 components: - pos: -50.5,-35.5 parent: 2 type: Transform - - uid: 24031 + - uid: 24063 components: - pos: -50.5,-34.5 parent: 2 type: Transform - - uid: 24032 + - uid: 24064 components: - pos: -35.5,-38.5 parent: 2 type: Transform - proto: Stunbaton entities: - - uid: 24033 + - uid: 24065 components: - pos: 8.313212,12.723815 parent: 2 type: Transform - - uid: 24034 + - uid: 24066 components: - pos: 8.262076,12.8623 parent: 2 type: Transform - nextAttack: 360.2704274 type: MeleeWeapon - - uid: 24035 + - uid: 24067 components: - pos: -16.522211,23.632349 parent: 2 type: Transform - proto: SubstationBasic entities: - - uid: 24036 + - uid: 24068 components: - pos: -34.5,-3.5 parent: 2 type: Transform - - uid: 24037 + - uid: 24069 components: - pos: -12.5,-69.5 parent: 2 type: Transform - - uid: 24038 + - uid: 24070 components: - pos: 15.5,-58.5 parent: 2 type: Transform - - uid: 24039 + - uid: 24071 components: - pos: 30.5,-2.5 parent: 2 type: Transform - - uid: 24040 + - uid: 24072 components: - pos: -8.5,-19.5 parent: 2 type: Transform - - uid: 24041 + - uid: 24073 components: - pos: 19.5,-27.5 parent: 2 type: Transform - - uid: 24042 + - uid: 24074 components: - pos: 38.5,-28.5 parent: 2 type: Transform - - uid: 24043 + - uid: 24075 components: - pos: 69.5,-59.5 parent: 2 type: Transform - - uid: 24044 + - uid: 24076 components: - pos: 33.5,25.5 parent: 2 type: Transform - - uid: 24045 + - uid: 24077 components: - pos: 63.5,7.5 parent: 2 type: Transform - - uid: 24046 + - uid: 24078 components: - pos: 47.5,-3.5 parent: 2 type: Transform - - uid: 24047 + - uid: 24079 components: - pos: 48.5,-5.5 parent: 2 type: Transform - - uid: 24048 + - uid: 24080 components: - pos: 38.5,-46.5 parent: 2 type: Transform - - uid: 24049 + - uid: 24081 components: - pos: -16.5,-0.5 parent: 2 type: Transform - - uid: 24050 + - uid: 24082 components: - pos: -28.5,-23.5 parent: 2 type: Transform - - uid: 24051 + - uid: 24083 components: - pos: 43.5,-58.5 parent: 2 type: Transform - - uid: 24052 + - uid: 24084 components: - pos: -50.5,-8.5 parent: 2 type: Transform - - uid: 24053 + - uid: 24085 components: - pos: -57.5,-20.5 parent: 2 type: Transform - - uid: 24054 + - uid: 24086 components: - pos: -27.5,-37.5 parent: 2 type: Transform - - uid: 24055 + - uid: 24087 components: - pos: -31.5,-54.5 parent: 2 type: Transform - - uid: 24056 + - uid: 24088 components: - pos: -55.5,-89.5 parent: 2 type: Transform - - uid: 24057 + - uid: 24089 components: - pos: -8.5,35.5 parent: 2 type: Transform - - uid: 24058 + - uid: 24090 components: - pos: -23.5,15.5 parent: 2 type: Transform - - uid: 24059 + - uid: 24091 components: - pos: 4.5,-19.5 parent: 2 type: Transform - - uid: 24060 + - uid: 24092 components: - pos: 11.5,-45.5 parent: 2 type: Transform - - uid: 24061 + - uid: 24093 components: - pos: 11.5,-47.5 parent: 2 type: Transform - - uid: 24062 + - uid: 24094 components: - pos: 50.5,29.5 parent: 2 type: Transform - - uid: 24063 + - uid: 24095 components: - pos: -10.5,62.5 parent: 2 type: Transform - - uid: 24064 + - uid: 24096 components: - pos: -71.5,-41.5 parent: 2 type: Transform - - uid: 24065 + - uid: 24097 components: - pos: 8.5,-16.5 parent: 2 type: Transform - proto: SuitStorageAtmos entities: - - uid: 24066 + - uid: 24098 components: - pos: -40.5,-36.5 parent: 2 type: Transform - - uid: 24067 + - uid: 24099 components: - pos: -36.5,-36.5 parent: 2 type: Transform - - uid: 24068 + - uid: 24100 components: - pos: -38.5,-36.5 parent: 2 type: Transform - proto: SuitStorageCaptain entities: - - uid: 24069 + - uid: 24101 components: - pos: 28.5,-29.5 parent: 2 type: Transform - proto: SuitStorageCE entities: - - uid: 24070 + - uid: 24102 components: - pos: -37.5,-16.5 parent: 2 type: Transform - proto: SuitStorageCMO entities: - - uid: 24071 + - uid: 24103 components: - pos: -19.5,-54.5 parent: 2 type: Transform - proto: SuitStorageEngi entities: - - uid: 24072 + - uid: 24104 components: - pos: -34.5,-5.5 parent: 2 type: Transform - - uid: 24073 + - uid: 24105 components: - pos: -34.5,-7.5 parent: 2 type: Transform - - uid: 24074 + - uid: 24106 components: - pos: -34.5,-8.5 parent: 2 type: Transform - - uid: 24075 + - uid: 24107 components: - pos: -34.5,-6.5 parent: 2 type: Transform - - uid: 24076 + - uid: 24108 components: - pos: -55.5,-15.5 parent: 2 type: Transform - proto: SuitStorageEVA entities: - - uid: 24077 + - uid: 24109 components: - pos: 29.5,-10.5 parent: 2 type: Transform - - uid: 24078 + - uid: 24110 components: - pos: 29.5,-12.5 parent: 2 type: Transform - - uid: 24079 + - uid: 24111 components: - pos: 33.5,-10.5 parent: 2 type: Transform - - uid: 24080 + - uid: 24112 components: - pos: 31.5,-12.5 parent: 2 type: Transform - - uid: 24081 + - uid: 24113 components: - pos: 31.5,-10.5 parent: 2 type: Transform - - uid: 24082 + - uid: 24114 components: - pos: 33.5,-12.5 parent: 2 type: Transform - proto: SuitStorageEVAPrisoner entities: - - uid: 24083 + - uid: 24115 components: - pos: 63.5,4.5 parent: 2 type: Transform - - uid: 24084 + - uid: 24116 components: - pos: 63.5,5.5 parent: 2 type: Transform - proto: SuitStorageHOS entities: - - uid: 24085 + - uid: 24117 components: - pos: 5.5,22.5 parent: 2 type: Transform - proto: SuitStorageRD entities: - - uid: 24086 + - uid: 24118 components: - pos: 65.5,-52.5 parent: 2 type: Transform - proto: SuitStorageSalv entities: - - uid: 24087 + - uid: 24119 components: - pos: -36.5,33.5 parent: 2 type: Transform - - uid: 24088 + - uid: 24120 components: - pos: -36.5,29.5 parent: 2 type: Transform - - uid: 24089 + - uid: 24121 components: - pos: -36.5,31.5 parent: 2 type: Transform - proto: SuitStorageSec entities: - - uid: 24090 + - uid: 24122 components: - pos: 32.5,29.5 parent: 2 type: Transform - - uid: 24091 + - uid: 24123 components: - pos: 26.5,27.5 parent: 2 type: Transform - - uid: 24092 + - uid: 24124 components: - pos: 32.5,27.5 parent: 2 type: Transform - - uid: 24093 + - uid: 24125 components: - pos: 26.5,29.5 parent: 2 type: Transform - proto: SuitStorageWarden entities: - - uid: 24094 + - uid: 24126 components: - pos: 20.5,20.5 parent: 2 type: Transform - proto: SuperMatterBinStockPart entities: - - uid: 24095 + - uid: 24127 components: - pos: -50.47893,-29.292162 parent: 2 type: Transform - proto: SurveillanceCameraCommand entities: - - uid: 24096 + - uid: 24128 components: - pos: -34.5,-18.5 parent: 2 @@ -183337,7 +183370,7 @@ entities: nameSet: True id: chief engineer type: SurveillanceCamera - - uid: 24097 + - uid: 24129 components: - rot: 1.5707963267948966 rad pos: -17.5,-55.5 @@ -183348,7 +183381,7 @@ entities: nameSet: True id: chief medical officer type: SurveillanceCamera - - uid: 24098 + - uid: 24130 components: - rot: -1.5707963267948966 rad pos: 4.5,21.5 @@ -183359,7 +183392,7 @@ entities: nameSet: True id: 'head of security ' type: SurveillanceCamera - - uid: 24099 + - uid: 24131 components: - rot: 3.141592653589793 rad pos: 46.5,-27.5 @@ -183370,7 +183403,7 @@ entities: nameSet: True id: vault b type: SurveillanceCamera - - uid: 24100 + - uid: 24132 components: - rot: 3.141592653589793 rad pos: 46.5,-21.5 @@ -183381,7 +183414,7 @@ entities: nameSet: True id: vault a type: SurveillanceCamera - - uid: 24101 + - uid: 24133 components: - pos: 31.5,-22.5 parent: 2 @@ -183391,7 +183424,7 @@ entities: nameSet: True id: bridge type: SurveillanceCamera - - uid: 24102 + - uid: 24134 components: - rot: 3.141592653589793 rad pos: 64.5,-51.5 @@ -183402,7 +183435,7 @@ entities: nameSet: True id: research director type: SurveillanceCamera - - uid: 24103 + - uid: 24135 components: - rot: -1.5707963267948966 rad pos: 31.5,-10.5 @@ -183413,7 +183446,7 @@ entities: nameSet: True id: EVA closet type: SurveillanceCamera - - uid: 24104 + - uid: 24136 components: - pos: 28.5,-43.5 parent: 2 @@ -183425,7 +183458,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraEngineering entities: - - uid: 24105 + - uid: 24137 components: - rot: -1.5707963267948966 rad pos: -44.5,-41.5 @@ -183436,7 +183469,7 @@ entities: nameSet: True id: atmospherics type: SurveillanceCamera - - uid: 24106 + - uid: 24138 components: - rot: 3.141592653589793 rad pos: -29.5,-16.5 @@ -183447,7 +183480,7 @@ entities: nameSet: True id: engineering main corridor type: SurveillanceCamera - - uid: 24107 + - uid: 24139 components: - pos: -38.5,-13.5 parent: 2 @@ -183457,7 +183490,7 @@ entities: nameSet: True id: engineer canteen type: SurveillanceCamera - - uid: 24108 + - uid: 24140 components: - rot: -1.5707963267948966 rad pos: -48.5,-9.5 @@ -183468,7 +183501,7 @@ entities: nameSet: True id: 'AME ' type: SurveillanceCamera - - uid: 24109 + - uid: 24141 components: - pos: -52.5,-20.5 parent: 2 @@ -183478,7 +183511,7 @@ entities: nameSet: True id: engineering console room type: SurveillanceCamera - - uid: 24110 + - uid: 24142 components: - pos: -67.5,-28.5 parent: 2 @@ -183488,7 +183521,7 @@ entities: nameSet: True id: particle accelerator type: SurveillanceCamera - - uid: 24111 + - uid: 24143 components: - rot: -1.5707963267948966 rad pos: -22.5,4.5 @@ -183501,7 +183534,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraGeneral entities: - - uid: 24112 + - uid: 24144 components: - pos: -6.5,-27.5 parent: 2 @@ -183511,7 +183544,7 @@ entities: nameSet: True id: janitorial closet type: SurveillanceCamera - - uid: 24113 + - uid: 24145 components: - rot: 1.5707963267948966 rad pos: -22.5,-23.5 @@ -183522,7 +183555,7 @@ entities: nameSet: True id: north youtool type: SurveillanceCamera - - uid: 24114 + - uid: 24146 components: - rot: 3.141592653589793 rad pos: 8.5,3.5 @@ -183533,7 +183566,7 @@ entities: nameSet: True id: food court type: SurveillanceCamera - - uid: 24115 + - uid: 24147 components: - rot: 1.5707963267948966 rad pos: 41.5,-56.5 @@ -183544,7 +183577,7 @@ entities: nameSet: True id: south youtool type: SurveillanceCamera - - uid: 24116 + - uid: 24148 components: - pos: 37.5,-73.5 parent: 2 @@ -183554,7 +183587,7 @@ entities: nameSet: True id: arrivals type: SurveillanceCamera - - uid: 24117 + - uid: 24149 components: - rot: -1.5707963267948966 rad pos: 60.5,-7.5 @@ -183565,7 +183598,7 @@ entities: nameSet: True id: evac type: SurveillanceCamera - - uid: 24118 + - uid: 24150 components: - rot: 3.141592653589793 rad pos: -12.5,-8.5 @@ -183578,7 +183611,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraMedical entities: - - uid: 24119 + - uid: 24151 components: - rot: -1.5707963267948966 rad pos: -20.5,-61.5 @@ -183589,7 +183622,7 @@ entities: nameSet: True id: medbay corridor type: SurveillanceCamera - - uid: 24120 + - uid: 24152 components: - rot: 1.5707963267948966 rad pos: 0.5,-47.5 @@ -183600,7 +183633,7 @@ entities: nameSet: True id: medbay reception type: SurveillanceCamera - - uid: 24121 + - uid: 24153 components: - pos: -10.5,-61.5 parent: 2 @@ -183610,7 +183643,7 @@ entities: nameSet: True id: medical doctors corridor type: SurveillanceCamera - - uid: 24122 + - uid: 24154 components: - rot: 3.141592653589793 rad pos: -6.5,-52.5 @@ -183621,7 +183654,7 @@ entities: nameSet: True id: medical beds type: SurveillanceCamera - - uid: 24123 + - uid: 24155 components: - rot: -1.5707963267948966 rad pos: -25.5,-70.5 @@ -183632,7 +183665,7 @@ entities: nameSet: True id: virology reception type: SurveillanceCamera - - uid: 24124 + - uid: 24156 components: - pos: -26.5,-80.5 parent: 2 @@ -183642,7 +183675,7 @@ entities: nameSet: True id: virology treatment type: SurveillanceCamera - - uid: 24125 + - uid: 24157 components: - rot: -1.5707963267948966 rad pos: -23.5,-83.5 @@ -183655,63 +183688,63 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraRouterCommand entities: - - uid: 24126 + - uid: 24158 components: - pos: -18.5,-48.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterEngineering entities: - - uid: 24127 + - uid: 24159 components: - pos: -21.5,-47.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterGeneral entities: - - uid: 24128 + - uid: 24160 components: - pos: -18.5,-45.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterMedical entities: - - uid: 24129 + - uid: 24161 components: - pos: -18.5,-46.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterScience entities: - - uid: 24130 + - uid: 24162 components: - pos: -21.5,-45.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterSecurity entities: - - uid: 24131 + - uid: 24163 components: - pos: -21.5,-48.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterService entities: - - uid: 24132 + - uid: 24164 components: - pos: -18.5,-47.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterSupply entities: - - uid: 24133 + - uid: 24165 components: - pos: -21.5,-46.5 parent: 2 type: Transform - proto: SurveillanceCameraScience entities: - - uid: 24134 + - uid: 24166 components: - rot: 1.5707963267948966 rad pos: 76.5,-48.5 @@ -183722,7 +183755,7 @@ entities: nameSet: True id: robotics type: SurveillanceCamera - - uid: 24135 + - uid: 24167 components: - rot: 1.5707963267948966 rad pos: 46.5,-36.5 @@ -183733,7 +183766,7 @@ entities: nameSet: True id: r&d type: SurveillanceCamera - - uid: 24136 + - uid: 24168 components: - rot: 1.5707963267948966 rad pos: 65.5,-47.5 @@ -183744,7 +183777,7 @@ entities: nameSet: True id: science robotics showcase type: SurveillanceCamera - - uid: 24137 + - uid: 24169 components: - rot: 3.141592653589793 rad pos: 37.5,-41.5 @@ -183755,7 +183788,7 @@ entities: nameSet: True id: science entrance type: SurveillanceCamera - - uid: 24138 + - uid: 24170 components: - rot: 1.5707963267948966 rad pos: 75.5,-38.5 @@ -183768,7 +183801,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraSecurity entities: - - uid: 24139 + - uid: 24171 components: - rot: 1.5707963267948966 rad pos: 23.5,34.5 @@ -183779,7 +183812,7 @@ entities: nameSet: True id: space armory type: SurveillanceCamera - - uid: 24140 + - uid: 24172 components: - rot: 1.5707963267948966 rad pos: 50.5,14.5 @@ -183790,7 +183823,7 @@ entities: nameSet: True id: open prison north west type: SurveillanceCamera - - uid: 24141 + - uid: 24173 components: - rot: -1.5707963267948966 rad pos: 56.5,10.5 @@ -183801,7 +183834,7 @@ entities: nameSet: True id: open prison south type: SurveillanceCamera - - uid: 24142 + - uid: 24174 components: - rot: 1.5707963267948966 rad pos: 42.5,9.5 @@ -183812,7 +183845,7 @@ entities: nameSet: True id: brig south type: SurveillanceCamera - - uid: 24143 + - uid: 24175 components: - rot: 3.141592653589793 rad pos: 33.5,16.5 @@ -183823,7 +183856,7 @@ entities: nameSet: True id: brig type: SurveillanceCamera - - uid: 24144 + - uid: 24176 components: - rot: 1.5707963267948966 rad pos: 32.5,31.5 @@ -183834,7 +183867,7 @@ entities: nameSet: True id: armory type: SurveillanceCamera - - uid: 24145 + - uid: 24177 components: - rot: 3.141592653589793 rad pos: 8.5,17.5 @@ -183845,7 +183878,7 @@ entities: nameSet: True id: security canteen type: SurveillanceCamera - - uid: 24146 + - uid: 24178 components: - rot: -1.5707963267948966 rad pos: 17.5,-11.5 @@ -183858,7 +183891,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraService entities: - - uid: 24147 + - uid: 24179 components: - rot: 1.5707963267948966 rad pos: 12.5,-6.5 @@ -183869,7 +183902,7 @@ entities: nameSet: True id: library type: SurveillanceCamera - - uid: 24148 + - uid: 24180 components: - rot: 1.5707963267948966 rad pos: 4.5,-6.5 @@ -183880,7 +183913,7 @@ entities: nameSet: True id: ice cream parlor type: SurveillanceCamera - - uid: 24149 + - uid: 24181 components: - rot: 1.5707963267948966 rad pos: 6.5,6.5 @@ -183891,7 +183924,7 @@ entities: nameSet: True id: Kitchen type: SurveillanceCamera - - uid: 24150 + - uid: 24182 components: - rot: 1.5707963267948966 rad pos: 14.5,8.5 @@ -183902,7 +183935,7 @@ entities: nameSet: True id: bar type: SurveillanceCamera - - uid: 24151 + - uid: 24183 components: - rot: 3.141592653589793 rad pos: -7.5,11.5 @@ -183915,7 +183948,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraSupply entities: - - uid: 24152 + - uid: 24184 components: - pos: -43.5,18.5 parent: 2 @@ -183925,7 +183958,7 @@ entities: nameSet: True id: cargo dock type: SurveillanceCamera - - uid: 24153 + - uid: 24185 components: - rot: 1.5707963267948966 rad pos: -30.5,22.5 @@ -183936,7 +183969,7 @@ entities: nameSet: True id: cargo type: SurveillanceCamera - - uid: 24154 + - uid: 24186 components: - pos: -43.5,28.5 parent: 2 @@ -183946,7 +183979,7 @@ entities: nameSet: True id: salvage magnet type: SurveillanceCamera - - uid: 24155 + - uid: 24187 components: - rot: 3.141592653589793 rad pos: -44.5,16.5 @@ -183959,14 +183992,14 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraWirelessRouterEntertainment entities: - - uid: 24156 + - uid: 24188 components: - pos: -27.5,12.5 parent: 2 type: Transform - proto: SurveillanceWirelessCameraAnchoredConstructed entities: - - uid: 24157 + - uid: 24189 components: - rot: 3.141592653589793 rad pos: -26.5,13.5 @@ -183977,7 +184010,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceWirelessCameraMovableEntertainment entities: - - uid: 24158 + - uid: 24190 components: - pos: -24.5,13.5 parent: 2 @@ -183987,7 +184020,7 @@ entities: nameSet: True id: news camera type: SurveillanceCamera - - uid: 24159 + - uid: 24191 components: - rot: -1.5707963267948966 rad pos: 29.5,3.5 @@ -183995,2113 +184028,2113 @@ entities: type: Transform - proto: SynthesizerInstrument entities: - - uid: 24160 + - uid: 24192 components: - pos: -10.500677,-5.723185 parent: 2 type: Transform - proto: Syringe entities: - - uid: 24161 + - uid: 24193 components: - pos: -25.497284,-79.35806 parent: 2 type: Transform - proto: Table entities: - - uid: 24162 + - uid: 24194 components: - rot: 3.141592653589793 rad pos: -37.5,-7.5 parent: 2 type: Transform - - uid: 24163 + - uid: 24195 components: - rot: 3.141592653589793 rad pos: -36.5,-7.5 parent: 2 type: Transform - - uid: 24164 + - uid: 24196 components: - pos: 0.5,-5.5 parent: 2 type: Transform - - uid: 24165 + - uid: 24197 components: - rot: 1.5707963267948966 rad pos: 2.5,7.5 parent: 2 type: Transform - - uid: 24166 + - uid: 24198 components: - pos: 4.5,15.5 parent: 2 type: Transform - - uid: 24167 + - uid: 24199 components: - rot: 3.141592653589793 rad pos: 18.5,11.5 parent: 2 type: Transform - - uid: 24168 + - uid: 24200 components: - rot: 3.141592653589793 rad pos: 18.5,13.5 parent: 2 type: Transform - - uid: 24169 + - uid: 24201 components: - pos: 7.5,-46.5 parent: 2 type: Transform - - uid: 24170 + - uid: 24202 components: - pos: -25.5,-78.5 parent: 2 type: Transform - - uid: 24171 + - uid: 24203 components: - pos: -19.5,-85.5 parent: 2 type: Transform - - uid: 24172 + - uid: 24204 components: - pos: 1.5,-5.5 parent: 2 type: Transform - - uid: 24173 + - uid: 24205 components: - rot: 1.5707963267948966 rad pos: 2.5,6.5 parent: 2 type: Transform - - uid: 24174 + - uid: 24206 components: - rot: 3.141592653589793 rad pos: 4.5,-50.5 parent: 2 type: Transform - - uid: 24175 + - uid: 24207 components: - pos: 29.5,-39.5 parent: 2 type: Transform - - uid: 24176 + - uid: 24208 components: - pos: 0.5,-4.5 parent: 2 type: Transform - - uid: 24177 + - uid: 24209 components: - pos: 2.5,-5.5 parent: 2 type: Transform - - uid: 24178 + - uid: 24210 components: - rot: -1.5707963267948966 rad pos: 6.5,12.5 parent: 2 type: Transform - - uid: 24179 + - uid: 24211 components: - pos: 10.5,-56.5 parent: 2 type: Transform - - uid: 24180 + - uid: 24212 components: - pos: -28.5,21.5 parent: 2 type: Transform - - uid: 24181 + - uid: 24213 components: - rot: 3.141592653589793 rad pos: 73.5,-38.5 parent: 2 type: Transform - - uid: 24182 + - uid: 24214 components: - rot: 1.5707963267948966 rad pos: 4.5,6.5 parent: 2 type: Transform - - uid: 24183 + - uid: 24215 components: - pos: 3.5,-45.5 parent: 2 type: Transform - - uid: 24184 + - uid: 24216 components: - rot: 3.141592653589793 rad pos: 18.5,12.5 parent: 2 type: Transform - - uid: 24185 + - uid: 24217 components: - pos: 1.5,-4.5 parent: 2 type: Transform - - uid: 24186 + - uid: 24218 components: - pos: 29.5,-34.5 parent: 2 type: Transform - - uid: 24187 + - uid: 24219 components: - rot: -1.5707963267948966 rad pos: -12.5,-56.5 parent: 2 type: Transform - - uid: 24188 + - uid: 24220 components: - rot: -1.5707963267948966 rad pos: -9.5,-56.5 parent: 2 type: Transform - - uid: 24189 + - uid: 24221 components: - rot: -1.5707963267948966 rad pos: -6.5,-56.5 parent: 2 type: Transform - - uid: 24190 + - uid: 24222 components: - rot: -1.5707963267948966 rad pos: -3.5,-56.5 parent: 2 type: Transform - - uid: 24191 + - uid: 24223 components: - rot: -1.5707963267948966 rad pos: -0.5,-56.5 parent: 2 type: Transform - - uid: 24192 + - uid: 24224 components: - rot: -1.5707963267948966 rad pos: 2.5,-56.5 parent: 2 type: Transform - - uid: 24193 + - uid: 24225 components: - rot: 3.141592653589793 rad pos: 64.5,-36.5 parent: 2 type: Transform - - uid: 24194 + - uid: 24226 components: - pos: 10.5,-58.5 parent: 2 type: Transform - - uid: 24195 + - uid: 24227 components: - pos: 10.5,-59.5 parent: 2 type: Transform - - uid: 24196 + - uid: 24228 components: - pos: 10.5,-61.5 parent: 2 type: Transform - - uid: 24197 + - uid: 24229 components: - pos: 10.5,-62.5 parent: 2 type: Transform - - uid: 24198 + - uid: 24230 components: - pos: 9.5,-62.5 parent: 2 type: Transform - - uid: 24199 + - uid: 24231 components: - pos: 8.5,-62.5 parent: 2 type: Transform - - uid: 24200 + - uid: 24232 components: - pos: -13.5,-21.5 parent: 2 type: Transform - - uid: 24201 + - uid: 24233 components: - pos: -13.5,-23.5 parent: 2 type: Transform - - uid: 24202 + - uid: 24234 components: - pos: -12.5,-19.5 parent: 2 type: Transform - - uid: 24203 + - uid: 24235 components: - pos: 3.5,-47.5 parent: 2 type: Transform - - uid: 24204 + - uid: 24236 components: - pos: 8.5,13.5 parent: 2 type: Transform - - uid: 24205 + - uid: 24237 components: - pos: 7.5,12.5 parent: 2 type: Transform - - uid: 24206 + - uid: 24238 components: - pos: -22.5,-78.5 parent: 2 type: Transform - - uid: 24207 + - uid: 24239 components: - pos: -20.5,-78.5 parent: 2 type: Transform - - uid: 24208 + - uid: 24240 components: - pos: 2.5,-4.5 parent: 2 type: Transform - - uid: 24209 + - uid: 24241 components: - rot: 1.5707963267948966 rad pos: 3.5,7.5 parent: 2 type: Transform - - uid: 24210 + - uid: 24242 components: - rot: 1.5707963267948966 rad pos: 3.5,6.5 parent: 2 type: Transform - - uid: 24211 + - uid: 24243 components: - pos: 10.5,-60.5 parent: 2 type: Transform - - uid: 24212 + - uid: 24244 components: - rot: -1.5707963267948966 rad pos: 8.5,14.5 parent: 2 type: Transform - - uid: 24213 + - uid: 24245 components: - pos: 56.5,-41.5 parent: 2 type: Transform - - uid: 24214 + - uid: 24246 components: - pos: -25.5,-79.5 parent: 2 type: Transform - - uid: 24215 + - uid: 24247 components: - pos: -26.5,-20.5 parent: 2 type: Transform - - uid: 24216 + - uid: 24248 components: - pos: 5.5,15.5 parent: 2 type: Transform - - uid: 24217 + - uid: 24249 components: - pos: -62.5,-28.5 parent: 2 type: Transform - - uid: 24218 + - uid: 24250 components: - pos: -43.5,35.5 parent: 2 type: Transform - - uid: 24219 + - uid: 24251 components: - pos: -22.5,-76.5 parent: 2 type: Transform - - uid: 24220 + - uid: 24252 components: - pos: -20.5,-77.5 parent: 2 type: Transform - - uid: 24221 + - uid: 24253 components: - pos: -6.5,-73.5 parent: 2 type: Transform - - uid: 24222 + - uid: 24254 components: - pos: 9.5,-56.5 parent: 2 type: Transform - - uid: 24223 + - uid: 24255 components: - pos: -23.5,-71.5 parent: 2 type: Transform - - uid: 24224 + - uid: 24256 components: - pos: -11.5,-67.5 parent: 2 type: Transform - - uid: 24225 + - uid: 24257 components: - pos: -24.5,-71.5 parent: 2 type: Transform - - uid: 24226 + - uid: 24258 components: - pos: -22.5,-71.5 parent: 2 type: Transform - - uid: 24227 + - uid: 24259 components: - pos: -22.5,-70.5 parent: 2 type: Transform - - uid: 24228 + - uid: 24260 components: - pos: -13.5,-22.5 parent: 2 type: Transform - - uid: 24229 + - uid: 24261 components: - pos: -22.5,-69.5 parent: 2 type: Transform - - uid: 24230 + - uid: 24262 components: - pos: -30.5,-69.5 parent: 2 type: Transform - - uid: 24231 + - uid: 24263 components: - rot: 3.141592653589793 rad pos: -31.5,-69.5 parent: 2 type: Transform - - uid: 24232 + - uid: 24264 components: - pos: -8.5,-15.5 parent: 2 type: Transform - - uid: 24233 + - uid: 24265 components: - pos: 15.5,-64.5 parent: 2 type: Transform - - uid: 24234 + - uid: 24266 components: - pos: 16.5,-64.5 parent: 2 type: Transform - - uid: 24235 + - uid: 24267 components: - rot: 1.5707963267948966 rad pos: 4.5,7.5 parent: 2 type: Transform - - uid: 24236 + - uid: 24268 components: - rot: 3.141592653589793 rad pos: 18.5,11.5 parent: 2 type: Transform - - uid: 24237 + - uid: 24269 components: - pos: 8.5,12.5 parent: 2 type: Transform - - uid: 24238 + - uid: 24270 components: - pos: 9.5,-58.5 parent: 2 type: Transform - - uid: 24239 + - uid: 24271 components: - pos: -7.5,-15.5 parent: 2 type: Transform - - uid: 24240 + - uid: 24272 components: - pos: -19.5,-87.5 parent: 2 type: Transform - - uid: 24241 + - uid: 24273 components: - pos: -19.5,-84.5 parent: 2 type: Transform - - uid: 24242 + - uid: 24274 components: - pos: -26.5,-86.5 parent: 2 type: Transform - - uid: 24243 + - uid: 24275 components: - pos: -26.5,-84.5 parent: 2 type: Transform - - uid: 24244 + - uid: 24276 components: - pos: -25.5,-84.5 parent: 2 type: Transform - - uid: 24245 + - uid: 24277 components: - pos: -24.5,-84.5 parent: 2 type: Transform - - uid: 24246 + - uid: 24278 components: - pos: 12.5,20.5 parent: 2 type: Transform - - uid: 24247 + - uid: 24279 components: - pos: 12.5,19.5 parent: 2 type: Transform - - uid: 24248 + - uid: 24280 components: - pos: 12.5,21.5 parent: 2 type: Transform - - uid: 24249 + - uid: 24281 components: - pos: -10.5,-32.5 parent: 2 type: Transform - - uid: 24250 + - uid: 24282 components: - pos: -9.5,-32.5 parent: 2 type: Transform - - uid: 24251 + - uid: 24283 components: - pos: -8.5,-32.5 parent: 2 type: Transform - - uid: 24252 + - uid: 24284 components: - pos: -8.5,-33.5 parent: 2 type: Transform - - uid: 24253 + - uid: 24285 components: - rot: 3.141592653589793 rad pos: 17.5,22.5 parent: 2 type: Transform - - uid: 24254 + - uid: 24286 components: - pos: 17.5,21.5 parent: 2 type: Transform - - uid: 24255 + - uid: 24287 components: - pos: 16.5,21.5 parent: 2 type: Transform - - uid: 24256 + - uid: 24288 components: - pos: 15.5,21.5 parent: 2 type: Transform - - uid: 24257 + - uid: 24289 components: - rot: 3.141592653589793 rad pos: 15.5,22.5 parent: 2 type: Transform - - uid: 24258 + - uid: 24290 components: - rot: 3.141592653589793 rad pos: 16.5,22.5 parent: 2 type: Transform - - uid: 24259 + - uid: 24291 components: - pos: -9.5,-15.5 parent: 2 type: Transform - - uid: 24260 + - uid: 24292 components: - pos: 53.5,35.5 parent: 2 type: Transform - - uid: 24261 + - uid: 24293 components: - pos: 54.5,35.5 parent: 2 type: Transform - - uid: 24262 + - uid: 24294 components: - rot: 1.5707963267948966 rad pos: 54.5,18.5 parent: 2 type: Transform - - uid: 24263 + - uid: 24295 components: - rot: 1.5707963267948966 rad pos: 53.5,18.5 parent: 2 type: Transform - - uid: 24264 + - uid: 24296 components: - rot: 1.5707963267948966 rad pos: 52.5,18.5 parent: 2 type: Transform - - uid: 24265 + - uid: 24297 components: - pos: 45.5,8.5 parent: 2 type: Transform - - uid: 24266 + - uid: 24298 components: - pos: 62.5,18.5 parent: 2 type: Transform - - uid: 24267 + - uid: 24299 components: - pos: 62.5,15.5 parent: 2 type: Transform - - uid: 24268 + - uid: 24300 components: - pos: 59.5,24.5 parent: 2 type: Transform - - uid: 24269 + - uid: 24301 components: - pos: 47.5,24.5 parent: 2 type: Transform - - uid: 24270 + - uid: 24302 components: - pos: 53.5,24.5 parent: 2 type: Transform - - uid: 24271 + - uid: 24303 components: - pos: 50.5,24.5 parent: 2 type: Transform - - uid: 24272 + - uid: 24304 components: - pos: 56.5,24.5 parent: 2 type: Transform - - uid: 24273 + - uid: 24305 components: - pos: 48.5,18.5 parent: 2 type: Transform - - uid: 24274 + - uid: 24306 components: - pos: 57.5,20.5 parent: 2 type: Transform - - uid: 24275 + - uid: 24307 components: - pos: 57.5,19.5 parent: 2 type: Transform - - uid: 24276 + - uid: 24308 components: - pos: 58.5,19.5 parent: 2 type: Transform - - uid: 24277 + - uid: 24309 components: - pos: 51.5,7.5 parent: 2 type: Transform - - uid: 24278 + - uid: 24310 components: - pos: 52.5,7.5 parent: 2 type: Transform - - uid: 24279 + - uid: 24311 components: - pos: 52.5,6.5 parent: 2 type: Transform - - uid: 24280 + - uid: 24312 components: - pos: 51.5,6.5 parent: 2 type: Transform - - uid: 24281 + - uid: 24313 components: - rot: 3.141592653589793 rad pos: 52.5,11.5 parent: 2 type: Transform - - uid: 24282 + - uid: 24314 components: - pos: 58.5,20.5 parent: 2 type: Transform - - uid: 24283 + - uid: 24315 components: - rot: -1.5707963267948966 rad pos: 47.5,4.5 parent: 2 type: Transform - - uid: 24284 + - uid: 24316 components: - rot: -1.5707963267948966 rad pos: 65.5,-6.5 parent: 2 type: Transform - - uid: 24285 + - uid: 24317 components: - pos: 41.5,-39.5 parent: 2 type: Transform - - uid: 24286 + - uid: 24318 components: - pos: 40.5,-39.5 parent: 2 type: Transform - - uid: 24287 + - uid: 24319 components: - pos: 39.5,-39.5 parent: 2 type: Transform - - uid: 24288 + - uid: 24320 components: - pos: 38.5,-39.5 parent: 2 type: Transform - - uid: 24289 + - uid: 24321 components: - pos: 38.5,-38.5 parent: 2 type: Transform - - uid: 24290 + - uid: 24322 components: - pos: 38.5,-37.5 parent: 2 type: Transform - - uid: 24291 + - uid: 24323 components: - pos: 53.5,-40.5 parent: 2 type: Transform - - uid: 24292 + - uid: 24324 components: - pos: 52.5,-40.5 parent: 2 type: Transform - - uid: 24293 + - uid: 24325 components: - pos: 51.5,-40.5 parent: 2 type: Transform - - uid: 24294 + - uid: 24326 components: - pos: 51.5,-41.5 parent: 2 type: Transform - - uid: 24295 + - uid: 24327 components: - pos: 51.5,-42.5 parent: 2 type: Transform - - uid: 24296 + - uid: 24328 components: - pos: 51.5,-43.5 parent: 2 type: Transform - - uid: 24297 + - uid: 24329 components: - pos: 53.5,-43.5 parent: 2 type: Transform - - uid: 24298 + - uid: 24330 components: - rot: -1.5707963267948966 rad pos: 52.5,-43.5 parent: 2 type: Transform - - uid: 24299 + - uid: 24331 components: - rot: 3.141592653589793 rad pos: 77.5,-46.5 parent: 2 type: Transform - - uid: 24300 + - uid: 24332 components: - pos: 38.5,-36.5 parent: 2 type: Transform - - uid: 24301 + - uid: 24333 components: - pos: 42.5,-35.5 parent: 2 type: Transform - - uid: 24302 + - uid: 24334 components: - pos: 41.5,-35.5 parent: 2 type: Transform - - uid: 24303 + - uid: 24335 components: - pos: 46.5,-49.5 parent: 2 type: Transform - - uid: 24304 + - uid: 24336 components: - pos: 45.5,-49.5 parent: 2 type: Transform - - uid: 24305 + - uid: 24337 components: - pos: 44.5,-49.5 parent: 2 type: Transform - - uid: 24306 + - uid: 24338 components: - pos: 43.5,-49.5 parent: 2 type: Transform - - uid: 24307 + - uid: 24339 components: - pos: 42.5,-49.5 parent: 2 type: Transform - - uid: 24308 + - uid: 24340 components: - pos: 42.5,-48.5 parent: 2 type: Transform - - uid: 24309 + - uid: 24341 components: - pos: 71.5,-43.5 parent: 2 type: Transform - - uid: 24310 + - uid: 24342 components: - pos: 73.5,-44.5 parent: 2 type: Transform - - uid: 24311 + - uid: 24343 components: - rot: -1.5707963267948966 rad pos: 73.5,-47.5 parent: 2 type: Transform - - uid: 24312 + - uid: 24344 components: - pos: 69.5,-49.5 parent: 2 type: Transform - - uid: 24313 + - uid: 24345 components: - rot: -1.5707963267948966 rad pos: 69.5,-47.5 parent: 2 type: Transform - - uid: 24314 + - uid: 24346 components: - pos: 73.5,-43.5 parent: 2 type: Transform - - uid: 24315 + - uid: 24347 components: - pos: 72.5,-43.5 parent: 2 type: Transform - - uid: 24316 + - uid: 24348 components: - pos: -11.5,-48.5 parent: 2 type: Transform - - uid: 24317 + - uid: 24349 components: - pos: -11.5,-49.5 parent: 2 type: Transform - - uid: 24318 + - uid: 24350 components: - pos: -11.5,-50.5 parent: 2 type: Transform - - uid: 24319 + - uid: 24351 components: - pos: -12.5,-50.5 parent: 2 type: Transform - - uid: 24320 + - uid: 24352 components: - pos: 53.5,-51.5 parent: 2 type: Transform - - uid: 24321 + - uid: 24353 components: - pos: 53.5,-52.5 parent: 2 type: Transform - - uid: 24322 + - uid: 24354 components: - pos: 53.5,-53.5 parent: 2 type: Transform - - uid: 24323 + - uid: 24355 components: - rot: 3.141592653589793 rad pos: -24.5,-19.5 parent: 2 type: Transform - - uid: 24324 + - uid: 24356 components: - rot: 3.141592653589793 rad pos: -25.5,-19.5 parent: 2 type: Transform - - uid: 24325 + - uid: 24357 components: - pos: -22.5,-20.5 parent: 2 type: Transform - - uid: 24326 + - uid: 24358 components: - rot: 1.5707963267948966 rad pos: -23.5,-24.5 parent: 2 type: Transform - - uid: 24327 + - uid: 24359 components: - rot: 1.5707963267948966 rad pos: -24.5,-24.5 parent: 2 type: Transform - - uid: 24328 + - uid: 24360 components: - rot: 1.5707963267948966 rad pos: -25.5,-24.5 parent: 2 type: Transform - - uid: 24329 + - uid: 24361 components: - pos: -26.5,-19.5 parent: 2 type: Transform - - uid: 24330 + - uid: 24362 components: - pos: 30.5,-61.5 parent: 2 type: Transform - - uid: 24331 + - uid: 24363 components: - pos: 31.5,-61.5 parent: 2 type: Transform - - uid: 24332 + - uid: 24364 components: - pos: 40.5,-53.5 parent: 2 type: Transform - - uid: 24333 + - uid: 24365 components: - pos: 41.5,-53.5 parent: 2 type: Transform - - uid: 24334 + - uid: 24366 components: - pos: 41.5,-54.5 parent: 2 type: Transform - - uid: 24335 + - uid: 24367 components: - pos: 41.5,-55.5 parent: 2 type: Transform - - uid: 24336 + - uid: 24368 components: - rot: 3.141592653589793 rad pos: 26.5,-68.5 parent: 2 type: Transform - - uid: 24337 + - uid: 24369 components: - rot: -1.5707963267948966 rad pos: -37.5,-17.5 parent: 2 type: Transform - - uid: 24338 + - uid: 24370 components: - pos: -34.5,-13.5 parent: 2 type: Transform - - uid: 24339 + - uid: 24371 components: - pos: -35.5,-13.5 parent: 2 type: Transform - - uid: 24340 + - uid: 24372 components: - pos: -36.5,-8.5 parent: 2 type: Transform - - uid: 24341 + - uid: 24373 components: - pos: -34.5,-12.5 parent: 2 type: Transform - - uid: 24342 + - uid: 24374 components: - pos: -39.5,-16.5 parent: 2 type: Transform - - uid: 24343 + - uid: 24375 components: - pos: -39.5,-17.5 parent: 2 type: Transform - - uid: 24344 + - uid: 24376 components: - pos: -39.5,-18.5 parent: 2 type: Transform - - uid: 24345 + - uid: 24377 components: - pos: -40.5,-18.5 parent: 2 type: Transform - - uid: 24346 + - uid: 24378 components: - pos: -41.5,-18.5 parent: 2 type: Transform - - uid: 24347 + - uid: 24379 components: - pos: -42.5,-18.5 parent: 2 type: Transform - - uid: 24348 + - uid: 24380 components: - pos: -42.5,-17.5 parent: 2 type: Transform - - uid: 24349 + - uid: 24381 components: - pos: -42.5,-16.5 parent: 2 type: Transform - - uid: 24350 + - uid: 24382 components: - rot: 1.5707963267948966 rad pos: -12.5,-5.5 parent: 2 type: Transform - - uid: 24351 + - uid: 24383 components: - pos: -30.5,-37.5 parent: 2 type: Transform - - uid: 24352 + - uid: 24384 components: - rot: 3.141592653589793 rad pos: -52.5,-13.5 parent: 2 type: Transform - - uid: 24353 + - uid: 24385 components: - pos: -57.5,-30.5 parent: 2 type: Transform - - uid: 24354 + - uid: 24386 components: - pos: -62.5,-27.5 parent: 2 type: Transform - - uid: 24355 + - uid: 24387 components: - pos: -67.5,-32.5 parent: 2 type: Transform - - uid: 24356 + - uid: 24388 components: - pos: -66.5,-32.5 parent: 2 type: Transform - - uid: 24357 + - uid: 24389 components: - pos: -65.5,-32.5 parent: 2 type: Transform - - uid: 24358 + - uid: 24390 components: - pos: -35.5,-46.5 parent: 2 type: Transform - - uid: 24359 + - uid: 24391 components: - pos: -35.5,-47.5 parent: 2 type: Transform - - uid: 24360 + - uid: 24392 components: - pos: -35.5,-48.5 parent: 2 type: Transform - - uid: 24361 + - uid: 24393 components: - pos: -35.5,-49.5 parent: 2 type: Transform - - uid: 24362 + - uid: 24394 components: - pos: -35.5,-50.5 parent: 2 type: Transform - - uid: 24363 + - uid: 24395 components: - pos: -51.5,-16.5 parent: 2 type: Transform - - uid: 24364 + - uid: 24396 components: - pos: -50.5,-16.5 parent: 2 type: Transform - - uid: 24365 + - uid: 24397 components: - pos: -50.5,-17.5 parent: 2 type: Transform - - uid: 24366 + - uid: 24398 components: - pos: -52.5,-16.5 parent: 2 type: Transform - - uid: 24367 + - uid: 24399 components: - pos: -52.5,-15.5 parent: 2 type: Transform - - uid: 24368 + - uid: 24400 components: - pos: -52.5,-14.5 parent: 2 type: Transform - - uid: 24369 + - uid: 24401 components: - pos: -52.5,-12.5 parent: 2 type: Transform - - uid: 24370 + - uid: 24402 components: - pos: -70.5,-25.5 parent: 2 type: Transform - - uid: 24371 + - uid: 24403 components: - pos: -70.5,-26.5 parent: 2 type: Transform - - uid: 24372 + - uid: 24404 components: - pos: -71.5,-26.5 parent: 2 type: Transform - - uid: 24373 + - uid: 24405 components: - rot: 3.141592653589793 rad pos: 20.5,-45.5 parent: 2 type: Transform - - uid: 24374 + - uid: 24406 components: - pos: -28.5,-52.5 parent: 2 type: Transform - - uid: 24375 + - uid: 24407 components: - pos: -27.5,-52.5 parent: 2 type: Transform - - uid: 24376 + - uid: 24408 components: - pos: -26.5,-52.5 parent: 2 type: Transform - - uid: 24377 + - uid: 24409 components: - pos: -25.5,-52.5 parent: 2 type: Transform - - uid: 24378 + - uid: 24410 components: - pos: -24.5,-52.5 parent: 2 type: Transform - - uid: 24379 + - uid: 24411 components: - pos: -38.5,-27.5 parent: 2 type: Transform - - uid: 24380 + - uid: 24412 components: - pos: -43.5,-27.5 parent: 2 type: Transform - - uid: 24381 + - uid: 24413 components: - pos: -54.5,-37.5 parent: 2 type: Transform - - uid: 24382 + - uid: 24414 components: - pos: -54.5,-38.5 parent: 2 type: Transform - - uid: 24383 + - uid: 24415 components: - pos: -54.5,-39.5 parent: 2 type: Transform - - uid: 24384 + - uid: 24416 components: - pos: -55.5,-39.5 parent: 2 type: Transform - - uid: 24385 + - uid: 24417 components: - pos: -57.5,-35.5 parent: 2 type: Transform - - uid: 24386 + - uid: 24418 components: - pos: -56.5,-35.5 parent: 2 type: Transform - - uid: 24387 + - uid: 24419 components: - pos: -22.5,-33.5 parent: 2 type: Transform - - uid: 24388 + - uid: 24420 components: - pos: 38.5,-55.5 parent: 2 type: Transform - - uid: 24389 + - uid: 24421 components: - pos: 38.5,-56.5 parent: 2 type: Transform - - uid: 24390 + - uid: 24422 components: - pos: -34.5,17.5 parent: 2 type: Transform - - uid: 24391 + - uid: 24423 components: - pos: -27.5,24.5 parent: 2 type: Transform - - uid: 24392 + - uid: 24424 components: - pos: -22.5,17.5 parent: 2 type: Transform - - uid: 24393 + - uid: 24425 components: - pos: -39.5,25.5 parent: 2 type: Transform - - uid: 24394 + - uid: 24426 components: - pos: -40.5,25.5 parent: 2 type: Transform - - uid: 24395 + - uid: 24427 components: - pos: -43.5,25.5 parent: 2 type: Transform - - uid: 24396 + - uid: 24428 components: - pos: -42.5,25.5 parent: 2 type: Transform - - uid: 24397 + - uid: 24429 components: - rot: 1.5707963267948966 rad pos: 33.5,-14.5 parent: 2 type: Transform - - uid: 24398 + - uid: 24430 components: - pos: -3.5,31.5 parent: 2 type: Transform - - uid: 24399 + - uid: 24431 components: - pos: -3.5,30.5 parent: 2 type: Transform - - uid: 24400 + - uid: 24432 components: - pos: 2.5,23.5 parent: 2 type: Transform - - uid: 24401 + - uid: 24433 components: - pos: 1.5,23.5 parent: 2 type: Transform - - uid: 24402 + - uid: 24434 components: - pos: -8.5,20.5 parent: 2 type: Transform - - uid: 24403 + - uid: 24435 components: - pos: -33.5,17.5 parent: 2 type: Transform - - uid: 24404 + - uid: 24436 components: - pos: -32.5,17.5 parent: 2 type: Transform - - uid: 24405 + - uid: 24437 components: - pos: -34.5,26.5 parent: 2 type: Transform - - uid: 24406 + - uid: 24438 components: - pos: -33.5,29.5 parent: 2 type: Transform - - uid: 24407 + - uid: 24439 components: - rot: -1.5707963267948966 rad pos: -38.5,18.5 parent: 2 type: Transform - - uid: 24408 + - uid: 24440 components: - pos: -32.5,29.5 parent: 2 type: Transform - - uid: 24409 + - uid: 24441 components: - pos: -31.5,29.5 parent: 2 type: Transform - - uid: 24410 + - uid: 24442 components: - rot: -1.5707963267948966 rad pos: -37.5,18.5 parent: 2 type: Transform - - uid: 24411 + - uid: 24443 components: - pos: -42.5,35.5 parent: 2 type: Transform - - uid: 24412 + - uid: 24444 components: - pos: -41.5,35.5 parent: 2 type: Transform - - uid: 24413 + - uid: 24445 components: - pos: -40.5,35.5 parent: 2 type: Transform - - uid: 24414 + - uid: 24446 components: - pos: -40.5,34.5 parent: 2 type: Transform - - uid: 24415 + - uid: 24447 components: - pos: -40.5,33.5 parent: 2 type: Transform - - uid: 24416 + - uid: 24448 components: - pos: -40.5,32.5 parent: 2 type: Transform - - uid: 24417 + - uid: 24449 components: - pos: -38.5,28.5 parent: 2 type: Transform - - uid: 24418 + - uid: 24450 components: - pos: -38.5,27.5 parent: 2 type: Transform - - uid: 24419 + - uid: 24451 components: - pos: -37.5,27.5 parent: 2 type: Transform - - uid: 24420 + - uid: 24452 components: - pos: -36.5,27.5 parent: 2 type: Transform - - uid: 24421 + - uid: 24453 components: - rot: 3.141592653589793 rad pos: -22.5,11.5 parent: 2 type: Transform - - uid: 24422 + - uid: 24454 components: - rot: 3.141592653589793 rad pos: -23.5,11.5 parent: 2 type: Transform - - uid: 24423 + - uid: 24455 components: - rot: 3.141592653589793 rad pos: -24.5,11.5 parent: 2 type: Transform - - uid: 24424 + - uid: 24456 components: - pos: -15.5,23.5 parent: 2 type: Transform - - uid: 24425 + - uid: 24457 components: - pos: -4.5,19.5 parent: 2 type: Transform - - uid: 24426 + - uid: 24458 components: - pos: -5.5,19.5 parent: 2 type: Transform - - uid: 24427 + - uid: 24459 components: - pos: -16.5,21.5 parent: 2 type: Transform - - uid: 24428 + - uid: 24460 components: - pos: -16.5,20.5 parent: 2 type: Transform - - uid: 24429 + - uid: 24461 components: - pos: -15.5,21.5 parent: 2 type: Transform - - uid: 24430 + - uid: 24462 components: - pos: -48.5,26.5 parent: 2 type: Transform - - uid: 24431 + - uid: 24463 components: - pos: -47.5,26.5 parent: 2 type: Transform - - uid: 24432 + - uid: 24464 components: - pos: -28.5,8.5 parent: 2 type: Transform - - uid: 24433 + - uid: 24465 components: - pos: -29.5,8.5 parent: 2 type: Transform - - uid: 24434 + - uid: 24466 components: - pos: -54.5,0.5 parent: 2 type: Transform - - uid: 24435 + - uid: 24467 components: - pos: 54.5,12.5 parent: 2 type: Transform - - uid: 24436 + - uid: 24468 components: - pos: -25.5,-67.5 parent: 2 type: Transform - - uid: 24437 + - uid: 24469 components: - rot: 1.5707963267948966 rad pos: -12.5,-6.5 parent: 2 type: Transform - - uid: 24438 + - uid: 24470 components: - pos: -34.5,20.5 parent: 2 type: Transform - - uid: 24439 + - uid: 24471 components: - rot: -1.5707963267948966 rad pos: 2.5,-65.5 parent: 2 type: Transform - - uid: 24440 + - uid: 24472 components: - pos: -58.5,-27.5 parent: 2 type: Transform - - uid: 24441 + - uid: 24473 components: - pos: -57.5,-27.5 parent: 2 type: Transform - - uid: 24442 + - uid: 24474 components: - pos: -56.5,-27.5 parent: 2 type: Transform - - uid: 24443 + - uid: 24475 components: - pos: 70.5,-43.5 parent: 2 type: Transform - - uid: 24444 + - uid: 24476 components: - pos: 7.5,-45.5 parent: 2 type: Transform - - uid: 24445 + - uid: 24477 components: - rot: 3.141592653589793 rad pos: 34.5,-35.5 parent: 2 type: Transform - - uid: 24446 + - uid: 24478 components: - pos: 41.5,-58.5 parent: 2 type: Transform - - uid: 24447 + - uid: 24479 components: - pos: 77.5,-47.5 parent: 2 type: Transform - - uid: 24448 + - uid: 24480 components: - rot: 1.5707963267948966 rad pos: -9.5,-65.5 parent: 2 type: Transform - - uid: 24449 + - uid: 24481 components: - pos: -2.5,-33.5 parent: 2 type: Transform - - uid: 24450 + - uid: 24482 components: - pos: 11.5,-66.5 parent: 2 type: Transform - - uid: 24451 + - uid: 24483 components: - pos: 12.5,-66.5 parent: 2 type: Transform - - uid: 24452 + - uid: 24484 components: - pos: 7.5,-16.5 parent: 2 type: Transform - - uid: 24453 + - uid: 24485 components: - pos: -7.5,-30.5 parent: 2 type: Transform - - uid: 24454 + - uid: 24486 components: - pos: -24.5,-6.5 parent: 2 type: Transform - - uid: 24455 + - uid: 24487 components: - pos: 18.5,-30.5 parent: 2 type: Transform - - uid: 24456 + - uid: 24488 components: - rot: 3.141592653589793 rad pos: -29.5,-69.5 parent: 2 type: Transform - - uid: 24457 + - uid: 24489 components: - pos: 53.5,60.5 parent: 2 type: Transform - - uid: 24458 + - uid: 24490 components: - pos: 54.5,60.5 parent: 2 type: Transform - - uid: 24459 + - uid: 24491 components: - pos: 55.5,60.5 parent: 2 type: Transform - - uid: 24460 + - uid: 24492 components: - pos: 57.5,42.5 parent: 2 type: Transform - - uid: 24461 + - uid: 24493 components: - pos: 56.5,42.5 parent: 2 type: Transform - - uid: 24462 + - uid: 24494 components: - pos: 55.5,42.5 parent: 2 type: Transform - - uid: 24463 + - uid: 24495 components: - pos: 50.5,42.5 parent: 2 type: Transform - - uid: 24464 + - uid: 24496 components: - pos: 58.5,52.5 parent: 2 type: Transform - - uid: 24465 + - uid: 24497 components: - pos: 58.5,51.5 parent: 2 type: Transform - - uid: 24466 + - uid: 24498 components: - pos: -8.5,39.5 parent: 2 type: Transform - - uid: 24467 + - uid: 24499 components: - pos: -8.5,38.5 parent: 2 type: Transform - - uid: 24468 + - uid: 24500 components: - pos: -8.5,37.5 parent: 2 type: Transform - - uid: 24469 + - uid: 24501 components: - pos: -9.5,39.5 parent: 2 type: Transform - - uid: 24470 + - uid: 24502 components: - pos: -9.5,37.5 parent: 2 type: Transform - - uid: 24471 + - uid: 24503 components: - rot: 3.141592653589793 rad pos: 67.5,8.5 parent: 2 type: Transform - - uid: 24472 + - uid: 24504 components: - pos: -22.5,45.5 parent: 2 type: Transform - - uid: 24473 + - uid: 24505 components: - pos: -22.5,44.5 parent: 2 type: Transform - - uid: 24474 + - uid: 24506 components: - pos: -22.5,43.5 parent: 2 type: Transform - - uid: 24475 + - uid: 24507 components: - pos: 64.5,29.5 parent: 2 type: Transform - - uid: 24476 + - uid: 24508 components: - pos: 64.5,28.5 parent: 2 type: Transform - - uid: 24477 + - uid: 24509 components: - pos: -0.5,-77.5 parent: 2 type: Transform - - uid: 24478 + - uid: 24510 components: - pos: 72.5,36.5 parent: 2 type: Transform - - uid: 24479 + - uid: 24511 components: - pos: 73.5,36.5 parent: 2 type: Transform - - uid: 24480 + - uid: 24512 components: - pos: 71.5,36.5 parent: 2 type: Transform - - uid: 24481 + - uid: 24513 components: - rot: -1.5707963267948966 rad pos: -11.5,37.5 parent: 2 type: Transform - - uid: 24482 + - uid: 24514 components: - rot: -1.5707963267948966 rad pos: -12.5,37.5 parent: 2 type: Transform - - uid: 24483 + - uid: 24515 components: - rot: 3.141592653589793 rad pos: 37.5,51.5 parent: 2 type: Transform - - uid: 24484 + - uid: 24516 components: - rot: 3.141592653589793 rad pos: 38.5,51.5 parent: 2 type: Transform - - uid: 24485 + - uid: 24517 components: - pos: -2.5,43.5 parent: 2 type: Transform - - uid: 24486 + - uid: 24518 components: - rot: 1.5707963267948966 rad pos: -9.5,41.5 parent: 2 type: Transform - - uid: 24487 + - uid: 24519 components: - rot: 1.5707963267948966 rad pos: -8.5,41.5 parent: 2 type: Transform - - uid: 24488 + - uid: 24520 components: - pos: -10.5,41.5 parent: 2 type: Transform - - uid: 24489 + - uid: 24521 components: - pos: -20.5,47.5 parent: 2 type: Transform - - uid: 24490 + - uid: 24522 components: - pos: -21.5,47.5 parent: 2 type: Transform - - uid: 24491 + - uid: 24523 components: - pos: -16.5,24.5 parent: 2 type: Transform - - uid: 24492 + - uid: 24524 components: - pos: -16.5,23.5 parent: 2 type: Transform - - uid: 24493 + - uid: 24525 components: - pos: 30.5,47.5 parent: 2 type: Transform - - uid: 24494 + - uid: 24526 components: - pos: 30.5,46.5 parent: 2 type: Transform - - uid: 24495 + - uid: 24527 components: - rot: 3.141592653589793 rad pos: -55.5,-48.5 parent: 2 type: Transform - - uid: 24496 + - uid: 24528 components: - rot: 3.141592653589793 rad pos: -55.5,-49.5 parent: 2 type: Transform - - uid: 24497 + - uid: 24529 components: - pos: -22.5,-100.5 parent: 2 type: Transform - - uid: 24498 + - uid: 24530 components: - pos: -14.5,-96.5 parent: 2 type: Transform - - uid: 24499 + - uid: 24531 components: - pos: -15.5,-96.5 parent: 2 type: Transform - - uid: 24500 + - uid: 24532 components: - pos: -30.5,-98.5 parent: 2 type: Transform - - uid: 24501 + - uid: 24533 components: - pos: -29.5,-98.5 parent: 2 type: Transform - - uid: 24502 + - uid: 24534 components: - pos: -21.5,-100.5 parent: 2 type: Transform - - uid: 24503 + - uid: 24535 components: - pos: -23.5,-100.5 parent: 2 type: Transform - - uid: 24504 + - uid: 24536 components: - pos: -10.5,-83.5 parent: 2 type: Transform - - uid: 24505 + - uid: 24537 components: - pos: -4.5,-85.5 parent: 2 type: Transform - - uid: 24506 + - uid: 24538 components: - pos: -12.5,-84.5 parent: 2 type: Transform - - uid: 24507 + - uid: 24539 components: - pos: -13.5,-88.5 parent: 2 type: Transform - - uid: 24508 + - uid: 24540 components: - pos: -38.5,-97.5 parent: 2 type: Transform - - uid: 24509 + - uid: 24541 components: - pos: -38.5,-98.5 parent: 2 type: Transform - - uid: 24510 + - uid: 24542 components: - rot: 3.141592653589793 rad pos: -70.5,-28.5 parent: 2 type: Transform - - uid: 24511 + - uid: 24543 components: - rot: 3.141592653589793 rad pos: -71.5,-28.5 parent: 2 type: Transform - - uid: 24512 + - uid: 24544 components: - rot: -1.5707963267948966 rad pos: -69.5,-43.5 parent: 2 type: Transform - - uid: 24513 + - uid: 24545 components: - rot: -1.5707963267948966 rad pos: -69.5,-44.5 parent: 2 type: Transform - - uid: 24514 + - uid: 24546 components: - rot: -1.5707963267948966 rad pos: -68.5,-43.5 parent: 2 type: Transform - - uid: 24515 + - uid: 24547 components: - rot: -1.5707963267948966 rad pos: -68.5,-44.5 parent: 2 type: Transform - - uid: 24516 + - uid: 24548 components: - pos: 69.5,-48.5 parent: 2 type: Transform - - uid: 24517 + - uid: 24549 components: - pos: 77.5,-44.5 parent: 2 type: Transform - - uid: 24518 + - uid: 24550 components: - pos: 77.5,-43.5 parent: 2 type: Transform - - uid: 24519 + - uid: 24551 components: - pos: 76.5,-43.5 parent: 2 type: Transform - - uid: 24520 + - uid: 24552 components: - pos: 73.5,-49.5 parent: 2 type: Transform - - uid: 24521 + - uid: 24553 components: - pos: 73.5,-48.5 parent: 2 type: Transform - - uid: 24522 + - uid: 24554 components: - rot: -1.5707963267948966 rad pos: 22.5,-47.5 parent: 2 type: Transform - - uid: 24523 + - uid: 24555 components: - rot: 3.141592653589793 rad pos: 6.5,-57.5 parent: 2 type: Transform - - uid: 24524 + - uid: 24556 components: - rot: 1.5707963267948966 rad pos: -16.5,-21.5 parent: 2 type: Transform - - uid: 24525 + - uid: 24557 components: - rot: -1.5707963267948966 rad pos: -15.5,-23.5 parent: 2 type: Transform - - uid: 24526 + - uid: 24558 components: - pos: 53.5,-67.5 parent: 2 type: Transform - - uid: 24527 + - uid: 24559 components: - rot: 3.141592653589793 rad pos: 63.5,-36.5 parent: 2 type: Transform - - uid: 24528 + - uid: 24560 components: - pos: 59.5,-29.5 parent: 2 type: Transform - - uid: 24529 + - uid: 24561 components: - pos: 53.5,-65.5 parent: 2 type: Transform - - uid: 24530 + - uid: 24562 components: - rot: 3.141592653589793 rad pos: 58.5,-37.5 parent: 2 type: Transform - - uid: 24531 + - uid: 24563 components: - rot: 3.141592653589793 rad pos: 57.5,-37.5 parent: 2 type: Transform - - uid: 24532 + - uid: 24564 components: - rot: 3.141592653589793 rad pos: 53.5,-28.5 parent: 2 type: Transform - - uid: 24533 + - uid: 24565 components: - rot: 3.141592653589793 rad pos: 54.5,-28.5 parent: 2 type: Transform - - uid: 24534 + - uid: 24566 components: - rot: 3.141592653589793 rad pos: 70.5,-65.5 parent: 2 type: Transform - - uid: 24535 + - uid: 24567 components: - rot: 3.141592653589793 rad pos: 70.5,-66.5 parent: 2 type: Transform - - uid: 24536 + - uid: 24568 components: - rot: 3.141592653589793 rad pos: 69.5,-66.5 parent: 2 type: Transform - - uid: 24537 + - uid: 24569 components: - rot: 3.141592653589793 rad pos: 43.5,-62.5 parent: 2 type: Transform - - uid: 24538 + - uid: 24570 components: - pos: 67.5,-64.5 parent: 2 type: Transform - - uid: 24539 + - uid: 24571 components: - pos: 67.5,-65.5 parent: 2 type: Transform - - uid: 24540 + - uid: 24572 components: - pos: 45.5,-63.5 parent: 2 type: Transform - - uid: 24541 + - uid: 24573 components: - pos: 46.5,-63.5 parent: 2 type: Transform - - uid: 24542 + - uid: 24574 components: - pos: 39.5,-35.5 parent: 2 type: Transform - - uid: 24543 + - uid: 24575 components: - pos: 38.5,-35.5 parent: 2 type: Transform - - uid: 24544 + - uid: 24576 components: - pos: -37.5,-8.5 parent: 2 type: Transform - - uid: 24545 + - uid: 24577 components: - rot: 3.141592653589793 rad pos: -25.5,-6.5 parent: 2 type: Transform - - uid: 24546 + - uid: 24578 components: - rot: -1.5707963267948966 rad pos: -36.5,18.5 parent: 2 type: Transform - - uid: 24547 + - uid: 24579 components: - pos: -12.5,-18.5 parent: 2 type: Transform - - uid: 24548 + - uid: 24580 components: - rot: -1.5707963267948966 rad pos: -26.5,-6.5 parent: 2 type: Transform - - uid: 24549 + - uid: 24581 components: - pos: -26.5,-61.5 parent: 2 type: Transform - - uid: 24550 + - uid: 24582 components: - pos: -22.5,-57.5 parent: 2 type: Transform - - uid: 24551 + - uid: 24583 components: - pos: -22.5,-58.5 parent: 2 type: Transform - - uid: 24552 + - uid: 24584 components: - pos: -26.5,-59.5 parent: 2 type: Transform - - uid: 24553 + - uid: 24585 components: - rot: -1.5707963267948966 rad pos: 7.5,-47.5 parent: 2 type: Transform - - uid: 24554 + - uid: 24586 components: - rot: 3.141592653589793 rad pos: 25.5,-68.5 parent: 2 type: Transform - - uid: 24555 + - uid: 24587 components: - rot: 3.141592653589793 rad pos: 50.5,-72.5 parent: 2 type: Transform - - uid: 24556 + - uid: 24588 components: - rot: -1.5707963267948966 rad pos: 4.5,-75.5 parent: 2 type: Transform - - uid: 24557 + - uid: 24589 components: - rot: -1.5707963267948966 rad pos: 3.5,-75.5 parent: 2 type: Transform - - uid: 24558 + - uid: 24590 components: - rot: -1.5707963267948966 rad pos: 2.5,-75.5 parent: 2 type: Transform - - uid: 24559 + - uid: 24591 components: - rot: 1.5707963267948966 rad pos: -47.5,38.5 parent: 2 type: Transform - - uid: 24560 + - uid: 24592 components: - rot: 1.5707963267948966 rad pos: -47.5,39.5 parent: 2 type: Transform - - uid: 24561 + - uid: 24593 components: - rot: 1.5707963267948966 rad pos: -47.5,40.5 @@ -186109,115 +186142,115 @@ entities: type: Transform - proto: TableCarpet entities: - - uid: 24562 + - uid: 24594 components: - rot: -1.5707963267948966 rad pos: 10.5,-7.5 parent: 2 type: Transform - - uid: 24563 + - uid: 24595 components: - rot: -1.5707963267948966 rad pos: 10.5,-6.5 parent: 2 type: Transform - - uid: 24564 + - uid: 24596 components: - rot: -1.5707963267948966 rad pos: 9.5,-7.5 parent: 2 type: Transform - - uid: 24565 + - uid: 24597 components: - rot: -1.5707963267948966 rad pos: 9.5,-6.5 parent: 2 type: Transform - - uid: 24566 + - uid: 24598 components: - pos: -24.5,34.5 parent: 2 type: Transform - - uid: 24567 + - uid: 24599 components: - rot: 3.141592653589793 rad pos: -1.5,31.5 parent: 2 type: Transform - - uid: 24568 + - uid: 24600 components: - rot: 3.141592653589793 rad pos: -0.5,31.5 parent: 2 type: Transform - - uid: 24569 + - uid: 24601 components: - rot: 3.141592653589793 rad pos: -0.5,30.5 parent: 2 type: Transform - - uid: 24570 + - uid: 24602 components: - rot: 3.141592653589793 rad pos: -1.5,30.5 parent: 2 type: Transform - - uid: 24571 + - uid: 24603 components: - pos: 53.5,29.5 parent: 2 type: Transform - - uid: 24572 + - uid: 24604 components: - pos: 53.5,28.5 parent: 2 type: Transform - - uid: 24573 + - uid: 24605 components: - pos: 54.5,29.5 parent: 2 type: Transform - - uid: 24574 + - uid: 24606 components: - pos: 54.5,28.5 parent: 2 type: Transform - - uid: 24575 + - uid: 24607 components: - pos: 8.5,32.5 parent: 2 type: Transform - - uid: 24576 + - uid: 24608 components: - rot: 3.141592653589793 rad pos: -18.5,62.5 parent: 2 type: Transform - - uid: 24577 + - uid: 24609 components: - rot: 3.141592653589793 rad pos: -18.5,61.5 parent: 2 type: Transform - - uid: 24578 + - uid: 24610 components: - rot: 3.141592653589793 rad pos: -17.5,62.5 parent: 2 type: Transform - - uid: 24579 + - uid: 24611 components: - rot: 3.141592653589793 rad pos: -17.5,61.5 parent: 2 type: Transform - - uid: 24580 + - uid: 24612 components: - rot: 3.141592653589793 rad pos: -16.5,62.5 parent: 2 type: Transform - - uid: 24581 + - uid: 24613 components: - rot: 3.141592653589793 rad pos: -16.5,61.5 @@ -186225,72 +186258,72 @@ entities: type: Transform - proto: TableCounterMetal entities: - - uid: 24582 + - uid: 24614 components: - pos: 0.5,-67.5 parent: 2 type: Transform - - uid: 24583 + - uid: 24615 components: - pos: -3.5,5.5 parent: 2 type: Transform - - uid: 24584 + - uid: 24616 components: - pos: 0.5,-64.5 parent: 2 type: Transform - - uid: 24585 + - uid: 24617 components: - pos: 0.5,-65.5 parent: 2 type: Transform - - uid: 24586 + - uid: 24618 components: - pos: 0.5,-66.5 parent: 2 type: Transform - - uid: 24587 + - uid: 24619 components: - pos: -3.5,-64.5 parent: 2 type: Transform - - uid: 24588 + - uid: 24620 components: - pos: -3.5,-65.5 parent: 2 type: Transform - - uid: 24589 + - uid: 24621 components: - pos: -3.5,-66.5 parent: 2 type: Transform - - uid: 24590 + - uid: 24622 components: - pos: -16.5,-77.5 parent: 2 type: Transform - - uid: 24591 + - uid: 24623 components: - pos: -4.5,5.5 parent: 2 type: Transform - - uid: 24592 + - uid: 24624 components: - pos: 4.5,11.5 parent: 2 type: Transform - - uid: 24593 + - uid: 24625 components: - pos: 5.5,11.5 parent: 2 type: Transform - - uid: 24594 + - uid: 24626 components: - pos: 0.5,-63.5 parent: 2 type: Transform - - uid: 24595 + - uid: 24627 components: - rot: 1.5707963267948966 rad pos: -21.5,-34.5 @@ -186298,64 +186331,64 @@ entities: type: Transform - proto: TableCounterWood entities: - - uid: 24596 + - uid: 24628 components: - rot: -1.5707963267948966 rad pos: 37.5,-5.5 parent: 2 type: Transform - - uid: 24597 + - uid: 24629 components: - pos: 18.5,15.5 parent: 2 type: Transform - - uid: 24598 + - uid: 24630 components: - pos: 17.5,15.5 parent: 2 type: Transform - - uid: 24599 + - uid: 24631 components: - rot: -1.5707963267948966 rad pos: 37.5,-4.5 parent: 2 type: Transform - - uid: 24600 + - uid: 24632 components: - rot: -1.5707963267948966 rad pos: 37.5,-3.5 parent: 2 type: Transform - - uid: 24601 + - uid: 24633 components: - rot: -1.5707963267948966 rad pos: 37.5,-2.5 parent: 2 type: Transform - - uid: 24602 + - uid: 24634 components: - rot: -1.5707963267948966 rad pos: 38.5,-2.5 parent: 2 type: Transform - - uid: 24603 + - uid: 24635 components: - rot: -1.5707963267948966 rad pos: 39.5,-2.5 parent: 2 type: Transform - - uid: 24604 + - uid: 24636 components: - pos: 57.5,32.5 parent: 2 type: Transform - - uid: 24605 + - uid: 24637 components: - rot: 3.141592653589793 rad pos: -10.5,-95.5 parent: 2 type: Transform - - uid: 24606 + - uid: 24638 components: - rot: 3.141592653589793 rad pos: -9.5,-95.5 @@ -186363,64 +186396,64 @@ entities: type: Transform - proto: TableFrame entities: - - uid: 24607 + - uid: 24639 components: - pos: -25.5,-99.5 parent: 2 type: Transform - - uid: 24608 + - uid: 24640 components: - pos: -33.5,-98.5 parent: 2 type: Transform - - uid: 24609 + - uid: 24641 components: - pos: -34.5,-98.5 parent: 2 type: Transform - proto: TableGlass entities: - - uid: 24610 + - uid: 24642 components: - rot: -1.5707963267948966 rad pos: 30.5,4.5 parent: 2 type: Transform - - uid: 24611 + - uid: 24643 components: - rot: -1.5707963267948966 rad pos: 29.5,4.5 parent: 2 type: Transform - - uid: 24612 + - uid: 24644 components: - pos: -25.5,55.5 parent: 2 type: Transform - - uid: 24613 + - uid: 24645 components: - rot: 1.5707963267948966 rad pos: 63.5,-33.5 parent: 2 type: Transform - - uid: 24614 + - uid: 24646 components: - rot: 1.5707963267948966 rad pos: 62.5,-33.5 parent: 2 type: Transform - - uid: 24615 + - uid: 24647 components: - pos: 15.5,-79.5 parent: 2 type: Transform - - uid: 24616 + - uid: 24648 components: - rot: -1.5707963267948966 rad pos: 15.5,-87.5 parent: 2 type: Transform - - uid: 24617 + - uid: 24649 components: - rot: 3.141592653589793 rad pos: 26.5,-81.5 @@ -186428,1789 +186461,1784 @@ entities: type: Transform - proto: TableReinforced entities: - - uid: 24618 + - uid: 24650 components: - rot: 3.141592653589793 rad pos: 48.5,-30.5 parent: 2 type: Transform - - uid: 24619 + - uid: 24651 components: - pos: 2.5,4.5 parent: 2 type: Transform - - uid: 24620 + - uid: 24652 components: - pos: -8.5,4.5 parent: 2 type: Transform - - uid: 24621 + - uid: 24653 components: - rot: -1.5707963267948966 rad pos: 25.5,-37.5 parent: 2 type: Transform - - uid: 24622 + - uid: 24654 components: - rot: -1.5707963267948966 rad pos: 45.5,-26.5 parent: 2 type: Transform - - uid: 24623 + - uid: 24655 components: - pos: 26.5,32.5 parent: 2 type: Transform - - uid: 24624 + - uid: 24656 components: - pos: -6.5,4.5 parent: 2 type: Transform - - uid: 24625 + - uid: 24657 components: - pos: -28.5,-9.5 parent: 2 type: Transform - - uid: 24626 + - uid: 24658 components: - pos: 1.5,-48.5 parent: 2 type: Transform - - uid: 24627 + - uid: 24659 components: - rot: 1.5707963267948966 rad pos: 25.5,19.5 parent: 2 type: Transform - - uid: 24628 + - uid: 24660 components: - rot: 3.141592653589793 rad pos: 26.5,-21.5 parent: 2 type: Transform - - uid: 24629 + - uid: 24661 components: - pos: 37.5,49.5 parent: 2 type: Transform - - uid: 24630 + - uid: 24662 components: - rot: 3.141592653589793 rad pos: 48.5,-21.5 parent: 2 type: Transform - - uid: 24631 + - uid: 24663 components: - pos: 27.5,32.5 parent: 2 type: Transform - - uid: 24632 + - uid: 24664 components: - rot: -1.5707963267948966 rad pos: 32.5,-22.5 parent: 2 type: Transform - - uid: 24633 + - uid: 24665 components: - rot: 3.141592653589793 rad pos: 47.5,-30.5 parent: 2 type: Transform - - uid: 24634 + - uid: 24666 components: - rot: -1.5707963267948966 rad pos: 36.5,19.5 parent: 2 type: Transform - - uid: 24635 + - uid: 24667 components: - pos: -23.5,-87.5 parent: 2 type: Transform - - uid: 24636 + - uid: 24668 components: - pos: -7.5,4.5 parent: 2 type: Transform - - uid: 24637 + - uid: 24669 components: - rot: 1.5707963267948966 rad pos: 21.5,-44.5 parent: 2 type: Transform - - uid: 24638 + - uid: 24670 components: - rot: 1.5707963267948966 rad pos: 1.5,-2.5 parent: 2 type: Transform - - uid: 24639 + - uid: 24671 components: - pos: 0.5,4.5 parent: 2 type: Transform - - uid: 24640 + - uid: 24672 components: - rot: 1.5707963267948966 rad pos: 0.5,-2.5 parent: 2 type: Transform - - uid: 24641 + - uid: 24673 components: - rot: 1.5707963267948966 rad pos: 24.5,19.5 parent: 2 type: Transform - - uid: 24642 + - uid: 24674 components: - rot: -1.5707963267948966 rad pos: 32.5,-20.5 parent: 2 type: Transform - - uid: 24643 + - uid: 24675 components: - rot: -1.5707963267948966 rad pos: 31.5,-20.5 parent: 2 type: Transform - - uid: 24644 + - uid: 24676 components: - rot: -1.5707963267948966 rad pos: 32.5,-21.5 parent: 2 type: Transform - - uid: 24645 + - uid: 24677 components: - rot: -1.5707963267948966 rad pos: 32.5,-22.5 parent: 2 type: Transform - - uid: 24646 + - uid: 24678 components: - rot: -1.5707963267948966 rad pos: 19.5,-20.5 parent: 2 type: Transform - - uid: 24647 + - uid: 24679 components: - rot: -1.5707963267948966 rad pos: 18.5,-20.5 parent: 2 type: Transform - - uid: 24648 + - uid: 24680 components: - rot: -1.5707963267948966 rad pos: 18.5,-21.5 parent: 2 type: Transform - - uid: 24649 + - uid: 24681 components: - pos: 27.5,-37.5 parent: 2 type: Transform - - uid: 24650 + - uid: 24682 components: - pos: 7.5,7.5 parent: 2 type: Transform - - uid: 24651 + - uid: 24683 components: - rot: 1.5707963267948966 rad pos: 22.5,-21.5 parent: 2 type: Transform - - uid: 24652 + - uid: 24684 components: - pos: 1.5,-46.5 parent: 2 type: Transform - - uid: 24653 + - uid: 24685 components: - pos: 28.5,32.5 parent: 2 type: Transform - - uid: 24654 + - uid: 24686 components: - pos: 30.5,32.5 parent: 2 type: Transform - - uid: 24655 + - uid: 24687 components: - pos: 31.5,32.5 parent: 2 type: Transform - - uid: 24656 + - uid: 24688 components: - pos: 18.5,-22.5 parent: 2 type: Transform - - uid: 24657 + - uid: 24689 components: - pos: 1.5,4.5 parent: 2 type: Transform - - uid: 24658 + - uid: 24690 components: - rot: 3.141592653589793 rad pos: 48.5,-28.5 parent: 2 type: Transform - - uid: 24659 + - uid: 24691 components: - rot: 1.5707963267948966 rad pos: 26.5,19.5 parent: 2 type: Transform - - uid: 24660 + - uid: 24692 components: - rot: -1.5707963267948966 rad pos: -26.5,-12.5 parent: 2 type: Transform - - uid: 24661 + - uid: 24693 components: - pos: 47.5,49.5 parent: 2 type: Transform - - uid: 24662 + - uid: 24694 components: - rot: 3.141592653589793 rad pos: -0.5,-2.5 parent: 2 type: Transform - - uid: 24663 + - uid: 24695 components: - pos: 7.5,8.5 parent: 2 type: Transform - - uid: 24664 + - uid: 24696 components: - pos: 39.5,49.5 parent: 2 type: Transform - - uid: 24665 + - uid: 24697 components: - pos: 38.5,49.5 parent: 2 type: Transform - - uid: 24666 + - uid: 24698 components: - rot: 3.141592653589793 rad pos: 48.5,-22.5 parent: 2 type: Transform - - uid: 24667 + - uid: 24699 components: - rot: 3.141592653589793 rad pos: 48.5,-24.5 parent: 2 type: Transform - - uid: 24668 + - uid: 24700 components: - pos: 36.5,49.5 parent: 2 type: Transform - - uid: 24669 + - uid: 24701 components: - rot: 3.141592653589793 rad pos: 48.5,-29.5 parent: 2 type: Transform - - uid: 24670 + - uid: 24702 components: - rot: 3.141592653589793 rad pos: 47.5,-27.5 parent: 2 type: Transform - - uid: 24671 + - uid: 24703 components: - rot: 3.141592653589793 rad pos: 47.5,-21.5 parent: 2 type: Transform - - uid: 24672 + - uid: 24704 components: - pos: 32.5,32.5 parent: 2 type: Transform - - uid: 24673 + - uid: 24705 components: - pos: 26.5,-37.5 parent: 2 type: Transform - - uid: 24674 + - uid: 24706 components: - rot: 3.141592653589793 rad pos: 3.5,-51.5 parent: 2 type: Transform - - uid: 24675 + - uid: 24707 components: - rot: 3.141592653589793 rad pos: 28.5,-21.5 parent: 2 type: Transform - - uid: 24676 + - uid: 24708 components: - pos: 7.5,9.5 parent: 2 type: Transform - - uid: 24677 + - uid: 24709 components: - rot: 3.141592653589793 rad pos: 48.5,-23.5 parent: 2 type: Transform - - uid: 24678 + - uid: 24710 components: - rot: 3.141592653589793 rad pos: 48.5,-27.5 parent: 2 type: Transform - - uid: 24679 + - uid: 24711 components: - pos: -34.5,23.5 parent: 2 type: Transform - - uid: 24680 + - uid: 24712 components: - rot: 3.141592653589793 rad pos: 24.5,-21.5 parent: 2 type: Transform - - uid: 24681 + - uid: 24713 components: - rot: -1.5707963267948966 rad pos: 44.5,-26.5 parent: 2 type: Transform - - uid: 24682 + - uid: 24714 components: - rot: -1.5707963267948966 rad pos: 47.5,-25.5 parent: 2 type: Transform - - uid: 24683 + - uid: 24715 components: - rot: -1.5707963267948966 rad pos: 48.5,-25.5 parent: 2 type: Transform - - uid: 24684 + - uid: 24716 components: - pos: -22.5,-87.5 parent: 2 type: Transform - - uid: 24685 + - uid: 24717 components: - pos: 24.5,23.5 parent: 2 type: Transform - - uid: 24686 + - uid: 24718 components: - pos: 22.5,23.5 parent: 2 type: Transform - - uid: 24687 + - uid: 24719 components: - pos: 25.5,23.5 parent: 2 type: Transform - - uid: 24688 + - uid: 24720 components: - pos: 23.5,23.5 parent: 2 type: Transform - - uid: 24689 + - uid: 24721 components: - pos: -11.5,43.5 parent: 2 type: Transform - - uid: 24690 + - uid: 24722 components: - rot: 1.5707963267948966 rad pos: -9.5,43.5 parent: 2 type: Transform - - uid: 24691 + - uid: 24723 components: - rot: 1.5707963267948966 rad pos: 48.5,6.5 parent: 2 type: Transform - - uid: 24692 + - uid: 24724 components: - rot: -1.5707963267948966 rad pos: 36.5,17.5 parent: 2 type: Transform - - uid: 24693 + - uid: 24725 components: - pos: -17.5,-22.5 parent: 2 type: Transform - - uid: 24694 + - uid: 24726 components: - pos: -17.5,-23.5 parent: 2 type: Transform - - uid: 24695 + - uid: 24727 components: - pos: 42.5,-40.5 parent: 2 type: Transform - - uid: 24696 + - uid: 24728 components: - pos: 43.5,-40.5 parent: 2 type: Transform - - uid: 24697 + - uid: 24729 components: - pos: -27.5,-9.5 parent: 2 type: Transform - - uid: 24698 + - uid: 24730 components: - pos: -22.5,-8.5 parent: 2 type: Transform - - uid: 24699 + - uid: 24731 components: - pos: -23.5,-8.5 parent: 2 type: Transform - - uid: 24700 + - uid: 24732 components: - pos: -27.5,-10.5 parent: 2 type: Transform - - uid: 24701 + - uid: 24733 components: - pos: -27.5,-11.5 parent: 2 type: Transform - - uid: 24702 + - uid: 24734 components: - pos: 57.5,-47.5 parent: 2 type: Transform - - uid: 24703 + - uid: 24735 components: - rot: 1.5707963267948966 rad pos: 22.5,-44.5 parent: 2 type: Transform - - uid: 24704 + - uid: 24736 components: - pos: -25.5,-35.5 parent: 2 type: Transform - - uid: 24705 + - uid: 24737 components: - pos: -25.5,-36.5 parent: 2 type: Transform - - uid: 24706 + - uid: 24738 components: - pos: -24.5,-36.5 parent: 2 type: Transform - - uid: 24707 + - uid: 24739 components: - pos: -23.5,-36.5 parent: 2 type: Transform - - uid: 24708 + - uid: 24740 components: - pos: -36.5,-33.5 parent: 2 type: Transform - - uid: 24709 + - uid: 24741 components: - pos: -36.5,-32.5 parent: 2 type: Transform - - uid: 24710 + - uid: 24742 components: - pos: -37.5,-32.5 parent: 2 type: Transform - - uid: 24711 + - uid: 24743 components: - pos: -38.5,-32.5 parent: 2 type: Transform - - uid: 24712 + - uid: 24744 components: - pos: -39.5,-32.5 parent: 2 type: Transform - - uid: 24713 + - uid: 24745 components: - pos: -58.5,-25.5 parent: 2 type: Transform - - uid: 24714 + - uid: 24746 components: - pos: -57.5,-25.5 parent: 2 type: Transform - - uid: 24715 + - uid: 24747 components: - pos: -56.5,-25.5 parent: 2 type: Transform - - uid: 24716 + - uid: 24748 components: - pos: -55.5,-25.5 parent: 2 type: Transform - - uid: 24717 + - uid: 24749 components: - pos: -54.5,-25.5 parent: 2 type: Transform - - uid: 24718 + - uid: 24750 components: - pos: -15.5,12.5 parent: 2 type: Transform - - uid: 24719 + - uid: 24751 components: - rot: -1.5707963267948966 rad pos: -52.5,-88.5 parent: 2 type: Transform - - uid: 24720 + - uid: 24752 components: - rot: -1.5707963267948966 rad pos: -52.5,-86.5 parent: 2 type: Transform - - uid: 24721 + - uid: 24753 components: - rot: -1.5707963267948966 rad pos: -17.5,25.5 parent: 2 type: Transform - - uid: 24722 + - uid: 24754 components: - rot: 3.141592653589793 rad pos: -26.5,22.5 parent: 2 type: Transform - - uid: 24723 + - uid: 24755 components: - pos: 17.5,32.5 parent: 2 type: Transform - - uid: 24724 + - uid: 24756 components: - pos: 17.5,31.5 parent: 2 type: Transform - - uid: 24725 + - uid: 24757 components: - pos: -34.5,24.5 parent: 2 type: Transform - - uid: 24726 + - uid: 24758 components: - pos: -14.5,12.5 parent: 2 type: Transform - - uid: 24727 + - uid: 24759 components: - pos: -13.5,12.5 parent: 2 type: Transform - - uid: 24728 + - uid: 24760 components: - pos: -16.5,12.5 parent: 2 type: Transform - - uid: 24729 + - uid: 24761 components: - pos: -10.5,-61.5 parent: 2 type: Transform - - uid: 24730 + - uid: 24762 components: - pos: 0.5,-61.5 parent: 2 type: Transform - - uid: 24731 + - uid: 24763 components: - pos: -0.5,-61.5 parent: 2 type: Transform - - uid: 24732 + - uid: 24764 components: - pos: -11.5,-61.5 parent: 2 type: Transform - - uid: 24733 + - uid: 24765 components: - pos: -16.5,-61.5 parent: 2 type: Transform - - uid: 24734 + - uid: 24766 components: - pos: -17.5,-61.5 parent: 2 type: Transform - - uid: 24735 + - uid: 24767 components: - pos: -9.5,16.5 parent: 2 type: Transform - - uid: 24736 + - uid: 24768 components: - pos: -16.5,-35.5 parent: 2 type: Transform - - uid: 24737 + - uid: 24769 components: - pos: -15.5,-35.5 parent: 2 type: Transform - - uid: 24738 + - uid: 24770 components: - pos: -14.5,-35.5 parent: 2 type: Transform - - uid: 24739 + - uid: 24771 components: - rot: 3.141592653589793 rad pos: 28.5,-38.5 parent: 2 type: Transform - - uid: 24740 + - uid: 24772 components: - rot: 1.5707963267948966 rad pos: -10.5,43.5 parent: 2 type: Transform - - uid: 24741 + - uid: 24773 components: - pos: -20.5,49.5 parent: 2 type: Transform - - uid: 24742 + - uid: 24774 components: - rot: 3.141592653589793 rad pos: -15.5,65.5 parent: 2 type: Transform - - uid: 24743 + - uid: 24775 components: - rot: 3.141592653589793 rad pos: -16.5,65.5 parent: 2 type: Transform - - uid: 24744 + - uid: 24776 components: - pos: -21.5,49.5 parent: 2 type: Transform - - uid: 24745 + - uid: 24777 components: - rot: 3.141592653589793 rad pos: -19.5,43.5 parent: 2 type: Transform - - uid: 24746 + - uid: 24778 components: - rot: 3.141592653589793 rad pos: -19.5,41.5 parent: 2 type: Transform - - uid: 24747 + - uid: 24779 components: - rot: 3.141592653589793 rad pos: -19.5,42.5 parent: 2 type: Transform - - uid: 24748 + - uid: 24780 components: - pos: 48.5,50.5 parent: 2 type: Transform - - uid: 24749 + - uid: 24781 components: - pos: 47.5,50.5 parent: 2 type: Transform - - uid: 24750 + - uid: 24782 components: - pos: 46.5,49.5 parent: 2 type: Transform - - uid: 24751 + - uid: 24783 components: - pos: 45.5,49.5 parent: 2 type: Transform - - uid: 24752 + - uid: 24784 components: - rot: 3.141592653589793 rad pos: -9.5,-100.5 parent: 2 type: Transform - - uid: 24753 + - uid: 24785 components: - rot: 1.5707963267948966 rad pos: 55.5,-67.5 parent: 2 type: Transform - - uid: 24754 + - uid: 24786 components: - pos: 29.5,32.5 parent: 2 type: Transform - - uid: 30669 + - uid: 24787 components: - pos: 65.5,-28.5 parent: 2 type: Transform - - uid: 30672 + - uid: 24788 components: - pos: 65.5,-29.5 parent: 2 type: Transform - proto: TableReinforcedGlass entities: - - uid: 24755 + - uid: 24789 components: - pos: -30.5,-77.5 parent: 2 type: Transform - - uid: 24756 + - uid: 24790 components: - pos: -30.5,-79.5 parent: 2 type: Transform - proto: TableWood entities: - - uid: 24757 + - uid: 24791 components: - rot: 3.141592653589793 rad pos: 5.5,20.5 parent: 2 type: Transform - - uid: 24758 + - uid: 24792 components: - pos: 22.5,10.5 parent: 2 type: Transform - - uid: 24759 + - uid: 24793 components: - pos: -19.5,-56.5 parent: 2 type: Transform - - uid: 24760 + - uid: 24794 components: - rot: -1.5707963267948966 rad pos: 9.5,-12.5 parent: 2 type: Transform - - uid: 24761 + - uid: 24795 components: - pos: 59.5,-1.5 parent: 2 type: Transform - - uid: 24762 + - uid: 24796 components: - rot: 1.5707963267948966 rad pos: 22.5,-29.5 parent: 2 type: Transform - - uid: 24763 + - uid: 24797 components: - rot: -1.5707963267948966 rad pos: 4.5,-11.5 parent: 2 type: Transform - - uid: 24764 + - uid: 24798 components: - pos: -4.5,-48.5 parent: 2 type: Transform - - uid: 24765 + - uid: 24799 components: - rot: -1.5707963267948966 rad pos: 2.5,21.5 parent: 2 type: Transform - - uid: 24766 + - uid: 24800 components: - rot: 1.5707963267948966 rad pos: 23.5,-29.5 parent: 2 type: Transform - - uid: 24767 + - uid: 24801 components: - pos: 15.5,13.5 parent: 2 type: Transform - - uid: 24768 + - uid: 24802 components: - pos: -20.5,-54.5 parent: 2 type: Transform - - uid: 24769 + - uid: 24803 components: - rot: 1.5707963267948966 rad pos: 13.5,-34.5 parent: 2 type: Transform - - uid: 24770 + - uid: 24804 components: - pos: -28.5,46.5 parent: 2 type: Transform - - uid: 24771 + - uid: 24805 components: - pos: -20.5,-56.5 parent: 2 type: Transform - - uid: 24772 + - uid: 24806 components: - pos: -18.5,-56.5 parent: 2 type: Transform - - uid: 24773 + - uid: 24807 components: - rot: -1.5707963267948966 rad pos: 4.5,-10.5 parent: 2 type: Transform - - uid: 24774 - components: - - pos: 2.5,-9.5 - parent: 2 - type: Transform - - uid: 24775 + - uid: 24808 components: - rot: -1.5707963267948966 rad pos: 22.5,-28.5 parent: 2 type: Transform - - uid: 24776 + - uid: 24809 components: - pos: 15.5,10.5 parent: 2 type: Transform - - uid: 24777 + - uid: 24810 components: - rot: -1.5707963267948966 rad pos: 4.5,-9.5 parent: 2 type: Transform - - uid: 24778 + - uid: 24811 components: - pos: 15.5,9.5 parent: 2 type: Transform - - uid: 24779 + - uid: 24812 components: - pos: 15.5,12.5 parent: 2 type: Transform - - uid: 24780 + - uid: 24813 components: - pos: 20.5,-12.5 parent: 2 type: Transform - - uid: 24781 + - uid: 24814 components: - pos: 19.5,-12.5 parent: 2 type: Transform - - uid: 24782 + - uid: 24815 components: - rot: 3.141592653589793 rad pos: -3.5,52.5 parent: 2 type: Transform - - uid: 24783 + - uid: 24816 components: - rot: -1.5707963267948966 rad pos: 2.5,20.5 parent: 2 type: Transform - - uid: 24784 + - uid: 24817 components: - rot: -1.5707963267948966 rad pos: 1.5,21.5 parent: 2 type: Transform - - uid: 24785 + - uid: 24818 components: - pos: 6.5,20.5 parent: 2 type: Transform - - uid: 24786 + - uid: 24819 components: - pos: -2.5,-48.5 parent: 2 type: Transform - - uid: 24787 + - uid: 24820 components: - pos: -2.5,-49.5 parent: 2 type: Transform - - uid: 24788 + - uid: 24821 components: - pos: -5.5,-48.5 parent: 2 type: Transform - - uid: 24789 + - uid: 24822 components: - pos: -6.5,-48.5 parent: 2 type: Transform - - uid: 24790 + - uid: 24823 components: - pos: 7.5,20.5 parent: 2 type: Transform - - uid: 24791 + - uid: 24824 components: - rot: 1.5707963267948966 rad pos: 13.5,-32.5 parent: 2 type: Transform - - uid: 24792 + - uid: 24825 components: - pos: -6.5,-49.5 parent: 2 type: Transform - - uid: 24793 + - uid: 24826 components: - pos: 21.5,-12.5 parent: 2 type: Transform - - uid: 24794 + - uid: 24827 components: - pos: 22.5,-14.5 parent: 2 type: Transform - - uid: 24795 + - uid: 24828 components: - rot: -1.5707963267948966 rad pos: 8.5,-12.5 parent: 2 type: Transform - - uid: 24796 + - uid: 24829 components: - rot: 1.5707963267948966 rad pos: 2.5,0.5 parent: 2 type: Transform - - uid: 24797 + - uid: 24830 components: - rot: 1.5707963267948966 rad pos: 2.5,1.5 parent: 2 type: Transform - - uid: 24798 + - uid: 24831 components: - rot: 1.5707963267948966 rad pos: 12.5,-4.5 parent: 2 type: Transform - - uid: 24799 + - uid: 24832 components: - pos: -3.5,-48.5 parent: 2 type: Transform - - uid: 24800 + - uid: 24833 components: - rot: -1.5707963267948966 rad pos: 4.5,-12.5 parent: 2 type: Transform - - uid: 24801 + - uid: 24834 components: - pos: 15.5,11.5 parent: 2 type: Transform - - uid: 24802 + - uid: 24835 components: - pos: -1.5,17.5 parent: 2 type: Transform - - uid: 24803 + - uid: 24836 components: - pos: -28.5,44.5 parent: 2 type: Transform - - uid: 24804 + - uid: 24837 components: - rot: -1.5707963267948966 rad pos: 11.5,8.5 parent: 2 type: Transform - - uid: 24805 + - uid: 24838 components: - pos: -10.5,-5.5 parent: 2 type: Transform - - uid: 24806 + - uid: 24839 components: - pos: -28.5,45.5 parent: 2 type: Transform - - uid: 24807 + - uid: 24840 components: - pos: -10.5,-3.5 parent: 2 type: Transform - - uid: 24808 + - uid: 24841 components: - pos: -10.5,-4.5 parent: 2 type: Transform - - uid: 24809 + - uid: 24842 components: - pos: -10.5,-6.5 parent: 2 type: Transform - - uid: 24810 + - uid: 24843 components: - pos: 22.5,11.5 parent: 2 type: Transform - - uid: 24811 + - uid: 24844 components: - rot: -1.5707963267948966 rad pos: 11.5,7.5 parent: 2 type: Transform - - uid: 24812 + - uid: 24845 components: - rot: 3.141592653589793 rad pos: 12.5,11.5 parent: 2 type: Transform - - uid: 24813 + - uid: 24846 components: - rot: 3.141592653589793 rad pos: 11.5,11.5 parent: 2 type: Transform - - uid: 24814 + - uid: 24847 components: - rot: -1.5707963267948966 rad pos: -14.5,-37.5 parent: 2 type: Transform - - uid: 24815 + - uid: 24848 components: - rot: 3.141592653589793 rad pos: -9.5,-35.5 parent: 2 type: Transform - - uid: 24816 + - uid: 24849 components: - rot: 3.141592653589793 rad pos: -9.5,-36.5 parent: 2 type: Transform - - uid: 24817 + - uid: 24850 components: - rot: 3.141592653589793 rad pos: -9.5,-37.5 parent: 2 type: Transform - - uid: 24818 + - uid: 24851 components: - rot: 3.141592653589793 rad pos: -10.5,-37.5 parent: 2 type: Transform - - uid: 24819 + - uid: 24852 components: - rot: 3.141592653589793 rad pos: -11.5,-37.5 parent: 2 type: Transform - - uid: 24820 + - uid: 24853 components: - pos: -14.5,-39.5 parent: 2 type: Transform - - uid: 24821 + - uid: 24854 components: - pos: -12.5,-35.5 parent: 2 type: Transform - - uid: 24822 + - uid: 24855 components: - rot: 3.141592653589793 rad pos: 20.5,12.5 parent: 2 type: Transform - - uid: 24823 + - uid: 24856 components: - pos: 22.5,13.5 parent: 2 type: Transform - - uid: 24824 + - uid: 24857 components: - rot: 3.141592653589793 rad pos: -4.5,1.5 parent: 2 type: Transform - - uid: 24825 + - uid: 24858 components: - rot: 3.141592653589793 rad pos: -8.5,0.5 parent: 2 type: Transform - - uid: 24826 + - uid: 24859 components: - rot: 3.141592653589793 rad pos: -8.5,1.5 parent: 2 type: Transform - - uid: 24827 + - uid: 24860 components: - pos: -1.5,19.5 parent: 2 type: Transform - - uid: 24828 + - uid: 24861 components: - rot: -1.5707963267948966 rad pos: 2.5,19.5 parent: 2 type: Transform - - uid: 24829 + - uid: 24862 components: - pos: -17.5,41.5 parent: 2 type: Transform - - uid: 24830 + - uid: 24863 components: - pos: 40.5,21.5 parent: 2 type: Transform - - uid: 24831 + - uid: 24864 components: - pos: 38.5,21.5 parent: 2 type: Transform - - uid: 24832 + - uid: 24865 components: - pos: 38.5,18.5 parent: 2 type: Transform - - uid: 24833 + - uid: 24866 components: - pos: 40.5,18.5 parent: 2 type: Transform - - uid: 24834 + - uid: 24867 components: - rot: -1.5707963267948966 rad pos: 43.5,-4.5 parent: 2 type: Transform - - uid: 24835 + - uid: 24868 components: - rot: -1.5707963267948966 rad pos: 43.5,-3.5 parent: 2 type: Transform - - uid: 24836 + - uid: 24869 components: - rot: -1.5707963267948966 rad pos: 43.5,-2.5 parent: 2 type: Transform - - uid: 24837 + - uid: 24870 components: - rot: -1.5707963267948966 rad pos: 6.5,22.5 parent: 2 type: Transform - - uid: 24838 + - uid: 24871 components: - pos: 61.5,-53.5 parent: 2 type: Transform - - uid: 24839 + - uid: 24872 components: - pos: 62.5,-53.5 parent: 2 type: Transform - - uid: 24840 + - uid: 24873 components: - pos: 63.5,-53.5 parent: 2 type: Transform - - uid: 24841 + - uid: 24874 components: - pos: -16.5,-45.5 parent: 2 type: Transform - - uid: 24842 + - uid: 24875 components: - pos: -16.5,-47.5 parent: 2 type: Transform - - uid: 24843 + - uid: 24876 components: - pos: -16.5,-49.5 parent: 2 type: Transform - - uid: 24844 + - uid: 24877 components: - rot: 3.141592653589793 rad pos: 34.5,-50.5 parent: 2 type: Transform - - uid: 24845 + - uid: 24878 components: - rot: 3.141592653589793 rad pos: 33.5,-50.5 parent: 2 type: Transform - - uid: 24846 + - uid: 24879 components: - rot: 3.141592653589793 rad pos: 32.5,-50.5 parent: 2 type: Transform - - uid: 24847 + - uid: 24880 components: - rot: 3.141592653589793 rad pos: 30.5,-50.5 parent: 2 type: Transform - - uid: 24848 + - uid: 24881 components: - rot: 3.141592653589793 rad pos: 29.5,-50.5 parent: 2 type: Transform - - uid: 24849 + - uid: 24882 components: - rot: 3.141592653589793 rad pos: 28.5,-50.5 parent: 2 type: Transform - - uid: 24850 + - uid: 24883 components: - rot: 3.141592653589793 rad pos: 30.5,-48.5 parent: 2 type: Transform - - uid: 24851 + - uid: 24884 components: - rot: 3.141592653589793 rad pos: 31.5,-48.5 parent: 2 type: Transform - - uid: 24852 + - uid: 24885 components: - rot: 3.141592653589793 rad pos: 32.5,-48.5 parent: 2 type: Transform - - uid: 24853 + - uid: 24886 components: - pos: 60.5,-1.5 parent: 2 type: Transform - - uid: 24854 + - uid: 24887 components: - pos: 62.5,-1.5 parent: 2 type: Transform - - uid: 24855 + - uid: 24888 components: - pos: 61.5,-1.5 parent: 2 type: Transform - - uid: 24856 + - uid: 24889 components: - rot: 1.5707963267948966 rad pos: -35.5,-17.5 parent: 2 type: Transform - - uid: 24857 + - uid: 24890 components: - rot: 1.5707963267948966 rad pos: -35.5,-16.5 parent: 2 type: Transform - - uid: 24858 + - uid: 24891 components: - rot: 1.5707963267948966 rad pos: -35.5,-15.5 parent: 2 type: Transform - - uid: 24859 + - uid: 24892 components: - pos: 65.5,-51.5 parent: 2 type: Transform - - uid: 24860 + - uid: 24893 components: - pos: 59.5,-51.5 parent: 2 type: Transform - - uid: 24861 + - uid: 24894 components: - pos: 59.5,-52.5 parent: 2 type: Transform - - uid: 24862 + - uid: 24895 components: - pos: -39.5,-76.5 parent: 2 type: Transform - - uid: 24863 + - uid: 24896 components: - pos: -39.5,-77.5 parent: 2 type: Transform - - uid: 24864 + - uid: 24897 components: - pos: -40.5,-77.5 parent: 2 type: Transform - - uid: 24865 + - uid: 24898 components: - pos: -40.5,-78.5 parent: 2 type: Transform - - uid: 24866 + - uid: 24899 components: - pos: -41.5,-78.5 parent: 2 type: Transform - - uid: 24867 + - uid: 24900 components: - pos: -42.5,-78.5 parent: 2 type: Transform - - uid: 24868 + - uid: 24901 components: - pos: -43.5,-78.5 parent: 2 type: Transform - - uid: 24869 + - uid: 24902 components: - pos: -43.5,-77.5 parent: 2 type: Transform - - uid: 24870 + - uid: 24903 components: - pos: -44.5,-77.5 parent: 2 type: Transform - - uid: 24871 + - uid: 24904 components: - pos: -44.5,-76.5 parent: 2 type: Transform - - uid: 24872 + - uid: 24905 components: - rot: -1.5707963267948966 rad pos: -40.5,-74.5 parent: 2 type: Transform - - uid: 24873 + - uid: 24906 components: - rot: -1.5707963267948966 rad pos: -43.5,-74.5 parent: 2 type: Transform - - uid: 24874 + - uid: 24907 components: - pos: 23.5,-28.5 parent: 2 type: Transform - - uid: 24875 + - uid: 24908 components: - pos: 30.5,-28.5 parent: 2 type: Transform - - uid: 24876 + - uid: 24909 components: - pos: 30.5,-29.5 parent: 2 type: Transform - - uid: 24877 + - uid: 24910 components: - pos: 59.5,-3.5 parent: 2 type: Transform - - uid: 24878 + - uid: 24911 components: - rot: 3.141592653589793 rad pos: -27.5,14.5 parent: 2 type: Transform - - uid: 24879 + - uid: 24912 components: - rot: 3.141592653589793 rad pos: -26.5,14.5 parent: 2 type: Transform - - uid: 24880 + - uid: 24913 components: - rot: 3.141592653589793 rad pos: -36.5,16.5 parent: 2 type: Transform - - uid: 24881 + - uid: 24914 components: - rot: 3.141592653589793 rad pos: -37.5,16.5 parent: 2 type: Transform - - uid: 24882 + - uid: 24915 components: - rot: 3.141592653589793 rad pos: -38.5,16.5 parent: 2 type: Transform - - uid: 24883 + - uid: 24916 components: - rot: 3.141592653589793 rad pos: -39.5,16.5 parent: 2 type: Transform - - uid: 24884 + - uid: 24917 components: - rot: 3.141592653589793 rad pos: -31.5,15.5 parent: 2 type: Transform - - uid: 24885 + - uid: 24918 components: - rot: 3.141592653589793 rad pos: -30.5,15.5 parent: 2 type: Transform - - uid: 24886 + - uid: 24919 components: - rot: 3.141592653589793 rad pos: -29.5,15.5 parent: 2 type: Transform - - uid: 24887 + - uid: 24920 components: - rot: 1.5707963267948966 rad pos: -48.5,6.5 parent: 2 type: Transform - - uid: 24888 + - uid: 24921 components: - rot: 1.5707963267948966 rad pos: -48.5,5.5 parent: 2 type: Transform - - uid: 24889 + - uid: 24922 components: - rot: 1.5707963267948966 rad pos: -47.5,5.5 parent: 2 type: Transform - - uid: 24890 + - uid: 24923 components: - rot: 1.5707963267948966 rad pos: -47.5,6.5 parent: 2 type: Transform - - uid: 24891 + - uid: 24924 components: - pos: -52.5,13.5 parent: 2 type: Transform - - uid: 24892 + - uid: 24925 components: - pos: -42.5,8.5 parent: 2 type: Transform - - uid: 24893 + - uid: 24926 components: - pos: -51.5,8.5 parent: 2 type: Transform - - uid: 24894 + - uid: 24927 components: - pos: -17.5,42.5 parent: 2 type: Transform - - uid: 24895 + - uid: 24928 components: - pos: -14.5,47.5 parent: 2 type: Transform - - uid: 24896 + - uid: 24929 components: - pos: -16.5,42.5 parent: 2 type: Transform - - uid: 24897 + - uid: 24930 components: - pos: -16.5,41.5 parent: 2 type: Transform - - uid: 24898 + - uid: 24931 components: - rot: 3.141592653589793 rad pos: -5.5,-15.5 parent: 2 type: Transform - - uid: 24899 + - uid: 24932 components: - pos: 27.5,-34.5 parent: 2 type: Transform - - uid: 24900 + - uid: 24933 components: - pos: -33.5,-67.5 parent: 2 type: Transform - - uid: 24901 + - uid: 24934 components: - rot: -1.5707963267948966 rad pos: 30.5,-27.5 parent: 2 type: Transform - - uid: 24902 + - uid: 24935 components: - pos: -31.5,-73.5 parent: 2 type: Transform - - uid: 24903 + - uid: 24936 components: - rot: 3.141592653589793 rad pos: 67.5,10.5 parent: 2 type: Transform - - uid: 24904 + - uid: 24937 components: - pos: -23.5,29.5 parent: 2 type: Transform - - uid: 24905 + - uid: 24938 components: - rot: 1.5707963267948966 rad pos: -24.5,29.5 parent: 2 type: Transform - - uid: 24906 + - uid: 24939 components: - pos: -18.5,33.5 parent: 2 type: Transform - - uid: 24907 + - uid: 24940 components: - pos: -21.5,35.5 parent: 2 type: Transform - - uid: 24908 + - uid: 24941 components: - pos: -12.5,35.5 parent: 2 type: Transform - - uid: 24909 + - uid: 24942 components: - pos: -12.5,32.5 parent: 2 type: Transform - - uid: 24910 + - uid: 24943 components: - pos: -12.5,31.5 parent: 2 type: Transform - - uid: 24911 + - uid: 24944 components: - pos: 65.5,-0.5 parent: 2 type: Transform - - uid: 24912 + - uid: 24945 components: - pos: 65.5,-1.5 parent: 2 type: Transform - - uid: 24913 + - uid: 24946 components: - rot: 1.5707963267948966 rad pos: 37.5,46.5 parent: 2 type: Transform - - uid: 24914 + - uid: 24947 components: - rot: 1.5707963267948966 rad pos: 37.5,45.5 parent: 2 type: Transform - - uid: 24915 + - uid: 24948 components: - rot: 1.5707963267948966 rad pos: 38.5,45.5 parent: 2 type: Transform - - uid: 24916 + - uid: 24949 components: - rot: 1.5707963267948966 rad pos: 42.5,48.5 parent: 2 type: Transform - - uid: 24917 + - uid: 24950 components: - rot: 1.5707963267948966 rad pos: 43.5,48.5 parent: 2 type: Transform - - uid: 24918 + - uid: 24951 components: - rot: 1.5707963267948966 rad pos: 33.5,44.5 parent: 2 type: Transform - - uid: 24919 + - uid: 24952 components: - rot: 1.5707963267948966 rad pos: 32.5,47.5 parent: 2 type: Transform - - uid: 24920 + - uid: 24953 components: - rot: 1.5707963267948966 rad pos: 32.5,46.5 parent: 2 type: Transform - - uid: 24921 + - uid: 24954 components: - rot: 1.5707963267948966 rad pos: 40.5,43.5 parent: 2 type: Transform - - uid: 24922 + - uid: 24955 components: - rot: 3.141592653589793 rad pos: 38.5,46.5 parent: 2 type: Transform - - uid: 24923 + - uid: 24956 components: - rot: 3.141592653589793 rad pos: -21.5,37.5 parent: 2 type: Transform - - uid: 24924 + - uid: 24957 components: - rot: 3.141592653589793 rad pos: -22.5,37.5 parent: 2 type: Transform - - uid: 24925 + - uid: 24958 components: - pos: -19.5,37.5 parent: 2 type: Transform - - uid: 24926 + - uid: 24959 components: - pos: -22.5,-97.5 parent: 2 type: Transform - - uid: 24927 + - uid: 24960 components: - pos: -22.5,-98.5 parent: 2 type: Transform - - uid: 24928 + - uid: 24961 components: - rot: 3.141592653589793 rad pos: -7.5,-100.5 parent: 2 type: Transform - - uid: 24929 + - uid: 24962 components: - rot: 3.141592653589793 rad pos: -6.5,-100.5 parent: 2 type: Transform - - uid: 24930 + - uid: 24963 components: - pos: -22.5,-96.5 parent: 2 type: Transform - - uid: 24931 + - uid: 24964 components: - pos: -33.5,8.5 parent: 2 type: Transform - - uid: 24932 + - uid: 24965 components: - pos: -32.5,8.5 parent: 2 type: Transform - - uid: 24933 + - uid: 24966 components: - pos: 54.5,-35.5 parent: 2 type: Transform - - uid: 24934 + - uid: 24967 components: - pos: 58.5,-30.5 parent: 2 type: Transform - - uid: 24935 + - uid: 24968 components: - rot: 3.141592653589793 rad pos: 49.5,-66.5 parent: 2 type: Transform - - uid: 24936 + - uid: 24969 components: - rot: -1.5707963267948966 rad pos: 57.5,-30.5 parent: 2 type: Transform - - uid: 24937 + - uid: 24970 components: - pos: 12.5,-5.5 parent: 2 type: Transform - - uid: 24938 + - uid: 24971 components: - pos: 23.5,-37.5 parent: 2 type: Transform - - uid: 24939 + - uid: 24972 components: - pos: 18.5,-14.5 parent: 2 type: Transform - - uid: 24940 + - uid: 24973 components: - rot: 1.5707963267948966 rad pos: -4.5,0.5 parent: 2 type: Transform - - uid: 24941 + - uid: 24974 components: - pos: -31.5,-74.5 parent: 2 type: Transform - - uid: 24942 + - uid: 24975 components: - pos: 12.5,-6.5 parent: 2 type: Transform - proto: TelecomServer entities: - - uid: 14207 + - uid: 14215 components: - pos: 8.5,-20.5 parent: 2 @@ -188220,7 +188248,7 @@ entities: showEnts: False occludes: True ents: - - 14208 + - 14216 machine_board: !type:Container showEnts: False occludes: True @@ -188230,7 +188258,7 @@ entities: occludes: True ents: [] type: ContainerContainer - - uid: 14209 + - uid: 14217 components: - pos: 9.5,-20.5 parent: 2 @@ -188240,7 +188268,7 @@ entities: showEnts: False occludes: True ents: - - 14210 + - 14218 machine_board: !type:Container showEnts: False occludes: True @@ -188250,7 +188278,7 @@ entities: occludes: True ents: [] type: ContainerContainer - - uid: 14211 + - uid: 14219 components: - pos: 10.5,-20.5 parent: 2 @@ -188260,7 +188288,7 @@ entities: showEnts: False occludes: True ents: - - 14212 + - 14220 machine_board: !type:Container showEnts: False occludes: True @@ -188270,7 +188298,7 @@ entities: occludes: True ents: [] type: ContainerContainer - - uid: 14213 + - uid: 14221 components: - pos: 11.5,-20.5 parent: 2 @@ -188280,7 +188308,7 @@ entities: showEnts: False occludes: True ents: - - 14214 + - 14222 machine_board: !type:Container showEnts: False occludes: True @@ -188290,7 +188318,7 @@ entities: occludes: True ents: [] type: ContainerContainer - - uid: 14215 + - uid: 14223 components: - pos: 9.5,-22.5 parent: 2 @@ -188300,7 +188328,7 @@ entities: showEnts: False occludes: True ents: - - 14216 + - 14224 machine_board: !type:Container showEnts: False occludes: True @@ -188310,7 +188338,7 @@ entities: occludes: True ents: [] type: ContainerContainer - - uid: 14217 + - uid: 14225 components: - pos: 8.5,-22.5 parent: 2 @@ -188320,8 +188348,8 @@ entities: showEnts: False occludes: True ents: - - 14219 - - 14218 + - 14227 + - 14226 machine_board: !type:Container showEnts: False occludes: True @@ -188331,7 +188359,7 @@ entities: occludes: True ents: [] type: ContainerContainer - - uid: 14220 + - uid: 14228 components: - pos: 10.5,-22.5 parent: 2 @@ -188341,7 +188369,7 @@ entities: showEnts: False occludes: True ents: - - 14221 + - 14229 machine_board: !type:Container showEnts: False occludes: True @@ -188351,7 +188379,7 @@ entities: occludes: True ents: [] type: ContainerContainer - - uid: 14222 + - uid: 14230 components: - pos: 11.5,-22.5 parent: 2 @@ -188361,7 +188389,7 @@ entities: showEnts: False occludes: True ents: - - 14223 + - 14231 machine_board: !type:Container showEnts: False occludes: True @@ -188373,26 +188401,26 @@ entities: type: ContainerContainer - proto: ThermomachineFreezerMachineCircuitBoard entities: - - uid: 24943 + - uid: 24976 components: - pos: -36.51641,35.415855 parent: 2 type: Transform - proto: Thruster entities: - - uid: 24944 + - uid: 24977 components: - rot: 1.5707963267948966 rad pos: -58.5,-87.5 parent: 2 type: Transform - - uid: 24945 + - uid: 24978 components: - rot: 1.5707963267948966 rad pos: -56.5,-84.5 parent: 2 type: Transform - - uid: 24946 + - uid: 24979 components: - rot: 1.5707963267948966 rad pos: -56.5,-90.5 @@ -188400,7 +188428,7 @@ entities: type: Transform - proto: TimerTrigger entities: - - uid: 30673 + - uid: 24980 components: - pos: 65.507225,-28.362265 parent: 2 @@ -188409,32 +188437,32 @@ entities: type: EmitSoundOnCollide - proto: TobaccoSeeds entities: - - uid: 24947 + - uid: 24981 components: - pos: -32.36416,6.3223424 parent: 2 type: Transform - proto: ToiletDirtyWater entities: - - uid: 24948 + - uid: 24982 components: - rot: 1.5707963267948966 rad pos: -32.5,-5.5 parent: 2 type: Transform - - uid: 24949 + - uid: 24983 components: - rot: 1.5707963267948966 rad pos: -32.5,-7.5 parent: 2 type: Transform - - uid: 24950 + - uid: 24984 components: - rot: -1.5707963267948966 rad pos: -28.5,-5.5 parent: 2 type: Transform - - uid: 24951 + - uid: 24985 components: - rot: -1.5707963267948966 rad pos: -28.5,-7.5 @@ -188442,12 +188470,12 @@ entities: type: Transform - proto: ToiletEmpty entities: - - uid: 24952 + - uid: 24986 components: - pos: 61.5,24.5 parent: 2 type: Transform - - uid: 24953 + - uid: 24987 components: - pos: 63.5,24.5 parent: 2 @@ -188456,21 +188484,21 @@ entities: type: Construction - proto: TomatoSeeds entities: - - uid: 24954 + - uid: 24988 components: - pos: -32.45791,6.4317174 parent: 2 type: Transform - proto: ToolboxElectrical entities: - - uid: 24955 + - uid: 24989 components: - pos: 46.470684,-5.411702 parent: 2 type: Transform - proto: ToolboxElectricalFilled entities: - - uid: 24956 + - uid: 24990 components: - pos: -36.493176,-7.9722276 parent: 2 @@ -188479,78 +188507,78 @@ entities: type: MeleeWeapon - nextSound: 517.8169217 type: EmitSoundOnCollide - - uid: 24957 + - uid: 24991 components: - pos: 32.521046,-20.990738 parent: 2 type: Transform - nextAttack: 112.5662204 type: MeleeWeapon - - uid: 24958 + - uid: 24992 components: - pos: -24.509478,-19.362955 parent: 2 type: Transform - - uid: 24959 + - uid: 24993 components: - pos: -12.493107,-98.55707 parent: 2 type: Transform - - uid: 24960 + - uid: 24994 components: - pos: 67.55947,-64.54127 parent: 2 type: Transform - proto: ToolboxEmergencyFilled entities: - - uid: 24961 + - uid: 24995 components: - pos: 32.521046,-22.058308 parent: 2 type: Transform - nextAttack: 103.249591 type: MeleeWeapon - - uid: 24962 + - uid: 24996 components: - pos: 4.5177064,-69.50256 parent: 2 type: Transform - - uid: 24963 + - uid: 24997 components: - pos: -22.596659,-20.233759 parent: 2 type: Transform - - uid: 24964 + - uid: 24998 components: - pos: -28.343418,-52.353195 parent: 2 type: Transform - - uid: 24965 + - uid: 24999 components: - pos: -38.44295,-67.482124 parent: 2 type: Transform - - uid: 24966 + - uid: 25000 components: - pos: -35.451088,-50.209225 parent: 2 type: Transform - - uid: 24967 + - uid: 25001 components: - pos: 54.54983,-30.496807 parent: 2 type: Transform - - uid: 24968 + - uid: 25002 components: - pos: 65.53578,-10.518121 parent: 2 type: Transform - - uid: 24969 + - uid: 25003 components: - pos: -12.486199,-5.5686293 parent: 2 type: Transform - - uid: 24970 + - uid: 25004 components: - pos: -36.5088,-7.6284776 parent: 2 @@ -188561,7 +188589,7 @@ entities: type: EmitSoundOnCollide - proto: ToolboxGoldFilled entities: - - uid: 24971 + - uid: 25005 components: - pos: 32.512478,-22.558695 parent: 2 @@ -188570,14 +188598,14 @@ entities: type: MeleeWeapon - proto: ToolboxMechanical entities: - - uid: 24972 + - uid: 25006 components: - pos: -22.637089,-8.36341 parent: 2 type: Transform - proto: ToolboxMechanicalFilled entities: - - uid: 24973 + - uid: 25007 components: - pos: -36.493176,-7.2222276 parent: 2 @@ -188586,236 +188614,236 @@ entities: type: MeleeWeapon - nextSound: 512.3163489 type: EmitSoundOnCollide - - uid: 24974 + - uid: 25008 components: - pos: -15.996035,12.5348 parent: 2 type: Transform - - uid: 24975 + - uid: 25009 components: - pos: 32.521046,-21.537613 parent: 2 type: Transform - nextAttack: 110.0995636 type: MeleeWeapon - - uid: 24976 + - uid: 25010 components: - pos: -22.52499,-67.50294 parent: 2 type: Transform - - uid: 24977 + - uid: 25011 components: - pos: 41.46839,-54.726734 parent: 2 type: Transform - - uid: 24978 + - uid: 25012 components: - pos: -36.497368,-32.593475 parent: 2 type: Transform - - uid: 24979 + - uid: 25013 components: - pos: -26.431704,-19.50094 parent: 2 type: Transform - proto: ToyAi entities: - - uid: 24980 + - uid: 25014 components: - pos: 48.41234,-27.902035 parent: 2 type: Transform - - uid: 24981 + - uid: 25015 components: - pos: -1.529743,69.62148 parent: 2 type: Transform - proto: ToyAmongPequeno entities: - - uid: 24982 + - uid: 25016 components: - pos: 64.471924,-66.472046 parent: 2 type: Transform - proto: ToyAssistant entities: - - uid: 24983 + - uid: 25017 components: - pos: -17.943565,62.415245 parent: 2 type: Transform - proto: ToyDurand entities: - - uid: 24984 + - uid: 25018 components: - pos: -18.14669,61.77462 parent: 2 type: Transform - proto: ToyGygax entities: - - uid: 24985 + - uid: 25019 components: - pos: -17.318565,61.89962 parent: 2 type: Transform - proto: ToyHonk entities: - - uid: 24986 + - uid: 25020 components: - pos: 62.0246,-1.3985255 parent: 2 type: Transform - - uid: 24987 + - uid: 25021 components: - pos: -17.287315,62.508995 parent: 2 type: Transform - proto: ToyIan entities: - - uid: 24988 + - uid: 25022 components: - pos: 48.44359,-22.433285 parent: 2 type: Transform - proto: ToyNuke entities: - - uid: 24989 + - uid: 25023 components: - pos: 48.50609,-28.933285 parent: 2 type: Transform - proto: ToyRubberDuck entities: - - uid: 24990 + - uid: 25024 components: - pos: 48.59984,-28.457928 parent: 2 type: Transform - - uid: 24991 + - uid: 25025 components: - pos: 48.396713,-28.473553 parent: 2 type: Transform - - uid: 24992 + - uid: 25026 components: - pos: 48.50609,-28.286053 parent: 2 type: Transform - proto: ToySpawner entities: - - uid: 24993 + - uid: 25027 components: - pos: 53.5,-65.5 parent: 2 type: Transform - - uid: 24994 + - uid: 25028 components: - pos: 54.5,-35.5 parent: 2 type: Transform - proto: TrashBananaPeel entities: - - uid: 24995 + - uid: 25029 components: - pos: 1.7019457,-5.2798405 parent: 2 type: Transform - - uid: 24996 + - uid: 25030 components: - pos: 2.4993362,-10.809314 parent: 2 type: Transform - - uid: 24997 + - uid: 25031 components: - pos: 1.2956955,-5.4829655 parent: 2 type: Transform - - uid: 24998 + - uid: 25032 components: - pos: 46.551132,46.620934 parent: 2 type: Transform - - uid: 24999 + - uid: 25033 components: - pos: -16.502157,-32.75781 parent: 2 type: Transform - - uid: 25000 + - uid: 25034 components: - pos: 48.49847,33.344906 parent: 2 type: Transform - - uid: 25001 + - uid: 25035 components: - pos: 50.451595,31.673027 parent: 2 type: Transform - - uid: 25002 + - uid: 25036 components: - pos: 5.4959826,24.50416 parent: 2 type: Transform - proto: trayScanner entities: - - uid: 25003 + - uid: 25037 components: - pos: -36.91505,-7.9878526 parent: 2 type: Transform - nextSound: 507.9287298 type: EmitSoundOnCollide - - uid: 25004 + - uid: 25038 components: - pos: -54.607018,-37.48977 parent: 2 type: Transform - - uid: 25005 + - uid: 25039 components: - pos: -47.457436,-19.479069 parent: 2 type: Transform - - uid: 25006 + - uid: 25040 components: - pos: -42.463882,-20.49279 parent: 2 type: Transform - - uid: 25007 + - uid: 25041 components: - pos: 39.581177,-30.49341 parent: 2 type: Transform - - uid: 25008 + - uid: 25042 components: - pos: 73.06597,36.576 parent: 2 type: Transform - - uid: 25009 + - uid: 25043 components: - pos: 77.48675,-44.195305 parent: 2 type: Transform - - uid: 25010 + - uid: 25044 components: - pos: -26.403507,-59.437252 parent: 2 type: Transform - proto: TromboneInstrument entities: - - uid: 25011 + - uid: 25045 components: - pos: 68.56264,48.54323 parent: 2 type: Transform - proto: TrumpetInstrument entities: - - uid: 25012 + - uid: 25046 components: - pos: -10.547552,-5.035685 parent: 2 type: Transform - proto: TwoWayLever entities: - - uid: 25013 + - uid: 25047 components: - pos: 16.5,-53.5 parent: 2 @@ -188825,75 +188853,75 @@ entities: - outputs: Left: - port: Forward - uid: 12368 + uid: 12375 - port: Forward - uid: 12366 + uid: 12373 - port: Forward - uid: 12367 + uid: 12374 - port: Forward - uid: 12364 + uid: 12371 - port: Forward - uid: 12361 + uid: 12368 - port: Forward - uid: 12358 + uid: 12365 - port: Forward - uid: 12360 + uid: 12367 - port: Forward - uid: 12362 + uid: 12369 - port: Forward - uid: 22607 + uid: 22627 - port: Forward - uid: 12359 + uid: 12366 - port: Forward - uid: 12365 + uid: 12372 Right: - port: Reverse - uid: 12368 + uid: 12375 - port: Reverse - uid: 12366 + uid: 12373 - port: Reverse - uid: 12367 + uid: 12374 - port: Reverse - uid: 12364 + uid: 12371 - port: Reverse - uid: 12361 + uid: 12368 - port: Reverse - uid: 12358 + uid: 12365 - port: Reverse - uid: 12360 + uid: 12367 - port: Reverse - uid: 12362 + uid: 12369 - port: Reverse - uid: 22607 + uid: 22627 - port: Reverse - uid: 12359 + uid: 12366 - port: Reverse - uid: 12365 + uid: 12372 Middle: - port: Off - uid: 12368 + uid: 12375 - port: Off - uid: 12366 + uid: 12373 - port: Off - uid: 12367 + uid: 12374 - port: Off - uid: 12364 + uid: 12371 - port: Off - uid: 12361 + uid: 12368 - port: Off - uid: 12358 + uid: 12365 - port: Off - uid: 12360 + uid: 12367 - port: Off - uid: 12362 + uid: 12369 - port: Off - uid: 22607 + uid: 22627 - port: Off - uid: 12359 + uid: 12366 - port: Off - uid: 12365 + uid: 12372 type: SignalTransmitter - - uid: 25014 + - uid: 25048 components: - pos: -28.5,24.5 parent: 2 @@ -188901,46 +188929,46 @@ entities: - outputs: Left: - port: Forward - uid: 12376 + uid: 12383 - port: Forward - uid: 12377 + uid: 12384 - port: Forward - uid: 12375 + uid: 12382 - port: Forward - uid: 12374 + uid: 12381 - port: Forward - uid: 12373 + uid: 12380 - port: Forward - uid: 12372 + uid: 12379 Right: - port: Reverse - uid: 12376 + uid: 12383 - port: Reverse - uid: 12377 + uid: 12384 - port: Reverse - uid: 12375 + uid: 12382 - port: Reverse - uid: 12374 + uid: 12381 - port: Reverse - uid: 12373 + uid: 12380 - port: Reverse - uid: 12372 + uid: 12379 Middle: - port: Off - uid: 12376 + uid: 12383 - port: Off - uid: 12377 + uid: 12384 - port: Off - uid: 12375 + uid: 12382 - port: Off - uid: 12374 + uid: 12381 - port: Off - uid: 12373 + uid: 12380 - port: Off - uid: 12372 + uid: 12379 type: SignalTransmitter - type: ItemCooldown - - uid: 25015 + - uid: 25049 components: - pos: -41.5,17.5 parent: 2 @@ -188948,39 +188976,39 @@ entities: - outputs: Left: - port: Forward - uid: 12418 + uid: 12425 - port: Forward - uid: 12458 + uid: 12465 - port: Forward - uid: 12417 + uid: 12424 - port: Forward - uid: 12399 + uid: 12406 - port: Forward - uid: 12419 + uid: 12426 Right: - port: Reverse - uid: 12418 + uid: 12425 - port: Reverse - uid: 12458 + uid: 12465 - port: Reverse - uid: 12417 + uid: 12424 - port: Reverse - uid: 12399 + uid: 12406 - port: Reverse - uid: 12419 + uid: 12426 Middle: - port: Off - uid: 12418 + uid: 12425 - port: Off - uid: 12458 + uid: 12465 - port: Off - uid: 12417 + uid: 12424 - port: Off - uid: 12399 + uid: 12406 - port: Off - uid: 12419 + uid: 12426 type: SignalTransmitter - - uid: 25016 + - uid: 25050 components: - pos: -48.5,24.5 parent: 2 @@ -188988,57 +189016,57 @@ entities: - outputs: Left: - port: Forward - uid: 12390 + uid: 12397 - port: Forward - uid: 12389 + uid: 12396 - port: Forward - uid: 12388 + uid: 12395 - port: Forward - uid: 12387 + uid: 12394 - port: Forward - uid: 12395 + uid: 12402 - port: Forward - uid: 12396 + uid: 12403 - port: Forward - uid: 12397 + uid: 12404 - port: Forward - uid: 12398 + uid: 12405 Right: - port: Reverse - uid: 12390 + uid: 12397 - port: Reverse - uid: 12389 + uid: 12396 - port: Reverse - uid: 12388 + uid: 12395 - port: Reverse - uid: 12387 + uid: 12394 - port: Reverse - uid: 12395 + uid: 12402 - port: Reverse - uid: 12396 + uid: 12403 - port: Reverse - uid: 12397 + uid: 12404 - port: Reverse - uid: 12398 + uid: 12405 Middle: - port: Off - uid: 12390 + uid: 12397 - port: Off - uid: 12389 + uid: 12396 - port: Off - uid: 12388 + uid: 12395 - port: Off - uid: 12387 + uid: 12394 - port: Off - uid: 12395 + uid: 12402 - port: Off - uid: 12396 + uid: 12403 - port: Off - uid: 12397 + uid: 12404 - port: Off - uid: 12398 + uid: 12405 type: SignalTransmitter - - uid: 25017 + - uid: 25051 components: - pos: -48.5,18.5 parent: 2 @@ -189048,57 +189076,57 @@ entities: - outputs: Left: - port: Forward - uid: 12386 + uid: 12393 - port: Forward - uid: 12385 + uid: 12392 - port: Forward - uid: 12384 + uid: 12391 - port: Forward - uid: 12383 + uid: 12390 - port: Forward - uid: 12393 + uid: 12400 - port: Forward - uid: 12394 + uid: 12401 - port: Forward - uid: 12392 + uid: 12399 - port: Forward - uid: 12391 + uid: 12398 Right: - port: Reverse - uid: 12386 + uid: 12393 - port: Reverse - uid: 12385 + uid: 12392 - port: Reverse - uid: 12384 + uid: 12391 - port: Reverse - uid: 12383 + uid: 12390 - port: Reverse - uid: 12393 + uid: 12400 - port: Reverse - uid: 12394 + uid: 12401 - port: Reverse - uid: 12392 + uid: 12399 - port: Reverse - uid: 12391 + uid: 12398 Middle: - port: Off - uid: 12386 + uid: 12393 - port: Off - uid: 12385 + uid: 12392 - port: Off - uid: 12384 + uid: 12391 - port: Off - uid: 12383 + uid: 12390 - port: Off - uid: 12393 + uid: 12400 - port: Off - uid: 12394 + uid: 12401 - port: Off - uid: 12392 + uid: 12399 - port: Off - uid: 12391 + uid: 12398 type: SignalTransmitter - - uid: 25018 + - uid: 25052 components: - pos: -36.5,24.5 parent: 2 @@ -189108,39 +189136,39 @@ entities: - outputs: Left: - port: Forward - uid: 12382 + uid: 12389 - port: Forward - uid: 12381 + uid: 12388 - port: Forward - uid: 12380 + uid: 12387 - port: Forward - uid: 12378 + uid: 12385 - port: Forward - uid: 12379 + uid: 12386 Right: - port: Reverse - uid: 12382 + uid: 12389 - port: Reverse - uid: 12381 + uid: 12388 - port: Reverse - uid: 12380 + uid: 12387 - port: Reverse - uid: 12378 + uid: 12385 - port: Reverse - uid: 12379 + uid: 12386 Middle: - port: Off - uid: 12382 + uid: 12389 - port: Off - uid: 12381 + uid: 12388 - port: Off - uid: 12380 + uid: 12387 - port: Off - uid: 12378 + uid: 12385 - port: Off - uid: 12379 + uid: 12386 type: SignalTransmitter - - uid: 25019 + - uid: 25053 components: - pos: -11.5,28.5 parent: 2 @@ -189148,105 +189176,105 @@ entities: - outputs: Left: - port: Forward - uid: 12435 + uid: 12442 - port: Forward - uid: 12436 + uid: 12443 - port: Forward - uid: 12437 + uid: 12444 - port: Forward - uid: 12438 + uid: 12445 - port: Forward - uid: 12439 + uid: 12446 - port: Forward - uid: 12434 + uid: 12441 - port: Forward - uid: 12423 + uid: 12430 - port: Forward - uid: 12424 + uid: 12431 - port: Forward - uid: 12425 + uid: 12432 - port: Forward - uid: 12441 + uid: 12448 - port: Forward - uid: 12440 + uid: 12447 - port: Reverse - uid: 12416 + uid: 12423 - port: Reverse - uid: 12415 + uid: 12422 - port: Reverse - uid: 12442 + uid: 12449 - port: Reverse - uid: 12443 + uid: 12450 - port: Reverse - uid: 12414 + uid: 12421 Right: - port: Reverse - uid: 12435 + uid: 12442 - port: Reverse - uid: 12436 + uid: 12443 - port: Reverse - uid: 12437 + uid: 12444 - port: Reverse - uid: 12438 + uid: 12445 - port: Reverse - uid: 12439 + uid: 12446 - port: Reverse - uid: 12434 + uid: 12441 - port: Reverse - uid: 12423 + uid: 12430 - port: Reverse - uid: 12424 + uid: 12431 - port: Reverse - uid: 12425 + uid: 12432 - port: Reverse - uid: 12441 + uid: 12448 - port: Reverse - uid: 12440 + uid: 12447 - port: Forward - uid: 12416 + uid: 12423 - port: Forward - uid: 12415 + uid: 12422 - port: Forward - uid: 12442 + uid: 12449 - port: Forward - uid: 12443 + uid: 12450 - port: Forward - uid: 12414 + uid: 12421 Middle: - port: Off - uid: 12435 + uid: 12442 - port: Off - uid: 12436 + uid: 12443 - port: Off - uid: 12437 + uid: 12444 - port: Off - uid: 12438 + uid: 12445 - port: Off - uid: 12439 + uid: 12446 - port: Off - uid: 12434 + uid: 12441 - port: Off - uid: 12423 + uid: 12430 - port: Off - uid: 12424 + uid: 12431 - port: Off - uid: 12425 + uid: 12432 - port: Off - uid: 12441 + uid: 12448 - port: Off - uid: 12440 + uid: 12447 - port: Off - uid: 12416 + uid: 12423 - port: Off - uid: 12415 + uid: 12422 - port: Off - uid: 12442 + uid: 12449 - port: Off - uid: 12443 + uid: 12450 - port: Off - uid: 12414 + uid: 12421 type: SignalTransmitter - - uid: 25020 + - uid: 25054 components: - pos: -48.5,29.5 parent: 2 @@ -189256,51 +189284,51 @@ entities: - outputs: Left: - port: Forward - uid: 12411 + uid: 12418 - port: Forward - uid: 12401 + uid: 12408 - port: Forward - uid: 12400 + uid: 12407 - port: Forward - uid: 12402 + uid: 12409 - port: Forward - uid: 12403 + uid: 12410 - port: Forward - uid: 12404 + uid: 12411 - port: Forward - uid: 12413 + uid: 12420 Right: - port: Reverse - uid: 12411 + uid: 12418 - port: Reverse - uid: 12401 + uid: 12408 - port: Reverse - uid: 12400 + uid: 12407 - port: Reverse - uid: 12402 + uid: 12409 - port: Reverse - uid: 12403 + uid: 12410 - port: Reverse - uid: 12404 + uid: 12411 - port: Reverse - uid: 12413 + uid: 12420 Middle: - port: Off - uid: 12411 + uid: 12418 - port: Off - uid: 12401 + uid: 12408 - port: Off - uid: 12400 + uid: 12407 - port: Off - uid: 12402 + uid: 12409 - port: Off - uid: 12403 + uid: 12410 - port: Off - uid: 12404 + uid: 12411 - port: Off - uid: 12413 + uid: 12420 type: SignalTransmitter - - uid: 25021 + - uid: 25055 components: - pos: -48.5,35.5 parent: 2 @@ -189310,51 +189338,51 @@ entities: - outputs: Left: - port: Forward - uid: 12410 + uid: 12417 - port: Forward - uid: 12405 + uid: 12412 - port: Forward - uid: 12406 + uid: 12413 - port: Forward - uid: 12407 + uid: 12414 - port: Forward - uid: 12408 + uid: 12415 - port: Forward - uid: 12409 + uid: 12416 - port: Forward - uid: 12412 + uid: 12419 Right: - port: Reverse - uid: 12410 + uid: 12417 - port: Reverse - uid: 12405 + uid: 12412 - port: Reverse - uid: 12406 + uid: 12413 - port: Reverse - uid: 12407 + uid: 12414 - port: Reverse - uid: 12408 + uid: 12415 - port: Reverse - uid: 12409 + uid: 12416 - port: Reverse - uid: 12412 + uid: 12419 Middle: - port: Off - uid: 12410 + uid: 12417 - port: Off - uid: 12405 + uid: 12412 - port: Off - uid: 12406 + uid: 12413 - port: Off - uid: 12407 + uid: 12414 - port: Off - uid: 12408 + uid: 12415 - port: Off - uid: 12409 + uid: 12416 - port: Off - uid: 12412 + uid: 12419 type: SignalTransmitter - - uid: 25022 + - uid: 25056 components: - pos: -46.5,14.5 parent: 2 @@ -189364,28 +189392,28 @@ entities: - outputs: Left: - port: Forward - uid: 12421 + uid: 12428 - port: Forward - uid: 12420 + uid: 12427 - port: Forward - uid: 12422 + uid: 12429 Right: - port: Reverse - uid: 12421 + uid: 12428 - port: Reverse - uid: 12420 + uid: 12427 - port: Reverse - uid: 12422 + uid: 12429 Middle: - port: Off - uid: 12421 + uid: 12428 - port: Off - uid: 12420 + uid: 12427 - port: Off - uid: 12422 + uid: 12429 type: SignalTransmitter - type: ItemCooldown - - uid: 25023 + - uid: 25057 components: - pos: 47.5,39.5 parent: 2 @@ -189395,63 +189423,63 @@ entities: - outputs: Left: - port: Forward - uid: 12426 + uid: 12433 - port: Forward - uid: 12427 + uid: 12434 - port: Forward - uid: 12428 + uid: 12435 - port: Forward - uid: 12429 + uid: 12436 - port: Forward - uid: 12430 + uid: 12437 - port: Forward - uid: 12431 + uid: 12438 - port: Forward - uid: 12432 + uid: 12439 - port: Forward - uid: 12433 + uid: 12440 - port: Forward - uid: 12444 + uid: 12451 Right: - port: Reverse - uid: 12426 + uid: 12433 - port: Reverse - uid: 12427 + uid: 12434 - port: Reverse - uid: 12428 + uid: 12435 - port: Reverse - uid: 12429 + uid: 12436 - port: Reverse - uid: 12430 + uid: 12437 - port: Reverse - uid: 12431 + uid: 12438 - port: Reverse - uid: 12432 + uid: 12439 - port: Reverse - uid: 12433 + uid: 12440 - port: Reverse - uid: 12444 + uid: 12451 Middle: - port: Off - uid: 12426 + uid: 12433 - port: Off - uid: 12427 + uid: 12434 - port: Off - uid: 12428 + uid: 12435 - port: Off - uid: 12429 + uid: 12436 - port: Off - uid: 12430 + uid: 12437 - port: Off - uid: 12431 + uid: 12438 - port: Off - uid: 12432 + uid: 12439 - port: Off - uid: 12433 + uid: 12440 - port: Off - uid: 12444 + uid: 12451 type: SignalTransmitter - - uid: 25024 + - uid: 25058 components: - pos: -36.5,-98.5 parent: 2 @@ -189459,75 +189487,75 @@ entities: - outputs: Left: - port: Forward - uid: 12446 + uid: 12453 - port: Forward - uid: 12445 + uid: 12452 - port: Forward - uid: 12447 + uid: 12454 - port: Forward - uid: 12448 + uid: 12455 - port: Forward - uid: 12449 + uid: 12456 - port: Forward - uid: 12450 + uid: 12457 - port: Forward - uid: 12451 + uid: 12458 - port: Forward - uid: 12455 + uid: 12462 - port: Forward - uid: 12454 + uid: 12461 - port: Forward - uid: 12452 + uid: 12459 - port: Forward - uid: 12453 + uid: 12460 Right: - port: Reverse - uid: 12446 + uid: 12453 - port: Reverse - uid: 12445 + uid: 12452 - port: Reverse - uid: 12447 + uid: 12454 - port: Reverse - uid: 12448 + uid: 12455 - port: Reverse - uid: 12449 + uid: 12456 - port: Reverse - uid: 12450 + uid: 12457 - port: Reverse - uid: 12451 + uid: 12458 - port: Reverse - uid: 12455 + uid: 12462 - port: Reverse - uid: 12454 + uid: 12461 - port: Reverse - uid: 12452 + uid: 12459 - port: Reverse - uid: 12453 + uid: 12460 Middle: - port: Off - uid: 12446 + uid: 12453 - port: Off - uid: 12445 + uid: 12452 - port: Off - uid: 12447 + uid: 12454 - port: Off - uid: 12448 + uid: 12455 - port: Off - uid: 12449 + uid: 12456 - port: Off - uid: 12450 + uid: 12457 - port: Off - uid: 12451 + uid: 12458 - port: Off - uid: 12455 + uid: 12462 - port: Off - uid: 12454 + uid: 12461 - port: Off - uid: 12452 + uid: 12459 - port: Off - uid: 12453 + uid: 12460 type: SignalTransmitter - - uid: 25025 + - uid: 25059 components: - pos: -36.5,-104.5 parent: 2 @@ -189535,75 +189563,75 @@ entities: - outputs: Left: - port: Forward - uid: 12453 + uid: 12460 - port: Forward - uid: 12452 + uid: 12459 - port: Forward - uid: 12454 + uid: 12461 - port: Forward - uid: 12455 + uid: 12462 - port: Forward - uid: 12451 + uid: 12458 - port: Forward - uid: 12450 + uid: 12457 - port: Forward - uid: 12449 + uid: 12456 - port: Forward - uid: 12448 + uid: 12455 - port: Forward - uid: 12447 + uid: 12454 - port: Forward - uid: 12445 + uid: 12452 - port: Forward - uid: 12446 + uid: 12453 Right: - port: Reverse - uid: 12453 + uid: 12460 - port: Reverse - uid: 12452 + uid: 12459 - port: Reverse - uid: 12454 + uid: 12461 - port: Reverse - uid: 12455 + uid: 12462 - port: Reverse - uid: 12451 + uid: 12458 - port: Reverse - uid: 12450 + uid: 12457 - port: Reverse - uid: 12449 + uid: 12456 - port: Reverse - uid: 12448 + uid: 12455 - port: Reverse - uid: 12447 + uid: 12454 - port: Reverse - uid: 12445 + uid: 12452 - port: Reverse - uid: 12446 + uid: 12453 Middle: - port: Off - uid: 12453 + uid: 12460 - port: Off - uid: 12452 + uid: 12459 - port: Off - uid: 12454 + uid: 12461 - port: Off - uid: 12455 + uid: 12462 - port: Off - uid: 12451 + uid: 12458 - port: Off - uid: 12450 + uid: 12457 - port: Off - uid: 12449 + uid: 12456 - port: Off - uid: 12448 + uid: 12455 - port: Off - uid: 12447 + uid: 12454 - port: Off - uid: 12445 + uid: 12452 - port: Off - uid: 12446 + uid: 12453 type: SignalTransmitter - - uid: 25026 + - uid: 25060 components: - pos: -9.5,-12.5 parent: 2 @@ -189611,89 +189639,89 @@ entities: - outputs: Left: - port: Reverse - uid: 12369 + uid: 12376 - port: Reverse - uid: 12370 + uid: 12377 - port: Reverse - uid: 12363 + uid: 12370 - port: Reverse - uid: 12457 + uid: 12464 - port: Reverse - uid: 12456 + uid: 12463 - port: Reverse - uid: 12371 + uid: 12378 Right: - port: Reverse - uid: 12369 + uid: 12376 - port: Reverse - uid: 12370 + uid: 12377 - port: Reverse - uid: 12363 + uid: 12370 - port: Reverse - uid: 12457 + uid: 12464 - port: Reverse - uid: 12456 + uid: 12463 - port: Reverse - uid: 12371 + uid: 12378 Middle: - port: Off - uid: 12456 - - port: Off - uid: 12371 + uid: 12463 - port: Off - uid: 12363 + uid: 12378 - port: Off uid: 12370 - port: Off - uid: 12369 + uid: 12377 - port: Off - uid: 12457 + uid: 12376 + - port: Off + uid: 12464 type: SignalTransmitter - proto: UnfinishedMachineFrame entities: - - uid: 25027 + - uid: 25061 components: - pos: -26.5,-24.5 parent: 2 type: Transform - - uid: 25028 + - uid: 25062 components: - pos: -39.5,-20.5 parent: 2 type: Transform - - uid: 25029 + - uid: 25063 components: - pos: -10.5,39.5 parent: 2 type: Transform - - uid: 25030 + - uid: 25064 components: - pos: 53.5,-30.5 parent: 2 type: Transform - proto: UniformPrinter entities: - - uid: 25031 + - uid: 25065 components: - pos: 26.5,-34.5 parent: 2 type: Transform - proto: UniformShortsRedWithTop entities: - - uid: 25032 + - uid: 25066 components: - pos: 30.57281,4.627015 parent: 2 type: Transform - proto: UprightPianoInstrument entities: - - uid: 25033 + - uid: 25067 components: - rot: -1.5707963267948966 rad pos: -47.5,-75.5 parent: 2 type: Transform - - uid: 25034 + - uid: 25068 components: - rot: -1.5707963267948966 rad pos: 8.5,5.5 @@ -189701,43 +189729,43 @@ entities: type: Transform - proto: Vaccinator entities: - - uid: 25035 + - uid: 25069 components: - pos: -22.5,-77.5 parent: 2 type: Transform - - uid: 25036 + - uid: 25070 components: - pos: -20.5,-76.5 parent: 2 type: Transform - proto: VehicleKeyJanicart entities: - - uid: 25037 + - uid: 25071 components: - pos: -13.519899,-23.451248 parent: 2 type: Transform - proto: VehicleKeySecway entities: - - uid: 25038 + - uid: 25072 components: - pos: 12.469265,19.745214 parent: 2 type: Transform - - uid: 25039 + - uid: 25073 components: - pos: 12.39114,19.557714 parent: 2 type: Transform - - uid: 25040 + - uid: 25074 components: - pos: 12.594265,19.82334 parent: 2 type: Transform - proto: VendingBarDrobe entities: - - uid: 25041 + - uid: 25075 components: - flags: SessionSpecific type: MetaData @@ -189746,7 +189774,7 @@ entities: type: Transform - proto: VendingMachineAtmosDrobe entities: - - uid: 25042 + - uid: 25076 components: - flags: SessionSpecific type: MetaData @@ -189755,21 +189783,21 @@ entities: type: Transform - proto: VendingMachineBooze entities: - - uid: 25043 + - uid: 25077 components: - flags: SessionSpecific type: MetaData - pos: -41.5,-74.5 parent: 2 type: Transform - - uid: 25044 + - uid: 25078 components: - flags: SessionSpecific type: MetaData - pos: 18.5,10.5 parent: 2 type: Transform - - uid: 25045 + - uid: 25079 components: - flags: SessionSpecific type: MetaData @@ -189778,7 +189806,7 @@ entities: type: Transform - proto: VendingMachineCargoDrobe entities: - - uid: 25046 + - uid: 25080 components: - flags: SessionSpecific type: MetaData @@ -189787,7 +189815,7 @@ entities: type: Transform - proto: VendingMachineCart entities: - - uid: 25047 + - uid: 25081 components: - flags: SessionSpecific type: MetaData @@ -189796,21 +189824,21 @@ entities: type: Transform - proto: VendingMachineChang entities: - - uid: 25048 + - uid: 25082 components: - flags: SessionSpecific type: MetaData - pos: 53.5,3.5 parent: 2 type: Transform - - uid: 25049 + - uid: 25083 components: - flags: SessionSpecific type: MetaData - pos: -2.5,-31.5 parent: 2 type: Transform - - uid: 25050 + - uid: 25084 components: - flags: SessionSpecific type: MetaData @@ -189819,7 +189847,7 @@ entities: type: Transform - proto: VendingMachineChapel entities: - - uid: 25051 + - uid: 25085 components: - flags: SessionSpecific type: MetaData @@ -189828,7 +189856,7 @@ entities: type: Transform - proto: VendingMachineChefDrobe entities: - - uid: 25052 + - uid: 25086 components: - flags: SessionSpecific type: MetaData @@ -189837,7 +189865,7 @@ entities: type: Transform - proto: VendingMachineChefvend entities: - - uid: 25053 + - uid: 25087 components: - flags: SessionSpecific type: MetaData @@ -189846,7 +189874,7 @@ entities: type: Transform - proto: VendingMachineChemDrobe entities: - - uid: 25054 + - uid: 25088 components: - flags: SessionSpecific type: MetaData @@ -189855,7 +189883,7 @@ entities: type: Transform - proto: VendingMachineChemicals entities: - - uid: 25055 + - uid: 25089 components: - flags: SessionSpecific type: MetaData @@ -189866,42 +189894,42 @@ entities: type: VendingMachine - proto: VendingMachineCigs entities: - - uid: 25056 + - uid: 25090 components: - flags: SessionSpecific type: MetaData - pos: 2.5,58.5 parent: 2 type: Transform - - uid: 25057 + - uid: 25091 components: - flags: SessionSpecific type: MetaData - pos: -6.5,-34.5 parent: 2 type: Transform - - uid: 25058 + - uid: 25092 components: - flags: SessionSpecific type: MetaData - pos: 7.5,-2.5 parent: 2 type: Transform - - uid: 25059 + - uid: 25093 components: - flags: SessionSpecific type: MetaData - pos: 61.5,-13.5 parent: 2 type: Transform - - uid: 25060 + - uid: 25094 components: - flags: SessionSpecific type: MetaData - pos: -13.5,8.5 parent: 2 type: Transform - - uid: 25061 + - uid: 25095 components: - flags: SessionSpecific type: MetaData @@ -189910,7 +189938,7 @@ entities: type: Transform - proto: VendingMachineClothing entities: - - uid: 25062 + - uid: 25096 components: - flags: SessionSpecific type: MetaData @@ -189919,77 +189947,77 @@ entities: type: Transform - proto: VendingMachineCoffee entities: - - uid: 25063 + - uid: 25097 components: - flags: SessionSpecific type: MetaData - pos: -10.5,-52.5 parent: 2 type: Transform - - uid: 25064 + - uid: 25098 components: - flags: SessionSpecific type: MetaData - pos: 37.5,-17.5 parent: 2 type: Transform - - uid: 25065 + - uid: 25099 components: - flags: SessionSpecific type: MetaData - pos: 45.5,17.5 parent: 2 type: Transform - - uid: 25066 + - uid: 25100 components: - flags: SessionSpecific type: MetaData - pos: 51.5,3.5 parent: 2 type: Transform - - uid: 25067 + - uid: 25101 components: - flags: SessionSpecific type: MetaData - pos: 60.5,-13.5 parent: 2 type: Transform - - uid: 25068 + - uid: 25102 components: - flags: SessionSpecific type: MetaData - pos: -33.5,-22.5 parent: 2 type: Transform - - uid: 25069 + - uid: 25103 components: - flags: SessionSpecific type: MetaData - pos: -43.5,4.5 parent: 2 type: Transform - - uid: 25070 + - uid: 25104 components: - flags: SessionSpecific type: MetaData - pos: -0.5,43.5 parent: 2 type: Transform - - uid: 25071 + - uid: 25105 components: - flags: SessionSpecific type: MetaData - pos: -14.5,49.5 parent: 2 type: Transform - - uid: 25072 + - uid: 25106 components: - flags: SessionSpecific type: MetaData - pos: 51.5,-37.5 parent: 2 type: Transform - - uid: 25073 + - uid: 25107 components: - flags: SessionSpecific type: MetaData @@ -189998,21 +190026,21 @@ entities: type: Transform - proto: VendingMachineCola entities: - - uid: 25074 + - uid: 25108 components: - flags: SessionSpecific type: MetaData - pos: 8.5,-2.5 parent: 2 type: Transform - - uid: 25075 + - uid: 25109 components: - flags: SessionSpecific type: MetaData - pos: 27.5,-11.5 parent: 2 type: Transform - - uid: 25076 + - uid: 25110 components: - flags: SessionSpecific type: MetaData @@ -190021,14 +190049,14 @@ entities: type: Transform - proto: VendingMachineCondiments entities: - - uid: 25077 + - uid: 25111 components: - flags: SessionSpecific type: MetaData - pos: 8.5,10.5 parent: 2 type: Transform - - uid: 25078 + - uid: 25112 components: - flags: SessionSpecific type: MetaData @@ -190037,7 +190065,7 @@ entities: type: Transform - proto: VendingMachineDetDrobe entities: - - uid: 25079 + - uid: 25113 components: - flags: SessionSpecific type: MetaData @@ -190046,14 +190074,14 @@ entities: type: Transform - proto: VendingMachineDinnerware entities: - - uid: 25080 + - uid: 25114 components: - flags: SessionSpecific type: MetaData - pos: -0.5,5.5 parent: 2 type: Transform - - uid: 25081 + - uid: 25115 components: - flags: SessionSpecific type: MetaData @@ -190062,28 +190090,28 @@ entities: type: Transform - proto: VendingMachineDiscount entities: - - uid: 25082 + - uid: 25116 components: - flags: SessionSpecific type: MetaData - pos: -6.5,-32.5 parent: 2 type: Transform - - uid: 25083 + - uid: 25117 components: - flags: SessionSpecific type: MetaData - pos: -33.5,-23.5 parent: 2 type: Transform - - uid: 25084 + - uid: 25118 components: - flags: SessionSpecific type: MetaData - pos: -43.5,3.5 parent: 2 type: Transform - - uid: 25085 + - uid: 25119 components: - flags: SessionSpecific type: MetaData @@ -190092,7 +190120,7 @@ entities: type: Transform - proto: VendingMachineEngiDrobe entities: - - uid: 25087 + - uid: 25120 components: - flags: SessionSpecific type: MetaData @@ -190101,7 +190129,7 @@ entities: type: Transform - proto: VendingMachineEngivend entities: - - uid: 25088 + - uid: 25121 components: - flags: SessionSpecific type: MetaData @@ -190110,7 +190138,7 @@ entities: type: Transform - proto: VendingMachineGames entities: - - uid: 25089 + - uid: 25122 components: - flags: SessionSpecific type: MetaData @@ -190119,7 +190147,7 @@ entities: type: Transform - proto: VendingMachineGeneDrobe entities: - - uid: 25090 + - uid: 25123 components: - flags: SessionSpecific type: MetaData @@ -190128,7 +190156,7 @@ entities: type: Transform - proto: VendingMachineHappyHonk entities: - - uid: 25091 + - uid: 25124 components: - flags: SessionSpecific type: MetaData @@ -190137,7 +190165,7 @@ entities: type: Transform - proto: VendingMachineHydrobe entities: - - uid: 25092 + - uid: 25125 components: - flags: SessionSpecific type: MetaData @@ -190146,7 +190174,7 @@ entities: type: Transform - proto: VendingMachineJaniDrobe entities: - - uid: 25093 + - uid: 25126 components: - flags: SessionSpecific type: MetaData @@ -190155,7 +190183,7 @@ entities: type: Transform - proto: VendingMachineLawDrobe entities: - - uid: 25094 + - uid: 25127 components: - flags: SessionSpecific type: MetaData @@ -190164,14 +190192,14 @@ entities: type: Transform - proto: VendingMachineMedical entities: - - uid: 25095 + - uid: 25128 components: - flags: SessionSpecific type: MetaData - pos: -28.5,-75.5 parent: 2 type: Transform - - uid: 25096 + - uid: 25129 components: - flags: SessionSpecific type: MetaData @@ -190180,7 +190208,7 @@ entities: type: Transform - proto: VendingMachineMediDrobe entities: - - uid: 25097 + - uid: 25130 components: - flags: SessionSpecific type: MetaData @@ -190189,7 +190217,7 @@ entities: type: Transform - proto: VendingMachineNutri entities: - - uid: 25098 + - uid: 25131 components: - flags: SessionSpecific type: MetaData @@ -190198,14 +190226,14 @@ entities: type: Transform - proto: VendingMachineRestockSmokes entities: - - uid: 25099 + - uid: 25132 components: - pos: -26.439571,39.52594 parent: 2 type: Transform - proto: VendingMachineRoboDrobe entities: - - uid: 25100 + - uid: 25133 components: - flags: SessionSpecific type: MetaData @@ -190214,7 +190242,7 @@ entities: type: Transform - proto: VendingMachineSalvage entities: - - uid: 25101 + - uid: 25134 components: - flags: SessionSpecific type: MetaData @@ -190223,7 +190251,7 @@ entities: type: Transform - proto: VendingMachineSciDrobe entities: - - uid: 25102 + - uid: 25135 components: - flags: SessionSpecific type: MetaData @@ -190232,7 +190260,7 @@ entities: type: Transform - proto: VendingMachineSec entities: - - uid: 25103 + - uid: 25136 components: - flags: SessionSpecific type: MetaData @@ -190241,7 +190269,7 @@ entities: type: Transform - proto: VendingMachineSecDrobe entities: - - uid: 25104 + - uid: 25137 components: - flags: SessionSpecific type: MetaData @@ -190250,7 +190278,7 @@ entities: type: Transform - proto: VendingMachineSeeds entities: - - uid: 25105 + - uid: 25138 components: - flags: SessionSpecific type: MetaData @@ -190259,7 +190287,7 @@ entities: type: Transform - proto: VendingMachineSeedsUnlocked entities: - - uid: 25106 + - uid: 25139 components: - flags: SessionSpecific type: MetaData @@ -190268,7 +190296,7 @@ entities: type: Transform - proto: VendingMachineSmartFridge entities: - - uid: 25107 + - uid: 25140 components: - flags: SessionSpecific type: MetaData @@ -190279,14 +190307,14 @@ entities: type: VendingMachine - proto: VendingMachineSnack entities: - - uid: 25108 + - uid: 25141 components: - flags: SessionSpecific type: MetaData - pos: 2.5,57.5 parent: 2 type: Transform - - uid: 25109 + - uid: 25142 components: - flags: SessionSpecific type: MetaData @@ -190295,35 +190323,35 @@ entities: type: Transform - proto: VendingMachineSovietSoda entities: - - uid: 25110 + - uid: 25143 components: - flags: SessionSpecific type: MetaData - pos: 61.5,-15.5 parent: 2 type: Transform - - uid: 25111 + - uid: 25144 components: - flags: SessionSpecific type: MetaData - pos: -37.5,-72.5 parent: 2 type: Transform - - uid: 25112 + - uid: 25145 components: - flags: SessionSpecific type: MetaData - pos: -40.5,27.5 parent: 2 type: Transform - - uid: 25113 + - uid: 25146 components: - flags: SessionSpecific type: MetaData - pos: 44.5,-15.5 parent: 2 type: Transform - - uid: 25114 + - uid: 25147 components: - flags: SessionSpecific type: MetaData @@ -190332,7 +190360,7 @@ entities: type: Transform - proto: VendingMachineTankDispenserEngineering entities: - - uid: 25115 + - uid: 25148 components: - flags: SessionSpecific type: MetaData @@ -190341,49 +190369,49 @@ entities: type: Transform - proto: VendingMachineTankDispenserEVA entities: - - uid: 25116 + - uid: 25149 components: - flags: SessionSpecific type: MetaData - pos: 28.5,-14.5 parent: 2 type: Transform - - uid: 25117 + - uid: 25150 components: - flags: SessionSpecific type: MetaData - pos: -22.5,-36.5 parent: 2 type: Transform - - uid: 25118 + - uid: 25151 components: - flags: SessionSpecific type: MetaData - pos: -35.5,-51.5 parent: 2 type: Transform - - uid: 25119 + - uid: 25152 components: - flags: SessionSpecific type: MetaData - pos: -48.5,36.5 parent: 2 type: Transform - - uid: 25120 + - uid: 25153 components: - flags: SessionSpecific type: MetaData - pos: 28.5,47.5 parent: 2 type: Transform - - uid: 25121 + - uid: 25154 components: - flags: SessionSpecific type: MetaData - pos: -67.5,-41.5 parent: 2 type: Transform - - uid: 25122 + - uid: 25155 components: - flags: SessionSpecific type: MetaData @@ -190392,28 +190420,28 @@ entities: type: Transform - proto: VendingMachineTheater entities: - - uid: 25123 + - uid: 25156 components: - flags: SessionSpecific type: MetaData - pos: 1.5,-9.5 parent: 2 type: Transform - - uid: 25124 + - uid: 25157 components: - flags: SessionSpecific type: MetaData - pos: -8.5,-4.5 parent: 2 type: Transform - - uid: 25125 + - uid: 25158 components: - flags: SessionSpecific type: MetaData - pos: -20.5,31.5 parent: 2 type: Transform - - uid: 25126 + - uid: 25159 components: - flags: SessionSpecific type: MetaData @@ -190422,28 +190450,28 @@ entities: type: Transform - proto: VendingMachineVendomat entities: - - uid: 25127 + - uid: 25160 components: - flags: SessionSpecific type: MetaData - pos: 27.5,-12.5 parent: 2 type: Transform - - uid: 25128 + - uid: 25161 components: - flags: SessionSpecific type: MetaData - pos: -27.5,-70.5 parent: 2 type: Transform - - uid: 25129 + - uid: 25162 components: - flags: SessionSpecific type: MetaData - pos: -43.5,6.5 parent: 2 type: Transform - - uid: 25130 + - uid: 25163 components: - flags: SessionSpecific type: MetaData @@ -190452,7 +190480,7 @@ entities: type: Transform - proto: VendingMachineViroDrobe entities: - - uid: 25131 + - uid: 25164 components: - flags: SessionSpecific type: MetaData @@ -190461,7 +190489,7 @@ entities: type: Transform - proto: VendingMachineWinter entities: - - uid: 25086 + - uid: 25165 components: - flags: SessionSpecific type: MetaData @@ -190472,28 +190500,28 @@ entities: type: VendingMachine - proto: VendingMachineYouTool entities: - - uid: 25132 + - uid: 25166 components: - flags: SessionSpecific type: MetaData - pos: 39.5,-53.5 parent: 2 type: Transform - - uid: 25133 + - uid: 25167 components: - flags: SessionSpecific type: MetaData - pos: -37.5,-4.5 parent: 2 type: Transform - - uid: 25134 + - uid: 25168 components: - flags: SessionSpecific type: MetaData - pos: -23.5,-19.5 parent: 2 type: Transform - - uid: 25135 + - uid: 25169 components: - flags: SessionSpecific type: MetaData @@ -190502,7 +190530,7 @@ entities: type: Transform - proto: VoiceTrigger entities: - - uid: 30674 + - uid: 25170 components: - pos: 65.475975,-28.50289 parent: 2 @@ -190511,25895 +190539,25895 @@ entities: type: EmitSoundOnCollide - proto: WallmountTelevision entities: - - uid: 25136 + - uid: 25171 components: - pos: 17.5,8.5 parent: 2 type: Transform - proto: WallPlastitanium entities: - - uid: 25137 + - uid: 25172 components: - pos: 62.5,-46.5 parent: 2 type: Transform - - uid: 25138 + - uid: 25173 components: - pos: -53.5,-84.5 parent: 2 type: Transform - - uid: 25139 + - uid: 25174 components: - pos: -55.5,-84.5 parent: 2 type: Transform - - uid: 25140 + - uid: 25175 components: - pos: -53.5,-85.5 parent: 2 type: Transform - - uid: 25141 + - uid: 25176 components: - pos: -51.5,-85.5 parent: 2 type: Transform - - uid: 25142 + - uid: 25177 components: - pos: -51.5,-86.5 parent: 2 type: Transform - - uid: 25143 + - uid: 25178 components: - rot: 1.5707963267948966 rad pos: -50.5,-88.5 parent: 2 type: Transform - - uid: 25144 + - uid: 25179 components: - rot: 1.5707963267948966 rad pos: -50.5,-86.5 parent: 2 type: Transform - - uid: 25145 + - uid: 25180 components: - pos: -51.5,-88.5 parent: 2 type: Transform - - uid: 25146 + - uid: 25181 components: - pos: -51.5,-89.5 parent: 2 type: Transform - - uid: 25147 + - uid: 25182 components: - pos: -56.5,-89.5 parent: 2 type: Transform - - uid: 25148 + - uid: 25183 components: - pos: -57.5,-89.5 parent: 2 type: Transform - - uid: 25149 + - uid: 25184 components: - pos: -55.5,-90.5 parent: 2 type: Transform - - uid: 25150 + - uid: 25185 components: - pos: -57.5,-87.5 parent: 2 type: Transform - - uid: 25151 + - uid: 25186 components: - pos: -53.5,-90.5 parent: 2 type: Transform - - uid: 25152 + - uid: 25187 components: - pos: -53.5,-89.5 parent: 2 type: Transform - - uid: 25153 + - uid: 25188 components: - pos: -57.5,-86.5 parent: 2 type: Transform - - uid: 25154 + - uid: 25189 components: - pos: -57.5,-88.5 parent: 2 type: Transform - - uid: 25155 + - uid: 25190 components: - pos: -57.5,-85.5 parent: 2 type: Transform - - uid: 25156 + - uid: 25191 components: - pos: -56.5,-85.5 parent: 2 type: Transform - proto: WallReinforced entities: - - uid: 11235 + - uid: 25192 components: - pos: 70.5,-26.5 parent: 2 type: Transform - - uid: 19823 + - uid: 25193 components: - pos: 64.5,-29.5 parent: 2 type: Transform - - uid: 20345 + - uid: 25194 components: - pos: 64.5,-28.5 parent: 2 type: Transform - - uid: 22851 + - uid: 25195 components: - pos: 66.5,-26.5 parent: 2 type: Transform - - uid: 23078 + - uid: 25196 components: - pos: 67.5,-26.5 parent: 2 type: Transform - - uid: 25157 + - uid: 25197 components: - rot: -1.5707963267948966 rad pos: -48.5,41.5 parent: 2 type: Transform - - uid: 25158 + - uid: 25198 components: - rot: -1.5707963267948966 rad pos: -49.5,41.5 parent: 2 type: Transform - - uid: 25159 + - uid: 25199 components: - rot: -1.5707963267948966 rad pos: -50.5,41.5 parent: 2 type: Transform - - uid: 25160 + - uid: 25200 components: - rot: -1.5707963267948966 rad pos: -50.5,45.5 parent: 2 type: Transform - - uid: 25161 + - uid: 25201 components: - rot: -1.5707963267948966 rad pos: -50.5,46.5 parent: 2 type: Transform - - uid: 25162 + - uid: 25202 components: - rot: -1.5707963267948966 rad pos: -53.5,41.5 parent: 2 type: Transform - - uid: 25163 + - uid: 25203 components: - rot: -1.5707963267948966 rad pos: -52.5,41.5 parent: 2 type: Transform - - uid: 25164 + - uid: 25204 components: - rot: -1.5707963267948966 rad pos: -51.5,41.5 parent: 2 type: Transform - - uid: 25165 + - uid: 25205 components: - rot: -1.5707963267948966 rad pos: -51.5,44.5 parent: 2 type: Transform - - uid: 25166 + - uid: 25206 components: - rot: -1.5707963267948966 rad pos: -52.5,44.5 parent: 2 type: Transform - - uid: 25167 + - uid: 25207 components: - rot: -1.5707963267948966 rad pos: -53.5,44.5 parent: 2 type: Transform - - uid: 25168 + - uid: 25208 components: - rot: -1.5707963267948966 rad pos: -48.5,45.5 parent: 2 type: Transform - - uid: 25169 + - uid: 25209 components: - rot: -1.5707963267948966 rad pos: -43.5,40.5 parent: 2 type: Transform - - uid: 25170 + - uid: 25210 components: - rot: -1.5707963267948966 rad pos: -44.5,40.5 parent: 2 type: Transform - - uid: 25171 + - uid: 25211 components: - rot: 1.5707963267948966 rad pos: 29.5,-64.5 parent: 2 type: Transform - - uid: 25172 + - uid: 25212 components: - rot: 3.141592653589793 rad pos: 34.5,-10.5 parent: 2 type: Transform - - uid: 25173 + - uid: 25213 components: - rot: 3.141592653589793 rad pos: 23.5,-57.5 parent: 2 type: Transform - - uid: 25174 + - uid: 25214 components: - pos: 11.5,-30.5 parent: 2 type: Transform - - uid: 25175 + - uid: 25215 components: - rot: -1.5707963267948966 rad pos: 37.5,3.5 parent: 2 type: Transform - - uid: 25176 + - uid: 25216 components: - pos: 72.5,-42.5 parent: 2 type: Transform - - uid: 25177 + - uid: 25217 components: - pos: 71.5,-42.5 parent: 2 type: Transform - - uid: 25178 + - uid: 25218 components: - rot: -1.5707963267948966 rad pos: 36.5,9.5 parent: 2 type: Transform - - uid: 25179 + - uid: 25219 components: - rot: -1.5707963267948966 rad pos: 0.5,-79.5 parent: 2 type: Transform - - uid: 25180 + - uid: 25220 components: - rot: 3.141592653589793 rad pos: 26.5,-61.5 parent: 2 type: Transform - - uid: 25181 + - uid: 25221 components: - rot: 3.141592653589793 rad pos: 30.5,-9.5 parent: 2 type: Transform - - uid: 25182 + - uid: 25222 components: - rot: 3.141592653589793 rad pos: 33.5,-61.5 parent: 2 type: Transform - - uid: 25183 + - uid: 25223 components: - rot: -1.5707963267948966 rad pos: 65.5,-38.5 parent: 2 type: Transform - - uid: 25184 + - uid: 25224 components: - rot: -1.5707963267948966 rad pos: 37.5,6.5 parent: 2 type: Transform - - uid: 25185 + - uid: 25225 components: - pos: 66.5,-42.5 parent: 2 type: Transform - - uid: 25186 + - uid: 25226 components: - rot: 3.141592653589793 rad pos: 24.5,-61.5 parent: 2 type: Transform - - uid: 25187 + - uid: 25227 components: - pos: 67.5,-42.5 parent: 2 type: Transform - - uid: 25188 + - uid: 25228 components: - rot: -1.5707963267948966 rad pos: 33.5,12.5 parent: 2 type: Transform - - uid: 25189 + - uid: 25229 components: - rot: -1.5707963267948966 rad pos: -25.5,-83.5 parent: 2 type: Transform - - uid: 25190 + - uid: 25230 components: - pos: 30.5,-26.5 parent: 2 type: Transform - - uid: 25191 + - uid: 25231 components: - pos: 19.5,-26.5 parent: 2 type: Transform - - uid: 25192 + - uid: 25232 components: - pos: 18.5,-67.5 parent: 2 type: Transform - - uid: 25193 + - uid: 25233 components: - rot: -1.5707963267948966 rad pos: 34.5,-83.5 parent: 2 type: Transform - - uid: 25194 + - uid: 25234 components: - rot: 3.141592653589793 rad pos: 26.5,24.5 parent: 2 type: Transform - - uid: 25195 + - uid: 25235 components: - pos: -16.5,-80.5 parent: 2 type: Transform - - uid: 25196 + - uid: 25236 components: - pos: -13.5,-80.5 parent: 2 type: Transform - - uid: 25197 + - uid: 25237 components: - rot: 3.141592653589793 rad pos: 31.5,-19.5 parent: 2 type: Transform - - uid: 25198 + - uid: 25238 components: - pos: 38.5,17.5 parent: 2 type: Transform - - uid: 25199 + - uid: 25239 components: - pos: 30.5,9.5 parent: 2 type: Transform - - uid: 25200 + - uid: 25240 components: - pos: -14.5,-80.5 parent: 2 type: Transform - - uid: 25201 + - uid: 25241 components: - pos: -16.5,-74.5 parent: 2 type: Transform - - uid: 25202 + - uid: 25242 components: - pos: -13.5,-75.5 parent: 2 type: Transform - - uid: 25203 + - uid: 25243 components: - rot: -1.5707963267948966 rad pos: -31.5,-80.5 parent: 2 type: Transform - - uid: 25204 + - uid: 25244 components: - pos: -27.5,-84.5 parent: 2 type: Transform - - uid: 25205 + - uid: 25245 components: - pos: -27.5,-85.5 parent: 2 type: Transform - - uid: 25206 + - uid: 25246 components: - rot: -1.5707963267948966 rad pos: -18.5,-83.5 parent: 2 type: Transform - - uid: 25207 + - uid: 25247 components: - pos: -27.5,-90.5 parent: 2 type: Transform - - uid: 25208 + - uid: 25248 components: - rot: -1.5707963267948966 rad pos: 43.5,49.5 parent: 2 type: Transform - - uid: 25209 + - uid: 25249 components: - rot: 3.141592653589793 rad pos: 24.5,24.5 parent: 2 type: Transform - - uid: 25210 + - uid: 25250 components: - rot: 1.5707963267948966 rad pos: 27.5,19.5 parent: 2 type: Transform - - uid: 25211 + - uid: 25251 components: - rot: 1.5707963267948966 rad pos: 33.5,32.5 parent: 2 type: Transform - - uid: 25212 + - uid: 25252 components: - rot: 1.5707963267948966 rad pos: 16.5,15.5 parent: 2 type: Transform - - uid: 25213 + - uid: 25253 components: - rot: 3.141592653589793 rad pos: 39.5,12.5 parent: 2 type: Transform - - uid: 25214 + - uid: 25254 components: - pos: 42.5,51.5 parent: 2 type: Transform - - uid: 25215 + - uid: 25255 components: - pos: -15.5,-2.5 parent: 2 type: Transform - - uid: 25216 + - uid: 25256 components: - pos: -18.5,-86.5 parent: 2 type: Transform - - uid: 25217 + - uid: 25257 components: - pos: -22.5,-48.5 parent: 2 type: Transform - - uid: 25218 + - uid: 25258 components: - pos: 3.5,15.5 parent: 2 type: Transform - - uid: 25219 + - uid: 25259 components: - pos: 29.5,-33.5 parent: 2 type: Transform - - uid: 25220 + - uid: 25260 components: - pos: 7.5,-71.5 parent: 2 type: Transform - - uid: 25221 + - uid: 25261 components: - pos: -1.5,-30.5 parent: 2 type: Transform - - uid: 25222 + - uid: 25262 components: - pos: -23.5,5.5 parent: 2 type: Transform - - uid: 25223 + - uid: 25263 components: - pos: 44.5,-25.5 parent: 2 type: Transform - - uid: 25224 + - uid: 25264 components: - pos: 49.5,-25.5 parent: 2 type: Transform - - uid: 25225 + - uid: 25265 components: - pos: 49.5,-23.5 parent: 2 type: Transform - - uid: 25226 + - uid: 25266 components: - pos: 39.5,-24.5 parent: 2 type: Transform - - uid: 25227 + - uid: 25267 components: - pos: 28.5,-33.5 parent: 2 type: Transform - - uid: 25228 + - uid: 25268 components: - pos: 27.5,26.5 parent: 2 type: Transform - - uid: 25229 + - uid: 25269 components: - pos: 31.5,26.5 parent: 2 type: Transform - - uid: 25230 + - uid: 25270 components: - pos: 31.5,25.5 parent: 2 type: Transform - - uid: 25231 + - uid: 25271 components: - rot: 3.141592653589793 rad pos: 30.5,33.5 parent: 2 type: Transform - - uid: 25232 + - uid: 25272 components: - rot: -1.5707963267948966 rad pos: -2.5,-21.5 parent: 2 type: Transform - - uid: 25233 + - uid: 25273 components: - rot: -1.5707963267948966 rad pos: -0.5,-20.5 parent: 2 type: Transform - - uid: 25234 + - uid: 25274 components: - rot: -1.5707963267948966 rad pos: -2.5,-22.5 parent: 2 type: Transform - - uid: 25235 + - uid: 25275 components: - rot: -1.5707963267948966 rad pos: -0.5,-19.5 parent: 2 type: Transform - - uid: 25236 + - uid: 25276 components: - rot: -1.5707963267948966 rad pos: -1.5,-21.5 parent: 2 type: Transform - - uid: 25237 + - uid: 25277 components: - rot: -1.5707963267948966 rad pos: 4.5,-18.5 parent: 2 type: Transform - - uid: 25238 + - uid: 25278 components: - rot: -1.5707963267948966 rad pos: -0.5,-18.5 parent: 2 type: Transform - - uid: 25239 + - uid: 25279 components: - pos: 19.5,15.5 parent: 2 type: Transform - - uid: 25240 + - uid: 25280 components: - rot: -1.5707963267948966 rad pos: 20.5,-31.5 parent: 2 type: Transform - - uid: 25241 + - uid: 25281 components: - pos: 3.5,18.5 parent: 2 type: Transform - - uid: 25242 + - uid: 25282 components: - pos: 4.5,18.5 parent: 2 type: Transform - - uid: 25243 + - uid: 25283 components: - pos: -15.5,-0.5 parent: 2 type: Transform - - uid: 25244 + - uid: 25284 components: - pos: 13.5,15.5 parent: 2 type: Transform - - uid: 25245 + - uid: 25285 components: - pos: -23.5,-1.5 parent: 2 type: Transform - - uid: 25246 + - uid: 25286 components: - pos: -23.5,-3.5 parent: 2 type: Transform - - uid: 25247 + - uid: 25287 components: - pos: -20.5,-3.5 parent: 2 type: Transform - - uid: 25248 + - uid: 25288 components: - pos: -20.5,-2.5 parent: 2 type: Transform - - uid: 25249 + - uid: 25289 components: - pos: -18.5,-1.5 parent: 2 type: Transform - - uid: 25250 + - uid: 25290 components: - rot: 3.141592653589793 rad pos: 29.5,-20.5 parent: 2 type: Transform - - uid: 25251 + - uid: 25291 components: - rot: -1.5707963267948966 rad pos: 44.5,49.5 parent: 2 type: Transform - - uid: 25252 + - uid: 25292 components: - rot: -1.5707963267948966 rad pos: 43.5,42.5 parent: 2 type: Transform - - uid: 25253 + - uid: 25293 components: - rot: -1.5707963267948966 rad pos: 38.5,42.5 parent: 2 type: Transform - - uid: 25254 + - uid: 25294 components: - rot: -1.5707963267948966 rad pos: 34.5,42.5 parent: 2 type: Transform - - uid: 25255 + - uid: 25295 components: - rot: -1.5707963267948966 rad pos: 33.5,43.5 parent: 2 type: Transform - - uid: 25256 + - uid: 25296 components: - pos: 35.5,50.5 parent: 2 type: Transform - - uid: 25257 + - uid: 25297 components: - pos: 35.5,52.5 parent: 2 type: Transform - - uid: 25258 + - uid: 25298 components: - pos: 36.5,52.5 parent: 2 type: Transform - - uid: 25259 + - uid: 25299 components: - pos: 34.5,48.5 parent: 2 type: Transform - - uid: 25260 + - uid: 25300 components: - pos: -15.5,-1.5 parent: 2 type: Transform - - uid: 25261 + - uid: 25301 components: - rot: -1.5707963267948966 rad pos: 36.5,11.5 parent: 2 type: Transform - - uid: 25262 + - uid: 25302 components: - rot: 3.141592653589793 rad pos: 33.5,-19.5 parent: 2 type: Transform - - uid: 25263 + - uid: 25303 components: - rot: 1.5707963267948966 rad pos: 29.5,-63.5 parent: 2 type: Transform - - uid: 25264 + - uid: 25304 components: - rot: -1.5707963267948966 rad pos: 39.5,3.5 parent: 2 type: Transform - - uid: 25265 + - uid: 25305 components: - rot: -1.5707963267948966 rad pos: 1.5,-76.5 parent: 2 type: Transform - - uid: 25266 + - uid: 25306 components: - rot: 3.141592653589793 rad pos: -15.5,5.5 parent: 2 type: Transform - - uid: 25267 + - uid: 25307 components: - rot: 3.141592653589793 rad pos: 17.5,-21.5 parent: 2 type: Transform - - uid: 25268 + - uid: 25308 components: - rot: 3.141592653589793 rad pos: 17.5,-22.5 parent: 2 type: Transform - - uid: 25269 + - uid: 25309 components: - rot: 3.141592653589793 rad pos: 30.5,-19.5 parent: 2 type: Transform - - uid: 25270 + - uid: 25310 components: - pos: 28.5,-13.5 parent: 2 type: Transform - - uid: 25271 + - uid: 25311 components: - rot: 3.141592653589793 rad pos: 20.5,-20.5 parent: 2 type: Transform - - uid: 25272 + - uid: 25312 components: - rot: 3.141592653589793 rad pos: 17.5,-23.5 parent: 2 type: Transform - - uid: 25273 + - uid: 25313 components: - rot: -1.5707963267948966 rad pos: -0.5,-84.5 parent: 2 type: Transform - - uid: 25274 + - uid: 25314 components: - rot: 3.141592653589793 rad pos: 28.5,-61.5 parent: 2 type: Transform - - uid: 25275 + - uid: 25315 components: - pos: -23.5,1.5 parent: 2 type: Transform - - uid: 25276 + - uid: 25316 components: - pos: 8.5,-71.5 parent: 2 type: Transform - - uid: 25277 + - uid: 25317 components: - pos: 5.5,-80.5 parent: 2 type: Transform - - uid: 25278 + - uid: 25318 components: - rot: -1.5707963267948966 rad pos: 0.5,-77.5 parent: 2 type: Transform - - uid: 25279 + - uid: 25319 components: - pos: -18.5,-2.5 parent: 2 type: Transform - - uid: 25280 + - uid: 25320 components: - rot: -1.5707963267948966 rad pos: 33.5,10.5 parent: 2 type: Transform - - uid: 25281 + - uid: 25321 components: - rot: -1.5707963267948966 rad pos: -28.5,-81.5 parent: 2 type: Transform - - uid: 25282 + - uid: 25322 components: - rot: -1.5707963267948966 rad pos: -19.5,-81.5 parent: 2 type: Transform - - uid: 25283 + - uid: 25323 components: - rot: -1.5707963267948966 rad pos: -24.5,-81.5 parent: 2 type: Transform - - uid: 25284 + - uid: 25324 components: - pos: -13.5,-78.5 parent: 2 type: Transform - - uid: 25285 + - uid: 25325 components: - pos: -21.5,-57.5 parent: 2 type: Transform - - uid: 25286 + - uid: 25326 components: - pos: -21.5,-55.5 parent: 2 type: Transform - - uid: 25287 + - uid: 25327 components: - pos: 29.5,33.5 parent: 2 type: Transform - - uid: 25288 + - uid: 25328 components: - rot: 1.5707963267948966 rad pos: 38.5,-17.5 parent: 2 type: Transform - - uid: 25289 + - uid: 25329 components: - rot: 1.5707963267948966 rad pos: 37.5,-19.5 parent: 2 type: Transform - - uid: 25290 + - uid: 25330 components: - rot: -1.5707963267948966 rad pos: -2.5,-24.5 parent: 2 type: Transform - - uid: 25291 + - uid: 25331 components: - rot: -1.5707963267948966 rad pos: -1.5,-24.5 parent: 2 type: Transform - - uid: 25292 + - uid: 25332 components: - rot: -1.5707963267948966 rad pos: -0.5,-24.5 parent: 2 type: Transform - - uid: 25293 + - uid: 25333 components: - rot: 3.141592653589793 rad pos: 3.5,-18.5 parent: 2 type: Transform - - uid: 25294 + - uid: 25334 components: - rot: -1.5707963267948966 rad pos: 24.5,-37.5 parent: 2 type: Transform - - uid: 25295 + - uid: 25335 components: - pos: 33.5,-28.5 parent: 2 type: Transform - - uid: 25296 + - uid: 25336 components: - pos: 20.5,-34.5 parent: 2 type: Transform - - uid: 25297 + - uid: 25337 components: - pos: 20.5,-33.5 parent: 2 type: Transform - - uid: 25298 + - uid: 25338 components: - pos: 33.5,-29.5 parent: 2 type: Transform - - uid: 25299 + - uid: 25339 components: - pos: 40.5,-30.5 parent: 2 type: Transform - - uid: 25300 + - uid: 25340 components: - pos: 3.5,22.5 parent: 2 type: Transform - - uid: 25301 + - uid: 25341 components: - pos: 40.5,-31.5 parent: 2 type: Transform - - uid: 25302 + - uid: 25342 components: - pos: 40.5,-29.5 parent: 2 type: Transform - - uid: 25303 + - uid: 25343 components: - pos: 32.5,-26.5 parent: 2 type: Transform - - uid: 25304 + - uid: 25344 components: - rot: 3.141592653589793 rad pos: 42.5,17.5 parent: 2 type: Transform - - uid: 25305 + - uid: 25345 components: - pos: 43.5,16.5 parent: 2 type: Transform - - uid: 25306 + - uid: 25346 components: - pos: 43.5,9.5 parent: 2 type: Transform - - uid: 25307 + - uid: 25347 components: - rot: 3.141592653589793 rad pos: 43.5,3.5 parent: 2 type: Transform - - uid: 25308 + - uid: 25348 components: - pos: 28.5,-10.5 parent: 2 type: Transform - - uid: 25309 + - uid: 25349 components: - rot: 3.141592653589793 rad pos: 13.5,-23.5 parent: 2 type: Transform - - uid: 25310 + - uid: 25350 components: - rot: 3.141592653589793 rad pos: 13.5,-20.5 parent: 2 type: Transform - - uid: 25311 + - uid: 25351 components: - rot: 3.141592653589793 rad pos: 13.5,-19.5 parent: 2 type: Transform - - uid: 25312 + - uid: 25352 components: - rot: 3.141592653589793 rad pos: 13.5,-17.5 parent: 2 type: Transform - - uid: 25313 + - uid: 25353 components: - rot: 3.141592653589793 rad pos: 13.5,-16.5 parent: 2 type: Transform - - uid: 25314 + - uid: 25354 components: - rot: 3.141592653589793 rad pos: 13.5,-15.5 parent: 2 type: Transform - - uid: 25315 + - uid: 25355 components: - pos: 25.5,-26.5 parent: 2 type: Transform - - uid: 25316 + - uid: 25356 components: - pos: 21.5,-26.5 parent: 2 type: Transform - - uid: 25317 + - uid: 25357 components: - rot: 1.5707963267948966 rad pos: 33.5,-33.5 parent: 2 type: Transform - - uid: 25318 + - uid: 25358 components: - rot: -1.5707963267948966 rad pos: 38.5,6.5 parent: 2 type: Transform - - uid: 25319 + - uid: 25359 components: - rot: -1.5707963267948966 rad pos: 39.5,6.5 parent: 2 type: Transform - - uid: 25320 + - uid: 25360 components: - rot: -1.5707963267948966 rad pos: 38.5,3.5 parent: 2 type: Transform - - uid: 25321 + - uid: 25361 components: - pos: 29.5,-9.5 parent: 2 type: Transform - - uid: 25322 + - uid: 25362 components: - rot: 3.141592653589793 rad pos: -15.5,-3.5 parent: 2 type: Transform - - uid: 25323 + - uid: 25363 components: - rot: 3.141592653589793 rad pos: -16.5,5.5 parent: 2 type: Transform - - uid: 25324 + - uid: 25364 components: - rot: -1.5707963267948966 rad pos: 36.5,10.5 parent: 2 type: Transform - - uid: 25325 + - uid: 25365 components: - pos: 38.5,-24.5 parent: 2 type: Transform - - uid: 25326 + - uid: 25366 components: - pos: -15.5,-2.5 parent: 2 type: Transform - - uid: 25327 + - uid: 25367 components: - pos: 41.5,52.5 parent: 2 type: Transform - - uid: 25328 + - uid: 25368 components: - rot: -1.5707963267948966 rad pos: 5.5,-24.5 parent: 2 type: Transform - - uid: 25329 + - uid: 25369 components: - rot: 3.141592653589793 rad pos: 27.5,24.5 parent: 2 type: Transform - - uid: 25330 + - uid: 25370 components: - rot: -1.5707963267948966 rad pos: 9.5,23.5 parent: 2 type: Transform - - uid: 25331 + - uid: 25371 components: - pos: -0.5,15.5 parent: 2 type: Transform - - uid: 25332 + - uid: 25372 components: - rot: -1.5707963267948966 rad pos: 5.5,23.5 parent: 2 type: Transform - - uid: 25333 + - uid: 25373 components: - rot: -1.5707963267948966 rad pos: 4.5,23.5 parent: 2 type: Transform - - uid: 25334 + - uid: 25374 components: - rot: -1.5707963267948966 rad pos: 3.5,23.5 parent: 2 type: Transform - - uid: 25335 + - uid: 25375 components: - pos: 42.5,50.5 parent: 2 type: Transform - - uid: 25336 + - uid: 25376 components: - pos: 27.5,-15.5 parent: 2 type: Transform - - uid: 25337 + - uid: 25377 components: - pos: 2.5,22.5 parent: 2 type: Transform - - uid: 25338 + - uid: 25378 components: - pos: 1.5,22.5 parent: 2 type: Transform - - uid: 25339 + - uid: 25379 components: - pos: -2.5,-30.5 parent: 2 type: Transform - - uid: 25340 + - uid: 25380 components: - pos: 1.5,-39.5 parent: 2 type: Transform - - uid: 25341 + - uid: 25381 components: - pos: 5.5,-40.5 parent: 2 type: Transform - - uid: 25342 + - uid: 25382 components: - rot: 3.141592653589793 rad pos: 3.5,12.5 parent: 2 type: Transform - - uid: 25343 + - uid: 25383 components: - rot: -1.5707963267948966 rad pos: 63.5,18.5 parent: 2 type: Transform - - uid: 25344 + - uid: 25384 components: - rot: -1.5707963267948966 rad pos: 30.5,11.5 parent: 2 type: Transform - - uid: 25345 + - uid: 25385 components: - pos: 7.5,-24.5 parent: 2 type: Transform - - uid: 25346 + - uid: 25386 components: - pos: 9.5,-24.5 parent: 2 type: Transform - - uid: 25347 + - uid: 25387 components: - rot: 3.141592653589793 rad pos: 3.5,-24.5 parent: 2 type: Transform - - uid: 25348 + - uid: 25388 components: - pos: 1.5,-29.5 parent: 2 type: Transform - - uid: 25349 + - uid: 25389 components: - pos: 27.5,-14.5 parent: 2 type: Transform - - uid: 25350 + - uid: 25390 components: - rot: -1.5707963267948966 rad pos: -16.5,-57.5 parent: 2 type: Transform - - uid: 25351 + - uid: 25391 components: - rot: 3.141592653589793 rad pos: 23.5,-33.5 parent: 2 type: Transform - - uid: 25352 + - uid: 25392 components: - rot: 3.141592653589793 rad pos: 21.5,-33.5 parent: 2 type: Transform - - uid: 25353 + - uid: 25393 components: - pos: 13.5,-24.5 parent: 2 type: Transform - - uid: 25354 + - uid: 25394 components: - pos: 37.5,-24.5 parent: 2 type: Transform - - uid: 25355 + - uid: 25395 components: - rot: -1.5707963267948966 rad pos: 36.5,12.5 parent: 2 type: Transform - - uid: 25356 + - uid: 25396 components: - pos: 3.5,19.5 parent: 2 type: Transform - - uid: 25357 + - uid: 25397 components: - pos: 3.5,21.5 parent: 2 type: Transform - - uid: 25358 + - uid: 25398 components: - pos: 13.5,19.5 parent: 2 type: Transform - - uid: 25359 + - uid: 25399 components: - pos: 13.5,20.5 parent: 2 type: Transform - - uid: 25360 + - uid: 25400 components: - pos: 13.5,21.5 parent: 2 type: Transform - - uid: 25361 + - uid: 25401 components: - pos: 20.5,-38.5 parent: 2 type: Transform - - uid: 25362 + - uid: 25402 components: - pos: 6.5,-24.5 parent: 2 type: Transform - - uid: 25363 + - uid: 25403 components: - pos: -13.5,-77.5 parent: 2 type: Transform - - uid: 25364 + - uid: 25404 components: - rot: -1.5707963267948966 rad pos: -27.5,-83.5 parent: 2 type: Transform - - uid: 25365 + - uid: 25405 components: - rot: -1.5707963267948966 rad pos: -24.5,-82.5 parent: 2 type: Transform - - uid: 25366 + - uid: 25406 components: - rot: -1.5707963267948966 rad pos: -27.5,-81.5 parent: 2 type: Transform - - uid: 25367 + - uid: 25407 components: - pos: 1.5,-32.5 parent: 2 type: Transform - - uid: 25368 + - uid: 25408 components: - rot: 1.5707963267948966 rad pos: 22.5,25.5 parent: 2 type: Transform - - uid: 25369 + - uid: 25409 components: - rot: -1.5707963267948966 rad pos: 33.5,11.5 parent: 2 type: Transform - - uid: 25370 + - uid: 25410 components: - rot: -1.5707963267948966 rad pos: 30.5,13.5 parent: 2 type: Transform - - uid: 25371 + - uid: 25411 components: - rot: 3.141592653589793 rad pos: 23.5,-55.5 parent: 2 type: Transform - - uid: 25372 + - uid: 25412 components: - rot: 3.141592653589793 rad pos: 23.5,-56.5 parent: 2 type: Transform - - uid: 25373 + - uid: 25413 components: - pos: 18.5,-64.5 parent: 2 type: Transform - - uid: 25374 + - uid: 25414 components: - pos: 15.5,-62.5 parent: 2 type: Transform - - uid: 25375 + - uid: 25415 components: - pos: 15.5,-61.5 parent: 2 type: Transform - - uid: 25376 + - uid: 25416 components: - pos: 17.5,-56.5 parent: 2 type: Transform - - uid: 25377 + - uid: 25417 components: - pos: 15.5,-60.5 parent: 2 type: Transform - - uid: 25378 + - uid: 25418 components: - pos: 15.5,-59.5 parent: 2 type: Transform - - uid: 25379 + - uid: 25419 components: - pos: 16.5,-59.5 parent: 2 type: Transform - - uid: 25380 + - uid: 25420 components: - pos: 16.5,-58.5 parent: 2 type: Transform - - uid: 25381 + - uid: 25421 components: - pos: 16.5,-57.5 parent: 2 type: Transform - - uid: 25382 + - uid: 25422 components: - pos: 16.5,-56.5 parent: 2 type: Transform - - uid: 25383 + - uid: 25423 components: - pos: 17.5,-67.5 parent: 2 type: Transform - - uid: 25384 + - uid: 25424 components: - rot: 3.141592653589793 rad pos: 22.5,24.5 parent: 2 type: Transform - - uid: 25385 + - uid: 25425 components: - rot: 3.141592653589793 rad pos: 27.5,-61.5 parent: 2 type: Transform - - uid: 25386 + - uid: 25426 components: - rot: 1.5707963267948966 rad pos: 32.5,-64.5 parent: 2 type: Transform - - uid: 25387 + - uid: 25427 components: - rot: 3.141592653589793 rad pos: 34.5,-14.5 parent: 2 type: Transform - - uid: 25388 + - uid: 25428 components: - rot: -1.5707963267948966 rad pos: 20.5,-29.5 parent: 2 type: Transform - - uid: 25389 + - uid: 25429 components: - pos: 40.5,-23.5 parent: 2 type: Transform - - uid: 25390 + - uid: 25430 components: - pos: 40.5,-24.5 parent: 2 type: Transform - - uid: 25391 + - uid: 25431 components: - pos: 49.5,-24.5 parent: 2 type: Transform - - uid: 25392 + - uid: 25432 components: - pos: 43.5,-26.5 parent: 2 type: Transform - - uid: 25393 + - uid: 25433 components: - pos: 17.5,-63.5 parent: 2 type: Transform - - uid: 25394 + - uid: 25434 components: - rot: 3.141592653589793 rad pos: 23.5,24.5 parent: 2 type: Transform - - uid: 25395 + - uid: 25435 components: - pos: -2.5,18.5 parent: 2 type: Transform - - uid: 25396 + - uid: 25436 components: - rot: -1.5707963267948966 rad pos: -16.5,-58.5 parent: 2 type: Transform - - uid: 25397 + - uid: 25437 components: - rot: -1.5707963267948966 rad pos: 30.5,10.5 parent: 2 type: Transform - - uid: 25398 + - uid: 25438 components: - pos: 39.5,17.5 parent: 2 type: Transform - - uid: 25399 + - uid: 25439 components: - pos: 37.5,17.5 parent: 2 type: Transform - - uid: 25400 + - uid: 25440 components: - rot: -1.5707963267948966 rad pos: 33.5,18.5 parent: 2 type: Transform - - uid: 25401 + - uid: 25441 components: - rot: -1.5707963267948966 rad pos: 63.5,15.5 parent: 2 type: Transform - - uid: 25402 + - uid: 25442 components: - rot: 1.5707963267948966 rad pos: 27.5,16.5 parent: 2 type: Transform - - uid: 25403 + - uid: 25443 components: - rot: -1.5707963267948966 rad pos: 36.5,3.5 parent: 2 type: Transform - - uid: 25404 + - uid: 25444 components: - rot: 1.5707963267948966 rad pos: 38.5,9.5 parent: 2 type: Transform - - uid: 25405 + - uid: 25445 components: - rot: -1.5707963267948966 rad pos: 36.5,6.5 parent: 2 type: Transform - - uid: 25406 + - uid: 25446 components: - rot: 1.5707963267948966 rad pos: 32.5,-33.5 parent: 2 type: Transform - - uid: 25407 + - uid: 25447 components: - pos: 25.5,-28.5 parent: 2 type: Transform - - uid: 25408 + - uid: 25448 components: - pos: 20.5,-26.5 parent: 2 type: Transform - - uid: 25409 + - uid: 25449 components: - pos: 17.5,-26.5 parent: 2 type: Transform - - uid: 25410 + - uid: 25450 components: - pos: 18.5,-26.5 parent: 2 type: Transform - - uid: 25411 + - uid: 25451 components: - rot: 3.141592653589793 rad pos: 34.5,-15.5 parent: 2 type: Transform - - uid: 25412 + - uid: 25452 components: - rot: 3.141592653589793 rad pos: 37.5,-20.5 parent: 2 type: Transform - - uid: 25413 + - uid: 25453 components: - rot: 3.141592653589793 rad pos: 37.5,-20.5 parent: 2 type: Transform - - uid: 25414 + - uid: 25454 components: - rot: 3.141592653589793 rad pos: 37.5,-23.5 parent: 2 type: Transform - - uid: 25415 + - uid: 25455 components: - rot: 3.141592653589793 rad pos: 40.5,3.5 parent: 2 type: Transform - - uid: 25416 + - uid: 25456 components: - rot: 3.141592653589793 rad pos: 43.5,4.5 parent: 2 type: Transform - - uid: 25417 + - uid: 25457 components: - rot: 3.141592653589793 rad pos: 43.5,12.5 parent: 2 type: Transform - - uid: 25418 + - uid: 25458 components: - pos: 44.5,16.5 parent: 2 type: Transform - - uid: 25419 + - uid: 25459 components: - pos: 43.5,13.5 parent: 2 type: Transform - - uid: 25420 + - uid: 25460 components: - pos: 45.5,16.5 parent: 2 type: Transform - - uid: 25421 + - uid: 25461 components: - pos: 46.5,16.5 parent: 2 type: Transform - - uid: 25422 + - uid: 25462 components: - pos: 46.5,13.5 parent: 2 type: Transform - - uid: 25423 + - uid: 25463 components: - pos: 45.5,13.5 parent: 2 type: Transform - - uid: 25424 + - uid: 25464 components: - rot: 3.141592653589793 rad pos: 21.5,-39.5 parent: 2 type: Transform - - uid: 25425 + - uid: 25465 components: - pos: 20.5,-37.5 parent: 2 type: Transform - - uid: 25426 + - uid: 25466 components: - pos: 30.5,-34.5 parent: 2 type: Transform - - uid: 25427 + - uid: 25467 components: - pos: 30.5,-35.5 parent: 2 type: Transform - - uid: 25428 + - uid: 25468 components: - pos: 30.5,-36.5 parent: 2 type: Transform - - uid: 25429 + - uid: 25469 components: - pos: 30.5,-37.5 parent: 2 type: Transform - - uid: 25430 + - uid: 25470 components: - pos: 24.5,-34.5 parent: 2 type: Transform - - uid: 25431 + - uid: 25471 components: - pos: 30.5,-33.5 parent: 2 type: Transform - - uid: 25432 + - uid: 25472 components: - pos: 24.5,-33.5 parent: 2 type: Transform - - uid: 25433 + - uid: 25473 components: - pos: 24.5,-35.5 parent: 2 type: Transform - - uid: 25434 + - uid: 25474 components: - pos: 21.5,-31.5 parent: 2 type: Transform - - uid: 25435 + - uid: 25475 components: - pos: 28.5,9.5 parent: 2 type: Transform - - uid: 25436 + - uid: 25476 components: - pos: 31.5,9.5 parent: 2 type: Transform - - uid: 25437 + - uid: 25477 components: - pos: 35.5,9.5 parent: 2 type: Transform - - uid: 25438 + - uid: 25478 components: - pos: 35.5,8.5 parent: 2 type: Transform - - uid: 25439 + - uid: 25479 components: - pos: 35.5,6.5 parent: 2 type: Transform - - uid: 25440 + - uid: 25480 components: - pos: 23.5,19.5 parent: 2 type: Transform - - uid: 25441 + - uid: 25481 components: - pos: 17.5,-38.5 parent: 2 type: Transform - - uid: 25442 + - uid: 25482 components: - pos: 33.5,-38.5 parent: 2 type: Transform - - uid: 25443 + - uid: 25483 components: - rot: 3.141592653589793 rad pos: 17.5,-37.5 parent: 2 type: Transform - - uid: 25444 + - uid: 25484 components: - pos: 31.5,22.5 parent: 2 type: Transform - - uid: 25445 + - uid: 25485 components: - pos: 31.5,23.5 parent: 2 type: Transform - - uid: 25446 + - uid: 25486 components: - pos: 31.5,24.5 parent: 2 type: Transform - - uid: 25447 + - uid: 25487 components: - pos: 33.5,26.5 parent: 2 type: Transform - - uid: 25448 + - uid: 25488 components: - pos: 33.5,28.5 parent: 2 type: Transform - - uid: 25449 + - uid: 25489 components: - rot: 3.141592653589793 rad pos: 25.5,27.5 parent: 2 type: Transform - - uid: 25450 + - uid: 25490 components: - pos: 33.5,30.5 parent: 2 type: Transform - - uid: 25451 + - uid: 25491 components: - pos: -2.5,-29.5 parent: 2 type: Transform - - uid: 25452 + - uid: 25492 components: - pos: -2.5,-44.5 parent: 2 type: Transform - - uid: 25453 + - uid: 25493 components: - pos: 19.5,24.5 parent: 2 type: Transform - - uid: 25454 + - uid: 25494 components: - pos: 19.5,18.5 parent: 2 type: Transform - - uid: 25455 + - uid: 25495 components: - pos: 12.5,-35.5 parent: 2 type: Transform - - uid: 25456 + - uid: 25496 components: - pos: 12.5,-30.5 parent: 2 type: Transform - - uid: 25457 + - uid: 25497 components: - pos: 0.5,-28.5 parent: 2 type: Transform - - uid: 25458 + - uid: 25498 components: - pos: -2.5,-28.5 parent: 2 type: Transform - - uid: 25459 + - uid: 25499 components: - pos: -0.5,-28.5 parent: 2 type: Transform - - uid: 25460 + - uid: 25500 components: - pos: -1.5,-28.5 parent: 2 type: Transform - - uid: 25461 + - uid: 25501 components: - pos: 1.5,-28.5 parent: 2 type: Transform - - uid: 25462 + - uid: 25502 components: - pos: 1.5,-34.5 parent: 2 type: Transform - - uid: 25463 + - uid: 25503 components: - rot: -1.5707963267948966 rad pos: 13.5,-36.5 parent: 2 type: Transform - - uid: 25464 + - uid: 25504 components: - rot: -1.5707963267948966 rad pos: 13.5,-38.5 parent: 2 type: Transform - - uid: 25465 + - uid: 25505 components: - rot: -1.5707963267948966 rad pos: -0.5,-21.5 parent: 2 type: Transform - - uid: 25466 + - uid: 25506 components: - rot: -1.5707963267948966 rad pos: 0.5,-18.5 parent: 2 type: Transform - - uid: 25467 + - uid: 25507 components: - rot: -1.5707963267948966 rad pos: 10.5,-18.5 parent: 2 type: Transform - - uid: 25468 + - uid: 25508 components: - rot: -1.5707963267948966 rad pos: 6.5,-18.5 parent: 2 type: Transform - - uid: 25469 + - uid: 25509 components: - pos: -2.5,19.5 parent: 2 type: Transform - - uid: 25470 + - uid: 25510 components: - pos: -2.5,17.5 parent: 2 type: Transform - - uid: 25471 + - uid: 25511 components: - rot: 3.141592653589793 rad pos: 30.5,-20.5 parent: 2 type: Transform - - uid: 25472 + - uid: 25512 components: - pos: -1.5,-40.5 parent: 2 type: Transform - - uid: 25473 + - uid: 25513 components: - pos: 0.5,-40.5 parent: 2 type: Transform - - uid: 25474 + - uid: 25514 components: - pos: -0.5,-40.5 parent: 2 type: Transform - - uid: 25475 + - uid: 25515 components: - rot: 1.5707963267948966 rad pos: 38.5,-18.5 parent: 2 type: Transform - - uid: 25476 + - uid: 25516 components: - rot: 1.5707963267948966 rad pos: 38.5,-16.5 parent: 2 type: Transform - - uid: 25477 + - uid: 25517 components: - rot: 1.5707963267948966 rad pos: 38.5,-19.5 parent: 2 type: Transform - - uid: 25478 + - uid: 25518 components: - rot: 1.5707963267948966 rad pos: 33.5,31.5 parent: 2 type: Transform - - uid: 25479 + - uid: 25519 components: - rot: 1.5707963267948966 rad pos: 33.5,33.5 parent: 2 type: Transform - - uid: 25480 + - uid: 25520 components: - rot: 1.5707963267948966 rad pos: 25.5,31.5 parent: 2 type: Transform - - uid: 25481 + - uid: 25521 components: - rot: 1.5707963267948966 rad pos: 25.5,32.5 parent: 2 type: Transform - - uid: 25482 + - uid: 25522 components: - rot: 1.5707963267948966 rad pos: 25.5,33.5 parent: 2 type: Transform - - uid: 25483 + - uid: 25523 components: - rot: 1.5707963267948966 rad pos: 26.5,33.5 parent: 2 type: Transform - - uid: 25484 + - uid: 25524 components: - rot: 3.141592653589793 rad pos: 28.5,33.5 parent: 2 type: Transform - - uid: 25485 + - uid: 25525 components: - rot: 1.5707963267948966 rad pos: 32.5,33.5 parent: 2 type: Transform - - uid: 25486 + - uid: 25526 components: - pos: 13.5,-39.5 parent: 2 type: Transform - - uid: 25487 + - uid: 25527 components: - rot: -1.5707963267948966 rad pos: 33.5,13.5 parent: 2 type: Transform - - uid: 25488 + - uid: 25528 components: - rot: 1.5707963267948966 rad pos: -17.5,-53.5 parent: 2 type: Transform - - uid: 25489 + - uid: 25529 components: - rot: 1.5707963267948966 rad pos: -19.5,-53.5 parent: 2 type: Transform - - uid: 25490 + - uid: 25530 components: - rot: 1.5707963267948966 rad pos: -20.5,-53.5 parent: 2 type: Transform - - uid: 25491 + - uid: 25531 components: - rot: 1.5707963267948966 rad pos: -21.5,-53.5 parent: 2 type: Transform - - uid: 25492 + - uid: 25532 components: - pos: -21.5,-58.5 parent: 2 type: Transform - - uid: 25493 + - uid: 25533 components: - pos: -21.5,-54.5 parent: 2 type: Transform - - uid: 25494 + - uid: 25534 components: - pos: 33.5,-26.5 parent: 2 type: Transform - - uid: 25495 + - uid: 25535 components: - pos: 26.5,-33.5 parent: 2 type: Transform - - uid: 25496 + - uid: 25536 components: - pos: 27.5,-28.5 parent: 2 type: Transform - - uid: 25497 + - uid: 25537 components: - rot: 1.5707963267948966 rad pos: 20.5,-27.5 parent: 2 type: Transform - - uid: 25498 + - uid: 25538 components: - pos: -22.5,-49.5 parent: 2 type: Transform - - uid: 25499 + - uid: 25539 components: - rot: 1.5707963267948966 rad pos: 17.5,-33.5 parent: 2 type: Transform - - uid: 25500 + - uid: 25540 components: - rot: 3.141592653589793 rad pos: 33.5,-23.5 parent: 2 type: Transform - - uid: 25501 + - uid: 25541 components: - pos: 27.5,-29.5 parent: 2 type: Transform - - uid: 25502 + - uid: 25542 components: - rot: 3.141592653589793 rad pos: 30.5,-40.5 parent: 2 type: Transform - - uid: 25503 + - uid: 25543 components: - pos: 9.5,12.5 parent: 2 type: Transform - - uid: 25504 + - uid: 25544 components: - pos: 8.5,11.5 parent: 2 type: Transform - - uid: 25505 + - uid: 25545 components: - pos: 25.5,-33.5 parent: 2 type: Transform - - uid: 25506 + - uid: 25546 components: - pos: 24.5,-31.5 parent: 2 type: Transform - - uid: 25507 + - uid: 25547 components: - pos: -17.5,-80.5 parent: 2 type: Transform - - uid: 25508 + - uid: 25548 components: - pos: -15.5,-80.5 parent: 2 type: Transform - - uid: 25509 + - uid: 25549 components: - pos: -14.5,-74.5 parent: 2 type: Transform - - uid: 25510 + - uid: 25550 components: - rot: -1.5707963267948966 rad pos: -31.5,-78.5 parent: 2 type: Transform - - uid: 25511 + - uid: 25551 components: - rot: -1.5707963267948966 rad pos: -25.5,-81.5 parent: 2 type: Transform - - uid: 25512 + - uid: 25552 components: - rot: -1.5707963267948966 rad pos: -26.5,-81.5 parent: 2 type: Transform - - uid: 25513 + - uid: 25553 components: - rot: -1.5707963267948966 rad pos: -19.5,-82.5 parent: 2 type: Transform - - uid: 25514 + - uid: 25554 components: - rot: -1.5707963267948966 rad pos: -29.5,-81.5 parent: 2 type: Transform - - uid: 25515 + - uid: 25555 components: - rot: -1.5707963267948966 rad pos: -30.5,-81.5 parent: 2 type: Transform - - uid: 25516 + - uid: 25556 components: - rot: -1.5707963267948966 rad pos: -31.5,-81.5 parent: 2 type: Transform - - uid: 25517 + - uid: 25557 components: - pos: -27.5,-86.5 parent: 2 type: Transform - - uid: 25518 + - uid: 25558 components: - rot: -1.5707963267948966 rad pos: -19.5,-83.5 parent: 2 type: Transform - - uid: 25519 + - uid: 25559 components: - pos: -22.5,-91.5 parent: 2 type: Transform - - uid: 25520 + - uid: 25560 components: - rot: -1.5707963267948966 rad pos: 44.5,-66.5 parent: 2 type: Transform - - uid: 25521 + - uid: 25561 components: - pos: 57.5,-50.5 parent: 2 type: Transform - - uid: 25522 + - uid: 25562 components: - pos: -51.5,-52.5 parent: 2 type: Transform - - uid: 25523 + - uid: 25563 components: - rot: 1.5707963267948966 rad pos: -17.5,-58.5 parent: 2 type: Transform - - uid: 25524 + - uid: 25564 components: - rot: 3.141592653589793 rad pos: 21.5,-20.5 parent: 2 type: Transform - - uid: 25525 + - uid: 25565 components: - pos: 29.5,-26.5 parent: 2 type: Transform - - uid: 25526 + - uid: 25566 components: - rot: 3.141592653589793 rad pos: 33.5,-21.5 parent: 2 type: Transform - - uid: 25527 + - uid: 25567 components: - rot: 3.141592653589793 rad pos: 33.5,-27.5 parent: 2 type: Transform - - uid: 25528 + - uid: 25568 components: - rot: 3.141592653589793 rad pos: 13.5,-18.5 parent: 2 type: Transform - - uid: 25529 + - uid: 25569 components: - rot: 3.141592653589793 rad pos: 41.5,17.5 parent: 2 type: Transform - - uid: 25530 + - uid: 25570 components: - rot: 3.141592653589793 rad pos: 43.5,17.5 parent: 2 type: Transform - - uid: 25531 + - uid: 25571 components: - rot: -1.5707963267948966 rad pos: 27.5,12.5 parent: 2 type: Transform - - uid: 25532 + - uid: 25572 components: - rot: -1.5707963267948966 rad pos: 27.5,13.5 parent: 2 type: Transform - - uid: 25533 + - uid: 25573 components: - rot: -1.5707963267948966 rad pos: 27.5,11.5 parent: 2 type: Transform - - uid: 25534 + - uid: 25574 components: - pos: 14.5,15.5 parent: 2 type: Transform - - uid: 25535 + - uid: 25575 components: - pos: 9.5,15.5 parent: 2 type: Transform - - uid: 25536 + - uid: 25576 components: - pos: 9.5,-71.5 parent: 2 type: Transform - - uid: 25537 + - uid: 25577 components: - pos: 5.5,-78.5 parent: 2 type: Transform - - uid: 25538 + - uid: 25578 components: - rot: 3.141592653589793 rad pos: 30.5,-39.5 parent: 2 type: Transform - - uid: 25539 + - uid: 25579 components: - pos: 28.5,-9.5 parent: 2 type: Transform - - uid: 25540 + - uid: 25580 components: - pos: 31.5,20.5 parent: 2 type: Transform - - uid: 25541 + - uid: 25581 components: - rot: -1.5707963267948966 rad pos: 30.5,12.5 parent: 2 type: Transform - - uid: 25542 + - uid: 25582 components: - pos: 0.5,15.5 parent: 2 type: Transform - - uid: 25543 + - uid: 25583 components: - rot: -1.5707963267948966 rad pos: 9.5,11.5 parent: 2 type: Transform - - uid: 25544 + - uid: 25584 components: - rot: 3.141592653589793 rad pos: 6.5,11.5 parent: 2 type: Transform - - uid: 25545 + - uid: 25585 components: - rot: 1.5707963267948966 rad pos: 3.5,14.5 parent: 2 type: Transform - - uid: 25546 + - uid: 25586 components: - pos: -1.5,15.5 parent: 2 type: Transform - - uid: 25547 + - uid: 25587 components: - pos: 9.5,-2.5 parent: 2 type: Transform - - uid: 25548 + - uid: 25588 components: - rot: 1.5707963267948966 rad pos: 18.5,-33.5 parent: 2 type: Transform - - uid: 25549 + - uid: 25589 components: - rot: 1.5707963267948966 rad pos: 15.5,15.5 parent: 2 type: Transform - - uid: 25550 + - uid: 25590 components: - rot: -1.5707963267948966 rad pos: 63.5,17.5 parent: 2 type: Transform - - uid: 25551 + - uid: 25591 components: - rot: -1.5707963267948966 rad pos: -2.5,-84.5 parent: 2 type: Transform - - uid: 25552 + - uid: 25592 components: - pos: 16.5,-63.5 parent: 2 type: Transform - - uid: 25553 + - uid: 25593 components: - pos: 17.5,-68.5 parent: 2 type: Transform - - uid: 25554 + - uid: 25594 components: - pos: -23.5,0.5 parent: 2 type: Transform - - uid: 25555 + - uid: 25595 components: - pos: 25.5,-29.5 parent: 2 type: Transform - - uid: 25556 + - uid: 25596 components: - pos: -23.5,-2.5 parent: 2 type: Transform - - uid: 25557 + - uid: 25597 components: - rot: 3.141592653589793 rad pos: 33.5,-20.5 parent: 2 type: Transform - - uid: 25558 + - uid: 25598 components: - pos: -23.5,3.5 parent: 2 type: Transform - - uid: 25559 + - uid: 25599 components: - pos: -23.5,4.5 parent: 2 type: Transform - - uid: 25560 + - uid: 25600 components: - pos: -21.5,5.5 parent: 2 type: Transform - - uid: 25561 + - uid: 25601 components: - pos: 49.5,-26.5 parent: 2 type: Transform - - uid: 25562 + - uid: 25602 components: - pos: 47.5,-20.5 parent: 2 type: Transform - - uid: 25563 + - uid: 25603 components: - pos: 44.5,-20.5 parent: 2 type: Transform - - uid: 25564 + - uid: 25604 components: - pos: 43.5,-22.5 parent: 2 type: Transform - - uid: 25565 + - uid: 25605 components: - pos: 43.5,-25.5 parent: 2 type: Transform - - uid: 25566 + - uid: 25606 components: - pos: 43.5,-23.5 parent: 2 type: Transform - - uid: 25567 + - uid: 25607 components: - pos: 43.5,-28.5 parent: 2 type: Transform - - uid: 25568 + - uid: 25608 components: - pos: 1.5,15.5 parent: 2 type: Transform - - uid: 25569 + - uid: 25609 components: - pos: 40.5,-28.5 parent: 2 type: Transform - - uid: 25570 + - uid: 25610 components: - pos: 26.5,26.5 parent: 2 type: Transform - - uid: 25571 + - uid: 25611 components: - pos: 25.5,26.5 parent: 2 type: Transform - - uid: 25572 + - uid: 25612 components: - pos: 25.5,28.5 parent: 2 type: Transform - - uid: 25573 + - uid: 25613 components: - rot: 3.141592653589793 rad pos: 33.5,29.5 parent: 2 type: Transform - - uid: 25574 + - uid: 25614 components: - pos: 25.5,30.5 parent: 2 type: Transform - - uid: 25575 + - uid: 25615 components: - pos: 32.5,26.5 parent: 2 type: Transform - - uid: 25576 + - uid: 25616 components: - rot: -1.5707963267948966 rad pos: 13.5,23.5 parent: 2 type: Transform - - uid: 25577 + - uid: 25617 components: - rot: -1.5707963267948966 rad pos: 8.5,23.5 parent: 2 type: Transform - - uid: 25578 + - uid: 25618 components: - pos: -2.5,-39.5 parent: 2 type: Transform - - uid: 25579 + - uid: 25619 components: - rot: -1.5707963267948966 rad pos: -1.5,-39.5 parent: 2 type: Transform - - uid: 25580 + - uid: 25620 components: - rot: -1.5707963267948966 rad pos: 12.5,-24.5 parent: 2 type: Transform - - uid: 25581 + - uid: 25621 components: - pos: 11.5,-24.5 parent: 2 type: Transform - - uid: 25582 + - uid: 25622 components: - pos: 10.5,-24.5 parent: 2 type: Transform - - uid: 25583 + - uid: 25623 components: - rot: -1.5707963267948966 rad pos: 4.5,-24.5 parent: 2 type: Transform - - uid: 25584 + - uid: 25624 components: - rot: -1.5707963267948966 rad pos: -2.5,-23.5 parent: 2 type: Transform - - uid: 25585 + - uid: 25625 components: - rot: -1.5707963267948966 rad pos: 5.5,-18.5 parent: 2 type: Transform - - uid: 25586 + - uid: 25626 components: - pos: -2.5,21.5 parent: 2 type: Transform - - uid: 25587 + - uid: 25627 components: - pos: -0.5,22.5 parent: 2 type: Transform - - uid: 25588 + - uid: 25628 components: - pos: 0.5,22.5 parent: 2 type: Transform - - uid: 25589 + - uid: 25629 components: - pos: -1.5,22.5 parent: 2 type: Transform - - uid: 25590 + - uid: 25630 components: - pos: -2.5,22.5 parent: 2 type: Transform - - uid: 25591 + - uid: 25631 components: - pos: -2.5,20.5 parent: 2 type: Transform - - uid: 25592 + - uid: 25632 components: - pos: 6.5,-40.5 parent: 2 type: Transform - - uid: 25593 + - uid: 25633 components: - pos: 5.5,-39.5 parent: 2 type: Transform - - uid: 25594 + - uid: 25634 components: - pos: 8.5,18.5 parent: 2 type: Transform - - uid: 25595 + - uid: 25635 components: - rot: 3.141592653589793 rad pos: 27.5,23.5 parent: 2 type: Transform - - uid: 25596 + - uid: 25636 components: - pos: -15.5,4.5 parent: 2 type: Transform - - uid: 25597 + - uid: 25637 components: - pos: -15.5,3.5 parent: 2 type: Transform - - uid: 25598 + - uid: 25638 components: - pos: 9.5,18.5 parent: 2 type: Transform - - uid: 25599 + - uid: 25639 components: - rot: -1.5707963267948966 rad pos: 20.5,-30.5 parent: 2 type: Transform - - uid: 25600 + - uid: 25640 components: - pos: -18.5,-85.5 parent: 2 type: Transform - - uid: 25601 + - uid: 25641 components: - rot: 3.141592653589793 rad pos: 3.5,11.5 parent: 2 type: Transform - - uid: 25602 + - uid: 25642 components: - pos: -2.5,15.5 parent: 2 type: Transform - - uid: 25603 + - uid: 25643 components: - rot: -1.5707963267948966 rad pos: 37.5,42.5 parent: 2 type: Transform - - uid: 25604 + - uid: 25644 components: - rot: 3.141592653589793 rad pos: 62.5,42.5 parent: 2 type: Transform - - uid: 25605 + - uid: 25645 components: - rot: -1.5707963267948966 rad pos: 32.5,43.5 parent: 2 type: Transform - - uid: 25606 + - uid: 25646 components: - rot: 3.141592653589793 rad pos: 18.5,-19.5 parent: 2 type: Transform - - uid: 25607 + - uid: 25647 components: - rot: -1.5707963267948966 rad pos: 42.5,49.5 parent: 2 type: Transform - - uid: 25608 + - uid: 25648 components: - rot: -1.5707963267948966 rad pos: 34.5,43.5 parent: 2 type: Transform - - uid: 25609 + - uid: 25649 components: - pos: -23.5,-0.5 parent: 2 type: Transform - - uid: 25610 + - uid: 25650 components: - rot: -1.5707963267948966 rad pos: 63.5,16.5 parent: 2 type: Transform - - uid: 25611 + - uid: 25651 components: - pos: -20.5,5.5 parent: 2 type: Transform - - uid: 25612 + - uid: 25652 components: - rot: 3.141592653589793 rad pos: 13.5,18.5 parent: 2 type: Transform - - uid: 25613 + - uid: 25653 components: - rot: -1.5707963267948966 rad pos: 64.5,14.5 parent: 2 type: Transform - - uid: 25614 + - uid: 25654 components: - rot: -1.5707963267948966 rad pos: -0.5,-80.5 parent: 2 type: Transform - - uid: 25615 + - uid: 25655 components: - rot: -1.5707963267948966 rad pos: 0.5,-78.5 parent: 2 type: Transform - - uid: 25616 + - uid: 25656 components: - rot: 3.141592653589793 rad pos: -17.5,5.5 parent: 2 type: Transform - - uid: 25617 + - uid: 25657 components: - rot: 3.141592653589793 rad pos: 19.5,-19.5 parent: 2 type: Transform - - uid: 25618 + - uid: 25658 components: - pos: 40.5,52.5 parent: 2 type: Transform - - uid: 25619 + - uid: 25659 components: - rot: 3.141592653589793 rad pos: 23.5,-38.5 parent: 2 type: Transform - - uid: 25620 + - uid: 25660 components: - pos: -29.5,44.5 parent: 2 type: Transform - - uid: 25621 + - uid: 25661 components: - pos: 40.5,17.5 parent: 2 type: Transform - - uid: 25622 + - uid: 25662 components: - pos: -15.5,-74.5 parent: 2 type: Transform - - uid: 25623 + - uid: 25663 components: - rot: 3.141592653589793 rad pos: 30.5,-15.5 parent: 2 type: Transform - - uid: 25624 + - uid: 25664 components: - rot: -1.5707963267948966 rad pos: 27.5,10.5 parent: 2 type: Transform - - uid: 25625 + - uid: 25665 components: - pos: -15.5,1.5 parent: 2 type: Transform - - uid: 25626 + - uid: 25666 components: - pos: -15.5,0.5 parent: 2 type: Transform - - uid: 25627 + - uid: 25667 components: - pos: 38.5,52.5 parent: 2 type: Transform - - uid: 25628 + - uid: 25668 components: - rot: 3.141592653589793 rad pos: 34.5,-13.5 parent: 2 type: Transform - - uid: 25629 + - uid: 25669 components: - pos: 43.5,-20.5 parent: 2 type: Transform - - uid: 25630 + - uid: 25670 components: - rot: 1.5707963267948966 rad pos: 32.5,-63.5 parent: 2 type: Transform - - uid: 25631 + - uid: 25671 components: - pos: 0.5,-39.5 parent: 2 type: Transform - - uid: 25632 + - uid: 25672 components: - pos: 4.5,-39.5 parent: 2 type: Transform - - uid: 25633 + - uid: 25673 components: - pos: 2.5,15.5 parent: 2 type: Transform - - uid: 25634 + - uid: 25674 components: - rot: -1.5707963267948966 rad pos: 25.5,-31.5 parent: 2 type: Transform - - uid: 25635 + - uid: 25675 components: - rot: -1.5707963267948966 rad pos: 14.5,-68.5 parent: 2 type: Transform - - uid: 25636 + - uid: 25676 components: - rot: -1.5707963267948966 rad pos: 20.5,-28.5 parent: 2 type: Transform - - uid: 25637 + - uid: 25677 components: - pos: 7.5,11.5 parent: 2 type: Transform - - uid: 25638 + - uid: 25678 components: - pos: 10.5,15.5 parent: 2 type: Transform - - uid: 25639 + - uid: 25679 components: - rot: -1.5707963267948966 rad pos: 36.5,42.5 parent: 2 type: Transform - - uid: 25640 + - uid: 25680 components: - rot: -1.5707963267948966 rad pos: -0.5,-81.5 parent: 2 type: Transform - - uid: 25641 + - uid: 25681 components: - rot: -1.5707963267948966 rad pos: 37.5,9.5 parent: 2 type: Transform - - uid: 25642 + - uid: 25682 components: - rot: -1.5707963267948966 rad pos: -26.5,-83.5 parent: 2 type: Transform - - uid: 25643 + - uid: 25683 components: - rot: -1.5707963267948966 rad pos: -24.5,-83.5 parent: 2 type: Transform - - uid: 25644 + - uid: 25684 components: - pos: -22.5,5.5 parent: 2 type: Transform - - uid: 25645 + - uid: 25685 components: - rot: -1.5707963267948966 rad pos: 27.5,14.5 parent: 2 type: Transform - - uid: 25646 + - uid: 25686 components: - pos: -29.5,43.5 parent: 2 type: Transform - - uid: 25647 + - uid: 25687 components: - rot: 3.141592653589793 rad pos: 33.5,-22.5 parent: 2 type: Transform - - uid: 25648 + - uid: 25688 components: - rot: 3.141592653589793 rad pos: 20.5,24.5 parent: 2 type: Transform - - uid: 25649 + - uid: 25689 components: - rot: 1.5707963267948966 rad pos: 7.5,-18.5 parent: 2 type: Transform - - uid: 25650 + - uid: 25690 components: - rot: -1.5707963267948966 rad pos: 10.5,23.5 parent: 2 type: Transform - - uid: 25651 + - uid: 25691 components: - rot: -1.5707963267948966 rad pos: 27.5,15.5 parent: 2 type: Transform - - uid: 25652 + - uid: 25692 components: - pos: -15.5,3.5 parent: 2 type: Transform - - uid: 25653 + - uid: 25693 components: - rot: -1.5707963267948966 rad pos: -31.5,-76.5 parent: 2 type: Transform - - uid: 25654 + - uid: 25694 components: - pos: -18.5,-80.5 parent: 2 type: Transform - - uid: 25655 + - uid: 25695 components: - rot: -1.5707963267948966 rad pos: 12.5,-68.5 parent: 2 type: Transform - - uid: 25656 + - uid: 25696 components: - rot: -1.5707963267948966 rad pos: 14.5,18.5 parent: 2 type: Transform - - uid: 25657 + - uid: 25697 components: - pos: 27.5,25.5 parent: 2 type: Transform - - uid: 25658 + - uid: 25698 components: - rot: -1.5707963267948966 rad pos: 12.5,23.5 parent: 2 type: Transform - - uid: 25659 + - uid: 25699 components: - rot: -1.5707963267948966 rad pos: 11.5,23.5 parent: 2 type: Transform - - uid: 25660 + - uid: 25700 components: - pos: -13.5,-74.5 parent: 2 type: Transform - - uid: 25661 + - uid: 25701 components: - pos: -13.5,-79.5 parent: 2 type: Transform - - uid: 25662 + - uid: 25702 components: - pos: -19.5,-80.5 parent: 2 type: Transform - - uid: 25663 + - uid: 25703 components: - pos: -13.5,-76.5 parent: 2 type: Transform - - uid: 25664 + - uid: 25704 components: - pos: 9.5,20.5 parent: 2 type: Transform - - uid: 25665 + - uid: 25705 components: - rot: -1.5707963267948966 rad pos: 13.5,-68.5 parent: 2 type: Transform - - uid: 25666 + - uid: 25706 components: - pos: -18.5,-50.5 parent: 2 type: Transform - - uid: 25667 + - uid: 25707 components: - rot: -1.5707963267948966 rad pos: -16.5,-53.5 parent: 2 type: Transform - - uid: 25668 + - uid: 25708 components: - rot: 3.141592653589793 rad pos: 33.5,-37.5 parent: 2 type: Transform - - uid: 25669 + - uid: 25709 components: - rot: 3.141592653589793 rad pos: 34.5,-11.5 parent: 2 type: Transform - - uid: 25670 + - uid: 25710 components: - rot: 3.141592653589793 rad pos: 34.5,-12.5 parent: 2 type: Transform - - uid: 25671 + - uid: 25711 components: - pos: -16.5,-54.5 parent: 2 type: Transform - - uid: 25672 + - uid: 25712 components: - rot: 3.141592653589793 rad pos: 34.5,-9.5 parent: 2 type: Transform - - uid: 25673 + - uid: 25713 components: - rot: 3.141592653589793 rad pos: 33.5,-9.5 parent: 2 type: Transform - - uid: 25674 + - uid: 25714 components: - rot: -1.5707963267948966 rad pos: -16.5,-55.5 parent: 2 type: Transform - - uid: 25675 + - uid: 25715 components: - pos: 19.5,-56.5 parent: 2 type: Transform - - uid: 25676 + - uid: 25716 components: - pos: -21.5,-56.5 parent: 2 type: Transform - - uid: 25677 + - uid: 25717 components: - pos: 33.5,48.5 parent: 2 type: Transform - - uid: 25678 + - uid: 25718 components: - pos: 31.5,-26.5 parent: 2 type: Transform - - uid: 25679 + - uid: 25719 components: - pos: 11.5,15.5 parent: 2 type: Transform - - uid: 25680 + - uid: 25720 components: - rot: 3.141592653589793 rad pos: 17.5,-19.5 parent: 2 type: Transform - - uid: 25681 + - uid: 25721 components: - pos: -2.5,-38.5 parent: 2 type: Transform - - uid: 25682 + - uid: 25722 components: - rot: -1.5707963267948966 rad pos: 63.5,14.5 parent: 2 type: Transform - - uid: 25683 + - uid: 25723 components: - pos: 12.5,-36.5 parent: 2 type: Transform - - uid: 25684 + - uid: 25724 components: - rot: 3.141592653589793 rad pos: 27.5,33.5 parent: 2 type: Transform - - uid: 25685 + - uid: 25725 components: - pos: 35.5,51.5 parent: 2 type: Transform - - uid: 25686 + - uid: 25726 components: - pos: 5.5,-79.5 parent: 2 type: Transform - - uid: 25687 + - uid: 25727 components: - pos: 33.5,-30.5 parent: 2 type: Transform - - uid: 25688 + - uid: 25728 components: - pos: 28.5,-12.5 parent: 2 type: Transform - - uid: 25689 + - uid: 25729 components: - rot: 3.141592653589793 rad pos: 17.5,-20.5 parent: 2 type: Transform - - uid: 25690 + - uid: 25730 components: - pos: 37.5,52.5 parent: 2 type: Transform - - uid: 25691 + - uid: 25731 components: - pos: 29.5,-15.5 parent: 2 type: Transform - - uid: 25692 + - uid: 25732 components: - rot: 3.141592653589793 rad pos: 32.5,-19.5 parent: 2 type: Transform - - uid: 25693 + - uid: 25733 components: - rot: 3.141592653589793 rad pos: -18.5,-3.5 parent: 2 type: Transform - - uid: 25694 + - uid: 25734 components: - rot: 3.141592653589793 rad pos: 19.5,-55.5 parent: 2 type: Transform - - uid: 25695 + - uid: 25735 components: - rot: -1.5707963267948966 rad pos: 35.5,42.5 parent: 2 type: Transform - - uid: 25696 + - uid: 25736 components: - rot: 3.141592653589793 rad pos: -18.5,5.5 parent: 2 type: Transform - - uid: 25697 + - uid: 25737 components: - pos: 35.5,5.5 parent: 2 type: Transform - - uid: 25698 + - uid: 25738 components: - pos: 35.5,3.5 parent: 2 type: Transform - - uid: 25699 + - uid: 25739 components: - pos: 33.5,9.5 parent: 2 type: Transform - - uid: 25700 + - uid: 25740 components: - pos: 27.5,9.5 parent: 2 type: Transform - - uid: 25701 + - uid: 25741 components: - rot: 3.141592653589793 rad pos: 29.5,-40.5 parent: 2 type: Transform - - uid: 25702 + - uid: 25742 components: - rot: 3.141592653589793 rad pos: 24.5,-38.5 parent: 2 type: Transform - - uid: 25703 + - uid: 25743 components: - pos: 30.5,-38.5 parent: 2 type: Transform - - uid: 25704 + - uid: 25744 components: - rot: 3.141592653589793 rad pos: 25.5,-61.5 parent: 2 type: Transform - - uid: 25705 + - uid: 25745 components: - rot: -1.5707963267948966 rad pos: 7.5,23.5 parent: 2 type: Transform - - uid: 25706 + - uid: 25746 components: - rot: -1.5707963267948966 rad pos: 6.5,23.5 parent: 2 type: Transform - - uid: 25707 + - uid: 25747 components: - pos: 9.5,22.5 parent: 2 type: Transform - - uid: 25708 + - uid: 25748 components: - pos: 9.5,21.5 parent: 2 type: Transform - - uid: 25709 + - uid: 25749 components: - rot: 3.141592653589793 rad pos: 36.5,13.5 parent: 2 type: Transform - - uid: 25710 + - uid: 25750 components: - pos: 3.5,20.5 parent: 2 type: Transform - - uid: 25711 + - uid: 25751 components: - pos: 8.5,-24.5 parent: 2 type: Transform - - uid: 25712 + - uid: 25752 components: - pos: 12.5,-31.5 parent: 2 type: Transform - - uid: 25713 + - uid: 25753 components: - pos: 1.5,-33.5 parent: 2 type: Transform - - uid: 25714 + - uid: 25754 components: - pos: -18.5,-87.5 parent: 2 type: Transform - - uid: 25715 + - uid: 25755 components: - pos: 28.5,-11.5 parent: 2 type: Transform - - uid: 25716 + - uid: 25756 components: - pos: 13.5,-22.5 parent: 2 type: Transform - - uid: 25717 + - uid: 25757 components: - pos: 12.5,-18.5 parent: 2 type: Transform - - uid: 25718 + - uid: 25758 components: - pos: 5.5,-82.5 parent: 2 type: Transform - - uid: 25719 + - uid: 25759 components: - pos: 12.5,-69.5 parent: 2 type: Transform - - uid: 25720 + - uid: 25760 components: - pos: 23.5,-31.5 parent: 2 type: Transform - - uid: 25721 + - uid: 25761 components: - pos: 27.5,-27.5 parent: 2 type: Transform - - uid: 25722 + - uid: 25762 components: - pos: -6.5,-44.5 parent: 2 type: Transform - - uid: 25723 + - uid: 25763 components: - rot: 1.5707963267948966 rad pos: -18.5,-53.5 parent: 2 type: Transform - - uid: 25724 + - uid: 25764 components: - pos: -2.5,-37.5 parent: 2 type: Transform - - uid: 25725 + - uid: 25765 components: - pos: 13.5,-40.5 parent: 2 type: Transform - - uid: 25726 + - uid: 25766 components: - pos: 12.5,-40.5 parent: 2 type: Transform - - uid: 25727 + - uid: 25767 components: - pos: 10.5,-40.5 parent: 2 type: Transform - - uid: 25728 + - uid: 25768 components: - pos: 11.5,-40.5 parent: 2 type: Transform - - uid: 25729 + - uid: 25769 components: - pos: -1.5,-36.5 parent: 2 type: Transform - - uid: 25730 + - uid: 25770 components: - pos: 27.5,-13.5 parent: 2 type: Transform - - uid: 25731 + - uid: 25771 components: - rot: 1.5707963267948966 rad pos: 12.5,15.5 parent: 2 type: Transform - - uid: 25732 + - uid: 25772 components: - rot: 3.141592653589793 rad pos: 31.5,-9.5 parent: 2 type: Transform - - uid: 25733 + - uid: 25773 components: - pos: 28.5,-15.5 parent: 2 type: Transform - - uid: 25734 + - uid: 25774 components: - pos: 42.5,52.5 parent: 2 type: Transform - - uid: 25735 + - uid: 25775 components: - rot: 3.141592653589793 rad pos: 20.5,-19.5 parent: 2 type: Transform - - uid: 25736 + - uid: 25776 components: - pos: -18.5,-84.5 parent: 2 type: Transform - - uid: 25737 + - uid: 25777 components: - pos: -20.5,-1.5 parent: 2 type: Transform - - uid: 25738 + - uid: 25778 components: - rot: -1.5707963267948966 rad pos: 0.5,-76.5 parent: 2 type: Transform - - uid: 25739 + - uid: 25779 components: - rot: 1.5707963267948966 rad pos: 3.5,13.5 parent: 2 type: Transform - - uid: 25740 + - uid: 25780 components: - pos: 18.5,18.5 parent: 2 type: Transform - - uid: 25741 + - uid: 25781 components: - rot: -1.5707963267948966 rad pos: -0.5,-83.5 parent: 2 type: Transform - - uid: 25742 + - uid: 25782 components: - rot: -1.5707963267948966 rad pos: 0.5,-80.5 parent: 2 type: Transform - - uid: 25743 + - uid: 25783 components: - pos: 15.5,-63.5 parent: 2 type: Transform - - uid: 25744 + - uid: 25784 components: - pos: 17.5,-64.5 parent: 2 type: Transform - - uid: 25745 + - uid: 25785 components: - pos: 49.5,-21.5 parent: 2 type: Transform - - uid: 25746 + - uid: 25786 components: - pos: 45.5,-20.5 parent: 2 type: Transform - - uid: 25747 + - uid: 25787 components: - pos: 46.5,-20.5 parent: 2 type: Transform - - uid: 25748 + - uid: 25788 components: - pos: 43.5,-29.5 parent: 2 type: Transform - - uid: 25749 + - uid: 25789 components: - pos: 43.5,-30.5 parent: 2 type: Transform - - uid: 25750 + - uid: 25790 components: - pos: 43.5,-31.5 parent: 2 type: Transform - - uid: 25751 + - uid: 25791 components: - pos: 44.5,-31.5 parent: 2 type: Transform - - uid: 25752 + - uid: 25792 components: - pos: 49.5,-31.5 parent: 2 type: Transform - - uid: 25753 + - uid: 25793 components: - pos: 49.5,-30.5 parent: 2 type: Transform - - uid: 25754 + - uid: 25794 components: - pos: 49.5,-29.5 parent: 2 type: Transform - - uid: 25755 + - uid: 25795 components: - pos: 49.5,-28.5 parent: 2 type: Transform - - uid: 25756 + - uid: 25796 components: - pos: 48.5,-20.5 parent: 2 type: Transform - - uid: 25757 + - uid: 25797 components: - pos: 48.5,-31.5 parent: 2 type: Transform - - uid: 25758 + - uid: 25798 components: - pos: 47.5,-31.5 parent: 2 type: Transform - - uid: 25759 + - uid: 25799 components: - pos: 46.5,-31.5 parent: 2 type: Transform - - uid: 25760 + - uid: 25800 components: - pos: 45.5,-31.5 parent: 2 type: Transform - - uid: 25761 + - uid: 25801 components: - pos: 49.5,-27.5 parent: 2 type: Transform - - uid: 25762 + - uid: 25802 components: - pos: 49.5,-20.5 parent: 2 type: Transform - - uid: 25763 + - uid: 25803 components: - pos: 43.5,-21.5 parent: 2 type: Transform - - uid: 25764 + - uid: 25804 components: - pos: 49.5,-22.5 parent: 2 type: Transform - - uid: 25765 + - uid: 25805 components: - pos: 48.5,-26.5 parent: 2 type: Transform - - uid: 25766 + - uid: 25806 components: - pos: 47.5,-26.5 parent: 2 type: Transform - - uid: 25767 + - uid: 25807 components: - rot: -1.5707963267948966 rad pos: 46.5,-25.5 parent: 2 type: Transform - - uid: 25768 + - uid: 25808 components: - rot: -1.5707963267948966 rad pos: 45.5,-25.5 parent: 2 type: Transform - - uid: 25769 + - uid: 25809 components: - rot: -1.5707963267948966 rad pos: 46.5,-26.5 parent: 2 type: Transform - - uid: 25770 + - uid: 25810 components: - rot: 3.141592653589793 rad pos: 47.5,3.5 parent: 2 type: Transform - - uid: 25771 + - uid: 25811 components: - pos: -27.5,-91.5 parent: 2 type: Transform - - uid: 25772 + - uid: 25812 components: - pos: -18.5,-90.5 parent: 2 type: Transform - - uid: 25773 + - uid: 25813 components: - pos: -18.5,-91.5 parent: 2 type: Transform - - uid: 25774 + - uid: 25814 components: - pos: -19.5,-91.5 parent: 2 type: Transform - - uid: 25775 + - uid: 25815 components: - pos: -23.5,-91.5 parent: 2 type: Transform - - uid: 25776 + - uid: 25816 components: - pos: -26.5,-91.5 parent: 2 type: Transform - - uid: 25777 + - uid: 25817 components: - pos: -27.5,-87.5 parent: 2 type: Transform - - uid: 25778 + - uid: 25818 components: - pos: 7.5,-37.5 parent: 2 type: Transform - - uid: 25779 + - uid: 25819 components: - rot: 1.5707963267948966 rad pos: 15.5,28.5 parent: 2 type: Transform - - uid: 25780 + - uid: 25820 components: - pos: 5.5,30.5 parent: 2 type: Transform - - uid: 25781 + - uid: 25821 components: - pos: 18.5,24.5 parent: 2 type: Transform - - uid: 25782 + - uid: 25822 components: - pos: 17.5,24.5 parent: 2 type: Transform - - uid: 25783 + - uid: 25823 components: - pos: 16.5,24.5 parent: 2 type: Transform - - uid: 25784 + - uid: 25824 components: - pos: 15.5,24.5 parent: 2 type: Transform - - uid: 25785 + - uid: 25825 components: - pos: 13.5,24.5 parent: 2 type: Transform - - uid: 25786 + - uid: 25826 components: - rot: 1.5707963267948966 rad pos: 15.5,29.5 parent: 2 type: Transform - - uid: 25787 + - uid: 25827 components: - pos: 44.5,-32.5 parent: 2 type: Transform - - uid: 25788 + - uid: 25828 components: - pos: 49.5,44.5 parent: 2 type: Transform - - uid: 25789 + - uid: 25829 components: - pos: 19.5,30.5 parent: 2 type: Transform - - uid: 25790 + - uid: 25830 components: - pos: 19.5,29.5 parent: 2 type: Transform - - uid: 25791 + - uid: 25831 components: - pos: 19.5,28.5 parent: 2 type: Transform - - uid: 25792 + - uid: 25832 components: - pos: 19.5,27.5 parent: 2 type: Transform - - uid: 25793 + - uid: 25833 components: - rot: 1.5707963267948966 rad pos: 20.5,26.5 parent: 2 type: Transform - - uid: 25794 + - uid: 25834 components: - rot: 1.5707963267948966 rad pos: 19.5,26.5 parent: 2 type: Transform - - uid: 25795 + - uid: 25835 components: - rot: 1.5707963267948966 rad pos: 21.5,26.5 parent: 2 type: Transform - - uid: 25796 + - uid: 25836 components: - rot: 1.5707963267948966 rad pos: 22.5,26.5 parent: 2 type: Transform - - uid: 25797 + - uid: 25837 components: - pos: 3.5,31.5 parent: 2 type: Transform - - uid: 25798 + - uid: 25838 components: - pos: 4.5,30.5 parent: 2 type: Transform - - uid: 25799 + - uid: 25839 components: - pos: 3.5,33.5 parent: 2 type: Transform - - uid: 25800 + - uid: 25840 components: - pos: 11.5,29.5 parent: 2 type: Transform - - uid: 25801 + - uid: 25841 components: - pos: 11.5,35.5 parent: 2 type: Transform - - uid: 25802 + - uid: 25842 components: - pos: 9.5,29.5 parent: 2 type: Transform - - uid: 25803 + - uid: 25843 components: - pos: 4.5,31.5 parent: 2 type: Transform - - uid: 25804 + - uid: 25844 components: - pos: 11.5,33.5 parent: 2 type: Transform - - uid: 25805 + - uid: 25845 components: - pos: 6.5,35.5 parent: 2 type: Transform - - uid: 25806 + - uid: 25846 components: - pos: 66.5,4.5 parent: 2 type: Transform - - uid: 25807 + - uid: 25847 components: - pos: 66.5,5.5 parent: 2 type: Transform - - uid: 25808 + - uid: 25848 components: - pos: 66.5,3.5 parent: 2 type: Transform - - uid: 25809 + - uid: 25849 components: - pos: 66.5,2.5 parent: 2 type: Transform - - uid: 25810 + - uid: 25850 components: - pos: 66.5,1.5 parent: 2 type: Transform - - uid: 25811 + - uid: 25851 components: - rot: 1.5707963267948966 rad pos: 14.5,26.5 parent: 2 type: Transform - - uid: 25812 + - uid: 25852 components: - rot: 1.5707963267948966 rad pos: 15.5,26.5 parent: 2 type: Transform - - uid: 25813 + - uid: 25853 components: - rot: 1.5707963267948966 rad pos: 15.5,27.5 parent: 2 type: Transform - - uid: 25814 + - uid: 25854 components: - rot: 1.5707963267948966 rad pos: 13.5,26.5 parent: 2 type: Transform - - uid: 25815 + - uid: 25855 components: - rot: 1.5707963267948966 rad pos: 12.5,26.5 parent: 2 type: Transform - - uid: 25816 + - uid: 25856 components: - rot: 1.5707963267948966 rad pos: 11.5,26.5 parent: 2 type: Transform - - uid: 25817 + - uid: 25857 components: - rot: 1.5707963267948966 rad pos: 10.5,26.5 parent: 2 type: Transform - - uid: 25818 + - uid: 25858 components: - rot: 1.5707963267948966 rad pos: 10.5,25.5 parent: 2 type: Transform - - uid: 25819 + - uid: 25859 components: - rot: 1.5707963267948966 rad pos: 9.5,25.5 parent: 2 type: Transform - - uid: 25820 + - uid: 25860 components: - rot: 1.5707963267948966 rad pos: 8.5,25.5 parent: 2 type: Transform - - uid: 25821 + - uid: 25861 components: - rot: 1.5707963267948966 rad pos: 7.5,25.5 parent: 2 type: Transform - - uid: 25822 + - uid: 25862 components: - rot: 1.5707963267948966 rad pos: 5.5,25.5 parent: 2 type: Transform - - uid: 25823 + - uid: 25863 components: - rot: 1.5707963267948966 rad pos: 3.5,25.5 parent: 2 type: Transform - - uid: 25824 + - uid: 25864 components: - rot: 1.5707963267948966 rad pos: 18.5,30.5 parent: 2 type: Transform - - uid: 25825 + - uid: 25865 components: - rot: 1.5707963267948966 rad pos: 15.5,30.5 parent: 2 type: Transform - - uid: 25826 + - uid: 25866 components: - rot: 1.5707963267948966 rad pos: 14.5,30.5 parent: 2 type: Transform - - uid: 25827 + - uid: 25867 components: - rot: 1.5707963267948966 rad pos: 14.5,31.5 parent: 2 type: Transform - - uid: 25828 + - uid: 25868 components: - rot: 1.5707963267948966 rad pos: 13.5,31.5 parent: 2 type: Transform - - uid: 25829 + - uid: 25869 components: - pos: 49.5,50.5 parent: 2 type: Transform - - uid: 25830 + - uid: 25870 components: - rot: 1.5707963267948966 rad pos: 14.5,33.5 parent: 2 type: Transform - - uid: 25831 + - uid: 25871 components: - rot: 1.5707963267948966 rad pos: 13.5,33.5 parent: 2 type: Transform - - uid: 25832 + - uid: 25872 components: - pos: -1.5,26.5 parent: 2 type: Transform - - uid: 25833 + - uid: 25873 components: - pos: 59.5,41.5 parent: 2 type: Transform - - uid: 25834 + - uid: 25874 components: - rot: 1.5707963267948966 rad pos: 14.5,34.5 parent: 2 type: Transform - - uid: 25835 + - uid: 25875 components: - rot: 1.5707963267948966 rad pos: 18.5,31.5 parent: 2 type: Transform - - uid: 25836 + - uid: 25876 components: - pos: 10.5,29.5 parent: 2 type: Transform - - uid: 25837 + - uid: 25877 components: - pos: 11.5,34.5 parent: 2 type: Transform - - uid: 25838 + - uid: 25878 components: - pos: 5.5,35.5 parent: 2 type: Transform - - uid: 25839 + - uid: 25879 components: - pos: 18.5,34.5 parent: 2 type: Transform - - uid: 25840 + - uid: 25880 components: - pos: 10.5,35.5 parent: 2 type: Transform - - uid: 25841 + - uid: 25881 components: - pos: 11.5,30.5 parent: 2 type: Transform - - uid: 25842 + - uid: 25882 components: - pos: 1.5,25.5 parent: 2 type: Transform - - uid: 25843 + - uid: 25883 components: - pos: 0.5,25.5 parent: 2 type: Transform - - uid: 25844 + - uid: 25884 components: - pos: -0.5,25.5 parent: 2 type: Transform - - uid: 25845 + - uid: 25885 components: - pos: -1.5,25.5 parent: 2 type: Transform - - uid: 25846 + - uid: 25886 components: - pos: -1.5,28.5 parent: 2 type: Transform - - uid: 25847 + - uid: 25887 components: - pos: -3.5,25.5 parent: 2 type: Transform - - uid: 25848 + - uid: 25888 components: - pos: -3.5,24.5 parent: 2 type: Transform - - uid: 25849 + - uid: 25889 components: - pos: 59.5,48.5 parent: 2 type: Transform - - uid: 25850 + - uid: 25890 components: - pos: 34.5,26.5 parent: 2 type: Transform - - uid: 25851 + - uid: 25891 components: - pos: 34.5,25.5 parent: 2 type: Transform - - uid: 25852 + - uid: 25892 components: - pos: 34.5,24.5 parent: 2 type: Transform - - uid: 25853 + - uid: 25893 components: - rot: -1.5707963267948966 rad pos: 37.5,21.5 parent: 2 type: Transform - - uid: 25854 + - uid: 25894 components: - pos: 36.5,21.5 parent: 2 type: Transform - - uid: 25855 + - uid: 25895 components: - pos: 33.5,21.5 parent: 2 type: Transform - - uid: 25856 + - uid: 25896 components: - pos: 33.5,20.5 parent: 2 type: Transform - - uid: 25857 + - uid: 25897 components: - rot: -1.5707963267948966 rad pos: 37.5,22.5 parent: 2 type: Transform - - uid: 25858 + - uid: 25898 components: - rot: -1.5707963267948966 rad pos: 38.5,22.5 parent: 2 type: Transform - - uid: 25859 + - uid: 25899 components: - pos: 35.5,21.5 parent: 2 type: Transform - - uid: 25860 + - uid: 25900 components: - rot: -1.5707963267948966 rad pos: 37.5,19.5 parent: 2 type: Transform - - uid: 25861 + - uid: 25901 components: - rot: -1.5707963267948966 rad pos: 39.5,22.5 parent: 2 type: Transform - - uid: 25862 + - uid: 25902 components: - rot: -1.5707963267948966 rad pos: 40.5,22.5 parent: 2 type: Transform - - uid: 25863 + - uid: 25903 components: - rot: -1.5707963267948966 rad pos: 37.5,18.5 parent: 2 type: Transform - - uid: 25864 + - uid: 25904 components: - rot: 3.141592653589793 rad pos: 35.5,24.5 parent: 2 type: Transform - - uid: 25865 + - uid: 25905 components: - rot: 3.141592653589793 rad pos: 37.5,24.5 parent: 2 type: Transform - - uid: 25866 + - uid: 25906 components: - rot: -1.5707963267948966 rad pos: 39.5,24.5 parent: 2 type: Transform - - uid: 25867 + - uid: 25907 components: - rot: -1.5707963267948966 rad pos: 46.5,25.5 parent: 2 type: Transform - - uid: 25868 + - uid: 25908 components: - rot: -1.5707963267948966 rad pos: 61.5,25.5 parent: 2 type: Transform - - uid: 25869 + - uid: 25909 components: - rot: -1.5707963267948966 rad pos: 59.5,25.5 parent: 2 type: Transform - - uid: 25870 + - uid: 25910 components: - rot: -1.5707963267948966 rad pos: 58.5,25.5 parent: 2 type: Transform - - uid: 25871 + - uid: 25911 components: - rot: -1.5707963267948966 rad pos: 47.5,25.5 parent: 2 type: Transform - - uid: 25872 + - uid: 25912 components: - rot: -1.5707963267948966 rad pos: 60.5,25.5 parent: 2 type: Transform - - uid: 25873 + - uid: 25913 components: - rot: -1.5707963267948966 rad pos: 57.5,25.5 parent: 2 type: Transform - - uid: 25874 + - uid: 25914 components: - rot: -1.5707963267948966 rad pos: 54.5,25.5 parent: 2 type: Transform - - uid: 25875 + - uid: 25915 components: - rot: -1.5707963267948966 rad pos: 50.5,25.5 parent: 2 type: Transform - - uid: 25876 + - uid: 25916 components: - rot: -1.5707963267948966 rad pos: 45.5,25.5 parent: 2 type: Transform - - uid: 25877 + - uid: 25917 components: - rot: -1.5707963267948966 rad pos: 45.5,24.5 parent: 2 type: Transform - - uid: 25878 + - uid: 25918 components: - rot: -1.5707963267948966 rad pos: 45.5,23.5 parent: 2 type: Transform - - uid: 25879 + - uid: 25919 components: - rot: -1.5707963267948966 rad pos: 56.5,25.5 parent: 2 type: Transform - - uid: 25880 + - uid: 25920 components: - rot: -1.5707963267948966 rad pos: 55.5,25.5 parent: 2 type: Transform - - uid: 25881 + - uid: 25921 components: - rot: -1.5707963267948966 rad pos: 49.5,25.5 parent: 2 type: Transform - - uid: 25882 + - uid: 25922 components: - rot: -1.5707963267948966 rad pos: 48.5,25.5 parent: 2 type: Transform - - uid: 25883 + - uid: 25923 components: - rot: -1.5707963267948966 rad pos: 53.5,25.5 parent: 2 type: Transform - - uid: 25884 + - uid: 25924 components: - rot: -1.5707963267948966 rad pos: 62.5,25.5 parent: 2 type: Transform - - uid: 25885 + - uid: 25925 components: - rot: -1.5707963267948966 rad pos: 52.5,25.5 parent: 2 type: Transform - - uid: 25886 + - uid: 25926 components: - rot: -1.5707963267948966 rad pos: 51.5,25.5 parent: 2 type: Transform - - uid: 25887 + - uid: 25927 components: - rot: -1.5707963267948966 rad pos: 64.5,25.5 parent: 2 type: Transform - - uid: 25888 + - uid: 25928 components: - rot: -1.5707963267948966 rad pos: 63.5,25.5 parent: 2 type: Transform - - uid: 25889 + - uid: 25929 components: - rot: -1.5707963267948966 rad pos: 64.5,24.5 parent: 2 type: Transform - - uid: 25890 + - uid: 25930 components: - rot: -1.5707963267948966 rad pos: 64.5,23.5 parent: 2 type: Transform - - uid: 25891 + - uid: 25931 components: - rot: -1.5707963267948966 rad pos: 64.5,22.5 parent: 2 type: Transform - - uid: 25892 + - uid: 25932 components: - pos: 64.5,21.5 parent: 2 type: Transform - - uid: 25893 + - uid: 25933 components: - rot: -1.5707963267948966 rad pos: 64.5,20.5 parent: 2 type: Transform - - uid: 25894 + - uid: 25934 components: - rot: -1.5707963267948966 rad pos: 63.5,20.5 parent: 2 type: Transform - - uid: 25895 + - uid: 25935 components: - rot: -1.5707963267948966 rad pos: 63.5,19.5 parent: 2 type: Transform - - uid: 25896 + - uid: 25936 components: - rot: -1.5707963267948966 rad pos: 45.5,22.5 parent: 2 type: Transform - - uid: 25897 + - uid: 25937 components: - rot: -1.5707963267948966 rad pos: 44.5,22.5 parent: 2 type: Transform - - uid: 25898 + - uid: 25938 components: - rot: -1.5707963267948966 rad pos: 43.5,22.5 parent: 2 type: Transform - - uid: 25899 + - uid: 25939 components: - rot: -1.5707963267948966 rad pos: 41.5,22.5 parent: 2 type: Transform - - uid: 25900 + - uid: 25940 components: - rot: 3.141592653589793 rad pos: 31.5,33.5 parent: 2 type: Transform - - uid: 25901 + - uid: 25941 components: - pos: 43.5,24.5 parent: 2 type: Transform - - uid: 25902 + - uid: 25942 components: - pos: 43.5,25.5 parent: 2 type: Transform - - uid: 25903 + - uid: 25943 components: - pos: 43.5,26.5 parent: 2 type: Transform - - uid: 25904 + - uid: 25944 components: - pos: 43.5,27.5 parent: 2 type: Transform - - uid: 25905 + - uid: 25945 components: - pos: 51.5,59.5 parent: 2 type: Transform - - uid: 25906 + - uid: 25946 components: - pos: 50.5,59.5 parent: 2 type: Transform - - uid: 25907 + - uid: 25947 components: - pos: 50.5,55.5 parent: 2 type: Transform - - uid: 25908 + - uid: 25948 components: - pos: 51.5,55.5 parent: 2 type: Transform - - uid: 25909 + - uid: 25949 components: - pos: 51.5,54.5 parent: 2 type: Transform - - uid: 25910 + - uid: 25950 components: - pos: 57.5,54.5 parent: 2 type: Transform - - uid: 25911 + - uid: 25951 components: - pos: 57.5,55.5 parent: 2 type: Transform - - uid: 25912 + - uid: 25952 components: - pos: 57.5,59.5 parent: 2 type: Transform - - uid: 25913 + - uid: 25953 components: - pos: 58.5,59.5 parent: 2 type: Transform - - uid: 25914 + - uid: 25954 components: - pos: 58.5,55.5 parent: 2 type: Transform - - uid: 25915 + - uid: 25955 components: - pos: 51.5,60.5 parent: 2 type: Transform - - uid: 25916 + - uid: 25956 components: - pos: 52.5,60.5 parent: 2 type: Transform - - uid: 25917 + - uid: 25957 components: - pos: 52.5,61.5 parent: 2 type: Transform - - uid: 25918 + - uid: 25958 components: - pos: 56.5,61.5 parent: 2 type: Transform - - uid: 25919 + - uid: 25959 components: - pos: 56.5,60.5 parent: 2 type: Transform - - uid: 25920 + - uid: 25960 components: - pos: 65.5,27.5 parent: 2 type: Transform - - uid: 25921 + - uid: 25961 components: - rot: -1.5707963267948966 rad pos: 64.5,13.5 parent: 2 type: Transform - - uid: 25922 + - uid: 25962 components: - rot: -1.5707963267948966 rad pos: 64.5,12.5 parent: 2 type: Transform - - uid: 25923 + - uid: 25963 components: - rot: -1.5707963267948966 rad pos: 64.5,11.5 parent: 2 type: Transform - - uid: 25924 + - uid: 25964 components: - rot: -1.5707963267948966 rad pos: 64.5,10.5 parent: 2 type: Transform - - uid: 25925 + - uid: 25965 components: - rot: -1.5707963267948966 rad pos: 64.5,8.5 parent: 2 type: Transform - - uid: 25926 + - uid: 25966 components: - rot: -1.5707963267948966 rad pos: 64.5,9.5 parent: 2 type: Transform - - uid: 25927 + - uid: 25967 components: - rot: -1.5707963267948966 rad pos: 64.5,7.5 parent: 2 type: Transform - - uid: 25928 + - uid: 25968 components: - rot: -1.5707963267948966 rad pos: 64.5,6.5 parent: 2 type: Transform - - uid: 25929 + - uid: 25969 components: - pos: 66.5,27.5 parent: 2 type: Transform - - uid: 25930 + - uid: 25970 components: - pos: 66.5,27.5 parent: 2 type: Transform - - uid: 25931 + - uid: 25971 components: - pos: 66.5,26.5 parent: 2 type: Transform - - uid: 25932 + - uid: 25972 components: - pos: 66.5,24.5 parent: 2 type: Transform - - uid: 25933 + - uid: 25973 components: - pos: 66.5,22.5 parent: 2 type: Transform - - uid: 25934 + - uid: 25974 components: - pos: 66.5,21.5 parent: 2 type: Transform - - uid: 25935 + - uid: 25975 components: - pos: 66.5,20.5 parent: 2 type: Transform - - uid: 25936 + - uid: 25976 components: - pos: 66.5,19.5 parent: 2 type: Transform - - uid: 25937 + - uid: 25977 components: - pos: 66.5,18.5 parent: 2 type: Transform - - uid: 25938 + - uid: 25978 components: - pos: 65.5,18.5 parent: 2 type: Transform - - uid: 25939 + - uid: 25979 components: - pos: 65.5,17.5 parent: 2 type: Transform - - uid: 25940 + - uid: 25980 components: - pos: 65.5,16.5 parent: 2 type: Transform - - uid: 25941 + - uid: 25981 components: - pos: 66.5,16.5 parent: 2 type: Transform - - uid: 25942 + - uid: 25982 components: - pos: 66.5,15.5 parent: 2 type: Transform - - uid: 25943 + - uid: 25983 components: - pos: 66.5,14.5 parent: 2 type: Transform - - uid: 25944 + - uid: 25984 components: - pos: 66.5,13.5 parent: 2 type: Transform - - uid: 25945 + - uid: 25985 components: - pos: 67.5,5.5 parent: 2 type: Transform - - uid: 25946 + - uid: 25986 components: - pos: 68.5,9.5 parent: 2 type: Transform - - uid: 25947 + - uid: 25987 components: - pos: 67.5,13.5 parent: 2 type: Transform - - uid: 25948 + - uid: 25988 components: - pos: 67.5,12.5 parent: 2 type: Transform - - uid: 25949 + - uid: 25989 components: - pos: 67.5,6.5 parent: 2 type: Transform - - uid: 25950 + - uid: 25990 components: - pos: 43.5,8.5 parent: 2 type: Transform - - uid: 25951 + - uid: 25991 components: - pos: 48.5,4.5 parent: 2 type: Transform - - uid: 25952 + - uid: 25992 components: - pos: 48.5,5.5 parent: 2 type: Transform - - uid: 25953 + - uid: 25993 components: - pos: 49.5,3.5 parent: 2 type: Transform - - uid: 25954 + - uid: 25994 components: - pos: 50.5,3.5 parent: 2 type: Transform - - uid: 25955 + - uid: 25995 components: - pos: 50.5,4.5 parent: 2 type: Transform - - uid: 25956 + - uid: 25996 components: - pos: 51.5,4.5 parent: 2 type: Transform - - uid: 25957 + - uid: 25997 components: - pos: 52.5,4.5 parent: 2 type: Transform - - uid: 25958 + - uid: 25998 components: - pos: 53.5,4.5 parent: 2 type: Transform - - uid: 25959 + - uid: 25999 components: - pos: 54.5,4.5 parent: 2 type: Transform - - uid: 25960 + - uid: 26000 components: - pos: 54.5,3.5 parent: 2 type: Transform - - uid: 25961 + - uid: 26001 components: - pos: 55.5,3.5 parent: 2 type: Transform - - uid: 25962 + - uid: 26002 components: - pos: 56.5,3.5 parent: 2 type: Transform - - uid: 25963 + - uid: 26003 components: - pos: 57.5,3.5 parent: 2 type: Transform - - uid: 25964 + - uid: 26004 components: - pos: 58.5,3.5 parent: 2 type: Transform - - uid: 25965 + - uid: 26005 components: - pos: 64.5,5.5 parent: 2 type: Transform - - uid: 25966 + - uid: 26006 components: - pos: 64.5,4.5 parent: 2 type: Transform - - uid: 25967 + - uid: 26007 components: - pos: 64.5,3.5 parent: 2 type: Transform - - uid: 25968 + - uid: 26008 components: - pos: 63.5,3.5 parent: 2 type: Transform - - uid: 25969 + - uid: 26009 components: - pos: 62.5,3.5 parent: 2 type: Transform - - uid: 25970 + - uid: 26010 components: - pos: 61.5,3.5 parent: 2 type: Transform - - uid: 25971 + - uid: 26011 components: - pos: 60.5,3.5 parent: 2 type: Transform - - uid: 25972 + - uid: 26012 components: - pos: 59.5,3.5 parent: 2 type: Transform - - uid: 25973 + - uid: 26013 components: - rot: -1.5707963267948966 rad pos: 59.5,46.5 parent: 2 type: Transform - - uid: 25974 + - uid: 26014 components: - pos: 68.5,6.5 parent: 2 type: Transform - - uid: 25975 + - uid: 26015 components: - pos: 47.5,-17.5 parent: 2 type: Transform - - uid: 25976 + - uid: 26016 components: - pos: 44.5,13.5 parent: 2 type: Transform - - uid: 25977 + - uid: 26017 components: - pos: 47.5,9.5 parent: 2 type: Transform - - uid: 25978 + - uid: 26018 components: - pos: 44.5,3.5 parent: 2 type: Transform - - uid: 25979 + - uid: 26019 components: - rot: 3.141592653589793 rad pos: 39.5,10.5 parent: 2 type: Transform - - uid: 25980 + - uid: 26020 components: - pos: 48.5,8.5 parent: 2 type: Transform - - uid: 25981 + - uid: 26021 components: - pos: 33.5,19.5 parent: 2 type: Transform - - uid: 25982 + - uid: 26022 components: - rot: -1.5707963267948966 rad pos: 41.5,24.5 parent: 2 type: Transform - - uid: 25983 + - uid: 26023 components: - rot: 3.141592653589793 rad pos: 33.5,27.5 parent: 2 type: Transform - - uid: 25984 + - uid: 26024 components: - rot: 3.141592653589793 rad pos: 25.5,29.5 parent: 2 type: Transform - - uid: 25985 + - uid: 26025 components: - pos: 42.5,22.5 parent: 2 type: Transform - - uid: 25986 + - uid: 26026 components: - pos: 47.5,-16.5 parent: 2 type: Transform - - uid: 25987 + - uid: 26027 components: - rot: -1.5707963267948966 rad pos: 39.5,-16.5 parent: 2 type: Transform - - uid: 25988 + - uid: 26028 components: - rot: -1.5707963267948966 rad pos: 40.5,-16.5 parent: 2 type: Transform - - uid: 25989 + - uid: 26029 components: - rot: -1.5707963267948966 rad pos: 40.5,-15.5 parent: 2 type: Transform - - uid: 25990 + - uid: 26030 components: - rot: -1.5707963267948966 rad pos: 41.5,-15.5 parent: 2 type: Transform - - uid: 25991 + - uid: 26031 components: - pos: 48.5,-15.5 parent: 2 type: Transform - - uid: 25992 + - uid: 26032 components: - pos: 44.5,-17.5 parent: 2 type: Transform - - uid: 25993 + - uid: 26033 components: - pos: 44.5,-16.5 parent: 2 type: Transform - - uid: 25994 + - uid: 26034 components: - pos: 11.5,-18.5 parent: 2 type: Transform - - uid: 25995 + - uid: 26035 components: - pos: 44.5,9.5 parent: 2 type: Transform - - uid: 25996 + - uid: 26036 components: - rot: 1.5707963267948966 rad pos: 69.5,-12.5 parent: 2 type: Transform - - uid: 25997 + - uid: 26037 components: - rot: 1.5707963267948966 rad pos: 69.5,-10.5 parent: 2 type: Transform - - uid: 25998 + - uid: 26038 components: - rot: 1.5707963267948966 rad pos: 66.5,-14.5 parent: 2 type: Transform - - uid: 25999 + - uid: 26039 components: - rot: 1.5707963267948966 rad pos: 69.5,-14.5 parent: 2 type: Transform - - uid: 26000 + - uid: 26040 components: - pos: 48.5,-14.5 parent: 2 type: Transform - - uid: 26001 + - uid: 26041 components: - pos: 48.5,-16.5 parent: 2 type: Transform - - uid: 26002 + - uid: 26042 components: - pos: 43.5,-16.5 parent: 2 type: Transform - - uid: 26003 + - uid: 26043 components: - pos: 49.5,-14.5 parent: 2 type: Transform - - uid: 26004 + - uid: 26044 components: - pos: 50.5,-14.5 parent: 2 type: Transform - - uid: 26005 + - uid: 26045 components: - pos: 51.5,-14.5 parent: 2 type: Transform - - uid: 26006 + - uid: 26046 components: - rot: 3.141592653589793 rad pos: 54.5,-15.5 parent: 2 type: Transform - - uid: 26007 + - uid: 26047 components: - rot: 3.141592653589793 rad pos: 60.5,-15.5 parent: 2 type: Transform - - uid: 26008 + - uid: 26048 components: - rot: 3.141592653589793 rad pos: 57.5,-15.5 parent: 2 type: Transform - - uid: 26009 + - uid: 26049 components: - rot: 3.141592653589793 rad pos: 53.5,-15.5 parent: 2 type: Transform - - uid: 26010 + - uid: 26050 components: - rot: 3.141592653589793 rad pos: 53.5,-16.5 parent: 2 type: Transform - - uid: 26011 + - uid: 26051 components: - rot: 3.141592653589793 rad pos: 51.5,-15.5 parent: 2 type: Transform - - uid: 26012 + - uid: 26052 components: - pos: 63.5,-14.5 parent: 2 type: Transform - - uid: 26013 + - uid: 26053 components: - pos: 64.5,-14.5 parent: 2 type: Transform - - uid: 26014 + - uid: 26054 components: - pos: 65.5,-14.5 parent: 2 type: Transform - - uid: 26015 + - uid: 26055 components: - rot: 1.5707963267948966 rad pos: 69.5,-4.5 parent: 2 type: Transform - - uid: 26016 + - uid: 26056 components: - rot: 3.141592653589793 rad pos: 66.5,-2.5 parent: 2 type: Transform - - uid: 26017 + - uid: 26057 components: - pos: 68.5,-14.5 parent: 2 type: Transform - - uid: 26018 + - uid: 26058 components: - rot: 1.5707963267948966 rad pos: 69.5,-2.5 parent: 2 type: Transform - - uid: 26019 + - uid: 26059 components: - pos: 63.5,-15.5 parent: 2 type: Transform - - uid: 26020 + - uid: 26060 components: - rot: 3.141592653589793 rad pos: 51.5,-16.5 parent: 2 type: Transform - - uid: 26021 + - uid: 26061 components: - pos: 63.5,-16.5 parent: 2 type: Transform - - uid: 26022 + - uid: 26062 components: - pos: 63.5,-17.5 parent: 2 type: Transform - - uid: 26023 + - uid: 26063 components: - pos: 63.5,-19.5 parent: 2 type: Transform - - uid: 26024 + - uid: 26064 components: - pos: 63.5,-21.5 parent: 2 type: Transform - - uid: 26025 + - uid: 26065 components: - pos: 63.5,-23.5 parent: 2 type: Transform - - uid: 26026 + - uid: 26066 components: - pos: 63.5,-25.5 parent: 2 type: Transform - - uid: 26027 + - uid: 26067 components: - pos: 63.5,-27.5 parent: 2 type: Transform - - uid: 26028 + - uid: 26068 components: - pos: 64.5,-27.5 parent: 2 type: Transform - - uid: 26029 + - uid: 26069 components: - pos: 69.5,-31.5 parent: 2 type: Transform - - uid: 26030 + - uid: 26070 components: - pos: 61.5,-16.5 parent: 2 type: Transform - - uid: 26031 + - uid: 26071 components: - pos: 61.5,-17.5 parent: 2 type: Transform - - uid: 26032 + - uid: 26072 components: - pos: 61.5,-19.5 parent: 2 type: Transform - - uid: 26033 + - uid: 26073 components: - pos: 61.5,-21.5 parent: 2 type: Transform - - uid: 26034 + - uid: 26074 components: - pos: 61.5,-23.5 parent: 2 type: Transform - - uid: 26035 + - uid: 26075 components: - pos: 61.5,-25.5 parent: 2 type: Transform - - uid: 26036 + - uid: 26076 components: - pos: 69.5,-32.5 parent: 2 type: Transform - - uid: 26037 + - uid: 26077 components: - pos: 60.5,-16.5 parent: 2 type: Transform - - uid: 26038 + - uid: 26078 components: - pos: -2.5,-36.5 parent: 2 type: Transform - - uid: 26039 + - uid: 26079 components: - pos: 43.5,-15.5 parent: 2 type: Transform - - uid: 26040 + - uid: 26080 components: - pos: 42.5,-15.5 parent: 2 type: Transform - - uid: 26041 + - uid: 26081 components: - pos: 68.5,-15.5 parent: 2 type: Transform - - uid: 26042 + - uid: 26082 components: - rot: 1.5707963267948966 rad pos: 69.5,-6.5 parent: 2 type: Transform - - uid: 26043 + - uid: 26083 components: - rot: -1.5707963267948966 rad pos: 57.5,37.5 parent: 2 type: Transform - - uid: 26044 + - uid: 26084 components: - pos: 70.5,-30.5 parent: 2 type: Transform - - uid: 26045 + - uid: 26085 components: - pos: 72.5,-39.5 parent: 2 type: Transform - - uid: 26046 + - uid: 26086 components: - pos: 76.5,-32.5 parent: 2 type: Transform - - uid: 26047 + - uid: 26087 components: - pos: 65.5,-37.5 parent: 2 type: Transform - - uid: 26048 + - uid: 26088 components: - pos: 63.5,-40.5 parent: 2 type: Transform - - uid: 26049 + - uid: 26089 components: - pos: 63.5,-38.5 parent: 2 type: Transform - - uid: 26050 + - uid: 26090 components: - pos: 76.5,-31.5 parent: 2 type: Transform - - uid: 26051 + - uid: 26091 components: - rot: -1.5707963267948966 rad pos: 60.5,-25.5 parent: 2 type: Transform - - uid: 26052 + - uid: 26092 components: - pos: 52.5,-48.5 parent: 2 type: Transform - - uid: 26053 + - uid: 26093 components: - pos: 52.5,-47.5 parent: 2 type: Transform - - uid: 26054 + - uid: 26094 components: - pos: 52.5,-46.5 parent: 2 type: Transform - - uid: 26055 + - uid: 26095 components: - pos: 53.5,-46.5 parent: 2 type: Transform - - uid: 26056 + - uid: 26096 components: - pos: 54.5,-46.5 parent: 2 type: Transform - - uid: 26057 + - uid: 26097 components: - pos: 71.5,-66.5 parent: 2 type: Transform - - uid: 26058 + - uid: 26098 components: - pos: 75.5,-31.5 parent: 2 type: Transform - - uid: 26059 + - uid: 26099 components: - pos: 75.5,-30.5 parent: 2 type: Transform - - uid: 26060 + - uid: 26100 components: - pos: 74.5,-30.5 parent: 2 type: Transform - - uid: 26061 + - uid: 26101 components: - rot: -1.5707963267948966 rad pos: 70.5,-29.5 parent: 2 type: Transform - - uid: 26062 + - uid: 26102 components: - pos: 64.5,-42.5 parent: 2 type: Transform - - uid: 26063 + - uid: 26103 components: - pos: 55.5,-46.5 parent: 2 type: Transform - - uid: 26064 + - uid: 26104 components: - pos: 57.5,-46.5 parent: 2 type: Transform - - uid: 26065 + - uid: 26105 components: - pos: 58.5,-46.5 parent: 2 type: Transform - - uid: 26066 + - uid: 26106 components: - pos: 58.5,-47.5 parent: 2 type: Transform - - uid: 26067 + - uid: 26107 components: - pos: 58.5,-49.5 parent: 2 type: Transform - - uid: 26068 + - uid: 26108 components: - pos: 59.5,-50.5 parent: 2 type: Transform - - uid: 26069 + - uid: 26109 components: - pos: 60.5,-50.5 parent: 2 type: Transform - - uid: 26070 + - uid: 26110 components: - pos: 64.5,-50.5 parent: 2 type: Transform - - uid: 26071 + - uid: 26111 components: - pos: 65.5,-50.5 parent: 2 type: Transform - - uid: 26072 + - uid: 26112 components: - pos: 63.5,-37.5 parent: 2 type: Transform - - uid: 26073 + - uid: 26113 components: - pos: 7.5,-39.5 parent: 2 type: Transform - - uid: 26074 + - uid: 26114 components: - rot: -1.5707963267948966 rad pos: 53.5,-64.5 parent: 2 type: Transform - - uid: 26075 + - uid: 26115 components: - pos: 63.5,-39.5 parent: 2 type: Transform - - uid: 26076 + - uid: 26116 components: - pos: 63.5,-41.5 parent: 2 type: Transform - - uid: 26077 + - uid: 26117 components: - pos: 52.5,-49.5 parent: 2 type: Transform - - uid: 26078 + - uid: 26118 components: - pos: 53.5,-49.5 parent: 2 type: Transform - - uid: 26079 + - uid: 26119 components: - pos: 53.5,-50.5 parent: 2 type: Transform - - uid: 26080 + - uid: 26120 components: - pos: 54.5,-50.5 parent: 2 type: Transform - - uid: 26081 + - uid: 26121 components: - pos: 55.5,-54.5 parent: 2 type: Transform - - uid: 26082 + - uid: 26122 components: - pos: 65.5,-53.5 parent: 2 type: Transform - - uid: 26083 + - uid: 26123 components: - pos: 54.5,-54.5 parent: 2 type: Transform - - uid: 26084 + - uid: 26124 components: - pos: 59.5,-53.5 parent: 2 type: Transform - - uid: 26085 + - uid: 26125 components: - pos: 56.5,-54.5 parent: 2 type: Transform - - uid: 26086 + - uid: 26126 components: - pos: 64.5,-56.5 parent: 2 type: Transform - - uid: 26087 + - uid: 26127 components: - pos: 64.5,-55.5 parent: 2 type: Transform - - uid: 26088 + - uid: 26128 components: - pos: 60.5,-56.5 parent: 2 type: Transform - - uid: 26089 + - uid: 26129 components: - pos: 60.5,-55.5 parent: 2 type: Transform - - uid: 26090 + - uid: 26130 components: - pos: 66.5,-50.5 parent: 2 type: Transform - - uid: 26091 + - uid: 26131 components: - pos: 66.5,-53.5 parent: 2 type: Transform - - uid: 26092 + - uid: 26132 components: - pos: 65.5,-55.5 parent: 2 type: Transform - - uid: 26093 + - uid: 26133 components: - pos: 59.5,-55.5 parent: 2 type: Transform - - uid: 26094 + - uid: 26134 components: - pos: 58.5,-53.5 parent: 2 type: Transform - - uid: 26095 + - uid: 26135 components: - pos: 58.5,-50.5 parent: 2 type: Transform - - uid: 26096 + - uid: 26136 components: - pos: 76.5,-42.5 parent: 2 type: Transform - - uid: 26097 + - uid: 26137 components: - pos: 44.5,-65.5 parent: 2 type: Transform - - uid: 26098 + - uid: 26138 components: - pos: 70.5,-31.5 parent: 2 type: Transform - - uid: 26099 + - uid: 26139 components: - pos: 64.5,-30.5 parent: 2 type: Transform - - uid: 26100 + - uid: 26140 components: - pos: 73.5,-39.5 parent: 2 type: Transform - - uid: 26101 + - uid: 26141 components: - pos: 73.5,-42.5 parent: 2 type: Transform - - uid: 26102 + - uid: 26142 components: - pos: 73.5,-41.5 parent: 2 type: Transform - - uid: 26103 + - uid: 26143 components: - pos: 68.5,-50.5 parent: 2 type: Transform - - uid: 26104 + - uid: 26144 components: - pos: 67.5,-50.5 parent: 2 type: Transform - - uid: 26106 + - uid: 26145 components: - pos: 65.5,-27.5 parent: 2 type: Transform - - uid: 26107 + - uid: 26146 components: - pos: 65.5,-30.5 parent: 2 type: Transform - - uid: 26108 + - uid: 26147 components: - pos: 76.5,-39.5 parent: 2 type: Transform - - uid: 26109 + - uid: 26148 components: - pos: 76.5,-38.5 parent: 2 type: Transform - - uid: 26110 + - uid: 26149 components: - pos: 79.5,-32.5 parent: 2 type: Transform - - uid: 26111 + - uid: 26150 components: - pos: 79.5,-38.5 parent: 2 type: Transform - - uid: 26112 + - uid: 26151 components: - rot: -1.5707963267948966 rad pos: 74.5,-27.5 parent: 2 type: Transform - - uid: 26113 + - uid: 26152 components: - pos: 78.5,-43.5 parent: 2 type: Transform - - uid: 26114 + - uid: 26153 components: - pos: 76.5,-41.5 parent: 2 type: Transform - - uid: 26115 + - uid: 26154 components: - pos: 76.5,-40.5 parent: 2 type: Transform - - uid: 26116 + - uid: 26155 components: - pos: 24.5,-57.5 parent: 2 type: Transform - - uid: 26117 + - uid: 26156 components: - rot: -1.5707963267948966 rad pos: 32.5,-80.5 parent: 2 type: Transform - - uid: 26118 + - uid: 26157 components: - pos: -43.5,-38.5 parent: 2 type: Transform - - uid: 26119 + - uid: 26158 components: - pos: 53.5,-54.5 parent: 2 type: Transform - - uid: 26120 + - uid: 26159 components: - pos: 53.5,-55.5 parent: 2 type: Transform - - uid: 26121 + - uid: 26160 components: - pos: 53.5,-56.5 parent: 2 type: Transform - - uid: 26122 + - uid: 26161 components: - rot: 3.141592653589793 rad pos: 52.5,-62.5 parent: 2 type: Transform - - uid: 26123 + - uid: 26162 components: - rot: 3.141592653589793 rad pos: 48.5,-62.5 parent: 2 type: Transform - - uid: 26124 + - uid: 26163 components: - rot: 3.141592653589793 rad pos: 47.5,-62.5 parent: 2 type: Transform - - uid: 26125 + - uid: 26164 components: - pos: 34.5,-61.5 parent: 2 type: Transform - - uid: 26126 + - uid: 26165 components: - pos: 35.5,-61.5 parent: 2 type: Transform - - uid: 26127 + - uid: 26166 components: - pos: 36.5,-61.5 parent: 2 type: Transform - - uid: 26128 + - uid: 26167 components: - pos: 37.5,-61.5 parent: 2 type: Transform - - uid: 26129 + - uid: 26168 components: - pos: 37.5,-62.5 parent: 2 type: Transform - - uid: 26130 + - uid: 26169 components: - pos: 37.5,-63.5 parent: 2 type: Transform - - uid: 26131 + - uid: 26170 components: - pos: 37.5,-65.5 parent: 2 type: Transform - - uid: 26132 + - uid: 26171 components: - pos: 37.5,-67.5 parent: 2 type: Transform - - uid: 26133 + - uid: 26172 components: - pos: 37.5,-68.5 parent: 2 type: Transform - - uid: 26134 + - uid: 26173 components: - rot: -1.5707963267948966 rad pos: 48.5,-66.5 parent: 2 type: Transform - - uid: 26135 + - uid: 26174 components: - pos: 41.5,-67.5 parent: 2 type: Transform - - uid: 26136 + - uid: 26175 components: - pos: 41.5,-68.5 parent: 2 type: Transform - - uid: 26137 + - uid: 26176 components: - pos: -33.5,-14.5 parent: 2 type: Transform - - uid: 26138 + - uid: 26177 components: - pos: -33.5,-18.5 parent: 2 type: Transform - - uid: 26139 + - uid: 26178 components: - pos: -33.5,-19.5 parent: 2 type: Transform - - uid: 26140 + - uid: 26179 components: - rot: 1.5707963267948966 rad pos: 44.5,-81.5 parent: 2 type: Transform - - uid: 26141 + - uid: 26180 components: - rot: -1.5707963267948966 rad pos: 57.5,41.5 parent: 2 type: Transform - - uid: 26142 + - uid: 26181 components: - pos: -17.5,-47.5 parent: 2 type: Transform - - uid: 26143 + - uid: 26182 components: - pos: -22.5,-44.5 parent: 2 type: Transform - - uid: 26144 + - uid: 26183 components: - rot: 3.141592653589793 rad pos: 24.5,26.5 parent: 2 type: Transform - - uid: 26145 + - uid: 26184 components: - pos: 56.5,-56.5 parent: 2 type: Transform - - uid: 26146 + - uid: 26185 components: - pos: 56.5,-57.5 parent: 2 type: Transform - - uid: 26147 + - uid: 26186 components: - pos: 57.5,-57.5 parent: 2 type: Transform - - uid: 26148 + - uid: 26187 components: - pos: 57.5,-58.5 parent: 2 type: Transform - - uid: 26149 + - uid: 26188 components: - pos: 58.5,-58.5 parent: 2 type: Transform - - uid: 26150 + - uid: 26189 components: - pos: 58.5,-61.5 parent: 2 type: Transform - - uid: 26151 + - uid: 26190 components: - pos: 53.5,-62.5 parent: 2 type: Transform - - uid: 26152 + - uid: 26191 components: - pos: 53.5,-25.5 parent: 2 type: Transform - - uid: 26153 + - uid: 26192 components: - pos: 52.5,-26.5 parent: 2 type: Transform - - uid: 26154 + - uid: 26193 components: - pos: -17.5,-49.5 parent: 2 type: Transform - - uid: 26155 + - uid: 26194 components: - pos: -17.5,-48.5 parent: 2 type: Transform - - uid: 26156 + - uid: 26195 components: - pos: -22.5,-45.5 parent: 2 type: Transform - - uid: 26157 + - uid: 26196 components: - pos: -22.5,-46.5 parent: 2 type: Transform - - uid: 26158 + - uid: 26197 components: - pos: -22.5,-47.5 parent: 2 type: Transform - - uid: 26159 + - uid: 26198 components: - rot: 1.5707963267948966 rad pos: 33.5,-88.5 parent: 2 type: Transform - - uid: 26160 + - uid: 26199 components: - rot: -1.5707963267948966 rad pos: 36.5,-74.5 parent: 2 type: Transform - - uid: 26161 + - uid: 26200 components: - rot: -1.5707963267948966 rad pos: 36.5,-75.5 parent: 2 type: Transform - - uid: 26162 + - uid: 26201 components: - pos: 42.5,-74.5 parent: 2 type: Transform - - uid: 26163 + - uid: 26202 components: - rot: 3.141592653589793 rad pos: 45.5,-74.5 parent: 2 type: Transform - - uid: 26164 + - uid: 26203 components: - rot: 3.141592653589793 rad pos: 46.5,-74.5 parent: 2 type: Transform - - uid: 26165 + - uid: 26204 components: - rot: 1.5707963267948966 rad pos: 34.5,-90.5 parent: 2 type: Transform - - uid: 26166 + - uid: 26205 components: - rot: 1.5707963267948966 rad pos: 33.5,-90.5 parent: 2 type: Transform - - uid: 26167 + - uid: 26206 components: - rot: 3.141592653589793 rad pos: 46.5,-70.5 parent: 2 type: Transform - - uid: 26168 + - uid: 26207 components: - pos: 33.5,-70.5 parent: 2 type: Transform - - uid: 26169 + - uid: 26208 components: - pos: 32.5,-70.5 parent: 2 type: Transform - - uid: 26170 + - uid: 26209 components: - pos: 12.5,-70.5 parent: 2 type: Transform - - uid: 26171 + - uid: 26210 components: - pos: 45.5,-70.5 parent: 2 type: Transform - - uid: 26172 + - uid: 26211 components: - pos: 41.5,-69.5 parent: 2 type: Transform - - uid: 26173 + - uid: 26212 components: - rot: -1.5707963267948966 rad pos: 42.5,-65.5 parent: 2 type: Transform - - uid: 26174 + - uid: 26213 components: - rot: -1.5707963267948966 rad pos: 41.5,-65.5 parent: 2 type: Transform - - uid: 26175 + - uid: 26214 components: - pos: 45.5,-69.5 parent: 2 type: Transform - - uid: 26176 + - uid: 26215 components: - pos: 37.5,-69.5 parent: 2 type: Transform - - uid: 26177 + - uid: 26216 components: - pos: 33.5,-69.5 parent: 2 type: Transform - - uid: 26178 + - uid: 26217 components: - rot: 1.5707963267948966 rad pos: 28.5,-75.5 parent: 2 type: Transform - - uid: 26179 + - uid: 26218 components: - rot: -1.5707963267948966 rad pos: 31.5,-94.5 parent: 2 type: Transform - - uid: 26180 + - uid: 26219 components: - rot: -1.5707963267948966 rad pos: 32.5,-75.5 parent: 2 type: Transform - - uid: 26181 + - uid: 26220 components: - pos: 7.5,-77.5 parent: 2 type: Transform - - uid: 26182 + - uid: 26221 components: - rot: 3.141592653589793 rad pos: 20.5,-84.5 parent: 2 type: Transform - - uid: 26183 + - uid: 26222 components: - rot: -1.5707963267948966 rad pos: 28.5,-93.5 parent: 2 type: Transform - - uid: 26184 + - uid: 26223 components: - rot: 3.141592653589793 rad pos: 10.5,-86.5 parent: 2 type: Transform - - uid: 26185 + - uid: 26224 components: - rot: 3.141592653589793 rad pos: 11.5,-87.5 parent: 2 type: Transform - - uid: 26186 + - uid: 26225 components: - rot: 3.141592653589793 rad pos: 12.5,-87.5 parent: 2 type: Transform - - uid: 26187 + - uid: 26226 components: - rot: 1.5707963267948966 rad pos: 50.5,-85.5 parent: 2 type: Transform - - uid: 26188 + - uid: 26227 components: - rot: 3.141592653589793 rad pos: 21.5,-82.5 parent: 2 type: Transform - - uid: 26189 + - uid: 26228 components: - rot: -1.5707963267948966 rad pos: 46.5,-76.5 parent: 2 type: Transform - - uid: 26190 + - uid: 26229 components: - rot: 3.141592653589793 rad pos: 20.5,-82.5 parent: 2 type: Transform - - uid: 26191 + - uid: 26230 components: - rot: 1.5707963267948966 rad pos: 45.5,-83.5 parent: 2 type: Transform - - uid: 26192 + - uid: 26231 components: - rot: 3.141592653589793 rad pos: 15.5,-78.5 parent: 2 type: Transform - - uid: 26193 + - uid: 26232 components: - rot: 3.141592653589793 rad pos: 12.5,-88.5 parent: 2 type: Transform - - uid: 26194 + - uid: 26233 components: - rot: 3.141592653589793 rad pos: 18.5,-87.5 parent: 2 type: Transform - - uid: 26195 + - uid: 26234 components: - rot: 3.141592653589793 rad pos: 19.5,-87.5 parent: 2 type: Transform - - uid: 26196 + - uid: 26235 components: - rot: -1.5707963267948966 rad pos: 28.5,-87.5 parent: 2 type: Transform - - uid: 26197 + - uid: 26236 components: - rot: 3.141592653589793 rad pos: 19.5,-86.5 parent: 2 type: Transform - - uid: 26198 + - uid: 26237 components: - rot: 3.141592653589793 rad pos: 20.5,-86.5 parent: 2 type: Transform - - uid: 26199 + - uid: 26238 components: - rot: 3.141592653589793 rad pos: 20.5,-85.5 parent: 2 type: Transform - - uid: 26200 + - uid: 26239 components: - rot: 3.141592653589793 rad pos: 22.5,-84.5 parent: 2 type: Transform - - uid: 26201 + - uid: 26240 components: - rot: 1.5707963267948966 rad pos: 50.5,-75.5 parent: 2 type: Transform - - uid: 26202 + - uid: 26241 components: - rot: 3.141592653589793 rad pos: 20.5,-81.5 parent: 2 type: Transform - - uid: 26203 + - uid: 26242 components: - rot: 3.141592653589793 rad pos: 19.5,-80.5 parent: 2 type: Transform - - uid: 26204 + - uid: 26243 components: - rot: 3.141592653589793 rad pos: 18.5,-78.5 parent: 2 type: Transform - - uid: 26205 + - uid: 26244 components: - pos: 7.5,-75.5 parent: 2 type: Transform - - uid: 26206 + - uid: 26245 components: - rot: -1.5707963267948966 rad pos: 29.5,-93.5 parent: 2 type: Transform - - uid: 26207 + - uid: 26246 components: - rot: -1.5707963267948966 rad pos: 31.5,-95.5 parent: 2 type: Transform - - uid: 26208 + - uid: 26247 components: - rot: -1.5707963267948966 rad pos: 29.5,-95.5 parent: 2 type: Transform - - uid: 26209 + - uid: 26248 components: - rot: -1.5707963267948966 rad pos: 29.5,-94.5 parent: 2 type: Transform - - uid: 26210 + - uid: 26249 components: - rot: -1.5707963267948966 rad pos: 46.5,-80.5 parent: 2 type: Transform - - uid: 26211 + - uid: 26250 components: - pos: 8.5,-77.5 parent: 2 type: Transform - - uid: 26212 + - uid: 26251 components: - rot: 3.141592653589793 rad pos: 19.5,-79.5 parent: 2 type: Transform - - uid: 26213 + - uid: 26252 components: - rot: 3.141592653589793 rad pos: 18.5,-79.5 parent: 2 type: Transform - - uid: 26214 + - uid: 26253 components: - rot: 1.5707963267948966 rad pos: 34.5,-88.5 parent: 2 type: Transform - - uid: 26215 + - uid: 26254 components: - rot: -1.5707963267948966 rad pos: 44.5,-74.5 parent: 2 type: Transform - - uid: 26216 + - uid: 26255 components: - rot: 3.141592653589793 rad pos: 18.5,-88.5 parent: 2 type: Transform - - uid: 26217 + - uid: 26256 components: - pos: 12.5,-71.5 parent: 2 type: Transform - - uid: 26218 + - uid: 26257 components: - pos: 9.5,-72.5 parent: 2 type: Transform - - uid: 26219 + - uid: 26258 components: - pos: 9.5,-73.5 parent: 2 type: Transform - - uid: 26220 + - uid: 26259 components: - pos: 9.5,-74.5 parent: 2 type: Transform - - uid: 26221 + - uid: 26260 components: - pos: 10.5,-74.5 parent: 2 type: Transform - - uid: 26222 + - uid: 26261 components: - pos: 11.5,-74.5 parent: 2 type: Transform - - uid: 26223 + - uid: 26262 components: - pos: 12.5,-74.5 parent: 2 type: Transform - - uid: 26224 + - uid: 26263 components: - pos: 13.5,-74.5 parent: 2 type: Transform - - uid: 26225 + - uid: 26264 components: - pos: 16.5,-74.5 parent: 2 type: Transform - - uid: 26226 + - uid: 26265 components: - pos: 19.5,-74.5 parent: 2 type: Transform - - uid: 26227 + - uid: 26266 components: - pos: 21.5,-74.5 parent: 2 type: Transform - - uid: 26228 + - uid: 26267 components: - pos: 21.5,-72.5 parent: 2 type: Transform - - uid: 26229 + - uid: 26268 components: - pos: 20.5,-72.5 parent: 2 type: Transform - - uid: 26230 + - uid: 26269 components: - pos: 19.5,-72.5 parent: 2 type: Transform - - uid: 26231 + - uid: 26270 components: - pos: 31.5,-70.5 parent: 2 type: Transform - - uid: 26232 + - uid: 26271 components: - pos: 42.5,-75.5 parent: 2 type: Transform - - uid: 26233 + - uid: 26272 components: - pos: 44.5,-75.5 parent: 2 type: Transform - - uid: 26234 + - uid: 26273 components: - rot: -1.5707963267948966 rad pos: 27.5,-87.5 parent: 2 type: Transform - - uid: 26235 + - uid: 26274 components: - rot: -1.5707963267948966 rad pos: 33.5,-83.5 parent: 2 type: Transform - - uid: 26236 + - uid: 26275 components: - rot: 1.5707963267948966 rad pos: 46.5,-81.5 parent: 2 type: Transform - - uid: 26237 + - uid: 26276 components: - rot: -1.5707963267948966 rad pos: 26.5,-87.5 parent: 2 type: Transform - - uid: 26238 + - uid: 26277 components: - rot: -1.5707963267948966 rad pos: 34.5,-75.5 parent: 2 type: Transform - - uid: 26239 + - uid: 26278 components: - rot: 1.5707963267948966 rad pos: 46.5,-83.5 parent: 2 type: Transform - - uid: 26240 + - uid: 26279 components: - rot: -1.5707963267948966 rad pos: 27.5,-79.5 parent: 2 type: Transform - - uid: 26241 + - uid: 26280 components: - pos: 16.5,-71.5 parent: 2 type: Transform - - uid: 26242 + - uid: 26281 components: - pos: 29.5,-69.5 parent: 2 type: Transform - - uid: 26243 + - uid: 26282 components: - pos: 29.5,-70.5 parent: 2 type: Transform - - uid: 26244 + - uid: 26283 components: - pos: 28.5,-68.5 parent: 2 type: Transform - - uid: 26245 + - uid: 26284 components: - pos: 30.5,-70.5 parent: 2 type: Transform - - uid: 26246 + - uid: 26285 components: - pos: 20.5,-74.5 parent: 2 type: Transform - - uid: 26247 + - uid: 26286 components: - pos: 19.5,-71.5 parent: 2 type: Transform - - uid: 26248 + - uid: 26287 components: - pos: 22.5,-70.5 parent: 2 type: Transform - - uid: 26249 + - uid: 26288 components: - rot: -1.5707963267948966 rad pos: 32.5,-93.5 parent: 2 type: Transform - - uid: 26250 + - uid: 26289 components: - pos: 23.5,-82.5 parent: 2 type: Transform - - uid: 26251 + - uid: 26290 components: - rot: 3.141592653589793 rad pos: 22.5,-82.5 parent: 2 type: Transform - - uid: 26252 + - uid: 26291 components: - pos: 23.5,-84.5 parent: 2 type: Transform - - uid: 26253 + - uid: 26292 components: - pos: 21.5,-70.5 parent: 2 type: Transform - - uid: 26254 + - uid: 26293 components: - pos: 22.5,-74.5 parent: 2 type: Transform - - uid: 26255 + - uid: 26294 components: - pos: 23.5,-74.5 parent: 2 type: Transform - - uid: 26256 + - uid: 26295 components: - pos: 23.5,-75.5 parent: 2 type: Transform - - uid: 26257 + - uid: 26296 components: - rot: 1.5707963267948966 rad pos: 28.5,-78.5 parent: 2 type: Transform - - uid: 26258 + - uid: 26297 components: - rot: -1.5707963267948966 rad pos: 23.5,-86.5 parent: 2 type: Transform - - uid: 26259 + - uid: 26298 components: - rot: 1.5707963267948966 rad pos: 28.5,-88.5 parent: 2 type: Transform - - uid: 26260 + - uid: 26299 components: - rot: 1.5707963267948966 rad pos: 50.5,-86.5 parent: 2 type: Transform - - uid: 26261 + - uid: 26300 components: - rot: 3.141592653589793 rad pos: 11.5,-80.5 parent: 2 type: Transform - - uid: 26262 + - uid: 26301 components: - rot: 3.141592653589793 rad pos: 11.5,-86.5 parent: 2 type: Transform - - uid: 26263 + - uid: 26302 components: - pos: 7.5,-73.5 parent: 2 type: Transform - - uid: 26264 + - uid: 26303 components: - rot: 3.141592653589793 rad pos: 12.5,-78.5 parent: 2 type: Transform - - uid: 26265 + - uid: 26304 components: - rot: 3.141592653589793 rad pos: 21.5,-84.5 parent: 2 type: Transform - - uid: 26266 + - uid: 26305 components: - rot: 3.141592653589793 rad pos: 15.5,-88.5 parent: 2 type: Transform - - uid: 26267 + - uid: 26306 components: - rot: 3.141592653589793 rad pos: 20.5,-80.5 parent: 2 type: Transform - - uid: 26268 + - uid: 26307 components: - rot: 1.5707963267948966 rad pos: 28.5,-76.5 parent: 2 type: Transform - - uid: 26269 + - uid: 26308 components: - rot: 1.5707963267948966 rad pos: 32.5,-90.5 parent: 2 type: Transform - - uid: 26270 + - uid: 26309 components: - rot: 1.5707963267948966 rad pos: 32.5,-88.5 parent: 2 type: Transform - - uid: 26271 + - uid: 26310 components: - rot: -1.5707963267948966 rad pos: 41.5,-66.5 parent: 2 type: Transform - - uid: 26272 + - uid: 26311 components: - rot: 1.5707963267948966 rad pos: 46.5,-90.5 parent: 2 type: Transform - - uid: 26273 + - uid: 26312 components: - rot: -1.5707963267948966 rad pos: 23.5,-81.5 parent: 2 type: Transform - - uid: 26274 + - uid: 26313 components: - pos: 21.5,-71.5 parent: 2 type: Transform - - uid: 26275 + - uid: 26314 components: - rot: -1.5707963267948966 rad pos: 53.5,-63.5 parent: 2 type: Transform - - uid: 26276 + - uid: 26315 components: - rot: 1.5707963267948966 rad pos: 49.5,-70.5 parent: 2 type: Transform - - uid: 26277 + - uid: 26316 components: - rot: -1.5707963267948966 rad pos: 23.5,-85.5 parent: 2 type: Transform - - uid: 26278 + - uid: 26317 components: - pos: 23.5,-68.5 parent: 2 type: Transform - - uid: 26279 + - uid: 26318 components: - pos: -34.5,-14.5 parent: 2 type: Transform - - uid: 26280 + - uid: 26319 components: - pos: -35.5,-14.5 parent: 2 type: Transform - - uid: 26281 + - uid: 26320 components: - pos: -38.5,-14.5 parent: 2 type: Transform - - uid: 26282 + - uid: 26321 components: - pos: -39.5,-14.5 parent: 2 type: Transform - - uid: 26283 + - uid: 26322 components: - pos: -40.5,-14.5 parent: 2 type: Transform - - uid: 26284 + - uid: 26323 components: - pos: -17.5,-46.5 parent: 2 type: Transform - - uid: 26285 + - uid: 26324 components: - pos: -17.5,-45.5 parent: 2 type: Transform - - uid: 26286 + - uid: 26325 components: - pos: -17.5,-44.5 parent: 2 type: Transform - - uid: 26287 + - uid: 26326 components: - pos: -18.5,-44.5 parent: 2 type: Transform - - uid: 26288 + - uid: 26327 components: - pos: -20.5,-44.5 parent: 2 type: Transform - - uid: 26289 + - uid: 26328 components: - pos: -21.5,-44.5 parent: 2 type: Transform - - uid: 26290 + - uid: 26329 components: - pos: -35.5,-19.5 parent: 2 type: Transform - - uid: 26291 + - uid: 26330 components: - pos: -34.5,-19.5 parent: 2 type: Transform - - uid: 26292 + - uid: 26331 components: - rot: -1.5707963267948966 rad pos: -36.5,-19.5 parent: 2 type: Transform - - uid: 26293 + - uid: 26332 components: - pos: -37.5,-19.5 parent: 2 type: Transform - - uid: 26294 + - uid: 26333 components: - pos: -38.5,-19.5 parent: 2 type: Transform - - uid: 26295 + - uid: 26334 components: - pos: -38.5,-18.5 parent: 2 type: Transform - - uid: 26296 + - uid: 26335 components: - pos: -38.5,-17.5 parent: 2 type: Transform - - uid: 26297 + - uid: 26336 components: - pos: -38.5,-16.5 parent: 2 type: Transform - - uid: 26298 + - uid: 26337 components: - pos: -38.5,-15.5 parent: 2 type: Transform - - uid: 26299 + - uid: 26338 components: - pos: 77.5,-49.5 parent: 2 type: Transform - - uid: 26300 + - uid: 26339 components: - pos: 73.5,-50.5 parent: 2 type: Transform - - uid: 26301 + - uid: 26340 components: - pos: 73.5,-52.5 parent: 2 type: Transform - - uid: 26302 + - uid: 26341 components: - pos: 73.5,-54.5 parent: 2 type: Transform - - uid: 26303 + - uid: 26342 components: - pos: 72.5,-54.5 parent: 2 type: Transform - - uid: 26304 + - uid: 26343 components: - pos: 69.5,-54.5 parent: 2 type: Transform - - uid: 26305 + - uid: 26344 components: - rot: -1.5707963267948966 rad pos: 69.5,-55.5 parent: 2 type: Transform - - uid: 26306 + - uid: 26345 components: - rot: 3.141592653589793 rad pos: -40.5,-21.5 parent: 2 type: Transform - - uid: 26307 + - uid: 26346 components: - rot: 3.141592653589793 rad pos: -40.5,-22.5 parent: 2 type: Transform - - uid: 26308 + - uid: 26347 components: - pos: -44.5,-24.5 parent: 2 type: Transform - - uid: 26309 + - uid: 26348 components: - pos: -42.5,-14.5 parent: 2 type: Transform - - uid: 26310 + - uid: 26349 components: - pos: -43.5,-14.5 parent: 2 type: Transform - - uid: 26311 + - uid: 26350 components: - pos: -43.5,-12.5 parent: 2 type: Transform - - uid: 26312 + - uid: 26351 components: - pos: -43.5,-9.5 parent: 2 type: Transform - - uid: 26313 + - uid: 26352 components: - pos: -43.5,-8.5 parent: 2 type: Transform - - uid: 26314 + - uid: 26353 components: - pos: -43.5,-7.5 parent: 2 type: Transform - - uid: 26315 + - uid: 26354 components: - pos: -43.5,-19.5 parent: 2 type: Transform - - uid: 26316 + - uid: 26355 components: - pos: -42.5,-19.5 parent: 2 type: Transform - - uid: 26317 + - uid: 26356 components: - pos: -40.5,-19.5 parent: 2 type: Transform - - uid: 26318 + - uid: 26357 components: - pos: -39.5,-19.5 parent: 2 type: Transform - - uid: 26319 + - uid: 26358 components: - pos: -43.5,-15.5 parent: 2 type: Transform - - uid: 26320 + - uid: 26359 components: - pos: -43.5,-16.5 parent: 2 type: Transform - - uid: 26321 + - uid: 26360 components: - pos: -43.5,-17.5 parent: 2 type: Transform - - uid: 26322 + - uid: 26361 components: - pos: -43.5,-18.5 parent: 2 type: Transform - - uid: 26323 + - uid: 26362 components: - pos: 59.5,-61.5 parent: 2 type: Transform - - uid: 26324 + - uid: 26363 components: - pos: 67.5,-58.5 parent: 2 type: Transform - - uid: 26325 + - uid: 26364 components: - rot: -1.5707963267948966 rad pos: 67.5,-60.5 parent: 2 type: Transform - - uid: 26326 + - uid: 26365 components: - pos: 68.5,-58.5 parent: 2 type: Transform - - uid: 26327 + - uid: 26366 components: - pos: 65.5,-61.5 parent: 2 type: Transform - - uid: 26328 + - uid: 26367 components: - pos: 60.5,-61.5 parent: 2 type: Transform - - uid: 26329 + - uid: 26368 components: - pos: 65.5,-60.5 parent: 2 type: Transform - - uid: 26330 + - uid: 26369 components: - pos: 67.5,-59.5 parent: 2 type: Transform - - uid: 26331 + - uid: 26370 components: - pos: 52.5,-29.5 parent: 2 type: Transform - - uid: 26332 + - uid: 26371 components: - pos: 52.5,-28.5 parent: 2 type: Transform - - uid: 26333 + - uid: 26372 components: - pos: 52.5,-27.5 parent: 2 type: Transform - - uid: 26334 + - uid: 26373 components: - pos: 52.5,-30.5 parent: 2 type: Transform - - uid: 26335 + - uid: 26374 components: - pos: 52.5,-31.5 parent: 2 type: Transform - - uid: 26336 + - uid: 26375 components: - pos: 43.5,-32.5 parent: 2 type: Transform - - uid: 26337 + - uid: 26376 components: - pos: 58.5,-68.5 parent: 2 type: Transform - - uid: 26338 + - uid: 26377 components: - pos: 49.5,-32.5 parent: 2 type: Transform - - uid: 26339 + - uid: 26378 components: - pos: 48.5,-32.5 parent: 2 type: Transform - - uid: 26340 + - uid: 26379 components: - pos: 46.5,-32.5 parent: 2 type: Transform - - uid: 26341 + - uid: 26380 components: - pos: 57.5,-68.5 parent: 2 type: Transform - - uid: 26342 + - uid: 26381 components: - pos: 45.5,-32.5 parent: 2 type: Transform - - uid: 26343 + - uid: 26382 components: - pos: 69.5,-67.5 parent: 2 type: Transform - - uid: 26344 + - uid: 26383 components: - pos: 70.5,-67.5 parent: 2 type: Transform - - uid: 26345 + - uid: 26384 components: - pos: 71.5,-67.5 parent: 2 type: Transform - - uid: 26346 + - uid: 26385 components: - pos: 71.5,-63.5 parent: 2 type: Transform - - uid: 26347 + - uid: 26386 components: - pos: 72.5,-63.5 parent: 2 type: Transform - - uid: 26348 + - uid: 26387 components: - pos: 72.5,-60.5 parent: 2 type: Transform - - uid: 26349 + - uid: 26388 components: - pos: 73.5,-60.5 parent: 2 type: Transform - - uid: 26350 + - uid: 26389 components: - pos: 72.5,-61.5 parent: 2 type: Transform - - uid: 26351 + - uid: 26390 components: - pos: 72.5,-62.5 parent: 2 type: Transform - - uid: 26352 + - uid: 26391 components: - pos: 73.5,-59.5 parent: 2 type: Transform - - uid: 26353 + - uid: 26392 components: - pos: 73.5,-58.5 parent: 2 type: Transform - - uid: 26354 + - uid: 26393 components: - pos: 74.5,-58.5 parent: 2 type: Transform - - uid: 26355 + - uid: 26394 components: - pos: 75.5,-58.5 parent: 2 type: Transform - - uid: 26356 + - uid: 26395 components: - pos: 10.5,-38.5 parent: 2 type: Transform - - uid: 26357 + - uid: 26396 components: - pos: -43.5,-23.5 parent: 2 type: Transform - - uid: 26358 + - uid: 26397 components: - rot: 3.141592653589793 rad pos: -59.5,-28.5 parent: 2 type: Transform - - uid: 26359 + - uid: 26398 components: - pos: -43.5,-24.5 parent: 2 type: Transform - - uid: 26360 + - uid: 26399 components: - rot: 3.141592653589793 rad pos: -40.5,-20.5 parent: 2 type: Transform - - uid: 26361 + - uid: 26400 components: - rot: -1.5707963267948966 rad pos: -34.5,-38.5 parent: 2 type: Transform - - uid: 26362 + - uid: 26401 components: - rot: -1.5707963267948966 rad pos: -40.5,-37.5 parent: 2 type: Transform - - uid: 26363 + - uid: 26402 components: - pos: 28.5,-69.5 parent: 2 type: Transform - - uid: 26364 + - uid: 26403 components: - pos: 22.5,-69.5 parent: 2 type: Transform - - uid: 26365 + - uid: 26404 components: - pos: 23.5,-69.5 parent: 2 type: Transform - - uid: 26366 + - uid: 26405 components: - rot: -1.5707963267948966 rad pos: -33.5,-39.5 parent: 2 type: Transform - - uid: 26367 + - uid: 26406 components: - rot: -1.5707963267948966 rad pos: -33.5,-38.5 parent: 2 type: Transform - - uid: 26368 + - uid: 26407 components: - pos: -41.5,-31.5 parent: 2 type: Transform - - uid: 26369 + - uid: 26408 components: - pos: -41.5,-32.5 parent: 2 type: Transform - - uid: 26370 + - uid: 26409 components: - pos: -41.5,-36.5 parent: 2 type: Transform - - uid: 26371 + - uid: 26410 components: - pos: -41.5,-37.5 parent: 2 type: Transform - - uid: 26372 + - uid: 26411 components: - rot: -1.5707963267948966 rad pos: -39.5,-37.5 parent: 2 type: Transform - - uid: 26373 + - uid: 26412 components: - rot: -1.5707963267948966 rad pos: -35.5,-37.5 parent: 2 type: Transform - - uid: 26374 + - uid: 26413 components: - rot: -1.5707963267948966 rad pos: -36.5,-37.5 parent: 2 type: Transform - - uid: 26375 + - uid: 26414 components: - rot: -1.5707963267948966 rad pos: -33.5,-42.5 parent: 2 type: Transform - - uid: 26376 + - uid: 26415 components: - rot: -1.5707963267948966 rad pos: -32.5,-42.5 parent: 2 type: Transform - - uid: 26377 + - uid: 26416 components: - pos: -44.5,-7.5 parent: 2 type: Transform - - uid: 26378 + - uid: 26417 components: - pos: -45.5,-7.5 parent: 2 type: Transform - - uid: 26379 + - uid: 26418 components: - pos: -47.5,-7.5 parent: 2 type: Transform - - uid: 26380 + - uid: 26419 components: - pos: -48.5,-7.5 parent: 2 type: Transform - - uid: 26381 + - uid: 26420 components: - pos: -49.5,-16.5 parent: 2 type: Transform - - uid: 26382 + - uid: 26421 components: - pos: -49.5,-10.5 parent: 2 type: Transform - - uid: 26383 + - uid: 26422 components: - pos: -49.5,-9.5 parent: 2 type: Transform - - uid: 26384 + - uid: 26423 components: - pos: -49.5,-8.5 parent: 2 type: Transform - - uid: 26385 + - uid: 26424 components: - pos: -49.5,-7.5 parent: 2 type: Transform - - uid: 26386 + - uid: 26425 components: - pos: -49.5,-17.5 parent: 2 type: Transform - - uid: 26387 + - uid: 26426 components: - pos: -49.5,-18.5 parent: 2 type: Transform - - uid: 26388 + - uid: 26427 components: - pos: -48.5,-18.5 parent: 2 type: Transform - - uid: 26389 + - uid: 26428 components: - pos: -47.5,-18.5 parent: 2 type: Transform - - uid: 26390 + - uid: 26429 components: - pos: -46.5,-18.5 parent: 2 type: Transform - - uid: 26391 + - uid: 26430 components: - pos: -49.5,-11.5 parent: 2 type: Transform - - uid: 26392 + - uid: 26431 components: - pos: -50.5,-11.5 parent: 2 type: Transform - - uid: 26393 + - uid: 26432 components: - pos: -51.5,-11.5 parent: 2 type: Transform - - uid: 26394 + - uid: 26433 components: - pos: -51.5,-12.5 parent: 2 type: Transform - - uid: 26395 + - uid: 26434 components: - pos: -51.5,-13.5 parent: 2 type: Transform - - uid: 26396 + - uid: 26435 components: - pos: -51.5,-14.5 parent: 2 type: Transform - - uid: 26397 + - uid: 26436 components: - pos: -51.5,-15.5 parent: 2 type: Transform - - uid: 26398 + - uid: 26437 components: - pos: -50.5,-15.5 parent: 2 type: Transform - - uid: 26399 + - uid: 26438 components: - pos: -49.5,-15.5 parent: 2 type: Transform - - uid: 26400 + - uid: 26439 components: - pos: -49.5,-4.5 parent: 2 type: Transform - - uid: 26401 + - uid: 26440 components: - pos: -50.5,-4.5 parent: 2 type: Transform - - uid: 26402 + - uid: 26441 components: - pos: -51.5,-4.5 parent: 2 type: Transform - - uid: 26403 + - uid: 26442 components: - pos: -52.5,-4.5 parent: 2 type: Transform - - uid: 26404 + - uid: 26443 components: - pos: -53.5,-4.5 parent: 2 type: Transform - - uid: 26405 + - uid: 26444 components: - pos: -54.5,-4.5 parent: 2 type: Transform - - uid: 26406 + - uid: 26445 components: - pos: -55.5,-4.5 parent: 2 type: Transform - - uid: 26407 + - uid: 26446 components: - pos: -55.5,-5.5 parent: 2 type: Transform - - uid: 26408 + - uid: 26447 components: - pos: -56.5,-5.5 parent: 2 type: Transform - - uid: 26409 + - uid: 26448 components: - pos: -56.5,-6.5 parent: 2 type: Transform - - uid: 26410 + - uid: 26449 components: - pos: -56.5,-7.5 parent: 2 type: Transform - - uid: 26411 + - uid: 26450 components: - pos: -56.5,-8.5 parent: 2 type: Transform - - uid: 26412 + - uid: 26451 components: - pos: -56.5,-9.5 parent: 2 type: Transform - - uid: 26413 + - uid: 26452 components: - pos: -56.5,-10.5 parent: 2 type: Transform - - uid: 26414 + - uid: 26453 components: - pos: -56.5,-16.5 parent: 2 type: Transform - - uid: 26415 + - uid: 26454 components: - pos: -56.5,-17.5 parent: 2 type: Transform - - uid: 26416 + - uid: 26455 components: - rot: -1.5707963267948966 rad pos: -57.5,-17.5 parent: 2 type: Transform - - uid: 26417 + - uid: 26456 components: - pos: -56.5,-19.5 parent: 2 type: Transform - - uid: 26418 + - uid: 26457 components: - pos: -56.5,-19.5 parent: 2 type: Transform - - uid: 26419 + - uid: 26458 components: - pos: -52.5,-21.5 parent: 2 type: Transform - - uid: 26420 + - uid: 26459 components: - pos: -50.5,-21.5 parent: 2 type: Transform - - uid: 26421 + - uid: 26460 components: - pos: -49.5,-21.5 parent: 2 type: Transform - - uid: 26422 + - uid: 26461 components: - pos: -44.5,-18.5 parent: 2 type: Transform - - uid: 26423 + - uid: 26462 components: - pos: -44.5,-18.5 parent: 2 type: Transform - - uid: 26424 + - uid: 26463 components: - pos: 55.5,-50.5 parent: 2 type: Transform - - uid: 26425 + - uid: 26464 components: - pos: -45.5,-24.5 parent: 2 type: Transform - - uid: 26426 + - uid: 26465 components: - pos: -49.5,-23.5 parent: 2 type: Transform - - uid: 26427 + - uid: 26466 components: - pos: -49.5,-22.5 parent: 2 type: Transform - - uid: 26428 + - uid: 26467 components: - pos: -49.5,-24.5 parent: 2 type: Transform - - uid: 26429 + - uid: 26468 components: - pos: -48.5,-24.5 parent: 2 type: Transform - - uid: 26430 + - uid: 26469 components: - pos: -47.5,-24.5 parent: 2 type: Transform - - uid: 26431 + - uid: 26470 components: - pos: 56.5,-50.5 parent: 2 type: Transform - - uid: 26432 + - uid: 26471 components: - pos: -52.5,-26.5 parent: 2 type: Transform - - uid: 26433 + - uid: 26472 components: - pos: -52.5,-25.5 parent: 2 type: Transform - - uid: 26434 + - uid: 26473 components: - pos: -52.5,-24.5 parent: 2 type: Transform - - uid: 26435 + - uid: 26474 components: - pos: -52.5,-23.5 parent: 2 type: Transform - - uid: 26436 + - uid: 26475 components: - pos: -52.5,-22.5 parent: 2 type: Transform - - uid: 26437 + - uid: 26476 components: - pos: -49.5,-20.5 parent: 2 type: Transform - - uid: 26438 + - uid: 26477 components: - rot: 3.141592653589793 rad pos: -58.5,-22.5 parent: 2 type: Transform - - uid: 26439 + - uid: 26478 components: - rot: 3.141592653589793 rad pos: -59.5,-22.5 parent: 2 type: Transform - - uid: 26440 + - uid: 26479 components: - rot: 3.141592653589793 rad pos: -60.5,-22.5 parent: 2 type: Transform - - uid: 26441 + - uid: 26480 components: - rot: 3.141592653589793 rad pos: -61.5,-22.5 parent: 2 type: Transform - - uid: 26442 + - uid: 26481 components: - rot: 3.141592653589793 rad pos: -62.5,-22.5 parent: 2 type: Transform - - uid: 26443 + - uid: 26482 components: - rot: 3.141592653589793 rad pos: -63.5,-22.5 parent: 2 type: Transform - - uid: 26444 + - uid: 26483 components: - rot: 3.141592653589793 rad pos: -69.5,-22.5 parent: 2 type: Transform - - uid: 26445 + - uid: 26484 components: - rot: 3.141592653589793 rad pos: -70.5,-22.5 parent: 2 type: Transform - - uid: 26446 + - uid: 26485 components: - rot: 3.141592653589793 rad pos: -53.5,-26.5 parent: 2 type: Transform - - uid: 26447 + - uid: 26486 components: - rot: 3.141592653589793 rad pos: -55.5,-26.5 parent: 2 type: Transform - - uid: 26448 + - uid: 26487 components: - rot: 1.5707963267948966 rad pos: -56.5,-26.5 parent: 2 type: Transform - - uid: 26449 + - uid: 26488 components: - rot: 3.141592653589793 rad pos: -57.5,-26.5 parent: 2 type: Transform - - uid: 26450 + - uid: 26489 components: - rot: 3.141592653589793 rad pos: -59.5,-26.5 parent: 2 type: Transform - - uid: 26451 + - uid: 26490 components: - pos: -61.5,-26.5 parent: 2 type: Transform - - uid: 26452 + - uid: 26491 components: - pos: -59.5,-29.5 parent: 2 type: Transform - - uid: 26453 + - uid: 26492 components: - rot: 3.141592653589793 rad pos: -63.5,-29.5 parent: 2 type: Transform - - uid: 26454 + - uid: 26493 components: - pos: -62.5,-26.5 parent: 2 type: Transform - - uid: 26455 + - uid: 26494 components: - pos: -63.5,-27.5 parent: 2 type: Transform - - uid: 26456 + - uid: 26495 components: - pos: -63.5,-28.5 parent: 2 type: Transform - - uid: 26457 + - uid: 26496 components: - pos: -63.5,-26.5 parent: 2 type: Transform - - uid: 26458 + - uid: 26497 components: - pos: -59.5,-31.5 parent: 2 type: Transform - - uid: 26459 + - uid: 26498 components: - pos: -60.5,-31.5 parent: 2 type: Transform - - uid: 26460 + - uid: 26499 components: - pos: -57.5,-19.5 parent: 2 type: Transform - - uid: 26461 + - uid: 26500 components: - pos: -58.5,-19.5 parent: 2 type: Transform - - uid: 26462 + - uid: 26501 components: - pos: -58.5,-20.5 parent: 2 type: Transform - - uid: 26463 + - uid: 26502 components: - pos: -58.5,-21.5 parent: 2 type: Transform - - uid: 26464 + - uid: 26503 components: - pos: -62.5,-31.5 parent: 2 type: Transform - - uid: 26465 + - uid: 26504 components: - pos: -63.5,-31.5 parent: 2 type: Transform - - uid: 26466 + - uid: 26505 components: - pos: -68.5,-33.5 parent: 2 type: Transform - - uid: 26467 + - uid: 26506 components: - pos: -64.5,-33.5 parent: 2 type: Transform - - uid: 26468 + - uid: 26507 components: - pos: -63.5,-32.5 parent: 2 type: Transform - - uid: 26469 + - uid: 26508 components: - pos: -64.5,-32.5 parent: 2 type: Transform - - uid: 26470 + - uid: 26509 components: - pos: -71.5,-34.5 parent: 2 type: Transform - - uid: 26471 + - uid: 26510 components: - rot: 1.5707963267948966 rad pos: -58.5,-26.5 parent: 2 type: Transform - - uid: 26472 + - uid: 26511 components: - rot: 1.5707963267948966 rad pos: -54.5,-26.5 parent: 2 type: Transform - - uid: 26473 + - uid: 26512 components: - rot: 3.141592653589793 rad pos: -40.5,-23.5 parent: 2 type: Transform - - uid: 26474 + - uid: 26513 components: - rot: 3.141592653589793 rad pos: -41.5,-23.5 parent: 2 type: Transform - - uid: 26475 + - uid: 26514 components: - rot: 3.141592653589793 rad pos: -42.5,-23.5 parent: 2 type: Transform - - uid: 26476 + - uid: 26515 components: - pos: -59.5,-27.5 parent: 2 type: Transform - - uid: 26477 + - uid: 26516 components: - pos: -50.5,-55.5 parent: 2 type: Transform - - uid: 26478 + - uid: 26517 components: - pos: -50.5,-53.5 parent: 2 type: Transform - - uid: 26479 + - uid: 26518 components: - pos: -50.5,-51.5 parent: 2 type: Transform - - uid: 26480 + - uid: 26519 components: - pos: -50.5,-49.5 parent: 2 type: Transform - - uid: 26481 + - uid: 26520 components: - pos: -50.5,-47.5 parent: 2 type: Transform - - uid: 26482 + - uid: 26521 components: - pos: -50.5,-45.5 parent: 2 type: Transform - - uid: 26483 + - uid: 26522 components: - pos: -50.5,-43.5 parent: 2 type: Transform - - uid: 26484 + - uid: 26523 components: - pos: -50.5,-41.5 parent: 2 type: Transform - - uid: 26485 + - uid: 26524 components: - pos: -49.5,-41.5 parent: 2 type: Transform - - uid: 26486 + - uid: 26525 components: - pos: -48.5,-41.5 parent: 2 type: Transform - - uid: 26487 + - uid: 26526 components: - pos: -47.5,-41.5 parent: 2 type: Transform - - uid: 26488 + - uid: 26527 components: - pos: -49.5,-43.5 parent: 2 type: Transform - - uid: 26489 + - uid: 26528 components: - pos: -48.5,-43.5 parent: 2 type: Transform - - uid: 26490 + - uid: 26529 components: - pos: -47.5,-43.5 parent: 2 type: Transform - - uid: 26491 + - uid: 26530 components: - pos: -49.5,-45.5 parent: 2 type: Transform - - uid: 26492 + - uid: 26531 components: - pos: -48.5,-45.5 parent: 2 type: Transform - - uid: 26493 + - uid: 26532 components: - pos: -47.5,-45.5 parent: 2 type: Transform - - uid: 26494 + - uid: 26533 components: - pos: -49.5,-47.5 parent: 2 type: Transform - - uid: 26495 + - uid: 26534 components: - pos: -48.5,-47.5 parent: 2 type: Transform - - uid: 26496 + - uid: 26535 components: - pos: -47.5,-47.5 parent: 2 type: Transform - - uid: 26497 + - uid: 26536 components: - pos: -49.5,-49.5 parent: 2 type: Transform - - uid: 26498 + - uid: 26537 components: - pos: -48.5,-49.5 parent: 2 type: Transform - - uid: 26499 + - uid: 26538 components: - pos: -47.5,-49.5 parent: 2 type: Transform - - uid: 26500 + - uid: 26539 components: - pos: -49.5,-51.5 parent: 2 type: Transform - - uid: 26501 + - uid: 26540 components: - pos: -48.5,-51.5 parent: 2 type: Transform - - uid: 26502 + - uid: 26541 components: - pos: -47.5,-51.5 parent: 2 type: Transform - - uid: 26503 + - uid: 26542 components: - pos: -49.5,-53.5 parent: 2 type: Transform - - uid: 26504 + - uid: 26543 components: - pos: -48.5,-53.5 parent: 2 type: Transform - - uid: 26505 + - uid: 26544 components: - pos: -47.5,-53.5 parent: 2 type: Transform - - uid: 26506 + - uid: 26545 components: - pos: -49.5,-55.5 parent: 2 type: Transform - - uid: 26507 + - uid: 26546 components: - pos: -48.5,-55.5 parent: 2 type: Transform - - uid: 26508 + - uid: 26547 components: - pos: -47.5,-55.5 parent: 2 type: Transform - - uid: 26509 + - uid: 26548 components: - pos: -51.5,-55.5 parent: 2 type: Transform - - uid: 26510 + - uid: 26549 components: - pos: -51.5,-54.5 parent: 2 type: Transform - - uid: 26511 + - uid: 26550 components: - pos: -51.5,-53.5 parent: 2 type: Transform - - uid: 26512 + - uid: 26551 components: - pos: -51.5,-51.5 parent: 2 type: Transform - - uid: 26513 + - uid: 26552 components: - pos: -51.5,-50.5 parent: 2 type: Transform - - uid: 26514 + - uid: 26553 components: - pos: -51.5,-49.5 parent: 2 type: Transform - - uid: 26515 + - uid: 26554 components: - pos: -51.5,-48.5 parent: 2 type: Transform - - uid: 26516 + - uid: 26555 components: - pos: -51.5,-47.5 parent: 2 type: Transform - - uid: 26517 + - uid: 26556 components: - pos: -51.5,-46.5 parent: 2 type: Transform - - uid: 26518 + - uid: 26557 components: - pos: -51.5,-45.5 parent: 2 type: Transform - - uid: 26519 + - uid: 26558 components: - pos: -51.5,-44.5 parent: 2 type: Transform - - uid: 26520 + - uid: 26559 components: - pos: -51.5,-43.5 parent: 2 type: Transform - - uid: 26521 + - uid: 26560 components: - pos: -51.5,-42.5 parent: 2 type: Transform - - uid: 26522 + - uid: 26561 components: - pos: -51.5,-41.5 parent: 2 type: Transform - - uid: 26523 + - uid: 26562 components: - pos: -47.5,-38.5 parent: 2 type: Transform - - uid: 26524 + - uid: 26563 components: - pos: -45.5,-39.5 parent: 2 type: Transform - - uid: 26525 + - uid: 26564 components: - pos: -43.5,-39.5 parent: 2 type: Transform - - uid: 26526 + - uid: 26565 components: - pos: -41.5,-39.5 parent: 2 type: Transform - - uid: 26527 + - uid: 26566 components: - pos: -41.5,-38.5 parent: 2 type: Transform - - uid: 26528 + - uid: 26567 components: - rot: 1.5707963267948966 rad pos: -59.5,-30.5 parent: 2 type: Transform - - uid: 26529 + - uid: 26568 components: - rot: 3.141592653589793 rad pos: -58.5,-31.5 parent: 2 type: Transform - - uid: 26530 + - uid: 26569 components: - rot: 3.141592653589793 rad pos: -57.5,-5.5 parent: 2 type: Transform - - uid: 26531 + - uid: 26570 components: - rot: 3.141592653589793 rad pos: -57.5,-4.5 parent: 2 type: Transform - - uid: 26532 + - uid: 26571 components: - rot: 3.141592653589793 rad pos: -58.5,-4.5 parent: 2 type: Transform - - uid: 26533 + - uid: 26572 components: - rot: 3.141592653589793 rad pos: -59.5,-4.5 parent: 2 type: Transform - - uid: 26534 + - uid: 26573 components: - rot: 3.141592653589793 rad pos: -60.5,-4.5 parent: 2 type: Transform - - uid: 26535 + - uid: 26574 components: - rot: 3.141592653589793 rad pos: -61.5,-4.5 parent: 2 type: Transform - - uid: 26536 + - uid: 26575 components: - rot: 3.141592653589793 rad pos: -62.5,-4.5 parent: 2 type: Transform - - uid: 26537 + - uid: 26576 components: - rot: 3.141592653589793 rad pos: -63.5,-4.5 parent: 2 type: Transform - - uid: 26538 + - uid: 26577 components: - rot: 3.141592653589793 rad pos: -64.5,-4.5 parent: 2 type: Transform - - uid: 26539 + - uid: 26578 components: - rot: 3.141592653589793 rad pos: -65.5,-4.5 parent: 2 type: Transform - - uid: 26540 + - uid: 26579 components: - rot: 3.141592653589793 rad pos: -66.5,-4.5 parent: 2 type: Transform - - uid: 26541 + - uid: 26580 components: - rot: 3.141592653589793 rad pos: -67.5,-4.5 parent: 2 type: Transform - - uid: 26542 + - uid: 26581 components: - rot: 3.141592653589793 rad pos: -68.5,-4.5 parent: 2 type: Transform - - uid: 26543 + - uid: 26582 components: - rot: 3.141592653589793 rad pos: -69.5,-4.5 parent: 2 type: Transform - - uid: 26544 + - uid: 26583 components: - rot: 3.141592653589793 rad pos: -70.5,-4.5 parent: 2 type: Transform - - uid: 26545 + - uid: 26584 components: - rot: 3.141592653589793 rad pos: -71.5,-4.5 parent: 2 type: Transform - - uid: 26546 + - uid: 26585 components: - rot: 3.141592653589793 rad pos: -72.5,-4.5 parent: 2 type: Transform - - uid: 26547 + - uid: 26586 components: - rot: 3.141592653589793 rad pos: -73.5,-4.5 parent: 2 type: Transform - - uid: 26548 + - uid: 26587 components: - rot: 3.141592653589793 rad pos: -74.5,-4.5 parent: 2 type: Transform - - uid: 26549 + - uid: 26588 components: - rot: 3.141592653589793 rad pos: -75.5,-4.5 parent: 2 type: Transform - - uid: 26550 + - uid: 26589 components: - rot: 3.141592653589793 rad pos: -75.5,-5.5 parent: 2 type: Transform - - uid: 26551 + - uid: 26590 components: - rot: 3.141592653589793 rad pos: -75.5,-6.5 parent: 2 type: Transform - - uid: 26552 + - uid: 26591 components: - rot: 3.141592653589793 rad pos: -75.5,-7.5 parent: 2 type: Transform - - uid: 26553 + - uid: 26592 components: - rot: 3.141592653589793 rad pos: -75.5,-8.5 parent: 2 type: Transform - - uid: 26554 + - uid: 26593 components: - rot: 3.141592653589793 rad pos: -75.5,-9.5 parent: 2 type: Transform - - uid: 26555 + - uid: 26594 components: - rot: 3.141592653589793 rad pos: -75.5,-10.5 parent: 2 type: Transform - - uid: 26556 + - uid: 26595 components: - rot: 3.141592653589793 rad pos: -75.5,-11.5 parent: 2 type: Transform - - uid: 26557 + - uid: 26596 components: - rot: 3.141592653589793 rad pos: -75.5,-13.5 parent: 2 type: Transform - - uid: 26558 + - uid: 26597 components: - rot: 3.141592653589793 rad pos: -75.5,-14.5 parent: 2 type: Transform - - uid: 26559 + - uid: 26598 components: - rot: 3.141592653589793 rad pos: -75.5,-15.5 parent: 2 type: Transform - - uid: 26560 + - uid: 26599 components: - rot: 3.141592653589793 rad pos: -75.5,-16.5 parent: 2 type: Transform - - uid: 26561 + - uid: 26600 components: - rot: 3.141592653589793 rad pos: -75.5,-17.5 parent: 2 type: Transform - - uid: 26562 + - uid: 26601 components: - rot: 3.141592653589793 rad pos: -75.5,-18.5 parent: 2 type: Transform - - uid: 26563 + - uid: 26602 components: - rot: 3.141592653589793 rad pos: -75.5,-19.5 parent: 2 type: Transform - - uid: 26564 + - uid: 26603 components: - rot: 3.141592653589793 rad pos: -75.5,-20.5 parent: 2 type: Transform - - uid: 26565 + - uid: 26604 components: - rot: 3.141592653589793 rad pos: -75.5,-21.5 parent: 2 type: Transform - - uid: 26566 + - uid: 26605 components: - rot: 3.141592653589793 rad pos: -75.5,-22.5 parent: 2 type: Transform - - uid: 26567 + - uid: 26606 components: - rot: 3.141592653589793 rad pos: -74.5,-22.5 parent: 2 type: Transform - - uid: 26568 + - uid: 26607 components: - rot: 3.141592653589793 rad pos: -73.5,-22.5 parent: 2 type: Transform - - uid: 26569 + - uid: 26608 components: - rot: 3.141592653589793 rad pos: -72.5,-22.5 parent: 2 type: Transform - - uid: 26570 + - uid: 26609 components: - rot: 3.141592653589793 rad pos: -71.5,-22.5 parent: 2 type: Transform - - uid: 26571 + - uid: 26610 components: - pos: -45.5,-57.5 parent: 2 type: Transform - - uid: 26572 + - uid: 26611 components: - pos: -45.5,-56.5 parent: 2 type: Transform - - uid: 26573 + - uid: 26612 components: - pos: -45.5,-58.5 parent: 2 type: Transform - - uid: 26574 + - uid: 26613 components: - rot: 3.141592653589793 rad pos: -39.5,-59.5 parent: 2 type: Transform - - uid: 26575 + - uid: 26614 components: - pos: -43.5,-58.5 parent: 2 type: Transform - - uid: 26576 + - uid: 26615 components: - rot: 3.141592653589793 rad pos: -36.5,-58.5 parent: 2 type: Transform - - uid: 26577 + - uid: 26616 components: - pos: -40.5,-58.5 parent: 2 type: Transform - - uid: 26578 + - uid: 26617 components: - pos: -42.5,-31.5 parent: 2 type: Transform - - uid: 26579 + - uid: 26618 components: - pos: -43.5,-31.5 parent: 2 type: Transform - - uid: 26580 + - uid: 26619 components: - pos: -43.5,-32.5 parent: 2 type: Transform - - uid: 26581 + - uid: 26620 components: - pos: -44.5,-32.5 parent: 2 type: Transform - - uid: 26582 + - uid: 26621 components: - pos: -45.5,-32.5 parent: 2 type: Transform - - uid: 26583 + - uid: 26622 components: - pos: -45.5,-36.5 parent: 2 type: Transform - - uid: 26584 + - uid: 26623 components: - pos: -43.5,-37.5 parent: 2 type: Transform - - uid: 26585 + - uid: 26624 components: - rot: 3.141592653589793 rad pos: -40.5,-59.5 parent: 2 type: Transform - - uid: 26586 + - uid: 26625 components: - rot: -1.5707963267948966 rad pos: -32.5,-43.5 parent: 2 type: Transform - - uid: 26587 + - uid: 26626 components: - rot: 1.5707963267948966 rad pos: -36.5,-38.5 parent: 2 type: Transform - - uid: 26588 + - uid: 26627 components: - rot: 1.5707963267948966 rad pos: -36.5,-39.5 parent: 2 type: Transform - - uid: 26589 + - uid: 26628 components: - rot: 1.5707963267948966 rad pos: -36.5,-40.5 parent: 2 type: Transform - - uid: 26590 + - uid: 26629 components: - rot: 1.5707963267948966 rad pos: -41.5,-40.5 parent: 2 type: Transform - - uid: 26591 + - uid: 26630 components: - pos: -32.5,-44.5 parent: 2 type: Transform - - uid: 26592 + - uid: 26631 components: - pos: -32.5,-45.5 parent: 2 type: Transform - - uid: 26593 + - uid: 26632 components: - pos: -32.5,-46.5 parent: 2 type: Transform - - uid: 26594 + - uid: 26633 components: - pos: -32.5,-47.5 parent: 2 type: Transform - - uid: 26595 + - uid: 26634 components: - pos: -32.5,-48.5 parent: 2 type: Transform - - uid: 26596 + - uid: 26635 components: - pos: -32.5,-49.5 parent: 2 type: Transform - - uid: 26597 + - uid: 26636 components: - pos: -32.5,-51.5 parent: 2 type: Transform - - uid: 26598 + - uid: 26637 components: - pos: -32.5,-52.5 parent: 2 type: Transform - - uid: 26599 + - uid: 26638 components: - pos: -32.5,-53.5 parent: 2 type: Transform - - uid: 26600 + - uid: 26639 components: - pos: -32.5,-54.5 parent: 2 type: Transform - - uid: 26601 + - uid: 26640 components: - pos: -32.5,-55.5 parent: 2 type: Transform - - uid: 26602 + - uid: 26641 components: - pos: -32.5,-56.5 parent: 2 type: Transform - - uid: 26603 + - uid: 26642 components: - pos: -32.5,-57.5 parent: 2 type: Transform - - uid: 26604 + - uid: 26643 components: - pos: -33.5,-57.5 parent: 2 type: Transform - - uid: 26605 + - uid: 26644 components: - pos: -33.5,-58.5 parent: 2 type: Transform - - uid: 26606 + - uid: 26645 components: - pos: -34.5,-58.5 parent: 2 type: Transform - - uid: 26607 + - uid: 26646 components: - pos: -47.5,-39.5 parent: 2 type: Transform - - uid: 26608 + - uid: 26647 components: - pos: 65.5,-31.5 parent: 2 type: Transform - - uid: 26609 + - uid: 26648 components: - pos: -70.5,-3.5 parent: 2 type: Transform - - uid: 26610 + - uid: 26649 components: - pos: -71.5,-3.5 parent: 2 type: Transform - - uid: 26611 + - uid: 26650 components: - pos: -72.5,-3.5 parent: 2 type: Transform - - uid: 26612 + - uid: 26651 components: - pos: -76.5,-4.5 parent: 2 type: Transform - - uid: 26613 + - uid: 26652 components: - pos: -76.5,-5.5 parent: 2 type: Transform - - uid: 26614 + - uid: 26653 components: - pos: -76.5,-6.5 parent: 2 type: Transform - - uid: 26615 + - uid: 26654 components: - rot: -1.5707963267948966 rad pos: -58.5,-17.5 parent: 2 type: Transform - - uid: 26616 + - uid: 26655 components: - pos: -76.5,-18.5 parent: 2 type: Transform - - uid: 26617 + - uid: 26656 components: - pos: -76.5,-19.5 parent: 2 type: Transform - - uid: 26618 + - uid: 26657 components: - pos: -76.5,-20.5 parent: 2 type: Transform - - uid: 26619 + - uid: 26658 components: - pos: -75.5,-23.5 parent: 2 type: Transform - - uid: 26620 + - uid: 26659 components: - pos: -63.5,-3.5 parent: 2 type: Transform - - uid: 26621 + - uid: 26660 components: - pos: -64.5,-3.5 parent: 2 type: Transform - - uid: 26622 + - uid: 26661 components: - pos: -65.5,-3.5 parent: 2 type: Transform - - uid: 26623 + - uid: 26662 components: - pos: -58.5,-3.5 parent: 2 type: Transform - - uid: 26624 + - uid: 26663 components: - pos: -75.5,-24.5 parent: 2 type: Transform - - uid: 26625 + - uid: 26664 components: - pos: -75.5,-27.5 parent: 2 type: Transform - - uid: 26626 + - uid: 26665 components: - pos: -75.5,-26.5 parent: 2 type: Transform - - uid: 26627 + - uid: 26666 components: - pos: -76.5,-26.5 parent: 2 type: Transform - - uid: 26628 + - uid: 26667 components: - pos: -45.5,-31.5 parent: 2 type: Transform - - uid: 26629 + - uid: 26668 components: - rot: -1.5707963267948966 rad pos: -46.5,-31.5 parent: 2 type: Transform - - uid: 26630 + - uid: 26669 components: - rot: -1.5707963267948966 rad pos: -47.5,-31.5 parent: 2 type: Transform - - uid: 26631 + - uid: 26670 components: - rot: -1.5707963267948966 rad pos: -47.5,-32.5 parent: 2 type: Transform - - uid: 26632 + - uid: 26671 components: - rot: -1.5707963267948966 rad pos: -47.5,-33.5 parent: 2 type: Transform - - uid: 26633 + - uid: 26672 components: - rot: -1.5707963267948966 rad pos: -48.5,-33.5 parent: 2 type: Transform - - uid: 26634 + - uid: 26673 components: - rot: -1.5707963267948966 rad pos: -49.5,-33.5 parent: 2 type: Transform - - uid: 26635 + - uid: 26674 components: - rot: -1.5707963267948966 rad pos: -50.5,-33.5 parent: 2 type: Transform - - uid: 26636 + - uid: 26675 components: - rot: -1.5707963267948966 rad pos: -51.5,-33.5 parent: 2 type: Transform - - uid: 26637 + - uid: 26676 components: - rot: -1.5707963267948966 rad pos: -52.5,-33.5 parent: 2 type: Transform - - uid: 26638 + - uid: 26677 components: - rot: -1.5707963267948966 rad pos: -53.5,-33.5 parent: 2 type: Transform - - uid: 26639 + - uid: 26678 components: - rot: -1.5707963267948966 rad pos: -53.5,-34.5 parent: 2 type: Transform - - uid: 26640 + - uid: 26679 components: - rot: -1.5707963267948966 rad pos: -53.5,-35.5 parent: 2 type: Transform - - uid: 26641 + - uid: 26680 components: - rot: -1.5707963267948966 rad pos: -53.5,-38.5 parent: 2 type: Transform - - uid: 26642 + - uid: 26681 components: - rot: -1.5707963267948966 rad pos: -53.5,-39.5 parent: 2 type: Transform - - uid: 26643 + - uid: 26682 components: - rot: -1.5707963267948966 rad pos: -53.5,-40.5 parent: 2 type: Transform - - uid: 26644 + - uid: 26683 components: - rot: -1.5707963267948966 rad pos: -54.5,-40.5 parent: 2 type: Transform - - uid: 26645 + - uid: 26684 components: - rot: -1.5707963267948966 rad pos: -55.5,-40.5 parent: 2 type: Transform - - uid: 26646 + - uid: 26685 components: - rot: -1.5707963267948966 rad pos: -55.5,-41.5 parent: 2 type: Transform - - uid: 26647 + - uid: 26686 components: - rot: -1.5707963267948966 rad pos: -55.5,-42.5 parent: 2 type: Transform - - uid: 26648 + - uid: 26687 components: - rot: -1.5707963267948966 rad pos: -55.5,-43.5 parent: 2 type: Transform - - uid: 26649 + - uid: 26688 components: - rot: -1.5707963267948966 rad pos: -55.5,-44.5 parent: 2 type: Transform - - uid: 26650 + - uid: 26689 components: - rot: -1.5707963267948966 rad pos: -55.5,-45.5 parent: 2 type: Transform - - uid: 26651 + - uid: 26690 components: - rot: -1.5707963267948966 rad pos: -55.5,-46.5 parent: 2 type: Transform - - uid: 26652 + - uid: 26691 components: - pos: -53.5,-46.5 parent: 2 type: Transform - - uid: 26653 + - uid: 26692 components: - pos: -53.5,-51.5 parent: 2 type: Transform - - uid: 26654 + - uid: 26693 components: - pos: -54.5,-51.5 parent: 2 type: Transform - - uid: 26655 + - uid: 26694 components: - pos: -54.5,-46.5 parent: 2 type: Transform - - uid: 26656 + - uid: 26695 components: - rot: -1.5707963267948966 rad pos: -55.5,-51.5 parent: 2 type: Transform - - uid: 26657 + - uid: 26696 components: - rot: -1.5707963267948966 rad pos: -55.5,-52.5 parent: 2 type: Transform - - uid: 26658 + - uid: 26697 components: - rot: -1.5707963267948966 rad pos: -55.5,-53.5 parent: 2 type: Transform - - uid: 26659 + - uid: 26698 components: - rot: -1.5707963267948966 rad pos: -55.5,-54.5 parent: 2 type: Transform - - uid: 26660 + - uid: 26699 components: - rot: -1.5707963267948966 rad pos: -55.5,-55.5 parent: 2 type: Transform - - uid: 26661 + - uid: 26700 components: - rot: -1.5707963267948966 rad pos: -55.5,-56.5 parent: 2 type: Transform - - uid: 26662 + - uid: 26701 components: - rot: -1.5707963267948966 rad pos: -55.5,-57.5 parent: 2 type: Transform - - uid: 26663 + - uid: 26702 components: - rot: -1.5707963267948966 rad pos: -58.5,-32.5 parent: 2 type: Transform - - uid: 26664 + - uid: 26703 components: - rot: -1.5707963267948966 rad pos: -58.5,-33.5 parent: 2 type: Transform - - uid: 26665 + - uid: 26704 components: - rot: -1.5707963267948966 rad pos: -58.5,-34.5 parent: 2 type: Transform - - uid: 26666 + - uid: 26705 components: - rot: -1.5707963267948966 rad pos: -58.5,-35.5 parent: 2 type: Transform - - uid: 26667 + - uid: 26706 components: - rot: -1.5707963267948966 rad pos: -58.5,-38.5 parent: 2 type: Transform - - uid: 26668 + - uid: 26707 components: - rot: -1.5707963267948966 rad pos: -58.5,-39.5 parent: 2 type: Transform - - uid: 26669 + - uid: 26708 components: - rot: -1.5707963267948966 rad pos: -58.5,-40.5 parent: 2 type: Transform - - uid: 26670 + - uid: 26709 components: - rot: -1.5707963267948966 rad pos: -58.5,-41.5 parent: 2 type: Transform - - uid: 26671 + - uid: 26710 components: - rot: -1.5707963267948966 rad pos: -58.5,-42.5 parent: 2 type: Transform - - uid: 26672 + - uid: 26711 components: - rot: -1.5707963267948966 rad pos: -58.5,-45.5 parent: 2 type: Transform - - uid: 26673 + - uid: 26712 components: - rot: -1.5707963267948966 rad pos: -58.5,-46.5 parent: 2 type: Transform - - uid: 26674 + - uid: 26713 components: - rot: -1.5707963267948966 rad pos: -58.5,-49.5 parent: 2 type: Transform - - uid: 26675 + - uid: 26714 components: - rot: -1.5707963267948966 rad pos: -58.5,-50.5 parent: 2 type: Transform - - uid: 26676 + - uid: 26715 components: - rot: -1.5707963267948966 rad pos: -58.5,-53.5 parent: 2 type: Transform - - uid: 26677 + - uid: 26716 components: - rot: -1.5707963267948966 rad pos: -58.5,-55.5 parent: 2 type: Transform - - uid: 26678 + - uid: 26717 components: - rot: -1.5707963267948966 rad pos: -58.5,-56.5 parent: 2 type: Transform - - uid: 26679 + - uid: 26718 components: - rot: -1.5707963267948966 rad pos: -58.5,-57.5 parent: 2 type: Transform - - uid: 26680 + - uid: 26719 components: - rot: -1.5707963267948966 rad pos: -58.5,-58.5 parent: 2 type: Transform - - uid: 26681 + - uid: 26720 components: - rot: -1.5707963267948966 rad pos: -56.5,-64.5 parent: 2 type: Transform - - uid: 26682 + - uid: 26721 components: - rot: -1.5707963267948966 rad pos: -56.5,-65.5 parent: 2 type: Transform - - uid: 26683 + - uid: 26722 components: - rot: -1.5707963267948966 rad pos: -56.5,-66.5 parent: 2 type: Transform - - uid: 26684 + - uid: 26723 components: - rot: 3.141592653589793 rad pos: -36.5,-59.5 parent: 2 type: Transform - - uid: 26685 + - uid: 26724 components: - rot: 3.141592653589793 rad pos: -37.5,-59.5 parent: 2 type: Transform - - uid: 26686 + - uid: 26725 components: - pos: -45.5,-41.5 parent: 2 type: Transform - - uid: 26687 + - uid: 26726 components: - pos: -57.5,-70.5 parent: 2 type: Transform - - uid: 26688 + - uid: 26727 components: - pos: -57.5,-72.5 parent: 2 type: Transform - - uid: 26689 + - uid: 26728 components: - pos: -57.5,-74.5 parent: 2 type: Transform - - uid: 26690 + - uid: 26729 components: - pos: -57.5,-78.5 parent: 2 type: Transform - - uid: 26691 + - uid: 26730 components: - pos: -57.5,-80.5 parent: 2 type: Transform - - uid: 26692 + - uid: 26731 components: - pos: -57.5,-82.5 parent: 2 type: Transform - - uid: 26693 + - uid: 26732 components: - pos: -56.5,-67.5 parent: 2 type: Transform - - uid: 26694 + - uid: 26733 components: - pos: -57.5,-67.5 parent: 2 type: Transform - - uid: 26695 + - uid: 26734 components: - pos: -57.5,-68.5 parent: 2 type: Transform - - uid: 26696 + - uid: 26735 components: - pos: -57.5,-69.5 parent: 2 type: Transform - - uid: 26697 + - uid: 26736 components: - rot: 1.5707963267948966 rad pos: -51.5,-61.5 parent: 2 type: Transform - - uid: 26698 + - uid: 26737 components: - rot: 3.141592653589793 rad pos: -22.5,-50.5 parent: 2 type: Transform - - uid: 26699 + - uid: 26738 components: - pos: -31.5,-57.5 parent: 2 type: Transform - - uid: 26700 + - uid: 26739 components: - pos: -31.5,-58.5 parent: 2 type: Transform - - uid: 26701 + - uid: 26740 components: - pos: -30.5,-58.5 parent: 2 type: Transform - - uid: 26702 + - uid: 26741 components: - pos: -30.5,-59.5 parent: 2 type: Transform - - uid: 26703 + - uid: 26742 components: - pos: -30.5,-60.5 parent: 2 type: Transform - - uid: 26704 + - uid: 26743 components: - pos: -31.5,-60.5 parent: 2 type: Transform - - uid: 26705 + - uid: 26744 components: - pos: -31.5,-61.5 parent: 2 type: Transform - - uid: 26706 + - uid: 26745 components: - pos: -32.5,-61.5 parent: 2 type: Transform - - uid: 26707 + - uid: 26746 components: - pos: -33.5,-61.5 parent: 2 type: Transform - - uid: 26708 + - uid: 26747 components: - pos: -33.5,-62.5 parent: 2 type: Transform - - uid: 26709 + - uid: 26748 components: - pos: -34.5,-62.5 parent: 2 type: Transform - - uid: 26710 + - uid: 26749 components: - pos: -35.5,-62.5 parent: 2 type: Transform - - uid: 26711 + - uid: 26750 components: - pos: -36.5,-62.5 parent: 2 type: Transform - - uid: 26712 + - uid: 26751 components: - pos: -37.5,-62.5 parent: 2 type: Transform - - uid: 26713 + - uid: 26752 components: - pos: -38.5,-62.5 parent: 2 type: Transform - - uid: 26714 + - uid: 26753 components: - pos: -39.5,-62.5 parent: 2 type: Transform - - uid: 26715 + - uid: 26754 components: - pos: -42.5,-62.5 parent: 2 type: Transform - - uid: 26716 + - uid: 26755 components: - pos: -43.5,-62.5 parent: 2 type: Transform - - uid: 26717 + - uid: 26756 components: - pos: -44.5,-62.5 parent: 2 type: Transform - - uid: 26718 + - uid: 26757 components: - pos: -45.5,-62.5 parent: 2 type: Transform - - uid: 26719 + - uid: 26758 components: - pos: -46.5,-62.5 parent: 2 type: Transform - - uid: 26720 + - uid: 26759 components: - pos: -47.5,-62.5 parent: 2 type: Transform - - uid: 26721 + - uid: 26760 components: - pos: -48.5,-62.5 parent: 2 type: Transform - - uid: 26722 + - uid: 26761 components: - pos: -49.5,-62.5 parent: 2 type: Transform - - uid: 26723 + - uid: 26762 components: - pos: -50.5,-61.5 parent: 2 type: Transform - - uid: 26724 + - uid: 26763 components: - pos: -49.5,-61.5 parent: 2 type: Transform - - uid: 26725 + - uid: 26764 components: - pos: -59.5,-78.5 parent: 2 type: Transform - - uid: 26726 + - uid: 26765 components: - pos: -50.5,-77.5 parent: 2 type: Transform - - uid: 26727 + - uid: 26766 components: - pos: -50.5,-78.5 parent: 2 type: Transform - - uid: 26728 + - uid: 26767 components: - pos: -57.5,-83.5 parent: 2 type: Transform - - uid: 26729 + - uid: 26768 components: - pos: -56.5,-83.5 parent: 2 type: Transform - - uid: 26730 + - uid: 26769 components: - pos: -52.5,-83.5 parent: 2 type: Transform - - uid: 26731 + - uid: 26770 components: - pos: -52.5,-82.5 parent: 2 type: Transform - - uid: 26732 + - uid: 26771 components: - pos: -52.5,-81.5 parent: 2 type: Transform - - uid: 26733 + - uid: 26772 components: - pos: -51.5,-81.5 parent: 2 type: Transform - - uid: 26734 + - uid: 26773 components: - pos: -51.5,-80.5 parent: 2 type: Transform - - uid: 26735 + - uid: 26774 components: - pos: -50.5,-80.5 parent: 2 type: Transform - - uid: 26736 + - uid: 26775 components: - pos: -50.5,-79.5 parent: 2 type: Transform - - uid: 26737 + - uid: 26776 components: - pos: -59.5,-80.5 parent: 2 type: Transform - - uid: 26738 + - uid: 26777 components: - pos: -59.5,-82.5 parent: 2 type: Transform - - uid: 26739 + - uid: 26778 components: - pos: -58.5,-82.5 parent: 2 type: Transform - - uid: 26740 + - uid: 26779 components: - pos: -58.5,-78.5 parent: 2 type: Transform - - uid: 26741 + - uid: 26780 components: - pos: -58.5,-74.5 parent: 2 type: Transform - - uid: 26742 + - uid: 26781 components: - pos: -59.5,-74.5 parent: 2 type: Transform - - uid: 26743 + - uid: 26782 components: - pos: -59.5,-72.5 parent: 2 type: Transform - - uid: 26744 + - uid: 26783 components: - pos: -58.5,-70.5 parent: 2 type: Transform - - uid: 26745 + - uid: 26784 components: - pos: -59.5,-70.5 parent: 2 type: Transform - - uid: 26746 + - uid: 26785 components: - rot: 1.5707963267948966 rad pos: -34.5,-73.5 parent: 2 type: Transform - - uid: 26747 + - uid: 26786 components: - rot: 1.5707963267948966 rad pos: -48.5,-80.5 parent: 2 type: Transform - - uid: 26748 + - uid: 26787 components: - rot: 1.5707963267948966 rad pos: -48.5,-79.5 parent: 2 type: Transform - - uid: 26749 + - uid: 26788 components: - rot: 1.5707963267948966 rad pos: -49.5,-77.5 parent: 2 type: Transform - - uid: 26750 + - uid: 26789 components: - rot: 1.5707963267948966 rad pos: -46.5,-85.5 parent: 2 type: Transform - - uid: 26751 + - uid: 26790 components: - rot: 1.5707963267948966 rad pos: -47.5,-84.5 parent: 2 type: Transform - - uid: 26752 + - uid: 26791 components: - rot: 1.5707963267948966 rad pos: -45.5,-86.5 parent: 2 type: Transform - - uid: 26753 + - uid: 26792 components: - rot: 1.5707963267948966 rad pos: -46.5,-86.5 parent: 2 type: Transform - - uid: 26754 + - uid: 26793 components: - rot: 1.5707963267948966 rad pos: -35.5,-73.5 parent: 2 type: Transform - - uid: 26755 + - uid: 26794 components: - rot: 1.5707963267948966 rad pos: -48.5,-77.5 parent: 2 type: Transform - - uid: 26756 + - uid: 26795 components: - rot: 1.5707963267948966 rad pos: -35.5,-80.5 parent: 2 type: Transform - - uid: 26757 + - uid: 26796 components: - rot: 1.5707963267948966 rad pos: -35.5,-75.5 parent: 2 type: Transform - - uid: 26758 + - uid: 26797 components: - rot: 1.5707963267948966 rad pos: -35.5,-74.5 parent: 2 type: Transform - - uid: 26759 + - uid: 26798 components: - rot: 1.5707963267948966 rad pos: -48.5,-78.5 parent: 2 type: Transform - - uid: 26760 + - uid: 26799 components: - rot: 1.5707963267948966 rad pos: -47.5,-85.5 parent: 2 type: Transform - - uid: 26761 + - uid: 26800 components: - rot: 1.5707963267948966 rad pos: -38.5,-86.5 parent: 2 type: Transform - - uid: 26762 + - uid: 26801 components: - rot: 1.5707963267948966 rad pos: -37.5,-85.5 parent: 2 type: Transform - - uid: 26763 + - uid: 26802 components: - rot: 1.5707963267948966 rad pos: -37.5,-86.5 parent: 2 type: Transform - - uid: 26764 + - uid: 26803 components: - rot: 1.5707963267948966 rad pos: -48.5,-84.5 parent: 2 type: Transform - - uid: 26765 + - uid: 26804 components: - rot: 1.5707963267948966 rad pos: -35.5,-79.5 parent: 2 type: Transform - - uid: 26766 + - uid: 26805 components: - rot: 1.5707963267948966 rad pos: -35.5,-84.5 parent: 2 type: Transform - - uid: 26767 + - uid: 26806 components: - rot: 1.5707963267948966 rad pos: -36.5,-84.5 parent: 2 type: Transform - - uid: 26768 + - uid: 26807 components: - rot: 1.5707963267948966 rad pos: -36.5,-85.5 parent: 2 type: Transform - - uid: 26769 + - uid: 26808 components: - rot: 1.5707963267948966 rad pos: -33.5,-73.5 parent: 2 type: Transform - - uid: 26770 + - uid: 26809 components: - rot: 1.5707963267948966 rad pos: -32.5,-74.5 parent: 2 type: Transform - - uid: 26771 + - uid: 26810 components: - rot: 1.5707963267948966 rad pos: -32.5,-75.5 parent: 2 type: Transform - - uid: 26772 + - uid: 26811 components: - rot: 1.5707963267948966 rad pos: -31.5,-75.5 parent: 2 type: Transform - - uid: 26773 + - uid: 26812 components: - pos: -44.5,-86.5 parent: 2 type: Transform - - uid: 26774 + - uid: 26813 components: - pos: -39.5,-86.5 parent: 2 type: Transform - - uid: 26775 + - uid: 26814 components: - rot: 1.5707963267948966 rad pos: 48.5,-70.5 parent: 2 type: Transform - - uid: 26776 + - uid: 26815 components: - pos: -17.5,-50.5 parent: 2 type: Transform - - uid: 26777 + - uid: 26816 components: - rot: 1.5707963267948966 rad pos: -57.5,-62.5 parent: 2 type: Transform - - uid: 26778 + - uid: 26817 components: - rot: 1.5707963267948966 rad pos: -58.5,-61.5 parent: 2 type: Transform - - uid: 26779 + - uid: 26818 components: - rot: 1.5707963267948966 rad pos: -58.5,-62.5 parent: 2 type: Transform - - uid: 26780 + - uid: 26819 components: - pos: -19.5,-50.5 parent: 2 type: Transform - - uid: 26781 + - uid: 26820 components: - pos: 25.5,-30.5 parent: 2 type: Transform - - uid: 26782 + - uid: 26821 components: - pos: 27.5,-30.5 parent: 2 type: Transform - - uid: 26783 + - uid: 26822 components: - rot: -1.5707963267948966 rad pos: 30.5,-31.5 parent: 2 type: Transform - - uid: 26784 + - uid: 26823 components: - rot: -1.5707963267948966 rad pos: 31.5,-31.5 parent: 2 type: Transform - - uid: 26785 + - uid: 26824 components: - pos: 27.5,-31.5 parent: 2 type: Transform - - uid: 26786 + - uid: 26825 components: - pos: 28.5,-31.5 parent: 2 type: Transform - - uid: 26787 + - uid: 26826 components: - rot: -1.5707963267948966 rad pos: 32.5,-31.5 parent: 2 type: Transform - - uid: 26788 + - uid: 26827 components: - rot: -1.5707963267948966 rad pos: 33.5,-31.5 parent: 2 type: Transform - - uid: 26789 + - uid: 26828 components: - pos: -21.5,-50.5 parent: 2 type: Transform - - uid: 26790 + - uid: 26829 components: - pos: -53.5,-50.5 parent: 2 type: Transform - - uid: 26791 + - uid: 26830 components: - pos: -53.5,-47.5 parent: 2 type: Transform - - uid: 26792 + - uid: 26831 components: - pos: -53.5,-48.5 parent: 2 type: Transform - - uid: 26793 + - uid: 26832 components: - pos: -53.5,-49.5 parent: 2 type: Transform - - uid: 26794 + - uid: 26833 components: - pos: -59.5,-53.5 parent: 2 type: Transform - - uid: 26795 + - uid: 26834 components: - pos: -60.5,-53.5 parent: 2 type: Transform - - uid: 26796 + - uid: 26835 components: - pos: -59.5,-55.5 parent: 2 type: Transform - - uid: 26797 + - uid: 26836 components: - pos: -60.5,-55.5 parent: 2 type: Transform - - uid: 26798 + - uid: 26837 components: - pos: 25.5,-27.5 parent: 2 type: Transform - - uid: 26799 + - uid: 26838 components: - pos: 68.5,12.5 parent: 2 type: Transform - - uid: 26800 + - uid: 26839 components: - rot: 1.5707963267948966 rad pos: 8.5,-18.5 parent: 2 type: Transform - - uid: 26801 + - uid: 26840 components: - pos: 5.5,34.5 parent: 2 type: Transform - - uid: 26802 + - uid: 26841 components: - pos: 9.5,35.5 parent: 2 type: Transform - - uid: 26803 + - uid: 26842 components: - pos: 11.5,31.5 parent: 2 type: Transform - - uid: 26804 + - uid: 26843 components: - pos: -3.5,26.5 parent: 2 type: Transform - - uid: 26805 + - uid: 26844 components: - pos: -7.5,33.5 parent: 2 type: Transform - - uid: 26806 + - uid: 26845 components: - pos: -6.5,33.5 parent: 2 type: Transform - - uid: 26807 + - uid: 26846 components: - pos: -5.5,33.5 parent: 2 type: Transform - - uid: 26808 + - uid: 26847 components: - pos: -16.5,53.5 parent: 2 type: Transform - - uid: 26809 + - uid: 26848 components: - pos: -23.5,72.5 parent: 2 type: Transform - - uid: 26810 + - uid: 26849 components: - pos: -7.5,30.5 parent: 2 type: Transform - - uid: 26811 + - uid: 26850 components: - pos: -7.5,29.5 parent: 2 type: Transform - - uid: 26812 + - uid: 26851 components: - pos: -7.5,26.5 parent: 2 type: Transform - - uid: 26813 + - uid: 26852 components: - pos: -7.5,31.5 parent: 2 type: Transform - - uid: 26814 + - uid: 26853 components: - pos: -6.5,31.5 parent: 2 type: Transform - - uid: 26815 + - uid: 26854 components: - pos: -5.5,31.5 parent: 2 type: Transform - - uid: 26816 + - uid: 26855 components: - pos: -4.5,31.5 parent: 2 type: Transform - - uid: 26817 + - uid: 26856 components: - pos: -4.5,30.5 parent: 2 type: Transform - - uid: 26818 + - uid: 26857 components: - pos: -4.5,29.5 parent: 2 type: Transform - - uid: 26819 + - uid: 26858 components: - pos: -3.5,29.5 parent: 2 type: Transform - - uid: 26820 + - uid: 26859 components: - pos: -1.5,29.5 parent: 2 type: Transform - - uid: 26821 + - uid: 26860 components: - pos: -0.5,29.5 parent: 2 type: Transform - - uid: 26822 + - uid: 26861 components: - pos: 0.5,29.5 parent: 2 type: Transform - - uid: 26823 + - uid: 26862 components: - pos: 1.5,29.5 parent: 2 type: Transform - - uid: 26824 + - uid: 26863 components: - pos: 1.5,30.5 parent: 2 type: Transform - - uid: 26825 + - uid: 26864 components: - pos: 1.5,31.5 parent: 2 type: Transform - - uid: 26826 + - uid: 26865 components: - pos: 2.5,31.5 parent: 2 type: Transform - - uid: 26827 + - uid: 26866 components: - pos: 2.5,33.5 parent: 2 type: Transform - - uid: 26828 + - uid: 26867 components: - pos: 1.5,33.5 parent: 2 type: Transform - - uid: 26829 + - uid: 26868 components: - pos: 1.5,34.5 parent: 2 type: Transform - - uid: 26830 + - uid: 26869 components: - pos: 1.5,35.5 parent: 2 type: Transform - - uid: 26831 + - uid: 26870 components: - pos: 0.5,35.5 parent: 2 type: Transform - - uid: 26832 + - uid: 26871 components: - pos: -3.5,35.5 parent: 2 type: Transform - - uid: 26833 + - uid: 26872 components: - pos: -4.5,35.5 parent: 2 type: Transform - - uid: 26834 + - uid: 26873 components: - pos: -4.5,34.5 parent: 2 type: Transform - - uid: 26835 + - uid: 26874 components: - pos: -4.5,33.5 parent: 2 type: Transform - - uid: 26836 + - uid: 26875 components: - pos: -23.5,58.5 parent: 2 type: Transform - - uid: 26837 + - uid: 26876 components: - pos: -20.5,72.5 parent: 2 type: Transform - - uid: 26838 + - uid: 26877 components: - pos: -23.5,57.5 parent: 2 type: Transform - - uid: 26839 + - uid: 26878 components: - pos: 49.5,41.5 parent: 2 type: Transform - - uid: 26840 + - uid: 26879 components: - pos: 12.5,31.5 parent: 2 type: Transform - - uid: 26841 + - uid: 26880 components: - pos: 6.5,29.5 parent: 2 type: Transform - - uid: 26842 + - uid: 26881 components: - pos: 4.5,33.5 parent: 2 type: Transform - - uid: 26843 + - uid: 26882 components: - pos: -4.5,24.5 parent: 2 type: Transform - - uid: 26844 + - uid: 26883 components: - pos: -5.5,24.5 parent: 2 type: Transform - - uid: 26845 + - uid: 26884 components: - pos: -6.5,24.5 parent: 2 type: Transform - - uid: 26846 + - uid: 26885 components: - pos: -7.5,24.5 parent: 2 type: Transform - - uid: 26847 + - uid: 26886 components: - pos: -7.5,25.5 parent: 2 type: Transform - - uid: 26848 + - uid: 26887 components: - pos: -34.5,27.5 parent: 2 type: Transform - - uid: 26849 + - uid: 26888 components: - pos: -35.5,27.5 parent: 2 type: Transform - - uid: 26850 + - uid: 26889 components: - pos: -35.5,28.5 parent: 2 type: Transform - - uid: 26851 + - uid: 26890 components: - pos: -35.5,26.5 parent: 2 type: Transform - - uid: 26852 + - uid: 26891 components: - pos: -49.5,27.5 parent: 2 type: Transform - - uid: 26853 + - uid: 26892 components: - pos: -49.5,24.5 parent: 2 type: Transform - - uid: 26854 + - uid: 26893 components: - rot: -1.5707963267948966 rad pos: -49.5,16.5 parent: 2 type: Transform - - uid: 26855 + - uid: 26894 components: - pos: -49.5,25.5 parent: 2 type: Transform - - uid: 26856 + - uid: 26895 components: - pos: -49.5,26.5 parent: 2 type: Transform - - uid: 26857 + - uid: 26896 components: - pos: -49.5,17.5 parent: 2 type: Transform - - uid: 26858 + - uid: 26897 components: - pos: -49.5,18.5 parent: 2 type: Transform - - uid: 26859 + - uid: 26898 components: - pos: -51.5,18.5 parent: 2 type: Transform - - uid: 26860 + - uid: 26899 components: - pos: -51.5,24.5 parent: 2 type: Transform - - uid: 26861 + - uid: 26900 components: - pos: 4.5,34.5 parent: 2 type: Transform - - uid: 26862 + - uid: 26901 components: - pos: 5.5,29.5 parent: 2 type: Transform - - uid: 26863 + - uid: 26902 components: - pos: 12.5,33.5 parent: 2 type: Transform - - uid: 26864 + - uid: 26903 components: - pos: -3.5,28.5 parent: 2 type: Transform - - uid: 26865 + - uid: 26904 components: - pos: 58.5,41.5 parent: 2 type: Transform - - uid: 26866 + - uid: 26905 components: - rot: -1.5707963267948966 rad pos: 55.5,41.5 parent: 2 type: Transform - - uid: 26867 + - uid: 26906 components: - pos: 54.5,51.5 parent: 2 type: Transform - - uid: 26868 + - uid: 26907 components: - pos: 57.5,60.5 parent: 2 type: Transform - - uid: 26869 + - uid: 26908 components: - rot: -1.5707963267948966 rad pos: 56.5,41.5 parent: 2 type: Transform - - uid: 26870 + - uid: 26909 components: - rot: -1.5707963267948966 rad pos: 42.5,38.5 parent: 2 type: Transform - - uid: 26871 + - uid: 26910 components: - pos: -29.5,27.5 parent: 2 type: Transform - - uid: 26872 + - uid: 26911 components: - pos: -35.5,29.5 parent: 2 type: Transform - - uid: 26873 + - uid: 26912 components: - pos: -29.5,29.5 parent: 2 type: Transform - - uid: 26874 + - uid: 26913 components: - pos: -29.5,30.5 parent: 2 type: Transform - - uid: 26875 + - uid: 26914 components: - pos: -29.5,31.5 parent: 2 type: Transform - - uid: 26876 + - uid: 26915 components: - pos: -29.5,32.5 parent: 2 type: Transform - - uid: 26877 + - uid: 26916 components: - pos: -35.5,30.5 parent: 2 type: Transform - - uid: 26878 + - uid: 26917 components: - pos: -35.5,31.5 parent: 2 type: Transform - - uid: 26879 + - uid: 26918 components: - pos: -35.5,32.5 parent: 2 type: Transform - - uid: 26880 + - uid: 26919 components: - pos: -34.5,32.5 parent: 2 type: Transform - - uid: 26881 + - uid: 26920 components: - pos: -30.5,32.5 parent: 2 type: Transform - - uid: 26882 + - uid: 26921 components: - pos: -49.5,32.5 parent: 2 type: Transform - - uid: 26883 + - uid: 26922 components: - pos: -50.5,32.5 parent: 2 type: Transform - - uid: 26884 + - uid: 26923 components: - pos: -51.5,32.5 parent: 2 type: Transform - - uid: 26885 + - uid: 26924 components: - pos: -52.5,32.5 parent: 2 type: Transform - - uid: 26886 + - uid: 26925 components: - pos: -49.5,28.5 parent: 2 type: Transform - - uid: 26887 + - uid: 26926 components: - pos: -50.5,28.5 parent: 2 type: Transform - - uid: 26888 + - uid: 26927 components: - pos: -51.5,28.5 parent: 2 type: Transform - - uid: 26889 + - uid: 26928 components: - pos: -52.5,28.5 parent: 2 type: Transform - - uid: 26890 + - uid: 26929 components: - pos: -49.5,36.5 parent: 2 type: Transform - - uid: 26891 + - uid: 26930 components: - pos: -50.5,36.5 parent: 2 type: Transform - - uid: 26892 + - uid: 26931 components: - pos: -51.5,36.5 parent: 2 type: Transform - - uid: 26893 + - uid: 26932 components: - pos: -52.5,36.5 parent: 2 type: Transform - - uid: 26894 + - uid: 26933 components: - rot: -1.5707963267948966 rad pos: -53.5,24.5 parent: 2 type: Transform - - uid: 26895 + - uid: 26934 components: - rot: -1.5707963267948966 rad pos: -53.5,18.5 parent: 2 type: Transform - - uid: 26896 + - uid: 26935 components: - pos: -49.5,37.5 parent: 2 type: Transform - - uid: 26897 + - uid: 26936 components: - pos: -48.5,37.5 parent: 2 type: Transform - - uid: 26898 + - uid: 26937 components: - pos: -35.5,34.5 parent: 2 type: Transform - - uid: 26899 + - uid: 26938 components: - pos: -35.5,33.5 parent: 2 type: Transform - - uid: 26900 + - uid: 26939 components: - pos: 49.5,43.5 parent: 2 type: Transform - - uid: 26901 + - uid: 26940 components: - pos: 49.5,48.5 parent: 2 type: Transform - - uid: 26902 + - uid: 26941 components: - pos: 59.5,49.5 parent: 2 type: Transform - - uid: 26903 + - uid: 26942 components: - pos: 49.5,49.5 parent: 2 type: Transform - - uid: 26904 + - uid: 26943 components: - pos: 59.5,44.5 parent: 2 type: Transform - - uid: 26905 + - uid: 26944 components: - rot: 3.141592653589793 rad pos: 61.5,42.5 parent: 2 type: Transform - - uid: 26906 + - uid: 26945 components: - pos: 49.5,42.5 parent: 2 type: Transform - - uid: 26907 + - uid: 26946 components: - pos: 59.5,42.5 parent: 2 type: Transform - - uid: 26908 + - uid: 26947 components: - pos: 66.5,-31.5 parent: 2 type: Transform - - uid: 26909 + - uid: 26948 components: - pos: 66.5,-32.5 parent: 2 type: Transform - - uid: 26910 + - uid: 26949 components: - rot: -1.5707963267948966 rad pos: 59.5,-25.5 parent: 2 type: Transform - - uid: 26911 + - uid: 26950 components: - rot: 3.141592653589793 rad pos: 10.5,-80.5 parent: 2 type: Transform - - uid: 26912 + - uid: 26951 components: - pos: -57.5,-0.5 parent: 2 type: Transform - - uid: 26913 + - uid: 26952 components: - pos: -56.5,-0.5 parent: 2 type: Transform - - uid: 26914 + - uid: 26953 components: - pos: -55.5,-0.5 parent: 2 type: Transform - - uid: 26915 + - uid: 26954 components: - pos: -57.5,-2.5 parent: 2 type: Transform - - uid: 26916 + - uid: 26955 components: - rot: 3.141592653589793 rad pos: -53.5,1.5 parent: 2 type: Transform - - uid: 26917 + - uid: 26956 components: - rot: 3.141592653589793 rad pos: -54.5,1.5 parent: 2 type: Transform - - uid: 26918 + - uid: 26957 components: - pos: -55.5,1.5 parent: 2 type: Transform - - uid: 26919 + - uid: 26958 components: - pos: -55.5,0.5 parent: 2 type: Transform - - uid: 26920 + - uid: 26959 components: - pos: -50.5,16.5 parent: 2 type: Transform - - uid: 26921 + - uid: 26960 components: - pos: 58.5,48.5 parent: 2 type: Transform - - uid: 26922 + - uid: 26961 components: - pos: 56.5,44.5 parent: 2 type: Transform - - uid: 26923 + - uid: 26962 components: - pos: 50.5,48.5 parent: 2 type: Transform - - uid: 26924 + - uid: 26963 components: - pos: 54.5,46.5 parent: 2 type: Transform - - uid: 26925 + - uid: 26964 components: - pos: 54.5,48.5 parent: 2 type: Transform - - uid: 26926 + - uid: 26965 components: - rot: 3.141592653589793 rad pos: -53.5,2.5 parent: 2 type: Transform - - uid: 26927 + - uid: 26966 components: - rot: 3.141592653589793 rad pos: -53.5,3.5 parent: 2 type: Transform - - uid: 26928 + - uid: 26967 components: - rot: 3.141592653589793 rad pos: -53.5,4.5 parent: 2 type: Transform - - uid: 26929 + - uid: 26968 components: - rot: 3.141592653589793 rad pos: -53.5,5.5 parent: 2 type: Transform - - uid: 26930 + - uid: 26969 components: - rot: 3.141592653589793 rad pos: -53.5,6.5 parent: 2 type: Transform - - uid: 26931 + - uid: 26970 components: - rot: 3.141592653589793 rad pos: -53.5,7.5 parent: 2 type: Transform - - uid: 26932 + - uid: 26971 components: - rot: 3.141592653589793 rad pos: -53.5,8.5 parent: 2 type: Transform - - uid: 26933 + - uid: 26972 components: - rot: 3.141592653589793 rad pos: -53.5,9.5 parent: 2 type: Transform - - uid: 26934 + - uid: 26973 components: - rot: 3.141592653589793 rad pos: -53.5,12.5 parent: 2 type: Transform - - uid: 26935 + - uid: 26974 components: - rot: 3.141592653589793 rad pos: -53.5,13.5 parent: 2 type: Transform - - uid: 26936 + - uid: 26975 components: - rot: 3.141592653589793 rad pos: -53.5,15.5 parent: 2 type: Transform - - uid: 26937 + - uid: 26976 components: - rot: 3.141592653589793 rad pos: -53.5,14.5 parent: 2 type: Transform - - uid: 26938 + - uid: 26977 components: - rot: 3.141592653589793 rad pos: -53.5,16.5 parent: 2 type: Transform - - uid: 26939 + - uid: 26978 components: - rot: 3.141592653589793 rad pos: -52.5,16.5 parent: 2 type: Transform - - uid: 26940 + - uid: 26979 components: - rot: 3.141592653589793 rad pos: -51.5,16.5 parent: 2 type: Transform - - uid: 26941 + - uid: 26980 components: - pos: 56.5,46.5 parent: 2 type: Transform - - uid: 26942 + - uid: 26981 components: - rot: -1.5707963267948966 rad pos: 55.5,40.5 parent: 2 type: Transform - - uid: 26943 + - uid: 26982 components: - pos: -20.5,-50.5 parent: 2 type: Transform - - uid: 26944 + - uid: 26983 components: - pos: 58.5,44.5 parent: 2 type: Transform - - uid: 26945 + - uid: 26984 components: - pos: 58.5,46.5 parent: 2 type: Transform - - uid: 26946 + - uid: 26985 components: - pos: 50.5,44.5 parent: 2 type: Transform - - uid: 26947 + - uid: 26986 components: - pos: 52.5,44.5 parent: 2 type: Transform - - uid: 26948 + - uid: 26987 components: - rot: 1.5707963267948966 rad pos: 66.5,0.5 parent: 2 type: Transform - - uid: 26949 + - uid: 26988 components: - pos: 52.5,46.5 parent: 2 type: Transform - - uid: 26950 + - uid: 26989 components: - pos: 50.5,46.5 parent: 2 type: Transform - - uid: 26951 + - uid: 26990 components: - pos: 56.5,48.5 parent: 2 type: Transform - - uid: 26952 + - uid: 26991 components: - pos: 54.5,44.5 parent: 2 type: Transform - - uid: 26953 + - uid: 26992 components: - rot: 1.5707963267948966 rad pos: 67.5,-10.5 parent: 2 type: Transform - - uid: 26954 + - uid: 26993 components: - pos: 68.5,-16.5 parent: 2 type: Transform - - uid: 26955 + - uid: 26994 components: - rot: 1.5707963267948966 rad pos: 67.5,-6.5 parent: 2 type: Transform - - uid: 26956 + - uid: 26995 components: - rot: 1.5707963267948966 rad pos: 67.5,-2.5 parent: 2 type: Transform - - uid: 26957 + - uid: 26996 components: - pos: 52.5,48.5 parent: 2 type: Transform - - uid: 26958 + - uid: 26997 components: - rot: -1.5707963267948966 rad pos: -7.5,37.5 parent: 2 type: Transform - - uid: 26959 + - uid: 26998 components: - rot: -1.5707963267948966 rad pos: -7.5,39.5 parent: 2 type: Transform - - uid: 26960 + - uid: 26999 components: - rot: 3.141592653589793 rad pos: 21.5,-40.5 parent: 2 type: Transform - - uid: 26961 + - uid: 27000 components: - pos: 13.5,-71.5 parent: 2 type: Transform - - uid: 26962 + - uid: 27001 components: - pos: 24.5,-26.5 parent: 2 type: Transform - - uid: 26963 + - uid: 27002 components: - pos: 22.5,-26.5 parent: 2 type: Transform - - uid: 26964 + - uid: 27003 components: - rot: -1.5707963267948966 rad pos: -75.5,-25.5 parent: 2 type: Transform - - uid: 26965 + - uid: 27004 components: - rot: 3.141592653589793 rad pos: 24.5,27.5 parent: 2 type: Transform - - uid: 26966 + - uid: 27005 components: - pos: 64.5,-61.5 parent: 2 type: Transform - - uid: 26967 + - uid: 27006 components: - pos: 27.5,-33.5 parent: 2 type: Transform - - uid: 26968 + - uid: 27007 components: - pos: -47.5,52.5 parent: 2 type: Transform - - uid: 26969 + - uid: 27008 components: - pos: -41.5,52.5 parent: 2 type: Transform - - uid: 26970 + - uid: 27009 components: - pos: 52.5,-25.5 parent: 2 type: Transform - - uid: 26971 + - uid: 27010 components: - pos: 55.5,-25.5 parent: 2 type: Transform - - uid: 26972 + - uid: 27011 components: - rot: -1.5707963267948966 rad pos: 47.5,-63.5 parent: 2 type: Transform - - uid: 26973 + - uid: 27012 components: - rot: 1.5707963267948966 rad pos: 44.5,-83.5 parent: 2 type: Transform - - uid: 26974 + - uid: 27013 components: - rot: 3.141592653589793 rad pos: 24.5,28.5 parent: 2 type: Transform - - uid: 26975 + - uid: 27014 components: - rot: 3.141592653589793 rad pos: 24.5,29.5 parent: 2 type: Transform - - uid: 26976 + - uid: 27015 components: - rot: 3.141592653589793 rad pos: 24.5,30.5 parent: 2 type: Transform - - uid: 26977 + - uid: 27016 components: - rot: 3.141592653589793 rad pos: 24.5,31.5 parent: 2 type: Transform - - uid: 26978 + - uid: 27017 components: - rot: 3.141592653589793 rad pos: 24.5,32.5 parent: 2 type: Transform - - uid: 26979 + - uid: 27018 components: - rot: 3.141592653589793 rad pos: 24.5,33.5 parent: 2 type: Transform - - uid: 26980 + - uid: 27019 components: - rot: 3.141592653589793 rad pos: 24.5,34.5 parent: 2 type: Transform - - uid: 26981 + - uid: 27020 components: - rot: 3.141592653589793 rad pos: 25.5,34.5 parent: 2 type: Transform - - uid: 26982 + - uid: 27021 components: - rot: 3.141592653589793 rad pos: 26.5,34.5 parent: 2 type: Transform - - uid: 26983 + - uid: 27022 components: - rot: 3.141592653589793 rad pos: 27.5,34.5 parent: 2 type: Transform - - uid: 26984 + - uid: 27023 components: - rot: 3.141592653589793 rad pos: 28.5,34.5 parent: 2 type: Transform - - uid: 26985 + - uid: 27024 components: - rot: 3.141592653589793 rad pos: 30.5,34.5 parent: 2 type: Transform - - uid: 26986 + - uid: 27025 components: - rot: 3.141592653589793 rad pos: 31.5,34.5 parent: 2 type: Transform - - uid: 26987 + - uid: 27026 components: - rot: 3.141592653589793 rad pos: 32.5,34.5 parent: 2 type: Transform - - uid: 26988 + - uid: 27027 components: - rot: 3.141592653589793 rad pos: 33.5,34.5 parent: 2 type: Transform - - uid: 26989 + - uid: 27028 components: - rot: 3.141592653589793 rad pos: 34.5,34.5 parent: 2 type: Transform - - uid: 26990 + - uid: 27029 components: - rot: 3.141592653589793 rad pos: 34.5,33.5 parent: 2 type: Transform - - uid: 26991 + - uid: 27030 components: - rot: 3.141592653589793 rad pos: 34.5,32.5 parent: 2 type: Transform - - uid: 26992 + - uid: 27031 components: - rot: 3.141592653589793 rad pos: 34.5,31.5 parent: 2 type: Transform - - uid: 26993 + - uid: 27032 components: - rot: 3.141592653589793 rad pos: 34.5,30.5 parent: 2 type: Transform - - uid: 26994 + - uid: 27033 components: - rot: 3.141592653589793 rad pos: 34.5,29.5 parent: 2 type: Transform - - uid: 26995 + - uid: 27034 components: - rot: 3.141592653589793 rad pos: 34.5,28.5 parent: 2 type: Transform - - uid: 26996 + - uid: 27035 components: - rot: 3.141592653589793 rad pos: 34.5,27.5 parent: 2 type: Transform - - uid: 26997 + - uid: 27036 components: - rot: 3.141592653589793 rad pos: 12.5,-79.5 parent: 2 type: Transform - - uid: 26998 + - uid: 27037 components: - rot: 3.141592653589793 rad pos: 11.5,-79.5 parent: 2 type: Transform - - uid: 26999 + - uid: 27038 components: - rot: -1.5707963267948966 rad pos: 57.5,-25.5 parent: 2 type: Transform - - uid: 27000 + - uid: 27039 components: - rot: 1.5707963267948966 rad pos: 39.5,9.5 parent: 2 type: Transform - - uid: 27001 + - uid: 27040 components: - pos: 34.5,21.5 parent: 2 type: Transform - - uid: 27002 + - uid: 27041 components: - pos: 67.5,-67.5 parent: 2 type: Transform - - uid: 27003 + - uid: 27042 components: - pos: 69.5,-69.5 parent: 2 type: Transform - - uid: 27004 + - uid: 27043 components: - pos: -78.5,-19.5 parent: 2 type: Transform - - uid: 27005 + - uid: 27044 components: - pos: -78.5,-5.5 parent: 2 type: Transform - - uid: 27006 + - uid: 27045 components: - pos: -71.5,-2.5 parent: 2 type: Transform - - uid: 27007 + - uid: 27046 components: - pos: -64.5,-2.5 parent: 2 type: Transform - - uid: 27008 + - uid: 27047 components: - pos: -73.5,-35.5 parent: 2 type: Transform - - uid: 27009 + - uid: 27048 components: - pos: -73.5,-34.5 parent: 2 type: Transform - - uid: 27010 + - uid: 27049 components: - pos: -71.5,-35.5 parent: 2 type: Transform - - uid: 27011 + - uid: 27050 components: - pos: 38.5,31.5 parent: 2 type: Transform - - uid: 27012 + - uid: 27051 components: - pos: 32.5,39.5 parent: 2 type: Transform - - uid: 27013 + - uid: 27052 components: - pos: 24.5,39.5 parent: 2 type: Transform - - uid: 27014 + - uid: 27053 components: - rot: 3.141592653589793 rad pos: 21.5,-38.5 parent: 2 type: Transform - - uid: 27015 + - uid: 27054 components: - pos: 73.5,-40.5 parent: 2 type: Transform - - uid: 27016 + - uid: 27055 components: - pos: 77.5,-42.5 parent: 2 type: Transform - - uid: 27017 + - uid: 27056 components: - pos: 77.5,-48.5 parent: 2 type: Transform - - uid: 27018 + - uid: 27057 components: - pos: 78.5,-48.5 parent: 2 type: Transform - - uid: 27019 + - uid: 27058 components: - pos: 78.5,-42.5 parent: 2 type: Transform - - uid: 27020 + - uid: 27059 components: - pos: 78.5,-47.5 parent: 2 type: Transform - - uid: 27021 + - uid: 27060 components: - pos: 27.5,-26.5 parent: 2 type: Transform - - uid: 27022 + - uid: 27061 components: - rot: 3.141592653589793 rad pos: 29.5,-38.5 parent: 2 type: Transform - - uid: 27023 + - uid: 27062 components: - pos: 59.5,50.5 parent: 2 type: Transform - - uid: 27024 + - uid: 27063 components: - pos: -32.5,-73.5 parent: 2 type: Transform - - uid: 27025 + - uid: 27064 components: - rot: -1.5707963267948966 rad pos: 46.5,50.5 parent: 2 type: Transform - - uid: 27026 + - uid: 27065 components: - rot: -1.5707963267948966 rad pos: 45.5,50.5 parent: 2 type: Transform - - uid: 27027 + - uid: 27066 components: - rot: -1.5707963267948966 rad pos: 44.5,50.5 parent: 2 type: Transform - - uid: 27028 + - uid: 27067 components: - pos: 48.5,44.5 parent: 2 type: Transform - - uid: 27029 + - uid: 27068 components: - pos: 47.5,44.5 parent: 2 type: Transform - - uid: 27030 + - uid: 27069 components: - pos: 47.5,43.5 parent: 2 type: Transform - - uid: 27031 + - uid: 27070 components: - pos: 45.5,43.5 parent: 2 type: Transform - - uid: 27032 + - uid: 27071 components: - pos: 44.5,43.5 parent: 2 type: Transform - - uid: 27033 + - uid: 27072 components: - pos: 59.5,51.5 parent: 2 type: Transform - - uid: 27034 + - uid: 27073 components: - pos: 59.5,52.5 parent: 2 type: Transform - - uid: 27035 + - uid: 27074 components: - pos: 59.5,53.5 parent: 2 type: Transform - - uid: 27036 + - uid: 27075 components: - pos: 58.5,53.5 parent: 2 type: Transform - - uid: 27037 + - uid: 27076 components: - pos: 57.5,53.5 parent: 2 type: Transform - - uid: 27038 + - uid: 27077 components: - pos: 51.5,53.5 parent: 2 type: Transform - - uid: 27039 + - uid: 27078 components: - pos: 50.5,53.5 parent: 2 type: Transform - - uid: 27040 + - uid: 27079 components: - pos: 49.5,53.5 parent: 2 type: Transform - - uid: 27041 + - uid: 27080 components: - pos: 49.5,52.5 parent: 2 type: Transform - - uid: 27042 + - uid: 27081 components: - pos: 49.5,51.5 parent: 2 type: Transform - - uid: 27043 + - uid: 27082 components: - rot: -1.5707963267948966 rad pos: 55.5,39.5 parent: 2 type: Transform - - uid: 27044 + - uid: 27083 components: - rot: -1.5707963267948966 rad pos: 55.5,38.5 parent: 2 type: Transform - - uid: 27045 + - uid: 27084 components: - pos: 61.5,30.5 parent: 2 type: Transform - - uid: 27046 + - uid: 27085 components: - pos: 59.5,31.5 parent: 2 type: Transform - - uid: 27047 + - uid: 27086 components: - pos: 59.5,34.5 parent: 2 type: Transform - - uid: 27048 + - uid: 27087 components: - rot: -1.5707963267948966 rad pos: 58.5,35.5 parent: 2 type: Transform - - uid: 27049 + - uid: 27088 components: - rot: -1.5707963267948966 rad pos: 57.5,35.5 parent: 2 type: Transform - - uid: 27050 + - uid: 27089 components: - rot: -1.5707963267948966 rad pos: 43.5,-65.5 parent: 2 type: Transform - - uid: 27051 + - uid: 27090 components: - pos: 10.5,-36.5 parent: 2 type: Transform - - uid: 27052 + - uid: 27091 components: - rot: -1.5707963267948966 rad pos: 57.5,38.5 parent: 2 type: Transform - - uid: 27053 + - uid: 27092 components: - rot: 3.141592653589793 rad pos: 61.5,41.5 parent: 2 type: Transform - - uid: 27054 + - uid: 27093 components: - rot: 3.141592653589793 rad pos: 60.5,41.5 parent: 2 type: Transform - - uid: 27055 + - uid: 27094 components: - rot: -1.5707963267948966 rad pos: 42.5,42.5 parent: 2 type: Transform - - uid: 27056 + - uid: 27095 components: - rot: -1.5707963267948966 rad pos: 43.5,43.5 parent: 2 type: Transform - - uid: 27057 + - uid: 27096 components: - rot: -1.5707963267948966 rad pos: 49.5,46.5 parent: 2 type: Transform - - uid: 27058 + - uid: 27097 components: - rot: -1.5707963267948966 rad pos: -7.5,41.5 parent: 2 type: Transform - - uid: 27059 + - uid: 27098 components: - rot: -1.5707963267948966 rad pos: -7.5,40.5 parent: 2 type: Transform - - uid: 27060 + - uid: 27099 components: - rot: -1.5707963267948966 rad pos: -7.5,34.5 parent: 2 type: Transform - - uid: 27061 + - uid: 27100 components: - rot: -1.5707963267948966 rad pos: -7.5,35.5 parent: 2 type: Transform - - uid: 27062 + - uid: 27101 components: - rot: -1.5707963267948966 rad pos: -7.5,36.5 parent: 2 type: Transform - - uid: 27063 + - uid: 27102 components: - pos: 2.5,59.5 parent: 2 type: Transform - - uid: 27064 + - uid: 27103 components: - rot: -1.5707963267948966 rad pos: -7.5,42.5 parent: 2 type: Transform - - uid: 27065 + - uid: 27104 components: - pos: -18.5,68.5 parent: 2 type: Transform - - uid: 27066 + - uid: 27105 components: - pos: -16.5,59.5 parent: 2 type: Transform - - uid: 27067 + - uid: 27106 components: - pos: -16.5,58.5 parent: 2 type: Transform - - uid: 27068 + - uid: 27107 components: - pos: -23.5,59.5 parent: 2 type: Transform - - uid: 27069 + - uid: 27108 components: - pos: -23.5,64.5 parent: 2 type: Transform - - uid: 27070 + - uid: 27109 components: - pos: -23.5,65.5 parent: 2 type: Transform - - uid: 27071 + - uid: 27110 components: - pos: -16.5,54.5 parent: 2 type: Transform - - uid: 27072 + - uid: 27111 components: - pos: -14.5,52.5 parent: 2 type: Transform - - uid: 27073 + - uid: 27112 components: - pos: -14.5,53.5 parent: 2 type: Transform - - uid: 27074 + - uid: 27113 components: - pos: -16.5,52.5 parent: 2 type: Transform - - uid: 27075 + - uid: 27114 components: - pos: -15.5,52.5 parent: 2 type: Transform - - uid: 27076 + - uid: 27115 components: - pos: -23.5,71.5 parent: 2 type: Transform - - uid: 27077 + - uid: 27116 components: - pos: -23.5,70.5 parent: 2 type: Transform - - uid: 27078 + - uid: 27117 components: - pos: -23.5,69.5 parent: 2 type: Transform - - uid: 27079 + - uid: 27118 components: - pos: -20.5,71.5 parent: 2 type: Transform - - uid: 27080 + - uid: 27119 components: - pos: -20.5,70.5 parent: 2 type: Transform - - uid: 27081 + - uid: 27120 components: - pos: -16.5,69.5 parent: 2 type: Transform - - uid: 27082 + - uid: 27121 components: - pos: -23.5,60.5 parent: 2 type: Transform - - uid: 27083 + - uid: 27122 components: - pos: -23.5,74.5 parent: 2 type: Transform - - uid: 27084 + - uid: 27123 components: - pos: -23.5,75.5 parent: 2 type: Transform - - uid: 27085 + - uid: 27124 components: - pos: -20.5,75.5 parent: 2 type: Transform - - uid: 27086 + - uid: 27125 components: - pos: -20.5,74.5 parent: 2 type: Transform - - uid: 27087 + - uid: 27126 components: - pos: -15.5,59.5 parent: 2 type: Transform - - uid: 27088 + - uid: 27127 components: - pos: -14.5,59.5 parent: 2 type: Transform - - uid: 27089 + - uid: 27128 components: - pos: -11.5,74.5 parent: 2 type: Transform - - uid: 27090 + - uid: 27129 components: - pos: -11.5,75.5 parent: 2 type: Transform - - uid: 27091 + - uid: 27130 components: - pos: -14.5,75.5 parent: 2 type: Transform - - uid: 27092 + - uid: 27131 components: - pos: -14.5,74.5 parent: 2 type: Transform - - uid: 27093 + - uid: 27132 components: - pos: -14.5,57.5 parent: 2 type: Transform - - uid: 27094 + - uid: 27133 components: - pos: -16.5,57.5 parent: 2 type: Transform - - uid: 27095 + - uid: 27134 components: - pos: -14.5,54.5 parent: 2 type: Transform - - uid: 27096 + - uid: 27135 components: - pos: -23.5,67.5 parent: 2 type: Transform - - uid: 27097 + - uid: 27136 components: - pos: -23.5,68.5 parent: 2 type: Transform - - uid: 27098 + - uid: 27137 components: - pos: -16.5,70.5 parent: 2 type: Transform - - uid: 27099 + - uid: 27138 components: - pos: -11.5,66.5 parent: 2 type: Transform - - uid: 27100 + - uid: 27139 components: - pos: -23.5,66.5 parent: 2 type: Transform - - uid: 27101 + - uid: 27140 components: - pos: -18.5,69.5 parent: 2 type: Transform - - uid: 27102 + - uid: 27141 components: - pos: -11.5,65.5 parent: 2 type: Transform - - uid: 27103 + - uid: 27142 components: - pos: -11.5,64.5 parent: 2 type: Transform - - uid: 27104 + - uid: 27143 components: - pos: -10.5,63.5 parent: 2 type: Transform - - uid: 27105 + - uid: 27144 components: - pos: -14.5,70.5 parent: 2 type: Transform - - uid: 27106 + - uid: 27145 components: - pos: -14.5,72.5 parent: 2 type: Transform - - uid: 27107 + - uid: 27146 components: - pos: -11.5,72.5 parent: 2 type: Transform - - uid: 27108 + - uid: 27147 components: - pos: -11.5,71.5 parent: 2 type: Transform - - uid: 27109 + - uid: 27148 components: - pos: -11.5,70.5 parent: 2 type: Transform - - uid: 27110 + - uid: 27149 components: - pos: -14.5,69.5 parent: 2 type: Transform - - uid: 27111 + - uid: 27150 components: - rot: -1.5707963267948966 rad pos: -14.5,58.5 parent: 2 type: Transform - - uid: 27112 + - uid: 27151 components: - pos: -14.5,71.5 parent: 2 type: Transform - - uid: 27113 + - uid: 27152 components: - pos: -18.5,70.5 parent: 2 type: Transform - - uid: 27114 + - uid: 27153 components: - pos: -20.5,69.5 parent: 2 type: Transform - - uid: 27115 + - uid: 27154 components: - pos: -20.5,68.5 parent: 2 type: Transform - - uid: 27116 + - uid: 27155 components: - pos: -19.5,68.5 parent: 2 type: Transform - - uid: 27117 + - uid: 27156 components: - pos: -14.5,68.5 parent: 2 type: Transform - - uid: 27118 + - uid: 27157 components: - pos: -15.5,68.5 parent: 2 type: Transform - - uid: 27119 + - uid: 27158 components: - pos: -16.5,68.5 parent: 2 type: Transform - - uid: 27120 + - uid: 27159 components: - rot: -1.5707963267948966 rad pos: -28.5,33.5 parent: 2 type: Transform - - uid: 27121 + - uid: 27160 components: - rot: -1.5707963267948966 rad pos: -28.5,34.5 parent: 2 type: Transform - - uid: 27122 + - uid: 27161 components: - rot: -1.5707963267948966 rad pos: -29.5,35.5 parent: 2 type: Transform - - uid: 27123 + - uid: 27162 components: - rot: -1.5707963267948966 rad pos: -28.5,35.5 parent: 2 type: Transform - - uid: 27124 + - uid: 27163 components: - rot: -1.5707963267948966 rad pos: -30.5,35.5 parent: 2 type: Transform - - uid: 27125 + - uid: 27164 components: - rot: -1.5707963267948966 rad pos: -34.5,35.5 parent: 2 type: Transform - - uid: 27126 + - uid: 27165 components: - rot: -1.5707963267948966 rad pos: -35.5,35.5 parent: 2 type: Transform - - uid: 27127 + - uid: 27166 components: - rot: -1.5707963267948966 rad pos: -28.5,32.5 parent: 2 type: Transform - - uid: 27128 + - uid: 27167 components: - pos: 60.5,30.5 parent: 2 type: Transform - - uid: 27129 + - uid: 27168 components: - pos: 9.5,-35.5 parent: 2 type: Transform - - uid: 27130 + - uid: 27169 components: - pos: 3.5,58.5 parent: 2 type: Transform - - uid: 27131 + - uid: 27170 components: - pos: 2.5,45.5 parent: 2 type: Transform - - uid: 27132 + - uid: 27171 components: - pos: 2.5,44.5 parent: 2 type: Transform - - uid: 27133 + - uid: 27172 components: - pos: 2.5,52.5 parent: 2 type: Transform - - uid: 27134 + - uid: 27173 components: - pos: 2.5,53.5 parent: 2 type: Transform - - uid: 27135 + - uid: 27174 components: - pos: 2.5,54.5 parent: 2 type: Transform - - uid: 27136 + - uid: 27175 components: - pos: 2.5,55.5 parent: 2 type: Transform - - uid: 27137 + - uid: 27176 components: - pos: 3.5,56.5 parent: 2 type: Transform - - uid: 27138 + - uid: 27177 components: - pos: -7.5,43.5 parent: 2 type: Transform - - uid: 27139 + - uid: 27178 components: - pos: 3.5,59.5 parent: 2 type: Transform - - uid: 27140 + - uid: 27179 components: - pos: 2.5,56.5 parent: 2 type: Transform - - uid: 27141 + - uid: 27180 components: - pos: -4.5,42.5 parent: 2 type: Transform - - uid: 27142 + - uid: 27181 components: - pos: -5.5,42.5 parent: 2 type: Transform - - uid: 27143 + - uid: 27182 components: - pos: -0.5,42.5 parent: 2 type: Transform - - uid: 27144 + - uid: 27183 components: - pos: 0.5,42.5 parent: 2 type: Transform - - uid: 27145 + - uid: 27184 components: - pos: 2.5,60.5 parent: 2 type: Transform - - uid: 27146 + - uid: 27185 components: - pos: 5.5,49.5 parent: 2 type: Transform - - uid: 27147 + - uid: 27186 components: - pos: 10.5,50.5 parent: 2 type: Transform - - uid: 27148 + - uid: 27187 components: - pos: 10.5,46.5 parent: 2 type: Transform - - uid: 27149 + - uid: 27188 components: - pos: 34.5,49.5 parent: 2 type: Transform - - uid: 27150 + - uid: 27189 components: - pos: 35.5,49.5 parent: 2 type: Transform - - uid: 27151 + - uid: 27190 components: - rot: -1.5707963267948966 rad pos: 21.5,44.5 parent: 2 type: Transform - - uid: 27152 + - uid: 27191 components: - rot: -1.5707963267948966 rad pos: 21.5,46.5 parent: 2 type: Transform - - uid: 27153 + - uid: 27192 components: - pos: 59.5,35.5 parent: 2 type: Transform - - uid: 27154 + - uid: 27193 components: - rot: -1.5707963267948966 rad pos: 42.5,37.5 parent: 2 type: Transform - - uid: 27155 + - uid: 27194 components: - rot: -1.5707963267948966 rad pos: 44.5,34.5 parent: 2 type: Transform - - uid: 27156 + - uid: 27195 components: - rot: -1.5707963267948966 rad pos: 44.5,36.5 parent: 2 type: Transform - - uid: 27157 + - uid: 27196 components: - rot: -1.5707963267948966 rad pos: 44.5,35.5 parent: 2 type: Transform - - uid: 27158 + - uid: 27197 components: - rot: -1.5707963267948966 rad pos: 43.5,38.5 parent: 2 type: Transform - - uid: 27159 + - uid: 27198 components: - rot: 1.5707963267948966 rad pos: 44.5,40.5 parent: 2 type: Transform - - uid: 27160 + - uid: 27199 components: - rot: 1.5707963267948966 rad pos: 44.5,39.5 parent: 2 type: Transform - - uid: 27161 + - uid: 27200 components: - rot: 1.5707963267948966 rad pos: 44.5,38.5 parent: 2 type: Transform - - uid: 27162 + - uid: 27201 components: - rot: -1.5707963267948966 rad pos: 42.5,36.5 parent: 2 type: Transform - - uid: 27163 + - uid: 27202 components: - rot: 1.5707963267948966 rad pos: 46.5,40.5 parent: 2 type: Transform - - uid: 27164 + - uid: 27203 components: - rot: 1.5707963267948966 rad pos: 48.5,40.5 parent: 2 type: Transform - - uid: 27165 + - uid: 27204 components: - rot: 1.5707963267948966 rad pos: 48.5,41.5 parent: 2 type: Transform - - uid: 27166 + - uid: 27205 components: - rot: -1.5707963267948966 rad pos: 43.5,36.5 parent: 2 type: Transform - - uid: 27167 + - uid: 27206 components: - rot: 3.141592653589793 rad pos: 42.5,34.5 parent: 2 type: Transform - - uid: 27168 + - uid: 27207 components: - rot: 3.141592653589793 rad pos: 41.5,34.5 parent: 2 type: Transform - - uid: 27169 + - uid: 27208 components: - rot: 3.141592653589793 rad pos: 41.5,33.5 parent: 2 type: Transform - - uid: 27170 + - uid: 27209 components: - rot: 3.141592653589793 rad pos: 41.5,29.5 parent: 2 type: Transform - - uid: 27171 + - uid: 27210 components: - rot: 3.141592653589793 rad pos: 42.5,28.5 parent: 2 type: Transform - - uid: 27172 + - uid: 27211 components: - rot: 3.141592653589793 rad pos: 42.5,29.5 parent: 2 type: Transform - - uid: 27173 + - uid: 27212 components: - rot: 3.141592653589793 rad pos: 43.5,28.5 parent: 2 type: Transform - - uid: 27174 + - uid: 27213 components: - rot: -1.5707963267948966 rad pos: 57.5,36.5 parent: 2 type: Transform - - uid: 27175 + - uid: 27214 components: - rot: -1.5707963267948966 rad pos: 56.5,38.5 parent: 2 type: Transform - - uid: 27176 + - uid: 27215 components: - pos: 71.5,-65.5 parent: 2 type: Transform - - uid: 27177 + - uid: 27216 components: - rot: 1.5707963267948966 rad pos: 43.5,34.5 parent: 2 type: Transform - - uid: 27178 + - uid: 27217 components: - rot: -1.5707963267948966 rad pos: 62.5,30.5 parent: 2 type: Transform - - uid: 27179 + - uid: 27218 components: - rot: -1.5707963267948966 rad pos: 64.5,30.5 parent: 2 type: Transform - - uid: 27180 + - uid: 27219 components: - rot: -1.5707963267948966 rad pos: 65.5,30.5 parent: 2 type: Transform - - uid: 27181 + - uid: 27220 components: - rot: -1.5707963267948966 rad pos: 65.5,28.5 parent: 2 type: Transform - - uid: 27182 + - uid: 27221 components: - rot: -1.5707963267948966 rad pos: 65.5,29.5 parent: 2 type: Transform - - uid: 27183 + - uid: 27222 components: - pos: 30.5,48.5 parent: 2 type: Transform - - uid: 27184 + - uid: 27223 components: - rot: -1.5707963267948966 rad pos: 27.5,47.5 parent: 2 type: Transform - - uid: 27185 + - uid: 27224 components: - rot: -1.5707963267948966 rad pos: 27.5,43.5 parent: 2 type: Transform - - uid: 27186 + - uid: 27225 components: - rot: -1.5707963267948966 rad pos: 28.5,43.5 parent: 2 type: Transform - - uid: 27187 + - uid: 27226 components: - rot: -1.5707963267948966 rad pos: 30.5,43.5 parent: 2 type: Transform - - uid: 27188 + - uid: 27227 components: - rot: -1.5707963267948966 rad pos: 31.5,43.5 parent: 2 type: Transform - - uid: 27189 + - uid: 27228 components: - pos: 2.5,46.5 parent: 2 type: Transform - - uid: 27190 + - uid: 27229 components: - pos: -6.5,43.5 parent: 2 type: Transform - - uid: 27191 + - uid: 27230 components: - pos: -5.5,43.5 parent: 2 type: Transform - - uid: 27192 + - uid: 27231 components: - pos: 2.5,43.5 parent: 2 type: Transform - - uid: 27193 + - uid: 27232 components: - pos: 1.5,43.5 parent: 2 type: Transform - - uid: 27194 + - uid: 27233 components: - pos: 0.5,43.5 parent: 2 type: Transform - - uid: 27195 + - uid: 27234 components: - pos: -8.5,60.5 parent: 2 type: Transform - - uid: 27196 + - uid: 27235 components: - pos: -3.5,60.5 parent: 2 type: Transform - - uid: 27197 + - uid: 27236 components: - pos: -4.5,60.5 parent: 2 type: Transform - - uid: 27198 + - uid: 27237 components: - pos: -5.5,60.5 parent: 2 type: Transform - - uid: 27199 + - uid: 27238 components: - pos: -6.5,60.5 parent: 2 type: Transform - - uid: 27200 + - uid: 27239 components: - pos: -7.5,60.5 parent: 2 type: Transform - - uid: 27201 + - uid: 27240 components: - pos: 1.5,60.5 parent: 2 type: Transform - - uid: 27202 + - uid: 27241 components: - pos: 0.5,60.5 parent: 2 type: Transform - - uid: 27203 + - uid: 27242 components: - rot: -1.5707963267948966 rad pos: -7.5,38.5 parent: 2 type: Transform - - uid: 27204 + - uid: 27243 components: - pos: 18.5,35.5 parent: 2 type: Transform - - uid: 27205 + - uid: 27244 components: - pos: 19.5,35.5 parent: 2 type: Transform - - uid: 27206 + - uid: 27245 components: - pos: 19.5,36.5 parent: 2 type: Transform - - uid: 27207 + - uid: 27246 components: - pos: 19.5,37.5 parent: 2 type: Transform - - uid: 27208 + - uid: 27247 components: - pos: 19.5,38.5 parent: 2 type: Transform - - uid: 27209 + - uid: 27248 components: - pos: 19.5,39.5 parent: 2 type: Transform - - uid: 27210 + - uid: 27249 components: - pos: 19.5,40.5 parent: 2 type: Transform - - uid: 27211 + - uid: 27250 components: - pos: 18.5,40.5 parent: 2 type: Transform - - uid: 27212 + - uid: 27251 components: - pos: 17.5,40.5 parent: 2 type: Transform - - uid: 27213 + - uid: 27252 components: - pos: 17.5,41.5 parent: 2 type: Transform - - uid: 27214 + - uid: 27253 components: - pos: 15.5,41.5 parent: 2 type: Transform - - uid: 27215 + - uid: 27254 components: - pos: 15.5,40.5 parent: 2 type: Transform - - uid: 27216 + - uid: 27255 components: - pos: 14.5,40.5 parent: 2 type: Transform - - uid: 27217 + - uid: 27256 components: - pos: 13.5,40.5 parent: 2 type: Transform - - uid: 27218 + - uid: 27257 components: - pos: 13.5,39.5 parent: 2 type: Transform - - uid: 27219 + - uid: 27258 components: - pos: 13.5,38.5 parent: 2 type: Transform - - uid: 27220 + - uid: 27259 components: - pos: 13.5,37.5 parent: 2 type: Transform - - uid: 27221 + - uid: 27260 components: - pos: 13.5,36.5 parent: 2 type: Transform - - uid: 27222 + - uid: 27261 components: - pos: 13.5,35.5 parent: 2 type: Transform - - uid: 27223 + - uid: 27262 components: - pos: 14.5,35.5 parent: 2 type: Transform - - uid: 27224 + - uid: 27263 components: - pos: 0.5,61.5 parent: 2 type: Transform - - uid: 27225 + - uid: 27264 components: - pos: 0.5,63.5 parent: 2 type: Transform - - uid: 27226 + - uid: 27265 components: - pos: 0.5,62.5 parent: 2 type: Transform - - uid: 27227 + - uid: 27266 components: - pos: -3.5,63.5 parent: 2 type: Transform - - uid: 27228 + - uid: 27267 components: - pos: -3.5,62.5 parent: 2 type: Transform - - uid: 27229 + - uid: 27268 components: - pos: -3.5,61.5 parent: 2 type: Transform - - uid: 27230 + - uid: 27269 components: - pos: 0.5,64.5 parent: 2 type: Transform - - uid: 27231 + - uid: 27270 components: - pos: -0.5,64.5 parent: 2 type: Transform - - uid: 27232 + - uid: 27271 components: - pos: -2.5,64.5 parent: 2 type: Transform - - uid: 27233 + - uid: 27272 components: - pos: -3.5,64.5 parent: 2 type: Transform - - uid: 27234 + - uid: 27273 components: - pos: -4.5,64.5 parent: 2 type: Transform - - uid: 27235 + - uid: 27274 components: - pos: -5.5,64.5 parent: 2 type: Transform - - uid: 27236 + - uid: 27275 components: - pos: -5.5,65.5 parent: 2 type: Transform - - uid: 27237 + - uid: 27276 components: - pos: -5.5,65.5 parent: 2 type: Transform - - uid: 27238 + - uid: 27277 components: - pos: -6.5,65.5 parent: 2 type: Transform - - uid: 27239 + - uid: 27278 components: - pos: -7.5,65.5 parent: 2 type: Transform - - uid: 27240 + - uid: 27279 components: - pos: -7.5,66.5 parent: 2 type: Transform - - uid: 27241 + - uid: 27280 components: - pos: -8.5,66.5 parent: 2 type: Transform - - uid: 27242 + - uid: 27281 components: - pos: -8.5,67.5 parent: 2 type: Transform - - uid: 27243 + - uid: 27282 components: - pos: -8.5,68.5 parent: 2 type: Transform - - uid: 27244 + - uid: 27283 components: - pos: -8.5,70.5 parent: 2 type: Transform - - uid: 27245 + - uid: 27284 components: - pos: -8.5,71.5 parent: 2 type: Transform - - uid: 27246 + - uid: 27285 components: - pos: -8.5,72.5 parent: 2 type: Transform - - uid: 27247 + - uid: 27286 components: - pos: -7.5,72.5 parent: 2 type: Transform - - uid: 27248 + - uid: 27287 components: - pos: -7.5,73.5 parent: 2 type: Transform - - uid: 27249 + - uid: 27288 components: - pos: -6.5,73.5 parent: 2 type: Transform - - uid: 27250 + - uid: 27289 components: - pos: -6.5,74.5 parent: 2 type: Transform - - uid: 27251 + - uid: 27290 components: - pos: -5.5,74.5 parent: 2 type: Transform - - uid: 27252 + - uid: 27291 components: - pos: -4.5,74.5 parent: 2 type: Transform - - uid: 27253 + - uid: 27292 components: - pos: -3.5,74.5 parent: 2 type: Transform - - uid: 27254 + - uid: 27293 components: - pos: -2.5,74.5 parent: 2 type: Transform - - uid: 27255 + - uid: 27294 components: - pos: -1.5,74.5 parent: 2 type: Transform - - uid: 27256 + - uid: 27295 components: - pos: -0.5,74.5 parent: 2 type: Transform - - uid: 27257 + - uid: 27296 components: - pos: 0.5,74.5 parent: 2 type: Transform - - uid: 27258 + - uid: 27297 components: - pos: 1.5,74.5 parent: 2 type: Transform - - uid: 27259 + - uid: 27298 components: - pos: 2.5,74.5 parent: 2 type: Transform - - uid: 27260 + - uid: 27299 components: - pos: 3.5,74.5 parent: 2 type: Transform - - uid: 27261 + - uid: 27300 components: - pos: 3.5,73.5 parent: 2 type: Transform - - uid: 27262 + - uid: 27301 components: - pos: 4.5,73.5 parent: 2 type: Transform - - uid: 27263 + - uid: 27302 components: - pos: 4.5,72.5 parent: 2 type: Transform - - uid: 27264 + - uid: 27303 components: - pos: 5.5,72.5 parent: 2 type: Transform - - uid: 27265 + - uid: 27304 components: - pos: 5.5,71.5 parent: 2 type: Transform - - uid: 27266 + - uid: 27305 components: - pos: 5.5,70.5 parent: 2 type: Transform - - uid: 27267 + - uid: 27306 components: - pos: 5.5,68.5 parent: 2 type: Transform - - uid: 27268 + - uid: 27307 components: - pos: 5.5,67.5 parent: 2 type: Transform - - uid: 27269 + - uid: 27308 components: - pos: 5.5,66.5 parent: 2 type: Transform - - uid: 27270 + - uid: 27309 components: - pos: 4.5,66.5 parent: 2 type: Transform - - uid: 27271 + - uid: 27310 components: - pos: 4.5,65.5 parent: 2 type: Transform - - uid: 27272 + - uid: 27311 components: - pos: 3.5,65.5 parent: 2 type: Transform - - uid: 27273 + - uid: 27312 components: - pos: 2.5,64.5 parent: 2 type: Transform - - uid: 27274 + - uid: 27313 components: - pos: 2.5,65.5 parent: 2 type: Transform - - uid: 27275 + - uid: 27314 components: - pos: 1.5,64.5 parent: 2 type: Transform - - uid: 27276 + - uid: 27315 components: - rot: 3.141592653589793 rad pos: 69.5,39.5 parent: 2 type: Transform - - uid: 27277 + - uid: 27316 components: - rot: 3.141592653589793 rad pos: 69.5,38.5 parent: 2 type: Transform - - uid: 27278 + - uid: 27317 components: - rot: 3.141592653589793 rad pos: 69.5,37.5 parent: 2 type: Transform - - uid: 27279 + - uid: 27318 components: - rot: 3.141592653589793 rad pos: 75.5,39.5 parent: 2 type: Transform - - uid: 27280 + - uid: 27319 components: - rot: 3.141592653589793 rad pos: 75.5,38.5 parent: 2 type: Transform - - uid: 27281 + - uid: 27320 components: - rot: 3.141592653589793 rad pos: 75.5,37.5 parent: 2 type: Transform - - uid: 27282 + - uid: 27321 components: - rot: 3.141592653589793 rad pos: 74.5,39.5 parent: 2 type: Transform - - uid: 27283 + - uid: 27322 components: - rot: 3.141592653589793 rad pos: 72.5,39.5 parent: 2 type: Transform - - uid: 27284 + - uid: 27323 components: - rot: 3.141592653589793 rad pos: 70.5,39.5 parent: 2 type: Transform - - uid: 27285 + - uid: 27324 components: - rot: 3.141592653589793 rad pos: 69.5,35.5 parent: 2 type: Transform - - uid: 27286 + - uid: 27325 components: - rot: 3.141592653589793 rad pos: 69.5,34.5 parent: 2 type: Transform - - uid: 27287 + - uid: 27326 components: - rot: 3.141592653589793 rad pos: 69.5,33.5 parent: 2 type: Transform - - uid: 27288 + - uid: 27327 components: - rot: 3.141592653589793 rad pos: 70.5,33.5 parent: 2 type: Transform - - uid: 27289 + - uid: 27328 components: - rot: 3.141592653589793 rad pos: 72.5,33.5 parent: 2 type: Transform - - uid: 27290 + - uid: 27329 components: - rot: 3.141592653589793 rad pos: 74.5,33.5 parent: 2 type: Transform - - uid: 27291 + - uid: 27330 components: - rot: 3.141592653589793 rad pos: 75.5,33.5 parent: 2 type: Transform - - uid: 27292 + - uid: 27331 components: - rot: 3.141592653589793 rad pos: 75.5,34.5 parent: 2 type: Transform - - uid: 27293 + - uid: 27332 components: - rot: 3.141592653589793 rad pos: 75.5,35.5 parent: 2 type: Transform - - uid: 27294 + - uid: 27333 components: - pos: 76.5,37.5 parent: 2 type: Transform - - uid: 27295 + - uid: 27334 components: - pos: 77.5,37.5 parent: 2 type: Transform - - uid: 27296 + - uid: 27335 components: - pos: 76.5,35.5 parent: 2 type: Transform - - uid: 27297 + - uid: 27336 components: - pos: 77.5,35.5 parent: 2 type: Transform - - uid: 27298 + - uid: 27337 components: - pos: 68.5,37.5 parent: 2 type: Transform - - uid: 27299 + - uid: 27338 components: - pos: 67.5,37.5 parent: 2 type: Transform - - uid: 27300 + - uid: 27339 components: - pos: 67.5,35.5 parent: 2 type: Transform - - uid: 27301 + - uid: 27340 components: - pos: 68.5,35.5 parent: 2 type: Transform - - uid: 27302 + - uid: 27341 components: - pos: 64.5,32.5 parent: 2 type: Transform - - uid: 27303 + - uid: 27342 components: - pos: 64.5,31.5 parent: 2 type: Transform - - uid: 27304 + - uid: 27343 components: - pos: 62.5,32.5 parent: 2 type: Transform - - uid: 27305 + - uid: 27344 components: - pos: 62.5,31.5 parent: 2 type: Transform - - uid: 27306 + - uid: 27345 components: - pos: -38.5,43.5 parent: 2 type: Transform - - uid: 27307 + - uid: 27346 components: - pos: -38.5,42.5 parent: 2 type: Transform - - uid: 27308 + - uid: 27347 components: - pos: -38.5,41.5 parent: 2 type: Transform - - uid: 27309 + - uid: 27348 components: - pos: -36.5,43.5 parent: 2 type: Transform - - uid: 27310 + - uid: 27349 components: - pos: -36.5,42.5 parent: 2 type: Transform - - uid: 27311 + - uid: 27350 components: - pos: -36.5,41.5 parent: 2 type: Transform - - uid: 27312 + - uid: 27351 components: - pos: -38.5,40.5 parent: 2 type: Transform - - uid: 27313 + - uid: 27352 components: - pos: -39.5,40.5 parent: 2 type: Transform - - uid: 27314 + - uid: 27353 components: - pos: -40.5,40.5 parent: 2 type: Transform - - uid: 27315 + - uid: 27354 components: - pos: -41.5,40.5 parent: 2 type: Transform - - uid: 27316 + - uid: 27355 components: - pos: -42.5,40.5 parent: 2 type: Transform - - uid: 27317 + - uid: 27356 components: - rot: -1.5707963267948966 rad pos: -48.5,46.5 parent: 2 type: Transform - - uid: 27318 + - uid: 27357 components: - rot: -1.5707963267948966 rad pos: -48.5,47.5 parent: 2 type: Transform - - uid: 27319 + - uid: 27358 components: - rot: -1.5707963267948966 rad pos: -50.5,47.5 parent: 2 type: Transform - - uid: 27320 + - uid: 27359 components: - pos: -48.5,40.5 parent: 2 type: Transform - - uid: 27321 + - uid: 27360 components: - pos: -48.5,39.5 parent: 2 type: Transform - - uid: 27322 + - uid: 27361 components: - pos: -48.5,38.5 parent: 2 type: Transform - - uid: 27323 + - uid: 27362 components: - pos: -36.5,40.5 parent: 2 type: Transform - - uid: 27324 + - uid: 27363 components: - pos: -35.5,40.5 parent: 2 type: Transform - - uid: 27325 + - uid: 27364 components: - pos: -34.5,40.5 parent: 2 type: Transform - - uid: 27326 + - uid: 27365 components: - pos: -31.5,40.5 parent: 2 type: Transform - - uid: 27327 + - uid: 27366 components: - pos: -30.5,40.5 parent: 2 type: Transform - - uid: 27328 + - uid: 27367 components: - pos: -30.5,41.5 parent: 2 type: Transform - - uid: 27329 + - uid: 27368 components: - pos: -30.5,42.5 parent: 2 type: Transform - - uid: 27330 + - uid: 27369 components: - pos: -29.5,42.5 parent: 2 type: Transform - - uid: 27331 + - uid: 27370 components: - pos: -26.5,47.5 parent: 2 type: Transform - - uid: 27332 + - uid: 27371 components: - pos: -27.5,47.5 parent: 2 type: Transform - - uid: 27333 + - uid: 27372 components: - pos: -28.5,47.5 parent: 2 type: Transform - - uid: 27334 + - uid: 27373 components: - pos: -29.5,47.5 parent: 2 type: Transform - - uid: 27335 + - uid: 27374 components: - pos: -29.5,46.5 parent: 2 type: Transform - - uid: 27336 + - uid: 27375 components: - pos: -25.5,47.5 parent: 2 type: Transform - - uid: 27337 + - uid: 27376 components: - pos: -25.5,48.5 parent: 2 type: Transform - - uid: 27338 + - uid: 27377 components: - pos: 32.5,48.5 parent: 2 type: Transform - - uid: 27339 + - uid: 27378 components: - pos: 31.5,48.5 parent: 2 type: Transform - - uid: 27340 + - uid: 27379 components: - pos: 31.5,47.5 parent: 2 type: Transform - - uid: 27341 + - uid: 27380 components: - pos: 31.5,46.5 parent: 2 type: Transform - - uid: 27342 + - uid: 27381 components: - pos: 31.5,44.5 parent: 2 type: Transform - - uid: 27343 + - uid: 27382 components: - pos: 27.5,46.5 parent: 2 type: Transform - - uid: 27344 + - uid: 27383 components: - pos: 27.5,44.5 parent: 2 type: Transform - - uid: 27345 + - uid: 27384 components: - pos: 28.5,48.5 parent: 2 type: Transform - - uid: 27346 + - uid: 27385 components: - rot: -1.5707963267948966 rad pos: -1.5,73.5 parent: 2 type: Transform - - uid: 27347 + - uid: 27386 components: - pos: 46.5,51.5 parent: 2 type: Transform - - uid: 27348 + - uid: 27387 components: - pos: 47.5,51.5 parent: 2 type: Transform - - uid: 27349 + - uid: 27388 components: - pos: 48.5,51.5 parent: 2 type: Transform - - uid: 27350 + - uid: 27389 components: - pos: 30.5,42.5 parent: 2 type: Transform - - uid: 27351 + - uid: 27390 components: - pos: 30.5,41.5 parent: 2 type: Transform - - uid: 27352 + - uid: 27391 components: - pos: 28.5,42.5 parent: 2 type: Transform - - uid: 27353 + - uid: 27392 components: - pos: 28.5,41.5 parent: 2 type: Transform - - uid: 27354 + - uid: 27393 components: - pos: 27.5,48.5 parent: 2 type: Transform - - uid: 27355 + - uid: 27394 components: - pos: -8.5,63.5 parent: 2 type: Transform - - uid: 27356 + - uid: 27395 components: - pos: -9.5,63.5 parent: 2 type: Transform - - uid: 27357 + - uid: 27396 components: - pos: -11.5,63.5 parent: 2 type: Transform - - uid: 27358 + - uid: 27397 components: - pos: -8.5,62.5 parent: 2 type: Transform - - uid: 27359 + - uid: 27398 components: - pos: -8.5,61.5 parent: 2 type: Transform - - uid: 27360 + - uid: 27399 components: - pos: 10.5,-35.5 parent: 2 type: Transform - - uid: 27361 + - uid: 27400 components: - pos: 9.5,-30.5 parent: 2 type: Transform - - uid: 27362 + - uid: 27401 components: - pos: 10.5,-37.5 parent: 2 type: Transform - - uid: 27363 + - uid: 27402 components: - pos: -25.5,49.5 parent: 2 type: Transform - - uid: 27364 + - uid: 27403 components: - pos: -25.5,50.5 parent: 2 type: Transform - - uid: 27365 + - uid: 27404 components: - pos: -26.5,50.5 parent: 2 type: Transform - - uid: 27366 + - uid: 27405 components: - pos: -26.5,51.5 parent: 2 type: Transform - - uid: 27367 + - uid: 27406 components: - pos: -26.5,52.5 parent: 2 type: Transform - - uid: 27368 + - uid: 27407 components: - pos: -26.5,55.5 parent: 2 type: Transform - - uid: 27369 + - uid: 27408 components: - pos: -26.5,56.5 parent: 2 type: Transform - - uid: 27370 + - uid: 27409 components: - pos: -25.5,56.5 parent: 2 type: Transform - - uid: 27371 + - uid: 27410 components: - pos: -25.5,57.5 parent: 2 type: Transform - - uid: 27372 + - uid: 27411 components: - pos: -24.5,57.5 parent: 2 type: Transform - - uid: 27373 + - uid: 27412 components: - pos: 3.5,57.5 parent: 2 type: Transform - - uid: 27374 + - uid: 27413 components: - pos: 10.5,-30.5 parent: 2 type: Transform - - uid: 27375 + - uid: 27414 components: - pos: 9.5,-33.5 parent: 2 type: Transform - - uid: 27376 + - uid: 27415 components: - rot: 3.141592653589793 rad pos: -16.5,-81.5 parent: 2 type: Transform - - uid: 27377 + - uid: 27416 components: - rot: 3.141592653589793 rad pos: -16.5,-82.5 parent: 2 type: Transform - - uid: 27378 + - uid: 27417 components: - rot: 3.141592653589793 rad pos: -16.5,-83.5 parent: 2 type: Transform - - uid: 27379 + - uid: 27418 components: - rot: 3.141592653589793 rad pos: -16.5,-84.5 parent: 2 type: Transform - - uid: 27380 + - uid: 27419 components: - rot: 3.141592653589793 rad pos: -16.5,-85.5 parent: 2 type: Transform - - uid: 27381 + - uid: 27420 components: - rot: 3.141592653589793 rad pos: -16.5,-86.5 parent: 2 type: Transform - - uid: 27382 + - uid: 27421 components: - rot: 3.141592653589793 rad pos: -16.5,-87.5 parent: 2 type: Transform - - uid: 27383 + - uid: 27422 components: - rot: 3.141592653589793 rad pos: -16.5,-89.5 parent: 2 type: Transform - - uid: 27384 + - uid: 27423 components: - rot: 3.141592653589793 rad pos: -15.5,-89.5 parent: 2 type: Transform - - uid: 27385 + - uid: 27424 components: - rot: 3.141592653589793 rad pos: -14.5,-89.5 parent: 2 type: Transform - - uid: 27386 + - uid: 27425 components: - rot: 3.141592653589793 rad pos: -13.5,-89.5 parent: 2 type: Transform - - uid: 27387 + - uid: 27426 components: - rot: 3.141592653589793 rad pos: -12.5,-89.5 parent: 2 type: Transform - - uid: 27388 + - uid: 27427 components: - rot: 3.141592653589793 rad pos: -11.5,-89.5 parent: 2 type: Transform - - uid: 27389 + - uid: 27428 components: - rot: 3.141592653589793 rad pos: -10.5,-89.5 parent: 2 type: Transform - - uid: 27390 + - uid: 27429 components: - rot: 3.141592653589793 rad pos: -9.5,-89.5 parent: 2 type: Transform - - uid: 27391 + - uid: 27430 components: - rot: 3.141592653589793 rad pos: -8.5,-89.5 parent: 2 type: Transform - - uid: 27392 + - uid: 27431 components: - rot: 3.141592653589793 rad pos: -9.5,-94.5 parent: 2 type: Transform - - uid: 27393 + - uid: 27432 components: - pos: -5.5,-94.5 parent: 2 type: Transform - - uid: 27394 + - uid: 27433 components: - rot: 3.141592653589793 rad pos: -6.5,-89.5 parent: 2 type: Transform - - uid: 27395 + - uid: 27434 components: - rot: 3.141592653589793 rad pos: -5.5,-89.5 parent: 2 type: Transform - - uid: 27396 + - uid: 27435 components: - rot: 3.141592653589793 rad pos: -4.5,-89.5 parent: 2 type: Transform - - uid: 27397 + - uid: 27436 components: - rot: 3.141592653589793 rad pos: -3.5,-89.5 parent: 2 type: Transform - - uid: 27398 + - uid: 27437 components: - rot: 3.141592653589793 rad pos: -3.5,-85.5 parent: 2 type: Transform - - uid: 27399 + - uid: 27438 components: - rot: 3.141592653589793 rad pos: -3.5,-86.5 parent: 2 type: Transform - - uid: 27400 + - uid: 27439 components: - rot: 3.141592653589793 rad pos: -3.5,-87.5 parent: 2 type: Transform - - uid: 27401 + - uid: 27440 components: - rot: 3.141592653589793 rad pos: -3.5,-88.5 parent: 2 type: Transform - - uid: 27402 + - uid: 27441 components: - rot: 3.141592653589793 rad pos: -3.5,-84.5 parent: 2 type: Transform - - uid: 27403 + - uid: 27442 components: - rot: -1.5707963267948966 rad pos: 29.5,48.5 parent: 2 type: Transform - - uid: 27404 + - uid: 27443 components: - pos: -18.5,-95.5 parent: 2 type: Transform - - uid: 27405 + - uid: 27444 components: - pos: -18.5,-99.5 parent: 2 type: Transform - - uid: 27406 + - uid: 27445 components: - pos: -26.5,-95.5 parent: 2 type: Transform - - uid: 27407 + - uid: 27446 components: - pos: -26.5,-99.5 parent: 2 type: Transform - - uid: 27408 + - uid: 27447 components: - pos: -18.5,-94.5 parent: 2 type: Transform - - uid: 27409 + - uid: 27448 components: - pos: -19.5,-94.5 parent: 2 type: Transform - - uid: 27410 + - uid: 27449 components: - pos: -20.5,-94.5 parent: 2 type: Transform - - uid: 27411 + - uid: 27450 components: - pos: -24.5,-94.5 parent: 2 type: Transform - - uid: 27412 + - uid: 27451 components: - pos: -25.5,-94.5 parent: 2 type: Transform - - uid: 27413 + - uid: 27452 components: - pos: -26.5,-94.5 parent: 2 type: Transform - - uid: 27414 + - uid: 27453 components: - pos: -18.5,-100.5 parent: 2 type: Transform - - uid: 27415 + - uid: 27454 components: - pos: -19.5,-100.5 parent: 2 type: Transform - - uid: 27416 + - uid: 27455 components: - pos: -20.5,-100.5 parent: 2 type: Transform - - uid: 27417 + - uid: 27456 components: - pos: -26.5,-100.5 parent: 2 type: Transform - - uid: 27418 + - uid: 27457 components: - pos: -25.5,-100.5 parent: 2 type: Transform - - uid: 27419 + - uid: 27458 components: - pos: -24.5,-100.5 parent: 2 type: Transform - - uid: 27420 + - uid: 27459 components: - pos: -17.5,-95.5 parent: 2 type: Transform - - uid: 27421 + - uid: 27460 components: - pos: -16.5,-95.5 parent: 2 type: Transform - - uid: 27422 + - uid: 27461 components: - pos: -15.5,-95.5 parent: 2 type: Transform - - uid: 27423 + - uid: 27462 components: - pos: -14.5,-95.5 parent: 2 type: Transform - - uid: 27424 + - uid: 27463 components: - pos: -17.5,-99.5 parent: 2 type: Transform - - uid: 27425 + - uid: 27464 components: - pos: -16.5,-99.5 parent: 2 type: Transform - - uid: 27426 + - uid: 27465 components: - pos: -15.5,-99.5 parent: 2 type: Transform - - uid: 27427 + - uid: 27466 components: - pos: -14.5,-99.5 parent: 2 type: Transform - - uid: 27428 + - uid: 27467 components: - pos: -27.5,-95.5 parent: 2 type: Transform - - uid: 27429 + - uid: 27468 components: - pos: -28.5,-95.5 parent: 2 type: Transform - - uid: 27430 + - uid: 27469 components: - pos: -29.5,-95.5 parent: 2 type: Transform - - uid: 27431 + - uid: 27470 components: - pos: -30.5,-95.5 parent: 2 type: Transform - - uid: 27432 + - uid: 27471 components: - pos: -27.5,-99.5 parent: 2 type: Transform - - uid: 27433 + - uid: 27472 components: - pos: -28.5,-99.5 parent: 2 type: Transform - - uid: 27434 + - uid: 27473 components: - pos: -29.5,-99.5 parent: 2 type: Transform - - uid: 27435 + - uid: 27474 components: - pos: -30.5,-99.5 parent: 2 type: Transform - - uid: 27436 + - uid: 27475 components: - pos: -13.5,-95.5 parent: 2 type: Transform - - uid: 27437 + - uid: 27476 components: - pos: -13.5,-99.5 parent: 2 type: Transform - - uid: 27438 + - uid: 27477 components: - pos: -31.5,-95.5 parent: 2 type: Transform - - uid: 27439 + - uid: 27478 components: - pos: -31.5,-99.5 parent: 2 type: Transform - - uid: 27440 + - uid: 27479 components: - pos: -10.5,-94.5 parent: 2 type: Transform - - uid: 27441 + - uid: 27480 components: - pos: -11.5,-94.5 parent: 2 type: Transform - - uid: 27442 + - uid: 27481 components: - pos: -11.5,-95.5 parent: 2 type: Transform - - uid: 27443 + - uid: 27482 components: - pos: -12.5,-95.5 parent: 2 type: Transform - - uid: 27444 + - uid: 27483 components: - pos: -4.5,-94.5 parent: 2 type: Transform - - uid: 27445 + - uid: 27484 components: - pos: -4.5,-95.5 parent: 2 type: Transform - - uid: 27446 + - uid: 27485 components: - pos: -3.5,-95.5 parent: 2 type: Transform - - uid: 27447 + - uid: 27486 components: - pos: -7.5,-101.5 parent: 2 type: Transform - - uid: 27448 + - uid: 27487 components: - pos: -4.5,-101.5 parent: 2 type: Transform - - uid: 27449 + - uid: 27488 components: - pos: -4.5,-100.5 parent: 2 type: Transform - - uid: 27450 + - uid: 27489 components: - pos: -3.5,-100.5 parent: 2 type: Transform - - uid: 27451 + - uid: 27490 components: - pos: -10.5,-101.5 parent: 2 type: Transform - - uid: 27452 + - uid: 27491 components: - pos: -10.5,-100.5 parent: 2 type: Transform - - uid: 27453 + - uid: 27492 components: - pos: -11.5,-100.5 parent: 2 type: Transform - - uid: 27454 + - uid: 27493 components: - pos: -11.5,-99.5 parent: 2 type: Transform - - uid: 27455 + - uid: 27494 components: - pos: -12.5,-99.5 parent: 2 type: Transform - - uid: 27456 + - uid: 27495 components: - pos: -3.5,-96.5 parent: 2 type: Transform - - uid: 27457 + - uid: 27496 components: - pos: -3.5,-99.5 parent: 2 type: Transform - - uid: 27458 + - uid: 27497 components: - pos: -39.5,-87.5 parent: 2 type: Transform - - uid: 27459 + - uid: 27498 components: - pos: -39.5,-88.5 parent: 2 type: Transform - - uid: 27460 + - uid: 27499 components: - pos: -44.5,-87.5 parent: 2 type: Transform - - uid: 27461 + - uid: 27500 components: - pos: -44.5,-88.5 parent: 2 type: Transform - - uid: 27462 + - uid: 27501 components: - pos: -32.5,-99.5 parent: 2 type: Transform - - uid: 27463 + - uid: 27502 components: - pos: -33.5,-99.5 parent: 2 type: Transform - - uid: 27464 + - uid: 27503 components: - pos: -34.5,-99.5 parent: 2 type: Transform - - uid: 27465 + - uid: 27504 components: - pos: -36.5,-99.5 parent: 2 type: Transform - - uid: 27466 + - uid: 27505 components: - pos: -38.5,-99.5 parent: 2 type: Transform - - uid: 27467 + - uid: 27506 components: - pos: -39.5,-99.5 parent: 2 type: Transform - - uid: 27468 + - uid: 27507 components: - pos: -34.5,-101.5 parent: 2 type: Transform - - uid: 27469 + - uid: 27508 components: - pos: -36.5,-101.5 parent: 2 type: Transform - - uid: 27470 + - uid: 27509 components: - pos: -6.5,-94.5 parent: 2 type: Transform - - uid: 27471 + - uid: 27510 components: - pos: -8.5,-94.5 parent: 2 type: Transform - - uid: 27472 + - uid: 27511 components: - pos: 66.5,-15.5 parent: 2 type: Transform - - uid: 27473 + - uid: 27512 components: - pos: 66.5,-16.5 parent: 2 type: Transform - - uid: 27474 + - uid: 27513 components: - pos: -39.5,-91.5 parent: 2 type: Transform - - uid: 27475 + - uid: 27514 components: - pos: -44.5,-91.5 parent: 2 type: Transform - - uid: 27476 + - uid: 27515 components: - rot: 1.5707963267948966 rad pos: -32.5,-95.5 parent: 2 type: Transform - - uid: 27477 + - uid: 27516 components: - rot: 1.5707963267948966 rad pos: -33.5,-95.5 parent: 2 type: Transform - - uid: 27478 + - uid: 27517 components: - rot: 1.5707963267948966 rad pos: -34.5,-95.5 parent: 2 type: Transform - - uid: 27479 + - uid: 27518 components: - rot: 1.5707963267948966 rad pos: -34.5,-94.5 parent: 2 type: Transform - - uid: 27480 + - uid: 27519 components: - rot: 1.5707963267948966 rad pos: -34.5,-93.5 parent: 2 type: Transform - - uid: 27481 + - uid: 27520 components: - rot: 1.5707963267948966 rad pos: -34.5,-92.5 parent: 2 type: Transform - - uid: 27482 + - uid: 27521 components: - rot: 1.5707963267948966 rad pos: -35.5,-92.5 parent: 2 type: Transform - - uid: 27483 + - uid: 27522 components: - rot: 1.5707963267948966 rad pos: -36.5,-92.5 parent: 2 type: Transform - - uid: 27484 + - uid: 27523 components: - rot: 1.5707963267948966 rad pos: -37.5,-92.5 parent: 2 type: Transform - - uid: 27485 + - uid: 27524 components: - rot: 1.5707963267948966 rad pos: -38.5,-92.5 parent: 2 type: Transform - - uid: 27486 + - uid: 27525 components: - rot: 1.5707963267948966 rad pos: -39.5,-92.5 parent: 2 type: Transform - - uid: 27487 + - uid: 27526 components: - rot: 1.5707963267948966 rad pos: -39.5,-98.5 parent: 2 type: Transform - - uid: 27488 + - uid: 27527 components: - rot: 1.5707963267948966 rad pos: -40.5,-98.5 parent: 2 type: Transform - - uid: 27489 + - uid: 27528 components: - rot: 1.5707963267948966 rad pos: -43.5,-98.5 parent: 2 type: Transform - - uid: 27490 + - uid: 27529 components: - rot: 1.5707963267948966 rad pos: -44.5,-97.5 parent: 2 type: Transform - - uid: 27491 + - uid: 27530 components: - rot: 1.5707963267948966 rad pos: -44.5,-98.5 parent: 2 type: Transform - - uid: 27492 + - uid: 27531 components: - rot: 1.5707963267948966 rad pos: -44.5,-94.5 parent: 2 type: Transform - - uid: 27493 + - uid: 27532 components: - rot: 1.5707963267948966 rad pos: -44.5,-93.5 parent: 2 type: Transform - - uid: 27494 + - uid: 27533 components: - rot: 1.5707963267948966 rad pos: -44.5,-92.5 parent: 2 type: Transform - - uid: 27495 + - uid: 27534 components: - pos: -20.5,-101.5 parent: 2 type: Transform - - uid: 27496 + - uid: 27535 components: - pos: -24.5,-101.5 parent: 2 type: Transform - - uid: 27497 + - uid: 27536 components: - pos: -75.5,-28.5 parent: 2 type: Transform - - uid: 27498 + - uid: 27537 components: - pos: -75.5,-29.5 parent: 2 type: Transform - - uid: 27499 + - uid: 27538 components: - pos: -75.5,-30.5 parent: 2 type: Transform - - uid: 27500 + - uid: 27539 components: - pos: -75.5,-31.5 parent: 2 type: Transform - - uid: 27501 + - uid: 27540 components: - pos: -75.5,-32.5 parent: 2 type: Transform - - uid: 27502 + - uid: 27541 components: - pos: -69.5,-33.5 parent: 2 type: Transform - - uid: 27503 + - uid: 27542 components: - pos: -70.5,-33.5 parent: 2 type: Transform - - uid: 27504 + - uid: 27543 components: - pos: -71.5,-33.5 parent: 2 type: Transform - - uid: 27505 + - uid: 27544 components: - pos: -73.5,-33.5 parent: 2 type: Transform - - uid: 27506 + - uid: 27545 components: - pos: -74.5,-33.5 parent: 2 type: Transform - - uid: 27507 + - uid: 27546 components: - pos: -75.5,-33.5 parent: 2 type: Transform - - uid: 27508 + - uid: 27547 components: - pos: -68.5,-40.5 parent: 2 type: Transform - - uid: 27509 + - uid: 27548 components: - pos: -67.5,-40.5 parent: 2 type: Transform - - uid: 27510 + - uid: 27549 components: - pos: -66.5,-40.5 parent: 2 type: Transform - - uid: 27511 + - uid: 27550 components: - pos: -70.5,-40.5 parent: 2 type: Transform - - uid: 27512 + - uid: 27551 components: - pos: -71.5,-40.5 parent: 2 type: Transform - - uid: 27513 + - uid: 27552 components: - pos: -72.5,-40.5 parent: 2 type: Transform - - uid: 27514 + - uid: 27553 components: - pos: -66.5,-42.5 parent: 2 type: Transform - - uid: 27515 + - uid: 27554 components: - pos: -66.5,-41.5 parent: 2 type: Transform - - uid: 27516 + - uid: 27555 components: - pos: -66.5,-44.5 parent: 2 type: Transform - - uid: 27517 + - uid: 27556 components: - pos: -66.5,-45.5 parent: 2 type: Transform - - uid: 27518 + - uid: 27557 components: - pos: -66.5,-46.5 parent: 2 type: Transform - - uid: 27519 + - uid: 27558 components: - pos: -67.5,-46.5 parent: 2 type: Transform - - uid: 27520 + - uid: 27559 components: - pos: -71.5,-46.5 parent: 2 type: Transform - - uid: 27521 + - uid: 27560 components: - pos: -72.5,-46.5 parent: 2 type: Transform - - uid: 27522 + - uid: 27561 components: - pos: -72.5,-41.5 parent: 2 type: Transform - - uid: 27523 + - uid: 27562 components: - pos: -72.5,-45.5 parent: 2 type: Transform - - uid: 27524 + - uid: 27563 components: - pos: -68.5,-39.5 parent: 2 type: Transform - - uid: 27525 + - uid: 27564 components: - pos: -68.5,-38.5 parent: 2 type: Transform - - uid: 27526 + - uid: 27565 components: - pos: -70.5,-38.5 parent: 2 type: Transform - - uid: 27527 + - uid: 27566 components: - pos: -70.5,-39.5 parent: 2 type: Transform - - uid: 27528 + - uid: 27567 components: - pos: -65.5,-42.5 parent: 2 type: Transform - - uid: 27529 + - uid: 27568 components: - pos: -64.5,-42.5 parent: 2 type: Transform - - uid: 27530 + - uid: 27569 components: - pos: -64.5,-44.5 parent: 2 type: Transform - - uid: 27531 + - uid: 27570 components: - pos: -65.5,-44.5 parent: 2 type: Transform - - uid: 27532 + - uid: 27571 components: - pos: 70.5,-39.5 parent: 2 type: Transform - - uid: 27533 + - uid: 27572 components: - pos: 71.5,-39.5 parent: 2 type: Transform - - uid: 27534 + - uid: 27573 components: - rot: -1.5707963267948966 rad pos: 65.5,-39.5 parent: 2 type: Transform - - uid: 27535 + - uid: 27574 components: - rot: -1.5707963267948966 rad pos: 74.5,-29.5 parent: 2 type: Transform - - uid: 27536 + - uid: 27575 components: - rot: -1.5707963267948966 rad pos: 69.5,-39.5 parent: 2 type: Transform - - uid: 27537 + - uid: 27576 components: - pos: 29.5,34.5 parent: 2 type: Transform - - uid: 27538 + - uid: 27577 components: - rot: -1.5707963267948966 rad pos: 77.5,-50.5 parent: 2 type: Transform - - uid: 27539 + - uid: 27578 components: - rot: -1.5707963267948966 rad pos: 53.5,-68.5 parent: 2 type: Transform - - uid: 27540 + - uid: 27579 components: - rot: -1.5707963267948966 rad pos: 46.5,-66.5 parent: 2 type: Transform - - uid: 27541 + - uid: 27580 components: - rot: -1.5707963267948966 rad pos: 49.5,-64.5 parent: 2 type: Transform - - uid: 27542 + - uid: 27581 components: - rot: -1.5707963267948966 rad pos: 52.5,-64.5 parent: 2 type: Transform - - uid: 27543 + - uid: 27582 components: - rot: -1.5707963267948966 rad pos: 47.5,-64.5 parent: 2 type: Transform - - uid: 27544 + - uid: 27583 components: - rot: -1.5707963267948966 rad pos: 45.5,-66.5 parent: 2 type: Transform - - uid: 27545 + - uid: 27584 components: - pos: 66.5,-67.5 parent: 2 type: Transform - - uid: 27546 + - uid: 27585 components: - pos: 65.5,-67.5 parent: 2 type: Transform - - uid: 27547 + - uid: 27586 components: - pos: 65.5,-68.5 parent: 2 type: Transform - - uid: 27548 + - uid: 27587 components: - pos: 64.5,-68.5 parent: 2 type: Transform - - uid: 27549 + - uid: 27588 components: - pos: 63.5,-69.5 parent: 2 type: Transform - - uid: 27550 + - uid: 27589 components: - pos: 69.5,-50.5 parent: 2 type: Transform - - uid: 27551 + - uid: 27590 components: - rot: -1.5707963267948966 rad pos: 70.5,-27.5 parent: 2 type: Transform - - uid: 27552 + - uid: 27591 components: - rot: -1.5707963267948966 rad pos: 52.5,-68.5 parent: 2 type: Transform - - uid: 27553 + - uid: 27592 components: - rot: -1.5707963267948966 rad pos: 47.5,-66.5 parent: 2 type: Transform - - uid: 27554 + - uid: 27593 components: - rot: -1.5707963267948966 rad pos: 49.5,-68.5 parent: 2 type: Transform - - uid: 27555 + - uid: 27594 components: - rot: -1.5707963267948966 rad pos: 76.5,-50.5 parent: 2 type: Transform - - uid: 27556 + - uid: 27595 components: - rot: -1.5707963267948966 rad pos: 48.5,-67.5 parent: 2 type: Transform - - uid: 27557 + - uid: 27596 components: - rot: -1.5707963267948966 rad pos: 48.5,-64.5 parent: 2 type: Transform - - uid: 27558 + - uid: 27597 components: - rot: -1.5707963267948966 rad pos: 49.5,-67.5 parent: 2 type: Transform - - uid: 27559 + - uid: 27598 components: - rot: -1.5707963267948966 rad pos: 51.5,-64.5 parent: 2 type: Transform - - uid: 27560 + - uid: 27599 components: - pos: 7.5,-38.5 parent: 2 type: Transform - - uid: 27561 + - uid: 27600 components: - rot: 3.141592653589793 rad pos: 74.5,-28.5 parent: 2 type: Transform - - uid: 27562 + - uid: 27601 components: - rot: 3.141592653589793 rad pos: 70.5,-28.5 parent: 2 type: Transform - - uid: 27563 + - uid: 27602 components: - pos: 5.5,-36.5 parent: 2 type: Transform - - uid: 27564 + - uid: 27603 components: - pos: 1.5,-36.5 parent: 2 type: Transform - - uid: 27565 + - uid: 27604 components: - pos: 5.5,-37.5 parent: 2 type: Transform - - uid: 27566 + - uid: 27605 components: - pos: 4.5,-36.5 parent: 2 type: Transform - - uid: 27567 + - uid: 27606 components: - pos: 6.5,-37.5 parent: 2 type: Transform - - uid: 27568 + - uid: 27607 components: - pos: 63.5,-70.5 parent: 2 type: Transform - - uid: 27569 + - uid: 27608 components: - pos: 1.5,-35.5 parent: 2 type: Transform - - uid: 27570 + - uid: 27609 components: - pos: 66.5,-60.5 parent: 2 type: Transform - - uid: 27571 + - uid: 27610 components: - pos: 76.5,-52.5 parent: 2 type: Transform - - uid: 27572 + - uid: 27611 components: - pos: 76.5,-51.5 parent: 2 type: Transform - - uid: 27573 + - uid: 27612 components: - pos: 73.5,-51.5 parent: 2 type: Transform - - uid: 27574 + - uid: 27613 components: - pos: 73.5,-53.5 parent: 2 type: Transform - - uid: 27575 + - uid: 27614 components: - pos: 75.5,-57.5 parent: 2 type: Transform - - uid: 27576 + - uid: 27615 components: - pos: 76.5,-57.5 parent: 2 type: Transform - - uid: 27577 + - uid: 27616 components: - pos: 68.5,-55.5 parent: 2 type: Transform - - uid: 27578 + - uid: 27617 components: - rot: 1.5707963267948966 rad pos: -53.5,-57.5 parent: 2 type: Transform - - uid: 27579 + - uid: 27618 components: - rot: 1.5707963267948966 rad pos: -52.5,-57.5 parent: 2 type: Transform - - uid: 27580 + - uid: 27619 components: - rot: 1.5707963267948966 rad pos: -51.5,-57.5 parent: 2 type: Transform - - uid: 27581 + - uid: 27620 components: - rot: 1.5707963267948966 rad pos: -50.5,-57.5 parent: 2 type: Transform - - uid: 27582 + - uid: 27621 components: - rot: 1.5707963267948966 rad pos: -50.5,-59.5 parent: 2 type: Transform - - uid: 27583 + - uid: 27622 components: - rot: 1.5707963267948966 rad pos: -51.5,-59.5 parent: 2 type: Transform - - uid: 27584 + - uid: 27623 components: - rot: 1.5707963267948966 rad pos: -52.5,-59.5 parent: 2 type: Transform - - uid: 27585 + - uid: 27624 components: - rot: 1.5707963267948966 rad pos: -52.5,-61.5 parent: 2 type: Transform - - uid: 27586 + - uid: 27625 components: - rot: 1.5707963267948966 rad pos: -57.5,-63.5 parent: 2 type: Transform - - uid: 27587 + - uid: 27626 components: - rot: 1.5707963267948966 rad pos: -56.5,-63.5 parent: 2 type: Transform - - uid: 27588 + - uid: 27627 components: - pos: 13.5,-37.5 parent: 2 type: Transform - - uid: 27589 + - uid: 27628 components: - pos: 59.5,-69.5 parent: 2 type: Transform - - uid: 27590 + - uid: 27629 components: - pos: 9.5,-32.5 parent: 2 type: Transform - - uid: 27591 + - uid: 27630 components: - rot: 1.5707963267948966 rad pos: 65.5,-42.5 parent: 2 type: Transform - - uid: 27592 + - uid: 27631 components: - pos: 10.5,-39.5 parent: 2 type: Transform - - uid: 27593 + - uid: 27632 components: - rot: -1.5707963267948966 rad pos: 7.5,-40.5 parent: 2 type: Transform - - uid: 27594 + - uid: 27633 components: - pos: 47.5,-32.5 parent: 2 type: Transform - - uid: 27595 + - uid: 27634 components: - pos: 69.5,-68.5 parent: 2 type: Transform - - uid: 27596 + - uid: 27635 components: - pos: 64.5,-69.5 parent: 2 type: Transform - - uid: 27597 + - uid: 27636 components: - pos: 59.5,-70.5 parent: 2 type: Transform - - uid: 27598 + - uid: 27637 components: - pos: 58.5,-69.5 parent: 2 type: Transform - - uid: 27599 + - uid: 27638 components: - pos: 67.5,-68.5 parent: 2 type: Transform - - uid: 27600 + - uid: 27639 components: - pos: 67.5,-69.5 parent: 2 type: Transform - - uid: 27601 + - uid: 27640 components: - pos: 76.5,-56.5 parent: 2 type: Transform - - uid: 27602 + - uid: 27641 components: - pos: 76.5,-55.5 parent: 2 type: Transform - - uid: 27603 + - uid: 27642 components: - pos: 76.5,-54.5 parent: 2 type: Transform - - uid: 27604 + - uid: 27643 components: - pos: 76.5,-53.5 parent: 2 type: Transform - - uid: 27605 + - uid: 27644 components: - rot: 1.5707963267948966 rad pos: 45.5,-81.5 parent: 2 type: Transform - - uid: 27606 + - uid: 27645 components: - rot: 3.141592653589793 rad pos: 48.5,3.5 parent: 2 type: Transform - - uid: 27607 + - uid: 27646 components: - pos: -45.5,-37.5 parent: 2 type: Transform - - uid: 27608 + - uid: 27647 components: - rot: 1.5707963267948966 rad pos: 32.5,20.5 parent: 2 type: Transform - - uid: 27609 + - uid: 27648 components: - rot: 1.5707963267948966 rad pos: 46.5,-88.5 parent: 2 type: Transform - - uid: 27610 + - uid: 27649 components: - pos: 35.5,-75.5 parent: 2 type: Transform - - uid: 27611 + - uid: 27650 components: - pos: 8.5,-84.5 parent: 2 type: Transform - - uid: 27612 + - uid: 27651 components: - pos: 7.5,-84.5 parent: 2 type: Transform - - uid: 27613 + - uid: 27652 components: - pos: 7.5,-85.5 parent: 2 type: Transform - - uid: 27614 + - uid: 27653 components: - pos: 9.5,-84.5 parent: 2 type: Transform - - uid: 27615 + - uid: 27654 components: - pos: 7.5,-86.5 parent: 2 type: Transform - - uid: 27616 + - uid: 27655 components: - pos: 5.5,-84.5 parent: 2 type: Transform - - uid: 27617 + - uid: 27656 components: - pos: 5.5,-85.5 parent: 2 type: Transform - - uid: 27618 + - uid: 27657 components: - pos: 5.5,-86.5 parent: 2 type: Transform - - uid: 27619 + - uid: 27658 components: - pos: 5.5,-81.5 parent: 2 type: Transform - - uid: 27620 + - uid: 27659 components: - pos: 5.5,-83.5 parent: 2 type: Transform - - uid: 27621 + - uid: 27660 components: - rot: 1.5707963267948966 rad pos: 47.5,-70.5 parent: 2 type: Transform - - uid: 27622 + - uid: 27661 components: - rot: 1.5707963267948966 rad pos: 28.5,-77.5 parent: 2 type: Transform - - uid: 27623 + - uid: 27662 components: - pos: 27.5,-75.5 parent: 2 type: Transform - - uid: 27624 + - uid: 27663 components: - rot: -1.5707963267948966 rad pos: 43.5,-75.5 parent: 2 type: Transform - - uid: 27625 + - uid: 27664 components: - pos: 64.5,-41.5 parent: 2 type: Transform - - uid: 27626 + - uid: 27665 components: - pos: -47.5,-37.5 parent: 2 type: Transform - - uid: 27627 + - uid: 27666 components: - pos: -47.5,-36.5 parent: 2 type: Transform - - uid: 27628 + - uid: 27667 components: - pos: -51.5,-34.5 parent: 2 type: Transform - - uid: 27629 + - uid: 27668 components: - pos: -51.5,-35.5 parent: 2 type: Transform - - uid: 27630 + - uid: 27669 components: - pos: -51.5,-38.5 parent: 2 type: Transform - - uid: 27631 + - uid: 27670 components: - pos: -51.5,-39.5 parent: 2 type: Transform - - uid: 27632 + - uid: 27671 components: - pos: -51.5,-40.5 parent: 2 type: Transform - - uid: 27633 + - uid: 27672 components: - rot: -1.5707963267948966 rad pos: -75.5,-12.5 parent: 2 type: Transform - - uid: 27634 + - uid: 27673 components: - rot: 1.5707963267948966 rad pos: 26.5,-86.5 parent: 2 type: Transform - - uid: 27635 + - uid: 27674 components: - rot: -1.5707963267948966 rad pos: 31.5,-93.5 parent: 2 type: Transform - - uid: 27636 + - uid: 27675 components: - rot: -1.5707963267948966 rad pos: 28.5,-91.5 parent: 2 type: Transform - - uid: 27637 + - uid: 27676 components: - rot: -1.5707963267948966 rad pos: 32.5,-92.5 parent: 2 type: Transform - - uid: 27638 + - uid: 27677 components: - rot: -1.5707963267948966 rad pos: 32.5,-91.5 parent: 2 type: Transform - - uid: 27639 + - uid: 27678 components: - rot: 1.5707963267948966 rad pos: 50.5,-70.5 parent: 2 type: Transform - - uid: 27640 + - uid: 27679 components: - rot: -1.5707963267948966 rad pos: 46.5,-75.5 parent: 2 type: Transform - - uid: 27641 + - uid: 27680 components: - rot: 1.5707963267948966 rad pos: 24.5,-75.5 parent: 2 type: Transform - - uid: 27642 + - uid: 27681 components: - rot: 1.5707963267948966 rad pos: 50.5,-76.5 parent: 2 type: Transform - - uid: 27643 + - uid: 27682 components: - rot: 1.5707963267948966 rad pos: 50.5,-78.5 parent: 2 type: Transform - - uid: 27644 + - uid: 27683 components: - rot: 1.5707963267948966 rad pos: 50.5,-79.5 parent: 2 type: Transform - - uid: 27645 + - uid: 27684 components: - pos: 49.5,-94.5 parent: 2 type: Transform - - uid: 27646 + - uid: 27685 components: - pos: 46.5,-91.5 parent: 2 type: Transform - - uid: 27647 + - uid: 27686 components: - pos: 47.5,-93.5 parent: 2 type: Transform - - uid: 27648 + - uid: 27687 components: - pos: 46.5,-93.5 parent: 2 type: Transform - - uid: 27649 + - uid: 27688 components: - pos: 50.5,-91.5 parent: 2 type: Transform - - uid: 27650 + - uid: 27689 components: - rot: -1.5707963267948966 rad pos: 23.5,-80.5 parent: 2 type: Transform - - uid: 27651 + - uid: 27690 components: - rot: 1.5707963267948966 rad pos: 50.5,-77.5 parent: 2 type: Transform - - uid: 27652 + - uid: 27691 components: - rot: 1.5707963267948966 rad pos: 50.5,-84.5 parent: 2 type: Transform - - uid: 27653 + - uid: 27692 components: - pos: 49.5,-95.5 parent: 2 type: Transform - - uid: 27654 + - uid: 27693 components: - pos: 47.5,-95.5 parent: 2 type: Transform - - uid: 27655 + - uid: 27694 components: - pos: 46.5,-92.5 parent: 2 type: Transform - - uid: 27656 + - uid: 27695 components: - pos: 50.5,-93.5 parent: 2 type: Transform - - uid: 27657 + - uid: 27696 components: - pos: 49.5,-93.5 parent: 2 type: Transform - - uid: 27658 + - uid: 27697 components: - rot: -1.5707963267948966 rad pos: 26.5,-80.5 parent: 2 type: Transform - - uid: 27659 + - uid: 27698 components: - rot: -1.5707963267948966 rad pos: 26.5,-79.5 parent: 2 type: Transform - - uid: 27660 + - uid: 27699 components: - rot: 1.5707963267948966 rad pos: 51.5,-74.5 parent: 2 type: Transform - - uid: 27661 + - uid: 27700 components: - rot: 1.5707963267948966 rad pos: 51.5,-70.5 parent: 2 type: Transform - - uid: 27662 + - uid: 27701 components: - rot: -1.5707963267948966 rad pos: 33.5,-81.5 parent: 2 type: Transform - - uid: 27663 + - uid: 27702 components: - pos: 47.5,-94.5 parent: 2 type: Transform - - uid: 27664 + - uid: 27703 components: - rot: -1.5707963267948966 rad pos: 28.5,-92.5 parent: 2 type: Transform - - uid: 27665 + - uid: 27704 components: - rot: -1.5707963267948966 rad pos: 2.5,-76.5 parent: 2 type: Transform - - uid: 27666 + - uid: 27705 components: - pos: 5.5,-76.5 parent: 2 type: Transform - - uid: 27667 + - uid: 27706 components: - rot: -1.5707963267948966 rad pos: 34.5,-74.5 parent: 2 type: Transform - - uid: 27668 + - uid: 27707 components: - rot: -1.5707963267948966 rad pos: 34.5,-81.5 parent: 2 type: Transform - - uid: 27669 + - uid: 27708 components: - rot: 1.5707963267948966 rad pos: 44.5,-90.5 parent: 2 type: Transform - - uid: 27670 + - uid: 27709 components: - rot: 1.5707963267948966 rad pos: 44.5,-88.5 parent: 2 type: Transform - - uid: 27671 + - uid: 27710 components: - rot: 1.5707963267948966 rad pos: 45.5,-90.5 parent: 2 type: Transform - - uid: 27672 + - uid: 27711 components: - pos: 8.5,-79.5 parent: 2 type: Transform - - uid: 27673 + - uid: 27712 components: - pos: 8.5,-80.5 parent: 2 type: Transform - - uid: 27674 + - uid: 27713 components: - pos: 50.5,-92.5 parent: 2 type: Transform - - uid: 27675 + - uid: 27714 components: - rot: 3.141592653589793 rad pos: 27.5,-67.5 parent: 2 type: Transform - - uid: 27676 + - uid: 27715 components: - rot: 3.141592653589793 rad pos: 24.5,-67.5 parent: 2 type: Transform - - uid: 27677 + - uid: 27716 components: - rot: 3.141592653589793 rad pos: 24.5,-68.5 parent: 2 type: Transform - - uid: 27678 + - uid: 27717 components: - rot: 3.141592653589793 rad pos: 27.5,-68.5 parent: 2 type: Transform - - uid: 27679 + - uid: 27718 components: - rot: -1.5707963267948966 rad pos: 32.5,-74.5 parent: 2 type: Transform - - uid: 27680 + - uid: 27719 components: - rot: -1.5707963267948966 rad pos: 28.5,-79.5 parent: 2 type: Transform - - uid: 27681 + - uid: 27720 components: - rot: -1.5707963267948966 rad pos: 33.5,-74.5 parent: 2 type: Transform - - uid: 27682 + - uid: 27721 components: - rot: 1.5707963267948966 rad pos: 50.5,-74.5 parent: 2 type: Transform - - uid: 27683 + - uid: 27722 components: - rot: 1.5707963267948966 rad pos: 45.5,-88.5 parent: 2 type: Transform - - uid: 27684 + - uid: 27723 components: - pos: 7.5,-74.5 parent: 2 type: Transform - - uid: 27685 + - uid: 27724 components: - pos: 7.5,-76.5 parent: 2 type: Transform - - uid: 27686 + - uid: 27725 components: - pos: 7.5,-72.5 parent: 2 type: Transform - - uid: 27687 + - uid: 27726 components: - pos: 10.5,-81.5 parent: 2 type: Transform - - uid: 27688 + - uid: 27727 components: - pos: 10.5,-82.5 parent: 2 type: Transform - - uid: 27689 + - uid: 27728 components: - pos: 10.5,-84.5 parent: 2 type: Transform - - uid: 27690 + - uid: 27729 components: - pos: 10.5,-85.5 parent: 2 type: Transform - - uid: 27691 + - uid: 27730 components: - pos: 5.5,-77.5 parent: 2 type: Transform - - uid: 27692 + - uid: 27731 components: - pos: 8.5,-78.5 parent: 2 type: Transform - - uid: 27693 + - uid: 27732 components: - rot: 1.5707963267948966 rad pos: 50.5,-87.5 parent: 2 type: Transform - - uid: 27694 + - uid: 27733 components: - rot: 1.5707963267948966 rad pos: 50.5,-80.5 parent: 2 type: Transform - - uid: 27695 + - uid: 27734 components: - rot: -1.5707963267948966 rad pos: 32.5,-81.5 parent: 2 type: Transform - - uid: 27696 + - uid: 27735 components: - rot: -1.5707963267948966 rad pos: 32.5,-76.5 parent: 2 type: Transform - - uid: 27697 + - uid: 27736 components: - rot: -1.5707963267948966 rad pos: 32.5,-83.5 parent: 2 type: Transform - - uid: 27698 + - uid: 27737 components: - rot: 3.141592653589793 rad pos: 3.5,-20.5 parent: 2 type: Transform - - uid: 27699 + - uid: 27738 components: - rot: 3.141592653589793 rad pos: 3.5,-22.5 parent: 2 type: Transform - - uid: 27700 + - uid: 27739 components: - rot: 3.141592653589793 rad pos: 3.5,-23.5 parent: 2 type: Transform - - uid: 27701 + - uid: 27740 components: - rot: 3.141592653589793 rad pos: 3.5,-21.5 parent: 2 type: Transform - - uid: 27702 + - uid: 27741 components: - rot: 3.141592653589793 rad pos: 3.5,-19.5 parent: 2 type: Transform - - uid: 27703 + - uid: 27742 components: - rot: 3.141592653589793 rad pos: 39.5,13.5 parent: 2 type: Transform - - uid: 27704 + - uid: 27743 components: - rot: 3.141592653589793 rad pos: 37.5,13.5 parent: 2 type: Transform - - uid: 27705 + - uid: 27744 components: - rot: 3.141592653589793 rad pos: 38.5,13.5 parent: 2 type: Transform - - uid: 27706 + - uid: 27745 components: - rot: 3.141592653589793 rad pos: 47.5,8.5 parent: 2 type: Transform - - uid: 27707 + - uid: 27746 components: - pos: 8.5,-81.5 parent: 2 type: Transform - - uid: 27708 + - uid: 27747 components: - pos: 8.5,-82.5 parent: 2 type: Transform - - uid: 27709 + - uid: 27748 components: - pos: 9.5,-82.5 parent: 2 type: Transform - - uid: 27710 + - uid: 27749 components: - rot: -1.5707963267948966 rad pos: 3.5,-76.5 parent: 2 type: Transform - - uid: 27711 + - uid: 27750 components: - rot: -1.5707963267948966 rad pos: 4.5,-76.5 parent: 2 type: Transform - - uid: 27712 + - uid: 27751 components: - rot: -1.5707963267948966 rad pos: -44.5,45.5 parent: 2 type: Transform - - uid: 27713 + - uid: 27752 components: - rot: -1.5707963267948966 rad pos: -51.5,45.5 parent: 2 type: Transform - - uid: 27714 + - uid: 27753 components: - rot: -1.5707963267948966 rad pos: -44.5,44.5 parent: 2 type: Transform - - uid: 27715 + - uid: 27754 components: - rot: -1.5707963267948966 rad pos: -44.5,43.5 parent: 2 type: Transform - - uid: 27716 + - uid: 27755 components: - rot: -1.5707963267948966 rad pos: -44.5,42.5 parent: 2 type: Transform - - uid: 27717 + - uid: 27756 components: - rot: -1.5707963267948966 rad pos: -44.5,41.5 parent: 2 type: Transform - - uid: 30652 + - uid: 27757 components: - pos: 65.5,-26.5 parent: 2 type: Transform - - uid: 30653 + - uid: 27758 components: - pos: 68.5,-26.5 parent: 2 type: Transform - - uid: 30654 + - uid: 27759 components: - pos: 69.5,-26.5 parent: 2 type: Transform - proto: WallSolid entities: - - uid: 27718 + - uid: 27760 components: - rot: 1.5707963267948966 rad pos: -16.5,-28.5 parent: 2 type: Transform - - uid: 27719 + - uid: 27761 components: - pos: 37.5,-56.5 parent: 2 type: Transform - - uid: 27720 + - uid: 27762 components: - pos: 17.5,-31.5 parent: 2 type: Transform - - uid: 27721 + - uid: 27763 components: - pos: -4.5,15.5 parent: 2 type: Transform - - uid: 27722 + - uid: 27764 components: - pos: -11.5,-3.5 parent: 2 type: Transform - - uid: 27723 + - uid: 27765 components: - rot: 3.141592653589793 rad pos: 15.5,8.5 parent: 2 type: Transform - - uid: 27724 + - uid: 27766 components: - pos: 40.5,-0.5 parent: 2 type: Transform - - uid: 27725 + - uid: 27767 components: - rot: 3.141592653589793 rad pos: 23.5,9.5 parent: 2 type: Transform - - uid: 27726 + - uid: 27768 components: - pos: -17.5,-34.5 parent: 2 type: Transform - - uid: 27727 + - uid: 27769 components: - rot: 1.5707963267948966 rad pos: -11.5,8.5 parent: 2 type: Transform - - uid: 27728 + - uid: 27770 components: - rot: 1.5707963267948966 rad pos: 28.5,-57.5 parent: 2 type: Transform - - uid: 27729 + - uid: 27771 components: - pos: 37.5,-53.5 parent: 2 type: Transform - - uid: 27730 + - uid: 27772 components: - rot: 1.5707963267948966 rad pos: 19.5,-23.5 parent: 2 type: Transform - - uid: 27731 + - uid: 27773 components: - rot: -1.5707963267948966 rad pos: 31.5,-2.5 parent: 2 type: Transform - - uid: 27732 + - uid: 27774 components: - rot: 3.141592653589793 rad pos: 15.5,-51.5 parent: 2 type: Transform - - uid: 27733 + - uid: 27775 components: - rot: -1.5707963267948966 rad pos: -14.5,-11.5 parent: 2 type: Transform - - uid: 27734 + - uid: 27776 components: - pos: -11.5,-72.5 parent: 2 type: Transform - - uid: 27735 + - uid: 27777 components: - rot: -1.5707963267948966 rad pos: -14.5,-20.5 parent: 2 type: Transform - - uid: 27736 + - uid: 27778 components: - pos: 11.5,-61.5 parent: 2 type: Transform - - uid: 27737 + - uid: 27779 components: - pos: 11.5,-63.5 parent: 2 type: Transform - - uid: 27738 + - uid: 27780 components: - pos: 9.5,-63.5 parent: 2 type: Transform - - uid: 27739 + - uid: 27781 components: - pos: 7.5,-63.5 parent: 2 type: Transform - - uid: 27740 + - uid: 27782 components: - rot: -1.5707963267948966 rad pos: -10.5,-70.5 parent: 2 type: Transform - - uid: 27741 + - uid: 27783 components: - rot: -1.5707963267948966 rad pos: -10.5,-69.5 parent: 2 type: Transform - - uid: 27742 + - uid: 27784 components: - rot: -1.5707963267948966 rad pos: -7.5,-70.5 parent: 2 type: Transform - - uid: 27743 + - uid: 27785 components: - rot: -1.5707963267948966 rad pos: -15.5,-68.5 parent: 2 type: Transform - - uid: 27744 + - uid: 27786 components: - rot: -1.5707963267948966 rad pos: -17.5,-68.5 parent: 2 type: Transform - - uid: 27745 + - uid: 27787 components: - rot: -1.5707963267948966 rad pos: -10.5,-68.5 parent: 2 type: Transform - - uid: 27746 + - uid: 27788 components: - rot: -1.5707963267948966 rad pos: -7.5,-67.5 parent: 2 type: Transform - - uid: 27747 + - uid: 27789 components: - rot: -1.5707963267948966 rad pos: -5.5,-67.5 parent: 2 type: Transform - - uid: 27748 + - uid: 27790 components: - pos: 1.5,-64.5 parent: 2 type: Transform - - uid: 27749 + - uid: 27791 components: - pos: 1.5,-63.5 parent: 2 type: Transform - - uid: 27750 + - uid: 27792 components: - pos: -17.5,-63.5 parent: 2 type: Transform - - uid: 27751 + - uid: 27793 components: - pos: 4.5,-51.5 parent: 2 type: Transform - - uid: 27752 + - uid: 27794 components: - pos: -12.5,-72.5 parent: 2 type: Transform - - uid: 27753 + - uid: 27795 components: - pos: -14.5,-70.5 parent: 2 type: Transform - - uid: 27754 + - uid: 27796 components: - pos: 5.5,-4.5 parent: 2 type: Transform - - uid: 27755 + - uid: 27797 components: - pos: -3.5,-74.5 parent: 2 type: Transform - - uid: 27756 + - uid: 27798 components: - pos: 9.5,-68.5 parent: 2 type: Transform - - uid: 27757 + - uid: 27799 components: - rot: 3.141592653589793 rad pos: -1.5,9.5 parent: 2 type: Transform - - uid: 27758 + - uid: 27800 components: - rot: 1.5707963267948966 rad pos: -6.5,-21.5 parent: 2 type: Transform - - uid: 27759 + - uid: 27801 components: - rot: -1.5707963267948966 rad pos: 12.5,-44.5 parent: 2 type: Transform - - uid: 27760 + - uid: 27802 components: - rot: 1.5707963267948966 rad pos: 34.5,-44.5 parent: 2 type: Transform - - uid: 27761 + - uid: 27803 components: - pos: 1.5,-67.5 parent: 2 type: Transform - - uid: 27762 + - uid: 27804 components: - pos: 5.5,-63.5 parent: 2 type: Transform - - uid: 27763 + - uid: 27805 components: - pos: 13.5,-59.5 parent: 2 type: Transform - - uid: 27764 + - uid: 27806 components: - rot: 1.5707963267948966 rad pos: 18.5,-23.5 parent: 2 type: Transform - - uid: 27765 + - uid: 27807 components: - pos: -21.5,-64.5 parent: 2 type: Transform - - uid: 27766 + - uid: 27808 components: - pos: -21.5,-66.5 parent: 2 type: Transform - - uid: 27767 + - uid: 27809 components: - pos: -21.5,-67.5 parent: 2 type: Transform - - uid: 27768 + - uid: 27810 components: - pos: -21.5,-68.5 parent: 2 type: Transform - - uid: 27769 + - uid: 27811 components: - pos: -22.5,-68.5 parent: 2 type: Transform - - uid: 27770 + - uid: 27812 components: - pos: -25.5,-68.5 parent: 2 type: Transform - - uid: 27771 + - uid: 27813 components: - pos: -26.5,-69.5 parent: 2 type: Transform - - uid: 27772 + - uid: 27814 components: - pos: -23.5,-74.5 parent: 2 type: Transform - - uid: 27773 + - uid: 27815 components: - pos: -22.5,-74.5 parent: 2 type: Transform - - uid: 27774 + - uid: 27816 components: - pos: -16.5,-71.5 parent: 2 type: Transform - - uid: 27775 + - uid: 27817 components: - pos: -21.5,-75.5 parent: 2 type: Transform - - uid: 27776 + - uid: 27818 components: - pos: -10.5,-74.5 parent: 2 type: Transform - - uid: 27777 + - uid: 27819 components: - pos: -8.5,-73.5 parent: 2 type: Transform - - uid: 27778 + - uid: 27820 components: - pos: 3.5,-69.5 parent: 2 type: Transform - - uid: 27779 + - uid: 27821 components: - pos: 7.5,-68.5 parent: 2 type: Transform - - uid: 27780 + - uid: 27822 components: - pos: 7.5,-66.5 parent: 2 type: Transform - - uid: 27781 + - uid: 27823 components: - pos: 9.5,-66.5 parent: 2 type: Transform - - uid: 27782 + - uid: 27824 components: - pos: -19.5,-74.5 parent: 2 type: Transform - - uid: 27783 + - uid: 27825 components: - rot: 3.141592653589793 rad pos: 14.5,-15.5 parent: 2 type: Transform - - uid: 27784 + - uid: 27826 components: - pos: 9.5,-13.5 parent: 2 type: Transform - - uid: 27785 + - uid: 27827 components: - rot: -1.5707963267948966 rad pos: -16.5,-44.5 parent: 2 type: Transform - - uid: 27786 + - uid: 27828 components: - rot: 1.5707963267948966 rad pos: 31.5,-23.5 parent: 2 type: Transform - - uid: 27787 + - uid: 27829 components: - rot: -1.5707963267948966 rad pos: 31.5,3.5 parent: 2 type: Transform - - uid: 27788 + - uid: 27830 components: - pos: 7.5,6.5 parent: 2 type: Transform - - uid: 27789 + - uid: 27831 components: - rot: 3.141592653589793 rad pos: 62.5,14.5 parent: 2 type: Transform - - uid: 27790 + - uid: 27832 components: - rot: 3.141592653589793 rad pos: -1.5,8.5 parent: 2 type: Transform - - uid: 27791 + - uid: 27833 components: - pos: 6.5,-68.5 parent: 2 type: Transform - - uid: 27792 + - uid: 27834 components: - pos: 15.5,4.5 parent: 2 type: Transform - - uid: 27793 + - uid: 27835 components: - rot: 3.141592653589793 rad pos: 61.5,17.5 parent: 2 type: Transform - - uid: 27794 + - uid: 27836 components: - pos: -8.5,-34.5 parent: 2 type: Transform - - uid: 27795 + - uid: 27837 components: - rot: -1.5707963267948966 rad pos: 13.5,-4.5 parent: 2 type: Transform - - uid: 27796 + - uid: 27838 components: - rot: 1.5707963267948966 rad pos: 4.5,-13.5 parent: 2 type: Transform - - uid: 27797 + - uid: 27839 components: - rot: -1.5707963267948966 rad pos: -13.5,36.5 parent: 2 type: Transform - - uid: 27798 + - uid: 27840 components: - pos: 5.5,-6.5 parent: 2 type: Transform - - uid: 27799 + - uid: 27841 components: - pos: 7.5,-62.5 parent: 2 type: Transform - - uid: 27800 + - uid: 27842 components: - pos: 13.5,-54.5 parent: 2 type: Transform - - uid: 27801 + - uid: 27843 components: - pos: -17.5,-64.5 parent: 2 type: Transform - - uid: 27802 + - uid: 27844 components: - pos: 7.5,-55.5 parent: 2 type: Transform - - uid: 27803 + - uid: 27845 components: - pos: -10.5,-2.5 parent: 2 type: Transform - - uid: 27804 + - uid: 27846 components: - rot: 3.141592653589793 rad pos: 22.5,15.5 parent: 2 type: Transform - - uid: 27805 + - uid: 27847 components: - rot: 3.141592653589793 rad pos: 21.5,15.5 parent: 2 type: Transform - - uid: 27806 + - uid: 27848 components: - rot: -1.5707963267948966 rad pos: 13.5,-3.5 parent: 2 type: Transform - - uid: 27807 + - uid: 27849 components: - rot: 1.5707963267948966 rad pos: 5.5,-13.5 parent: 2 type: Transform - - uid: 27808 + - uid: 27850 components: - rot: 1.5707963267948966 rad pos: 0.5,-13.5 parent: 2 type: Transform - - uid: 27809 + - uid: 27851 components: - rot: 1.5707963267948966 rad pos: 66.5,-4.5 parent: 2 type: Transform - - uid: 27810 + - uid: 27852 components: - pos: 37.5,-39.5 parent: 2 type: Transform - - uid: 27811 + - uid: 27853 components: - pos: -6.5,-5.5 parent: 2 type: Transform - - uid: 27812 + - uid: 27854 components: - rot: 3.141592653589793 rad pos: 6.5,-16.5 parent: 2 type: Transform - - uid: 27813 + - uid: 27855 components: - pos: 43.5,-57.5 parent: 2 type: Transform - - uid: 27814 + - uid: 27856 components: - pos: 37.5,-27.5 parent: 2 type: Transform - - uid: 27815 + - uid: 27857 components: - pos: 13.5,-50.5 parent: 2 type: Transform - - uid: 27816 + - uid: 27858 components: - pos: -17.5,-28.5 parent: 2 type: Transform - - uid: 27817 + - uid: 27859 components: - rot: -1.5707963267948966 rad pos: -3.5,-78.5 parent: 2 type: Transform - - uid: 27818 + - uid: 27860 components: - rot: -1.5707963267948966 rad pos: -2.5,-83.5 parent: 2 type: Transform - - uid: 27819 + - uid: 27861 components: - rot: -1.5707963267948966 rad pos: -5.5,-76.5 parent: 2 type: Transform - - uid: 27820 + - uid: 27862 components: - pos: -9.5,-7.5 parent: 2 type: Transform - - uid: 27821 + - uid: 27863 components: - rot: -1.5707963267948966 rad pos: 29.5,-1.5 parent: 2 type: Transform - - uid: 27822 + - uid: 27864 components: - pos: -6.5,-16.5 parent: 2 type: Transform - - uid: 27823 + - uid: 27865 components: - pos: -2.5,-10.5 parent: 2 type: Transform - - uid: 27824 + - uid: 27866 components: - pos: 13.5,-48.5 parent: 2 type: Transform - - uid: 27825 + - uid: 27867 components: - pos: -2.5,-18.5 parent: 2 type: Transform - - uid: 27826 + - uid: 27868 components: - pos: -2.5,-17.5 parent: 2 type: Transform - - uid: 27827 + - uid: 27869 components: - pos: -0.5,-15.5 parent: 2 type: Transform - - uid: 27828 + - uid: 27870 components: - pos: -2.5,-14.5 parent: 2 type: Transform - - uid: 27829 + - uid: 27871 components: - pos: -2.5,-13.5 parent: 2 type: Transform - - uid: 27830 + - uid: 27872 components: - pos: -2.5,-19.5 parent: 2 type: Transform - - uid: 27831 + - uid: 27873 components: - rot: 1.5707963267948966 rad pos: 4.5,-8.5 parent: 2 type: Transform - - uid: 27832 + - uid: 27874 components: - rot: 1.5707963267948966 rad pos: 7.5,-10.5 parent: 2 type: Transform - - uid: 27833 + - uid: 27875 components: - rot: 3.141592653589793 rad pos: -10.5,-49.5 parent: 2 type: Transform - - uid: 27834 + - uid: 27876 components: - rot: 3.141592653589793 rad pos: -11.5,-44.5 parent: 2 type: Transform - - uid: 27835 + - uid: 27877 components: - rot: 3.141592653589793 rad pos: -10.5,-50.5 parent: 2 type: Transform - - uid: 27836 + - uid: 27878 components: - rot: 3.141592653589793 rad pos: 23.5,15.5 parent: 2 type: Transform - - uid: 27837 + - uid: 27879 components: - rot: 3.141592653589793 rad pos: 19.5,10.5 parent: 2 type: Transform - - uid: 27838 + - uid: 27880 components: - pos: 16.5,-13.5 parent: 2 type: Transform - - uid: 27839 + - uid: 27881 components: - pos: 7.5,-12.5 parent: 2 type: Transform - - uid: 27840 + - uid: 27882 components: - pos: -7.5,14.5 parent: 2 type: Transform - - uid: 27841 + - uid: 27883 components: - pos: -8.5,12.5 parent: 2 type: Transform - - uid: 27842 + - uid: 27884 components: - pos: -32.5,-69.5 parent: 2 type: Transform - - uid: 27843 + - uid: 27885 components: - pos: -32.5,-72.5 parent: 2 type: Transform - - uid: 27844 + - uid: 27886 components: - pos: 18.5,-44.5 parent: 2 type: Transform - - uid: 27845 + - uid: 27887 components: - pos: 42.5,-52.5 parent: 2 type: Transform - - uid: 27846 + - uid: 27888 components: - rot: -1.5707963267948966 rad pos: -9.5,57.5 parent: 2 type: Transform - - uid: 27847 + - uid: 27889 components: - pos: 38.5,-27.5 parent: 2 type: Transform - - uid: 27848 + - uid: 27890 components: - pos: 37.5,-28.5 parent: 2 type: Transform - - uid: 27849 + - uid: 27891 components: - pos: 0.5,-72.5 parent: 2 type: Transform - - uid: 27850 + - uid: 27892 components: - pos: -9.5,-17.5 parent: 2 type: Transform - - uid: 27851 + - uid: 27893 components: - rot: 3.141592653589793 rad pos: 16.5,-51.5 parent: 2 type: Transform - - uid: 27852 + - uid: 27894 components: - pos: -9.5,-18.5 parent: 2 type: Transform - - uid: 27853 + - uid: 27895 components: - rot: -1.5707963267948966 rad pos: -10.5,-76.5 parent: 2 type: Transform - - uid: 27854 + - uid: 27896 components: - rot: -1.5707963267948966 rad pos: 19.5,19.5 parent: 2 type: Transform - - uid: 27855 + - uid: 27897 components: - pos: 42.5,-56.5 parent: 2 type: Transform - - uid: 27856 + - uid: 27898 components: - pos: -17.5,-38.5 parent: 2 type: Transform - - uid: 27857 + - uid: 27899 components: - rot: -1.5707963267948966 rad pos: 20.5,19.5 parent: 2 type: Transform - - uid: 27858 + - uid: 27900 components: - pos: 1.5,-75.5 parent: 2 type: Transform - - uid: 27859 + - uid: 27901 components: - pos: 1.5,-73.5 parent: 2 type: Transform - - uid: 27860 + - uid: 27902 components: - pos: 7.5,-28.5 parent: 2 type: Transform - - uid: 27861 + - uid: 27903 components: - pos: -11.5,9.5 parent: 2 type: Transform - - uid: 27862 + - uid: 27904 components: - pos: -30.5,-76.5 parent: 2 type: Transform - - uid: 27863 + - uid: 27905 components: - rot: -1.5707963267948966 rad pos: -13.5,-20.5 parent: 2 type: Transform - - uid: 27864 + - uid: 27906 components: - pos: 11.5,-65.5 parent: 2 type: Transform - - uid: 27865 + - uid: 27907 components: - pos: 13.5,-63.5 parent: 2 type: Transform - - uid: 27866 + - uid: 27908 components: - pos: 15.5,-56.5 parent: 2 type: Transform - - uid: 27867 + - uid: 27909 components: - pos: 8.5,-63.5 parent: 2 type: Transform - - uid: 27868 + - uid: 27910 components: - pos: 11.5,-62.5 parent: 2 type: Transform - - uid: 27869 + - uid: 27911 components: - pos: 8.5,-57.5 parent: 2 type: Transform - - uid: 27870 + - uid: 27912 components: - pos: 11.5,-60.5 parent: 2 type: Transform - - uid: 27871 + - uid: 27913 components: - pos: 11.5,-59.5 parent: 2 type: Transform - - uid: 27872 + - uid: 27914 components: - pos: 11.5,-58.5 parent: 2 type: Transform - - uid: 27873 + - uid: 27915 components: - pos: 11.5,-57.5 parent: 2 type: Transform - - uid: 27874 + - uid: 27916 components: - pos: 10.5,-57.5 parent: 2 type: Transform - - uid: 27875 + - uid: 27917 components: - pos: 9.5,-57.5 parent: 2 type: Transform - - uid: 27876 + - uid: 27918 components: - rot: -1.5707963267948966 rad pos: -7.5,-69.5 parent: 2 type: Transform - - uid: 27877 + - uid: 27919 components: - rot: -1.5707963267948966 rad pos: -9.5,-70.5 parent: 2 type: Transform - - uid: 27878 + - uid: 27920 components: - rot: -1.5707963267948966 rad pos: -12.5,-68.5 parent: 2 type: Transform - - uid: 27879 + - uid: 27921 components: - rot: -1.5707963267948966 rad pos: -13.5,-68.5 parent: 2 type: Transform - - uid: 27880 + - uid: 27922 components: - rot: -1.5707963267948966 rad pos: -16.5,-68.5 parent: 2 type: Transform - - uid: 27881 + - uid: 27923 components: - rot: -1.5707963267948966 rad pos: -17.5,-67.5 parent: 2 type: Transform - - uid: 27882 + - uid: 27924 components: - rot: -1.5707963267948966 rad pos: -10.5,-67.5 parent: 2 type: Transform - - uid: 27883 + - uid: 27925 components: - rot: -1.5707963267948966 rad pos: -9.5,-67.5 parent: 2 type: Transform - - uid: 27884 + - uid: 27926 components: - rot: -1.5707963267948966 rad pos: -6.5,-67.5 parent: 2 type: Transform - - uid: 27885 + - uid: 27927 components: - pos: 1.5,-62.5 parent: 2 type: Transform - - uid: 27886 + - uid: 27928 components: - pos: 1.5,-65.5 parent: 2 type: Transform - - uid: 27887 + - uid: 27929 components: - pos: -1.5,-62.5 parent: 2 type: Transform - - uid: 27888 + - uid: 27930 components: - pos: -17.5,-65.5 parent: 2 type: Transform - - uid: 27889 + - uid: 27931 components: - pos: -7.5,-62.5 parent: 2 type: Transform - - uid: 27890 + - uid: 27932 components: - pos: 12.5,-50.5 parent: 2 type: Transform - - uid: 27891 + - uid: 27933 components: - rot: 1.5707963267948966 rad pos: -13.5,-55.5 parent: 2 type: Transform - - uid: 27892 + - uid: 27934 components: - rot: 1.5707963267948966 rad pos: 30.5,-44.5 parent: 2 type: Transform - - uid: 27893 + - uid: 27935 components: - pos: -23.5,-7.5 parent: 2 type: Transform - - uid: 27894 + - uid: 27936 components: - pos: -21.5,-7.5 parent: 2 type: Transform - - uid: 27895 + - uid: 27937 components: - pos: -26.5,-7.5 parent: 2 type: Transform - - uid: 27896 + - uid: 27938 components: - pos: -16.5,-7.5 parent: 2 type: Transform - - uid: 27897 + - uid: 27939 components: - pos: -14.5,-7.5 parent: 2 type: Transform - - uid: 27898 + - uid: 27940 components: - pos: -12.5,-7.5 parent: 2 type: Transform - - uid: 27899 + - uid: 27941 components: - pos: -11.5,-5.5 parent: 2 type: Transform - - uid: 27900 + - uid: 27942 components: - pos: -11.5,-7.5 parent: 2 type: Transform - - uid: 27901 + - uid: 27943 components: - rot: 3.141592653589793 rad pos: -15.5,9.5 parent: 2 type: Transform - - uid: 27902 + - uid: 27944 components: - rot: 3.141592653589793 rad pos: -17.5,9.5 parent: 2 type: Transform - - uid: 27903 + - uid: 27945 components: - rot: 3.141592653589793 rad pos: 23.5,-14.5 parent: 2 type: Transform - - uid: 27904 + - uid: 27946 components: - rot: 3.141592653589793 rad pos: 23.5,-13.5 parent: 2 type: Transform - - uid: 27905 + - uid: 27947 components: - rot: 3.141592653589793 rad pos: 17.5,-15.5 parent: 2 type: Transform - - uid: 27906 + - uid: 27948 components: - rot: 3.141592653589793 rad pos: 16.5,-15.5 parent: 2 type: Transform - - uid: 27907 + - uid: 27949 components: - rot: 3.141592653589793 rad pos: 22.5,-7.5 parent: 2 type: Transform - - uid: 27908 + - uid: 27950 components: - rot: 3.141592653589793 rad pos: 23.5,-9.5 parent: 2 type: Transform - - uid: 27909 + - uid: 27951 components: - rot: -1.5707963267948966 rad pos: 19.5,22.5 parent: 2 type: Transform - - uid: 27910 + - uid: 27952 components: - pos: 37.5,-31.5 parent: 2 type: Transform - - uid: 27911 + - uid: 27953 components: - pos: 28.5,-3.5 parent: 2 type: Transform - - uid: 27912 + - uid: 27954 components: - pos: -7.5,-34.5 parent: 2 type: Transform - - uid: 27913 + - uid: 27955 components: - pos: -20.5,-74.5 parent: 2 type: Transform - - uid: 27914 + - uid: 27956 components: - rot: -1.5707963267948966 rad pos: -17.5,-51.5 parent: 2 type: Transform - - uid: 27915 + - uid: 27957 components: - pos: 41.5,-52.5 parent: 2 type: Transform - - uid: 27916 + - uid: 27958 components: - pos: 13.5,-52.5 parent: 2 type: Transform - - uid: 27917 + - uid: 27959 components: - rot: -1.5707963267948966 rad pos: 37.5,-37.5 parent: 2 type: Transform - - uid: 27918 + - uid: 27960 components: - pos: 17.5,-28.5 parent: 2 type: Transform - - uid: 27919 + - uid: 27961 components: - pos: -12.5,-70.5 parent: 2 type: Transform - - uid: 27920 + - uid: 27962 components: - pos: -26.5,-70.5 parent: 2 type: Transform - - uid: 27921 + - uid: 27963 components: - pos: -24.5,-68.5 parent: 2 type: Transform - - uid: 27922 + - uid: 27964 components: - pos: 7.5,-44.5 parent: 2 type: Transform - - uid: 27923 + - uid: 27965 components: - rot: 1.5707963267948966 rad pos: 0.5,-12.5 parent: 2 type: Transform - - uid: 27924 + - uid: 27966 components: - rot: 1.5707963267948966 rad pos: 0.5,-10.5 parent: 2 type: Transform - - uid: 27925 + - uid: 27967 components: - rot: 1.5707963267948966 rad pos: 0.5,-9.5 parent: 2 type: Transform - - uid: 27926 + - uid: 27968 components: - pos: -8.5,14.5 parent: 2 type: Transform - - uid: 27927 + - uid: 27969 components: - rot: -1.5707963267948966 rad pos: 37.5,-34.5 parent: 2 type: Transform - - uid: 27928 + - uid: 27970 components: - pos: -6.5,-14.5 parent: 2 type: Transform - - uid: 27929 + - uid: 27971 components: - pos: -6.5,-28.5 parent: 2 type: Transform - - uid: 27930 + - uid: 27972 components: - pos: -22.5,-19.5 parent: 2 type: Transform - - uid: 27931 + - uid: 27973 components: - pos: -21.5,-19.5 parent: 2 type: Transform - - uid: 27932 + - uid: 27974 components: - pos: 37.5,-57.5 parent: 2 type: Transform - - uid: 27933 + - uid: 27975 components: - rot: -1.5707963267948966 rad pos: 8.5,-45.5 parent: 2 type: Transform - - uid: 27934 + - uid: 27976 components: - rot: 1.5707963267948966 rad pos: 5.5,-11.5 parent: 2 type: Transform - - uid: 27935 + - uid: 27977 components: - pos: -1.5,5.5 parent: 2 type: Transform - - uid: 27936 + - uid: 27978 components: - rot: 1.5707963267948966 rad pos: -15.5,-28.5 parent: 2 type: Transform - - uid: 27937 + - uid: 27979 components: - rot: -1.5707963267948966 rad pos: 9.5,-3.5 parent: 2 type: Transform - - uid: 27938 + - uid: 27980 components: - pos: 5.5,-5.5 parent: 2 type: Transform - - uid: 27939 + - uid: 27981 components: - rot: 1.5707963267948966 rad pos: -12.5,-20.5 parent: 2 type: Transform - - uid: 27940 + - uid: 27982 components: - rot: -1.5707963267948966 rad pos: 8.5,-47.5 parent: 2 type: Transform - - uid: 27941 + - uid: 27983 components: - pos: -3.5,-72.5 parent: 2 type: Transform - - uid: 27942 + - uid: 27984 components: - pos: -0.5,-72.5 parent: 2 type: Transform - - uid: 27943 + - uid: 27985 components: - pos: -13.5,-28.5 parent: 2 type: Transform - - uid: 27944 + - uid: 27986 components: - pos: -11.5,-6.5 parent: 2 type: Transform - - uid: 27945 + - uid: 27987 components: - rot: -1.5707963267948966 rad pos: -13.5,35.5 parent: 2 type: Transform - - uid: 27946 + - uid: 27988 components: - pos: 7.5,-13.5 parent: 2 type: Transform - - uid: 27947 + - uid: 27989 components: - rot: -1.5707963267948966 rad pos: 19.5,21.5 parent: 2 type: Transform - - uid: 27948 + - uid: 27990 components: - pos: 11.5,-48.5 parent: 2 type: Transform - - uid: 27949 + - uid: 27991 components: - rot: 3.141592653589793 rad pos: -2.5,9.5 parent: 2 type: Transform - - uid: 27950 + - uid: 27992 components: - pos: 10.5,-48.5 parent: 2 type: Transform - - uid: 27951 + - uid: 27993 components: - pos: 7.5,-56.5 parent: 2 type: Transform - - uid: 27952 + - uid: 27994 components: - pos: 7.5,-57.5 parent: 2 type: Transform - - uid: 27953 + - uid: 27995 components: - rot: -1.5707963267948966 rad pos: 13.5,-7.5 parent: 2 type: Transform - - uid: 27954 + - uid: 27996 components: - rot: -1.5707963267948966 rad pos: -9.5,14.5 parent: 2 type: Transform - - uid: 27955 + - uid: 27997 components: - pos: -6.5,-3.5 parent: 2 type: Transform - - uid: 27956 + - uid: 27998 components: - pos: -7.5,-3.5 parent: 2 type: Transform - - uid: 27957 + - uid: 27999 components: - pos: -8.5,-3.5 parent: 2 type: Transform - - uid: 27958 + - uid: 28000 components: - pos: -6.5,-2.5 parent: 2 type: Transform - - uid: 27959 + - uid: 28001 components: - rot: 3.141592653589793 rad pos: 2.5,-51.5 parent: 2 type: Transform - - uid: 27960 + - uid: 28002 components: - pos: 13.5,-2.5 parent: 2 type: Transform - - uid: 27961 + - uid: 28003 components: - pos: 12.5,-47.5 parent: 2 type: Transform - - uid: 27962 + - uid: 28004 components: - rot: 3.141592653589793 rad pos: 60.5,14.5 parent: 2 type: Transform - - uid: 27963 + - uid: 28005 components: - rot: 1.5707963267948966 rad pos: 1.5,-13.5 parent: 2 type: Transform - - uid: 27964 + - uid: 28006 components: - pos: -2.5,-7.5 parent: 2 type: Transform - - uid: 27965 + - uid: 28007 components: - pos: 5.5,-2.5 parent: 2 type: Transform - - uid: 27966 + - uid: 28008 components: - rot: 3.141592653589793 rad pos: 62.5,17.5 parent: 2 type: Transform - - uid: 27967 + - uid: 28009 components: - rot: 1.5707963267948966 rad pos: 5.5,-12.5 parent: 2 type: Transform - - uid: 27968 + - uid: 28010 components: - pos: 15.5,-3.5 parent: 2 type: Transform - - uid: 27969 + - uid: 28011 components: - pos: 12.5,-2.5 parent: 2 type: Transform - - uid: 27970 + - uid: 28012 components: - pos: -11.5,1.5 parent: 2 type: Transform - - uid: 27971 + - uid: 28013 components: - pos: 2.5,-28.5 parent: 2 type: Transform - - uid: 27972 + - uid: 28014 components: - pos: 11.5,-15.5 parent: 2 type: Transform - - uid: 27973 + - uid: 28015 components: - pos: 42.5,-57.5 parent: 2 type: Transform - - uid: 27974 + - uid: 28016 components: - rot: 1.5707963267948966 rad pos: -4.5,-62.5 parent: 2 type: Transform - - uid: 27975 + - uid: 28017 components: - rot: 3.141592653589793 rad pos: -12.5,-51.5 parent: 2 type: Transform - - uid: 27976 + - uid: 28018 components: - pos: 40.5,-27.5 parent: 2 type: Transform - - uid: 27977 + - uid: 28019 components: - pos: 13.5,-28.5 parent: 2 type: Transform - - uid: 27978 + - uid: 28020 components: - pos: 18.5,-31.5 parent: 2 type: Transform - - uid: 27979 + - uid: 28021 components: - pos: -21.5,-81.5 parent: 2 type: Transform - - uid: 27980 + - uid: 28022 components: - pos: -4.5,13.5 parent: 2 type: Transform - - uid: 27981 + - uid: 28023 components: - rot: 3.141592653589793 rad pos: 23.5,10.5 parent: 2 type: Transform - - uid: 27982 + - uid: 28024 components: - rot: 3.141592653589793 rad pos: 22.5,9.5 parent: 2 type: Transform - - uid: 27983 + - uid: 28025 components: - rot: 3.141592653589793 rad pos: 60.5,17.5 parent: 2 type: Transform - - uid: 27984 + - uid: 28026 components: - pos: -6.5,-6.5 parent: 2 type: Transform - - uid: 27985 + - uid: 28027 components: - pos: 15.5,-6.5 parent: 2 type: Transform - - uid: 27986 + - uid: 28028 components: - pos: 15.5,-2.5 parent: 2 type: Transform - - uid: 27987 + - uid: 28029 components: - rot: 1.5707963267948966 rad pos: 27.5,-53.5 parent: 2 type: Transform - - uid: 27988 + - uid: 28030 components: - pos: 27.5,-56.5 parent: 2 type: Transform - - uid: 27989 + - uid: 28031 components: - pos: 27.5,-50.5 parent: 2 type: Transform - - uid: 27990 + - uid: 28032 components: - pos: 23.5,-50.5 parent: 2 type: Transform - - uid: 27991 + - uid: 28033 components: - pos: 23.5,-54.5 parent: 2 type: Transform - - uid: 27992 + - uid: 28034 components: - pos: 23.5,-52.5 parent: 2 type: Transform - - uid: 27993 + - uid: 28035 components: - pos: 23.5,-51.5 parent: 2 type: Transform - - uid: 27994 + - uid: 28036 components: - pos: 23.5,-49.5 parent: 2 type: Transform - - uid: 27995 + - uid: 28037 components: - rot: 3.141592653589793 rad pos: 22.5,-51.5 parent: 2 type: Transform - - uid: 27996 + - uid: 28038 components: - pos: -17.5,-31.5 parent: 2 type: Transform - - uid: 27997 + - uid: 28039 components: - rot: -1.5707963267948966 rad pos: 8.5,-3.5 parent: 2 type: Transform - - uid: 27998 + - uid: 28040 components: - pos: 19.5,-2.5 parent: 2 type: Transform - - uid: 27999 + - uid: 28041 components: - pos: 24.5,5.5 parent: 2 type: Transform - - uid: 28000 + - uid: 28042 components: - pos: 16.5,-7.5 parent: 2 type: Transform - - uid: 28001 + - uid: 28043 components: - pos: -9.5,-16.5 parent: 2 type: Transform - - uid: 28002 + - uid: 28044 components: - pos: 2.5,10.5 parent: 2 type: Transform - - uid: 28003 + - uid: 28045 components: - pos: 14.5,-44.5 parent: 2 type: Transform - - uid: 28004 + - uid: 28046 components: - rot: 3.141592653589793 rad pos: 33.5,-7.5 parent: 2 type: Transform - - uid: 28005 + - uid: 28047 components: - rot: 3.141592653589793 rad pos: 35.5,-7.5 parent: 2 type: Transform - - uid: 28006 + - uid: 28048 components: - rot: 3.141592653589793 rad pos: 31.5,-7.5 parent: 2 type: Transform - - uid: 28007 + - uid: 28049 components: - rot: 3.141592653589793 rad pos: 20.5,-7.5 parent: 2 type: Transform - - uid: 28008 + - uid: 28050 components: - rot: 3.141592653589793 rad pos: 22.5,-15.5 parent: 2 type: Transform - - uid: 28009 + - uid: 28051 components: - rot: 3.141592653589793 rad pos: 37.5,-16.5 parent: 2 type: Transform - - uid: 28010 + - uid: 28052 components: - rot: 3.141592653589793 rad pos: 37.5,-15.5 parent: 2 type: Transform - - uid: 28011 + - uid: 28053 components: - rot: 3.141592653589793 rad pos: 36.5,-15.5 parent: 2 type: Transform - - uid: 28012 + - uid: 28054 components: - pos: 59.5,0.5 parent: 2 type: Transform - - uid: 28013 + - uid: 28055 components: - rot: 3.141592653589793 rad pos: -12.5,9.5 parent: 2 type: Transform - - uid: 28014 + - uid: 28056 components: - pos: -27.5,10.5 parent: 2 type: Transform - - uid: 28015 + - uid: 28057 components: - pos: -21.5,9.5 parent: 2 type: Transform - - uid: 28016 + - uid: 28058 components: - pos: -14.5,-32.5 parent: 2 type: Transform - - uid: 28017 + - uid: 28059 components: - pos: -21.5,14.5 parent: 2 type: Transform - - uid: 28018 + - uid: 28060 components: - rot: 3.141592653589793 rad pos: -16.5,9.5 parent: 2 type: Transform - - uid: 28019 + - uid: 28061 components: - rot: 3.141592653589793 rad pos: -14.5,9.5 parent: 2 type: Transform - - uid: 28020 + - uid: 28062 components: - pos: -10.5,-7.5 parent: 2 type: Transform - - uid: 28021 + - uid: 28063 components: - pos: -11.5,-4.5 parent: 2 type: Transform - - uid: 28022 + - uid: 28064 components: - pos: -15.5,-7.5 parent: 2 type: Transform - - uid: 28023 + - uid: 28065 components: - pos: -17.5,-7.5 parent: 2 type: Transform - - uid: 28024 + - uid: 28066 components: - pos: -21.5,-8.5 parent: 2 type: Transform - - uid: 28025 + - uid: 28067 components: - pos: -22.5,-7.5 parent: 2 type: Transform - - uid: 28026 + - uid: 28068 components: - pos: -24.5,-7.5 parent: 2 type: Transform - - uid: 28027 + - uid: 28069 components: - pos: -17.5,-8.5 parent: 2 type: Transform - - uid: 28028 + - uid: 28070 components: - rot: -1.5707963267948966 rad pos: -23.5,-18.5 parent: 2 type: Transform - - uid: 28029 + - uid: 28071 components: - rot: 3.141592653589793 rad pos: 23.5,-15.5 parent: 2 type: Transform - - uid: 28030 + - uid: 28072 components: - rot: 3.141592653589793 rad pos: 23.5,-10.5 parent: 2 type: Transform - - uid: 28031 + - uid: 28073 components: - pos: 19.5,-3.5 parent: 2 type: Transform - - uid: 28032 + - uid: 28074 components: - rot: -1.5707963267948966 rad pos: 13.5,-9.5 parent: 2 type: Transform - - uid: 28033 + - uid: 28075 components: - pos: 1.5,10.5 parent: 2 type: Transform - - uid: 28034 + - uid: 28076 components: - pos: -11.5,-2.5 parent: 2 type: Transform - - uid: 28035 + - uid: 28077 components: - pos: -6.5,-7.5 parent: 2 type: Transform - - uid: 28036 + - uid: 28078 components: - pos: -8.5,-2.5 parent: 2 type: Transform - - uid: 28037 + - uid: 28079 components: - pos: -17.5,-9.5 parent: 2 type: Transform - - uid: 28038 + - uid: 28080 components: - pos: -17.5,-10.5 parent: 2 type: Transform - - uid: 28039 + - uid: 28081 components: - pos: -6.5,-17.5 parent: 2 type: Transform - - uid: 28040 + - uid: 28082 components: - rot: 1.5707963267948966 rad pos: -6.5,-20.5 parent: 2 type: Transform - - uid: 28041 + - uid: 28083 components: - pos: 35.5,-6.5 parent: 2 type: Transform - - uid: 28042 + - uid: 28084 components: - pos: 45.5,-0.5 parent: 2 type: Transform - - uid: 28043 + - uid: 28085 components: - pos: -2.5,-15.5 parent: 2 type: Transform - - uid: 28044 + - uid: 28086 components: - pos: -1.5,-15.5 parent: 2 type: Transform - - uid: 28045 + - uid: 28087 components: - pos: -6.5,-4.5 parent: 2 type: Transform - - uid: 28046 + - uid: 28088 components: - pos: -2.5,-2.5 parent: 2 type: Transform - - uid: 28047 + - uid: 28089 components: - rot: 1.5707963267948966 rad pos: -6.5,-23.5 parent: 2 type: Transform - - uid: 28048 + - uid: 28090 components: - rot: 1.5707963267948966 rad pos: -6.5,-24.5 parent: 2 type: Transform - - uid: 28049 + - uid: 28091 components: - rot: 1.5707963267948966 rad pos: -10.5,-24.5 parent: 2 type: Transform - - uid: 28050 + - uid: 28092 components: - rot: 3.141592653589793 rad pos: 1.5,-44.5 parent: 2 type: Transform - - uid: 28051 + - uid: 28093 components: - rot: 3.141592653589793 rad pos: -10.5,-45.5 parent: 2 type: Transform - - uid: 28052 + - uid: 28094 components: - rot: 1.5707963267948966 rad pos: 29.5,-44.5 parent: 2 type: Transform - - uid: 28053 + - uid: 28095 components: - pos: -26.5,-8.5 parent: 2 type: Transform - - uid: 28054 + - uid: 28096 components: - rot: -1.5707963267948966 rad pos: 8.5,-44.5 parent: 2 type: Transform - - uid: 28055 + - uid: 28097 components: - pos: -8.5,-28.5 parent: 2 type: Transform - - uid: 28056 + - uid: 28098 components: - rot: 3.141592653589793 rad pos: 18.5,8.5 parent: 2 type: Transform - - uid: 28057 + - uid: 28099 components: - pos: 16.5,-44.5 parent: 2 type: Transform - - uid: 28058 + - uid: 28100 components: - pos: 16.5,-46.5 parent: 2 type: Transform - - uid: 28059 + - uid: 28101 components: - pos: 12.5,-28.5 parent: 2 type: Transform - - uid: 28060 + - uid: 28102 components: - pos: 11.5,-28.5 parent: 2 type: Transform - - uid: 28061 + - uid: 28103 components: - pos: -1.5,-10.5 parent: 2 type: Transform - - uid: 28062 + - uid: 28104 components: - pos: 6.5,-28.5 parent: 2 type: Transform - - uid: 28063 + - uid: 28105 components: - pos: 12.5,-46.5 parent: 2 type: Transform - - uid: 28064 + - uid: 28106 components: - pos: 12.5,-45.5 parent: 2 type: Transform - - uid: 28065 + - uid: 28107 components: - pos: -9.5,-28.5 parent: 2 type: Transform - - uid: 28066 + - uid: 28108 components: - rot: 1.5707963267948966 rad pos: 5.5,-8.5 parent: 2 type: Transform - - uid: 28067 + - uid: 28109 components: - rot: 1.5707963267948966 rad pos: 5.5,-9.5 parent: 2 type: Transform - - uid: 28068 + - uid: 28110 components: - pos: 9.5,-48.5 parent: 2 type: Transform - - uid: 28069 + - uid: 28111 components: - pos: 2.5,-44.5 parent: 2 type: Transform - - uid: 28070 + - uid: 28112 components: - pos: 8.5,-48.5 parent: 2 type: Transform - - uid: 28071 + - uid: 28113 components: - rot: 1.5707963267948966 rad pos: -13.5,-24.5 parent: 2 type: Transform - - uid: 28072 + - uid: 28114 components: - pos: -10.5,-34.5 parent: 2 type: Transform - - uid: 28073 + - uid: 28115 components: - pos: 35.5,-44.5 parent: 2 type: Transform - - uid: 28074 + - uid: 28116 components: - pos: 41.5,-49.5 parent: 2 type: Transform - - uid: 28075 + - uid: 28117 components: - pos: 39.5,-47.5 parent: 2 type: Transform - - uid: 28076 + - uid: 28118 components: - pos: 39.5,-44.5 parent: 2 type: Transform - - uid: 28077 + - uid: 28119 components: - pos: 41.5,-48.5 parent: 2 type: Transform - - uid: 28078 + - uid: 28120 components: - pos: -3.5,-51.5 parent: 2 type: Transform - - uid: 28079 + - uid: 28121 components: - pos: -5.5,-51.5 parent: 2 type: Transform - - uid: 28080 + - uid: 28122 components: - pos: -6.5,-51.5 parent: 2 type: Transform - - uid: 28081 + - uid: 28123 components: - pos: -2.5,-50.5 parent: 2 type: Transform - - uid: 28082 + - uid: 28124 components: - rot: 3.141592653589793 rad pos: 1.5,-45.5 parent: 2 type: Transform - - uid: 28083 + - uid: 28125 components: - pos: 7.5,-54.5 parent: 2 type: Transform - - uid: 28084 + - uid: 28126 components: - rot: -1.5707963267948966 rad pos: -14.5,-40.5 parent: 2 type: Transform - - uid: 28085 + - uid: 28127 components: - rot: -1.5707963267948966 rad pos: -12.5,-40.5 parent: 2 type: Transform - - uid: 28086 + - uid: 28128 components: - rot: 1.5707963267948966 rad pos: -4.5,-58.5 parent: 2 type: Transform - - uid: 28087 + - uid: 28129 components: - rot: 1.5707963267948966 rad pos: -1.5,-58.5 parent: 2 type: Transform - - uid: 28088 + - uid: 28130 components: - rot: 1.5707963267948966 rad pos: -7.5,-58.5 parent: 2 type: Transform - - uid: 28089 + - uid: 28131 components: - rot: 1.5707963267948966 rad pos: 4.5,-55.5 parent: 2 type: Transform - - uid: 28090 + - uid: 28132 components: - rot: 1.5707963267948966 rad pos: -10.5,-55.5 parent: 2 type: Transform - - uid: 28091 + - uid: 28133 components: - rot: 1.5707963267948966 rad pos: -13.5,-58.5 parent: 2 type: Transform - - uid: 28092 + - uid: 28134 components: - rot: 1.5707963267948966 rad pos: 4.5,-58.5 parent: 2 type: Transform - - uid: 28093 + - uid: 28135 components: - rot: 1.5707963267948966 rad pos: -1.5,-55.5 parent: 2 type: Transform - - uid: 28094 + - uid: 28136 components: - rot: 1.5707963267948966 rad pos: -4.5,-55.5 parent: 2 type: Transform - - uid: 28095 + - uid: 28137 components: - rot: 1.5707963267948966 rad pos: 1.5,-58.5 parent: 2 type: Transform - - uid: 28096 + - uid: 28138 components: - rot: 1.5707963267948966 rad pos: -7.5,-55.5 parent: 2 type: Transform - - uid: 28097 + - uid: 28139 components: - rot: 3.141592653589793 rad pos: -11.5,-51.5 parent: 2 type: Transform - - uid: 28098 + - uid: 28140 components: - rot: 3.141592653589793 rad pos: -14.5,-51.5 parent: 2 type: Transform - - uid: 28099 + - uid: 28141 components: - rot: 3.141592653589793 rad pos: -15.5,-51.5 parent: 2 type: Transform - - uid: 28100 + - uid: 28142 components: - pos: 9.5,-51.5 parent: 2 type: Transform - - uid: 28101 + - uid: 28143 components: - pos: 7.5,-52.5 parent: 2 type: Transform - - uid: 28102 + - uid: 28144 components: - pos: 9.5,-53.5 parent: 2 type: Transform - - uid: 28103 + - uid: 28145 components: - pos: 11.5,-50.5 parent: 2 type: Transform - - uid: 28104 + - uid: 28146 components: - pos: -17.5,-66.5 parent: 2 type: Transform - - uid: 28105 + - uid: 28147 components: - pos: -17.5,-62.5 parent: 2 type: Transform - - uid: 28106 + - uid: 28148 components: - pos: -16.5,-62.5 parent: 2 type: Transform - - uid: 28107 + - uid: 28149 components: - pos: -15.5,-62.5 parent: 2 type: Transform - - uid: 28108 + - uid: 28150 components: - pos: -14.5,-62.5 parent: 2 type: Transform - - uid: 28109 + - uid: 28151 components: - pos: -12.5,-62.5 parent: 2 type: Transform - - uid: 28110 + - uid: 28152 components: - pos: -11.5,-62.5 parent: 2 type: Transform - - uid: 28111 + - uid: 28153 components: - pos: 1.5,-66.5 parent: 2 type: Transform - - uid: 28112 + - uid: 28154 components: - pos: 1.5,-68.5 parent: 2 type: Transform - - uid: 28113 + - uid: 28155 components: - pos: 0.5,-68.5 parent: 2 type: Transform - - uid: 28114 + - uid: 28156 components: - pos: -0.5,-68.5 parent: 2 type: Transform - - uid: 28115 + - uid: 28157 components: - pos: -2.5,-68.5 parent: 2 type: Transform - - uid: 28116 + - uid: 28158 components: - pos: -3.5,-68.5 parent: 2 type: Transform - - uid: 28117 + - uid: 28159 components: - pos: -4.5,-68.5 parent: 2 type: Transform - - uid: 28118 + - uid: 28160 components: - pos: -4.5,-67.5 parent: 2 type: Transform - - uid: 28119 + - uid: 28161 components: - pos: 5.5,-62.5 parent: 2 type: Transform - - uid: 28120 + - uid: 28162 components: - pos: 5.5,-64.5 parent: 2 type: Transform - - uid: 28121 + - uid: 28163 components: - pos: 5.5,-65.5 parent: 2 type: Transform - - uid: 28122 + - uid: 28164 components: - pos: 5.5,-66.5 parent: 2 type: Transform - - uid: 28123 + - uid: 28165 components: - pos: 4.5,-66.5 parent: 2 type: Transform - - uid: 28124 + - uid: 28166 components: - pos: 3.5,-66.5 parent: 2 type: Transform - - uid: 28125 + - uid: 28167 components: - pos: 2.5,-66.5 parent: 2 type: Transform - - uid: 28126 + - uid: 28168 components: - rot: -1.5707963267948966 rad pos: -11.5,-68.5 parent: 2 type: Transform - - uid: 28127 + - uid: 28169 components: - rot: -1.5707963267948966 rad pos: -7.5,-68.5 parent: 2 type: Transform - - uid: 28128 + - uid: 28170 components: - pos: 56.5,-32.5 parent: 2 type: Transform - - uid: 28129 + - uid: 28171 components: - pos: 11.5,-54.5 parent: 2 type: Transform - - uid: 28130 + - uid: 28172 components: - pos: 10.5,-54.5 parent: 2 type: Transform - - uid: 28131 + - uid: 28173 components: - pos: -21.5,-62.5 parent: 2 type: Transform - - uid: 28132 + - uid: 28174 components: - pos: -20.5,-62.5 parent: 2 type: Transform - - uid: 28133 + - uid: 28175 components: - pos: -18.5,-62.5 parent: 2 type: Transform - - uid: 28134 + - uid: 28176 components: - pos: 12.5,-54.5 parent: 2 type: Transform - - uid: 28135 + - uid: 28177 components: - pos: 14.5,-56.5 parent: 2 type: Transform - - uid: 28136 + - uid: 28178 components: - pos: 14.5,-54.5 parent: 2 type: Transform - - uid: 28137 + - uid: 28179 components: - pos: 13.5,-60.5 parent: 2 type: Transform - - uid: 28138 + - uid: 28180 components: - pos: 13.5,-61.5 parent: 2 type: Transform - - uid: 28139 + - uid: 28181 components: - pos: 13.5,-62.5 parent: 2 type: Transform - - uid: 28140 + - uid: 28182 components: - pos: 13.5,-64.5 parent: 2 type: Transform - - uid: 28141 + - uid: 28183 components: - pos: 12.5,-65.5 parent: 2 type: Transform - - uid: 28142 + - uid: 28184 components: - pos: 10.5,-65.5 parent: 2 type: Transform - - uid: 28143 + - uid: 28185 components: - pos: 10.5,-66.5 parent: 2 type: Transform - - uid: 28144 + - uid: 28186 components: - pos: -8.5,-20.5 parent: 2 type: Transform - - uid: 28145 + - uid: 28187 components: - rot: -1.5707963267948966 rad pos: -10.5,-20.5 parent: 2 type: Transform - - uid: 28146 + - uid: 28188 components: - rot: -1.5707963267948966 rad pos: -9.5,-20.5 parent: 2 type: Transform - - uid: 28147 + - uid: 28189 components: - rot: -1.5707963267948966 rad pos: -7.5,-20.5 parent: 2 type: Transform - - uid: 28148 + - uid: 28190 components: - rot: -1.5707963267948966 rad pos: -14.5,-21.5 parent: 2 type: Transform - - uid: 28149 + - uid: 28191 components: - rot: -1.5707963267948966 rad pos: -14.5,-23.5 parent: 2 type: Transform - - uid: 28150 + - uid: 28192 components: - rot: -1.5707963267948966 rad pos: -14.5,-24.5 parent: 2 type: Transform - - uid: 28151 + - uid: 28193 components: - pos: 38.5,-52.5 parent: 2 type: Transform - - uid: 28152 + - uid: 28194 components: - pos: 37.5,-52.5 parent: 2 type: Transform - - uid: 28153 + - uid: 28195 components: - pos: -7.5,-16.5 parent: 2 type: Transform - - uid: 28154 + - uid: 28196 components: - pos: -6.5,-12.5 parent: 2 type: Transform - - uid: 28155 + - uid: 28197 components: - rot: -1.5707963267948966 rad pos: -14.5,-13.5 parent: 2 type: Transform - - uid: 28156 + - uid: 28198 components: - rot: -1.5707963267948966 rad pos: -15.5,-44.5 parent: 2 type: Transform - - uid: 28157 + - uid: 28199 components: - pos: 17.5,-30.5 parent: 2 type: Transform - - uid: 28158 + - uid: 28200 components: - pos: -21.5,-63.5 parent: 2 type: Transform - - uid: 28159 + - uid: 28201 components: - pos: -21.5,-65.5 parent: 2 type: Transform - - uid: 28160 + - uid: 28202 components: - pos: -26.5,-68.5 parent: 2 type: Transform - - uid: 28161 + - uid: 28203 components: - pos: -26.5,-74.5 parent: 2 type: Transform - - uid: 28162 + - uid: 28204 components: - pos: -25.5,-74.5 parent: 2 type: Transform - - uid: 28163 + - uid: 28205 components: - pos: -15.5,-70.5 parent: 2 type: Transform - - uid: 28164 + - uid: 28206 components: - pos: -16.5,-70.5 parent: 2 type: Transform - - uid: 28165 + - uid: 28207 components: - pos: -16.5,-73.5 parent: 2 type: Transform - - uid: 28166 + - uid: 28208 components: - pos: -21.5,-76.5 parent: 2 type: Transform - - uid: 28167 + - uid: 28209 components: - pos: -6.5,-72.5 parent: 2 type: Transform - - uid: 28168 + - uid: 28210 components: - pos: 36.5,-49.5 parent: 2 type: Transform - - uid: 28169 + - uid: 28211 components: - pos: -7.5,-72.5 parent: 2 type: Transform - - uid: 28170 + - uid: 28212 components: - pos: -10.5,-72.5 parent: 2 type: Transform - - uid: 28171 + - uid: 28213 components: - pos: -10.5,-73.5 parent: 2 type: Transform - - uid: 28172 + - uid: 28214 components: - pos: -9.5,-73.5 parent: 2 type: Transform - - uid: 28173 + - uid: 28215 components: - pos: -7.5,-73.5 parent: 2 type: Transform - - uid: 28174 + - uid: 28216 components: - pos: 3.5,-70.5 parent: 2 type: Transform - - uid: 28175 + - uid: 28217 components: - pos: 3.5,-68.5 parent: 2 type: Transform - - uid: 28176 + - uid: 28218 components: - pos: 4.5,-68.5 parent: 2 type: Transform - - uid: 28177 + - uid: 28219 components: - pos: 5.5,-68.5 parent: 2 type: Transform - - uid: 28178 + - uid: 28220 components: - pos: 7.5,-67.5 parent: 2 type: Transform - - uid: 28179 + - uid: 28221 components: - pos: 8.5,-66.5 parent: 2 type: Transform - - uid: 28180 + - uid: 28222 components: - pos: -21.5,-74.5 parent: 2 type: Transform - - uid: 28181 + - uid: 28223 components: - pos: -13.5,-69.5 parent: 2 type: Transform - - uid: 28182 + - uid: 28224 components: - pos: -21.5,-82.5 parent: 2 type: Transform - - uid: 28183 + - uid: 28225 components: - pos: -21.5,-83.5 parent: 2 type: Transform - - uid: 28184 + - uid: 28226 components: - pos: 10.5,-13.5 parent: 2 type: Transform - - uid: 28185 + - uid: 28227 components: - pos: -10.5,-63.5 parent: 2 type: Transform - - uid: 28186 + - uid: 28228 components: - pos: -10.5,-65.5 parent: 2 type: Transform - - uid: 28187 + - uid: 28229 components: - rot: 1.5707963267948966 rad pos: -4.5,-65.5 parent: 2 type: Transform - - uid: 28188 + - uid: 28230 components: - rot: 1.5707963267948966 rad pos: -4.5,-66.5 parent: 2 type: Transform - - uid: 28189 + - uid: 28231 components: - pos: 40.5,-52.5 parent: 2 type: Transform - - uid: 28190 + - uid: 28232 components: - rot: 1.5707963267948966 rad pos: -4.5,-64.5 parent: 2 type: Transform - - uid: 28191 + - uid: 28233 components: - rot: 1.5707963267948966 rad pos: -4.5,-63.5 parent: 2 type: Transform - - uid: 28192 + - uid: 28234 components: - pos: -6.5,-35.5 parent: 2 type: Transform - - uid: 28193 + - uid: 28235 components: - pos: -13.5,-32.5 parent: 2 type: Transform - - uid: 28194 + - uid: 28236 components: - pos: -25.5,-7.5 parent: 2 type: Transform - - uid: 28195 + - uid: 28237 components: - rot: 3.141592653589793 rad pos: 21.5,-9.5 parent: 2 type: Transform - - uid: 28196 + - uid: 28238 components: - pos: 12.5,-13.5 parent: 2 type: Transform - - uid: 28197 + - uid: 28239 components: - pos: 3.5,-72.5 parent: 2 type: Transform - - uid: 28198 + - uid: 28240 components: - pos: 10.5,-68.5 parent: 2 type: Transform - - uid: 28199 + - uid: 28241 components: - pos: 7.5,-51.5 parent: 2 type: Transform - - uid: 28200 + - uid: 28242 components: - rot: 3.141592653589793 rad pos: 16.5,-14.5 parent: 2 type: Transform - - uid: 28201 + - uid: 28243 components: - rot: 1.5707963267948966 rad pos: 1.5,-55.5 parent: 2 type: Transform - - uid: 28202 + - uid: 28244 components: - rot: 1.5707963267948966 rad pos: -10.5,-58.5 parent: 2 type: Transform - - uid: 28203 + - uid: 28245 components: - pos: -5.5,9.5 parent: 2 type: Transform - - uid: 28204 + - uid: 28246 components: - rot: -1.5707963267948966 rad pos: 13.5,-6.5 parent: 2 type: Transform - - uid: 28205 + - uid: 28247 components: - pos: 9.5,-28.5 parent: 2 type: Transform - - uid: 28206 + - uid: 28248 components: - rot: 3.141592653589793 rad pos: 6.5,-3.5 parent: 2 type: Transform - - uid: 28207 + - uid: 28249 components: - pos: -6.5,12.5 parent: 2 type: Transform - - uid: 28208 + - uid: 28250 components: - rot: 3.141592653589793 rad pos: -1.5,13.5 parent: 2 type: Transform - - uid: 28209 + - uid: 28251 components: - pos: -5.5,11.5 parent: 2 type: Transform - - uid: 28210 + - uid: 28252 components: - pos: 17.5,-7.5 parent: 2 type: Transform - - uid: 28211 + - uid: 28253 components: - pos: -11.5,12.5 parent: 2 type: Transform - - uid: 28212 + - uid: 28254 components: - pos: -5.5,12.5 parent: 2 type: Transform - - uid: 28213 + - uid: 28255 components: - pos: -11.5,5.5 parent: 2 type: Transform - - uid: 28214 + - uid: 28256 components: - pos: 13.5,-51.5 parent: 2 type: Transform - - uid: 28215 + - uid: 28257 components: - pos: 24.5,-3.5 parent: 2 type: Transform - - uid: 28216 + - uid: 28258 components: - pos: 15.5,-7.5 parent: 2 type: Transform - - uid: 28217 + - uid: 28259 components: - rot: -1.5707963267948966 rad pos: 31.5,-0.5 parent: 2 type: Transform - - uid: 28218 + - uid: 28260 components: - pos: 20.5,5.5 parent: 2 type: Transform - - uid: 28219 + - uid: 28261 components: - rot: -1.5707963267948966 rad pos: 31.5,2.5 parent: 2 type: Transform - - uid: 28220 + - uid: 28262 components: - pos: -1.5,0.5 parent: 2 type: Transform - - uid: 28221 + - uid: 28263 components: - pos: -1.5,1.5 parent: 2 type: Transform - - uid: 28222 + - uid: 28264 components: - pos: 15.5,5.5 parent: 2 type: Transform - - uid: 28223 + - uid: 28265 components: - pos: 30.5,-1.5 parent: 2 type: Transform - - uid: 28224 + - uid: 28266 components: - rot: 3.141592653589793 rad pos: 23.5,11.5 parent: 2 type: Transform - - uid: 28225 + - uid: 28267 components: - pos: 19.5,4.5 parent: 2 type: Transform - - uid: 28226 + - uid: 28268 components: - rot: 1.5707963267948966 rad pos: 1.5,-8.5 parent: 2 type: Transform - - uid: 28227 + - uid: 28269 components: - pos: -1.5,4.5 parent: 2 type: Transform - - uid: 28228 + - uid: 28270 components: - rot: 1.5707963267948966 rad pos: -0.5,-8.5 parent: 2 type: Transform - - uid: 28229 + - uid: 28271 components: - rot: 1.5707963267948966 rad pos: 0.5,-8.5 parent: 2 type: Transform - - uid: 28230 + - uid: 28272 components: - pos: 14.5,4.5 parent: 2 type: Transform - - uid: 28231 + - uid: 28273 components: - rot: 1.5707963267948966 rad pos: 3.5,-13.5 parent: 2 type: Transform - - uid: 28232 + - uid: 28274 components: - rot: 1.5707963267948966 rad pos: 0.5,-11.5 parent: 2 type: Transform - - uid: 28233 + - uid: 28275 components: - pos: -5.5,4.5 parent: 2 type: Transform - - uid: 28234 + - uid: 28276 components: - pos: 13.5,4.5 parent: 2 type: Transform - - uid: 28235 + - uid: 28277 components: - pos: 5.5,-7.5 parent: 2 type: Transform - - uid: 28236 + - uid: 28278 components: - pos: 7.5,-3.5 parent: 2 type: Transform - - uid: 28237 + - uid: 28279 components: - pos: -13.5,-72.5 parent: 2 type: Transform - - uid: 28238 + - uid: 28280 components: - pos: 19.5,5.5 parent: 2 type: Transform - - uid: 28239 + - uid: 28281 components: - rot: 3.141592653589793 rad pos: 23.5,14.5 parent: 2 type: Transform - - uid: 28240 + - uid: 28282 components: - rot: 1.5707963267948966 rad pos: 2.5,-8.5 parent: 2 type: Transform - - uid: 28241 + - uid: 28283 components: - pos: -12.5,-28.5 parent: 2 type: Transform - - uid: 28242 + - uid: 28284 components: - pos: 15.5,-4.5 parent: 2 type: Transform - - uid: 28243 + - uid: 28285 components: - pos: 15.5,0.5 parent: 2 type: Transform - - uid: 28244 + - uid: 28286 components: - rot: 3.141592653589793 rad pos: -1.5,12.5 parent: 2 type: Transform - - uid: 28245 + - uid: 28287 components: - pos: 37.5,-38.5 parent: 2 type: Transform - - uid: 28246 + - uid: 28288 components: - rot: -1.5707963267948966 rad pos: -12.5,-76.5 parent: 2 type: Transform - - uid: 28247 + - uid: 28289 components: - rot: -1.5707963267948966 rad pos: -4.5,-76.5 parent: 2 type: Transform - - uid: 28248 + - uid: 28290 components: - rot: -1.5707963267948966 rad pos: -3.5,-79.5 parent: 2 type: Transform - - uid: 28249 + - uid: 28291 components: - rot: -1.5707963267948966 rad pos: -2.5,-76.5 parent: 2 type: Transform - - uid: 28250 + - uid: 28292 components: - rot: 1.5707963267948966 rad pos: 27.5,-52.5 parent: 2 type: Transform - - uid: 28251 + - uid: 28293 components: - pos: 8.5,4.5 parent: 2 type: Transform - - uid: 28252 + - uid: 28294 components: - pos: 37.5,-32.5 parent: 2 type: Transform - - uid: 28253 + - uid: 28295 components: - pos: 39.5,-27.5 parent: 2 type: Transform - - uid: 28254 + - uid: 28296 components: - pos: 39.5,-31.5 parent: 2 type: Transform - - uid: 28255 + - uid: 28297 components: - rot: -1.5707963267948966 rad pos: -17.5,-40.5 parent: 2 type: Transform - - uid: 28256 + - uid: 28298 components: - pos: -17.5,-39.5 parent: 2 type: Transform - - uid: 28257 + - uid: 28299 components: - rot: -1.5707963267948966 rad pos: -3.5,-77.5 parent: 2 type: Transform - - uid: 28258 + - uid: 28300 components: - rot: -1.5707963267948966 rad pos: -2.5,-81.5 parent: 2 type: Transform - - uid: 28259 + - uid: 28301 components: - rot: -1.5707963267948966 rad pos: -2.5,-80.5 parent: 2 type: Transform - - uid: 28260 + - uid: 28302 components: - rot: -1.5707963267948966 rad pos: -3.5,-80.5 parent: 2 type: Transform - - uid: 28261 + - uid: 28303 components: - rot: -1.5707963267948966 rad pos: -6.5,-76.5 parent: 2 type: Transform - - uid: 28262 + - uid: 28304 components: - pos: 7.5,4.5 parent: 2 type: Transform - - uid: 28263 + - uid: 28305 components: - rot: 1.5707963267948966 rad pos: -6.5,-22.5 parent: 2 type: Transform - - uid: 28264 + - uid: 28306 components: - pos: 38.5,-31.5 parent: 2 type: Transform - - uid: 28265 + - uid: 28307 components: - pos: -6.5,-18.5 parent: 2 type: Transform - - uid: 28266 + - uid: 28308 components: - pos: -6.5,-15.5 parent: 2 type: Transform - - uid: 28267 + - uid: 28309 components: - pos: -2.5,-3.5 parent: 2 type: Transform - - uid: 28268 + - uid: 28310 components: - pos: -2.5,-6.5 parent: 2 type: Transform - - uid: 28269 + - uid: 28311 components: - rot: 3.141592653589793 rad pos: -10.5,-47.5 parent: 2 type: Transform - - uid: 28270 + - uid: 28312 components: - rot: 1.5707963267948966 rad pos: -7.5,-24.5 parent: 2 type: Transform - - uid: 28271 + - uid: 28313 components: - pos: -4.5,9.5 parent: 2 type: Transform - - uid: 28272 + - uid: 28314 components: - rot: 1.5707963267948966 rad pos: 28.5,-44.5 parent: 2 type: Transform - - uid: 28273 + - uid: 28315 components: - pos: -21.5,-15.5 parent: 2 type: Transform - - uid: 28274 + - uid: 28316 components: - rot: -1.5707963267948966 rad pos: -27.5,-18.5 parent: 2 type: Transform - - uid: 28275 + - uid: 28317 components: - pos: -26.5,-15.5 parent: 2 type: Transform - - uid: 28276 + - uid: 28318 components: - pos: 19.5,23.5 parent: 2 type: Transform - - uid: 28277 + - uid: 28319 components: - pos: 27.5,-44.5 parent: 2 type: Transform - - uid: 28278 + - uid: 28320 components: - pos: -6.5,-30.5 parent: 2 type: Transform - - uid: 28279 + - uid: 28321 components: - pos: -6.5,-31.5 parent: 2 type: Transform - - uid: 28280 + - uid: 28322 components: - rot: -1.5707963267948966 rad pos: 10.5,-44.5 parent: 2 type: Transform - - uid: 28281 + - uid: 28323 components: - rot: -1.5707963267948966 rad pos: 11.5,-44.5 parent: 2 type: Transform - - uid: 28282 + - uid: 28324 components: - pos: 12.5,-48.5 parent: 2 type: Transform - - uid: 28283 + - uid: 28325 components: - pos: 9.5,-15.5 parent: 2 type: Transform - - uid: 28284 + - uid: 28326 components: - pos: 8.5,-15.5 parent: 2 type: Transform - - uid: 28285 + - uid: 28327 components: - pos: 7.5,-15.5 parent: 2 type: Transform - - uid: 28286 + - uid: 28328 components: - pos: 6.5,-15.5 parent: 2 type: Transform - - uid: 28287 + - uid: 28329 components: - pos: 5.5,-15.5 parent: 2 type: Transform - - uid: 28288 + - uid: 28330 components: - pos: -10.5,-28.5 parent: 2 type: Transform - - uid: 28289 + - uid: 28331 components: - rot: 1.5707963267948966 rad pos: 5.5,-10.5 parent: 2 type: Transform - - uid: 28290 + - uid: 28332 components: - rot: 1.5707963267948966 rad pos: 7.5,-9.5 parent: 2 type: Transform - - uid: 28291 + - uid: 28333 components: - rot: 1.5707963267948966 rad pos: 7.5,-8.5 parent: 2 type: Transform - - uid: 28292 + - uid: 28334 components: - rot: 1.5707963267948966 rad pos: 6.5,-8.5 parent: 2 type: Transform - - uid: 28293 + - uid: 28335 components: - pos: 8.5,-40.5 parent: 2 type: Transform - - uid: 28294 + - uid: 28336 components: - rot: 3.141592653589793 rad pos: -10.5,-48.5 parent: 2 type: Transform - - uid: 28295 + - uid: 28337 components: - rot: 3.141592653589793 rad pos: 1.5,-49.5 parent: 2 type: Transform - - uid: 28296 + - uid: 28338 components: - rot: 3.141592653589793 rad pos: 1.5,-50.5 parent: 2 type: Transform - - uid: 28297 + - uid: 28339 components: - pos: -2.5,-51.5 parent: 2 type: Transform - - uid: 28298 + - uid: 28340 components: - rot: -1.5707963267948966 rad pos: -15.5,-40.5 parent: 2 type: Transform - - uid: 28299 + - uid: 28341 components: - rot: -1.5707963267948966 rad pos: -13.5,-40.5 parent: 2 type: Transform - - uid: 28300 + - uid: 28342 components: - rot: -1.5707963267948966 rad pos: 30.5,5.5 parent: 2 type: Transform - - uid: 28301 + - uid: 28343 components: - pos: 3.5,-15.5 parent: 2 type: Transform - - uid: 28302 + - uid: 28344 components: - pos: 14.5,-11.5 parent: 2 type: Transform - - uid: 28303 + - uid: 28345 components: - pos: 8.5,-13.5 parent: 2 type: Transform - - uid: 28304 + - uid: 28346 components: - rot: -1.5707963267948966 rad pos: 13.5,-5.5 parent: 2 type: Transform - - uid: 28305 + - uid: 28347 components: - pos: 8.5,-28.5 parent: 2 type: Transform - - uid: 28306 + - uid: 28348 components: - pos: 16.5,-12.5 parent: 2 type: Transform - - uid: 28307 + - uid: 28349 components: - pos: 16.5,-11.5 parent: 2 type: Transform - - uid: 28308 + - uid: 28350 components: - pos: 16.5,-10.5 parent: 2 type: Transform - - uid: 28309 + - uid: 28351 components: - pos: 16.5,-9.5 parent: 2 type: Transform - - uid: 28310 + - uid: 28352 components: - pos: 17.5,-9.5 parent: 2 type: Transform - - uid: 28311 + - uid: 28353 components: - pos: 0.5,-15.5 parent: 2 type: Transform - - uid: 28312 + - uid: 28354 components: - pos: 1.5,-15.5 parent: 2 type: Transform - - uid: 28313 + - uid: 28355 components: - pos: 11.5,-13.5 parent: 2 type: Transform - - uid: 28314 + - uid: 28356 components: - pos: 2.5,-15.5 parent: 2 type: Transform - - uid: 28315 + - uid: 28357 components: - pos: 14.5,-10.5 parent: 2 type: Transform - - uid: 28316 + - uid: 28358 components: - pos: 14.5,-9.5 parent: 2 type: Transform - - uid: 28317 + - uid: 28359 components: - pos: 19.5,-9.5 parent: 2 type: Transform - - uid: 28318 + - uid: 28360 components: - rot: 3.141592653589793 rad pos: 19.5,9.5 parent: 2 type: Transform - - uid: 28319 + - uid: 28361 components: - rot: 3.141592653589793 rad pos: 19.5,11.5 parent: 2 type: Transform - - uid: 28320 + - uid: 28362 components: - rot: 3.141592653589793 rad pos: 19.5,13.5 parent: 2 type: Transform - - uid: 28321 + - uid: 28363 components: - pos: -42.5,-29.5 parent: 2 type: Transform - - uid: 28322 + - uid: 28364 components: - pos: -42.5,-30.5 parent: 2 type: Transform - - uid: 28323 + - uid: 28365 components: - pos: -37.5,-30.5 parent: 2 type: Transform - - uid: 28324 + - uid: 28366 components: - pos: -37.5,-29.5 parent: 2 type: Transform - - uid: 28325 + - uid: 28367 components: - pos: 13.5,-13.5 parent: 2 type: Transform - - uid: 28326 + - uid: 28368 components: - pos: 14.5,-13.5 parent: 2 type: Transform - - uid: 28327 + - uid: 28369 components: - rot: 3.141592653589793 rad pos: 47.5,37.5 parent: 2 type: Transform - - uid: 28328 + - uid: 28370 components: - rot: 3.141592653589793 rad pos: 19.5,12.5 parent: 2 type: Transform - - uid: 28329 + - uid: 28371 components: - rot: 3.141592653589793 rad pos: 20.5,9.5 parent: 2 type: Transform - - uid: 28330 + - uid: 28372 components: - pos: 18.5,-9.5 parent: 2 type: Transform - - uid: 28331 + - uid: 28373 components: - rot: -1.5707963267948966 rad pos: 13.5,-8.5 parent: 2 type: Transform - - uid: 28332 + - uid: 28374 components: - pos: -5.5,10.5 parent: 2 type: Transform - - uid: 28333 + - uid: 28375 components: - rot: 3.141592653589793 rad pos: -1.5,11.5 parent: 2 type: Transform - - uid: 28334 + - uid: 28376 components: - pos: 4.5,4.5 parent: 2 type: Transform - - uid: 28335 + - uid: 28377 components: - pos: -1.5,6.5 parent: 2 type: Transform - - uid: 28336 + - uid: 28378 components: - rot: 3.141592653589793 rad pos: -1.5,10.5 parent: 2 type: Transform - - uid: 28337 + - uid: 28379 components: - pos: 5.5,-3.5 parent: 2 type: Transform - - uid: 28338 + - uid: 28380 components: - pos: 7.5,5.5 parent: 2 type: Transform - - uid: 28339 + - uid: 28381 components: - rot: -1.5707963267948966 rad pos: -8.5,57.5 parent: 2 type: Transform - - uid: 28340 + - uid: 28382 components: - rot: 3.141592653589793 rad pos: 28.5,-7.5 parent: 2 type: Transform - - uid: 28341 + - uid: 28383 components: - pos: -3.5,-70.5 parent: 2 type: Transform - - uid: 28342 + - uid: 28384 components: - pos: 8.5,-50.5 parent: 2 type: Transform - - uid: 28343 + - uid: 28385 components: - pos: -17.5,-37.5 parent: 2 type: Transform - - uid: 28344 + - uid: 28386 components: - pos: -26.5,34.5 parent: 2 type: Transform - - uid: 28345 + - uid: 28387 components: - pos: -28.5,37.5 parent: 2 type: Transform - - uid: 28346 + - uid: 28388 components: - pos: -2.5,-8.5 parent: 2 type: Transform - - uid: 28347 + - uid: 28389 components: - pos: 3.5,4.5 parent: 2 type: Transform - - uid: 28348 + - uid: 28390 components: - rot: 3.141592653589793 rad pos: 22.5,-9.5 parent: 2 type: Transform - - uid: 28349 + - uid: 28391 components: - pos: -9.5,4.5 parent: 2 type: Transform - - uid: 28350 + - uid: 28392 components: - pos: -9.5,-34.5 parent: 2 type: Transform - - uid: 28351 + - uid: 28393 components: - rot: -1.5707963267948966 rad pos: -16.5,-40.5 parent: 2 type: Transform - - uid: 28352 + - uid: 28394 components: - rot: -1.5707963267948966 rad pos: -7.5,-40.5 parent: 2 type: Transform - - uid: 28353 + - uid: 28395 components: - pos: -7.5,-28.5 parent: 2 type: Transform - - uid: 28354 + - uid: 28396 components: - pos: 15.5,1.5 parent: 2 type: Transform - - uid: 28355 + - uid: 28397 components: - rot: 1.5707963267948966 rad pos: -15.5,-24.5 parent: 2 type: Transform - - uid: 28356 + - uid: 28398 components: - pos: -17.5,-16.5 parent: 2 type: Transform - - uid: 28357 + - uid: 28399 components: - pos: 42.5,-6.5 parent: 2 type: Transform - - uid: 28358 + - uid: 28400 components: - pos: -17.5,-32.5 parent: 2 type: Transform - - uid: 28359 + - uid: 28401 components: - pos: -25.5,42.5 parent: 2 type: Transform - - uid: 28360 + - uid: 28402 components: - pos: -28.5,36.5 parent: 2 type: Transform - - uid: 28361 + - uid: 28403 components: - pos: -4.5,-70.5 parent: 2 type: Transform - - uid: 28362 + - uid: 28404 components: - pos: -4.5,-71.5 parent: 2 type: Transform - - uid: 28363 + - uid: 28405 components: - pos: 39.5,-52.5 parent: 2 type: Transform - - uid: 28364 + - uid: 28406 components: - pos: -0.5,4.5 parent: 2 type: Transform - - uid: 28365 + - uid: 28407 components: - pos: -4.5,-72.5 parent: 2 type: Transform - - uid: 28366 + - uid: 28408 components: - pos: 16.5,-49.5 parent: 2 type: Transform - - uid: 28367 + - uid: 28409 components: - pos: 16.5,-50.5 parent: 2 type: Transform - - uid: 28368 + - uid: 28410 components: - pos: 14.5,-55.5 parent: 2 type: Transform - - uid: 28369 + - uid: 28411 components: - pos: -17.5,-17.5 parent: 2 type: Transform - - uid: 28370 + - uid: 28412 components: - rot: 3.141592653589793 rad pos: 32.5,-7.5 parent: 2 type: Transform - - uid: 28371 + - uid: 28413 components: - pos: -21.5,-24.5 parent: 2 type: Transform - - uid: 28372 + - uid: 28414 components: - pos: 41.5,-57.5 parent: 2 type: Transform - - uid: 28373 + - uid: 28415 components: - rot: 1.5707963267948966 rad pos: -12.5,-24.5 parent: 2 type: Transform - - uid: 28374 + - uid: 28416 components: - pos: 36.5,-0.5 parent: 2 type: Transform - - uid: 28375 + - uid: 28417 components: - pos: -6.5,15.5 parent: 2 type: Transform - - uid: 28376 + - uid: 28418 components: - pos: 9.5,-54.5 parent: 2 type: Transform - - uid: 28377 + - uid: 28419 components: - pos: -17.5,-15.5 parent: 2 type: Transform - - uid: 28378 + - uid: 28420 components: - pos: 37.5,-40.5 parent: 2 type: Transform - - uid: 28379 + - uid: 28421 components: - pos: 38.5,-40.5 parent: 2 type: Transform - - uid: 28380 + - uid: 28422 components: - pos: 40.5,-40.5 parent: 2 type: Transform - - uid: 28381 + - uid: 28423 components: - pos: 27.5,-46.5 parent: 2 type: Transform - - uid: 28382 + - uid: 28424 components: - rot: 1.5707963267948966 rad pos: 27.5,-49.5 parent: 2 type: Transform - - uid: 28383 + - uid: 28425 components: - pos: 39.5,-40.5 parent: 2 type: Transform - - uid: 28384 + - uid: 28426 components: - pos: -11.5,4.5 parent: 2 type: Transform - - uid: 28385 + - uid: 28427 components: - pos: -2.5,13.5 parent: 2 type: Transform - - uid: 28386 + - uid: 28428 components: - rot: 3.141592653589793 rad pos: 23.5,12.5 parent: 2 type: Transform - - uid: 28387 + - uid: 28429 components: - rot: 3.141592653589793 rad pos: 23.5,13.5 parent: 2 type: Transform - - uid: 28388 + - uid: 28430 components: - pos: 28.5,5.5 parent: 2 type: Transform - - uid: 28389 + - uid: 28431 components: - rot: 3.141592653589793 rad pos: 3.5,10.5 parent: 2 type: Transform - - uid: 28390 + - uid: 28432 components: - rot: -1.5707963267948966 rad pos: 31.5,4.5 parent: 2 type: Transform - - uid: 28391 + - uid: 28433 components: - rot: -1.5707963267948966 rad pos: 31.5,-1.5 parent: 2 type: Transform - - uid: 28392 + - uid: 28434 components: - pos: -29.5,-76.5 parent: 2 type: Transform - - uid: 28393 + - uid: 28435 components: - pos: -11.5,11.5 parent: 2 type: Transform - - uid: 28394 + - uid: 28436 components: - pos: -2.5,4.5 parent: 2 type: Transform - - uid: 28395 + - uid: 28437 components: - pos: -1.5,-2.5 parent: 2 type: Transform - - uid: 28396 + - uid: 28438 components: - rot: 3.141592653589793 rad pos: 61.5,14.5 parent: 2 type: Transform - - uid: 28397 + - uid: 28439 components: - rot: -1.5707963267948966 rad pos: 19.5,20.5 parent: 2 type: Transform - - uid: 28398 + - uid: 28440 components: - pos: -7.5,12.5 parent: 2 type: Transform - - uid: 28399 + - uid: 28441 components: - pos: 6.5,4.5 parent: 2 type: Transform - - uid: 28400 + - uid: 28442 components: - rot: -1.5707963267948966 rad pos: -18.5,38.5 parent: 2 type: Transform - - uid: 28401 + - uid: 28443 components: - pos: -17.5,-35.5 parent: 2 type: Transform - - uid: 28402 + - uid: 28444 components: - rot: 1.5707963267948966 rad pos: -14.5,-28.5 parent: 2 type: Transform - - uid: 28403 + - uid: 28445 components: - pos: -10.5,-62.5 parent: 2 type: Transform - - uid: 28404 + - uid: 28446 components: - pos: -10.5,-64.5 parent: 2 type: Transform - - uid: 28405 + - uid: 28447 components: - pos: -2.5,-70.5 parent: 2 type: Transform - - uid: 28406 + - uid: 28448 components: - pos: -1.5,-70.5 parent: 2 type: Transform - - uid: 28407 + - uid: 28449 components: - rot: 3.141592653589793 rad pos: 29.5,-7.5 parent: 2 type: Transform - - uid: 28408 + - uid: 28450 components: - pos: 13.5,-53.5 parent: 2 type: Transform - - uid: 28409 + - uid: 28451 components: - rot: -1.5707963267948966 rad pos: -10.5,57.5 parent: 2 type: Transform - - uid: 28410 + - uid: 28452 components: - pos: -5.5,-72.5 parent: 2 type: Transform - - uid: 28411 + - uid: 28453 components: - pos: 0.5,-70.5 parent: 2 type: Transform - - uid: 28412 + - uid: 28454 components: - pos: 1.5,-70.5 parent: 2 type: Transform - - uid: 28413 + - uid: 28455 components: - pos: 13.5,-46.5 parent: 2 type: Transform - - uid: 28414 + - uid: 28456 components: - pos: 42.5,-54.5 parent: 2 type: Transform - - uid: 28415 + - uid: 28457 components: - pos: -1.5,-11.5 parent: 2 type: Transform - - uid: 28416 + - uid: 28458 components: - pos: 13.5,-44.5 parent: 2 type: Transform - - uid: 28417 + - uid: 28459 components: - pos: 17.5,-44.5 parent: 2 type: Transform - - uid: 28418 + - uid: 28460 components: - pos: -7.5,15.5 parent: 2 type: Transform - - uid: 28419 + - uid: 28461 components: - pos: -28.5,-76.5 parent: 2 type: Transform - - uid: 28420 + - uid: 28462 components: - pos: -21.5,-80.5 parent: 2 type: Transform - - uid: 28421 + - uid: 28463 components: - pos: -10.5,12.5 parent: 2 type: Transform - - uid: 28422 + - uid: 28464 components: - pos: -11.5,10.5 parent: 2 type: Transform - - uid: 28423 + - uid: 28465 components: - pos: -0.5,-70.5 parent: 2 type: Transform - - uid: 28424 + - uid: 28466 components: - pos: -27.5,-76.5 parent: 2 type: Transform - - uid: 28425 + - uid: 28467 components: - pos: -20.5,-65.5 parent: 2 type: Transform - - uid: 28426 + - uid: 28468 components: - pos: -14.5,-72.5 parent: 2 type: Transform - - uid: 28427 + - uid: 28469 components: - pos: -17.5,-74.5 parent: 2 type: Transform - - uid: 28428 + - uid: 28470 components: - pos: -21.5,-79.5 parent: 2 type: Transform - - uid: 28429 + - uid: 28471 components: - pos: -21.5,-78.5 parent: 2 type: Transform - - uid: 28430 + - uid: 28472 components: - pos: -21.5,-77.5 parent: 2 type: Transform - - uid: 28431 + - uid: 28473 components: - pos: -26.5,-76.5 parent: 2 type: Transform - - uid: 28432 + - uid: 28474 components: - pos: -26.5,-75.5 parent: 2 type: Transform - - uid: 28433 + - uid: 28475 components: - rot: 3.141592653589793 rad pos: -10.5,-51.5 parent: 2 type: Transform - - uid: 28434 + - uid: 28476 components: - rot: 3.141592653589793 rad pos: -16.5,-51.5 parent: 2 type: Transform - - uid: 28435 + - uid: 28477 components: - pos: 16.5,-48.5 parent: 2 type: Transform - - uid: 28436 + - uid: 28478 components: - pos: -17.5,-67.5 parent: 2 type: Transform - - uid: 28437 + - uid: 28479 components: - pos: 10.5,-15.5 parent: 2 type: Transform - - uid: 28438 + - uid: 28480 components: - pos: 12.5,4.5 parent: 2 type: Transform - - uid: 28439 + - uid: 28481 components: - rot: 3.141592653589793 rad pos: 23.5,-7.5 parent: 2 type: Transform - - uid: 28440 + - uid: 28482 components: - pos: -32.5,-70.5 parent: 2 type: Transform - - uid: 28441 + - uid: 28483 components: - rot: 3.141592653589793 rad pos: 30.5,-7.5 parent: 2 type: Transform - - uid: 28442 + - uid: 28484 components: - pos: -27.5,-72.5 parent: 2 type: Transform - - uid: 28443 + - uid: 28485 components: - pos: 13.5,-65.5 parent: 2 type: Transform - - uid: 28444 + - uid: 28486 components: - pos: 10.5,-63.5 parent: 2 type: Transform - - uid: 28445 + - uid: 28487 components: - rot: 3.141592653589793 rad pos: 23.5,-8.5 parent: 2 type: Transform - - uid: 28446 + - uid: 28488 components: - pos: -6.5,-50.5 parent: 2 type: Transform - - uid: 28447 + - uid: 28489 components: - pos: -13.5,-70.5 parent: 2 type: Transform - - uid: 28448 + - uid: 28490 components: - pos: 14.5,-12.5 parent: 2 type: Transform - - uid: 28449 + - uid: 28491 components: - pos: 29.5,5.5 parent: 2 type: Transform - - uid: 28450 + - uid: 28492 components: - rot: -1.5707963267948966 rad pos: 31.5,5.5 parent: 2 type: Transform - - uid: 28451 + - uid: 28493 components: - rot: 1.5707963267948966 rad pos: 27.5,-48.5 parent: 2 type: Transform - - uid: 28452 + - uid: 28494 components: - pos: 27.5,-45.5 parent: 2 type: Transform - - uid: 28453 + - uid: 28495 components: - rot: 3.141592653589793 rad pos: 20.5,15.5 parent: 2 type: Transform - - uid: 28454 + - uid: 28496 components: - pos: -17.5,-13.5 parent: 2 type: Transform - - uid: 28455 + - uid: 28497 components: - pos: 43.5,-6.5 parent: 2 type: Transform - - uid: 28456 + - uid: 28498 components: - pos: 37.5,-54.5 parent: 2 type: Transform - - uid: 28457 + - uid: 28499 components: - pos: 17.5,-27.5 parent: 2 type: Transform - - uid: 28458 + - uid: 28500 components: - pos: -25.5,43.5 parent: 2 type: Transform - - uid: 28459 + - uid: 28501 components: - pos: -25.5,44.5 parent: 2 type: Transform - - uid: 28460 + - uid: 28502 components: - pos: -25.5,46.5 parent: 2 type: Transform - - uid: 28461 + - uid: 28503 components: - pos: -27.5,36.5 parent: 2 type: Transform - - uid: 28462 + - uid: 28504 components: - rot: 3.141592653589793 rad pos: 27.5,-7.5 parent: 2 type: Transform - - uid: 28463 + - uid: 28505 components: - rot: 3.141592653589793 rad pos: 21.5,-51.5 parent: 2 type: Transform - - uid: 28464 + - uid: 28506 components: - pos: -6.5,-39.5 parent: 2 type: Transform - - uid: 28465 + - uid: 28507 components: - rot: 1.5707963267948966 rad pos: -16.5,-24.5 parent: 2 type: Transform - - uid: 28466 + - uid: 28508 components: - pos: -17.5,-24.5 parent: 2 type: Transform - - uid: 28467 + - uid: 28509 components: - pos: 42.5,-55.5 parent: 2 type: Transform - - uid: 28468 + - uid: 28510 components: - pos: -26.5,32.5 parent: 2 type: Transform - - uid: 28469 + - uid: 28511 components: - pos: 37.5,-55.5 parent: 2 type: Transform - - uid: 28470 + - uid: 28512 components: - rot: 3.141592653589793 rad pos: 20.5,-51.5 parent: 2 type: Transform - - uid: 28471 + - uid: 28513 components: - pos: 15.5,-5.5 parent: 2 type: Transform - - uid: 28472 + - uid: 28514 components: - rot: 3.141592653589793 rad pos: 27.5,-9.5 parent: 2 type: Transform - - uid: 28473 + - uid: 28515 components: - rot: 3.141592653589793 rad pos: 21.5,-7.5 parent: 2 type: Transform - - uid: 28474 + - uid: 28516 components: - rot: -1.5707963267948966 rad pos: 6.5,-44.5 parent: 2 type: Transform - - uid: 28475 + - uid: 28517 components: - pos: 1.5,-72.5 parent: 2 type: Transform - - uid: 28476 + - uid: 28518 components: - rot: -1.5707963267948966 rad pos: 29.5,-2.5 parent: 2 type: Transform - - uid: 28477 + - uid: 28519 components: - rot: 3.141592653589793 rad pos: 34.5,-7.5 parent: 2 type: Transform - - uid: 28478 + - uid: 28520 components: - pos: 42.5,-53.5 parent: 2 type: Transform - - uid: 28479 + - uid: 28521 components: - rot: 3.141592653589793 rad pos: -10.5,-44.5 parent: 2 type: Transform - - uid: 28480 + - uid: 28522 components: - rot: 3.141592653589793 rad pos: 7.5,10.5 parent: 2 type: Transform - - uid: 28481 + - uid: 28523 components: - rot: -1.5707963267948966 rad pos: -11.5,-76.5 parent: 2 type: Transform - - uid: 28482 + - uid: 28524 components: - rot: 3.141592653589793 rad pos: 60.5,12.5 parent: 2 type: Transform - - uid: 28483 + - uid: 28525 components: - pos: 20.5,-3.5 parent: 2 type: Transform - - uid: 28484 + - uid: 28526 components: - pos: 2.5,-72.5 parent: 2 type: Transform - - uid: 28485 + - uid: 28527 components: - pos: 11.5,-68.5 parent: 2 type: Transform - - uid: 28486 + - uid: 28528 components: - pos: -18.5,-65.5 parent: 2 type: Transform - - uid: 28487 + - uid: 28529 components: - pos: 7.5,-58.5 parent: 2 type: Transform - - uid: 28488 + - uid: 28530 components: - rot: 1.5707963267948966 rad pos: 32.5,-44.5 parent: 2 type: Transform - - uid: 28489 + - uid: 28531 components: - rot: 1.5707963267948966 rad pos: 33.5,-44.5 parent: 2 type: Transform - - uid: 28490 + - uid: 28532 components: - pos: -2.5,-16.5 parent: 2 type: Transform - - uid: 28491 + - uid: 28533 components: - pos: -11.5,-28.5 parent: 2 type: Transform - - uid: 28492 + - uid: 28534 components: - pos: -7.5,-35.5 parent: 2 type: Transform - - uid: 28493 + - uid: 28535 components: - rot: 3.141592653589793 rad pos: 19.5,-7.5 parent: 2 type: Transform - - uid: 28494 + - uid: 28536 components: - pos: 29.5,-3.5 parent: 2 type: Transform - - uid: 28495 + - uid: 28537 components: - rot: -1.5707963267948966 rad pos: 31.5,-3.5 parent: 2 type: Transform - - uid: 28496 + - uid: 28538 components: - rot: 1.5707963267948966 rad pos: 27.5,-57.5 parent: 2 type: Transform - - uid: 28497 + - uid: 28539 components: - pos: -17.5,-33.5 parent: 2 type: Transform - - uid: 28498 + - uid: 28540 components: - pos: 35.5,-0.5 parent: 2 type: Transform - - uid: 28499 + - uid: 28541 components: - rot: -1.5707963267948966 rad pos: -11.5,14.5 parent: 2 type: Transform - - uid: 28500 + - uid: 28542 components: - pos: -3.5,15.5 parent: 2 type: Transform - - uid: 28501 + - uid: 28543 components: - pos: -23.5,36.5 parent: 2 type: Transform - - uid: 28502 + - uid: 28544 components: - pos: -23.5,37.5 parent: 2 type: Transform - - uid: 28503 + - uid: 28545 components: - pos: -23.5,39.5 parent: 2 type: Transform - - uid: 28504 + - uid: 28546 components: - pos: -5.5,13.5 parent: 2 type: Transform - - uid: 28505 + - uid: 28547 components: - pos: -10.5,-66.5 parent: 2 type: Transform - - uid: 28506 + - uid: 28548 components: - rot: -1.5707963267948966 rad pos: 21.5,19.5 parent: 2 type: Transform - - uid: 28507 + - uid: 28549 components: - pos: 20.5,-48.5 parent: 2 type: Transform - - uid: 28508 + - uid: 28550 components: - rot: -1.5707963267948966 rad pos: -3.5,-76.5 parent: 2 type: Transform - - uid: 28509 + - uid: 28551 components: - pos: -3.5,-73.5 parent: 2 type: Transform - - uid: 28510 + - uid: 28552 components: - pos: -2.5,-72.5 parent: 2 type: Transform - - uid: 28511 + - uid: 28553 components: - rot: 1.5707963267948966 rad pos: 32.5,-23.5 parent: 2 type: Transform - - uid: 28512 + - uid: 28554 components: - pos: 57.5,-64.5 parent: 2 type: Transform - - uid: 28513 + - uid: 28555 components: - pos: -14.5,-16.5 parent: 2 type: Transform - - uid: 28514 + - uid: 28556 components: - pos: -14.5,-19.5 parent: 2 type: Transform - - uid: 28515 + - uid: 28557 components: - pos: -17.5,-19.5 parent: 2 type: Transform - - uid: 28516 + - uid: 28558 components: - pos: -17.5,-18.5 parent: 2 type: Transform - - uid: 28517 + - uid: 28559 components: - pos: -17.5,-36.5 parent: 2 type: Transform - - uid: 28518 + - uid: 28560 components: - rot: -1.5707963267948966 rad pos: -7.5,-39.5 parent: 2 type: Transform - - uid: 28519 + - uid: 28561 components: - pos: 13.5,-30.5 parent: 2 type: Transform - - uid: 28520 + - uid: 28562 components: - pos: 16.5,-47.5 parent: 2 type: Transform - - uid: 28521 + - uid: 28563 components: - rot: 3.141592653589793 rad pos: 17.5,-51.5 parent: 2 type: Transform - - uid: 28522 + - uid: 28564 components: - pos: -14.5,-17.5 parent: 2 type: Transform - - uid: 28523 + - uid: 28565 components: - pos: 9.5,4.5 parent: 2 type: Transform - - uid: 28524 + - uid: 28566 components: - pos: 37.5,-29.5 parent: 2 type: Transform - - uid: 28525 + - uid: 28567 components: - pos: -23.5,-68.5 parent: 2 type: Transform - - uid: 28526 + - uid: 28568 components: - pos: 11.5,-56.5 parent: 2 type: Transform - - uid: 28527 + - uid: 28569 components: - pos: -7.5,-33.5 parent: 2 type: Transform - - uid: 28528 + - uid: 28570 components: - pos: -12.5,-32.5 parent: 2 type: Transform - - uid: 28529 + - uid: 28571 components: - pos: -12.5,-31.5 parent: 2 type: Transform - - uid: 28530 + - uid: 28572 components: - pos: -13.5,-34.5 parent: 2 type: Transform - - uid: 28531 + - uid: 28573 components: - pos: -13.5,-35.5 parent: 2 type: Transform - - uid: 28532 + - uid: 28574 components: - pos: -13.5,-36.5 parent: 2 type: Transform - - uid: 28533 + - uid: 28575 components: - pos: -13.5,-37.5 parent: 2 type: Transform - - uid: 28534 + - uid: 28576 components: - pos: -13.5,-39.5 parent: 2 type: Transform - - uid: 28535 + - uid: 28577 components: - pos: -16.5,-36.5 parent: 2 type: Transform - - uid: 28536 + - uid: 28578 components: - pos: -15.5,-36.5 parent: 2 type: Transform - - uid: 28537 + - uid: 28579 components: - pos: -14.5,-36.5 parent: 2 type: Transform - - uid: 28538 + - uid: 28580 components: - pos: -7.5,-32.5 parent: 2 type: Transform - - uid: 28539 + - uid: 28581 components: - pos: -7.5,-31.5 parent: 2 type: Transform - - uid: 28540 + - uid: 28582 components: - pos: -11.5,-31.5 parent: 2 type: Transform - - uid: 28541 + - uid: 28583 components: - pos: -10.5,-31.5 parent: 2 type: Transform - - uid: 28542 + - uid: 28584 components: - pos: -9.5,-31.5 parent: 2 type: Transform - - uid: 28543 + - uid: 28585 components: - pos: -8.5,-31.5 parent: 2 type: Transform - - uid: 28544 + - uid: 28586 components: - pos: 10.5,-28.5 parent: 2 type: Transform - - uid: 28545 + - uid: 28587 components: - rot: 3.141592653589793 rad pos: 17.5,8.5 parent: 2 type: Transform - - uid: 28546 + - uid: 28588 components: - pos: 23.5,-47.5 parent: 2 type: Transform - - uid: 28547 + - uid: 28589 components: - rot: -1.5707963267948966 rad pos: 49.5,-36.5 parent: 2 type: Transform - - uid: 28548 + - uid: 28590 components: - rot: -1.5707963267948966 rad pos: 43.5,-34.5 parent: 2 type: Transform - - uid: 28549 + - uid: 28591 components: - rot: 1.5707963267948966 rad pos: 36.5,-9.5 parent: 2 type: Transform - - uid: 28550 + - uid: 28592 components: - rot: 1.5707963267948966 rad pos: 36.5,-10.5 parent: 2 type: Transform - - uid: 28551 + - uid: 28593 components: - rot: 1.5707963267948966 rad pos: 36.5,-11.5 parent: 2 type: Transform - - uid: 28552 + - uid: 28594 components: - rot: 1.5707963267948966 rad pos: 36.5,-7.5 parent: 2 type: Transform - - uid: 28553 + - uid: 28595 components: - pos: -6.5,-8.5 parent: 2 type: Transform - - uid: 28554 + - uid: 28596 components: - pos: -6.5,-10.5 parent: 2 type: Transform - - uid: 28555 + - uid: 28597 components: - pos: -17.5,-11.5 parent: 2 type: Transform - - uid: 28556 + - uid: 28598 components: - pos: -17.5,-12.5 parent: 2 type: Transform - - uid: 28557 + - uid: 28599 components: - pos: -11.5,0.5 parent: 2 type: Transform - - uid: 28558 + - uid: 28600 components: - pos: -13.5,14.5 parent: 2 type: Transform - - uid: 28559 + - uid: 28601 components: - pos: -17.5,11.5 parent: 2 type: Transform - - uid: 28560 + - uid: 28602 components: - pos: -15.5,14.5 parent: 2 type: Transform - - uid: 28561 + - uid: 28603 components: - pos: -21.5,13.5 parent: 2 type: Transform - - uid: 28562 + - uid: 28604 components: - pos: -21.5,10.5 parent: 2 type: Transform - - uid: 28563 + - uid: 28605 components: - pos: -17.5,13.5 parent: 2 type: Transform - - uid: 28564 + - uid: 28606 components: - pos: -17.5,12.5 parent: 2 type: Transform - - uid: 28565 + - uid: 28607 components: - pos: -17.5,14.5 parent: 2 type: Transform - - uid: 28566 + - uid: 28608 components: - pos: -16.5,14.5 parent: 2 type: Transform - - uid: 28567 + - uid: 28609 components: - pos: -15.5,-32.5 parent: 2 type: Transform - - uid: 28568 + - uid: 28610 components: - pos: -15.5,-33.5 parent: 2 type: Transform - - uid: 28569 + - uid: 28611 components: - pos: -9.5,-30.5 parent: 2 type: Transform - - uid: 28570 + - uid: 28612 components: - pos: -15.5,-30.5 parent: 2 type: Transform - - uid: 28571 + - uid: 28613 components: - pos: -14.5,-30.5 parent: 2 type: Transform - - uid: 28572 + - uid: 28614 components: - pos: -14.5,-29.5 parent: 2 type: Transform - - uid: 28573 + - uid: 28615 components: - rot: -1.5707963267948966 rad pos: -15.5,16.5 parent: 2 type: Transform - - uid: 28574 + - uid: 28616 components: - rot: -1.5707963267948966 rad pos: -14.5,16.5 parent: 2 type: Transform - - uid: 28575 + - uid: 28617 components: - rot: -1.5707963267948966 rad pos: -13.5,16.5 parent: 2 type: Transform - - uid: 28576 + - uid: 28618 components: - rot: -1.5707963267948966 rad pos: -12.5,16.5 parent: 2 type: Transform - - uid: 28577 + - uid: 28619 components: - rot: -1.5707963267948966 rad pos: -11.5,16.5 parent: 2 type: Transform - - uid: 28578 + - uid: 28620 components: - rot: -1.5707963267948966 rad pos: -11.5,17.5 parent: 2 type: Transform - - uid: 28579 + - uid: 28621 components: - rot: -1.5707963267948966 rad pos: -10.5,17.5 parent: 2 type: Transform - - uid: 28580 + - uid: 28622 components: - rot: -1.5707963267948966 rad pos: -9.5,17.5 parent: 2 type: Transform - - uid: 28581 + - uid: 28623 components: - rot: -1.5707963267948966 rad pos: -8.5,17.5 parent: 2 type: Transform - - uid: 28582 + - uid: 28624 components: - rot: -1.5707963267948966 rad pos: -7.5,17.5 parent: 2 type: Transform - - uid: 28583 + - uid: 28625 components: - rot: -1.5707963267948966 rad pos: -6.5,17.5 parent: 2 type: Transform - - uid: 28584 + - uid: 28626 components: - rot: -1.5707963267948966 rad pos: -5.5,17.5 parent: 2 type: Transform - - uid: 28585 + - uid: 28627 components: - rot: -1.5707963267948966 rad pos: -3.5,17.5 parent: 2 type: Transform - - uid: 28586 + - uid: 28628 components: - pos: -15.5,-11.5 parent: 2 type: Transform - - uid: 28587 + - uid: 28629 components: - pos: -8.5,-16.5 parent: 2 type: Transform - - uid: 28588 + - uid: 28630 components: - pos: 23.5,-45.5 parent: 2 type: Transform - - uid: 28589 + - uid: 28631 components: - pos: 23.5,-44.5 parent: 2 type: Transform - - uid: 28590 + - uid: 28632 components: - pos: 23.5,-48.5 parent: 2 type: Transform - - uid: 28591 + - uid: 28633 components: - pos: 15.5,-46.5 parent: 2 type: Transform - - uid: 28592 + - uid: 28634 components: - pos: 18.5,-45.5 parent: 2 type: Transform - - uid: 28593 + - uid: 28635 components: - pos: 18.5,-46.5 parent: 2 type: Transform - - uid: 28594 + - uid: 28636 components: - pos: 18.5,-47.5 parent: 2 type: Transform - - uid: 28595 + - uid: 28637 components: - rot: -1.5707963267948966 rad pos: 31.5,0.5 parent: 2 type: Transform - - uid: 28596 + - uid: 28638 components: - pos: 61.5,7.5 parent: 2 type: Transform - - uid: 28597 + - uid: 28639 components: - pos: 61.5,5.5 parent: 2 type: Transform - - uid: 28598 + - uid: 28640 components: - pos: 64.5,1.5 parent: 2 type: Transform - - uid: 28599 + - uid: 28641 components: - pos: 65.5,0.5 parent: 2 type: Transform - - uid: 28600 + - uid: 28642 components: - pos: 60.5,0.5 parent: 2 type: Transform - - uid: 28601 + - uid: 28643 components: - pos: 17.5,30.5 parent: 2 type: Transform - - uid: 28602 + - uid: 28644 components: - rot: 1.5707963267948966 rad pos: 55.5,54.5 parent: 2 type: Transform - - uid: 28603 + - uid: 28645 components: - rot: 1.5707963267948966 rad pos: 56.5,54.5 parent: 2 type: Transform - - uid: 28604 + - uid: 28646 components: - rot: -1.5707963267948966 rad pos: -13.5,47.5 parent: 2 type: Transform - - uid: 28605 + - uid: 28647 components: - rot: -1.5707963267948966 rad pos: -13.5,48.5 parent: 2 type: Transform - - uid: 28606 + - uid: 28648 components: - pos: 47.5,34.5 parent: 2 type: Transform - - uid: 28607 + - uid: 28649 components: - pos: 47.5,33.5 parent: 2 type: Transform - - uid: 28608 + - uid: 28650 components: - pos: 47.5,31.5 parent: 2 type: Transform - - uid: 28609 + - uid: 28651 components: - pos: -9.5,47.5 parent: 2 type: Transform - - uid: 28610 + - uid: 28652 components: - pos: -10.5,47.5 parent: 2 type: Transform - - uid: 28611 + - uid: 28653 components: - rot: -1.5707963267948966 rad pos: -10.5,48.5 parent: 2 type: Transform - - uid: 28612 + - uid: 28654 components: - pos: -3.5,20.5 parent: 2 type: Transform - - uid: 28613 + - uid: 28655 components: - pos: -4.5,20.5 parent: 2 type: Transform - - uid: 28614 + - uid: 28656 components: - pos: -5.5,20.5 parent: 2 type: Transform - - uid: 28615 + - uid: 28657 components: - pos: -6.5,20.5 parent: 2 type: Transform - - uid: 28616 + - uid: 28658 components: - pos: -7.5,20.5 parent: 2 type: Transform - - uid: 28617 + - uid: 28659 components: - pos: -7.5,19.5 parent: 2 type: Transform - - uid: 28618 + - uid: 28660 components: - pos: -8.5,19.5 parent: 2 type: Transform - - uid: 28619 + - uid: 28661 components: - pos: -9.5,19.5 parent: 2 type: Transform - - uid: 28620 + - uid: 28662 components: - pos: -9.5,20.5 parent: 2 type: Transform - - uid: 28621 + - uid: 28663 components: - pos: -11.5,20.5 parent: 2 type: Transform - - uid: 28622 + - uid: 28664 components: - pos: -11.5,19.5 parent: 2 type: Transform - - uid: 28623 + - uid: 28665 components: - pos: 33.5,23.5 parent: 2 type: Transform - - uid: 28624 + - uid: 28666 components: - pos: 34.5,23.5 parent: 2 type: Transform - - uid: 28625 + - uid: 28667 components: - pos: 33.5,17.5 parent: 2 type: Transform - - uid: 28626 + - uid: 28668 components: - rot: 3.141592653589793 rad pos: 51.5,14.5 parent: 2 type: Transform - - uid: 28627 + - uid: 28669 components: - rot: 3.141592653589793 rad pos: 55.5,14.5 parent: 2 type: Transform - - uid: 28628 + - uid: 28670 components: - rot: 3.141592653589793 rad pos: 55.5,10.5 parent: 2 type: Transform - - uid: 28629 + - uid: 28671 components: - rot: 3.141592653589793 rad pos: 51.5,10.5 parent: 2 type: Transform - - uid: 28630 + - uid: 28672 components: - pos: 61.5,6.5 parent: 2 type: Transform - - uid: 28631 + - uid: 28673 components: - pos: 43.5,18.5 parent: 2 type: Transform - - uid: 28632 + - uid: 28674 components: - pos: 43.5,21.5 parent: 2 type: Transform - - uid: 28633 + - uid: 28675 components: - pos: 44.5,-0.5 parent: 2 type: Transform - - uid: 28634 + - uid: 28676 components: - pos: 47.5,-0.5 parent: 2 type: Transform - - uid: 28635 + - uid: 28677 components: - pos: 48.5,24.5 parent: 2 type: Transform - - uid: 28636 + - uid: 28678 components: - pos: 48.5,23.5 parent: 2 type: Transform - - uid: 28637 + - uid: 28679 components: - pos: 48.5,22.5 parent: 2 type: Transform - - uid: 28638 + - uid: 28680 components: - pos: 51.5,24.5 parent: 2 type: Transform - - uid: 28639 + - uid: 28681 components: - pos: 51.5,23.5 parent: 2 type: Transform - - uid: 28640 + - uid: 28682 components: - pos: 51.5,22.5 parent: 2 type: Transform - - uid: 28641 + - uid: 28683 components: - pos: 54.5,24.5 parent: 2 type: Transform - - uid: 28642 + - uid: 28684 components: - pos: 54.5,23.5 parent: 2 type: Transform - - uid: 28643 + - uid: 28685 components: - pos: 54.5,22.5 parent: 2 type: Transform - - uid: 28644 + - uid: 28686 components: - pos: 57.5,24.5 parent: 2 type: Transform - - uid: 28645 + - uid: 28687 components: - pos: 57.5,23.5 parent: 2 type: Transform - - uid: 28646 + - uid: 28688 components: - pos: 57.5,22.5 parent: 2 type: Transform - - uid: 28647 + - uid: 28689 components: - pos: 60.5,24.5 parent: 2 type: Transform - - uid: 28648 + - uid: 28690 components: - pos: 60.5,23.5 parent: 2 type: Transform - - uid: 28649 + - uid: 28691 components: - pos: 60.5,22.5 parent: 2 type: Transform - - uid: 28650 + - uid: 28692 components: - pos: 62.5,20.5 parent: 2 type: Transform - - uid: 28651 + - uid: 28693 components: - pos: 61.5,20.5 parent: 2 type: Transform - - uid: 28652 + - uid: 28694 components: - pos: 60.5,20.5 parent: 2 type: Transform - - uid: 28653 + - uid: 28695 components: - rot: 1.5707963267948966 rad pos: 46.5,27.5 parent: 2 type: Transform - - uid: 28654 + - uid: 28696 components: - rot: 1.5707963267948966 rad pos: 45.5,27.5 parent: 2 type: Transform - - uid: 28655 + - uid: 28697 components: - rot: 1.5707963267948966 rad pos: 44.5,27.5 parent: 2 type: Transform - - uid: 28656 + - uid: 28698 components: - rot: 1.5707963267948966 rad pos: 53.5,54.5 parent: 2 type: Transform - - uid: 28657 + - uid: 28699 components: - pos: 62.5,24.5 parent: 2 type: Transform - - uid: 28658 + - uid: 28700 components: - pos: 62.5,23.5 parent: 2 type: Transform - - uid: 28659 + - uid: 28701 components: - rot: 1.5707963267948966 rad pos: 48.5,11.5 parent: 2 type: Transform - - uid: 28660 + - uid: 28702 components: - rot: 1.5707963267948966 rad pos: 48.5,17.5 parent: 2 type: Transform - - uid: 28661 + - uid: 28703 components: - rot: 1.5707963267948966 rad pos: 58.5,17.5 parent: 2 type: Transform - - uid: 28662 + - uid: 28704 components: - rot: 1.5707963267948966 rad pos: 58.5,11.5 parent: 2 type: Transform - - uid: 28663 + - uid: 28705 components: - rot: 3.141592653589793 rad pos: 61.5,12.5 parent: 2 type: Transform - - uid: 28664 + - uid: 28706 components: - rot: 3.141592653589793 rad pos: 61.5,11.5 parent: 2 type: Transform - - uid: 28665 + - uid: 28707 components: - rot: 3.141592653589793 rad pos: 61.5,10.5 parent: 2 type: Transform - - uid: 28666 + - uid: 28708 components: - rot: 3.141592653589793 rad pos: 61.5,9.5 parent: 2 type: Transform - - uid: 28667 + - uid: 28709 components: - rot: 3.141592653589793 rad pos: 61.5,8.5 parent: 2 type: Transform - - uid: 28668 + - uid: 28710 components: - rot: 3.141592653589793 rad pos: 62.5,8.5 parent: 2 type: Transform - - uid: 28669 + - uid: 28711 components: - rot: 3.141592653589793 rad pos: 63.5,8.5 parent: 2 type: Transform - - uid: 28670 + - uid: 28712 components: - rot: 3.141592653589793 rad pos: 63.5,12.5 parent: 2 type: Transform - - uid: 28671 + - uid: 28713 components: - rot: 3.141592653589793 rad pos: 63.5,10.5 parent: 2 type: Transform - - uid: 28672 + - uid: 28714 components: - rot: -1.5707963267948966 rad pos: 51.5,12.5 parent: 2 type: Transform - - uid: 28673 + - uid: 28715 components: - pos: 58.5,-0.5 parent: 2 type: Transform - - uid: 28674 + - uid: 28716 components: - pos: 61.5,0.5 parent: 2 type: Transform - - uid: 28675 + - uid: 28717 components: - pos: 62.5,0.5 parent: 2 type: Transform - - uid: 28676 + - uid: 28718 components: - rot: 1.5707963267948966 rad pos: 55.5,2.5 parent: 2 type: Transform - - uid: 28677 + - uid: 28719 components: - rot: 1.5707963267948966 rad pos: 55.5,1.5 parent: 2 type: Transform - - uid: 28678 + - uid: 28720 components: - rot: 1.5707963267948966 rad pos: 55.5,0.5 parent: 2 type: Transform - - uid: 28679 + - uid: 28721 components: - rot: 1.5707963267948966 rad pos: 55.5,-1.5 parent: 2 type: Transform - - uid: 28680 + - uid: 28722 components: - rot: 1.5707963267948966 rad pos: 49.5,-0.5 parent: 2 type: Transform - - uid: 28681 + - uid: 28723 components: - rot: 1.5707963267948966 rad pos: 49.5,-2.5 parent: 2 type: Transform - - uid: 28682 + - uid: 28724 components: - rot: 1.5707963267948966 rad pos: 49.5,-1.5 parent: 2 type: Transform - - uid: 28683 + - uid: 28725 components: - rot: 1.5707963267948966 rad pos: 50.5,-2.5 parent: 2 type: Transform - - uid: 28684 + - uid: 28726 components: - rot: 1.5707963267948966 rad pos: 50.5,-3.5 parent: 2 type: Transform - - uid: 28685 + - uid: 28727 components: - rot: 1.5707963267948966 rad pos: 55.5,-2.5 parent: 2 type: Transform - - uid: 28686 + - uid: 28728 components: - rot: 1.5707963267948966 rad pos: 54.5,-2.5 parent: 2 type: Transform - - uid: 28687 + - uid: 28729 components: - rot: 1.5707963267948966 rad pos: 54.5,-3.5 parent: 2 type: Transform - - uid: 28688 + - uid: 28730 components: - rot: 1.5707963267948966 rad pos: 50.5,-4.5 parent: 2 type: Transform - - uid: 28689 + - uid: 28731 components: - rot: 1.5707963267948966 rad pos: 49.5,-4.5 parent: 2 type: Transform - - uid: 28690 + - uid: 28732 components: - rot: 1.5707963267948966 rad pos: 48.5,-4.5 parent: 2 type: Transform - - uid: 28691 + - uid: 28733 components: - rot: 1.5707963267948966 rad pos: 47.5,-4.5 parent: 2 type: Transform - - uid: 28692 + - uid: 28734 components: - rot: 1.5707963267948966 rad pos: 46.5,-4.5 parent: 2 type: Transform - - uid: 28693 + - uid: 28735 components: - rot: -1.5707963267948966 rad pos: 45.5,-2.5 parent: 2 type: Transform - - uid: 28694 + - uid: 28736 components: - pos: 49.5,-5.5 parent: 2 type: Transform - - uid: 28695 + - uid: 28737 components: - pos: 49.5,-6.5 parent: 2 type: Transform - - uid: 28696 + - uid: 28738 components: - pos: 49.5,-10.5 parent: 2 type: Transform - - uid: 28697 + - uid: 28739 components: - pos: 48.5,-10.5 parent: 2 type: Transform - - uid: 28698 + - uid: 28740 components: - rot: 1.5707963267948966 rad pos: 54.5,-4.5 parent: 2 type: Transform - - uid: 28699 + - uid: 28741 components: - rot: 1.5707963267948966 rad pos: 55.5,-4.5 parent: 2 type: Transform - - uid: 28700 + - uid: 28742 components: - rot: 1.5707963267948966 rad pos: 56.5,-4.5 parent: 2 type: Transform - - uid: 28701 + - uid: 28743 components: - rot: 1.5707963267948966 rad pos: 58.5,-4.5 parent: 2 type: Transform - - uid: 28702 + - uid: 28744 components: - pos: 19.5,-48.5 parent: 2 type: Transform - - uid: 28703 + - uid: 28745 components: - pos: 18.5,-48.5 parent: 2 type: Transform - - uid: 28704 + - uid: 28746 components: - rot: -1.5707963267948966 rad pos: 45.5,-4.5 parent: 2 type: Transform - - uid: 28705 + - uid: 28747 components: - rot: -1.5707963267948966 rad pos: 40.5,-2.5 parent: 2 type: Transform - - uid: 28706 + - uid: 28748 components: - rot: -1.5707963267948966 rad pos: 40.5,-3.5 parent: 2 type: Transform - - uid: 28707 + - uid: 28749 components: - rot: -1.5707963267948966 rad pos: 45.5,-1.5 parent: 2 type: Transform - - uid: 28708 + - uid: 28750 components: - rot: -1.5707963267948966 rad pos: 40.5,-5.5 parent: 2 type: Transform - - uid: 28709 + - uid: 28751 components: - rot: -1.5707963267948966 rad pos: 39.5,-6.5 parent: 2 type: Transform - - uid: 28710 + - uid: 28752 components: - rot: -1.5707963267948966 rad pos: 45.5,-5.5 parent: 2 type: Transform - - uid: 28711 + - uid: 28753 components: - rot: -1.5707963267948966 rad pos: 37.5,-6.5 parent: 2 type: Transform - - uid: 28712 + - uid: 28754 components: - rot: -1.5707963267948966 rad pos: 37.5,-7.5 parent: 2 type: Transform - - uid: 28713 + - uid: 28755 components: - rot: -1.5707963267948966 rad pos: 45.5,-3.5 parent: 2 type: Transform - - uid: 28714 + - uid: 28756 components: - pos: 40.5,-6.5 parent: 2 type: Transform - - uid: 28715 + - uid: 28757 components: - pos: -14.5,-18.5 parent: 2 type: Transform - - uid: 28716 + - uid: 28758 components: - pos: 24.5,-54.5 parent: 2 type: Transform - - uid: 28717 + - uid: 28759 components: - pos: -17.5,-21.5 parent: 2 type: Transform - - uid: 28718 + - uid: 28760 components: - pos: 55.5,-7.5 parent: 2 type: Transform - - uid: 28719 + - uid: 28761 components: - pos: 49.5,-3.5 parent: 2 type: Transform - - uid: 28720 + - uid: 28762 components: - pos: 58.5,0.5 parent: 2 type: Transform - - uid: 28721 + - uid: 28763 components: - pos: 58.5,-1.5 parent: 2 type: Transform - - uid: 28722 + - uid: 28764 components: - pos: 58.5,-2.5 parent: 2 type: Transform - - uid: 28723 + - uid: 28765 components: - pos: 57.5,-2.5 parent: 2 type: Transform - - uid: 28724 + - uid: 28766 components: - pos: 59.5,-4.5 parent: 2 type: Transform - - uid: 28725 + - uid: 28767 components: - pos: 48.5,-9.5 parent: 2 type: Transform - - uid: 28726 + - uid: 28768 components: - pos: 48.5,-6.5 parent: 2 type: Transform - - uid: 28727 + - uid: 28769 components: - pos: 48.5,-7.5 parent: 2 type: Transform - - uid: 28728 + - uid: 28770 components: - pos: 6.5,-17.5 parent: 2 type: Transform - - uid: 28729 + - uid: 28771 components: - rot: 1.5707963267948966 rad pos: 66.5,-6.5 parent: 2 type: Transform - - uid: 28730 + - uid: 28772 components: - rot: 1.5707963267948966 rad pos: 66.5,-12.5 parent: 2 type: Transform - - uid: 28731 + - uid: 28773 components: - rot: 1.5707963267948966 rad pos: 66.5,-10.5 parent: 2 type: Transform - - uid: 28732 + - uid: 28774 components: - pos: 65.5,-4.5 parent: 2 type: Transform - - uid: 28733 + - uid: 28775 components: - pos: 63.5,-4.5 parent: 2 type: Transform - - uid: 28734 + - uid: 28776 components: - pos: 61.5,-4.5 parent: 2 type: Transform - - uid: 28735 + - uid: 28777 components: - rot: -1.5707963267948966 rad pos: 62.5,-4.5 parent: 2 type: Transform - - uid: 28736 + - uid: 28778 components: - pos: 53.5,-14.5 parent: 2 type: Transform - - uid: 28737 + - uid: 28779 components: - pos: 61.5,-14.5 parent: 2 type: Transform - - uid: 28738 + - uid: 28780 components: - pos: 60.5,-14.5 parent: 2 type: Transform - - uid: 28739 + - uid: 28781 components: - pos: 59.5,-7.5 parent: 2 type: Transform - - uid: 28740 + - uid: 28782 components: - pos: 58.5,-7.5 parent: 2 type: Transform - - uid: 28741 + - uid: 28783 components: - pos: 57.5,-7.5 parent: 2 type: Transform - - uid: 28742 + - uid: 28784 components: - pos: 56.5,-7.5 parent: 2 type: Transform - - uid: 28743 + - uid: 28785 components: - pos: 59.5,-9.5 parent: 2 type: Transform - - uid: 28744 + - uid: 28786 components: - pos: 58.5,-9.5 parent: 2 type: Transform - - uid: 28745 + - uid: 28787 components: - pos: 57.5,-9.5 parent: 2 type: Transform - - uid: 28746 + - uid: 28788 components: - pos: 56.5,-9.5 parent: 2 type: Transform - - uid: 28747 + - uid: 28789 components: - pos: 55.5,-9.5 parent: 2 type: Transform - - uid: 28748 + - uid: 28790 components: - pos: 55.5,-8.5 parent: 2 type: Transform - - uid: 28749 + - uid: 28791 components: - rot: 3.141592653589793 rad pos: 58.5,-3.5 parent: 2 type: Transform - - uid: 28750 + - uid: 28792 components: - pos: 60.5,-29.5 parent: 2 type: Transform - - uid: 28751 + - uid: 28793 components: - pos: 60.5,-30.5 parent: 2 type: Transform - - uid: 28752 + - uid: 28794 components: - pos: 49.5,-11.5 parent: 2 type: Transform - - uid: 28753 + - uid: 28795 components: - pos: 49.5,-12.5 parent: 2 type: Transform - - uid: 28754 + - uid: 28796 components: - pos: 50.5,-12.5 parent: 2 type: Transform - - uid: 28755 + - uid: 28797 components: - pos: 35.5,-11.5 parent: 2 type: Transform - - uid: 28756 + - uid: 28798 components: - pos: 37.5,-9.5 parent: 2 type: Transform - - uid: 28757 + - uid: 28799 components: - pos: 38.5,-9.5 parent: 2 type: Transform - - uid: 28758 + - uid: 28800 components: - pos: 39.5,-9.5 parent: 2 type: Transform - - uid: 28759 + - uid: 28801 components: - pos: 39.5,-8.5 parent: 2 type: Transform - - uid: 28760 + - uid: 28802 components: - pos: 41.5,-6.5 parent: 2 type: Transform - - uid: 28761 + - uid: 28803 components: - pos: 41.5,-7.5 parent: 2 type: Transform - - uid: 28762 + - uid: 28804 components: - pos: 41.5,-8.5 parent: 2 type: Transform - - uid: 28763 + - uid: 28805 components: - pos: 41.5,-9.5 parent: 2 type: Transform - - uid: 28764 + - uid: 28806 components: - pos: 41.5,-10.5 parent: 2 type: Transform - - uid: 28765 + - uid: 28807 components: - pos: 39.5,-10.5 parent: 2 type: Transform - - uid: 28766 + - uid: 28808 components: - pos: 39.5,-11.5 parent: 2 type: Transform - - uid: 28767 + - uid: 28809 components: - pos: 37.5,-11.5 parent: 2 type: Transform - - uid: 28768 + - uid: 28810 components: - pos: 37.5,-12.5 parent: 2 type: Transform - - uid: 28769 + - uid: 28811 components: - pos: 37.5,-14.5 parent: 2 type: Transform - - uid: 28770 + - uid: 28812 components: - pos: 45.5,-6.5 parent: 2 type: Transform - - uid: 28771 + - uid: 28813 components: - pos: 45.5,-7.5 parent: 2 type: Transform - - uid: 28772 + - uid: 28814 components: - pos: 45.5,-8.5 parent: 2 type: Transform - - uid: 28773 + - uid: 28815 components: - pos: 45.5,-9.5 parent: 2 type: Transform - - uid: 28774 + - uid: 28816 components: - pos: 43.5,-9.5 parent: 2 type: Transform - - uid: 28775 + - uid: 28817 components: - pos: 45.5,-10.5 parent: 2 type: Transform - - uid: 28776 + - uid: 28818 components: - pos: 45.5,-12.5 parent: 2 type: Transform - - uid: 28777 + - uid: 28819 components: - pos: 44.5,-12.5 parent: 2 type: Transform - - uid: 28778 + - uid: 28820 components: - pos: 42.5,-12.5 parent: 2 type: Transform - - uid: 28779 + - uid: 28821 components: - pos: 41.5,-12.5 parent: 2 type: Transform - - uid: 28780 + - uid: 28822 components: - pos: 41.5,-13.5 parent: 2 type: Transform - - uid: 28781 + - uid: 28823 components: - pos: 40.5,-13.5 parent: 2 type: Transform - - uid: 28782 + - uid: 28824 components: - pos: 39.5,-13.5 parent: 2 type: Transform - - uid: 28783 + - uid: 28825 components: - pos: 46.5,-12.5 parent: 2 type: Transform - - uid: 28784 + - uid: 28826 components: - pos: 47.5,-12.5 parent: 2 type: Transform - - uid: 28785 + - uid: 28827 components: - pos: 47.5,-11.5 parent: 2 type: Transform - - uid: 28786 + - uid: 28828 components: - pos: 47.5,-10.5 parent: 2 type: Transform - - uid: 28787 + - uid: 28829 components: - pos: 46.5,-6.5 parent: 2 type: Transform - - uid: 28788 + - uid: 28830 components: - pos: 69.5,-35.5 parent: 2 type: Transform - - uid: 28789 + - uid: 28831 components: - pos: 66.5,-36.5 parent: 2 type: Transform - - uid: 28790 + - uid: 28832 components: - pos: 58.5,-40.5 parent: 2 type: Transform - - uid: 28791 + - uid: 28833 components: - pos: 58.5,-41.5 parent: 2 type: Transform - - uid: 28792 + - uid: 28834 components: - pos: 58.5,-42.5 parent: 2 type: Transform - - uid: 28793 + - uid: 28835 components: - pos: 65.5,-36.5 parent: 2 type: Transform - - uid: 28794 + - uid: 28836 components: - rot: 1.5707963267948966 rad pos: 60.5,-38.5 parent: 2 type: Transform - - uid: 28795 + - uid: 28837 components: - rot: 1.5707963267948966 rad pos: 60.5,-39.5 parent: 2 type: Transform - - uid: 28796 + - uid: 28838 components: - pos: 60.5,-41.5 parent: 2 type: Transform - - uid: 28797 + - uid: 28839 components: - pos: 41.5,-40.5 parent: 2 type: Transform - - uid: 28798 + - uid: 28840 components: - rot: -1.5707963267948966 rad pos: 44.5,-34.5 parent: 2 type: Transform - - uid: 28799 + - uid: 28841 components: - rot: -1.5707963267948966 rad pos: 47.5,-34.5 parent: 2 type: Transform - - uid: 28800 + - uid: 28842 components: - rot: -1.5707963267948966 rad pos: 42.5,-34.5 parent: 2 type: Transform - - uid: 28801 + - uid: 28843 components: - rot: -1.5707963267948966 rad pos: 51.5,-36.5 parent: 2 type: Transform - - uid: 28802 + - uid: 28844 components: - rot: 3.141592653589793 rad pos: 44.5,-40.5 parent: 2 type: Transform - - uid: 28803 + - uid: 28845 components: - pos: 47.5,-40.5 parent: 2 type: Transform - - uid: 28804 + - uid: 28846 components: - pos: 47.5,-44.5 parent: 2 type: Transform - - uid: 28805 + - uid: 28847 components: - pos: 46.5,-44.5 parent: 2 type: Transform - - uid: 28806 + - uid: 28848 components: - pos: 45.5,-44.5 parent: 2 type: Transform - - uid: 28807 + - uid: 28849 components: - pos: 41.5,-44.5 parent: 2 type: Transform - - uid: 28808 + - uid: 28850 components: - rot: -1.5707963267948966 rad pos: 40.5,-34.5 parent: 2 type: Transform - - uid: 28809 + - uid: 28851 components: - rot: -1.5707963267948966 rad pos: 52.5,-36.5 parent: 2 type: Transform - - uid: 28810 + - uid: 28852 components: - pos: 53.5,-38.5 parent: 2 type: Transform - - uid: 28811 + - uid: 28853 components: - rot: -1.5707963267948966 rad pos: 41.5,-34.5 parent: 2 type: Transform - - uid: 28812 + - uid: 28854 components: - pos: 47.5,-39.5 parent: 2 type: Transform - - uid: 28813 + - uid: 28855 components: - pos: 47.5,-38.5 parent: 2 type: Transform - - uid: 28814 + - uid: 28856 components: - pos: 54.5,-39.5 parent: 2 type: Transform - - uid: 28815 + - uid: 28857 components: - pos: 52.5,-38.5 parent: 2 type: Transform - - uid: 28816 + - uid: 28858 components: - pos: 54.5,-38.5 parent: 2 type: Transform - - uid: 28817 + - uid: 28859 components: - pos: 56.5,-33.5 parent: 2 type: Transform - - uid: 28818 + - uid: 28860 components: - pos: 59.5,-37.5 parent: 2 type: Transform - - uid: 28819 + - uid: 28861 components: - pos: 59.5,-36.5 parent: 2 type: Transform - - uid: 28820 + - uid: 28862 components: - pos: 58.5,-36.5 parent: 2 type: Transform - - uid: 28821 + - uid: 28863 components: - pos: 47.5,-47.5 parent: 2 type: Transform - - uid: 28822 + - uid: 28864 components: - pos: 54.5,-40.5 parent: 2 type: Transform - - uid: 28823 + - uid: 28865 components: - pos: 55.5,-40.5 parent: 2 type: Transform - - uid: 28824 + - uid: 28866 components: - pos: 54.5,-42.5 parent: 2 type: Transform - - uid: 28825 + - uid: 28867 components: - pos: 54.5,-43.5 parent: 2 type: Transform - - uid: 28826 + - uid: 28868 components: - pos: 51.5,-48.5 parent: 2 type: Transform - - uid: 28827 + - uid: 28869 components: - pos: 48.5,-48.5 parent: 2 type: Transform - - uid: 28828 + - uid: 28870 components: - pos: 47.5,-48.5 parent: 2 type: Transform - - uid: 28829 + - uid: 28871 components: - pos: 56.5,-40.5 parent: 2 type: Transform - - uid: 28830 + - uid: 28872 components: - pos: 57.5,-40.5 parent: 2 type: Transform - - uid: 28831 + - uid: 28873 components: - rot: -1.5707963267948966 rad pos: 48.5,-36.5 parent: 2 type: Transform - - uid: 28832 + - uid: 28874 components: - pos: 58.5,-43.5 parent: 2 type: Transform - - uid: 28833 + - uid: 28875 components: - pos: 55.5,-43.5 parent: 2 type: Transform - - uid: 28834 + - uid: 28876 components: - pos: 56.5,-43.5 parent: 2 type: Transform - - uid: 28835 + - uid: 28877 components: - pos: 47.5,-49.5 parent: 2 type: Transform - - uid: 28836 + - uid: 28878 components: - pos: 47.5,-50.5 parent: 2 type: Transform - - uid: 28837 + - uid: 28879 components: - pos: 46.5,-50.5 parent: 2 type: Transform - - uid: 28838 + - uid: 28880 components: - pos: 45.5,-50.5 parent: 2 type: Transform - - uid: 28839 + - uid: 28881 components: - pos: 44.5,-50.5 parent: 2 type: Transform - - uid: 28840 + - uid: 28882 components: - pos: 43.5,-50.5 parent: 2 type: Transform - - uid: 28841 + - uid: 28883 components: - pos: 42.5,-50.5 parent: 2 type: Transform - - uid: 28842 + - uid: 28884 components: - pos: 41.5,-50.5 parent: 2 type: Transform - - uid: 28843 + - uid: 28885 components: - pos: 57.5,-31.5 parent: 2 type: Transform - - uid: 28844 + - uid: 28886 components: - pos: 47.5,-35.5 parent: 2 type: Transform - - uid: 28845 + - uid: 28887 components: - rot: -1.5707963267948966 rad pos: 46.5,-34.5 parent: 2 type: Transform - - uid: 28846 + - uid: 28888 components: - pos: 66.5,-49.5 parent: 2 type: Transform - - uid: 28847 + - uid: 28889 components: - pos: 66.5,-44.5 parent: 2 type: Transform - - uid: 28848 + - uid: 28890 components: - pos: 66.5,-43.5 parent: 2 type: Transform - - uid: 28849 + - uid: 28891 components: - pos: 37.5,-44.5 parent: 2 type: Transform - - uid: 28850 + - uid: 28892 components: - pos: 40.5,-45.5 parent: 2 type: Transform - - uid: 28851 + - uid: 28893 components: - pos: 40.5,-47.5 parent: 2 type: Transform - - uid: 28852 + - uid: 28894 components: - pos: 40.5,-44.5 parent: 2 type: Transform - - uid: 28853 + - uid: 28895 components: - pos: 40.5,-48.5 parent: 2 type: Transform - - uid: 28854 + - uid: 28896 components: - rot: -1.5707963267948966 rad pos: -17.5,23.5 parent: 2 type: Transform - - uid: 28855 + - uid: 28897 components: - pos: 46.5,-40.5 parent: 2 type: Transform - - uid: 28856 + - uid: 28898 components: - pos: 52.5,-59.5 parent: 2 type: Transform - - uid: 28857 + - uid: 28899 components: - pos: 52.5,-60.5 parent: 2 type: Transform - - uid: 28858 + - uid: 28900 components: - pos: 66.5,-35.5 parent: 2 type: Transform - - uid: 28859 + - uid: 28901 components: - pos: 67.5,-35.5 parent: 2 type: Transform - - uid: 28860 + - uid: 28902 components: - pos: 68.5,-35.5 parent: 2 type: Transform - - uid: 28861 + - uid: 28903 components: - rot: -1.5707963267948966 rad pos: 66.5,-47.5 parent: 2 type: Transform - - uid: 28862 + - uid: 28904 components: - rot: 3.141592653589793 rad pos: 40.5,-46.5 parent: 2 type: Transform - - uid: 28863 + - uid: 28905 components: - pos: 8.5,-51.5 parent: 2 type: Transform - - uid: 28864 + - uid: 28906 components: - pos: 38.5,-47.5 parent: 2 type: Transform - - uid: 28865 + - uid: 28907 components: - pos: 37.5,-47.5 parent: 2 type: Transform - - uid: 28866 + - uid: 28908 components: - pos: 37.5,-46.5 parent: 2 type: Transform - - uid: 28867 + - uid: 28909 components: - pos: 37.5,-45.5 parent: 2 type: Transform - - uid: 28868 + - uid: 28910 components: - pos: 57.5,-63.5 parent: 2 type: Transform - - uid: 28869 + - uid: 28911 components: - pos: 57.5,-36.5 parent: 2 type: Transform - - uid: 28870 + - uid: 28912 components: - pos: 74.5,-50.5 parent: 2 type: Transform - - uid: 28871 + - uid: 28913 components: - pos: 59.5,-30.5 parent: 2 type: Transform - - uid: 28872 + - uid: 28914 components: - pos: 56.5,-31.5 parent: 2 type: Transform - - uid: 28873 + - uid: 28915 components: - pos: 58.5,-31.5 parent: 2 type: Transform - - uid: 28874 + - uid: 28916 components: - rot: -1.5707963267948966 rad pos: 47.5,-36.5 parent: 2 type: Transform - - uid: 28875 + - uid: 28917 components: - rot: 1.5707963267948966 rad pos: 29.5,-46.5 parent: 2 type: Transform - - uid: 28876 + - uid: 28918 components: - rot: 1.5707963267948966 rad pos: 30.5,-46.5 parent: 2 type: Transform - - uid: 28877 + - uid: 28919 components: - rot: 1.5707963267948966 rad pos: 32.5,-46.5 parent: 2 type: Transform - - uid: 28878 + - uid: 28920 components: - rot: 1.5707963267948966 rad pos: 34.5,-46.5 parent: 2 type: Transform - - uid: 28879 + - uid: 28921 components: - rot: 1.5707963267948966 rad pos: 35.5,-46.5 parent: 2 type: Transform - - uid: 28880 + - uid: 28922 components: - rot: 1.5707963267948966 rad pos: 35.5,-45.5 parent: 2 type: Transform - - uid: 28881 + - uid: 28923 components: - rot: 1.5707963267948966 rad pos: 35.5,-47.5 parent: 2 type: Transform - - uid: 28882 + - uid: 28924 components: - rot: 1.5707963267948966 rad pos: 35.5,-48.5 parent: 2 type: Transform - - uid: 28883 + - uid: 28925 components: - rot: 1.5707963267948966 rad pos: 35.5,-49.5 parent: 2 type: Transform - - uid: 28884 + - uid: 28926 components: - rot: 1.5707963267948966 rad pos: 35.5,-50.5 parent: 2 type: Transform - - uid: 28885 + - uid: 28927 components: - rot: 1.5707963267948966 rad pos: 35.5,-51.5 parent: 2 type: Transform - - uid: 28886 + - uid: 28928 components: - rot: 1.5707963267948966 rad pos: 35.5,-53.5 parent: 2 type: Transform - - uid: 28887 + - uid: 28929 components: - pos: 35.5,-52.5 parent: 2 type: Transform - - uid: 28888 + - uid: 28930 components: - rot: 1.5707963267948966 rad pos: 35.5,-55.5 parent: 2 type: Transform - - uid: 28889 + - uid: 28931 components: - rot: 1.5707963267948966 rad pos: 35.5,-56.5 parent: 2 type: Transform - - uid: 28890 + - uid: 28932 components: - rot: 1.5707963267948966 rad pos: 35.5,-57.5 parent: 2 type: Transform - - uid: 28891 + - uid: 28933 components: - rot: 1.5707963267948966 rad pos: 34.5,-57.5 parent: 2 type: Transform - - uid: 28892 + - uid: 28934 components: - pos: 60.5,-37.5 parent: 2 type: Transform - - uid: 28893 + - uid: 28935 components: - pos: 44.5,-55.5 parent: 2 type: Transform - - uid: 28894 + - uid: 28936 components: - pos: 44.5,-54.5 parent: 2 type: Transform - - uid: 28895 + - uid: 28937 components: - pos: 44.5,-53.5 parent: 2 type: Transform - - uid: 28896 + - uid: 28938 components: - pos: 44.5,-52.5 parent: 2 type: Transform - - uid: 28897 + - uid: 28939 components: - pos: 44.5,-51.5 parent: 2 type: Transform - - uid: 28898 + - uid: 28940 components: - pos: 45.5,-55.5 parent: 2 type: Transform - - uid: 28899 + - uid: 28941 components: - rot: 3.141592653589793 rad pos: 46.5,-55.5 parent: 2 type: Transform - - uid: 28900 + - uid: 28942 components: - pos: 47.5,-55.5 parent: 2 type: Transform - - uid: 28901 + - uid: 28943 components: - rot: 3.141592653589793 rad pos: 44.5,-57.5 parent: 2 type: Transform - - uid: 28902 + - uid: 28944 components: - rot: 3.141592653589793 rad pos: 44.5,-58.5 parent: 2 type: Transform - - uid: 28903 + - uid: 28945 components: - rot: 3.141592653589793 rad pos: 44.5,-59.5 parent: 2 type: Transform - - uid: 28904 + - uid: 28946 components: - rot: 3.141592653589793 rad pos: 44.5,-60.5 parent: 2 type: Transform - - uid: 28905 + - uid: 28947 components: - pos: 41.5,-63.5 parent: 2 type: Transform - - uid: 28906 + - uid: 28948 components: - pos: 41.5,-62.5 parent: 2 type: Transform - - uid: 28907 + - uid: 28949 components: - pos: 46.5,-61.5 parent: 2 type: Transform - - uid: 28908 + - uid: 28950 components: - pos: 52.5,-56.5 parent: 2 type: Transform - - uid: 28909 + - uid: 28951 components: - pos: 48.5,-59.5 parent: 2 type: Transform - - uid: 28910 + - uid: 28952 components: - pos: 47.5,-59.5 parent: 2 type: Transform - - uid: 28911 + - uid: 28953 components: - pos: 47.5,-60.5 parent: 2 type: Transform - - uid: 28912 + - uid: 28954 components: - pos: 47.5,-61.5 parent: 2 type: Transform - - uid: 28913 + - uid: 28955 components: - pos: 45.5,-61.5 parent: 2 type: Transform - - uid: 28914 + - uid: 28956 components: - pos: 44.5,-61.5 parent: 2 type: Transform - - uid: 28915 + - uid: 28957 components: - pos: 43.5,-61.5 parent: 2 type: Transform - - uid: 28916 + - uid: 28958 components: - pos: 42.5,-61.5 parent: 2 type: Transform - - uid: 28917 + - uid: 28959 components: - pos: 41.5,-61.5 parent: 2 type: Transform - - uid: 28918 + - uid: 28960 components: - pos: -18.5,0.5 parent: 2 type: Transform - - uid: 28919 + - uid: 28961 components: - pos: -20.5,0.5 parent: 2 type: Transform - - uid: 28920 + - uid: 28962 components: - rot: -1.5707963267948966 rad pos: -22.5,-16.5 parent: 2 type: Transform - - uid: 28921 + - uid: 28963 components: - pos: -30.5,-9.5 parent: 2 type: Transform - - uid: 28922 + - uid: 28964 components: - pos: -27.5,-15.5 parent: 2 type: Transform - - uid: 28923 + - uid: 28965 components: - pos: -28.5,-15.5 parent: 2 type: Transform - - uid: 28924 + - uid: 28966 components: - pos: -29.5,-15.5 parent: 2 type: Transform - - uid: 28925 + - uid: 28967 components: - pos: -30.5,-15.5 parent: 2 type: Transform - - uid: 28926 + - uid: 28968 components: - pos: -30.5,-11.5 parent: 2 type: Transform - - uid: 28927 + - uid: 28969 components: - pos: -30.5,-14.5 parent: 2 type: Transform - - uid: 28928 + - uid: 28970 components: - pos: -33.5,-13.5 parent: 2 type: Transform - - uid: 28929 + - uid: 28971 components: - pos: -27.5,-19.5 parent: 2 type: Transform - - uid: 28930 + - uid: 28972 components: - rot: -1.5707963267948966 rad pos: -22.5,-18.5 parent: 2 type: Transform - - uid: 28931 + - uid: 28973 components: - pos: -30.5,-19.5 parent: 2 type: Transform - - uid: 28932 + - uid: 28974 components: - rot: -1.5707963267948966 rad pos: -27.5,-6.5 parent: 2 type: Transform - - uid: 28933 + - uid: 28975 components: - rot: -1.5707963267948966 rad pos: -27.5,-5.5 parent: 2 type: Transform - - uid: 28934 + - uid: 28976 components: - rot: -1.5707963267948966 rad pos: -27.5,-4.5 parent: 2 type: Transform - - uid: 28935 + - uid: 28977 components: - rot: -1.5707963267948966 rad pos: -27.5,-3.5 parent: 2 type: Transform - - uid: 28936 + - uid: 28978 components: - rot: -1.5707963267948966 rad pos: -27.5,-2.5 parent: 2 type: Transform - - uid: 28937 + - uid: 28979 components: - rot: -1.5707963267948966 rad pos: -27.5,-1.5 parent: 2 type: Transform - - uid: 28938 + - uid: 28980 components: - pos: -28.5,2.5 parent: 2 type: Transform - - uid: 28939 + - uid: 28981 components: - pos: -28.5,-1.5 parent: 2 type: Transform - - uid: 28940 + - uid: 28982 components: - rot: 3.141592653589793 rad pos: -27.5,-7.5 parent: 2 type: Transform - - uid: 28941 + - uid: 28983 components: - rot: -1.5707963267948966 rad pos: -27.5,2.5 parent: 2 type: Transform - - uid: 28942 + - uid: 28984 components: - rot: -1.5707963267948966 rad pos: -27.5,3.5 parent: 2 type: Transform - - uid: 28943 + - uid: 28985 components: - rot: -1.5707963267948966 rad pos: -27.5,4.5 parent: 2 type: Transform - - uid: 28944 + - uid: 28986 components: - rot: -1.5707963267948966 rad pos: -27.5,5.5 parent: 2 type: Transform - - uid: 28945 + - uid: 28987 components: - rot: -1.5707963267948966 rad pos: -27.5,7.5 parent: 2 type: Transform - - uid: 28946 + - uid: 28988 components: - rot: -1.5707963267948966 rad pos: -27.5,8.5 parent: 2 type: Transform - - uid: 28947 + - uid: 28989 components: - rot: -1.5707963267948966 rad pos: -27.5,9.5 parent: 2 type: Transform - - uid: 28948 + - uid: 28990 components: - pos: -28.5,12.5 parent: 2 type: Transform - - uid: 28949 + - uid: 28991 components: - rot: -1.5707963267948966 rad pos: -29.5,-18.5 parent: 2 type: Transform - - uid: 28950 + - uid: 28992 components: - rot: -1.5707963267948966 rad pos: -28.5,-18.5 parent: 2 type: Transform - - uid: 28951 + - uid: 28993 components: - pos: -22.5,-25.5 parent: 2 type: Transform - - uid: 28952 + - uid: 28994 components: - pos: -23.5,-25.5 parent: 2 type: Transform - - uid: 28953 + - uid: 28995 components: - pos: -24.5,-25.5 parent: 2 type: Transform - - uid: 28954 + - uid: 28996 components: - pos: -25.5,-25.5 parent: 2 type: Transform - - uid: 28955 + - uid: 28997 components: - pos: -26.5,-25.5 parent: 2 type: Transform - - uid: 28956 + - uid: 28998 components: - pos: -27.5,-25.5 parent: 2 type: Transform - - uid: 28957 + - uid: 28999 components: - pos: -27.5,-23.5 parent: 2 type: Transform - - uid: 28958 + - uid: 29000 components: - pos: -27.5,-24.5 parent: 2 type: Transform - - uid: 28959 + - uid: 29001 components: - pos: -27.5,-21.5 parent: 2 type: Transform - - uid: 28960 + - uid: 29002 components: - pos: -27.5,-20.5 parent: 2 type: Transform - - uid: 28961 + - uid: 29003 components: - rot: -1.5707963267948966 rad pos: -21.5,-23.5 parent: 2 type: Transform - - uid: 28962 + - uid: 29004 components: - rot: -1.5707963267948966 rad pos: -26.5,-18.5 parent: 2 type: Transform - - uid: 28963 + - uid: 29005 components: - rot: -1.5707963267948966 rad pos: -28.5,-24.5 parent: 2 type: Transform - - uid: 28964 + - uid: 29006 components: - rot: -1.5707963267948966 rad pos: -29.5,-24.5 parent: 2 type: Transform - - uid: 28965 + - uid: 29007 components: - rot: -1.5707963267948966 rad pos: -30.5,-24.5 parent: 2 type: Transform - - uid: 28966 + - uid: 29008 components: - rot: -1.5707963267948966 rad pos: -30.5,-20.5 parent: 2 type: Transform - - uid: 28967 + - uid: 29009 components: - pos: -30.5,-21.5 parent: 2 type: Transform - - uid: 28968 + - uid: 29010 components: - pos: -30.5,-22.5 parent: 2 type: Transform - - uid: 28969 + - uid: 29011 components: - pos: 50.5,41.5 parent: 2 type: Transform - - uid: 28970 + - uid: 29012 components: - pos: -21.5,-25.5 parent: 2 type: Transform - - uid: 28971 + - uid: 29013 components: - pos: -21.5,-27.5 parent: 2 type: Transform - - uid: 28972 + - uid: 29014 components: - pos: -21.5,-28.5 parent: 2 type: Transform - - uid: 28973 + - uid: 29015 components: - pos: -21.5,-29.5 parent: 2 type: Transform - - uid: 28974 + - uid: 29016 components: - pos: -21.5,-30.5 parent: 2 type: Transform - - uid: 28975 + - uid: 29017 components: - pos: -21.5,-31.5 parent: 2 type: Transform - - uid: 28976 + - uid: 29018 components: - pos: -21.5,-33.5 parent: 2 type: Transform - - uid: 28977 + - uid: 29019 components: - pos: -21.5,-36.5 parent: 2 type: Transform - - uid: 28978 + - uid: 29020 components: - pos: -21.5,-37.5 parent: 2 type: Transform - - uid: 28979 + - uid: 29021 components: - pos: -21.5,-38.5 parent: 2 type: Transform - - uid: 28980 + - uid: 29022 components: - pos: -21.5,-39.5 parent: 2 type: Transform - - uid: 28981 + - uid: 29023 components: - pos: -21.5,-40.5 parent: 2 type: Transform - - uid: 28982 + - uid: 29024 components: - pos: -21.5,-41.5 parent: 2 type: Transform - - uid: 28983 + - uid: 29025 components: - pos: -21.5,-43.5 parent: 2 type: Transform - - uid: 28984 + - uid: 29026 components: - pos: 37.5,-49.5 parent: 2 type: Transform - - uid: 28985 + - uid: 29027 components: - pos: 38.5,-49.5 parent: 2 type: Transform - - uid: 28986 + - uid: 29028 components: - pos: 39.5,-50.5 parent: 2 type: Transform - - uid: 28987 + - uid: 29029 components: - pos: 38.5,-50.5 parent: 2 type: Transform - - uid: 28988 + - uid: 29030 components: - pos: -1.5,-12.5 parent: 2 type: Transform - - uid: 28989 + - uid: 29031 components: - pos: -1.5,-13.5 parent: 2 type: Transform - - uid: 28990 + - uid: 29032 components: - pos: 57.5,-61.5 parent: 2 type: Transform - - uid: 28991 + - uid: 29033 components: - pos: 6.5,-58.5 parent: 2 type: Transform - - uid: 28992 + - uid: 29034 components: - pos: -22.5,-27.5 parent: 2 type: Transform - - uid: 28993 + - uid: 29035 components: - pos: -17.5,-30.5 parent: 2 type: Transform - - uid: 28994 + - uid: 29036 components: - rot: 3.141592653589793 rad pos: 42.5,-58.5 parent: 2 type: Transform - - uid: 28995 + - uid: 29037 components: - rot: 3.141592653589793 rad pos: 42.5,-60.5 parent: 2 type: Transform - - uid: 28996 + - uid: 29038 components: - pos: 9.5,-69.5 parent: 2 type: Transform - - uid: 28997 + - uid: 29039 components: - pos: 5.5,-72.5 parent: 2 type: Transform - - uid: 28998 + - uid: 29040 components: - pos: -40.5,-13.5 parent: 2 type: Transform - - uid: 28999 + - uid: 29041 components: - pos: -40.5,-8.5 parent: 2 type: Transform - - uid: 29000 + - uid: 29042 components: - pos: -40.5,-7.5 parent: 2 type: Transform - - uid: 29001 + - uid: 29043 components: - pos: -33.5,-8.5 parent: 2 type: Transform - - uid: 29002 + - uid: 29044 components: - pos: -30.5,-8.5 parent: 2 type: Transform - - uid: 29003 + - uid: 29045 components: - pos: -33.5,-20.5 parent: 2 type: Transform - - uid: 29004 + - uid: 29046 components: - pos: -30.5,-25.5 parent: 2 type: Transform - - uid: 29005 + - uid: 29047 components: - pos: -33.5,-25.5 parent: 2 type: Transform - - uid: 29006 + - uid: 29048 components: - pos: -33.5,-21.5 parent: 2 type: Transform - - uid: 29007 + - uid: 29049 components: - pos: -23.5,-27.5 parent: 2 type: Transform - - uid: 29008 + - uid: 29050 components: - pos: -24.5,-27.5 parent: 2 type: Transform - - uid: 29009 + - uid: 29051 components: - rot: 1.5707963267948966 rad pos: -26.5,-28.5 parent: 2 type: Transform - - uid: 29010 + - uid: 29052 components: - pos: -26.5,-27.5 parent: 2 type: Transform - - uid: 29011 + - uid: 29053 components: - pos: -27.5,-27.5 parent: 2 type: Transform - - uid: 29012 + - uid: 29054 components: - pos: -28.5,-27.5 parent: 2 type: Transform - - uid: 29013 + - uid: 29055 components: - pos: -29.5,-27.5 parent: 2 type: Transform - - uid: 29014 + - uid: 29056 components: - pos: -30.5,-27.5 parent: 2 type: Transform - - uid: 29015 + - uid: 29057 components: - pos: -33.5,-27.5 parent: 2 type: Transform - - uid: 29016 + - uid: 29058 components: - pos: -34.5,-27.5 parent: 2 type: Transform - - uid: 29017 + - uid: 29059 components: - pos: -35.5,-27.5 parent: 2 type: Transform - - uid: 29018 + - uid: 29060 components: - pos: -36.5,-27.5 parent: 2 type: Transform - - uid: 29019 + - uid: 29061 components: - pos: -33.5,-28.5 parent: 2 type: Transform - - uid: 29020 + - uid: 29062 components: - pos: -33.5,-29.5 parent: 2 type: Transform - - uid: 29021 + - uid: 29063 components: - pos: -33.5,-30.5 parent: 2 type: Transform - - uid: 29022 + - uid: 29064 components: - pos: -30.5,-28.5 parent: 2 type: Transform - - uid: 29023 + - uid: 29065 components: - pos: -30.5,-29.5 parent: 2 type: Transform - - uid: 29024 + - uid: 29066 components: - pos: -30.5,-30.5 parent: 2 type: Transform - - uid: 29025 + - uid: 29067 components: - pos: -45.5,-25.5 parent: 2 type: Transform - - uid: 29026 + - uid: 29068 components: - pos: -45.5,-26.5 parent: 2 type: Transform - - uid: 29027 + - uid: 29069 components: - pos: -36.5,-26.5 parent: 2 type: Transform - - uid: 29028 + - uid: 29070 components: - pos: -36.5,-25.5 parent: 2 type: Transform - - uid: 29029 + - uid: 29071 components: - pos: -37.5,-25.5 parent: 2 type: Transform - - uid: 29030 + - uid: 29072 components: - pos: -38.5,-25.5 parent: 2 type: Transform - - uid: 29031 + - uid: 29073 components: - pos: -34.5,-21.5 parent: 2 type: Transform - - uid: 29032 + - uid: 29074 components: - pos: -35.5,-21.5 parent: 2 type: Transform - - uid: 29033 + - uid: 29075 components: - pos: -36.5,-21.5 parent: 2 type: Transform - - uid: 29034 + - uid: 29076 components: - pos: -38.5,-21.5 parent: 2 type: Transform - - uid: 29035 + - uid: 29077 components: - pos: -36.5,-22.5 parent: 2 type: Transform - - uid: 29036 + - uid: 29078 components: - pos: -36.5,-23.5 parent: 2 type: Transform - - uid: 29037 + - uid: 29079 components: - pos: -38.5,-23.5 parent: 2 type: Transform - - uid: 29038 + - uid: 29080 components: - pos: -38.5,-24.5 parent: 2 type: Transform - - uid: 29039 + - uid: 29081 components: - pos: -39.5,-21.5 parent: 2 type: Transform - - uid: 29040 + - uid: 29082 components: - pos: 52.5,-35.5 parent: 2 type: Transform - - uid: 29041 + - uid: 29083 components: - pos: 53.5,-33.5 parent: 2 type: Transform - - uid: 29042 + - uid: 29084 components: - pos: 54.5,-62.5 parent: 2 type: Transform - - uid: 29043 + - uid: 29085 components: - pos: 44.5,-6.5 parent: 2 type: Transform - - uid: 29044 + - uid: 29086 components: - rot: 1.5707963267948966 rad pos: -28.5,7.5 parent: 2 type: Transform - - uid: 29045 + - uid: 29087 components: - rot: 1.5707963267948966 rad pos: -28.5,6.5 parent: 2 type: Transform - - uid: 29046 + - uid: 29088 components: - rot: 1.5707963267948966 rad pos: -28.5,5.5 parent: 2 type: Transform - - uid: 29047 + - uid: 29089 components: - pos: -49.5,-29.5 parent: 2 type: Transform - - uid: 29048 + - uid: 29090 components: - pos: -51.5,-30.5 parent: 2 type: Transform - - uid: 29049 + - uid: 29091 components: - pos: -50.5,-30.5 parent: 2 type: Transform - - uid: 29050 + - uid: 29092 components: - pos: -43.5,-21.5 parent: 2 type: Transform - - uid: 29051 + - uid: 29093 components: - pos: -43.5,-20.5 parent: 2 type: Transform - - uid: 29052 + - uid: 29094 components: - rot: 1.5707963267948966 rad pos: -42.5,-25.5 parent: 2 type: Transform - - uid: 29053 + - uid: 29095 components: - rot: 1.5707963267948966 rad pos: -40.5,-25.5 parent: 2 type: Transform - - uid: 29054 + - uid: 29096 components: - rot: 1.5707963267948966 rad pos: -39.5,-25.5 parent: 2 type: Transform - - uid: 29055 + - uid: 29097 components: - rot: 1.5707963267948966 rad pos: -40.5,-27.5 parent: 2 type: Transform - - uid: 29056 + - uid: 29098 components: - rot: 1.5707963267948966 rad pos: -41.5,-27.5 parent: 2 type: Transform - - uid: 29057 + - uid: 29099 components: - rot: 1.5707963267948966 rad pos: -42.5,-27.5 parent: 2 type: Transform - - uid: 29058 + - uid: 29100 components: - rot: 1.5707963267948966 rad pos: -39.5,-27.5 parent: 2 type: Transform - - uid: 29059 + - uid: 29101 components: - rot: 1.5707963267948966 rad pos: -23.5,-30.5 parent: 2 type: Transform - - uid: 29060 + - uid: 29102 components: - rot: 1.5707963267948966 rad pos: -25.5,-30.5 parent: 2 type: Transform - - uid: 29061 + - uid: 29103 components: - rot: 1.5707963267948966 rad pos: -26.5,-30.5 parent: 2 type: Transform - - uid: 29062 + - uid: 29104 components: - rot: 1.5707963267948966 rad pos: -26.5,-31.5 parent: 2 type: Transform - - uid: 29063 + - uid: 29105 components: - rot: 1.5707963267948966 rad pos: -26.5,-32.5 parent: 2 type: Transform - - uid: 29064 + - uid: 29106 components: - rot: 1.5707963267948966 rad pos: -27.5,-32.5 parent: 2 type: Transform - - uid: 29065 + - uid: 29107 components: - rot: 1.5707963267948966 rad pos: -28.5,-32.5 parent: 2 type: Transform - - uid: 29066 + - uid: 29108 components: - rot: 1.5707963267948966 rad pos: -29.5,-32.5 parent: 2 type: Transform - - uid: 29067 + - uid: 29109 components: - rot: 1.5707963267948966 rad pos: -29.5,-31.5 parent: 2 type: Transform - - uid: 29068 + - uid: 29110 components: - rot: 1.5707963267948966 rad pos: -30.5,-31.5 parent: 2 type: Transform - - uid: 29069 + - uid: 29111 components: - rot: 1.5707963267948966 rad pos: -26.5,-35.5 parent: 2 type: Transform - - uid: 29070 + - uid: 29112 components: - rot: 1.5707963267948966 rad pos: -26.5,-36.5 parent: 2 type: Transform - - uid: 29071 + - uid: 29113 components: - pos: -29.5,-37.5 parent: 2 type: Transform - - uid: 29072 + - uid: 29114 components: - rot: 1.5707963267948966 rad pos: -28.5,-35.5 parent: 2 type: Transform - - uid: 29073 + - uid: 29115 components: - rot: 1.5707963267948966 rad pos: -29.5,-36.5 parent: 2 type: Transform - - uid: 29074 + - uid: 29116 components: - rot: 1.5707963267948966 rad pos: -30.5,-36.5 parent: 2 type: Transform - - uid: 29075 + - uid: 29117 components: - rot: 1.5707963267948966 rad pos: -33.5,-36.5 parent: 2 type: Transform - - uid: 29076 + - uid: 29118 components: - rot: 1.5707963267948966 rad pos: -34.5,-36.5 parent: 2 type: Transform - - uid: 29077 + - uid: 29119 components: - rot: 1.5707963267948966 rad pos: -34.5,-31.5 parent: 2 type: Transform - - uid: 29078 + - uid: 29120 components: - rot: 1.5707963267948966 rad pos: -34.5,-32.5 parent: 2 type: Transform - - uid: 29079 + - uid: 29121 components: - pos: -34.5,-37.5 parent: 2 type: Transform - - uid: 29080 + - uid: 29122 components: - rot: 1.5707963267948966 rad pos: -34.5,-35.5 parent: 2 type: Transform - - uid: 29081 + - uid: 29123 components: - rot: 1.5707963267948966 rad pos: -33.5,-31.5 parent: 2 type: Transform - - uid: 29082 + - uid: 29124 components: - rot: 1.5707963267948966 rad pos: -29.5,-35.5 parent: 2 type: Transform - - uid: 29083 + - uid: 29125 components: - rot: 1.5707963267948966 rad pos: -22.5,-30.5 parent: 2 type: Transform - - uid: 29084 + - uid: 29126 components: - rot: 1.5707963267948966 rad pos: -24.5,-28.5 parent: 2 type: Transform - - uid: 29085 + - uid: 29127 components: - rot: 3.141592653589793 rad pos: -28.5,-6.5 parent: 2 type: Transform - - uid: 29086 + - uid: 29128 components: - pos: -31.5,-4.5 parent: 2 type: Transform - - uid: 29087 + - uid: 29129 components: - pos: -32.5,-4.5 parent: 2 type: Transform - - uid: 29088 + - uid: 29130 components: - pos: -33.5,-4.5 parent: 2 type: Transform - - uid: 29089 + - uid: 29131 components: - pos: -34.5,-4.5 parent: 2 type: Transform - - uid: 29090 + - uid: 29132 components: - pos: -35.5,-4.5 parent: 2 type: Transform - - uid: 29091 + - uid: 29133 components: - pos: -38.5,-3.5 parent: 2 type: Transform - - uid: 29092 + - uid: 29134 components: - pos: -39.5,-3.5 parent: 2 type: Transform - - uid: 29093 + - uid: 29135 components: - pos: -35.5,-3.5 parent: 2 type: Transform - - uid: 29094 + - uid: 29136 components: - pos: -39.5,-4.5 parent: 2 type: Transform - - uid: 29095 + - uid: 29137 components: - pos: -40.5,-4.5 parent: 2 type: Transform - - uid: 29096 + - uid: 29138 components: - pos: -42.5,-4.5 parent: 2 type: Transform - - uid: 29097 + - uid: 29139 components: - pos: -43.5,-4.5 parent: 2 type: Transform - - uid: 29098 + - uid: 29140 components: - pos: -22.5,-40.5 parent: 2 type: Transform - - uid: 29099 + - uid: 29141 components: - pos: -23.5,-40.5 parent: 2 type: Transform - - uid: 29100 + - uid: 29142 components: - pos: -24.5,-40.5 parent: 2 type: Transform - - uid: 29101 + - uid: 29143 components: - pos: -24.5,-41.5 parent: 2 type: Transform - - uid: 29102 + - uid: 29144 components: - pos: -24.5,-42.5 parent: 2 type: Transform - - uid: 29103 + - uid: 29145 components: - pos: -24.5,-43.5 parent: 2 type: Transform - - uid: 29104 + - uid: 29146 components: - pos: -24.5,-44.5 parent: 2 type: Transform - - uid: 29105 + - uid: 29147 components: - pos: -24.5,-45.5 parent: 2 type: Transform - - uid: 29106 + - uid: 29148 components: - pos: -24.5,-46.5 parent: 2 type: Transform - - uid: 29107 + - uid: 29149 components: - pos: -24.5,-47.5 parent: 2 type: Transform - - uid: 29108 + - uid: 29150 components: - pos: -22.5,-37.5 parent: 2 type: Transform - - uid: 29109 + - uid: 29151 components: - pos: -23.5,-37.5 parent: 2 type: Transform - - uid: 29110 + - uid: 29152 components: - pos: -24.5,-37.5 parent: 2 type: Transform - - uid: 29111 + - uid: 29153 components: - pos: -25.5,-37.5 parent: 2 type: Transform - - uid: 29112 + - uid: 29154 components: - pos: -26.5,-37.5 parent: 2 type: Transform - - uid: 29113 + - uid: 29155 components: - pos: -35.5,-31.5 parent: 2 type: Transform - - uid: 29114 + - uid: 29156 components: - pos: -36.5,-31.5 parent: 2 type: Transform - - uid: 29115 + - uid: 29157 components: - pos: -37.5,-31.5 parent: 2 type: Transform - - uid: 29116 + - uid: 29158 components: - pos: -38.5,-31.5 parent: 2 type: Transform - - uid: 29117 + - uid: 29159 components: - pos: -39.5,-31.5 parent: 2 type: Transform - - uid: 29118 + - uid: 29160 components: - pos: -30.5,-38.5 parent: 2 type: Transform - - uid: 29119 + - uid: 29161 components: - pos: -30.5,-39.5 parent: 2 type: Transform - - uid: 29120 + - uid: 29162 components: - pos: -30.5,-41.5 parent: 2 type: Transform - - uid: 29121 + - uid: 29163 components: - pos: -30.5,-42.5 parent: 2 type: Transform - - uid: 29122 + - uid: 29164 components: - pos: -31.5,-42.5 parent: 2 type: Transform - - uid: 29123 + - uid: 29165 components: - pos: -48.5,-4.5 parent: 2 type: Transform - - uid: 29124 + - uid: 29166 components: - pos: -47.5,-4.5 parent: 2 type: Transform - - uid: 29125 + - uid: 29167 components: - pos: -46.5,-4.5 parent: 2 type: Transform - - uid: 29126 + - uid: 29168 components: - pos: -45.5,-4.5 parent: 2 type: Transform - - uid: 29127 + - uid: 29169 components: - pos: -44.5,-4.5 parent: 2 type: Transform - - uid: 29128 + - uid: 29170 components: - pos: -55.5,-19.5 parent: 2 type: Transform - - uid: 29129 + - uid: 29171 components: - pos: -55.5,-20.5 parent: 2 type: Transform - - uid: 29130 + - uid: 29172 components: - pos: -47.5,-26.5 parent: 2 type: Transform - - uid: 29131 + - uid: 29173 components: - pos: -48.5,-26.5 parent: 2 type: Transform - - uid: 29132 + - uid: 29174 components: - pos: -49.5,-26.5 parent: 2 type: Transform - - uid: 29133 + - uid: 29175 components: - pos: -50.5,-26.5 parent: 2 type: Transform - - uid: 29134 + - uid: 29176 components: - rot: 3.141592653589793 rad pos: -41.5,15.5 parent: 2 type: Transform - - uid: 29135 + - uid: 29177 components: - pos: -31.5,-6.5 parent: 2 type: Transform - - uid: 29136 + - uid: 29178 components: - pos: -32.5,-6.5 parent: 2 type: Transform - - uid: 29137 + - uid: 29179 components: - pos: -32.5,-8.5 parent: 2 type: Transform - - uid: 29138 + - uid: 29180 components: - pos: -31.5,-8.5 parent: 2 type: Transform - - uid: 29139 + - uid: 29181 components: - pos: -33.5,-6.5 parent: 2 type: Transform - - uid: 29140 + - uid: 29182 components: - pos: -33.5,-5.5 parent: 2 type: Transform - - uid: 29141 + - uid: 29183 components: - pos: -37.5,-3.5 parent: 2 type: Transform - - uid: 29142 + - uid: 29184 components: - pos: -36.5,-3.5 parent: 2 type: Transform - - uid: 29143 + - uid: 29185 components: - pos: -65.5,-29.5 parent: 2 type: Transform - - uid: 29144 + - uid: 29186 components: - pos: -70.5,-27.5 parent: 2 type: Transform - - uid: 29145 + - uid: 29187 components: - pos: -74.5,-27.5 parent: 2 type: Transform - - uid: 29146 + - uid: 29188 components: - pos: -69.5,-28.5 parent: 2 type: Transform - - uid: 29147 + - uid: 29189 components: - pos: -69.5,-29.5 parent: 2 type: Transform - - uid: 29148 + - uid: 29190 components: - pos: -69.5,-30.5 parent: 2 type: Transform - - uid: 29149 + - uid: 29191 components: - pos: -57.5,-29.5 parent: 2 type: Transform - - uid: 29150 + - uid: 29192 components: - pos: -53.5,-29.5 parent: 2 type: Transform - - uid: 29151 + - uid: 29193 components: - pos: -53.5,-30.5 parent: 2 type: Transform - - uid: 29152 + - uid: 29194 components: - pos: -49.5,-27.5 parent: 2 type: Transform - - uid: 29153 + - uid: 29195 components: - pos: -49.5,-28.5 parent: 2 type: Transform - - uid: 29154 + - uid: 29196 components: - pos: -56.5,-30.5 parent: 2 type: Transform - - uid: 29155 + - uid: 29197 components: - pos: -56.5,-31.5 parent: 2 type: Transform - - uid: 29156 + - uid: 29198 components: - pos: -57.5,-31.5 parent: 2 type: Transform - - uid: 29157 + - uid: 29199 components: - pos: -63.5,-25.5 parent: 2 type: Transform - - uid: 29158 + - uid: 29200 components: - pos: -57.5,-22.5 parent: 2 type: Transform - - uid: 29159 + - uid: 29201 components: - pos: -55.5,-21.5 parent: 2 type: Transform - - uid: 29160 + - uid: 29202 components: - pos: -55.5,-22.5 parent: 2 type: Transform - - uid: 29161 + - uid: 29203 components: - pos: -49.5,-30.5 parent: 2 type: Transform - - uid: 29162 + - uid: 29204 components: - pos: -71.5,-27.5 parent: 2 type: Transform - - uid: 29163 + - uid: 29205 components: - pos: -67.5,-29.5 parent: 2 type: Transform - - uid: 29164 + - uid: 29206 components: - pos: -54.5,-29.5 parent: 2 type: Transform - - uid: 29165 + - uid: 29207 components: - pos: -53.5,-31.5 parent: 2 type: Transform - - uid: 29166 + - uid: 29208 components: - pos: -56.5,-29.5 parent: 2 type: Transform - - uid: 29167 + - uid: 29209 components: - pos: -51.5,-26.5 parent: 2 type: Transform - - uid: 29168 + - uid: 29210 components: - pos: -36.5,-49.5 parent: 2 type: Transform - - uid: 29169 + - uid: 29211 components: - pos: -36.5,-50.5 parent: 2 type: Transform - - uid: 29170 + - uid: 29212 components: - pos: -36.5,-51.5 parent: 2 type: Transform - - uid: 29171 + - uid: 29213 components: - pos: -36.5,-52.5 parent: 2 type: Transform - - uid: 29172 + - uid: 29214 components: - pos: -36.5,-48.5 parent: 2 type: Transform - - uid: 29173 + - uid: 29215 components: - pos: -36.5,-47.5 parent: 2 type: Transform - - uid: 29174 + - uid: 29216 components: - pos: 69.5,-60.5 parent: 2 type: Transform - - uid: 29175 + - uid: 29217 components: - rot: -1.5707963267948966 rad pos: -30.5,-18.5 parent: 2 type: Transform - - uid: 29176 + - uid: 29218 components: - pos: -29.5,-38.5 parent: 2 type: Transform - - uid: 29177 + - uid: 29219 components: - pos: -28.5,-38.5 parent: 2 type: Transform - - uid: 29178 + - uid: 29220 components: - pos: -27.5,-38.5 parent: 2 type: Transform - - uid: 29179 + - uid: 29221 components: - pos: -26.5,-38.5 parent: 2 type: Transform - - uid: 29180 + - uid: 29222 components: - rot: -1.5707963267948966 rad pos: -21.5,-16.5 parent: 2 type: Transform - - uid: 29181 + - uid: 29223 components: - pos: -33.5,-7.5 parent: 2 type: Transform - - uid: 29182 + - uid: 29224 components: - pos: -57.5,-3.5 parent: 2 type: Transform - - uid: 29183 + - uid: 29225 components: - pos: -69.5,-25.5 parent: 2 type: Transform - - uid: 29184 + - uid: 29226 components: - pos: -69.5,-26.5 parent: 2 type: Transform - - uid: 29185 + - uid: 29227 components: - pos: -69.5,-27.5 parent: 2 type: Transform - - uid: 29186 + - uid: 29228 components: - rot: -1.5707963267948966 rad pos: -43.5,-25.5 parent: 2 type: Transform - - uid: 29187 + - uid: 29229 components: - rot: -1.5707963267948966 rad pos: -45.5,-29.5 parent: 2 type: Transform - - uid: 29188 + - uid: 29230 components: - rot: -1.5707963267948966 rad pos: -45.5,-30.5 parent: 2 type: Transform - - uid: 29189 + - uid: 29231 components: - pos: -46.5,-29.5 parent: 2 type: Transform - - uid: 29190 + - uid: 29232 components: - rot: -1.5707963267948966 rad pos: -47.5,-29.5 parent: 2 type: Transform - - uid: 29191 + - uid: 29233 components: - rot: -1.5707963267948966 rad pos: -47.5,-28.5 parent: 2 type: Transform - - uid: 29192 + - uid: 29234 components: - rot: -1.5707963267948966 rad pos: -57.5,-34.5 parent: 2 type: Transform - - uid: 29193 + - uid: 29235 components: - rot: -1.5707963267948966 rad pos: -56.5,-34.5 parent: 2 type: Transform - - uid: 29194 + - uid: 29236 components: - rot: -1.5707963267948966 rad pos: -54.5,-34.5 parent: 2 type: Transform - - uid: 29195 + - uid: 29237 components: - rot: -1.5707963267948966 rad pos: -57.5,-40.5 parent: 2 type: Transform - - uid: 29196 + - uid: 29238 components: - rot: -1.5707963267948966 rad pos: -34.5,-29.5 parent: 2 type: Transform - - uid: 29197 + - uid: 29239 components: - pos: -55.5,-65.5 parent: 2 type: Transform - - uid: 29198 + - uid: 29240 components: - pos: -54.5,-65.5 parent: 2 type: Transform - - uid: 29199 + - uid: 29241 components: - pos: -53.5,-65.5 parent: 2 type: Transform - - uid: 29200 + - uid: 29242 components: - pos: -52.5,-65.5 parent: 2 type: Transform - - uid: 29201 + - uid: 29243 components: - pos: -51.5,-65.5 parent: 2 type: Transform - - uid: 29202 + - uid: 29244 components: - pos: -51.5,-64.5 parent: 2 type: Transform - - uid: 29203 + - uid: 29245 components: - pos: -51.5,-62.5 parent: 2 type: Transform - - uid: 29204 + - uid: 29246 components: - pos: -56.5,-69.5 parent: 2 type: Transform - - uid: 29205 + - uid: 29247 components: - pos: -23.5,-50.5 parent: 2 type: Transform - - uid: 29206 + - uid: 29248 components: - pos: -24.5,-50.5 parent: 2 type: Transform - - uid: 29207 + - uid: 29249 components: - pos: -25.5,-50.5 parent: 2 type: Transform - - uid: 29208 + - uid: 29250 components: - pos: -24.5,-48.5 parent: 2 type: Transform - - uid: 29209 + - uid: 29251 components: - pos: -26.5,-48.5 parent: 2 type: Transform - - uid: 29210 + - uid: 29252 components: - pos: -25.5,-48.5 parent: 2 type: Transform - - uid: 29211 + - uid: 29253 components: - pos: -26.5,-50.5 parent: 2 type: Transform - - uid: 29212 + - uid: 29254 components: - pos: -27.5,-50.5 parent: 2 type: Transform - - uid: 29213 + - uid: 29255 components: - pos: -28.5,-50.5 parent: 2 type: Transform - - uid: 29214 + - uid: 29256 components: - pos: -28.5,-49.5 parent: 2 type: Transform - - uid: 29215 + - uid: 29257 components: - pos: -28.5,-48.5 parent: 2 type: Transform - - uid: 29216 + - uid: 29258 components: - pos: -28.5,-46.5 parent: 2 type: Transform - - uid: 29217 + - uid: 29259 components: - pos: -28.5,-45.5 parent: 2 type: Transform - - uid: 29218 + - uid: 29260 components: - pos: -29.5,-45.5 parent: 2 type: Transform - - uid: 29219 + - uid: 29261 components: - pos: -29.5,-42.5 parent: 2 type: Transform - - uid: 29220 + - uid: 29262 components: - pos: -28.5,-42.5 parent: 2 type: Transform - - uid: 29221 + - uid: 29263 components: - pos: -27.5,-42.5 parent: 2 type: Transform - - uid: 29222 + - uid: 29264 components: - pos: -26.5,-42.5 parent: 2 type: Transform - - uid: 29223 + - uid: 29265 components: - pos: -26.5,-43.5 parent: 2 type: Transform - - uid: 29224 + - uid: 29266 components: - pos: -26.5,-44.5 parent: 2 type: Transform - - uid: 29225 + - uid: 29267 components: - pos: -26.5,-45.5 parent: 2 type: Transform - - uid: 29226 + - uid: 29268 components: - pos: -30.5,-45.5 parent: 2 type: Transform - - uid: 29227 + - uid: 29269 components: - pos: -29.5,-49.5 parent: 2 type: Transform - - uid: 29228 + - uid: 29270 components: - pos: -31.5,-49.5 parent: 2 type: Transform - - uid: 29229 + - uid: 29271 components: - pos: -27.5,-39.5 parent: 2 type: Transform - - uid: 29230 + - uid: 29272 components: - pos: -27.5,-40.5 parent: 2 type: Transform - - uid: 29231 + - uid: 29273 components: - pos: -23.5,-52.5 parent: 2 type: Transform - - uid: 29232 + - uid: 29274 components: - pos: -23.5,-53.5 parent: 2 type: Transform - - uid: 29233 + - uid: 29275 components: - pos: -22.5,-56.5 parent: 2 type: Transform - - uid: 29234 + - uid: 29276 components: - pos: -23.5,-55.5 parent: 2 type: Transform - - uid: 29235 + - uid: 29277 components: - pos: -23.5,-56.5 parent: 2 type: Transform - - uid: 29236 + - uid: 29278 components: - pos: -24.5,-56.5 parent: 2 type: Transform - - uid: 29237 + - uid: 29279 components: - pos: -25.5,-56.5 parent: 2 type: Transform - - uid: 29238 + - uid: 29280 components: - pos: -26.5,-56.5 parent: 2 type: Transform - - uid: 29239 + - uid: 29281 components: - pos: -27.5,-56.5 parent: 2 type: Transform - - uid: 29240 + - uid: 29282 components: - pos: -29.5,-56.5 parent: 2 type: Transform - - uid: 29241 + - uid: 29283 components: - pos: -30.5,-56.5 parent: 2 type: Transform - - uid: 29242 + - uid: 29284 components: - pos: -30.5,-57.5 parent: 2 type: Transform - - uid: 29243 + - uid: 29285 components: - pos: -52.5,-11.5 parent: 2 type: Transform - - uid: 29244 + - uid: 29286 components: - pos: -52.5,-10.5 parent: 2 type: Transform - - uid: 29245 + - uid: 29287 components: - pos: -52.5,-9.5 parent: 2 type: Transform - - uid: 29246 + - uid: 29288 components: - pos: -52.5,-7.5 parent: 2 type: Transform - - uid: 29247 + - uid: 29289 components: - pos: -51.5,-7.5 parent: 2 type: Transform - - uid: 29248 + - uid: 29290 components: - pos: -50.5,-7.5 parent: 2 type: Transform - - uid: 29249 + - uid: 29291 components: - pos: -27.5,-62.5 parent: 2 type: Transform - - uid: 29250 + - uid: 29292 components: - pos: -29.5,-60.5 parent: 2 type: Transform - - uid: 29251 + - uid: 29293 components: - pos: -29.5,-61.5 parent: 2 type: Transform - - uid: 29252 + - uid: 29294 components: - pos: -27.5,-61.5 parent: 2 type: Transform - - uid: 29253 + - uid: 29295 components: - pos: -29.5,-62.5 parent: 2 type: Transform - - uid: 29254 + - uid: 29296 components: - pos: -29.5,-63.5 parent: 2 type: Transform - - uid: 29255 + - uid: 29297 components: - pos: -29.5,-64.5 parent: 2 type: Transform - - uid: 29256 + - uid: 29298 components: - pos: -28.5,-64.5 parent: 2 type: Transform - - uid: 29257 + - uid: 29299 components: - pos: -28.5,-65.5 parent: 2 type: Transform - - uid: 29258 + - uid: 29300 components: - pos: -27.5,-65.5 parent: 2 type: Transform - - uid: 29259 + - uid: 29301 components: - pos: -26.5,-65.5 parent: 2 type: Transform - - uid: 29260 + - uid: 29302 components: - pos: -25.5,-63.5 parent: 2 type: Transform - - uid: 29261 + - uid: 29303 components: - pos: -24.5,-63.5 parent: 2 type: Transform - - uid: 29262 + - uid: 29304 components: - pos: -24.5,-65.5 parent: 2 type: Transform - - uid: 29263 + - uid: 29305 components: - pos: -25.5,-65.5 parent: 2 type: Transform - - uid: 29264 + - uid: 29306 components: - pos: -27.5,-68.5 parent: 2 type: Transform - - uid: 29265 + - uid: 29307 components: - pos: -28.5,-68.5 parent: 2 type: Transform - - uid: 29266 + - uid: 29308 components: - pos: -29.5,-68.5 parent: 2 type: Transform - - uid: 29267 + - uid: 29309 components: - pos: -29.5,-67.5 parent: 2 type: Transform - - uid: 29268 + - uid: 29310 components: - pos: -31.5,-67.5 parent: 2 type: Transform - - uid: 29269 + - uid: 29311 components: - pos: -30.5,-64.5 parent: 2 type: Transform - - uid: 29270 + - uid: 29312 components: - pos: -30.5,-65.5 parent: 2 type: Transform - - uid: 29271 + - uid: 29313 components: - pos: -31.5,-65.5 parent: 2 type: Transform - - uid: 29272 + - uid: 29314 components: - pos: -32.5,-65.5 parent: 2 type: Transform - - uid: 29273 + - uid: 29315 components: - pos: -32.5,-64.5 parent: 2 type: Transform - - uid: 29274 + - uid: 29316 components: - pos: -33.5,-64.5 parent: 2 type: Transform - - uid: 29275 + - uid: 29317 components: - pos: -55.5,-69.5 parent: 2 type: Transform - - uid: 29276 + - uid: 29318 components: - pos: -54.5,-69.5 parent: 2 type: Transform - - uid: 29277 + - uid: 29319 components: - pos: -53.5,-69.5 parent: 2 type: Transform - - uid: 29278 + - uid: 29320 components: - pos: -52.5,-69.5 parent: 2 type: Transform - - uid: 29279 + - uid: 29321 components: - pos: -52.5,-70.5 parent: 2 type: Transform - - uid: 29280 + - uid: 29322 components: - pos: -52.5,-71.5 parent: 2 type: Transform - - uid: 29281 + - uid: 29323 components: - pos: -51.5,-71.5 parent: 2 type: Transform - - uid: 29282 + - uid: 29324 components: - pos: -51.5,-72.5 parent: 2 type: Transform - - uid: 29283 + - uid: 29325 components: - pos: -50.5,-72.5 parent: 2 type: Transform - - uid: 29284 + - uid: 29326 components: - pos: -50.5,-73.5 parent: 2 type: Transform - - uid: 29285 + - uid: 29327 components: - pos: -50.5,-74.5 parent: 2 type: Transform - - uid: 29286 + - uid: 29328 components: - pos: -50.5,-75.5 parent: 2 type: Transform - - uid: 29287 + - uid: 29329 components: - pos: -58.5,-80.5 parent: 2 type: Transform - - uid: 29288 + - uid: 29330 components: - pos: -58.5,-72.5 parent: 2 type: Transform - - uid: 29289 + - uid: 29331 components: - pos: -49.5,-75.5 parent: 2 type: Transform - - uid: 29290 + - uid: 29332 components: - pos: -48.5,-75.5 parent: 2 type: Transform - - uid: 29291 + - uid: 29333 components: - pos: -48.5,-73.5 parent: 2 type: Transform - - uid: 29292 + - uid: 29334 components: - pos: -48.5,-72.5 parent: 2 type: Transform - - uid: 29293 + - uid: 29335 components: - pos: -48.5,-71.5 parent: 2 type: Transform - - uid: 29294 + - uid: 29336 components: - pos: -47.5,-71.5 parent: 2 type: Transform - - uid: 29295 + - uid: 29337 components: - pos: -46.5,-71.5 parent: 2 type: Transform - - uid: 29296 + - uid: 29338 components: - pos: -46.5,-70.5 parent: 2 type: Transform - - uid: 29297 + - uid: 29339 components: - pos: -45.5,-70.5 parent: 2 type: Transform - - uid: 29298 + - uid: 29340 components: - pos: -45.5,-69.5 parent: 2 type: Transform - - uid: 29299 + - uid: 29341 components: - pos: -44.5,-69.5 parent: 2 type: Transform - - uid: 29300 + - uid: 29342 components: - pos: -43.5,-69.5 parent: 2 type: Transform - - uid: 29301 + - uid: 29343 components: - pos: -40.5,-68.5 parent: 2 type: Transform - - uid: 29302 + - uid: 29344 components: - pos: -40.5,-67.5 parent: 2 type: Transform - - uid: 29303 + - uid: 29345 components: - pos: -40.5,-69.5 parent: 2 type: Transform - - uid: 29304 + - uid: 29346 components: - pos: -39.5,-69.5 parent: 2 type: Transform - - uid: 29305 + - uid: 29347 components: - pos: -38.5,-69.5 parent: 2 type: Transform - - uid: 29306 + - uid: 29348 components: - pos: -38.5,-70.5 parent: 2 type: Transform - - uid: 29307 + - uid: 29349 components: - pos: -37.5,-70.5 parent: 2 type: Transform - - uid: 29308 + - uid: 29350 components: - pos: -37.5,-71.5 parent: 2 type: Transform - - uid: 29309 + - uid: 29351 components: - pos: -36.5,-71.5 parent: 2 type: Transform - - uid: 29310 + - uid: 29352 components: - pos: -35.5,-71.5 parent: 2 type: Transform - - uid: 29311 + - uid: 29353 components: - pos: -35.5,-72.5 parent: 2 type: Transform - - uid: 29312 + - uid: 29354 components: - pos: -40.5,-66.5 parent: 2 type: Transform - - uid: 29313 + - uid: 29355 components: - pos: -43.5,-68.5 parent: 2 type: Transform - - uid: 29314 + - uid: 29356 components: - pos: -40.5,-65.5 parent: 2 type: Transform - - uid: 29315 + - uid: 29357 components: - pos: -41.5,-65.5 parent: 2 type: Transform - - uid: 29316 + - uid: 29358 components: - pos: -42.5,-65.5 parent: 2 type: Transform - - uid: 29317 + - uid: 29359 components: - pos: -43.5,-65.5 parent: 2 type: Transform - - uid: 29318 + - uid: 29360 components: - pos: -44.5,-65.5 parent: 2 type: Transform - - uid: 29319 + - uid: 29361 components: - pos: -45.5,-65.5 parent: 2 type: Transform - - uid: 29320 + - uid: 29362 components: - pos: -46.5,-65.5 parent: 2 type: Transform - - uid: 29321 + - uid: 29363 components: - pos: -47.5,-65.5 parent: 2 type: Transform - - uid: 29322 + - uid: 29364 components: - pos: -48.5,-67.5 parent: 2 type: Transform - - uid: 29323 + - uid: 29365 components: - pos: -48.5,-68.5 parent: 2 type: Transform - - uid: 29324 + - uid: 29366 components: - pos: -48.5,-69.5 parent: 2 type: Transform - - uid: 29325 + - uid: 29367 components: - pos: -48.5,-70.5 parent: 2 type: Transform - - uid: 29326 + - uid: 29368 components: - pos: -48.5,-65.5 parent: 2 type: Transform - - uid: 29327 + - uid: 29369 components: - pos: -53.5,-66.5 parent: 2 type: Transform - - uid: 29328 + - uid: 29370 components: - pos: -51.5,-69.5 parent: 2 type: Transform - - uid: 29329 + - uid: 29371 components: - pos: -51.5,-68.5 parent: 2 type: Transform - - uid: 29330 + - uid: 29372 components: - pos: -35.5,-63.5 parent: 2 type: Transform - - uid: 29331 + - uid: 29373 components: - pos: -35.5,-64.5 parent: 2 type: Transform - - uid: 29332 + - uid: 29374 components: - pos: -36.5,-66.5 parent: 2 type: Transform - - uid: 29333 + - uid: 29375 components: - pos: -36.5,-67.5 parent: 2 type: Transform - - uid: 29334 + - uid: 29376 components: - pos: -35.5,-67.5 parent: 2 type: Transform - - uid: 29335 + - uid: 29377 components: - pos: -35.5,-68.5 parent: 2 type: Transform - - uid: 29336 + - uid: 29378 components: - pos: -34.5,-68.5 parent: 2 type: Transform - - uid: 29337 + - uid: 29379 components: - pos: -37.5,-66.5 parent: 2 type: Transform - - uid: 29338 + - uid: 29380 components: - pos: -38.5,-66.5 parent: 2 type: Transform - - uid: 29339 + - uid: 29381 components: - pos: -35.5,-69.5 parent: 2 type: Transform - - uid: 29340 + - uid: 29382 components: - pos: -33.5,-68.5 parent: 2 type: Transform - - uid: 29341 + - uid: 29383 components: - pos: -32.5,-68.5 parent: 2 type: Transform - - uid: 29342 + - uid: 29384 components: - pos: -31.5,-68.5 parent: 2 type: Transform - - uid: 29343 + - uid: 29385 components: - pos: -42.5,-63.5 parent: 2 type: Transform - - uid: 29344 + - uid: 29386 components: - pos: -46.5,-64.5 parent: 2 type: Transform - - uid: 29345 + - uid: 29387 components: - pos: -40.5,-73.5 parent: 2 type: Transform - - uid: 29346 + - uid: 29388 components: - pos: -44.5,-73.5 parent: 2 type: Transform - - uid: 29347 + - uid: 29389 components: - pos: -39.5,-74.5 parent: 2 type: Transform - - uid: 29348 + - uid: 29390 components: - pos: -42.5,-73.5 parent: 2 type: Transform - - uid: 29349 + - uid: 29391 components: - pos: -41.5,-73.5 parent: 2 type: Transform - - uid: 29350 + - uid: 29392 components: - pos: -43.5,-73.5 parent: 2 type: Transform - - uid: 29351 + - uid: 29393 components: - pos: -44.5,-74.5 parent: 2 type: Transform - - uid: 29352 + - uid: 29394 components: - pos: -39.5,-73.5 parent: 2 type: Transform - - uid: 29353 + - uid: 29395 components: - pos: -23.5,-63.5 parent: 2 type: Transform - - uid: 29354 + - uid: 29396 components: - rot: 3.141592653589793 rad pos: -30.5,-53.5 parent: 2 type: Transform - - uid: 29355 + - uid: 29397 components: - rot: 1.5707963267948966 rad pos: -29.5,-52.5 parent: 2 type: Transform - - uid: 29356 + - uid: 29398 components: - rot: 1.5707963267948966 rad pos: -29.5,-53.5 parent: 2 type: Transform - - uid: 29357 + - uid: 29399 components: - rot: 1.5707963267948966 rad pos: -29.5,-54.5 parent: 2 type: Transform - - uid: 29358 + - uid: 29400 components: - pos: -26.5,-62.5 parent: 2 type: Transform - - uid: 29359 + - uid: 29401 components: - pos: -45.5,-68.5 parent: 2 type: Transform - - uid: 29360 + - uid: 29402 components: - pos: -27.5,-59.5 parent: 2 type: Transform - - uid: 29361 + - uid: 29403 components: - pos: -37.5,-47.5 parent: 2 type: Transform - - uid: 29362 + - uid: 29404 components: - pos: -17.5,31.5 parent: 2 type: Transform - - uid: 29363 + - uid: 29405 components: - pos: -26.5,-63.5 parent: 2 type: Transform - - uid: 29364 + - uid: 29406 components: - pos: -22.5,-63.5 parent: 2 type: Transform - - uid: 29365 + - uid: 29407 components: - pos: 58.5,2.5 parent: 2 type: Transform - - uid: 29366 + - uid: 29408 components: - rot: -1.5707963267948966 rad pos: -1.5,-8.5 parent: 2 type: Transform - - uid: 29367 + - uid: 29409 components: - pos: -27.5,-57.5 parent: 2 type: Transform - - uid: 29368 + - uid: 29410 components: - pos: -53.5,-32.5 parent: 2 type: Transform - - uid: 29369 + - uid: 29411 components: - pos: -33.5,-24.5 parent: 2 type: Transform - - uid: 29370 + - uid: 29412 components: - pos: -34.5,-24.5 parent: 2 type: Transform - - uid: 29371 + - uid: 29413 components: - pos: -34.5,-22.5 parent: 2 type: Transform - - uid: 29372 + - uid: 29414 components: - pos: -34.5,-23.5 parent: 2 type: Transform - - uid: 29373 + - uid: 29415 components: - rot: 1.5707963267948966 rad pos: 52.5,54.5 parent: 2 type: Transform - - uid: 29374 + - uid: 29416 components: - rot: -1.5707963267948966 rad pos: -9.5,33.5 parent: 2 type: Transform - - uid: 29375 + - uid: 29417 components: - rot: -1.5707963267948966 rad pos: -10.5,33.5 parent: 2 type: Transform - - uid: 29376 + - uid: 29418 components: - rot: -1.5707963267948966 rad pos: -9.5,30.5 parent: 2 type: Transform - - uid: 29377 + - uid: 29419 components: - rot: -1.5707963267948966 rad pos: -10.5,30.5 parent: 2 type: Transform - - uid: 29378 + - uid: 29420 components: - rot: -1.5707963267948966 rad pos: -11.5,30.5 parent: 2 type: Transform - - uid: 29379 + - uid: 29421 components: - rot: -1.5707963267948966 rad pos: -12.5,30.5 parent: 2 type: Transform - - uid: 29380 + - uid: 29422 components: - pos: -11.5,25.5 parent: 2 type: Transform - - uid: 29381 + - uid: 29423 components: - pos: -12.5,25.5 parent: 2 type: Transform - - uid: 29382 + - uid: 29424 components: - rot: -1.5707963267948966 rad pos: -10.5,34.5 parent: 2 type: Transform - - uid: 29383 + - uid: 29425 components: - pos: -21.5,16.5 parent: 2 type: Transform - - uid: 29384 + - uid: 29426 components: - pos: -21.5,17.5 parent: 2 type: Transform - - uid: 29385 + - uid: 29427 components: - pos: -21.5,18.5 parent: 2 type: Transform - - uid: 29386 + - uid: 29428 components: - pos: -21.5,19.5 parent: 2 type: Transform - - uid: 29387 + - uid: 29429 components: - pos: -17.5,15.5 parent: 2 type: Transform - - uid: 29388 + - uid: 29430 components: - pos: -17.5,16.5 parent: 2 type: Transform - - uid: 29389 + - uid: 29431 components: - pos: -17.5,17.5 parent: 2 type: Transform - - uid: 29390 + - uid: 29432 components: - pos: -17.5,18.5 parent: 2 type: Transform - - uid: 29391 + - uid: 29433 components: - pos: -21.5,22.5 parent: 2 type: Transform - - uid: 29392 + - uid: 29434 components: - pos: -21.5,25.5 parent: 2 type: Transform - - uid: 29393 + - uid: 29435 components: - rot: -1.5707963267948966 rad pos: -13.5,22.5 parent: 2 type: Transform - - uid: 29394 + - uid: 29436 components: - rot: -1.5707963267948966 rad pos: -17.5,27.5 parent: 2 type: Transform - - uid: 29395 + - uid: 29437 components: - pos: -17.5,22.5 parent: 2 type: Transform - - uid: 29396 + - uid: 29438 components: - pos: -17.5,21.5 parent: 2 type: Transform - - uid: 29397 + - uid: 29439 components: - pos: -17.5,20.5 parent: 2 type: Transform - - uid: 29398 + - uid: 29440 components: - pos: -23.5,16.5 parent: 2 type: Transform - - uid: 29399 + - uid: 29441 components: - pos: -26.5,17.5 parent: 2 type: Transform - - uid: 29400 + - uid: 29442 components: - pos: -26.5,26.5 parent: 2 type: Transform - - uid: 29401 + - uid: 29443 components: - pos: -25.5,26.5 parent: 2 type: Transform - - uid: 29402 + - uid: 29444 components: - pos: -26.5,20.5 parent: 2 type: Transform - - uid: 29403 + - uid: 29445 components: - pos: -27.5,26.5 parent: 2 type: Transform - - uid: 29404 + - uid: 29446 components: - pos: -28.5,26.5 parent: 2 type: Transform - - uid: 29405 + - uid: 29447 components: - pos: -26.5,24.5 parent: 2 type: Transform - - uid: 29406 + - uid: 29448 components: - rot: 3.141592653589793 rad pos: -27.5,20.5 parent: 2 type: Transform - - uid: 29407 + - uid: 29449 components: - rot: 3.141592653589793 rad pos: -28.5,20.5 parent: 2 type: Transform - - uid: 29408 + - uid: 29450 components: - rot: 3.141592653589793 rad pos: -29.5,20.5 parent: 2 type: Transform - - uid: 29409 + - uid: 29451 components: - rot: 3.141592653589793 rad pos: -29.5,24.5 parent: 2 type: Transform - - uid: 29410 + - uid: 29452 components: - pos: -26.5,16.5 parent: 2 type: Transform - - uid: 29411 + - uid: 29453 components: - pos: -27.5,16.5 parent: 2 type: Transform - - uid: 29412 + - uid: 29454 components: - pos: -28.5,16.5 parent: 2 type: Transform - - uid: 29413 + - uid: 29455 components: - pos: -29.5,16.5 parent: 2 type: Transform - - uid: 29414 + - uid: 29456 components: - pos: -22.5,14.5 parent: 2 type: Transform - - uid: 29415 + - uid: 29457 components: - pos: -23.5,14.5 parent: 2 type: Transform - - uid: 29416 + - uid: 29458 components: - pos: -24.5,16.5 parent: 2 type: Transform - - uid: 29417 + - uid: 29459 components: - pos: -23.5,26.5 parent: 2 type: Transform - - uid: 29418 + - uid: 29460 components: - pos: -36.5,34.5 parent: 2 type: Transform - - uid: 29419 + - uid: 29461 components: - pos: -24.5,15.5 parent: 2 type: Transform - - uid: 29420 + - uid: 29462 components: - pos: -34.5,16.5 parent: 2 type: Transform - - uid: 29421 + - uid: 29463 components: - pos: -35.5,16.5 parent: 2 type: Transform - - uid: 29422 + - uid: 29464 components: - pos: -35.5,17.5 parent: 2 type: Transform - - uid: 29423 + - uid: 29465 components: - pos: -35.5,23.5 parent: 2 type: Transform - - uid: 29424 + - uid: 29466 components: - pos: -35.5,24.5 parent: 2 type: Transform - - uid: 29425 + - uid: 29467 components: - pos: -33.5,16.5 parent: 2 type: Transform - - uid: 29426 + - uid: 29468 components: - pos: -32.5,16.5 parent: 2 type: Transform - - uid: 29427 + - uid: 29469 components: - pos: -31.5,16.5 parent: 2 type: Transform - - uid: 29428 + - uid: 29470 components: - pos: -30.5,16.5 parent: 2 type: Transform - - uid: 29429 + - uid: 29471 components: - rot: 1.5707963267948966 rad pos: -36.5,17.5 parent: 2 type: Transform - - uid: 29430 + - uid: 29472 components: - rot: 1.5707963267948966 rad pos: -37.5,17.5 parent: 2 type: Transform - - uid: 29431 + - uid: 29473 components: - rot: 1.5707963267948966 rad pos: -38.5,17.5 parent: 2 type: Transform - - uid: 29432 + - uid: 29474 components: - rot: 1.5707963267948966 rad pos: -39.5,17.5 parent: 2 type: Transform - - uid: 29433 + - uid: 29475 components: - rot: 1.5707963267948966 rad pos: -40.5,17.5 parent: 2 type: Transform - - uid: 29434 + - uid: 29476 components: - pos: -38.5,34.5 parent: 2 type: Transform - - uid: 29435 + - uid: 29477 components: - pos: -39.5,32.5 parent: 2 type: Transform - - uid: 29436 + - uid: 29478 components: - pos: -39.5,33.5 parent: 2 type: Transform - - uid: 29437 + - uid: 29479 components: - rot: 1.5707963267948966 rad pos: -40.5,26.5 parent: 2 type: Transform - - uid: 29438 + - uid: 29480 components: - rot: 1.5707963267948966 rad pos: -42.5,26.5 parent: 2 type: Transform - - uid: 29439 + - uid: 29481 components: - rot: 1.5707963267948966 rad pos: -43.5,17.5 parent: 2 type: Transform - - uid: 29440 + - uid: 29482 components: - rot: 1.5707963267948966 rad pos: -43.5,16.5 parent: 2 type: Transform - - uid: 29441 + - uid: 29483 components: - pos: -51.5,21.5 parent: 2 type: Transform - - uid: 29442 + - uid: 29484 components: - rot: 1.5707963267948966 rad pos: -47.5,27.5 parent: 2 type: Transform - - uid: 29443 + - uid: 29485 components: - rot: 1.5707963267948966 rad pos: -48.5,27.5 parent: 2 type: Transform - - uid: 29444 + - uid: 29486 components: - rot: 1.5707963267948966 rad pos: -44.5,27.5 parent: 2 type: Transform - - uid: 29445 + - uid: 29487 components: - rot: 1.5707963267948966 rad pos: -43.5,27.5 parent: 2 type: Transform - - uid: 29446 + - uid: 29488 components: - rot: 1.5707963267948966 rad pos: -43.5,26.5 parent: 2 type: Transform - - uid: 29447 + - uid: 29489 components: - pos: -17.5,35.5 parent: 2 type: Transform - - uid: 29448 + - uid: 29490 components: - rot: -1.5707963267948966 rad pos: -18.5,36.5 parent: 2 type: Transform - - uid: 29449 + - uid: 29491 components: - pos: -17.5,33.5 parent: 2 type: Transform - - uid: 29450 + - uid: 29492 components: - pos: -13.5,30.5 parent: 2 type: Transform - - uid: 29451 + - uid: 29493 components: - pos: -13.5,29.5 parent: 2 type: Transform - - uid: 29452 + - uid: 29494 components: - pos: -13.5,28.5 parent: 2 type: Transform - - uid: 29453 + - uid: 29495 components: - pos: -14.5,28.5 parent: 2 type: Transform - - uid: 29454 + - uid: 29496 components: - pos: -16.5,28.5 parent: 2 type: Transform - - uid: 29455 + - uid: 29497 components: - pos: 51.5,41.5 parent: 2 type: Transform - - uid: 29456 + - uid: 29498 components: - pos: -22.5,26.5 parent: 2 type: Transform - - uid: 29457 + - uid: 29499 components: - pos: -24.5,14.5 parent: 2 type: Transform - - uid: 29458 + - uid: 29500 components: - pos: -27.5,11.5 parent: 2 type: Transform - - uid: 29459 + - uid: 29501 components: - pos: -28.5,11.5 parent: 2 type: Transform - - uid: 29460 + - uid: 29502 components: - pos: -29.5,26.5 parent: 2 type: Transform - - uid: 29461 + - uid: 29503 components: - rot: 3.141592653589793 rad pos: -41.5,13.5 parent: 2 type: Transform - - uid: 29462 + - uid: 29504 components: - pos: -28.5,14.5 parent: 2 type: Transform - - uid: 29463 + - uid: 29505 components: - pos: -28.5,13.5 parent: 2 type: Transform - - uid: 29464 + - uid: 29506 components: - pos: -28.5,15.5 parent: 2 type: Transform - - uid: 29465 + - uid: 29507 components: - rot: 1.5707963267948966 rad pos: -40.5,36.5 parent: 2 type: Transform - - uid: 29466 + - uid: 29508 components: - rot: 1.5707963267948966 rad pos: -41.5,36.5 parent: 2 type: Transform - - uid: 29467 + - uid: 29509 components: - rot: 1.5707963267948966 rad pos: -42.5,36.5 parent: 2 type: Transform - - uid: 29468 + - uid: 29510 components: - rot: 1.5707963267948966 rad pos: -43.5,36.5 parent: 2 type: Transform - - uid: 29469 + - uid: 29511 components: - rot: 1.5707963267948966 rad pos: -44.5,36.5 parent: 2 type: Transform - - uid: 29470 + - uid: 29512 components: - rot: 1.5707963267948966 rad pos: -44.5,37.5 parent: 2 type: Transform - - uid: 29471 + - uid: 29513 components: - rot: 1.5707963267948966 rad pos: -47.5,37.5 parent: 2 type: Transform - - uid: 29472 + - uid: 29514 components: - rot: 1.5707963267948966 rad pos: -39.5,35.5 parent: 2 type: Transform - - uid: 29473 + - uid: 29515 components: - rot: 1.5707963267948966 rad pos: -39.5,36.5 parent: 2 type: Transform - - uid: 29474 + - uid: 29516 components: - pos: -37.5,26.5 parent: 2 type: Transform - - uid: 29475 + - uid: 29517 components: - pos: -36.5,26.5 parent: 2 type: Transform - - uid: 29476 + - uid: 29518 components: - pos: -25.5,38.5 parent: 2 type: Transform - - uid: 29477 + - uid: 29519 components: - pos: -38.5,26.5 parent: 2 type: Transform - - uid: 29478 + - uid: 29520 components: - pos: -39.5,26.5 parent: 2 type: Transform - - uid: 29479 + - uid: 29521 components: - pos: -39.5,27.5 parent: 2 type: Transform - - uid: 29480 + - uid: 29522 components: - pos: -39.5,28.5 parent: 2 type: Transform - - uid: 29481 + - uid: 29523 components: - pos: -39.5,30.5 parent: 2 type: Transform - - uid: 29482 + - uid: 29524 components: - pos: -39.5,34.5 parent: 2 type: Transform - - uid: 29483 + - uid: 29525 components: - pos: -30.5,-1.5 parent: 2 type: Transform - - uid: 29484 + - uid: 29526 components: - pos: -31.5,-1.5 parent: 2 type: Transform - - uid: 29485 + - uid: 29527 components: - pos: -32.5,-1.5 parent: 2 type: Transform - - uid: 29486 + - uid: 29528 components: - pos: -32.5,-2.5 parent: 2 type: Transform - - uid: 29487 + - uid: 29529 components: - pos: -29.5,2.5 parent: 2 type: Transform - - uid: 29488 + - uid: 29530 components: - pos: -30.5,2.5 parent: 2 type: Transform - - uid: 29489 + - uid: 29531 components: - pos: -31.5,2.5 parent: 2 type: Transform - - uid: 29490 + - uid: 29532 components: - pos: -32.5,2.5 parent: 2 type: Transform - - uid: 29491 + - uid: 29533 components: - pos: -33.5,2.5 parent: 2 type: Transform - - uid: 29492 + - uid: 29534 components: - pos: -34.5,-1.5 parent: 2 type: Transform - - uid: 29493 + - uid: 29535 components: - rot: 3.141592653589793 rad pos: -25.5,16.5 parent: 2 type: Transform - - uid: 29494 + - uid: 29536 components: - rot: 3.141592653589793 rad pos: -13.5,9.5 parent: 2 type: Transform - - uid: 29495 + - uid: 29537 components: - pos: -22.5,16.5 parent: 2 type: Transform - - uid: 29496 + - uid: 29538 components: - pos: -16.5,22.5 parent: 2 type: Transform - - uid: 29497 + - uid: 29539 components: - pos: -15.5,22.5 parent: 2 type: Transform - - uid: 29498 + - uid: 29540 components: - pos: -14.5,22.5 parent: 2 type: Transform - - uid: 29499 + - uid: 29541 components: - rot: -1.5707963267948966 rad pos: -13.5,24.5 parent: 2 type: Transform - - uid: 29500 + - uid: 29542 components: - pos: -13.5,25.5 parent: 2 type: Transform - - uid: 29501 + - uid: 29543 components: - rot: -1.5707963267948966 rad pos: -13.5,24.5 parent: 2 type: Transform - - uid: 29502 + - uid: 29544 components: - rot: 3.141592653589793 rad pos: -48.5,17.5 parent: 2 type: Transform - - uid: 29503 + - uid: 29545 components: - rot: 3.141592653589793 rad pos: -47.5,17.5 parent: 2 type: Transform - - uid: 29504 + - uid: 29546 components: - rot: 3.141592653589793 rad pos: -29.5,-4.5 parent: 2 type: Transform - - uid: 29505 + - uid: 29547 components: - rot: 3.141592653589793 rad pos: -29.5,-6.5 parent: 2 type: Transform - - uid: 29506 + - uid: 29548 components: - rot: 3.141592653589793 rad pos: -29.5,-8.5 parent: 2 type: Transform - - uid: 29507 + - uid: 29549 components: - rot: 3.141592653589793 rad pos: -28.5,-8.5 parent: 2 type: Transform - - uid: 29508 + - uid: 29550 components: - rot: 3.141592653589793 rad pos: -27.5,-8.5 parent: 2 type: Transform - - uid: 29509 + - uid: 29551 components: - rot: 3.141592653589793 rad pos: -28.5,-4.5 parent: 2 type: Transform - - uid: 29510 + - uid: 29552 components: - rot: -1.5707963267948966 rad pos: -35.5,-1.5 parent: 2 type: Transform - - uid: 29511 + - uid: 29553 components: - rot: -1.5707963267948966 rad pos: -36.5,-1.5 parent: 2 type: Transform - - uid: 29512 + - uid: 29554 components: - rot: -1.5707963267948966 rad pos: -38.5,-1.5 parent: 2 type: Transform - - uid: 29513 + - uid: 29555 components: - rot: -1.5707963267948966 rad pos: -39.5,-1.5 parent: 2 type: Transform - - uid: 29514 + - uid: 29556 components: - rot: -1.5707963267948966 rad pos: -40.5,-1.5 parent: 2 type: Transform - - uid: 29515 + - uid: 29557 components: - rot: -1.5707963267948966 rad pos: -41.5,-1.5 parent: 2 type: Transform - - uid: 29516 + - uid: 29558 components: - rot: -1.5707963267948966 rad pos: -42.5,-1.5 parent: 2 type: Transform - - uid: 29517 + - uid: 29559 components: - pos: -42.5,2.5 parent: 2 type: Transform - - uid: 29518 + - uid: 29560 components: - pos: -43.5,2.5 parent: 2 type: Transform - - uid: 29519 + - uid: 29561 components: - pos: -42.5,3.5 parent: 2 type: Transform - - uid: 29520 + - uid: 29562 components: - pos: -42.5,4.5 parent: 2 type: Transform - - uid: 29521 + - uid: 29563 components: - pos: -42.5,5.5 parent: 2 type: Transform - - uid: 29522 + - uid: 29564 components: - pos: -42.5,6.5 parent: 2 type: Transform - - uid: 29523 + - uid: 29565 components: - pos: -42.5,7.5 parent: 2 type: Transform - - uid: 29524 + - uid: 29566 components: - pos: -41.5,11.5 parent: 2 type: Transform - - uid: 29525 + - uid: 29567 components: - pos: -41.5,10.5 parent: 2 type: Transform - - uid: 29526 + - uid: 29568 components: - pos: -41.5,9.5 parent: 2 type: Transform - - uid: 29527 + - uid: 29569 components: - pos: -41.5,8.5 parent: 2 type: Transform - - uid: 29528 + - uid: 29570 components: - pos: -34.5,12.5 parent: 2 type: Transform - - uid: 29529 + - uid: 29571 components: - pos: -34.5,11.5 parent: 2 type: Transform - - uid: 29530 + - uid: 29572 components: - pos: -34.5,10.5 parent: 2 type: Transform - - uid: 29531 + - uid: 29573 components: - pos: -33.5,3.5 parent: 2 type: Transform - - uid: 29532 + - uid: 29574 components: - pos: -33.5,4.5 parent: 2 type: Transform - - uid: 29533 + - uid: 29575 components: - pos: -33.5,5.5 parent: 2 type: Transform - - uid: 29534 + - uid: 29576 components: - pos: -33.5,6.5 parent: 2 type: Transform - - uid: 29535 + - uid: 29577 components: - pos: -33.5,7.5 parent: 2 type: Transform - - uid: 29536 + - uid: 29578 components: - pos: -43.5,15.5 parent: 2 type: Transform - - uid: 29537 + - uid: 29579 components: - pos: -33.5,12.5 parent: 2 type: Transform - - uid: 29538 + - uid: 29580 components: - pos: -42.5,12.5 parent: 2 type: Transform - - uid: 29539 + - uid: 29581 components: - pos: -32.5,12.5 parent: 2 type: Transform - - uid: 29540 + - uid: 29582 components: - pos: -41.5,7.5 parent: 2 type: Transform - - uid: 29541 + - uid: 29583 components: - pos: -40.5,7.5 parent: 2 type: Transform - - uid: 29542 + - uid: 29584 components: - pos: -35.5,7.5 parent: 2 type: Transform - - uid: 29543 + - uid: 29585 components: - pos: -34.5,7.5 parent: 2 type: Transform - - uid: 29544 + - uid: 29586 components: - rot: 3.141592653589793 rad pos: -41.5,14.5 parent: 2 type: Transform - - uid: 29545 + - uid: 29587 components: - pos: -43.5,12.5 parent: 2 type: Transform - - uid: 29546 + - uid: 29588 components: - pos: -43.5,13.5 parent: 2 type: Transform - - uid: 29547 + - uid: 29589 components: - pos: -32.5,15.5 parent: 2 type: Transform - - uid: 29548 + - uid: 29590 components: - pos: -41.5,12.5 parent: 2 type: Transform - - uid: 29549 + - uid: 29591 components: - pos: -29.5,11.5 parent: 2 type: Transform - - uid: 29550 + - uid: 29592 components: - pos: -34.5,8.5 parent: 2 type: Transform - - uid: 29551 + - uid: 29593 components: - pos: -33.5,-1.5 parent: 2 type: Transform - - uid: 29552 + - uid: 29594 components: - pos: -34.5,9.5 parent: 2 type: Transform - - uid: 29553 + - uid: 29595 components: - rot: 3.141592653589793 rad pos: -32.5,13.5 parent: 2 type: Transform - - uid: 29554 + - uid: 29596 components: - rot: 3.141592653589793 rad pos: -41.5,13.5 parent: 2 type: Transform - - uid: 29555 + - uid: 29597 components: - rot: 3.141592653589793 rad pos: -41.5,16.5 parent: 2 type: Transform - - uid: 29556 + - uid: 29598 components: - rot: 3.141592653589793 rad pos: -41.5,14.5 parent: 2 type: Transform - - uid: 29557 + - uid: 29599 components: - pos: -43.5,-1.5 parent: 2 type: Transform - - uid: 29558 + - uid: 29600 components: - pos: -44.5,2.5 parent: 2 type: Transform - - uid: 29559 + - uid: 29601 components: - pos: -44.5,-1.5 parent: 2 type: Transform - - uid: 29560 + - uid: 29602 components: - pos: -32.5,11.5 parent: 2 type: Transform - - uid: 29561 + - uid: 29603 components: - pos: -31.5,11.5 parent: 2 type: Transform - - uid: 29562 + - uid: 29604 components: - rot: -1.5707963267948966 rad pos: -40.5,16.5 parent: 2 type: Transform - - uid: 29563 + - uid: 29605 components: - rot: 3.141592653589793 rad pos: -40.5,16.5 parent: 2 type: Transform - - uid: 29564 + - uid: 29606 components: - rot: -1.5707963267948966 rad pos: -41.5,16.5 parent: 2 type: Transform - - uid: 29565 + - uid: 29607 components: - rot: 3.141592653589793 rad pos: -40.5,17.5 parent: 2 type: Transform - - uid: 29566 + - uid: 29608 components: - pos: -9.5,-19.5 parent: 2 type: Transform - - uid: 29567 + - uid: 29609 components: - pos: -32.5,7.5 parent: 2 type: Transform - - uid: 29568 + - uid: 29610 components: - pos: -31.5,7.5 parent: 2 type: Transform - - uid: 29569 + - uid: 29611 components: - pos: -29.5,7.5 parent: 2 type: Transform - - uid: 29570 + - uid: 29612 components: - rot: 3.141592653589793 rad pos: -41.5,15.5 parent: 2 type: Transform - - uid: 29571 + - uid: 29613 components: - rot: 1.5707963267948966 rad pos: -48.5,2.5 parent: 2 type: Transform - - uid: 29572 + - uid: 29614 components: - rot: 1.5707963267948966 rad pos: -48.5,1.5 parent: 2 type: Transform - - uid: 29573 + - uid: 29615 components: - rot: 1.5707963267948966 rad pos: -48.5,-0.5 parent: 2 type: Transform - - uid: 29574 + - uid: 29616 components: - rot: 1.5707963267948966 rad pos: -48.5,-1.5 parent: 2 type: Transform - - uid: 29575 + - uid: 29617 components: - rot: 1.5707963267948966 rad pos: -46.5,-1.5 parent: 2 type: Transform - - uid: 29576 + - uid: 29618 components: - rot: 1.5707963267948966 rad pos: -45.5,-1.5 parent: 2 type: Transform - - uid: 29577 + - uid: 29619 components: - rot: 1.5707963267948966 rad pos: -47.5,-1.5 parent: 2 type: Transform - - uid: 29578 + - uid: 29620 components: - rot: 1.5707963267948966 rad pos: -49.5,2.5 parent: 2 type: Transform - - uid: 29579 + - uid: 29621 components: - rot: 1.5707963267948966 rad pos: -50.5,2.5 parent: 2 type: Transform - - uid: 29580 + - uid: 29622 components: - rot: 1.5707963267948966 rad pos: -50.5,3.5 parent: 2 type: Transform - - uid: 29581 + - uid: 29623 components: - rot: 1.5707963267948966 rad pos: -50.5,4.5 parent: 2 type: Transform - - uid: 29582 + - uid: 29624 components: - rot: 1.5707963267948966 rad pos: -50.5,5.5 parent: 2 type: Transform - - uid: 29583 + - uid: 29625 components: - rot: 1.5707963267948966 rad pos: -50.5,6.5 parent: 2 type: Transform - - uid: 29584 + - uid: 29626 components: - rot: 1.5707963267948966 rad pos: -50.5,7.5 parent: 2 type: Transform - - uid: 29585 + - uid: 29627 components: - rot: 1.5707963267948966 rad pos: -50.5,8.5 parent: 2 type: Transform - - uid: 29586 + - uid: 29628 components: - rot: 1.5707963267948966 rad pos: -50.5,9.5 parent: 2 type: Transform - - uid: 29587 + - uid: 29629 components: - rot: 1.5707963267948966 rad pos: -49.5,9.5 parent: 2 type: Transform - - uid: 29588 + - uid: 29630 components: - rot: 1.5707963267948966 rad pos: -48.5,9.5 parent: 2 type: Transform - - uid: 29589 + - uid: 29631 components: - rot: 1.5707963267948966 rad pos: -47.5,9.5 parent: 2 type: Transform - - uid: 29590 + - uid: 29632 components: - rot: 1.5707963267948966 rad pos: -44.5,9.5 parent: 2 type: Transform - - uid: 29591 + - uid: 29633 components: - rot: 1.5707963267948966 rad pos: -43.5,9.5 parent: 2 type: Transform - - uid: 29592 + - uid: 29634 components: - rot: 1.5707963267948966 rad pos: -43.5,8.5 parent: 2 type: Transform - - uid: 29593 + - uid: 29635 components: - rot: 1.5707963267948966 rad pos: -43.5,7.5 parent: 2 type: Transform - - uid: 29594 + - uid: 29636 components: - rot: 1.5707963267948966 rad pos: -44.5,10.5 parent: 2 type: Transform - - uid: 29595 + - uid: 29637 components: - rot: 1.5707963267948966 rad pos: -44.5,12.5 parent: 2 type: Transform - - uid: 29596 + - uid: 29638 components: - pos: -50.5,1.5 parent: 2 type: Transform - - uid: 29597 + - uid: 29639 components: - pos: -50.5,0.5 parent: 2 type: Transform - - uid: 29598 + - uid: 29640 components: - pos: -50.5,-0.5 parent: 2 type: Transform - - uid: 29599 + - uid: 29641 components: - pos: -50.5,-1.5 parent: 2 type: Transform - - uid: 29600 + - uid: 29642 components: - pos: -46.5,-3.5 parent: 2 type: Transform - - uid: 29601 + - uid: 29643 components: - pos: -43.5,-2.5 parent: 2 type: Transform - - uid: 29602 + - uid: 29644 components: - pos: -50.5,-2.5 parent: 2 type: Transform - - uid: 29603 + - uid: 29645 components: - pos: -52.5,-1.5 parent: 2 type: Transform - - uid: 29604 + - uid: 29646 components: - pos: -52.5,0.5 parent: 2 type: Transform - - uid: 29605 + - uid: 29647 components: - pos: -52.5,-2.5 parent: 2 type: Transform - - uid: 29606 + - uid: 29648 components: - pos: -54.5,-2.5 parent: 2 type: Transform - - uid: 29607 + - uid: 29649 components: - rot: 3.141592653589793 rad pos: -11.5,22.5 parent: 2 type: Transform - - uid: 29608 + - uid: 29650 components: - pos: -56.5,-2.5 parent: 2 type: Transform - - uid: 29609 + - uid: 29651 components: - pos: -55.5,-2.5 parent: 2 type: Transform - - uid: 29610 + - uid: 29652 components: - pos: -52.5,1.5 parent: 2 type: Transform - - uid: 29611 + - uid: 29653 components: - pos: -50.5,12.5 parent: 2 type: Transform - - uid: 29612 + - uid: 29654 components: - pos: -50.5,13.5 parent: 2 type: Transform - - uid: 29613 + - uid: 29655 components: - pos: -50.5,14.5 parent: 2 type: Transform - - uid: 29614 + - uid: 29656 components: - pos: -50.5,15.5 parent: 2 type: Transform - - uid: 29615 + - uid: 29657 components: - rot: 3.141592653589793 rad pos: -52.5,12.5 parent: 2 type: Transform - - uid: 29616 + - uid: 29658 components: - rot: 3.141592653589793 rad pos: -52.5,5.5 parent: 2 type: Transform - - uid: 29617 + - uid: 29659 components: - rot: 3.141592653589793 rad pos: -51.5,9.5 parent: 2 type: Transform - - uid: 29618 + - uid: 29660 components: - rot: 3.141592653589793 rad pos: -51.5,5.5 parent: 2 type: Transform - - uid: 29619 + - uid: 29661 components: - rot: 3.141592653589793 rad pos: -46.5,17.5 parent: 2 type: Transform - - uid: 29620 + - uid: 29662 components: - pos: -32.5,-3.5 parent: 2 type: Transform - - uid: 29621 + - uid: 29663 components: - pos: 53.5,41.5 parent: 2 type: Transform - - uid: 29622 + - uid: 29664 components: - pos: 64.5,0.5 parent: 2 type: Transform - - uid: 29623 + - uid: 29665 components: - pos: 67.5,-12.5 parent: 2 type: Transform - - uid: 29624 + - uid: 29666 components: - pos: 67.5,-4.5 parent: 2 type: Transform - - uid: 29625 + - uid: 29667 components: - pos: 53.5,40.5 parent: 2 type: Transform - - uid: 29626 + - uid: 29668 components: - pos: -17.5,36.5 parent: 2 type: Transform - - uid: 29627 + - uid: 29669 components: - pos: -20.5,32.5 parent: 2 type: Transform - - uid: 29628 + - uid: 29670 components: - pos: -21.5,32.5 parent: 2 type: Transform - - uid: 29629 + - uid: 29671 components: - pos: -21.5,31.5 parent: 2 type: Transform - - uid: 29630 + - uid: 29672 components: - rot: -1.5707963267948966 rad pos: -22.5,32.5 parent: 2 type: Transform - - uid: 29631 + - uid: 29673 components: - pos: -21.5,29.5 parent: 2 type: Transform - - uid: 29632 + - uid: 29674 components: - pos: -21.5,28.5 parent: 2 type: Transform - - uid: 29633 + - uid: 29675 components: - pos: -21.5,26.5 parent: 2 type: Transform - - uid: 29634 + - uid: 29676 components: - pos: -17.5,28.5 parent: 2 type: Transform - - uid: 29635 + - uid: 29677 components: - rot: -1.5707963267948966 rad pos: -13.5,27.5 parent: 2 type: Transform - - uid: 29636 + - uid: 29678 components: - rot: -1.5707963267948966 rad pos: -13.5,23.5 parent: 2 type: Transform - - uid: 29637 + - uid: 29679 components: - pos: -35.5,20.5 parent: 2 type: Transform - - uid: 29638 + - uid: 29680 components: - pos: -0.5,10.5 parent: 2 type: Transform - - uid: 29639 + - uid: 29681 components: - rot: 1.5707963267948966 rad pos: -6.5,-11.5 parent: 2 type: Transform - - uid: 29640 + - uid: 29682 components: - pos: 5.5,-55.5 parent: 2 type: Transform - - uid: 29641 + - uid: 29683 components: - pos: 59.5,-31.5 parent: 2 type: Transform - - uid: 29642 + - uid: 29684 components: - rot: -1.5707963267948966 rad pos: -0.5,-76.5 parent: 2 type: Transform - - uid: 29643 + - uid: 29685 components: - pos: 19.5,-51.5 parent: 2 type: Transform - - uid: 29644 + - uid: 29686 components: - pos: 22.5,-48.5 parent: 2 type: Transform - - uid: 29645 + - uid: 29687 components: - rot: 3.141592653589793 rad pos: -31.5,-53.5 parent: 2 type: Transform - - uid: 29646 + - uid: 29688 components: - pos: -27.5,-55.5 parent: 2 type: Transform - - uid: 29647 + - uid: 29689 components: - rot: 3.141592653589793 rad pos: -17.5,8.5 parent: 2 type: Transform - - uid: 29648 + - uid: 29690 components: - pos: -21.5,-6.5 parent: 2 type: Transform - - uid: 29649 + - uid: 29691 components: - rot: 3.141592653589793 rad pos: -44.5,17.5 parent: 2 type: Transform - - uid: 29650 + - uid: 29692 components: - rot: 3.141592653589793 rad pos: -31.5,-72.5 parent: 2 type: Transform - - uid: 29651 + - uid: 29693 components: - pos: -30.5,-68.5 parent: 2 type: Transform - - uid: 29652 + - uid: 29694 components: - pos: -26.5,-72.5 parent: 2 type: Transform - - uid: 29653 + - uid: 29695 components: - pos: -26.5,-71.5 parent: 2 type: Transform - - uid: 29654 + - uid: 29696 components: - pos: 6.5,-55.5 parent: 2 type: Transform - - uid: 29655 + - uid: 29697 components: - pos: -17.5,32.5 parent: 2 type: Transform - - uid: 29656 + - uid: 29698 components: - pos: -18.5,32.5 parent: 2 type: Transform - - uid: 29657 + - uid: 29699 components: - pos: -19.5,32.5 parent: 2 type: Transform - - uid: 29658 + - uid: 29700 components: - pos: 44.5,47.5 parent: 2 type: Transform - - uid: 29659 + - uid: 29701 components: - pos: 44.5,48.5 parent: 2 type: Transform - - uid: 29660 + - uid: 29702 components: - pos: 53.5,39.5 parent: 2 type: Transform - - uid: 29661 + - uid: 29703 components: - pos: 53.5,38.5 parent: 2 type: Transform - - uid: 29662 + - uid: 29704 components: - pos: 52.5,38.5 parent: 2 type: Transform - - uid: 29663 + - uid: 29705 components: - pos: 51.5,38.5 parent: 2 type: Transform - - uid: 29664 + - uid: 29706 components: - pos: 50.5,38.5 parent: 2 type: Transform - - uid: 29665 + - uid: 29707 components: - pos: 55.5,36.5 parent: 2 type: Transform - - uid: 29666 + - uid: 29708 components: - pos: 55.5,35.5 parent: 2 type: Transform - - uid: 29667 + - uid: 29709 components: - pos: 55.5,34.5 parent: 2 type: Transform - - uid: 29668 + - uid: 29710 components: - pos: 54.5,34.5 parent: 2 type: Transform - - uid: 29669 + - uid: 29711 components: - pos: 53.5,34.5 parent: 2 type: Transform - - uid: 29670 + - uid: 29712 components: - pos: 51.5,34.5 parent: 2 type: Transform - - uid: 29671 + - uid: 29713 components: - pos: 50.5,34.5 parent: 2 type: Transform - - uid: 29672 + - uid: 29714 components: - pos: 50.5,35.5 parent: 2 type: Transform - - uid: 29673 + - uid: 29715 components: - pos: 50.5,36.5 parent: 2 type: Transform - - uid: 29674 + - uid: 29716 components: - pos: 50.5,37.5 parent: 2 type: Transform - - uid: 29675 + - uid: 29717 components: - pos: 51.5,33.5 parent: 2 type: Transform - - uid: 29676 + - uid: 29718 components: - pos: 51.5,32.5 parent: 2 type: Transform - - uid: 29677 + - uid: 29719 components: - pos: 53.5,33.5 parent: 2 type: Transform - - uid: 29678 + - uid: 29720 components: - pos: 53.5,32.5 parent: 2 type: Transform - - uid: 29679 + - uid: 29721 components: - pos: 53.5,31.5 parent: 2 type: Transform - - uid: 29680 + - uid: 29722 components: - pos: 53.5,30.5 parent: 2 type: Transform - - uid: 29681 + - uid: 29723 components: - pos: 52.5,30.5 parent: 2 type: Transform - - uid: 29682 + - uid: 29724 components: - pos: 51.5,30.5 parent: 2 type: Transform - - uid: 29683 + - uid: 29725 components: - pos: 49.5,30.5 parent: 2 type: Transform - - uid: 29684 + - uid: 29726 components: - pos: 50.5,30.5 parent: 2 type: Transform - - uid: 29685 + - uid: 29727 components: - pos: 49.5,34.5 parent: 2 type: Transform - - uid: 29686 + - uid: 29728 components: - pos: 48.5,34.5 parent: 2 type: Transform - - uid: 29687 + - uid: 29729 components: - pos: 47.5,30.5 parent: 2 type: Transform - - uid: 29688 + - uid: 29730 components: - pos: 47.5,29.5 parent: 2 type: Transform - - uid: 29689 + - uid: 29731 components: - pos: 47.5,28.5 parent: 2 type: Transform - - uid: 29690 + - uid: 29732 components: - pos: 47.5,27.5 parent: 2 type: Transform - - uid: 29691 + - uid: 29733 components: - pos: 49.5,27.5 parent: 2 type: Transform - - uid: 29692 + - uid: 29734 components: - pos: 50.5,27.5 parent: 2 type: Transform - - uid: 29693 + - uid: 29735 components: - pos: 51.5,27.5 parent: 2 type: Transform - - uid: 29694 + - uid: 29736 components: - pos: 51.5,28.5 parent: 2 type: Transform - - uid: 29695 + - uid: 29737 components: - pos: 51.5,29.5 parent: 2 type: Transform - - uid: 29696 + - uid: 29738 components: - pos: 60.5,27.5 parent: 2 type: Transform - - uid: 29697 + - uid: 29739 components: - pos: 59.5,27.5 parent: 2 type: Transform - - uid: 29698 + - uid: 29740 components: - pos: 57.5,27.5 parent: 2 type: Transform - - uid: 29699 + - uid: 29741 components: - pos: 56.5,27.5 parent: 2 type: Transform - - uid: 29700 + - uid: 29742 components: - pos: 61.5,29.5 parent: 2 type: Transform - - uid: 29701 + - uid: 29743 components: - pos: 61.5,28.5 parent: 2 type: Transform - - uid: 29702 + - uid: 29744 components: - pos: 61.5,27.5 parent: 2 type: Transform - - uid: 29703 + - uid: 29745 components: - pos: 59.5,30.5 parent: 2 type: Transform - - uid: 29704 + - uid: 29746 components: - pos: 58.5,30.5 parent: 2 type: Transform - - uid: 29705 + - uid: 29747 components: - pos: 56.5,30.5 parent: 2 type: Transform - - uid: 29706 + - uid: 29748 components: - pos: 56.5,29.5 parent: 2 type: Transform - - uid: 29707 + - uid: 29749 components: - pos: 56.5,28.5 parent: 2 type: Transform - - uid: 29708 + - uid: 29750 components: - pos: 54.5,30.5 parent: 2 type: Transform - - uid: 29709 + - uid: 29751 components: - pos: 55.5,30.5 parent: 2 type: Transform - - uid: 29710 + - uid: 29752 components: - rot: -1.5707963267948966 rad pos: 49.5,29.5 parent: 2 type: Transform - - uid: 29711 + - uid: 29753 components: - rot: 3.141592653589793 rad pos: -11.5,23.5 parent: 2 type: Transform - - uid: 29712 + - uid: 29754 components: - rot: -1.5707963267948966 rad pos: -23.5,32.5 parent: 2 type: Transform - - uid: 29713 + - uid: 29755 components: - rot: -1.5707963267948966 rad pos: -24.5,32.5 parent: 2 type: Transform - - uid: 29714 + - uid: 29756 components: - rot: -1.5707963267948966 rad pos: -25.5,32.5 parent: 2 type: Transform - - uid: 29715 + - uid: 29757 components: - rot: -1.5707963267948966 rad pos: -22.5,28.5 parent: 2 type: Transform - - uid: 29716 + - uid: 29758 components: - rot: -1.5707963267948966 rad pos: -23.5,28.5 parent: 2 type: Transform - - uid: 29717 + - uid: 29759 components: - rot: -1.5707963267948966 rad pos: -24.5,28.5 parent: 2 type: Transform - - uid: 29718 + - uid: 29760 components: - rot: -1.5707963267948966 rad pos: -25.5,28.5 parent: 2 type: Transform - - uid: 29719 + - uid: 29761 components: - rot: -1.5707963267948966 rad pos: -25.5,31.5 parent: 2 type: Transform - - uid: 29720 + - uid: 29762 components: - rot: -1.5707963267948966 rad pos: -25.5,30.5 parent: 2 type: Transform - - uid: 29721 + - uid: 29763 components: - rot: -1.5707963267948966 rad pos: -25.5,29.5 parent: 2 type: Transform - - uid: 29722 + - uid: 29764 components: - rot: -1.5707963267948966 rad pos: -20.5,36.5 parent: 2 type: Transform - - uid: 29723 + - uid: 29765 components: - rot: -1.5707963267948966 rad pos: -19.5,36.5 parent: 2 type: Transform - - uid: 29724 + - uid: 29766 components: - rot: -1.5707963267948966 rad pos: -21.5,36.5 parent: 2 type: Transform - - uid: 29725 + - uid: 29767 components: - rot: -1.5707963267948966 rad pos: -22.5,36.5 parent: 2 type: Transform - - uid: 29726 + - uid: 29768 components: - rot: -1.5707963267948966 rad pos: -22.5,35.5 parent: 2 type: Transform - - uid: 29727 + - uid: 29769 components: - rot: -1.5707963267948966 rad pos: -22.5,33.5 parent: 2 type: Transform - - uid: 29728 + - uid: 29770 components: - rot: -1.5707963267948966 rad pos: -26.5,29.5 parent: 2 type: Transform - - uid: 29729 + - uid: 29771 components: - rot: -1.5707963267948966 rad pos: -27.5,29.5 parent: 2 type: Transform - - uid: 29730 + - uid: 29772 components: - rot: -1.5707963267948966 rad pos: -27.5,30.5 parent: 2 type: Transform - - uid: 29731 + - uid: 29773 components: - rot: -1.5707963267948966 rad pos: -18.5,37.5 parent: 2 type: Transform - - uid: 29732 + - uid: 29774 components: - rot: -1.5707963267948966 rad pos: -17.5,39.5 parent: 2 type: Transform - - uid: 29733 + - uid: 29775 components: - rot: -1.5707963267948966 rad pos: -18.5,39.5 parent: 2 type: Transform - - uid: 29734 + - uid: 29776 components: - rot: -1.5707963267948966 rad pos: -19.5,39.5 parent: 2 type: Transform - - uid: 29735 + - uid: 29777 components: - rot: -1.5707963267948966 rad pos: -9.5,31.5 parent: 2 type: Transform - - uid: 29736 + - uid: 29778 components: - rot: -1.5707963267948966 rad pos: -9.5,32.5 parent: 2 type: Transform - - uid: 29737 + - uid: 29779 components: - rot: -1.5707963267948966 rad pos: -13.5,31.5 parent: 2 type: Transform - - uid: 29738 + - uid: 29780 components: - rot: -1.5707963267948966 rad pos: -13.5,32.5 parent: 2 type: Transform - - uid: 29739 + - uid: 29781 components: - rot: -1.5707963267948966 rad pos: -9.5,36.5 parent: 2 type: Transform - - uid: 29740 + - uid: 29782 components: - rot: -1.5707963267948966 rad pos: -8.5,36.5 parent: 2 type: Transform - - uid: 29741 + - uid: 29783 components: - rot: -1.5707963267948966 rad pos: -13.5,40.5 parent: 2 type: Transform - - uid: 29742 + - uid: 29784 components: - rot: -1.5707963267948966 rad pos: -12.5,40.5 parent: 2 type: Transform - - uid: 29743 + - uid: 29785 components: - rot: -1.5707963267948966 rad pos: -11.5,40.5 parent: 2 type: Transform - - uid: 29744 + - uid: 29786 components: - rot: -1.5707963267948966 rad pos: -10.5,35.5 parent: 2 type: Transform - - uid: 29745 + - uid: 29787 components: - rot: -1.5707963267948966 rad pos: -19.5,52.5 parent: 2 type: Transform - - uid: 29746 + - uid: 29788 components: - rot: -1.5707963267948966 rad pos: -10.5,40.5 parent: 2 type: Transform - - uid: 29747 + - uid: 29789 components: - rot: -1.5707963267948966 rad pos: -9.5,40.5 parent: 2 type: Transform - - uid: 29748 + - uid: 29790 components: - rot: -1.5707963267948966 rad pos: -8.5,40.5 parent: 2 type: Transform - - uid: 29749 + - uid: 29791 components: - rot: -1.5707963267948966 rad pos: -10.5,36.5 parent: 2 type: Transform - - uid: 29750 + - uid: 29792 components: - rot: -1.5707963267948966 rad pos: -11.5,36.5 parent: 2 type: Transform - - uid: 29751 + - uid: 29793 components: - rot: -1.5707963267948966 rad pos: -12.5,36.5 parent: 2 type: Transform - - uid: 29752 + - uid: 29794 components: - rot: -1.5707963267948966 rad pos: -16.5,64.5 parent: 2 type: Transform - - uid: 29753 + - uid: 29795 components: - rot: -1.5707963267948966 rad pos: -15.5,64.5 parent: 2 type: Transform - - uid: 29754 + - uid: 29796 components: - rot: -1.5707963267948966 rad pos: -14.5,64.5 parent: 2 type: Transform - - uid: 29755 + - uid: 29797 components: - rot: -1.5707963267948966 rad pos: -18.5,64.5 parent: 2 type: Transform - - uid: 29756 + - uid: 29798 components: - rot: -1.5707963267948966 rad pos: -19.5,64.5 parent: 2 type: Transform - - uid: 29757 + - uid: 29799 components: - rot: -1.5707963267948966 rad pos: -20.5,64.5 parent: 2 type: Transform - - uid: 29758 + - uid: 29800 components: - rot: -1.5707963267948966 rad pos: -14.5,63.5 parent: 2 type: Transform - - uid: 29759 + - uid: 29801 components: - rot: -1.5707963267948966 rad pos: -14.5,61.5 parent: 2 type: Transform - - uid: 29760 + - uid: 29802 components: - rot: -1.5707963267948966 rad pos: -14.5,60.5 parent: 2 type: Transform - - uid: 29761 + - uid: 29803 components: - rot: -1.5707963267948966 rad pos: -20.5,63.5 parent: 2 type: Transform - - uid: 29762 + - uid: 29804 components: - rot: -1.5707963267948966 rad pos: -20.5,61.5 parent: 2 type: Transform - - uid: 29763 + - uid: 29805 components: - rot: -1.5707963267948966 rad pos: -20.5,60.5 parent: 2 type: Transform - - uid: 29764 + - uid: 29806 components: - rot: -1.5707963267948966 rad pos: -11.5,62.5 parent: 2 type: Transform - - uid: 29765 + - uid: 29807 components: - rot: -1.5707963267948966 rad pos: -11.5,61.5 parent: 2 type: Transform - - uid: 29766 + - uid: 29808 components: - rot: -1.5707963267948966 rad pos: -11.5,60.5 parent: 2 type: Transform - - uid: 29767 + - uid: 29809 components: - rot: -1.5707963267948966 rad pos: -20.5,59.5 parent: 2 type: Transform - - uid: 29768 + - uid: 29810 components: - rot: -1.5707963267948966 rad pos: -18.5,59.5 parent: 2 type: Transform - - uid: 29769 + - uid: 29811 components: - rot: -1.5707963267948966 rad pos: -18.5,58.5 parent: 2 type: Transform - - uid: 29770 + - uid: 29812 components: - rot: -1.5707963267948966 rad pos: -18.5,57.5 parent: 2 type: Transform - - uid: 29771 + - uid: 29813 components: - rot: -1.5707963267948966 rad pos: -11.5,57.5 parent: 2 type: Transform - - uid: 29772 + - uid: 29814 components: - rot: -1.5707963267948966 rad pos: -20.5,58.5 parent: 2 type: Transform - - uid: 29773 + - uid: 29815 components: - rot: -1.5707963267948966 rad pos: -20.5,57.5 parent: 2 type: Transform - - uid: 29774 + - uid: 29816 components: - rot: -1.5707963267948966 rad pos: -18.5,56.5 parent: 2 type: Transform - - uid: 29775 + - uid: 29817 components: - rot: 1.5707963267948966 rad pos: -19.5,57.5 parent: 2 type: Transform - - uid: 29776 + - uid: 29818 components: - rot: -1.5707963267948966 rad pos: -20.5,56.5 parent: 2 type: Transform - - uid: 29777 + - uid: 29819 components: - rot: -1.5707963267948966 rad pos: -20.5,54.5 parent: 2 type: Transform - - uid: 29778 + - uid: 29820 components: - rot: -1.5707963267948966 rad pos: -18.5,54.5 parent: 2 type: Transform - - uid: 29779 + - uid: 29821 components: - rot: -1.5707963267948966 rad pos: -18.5,53.5 parent: 2 type: Transform - - uid: 29780 + - uid: 29822 components: - rot: -1.5707963267948966 rad pos: -18.5,52.5 parent: 2 type: Transform - - uid: 29781 + - uid: 29823 components: - rot: -1.5707963267948966 rad pos: -22.5,49.5 parent: 2 type: Transform - - uid: 29782 + - uid: 29824 components: - rot: -1.5707963267948966 rad pos: -23.5,54.5 parent: 2 type: Transform - - uid: 29783 + - uid: 29825 components: - rot: -1.5707963267948966 rad pos: -23.5,55.5 parent: 2 type: Transform - - uid: 29784 + - uid: 29826 components: - rot: -1.5707963267948966 rad pos: -11.5,56.5 parent: 2 type: Transform - - uid: 29785 + - uid: 29827 components: - rot: -1.5707963267948966 rad pos: -11.5,55.5 parent: 2 type: Transform - - uid: 29786 + - uid: 29828 components: - rot: -1.5707963267948966 rad pos: -11.5,54.5 parent: 2 type: Transform - - uid: 29787 + - uid: 29829 components: - rot: -1.5707963267948966 rad pos: -20.5,53.5 parent: 2 type: Transform - - uid: 29788 + - uid: 29830 components: - rot: -1.5707963267948966 rad pos: -20.5,52.5 parent: 2 type: Transform - - uid: 29789 + - uid: 29831 components: - rot: -1.5707963267948966 rad pos: -23.5,53.5 parent: 2 type: Transform - - uid: 29790 + - uid: 29832 components: - rot: -1.5707963267948966 rad pos: -23.5,52.5 parent: 2 type: Transform - - uid: 29791 + - uid: 29833 components: - rot: -1.5707963267948966 rad pos: -23.5,49.5 parent: 2 type: Transform - - uid: 29792 + - uid: 29834 components: - rot: -1.5707963267948966 rad pos: -23.5,50.5 parent: 2 type: Transform - - uid: 29793 + - uid: 29835 components: - rot: -1.5707963267948966 rad pos: -23.5,51.5 parent: 2 type: Transform - - uid: 29794 + - uid: 29836 components: - rot: -1.5707963267948966 rad pos: -11.5,50.5 parent: 2 type: Transform - - uid: 29795 + - uid: 29837 components: - rot: -1.5707963267948966 rad pos: -11.5,49.5 parent: 2 type: Transform - - uid: 29796 + - uid: 29838 components: - rot: -1.5707963267948966 rad pos: -14.5,48.5 parent: 2 type: Transform - - uid: 29797 + - uid: 29839 components: - rot: -1.5707963267948966 rad pos: -11.5,48.5 parent: 2 type: Transform - - uid: 29798 + - uid: 29840 components: - rot: -1.5707963267948966 rad pos: -12.5,48.5 parent: 2 type: Transform - - uid: 29799 + - uid: 29841 components: - rot: -1.5707963267948966 rad pos: -15.5,49.5 parent: 2 type: Transform - - uid: 29800 + - uid: 29842 components: - rot: -1.5707963267948966 rad pos: -19.5,49.5 parent: 2 type: Transform - - uid: 29801 + - uid: 29843 components: - rot: -1.5707963267948966 rad pos: -19.5,48.5 parent: 2 type: Transform - - uid: 29802 + - uid: 29844 components: - rot: -1.5707963267948966 rad pos: -19.5,47.5 parent: 2 type: Transform - - uid: 29803 + - uid: 29845 components: - rot: -1.5707963267948966 rad pos: -19.5,46.5 parent: 2 type: Transform - - uid: 29804 + - uid: 29846 components: - rot: -1.5707963267948966 rad pos: -19.5,40.5 parent: 2 type: Transform - - uid: 29805 + - uid: 29847 components: - rot: -1.5707963267948966 rad pos: -15.5,48.5 parent: 2 type: Transform - - uid: 29806 + - uid: 29848 components: - rot: -1.5707963267948966 rad pos: -13.5,43.5 parent: 2 type: Transform - - uid: 29807 + - uid: 29849 components: - rot: -1.5707963267948966 rad pos: -13.5,42.5 parent: 2 type: Transform - - uid: 29808 + - uid: 29850 components: - pos: -25.5,37.5 parent: 2 type: Transform - - uid: 29809 + - uid: 29851 components: - pos: -25.5,36.5 parent: 2 type: Transform - - uid: 29810 + - uid: 29852 components: - pos: -26.5,36.5 parent: 2 type: Transform - - uid: 29811 + - uid: 29853 components: - pos: -25.5,39.5 parent: 2 type: Transform - - uid: 29812 + - uid: 29854 components: - pos: -25.5,40.5 parent: 2 type: Transform - - uid: 29813 + - uid: 29855 components: - pos: -44.5,38.5 parent: 2 type: Transform - - uid: 29814 + - uid: 29856 components: - pos: -30.5,37.5 parent: 2 type: Transform - - uid: 29815 + - uid: 29857 components: - pos: -31.5,37.5 parent: 2 type: Transform - - uid: 29816 + - uid: 29858 components: - pos: -33.5,37.5 parent: 2 type: Transform - - uid: 29817 + - uid: 29859 components: - pos: -33.5,38.5 parent: 2 type: Transform - - uid: 29818 + - uid: 29860 components: - pos: -34.5,38.5 parent: 2 type: Transform - - uid: 29819 + - uid: 29861 components: - pos: -35.5,36.5 parent: 2 type: Transform - - uid: 29820 + - uid: 29862 components: - pos: -37.5,38.5 parent: 2 type: Transform - - uid: 29821 + - uid: 29863 components: - pos: -38.5,38.5 parent: 2 type: Transform - - uid: 29822 + - uid: 29864 components: - rot: 3.141592653589793 rad pos: 67.5,9.5 parent: 2 type: Transform - - uid: 29823 + - uid: 29865 components: - pos: -44.5,13.5 parent: 2 type: Transform - - uid: 29824 + - uid: 29866 components: - rot: -1.5707963267948966 rad pos: -22.5,40.5 parent: 2 type: Transform - - uid: 29825 + - uid: 29867 components: - rot: -1.5707963267948966 rad pos: -21.5,40.5 parent: 2 type: Transform - - uid: 29826 + - uid: 29868 components: - rot: -1.5707963267948966 rad pos: -20.5,40.5 parent: 2 type: Transform - - uid: 29827 + - uid: 29869 components: - pos: -23.5,40.5 parent: 2 type: Transform - - uid: 29828 + - uid: 29870 components: - pos: -23.5,42.5 parent: 2 type: Transform - - uid: 29829 + - uid: 29871 components: - pos: -23.5,43.5 parent: 2 type: Transform - - uid: 29830 + - uid: 29872 components: - pos: -23.5,44.5 parent: 2 type: Transform - - uid: 29831 + - uid: 29873 components: - pos: -23.5,45.5 parent: 2 type: Transform - - uid: 29832 + - uid: 29874 components: - pos: -23.5,46.5 parent: 2 type: Transform - - uid: 29833 + - uid: 29875 components: - pos: -22.5,46.5 parent: 2 type: Transform - - uid: 29834 + - uid: 29876 components: - pos: -21.5,46.5 parent: 2 type: Transform - - uid: 29835 + - uid: 29877 components: - pos: -20.5,46.5 parent: 2 type: Transform - - uid: 29836 + - uid: 29878 components: - pos: -8.5,47.5 parent: 2 type: Transform - - uid: 29837 + - uid: 29879 components: - pos: -7.5,47.5 parent: 2 type: Transform - - uid: 29838 + - uid: 29880 components: - pos: -6.5,47.5 parent: 2 type: Transform - - uid: 29839 + - uid: 29881 components: - pos: -2.5,47.5 parent: 2 type: Transform - - uid: 29840 + - uid: 29882 components: - pos: -1.5,47.5 parent: 2 type: Transform - - uid: 29841 + - uid: 29883 components: - pos: -1.5,48.5 parent: 2 type: Transform - - uid: 29842 + - uid: 29884 components: - pos: -1.5,51.5 parent: 2 type: Transform - - uid: 29843 + - uid: 29885 components: - pos: -1.5,52.5 parent: 2 type: Transform - - uid: 29844 + - uid: 29886 components: - pos: -1.5,53.5 parent: 2 type: Transform - - uid: 29845 + - uid: 29887 components: - pos: -1.5,54.5 parent: 2 type: Transform - - uid: 29846 + - uid: 29888 components: - pos: 45.5,34.5 parent: 2 type: Transform - - uid: 29847 + - uid: 29889 components: - rot: 3.141592653589793 rad pos: 45.5,33.5 parent: 2 type: Transform - - uid: 29848 + - uid: 29890 components: - rot: -1.5707963267948966 rad pos: -4.5,57.5 parent: 2 type: Transform - - uid: 29849 + - uid: 29891 components: - rot: -1.5707963267948966 rad pos: -3.5,57.5 parent: 2 type: Transform - - uid: 29850 + - uid: 29892 components: - rot: -1.5707963267948966 rad pos: -2.5,57.5 parent: 2 type: Transform - - uid: 29851 + - uid: 29893 components: - rot: -1.5707963267948966 rad pos: -1.5,57.5 parent: 2 type: Transform - - uid: 29852 + - uid: 29894 components: - rot: -1.5707963267948966 rad pos: -1.5,56.5 parent: 2 type: Transform - - uid: 29853 + - uid: 29895 components: - rot: -1.5707963267948966 rad pos: -1.5,55.5 parent: 2 type: Transform - - uid: 29854 + - uid: 29896 components: - rot: -1.5707963267948966 rad pos: -9.5,60.5 parent: 2 type: Transform - - uid: 29855 + - uid: 29897 components: - pos: 17.5,35.5 parent: 2 type: Transform - - uid: 29856 + - uid: 29898 components: - pos: 15.5,35.5 parent: 2 type: Transform - - uid: 29857 + - uid: 29899 components: - pos: -28.5,42.5 parent: 2 type: Transform - - uid: 29858 + - uid: 29900 components: - pos: -27.5,42.5 parent: 2 type: Transform - - uid: 29859 + - uid: 29901 components: - pos: -26.5,42.5 parent: 2 type: Transform - - uid: 29860 + - uid: 29902 components: - pos: -39.5,37.5 parent: 2 type: Transform - - uid: 29861 + - uid: 29903 components: - pos: -39.5,38.5 parent: 2 type: Transform - - uid: 29862 + - uid: 29904 components: - pos: -36.5,38.5 parent: 2 type: Transform - - uid: 29863 + - uid: 29905 components: - pos: -35.5,38.5 parent: 2 type: Transform - - uid: 29864 + - uid: 29906 components: - pos: 40.5,49.5 parent: 2 type: Transform - - uid: 29865 + - uid: 29907 components: - pos: 40.5,50.5 parent: 2 type: Transform - - uid: 29866 + - uid: 29908 components: - pos: 44.5,46.5 parent: 2 type: Transform - - uid: 29867 + - uid: 29909 components: - pos: 44.5,44.5 parent: 2 type: Transform - - uid: 29868 + - uid: 29910 components: - pos: -23.5,48.5 parent: 2 type: Transform - - uid: 29869 + - uid: 29911 components: - pos: 7.5,-31.5 parent: 2 type: Transform - - uid: 29870 + - uid: 29912 components: - pos: 7.5,-29.5 parent: 2 type: Transform - - uid: 29871 + - uid: 29913 components: - pos: 7.5,-30.5 parent: 2 type: Transform - - uid: 29872 + - uid: 29914 components: - pos: -22.5,-17.5 parent: 2 type: Transform - - uid: 29873 + - uid: 29915 components: - pos: -16.5,-96.5 parent: 2 type: Transform - - uid: 29874 + - uid: 29916 components: - pos: -28.5,-96.5 parent: 2 type: Transform - - uid: 29875 + - uid: 29917 components: - pos: -13.5,-98.5 parent: 2 type: Transform - - uid: 29876 + - uid: 29918 components: - pos: -13.5,-96.5 parent: 2 type: Transform - - uid: 29877 + - uid: 29919 components: - pos: -31.5,-98.5 parent: 2 type: Transform - - uid: 29878 + - uid: 29920 components: - pos: -31.5,-96.5 parent: 2 type: Transform - - uid: 29879 + - uid: 29921 components: - pos: -43.5,-93.5 parent: 2 type: Transform - - uid: 29880 + - uid: 29922 components: - rot: 1.5707963267948966 rad pos: -39.5,-93.5 parent: 2 type: Transform - - uid: 29881 + - uid: 29923 components: - rot: 1.5707963267948966 rad pos: -40.5,-93.5 parent: 2 type: Transform - - uid: 29882 + - uid: 29924 components: - rot: 3.141592653589793 rad pos: -39.5,-94.5 parent: 2 type: Transform - - uid: 29883 + - uid: 29925 components: - rot: 3.141592653589793 rad pos: -39.5,-97.5 parent: 2 type: Transform - - uid: 29884 + - uid: 29926 components: - pos: 16.5,-4.5 parent: 2 type: Transform - - uid: 29885 + - uid: 29927 components: - rot: 1.5707963267948966 rad pos: 59.5,-8.5 parent: 2 type: Transform - - uid: 29886 + - uid: 29928 components: - pos: -13.5,33.5 parent: 2 type: Transform - - uid: 29887 + - uid: 29929 components: - rot: -1.5707963267948966 rad pos: -14.5,-15.5 parent: 2 type: Transform - - uid: 29888 + - uid: 29930 components: - rot: -1.5707963267948966 rad pos: -14.5,-12.5 parent: 2 type: Transform - - uid: 29889 + - uid: 29931 components: - pos: 60.5,-28.5 parent: 2 type: Transform - - uid: 29890 + - uid: 29932 components: - pos: 7.5,-35.5 parent: 2 type: Transform - - uid: 29891 + - uid: 29933 components: - pos: 7.5,-32.5 parent: 2 type: Transform - - uid: 29892 + - uid: 29934 components: - pos: 57.5,-62.5 parent: 2 type: Transform - - uid: 29893 + - uid: 29935 components: - pos: 5.5,-35.5 parent: 2 type: Transform - - uid: 29894 + - uid: 29936 components: - rot: -1.5707963267948966 rad pos: 39.5,-34.5 parent: 2 type: Transform - - uid: 29895 + - uid: 29937 components: - pos: 56.5,-62.5 parent: 2 type: Transform - - uid: 29896 + - uid: 29938 components: - pos: 7.5,-33.5 parent: 2 type: Transform - - uid: 29897 + - uid: 29939 components: - pos: 7.5,-34.5 parent: 2 type: Transform - - uid: 29898 + - uid: 29940 components: - pos: 52.5,-33.5 parent: 2 type: Transform - - uid: 29899 + - uid: 29941 components: - pos: 52.5,-34.5 parent: 2 type: Transform - - uid: 29900 + - uid: 29942 components: - pos: 55.5,-62.5 parent: 2 type: Transform - - uid: 29901 + - uid: 29943 components: - rot: -1.5707963267948966 rad pos: 38.5,-34.5 parent: 2 type: Transform - - uid: 29902 + - uid: 29944 components: - pos: 9.5,-38.5 parent: 2 type: Transform - - uid: 29903 + - uid: 29945 components: - rot: 3.141592653589793 rad pos: -16.5,-17.5 parent: 2 type: Transform - - uid: 29904 + - uid: 29946 components: - rot: 3.141592653589793 rad pos: -16.5,-19.5 parent: 2 type: Transform - - uid: 29905 + - uid: 29947 components: - rot: 3.141592653589793 rad pos: -14.5,-22.5 parent: 2 type: Transform - - uid: 29906 + - uid: 29948 components: - pos: 73.5,-55.5 parent: 2 type: Transform - - uid: 29907 + - uid: 29949 components: - pos: 52.5,-37.5 parent: 2 type: Transform - - uid: 29908 + - uid: 29950 components: - rot: 1.5707963267948966 rad pos: -57.5,-57.5 parent: 2 type: Transform - - uid: 29909 + - uid: 29951 components: - pos: 60.5,-42.5 parent: 2 type: Transform - - uid: 29910 + - uid: 29952 components: - rot: 1.5707963267948966 rad pos: 60.5,-40.5 parent: 2 type: Transform - - uid: 29911 + - uid: 29953 components: - pos: 55.5,-33.5 parent: 2 type: Transform - - uid: 29912 + - uid: 29954 components: - pos: 56.5,-36.5 parent: 2 type: Transform - - uid: 29913 + - uid: 29955 components: - pos: 56.5,-34.5 parent: 2 type: Transform - - uid: 29914 + - uid: 29956 components: - pos: 60.5,-27.5 parent: 2 type: Transform - - uid: 29915 + - uid: 29957 components: - pos: 59.5,-27.5 parent: 2 type: Transform - - uid: 29916 + - uid: 29958 components: - pos: 58.5,-27.5 parent: 2 type: Transform - - uid: 29917 + - uid: 29959 components: - pos: 56.5,-29.5 parent: 2 type: Transform - - uid: 29918 + - uid: 29960 components: - pos: 56.5,-30.5 parent: 2 type: Transform - - uid: 29919 + - uid: 29961 components: - pos: 56.5,-28.5 parent: 2 type: Transform - - uid: 29920 + - uid: 29962 components: - pos: 61.5,-27.5 parent: 2 type: Transform - - uid: 29921 + - uid: 29963 components: - pos: 56.5,-27.5 parent: 2 type: Transform - - uid: 29922 + - uid: 29964 components: - pos: 53.5,-29.5 parent: 2 type: Transform - - uid: 29923 + - uid: 29965 components: - pos: 54.5,-29.5 parent: 2 type: Transform - - uid: 29924 + - uid: 29966 components: - pos: 44.5,-62.5 parent: 2 type: Transform - - uid: 29925 + - uid: 29967 components: - pos: 44.5,-63.5 parent: 2 type: Transform - - uid: 29926 + - uid: 29968 components: - pos: 53.5,-66.5 parent: 2 type: Transform - - uid: 29927 + - uid: 29969 components: - pos: 56.5,-35.5 parent: 2 type: Transform - - uid: 29928 + - uid: 29970 components: - pos: 57.5,-66.5 parent: 2 type: Transform - - uid: 29929 + - uid: 29971 components: - pos: 57.5,-67.5 parent: 2 type: Transform - - uid: 29930 + - uid: 29972 components: - pos: 65.5,-66.5 parent: 2 type: Transform - - uid: 29931 + - uid: 29973 components: - pos: 65.5,-62.5 parent: 2 type: Transform - - uid: 29932 + - uid: 29974 components: - pos: 65.5,-64.5 parent: 2 type: Transform - - uid: 29933 + - uid: 29975 components: - pos: 65.5,-63.5 parent: 2 type: Transform - - uid: 29934 + - uid: 29976 components: - pos: 73.5,-56.5 parent: 2 type: Transform - - uid: 29935 + - uid: 29977 components: - pos: 74.5,-53.5 parent: 2 type: Transform - - uid: 29936 + - uid: 29978 components: - pos: 66.5,-62.5 parent: 2 type: Transform - - uid: 29937 + - uid: 29979 components: - pos: 67.5,-62.5 parent: 2 type: Transform - - uid: 29938 + - uid: 29980 components: - pos: 70.5,-63.5 parent: 2 type: Transform - - uid: 29939 + - uid: 29981 components: - pos: 70.5,-62.5 parent: 2 type: Transform - - uid: 29940 + - uid: 29982 components: - pos: 69.5,-62.5 parent: 2 type: Transform - - uid: 29941 + - uid: 29983 components: - pos: 69.5,-58.5 parent: 2 type: Transform - - uid: 29942 + - uid: 29984 components: - pos: 70.5,-58.5 parent: 2 type: Transform - - uid: 29943 + - uid: 29985 components: - pos: 70.5,-59.5 parent: 2 type: Transform - - uid: 29944 + - uid: 29986 components: - pos: 70.5,-60.5 parent: 2 type: Transform - - uid: 29945 + - uid: 29987 components: - pos: 72.5,-58.5 parent: 2 type: Transform - - uid: 29946 + - uid: 29988 components: - pos: 56.5,-37.5 parent: 2 type: Transform - - uid: 29947 + - uid: 29989 components: - pos: 56.5,-38.5 parent: 2 type: Transform - - uid: 29948 + - uid: 29990 components: - pos: 62.5,-27.5 parent: 2 type: Transform - - uid: 29949 + - uid: 29991 components: - pos: -69.5,-32.5 parent: 2 type: Transform - - uid: 29950 + - uid: 29992 components: - pos: 18.5,-15.5 parent: 2 type: Transform - - uid: 29951 + - uid: 29993 components: - pos: -12.5,-34.5 parent: 2 type: Transform - - uid: 29952 + - uid: 29994 components: - pos: -22.5,0.5 parent: 2 type: Transform - - uid: 29953 + - uid: 29995 components: - rot: 3.141592653589793 rad pos: 19.5,8.5 parent: 2 type: Transform - - uid: 29954 + - uid: 29996 components: - pos: 16.5,8.5 parent: 2 type: Transform - - uid: 29955 + - uid: 29997 components: - rot: 1.5707963267948966 rad pos: 2.5,-2.5 parent: 2 type: Transform - - uid: 29956 + - uid: 29998 components: - pos: 1.5,-51.5 parent: 2 type: Transform - - uid: 29957 + - uid: 29999 components: - pos: 5.5,-73.5 parent: 2 type: Transform - - uid: 29958 + - uid: 30000 components: - rot: -1.5707963267948966 rad pos: -35.5,18.5 parent: 2 type: Transform - - uid: 29959 + - uid: 30001 components: - rot: -1.5707963267948966 rad pos: -35.5,19.5 parent: 2 type: Transform - - uid: 29960 + - uid: 30002 components: - pos: -16.5,-11.5 parent: 2 type: Transform - - uid: 29961 + - uid: 30003 components: - pos: -13.5,-16.5 parent: 2 type: Transform - - uid: 29962 + - uid: 30004 components: - pos: -8.5,-7.5 parent: 2 type: Transform - - uid: 29963 + - uid: 30005 components: - pos: 6.5,-51.5 parent: 2 type: Transform - - uid: 29964 + - uid: 30006 components: - rot: -1.5707963267948966 rad pos: 8.5,-46.5 parent: 2 type: Transform - - uid: 29965 + - uid: 30007 components: - rot: 1.5707963267948966 rad pos: -27.5,-60.5 parent: 2 type: Transform - - uid: 29966 + - uid: 30008 components: - pos: -21.5,-51.5 parent: 2 type: Transform - - uid: 29967 + - uid: 30009 components: - pos: 5.5,-75.5 parent: 2 type: Transform - - uid: 29968 + - uid: 30010 components: - pos: 4.5,-72.5 parent: 2 type: Transform - proto: WallSolidRust entities: - - uid: 29969 + - uid: 30011 components: - rot: 3.141592653589793 rad pos: 13.5,-58.5 parent: 2 type: Transform - - uid: 29970 + - uid: 30012 components: - rot: 3.141592653589793 rad pos: 13.5,-56.5 parent: 2 type: Transform - - uid: 29971 + - uid: 30013 components: - rot: -1.5707963267948966 rad pos: -10.5,14.5 parent: 2 type: Transform - - uid: 29972 + - uid: 30014 components: - rot: 1.5707963267948966 rad pos: -10.5,-7.5 @@ -216407,7 +216435,7 @@ entities: type: Transform - proto: WardrobeBotanistFilled entities: - - uid: 29973 + - uid: 30015 components: - pos: -4.5,12.5 parent: 2 @@ -216430,7 +216458,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 29974 + - uid: 30016 components: - pos: -4.5,10.5 parent: 2 @@ -216455,7 +216483,7 @@ entities: type: EntityStorage - proto: WardrobeGreenFilled entities: - - uid: 29975 + - uid: 30017 components: - pos: -48.5,3.5 parent: 2 @@ -216480,7 +216508,7 @@ entities: type: EntityStorage - proto: WardrobePrisonFilled entities: - - uid: 29976 + - uid: 30018 components: - pos: 28.5,10.5 parent: 2 @@ -216503,7 +216531,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 29977 + - uid: 30019 components: - pos: 36.5,5.5 parent: 2 @@ -216526,7 +216554,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 29978 + - uid: 30020 components: - pos: 31.5,10.5 parent: 2 @@ -216549,7 +216577,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 29979 + - uid: 30021 components: - pos: 34.5,10.5 parent: 2 @@ -216572,7 +216600,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 29980 + - uid: 30022 components: - pos: 36.5,8.5 parent: 2 @@ -216595,7 +216623,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 29981 + - uid: 30023 components: - pos: 55.5,22.5 parent: 2 @@ -216618,7 +216646,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 29982 + - uid: 30024 components: - pos: 52.5,22.5 parent: 2 @@ -216641,7 +216669,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 29983 + - uid: 30025 components: - pos: 49.5,22.5 parent: 2 @@ -216664,7 +216692,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 29984 + - uid: 30026 components: - pos: 46.5,22.5 parent: 2 @@ -216687,7 +216715,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 29985 + - uid: 30027 components: - pos: 58.5,22.5 parent: 2 @@ -216710,7 +216738,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 29986 + - uid: 30028 components: - pos: 60.5,19.5 parent: 2 @@ -216733,7 +216761,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 29987 + - uid: 30029 components: - pos: 60.5,16.5 parent: 2 @@ -216758,7 +216786,7 @@ entities: type: EntityStorage - proto: WardrobeYellowFilled entities: - - uid: 29988 + - uid: 30030 components: - pos: -49.5,3.5 parent: 2 @@ -216783,56 +216811,56 @@ entities: type: EntityStorage - proto: WarningCO2 entities: - - uid: 29989 + - uid: 30031 components: - pos: -51.5,-50.5 parent: 2 type: Transform - proto: WarningN2 entities: - - uid: 29990 + - uid: 30032 components: - pos: -51.5,-54.5 parent: 2 type: Transform - proto: WarningN2O entities: - - uid: 29991 + - uid: 30033 components: - pos: -51.5,-42.5 parent: 2 type: Transform - proto: WarningO2 entities: - - uid: 29992 + - uid: 30034 components: - pos: -51.5,-52.5 parent: 2 type: Transform - proto: WarningPlasma entities: - - uid: 29993 + - uid: 30035 components: - pos: -51.5,-46.5 parent: 2 type: Transform - proto: WarningTritium entities: - - uid: 29994 + - uid: 30036 components: - pos: -51.5,-44.5 parent: 2 type: Transform - proto: WarningWaste entities: - - uid: 29995 + - uid: 30037 components: - pos: -51.5,-48.5 parent: 2 type: Transform - proto: WarpPoint entities: - - uid: 29996 + - uid: 30038 components: - rot: -1.5707963267948966 rad pos: 25.5,-39.5 @@ -216840,14 +216868,14 @@ entities: type: Transform - location: personnel type: WarpPoint - - uid: 29997 + - uid: 30039 components: - pos: 12.5,11.5 parent: 2 type: Transform - location: bar type: WarpPoint - - uid: 29998 + - uid: 30040 components: - name: 'Warp: medical' type: MetaData @@ -216856,7 +216884,7 @@ entities: type: Transform - location: medbay type: WarpPoint - - uid: 29999 + - uid: 30041 components: - name: 'warp: science' type: MetaData @@ -216865,7 +216893,7 @@ entities: type: Transform - location: science reception type: WarpPoint - - uid: 30000 + - uid: 30042 components: - name: 'warp: bridge' type: MetaData @@ -216874,7 +216902,7 @@ entities: type: Transform - location: bridge type: WarpPoint - - uid: 30001 + - uid: 30043 components: - name: 'warp: prison' type: MetaData @@ -216883,7 +216911,7 @@ entities: type: Transform - location: open prison type: WarpPoint - - uid: 30002 + - uid: 30044 components: - name: 'warp: security' type: MetaData @@ -216892,21 +216920,21 @@ entities: type: Transform - location: security type: WarpPoint - - uid: 30003 + - uid: 30045 components: - pos: 61.5,-8.5 parent: 2 type: Transform - location: evac type: WarpPoint - - uid: 30004 + - uid: 30046 components: - name: 'warp: waste' type: MetaData - pos: 17.5,-53.5 parent: 2 type: Transform - - uid: 30005 + - uid: 30047 components: - name: 'warp: engineering' type: MetaData @@ -216915,7 +216943,7 @@ entities: type: Transform - location: engineering reception type: WarpPoint - - uid: 30006 + - uid: 30048 components: - name: 'warp: atmospherics' type: MetaData @@ -216924,7 +216952,7 @@ entities: type: Transform - location: atmospherics type: WarpPoint - - uid: 30007 + - uid: 30049 components: - name: 'warp: singularity' type: MetaData @@ -216933,7 +216961,7 @@ entities: type: Transform - location: singularity type: WarpPoint - - uid: 30008 + - uid: 30050 components: - name: 'warp: forgotten dock' type: MetaData @@ -216942,7 +216970,7 @@ entities: type: Transform - location: forgotten ship dock type: WarpPoint - - uid: 30009 + - uid: 30051 components: - name: 'warp: jani closet' type: MetaData @@ -216951,7 +216979,7 @@ entities: type: Transform - location: janitorial closet type: WarpPoint - - uid: 30010 + - uid: 30052 components: - name: 'warp: courthouse' type: MetaData @@ -216960,7 +216988,7 @@ entities: type: Transform - location: courtroom type: WarpPoint - - uid: 30011 + - uid: 30053 components: - name: 'Warp: psychology' type: MetaData @@ -216969,7 +216997,7 @@ entities: type: Transform - location: psychology type: WarpPoint - - uid: 30012 + - uid: 30054 components: - name: 'warp: virology' type: MetaData @@ -216978,7 +217006,7 @@ entities: type: Transform - location: virology reception type: WarpPoint - - uid: 30013 + - uid: 30055 components: - name: 'warp: cargo' type: MetaData @@ -216988,7 +217016,7 @@ entities: type: Transform - location: cargo type: WarpPoint - - uid: 30014 + - uid: 30056 components: - name: 'warp: salvage' type: MetaData @@ -216998,7 +217026,7 @@ entities: type: Transform - location: salvage type: WarpPoint - - uid: 30015 + - uid: 30057 components: - name: 'warp: arrivals' type: MetaData @@ -217008,7 +217036,7 @@ entities: type: Transform - location: arrivals type: WarpPoint - - uid: 30016 + - uid: 30058 components: - name: 'Warp: kitchen' type: MetaData @@ -217018,7 +217046,7 @@ entities: type: Transform - location: kitchen type: WarpPoint - - uid: 30017 + - uid: 30059 components: - name: 'Warp: botany' type: MetaData @@ -217028,7 +217056,7 @@ entities: type: Transform - location: hydrophonics type: WarpPoint - - uid: 30018 + - uid: 30060 components: - name: 'warp: theatre' type: MetaData @@ -217038,7 +217066,7 @@ entities: type: Transform - location: theatre type: WarpPoint - - uid: 30019 + - uid: 30061 components: - name: 'warp: library' type: MetaData @@ -217048,7 +217076,7 @@ entities: type: Transform - location: library type: WarpPoint - - uid: 30020 + - uid: 30062 components: - name: 'Warp: armory' type: MetaData @@ -217058,7 +217086,7 @@ entities: type: Transform - location: armory type: WarpPoint - - uid: 30021 + - uid: 30063 components: - name: 'warp: revolution bar' type: MetaData @@ -217068,7 +217096,7 @@ entities: type: Transform - location: rebelion bar type: WarpPoint - - uid: 30022 + - uid: 30064 components: - rot: 3.141592653589793 rad pos: -44.5,53.5 @@ -217078,29 +217106,29 @@ entities: type: WarpPoint - proto: WaterCooler entities: - - uid: 30023 + - uid: 30065 components: - pos: -8.5,-35.5 parent: 2 type: Transform - - uid: 30024 + - uid: 30066 components: - pos: 55.398575,18.5843 parent: 2 type: Transform - - uid: 30025 + - uid: 30067 components: - pos: 36.5,-6.5 parent: 2 type: Transform - - uid: 30026 + - uid: 30068 components: - pos: 41.5,-47.5 parent: 2 type: Transform - proto: WatermelonSeeds entities: - - uid: 30027 + - uid: 30069 components: - pos: -10.7386265,11.36718 parent: 2 @@ -217109,213 +217137,213 @@ entities: type: EmitSoundOnCollide - proto: WaterTank entities: - - uid: 30028 + - uid: 30070 components: - pos: 74.5,-54.5 parent: 2 type: Transform - proto: WaterTankFull entities: - - uid: 30029 + - uid: 30071 components: - pos: -19.5,-86.5 parent: 2 type: Transform - - uid: 30030 + - uid: 30072 components: - pos: 7.5,-81.5 parent: 2 type: Transform - - uid: 30031 + - uid: 30073 components: - pos: 45.5,21.5 parent: 2 type: Transform - - uid: 30032 + - uid: 30074 components: - pos: 8.5,-64.5 parent: 2 type: Transform - - uid: 30033 + - uid: 30075 components: - pos: -29.5,-65.5 parent: 2 type: Transform - - uid: 30034 + - uid: 30076 components: - pos: 35.5,-10.5 parent: 2 type: Transform - - uid: 30035 + - uid: 30077 components: - pos: -27.5,-43.5 parent: 2 type: Transform - - uid: 30036 + - uid: 30078 components: - pos: -1.5,-14.5 parent: 2 type: Transform - - uid: 30037 + - uid: 30079 components: - pos: -39.5,-30.5 parent: 2 type: Transform - - uid: 30038 + - uid: 30080 components: - pos: -45.5,-3.5 parent: 2 type: Transform - - uid: 30039 + - uid: 30081 components: - pos: -27.5,37.5 parent: 2 type: Transform - - uid: 30040 + - uid: 30082 components: - pos: -1.5,23.5 parent: 2 type: Transform - - uid: 30041 + - uid: 30083 components: - pos: -8.5,-8.5 parent: 2 type: Transform - proto: WaterTankHighCapacity entities: - - uid: 30042 + - uid: 30084 components: - pos: -7.5,-21.5 parent: 2 type: Transform - - uid: 30043 + - uid: 30085 components: - pos: -5.5,8.5 parent: 2 type: Transform - proto: WaterVaporCanister entities: - - uid: 30044 + - uid: 30086 components: - pos: -50.5,-48.5 parent: 2 type: Transform - - uid: 30045 + - uid: 30087 components: - pos: -34.5,-28.5 parent: 2 type: Transform - proto: WeaponCapacitorRecharger entities: - - uid: 30046 + - uid: 30088 components: - pos: 28.5,-21.5 parent: 2 type: Transform - - uid: 30047 + - uid: 30089 components: - pos: 2.5,-56.5 parent: 2 type: Transform - - uid: 30048 + - uid: 30090 components: - pos: 6.5,12.5 parent: 2 type: Transform - - uid: 30049 + - uid: 30091 components: - pos: 20.5,-45.5 parent: 2 type: Transform - - uid: 30050 + - uid: 30092 components: - pos: 5.5,20.5 parent: 2 type: Transform - - uid: 30051 + - uid: 30093 components: - pos: 17.5,22.5 parent: 2 type: Transform - - uid: 30052 + - uid: 30094 components: - pos: 25.5,23.5 parent: 2 type: Transform - - uid: 30053 + - uid: 30095 components: - pos: -16.5,24.5 parent: 2 type: Transform - - uid: 30054 + - uid: 30096 components: - pos: -16.5,-21.5 parent: 2 type: Transform - proto: WeaponDisabler entities: - - uid: 30055 + - uid: 30097 components: - pos: 1.6229637,21.593708 parent: 2 type: Transform - - uid: 30056 + - uid: 30098 components: - pos: 12.563014,21.38584 parent: 2 type: Transform - - uid: 30057 + - uid: 30099 components: - pos: 12.453639,21.54209 parent: 2 type: Transform - proto: WeaponLaserCarbine entities: - - uid: 30058 + - uid: 30100 components: - pos: 31.473701,27.53409 parent: 2 type: Transform - - uid: 30059 + - uid: 30101 components: - pos: 27.52579,29.485806 parent: 2 type: Transform - - uid: 30060 + - uid: 30102 components: - pos: 27.55704,27.505564 parent: 2 type: Transform - - uid: 30061 + - uid: 30103 components: - pos: 31.458076,29.523903 parent: 2 type: Transform - proto: WeaponPistolMk58 entities: - - uid: 30062 + - uid: 30104 components: - pos: 31.657001,32.450115 parent: 2 type: Transform - - uid: 30063 + - uid: 30105 components: - pos: 31.637281,32.558495 parent: 2 type: Transform - - uid: 30064 + - uid: 30106 components: - pos: 31.586092,32.47933 parent: 2 type: Transform - proto: WeaponProtoKineticAccelerator entities: - - uid: 30065 + - uid: 30107 components: - pos: -36.73277,27.512495 parent: 2 type: Transform - - uid: 30066 + - uid: 30108 components: - pos: -47.53973,38.643734 parent: 2 @@ -217326,80 +217354,80 @@ entities: type: EmitSoundOnCollide - proto: WeaponRevolverDeckard entities: - - uid: 30067 + - uid: 30109 components: - pos: 30.600538,32.59448 parent: 2 type: Transform - proto: WeaponShotgunKammerer entities: - - uid: 30068 + - uid: 30110 components: - pos: 26.643364,32.60906 parent: 2 type: Transform - - uid: 30069 + - uid: 30111 components: - pos: 26.777893,32.47498 parent: 2 type: Transform - proto: WeaponSubMachineGunDrozd entities: - - uid: 30070 + - uid: 30112 components: - pos: 27.939907,32.617863 parent: 2 type: Transform - - uid: 30071 + - uid: 30113 components: - pos: 28.718153,32.704456 parent: 2 type: Transform - - uid: 30072 + - uid: 30114 components: - pos: 29.421278,32.68883 parent: 2 type: Transform - proto: WeaponSubMachineGunWt550 entities: - - uid: 30073 + - uid: 30115 components: - pos: 6.384364,22.636343 parent: 2 type: Transform - proto: Welder entities: - - uid: 30074 + - uid: 30116 components: - pos: -23.377909,-24.435646 parent: 2 type: Transform - - uid: 30075 + - uid: 30117 components: - pos: -11.453522,-74.45183 parent: 2 type: Transform - - uid: 30076 + - uid: 30118 components: - pos: -44.4577,-25.484493 parent: 2 type: Transform - - uid: 30077 + - uid: 30119 components: - pos: -28.416739,-28.473803 parent: 2 type: Transform - - uid: 30078 + - uid: 30120 components: - pos: -52.43758,2.566814 parent: 2 type: Transform - - uid: 30079 + - uid: 30121 components: - pos: -44.442474,-76.91975 parent: 2 type: Transform - - uid: 30080 + - uid: 30122 components: - pos: 76.51503,-43.437786 parent: 2 @@ -217408,112 +217436,112 @@ entities: type: MeleeWeapon - proto: WelderIndustrial entities: - - uid: 30081 + - uid: 30123 components: - pos: -34.41553,-12.611145 parent: 2 type: Transform - - uid: 30082 + - uid: 30124 components: - pos: -35.502888,-46.513077 parent: 2 type: Transform - - uid: 30083 + - uid: 30125 components: - pos: -42.417007,-21.43029 parent: 2 type: Transform - proto: WelderMini entities: - - uid: 30084 + - uid: 30126 components: - pos: -52.426445,-12.844277 parent: 2 type: Transform - proto: WeldingFuelTank entities: - - uid: 30085 + - uid: 30127 components: - pos: -28.5,-43.5 parent: 2 type: Transform - - uid: 30086 + - uid: 30128 components: - pos: 7.5,-64.5 parent: 2 type: Transform - proto: WeldingFuelTankFull entities: - - uid: 30087 + - uid: 30129 components: - pos: -3.5,-71.5 parent: 2 type: Transform - - uid: 30088 + - uid: 30130 components: - pos: -28.5,-25.5 parent: 2 type: Transform - - uid: 30089 + - uid: 30131 components: - pos: -43.5,-63.5 parent: 2 type: Transform - - uid: 30090 + - uid: 30132 components: - pos: -38.5,-30.5 parent: 2 type: Transform - - uid: 30091 + - uid: 30133 components: - pos: -0.5,23.5 parent: 2 type: Transform - - uid: 30092 + - uid: 30134 components: - pos: -51.5,4.5 parent: 2 type: Transform - - uid: 30093 + - uid: 30135 components: - pos: -16.5,-18.5 parent: 2 type: Transform - - uid: 30094 + - uid: 30136 components: - pos: 39.5,-32.5 parent: 2 type: Transform - - uid: 30095 + - uid: 30137 components: - pos: 72.5,-59.5 parent: 2 type: Transform - proto: WetFloorSign entities: - - uid: 30096 + - uid: 30138 components: - pos: -7.8693366,-23.228895 parent: 2 type: Transform - - uid: 30097 + - uid: 30139 components: - pos: 16.379074,-41.325726 parent: 2 type: Transform - - uid: 30098 + - uid: 30140 components: - pos: -7.8537116,-23.36952 parent: 2 type: Transform - - uid: 30099 + - uid: 30141 components: - pos: -7.7912116,-23.603895 parent: 2 type: Transform - proto: Windoor entities: - - uid: 30100 + - uid: 30142 components: - rot: 1.5707963267948966 rad pos: 26.5,0.5 @@ -217521,49 +217549,49 @@ entities: type: Transform - proto: WindoorArmoryLocked entities: - - uid: 30101 + - uid: 30143 components: - rot: 3.141592653589793 rad pos: 25.5,19.5 parent: 2 type: Transform - - uid: 30102 + - uid: 30144 components: - rot: 3.141592653589793 rad pos: 24.5,19.5 parent: 2 type: Transform - - uid: 30103 + - uid: 30145 components: - rot: 1.5707963267948966 rad pos: 30.5,28.5 parent: 2 type: Transform - - uid: 30104 + - uid: 30146 components: - rot: 1.5707963267948966 rad pos: 30.5,30.5 parent: 2 type: Transform - - uid: 30105 + - uid: 30147 components: - rot: -1.5707963267948966 rad pos: 28.5,30.5 parent: 2 type: Transform - - uid: 30106 + - uid: 30148 components: - rot: 3.141592653589793 rad pos: 26.5,19.5 parent: 2 type: Transform - - uid: 30107 + - uid: 30149 components: - rot: -1.5707963267948966 rad pos: 28.5,28.5 parent: 2 type: Transform - - uid: 30108 + - uid: 30150 components: - rot: 3.141592653589793 rad pos: 29.5,30.5 @@ -217571,29 +217599,29 @@ entities: type: Transform - proto: WindoorBarLocked entities: - - uid: 30109 + - uid: 30151 components: - pos: 18.5,15.5 parent: 2 type: Transform - - uid: 30110 + - uid: 30152 components: - pos: 17.5,15.5 parent: 2 type: Transform - - uid: 30111 + - uid: 30153 components: - rot: 1.5707963267948966 rad pos: 15.5,14.5 parent: 2 type: Transform - - uid: 30112 + - uid: 30154 components: - rot: 1.5707963267948966 rad pos: -39.5,-75.5 parent: 2 type: Transform - - uid: 30113 + - uid: 30155 components: - rot: -1.5707963267948966 rad pos: -44.5,-75.5 @@ -217601,19 +217629,19 @@ entities: type: Transform - proto: WindoorChemistryLocked entities: - - uid: 30114 + - uid: 30156 components: - rot: 1.5707963267948966 rad pos: 1.5,-48.5 parent: 2 type: Transform - - uid: 30115 + - uid: 30157 components: - rot: 1.5707963267948966 rad pos: 1.5,-46.5 parent: 2 type: Transform - - uid: 30116 + - uid: 30158 components: - rot: 3.141592653589793 rad pos: 3.5,-51.5 @@ -217621,13 +217649,13 @@ entities: type: Transform - proto: WindoorEngineeringLocked entities: - - uid: 30117 + - uid: 30159 components: - rot: -1.5707963267948966 rad pos: -26.5,-12.5 parent: 2 type: Transform - - uid: 30118 + - uid: 30160 components: - rot: -1.5707963267948966 rad pos: -21.5,-34.5 @@ -217635,7 +217663,7 @@ entities: type: Transform - proto: WindoorHeadOfPersonnelLocked entities: - - uid: 30119 + - uid: 30161 components: - rot: 3.141592653589793 rad pos: 28.5,-38.5 @@ -217643,74 +217671,74 @@ entities: type: Transform - proto: WindoorMedicalLocked entities: - - uid: 30120 + - uid: 30162 components: - rot: -1.5707963267948966 rad pos: -17.5,-79.5 parent: 2 type: Transform - - uid: 30121 + - uid: 30163 components: - rot: -1.5707963267948966 rad pos: -16.5,-78.5 parent: 2 type: Transform - - uid: 30122 + - uid: 30164 components: - rot: -1.5707963267948966 rad pos: -16.5,-76.5 parent: 2 type: Transform - - uid: 30123 + - uid: 30165 components: - rot: 1.5707963267948966 rad pos: -28.5,-77.5 parent: 2 type: Transform - - uid: 30124 + - uid: 30166 components: - rot: -1.5707963267948966 rad pos: -17.5,-75.5 parent: 2 type: Transform - - uid: 30125 + - uid: 30167 components: - rot: 1.5707963267948966 rad pos: -28.5,-79.5 parent: 2 type: Transform - - uid: 30126 + - uid: 30168 components: - rot: 3.141592653589793 rad pos: -20.5,-88.5 parent: 2 type: Transform - - uid: 30127 + - uid: 30169 components: - rot: 3.141592653589793 rad pos: -25.5,-88.5 parent: 2 type: Transform - - uid: 30128 + - uid: 30170 components: - rot: -1.5707963267948966 rad pos: 48.5,6.5 parent: 2 type: Transform - - uid: 30129 + - uid: 30171 components: - pos: 3.5,-51.5 parent: 2 type: Transform - proto: WindoorScienceLocked entities: - - uid: 30130 + - uid: 30172 components: - rot: 3.141592653589793 rad pos: 42.5,-40.5 parent: 2 type: Transform - - uid: 30131 + - uid: 30173 components: - rot: 3.141592653589793 rad pos: 43.5,-40.5 @@ -217718,83 +217746,83 @@ entities: type: Transform - proto: WindoorSecure entities: - - uid: 30132 + - uid: 30174 components: - pos: 17.5,-53.5 parent: 2 type: Transform - - uid: 30133 + - uid: 30175 components: - pos: -13.5,-9.5 parent: 2 type: Transform - - uid: 30134 + - uid: 30176 components: - pos: 28.5,-38.5 parent: 2 type: Transform - - uid: 30135 + - uid: 30177 components: - pos: 59.5,22.5 parent: 2 type: Transform - - uid: 30136 + - uid: 30178 components: - pos: 56.5,22.5 parent: 2 type: Transform - - uid: 30137 + - uid: 30179 components: - pos: 53.5,22.5 parent: 2 type: Transform - - uid: 30138 + - uid: 30180 components: - pos: 50.5,22.5 parent: 2 type: Transform - - uid: 30139 + - uid: 30181 components: - pos: 47.5,22.5 parent: 2 type: Transform - - uid: 30140 + - uid: 30182 components: - rot: -1.5707963267948966 rad pos: 60.5,18.5 parent: 2 type: Transform - - uid: 30141 + - uid: 30183 components: - rot: -1.5707963267948966 rad pos: 60.5,15.5 parent: 2 type: Transform - - uid: 30142 + - uid: 30184 components: - rot: 1.5707963267948966 rad pos: 59.5,-34.5 parent: 2 type: Transform - - uid: 30143 + - uid: 30185 components: - rot: 1.5707963267948966 rad pos: 59.5,-33.5 parent: 2 type: Transform - - uid: 30144 + - uid: 30186 components: - rot: 1.5707963267948966 rad pos: -39.5,-83.5 parent: 2 type: Transform - - uid: 30145 + - uid: 30187 components: - rot: -1.5707963267948966 rad pos: -34.5,14.5 parent: 2 type: Transform - - uid: 30146 + - uid: 30188 components: - rot: 3.141592653589793 rad pos: 71.5,-47.5 @@ -217802,7 +217830,7 @@ entities: type: Transform - proto: WindoorSecureCargoLocked entities: - - uid: 30147 + - uid: 30189 components: - rot: -1.5707963267948966 rad pos: -26.5,22.5 @@ -217810,13 +217838,13 @@ entities: type: Transform - proto: WindoorSecurityLocked entities: - - uid: 30148 + - uid: 30190 components: - rot: 1.5707963267948966 rad pos: 42.5,6.5 parent: 2 type: Transform - - uid: 30149 + - uid: 30191 components: - rot: 3.141592653589793 rad pos: 29.5,13.5 @@ -217834,7 +217862,7 @@ entities: - port: Timer uid: 2231 type: SignalReceiver - - uid: 30150 + - uid: 30192 components: - rot: 1.5707963267948966 rad pos: 39.5,7.5 @@ -217852,25 +217880,25 @@ entities: - port: Timer uid: 2233 type: SignalReceiver - - uid: 30151 + - uid: 30193 components: - rot: 3.141592653589793 rad pos: 5.5,11.5 parent: 2 type: Transform - - uid: 30152 + - uid: 30194 components: - rot: -1.5707963267948966 rad pos: 5.5,-56.5 parent: 2 type: Transform - - uid: 30153 + - uid: 30195 components: - rot: 3.141592653589793 rad pos: 4.5,11.5 parent: 2 type: Transform - - uid: 30154 + - uid: 30196 components: - rot: 3.141592653589793 rad pos: 32.5,13.5 @@ -217888,7 +217916,7 @@ entities: - port: Timer uid: 2232 type: SignalReceiver - - uid: 30155 + - uid: 30197 components: - rot: 1.5707963267948966 rad pos: 39.5,4.5 @@ -217906,13 +217934,13 @@ entities: - port: Timer uid: 2234 type: SignalReceiver - - uid: 30156 + - uid: 30198 components: - rot: 3.141592653589793 rad pos: 17.5,15.5 parent: 2 type: Transform - - uid: 30157 + - uid: 30199 components: - rot: 3.141592653589793 rad pos: 35.5,13.5 @@ -217930,40 +217958,40 @@ entities: - port: Timer uid: 2230 type: SignalReceiver - - uid: 30158 + - uid: 30200 components: - rot: 3.141592653589793 rad pos: 18.5,15.5 parent: 2 type: Transform - - uid: 30159 + - uid: 30201 components: - pos: 21.5,-44.5 parent: 2 type: Transform - - uid: 30160 + - uid: 30202 components: - pos: 22.5,-44.5 parent: 2 type: Transform - - uid: 30161 + - uid: 30203 components: - rot: 1.5707963267948966 rad pos: -17.5,-22.5 parent: 2 type: Transform - - uid: 30162 + - uid: 30204 components: - rot: 1.5707963267948966 rad pos: -17.5,-23.5 parent: 2 type: Transform - - uid: 30163 + - uid: 30205 components: - pos: 31.5,-52.5 parent: 2 type: Transform - - uid: 30164 + - uid: 30206 components: - rot: 1.5707963267948966 rad pos: -17.5,25.5 @@ -217971,7 +217999,7 @@ entities: type: Transform - proto: WindoorTheatreLocked entities: - - uid: 30165 + - uid: 30207 components: - rot: 3.141592653589793 rad pos: 9.5,-0.5 @@ -217979,804 +218007,804 @@ entities: type: Transform - proto: Window entities: - - uid: 30166 + - uid: 30208 components: - pos: 27.5,-55.5 parent: 2 type: Transform - - uid: 30167 + - uid: 30209 components: - pos: 27.5,-54.5 parent: 2 type: Transform - - uid: 30168 + - uid: 30210 components: - rot: 3.141592653589793 rad pos: -20.5,65.5 parent: 2 type: Transform - - uid: 30169 + - uid: 30211 components: - rot: 3.141592653589793 rad pos: -20.5,67.5 parent: 2 type: Transform - - uid: 30170 + - uid: 30212 components: - rot: 3.141592653589793 rad pos: -14.5,67.5 parent: 2 type: Transform - - uid: 30171 + - uid: 30213 components: - pos: -13.5,-57.5 parent: 2 type: Transform - - uid: 30172 + - uid: 30214 components: - pos: -9.5,-58.5 parent: 2 type: Transform - - uid: 30173 + - uid: 30215 components: - pos: -4.5,-56.5 parent: 2 type: Transform - - uid: 30174 + - uid: 30216 components: - rot: -1.5707963267948966 rad pos: 22.5,5.5 parent: 2 type: Transform - - uid: 30175 + - uid: 30217 components: - pos: -21.5,-13.5 parent: 2 type: Transform - - uid: 30176 + - uid: 30218 components: - pos: -9.5,-40.5 parent: 2 type: Transform - - uid: 30177 + - uid: 30219 components: - rot: -1.5707963267948966 rad pos: 19.5,-1.5 parent: 2 type: Transform - - uid: 30178 + - uid: 30220 components: - rot: 1.5707963267948966 rad pos: -2.5,-4.5 parent: 2 type: Transform - - uid: 30179 + - uid: 30221 components: - pos: -14.5,-44.5 parent: 2 type: Transform - - uid: 30180 + - uid: 30222 components: - pos: -1.5,-56.5 parent: 2 type: Transform - - uid: 30181 + - uid: 30223 components: - pos: 39.5,-0.5 parent: 2 type: Transform - - uid: 30182 + - uid: 30224 components: - pos: -12.5,-58.5 parent: 2 type: Transform - - uid: 30183 + - uid: 30225 components: - pos: -6.5,-55.5 parent: 2 type: Transform - - uid: 30184 + - uid: 30226 components: - pos: -0.5,-62.5 parent: 2 type: Transform - - uid: 30185 + - uid: 30227 components: - pos: 1.5,-56.5 parent: 2 type: Transform - - uid: 30186 + - uid: 30228 components: - pos: -0.5,-58.5 parent: 2 type: Transform - - uid: 30187 + - uid: 30229 components: - pos: -3.5,-58.5 parent: 2 type: Transform - - uid: 30188 + - uid: 30230 components: - pos: 3.5,-2.5 parent: 2 type: Transform - - uid: 30189 + - uid: 30231 components: - pos: 24.5,-40.5 parent: 2 type: Transform - - uid: 30190 + - uid: 30232 components: - pos: 30.5,-57.5 parent: 2 type: Transform - - uid: 30191 + - uid: 30233 components: - pos: 29.5,-57.5 parent: 2 type: Transform - - uid: 30192 + - uid: 30234 components: - pos: 33.5,-57.5 parent: 2 type: Transform - - uid: 30193 + - uid: 30235 components: - rot: -1.5707963267948966 rad pos: 19.5,0.5 parent: 2 type: Transform - - uid: 30194 + - uid: 30236 components: - rot: -1.5707963267948966 rad pos: 26.5,-3.5 parent: 2 type: Transform - - uid: 30195 + - uid: 30237 components: - rot: -1.5707963267948966 rad pos: 23.5,-3.5 parent: 2 type: Transform - - uid: 30196 + - uid: 30238 components: - rot: -1.5707963267948966 rad pos: 22.5,-3.5 parent: 2 type: Transform - - uid: 30197 + - uid: 30239 components: - pos: 35.5,-5.5 parent: 2 type: Transform - - uid: 30198 + - uid: 30240 components: - pos: -21.5,11.5 parent: 2 type: Transform - - uid: 30199 + - uid: 30241 components: - pos: -21.5,12.5 parent: 2 type: Transform - - uid: 30200 + - uid: 30242 components: - pos: 27.5,-40.5 parent: 2 type: Transform - - uid: 30201 + - uid: 30243 components: - pos: 23.5,-40.5 parent: 2 type: Transform - - uid: 30202 + - uid: 30244 components: - pos: -21.5,-10.5 parent: 2 type: Transform - - uid: 30203 + - uid: 30245 components: - pos: -21.5,-14.5 parent: 2 type: Transform - - uid: 30204 + - uid: 30246 components: - pos: 35.5,-1.5 parent: 2 type: Transform - - uid: 30205 + - uid: 30247 components: - pos: 35.5,-2.5 parent: 2 type: Transform - - uid: 30206 + - uid: 30248 components: - rot: 1.5707963267948966 rad pos: -2.5,-5.5 parent: 2 type: Transform - - uid: 30207 + - uid: 30249 components: - pos: -21.5,-9.5 parent: 2 type: Transform - - uid: 30208 + - uid: 30250 components: - pos: -5.5,-44.5 parent: 2 type: Transform - - uid: 30209 + - uid: 30251 components: - pos: -11.5,-40.5 parent: 2 type: Transform - - uid: 30210 + - uid: 30252 components: - pos: -10.5,-40.5 parent: 2 type: Transform - - uid: 30211 + - uid: 30253 components: - pos: 0.5,-62.5 parent: 2 type: Transform - - uid: 30212 + - uid: 30254 components: - pos: 1.5,-57.5 parent: 2 type: Transform - - uid: 30213 + - uid: 30255 components: - pos: -0.5,-55.5 parent: 2 type: Transform - - uid: 30214 + - uid: 30256 components: - pos: 2.5,-55.5 parent: 2 type: Transform - - uid: 30215 + - uid: 30257 components: - pos: 2.5,-62.5 parent: 2 type: Transform - - uid: 30216 + - uid: 30258 components: - pos: -9.5,-62.5 parent: 2 type: Transform - - uid: 30217 + - uid: 30259 components: - pos: -3.5,-55.5 parent: 2 type: Transform - - uid: 30218 + - uid: 30260 components: - pos: -9.5,-55.5 parent: 2 type: Transform - - uid: 30219 + - uid: 30261 components: - pos: 2.5,-58.5 parent: 2 type: Transform - - uid: 30220 + - uid: 30262 components: - pos: 4.5,-62.5 parent: 2 type: Transform - - uid: 30221 + - uid: 30263 components: - pos: -8.5,-62.5 parent: 2 type: Transform - - uid: 30222 + - uid: 30264 components: - pos: -10.5,-56.5 parent: 2 type: Transform - - uid: 30223 + - uid: 30265 components: - pos: -10.5,-57.5 parent: 2 type: Transform - - uid: 30224 + - uid: 30266 components: - pos: -21.5,-61.5 parent: 2 type: Transform - - uid: 30225 + - uid: 30267 components: - pos: -21.5,-59.5 parent: 2 type: Transform - - uid: 30226 + - uid: 30268 components: - pos: -12.5,-44.5 parent: 2 type: Transform - - uid: 30227 + - uid: 30269 components: - pos: -12.5,-55.5 parent: 2 type: Transform - - uid: 30228 + - uid: 30270 components: - pos: -6.5,-36.5 parent: 2 type: Transform - - uid: 30229 + - uid: 30271 components: - pos: -25.5,9.5 parent: 2 type: Transform - - uid: 30230 + - uid: 30272 components: - pos: -3.5,-44.5 parent: 2 type: Transform - - uid: 30231 + - uid: 30273 components: - rot: -1.5707963267948966 rad pos: 19.5,-0.5 parent: 2 type: Transform - - uid: 30232 + - uid: 30274 components: - rot: -1.5707963267948966 rad pos: 25.5,5.5 parent: 2 type: Transform - - uid: 30233 + - uid: 30275 components: - rot: -1.5707963267948966 rad pos: 27.5,-3.5 parent: 2 type: Transform - - uid: 30234 + - uid: 30276 components: - rot: -1.5707963267948966 rad pos: 21.5,-3.5 parent: 2 type: Transform - - uid: 30235 + - uid: 30277 components: - pos: 25.5,-40.5 parent: 2 type: Transform - - uid: 30236 + - uid: 30278 components: - pos: -4.5,-44.5 parent: 2 type: Transform - - uid: 30237 + - uid: 30279 components: - pos: -1.5,-57.5 parent: 2 type: Transform - - uid: 30238 + - uid: 30280 components: - pos: -4.5,-57.5 parent: 2 type: Transform - - uid: 30239 + - uid: 30281 components: - pos: -7.5,-57.5 parent: 2 type: Transform - - uid: 30240 + - uid: 30282 components: - pos: -13.5,-44.5 parent: 2 type: Transform - - uid: 30241 + - uid: 30283 components: - pos: -6.5,-38.5 parent: 2 type: Transform - - uid: 30242 + - uid: 30284 components: - pos: -10.5,-16.5 parent: 2 type: Transform - - uid: 30243 + - uid: 30285 components: - pos: 42.5,-0.5 parent: 2 type: Transform - - uid: 30244 + - uid: 30286 components: - pos: -21.5,-20.5 parent: 2 type: Transform - - uid: 30245 + - uid: 30287 components: - rot: -1.5707963267948966 rad pos: 21.5,5.5 parent: 2 type: Transform - - uid: 30246 + - uid: 30288 components: - rot: -1.5707963267948966 rad pos: 26.5,5.5 parent: 2 type: Transform - - uid: 30247 + - uid: 30289 components: - rot: -1.5707963267948966 rad pos: 23.5,5.5 parent: 2 type: Transform - - uid: 30248 + - uid: 30290 components: - rot: -1.5707963267948966 rad pos: 25.5,-3.5 parent: 2 type: Transform - - uid: 30249 + - uid: 30291 components: - pos: -12.5,43.5 parent: 2 type: Transform - - uid: 30250 + - uid: 30292 components: - pos: 37.5,-0.5 parent: 2 type: Transform - - uid: 30251 + - uid: 30293 components: - rot: 3.141592653589793 rad pos: -20.5,-68.5 parent: 2 type: Transform - - uid: 30252 + - uid: 30294 components: - rot: 3.141592653589793 rad pos: -18.5,-68.5 parent: 2 type: Transform - - uid: 30253 + - uid: 30295 components: - rot: -1.5707963267948966 rad pos: 19.5,3.5 parent: 2 type: Transform - - uid: 30254 + - uid: 30296 components: - rot: -1.5707963267948966 rad pos: 19.5,2.5 parent: 2 type: Transform - - uid: 30255 + - uid: 30297 components: - pos: -6.5,-58.5 parent: 2 type: Transform - - uid: 30256 + - uid: 30298 components: - pos: -6.5,-37.5 parent: 2 type: Transform - - uid: 30257 + - uid: 30299 components: - pos: -7.5,-56.5 parent: 2 type: Transform - - uid: 30258 + - uid: 30300 components: - pos: 41.5,-0.5 parent: 2 type: Transform - - uid: 30259 + - uid: 30301 components: - pos: -13.5,-56.5 parent: 2 type: Transform - - uid: 30260 + - uid: 30302 components: - rot: -1.5707963267948966 rad pos: 19.5,1.5 parent: 2 type: Transform - - uid: 30261 + - uid: 30303 components: - rot: -1.5707963267948966 rad pos: 27.5,5.5 parent: 2 type: Transform - - uid: 30262 + - uid: 30304 components: - pos: 43.5,-0.5 parent: 2 type: Transform - - uid: 30263 + - uid: 30305 components: - pos: -21.5,-22.5 parent: 2 type: Transform - - uid: 30264 + - uid: 30306 components: - pos: 32.5,-57.5 parent: 2 type: Transform - - uid: 30265 + - uid: 30307 components: - pos: -12.5,14.5 parent: 2 type: Transform - - uid: 30266 + - uid: 30308 components: - pos: -23.5,9.5 parent: 2 type: Transform - - uid: 30267 + - uid: 30309 components: - pos: -22.5,9.5 parent: 2 type: Transform - - uid: 30268 + - uid: 30310 components: - pos: -8.5,43.5 parent: 2 type: Transform - - uid: 30269 + - uid: 30311 components: - pos: 35.5,-4.5 parent: 2 type: Transform - - uid: 30270 + - uid: 30312 components: - pos: -12.5,-16.5 parent: 2 type: Transform - - uid: 30271 + - uid: 30313 components: - pos: 43.5,-12.5 parent: 2 type: Transform - - uid: 30272 + - uid: 30314 components: - pos: 42.5,-44.5 parent: 2 type: Transform - - uid: 30273 + - uid: 30315 components: - pos: 43.5,-44.5 parent: 2 type: Transform - - uid: 30274 + - uid: 30316 components: - pos: 44.5,-44.5 parent: 2 type: Transform - - uid: 30275 + - uid: 30317 components: - pos: 27.5,-51.5 parent: 2 type: Transform - - uid: 30276 + - uid: 30318 components: - pos: 27.5,-47.5 parent: 2 type: Transform - - uid: 30277 + - uid: 30319 components: - pos: -19.5,0.5 parent: 2 type: Transform - - uid: 30278 + - uid: 30320 components: - pos: -17.5,0.5 parent: 2 type: Transform - - uid: 30279 + - uid: 30321 components: - pos: -16.5,0.5 parent: 2 type: Transform - - uid: 30280 + - uid: 30322 components: - rot: -1.5707963267948966 rad pos: -24.5,-18.5 parent: 2 type: Transform - - uid: 30281 + - uid: 30323 components: - pos: 38.5,-57.5 parent: 2 type: Transform - - uid: 30282 + - uid: 30324 components: - pos: 40.5,-57.5 parent: 2 type: Transform - - uid: 30283 + - uid: 30325 components: - rot: -1.5707963267948966 rad pos: -25.5,-18.5 parent: 2 type: Transform - - uid: 30284 + - uid: 30326 components: - pos: 5.5,-58.5 parent: 2 type: Transform - - uid: 30285 + - uid: 30327 components: - rot: 1.5707963267948966 rad pos: -66.5,-29.5 parent: 2 type: Transform - - uid: 30286 + - uid: 30328 components: - rot: -1.5707963267948966 rad pos: -28.5,-47.5 parent: 2 type: Transform - - uid: 30287 + - uid: 30329 components: - rot: 1.5707963267948966 rad pos: -48.5,-74.5 parent: 2 type: Transform - - uid: 30288 + - uid: 30330 components: - pos: -38.5,-63.5 parent: 2 type: Transform - - uid: 30289 + - uid: 30331 components: - pos: -38.5,-65.5 parent: 2 type: Transform - - uid: 30290 + - uid: 30332 components: - pos: -21.5,24.5 parent: 2 type: Transform - - uid: 30291 + - uid: 30333 components: - pos: -21.5,23.5 parent: 2 type: Transform - - uid: 30292 + - uid: 30334 components: - pos: -34.5,2.5 parent: 2 type: Transform - - uid: 30293 + - uid: 30335 components: - pos: -26.5,9.5 parent: 2 type: Transform - - uid: 30294 + - uid: 30336 components: - pos: -36.5,2.5 parent: 2 type: Transform - - uid: 30295 + - uid: 30337 components: - pos: -36.5,7.5 parent: 2 type: Transform - - uid: 30296 + - uid: 30338 components: - pos: -39.5,2.5 parent: 2 type: Transform - - uid: 30297 + - uid: 30339 components: - pos: -35.5,2.5 parent: 2 type: Transform - - uid: 30298 + - uid: 30340 components: - pos: -39.5,7.5 parent: 2 type: Transform - - uid: 30299 + - uid: 30341 components: - pos: -41.5,2.5 parent: 2 type: Transform - - uid: 30300 + - uid: 30342 components: - pos: -40.5,2.5 parent: 2 type: Transform - - uid: 30301 + - uid: 30343 components: - rot: 1.5707963267948966 rad pos: -52.5,-0.5 parent: 2 type: Transform - - uid: 30302 + - uid: 30344 components: - pos: 26.5,-40.5 parent: 2 type: Transform - - uid: 30303 + - uid: 30345 components: - pos: -30.5,-72.5 parent: 2 type: Transform - - uid: 30304 + - uid: 30346 components: - pos: -14.5,65.5 parent: 2 type: Transform - - uid: 30305 + - uid: 30347 components: - pos: -14.5,62.5 parent: 2 type: Transform - - uid: 30306 + - uid: 30348 components: - pos: -3.5,47.5 parent: 2 type: Transform - - uid: 30307 + - uid: 30349 components: - pos: -1.5,49.5 parent: 2 type: Transform - - uid: 30308 + - uid: 30350 components: - pos: -5.5,47.5 parent: 2 type: Transform - - uid: 30309 + - uid: 30351 components: - rot: 3.141592653589793 rad pos: -19.5,44.5 parent: 2 type: Transform - - uid: 30310 + - uid: 30352 components: - pos: -7.5,57.5 parent: 2 type: Transform - - uid: 30311 + - uid: 30353 components: - pos: -5.5,57.5 parent: 2 type: Transform - - uid: 30312 + - uid: 30354 components: - pos: 2.5,47.5 parent: 2 type: Transform - - uid: 30313 + - uid: 30355 components: - pos: 2.5,50.5 parent: 2 type: Transform - - uid: 30314 + - uid: 30356 components: - pos: 2.5,51.5 parent: 2 type: Transform - - uid: 30315 + - uid: 30357 components: - pos: -1.5,50.5 parent: 2 type: Transform - - uid: 30316 + - uid: 30358 components: - pos: -11.5,51.5 parent: 2 type: Transform - - uid: 30317 + - uid: 30359 components: - pos: -11.5,53.5 parent: 2 type: Transform - - uid: 30318 + - uid: 30360 components: - pos: -20.5,62.5 parent: 2 type: Transform - - uid: 30319 + - uid: 30361 components: - rot: 3.141592653589793 rad pos: -28.5,-72.5 @@ -218784,119 +218812,119 @@ entities: type: Transform - proto: WindowDirectional entities: - - uid: 30320 + - uid: 30362 components: - rot: -1.5707963267948966 rad pos: 10.5,0.5 parent: 2 type: Transform - - uid: 30321 + - uid: 30363 components: - rot: 1.5707963267948966 rad pos: 7.5,1.5 parent: 2 type: Transform - - uid: 30322 + - uid: 30364 components: - pos: 8.5,2.5 parent: 2 type: Transform - - uid: 30323 + - uid: 30365 components: - rot: -1.5707963267948966 rad pos: 10.5,1.5 parent: 2 type: Transform - - uid: 30324 + - uid: 30366 components: - rot: -1.5707963267948966 rad pos: 5.5,-57.5 parent: 2 type: Transform - - uid: 30325 + - uid: 30367 components: - pos: 9.5,2.5 parent: 2 type: Transform - - uid: 30326 + - uid: 30368 components: - rot: 3.141592653589793 rad pos: 8.5,-0.5 parent: 2 type: Transform - - uid: 30327 + - uid: 30369 components: - rot: 1.5707963267948966 rad pos: 7.5,0.5 parent: 2 type: Transform - - uid: 30328 + - uid: 30370 components: - rot: 1.5707963267948966 rad pos: 59.5,-35.5 parent: 2 type: Transform - - uid: 30329 + - uid: 30371 components: - rot: -1.5707963267948966 rad pos: 74.5,-49.5 parent: 2 type: Transform - - uid: 30330 + - uid: 30372 components: - rot: -1.5707963267948966 rad pos: 74.5,-47.5 parent: 2 type: Transform - - uid: 30331 + - uid: 30373 components: - rot: 1.5707963267948966 rad pos: 68.5,-47.5 parent: 2 type: Transform - - uid: 30332 + - uid: 30374 components: - rot: 1.5707963267948966 rad pos: 68.5,-49.5 parent: 2 type: Transform - - uid: 30333 + - uid: 30375 components: - rot: 1.5707963267948966 rad pos: 59.5,-32.5 parent: 2 type: Transform - - uid: 30334 + - uid: 30376 components: - rot: 1.5707963267948966 rad pos: 68.5,-48.5 parent: 2 type: Transform - - uid: 30335 + - uid: 30377 components: - rot: -1.5707963267948966 rad pos: 74.5,-48.5 parent: 2 type: Transform - - uid: 30336 + - uid: 30378 components: - rot: 3.141592653589793 rad pos: 69.5,-47.5 parent: 2 type: Transform - - uid: 30337 + - uid: 30379 components: - rot: 3.141592653589793 rad pos: 70.5,-47.5 parent: 2 type: Transform - - uid: 30338 + - uid: 30380 components: - rot: 3.141592653589793 rad pos: 73.5,-47.5 parent: 2 type: Transform - - uid: 30339 + - uid: 30381 components: - rot: 3.141592653589793 rad pos: 72.5,-47.5 @@ -218904,1551 +218932,1551 @@ entities: type: Transform - proto: WindowReinforcedDirectional entities: - - uid: 30340 + - uid: 30382 components: - rot: -1.5707963267948966 rad pos: -11.5,7.5 parent: 2 type: Transform - - uid: 30341 + - uid: 30383 components: - pos: 16.5,-53.5 parent: 2 type: Transform - - uid: 30342 + - uid: 30384 components: - pos: -11.5,6.5 parent: 2 type: Transform - - uid: 30343 + - uid: 30385 components: - pos: 15.5,-53.5 parent: 2 type: Transform - - uid: 30344 + - uid: 30386 components: - rot: 3.141592653589793 rad pos: -11.5,7.5 parent: 2 type: Transform - - uid: 30345 + - uid: 30387 components: - rot: -1.5707963267948966 rad pos: -11.5,6.5 parent: 2 type: Transform - - uid: 30346 + - uid: 30388 components: - rot: 1.5707963267948966 rad pos: -11.5,6.5 parent: 2 type: Transform - - uid: 30347 + - uid: 30389 components: - rot: 1.5707963267948966 rad pos: -11.5,7.5 parent: 2 type: Transform - - uid: 30348 + - uid: 30390 components: - pos: -28.5,-78.5 parent: 2 type: Transform - - uid: 30349 + - uid: 30391 components: - rot: -1.5707963267948966 rad pos: 22.5,-21.5 parent: 2 type: Transform - - uid: 30350 + - uid: 30392 components: - rot: -1.5707963267948966 rad pos: -16.5,-75.5 parent: 2 type: Transform - - uid: 30351 + - uid: 30393 components: - rot: 1.5707963267948966 rad pos: -23.5,-88.5 parent: 2 type: Transform - - uid: 30352 + - uid: 30394 components: - pos: -17.5,-76.5 parent: 2 type: Transform - - uid: 30353 + - uid: 30395 components: - pos: -30.5,-78.5 parent: 2 type: Transform - - uid: 30354 + - uid: 30396 components: - rot: 1.5707963267948966 rad pos: -28.5,-80.5 parent: 2 type: Transform - - uid: 30355 + - uid: 30397 components: - rot: 1.5707963267948966 rad pos: -23.5,-90.5 parent: 2 type: Transform - - uid: 30356 + - uid: 30398 components: - pos: -4.5,4.5 parent: 2 type: Transform - - uid: 30357 + - uid: 30399 components: - rot: -1.5707963267948966 rad pos: 28.5,-21.5 parent: 2 type: Transform - - uid: 30358 + - uid: 30400 components: - rot: 1.5707963267948966 rad pos: 24.5,-21.5 parent: 2 type: Transform - - uid: 30359 + - uid: 30401 components: - rot: 1.5707963267948966 rad pos: 26.5,-21.5 parent: 2 type: Transform - - uid: 30360 + - uid: 30402 components: - rot: -1.5707963267948966 rad pos: 26.5,-21.5 parent: 2 type: Transform - - uid: 30361 + - uid: 30403 components: - pos: 49.5,22.5 parent: 2 type: Transform - - uid: 30362 + - uid: 30404 components: - pos: 25.5,-23.5 parent: 2 type: Transform - - uid: 30363 + - uid: 30405 components: - rot: 3.141592653589793 rad pos: 26.5,28.5 parent: 2 type: Transform - - uid: 30364 + - uid: 30406 components: - rot: 1.5707963267948966 rad pos: 30.5,29.5 parent: 2 type: Transform - - uid: 30365 + - uid: 30407 components: - rot: 3.141592653589793 rad pos: 32.5,28.5 parent: 2 type: Transform - - uid: 30366 + - uid: 30408 components: - rot: 3.141592653589793 rad pos: 27.5,28.5 parent: 2 type: Transform - - uid: 30367 + - uid: 30409 components: - rot: -1.5707963267948966 rad pos: -17.5,-78.5 parent: 2 type: Transform - - uid: 30368 + - uid: 30410 components: - pos: -11.5,-9.5 parent: 2 type: Transform - - uid: 30369 + - uid: 30411 components: - rot: -1.5707963267948966 rad pos: 19.5,-54.5 parent: 2 type: Transform - - uid: 30370 + - uid: 30412 components: - pos: 58.5,22.5 parent: 2 type: Transform - - uid: 30371 + - uid: 30413 components: - pos: 52.5,22.5 parent: 2 type: Transform - - uid: 30372 + - uid: 30414 components: - pos: 55.5,22.5 parent: 2 type: Transform - - uid: 30373 + - uid: 30415 components: - rot: -1.5707963267948966 rad pos: 28.5,29.5 parent: 2 type: Transform - - uid: 30374 + - uid: 30416 components: - rot: 3.141592653589793 rad pos: 26.5,30.5 parent: 2 type: Transform - - uid: 30375 + - uid: 30417 components: - rot: 3.141592653589793 rad pos: -17.5,-78.5 parent: 2 type: Transform - - uid: 30376 + - uid: 30418 components: - rot: -1.5707963267948966 rad pos: -17.5,-76.5 parent: 2 type: Transform - - uid: 30377 + - uid: 30419 components: - rot: -1.5707963267948966 rad pos: -16.5,-79.5 parent: 2 type: Transform - - uid: 30378 + - uid: 30420 components: - rot: 1.5707963267948966 rad pos: -28.5,-78.5 parent: 2 type: Transform - - uid: 30379 + - uid: 30421 components: - rot: 3.141592653589793 rad pos: -26.5,-88.5 parent: 2 type: Transform - - uid: 30380 + - uid: 30422 components: - rot: 3.141592653589793 rad pos: -23.5,-88.5 parent: 2 type: Transform - - uid: 30381 + - uid: 30423 components: - rot: 3.141592653589793 rad pos: -21.5,-88.5 parent: 2 type: Transform - - uid: 30382 + - uid: 30424 components: - pos: 26.5,-23.5 parent: 2 type: Transform - - uid: 30383 + - uid: 30425 components: - rot: 3.141592653589793 rad pos: -24.5,-88.5 parent: 2 type: Transform - - uid: 30384 + - uid: 30426 components: - rot: -1.5707963267948966 rad pos: -22.5,-90.5 parent: 2 type: Transform - - uid: 30385 + - uid: 30427 components: - rot: -1.5707963267948966 rad pos: -22.5,-88.5 parent: 2 type: Transform - - uid: 30386 + - uid: 30428 components: - rot: -1.5707963267948966 rad pos: 28.5,27.5 parent: 2 type: Transform - - uid: 30387 + - uid: 30429 components: - pos: -9.5,-81.5 parent: 2 type: Transform - - uid: 30388 + - uid: 30430 components: - rot: 3.141592653589793 rad pos: 31.5,30.5 parent: 2 type: Transform - - uid: 30389 + - uid: 30431 components: - rot: 3.141592653589793 rad pos: 27.5,30.5 parent: 2 type: Transform - - uid: 30390 + - uid: 30432 components: - rot: 3.141592653589793 rad pos: -8.5,21.5 parent: 2 type: Transform - - uid: 30391 + - uid: 30433 components: - rot: 3.141592653589793 rad pos: 32.5,30.5 parent: 2 type: Transform - - uid: 30392 + - uid: 30434 components: - rot: 1.5707963267948966 rad pos: 23.5,-24.5 parent: 2 type: Transform - - uid: 30393 + - uid: 30435 components: - rot: 3.141592653589793 rad pos: 31.5,28.5 parent: 2 type: Transform - - uid: 30394 + - uid: 30436 components: - rot: -1.5707963267948966 rad pos: -22.5,-89.5 parent: 2 type: Transform - - uid: 30395 + - uid: 30437 components: - rot: 1.5707963267948966 rad pos: -23.5,-89.5 parent: 2 type: Transform - - uid: 30396 + - uid: 30438 components: - pos: -29.5,-78.5 parent: 2 type: Transform - - uid: 30397 + - uid: 30439 components: - rot: 1.5707963267948966 rad pos: 30.5,27.5 parent: 2 type: Transform - - uid: 30398 + - uid: 30440 components: - rot: -1.5707963267948966 rad pos: 24.5,-21.5 parent: 2 type: Transform - - uid: 30399 + - uid: 30441 components: - rot: 1.5707963267948966 rad pos: 28.5,-21.5 parent: 2 type: Transform - - uid: 30400 + - uid: 30442 components: - pos: -3.5,4.5 parent: 2 type: Transform - - uid: 30401 + - uid: 30443 components: - rot: 1.5707963267948966 rad pos: 22.5,-21.5 parent: 2 type: Transform - - uid: 30402 + - uid: 30444 components: - rot: 1.5707963267948966 rad pos: -10.5,-82.5 parent: 2 type: Transform - - uid: 30403 + - uid: 30445 components: - rot: -1.5707963267948966 rad pos: 27.5,-24.5 parent: 2 type: Transform - - uid: 30404 + - uid: 30446 components: - pos: 24.5,-23.5 parent: 2 type: Transform - - uid: 30405 + - uid: 30447 components: - pos: 18.5,-53.5 parent: 2 type: Transform - - uid: 30406 + - uid: 30448 components: - pos: -14.5,-9.5 parent: 2 type: Transform - - uid: 30407 + - uid: 30449 components: - rot: 3.141592653589793 rad pos: -22.5,-88.5 parent: 2 type: Transform - - uid: 30408 + - uid: 30450 components: - rot: 3.141592653589793 rad pos: -19.5,-88.5 parent: 2 type: Transform - - uid: 30409 + - uid: 30451 components: - rot: -1.5707963267948966 rad pos: -10.5,-10.5 parent: 2 type: Transform - - uid: 30410 + - uid: 30452 components: - rot: 1.5707963267948966 rad pos: -15.5,-10.5 parent: 2 type: Transform - - uid: 30411 + - uid: 30453 components: - pos: -10.5,29.5 parent: 2 type: Transform - - uid: 30412 + - uid: 30454 components: - pos: -9.5,29.5 parent: 2 type: Transform - - uid: 30413 + - uid: 30455 components: - pos: 46.5,22.5 parent: 2 type: Transform - - uid: 30414 + - uid: 30456 components: - rot: -1.5707963267948966 rad pos: 60.5,19.5 parent: 2 type: Transform - - uid: 30415 + - uid: 30457 components: - rot: -1.5707963267948966 rad pos: 60.5,16.5 parent: 2 type: Transform - - uid: 30416 + - uid: 30458 components: - pos: -10.5,-82.5 parent: 2 type: Transform - - uid: 30417 + - uid: 30459 components: - pos: 30.5,-52.5 parent: 2 type: Transform - - uid: 30418 + - uid: 30460 components: - pos: 29.5,-52.5 parent: 2 type: Transform - - uid: 30419 + - uid: 30461 components: - pos: 28.5,-52.5 parent: 2 type: Transform - - uid: 30420 + - uid: 30462 components: - pos: 32.5,-52.5 parent: 2 type: Transform - - uid: 30421 + - uid: 30463 components: - pos: 33.5,-52.5 parent: 2 type: Transform - - uid: 30422 + - uid: 30464 components: - pos: 34.5,-52.5 parent: 2 type: Transform - - uid: 30423 + - uid: 30465 components: - rot: 1.5707963267948966 rad pos: 32.5,-47.5 parent: 2 type: Transform - - uid: 30424 + - uid: 30466 components: - rot: 1.5707963267948966 rad pos: 32.5,-48.5 parent: 2 type: Transform - - uid: 30425 + - uid: 30467 components: - pos: 33.5,-48.5 parent: 2 type: Transform - - uid: 30426 + - uid: 30468 components: - pos: 34.5,-48.5 parent: 2 type: Transform - - uid: 30427 + - uid: 30469 components: - rot: 1.5707963267948966 rad pos: 34.5,-48.5 parent: 2 type: Transform - - uid: 30428 + - uid: 30470 components: - rot: 1.5707963267948966 rad pos: 34.5,-47.5 parent: 2 type: Transform - - uid: 30429 + - uid: 30471 components: - rot: 1.5707963267948966 rad pos: 29.5,-47.5 parent: 2 type: Transform - - uid: 30430 + - uid: 30472 components: - rot: 1.5707963267948966 rad pos: 29.5,-48.5 parent: 2 type: Transform - - uid: 30431 + - uid: 30473 components: - pos: 29.5,-48.5 parent: 2 type: Transform - - uid: 30432 + - uid: 30474 components: - pos: 28.5,-48.5 parent: 2 type: Transform - - uid: 30433 + - uid: 30475 components: - rot: 3.141592653589793 rad pos: 62.5,-48.5 parent: 2 type: Transform - - uid: 30434 + - uid: 30476 components: - rot: 1.5707963267948966 rad pos: 61.5,-47.5 parent: 2 type: Transform - - uid: 30435 + - uid: 30477 components: - rot: -1.5707963267948966 rad pos: 63.5,-47.5 parent: 2 type: Transform - - uid: 30436 + - uid: 30478 components: - rot: 3.141592653589793 rad pos: 63.5,-47.5 parent: 2 type: Transform - - uid: 30437 + - uid: 30479 components: - rot: -1.5707963267948966 rad pos: 64.5,-46.5 parent: 2 type: Transform - - uid: 30438 + - uid: 30480 components: - pos: 63.5,-45.5 parent: 2 type: Transform - - uid: 30439 + - uid: 30481 components: - pos: 62.5,-44.5 parent: 2 type: Transform - - uid: 30440 + - uid: 30482 components: - rot: -1.5707963267948966 rad pos: 63.5,-45.5 parent: 2 type: Transform - - uid: 30441 + - uid: 30483 components: - rot: 1.5707963267948966 rad pos: 61.5,-45.5 parent: 2 type: Transform - - uid: 30442 + - uid: 30484 components: - pos: 61.5,-45.5 parent: 2 type: Transform - - uid: 30443 + - uid: 30485 components: - rot: 1.5707963267948966 rad pos: 60.5,-46.5 parent: 2 type: Transform - - uid: 30444 + - uid: 30486 components: - rot: 3.141592653589793 rad pos: 61.5,-47.5 parent: 2 type: Transform - - uid: 30445 + - uid: 30487 components: - rot: 1.5707963267948966 rad pos: -44.5,-13.5 parent: 2 type: Transform - - uid: 30446 + - uid: 30488 components: - rot: 3.141592653589793 rad pos: -46.5,-8.5 parent: 2 type: Transform - - uid: 30447 + - uid: 30489 components: - rot: -1.5707963267948966 rad pos: -8.5,27.5 parent: 2 type: Transform - - uid: 30448 + - uid: 30490 components: - rot: 1.5707963267948966 rad pos: -11.5,28.5 parent: 2 type: Transform - - uid: 30449 + - uid: 30491 components: - rot: -1.5707963267948966 rad pos: -8.5,28.5 parent: 2 type: Transform - - uid: 30450 + - uid: 30492 components: - rot: -1.5707963267948966 rad pos: -34.5,13.5 parent: 2 type: Transform - - uid: 30451 + - uid: 30493 components: - rot: -1.5707963267948966 rad pos: -34.5,15.5 parent: 2 type: Transform - - uid: 30452 + - uid: 30494 components: - rot: 3.141592653589793 rad pos: -3.5,4.5 parent: 2 type: Transform - - uid: 30453 + - uid: 30495 components: - rot: 3.141592653589793 rad pos: -4.5,4.5 parent: 2 type: Transform - - uid: 30454 + - uid: 30496 components: - rot: 1.5707963267948966 rad pos: -3.5,4.5 parent: 2 type: Transform - - uid: 30455 + - uid: 30497 components: - rot: -1.5707963267948966 rad pos: -4.5,4.5 parent: 2 type: Transform - - uid: 30456 + - uid: 30498 components: - pos: -12.5,-9.5 parent: 2 type: Transform - - uid: 30457 + - uid: 30499 components: - rot: 3.141592653589793 rad pos: 30.5,30.5 parent: 2 type: Transform - - uid: 30458 + - uid: 30500 components: - pos: -8.5,-81.5 parent: 2 type: Transform - - uid: 30459 + - uid: 30501 components: - rot: 3.141592653589793 rad pos: -10.5,-84.5 parent: 2 type: Transform - - uid: 30460 + - uid: 30502 components: - rot: 3.141592653589793 rad pos: -9.5,-84.5 parent: 2 type: Transform - - uid: 30461 + - uid: 30503 components: - pos: 45.5,38.5 parent: 2 type: Transform - - uid: 30462 + - uid: 30504 components: - pos: 46.5,38.5 parent: 2 type: Transform - - uid: 30463 + - uid: 30505 components: - pos: 47.5,38.5 parent: 2 type: Transform - - uid: 30464 + - uid: 30506 components: - rot: -1.5707963267948966 rad pos: 49.5,37.5 parent: 2 type: Transform - - uid: 30465 + - uid: 30507 components: - rot: -1.5707963267948966 rad pos: 49.5,36.5 parent: 2 type: Transform - - uid: 30466 + - uid: 30508 components: - rot: 3.141592653589793 rad pos: 48.5,35.5 parent: 2 type: Transform - - uid: 30467 + - uid: 30509 components: - rot: 3.141592653589793 rad pos: 47.5,35.5 parent: 2 type: Transform - - uid: 30468 + - uid: 30510 components: - rot: 3.141592653589793 rad pos: 46.5,35.5 parent: 2 type: Transform - - uid: 30469 + - uid: 30511 components: - rot: 1.5707963267948966 rad pos: 45.5,36.5 parent: 2 type: Transform - - uid: 30470 + - uid: 30512 components: - rot: 3.141592653589793 rad pos: 45.5,36.5 parent: 2 type: Transform - - uid: 30471 + - uid: 30513 components: - pos: -2.5,71.5 parent: 2 type: Transform - - uid: 30472 + - uid: 30514 components: - pos: -1.5,71.5 parent: 2 type: Transform - - uid: 30473 + - uid: 30515 components: - pos: -0.5,71.5 parent: 2 type: Transform - - uid: 30474 + - uid: 30516 components: - rot: 1.5707963267948966 rad pos: -3.5,70.5 parent: 2 type: Transform - - uid: 30475 + - uid: 30517 components: - rot: 1.5707963267948966 rad pos: -3.5,69.5 parent: 2 type: Transform - - uid: 30476 + - uid: 30518 components: - rot: 1.5707963267948966 rad pos: -3.5,68.5 parent: 2 type: Transform - - uid: 30477 + - uid: 30519 components: - rot: 3.141592653589793 rad pos: -2.5,67.5 parent: 2 type: Transform - - uid: 30478 + - uid: 30520 components: - rot: 3.141592653589793 rad pos: -1.5,67.5 parent: 2 type: Transform - - uid: 30479 + - uid: 30521 components: - rot: 3.141592653589793 rad pos: -0.5,67.5 parent: 2 type: Transform - - uid: 30480 + - uid: 30522 components: - rot: -1.5707963267948966 rad pos: 0.5,68.5 parent: 2 type: Transform - - uid: 30481 + - uid: 30523 components: - rot: -1.5707963267948966 rad pos: 0.5,69.5 parent: 2 type: Transform - - uid: 30482 + - uid: 30524 components: - rot: -1.5707963267948966 rad pos: 0.5,70.5 parent: 2 type: Transform - - uid: 30483 + - uid: 30525 components: - pos: -10.5,24.5 parent: 2 type: Transform - - uid: 30484 + - uid: 30526 components: - rot: 3.141592653589793 rad pos: -10.5,21.5 parent: 2 type: Transform - - uid: 30485 + - uid: 30527 components: - rot: 3.141592653589793 rad pos: -9.5,21.5 parent: 2 type: Transform - - uid: 30486 + - uid: 30528 components: - rot: 1.5707963267948966 rad pos: -10.5,24.5 parent: 2 type: Transform - - uid: 30487 + - uid: 30529 components: - pos: -11.5,28.5 parent: 2 type: Transform - - uid: 30488 + - uid: 30530 components: - rot: -1.5707963267948966 rad pos: -8.5,26.5 parent: 2 type: Transform - - uid: 30489 + - uid: 30531 components: - rot: -1.5707963267948966 rad pos: -8.5,24.5 parent: 2 type: Transform - - uid: 30490 + - uid: 30532 components: - rot: -1.5707963267948966 rad pos: -8.5,23.5 parent: 2 type: Transform - - uid: 30491 + - uid: 30533 components: - pos: -8.5,23.5 parent: 2 type: Transform - - uid: 30492 + - uid: 30534 components: - rot: 3.141592653589793 rad pos: -8.5,-84.5 parent: 2 type: Transform - - uid: 30493 + - uid: 30535 components: - rot: -1.5707963267948966 rad pos: -7.5,-83.5 parent: 2 type: Transform - - uid: 30494 + - uid: 30536 components: - rot: -1.5707963267948966 rad pos: -7.5,-82.5 parent: 2 type: Transform - - uid: 30495 + - uid: 30537 components: - rot: 3.141592653589793 rad pos: -10.5,26.5 parent: 2 type: Transform - - uid: 30496 + - uid: 30538 components: - rot: 1.5707963267948966 rad pos: -10.5,26.5 parent: 2 type: Transform - - uid: 30497 + - uid: 30539 components: - rot: 3.141592653589793 rad pos: -11.5,26.5 parent: 2 type: Transform - - uid: 30498 + - uid: 30540 components: - rot: 3.141592653589793 rad pos: -12.5,26.5 parent: 2 type: Transform - - uid: 30499 + - uid: 30541 components: - pos: -11.5,-81.5 parent: 2 type: Transform - - uid: 30500 + - uid: 30542 components: - rot: 1.5707963267948966 rad pos: -12.5,-82.5 parent: 2 type: Transform - - uid: 30501 + - uid: 30543 components: - rot: 3.141592653589793 rad pos: -11.5,-84.5 parent: 2 type: Transform - - uid: 30502 + - uid: 30544 components: - rot: 1.5707963267948966 rad pos: -13.5,-83.5 parent: 2 type: Transform - - uid: 30503 + - uid: 30545 components: - rot: 1.5707963267948966 rad pos: -13.5,-82.5 parent: 2 type: Transform - - uid: 30504 + - uid: 30546 components: - rot: 3.141592653589793 rad pos: -12.5,-84.5 parent: 2 type: Transform - - uid: 30505 + - uid: 30547 components: - rot: 3.141592653589793 rad pos: -12.5,-81.5 parent: 2 type: Transform - - uid: 30506 + - uid: 30548 components: - rot: -1.5707963267948966 rad pos: -11.5,-81.5 parent: 2 type: Transform - - uid: 30507 + - uid: 30549 components: - rot: -1.5707963267948966 rad pos: -10.5,-81.5 parent: 2 type: Transform - - uid: 30508 + - uid: 30550 components: - rot: -1.5707963267948966 rad pos: -10.5,-80.5 parent: 2 type: Transform - - uid: 30509 + - uid: 30551 components: - rot: 3.141592653589793 rad pos: -10.5,-79.5 parent: 2 type: Transform - - uid: 30510 + - uid: 30552 components: - rot: 3.141592653589793 rad pos: -11.5,-79.5 parent: 2 type: Transform - - uid: 30511 + - uid: 30553 components: - rot: 1.5707963267948966 rad pos: -12.5,-80.5 parent: 2 type: Transform - - uid: 30512 + - uid: 30554 components: - rot: 1.5707963267948966 rad pos: -12.5,-79.5 parent: 2 type: Transform - - uid: 30513 + - uid: 30555 components: - rot: -1.5707963267948966 rad pos: -9.5,-81.5 parent: 2 type: Transform - - uid: 30514 + - uid: 30556 components: - rot: -1.5707963267948966 rad pos: -9.5,-80.5 parent: 2 type: Transform - - uid: 30515 + - uid: 30557 components: - rot: 3.141592653589793 rad pos: -9.5,-79.5 parent: 2 type: Transform - - uid: 30516 + - uid: 30558 components: - rot: 1.5707963267948966 rad pos: -9.5,-79.5 parent: 2 type: Transform - - uid: 30517 + - uid: 30559 components: - rot: 1.5707963267948966 rad pos: -9.5,-80.5 parent: 2 type: Transform - - uid: 30518 + - uid: 30560 components: - pos: -8.5,-80.5 parent: 2 type: Transform - - uid: 30519 + - uid: 30561 components: - rot: 1.5707963267948966 rad pos: -8.5,-80.5 parent: 2 type: Transform - - uid: 30520 + - uid: 30562 components: - rot: 1.5707963267948966 rad pos: -8.5,-79.5 parent: 2 type: Transform - - uid: 30521 + - uid: 30563 components: - rot: 1.5707963267948966 rad pos: -7.5,-79.5 parent: 2 type: Transform - - uid: 30522 + - uid: 30564 components: - rot: 1.5707963267948966 rad pos: -7.5,-80.5 parent: 2 type: Transform - - uid: 30523 + - uid: 30565 components: - pos: -7.5,-81.5 parent: 2 type: Transform - - uid: 30524 + - uid: 30566 components: - rot: -1.5707963267948966 rad pos: -5.5,-81.5 parent: 2 type: Transform - - uid: 30525 + - uid: 30567 components: - rot: 3.141592653589793 rad pos: -6.5,-81.5 parent: 2 type: Transform - - uid: 30526 + - uid: 30568 components: - rot: 1.5707963267948966 rad pos: -6.5,-82.5 parent: 2 type: Transform - - uid: 30527 + - uid: 30569 components: - rot: 3.141592653589793 rad pos: -6.5,-83.5 parent: 2 type: Transform - - uid: 30528 + - uid: 30570 components: - rot: -1.5707963267948966 rad pos: -6.5,-83.5 parent: 2 type: Transform - - uid: 30529 + - uid: 30571 components: - rot: -1.5707963267948966 rad pos: -6.5,-84.5 parent: 2 type: Transform - - uid: 30530 + - uid: 30572 components: - rot: 3.141592653589793 rad pos: -7.5,-85.5 parent: 2 type: Transform - - uid: 30531 + - uid: 30573 components: - rot: 1.5707963267948966 rad pos: -9.5,-84.5 parent: 2 type: Transform - - uid: 30532 + - uid: 30574 components: - rot: 1.5707963267948966 rad pos: -8.5,-85.5 parent: 2 type: Transform - - uid: 30533 + - uid: 30575 components: - rot: 1.5707963267948966 rad pos: -9.5,-85.5 parent: 2 type: Transform - - uid: 30534 + - uid: 30576 components: - rot: 1.5707963267948966 rad pos: -9.5,-77.5 parent: 2 type: Transform - - uid: 30535 + - uid: 30577 components: - rot: 3.141592653589793 rad pos: -8.5,-78.5 parent: 2 type: Transform - - uid: 30536 + - uid: 30578 components: - rot: 3.141592653589793 rad pos: -7.5,-78.5 parent: 2 type: Transform - - uid: 30537 + - uid: 30579 components: - rot: -1.5707963267948966 rad pos: -6.5,-78.5 parent: 2 type: Transform - - uid: 30538 + - uid: 30580 components: - rot: -1.5707963267948966 rad pos: -9.5,-77.5 parent: 2 type: Transform - - uid: 30539 + - uid: 30581 components: - pos: -6.5,-79.5 parent: 2 type: Transform - - uid: 30540 + - uid: 30582 components: - pos: -5.5,-79.5 parent: 2 type: Transform - - uid: 30541 + - uid: 30583 components: - rot: -1.5707963267948966 rad pos: -4.5,-80.5 parent: 2 type: Transform - - uid: 30542 + - uid: 30584 components: - rot: 3.141592653589793 rad pos: -4.5,-82.5 parent: 2 type: Transform - - uid: 30543 + - uid: 30585 components: - rot: 1.5707963267948966 rad pos: -5.5,-82.5 parent: 2 type: Transform - - uid: 30544 + - uid: 30586 components: - rot: 1.5707963267948966 rad pos: -5.5,-83.5 parent: 2 type: Transform - - uid: 30545 + - uid: 30587 components: - rot: 1.5707963267948966 rad pos: -6.5,-83.5 parent: 2 type: Transform - - uid: 30546 + - uid: 30588 components: - rot: 1.5707963267948966 rad pos: -6.5,-84.5 parent: 2 type: Transform - - uid: 30547 + - uid: 30589 components: - rot: 3.141592653589793 rad pos: -5.5,-85.5 parent: 2 type: Transform - - uid: 30548 + - uid: 30590 components: - rot: 1.5707963267948966 rad pos: -4.5,-83.5 parent: 2 type: Transform - - uid: 30549 + - uid: 30591 components: - rot: 1.5707963267948966 rad pos: -4.5,-82.5 parent: 2 type: Transform - - uid: 30550 + - uid: 30592 components: - rot: 3.141592653589793 rad pos: -5.5,-87.5 parent: 2 type: Transform - - uid: 30551 + - uid: 30593 components: - rot: 3.141592653589793 rad pos: -6.5,-87.5 parent: 2 type: Transform - - uid: 30552 + - uid: 30594 components: - rot: 3.141592653589793 rad pos: -7.5,-87.5 parent: 2 type: Transform - - uid: 30553 + - uid: 30595 components: - rot: 3.141592653589793 rad pos: -8.5,-87.5 parent: 2 type: Transform - - uid: 30554 + - uid: 30596 components: - rot: 3.141592653589793 rad pos: -9.5,-87.5 parent: 2 type: Transform - - uid: 30555 + - uid: 30597 components: - rot: 3.141592653589793 rad pos: -10.5,-88.5 parent: 2 type: Transform - - uid: 30556 + - uid: 30598 components: - rot: 1.5707963267948966 rad pos: -11.5,-86.5 parent: 2 type: Transform - - uid: 30557 + - uid: 30599 components: - rot: 1.5707963267948966 rad pos: -11.5,-85.5 parent: 2 type: Transform - - uid: 30558 + - uid: 30600 components: - rot: 3.141592653589793 rad pos: -9.5,-86.5 parent: 2 type: Transform - - uid: 30559 + - uid: 30601 components: - rot: 1.5707963267948966 rad pos: -10.5,-85.5 parent: 2 type: Transform - - uid: 30560 + - uid: 30602 components: - rot: 3.141592653589793 rad pos: -11.5,-85.5 parent: 2 type: Transform - - uid: 30561 + - uid: 30603 components: - rot: 3.141592653589793 rad pos: -12.5,-85.5 parent: 2 type: Transform - - uid: 30562 + - uid: 30604 components: - rot: 3.141592653589793 rad pos: -7.5,-86.5 parent: 2 type: Transform - - uid: 30563 + - uid: 30605 components: - rot: 3.141592653589793 rad pos: -6.5,-86.5 parent: 2 type: Transform - - uid: 30564 + - uid: 30606 components: - rot: 1.5707963267948966 rad pos: -5.5,-85.5 parent: 2 type: Transform - - uid: 30565 + - uid: 30607 components: - rot: 1.5707963267948966 rad pos: -13.5,-85.5 parent: 2 type: Transform - - uid: 30566 + - uid: 30608 components: - rot: 1.5707963267948966 rad pos: -14.5,-85.5 parent: 2 type: Transform - - uid: 30567 + - uid: 30609 components: - rot: 1.5707963267948966 rad pos: -14.5,-84.5 parent: 2 type: Transform - - uid: 30568 + - uid: 30610 components: - rot: 1.5707963267948966 rad pos: -14.5,-83.5 parent: 2 type: Transform - - uid: 30569 + - uid: 30611 components: - rot: 3.141592653589793 rad pos: -13.5,-87.5 parent: 2 type: Transform - - uid: 30570 + - uid: 30612 components: - rot: 1.5707963267948966 rad pos: -14.5,-86.5 parent: 2 type: Transform - - uid: 30571 + - uid: 30613 components: - rot: 3.141592653589793 rad pos: -12.5,-86.5 parent: 2 type: Transform - - uid: 30572 + - uid: 30614 components: - rot: 1.5707963267948966 rad pos: -14.5,-82.5 parent: 2 type: Transform - - uid: 30573 + - uid: 30615 components: - rot: 3.141592653589793 rad pos: -14.5,-82.5 parent: 2 type: Transform - - uid: 30574 + - uid: 30616 components: - rot: 1.5707963267948966 rad pos: -15.5,-82.5 parent: 2 type: Transform - - uid: 30575 + - uid: 30617 components: - pos: -15.5,-83.5 parent: 2 type: Transform - - uid: 30576 + - uid: 30618 components: - rot: 3.141592653589793 rad pos: -14.5,-85.5 parent: 2 type: Transform - - uid: 30577 + - uid: 30619 components: - rot: 1.5707963267948966 rad pos: -12.5,-87.5 parent: 2 type: Transform - - uid: 30578 + - uid: 30620 components: - rot: 3.141592653589793 rad pos: -11.5,-88.5 parent: 2 type: Transform - - uid: 30579 + - uid: 30621 components: - rot: 1.5707963267948966 rad pos: -11.5,-87.5 parent: 2 type: Transform - - uid: 30580 + - uid: 30622 components: - rot: 1.5707963267948966 rad pos: -10.5,-87.5 parent: 2 type: Transform - - uid: 30581 + - uid: 30623 components: - rot: 3.141592653589793 rad pos: -8.5,-88.5 parent: 2 type: Transform - - uid: 30582 + - uid: 30624 components: - rot: 1.5707963267948966 rad pos: -8.5,-88.5 parent: 2 type: Transform - - uid: 30583 + - uid: 30625 components: - rot: -1.5707963267948966 rad pos: -6.5,-88.5 parent: 2 type: Transform - - uid: 30584 + - uid: 30626 components: - pos: -6.5,-87.5 parent: 2 type: Transform - - uid: 30585 + - uid: 30627 components: - pos: -5.5,-87.5 parent: 2 type: Transform - - uid: 30586 + - uid: 30628 components: - rot: -1.5707963267948966 rad pos: -4.5,-87.5 parent: 2 type: Transform - - uid: 30587 + - uid: 30629 components: - rot: -1.5707963267948966 rad pos: -12.5,-87.5 parent: 2 type: Transform - - uid: 30588 + - uid: 30630 components: - rot: 3.141592653589793 rad pos: -13.5,-88.5 parent: 2 type: Transform - - uid: 30589 + - uid: 30631 components: - rot: 3.141592653589793 rad pos: -14.5,-88.5 parent: 2 type: Transform - - uid: 30590 + - uid: 30632 components: - rot: 1.5707963267948966 rad pos: -15.5,-87.5 parent: 2 type: Transform - - uid: 30591 + - uid: 30633 components: - pos: -15.5,-85.5 parent: 2 type: Transform - - uid: 30592 + - uid: 30634 components: - rot: 1.5707963267948966 rad pos: -13.5,-86.5 parent: 2 type: Transform - - uid: 30593 + - uid: 30635 components: - rot: 1.5707963267948966 rad pos: -10.5,-86.5 parent: 2 type: Transform - - uid: 30594 + - uid: 30636 components: - rot: -1.5707963267948966 rad pos: -5.5,-77.5 parent: 2 type: Transform - - uid: 30595 + - uid: 30637 components: - rot: -1.5707963267948966 rad pos: -5.5,-78.5 parent: 2 type: Transform - - uid: 30596 + - uid: 30638 components: - rot: -1.5707963267948966 rad pos: -4.5,-79.5 parent: 2 type: Transform - - uid: 30597 + - uid: 30639 components: - rot: -1.5707963267948966 rad pos: -4.5,-78.5 parent: 2 type: Transform - - uid: 30598 + - uid: 30640 components: - rot: -1.5707963267948966 rad pos: -10.5,-78.5 parent: 2 type: Transform - - uid: 30599 + - uid: 30641 components: - rot: 3.141592653589793 rad pos: -11.5,-78.5 parent: 2 type: Transform - - uid: 30600 + - uid: 30642 components: - rot: 3.141592653589793 rad pos: 28.5,30.5 parent: 2 type: Transform - - uid: 30601 + - uid: 30643 components: - pos: 16.5,37.5 parent: 2 type: Transform - - uid: 30602 + - uid: 30644 components: - rot: 3.141592653589793 rad pos: -55.5,-63.5 parent: 2 type: Transform - - uid: 30603 + - uid: 30645 components: - rot: 3.141592653589793 rad pos: -54.5,-63.5 parent: 2 type: Transform - - uid: 30604 + - uid: 30646 components: - rot: -1.5707963267948966 rad pos: -53.5,-63.5 parent: 2 type: Transform - - uid: 30605 + - uid: 30647 components: - rot: -1.5707963267948966 rad pos: -53.5,-64.5 parent: 2 type: Transform - - uid: 30606 + - uid: 30648 components: - rot: 1.5707963267948966 rad pos: 42.5,5.5 parent: 2 type: Transform - - uid: 30607 + - uid: 30649 components: - rot: 1.5707963267948966 rad pos: 42.5,7.5 @@ -220456,7 +220484,7 @@ entities: type: Transform - proto: Wirecutter entities: - - uid: 30608 + - uid: 30650 components: - rot: -1.5707963267948966 rad pos: -54.537155,-38.29817 @@ -220464,70 +220492,70 @@ entities: type: Transform - proto: WoodblockInstrument entities: - - uid: 30609 + - uid: 30651 components: - pos: -47.491924,-64.51194 parent: 2 type: Transform - proto: WoodDoor entities: - - uid: 30610 + - uid: 30652 components: - pos: -31.5,-5.5 parent: 2 type: Transform - - uid: 30611 + - uid: 30653 components: - pos: -31.5,-7.5 parent: 2 type: Transform - - uid: 30612 + - uid: 30654 components: - pos: -38.5,7.5 parent: 2 type: Transform - - uid: 30613 + - uid: 30655 components: - pos: -37.5,7.5 parent: 2 type: Transform - - uid: 30614 + - uid: 30656 components: - rot: 3.141592653589793 rad pos: -29.5,-5.5 parent: 2 type: Transform - - uid: 30615 + - uid: 30657 components: - pos: 41.5,49.5 parent: 2 type: Transform - - uid: 30616 + - uid: 30658 components: - pos: 40.5,51.5 parent: 2 type: Transform - - uid: 30617 + - uid: 30659 components: - pos: -39.5,-95.5 parent: 2 type: Transform - - uid: 30618 + - uid: 30660 components: - pos: -39.5,-96.5 parent: 2 type: Transform - - uid: 30619 + - uid: 30661 components: - pos: 61.5,23.5 parent: 2 type: Transform - - uid: 30620 + - uid: 30662 components: - pos: 63.5,23.5 parent: 2 type: Transform - - uid: 30621 + - uid: 30663 components: - rot: 3.141592653589793 rad pos: -29.5,-7.5 @@ -220535,111 +220563,111 @@ entities: type: Transform - proto: Wrench entities: - - uid: 30622 + - uid: 30664 components: - pos: 19.497053,-52.46946 parent: 2 type: Transform - - uid: 30623 + - uid: 30665 components: - pos: 43.41047,-49.384262 parent: 2 type: Transform - - uid: 30624 + - uid: 30666 components: - pos: 40.515266,-53.36736 parent: 2 type: Transform - - uid: 30625 + - uid: 30667 components: - pos: 53.570477,-52.25876 parent: 2 type: Transform - - uid: 30626 + - uid: 30668 components: - pos: -65.459496,-32.443497 parent: 2 type: Transform - - uid: 30627 + - uid: 30669 components: - pos: -52.48202,-14.116064 parent: 2 type: Transform - - uid: 30628 + - uid: 30670 components: - pos: -43.931065,-77.41935 parent: 2 type: Transform - nextAttack: 1860.1092288 type: MeleeWeapon - - uid: 30629 + - uid: 30671 components: - pos: -3.6165767,31.44955 parent: 2 type: Transform - - uid: 30630 + - uid: 30672 components: - pos: -52.52865,13.566981 parent: 2 type: Transform - - uid: 30631 + - uid: 30673 components: - pos: -56.484455,-4.5012527 parent: 2 type: Transform - - uid: 30632 + - uid: 30674 components: - pos: -31.403458,-56.573048 parent: 2 type: Transform - - uid: 30633 + - uid: 30675 components: - pos: 56.276398,42.55694 parent: 2 type: Transform - - uid: 30634 + - uid: 30676 components: - pos: 30.53096,47.374912 parent: 2 type: Transform - - uid: 30635 + - uid: 30677 components: - pos: 63.43439,-33.411366 parent: 2 type: Transform - - uid: 30636 + - uid: 30678 components: - pos: 73.54562,-44.324593 parent: 2 type: Transform - nextAttack: 8686.1319246 type: MeleeWeapon - - uid: 30637 + - uid: 30679 components: - rot: 1.5707963267948966 rad pos: -37.345474,18.574602 parent: 2 type: Transform - - uid: 30638 + - uid: 30680 components: - pos: -8.112096,-15.394987 parent: 2 type: Transform - proto: YellowOxygenTankFilled entities: - - uid: 30639 + - uid: 30681 components: - pos: 64.41901,29.545698 parent: 2 type: Transform - - uid: 30640 + - uid: 30682 components: - pos: 67.49378,-65.34203 parent: 2 type: Transform - proto: Zipties entities: - - uid: 30641 + - uid: 30683 components: - pos: 22.565756,-47.432816 parent: 2 From 9ddba694f2a3ec68016ed05b8a22f8211a5ce7a8 Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Sun, 4 Jun 2023 00:09:37 +0000 Subject: [PATCH 056/474] change 70 liter volume tanks to 15 liter (#17106) --- Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml b/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml index 4c8dcda6c6..b32c72f83e 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml @@ -52,7 +52,7 @@ - type: GasTank outputPressure: 21.27825 air: - volume: 70 + volume: 15 temperature: 293.15 tankLowPressure: 30.0 - type: Clothing @@ -178,7 +178,7 @@ - type: GasTank outputPressure: 101.325 air: - volume: 70 + volume: 15 temperature: 293.15 - type: Clothing sprite: Objects/Tanks/generic.rsi @@ -197,7 +197,7 @@ - type: GasTank outputPressure: 101.325 air: - volume: 70 + volume: 15 temperature: 293.15 - type: Clothing sprite: Objects/Tanks/anesthetic.rsi @@ -216,7 +216,7 @@ - type: GasTank outputPressure: 101.325 air: - volume: 70 + volume: 15 temperature: 293.15 - type: Item size: 10 From f30da4811528652efc2884646f055d9328fe718a Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 3 Jun 2023 20:10:41 -0400 Subject: [PATCH 057/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 26dfaac782..1dcf6e71a6 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,10 +1,4 @@ Entries: -- author: DrSmugleaf - changes: - - {message: Fixed admin note updates duplicating visually across all open admin - note windows., type: Fix} - id: 3437 - time: '2023-04-17T06:18:54.0000000+00:00' - author: Klaypexx changes: - {message: added sound to jackboots and combat boots, type: Add} @@ -2903,3 +2897,9 @@ Entries: - {message: puddle stickiness now updates when solution changes, type: Fix} id: 3936 time: '2023-06-03T19:34:44.0000000+00:00' +- author: deltanedas + changes: + - {message: 'Due to budget cuts in atmos, large gas tanks had their volume reduced + by 78%.', type: Tweak} + id: 3937 + time: '2023-06-04T00:09:37.0000000+00:00' From 5906ec24f249215f8681c30b6d629a66a5f3b0f2 Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Sun, 4 Jun 2023 11:06:13 +0000 Subject: [PATCH 058/474] dungeon carp and dragon (#17040) Co-authored-by: deltanedas <@deltanedas:kde.org> --- .../ghost/roles/ghost-role-component.ftl | 1 + .../Prototypes/Entities/Mobs/NPCs/carp.yml | 10 + .../Entities/Mobs/Player/dragon.yml | 264 ++++++++++-------- .../Prototypes/Procedural/biome_markers.yml | 2 +- .../Procedural/salvage_factions.yml | 14 +- 5 files changed, 163 insertions(+), 128 deletions(-) diff --git a/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl b/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl index b5af1a5e3f..501ec4cf7e 100644 --- a/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl +++ b/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl @@ -99,6 +99,7 @@ ghost-role-information-ifrit-description = Listen to your owner. Don't tank dama ghost-role-information-space-dragon-name = Space dragon ghost-role-information-space-dragon-description = Call in 3 carp rifts and take over this quadrant! You have only 5 minutes in between each rift before you will disappear. +ghost-role-information-space-dragon-dungeon-description = Defend the expedition dungeon with your fishy comrades! ghost-role-information-cluwne-name = Cluwne ghost-role-information-cluwne-description = Become a pitiful cluwne, your only goal in life is to find a sweet release from your suffering (usually by being beaten to death). A cluwne is not an antagonist but may defend itself. Crewmembers may murder cluwnes freely. diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/carp.yml b/Resources/Prototypes/Entities/Mobs/NPCs/carp.yml index ac9d1c80ae..aad5fe32d0 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/carp.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/carp.yml @@ -155,3 +155,13 @@ - type: GhostTakeoverAvailable - type: HTN rootTask: DragonCarpCompound + +- type: entity + id: MobCarpDungeon + parent: MobCarp + suffix: Dungeon + components: + - type: MeleeWeapon + damage: + types: + Slash: 5 diff --git a/Resources/Prototypes/Entities/Mobs/Player/dragon.yml b/Resources/Prototypes/Entities/Mobs/Player/dragon.yml index 5abd832bc0..c6fe8dce99 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/dragon.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/dragon.yml @@ -1,126 +1,148 @@ - type: entity - name: space dragon parent: SimpleSpaceMobBase - id: MobDragon + id: BaseMobDragon suffix: "" + name: space dragon description: A flying leviathan, loosely related to space carps. components: - - type: GhostRole - allowMovement: true - allowSpeech: true - makeSentient: true - name: ghost-role-information-space-dragon-name - description: ghost-role-information-space-dragon-description - - type: GhostTakeoverAvailable - - type: HTN - rootTask: XenoCompound - - type: Faction - factions: - - Dragon - - type: Speech - - type: CombatMode - - type: MobMover - - type: InputMover - - type: MovementSpeedModifier - baseWalkSpeed: 3 - baseSprintSpeed: 5 - weightlessModifier: 1.5 - - type: RandomSprite - available: - - enum.DamageStateVisualLayers.Base: - alive: Rainbow - - type: Sprite - sprite: Mobs/Aliens/Carps/dragon.rsi - netsync: false - noRot: true - layers: - - map: [ "enum.DamageStateVisualLayers.Base" ] - state: alive - - map: [ "enum.DamageStateVisualLayers.BaseUnshaded" ] - state: alive-unshaded - shader: unshaded - - type: Appearance - - type: DamageStateVisuals - states: - Alive: - Base: alive - BaseUnshaded: alive-unshaded - Critical: - Base: crit - Dead: - Base: dead - BaseUnshaded: dead-unshaded - - type: Physics - bodyType: KinematicController - - type: Fixtures - fixtures: - fix1: - shape: - !type:PhysShapeCircle - radius: 0.40 - density: 100 - mask: - - FlyingMobMask - layer: - - FlyingMobLayer - - type: MobState - - type: MobThresholds - thresholds: - 0: Alive - 450: Critical - 500: Dead - - type: Metabolizer - solutionOnBody: false - updateFrequency: 0.25 - metabolizerTypes: [ Dragon ] - groups: - - id: Medicine - - id: Poison - - type: MovementAlwaysTouching - - type: NoSlip - - type: Butcherable - spawned: - - id: FoodMeatDragon - amount: 2 - - type: InteractionPopup - successChance: 0.25 # It's no goose, but you better smell like carp. - interactSuccessString: petting-success-dragon - interactFailureString: petting-failure-dragon - interactFailureSound: - path: /Audio/Animals/space_dragon_roar.ogg - soundPerceivedByOthers: false # A 75% chance for a loud roar would get old fast. - - type: MeleeWeapon - hidden: true - soundHit: - path: /Audio/Weapons/Xeno/alien_claw_flesh3.ogg - damage: - types: - Piercing: 15 - Slash: 15 - - type: Devourer - foodPreference: Humanoid - shouldStoreDevoured: true - chemical: Ichor - healRate: 15.0 - whitelist: - components: - - MobState - - Door - tags: - - Wall - devourAction: - event: !type:DevourActionEvent - icon: Interface/Actions/devour.png - name: action-name-devour - description: action-description-devour - - type: Dragon - spawnsLeft: 2 - spawnsProto: MobCarpDragon - spawnRiftAction: - event: !type:DragonSpawnRiftActionEvent - icon: - sprite: Interface/Actions/carp_rift.rsi - state: icon - name: action-name-carp-rift - description: action-description-carp-rift - useDelay: 1 + - type: GhostRole + allowMovement: true + allowSpeech: true + makeSentient: true + name: ghost-role-information-space-dragon-name + description: ghost-role-information-space-dragon-description + - type: GhostTakeoverAvailable + - type: HTN + rootTask: XenoCompound + - type: Faction + factions: + - Dragon + - type: Speech + - type: CombatMode + - type: MobMover + - type: InputMover + - type: MovementSpeedModifier + baseWalkSpeed: 3 + baseSprintSpeed: 5 + weightlessModifier: 1.5 + - type: RandomSprite + available: + - enum.DamageStateVisualLayers.Base: + alive: Rainbow + - type: Sprite + sprite: Mobs/Aliens/Carps/dragon.rsi + noRot: true + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: alive + - map: [ "enum.DamageStateVisualLayers.BaseUnshaded" ] + state: alive-unshaded + shader: unshaded + - type: Appearance + - type: DamageStateVisuals + states: + Alive: + Base: alive + BaseUnshaded: alive-unshaded + Critical: + Base: crit + Dead: + Base: dead + BaseUnshaded: dead-unshaded + - type: Physics + bodyType: KinematicController + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeCircle + radius: 0.40 + density: 100 + mask: + - FlyingMobMask + layer: + - FlyingMobLayer + - type: MobState + - type: MobThresholds + thresholds: + 0: Alive + 450: Critical + 500: Dead + - type: Metabolizer + solutionOnBody: false + updateFrequency: 0.25 + metabolizerTypes: [ Dragon ] + groups: + - id: Medicine + - id: Poison + - type: MovementAlwaysTouching + - type: NoSlip + - type: Butcherable + spawned: + - id: FoodMeatDragon + amount: 2 + - type: InteractionPopup + successChance: 0.25 # It's no goose, but you better smell like carp. + interactSuccessString: petting-success-dragon + interactFailureString: petting-failure-dragon + interactFailureSound: + path: /Audio/Animals/space_dragon_roar.ogg + soundPerceivedByOthers: false # A 75% chance for a loud roar would get old fast. + - type: MeleeWeapon + hidden: true + soundHit: + path: /Audio/Weapons/Xeno/alien_claw_flesh3.ogg + damage: + types: + Piercing: 15 + Slash: 15 + - type: Devourer + foodPreference: Humanoid + shouldStoreDevoured: true + chemical: Ichor + healRate: 15.0 + whitelist: + components: + - MobState + - Door + tags: + - Wall + devourAction: + event: !type:DevourActionEvent + icon: Interface/Actions/devour.png + name: action-name-devour + description: action-description-devour + +- type: entity + parent: BaseMobDragon + id: MobDragon + components: + - type: Dragon + spawnsLeft: 2 + spawnsProto: MobCarpDragon + spawnRiftAction: + event: !type:DragonSpawnRiftActionEvent + icon: + sprite: Interface/Actions/carp_rift.rsi + state: icon + name: action-name-carp-rift + description: action-description-carp-rift + useDelay: 1 + +- type: entity + parent: BaseMobDragon + id: MobDragonDungeon + suffix: Dungeon + components: + - type: GhostRole + description: ghost-role-information-space-dragon-dungeon-description + # less tanky, no crit + - type: MobThresholds + thresholds: + 0: Alive + 300: Dead + # less meat spawned since it's a lot easier to kill + - type: Butcherable + spawned: + - id: FoodMeatDragon + amount: 1 diff --git a/Resources/Prototypes/Procedural/biome_markers.yml b/Resources/Prototypes/Procedural/biome_markers.yml index 9696e2d65e..3eeddea2b3 100644 --- a/Resources/Prototypes/Procedural/biome_markers.yml +++ b/Resources/Prototypes/Procedural/biome_markers.yml @@ -10,7 +10,7 @@ - type: biomeMarkerLayer id: Carps - proto: MobCarp + proto: MobCarpDungeon #- type: biomeMarkerLayer diff --git a/Resources/Prototypes/Procedural/salvage_factions.yml b/Resources/Prototypes/Procedural/salvage_factions.yml index fd4a870cbe..cc19bb247a 100644 --- a/Resources/Prototypes/Procedural/salvage_factions.yml +++ b/Resources/Prototypes/Procedural/salvage_factions.yml @@ -20,18 +20,20 @@ id: Carps groups: - entries: - - id: MobCarp + - id: MobCarpDungeon amount: 1 - maxAmount: 3 + maxAmount: 4 + - entries: - id: MobCarpMagic amount: 1 - maxAmount: 2 + maxAmount: 3 + prob: 0.5 - entries: - id: MobCarpHolo amount: 1 - maxAmount: 3 - prob: 0.5 + maxAmount: 2 + prob: 0.25 configs: DefenseStructure: CarpStatue Mining: Carps - Megafauna: MobDragon + Megafauna: MobDragonDungeon From 31e6e6fe975bb39fa81bbac06ce0ac710f9c4220 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 4 Jun 2023 07:07:18 -0400 Subject: [PATCH 059/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 1dcf6e71a6..31007a91d1 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: Klaypexx - changes: - - {message: added sound to jackboots and combat boots, type: Add} - id: 3438 - time: '2023-04-17T06:19:03.0000000+00:00' - author: deltanedas changes: - {message: 'Security has reported sightings of Space Ninja in long shifts, be on @@ -2903,3 +2898,9 @@ Entries: by 78%.', type: Tweak} id: 3937 time: '2023-06-04T00:09:37.0000000+00:00' +- author: deltanedas + changes: + - {message: 'Due to carp budget cuts, the Chief Space Carp can no longer send the + strongest carp and dragons to expedition dungeons.', type: Tweak} + id: 3938 + time: '2023-06-04T11:06:13.0000000+00:00' From d36b93a4d7fa2733f5c2e1de3694aa91dcaed635 Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Sun, 4 Jun 2023 11:32:03 +0000 Subject: [PATCH 060/474] add records console to aghost (#17091) Co-authored-by: deltanedas <@deltanedas:kde.org> --- Resources/Locale/en-US/robotics/ai-actions.ftl | 4 +++- .../Prototypes/Entities/Mobs/Player/admin_ghost.yml | 13 +++++++++++++ 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/Resources/Locale/en-US/robotics/ai-actions.ftl b/Resources/Locale/en-US/robotics/ai-actions.ftl index 940f574679..8c10c30e06 100644 --- a/Resources/Locale/en-US/robotics/ai-actions.ftl +++ b/Resources/Locale/en-US/robotics/ai-actions.ftl @@ -6,5 +6,7 @@ action-name-show-radar-console = Mass Scanner Interface action-description-show-radar-console = View a mass scanner interface. action-name-show-cargo-console = Cargo Ordering Interface action-description-show-cargo-console = View a cargo ordering interface. -action-name-show-crew-monitoring-console = Crew Monitoring Interface. +action-name-show-crew-monitoring-console = Crew Monitoring Interface action-description-crew-monitoring-console = View a crew monitoring interface. +action-name-show-station-records-console = Station Records Interface +action-description-show-station-records-console = View a station records Interface diff --git a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml index dde4205e0c..ba06c90a7c 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml @@ -44,6 +44,9 @@ type: CargoOrderConsoleBoundUserInterface - key: enum.CrewMonitoringUIKey.Key type: CrewMonitoringBoundUserInterface + - key: enum.GeneralStationRecordConsoleKey.Key + # who the fuck named this bruh + type: GeneralStationRecordConsoleBoundUserInterface - type: IntrinsicUI uis: - key: enum.SolarControlConsoleUiKey.Key @@ -91,6 +94,15 @@ keywords: [ "AI", "console", "interface" ] priority: -10 event: !type:ToggleIntrinsicUIEvent + - key: enum.GeneralStationRecordConsoleKey.Key + toggleAction: + name: action-name-show-station-records-console + description: action-description-station-records-console + icon: { sprite: Structures/Machines/parts.rsi, state: box_0 } + iconOn: Structures/Machines/parts.rsi/box_2.png + keywords: [ "AI", "console", "interface" ] + priority: -10 + event: !type:ToggleIntrinsicUIEvent - type: SolarControlConsole # look ma i AM the computer! - type: CommunicationsConsole title: communicationsconsole-announcement-title-centcom @@ -100,6 +112,7 @@ - type: CrewMonitoringConsole snap: false precision: 3 + - type: GeneralStationRecordConsole - type: DeviceNetwork deviceNetId: Wireless receiveFrequencyId: CrewMonitor From 7252b9e1e9604fd1a4ab4af387e23b586dc53be6 Mon Sep 17 00:00:00 2001 From: Sailor <109166122+Equivocateur@users.noreply.github.com> Date: Sun, 4 Jun 2023 23:11:15 +0300 Subject: [PATCH 061/474] Origin update (#17119) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Origin update * Update psychologist desc loc * I👉😏👈, Eva X🆒️😎, humbly😶 submit😐 , a 🍷toast🍞, to Nikolas😮Alexander🇷🇺, for ✔successfully✔managing 🆓️ to pirate🏴 Warcraft 3👹, so 🙄 that 😏 he 😐👉♂️ may ♉ play 💻Defense🛡️of The⚔Ancients🏛. 👏👏👏Congratulations 👏👏👏, Nik😎🥛. Enjoy 😍 your 😮👊 dota 📀. --- .../Locale/en-US/job/job-description.ftl | 2 +- Resources/Maps/origin.yml | 1021 ++++++++++++----- Resources/Prototypes/Maps/origin.yml | 1 + 3 files changed, 739 insertions(+), 285 deletions(-) diff --git a/Resources/Locale/en-US/job/job-description.ftl b/Resources/Locale/en-US/job/job-description.ftl index cfd3671cb3..c893429f1c 100644 --- a/Resources/Locale/en-US/job/job-description.ftl +++ b/Resources/Locale/en-US/job/job-description.ftl @@ -32,7 +32,7 @@ job-description-librarian = Manage the library, give out knowledge to any who se job-description-mime = Entertain the crew through non-vocal means, and engage with light rivalry with the clown. job-description-musician = Entertain the crew with your unique musical talent, and acquire new instruments to mess around with. job-description-passenger = Enjoy your stay aboard the station with no obligations! -job-description-psychologist = Provide emotional support to traumatized crew. Currently available on Marathon Station. +job-description-psychologist = Provide emotional support to traumatized crew. Currently available on Marathon and Origin Stations. job-description-qm = Manage the supplies of the station & the cargo department, keep the salvage specialists working, make sure all orders are fulfilled, and keep the money flowing. job-description-rd = Manage the science department, unlocking technologies, acquiring & researching artifacts, and performing experiments. job-description-research-assistant = Learn the basics of how to research various artifacts and anomalies. diff --git a/Resources/Maps/origin.yml b/Resources/Maps/origin.yml index 9dd0f4a7ac..c0cbce8e64 100644 --- a/Resources/Maps/origin.yml +++ b/Resources/Maps/origin.yml @@ -148,10 +148,10 @@ entities: tiles: XwAAAF8AAABIAAAASAAAAEUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF0AAABfAAAARQAAAUUAAAJFAAACFwAAAE8AAABPAAAAXwAAAAAAAAAAAAAAXwAAAD0AAAA9AAAAPQAAAD0AAABdAAABXwAAAEUAAAJFAAABRQAAAF8AAABPAAAATwAAAF8AAAAAAAAAAAAAAF8AAAA9AAAALQAAAC0AAAAtAAAAXQAAAF8AAABFAAADRQAAA0UAAANfAAAASAAAAEgAAABfAAAAXwAAAF8AAABfAAAAPQAAAC0AAAAtAAAALQAAAF0AAANfAAAARQAAAEUAAANFAAACXwAAAF8AAABfAAAAXwAAADsAAAA7AAAAFwAAAT0AAAA9AAAAPQAAAD0AAABfAAAAFwAAA0gAAABFAAACRQAAA0UAAAJFAAAARQAAA0UAAAI7AAAAOwAAAF8AAAA9AAAAPQAAAF8AAABfAAAAPAAAABcAAANIAAAARQAAAkUAAAJFAAACRQAAA0UAAANFAAAAOwAAADsAAABfAAAAXwAAAF8AAAAXAAABPQAAADwAAAAXAAABRQAAAUUAAANFAAACXwAAAF8AAABfAAAAXwAAADsAAAA7AAAAFwAAAj0AAAA9AAAAPQAAAD0AAABfAAAAXwAAAEUAAANFAAAASAAAAF8AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAAA9AAAALQAAAC0AAAAtAAAARQAAA18AAABFAAACRQAAAUgAAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABfAAAAPQAAAC0AAAAtAAAALQAAAEUAAANfAAAARQAAA0UAAAJFAAABXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAD0AAAA9AAAAPQAAAD0AAABFAAAAXwAAAEUAAANFAAADRQAAA18AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAADFwAAAxcAAANfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAEUAAAJFAAABRQAAAkUAAABFAAACRQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABFAAABRQAAAkUAAAFFAAABRQAAAEUAAAJfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAANFAAABRQAAAEUAAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAABfAAAAXwAAAEgAAABFAAACXwAAAA== -2,-3: ind: -2,-3 - tiles: FwAAA1AAAAAXAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAMtAAAAFwAAAhcAAAJfAAAAVQAAAhcAAAMXAAAAFwAAAl8AAABfAAAAXwAAAF8AAABfAAAASAAAAF8AAAAXAAAALQAAABcAAAAXAAADXwAAAFUAAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABfAAAAFwAAAy0AAAAXAAACFwAAAF8AAABVAAABSAAAAEgAAABIAAAASAAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAA18AAABfAAAAXwAAAE8AAABPAAAATwAAAE8AAABPAAAAXwAAAF8AAABfAAAAUAAAAE8AAABfAAAASAAAAEUAAABFAAAARQAAAxcAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABQAAAAFwAAAkUAAAFLAAAASwAAAUsAAAEXAAABRQAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABFAAADSwAAAUgAAABIAAAAFwAAAEUAAAIXAAACTwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUsAAABFAAABXwAAAF8AAABFAAADXwAAAEUAAAFFAAABXwAAAF8AAABfAAAAXwAAAEgAAABIAAAAXwAAABcAAAAXAAACFwAAAF8AAABcAAACRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAASAAAAF8AAABIAAAASwAAAUgAAABfAAAAXAAAAkUAAAFIAAAAXwAAAEgAAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAEsAAAJFAAAAXwAAAFwAAAAXAAAAXwAAAF8AAABIAAAASAAAAF8AAABGAAABRgAAAUYAAABGAAADXwAAAEgAAABLAAADRQAAAV8AAABfAAAARQAAA0UAAAFfAAAAXwAAAF8AAABfAAAARgAAAEYAAANGAAACRgAAAl8AAABFAAAASwAAAkUAAAJfAAAAXwAAAEUAAABFAAADFwAAAkUAAABFAAACFwAAAUYAAAJGAAACRgAAA0YAAABFAAACRQAAAEsAAABFAAAAXwAAAF8AAABIAAAARQAAARcAAAFFAAADRQAAARcAAAJGAAABRgAAAUYAAAFGAAABXwAAAEUAAAFLAAACRQAAAF8AAABfAAAARQAAAUUAAAFfAAAAXwAAAF8AAABfAAAARgAAA0YAAABGAAACRgAAABcAAANFAAABSwAAAEUAAAJfAAAAXwAAAA== + tiles: FwAAA1AAAAAXAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAMtAAAAFwAAAhcAAAJfAAAAVQAAAhcAAAMXAAAAFwAAAl8AAABfAAAAXwAAAF8AAABfAAAASAAAAF8AAAAXAAAALQAAABcAAAAXAAADXwAAAFUAAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABfAAAAFwAAAy0AAAAXAAACFwAAAF8AAABVAAABSAAAAEgAAABIAAAASAAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAA18AAABfAAAAXwAAAE8AAABPAAAATwAAAE8AAABPAAAAXwAAAF8AAABfAAAAUAAAAE8AAABfAAAASAAAAEUAAABFAAAARQAAAxcAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABQAAAAFwAAAkUAAAFLAAAASwAAAUsAAAEXAAABRQAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABFAAADSwAAAUgAAABIAAAAFwAAAEUAAAIXAAACTwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUsAAABFAAABXwAAAF8AAABFAAADXwAAAEUAAAFFAAABXwAAAF8AAABfAAAAXwAAAEgAAABIAAAAXwAAABcAAAAXAAACFwAAAF8AAABcAAACRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAASAAAAF8AAABIAAAASwAAAUgAAABfAAAAXAAAAkUAAAFIAAAAXwAAAEgAAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAEsAAAJFAAAAXwAAAFwAAAAXAAAAXwAAAF8AAABIAAAASAAAAF8AAABGAAABRgAAAUYAAABGAAADXwAAAEgAAABLAAADRQAAAV8AAABfAAAARQAAA0UAAAFfAAAAXwAAAF8AAABfAAAARgAAAEYAAANGAAACRgAAAl8AAABFAAAASwAAAkUAAAJfAAAASAAAAEUAAABFAAADFwAAAkUAAABFAAACFwAAAUYAAAJGAAACRgAAA0YAAABFAAACRQAAAEsAAABFAAAAXwAAAEgAAABIAAAARQAAARcAAAFFAAADRQAAARcAAAJGAAABRgAAAUYAAAFGAAABXwAAAEUAAAFLAAACRQAAAF8AAABIAAAARQAAAUUAAAFfAAAAXwAAAF8AAABfAAAARgAAA0YAAABGAAACRgAAABcAAANFAAABSwAAAEUAAAJfAAAAXwAAAA== -1,-3: ind: -1,-3 - tiles: VQAAA1UAAABVAAACVQAAA1UAAAJfAAAAUgAAAFIAAAJSAAAAUgAAAlIAAAFSAAADUgAAAFIAAAJSAAABUgAAAlUAAANVAAAAVQAAAlUAAAJVAAAARQAAAVIAAAFSAAADUgAAAlIAAAFSAAABUgAAA1IAAAFSAAACUgAAA1IAAAJVAAABVQAAAlUAAANVAAAAVQAAAV8AAABSAAACUgAAAFIAAANSAAABUgAAA1IAAAJSAAAAUgAAAVIAAANSAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAAJFAAADXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAEgAAABFAAABSAAAAEUAAAFFAAABRQAAA0gAAABIAAAASAAAAEYAAANGAAADRgAAAkYAAAJGAAAASAAAAEgAAABLAAABSwAAAjoAAABLAAACSwAAA0sAAAI6AAAASwAAAksAAANGAAACRgAAAUYAAABGAAADRgAAA0sAAAJLAAABSAAAAEgAAABFAAADRQAAAEUAAAFFAAACRQAAA0UAAANFAAAARgAAAUYAAABGAAADRgAAAUYAAAJFAAADRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAACXwAAAEYAAABGAAABRgAAAkYAAAJGAAADXwAAAF8AAABcAAABXAAAAV8AAABcAAADXAAAA1wAAAJcAAAAXAAAAl8AAABfAAAAFwAAABcAAAIXAAAAXwAAAF8AAAAAAAAAXAAAAVwAAAAXAAACXAAAA1wAAANcAAACXAAAAVwAAABcAAADXwAAAEUAAANLAAADRQAAAV8AAAAAAAAAAAAAAFwAAAFcAAACXwAAAFwAAAJcAAADXAAAAVwAAABcAAAAXAAAA18AAABFAAACSwAAAUUAAAJfAAAAAAAAAAAAAABfAAAAXwAAAF8AAABcAAADXAAAAVwAAAFcAAABXAAAAlwAAAFfAAAARQAAAEsAAANFAAAAXwAAAF8AAAAAAAAAXwAAAF8AAABfAAAAXAAAAVwAAAFcAAADXAAAAFwAAANfAAAAXwAAAEUAAANLAAAASAAAAEgAAABfAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAXAAAAXwAAAF8AAABfAAAAXwAAAEgAAABFAAAASwAAAkgAAABIAAAAXwAAAAAAAABfAAAAXwAAAF8AAABfAAAASAAAAFEAAABIAAAASAAAAF8AAABIAAAARQAAA0sAAAFIAAAASAAAAF8AAAAAAAAAXwAAAF8AAABfAAAAXwAAAEgAAABIAAAASAAAAEgAAABfAAAASAAAAEUAAAFLAAAASAAAAEgAAABfAAAAAAAAAA== + tiles: VQAAA1UAAABVAAACVQAAA1UAAAJfAAAAUgAAAFIAAAJSAAAAUgAAAlIAAAFSAAADUgAAAFIAAAJSAAABUgAAAlUAAANVAAAAVQAAAlUAAAJVAAAARQAAAVIAAAFSAAADUgAAAlIAAAFSAAABUgAAA1IAAAFSAAACUgAAA1IAAAJVAAABVQAAAlUAAANVAAAAVQAAAV8AAABSAAACUgAAAFIAAANSAAABUgAAA1IAAAJSAAAAUgAAAVIAAANSAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAAJFAAADXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAEgAAABFAAABSAAAAEUAAAFFAAABRQAAA0gAAABIAAAASAAAAEYAAANGAAADRgAAAkYAAAJGAAAASAAAAEgAAABLAAABSwAAAjoAAABLAAACSwAAA0sAAAI6AAAASwAAAksAAANGAAACRgAAAUYAAABGAAADRgAAA0sAAAJLAAABSAAAAEgAAABFAAADRQAAAEUAAAFFAAACRQAAA0UAAANFAAAARgAAAUYAAABGAAADRgAAAUYAAAJFAAADRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAACXwAAAEYAAABGAAABRgAAAkYAAAJGAAADXwAAAF8AAABcAAABXAAAAV8AAABcAAADXAAAA1wAAAJcAAAAXAAAAl8AAABfAAAAFwAAABcAAAIXAAAAXwAAAF8AAAAAAAAAXAAAAVwAAAAXAAACXAAAA1wAAANcAAACXAAAAVwAAABcAAADXwAAAEUAAANLAAADRQAAAV8AAAAAAAAAAAAAAFwAAAFcAAACXwAAAFwAAAJcAAADXAAAAVwAAABcAAAAXAAAA18AAABFAAACSwAAAUUAAAJfAAAAAAAAAAAAAABfAAAAXwAAAF8AAABcAAADXAAAAVwAAAFcAAABXAAAAlwAAAFfAAAARQAAAEsAAANFAAAAXwAAAF8AAAAAAAAASAAAAEgAAABfAAAAXAAAAVwAAAFcAAADXAAAAFwAAANfAAAAXwAAAEUAAANLAAAASAAAAEgAAABfAAAAAAAAAFEAAABIAAAAXwAAAF8AAAAXAAAAXwAAAF8AAABfAAAAXwAAAEgAAABFAAAASwAAAkgAAABIAAAAXwAAAAAAAABIAAAASAAAAEgAAABfAAAASAAAAFEAAABIAAAASAAAAF8AAABIAAAARQAAA0sAAAFIAAAASAAAAF8AAAAAAAAAXwAAAF8AAABfAAAAXwAAAEgAAABIAAAASAAAAEgAAABfAAAASAAAAEUAAAFLAAAASAAAAEgAAABfAAAAAAAAAA== 0,-3: ind: 0,-3 tiles: UgAAAF8AAABSAAACUgAAAlIAAANSAAADUgAAAVIAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAFIAAABSAAACUgAAA1YAAAFSAAADUgAAAVIAAAFSAAACXwAAAE8AAABPAAAATwAAAF8AAABfAAAAFwAAAF8AAABSAAAAXwAAAFIAAAJSAAADUgAAAlIAAABSAAACUgAAAV8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAUgAAABFAAAARQAAAEgAAABFAAAARQAAA0UAAAIXAAABRQAAAEUAAAFFAAABRQAAA0UAAABFAAACRQAAA0UAAAI6AAAASwAAAEsAAAJLAAAAOgAAAEsAAAFLAAAAFwAAA0UAAABFAAAARQAAAUUAAAJFAAADRQAAAEUAAAFFAAADRQAAA0UAAAJFAAADRQAAAUUAAAFFAAABRQAAABcAAABFAAAARQAAA0UAAABFAAADRQAAA0UAAAJFAAAARQAAAV8AAABIAAAASAAAAEgAAABIAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXwAAAFAAAABfAAAAXwAAAAAAAAAAAAAAXwAAAEUAAAJFAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABPAAAAXwAAAF8AAAAAAAAAAAAAAF8AAAAXAAACFwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAFAAAABfAAAAAAAAAAAAAABfAAAARQAAAkUAAAMAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABRAAAAXwAAAF8AAABQAAAAXwAAAAAAAABfAAAAXwAAAEUAAABFAAADAAAAAF8AAAABAAAAAQAAAAEAAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXwAAAEoAAABFAAADRQAAAQAAAABfAAAAAQAAAAEAAAABAAAAAQAAAAEAAABfAAAAXwAAAF8AAAAAAAAAAAAAAF8AAABKAAAARQAAAToAAAAAAAAAXwAAAAEAAAABAAAAAQAAAAEAAAABAAAAXwAAAF8AAABfAAAAAAAAAAAAAABfAAAASgAAAUUAAANFAAADAAAAAF8AAAABAAAAAQAAAAEAAAABAAAAAQAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXwAAAEoAAAJFAAABRQAAAw== @@ -259,7 +259,7 @@ entities: tiles: FwAAA18AAAAXAAACRQAAA18AAABFAAABRQAAAkUAAAFFAAAAXwAAAEUAAANFAAAARQAAAUUAAANfAAAASAAAABcAAAJfAAAAFwAAAkUAAANfAAAAXwAAABcAAAJfAAAAXwAAAF8AAABfAAAAFwAAAl8AAABfAAAAXwAAAEgAAAAXAAACXwAAABcAAANFAAABXwAAAE4AAABOAAADXwAAAEgAAABIAAAARQAAAkgAAABFAAAARQAAAF8AAABIAAAAFwAAAV8AAAAXAAAARQAAAl8AAABOAAADTgAAAV8AAABIAAAASAAAAEUAAABFAAABRQAAAEUAAANfAAAARQAAAxcAAABfAAAAFwAAAUgAAAAXAAADTgAAAk4AAAEXAAABSAAAAEgAAABKAAACSgAAA0UAAAJFAAACFwAAAUUAAAEXAAACXwAAABcAAAJFAAACFwAAAE4AAAFOAAABFwAAAUUAAAJFAAACSgAAA0oAAANIAAAARQAAARcAAAJFAAACFwAAAV8AAAAXAAADRQAAA18AAABOAAAATgAAAF8AAABFAAAARQAAAkoAAABKAAACRQAAAkUAAAFfAAAARQAAAhcAAAMXAAACFwAAA0UAAAFfAAAARQAAA0UAAANfAAAARQAAA0UAAAJKAAABSgAAAUUAAAFFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE4AAANOAAADXwAAAEUAAANFAAABSgAAAUoAAABFAAACRQAAAF8AAABCAAAATQAAAk0AAABNAAABTQAAARcAAAJOAAACTgAAAhcAAABFAAABRQAAAkoAAAJKAAABRQAAAEUAAABfAAAAXwAAAE0AAABNAAACTQAAAk0AAAIXAAACTgAAAU4AAAEXAAAARQAAAUUAAANFAAABRQAAA0UAAAJFAAAAXwAAAEIAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAASAAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFEAAABQAAAAXwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAJFAAADFwAAA0UAAAFFAAABRQAAAUUAAABFAAADRQAAAkUAAABFAAAARQAAAUUAAAJFAAACRQAAAw== -3,-2: ind: -3,-2 - tiles: XwAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAU8AAABPAAAAXwAAAEgAAABfAAAAXwAAAE8AAABPAAAATwAAAE8AAABfAAAAXwAAAF8AAABPAAAAXwAAABcAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAUQAAAFEAAANPAAAAXwAAAEgAAABIAAAAXwAAAF8AAABFAAADXwAAAF8AAABQAAAAUAAAAF8AAABfAAAAXwAAAFAAAABfAAAAUAAAAF8AAABIAAAASAAAAE8AAABfAAAARQAAAEgAAABfAAAAXwAAAFAAAABPAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAABcAAAJFAAADRQAAAUUAAABfAAAATwAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAASAAAAF8AAAAXAAABXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAE8AAABfAAAAXwAAAEUAAANFAAABSAAAAEUAAANIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAADQAAAALAAAATwAAAFAAAABPAAAAUAAAABcAAABQAAAAUAAAAF8AAABfAAAASAAAAF8AAABfAAAATwAAAF8AAAA0AAAARQAAAk8AAABQAAAATwAAAFAAAABfAAAAUAAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFPAAAARQAAAU8AAABFAAADXwAAAFAAAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUAAAAF8AAABFAAADRQAAAUUAAAJFAAACRQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAl8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAANFAAAARQAAAl8AAABFAAACRQAAA0UAAAFFAAAAXwAAAEUAAAAXAAACFwAAARcAAAJFAAACXwAAAEUAAABFAAABRQAAAkUAAANfAAAARQAAAkUAAABFAAABRQAAAxcAAABFAAADFwAAAV8AAAAXAAADRQAAAl8AAABFAAAARQAAAkUAAANFAAADXwAAAEUAAAJFAAADRQAAAkUAAAMXAAACRQAAAA== + tiles: XwAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAU8AAABPAAAAXwAAAEgAAABfAAAAXwAAAE8AAABPAAAATwAAAE8AAABfAAAAXwAAAF8AAABPAAAAXwAAABcAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAUQAAAFEAAANPAAAAXwAAAEgAAABIAAAAXwAAAF8AAABFAAADXwAAAF8AAABQAAAAUAAAAF8AAABfAAAAXwAAAFAAAABfAAAAUAAAAF8AAABIAAAASAAAAE8AAABfAAAARQAAAEgAAABfAAAAXwAAAFAAAABPAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAABcAAAJFAAADRQAAAUUAAABfAAAATwAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAASAAAAF8AAAAXAAABXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAE8AAABfAAAAXwAAAEUAAANFAAABSAAAAEUAAANIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAADQAAAALAAAATwAAAFAAAABPAAAAUAAAABcAAABQAAAAUAAAAF8AAABfAAAASAAAAF8AAABfAAAATwAAAF8AAAA0AAAARQAAAk8AAABQAAAATwAAAFAAAABfAAAAUAAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFPAAAARQAAAU8AAABFAAADXwAAAFAAAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUAAAAF8AAABFAAADRQAAAUUAAAJFAAACRQAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAl8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAANFAAAARQAAAl8AAABFAAACRQAAA0UAAAFFAAAAXwAAAEUAAAAXAAACFwAAARcAAAJFAAACXwAAAEUAAABFAAAARQAAAkUAAANfAAAARQAAAkUAAABFAAABRQAAAxcAAABFAAADFwAAAV8AAAAXAAADRQAAAl8AAABFAAAARQAAAkUAAANFAAADXwAAAEUAAAJFAAADRQAAAkUAAAMXAAACRQAAAA== 2,-6: ind: 2,-6 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAASAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAAJfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAF8AAABFAAABFwAAAxcAAAMXAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAABcAAAIXAAABSwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEgAAAApAAAAKQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAKQAAACkAAABFAAADKQAAACkAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAACkAAAApAAAARQAAACkAAAApAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAApAAAAKQAAAEUAAAMpAAAAKQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAKQAAACkAAABFAAACXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAASAAAABcAAAEXAAAAFwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAEXAAACFwAAA0sAAAJfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABFAAABXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAARQAAAQ== @@ -7735,7 +7735,8 @@ entities: -7,-7: 0: 65535 -7,-6: - 0: 65535 + 0: 65023 + 3: 512 -10,-4: 0: 65535 -10,-3: @@ -7976,7 +7977,7 @@ entities: 0: 65535 -13,-12: 0: 7967 - 3: 224 + 4: 224 2: 57344 -13,-11: 0: 65311 @@ -7985,8 +7986,8 @@ entities: 0: 65523 -13,-14: 0: 7967 - 4: 224 - 5: 57344 + 5: 224 + 6: 57344 -13,-13: 0: 7967 2: 57568 @@ -8307,7 +8308,9 @@ entities: -14,-23: 0: 65392 -14,-22: - 0: 32767 + 0: 32699 + 7: 4 + 3: 64 -14,-21: 0: 65535 -13,-23: @@ -9435,6 +9438,36 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 27.809448 + - 104.6165 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 27.809448 + - 104.6165 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -9480,6 +9513,36 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14996 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14996 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 type: GridAtmosphere - id: Origin @@ -11028,35 +11091,54 @@ entities: pos: -44.5,11.5 parent: 2 type: Transform + - links: + - 20878 + type: DeviceLinkSink - uid: 106 components: - pos: -51.5,12.5 parent: 2 type: Transform + - invokeCounter: 3 + links: + - 25033 + type: DeviceLinkSink - uid: 107 components: - rot: 3.141592653589793 rad pos: -52.5,9.5 parent: 2 type: Transform + - links: + - 30685 + type: DeviceLinkSink - uid: 108 components: - rot: -1.5707963267948966 rad pos: -21.5,30.5 parent: 2 type: Transform + - links: + - 28610 + type: DeviceLinkSink - uid: 109 components: - rot: -1.5707963267948966 rad pos: -17.5,34.5 parent: 2 type: Transform + - links: + - 30686 + type: DeviceLinkSink - uid: 110 components: - rot: -1.5707963267948966 rad pos: -13.5,34.5 parent: 2 type: Transform + - links: + - 30687 + type: DeviceLinkSink - uid: 111 components: - rot: -1.5707963267948966 rad @@ -11669,6 +11751,12 @@ entities: pos: -43.5,-22.5 parent: 2 type: Transform + - uid: 12052 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-19.5 + parent: 2 + type: Transform - proto: AirlockEngineeringLocked entities: - uid: 208 @@ -13569,13 +13657,6 @@ entities: pos: 8.5,-49.5 parent: 2 type: Transform - - uid: 534 - components: - - name: psychologist storeroom - type: MetaData - - pos: -12.5,-33.5 - parent: 2 - type: Transform - proto: AirlockMaintCommandLocked entities: - uid: 535 @@ -14939,6 +15020,9 @@ entities: - pos: -25.5,45.5 parent: 2 type: Transform + - links: + - 30689 + type: DeviceLinkSink - uid: 754 components: - name: theatre @@ -14953,6 +15037,9 @@ entities: - pos: -23.5,38.5 parent: 2 type: Transform + - links: + - 30688 + type: DeviceLinkSink - proto: AirlockVirologyGlass entities: - uid: 756 @@ -22092,7 +22179,7 @@ entities: - pos: 10.5,47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -221392.48 + - SecondsUntilStateChange: -227074.14 state: Closing type: Door - enabled: False @@ -22115,7 +22202,7 @@ entities: - pos: 10.5,49.5 parent: 2 type: Transform - - SecondsUntilStateChange: -221392.48 + - SecondsUntilStateChange: -227074.14 state: Closing type: Door - enabled: False @@ -22138,7 +22225,7 @@ entities: - pos: 10.5,48.5 parent: 2 type: Transform - - SecondsUntilStateChange: -221392.48 + - SecondsUntilStateChange: -227074.14 state: Closing type: Door - enabled: False @@ -22163,7 +22250,7 @@ entities: - pos: 18.5,-56.5 parent: 2 type: Transform - - SecondsUntilStateChange: -286821.9 + - SecondsUntilStateChange: -292503.56 state: Closing type: Door - enabled: False @@ -22186,7 +22273,7 @@ entities: - pos: 47.5,-51.5 parent: 2 type: Transform - - SecondsUntilStateChange: -156202.69 + - SecondsUntilStateChange: -161884.34 state: Closing type: Door - enabled: False @@ -22209,7 +22296,7 @@ entities: - pos: 47.5,-52.5 parent: 2 type: Transform - - SecondsUntilStateChange: -156202.69 + - SecondsUntilStateChange: -161884.34 state: Closing type: Door - enabled: False @@ -22232,7 +22319,7 @@ entities: - pos: 47.5,-53.5 parent: 2 type: Transform - - SecondsUntilStateChange: -156202.69 + - SecondsUntilStateChange: -161884.34 state: Closing type: Door - enabled: False @@ -22255,7 +22342,7 @@ entities: - pos: 47.5,-54.5 parent: 2 type: Transform - - SecondsUntilStateChange: -156202.69 + - SecondsUntilStateChange: -161884.34 state: Closing type: Door - enabled: False @@ -22278,7 +22365,7 @@ entities: - pos: 52.5,-58.5 parent: 2 type: Transform - - SecondsUntilStateChange: -156190.36 + - SecondsUntilStateChange: -161872.02 state: Closing type: Door - enabled: False @@ -22301,7 +22388,7 @@ entities: - pos: 50.5,-62.5 parent: 2 type: Transform - - SecondsUntilStateChange: -156192.89 + - SecondsUntilStateChange: -161874.55 state: Closing type: Door - enabled: False @@ -22325,7 +22412,7 @@ entities: pos: 55.5,-56.5 parent: 2 type: Transform - - SecondsUntilStateChange: -156141.17 + - SecondsUntilStateChange: -161822.83 state: Closing type: Door - enabled: False @@ -22349,7 +22436,7 @@ entities: pos: 54.5,-56.5 parent: 2 type: Transform - - SecondsUntilStateChange: -156141.17 + - SecondsUntilStateChange: -161822.83 state: Closing type: Door - enabled: False @@ -22372,7 +22459,7 @@ entities: - pos: -45.5,-34.5 parent: 2 type: Transform - - SecondsUntilStateChange: -411670.34 + - SecondsUntilStateChange: -417352 state: Closing type: Door - enabled: False @@ -22396,7 +22483,7 @@ entities: pos: -40.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -410020.7 + - SecondsUntilStateChange: -415702.34 state: Closing type: Door - enabled: False @@ -22420,7 +22507,7 @@ entities: pos: -39.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -410020.7 + - SecondsUntilStateChange: -415702.34 state: Closing type: Door - enabled: False @@ -22444,7 +22531,7 @@ entities: pos: -38.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -410020.7 + - SecondsUntilStateChange: -415702.34 state: Closing type: Door - enabled: False @@ -22468,7 +22555,7 @@ entities: pos: -37.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -410020.7 + - SecondsUntilStateChange: -415702.34 state: Closing type: Door - enabled: False @@ -22491,7 +22578,7 @@ entities: - pos: -49.5,19.5 parent: 2 type: Transform - - SecondsUntilStateChange: -289985.06 + - SecondsUntilStateChange: -295666.72 state: Closing type: Door - enabled: False @@ -22514,7 +22601,7 @@ entities: - pos: -49.5,23.5 parent: 2 type: Transform - - SecondsUntilStateChange: -289985.06 + - SecondsUntilStateChange: -295666.72 state: Closing type: Door - enabled: False @@ -22537,7 +22624,7 @@ entities: - pos: 51.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -252143.34 + - SecondsUntilStateChange: -257825 state: Closing type: Door - enabled: False @@ -22568,7 +22655,7 @@ entities: - pos: 54.5,45.5 parent: 2 type: Transform - - SecondsUntilStateChange: -252143.34 + - SecondsUntilStateChange: -257825 state: Closing type: Door - enabled: False @@ -22595,7 +22682,7 @@ entities: - pos: -52.5,34.5 parent: 2 type: Transform - - SecondsUntilStateChange: -84112.164 + - SecondsUntilStateChange: -89793.836 state: Closing type: Door - enabled: False @@ -22618,7 +22705,7 @@ entities: - pos: -52.5,30.5 parent: 2 type: Transform - - SecondsUntilStateChange: -84084.45 + - SecondsUntilStateChange: -89766.125 state: Closing type: Door - enabled: False @@ -22641,7 +22728,7 @@ entities: - pos: -53.5,23.5 parent: 2 type: Transform - - SecondsUntilStateChange: -84153.1 + - SecondsUntilStateChange: -89834.77 state: Closing type: Door - enabled: False @@ -22664,7 +22751,7 @@ entities: - pos: -53.5,19.5 parent: 2 type: Transform - - SecondsUntilStateChange: -84153.1 + - SecondsUntilStateChange: -89834.77 state: Closing type: Door - enabled: False @@ -22687,7 +22774,7 @@ entities: - pos: 53.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -250401.22 + - SecondsUntilStateChange: -256082.88 state: Closing type: Door - enabled: False @@ -22718,7 +22805,7 @@ entities: - pos: 55.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -252403.61 + - SecondsUntilStateChange: -258085.27 state: Closing type: Door - enabled: False @@ -22745,7 +22832,7 @@ entities: - pos: 50.5,47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -252143.34 + - SecondsUntilStateChange: -257825 state: Closing type: Door - enabled: False @@ -22768,7 +22855,7 @@ entities: - pos: 57.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -252143.34 + - SecondsUntilStateChange: -257825 state: Closing type: Door - enabled: False @@ -22791,7 +22878,7 @@ entities: - pos: 56.5,47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -252143.34 + - SecondsUntilStateChange: -257825 state: Closing type: Door - enabled: False @@ -22819,7 +22906,7 @@ entities: - pos: 53.5,48.5 parent: 2 type: Transform - - SecondsUntilStateChange: -250401.22 + - SecondsUntilStateChange: -256082.88 state: Closing type: Door - enabled: False @@ -22864,7 +22951,7 @@ entities: - pos: 58.5,47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -252143.34 + - SecondsUntilStateChange: -257825 state: Closing type: Door - enabled: False @@ -22887,7 +22974,7 @@ entities: - pos: 52.5,45.5 parent: 2 type: Transform - - SecondsUntilStateChange: -252639 + - SecondsUntilStateChange: -258320.66 state: Closing type: Door - enabled: False @@ -22914,7 +23001,7 @@ entities: - pos: 53.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -250401.22 + - SecondsUntilStateChange: -256082.88 state: Closing type: Door - enabled: False @@ -22941,7 +23028,7 @@ entities: - pos: 55.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -252143.34 + - SecondsUntilStateChange: -257825 state: Closing type: Door - enabled: False @@ -22968,7 +23055,7 @@ entities: - pos: 58.5,45.5 parent: 2 type: Transform - - SecondsUntilStateChange: -252143.34 + - SecondsUntilStateChange: -257825 state: Closing type: Door - enabled: False @@ -22991,7 +23078,7 @@ entities: - pos: 57.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -252143.34 + - SecondsUntilStateChange: -257825 state: Closing type: Door - enabled: False @@ -23027,7 +23114,7 @@ entities: - pos: 54.5,47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -252143.34 + - SecondsUntilStateChange: -257825 state: Closing type: Door - enabled: False @@ -23050,7 +23137,7 @@ entities: - pos: 52.5,47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -252143.34 + - SecondsUntilStateChange: -257825 state: Closing type: Door - enabled: False @@ -23073,7 +23160,7 @@ entities: - pos: 51.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -252143.34 + - SecondsUntilStateChange: -257825 state: Closing type: Door - enabled: False @@ -23100,7 +23187,7 @@ entities: - pos: 56.5,45.5 parent: 2 type: Transform - - SecondsUntilStateChange: -252497.7 + - SecondsUntilStateChange: -258179.36 state: Closing type: Door - enabled: False @@ -23127,7 +23214,7 @@ entities: - pos: 50.5,45.5 parent: 2 type: Transform - - SecondsUntilStateChange: -252143.34 + - SecondsUntilStateChange: -257825 state: Closing type: Door - enabled: False @@ -23154,7 +23241,7 @@ entities: - pos: -18.5,-96.5 parent: 2 type: Transform - - SecondsUntilStateChange: -198517.61 + - SecondsUntilStateChange: -204199.27 state: Closing type: Door - enabled: False @@ -23177,7 +23264,7 @@ entities: - pos: -18.5,-98.5 parent: 2 type: Transform - - SecondsUntilStateChange: -198517.61 + - SecondsUntilStateChange: -204199.27 state: Closing type: Door - enabled: False @@ -23200,7 +23287,7 @@ entities: - pos: -26.5,-96.5 parent: 2 type: Transform - - SecondsUntilStateChange: -198525.94 + - SecondsUntilStateChange: -204207.6 state: Closing type: Door - enabled: False @@ -23223,7 +23310,7 @@ entities: - pos: -26.5,-98.5 parent: 2 type: Transform - - SecondsUntilStateChange: -198525.94 + - SecondsUntilStateChange: -204207.6 state: Closing type: Door - enabled: False @@ -23246,7 +23333,7 @@ entities: - pos: 67.5,-39.5 parent: 2 type: Transform - - SecondsUntilStateChange: -154299.48 + - SecondsUntilStateChange: -159981.14 state: Closing type: Door - enabled: False @@ -23287,7 +23374,7 @@ entities: pos: 24.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -216380.52 + - SecondsUntilStateChange: -222062.17 state: Opening type: Door - enabled: True @@ -23311,7 +23398,7 @@ entities: pos: 23.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -216380.52 + - SecondsUntilStateChange: -222062.17 state: Opening type: Door - enabled: True @@ -23335,7 +23422,7 @@ entities: pos: 25.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -216380.52 + - SecondsUntilStateChange: -222062.17 state: Opening type: Door - enabled: True @@ -23359,7 +23446,7 @@ entities: pos: 26.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -216380.52 + - SecondsUntilStateChange: -222062.17 state: Opening type: Door - enabled: True @@ -23383,7 +23470,7 @@ entities: pos: 24.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -216380.52 + - SecondsUntilStateChange: -222062.17 state: Opening type: Door - enabled: True @@ -23407,7 +23494,7 @@ entities: pos: 23.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -216380.52 + - SecondsUntilStateChange: -222062.17 state: Opening type: Door - enabled: True @@ -23431,7 +23518,7 @@ entities: pos: 25.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -216380.52 + - SecondsUntilStateChange: -222062.17 state: Opening type: Door - enabled: True @@ -23455,7 +23542,7 @@ entities: pos: 26.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -216380.52 + - SecondsUntilStateChange: -222062.17 state: Opening type: Door - enabled: True @@ -23479,7 +23566,7 @@ entities: pos: 22.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -216380.52 + - SecondsUntilStateChange: -222062.17 state: Opening type: Door - enabled: True @@ -23503,7 +23590,7 @@ entities: pos: 22.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -216380.52 + - SecondsUntilStateChange: -222062.17 state: Opening type: Door - enabled: True @@ -23526,7 +23613,7 @@ entities: - pos: -8.5,-91.5 parent: 2 type: Transform - - SecondsUntilStateChange: -200274.6 + - SecondsUntilStateChange: -205956.25 state: Opening type: Door - enabled: True @@ -23553,7 +23640,7 @@ entities: - pos: -8.5,-92.5 parent: 2 type: Transform - - SecondsUntilStateChange: -200274.6 + - SecondsUntilStateChange: -205956.25 state: Opening type: Door - enabled: True @@ -23580,7 +23667,7 @@ entities: - pos: -8.5,-93.5 parent: 2 type: Transform - - SecondsUntilStateChange: -200274.6 + - SecondsUntilStateChange: -205956.25 state: Opening type: Door - enabled: True @@ -23607,7 +23694,7 @@ entities: - pos: -6.5,-91.5 parent: 2 type: Transform - - SecondsUntilStateChange: -200274.6 + - SecondsUntilStateChange: -205956.25 state: Opening type: Door - enabled: True @@ -23634,7 +23721,7 @@ entities: - pos: -6.5,-90.5 parent: 2 type: Transform - - SecondsUntilStateChange: -200274.6 + - SecondsUntilStateChange: -205956.25 state: Opening type: Door - enabled: True @@ -23661,7 +23748,7 @@ entities: - pos: -6.5,-92.5 parent: 2 type: Transform - - SecondsUntilStateChange: -200274.6 + - SecondsUntilStateChange: -205956.25 state: Opening type: Door - enabled: True @@ -23688,7 +23775,7 @@ entities: - pos: -6.5,-93.5 parent: 2 type: Transform - - SecondsUntilStateChange: -200274.6 + - SecondsUntilStateChange: -205956.25 state: Opening type: Door - enabled: True @@ -23715,7 +23802,7 @@ entities: - pos: -8.5,-90.5 parent: 2 type: Transform - - SecondsUntilStateChange: -200274.6 + - SecondsUntilStateChange: -205956.25 state: Opening type: Door - enabled: True @@ -23744,7 +23831,7 @@ entities: - pos: -11.5,-11.5 parent: 2 type: Transform - - SecondsUntilStateChange: -45225.062 + - SecondsUntilStateChange: -50906.73 state: Closing type: Door - enabled: False @@ -23769,7 +23856,7 @@ entities: - pos: -56.5,-11.5 parent: 2 type: Transform - - SecondsUntilStateChange: -327950.53 + - SecondsUntilStateChange: -333632.2 state: Opening type: Door - enabled: True @@ -23792,7 +23879,7 @@ entities: - pos: -56.5,-12.5 parent: 2 type: Transform - - SecondsUntilStateChange: -327950.53 + - SecondsUntilStateChange: -333632.2 state: Opening type: Door - enabled: True @@ -23815,7 +23902,7 @@ entities: - pos: -56.5,-13.5 parent: 2 type: Transform - - SecondsUntilStateChange: -327950.53 + - SecondsUntilStateChange: -333632.2 state: Opening type: Door - enabled: True @@ -23838,7 +23925,7 @@ entities: - pos: -56.5,-14.5 parent: 2 type: Transform - - SecondsUntilStateChange: -327950.53 + - SecondsUntilStateChange: -333632.2 state: Opening type: Door - enabled: True @@ -23861,7 +23948,7 @@ entities: - pos: -56.5,-15.5 parent: 2 type: Transform - - SecondsUntilStateChange: -327950.53 + - SecondsUntilStateChange: -333632.2 state: Opening type: Door - enabled: True @@ -23885,7 +23972,7 @@ entities: pos: -64.5,-22.5 parent: 2 type: Transform - - SecondsUntilStateChange: -97148.15 + - SecondsUntilStateChange: -102829.82 state: Opening type: Door - enabled: True @@ -23909,7 +23996,7 @@ entities: pos: -65.5,-22.5 parent: 2 type: Transform - - SecondsUntilStateChange: -97148.15 + - SecondsUntilStateChange: -102829.82 state: Opening type: Door - enabled: True @@ -23933,7 +24020,7 @@ entities: pos: -66.5,-22.5 parent: 2 type: Transform - - SecondsUntilStateChange: -97148.15 + - SecondsUntilStateChange: -102829.82 state: Opening type: Door - enabled: True @@ -23957,7 +24044,7 @@ entities: pos: -67.5,-22.5 parent: 2 type: Transform - - SecondsUntilStateChange: -97148.15 + - SecondsUntilStateChange: -102829.82 state: Opening type: Door - enabled: True @@ -23981,7 +24068,7 @@ entities: pos: -68.5,-22.5 parent: 2 type: Transform - - SecondsUntilStateChange: -97148.15 + - SecondsUntilStateChange: -102829.82 state: Opening type: Door - enabled: True @@ -24765,7 +24852,7 @@ entities: type: Transform - uid: 2248 components: - - pos: -6.6512356,-49.408676 + - pos: -11.479405,-48.501934 parent: 2 type: Transform - uid: 2249 @@ -61495,6 +61582,41 @@ entities: type: Transform - fixtures: {} type: Fixtures + - uid: 30712 + components: + - pos: -14.5,-33.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 30713 + components: + - pos: -15.5,-33.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 30714 + components: + - pos: -15.5,-34.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 30711 + components: + - pos: -13.5,-33.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 30715 + components: + - pos: -41.5,-17.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures - proto: CableApcStack entities: - uid: 7195 @@ -67837,8 +67959,6 @@ entities: - pos: -41.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 8055 @@ -83456,11 +83576,6 @@ entities: - pos: -12.5,-14.5 parent: 2 type: Transform - - uid: 10195 - components: - - pos: -16.5,-34.5 - parent: 2 - type: Transform - uid: 10196 components: - pos: 4.5,-67.5 @@ -83699,16 +83814,6 @@ entities: - pos: -16.5,-31.5 parent: 2 type: Transform - - uid: 10241 - components: - - pos: -16.5,-32.5 - parent: 2 - type: Transform - - uid: 10242 - components: - - pos: -16.5,-33.5 - parent: 2 - type: Transform - uid: 10243 components: - pos: -6.5,-69.5 @@ -92661,6 +92766,22 @@ entities: pos: 2.361197,23.616985 parent: 2 type: Transform +- proto: CigaretteSyndicate + entities: + - uid: 30697 + components: + - pos: -16.578083,-33.262604 + parent: 2 + type: Transform + - nextSound: 1315.858331 + type: EmitSoundOnCollide + - uid: 30698 + components: + - pos: -16.390583,-33.46573 + parent: 2 + type: Transform + - nextSound: 1317.5080016 + type: EmitSoundOnCollide - proto: CigarGold entities: - uid: 11897 @@ -95151,8 +95272,8 @@ entities: immutable: False temperature: 293.14957 moles: - - 8.402782 - - 31.610466 + - 2.418213 + - 9.097087 - 0 - 0 - 0 @@ -95222,8 +95343,8 @@ entities: immutable: False temperature: 293.14957 moles: - - 8.402782 - - 31.610466 + - 2.418213 + - 9.097087 - 0 - 0 - 0 @@ -95316,29 +95437,6 @@ entities: type: EntityStorage - proto: ClosetWallMaintenanceFilledRandom entities: - - uid: 12027 - components: - - pos: -15.5,-33.5 - parent: 2 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 12028 components: - pos: -52.5,-26.5 @@ -95397,6 +95495,13 @@ entities: type: Transform - proto: ClothingBackpackDuffelSurgeryFilled entities: + - uid: 10195 + components: + - pos: -16.53388,-35.408203 + parent: 2 + type: Transform + - nextSound: 988.5197704 + type: EmitSoundOnCollide - uid: 12034 components: - pos: -6.4692874,-100.35278 @@ -95503,13 +95608,6 @@ entities: - pos: -57.484028,-27.38782 parent: 2 type: Transform -- proto: ClothingEyesGlassesBeer - entities: - - uid: 12052 - components: - - pos: -41.966873,-78.417305 - parent: 2 - type: Transform - proto: ClothingEyesGlassesMeson entities: - uid: 12053 @@ -96008,6 +96106,15 @@ entities: - pos: -3.4901123,53.561974 parent: 2 type: Transform +- proto: ClothingMaskBreath + entities: + - uid: 10241 + components: + - pos: -14.676882,-35.30204 + parent: 2 + type: Transform + - nextSound: 1031.9369974 + type: EmitSoundOnCollide - proto: ClothingMaskClown entities: - uid: 12130 @@ -96065,6 +96172,15 @@ entities: - pos: 16.67739,21.87369 parent: 2 type: Transform +- proto: ClothingMaskMuzzle + entities: + - uid: 30696 + components: + - pos: -16.518003,-34.068638 + parent: 2 + type: Transform + - nextSound: 1165.5556962 + type: EmitSoundOnCollide - proto: ClothingMaskPlague entities: - uid: 12139 @@ -96294,6 +96410,15 @@ entities: - pos: -31.046518,5.058201 parent: 2 type: Transform +- proto: ClothingOuterStraightjacket + entities: + - uid: 30695 + components: + - pos: -16.502378,-34.459263 + parent: 2 + type: Transform + - nextSound: 1155.0227257 + type: EmitSoundOnCollide - proto: ClothingOuterSuitChicken entities: - uid: 12170 @@ -96486,6 +96611,30 @@ entities: - pos: 15.423054,34.567764 parent: 2 type: Transform +- proto: ClothingShoesSwat + entities: + - uid: 30693 + components: + - flags: InContainer + type: MetaData + - parent: 20781 + type: Transform + - nextSound: 710.4321187 + type: EmitSoundOnCollide + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 30694 + components: + - flags: InContainer + type: MetaData + - parent: 20781 + type: Transform + - nextSound: 711.632148 + type: EmitSoundOnCollide + - canCollide: False + type: Physics + - type: InsideEntityStorage - proto: ClothingUnderSocksBee entities: - uid: 12198 @@ -96504,6 +96653,19 @@ entities: type: SuitSensor - nextSound: 265.3189424 type: EmitSoundOnCollide +- proto: ClothingUniformJumpskirtOperative + entities: + - uid: 30691 + components: + - flags: InContainer + type: MetaData + - parent: 20781 + type: Transform + - nextSound: 693.8653129 + type: EmitSoundOnCollide + - canCollide: False + type: Physics + - type: InsideEntityStorage - proto: ClothingUniformJumpsuitCossack entities: - uid: 12200 @@ -96584,6 +96746,19 @@ entities: - pos: -33.11785,8.55969 parent: 2 type: Transform +- proto: ClothingUniformJumpsuitOperative + entities: + - uid: 30692 + components: + - flags: InContainer + type: MetaData + - parent: 20781 + type: Transform + - nextSound: 698.6989425 + type: EmitSoundOnCollide + - canCollide: False + type: Physics + - type: InsideEntityStorage - proto: ClothingUniformJumpsuitPsychologist entities: - uid: 12214 @@ -97436,7 +97611,7 @@ entities: type: Transform - uid: 12356 components: - - pos: -9.312697,37.696274 + - pos: -9.52837,37.67306 parent: 2 type: Transform - proto: ContainmentFieldGenerator @@ -154197,12 +154372,6 @@ entities: - pos: -67.5,-33.5 parent: 2 type: Transform - - uid: 19970 - components: - - rot: 3.141592653589793 rad - pos: -41.5,-19.5 - parent: 2 - type: Transform - uid: 19971 components: - pos: -61.5,-31.5 @@ -157169,7 +157338,7 @@ entities: - pos: 60.5,21.5 parent: 2 type: Transform - - SecondsUntilStateChange: -489341.06 + - SecondsUntilStateChange: -495022.72 state: Opening type: Door - uid: 20525 @@ -157200,7 +157369,7 @@ entities: - pos: 3.5,-62.5 parent: 2 type: Transform - - SecondsUntilStateChange: -563902.6 + - SecondsUntilStateChange: -569584.3 state: Closing type: Door - uid: 20530 @@ -159499,8 +159668,8 @@ entities: immutable: False temperature: 293.14957 moles: - - 8.402782 - - 31.610466 + - 2.418213 + - 9.097087 - 0 - 0 - 0 @@ -159618,8 +159787,8 @@ entities: immutable: False temperature: 293.14957 moles: - - 8.402782 - - 31.610466 + - 2.418213 + - 9.097087 - 0 - 0 - 0 @@ -159631,6 +159800,20 @@ entities: - 0 - 0 type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 30692 + - 30694 + - 30691 + - 30693 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer - proto: LockerWallMedicalDoctorFilled entities: - uid: 20782 @@ -160268,11 +160451,6 @@ entities: type: Transform - proto: MaterialWoodPlank entities: - - uid: 20878 - components: - - pos: -14.580205,-35.49298 - parent: 2 - type: Transform - uid: 20879 components: - rot: 3.141592653589793 rad @@ -161235,6 +161413,17 @@ entities: - pos: -3.498691,-65.92361 parent: 2 type: Transform +- proto: NitrousOxideTankFilled + entities: + - uid: 10242 + components: + - pos: -14.368902,-35.56089 + parent: 2 + type: Transform + - nextAttack: 1021.4034268 + type: MeleeWeapon + - nextSound: 1021.6034268 + type: EmitSoundOnCollide - proto: NodeScanner entities: - uid: 20996 @@ -161323,6 +161512,11 @@ entities: - pos: 71.5,-48.5 parent: 2 type: Transform + - uid: 22978 + components: + - pos: -15.5,-35.5 + parent: 2 + type: Transform - proto: OreBag entities: - uid: 21010 @@ -164293,6 +164487,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver + - type: Timer - uid: 21492 components: - rot: -1.5707963267948966 rad @@ -164503,6 +164698,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver + - type: Timer - uid: 21519 components: - rot: 3.141592653589793 rad @@ -164511,6 +164707,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver + - type: Timer - uid: 21520 components: - pos: 16.5,-16.5 @@ -169339,6 +169536,11 @@ entities: pos: -37.5,42.5 parent: 2 type: Transform + - uid: 24768 + components: + - pos: -15.5,-33.5 + parent: 2 + type: Transform - proto: PoweredSmallLightEmpty entities: - uid: 22150 @@ -173898,12 +174100,6 @@ entities: - pos: -43.5,-13.5 parent: 2 type: Transform - - uid: 22978 - components: - - rot: 3.141592653589793 rad - pos: -41.5,-19.5 - parent: 2 - type: Transform - uid: 22979 components: - pos: 48.5,7.5 @@ -175459,7 +175655,7 @@ entities: type: Stack - uid: 23259 components: - - pos: -41.74803,-18.440893 + - pos: -42.523426,-17.538477 parent: 2 type: Transform - uid: 23260 @@ -175517,7 +175713,7 @@ entities: entities: - uid: 23268 components: - - pos: -42.49803,-16.612768 + - pos: -42.576187,-16.487726 parent: 2 type: Transform - uid: 23269 @@ -175534,14 +175730,14 @@ entities: type: Transform - uid: 23271 components: - - pos: -40.982407,-18.456518 + - pos: -42.53905,-18.280842 parent: 2 type: Transform - proto: SheetRGlass entities: - uid: 23272 components: - - pos: -42.558216,-17.530426 + - pos: -42.585926,-17.225977 parent: 2 type: Transform - proto: SheetSteel @@ -175671,7 +175867,7 @@ entities: type: Occluder - canCollide: False type: Physics - - SecondsUntilStateChange: -99425.305 + - SecondsUntilStateChange: -105106.98 state: Closing type: Door - airBlocked: False @@ -175695,7 +175891,7 @@ entities: type: Occluder - canCollide: False type: Physics - - SecondsUntilStateChange: -99425.305 + - SecondsUntilStateChange: -105106.98 state: Closing type: Door - airBlocked: False @@ -175717,7 +175913,7 @@ entities: pos: 15.5,13.5 parent: 2 type: Transform - - SecondsUntilStateChange: -80480.39 + - SecondsUntilStateChange: -86162.06 state: Opening type: Door - canCollide: True @@ -175746,7 +175942,7 @@ entities: - pos: -32.5,32.5 parent: 2 type: Transform - - SecondsUntilStateChange: -110038.78 + - SecondsUntilStateChange: -115720.45 state: Opening type: Door - canCollide: True @@ -175769,7 +175965,7 @@ entities: - pos: 37.5,-0.5 parent: 2 type: Transform - - SecondsUntilStateChange: -18128.639 + - SecondsUntilStateChange: -23810.303 state: Opening type: Door - canCollide: True @@ -175807,7 +176003,7 @@ entities: pos: 15.5,11.5 parent: 2 type: Transform - - SecondsUntilStateChange: -80480.39 + - SecondsUntilStateChange: -86162.06 state: Opening type: Door - canCollide: True @@ -175831,7 +176027,7 @@ entities: pos: 15.5,10.5 parent: 2 type: Transform - - SecondsUntilStateChange: -80480.39 + - SecondsUntilStateChange: -86162.06 state: Opening type: Door - canCollide: True @@ -175855,7 +176051,7 @@ entities: pos: -2.5,-5.5 parent: 2 type: Transform - - SecondsUntilStateChange: -60149.555 + - SecondsUntilStateChange: -65831.22 state: Opening type: Door - canCollide: True @@ -175878,7 +176074,7 @@ entities: - pos: -0.5,-2.5 parent: 2 type: Transform - - SecondsUntilStateChange: -60149.555 + - SecondsUntilStateChange: -65831.22 state: Opening type: Door - canCollide: True @@ -175901,7 +176097,7 @@ entities: - pos: 18.5,15.5 parent: 2 type: Transform - - SecondsUntilStateChange: -80480.39 + - SecondsUntilStateChange: -86162.06 state: Opening type: Door - canCollide: True @@ -175924,7 +176120,7 @@ entities: - pos: 17.5,15.5 parent: 2 type: Transform - - SecondsUntilStateChange: -80480.39 + - SecondsUntilStateChange: -86162.06 state: Opening type: Door - canCollide: True @@ -175962,7 +176158,7 @@ entities: pos: 48.5,6.5 parent: 2 type: Transform - - SecondsUntilStateChange: -15674.467 + - SecondsUntilStateChange: -21356.13 state: Opening type: Door - canCollide: True @@ -175986,7 +176182,7 @@ entities: pos: 35.5,4.5 parent: 2 type: Transform - - SecondsUntilStateChange: -79567.664 + - SecondsUntilStateChange: -85249.336 state: Opening type: Door - canCollide: True @@ -176010,7 +176206,7 @@ entities: pos: 15.5,12.5 parent: 2 type: Transform - - SecondsUntilStateChange: -80480.39 + - SecondsUntilStateChange: -86162.06 state: Opening type: Door - canCollide: True @@ -176033,7 +176229,7 @@ entities: - pos: 61.5,-56.5 parent: 2 type: Transform - - SecondsUntilStateChange: -109953.05 + - SecondsUntilStateChange: -115634.72 state: Opening type: Door - canCollide: True @@ -176057,7 +176253,7 @@ entities: pos: 15.5,14.5 parent: 2 type: Transform - - SecondsUntilStateChange: -80480.39 + - SecondsUntilStateChange: -86162.06 state: Opening type: Door - canCollide: True @@ -176080,7 +176276,7 @@ entities: - pos: 45.5,9.5 parent: 2 type: Transform - - SecondsUntilStateChange: -15674.467 + - SecondsUntilStateChange: -21356.13 state: Opening type: Door - canCollide: True @@ -176103,7 +176299,7 @@ entities: - pos: 43.5,7.5 parent: 2 type: Transform - - SecondsUntilStateChange: -15674.467 + - SecondsUntilStateChange: -21356.13 state: Opening type: Door - canCollide: True @@ -176126,7 +176322,7 @@ entities: - pos: 62.5,-56.5 parent: 2 type: Transform - - SecondsUntilStateChange: -109953.05 + - SecondsUntilStateChange: -115634.72 state: Opening type: Door - canCollide: True @@ -176149,7 +176345,7 @@ entities: - pos: 63.5,-56.5 parent: 2 type: Transform - - SecondsUntilStateChange: -109953.05 + - SecondsUntilStateChange: -115634.72 state: Opening type: Door - canCollide: True @@ -176172,7 +176368,7 @@ entities: - pos: 22.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -105044.45 + - SecondsUntilStateChange: -110726.125 state: Opening type: Door - canCollide: True @@ -176195,7 +176391,7 @@ entities: - pos: -30.5,27.5 parent: 2 type: Transform - - SecondsUntilStateChange: -110038.78 + - SecondsUntilStateChange: -115720.45 state: Opening type: Door - canCollide: True @@ -176218,7 +176414,7 @@ entities: - pos: 29.5,9.5 parent: 2 type: Transform - - SecondsUntilStateChange: -79567.664 + - SecondsUntilStateChange: -85249.336 state: Opening type: Door - canCollide: True @@ -176241,7 +176437,7 @@ entities: - pos: 34.5,9.5 parent: 2 type: Transform - - SecondsUntilStateChange: -79567.664 + - SecondsUntilStateChange: -85249.336 state: Opening type: Door - canCollide: True @@ -176264,7 +176460,7 @@ entities: - pos: -31.5,27.5 parent: 2 type: Transform - - SecondsUntilStateChange: -110038.78 + - SecondsUntilStateChange: -115720.45 state: Opening type: Door - canCollide: True @@ -176288,7 +176484,7 @@ entities: pos: 35.5,7.5 parent: 2 type: Transform - - SecondsUntilStateChange: -79567.664 + - SecondsUntilStateChange: -85249.336 state: Opening type: Door - canCollide: True @@ -176311,7 +176507,7 @@ entities: - pos: -33.5,27.5 parent: 2 type: Transform - - SecondsUntilStateChange: -110038.78 + - SecondsUntilStateChange: -115720.45 state: Opening type: Door - canCollide: True @@ -176334,7 +176530,7 @@ entities: - pos: -49.5,13.5 parent: 2 type: Transform - - SecondsUntilStateChange: -70217.6 + - SecondsUntilStateChange: -75899.27 state: Opening type: Door - canCollide: True @@ -176357,7 +176553,7 @@ entities: - pos: -48.5,13.5 parent: 2 type: Transform - - SecondsUntilStateChange: -70217.6 + - SecondsUntilStateChange: -75899.27 state: Opening type: Door - canCollide: True @@ -176380,7 +176576,7 @@ entities: - pos: -31.5,32.5 parent: 2 type: Transform - - SecondsUntilStateChange: -110038.78 + - SecondsUntilStateChange: -115720.45 state: Opening type: Door - canCollide: True @@ -176403,7 +176599,7 @@ entities: - pos: 32.5,9.5 parent: 2 type: Transform - - SecondsUntilStateChange: -79567.664 + - SecondsUntilStateChange: -85249.336 state: Opening type: Door - canCollide: True @@ -176426,7 +176622,7 @@ entities: - pos: 39.5,-0.5 parent: 2 type: Transform - - SecondsUntilStateChange: -18128.639 + - SecondsUntilStateChange: -23810.303 state: Opening type: Door - canCollide: True @@ -176449,7 +176645,7 @@ entities: - pos: -33.5,32.5 parent: 2 type: Transform - - SecondsUntilStateChange: -110038.78 + - SecondsUntilStateChange: -115720.45 state: Opening type: Door - canCollide: True @@ -176472,7 +176668,7 @@ entities: - pos: -46.5,13.5 parent: 2 type: Transform - - SecondsUntilStateChange: -70217.6 + - SecondsUntilStateChange: -75899.27 state: Opening type: Door - canCollide: True @@ -176495,7 +176691,7 @@ entities: - pos: -47.5,13.5 parent: 2 type: Transform - - SecondsUntilStateChange: -70217.6 + - SecondsUntilStateChange: -75899.27 state: Opening type: Door - canCollide: True @@ -176518,7 +176714,7 @@ entities: - pos: 43.5,5.5 parent: 2 type: Transform - - SecondsUntilStateChange: -15674.467 + - SecondsUntilStateChange: -21356.13 state: Opening type: Door - canCollide: True @@ -176541,7 +176737,7 @@ entities: - pos: 59.5,-54.5 parent: 2 type: Transform - - SecondsUntilStateChange: -109953.05 + - SecondsUntilStateChange: -115634.72 state: Opening type: Door - canCollide: True @@ -176564,7 +176760,7 @@ entities: - pos: 65.5,-54.5 parent: 2 type: Transform - - SecondsUntilStateChange: -109953.05 + - SecondsUntilStateChange: -115634.72 state: Opening type: Door - canCollide: True @@ -176588,7 +176784,7 @@ entities: pos: 66.5,-51.5 parent: 2 type: Transform - - SecondsUntilStateChange: -109953.05 + - SecondsUntilStateChange: -115634.72 state: Opening type: Door - canCollide: True @@ -176612,7 +176808,7 @@ entities: pos: 66.5,-52.5 parent: 2 type: Transform - - SecondsUntilStateChange: -109953.05 + - SecondsUntilStateChange: -115634.72 state: Opening type: Door - canCollide: True @@ -176636,7 +176832,7 @@ entities: pos: 58.5,-51.5 parent: 2 type: Transform - - SecondsUntilStateChange: -109953.05 + - SecondsUntilStateChange: -115634.72 state: Opening type: Door - canCollide: True @@ -176660,7 +176856,7 @@ entities: pos: 58.5,-52.5 parent: 2 type: Transform - - SecondsUntilStateChange: -109953.05 + - SecondsUntilStateChange: -115634.72 state: Opening type: Door - canCollide: True @@ -176683,7 +176879,7 @@ entities: - pos: 61.5,-50.5 parent: 2 type: Transform - - SecondsUntilStateChange: -109953.05 + - SecondsUntilStateChange: -115634.72 state: Opening type: Door - canCollide: True @@ -176706,7 +176902,7 @@ entities: - pos: 63.5,-50.5 parent: 2 type: Transform - - SecondsUntilStateChange: -109953.05 + - SecondsUntilStateChange: -115634.72 state: Opening type: Door - canCollide: True @@ -176729,7 +176925,7 @@ entities: - pos: -20.5,-58.5 parent: 2 type: Transform - - SecondsUntilStateChange: -109893.85 + - SecondsUntilStateChange: -115575.52 state: Opening type: Door - canCollide: True @@ -176752,7 +176948,7 @@ entities: - pos: -18.5,-58.5 parent: 2 type: Transform - - SecondsUntilStateChange: -109893.85 + - SecondsUntilStateChange: -115575.52 state: Opening type: Door - canCollide: True @@ -176775,7 +176971,7 @@ entities: - pos: -37.5,-14.5 parent: 2 type: Transform - - SecondsUntilStateChange: -60106.703 + - SecondsUntilStateChange: -65788.37 state: Opening type: Door - canCollide: True @@ -176799,7 +176995,7 @@ entities: pos: -33.5,-15.5 parent: 2 type: Transform - - SecondsUntilStateChange: -60106.703 + - SecondsUntilStateChange: -65788.37 state: Opening type: Door - canCollide: True @@ -176823,7 +177019,7 @@ entities: pos: -33.5,-17.5 parent: 2 type: Transform - - SecondsUntilStateChange: -60106.703 + - SecondsUntilStateChange: -65788.37 state: Opening type: Door - canCollide: True @@ -176846,7 +177042,7 @@ entities: - pos: 0.5,-2.5 parent: 2 type: Transform - - SecondsUntilStateChange: -60149.555 + - SecondsUntilStateChange: -65831.22 state: Opening type: Door - canCollide: True @@ -176869,7 +177065,7 @@ entities: - pos: 1.5,-2.5 parent: 2 type: Transform - - SecondsUntilStateChange: -60149.555 + - SecondsUntilStateChange: -65831.22 state: Opening type: Door - canCollide: True @@ -176893,7 +177089,7 @@ entities: pos: 7.5,9.5 parent: 2 type: Transform - - SecondsUntilStateChange: -49302.633 + - SecondsUntilStateChange: -54984.3 state: Opening type: Door - canCollide: True @@ -176917,7 +177113,7 @@ entities: pos: 7.5,8.5 parent: 2 type: Transform - - SecondsUntilStateChange: -49302.633 + - SecondsUntilStateChange: -54984.3 state: Opening type: Door - canCollide: True @@ -176941,7 +177137,7 @@ entities: pos: 7.5,7.5 parent: 2 type: Transform - - SecondsUntilStateChange: -49302.633 + - SecondsUntilStateChange: -54984.3 state: Opening type: Door - canCollide: True @@ -176964,7 +177160,7 @@ entities: - pos: 2.5,4.5 parent: 2 type: Transform - - SecondsUntilStateChange: -49302.633 + - SecondsUntilStateChange: -54984.3 state: Opening type: Door - canCollide: True @@ -177001,7 +177197,7 @@ entities: - pos: 0.5,4.5 parent: 2 type: Transform - - SecondsUntilStateChange: -49302.633 + - SecondsUntilStateChange: -54984.3 state: Opening type: Door - canCollide: True @@ -177024,7 +177220,7 @@ entities: - pos: 5.5,11.5 parent: 2 type: Transform - - SecondsUntilStateChange: -49302.633 + - SecondsUntilStateChange: -54984.3 state: Opening type: Door - canCollide: True @@ -177047,7 +177243,7 @@ entities: - pos: 4.5,11.5 parent: 2 type: Transform - - SecondsUntilStateChange: -49302.633 + - SecondsUntilStateChange: -54984.3 state: Opening type: Door - canCollide: True @@ -177070,7 +177266,7 @@ entities: - pos: 23.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -105044.45 + - SecondsUntilStateChange: -110726.125 state: Opening type: Door - canCollide: True @@ -177093,7 +177289,7 @@ entities: - pos: 24.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -105044.45 + - SecondsUntilStateChange: -110726.125 state: Opening type: Door - canCollide: True @@ -177116,7 +177312,7 @@ entities: - pos: 25.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -105044.45 + - SecondsUntilStateChange: -110726.125 state: Opening type: Door - canCollide: True @@ -177139,7 +177335,7 @@ entities: - pos: 26.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -105044.45 + - SecondsUntilStateChange: -110726.125 state: Opening type: Door - canCollide: True @@ -177162,7 +177358,7 @@ entities: - pos: 27.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -105044.45 + - SecondsUntilStateChange: -110726.125 state: Opening type: Door - canCollide: True @@ -177185,7 +177381,7 @@ entities: - pos: 28.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -105044.45 + - SecondsUntilStateChange: -110726.125 state: Opening type: Door - canCollide: True @@ -177209,7 +177405,7 @@ entities: pos: -2.5,-4.5 parent: 2 type: Transform - - SecondsUntilStateChange: -60149.555 + - SecondsUntilStateChange: -65831.22 state: Opening type: Door - canCollide: True @@ -177233,7 +177429,7 @@ entities: pos: 1.5,-46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -15544.224 + - SecondsUntilStateChange: -21225.889 state: Opening type: Door - canCollide: True @@ -177256,7 +177452,7 @@ entities: - pos: 34.5,18.5 parent: 2 type: Transform - - SecondsUntilStateChange: -78063.26 + - SecondsUntilStateChange: -83744.93 state: Opening type: Door - canCollide: True @@ -177279,7 +177475,7 @@ entities: - pos: 35.5,18.5 parent: 2 type: Transform - - SecondsUntilStateChange: -78063.26 + - SecondsUntilStateChange: -83744.93 state: Opening type: Door - canCollide: True @@ -177302,7 +177498,7 @@ entities: - pos: 36.5,18.5 parent: 2 type: Transform - - SecondsUntilStateChange: -78063.26 + - SecondsUntilStateChange: -83744.93 state: Opening type: Door - canCollide: True @@ -177340,7 +177536,7 @@ entities: pos: 48.5,7.5 parent: 2 type: Transform - - SecondsUntilStateChange: -15674.467 + - SecondsUntilStateChange: -21356.13 state: Opening type: Door - canCollide: True @@ -177363,7 +177559,7 @@ entities: - pos: 46.5,9.5 parent: 2 type: Transform - - SecondsUntilStateChange: -15674.467 + - SecondsUntilStateChange: -21356.13 state: Opening type: Door - canCollide: True @@ -177387,7 +177583,7 @@ entities: pos: 35.5,-1.5 parent: 2 type: Transform - - SecondsUntilStateChange: -18128.639 + - SecondsUntilStateChange: -23810.303 state: Opening type: Door - canCollide: True @@ -177411,7 +177607,7 @@ entities: pos: 35.5,-2.5 parent: 2 type: Transform - - SecondsUntilStateChange: -18128.639 + - SecondsUntilStateChange: -23810.303 state: Opening type: Door - canCollide: True @@ -177435,7 +177631,7 @@ entities: pos: 35.5,-4.5 parent: 2 type: Transform - - SecondsUntilStateChange: -18128.639 + - SecondsUntilStateChange: -23810.303 state: Opening type: Door - canCollide: True @@ -177459,7 +177655,7 @@ entities: pos: 35.5,-5.5 parent: 2 type: Transform - - SecondsUntilStateChange: -18128.639 + - SecondsUntilStateChange: -23810.303 state: Opening type: Door - canCollide: True @@ -177482,7 +177678,7 @@ entities: - pos: 41.5,-0.5 parent: 2 type: Transform - - SecondsUntilStateChange: -18124.139 + - SecondsUntilStateChange: -23805.803 state: Opening type: Door - canCollide: True @@ -177505,7 +177701,7 @@ entities: - pos: 42.5,-0.5 parent: 2 type: Transform - - SecondsUntilStateChange: -18124.139 + - SecondsUntilStateChange: -23805.803 state: Opening type: Door - canCollide: True @@ -177528,7 +177724,7 @@ entities: - pos: 43.5,-0.5 parent: 2 type: Transform - - SecondsUntilStateChange: -18124.139 + - SecondsUntilStateChange: -23805.803 state: Opening type: Door - canCollide: True @@ -177551,7 +177747,7 @@ entities: - pos: 46.5,3.5 parent: 2 type: Transform - - SecondsUntilStateChange: -15674.467 + - SecondsUntilStateChange: -21356.13 state: Opening type: Door - canCollide: True @@ -177575,7 +177771,7 @@ entities: pos: 1.5,-47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -15544.224 + - SecondsUntilStateChange: -21225.889 state: Opening type: Door - canCollide: True @@ -177599,7 +177795,7 @@ entities: pos: 1.5,-48.5 parent: 2 type: Transform - - SecondsUntilStateChange: -15544.224 + - SecondsUntilStateChange: -21225.889 state: Opening type: Door - canCollide: True @@ -177622,7 +177818,7 @@ entities: - pos: 3.5,-44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -15544.224 + - SecondsUntilStateChange: -21225.889 state: Opening type: Door - canCollide: True @@ -177645,7 +177841,7 @@ entities: - pos: 4.5,-44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -15544.224 + - SecondsUntilStateChange: -21225.889 state: Opening type: Door - canCollide: True @@ -177668,7 +177864,7 @@ entities: - pos: 5.5,-44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -15544.224 + - SecondsUntilStateChange: -21225.889 state: Opening type: Door - canCollide: True @@ -177691,7 +177887,7 @@ entities: - pos: 3.5,-51.5 parent: 2 type: Transform - - SecondsUntilStateChange: -15544.224 + - SecondsUntilStateChange: -21225.889 state: Opening type: Door - canCollide: True @@ -177958,6 +178154,105 @@ entities: uid: 23458 Toggle: [] type: SignalReceiver + - uid: 30699 + components: + - pos: 32.5,-24.5 + parent: 2 + type: Transform + - invokeCounter: 2 + links: + - 30710 + type: DeviceLinkSink + - uid: 30700 + components: + - pos: 32.5,-25.5 + parent: 2 + type: Transform + - invokeCounter: 2 + links: + - 30710 + type: DeviceLinkSink + - uid: 30701 + components: + - pos: 18.5,-24.5 + parent: 2 + type: Transform + - invokeCounter: 2 + links: + - 30710 + type: DeviceLinkSink + - uid: 30702 + components: + - pos: 18.5,-25.5 + parent: 2 + type: Transform + - invokeCounter: 2 + links: + - 30710 + type: DeviceLinkSink + - uid: 30703 + components: + - pos: 22.5,-20.5 + parent: 2 + type: Transform + - invokeCounter: 2 + links: + - 30710 + type: DeviceLinkSink + - uid: 30704 + components: + - pos: 23.5,-20.5 + parent: 2 + type: Transform + - invokeCounter: 2 + links: + - 30710 + type: DeviceLinkSink + - uid: 30705 + components: + - pos: 24.5,-20.5 + parent: 2 + type: Transform + - invokeCounter: 2 + links: + - 30710 + type: DeviceLinkSink + - uid: 30706 + components: + - pos: 25.5,-20.5 + parent: 2 + type: Transform + - invokeCounter: 2 + links: + - 30710 + type: DeviceLinkSink + - uid: 30707 + components: + - pos: 26.5,-20.5 + parent: 2 + type: Transform + - invokeCounter: 2 + links: + - 30710 + type: DeviceLinkSink + - uid: 30708 + components: + - pos: 27.5,-20.5 + parent: 2 + type: Transform + - invokeCounter: 2 + links: + - 30710 + type: DeviceLinkSink + - uid: 30709 + components: + - pos: 28.5,-20.5 + parent: 2 + type: Transform + - invokeCounter: 2 + links: + - 30710 + type: DeviceLinkSink - proto: ShuttleConsoleCircuitboard entities: - uid: 23401 @@ -177974,6 +178269,157 @@ entities: - pos: -3.5,60.5 parent: 2 type: Transform +- proto: SignalButton + entities: + - uid: 20878 + components: + - rot: 3.141592653589793 rad + pos: -43.5,9.5 + parent: 2 + type: Transform + - linkedPorts: + 105: + - Pressed: DoorBolt + registeredSinks: + Pressed: + - 105 + type: DeviceLinkSource + - uid: 25033 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,14.5 + parent: 2 + type: Transform + - state: True + type: SignalSwitch + - linkedPorts: + 106: + - Pressed: DoorBolt + registeredSinks: + Pressed: + - 106 + type: DeviceLinkSource + - type: ItemCooldown + - uid: 28610 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,30.5 + parent: 2 + type: Transform + - linkedPorts: + 108: + - Pressed: DoorBolt + registeredSinks: + Pressed: + - 108 + type: DeviceLinkSource + - uid: 30685 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,7.5 + parent: 2 + type: Transform + - linkedPorts: + 107: + - Pressed: DoorBolt + registeredSinks: + Pressed: + - 107 + type: DeviceLinkSource + - uid: 30686 + components: + - rot: 3.141592653589793 rad + pos: -21.5,32.5 + parent: 2 + type: Transform + - linkedPorts: + 109: + - Pressed: DoorBolt + registeredSinks: + Pressed: + - 109 + type: DeviceLinkSource + - uid: 30687 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,33.5 + parent: 2 + type: Transform + - linkedPorts: + 110: + - Pressed: DoorBolt + registeredSinks: + Pressed: + - 110 + type: DeviceLinkSource + - uid: 30688 + components: + - pos: -19.5,39.5 + parent: 2 + type: Transform + - linkedPorts: + 755: + - Pressed: DoorBolt + registeredSinks: + Pressed: + - 755 + type: DeviceLinkSource + - uid: 30689 + components: + - pos: -27.5,47.5 + parent: 2 + type: Transform + - linkedPorts: + 753: + - Pressed: DoorBolt + registeredSinks: + Pressed: + - 753 + type: DeviceLinkSource + - uid: 30710 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-26.5 + parent: 2 + type: Transform + - linkedPorts: + 30703: + - Pressed: Toggle + 30704: + - Pressed: Toggle + 30705: + - Pressed: Toggle + 30706: + - Pressed: Toggle + 30707: + - Pressed: Toggle + 30708: + - Pressed: Toggle + 30709: + - Pressed: Toggle + 30699: + - Pressed: Toggle + 30700: + - Pressed: Toggle + 30701: + - Pressed: Toggle + 30702: + - Pressed: Toggle + registeredSinks: + Pressed: + - 30703 + - 30704 + - 30705 + - 30706 + - 30707 + - 30708 + - 30709 + - 30699 + - 30700 + - 30701 + - 30702 + type: DeviceLinkSource + - type: ItemCooldown - proto: SignalSwitch entities: - uid: 23403 @@ -178620,8 +179066,6 @@ entities: - pos: 54.5,44.5 parent: 2 type: Transform - - state: True - type: SignalSwitch - outputs: On: - port: Open @@ -178634,6 +179078,7 @@ entities: - port: Open uid: 2086 type: SignalTransmitter + - type: ItemCooldown - uid: 23433 components: - pos: 50.5,46.5 @@ -182203,6 +182648,11 @@ entities: - pos: 2.5,-10.5 parent: 2 type: Transform + - uid: 30690 + components: + - pos: -21.5,38.5 + parent: 2 + type: Transform - proto: SpawnPointDetective entities: - uid: 23928 @@ -182316,11 +182766,6 @@ entities: type: Transform - proto: SpawnPointMedicalIntern entities: - - uid: 23947 - components: - - pos: -15.5,-38.5 - parent: 2 - type: Transform - uid: 23948 components: - pos: -1.5,-47.5 @@ -182359,6 +182804,13 @@ entities: - pos: 3.5,-64.5 parent: 2 type: Transform +- proto: SpawnPointPsychologist + entities: + - uid: 23947 + components: + - pos: -15.5,-38.5 + parent: 2 + type: Transform - proto: SpawnPointQuartermaster entities: - uid: 23954 @@ -185006,11 +185458,6 @@ entities: - pos: -40.5,-18.5 parent: 2 type: Transform - - uid: 24378 - components: - - pos: -41.5,-18.5 - parent: 2 - type: Transform - uid: 24379 components: - pos: -42.5,-18.5 @@ -186461,6 +186908,16 @@ entities: type: Transform - proto: TableReinforced entities: + - uid: 12027 + components: + - pos: -16.5,-33.5 + parent: 2 + type: Transform + - uid: 24378 + components: + - pos: -16.5,-35.5 + parent: 2 + type: Transform - uid: 24650 components: - rot: 3.141592653589793 rad @@ -187097,14 +187554,9 @@ entities: - pos: -9.5,16.5 parent: 2 type: Transform - - uid: 24768 - components: - - pos: -16.5,-35.5 - parent: 2 - type: Transform - uid: 24769 components: - - pos: -15.5,-35.5 + - pos: -16.5,-34.5 parent: 2 type: Transform - uid: 24770 @@ -188763,11 +189215,6 @@ entities: - pos: 46.551132,46.620934 parent: 2 type: Transform - - uid: 25033 - components: - - pos: -16.502157,-32.75781 - parent: 2 - type: Transform - uid: 25034 components: - pos: 48.49847,33.344906 @@ -204439,6 +204886,11 @@ entities: type: Transform - proto: WallSolid entities: + - uid: 19970 + components: + - pos: -16.5,-32.5 + parent: 2 + type: Transform - uid: 27760 components: - rot: 1.5707963267948966 rad @@ -208969,11 +209421,6 @@ entities: - pos: -15.5,-32.5 parent: 2 type: Transform - - uid: 28610 - components: - - pos: -15.5,-33.5 - parent: 2 - type: Transform - uid: 28611 components: - pos: -9.5,-30.5 @@ -216409,6 +216856,12 @@ entities: type: Transform - proto: WallSolidRust entities: + - uid: 534 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-33.5 + parent: 2 + type: Transform - uid: 30011 components: - rot: 3.141592653589793 rad diff --git a/Resources/Prototypes/Maps/origin.yml b/Resources/Prototypes/Maps/origin.yml index 6638c14951..71040f34d3 100644 --- a/Resources/Prototypes/Maps/origin.yml +++ b/Resources/Prototypes/Maps/origin.yml @@ -53,3 +53,4 @@ ResearchAssistant: [ 2, 2] Boxer: [ 1, 1] Paramedic: [ 1, 1] + Psychologist: [ 1, 1] From 1e6dbd0b6729a7f34667cc7670bf75f4aac44ea5 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 4 Jun 2023 16:12:20 -0400 Subject: [PATCH 062/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 31007a91d1..2fb912c949 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,10 +1,4 @@ Entries: -- author: deltanedas - changes: - - {message: 'Security has reported sightings of Space Ninja in long shifts, be on - the look out for moving shadows or doors opening by themselves.', type: Add} - id: 3439 - time: '2023-04-17T07:33:28.0000000+00:00' - author: ElectroJr changes: - {message: Fixed being able to eat and drink despite wearing a mask., type: Fix} @@ -2904,3 +2898,9 @@ Entries: strongest carp and dragons to expedition dungeons.', type: Tweak} id: 3938 time: '2023-06-04T11:06:13.0000000+00:00' +- author: Equivocateur + changes: + - {message: Nanotrasen has remembered that they had built a therapy room for a reason + and is now allowing psychologists to board Origin Station., type: Fix} + id: 3939 + time: '2023-06-04T20:11:15.0000000+00:00' From b9fb66f00526f6d8fbcb0bd303ccdfb1bc6fd439 Mon Sep 17 00:00:00 2001 From: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> Date: Sun, 4 Jun 2023 16:45:02 -0400 Subject: [PATCH 063/474] Chem guidebook (#17123) * im good at atomizing. welcome to half-finished chem guides. * wagh * e * save work * aa * woweee UI * finishing the last of it * don't actually update the engine :( --------- Co-authored-by: moonheart08 --- .../EntitySystems/ChemistryGuideDataSystem.cs | 29 ++ .../Guidebook/Controls/GuideReagentEmbed.xaml | 58 ++++ .../Controls/GuideReagentEmbed.xaml.cs | 176 ++++++++++ .../Controls/GuideReagentGroupEmbed.xaml | 4 + .../Controls/GuideReagentGroupEmbed.xaml.cs | 60 ++++ .../Commands/DumpReagentGuideText.cs | 47 +++ .../EntitySystems/ChemistryGuideDataSystem.cs | 67 ++++ .../ReactionEffects/AreaReactionEffect.cs | 4 + .../CreateEntityReactionEffect.cs | 6 + .../ExplosionReactionEffect.cs | 6 +- .../SmokeAreaReactionEffect.cs | 1 + .../SolutionTemperatureEffects.cs | 14 +- .../BodyTemperature.cs | 10 +- .../HasTagCondition.cs | 7 + .../MobStateCondition.cs | 6 + .../ReagentEffectConditions/OrganType.cs | 8 + .../ReagentThreshold.cs | 13 + .../SolutionTemperature.cs | 8 + .../ReagentEffectConditions/TotalDamage.cs | 8 + .../ReagentEffects/ActivateArtifact.cs | 4 + .../ReagentEffects/AddToSolutionReaction.cs | 4 + .../Chemistry/ReagentEffects/AdjustAlert.cs | 4 + .../Chemistry/ReagentEffects/AdjustReagent.cs | 22 ++ .../ReagentEffects/AdjustTemperature.cs | 7 + .../ReagentEffects/ChemCleanBoodstream.cs | 5 + .../ReagentEffects/ChemHealEyeDamage.cs | 4 + .../Chemistry/ReagentEffects/ChemVomit.cs | 4 + .../Chemistry/ReagentEffects/CreateGas.cs | 12 + .../Chemistry/ReagentEffects/Drunk.cs | 4 + .../Chemistry/ReagentEffects/Electrocute.cs | 4 + .../Chemistry/ReagentEffects/Emote.cs | 5 + .../ReagentEffects/ExtinguishReaction.cs | 4 + .../ReagentEffects/FlammableReaction.cs | 5 + .../Chemistry/ReagentEffects/HealthChange.cs | 35 ++ .../Chemistry/ReagentEffects/Ignite.cs | 5 + .../Chemistry/ReagentEffects/MakeSentient.cs | 5 + .../ReagentEffects/ModifyBleedAmount.cs | 5 + .../ReagentEffects/ModifyBloodLevel.cs | 5 + .../Chemistry/ReagentEffects/ModifyLungGas.cs | 5 + .../ReagentEffects/MovespeedModifier.cs | 9 + .../Chemistry/ReagentEffects/Oxygenate.cs | 5 + .../Chemistry/ReagentEffects/Paralyze.cs | 6 + .../PlantMetabolism/PlantAdjustAttribute.cs | 3 + .../PlantMetabolism/PlantCryoxadone.cs | 3 + .../PlantMetabolism/PlantDiethylamine.cs | 3 + .../PlantMetabolism/RobustHarvest.cs | 3 + .../Chemistry/ReagentEffects/PopupMessage.cs | 5 + .../ReagentEffects/ResetNarcolepsy.cs | 4 + .../Chemistry/ReagentEffects/SatiateHunger.cs | 8 +- .../Chemistry/ReagentEffects/SatiateThirst.cs | 8 +- .../StatusEffects/GenericStatusEffect.cs | 8 + .../ReagentEffects/StatusEffects/Jitter.cs | 4 + .../ReagentEffects/WashCreamPieReaction.cs | 4 + .../Prototypes/MetabolizerTypePrototype.cs | 3 + .../Chemistry/Reagent/ReagentEffect.cs | 26 +- .../Reagent/ReagentEffectCondition.cs | 8 + .../Chemistry/Reagent/ReagentPrototype.cs | 45 ++- .../SharedChemistryGuideDataSystem.cs | 42 +++ .../ContentLocalizationManager.cs | 94 +++++- .../en-US/guidebook/chemistry/conditions.ftl | 50 +++ .../Locale/en-US/guidebook/chemistry/core.ftl | 16 + .../en-US/guidebook/chemistry/effects.ftl | 316 ++++++++++++++++++ .../guidebook/chemistry/healthchange.ftl | 5 + .../guidebook/chemistry/statuseffects.ftl | 11 + Resources/Locale/en-US/guidebook/guides.ftl | 1 + .../Chemistry/metabolizer_types.yml | 8 + .../Entities/Structures/Dispensers/chem.yml | 3 + .../Prototypes/Guidebook/shiftandcrew.yml | 5 + Resources/Prototypes/Guidebook/ss14.yml | 1 + Resources/ServerInfo/Guidebook/Chemicals.xml | 34 ++ .../Textures/Interface/Misc/beakerlarge.png | Bin 0 -> 239 bytes RobustToolbox | 2 +- 72 files changed, 1411 insertions(+), 12 deletions(-) create mode 100644 Content.Client/Chemistry/EntitySystems/ChemistryGuideDataSystem.cs create mode 100644 Content.Client/Guidebook/Controls/GuideReagentEmbed.xaml create mode 100644 Content.Client/Guidebook/Controls/GuideReagentEmbed.xaml.cs create mode 100644 Content.Client/Guidebook/Controls/GuideReagentGroupEmbed.xaml create mode 100644 Content.Client/Guidebook/Controls/GuideReagentGroupEmbed.xaml.cs create mode 100644 Content.Server/Chemistry/Commands/DumpReagentGuideText.cs create mode 100644 Content.Server/Chemistry/EntitySystems/ChemistryGuideDataSystem.cs create mode 100644 Content.Server/Chemistry/ReactionEffects/SmokeAreaReactionEffect.cs create mode 100644 Content.Shared/Chemistry/SharedChemistryGuideDataSystem.cs create mode 100644 Resources/Locale/en-US/guidebook/chemistry/conditions.ftl create mode 100644 Resources/Locale/en-US/guidebook/chemistry/core.ftl create mode 100644 Resources/Locale/en-US/guidebook/chemistry/effects.ftl create mode 100644 Resources/Locale/en-US/guidebook/chemistry/healthchange.ftl create mode 100644 Resources/Locale/en-US/guidebook/chemistry/statuseffects.ftl create mode 100644 Resources/ServerInfo/Guidebook/Chemicals.xml create mode 100644 Resources/Textures/Interface/Misc/beakerlarge.png diff --git a/Content.Client/Chemistry/EntitySystems/ChemistryGuideDataSystem.cs b/Content.Client/Chemistry/EntitySystems/ChemistryGuideDataSystem.cs new file mode 100644 index 0000000000..736e22f834 --- /dev/null +++ b/Content.Client/Chemistry/EntitySystems/ChemistryGuideDataSystem.cs @@ -0,0 +1,29 @@ +using Content.Shared.Chemistry; + +namespace Content.Client.Chemistry.EntitySystems; + +/// +public sealed class ChemistryGuideDataSystem : SharedChemistryGuideDataSystem +{ + /// + public override void Initialize() + { + base.Initialize(); + + SubscribeNetworkEvent(OnReceiveRegistryUpdate); + } + + private void OnReceiveRegistryUpdate(ReagentGuideRegistryChangedEvent message) + { + var data = message.Changeset; + foreach (var remove in data.Removed) + { + Registry.Remove(remove); + } + + foreach (var (key, val) in data.GuideEntries) + { + Registry[key] = val; + } + } +} diff --git a/Content.Client/Guidebook/Controls/GuideReagentEmbed.xaml b/Content.Client/Guidebook/Controls/GuideReagentEmbed.xaml new file mode 100644 index 0000000000..e8a36d57f4 --- /dev/null +++ b/Content.Client/Guidebook/Controls/GuideReagentEmbed.xaml @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Content.Client/Guidebook/Controls/GuideReagentEmbed.xaml.cs b/Content.Client/Guidebook/Controls/GuideReagentEmbed.xaml.cs new file mode 100644 index 0000000000..4b832be02b --- /dev/null +++ b/Content.Client/Guidebook/Controls/GuideReagentEmbed.xaml.cs @@ -0,0 +1,176 @@ +using System.Diagnostics.CodeAnalysis; +using System.Linq; +using Content.Client.Chemistry.EntitySystems; +using Content.Client.Guidebook.Richtext; +using Content.Client.Message; +using Content.Shared.Chemistry.Reaction; +using Content.Shared.Chemistry.Reagent; +using JetBrains.Annotations; +using Robust.Client.AutoGenerated; +using Robust.Client.Graphics; +using Robust.Client.UserInterface; +using Robust.Client.UserInterface.Controls; +using Robust.Client.UserInterface.XAML; +using Robust.Shared.Prototypes; +using Robust.Shared.Utility; + +namespace Content.Client.Guidebook.Controls; + +/// +/// Control for embedding a reagent into a guidebook. +/// +[UsedImplicitly, GenerateTypedNameReferences] +public sealed partial class GuideReagentEmbed : BoxContainer, IDocumentTag +{ + [Dependency] private readonly IEntitySystemManager _systemManager = default!; + [Dependency] private readonly IPrototypeManager _prototype = default!; + + private readonly ChemistryGuideDataSystem _chemistryGuideData; + + public GuideReagentEmbed() + { + RobustXamlLoader.Load(this); + IoCManager.InjectDependencies(this); + _chemistryGuideData = _systemManager.GetEntitySystem(); + MouseFilter = MouseFilterMode.Stop; + } + + public GuideReagentEmbed(string reagent) : this() + { + GenerateControl(_prototype.Index(reagent)); + } + + public GuideReagentEmbed(ReagentPrototype reagent) : this() + { + GenerateControl(reagent); + } + + public bool TryParseTag(Dictionary args, [NotNullWhen(true)] out Control? control) + { + control = null; + if (!args.TryGetValue("Reagent", out var id)) + { + Logger.Error("Reagent embed tag is missing reagent prototype argument"); + return false; + } + + if (!_prototype.TryIndex(id, out var reagent)) + { + Logger.Error($"Specified reagent prototype \"{id}\" is not a valid reagent prototype"); + return false; + } + + GenerateControl(reagent); + + control = this; + return true; + } + + private void GenerateControl(ReagentPrototype reagent) + { + NameBackground.PanelOverride = new StyleBoxFlat + { + BackgroundColor = reagent.SubstanceColor + }; + + var textColor = Color.ToHsl(reagent.SubstanceColor).Z > 0.45 + ? Color.Black + : Color.White; + + ReagentName.SetMarkup(Loc.GetString("guidebook-reagent-name", + ("color", textColor), ("name", reagent.LocalizedName))); + + #region Recipe + // by default, we assume that the reaction has the same ID as the reagent. + // if this isn't true, we'll loop through reactions. + if (!_prototype.TryIndex(reagent.ID, out var reactionPrototype)) + { + reactionPrototype = _prototype.EnumeratePrototypes() + .FirstOrDefault(p => p.Products.ContainsKey(reagent.ID)); + } + + if (reactionPrototype != null) + { + var reactantMsg = new FormattedMessage(); + var reactantsCount = reactionPrototype.Reactants.Count; + var i = 0; + foreach (var (product, reactant) in reactionPrototype.Reactants) + { + reactantMsg.AddMarkup(Loc.GetString("guidebook-reagent-recipes-reagent-display", + ("reagent", _prototype.Index(product).LocalizedName), ("ratio", reactant.Amount))); + i++; + if (i < reactantsCount) + reactantMsg.PushNewline(); + } + reactantMsg.Pop(); + ReactantsLabel.SetMessage(reactantMsg); + + var productMsg = new FormattedMessage(); + var productCount = reactionPrototype.Products.Count; + var u = 0; + foreach (var (product, ratio) in reactionPrototype.Products) + { + productMsg.AddMarkup(Loc.GetString("guidebook-reagent-recipes-reagent-display", + ("reagent", _prototype.Index(product).LocalizedName), ("ratio", ratio))); + u++; + if (u < productCount) + productMsg.PushNewline(); + } + productMsg.Pop(); + ProductsLabel.SetMessage(productMsg); + } + else + { + RecipesContainer.Visible = false; + } + #endregion + + #region Effects + if (_chemistryGuideData.ReagentGuideRegistry.TryGetValue(reagent.ID, out var guideEntryRegistry) && + guideEntryRegistry.GuideEntries != null && + guideEntryRegistry.GuideEntries.Values.Any(pair => pair.EffectDescriptions.Any())) + { + EffectsDescriptionContainer.Children.Clear(); + foreach (var (group, effect) in guideEntryRegistry.GuideEntries) + { + if (!effect.EffectDescriptions.Any()) + continue; + + var groupLabel = new RichTextLabel(); + groupLabel.SetMarkup(Loc.GetString("guidebook-reagent-effects-metabolism-group-rate", + ("group", group), ("rate", effect.MetabolismRate))); + var descriptionLabel = new RichTextLabel + { + Margin = new Thickness(25, 0, 10, 0) + }; + + var descMsg = new FormattedMessage(); + var descriptionsCount = effect.EffectDescriptions.Length; + var i = 0; + foreach (var effectString in effect.EffectDescriptions) + { + descMsg.AddMarkup(effectString); + i++; + if (i < descriptionsCount) + descMsg.PushNewline(); + } + descriptionLabel.SetMessage(descMsg); + + EffectsDescriptionContainer.AddChild(groupLabel); + EffectsDescriptionContainer.AddChild(descriptionLabel); + } + } + else + { + EffectsContainer.Visible = false; + } + #endregion + + FormattedMessage description = new(); + description.AddText(reagent.LocalizedDescription); + description.PushNewline(); + description.AddText(Loc.GetString("guidebook-reagent-physical-description", + ("description", reagent.LocalizedPhysicalDescription))); + ReagentDescription.SetMessage(description); + } +} diff --git a/Content.Client/Guidebook/Controls/GuideReagentGroupEmbed.xaml b/Content.Client/Guidebook/Controls/GuideReagentGroupEmbed.xaml new file mode 100644 index 0000000000..da671adaa7 --- /dev/null +++ b/Content.Client/Guidebook/Controls/GuideReagentGroupEmbed.xaml @@ -0,0 +1,4 @@ + + + diff --git a/Content.Client/Guidebook/Controls/GuideReagentGroupEmbed.xaml.cs b/Content.Client/Guidebook/Controls/GuideReagentGroupEmbed.xaml.cs new file mode 100644 index 0000000000..0c9356eccb --- /dev/null +++ b/Content.Client/Guidebook/Controls/GuideReagentGroupEmbed.xaml.cs @@ -0,0 +1,60 @@ +using System.Diagnostics.CodeAnalysis; +using System.Linq; +using Content.Client.Guidebook.Richtext; +using Content.Shared.Chemistry.Reagent; +using JetBrains.Annotations; +using Robust.Client.AutoGenerated; +using Robust.Client.UserInterface; +using Robust.Client.UserInterface.Controls; +using Robust.Client.UserInterface.XAML; +using Robust.Shared.Prototypes; + +namespace Content.Client.Guidebook.Controls; + +/// +/// Control for embedding a reagent into a guidebook. +/// +[UsedImplicitly, GenerateTypedNameReferences] +public sealed partial class GuideReagentGroupEmbed : BoxContainer, IDocumentTag +{ + [Dependency] private readonly IPrototypeManager _prototype = default!; + + public GuideReagentGroupEmbed() + { + RobustXamlLoader.Load(this); + IoCManager.InjectDependencies(this); + MouseFilter = MouseFilterMode.Stop; + } + + public GuideReagentGroupEmbed(string group) : this() + { + var prototypes = _prototype.EnumeratePrototypes() + .Where(p => p.Group.Equals(group)).OrderBy(p => p.LocalizedName); + foreach (var reagent in prototypes) + { + var embed = new GuideReagentEmbed(reagent); + GroupContainer.AddChild(embed); + } + } + + public bool TryParseTag(Dictionary args, [NotNullWhen(true)] out Control? control) + { + control = null; + if (!args.TryGetValue("Group", out var group)) + { + Logger.Error("Reagent group embed tag is missing group argument"); + return false; + } + + var prototypes = _prototype.EnumeratePrototypes() + .Where(p => p.Group.Equals(group)).OrderBy(p => p.LocalizedName); + foreach (var reagent in prototypes) + { + var embed = new GuideReagentEmbed(reagent); + GroupContainer.AddChild(embed); + } + + control = this; + return true; + } +} diff --git a/Content.Server/Chemistry/Commands/DumpReagentGuideText.cs b/Content.Server/Chemistry/Commands/DumpReagentGuideText.cs new file mode 100644 index 0000000000..70a79254d6 --- /dev/null +++ b/Content.Server/Chemistry/Commands/DumpReagentGuideText.cs @@ -0,0 +1,47 @@ +using Content.Server.Administration; +using Content.Shared.Administration; +using Content.Shared.Chemistry.Reagent; +using Robust.Shared.Console; +using Robust.Shared.Prototypes; + +namespace Content.Server.Chemistry.Commands; + +[AdminCommand(AdminFlags.Debug)] +public sealed class DumpReagentGuideText : IConsoleCommand +{ + [Dependency] private readonly IPrototypeManager _prototype = default!; + [Dependency] private readonly IEntitySystemManager _entSys = default!; + + public string Command => "dumpreagentguidetext"; + public string Description => "Dumps the guidebook text for a reagent to the console"; + public string Help => "dumpreagentguidetext "; + + public void Execute(IConsoleShell shell, string argStr, string[] args) + { + if (args.Length != 1) + { + shell.WriteError("Must have only 1 argument"); + return; + } + + if (!_prototype.TryIndex(args[0], out var reagent)) + { + shell.WriteError($"Invalid prototype: {args[0]}"); + return; + } + + if (reagent.Metabolisms is null) + { + shell.WriteLine("Nothing to dump."); + return; + } + + foreach (var (_, entry) in reagent.Metabolisms) + { + foreach (var effect in entry.Effects) + { + shell.WriteLine(effect.GuidebookEffectDescription(_prototype, _entSys) ?? $"[skipped effect of type {effect.GetType()}]"); + } + } + } +} diff --git a/Content.Server/Chemistry/EntitySystems/ChemistryGuideDataSystem.cs b/Content.Server/Chemistry/EntitySystems/ChemistryGuideDataSystem.cs new file mode 100644 index 0000000000..8cbdd82f07 --- /dev/null +++ b/Content.Server/Chemistry/EntitySystems/ChemistryGuideDataSystem.cs @@ -0,0 +1,67 @@ +using Content.Shared.Chemistry; +using Content.Shared.Chemistry.Reagent; +using Robust.Server.Player; +using Robust.Shared.Enums; +using Robust.Shared.Prototypes; + +namespace Content.Server.Chemistry.EntitySystems; + + +public sealed class ChemistryGuideDataSystem : SharedChemistryGuideDataSystem +{ + [Dependency] private readonly IPlayerManager _player = default!; + + /// + public override void Initialize() + { + base.Initialize(); + + PrototypeManager.PrototypesReloaded += PrototypeManagerReload; + + _player.PlayerStatusChanged += OnPlayerStatusChanged; + + InitializeServerRegistry(); + } + + private void InitializeServerRegistry() + { + var changeset = new ReagentGuideChangeset(new Dictionary(), new HashSet()); + foreach (var proto in PrototypeManager.EnumeratePrototypes()) + { + var entry = new ReagentGuideEntry(proto, PrototypeManager, EntityManager.EntitySysManager); + changeset.GuideEntries.Add(proto.ID, entry); + Registry[proto.ID] = entry; + } + + var ev = new ReagentGuideRegistryChangedEvent(changeset); + RaiseNetworkEvent(ev); + } + + private void OnPlayerStatusChanged(object? sender, SessionStatusEventArgs e) + { + if (e.NewStatus != SessionStatus.Connected) + return; + + var sendEv = new ReagentGuideRegistryChangedEvent(new ReagentGuideChangeset(Registry, new HashSet())); + RaiseNetworkEvent(sendEv, e.Session); + } + + private void PrototypeManagerReload(PrototypesReloadedEventArgs obj) + { + if (!obj.ByType.TryGetValue(typeof(ReagentPrototype), out var reagents)) + return; + + var changeset = new ReagentGuideChangeset(new Dictionary(), new HashSet()); + + foreach (var (id, proto) in reagents.Modified) + { + var reagentProto = (ReagentPrototype) proto; + var entry = new ReagentGuideEntry(reagentProto, PrototypeManager, EntityManager.EntitySysManager); + changeset.GuideEntries.Add(id, entry); + Registry[id] = entry; + } + + var ev = new ReagentGuideRegistryChangedEvent(changeset); + RaiseNetworkEvent(ev); + } +} diff --git a/Content.Server/Chemistry/ReactionEffects/AreaReactionEffect.cs b/Content.Server/Chemistry/ReactionEffects/AreaReactionEffect.cs index 8db6ef2f93..8c1c3f4835 100644 --- a/Content.Server/Chemistry/ReactionEffects/AreaReactionEffect.cs +++ b/Content.Server/Chemistry/ReactionEffects/AreaReactionEffect.cs @@ -45,6 +45,10 @@ public sealed class AreaReactionEffect : ReagentEffect [DataField("sound", required: true)] private SoundSpecifier _sound = default!; public override bool ShouldLog => true; + + protected override string ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => Loc.GetString("reagent-effect-guidebook-missing"); + public override LogImpact LogImpact => LogImpact.High; public override void Effect(ReagentEffectArgs args) diff --git a/Content.Server/Chemistry/ReactionEffects/CreateEntityReactionEffect.cs b/Content.Server/Chemistry/ReactionEffects/CreateEntityReactionEffect.cs index 52a00399c4..e87b4ca771 100644 --- a/Content.Server/Chemistry/ReactionEffects/CreateEntityReactionEffect.cs +++ b/Content.Server/Chemistry/ReactionEffects/CreateEntityReactionEffect.cs @@ -19,6 +19,12 @@ public sealed class CreateEntityReactionEffect : ReagentEffect [DataField("number")] public uint Number = 1; + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => Loc.GetString("reagent-effect-guidebook-create-entity-reaction-effect", + ("chance", Probability), + ("entname", IoCManager.Resolve().Index(Entity).Name), + ("amount", Number)); + public override void Effect(ReagentEffectArgs args) { var transform = args.EntityManager.GetComponent(args.SolutionEntity); diff --git a/Content.Server/Chemistry/ReactionEffects/ExplosionReactionEffect.cs b/Content.Server/Chemistry/ReactionEffects/ExplosionReactionEffect.cs index 0230949bad..7b5c0bfce7 100644 --- a/Content.Server/Chemistry/ReactionEffects/ExplosionReactionEffect.cs +++ b/Content.Server/Chemistry/ReactionEffects/ExplosionReactionEffect.cs @@ -3,6 +3,7 @@ using Content.Shared.Chemistry.Reagent; using Content.Shared.Database; using Content.Shared.Explosion; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Server.Chemistry.ReactionEffects @@ -24,7 +25,7 @@ public sealed class ExplosionReactionEffect : ReagentEffect [DataField("maxIntensity")] [JsonIgnore] public float MaxIntensity = 5; - + /// /// How quickly intensity drops off as you move away from the epicenter /// @@ -51,6 +52,9 @@ public sealed class ExplosionReactionEffect : ReagentEffect public float IntensityPerUnit = 1; public override bool ShouldLog => true; + + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => Loc.GetString("reagent-effect-guidebook-explosion-reaction-effect", ("chance", Probability)); public override LogImpact LogImpact => LogImpact.High; public override void Effect(ReagentEffectArgs args) diff --git a/Content.Server/Chemistry/ReactionEffects/SmokeAreaReactionEffect.cs b/Content.Server/Chemistry/ReactionEffects/SmokeAreaReactionEffect.cs new file mode 100644 index 0000000000..5f282702bb --- /dev/null +++ b/Content.Server/Chemistry/ReactionEffects/SmokeAreaReactionEffect.cs @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Content.Server/Chemistry/ReactionEffects/SolutionTemperatureEffects.cs b/Content.Server/Chemistry/ReactionEffects/SolutionTemperatureEffects.cs index 4d30ec4643..d768935466 100644 --- a/Content.Server/Chemistry/ReactionEffects/SolutionTemperatureEffects.cs +++ b/Content.Server/Chemistry/ReactionEffects/SolutionTemperatureEffects.cs @@ -16,6 +16,10 @@ public sealed class SetSolutionTemperatureEffect : ReagentEffect /// [DataField("temperature", required: true)] private float _temperature; + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => Loc.GetString("reagent-effect-guidebook-set-solution-temperature-effect", + ("chance", Probability), ("temperature", _temperature)); + public override void Effect(ReagentEffectArgs args) { var solution = args.Source; @@ -52,6 +56,10 @@ public sealed class AdjustSolutionTemperatureEffect : ReagentEffect /// [DataField("scaled")] private bool _scaled; + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => Loc.GetString("reagent-effect-guidebook-adjust-solution-temperature-effect", + ("chance", Probability), ("deltasign", MathF.Sign(_delta)), ("mintemp", _minTemp), ("maxtemp", _maxTemp)); + public override void Effect(ReagentEffectArgs args) { var solution = args.Source; @@ -101,11 +109,15 @@ public override void Effect(ReagentEffectArgs args) var heatCap = solution.GetHeatCapacity(null); var deltaT = _scaled - ? _delta / heatCap * (float) args.Quantity + ? _delta / heatCap * (float) args.Quantity : _delta / heatCap; solution.Temperature = Math.Clamp(solution.Temperature + deltaT, _minTemp, _maxTemp); } + + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => Loc.GetString("reagent-effect-guidebook-adjust-solution-temperature-effect", + ("chance", Probability), ("deltasign", MathF.Sign(_delta)), ("mintemp", _minTemp), ("maxtemp", _maxTemp)); } } diff --git a/Content.Server/Chemistry/ReagentEffectConditions/BodyTemperature.cs b/Content.Server/Chemistry/ReagentEffectConditions/BodyTemperature.cs index 313d1eb629..057d2ebdb8 100644 --- a/Content.Server/Chemistry/ReagentEffectConditions/BodyTemperature.cs +++ b/Content.Server/Chemistry/ReagentEffectConditions/BodyTemperature.cs @@ -1,5 +1,6 @@ using Content.Server.Temperature.Components; using Content.Shared.Chemistry.Reagent; +using Robust.Shared.Prototypes; namespace Content.Server.Chemistry.ReagentEffectConditions { @@ -13,7 +14,7 @@ public sealed class Temperature : ReagentEffectCondition public float Min = 0; [DataField("max")] - public float Max = float.MaxValue; + public float Max = float.PositiveInfinity; public override bool Condition(ReagentEffectArgs args) { if (args.EntityManager.TryGetComponent(args.SolutionEntity, out TemperatureComponent? temp)) @@ -24,5 +25,12 @@ public override bool Condition(ReagentEffectArgs args) return false; } + + public override string GuidebookExplanation(IPrototypeManager prototype) + { + return Loc.GetString("reagent-effect-condition-guidebook-body-temperature", + ("max", float.IsPositiveInfinity(Max) ? (float) int.MaxValue : Max), + ("min", Min)); + } } } diff --git a/Content.Server/Chemistry/ReagentEffectConditions/HasTagCondition.cs b/Content.Server/Chemistry/ReagentEffectConditions/HasTagCondition.cs index 2c57bda77e..dccf4f33eb 100644 --- a/Content.Server/Chemistry/ReagentEffectConditions/HasTagCondition.cs +++ b/Content.Server/Chemistry/ReagentEffectConditions/HasTagCondition.cs @@ -1,6 +1,7 @@ using Content.Shared.Chemistry.Reagent; using Content.Shared.Tag; using JetBrains.Annotations; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Server.Chemistry.ReagentEffectConditions; @@ -21,4 +22,10 @@ public override bool Condition(ReagentEffectArgs args) return false; } + + public override string GuidebookExplanation(IPrototypeManager prototype) + { + // this should somehow be made (much) nicer. + return Loc.GetString("reagent-effect-condition-guidebook-has-tag", ("tag", Tag), ("invert", Invert)); + } } diff --git a/Content.Server/Chemistry/ReagentEffectConditions/MobStateCondition.cs b/Content.Server/Chemistry/ReagentEffectConditions/MobStateCondition.cs index 45d8ddda07..b76e8fac3c 100644 --- a/Content.Server/Chemistry/ReagentEffectConditions/MobStateCondition.cs +++ b/Content.Server/Chemistry/ReagentEffectConditions/MobStateCondition.cs @@ -1,6 +1,7 @@ using Content.Shared.Chemistry.Reagent; using Content.Shared.Mobs; using Content.Shared.Mobs.Components; +using Robust.Shared.Prototypes; namespace Content.Server.Chemistry.ReagentEffectConditions { @@ -21,6 +22,11 @@ public override bool Condition(ReagentEffectArgs args) return false; } + + public override string GuidebookExplanation(IPrototypeManager prototype) + { + return Loc.GetString("reagent-effect-condition-guidebook-mob-state-condition", ("state", mobstate)); + } } } diff --git a/Content.Server/Chemistry/ReagentEffectConditions/OrganType.cs b/Content.Server/Chemistry/ReagentEffectConditions/OrganType.cs index d494b07089..cbb0ec2f52 100644 --- a/Content.Server/Chemistry/ReagentEffectConditions/OrganType.cs +++ b/Content.Server/Chemistry/ReagentEffectConditions/OrganType.cs @@ -1,6 +1,7 @@ using Content.Server.Body.Components; using Content.Shared.Body.Prototypes; using Content.Shared.Chemistry.Reagent; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Server.Chemistry.ReagentEffectConditions @@ -30,5 +31,12 @@ public override bool Condition(ReagentEffectArgs args) return ShouldHave; return !ShouldHave; } + + public override string GuidebookExplanation(IPrototypeManager prototype) + { + return Loc.GetString("reagent-effect-condition-guidebook-organ-type", + ("name", prototype.Index(Type).Name), + ("shouldhave", ShouldHave)); + } } } diff --git a/Content.Server/Chemistry/ReagentEffectConditions/ReagentThreshold.cs b/Content.Server/Chemistry/ReagentEffectConditions/ReagentThreshold.cs index c97b29a94c..befefd1f53 100644 --- a/Content.Server/Chemistry/ReagentEffectConditions/ReagentThreshold.cs +++ b/Content.Server/Chemistry/ReagentEffectConditions/ReagentThreshold.cs @@ -1,5 +1,6 @@ using Content.Shared.Chemistry.Reagent; using Content.Shared.FixedPoint; +using Robust.Shared.Prototypes; namespace Content.Server.Chemistry.ReagentEffectConditions { @@ -35,5 +36,17 @@ public override bool Condition(ReagentEffectArgs args) return quant >= Min && quant <= Max; } + + public override string GuidebookExplanation(IPrototypeManager prototype) + { + ReagentPrototype? reagentProto = null; + if (Reagent is not null) + prototype.TryIndex(Reagent, out reagentProto); + + return Loc.GetString("reagent-effect-condition-guidebook-reagent-threshold", + ("reagent", reagentProto?.LocalizedName ?? "this reagent"), + ("max", Max == FixedPoint2.MaxValue ? (float) int.MaxValue : Max.Float()), + ("min", Min.Float())); + } } } diff --git a/Content.Server/Chemistry/ReagentEffectConditions/SolutionTemperature.cs b/Content.Server/Chemistry/ReagentEffectConditions/SolutionTemperature.cs index da646fb1c7..6b370fb9a4 100644 --- a/Content.Server/Chemistry/ReagentEffectConditions/SolutionTemperature.cs +++ b/Content.Server/Chemistry/ReagentEffectConditions/SolutionTemperature.cs @@ -1,4 +1,5 @@ using Content.Shared.Chemistry.Reagent; +using Robust.Shared.Prototypes; namespace Content.Server.Chemistry.ReagentEffectConditions { @@ -24,5 +25,12 @@ public override bool Condition(ReagentEffectArgs args) return true; } + + public override string GuidebookExplanation(IPrototypeManager prototype) + { + return Loc.GetString("reagent-effect-condition-guidebook-solution-temperature", + ("max", float.IsPositiveInfinity(Max) ? (float) int.MaxValue : Max), + ("min", Min)); + } } } diff --git a/Content.Server/Chemistry/ReagentEffectConditions/TotalDamage.cs b/Content.Server/Chemistry/ReagentEffectConditions/TotalDamage.cs index 4758bccea5..8c62dd7ce0 100644 --- a/Content.Server/Chemistry/ReagentEffectConditions/TotalDamage.cs +++ b/Content.Server/Chemistry/ReagentEffectConditions/TotalDamage.cs @@ -1,6 +1,7 @@ using Content.Shared.Chemistry.Reagent; using Content.Shared.Damage; using Content.Shared.FixedPoint; +using Robust.Shared.Prototypes; namespace Content.Server.Chemistry.ReagentEffectConditions { @@ -23,5 +24,12 @@ public override bool Condition(ReagentEffectArgs args) return false; } + + public override string GuidebookExplanation(IPrototypeManager prototype) + { + return Loc.GetString("reagent-effect-condition-guidebook-total-damage", + ("max", Max == FixedPoint2.MaxValue ? (float) int.MaxValue : Max.Float()), + ("min", Min.Float())); + } } } diff --git a/Content.Server/Chemistry/ReagentEffects/ActivateArtifact.cs b/Content.Server/Chemistry/ReagentEffects/ActivateArtifact.cs index 04ae4ca6f5..bd89e8ec45 100644 --- a/Content.Server/Chemistry/ReagentEffects/ActivateArtifact.cs +++ b/Content.Server/Chemistry/ReagentEffects/ActivateArtifact.cs @@ -1,5 +1,6 @@ using Content.Server.Xenoarchaeology.XenoArtifacts; using Content.Shared.Chemistry.Reagent; +using Robust.Shared.Prototypes; namespace Content.Server.Chemistry.ReagentEffects; @@ -10,4 +11,7 @@ public override void Effect(ReagentEffectArgs args) var artifact = args.EntityManager.EntitySysManager.GetEntitySystem(); artifact.TryActivateArtifact(args.SolutionEntity); } + + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) => + Loc.GetString("reagent-effect-guidebook-activate-artifact", ("chance", Probability)); } diff --git a/Content.Server/Chemistry/ReagentEffects/AddToSolutionReaction.cs b/Content.Server/Chemistry/ReagentEffects/AddToSolutionReaction.cs index f687f19e7d..5ec0b2a08b 100644 --- a/Content.Server/Chemistry/ReagentEffects/AddToSolutionReaction.cs +++ b/Content.Server/Chemistry/ReagentEffects/AddToSolutionReaction.cs @@ -1,6 +1,7 @@ using Content.Server.Chemistry.EntitySystems; using Content.Shared.Chemistry.Reagent; using JetBrains.Annotations; +using Robust.Shared.Prototypes; namespace Content.Server.Chemistry.ReagentEffects { @@ -24,5 +25,8 @@ public override void Effect(ReagentEffectArgs args) .TryAddReagent(args.SolutionEntity, solutionContainer, args.Reagent.ID, args.Quantity, out var accepted)) args.Source?.RemoveReagent(args.Reagent.ID, accepted); } + + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) => + Loc.GetString("reagent-effect-guidebook-missing", ("chance", Probability)); } } diff --git a/Content.Server/Chemistry/ReagentEffects/AdjustAlert.cs b/Content.Server/Chemistry/ReagentEffects/AdjustAlert.cs index 44f33a6bb5..acae2e0153 100644 --- a/Content.Server/Chemistry/ReagentEffects/AdjustAlert.cs +++ b/Content.Server/Chemistry/ReagentEffects/AdjustAlert.cs @@ -1,5 +1,6 @@ using Content.Shared.Alert; using Content.Shared.Chemistry.Reagent; +using Robust.Shared.Prototypes; using Robust.Shared.Timing; namespace Content.Server.Chemistry.ReagentEffects; @@ -18,6 +19,9 @@ public sealed class AdjustAlert : ReagentEffect [DataField("time")] public float Time; + //JUSTIFICATION: This just changes some visuals, doesn't need to be documented. + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) => null; + public override void Effect(ReagentEffectArgs args) { var alertSys = EntitySystem.Get(); diff --git a/Content.Server/Chemistry/ReagentEffects/AdjustReagent.cs b/Content.Server/Chemistry/ReagentEffects/AdjustReagent.cs index 7e716928ec..c29459b30f 100644 --- a/Content.Server/Chemistry/ReagentEffects/AdjustReagent.cs +++ b/Content.Server/Chemistry/ReagentEffects/AdjustReagent.cs @@ -60,5 +60,27 @@ public override void Effect(ReagentEffectArgs args) } } } + + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + { + if (Reagent is not null && prototype.TryIndex(Reagent, out ReagentPrototype? reagentProto)) + { + return Loc.GetString("reagent-effect-guidebook-adjust-reagent-reagent", + ("chance", Probability), + ("deltasign", MathF.Sign(Amount.Float())), + ("reagent", reagentProto.LocalizedName), + ("amount", MathF.Abs(Amount.Float()))); + } + else if (Group is not null && prototype.TryIndex(Group, out MetabolismGroupPrototype? groupProto)) + { + return Loc.GetString("reagent-effect-guidebook-adjust-reagent-group", + ("chance", Probability), + ("deltasign", MathF.Sign(Amount.Float())), + ("group", groupProto.ID), + ("amount", MathF.Abs(Amount.Float()))); + } + + throw new NotImplementedException(); + } } } diff --git a/Content.Server/Chemistry/ReagentEffects/AdjustTemperature.cs b/Content.Server/Chemistry/ReagentEffects/AdjustTemperature.cs index 45c07fa2a3..b96d2a0469 100644 --- a/Content.Server/Chemistry/ReagentEffects/AdjustTemperature.cs +++ b/Content.Server/Chemistry/ReagentEffects/AdjustTemperature.cs @@ -1,6 +1,7 @@ using Content.Server.Temperature.Components; using Content.Server.Temperature.Systems; using Content.Shared.Chemistry.Reagent; +using Robust.Shared.Prototypes; namespace Content.Server.Chemistry.ReagentEffects { @@ -9,6 +10,12 @@ public sealed class AdjustTemperature : ReagentEffect [DataField("amount")] public float Amount; + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => Loc.GetString("reagent-effect-guidebook-adjust-temperature", + ("chance", Probability), + ("deltasign", MathF.Sign(Amount)), + ("amount", MathF.Abs(Amount))); + public override void Effect(ReagentEffectArgs args) { if (args.EntityManager.TryGetComponent(args.SolutionEntity, out TemperatureComponent? temp)) diff --git a/Content.Server/Chemistry/ReagentEffects/ChemCleanBoodstream.cs b/Content.Server/Chemistry/ReagentEffects/ChemCleanBoodstream.cs index 376398d7b7..132315663f 100644 --- a/Content.Server/Chemistry/ReagentEffects/ChemCleanBoodstream.cs +++ b/Content.Server/Chemistry/ReagentEffects/ChemCleanBoodstream.cs @@ -1,6 +1,7 @@ using Content.Shared.Chemistry.Reagent; using JetBrains.Annotations; using Content.Server.Body.Systems; +using Robust.Shared.Prototypes; namespace Content.Server.Chemistry.ReactionEffects { @@ -12,6 +13,10 @@ public sealed class ChemCleanBloodstream : ReagentEffect { [DataField("cleanseRate")] public float CleanseRate = 3.0f; + + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => Loc.GetString("reagent-effect-guidebook-chem-clean-bloodstream", ("chance", Probability)); + public override void Effect(ReagentEffectArgs args) { if (args.Source == null || args.Reagent == null) diff --git a/Content.Server/Chemistry/ReagentEffects/ChemHealEyeDamage.cs b/Content.Server/Chemistry/ReagentEffects/ChemHealEyeDamage.cs index 0826e99110..f95c52ba40 100644 --- a/Content.Server/Chemistry/ReagentEffects/ChemHealEyeDamage.cs +++ b/Content.Server/Chemistry/ReagentEffects/ChemHealEyeDamage.cs @@ -2,6 +2,7 @@ using Content.Shared.Eye.Blinding; using Content.Shared.Eye.Blinding.Systems; using JetBrains.Annotations; +using Robust.Shared.Prototypes; namespace Content.Server.Chemistry.ReagentEffects { @@ -17,6 +18,9 @@ public sealed class ChemHealEyeDamage : ReagentEffect [DataField("amount")] public int Amount = -1; + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => Loc.GetString("reagent-effect-guidebook-cure-eye-damage", ("chance", Probability), ("deltasign", MathF.Sign(Amount))); + public override void Effect(ReagentEffectArgs args) { if (args.Scale != 1f) // huh? diff --git a/Content.Server/Chemistry/ReagentEffects/ChemVomit.cs b/Content.Server/Chemistry/ReagentEffects/ChemVomit.cs index 8e923e06bf..74ecfefff4 100644 --- a/Content.Server/Chemistry/ReagentEffects/ChemVomit.cs +++ b/Content.Server/Chemistry/ReagentEffects/ChemVomit.cs @@ -1,6 +1,7 @@ using Content.Shared.Chemistry.Reagent; using Content.Server.Medical; using JetBrains.Annotations; +using Robust.Shared.Prototypes; namespace Content.Server.Chemistry.ReagentEffects { @@ -17,6 +18,9 @@ public sealed class ChemVomit : ReagentEffect [DataField("hungerAmount")] public float HungerAmount = -40f; + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => Loc.GetString("reagent-effect-guidebook-chem-vomit", ("chance", Probability)); + public override void Effect(ReagentEffectArgs args) { if (args.Scale != 1f) diff --git a/Content.Server/Chemistry/ReagentEffects/CreateGas.cs b/Content.Server/Chemistry/ReagentEffects/CreateGas.cs index a2a0c61124..0778c0727f 100644 --- a/Content.Server/Chemistry/ReagentEffects/CreateGas.cs +++ b/Content.Server/Chemistry/ReagentEffects/CreateGas.cs @@ -2,6 +2,7 @@ using Content.Shared.Atmos; using Content.Shared.Chemistry.Reagent; using Content.Shared.Database; +using Robust.Shared.Prototypes; namespace Content.Server.Chemistry.ReagentEffects; @@ -17,6 +18,17 @@ public sealed class CreateGas : ReagentEffect public float Multiplier = 3f; public override bool ShouldLog => true; + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + { + var atmos = entSys.GetEntitySystem(); + var gasProto = atmos.GetGas(Gas); + + return Loc.GetString("reagent-effect-guidebook-create-gas", + ("chance", Probability), + ("moles", Multiplier), + ("gas", gasProto.Name)); + } + public override LogImpact LogImpact => LogImpact.High; public override void Effect(ReagentEffectArgs args) diff --git a/Content.Server/Chemistry/ReagentEffects/Drunk.cs b/Content.Server/Chemistry/ReagentEffects/Drunk.cs index c5d24e362d..dedf984b2b 100644 --- a/Content.Server/Chemistry/ReagentEffects/Drunk.cs +++ b/Content.Server/Chemistry/ReagentEffects/Drunk.cs @@ -1,5 +1,6 @@ using Content.Shared.Chemistry.Reagent; using Content.Shared.Drunk; +using Robust.Shared.Prototypes; namespace Content.Server.Chemistry.ReagentEffects; @@ -17,6 +18,9 @@ public sealed class Drunk : ReagentEffect [DataField("slurSpeech")] public bool SlurSpeech = true; + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => Loc.GetString("reagent-effect-guidebook-drunk", ("chance", Probability)); + public override void Effect(ReagentEffectArgs args) { var boozePower = BoozePower; diff --git a/Content.Server/Chemistry/ReagentEffects/Electrocute.cs b/Content.Server/Chemistry/ReagentEffects/Electrocute.cs index 08b2df966e..b6d2d58e28 100644 --- a/Content.Server/Chemistry/ReagentEffects/Electrocute.cs +++ b/Content.Server/Chemistry/ReagentEffects/Electrocute.cs @@ -1,5 +1,6 @@ using Content.Server.Electrocution; using Content.Shared.Chemistry.Reagent; +using Robust.Shared.Prototypes; namespace Content.Server.Chemistry.ReagentEffects; @@ -14,6 +15,9 @@ public sealed class Electrocute : ReagentEffect /// [DataField("refresh")] public bool Refresh = true; + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => Loc.GetString("reagent-effect-guidebook-electrocute", ("chance", Probability), ("time", ElectrocuteTime)); + public override bool ShouldLog => true; public override void Effect(ReagentEffectArgs args) diff --git a/Content.Server/Chemistry/ReagentEffects/Emote.cs b/Content.Server/Chemistry/ReagentEffects/Emote.cs index fa3cf937d0..753435a599 100644 --- a/Content.Server/Chemistry/ReagentEffects/Emote.cs +++ b/Content.Server/Chemistry/ReagentEffects/Emote.cs @@ -2,6 +2,7 @@ using Content.Shared.Chat.Prototypes; using Content.Shared.Chemistry.Reagent; using JetBrains.Annotations; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Server.Chemistry.ReagentEffects; @@ -18,6 +19,10 @@ public sealed class Emote : ReagentEffect [DataField("showInChat")] public bool ShowInChat; + // JUSTIFICATION: Emoting is flavor, so same reason popup messages are not in here. + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => null; + public override void Effect(ReagentEffectArgs args) { if (EmoteId == null) diff --git a/Content.Server/Chemistry/ReagentEffects/ExtinguishReaction.cs b/Content.Server/Chemistry/ReagentEffects/ExtinguishReaction.cs index 6b7c56518a..eb2aefd444 100644 --- a/Content.Server/Chemistry/ReagentEffects/ExtinguishReaction.cs +++ b/Content.Server/Chemistry/ReagentEffects/ExtinguishReaction.cs @@ -2,12 +2,16 @@ using Content.Server.Atmos.EntitySystems; using Content.Shared.Chemistry.Reagent; using JetBrains.Annotations; +using Robust.Shared.Prototypes; namespace Content.Server.Chemistry.ReagentEffects { [UsedImplicitly] public sealed class ExtinguishReaction : ReagentEffect { + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => Loc.GetString("reagent-effect-guidebook-extinguish-reaction", ("chance", Probability)); + public override void Effect(ReagentEffectArgs args) { if (!args.EntityManager.TryGetComponent(args.SolutionEntity, out FlammableComponent? flammable)) return; diff --git a/Content.Server/Chemistry/ReagentEffects/FlammableReaction.cs b/Content.Server/Chemistry/ReagentEffects/FlammableReaction.cs index 54d3689135..0cf28d1ac1 100644 --- a/Content.Server/Chemistry/ReagentEffects/FlammableReaction.cs +++ b/Content.Server/Chemistry/ReagentEffects/FlammableReaction.cs @@ -3,6 +3,7 @@ using Content.Shared.Chemistry.Reagent; using Content.Shared.Database; using JetBrains.Annotations; +using Robust.Shared.Prototypes; namespace Content.Server.Chemistry.ReagentEffects { @@ -13,6 +14,10 @@ public sealed class FlammableReaction : ReagentEffect public float Multiplier = 0.05f; public override bool ShouldLog => true; + + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => Loc.GetString("reagent-effect-guidebook-flammable-reaction", ("chance", Probability)); + public override LogImpact LogImpact => LogImpact.Medium; public override void Effect(ReagentEffectArgs args) diff --git a/Content.Server/Chemistry/ReagentEffects/HealthChange.cs b/Content.Server/Chemistry/ReagentEffects/HealthChange.cs index ec5ffa32ab..59f11695fa 100644 --- a/Content.Server/Chemistry/ReagentEffects/HealthChange.cs +++ b/Content.Server/Chemistry/ReagentEffects/HealthChange.cs @@ -1,8 +1,11 @@ +using System.Linq; using System.Text.Json.Serialization; using Content.Shared.Chemistry.Reagent; using Content.Shared.Damage; using Content.Shared.FixedPoint; +using Content.Shared.Localizations; using JetBrains.Annotations; +using Robust.Shared.Prototypes; namespace Content.Server.Chemistry.ReagentEffects { @@ -31,6 +34,38 @@ public sealed class HealthChange : ReagentEffect [JsonPropertyName("ignoreResistances")] public bool IgnoreResistances = true; + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + { + var damages = new List(); + var heals = false; + var deals = false; + + // TODO: This should be smarter. Namely, not showing a damage type as being in a group unless every damage type in the group is present and equal in value. + foreach (var (kind, amount) in Damage.GetDamagePerGroup()) + { + var sign = MathF.Sign(amount.Float()); + + if (sign < 0) + heals = true; + if (sign > 0) + deals = true; + + damages.Add( + Loc.GetString("health-change-display", + ("kind", kind), + ("amount", MathF.Abs(amount.Float())), + ("deltasign", sign) + )); + } + + var healsordeals = heals ? (deals ? "both" : "heals") : (deals ? "deals" : "none"); + + return Loc.GetString("reagent-effect-guidebook-health-change", + ("chance", Probability), + ("changes", ContentLocalizationManager.FormatList(damages)), + ("healsordeals", healsordeals)); + } + public override void Effect(ReagentEffectArgs args) { var scale = ScaleByQuantity ? args.Quantity : FixedPoint2.New(1); diff --git a/Content.Server/Chemistry/ReagentEffects/Ignite.cs b/Content.Server/Chemistry/ReagentEffects/Ignite.cs index 5eb19297b4..c24183bbde 100644 --- a/Content.Server/Chemistry/ReagentEffects/Ignite.cs +++ b/Content.Server/Chemistry/ReagentEffects/Ignite.cs @@ -1,6 +1,7 @@ using Content.Server.Atmos.EntitySystems; using Content.Shared.Chemistry.Reagent; using Content.Shared.Database; +using Robust.Shared.Prototypes; namespace Content.Server.Chemistry.ReagentEffects; @@ -10,6 +11,10 @@ namespace Content.Server.Chemistry.ReagentEffects; public sealed class Ignite : ReagentEffect { public override bool ShouldLog => true; + + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => Loc.GetString("reagent-effect-guidebook-ignite", ("chance", Probability)); + public override LogImpact LogImpact => LogImpact.Medium; public override void Effect(ReagentEffectArgs args) diff --git a/Content.Server/Chemistry/ReagentEffects/MakeSentient.cs b/Content.Server/Chemistry/ReagentEffects/MakeSentient.cs index 93684df7d7..5919ae3edb 100644 --- a/Content.Server/Chemistry/ReagentEffects/MakeSentient.cs +++ b/Content.Server/Chemistry/ReagentEffects/MakeSentient.cs @@ -2,11 +2,16 @@ using Content.Server.Mind.Components; using Content.Server.Speech.Components; using Content.Shared.Chemistry.Reagent; +using Content.Server.Ghost.Roles.Components; +using Robust.Shared.Prototypes; namespace Content.Server.Chemistry.ReagentEffects; public sealed class MakeSentient : ReagentEffect { + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => Loc.GetString("reagent-effect-guidebook-make-sentient", ("chance", Probability)); + public override void Effect(ReagentEffectArgs args) { var entityManager = args.EntityManager; diff --git a/Content.Server/Chemistry/ReagentEffects/ModifyBleedAmount.cs b/Content.Server/Chemistry/ReagentEffects/ModifyBleedAmount.cs index a80a4d8868..f50bcc4a27 100644 --- a/Content.Server/Chemistry/ReagentEffects/ModifyBleedAmount.cs +++ b/Content.Server/Chemistry/ReagentEffects/ModifyBleedAmount.cs @@ -1,6 +1,7 @@ using Content.Server.Body.Components; using Content.Server.Body.Systems; using Content.Shared.Chemistry.Reagent; +using Robust.Shared.Prototypes; namespace Content.Server.Chemistry.ReagentEffects; @@ -12,6 +13,10 @@ public sealed class ModifyBleedAmount : ReagentEffect [DataField("amount")] public float Amount = -1.0f; + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => Loc.GetString("reagent-effect-guidebook-modify-bleed-amount", ("chance", Probability), + ("deltasign", MathF.Sign(Amount))); + public override void Effect(ReagentEffectArgs args) { if (args.EntityManager.TryGetComponent(args.SolutionEntity, out var blood)) diff --git a/Content.Server/Chemistry/ReagentEffects/ModifyBloodLevel.cs b/Content.Server/Chemistry/ReagentEffects/ModifyBloodLevel.cs index f5125fcce3..6a125436a2 100644 --- a/Content.Server/Chemistry/ReagentEffects/ModifyBloodLevel.cs +++ b/Content.Server/Chemistry/ReagentEffects/ModifyBloodLevel.cs @@ -2,6 +2,7 @@ using Content.Server.Body.Systems; using Content.Shared.Chemistry.Reagent; using Content.Shared.FixedPoint; +using Robust.Shared.Prototypes; namespace Content.Server.Chemistry.ReagentEffects; @@ -13,6 +14,10 @@ public sealed class ModifyBloodLevel : ReagentEffect [DataField("amount")] public FixedPoint2 Amount = 1.0f; + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => Loc.GetString("reagent-effect-guidebook-modify-blood-level", ("chance", Probability), + ("deltasign", MathF.Sign(Amount.Float()))); + public override void Effect(ReagentEffectArgs args) { if (args.EntityManager.TryGetComponent(args.SolutionEntity, out var blood)) diff --git a/Content.Server/Chemistry/ReagentEffects/ModifyLungGas.cs b/Content.Server/Chemistry/ReagentEffects/ModifyLungGas.cs index 63ab04bd66..7cecac7e6b 100644 --- a/Content.Server/Chemistry/ReagentEffects/ModifyLungGas.cs +++ b/Content.Server/Chemistry/ReagentEffects/ModifyLungGas.cs @@ -1,6 +1,7 @@ using Content.Server.Body.Components; using Content.Shared.Atmos; using Content.Shared.Chemistry.Reagent; +using Robust.Shared.Prototypes; namespace Content.Server.Chemistry.ReagentEffects; @@ -9,6 +10,10 @@ public sealed class ModifyLungGas : ReagentEffect [DataField("ratios", required: true)] private Dictionary _ratios = default!; + // JUSTIFICATION: This is internal magic that players never directly interact with. + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => null; + public override void Effect(ReagentEffectArgs args) { if (args.EntityManager.TryGetComponent(args.OrganEntity, out var lung)) diff --git a/Content.Server/Chemistry/ReagentEffects/MovespeedModifier.cs b/Content.Server/Chemistry/ReagentEffects/MovespeedModifier.cs index 9026c03a60..6564346b87 100644 --- a/Content.Server/Chemistry/ReagentEffects/MovespeedModifier.cs +++ b/Content.Server/Chemistry/ReagentEffects/MovespeedModifier.cs @@ -1,6 +1,7 @@ using Content.Shared.Chemistry.Components; using Content.Shared.Chemistry.Reagent; using Content.Shared.Movement.Systems; +using Robust.Shared.Prototypes; using Robust.Shared.Timing; namespace Content.Server.Chemistry.ReagentEffects @@ -29,6 +30,14 @@ public sealed class MovespeedModifier : ReagentEffect [DataField("statusLifetime")] public float StatusLifetime = 2f; + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + { + return Loc.GetString("reagent-effect-guidebook-movespeed-modifier", + ("chance", Probability), + ("walkspeed", WalkSpeedModifier), + ("time", StatusLifetime)); + } + /// /// Remove reagent at set rate, changes the movespeed modifiers and adds a MovespeedModifierMetabolismComponent if not already there. /// diff --git a/Content.Server/Chemistry/ReagentEffects/Oxygenate.cs b/Content.Server/Chemistry/ReagentEffects/Oxygenate.cs index 4fa6c834e8..f642c1c8a6 100644 --- a/Content.Server/Chemistry/ReagentEffects/Oxygenate.cs +++ b/Content.Server/Chemistry/ReagentEffects/Oxygenate.cs @@ -1,6 +1,7 @@ using Content.Server.Body.Components; using Content.Server.Body.Systems; using Content.Shared.Chemistry.Reagent; +using Robust.Shared.Prototypes; namespace Content.Server.Chemistry.ReagentEffects; @@ -9,6 +10,10 @@ public sealed class Oxygenate : ReagentEffect [DataField("factor")] public float Factor = 1f; + // JUSTIFICATION: This is internal magic that players never directly interact with. + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => null; + public override void Effect(ReagentEffectArgs args) { if (args.EntityManager.TryGetComponent(args.SolutionEntity, out var resp)) diff --git a/Content.Server/Chemistry/ReagentEffects/Paralyze.cs b/Content.Server/Chemistry/ReagentEffects/Paralyze.cs index 60ffe022f1..8a27de9b07 100644 --- a/Content.Server/Chemistry/ReagentEffects/Paralyze.cs +++ b/Content.Server/Chemistry/ReagentEffects/Paralyze.cs @@ -1,5 +1,6 @@ using Content.Shared.Chemistry.Reagent; using Content.Server.Stunnable; +using Robust.Shared.Prototypes; namespace Content.Server.Chemistry.ReagentEffects; @@ -12,6 +13,11 @@ public sealed class Paralyze : ReagentEffect /// [DataField("refresh")] public bool Refresh = true; + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => Loc.GetString("reagent-effect-guidebook-paralyze", + ("chance", Probability), + ("time", ParalyzeTime)); + public override void Effect(ReagentEffectArgs args) { var paralyzeTime = ParalyzeTime; diff --git a/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantAdjustAttribute.cs b/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantAdjustAttribute.cs index b6b59ff213..e8146d0bcc 100644 --- a/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantAdjustAttribute.cs +++ b/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantAdjustAttribute.cs @@ -1,6 +1,7 @@ using System.Diagnostics.CodeAnalysis; using Content.Server.Botany.Components; using Content.Shared.Chemistry.Reagent; +using Robust.Shared.Prototypes; using Robust.Shared.Random; namespace Content.Server.Chemistry.ReagentEffects.PlantMetabolism @@ -35,5 +36,7 @@ public bool CanMetabolize(EntityUid plantHolder, [NotNullWhen(true)] out PlantHo // Dependencies are never injected for reagents if you intend to do that for this. return !(Prob <= 0f) && IoCManager.Resolve().Prob(Prob); } + + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) => Loc.GetString("reagent-effect-guidebook-missing", ("chance", Probability)); } } diff --git a/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantCryoxadone.cs b/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantCryoxadone.cs index 3585f99622..127690ed75 100644 --- a/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantCryoxadone.cs +++ b/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantCryoxadone.cs @@ -1,6 +1,7 @@ using Content.Server.Botany.Components; using Content.Shared.Chemistry.Reagent; using JetBrains.Annotations; +using Robust.Shared.Prototypes; using Robust.Shared.Random; namespace Content.Server.Chemistry.ReagentEffects.PlantMetabolism @@ -26,5 +27,7 @@ public override void Effect(ReagentEffectArgs args) plantHolderComp.SkipAging++; plantHolderComp.ForceUpdate = true; } + + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) => Loc.GetString("reagent-effect-guidebook-missing", ("chance", Probability)); } } diff --git a/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantDiethylamine.cs b/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantDiethylamine.cs index b913bd2270..dbba70dfff 100644 --- a/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantDiethylamine.cs +++ b/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantDiethylamine.cs @@ -2,6 +2,7 @@ using Content.Server.Botany.Systems; using Content.Shared.Chemistry.Reagent; using JetBrains.Annotations; +using Robust.Shared.Prototypes; using Robust.Shared.Random; namespace Content.Server.Chemistry.ReagentEffects.PlantMetabolism @@ -34,5 +35,7 @@ public override void Effect(ReagentEffectArgs args) plantHolderComp.Seed.Endurance++; } } + + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) => Loc.GetString("reagent-effect-guidebook-missing", ("chance", Probability)); } } diff --git a/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/RobustHarvest.cs b/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/RobustHarvest.cs index a13edcad5a..81dd072a62 100644 --- a/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/RobustHarvest.cs +++ b/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/RobustHarvest.cs @@ -2,6 +2,7 @@ using Content.Server.Botany.Systems; using Content.Shared.Chemistry.Reagent; using JetBrains.Annotations; +using Robust.Shared.Prototypes; using Robust.Shared.Random; namespace Content.Server.Chemistry.ReagentEffects.PlantMetabolism @@ -47,5 +48,7 @@ public override void Effect(ReagentEffectArgs args) plantHolderComp.Seed.Yield--; } } + + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) => Loc.GetString("reagent-effect-guidebook-missing", ("chance", Probability)); } } diff --git a/Content.Server/Chemistry/ReagentEffects/PopupMessage.cs b/Content.Server/Chemistry/ReagentEffects/PopupMessage.cs index 15e12046e2..9d06032307 100644 --- a/Content.Server/Chemistry/ReagentEffects/PopupMessage.cs +++ b/Content.Server/Chemistry/ReagentEffects/PopupMessage.cs @@ -1,6 +1,7 @@ using Content.Shared.Chemistry.Reagent; using Content.Shared.Popups; using Robust.Shared.Player; +using Robust.Shared.Prototypes; using Robust.Shared.Random; namespace Content.Server.Chemistry.ReagentEffects @@ -16,6 +17,10 @@ public sealed class PopupMessage : ReagentEffect [DataField("visualType")] public PopupType VisualType = PopupType.Small; + // JUSTIFICATION: This is purely cosmetic. + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => null; + public override void Effect(ReagentEffectArgs args) { var popupSys = args.EntityManager.EntitySysManager.GetEntitySystem(); diff --git a/Content.Server/Chemistry/ReagentEffects/ResetNarcolepsy.cs b/Content.Server/Chemistry/ReagentEffects/ResetNarcolepsy.cs index eeaffb8149..20044d4037 100644 --- a/Content.Server/Chemistry/ReagentEffects/ResetNarcolepsy.cs +++ b/Content.Server/Chemistry/ReagentEffects/ResetNarcolepsy.cs @@ -1,6 +1,7 @@ using Content.Server.Traits.Assorted; using Content.Shared.Chemistry.Reagent; using JetBrains.Annotations; +using Robust.Shared.Prototypes; namespace Content.Server.Chemistry.ReagentEffects; @@ -16,6 +17,9 @@ public sealed class ResetNarcolepsy : ReagentEffect [DataField("TimerReset")] public int TimerReset = 600; + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => Loc.GetString("reagent-effect-guidebook-reset-narcolepsy", ("chance", Probability)); + public override void Effect(ReagentEffectArgs args) { if (args.Scale != 1f) diff --git a/Content.Server/Chemistry/ReagentEffects/SatiateHunger.cs b/Content.Server/Chemistry/ReagentEffects/SatiateHunger.cs index 7ef11578ad..a0d00c538e 100644 --- a/Content.Server/Chemistry/ReagentEffects/SatiateHunger.cs +++ b/Content.Server/Chemistry/ReagentEffects/SatiateHunger.cs @@ -2,6 +2,7 @@ using Content.Shared.Chemistry.Reagent; using Content.Shared.Nutrition.Components; using Content.Shared.Nutrition.EntitySystems; +using Robust.Shared.Prototypes; namespace Content.Server.Chemistry.ReagentEffects { @@ -11,10 +12,12 @@ namespace Content.Server.Chemistry.ReagentEffects ///
public sealed class SatiateHunger : ReagentEffect { + private const float DefaultNutritionFactor = 3.0f; + /// /// How much hunger is satiated when 1u of the reagent is metabolized /// - [DataField("factor")] public float NutritionFactor { get; set; } = 3.0f; + [DataField("factor")] public float NutritionFactor { get; set; } = DefaultNutritionFactor; //Remove reagent at set rate, satiate hunger if a HungerComponent can be found public override void Effect(ReagentEffectArgs args) @@ -24,5 +27,8 @@ public override void Effect(ReagentEffectArgs args) return; entman.System().ModifyHunger(args.SolutionEntity, NutritionFactor * (float) args.Quantity, hunger); } + + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => Loc.GetString("reagent-effect-guidebook-satiate-hunger", ("chance", Probability), ("relative", NutritionFactor / DefaultNutritionFactor)); } } diff --git a/Content.Server/Chemistry/ReagentEffects/SatiateThirst.cs b/Content.Server/Chemistry/ReagentEffects/SatiateThirst.cs index 43e9f051a0..79911110a9 100644 --- a/Content.Server/Chemistry/ReagentEffects/SatiateThirst.cs +++ b/Content.Server/Chemistry/ReagentEffects/SatiateThirst.cs @@ -1,6 +1,7 @@ using Content.Server.Nutrition.Components; using Content.Shared.Chemistry.Reagent; using Content.Server.Nutrition.EntitySystems; +using Robust.Shared.Prototypes; namespace Content.Server.Chemistry.ReagentEffects { @@ -10,10 +11,12 @@ namespace Content.Server.Chemistry.ReagentEffects ///
public sealed class SatiateThirst : ReagentEffect { + private const float DefaultHydrationFactor = 3.0f; + /// How much thirst is satiated each metabolism tick. Not currently tied to /// rate or anything. [DataField("factor")] - public float HydrationFactor { get; set; } = 3.0f; + public float HydrationFactor { get; set; } = DefaultHydrationFactor; /// Satiate thirst if a ThirstComponent can be found public override void Effect(ReagentEffectArgs args) @@ -21,5 +24,8 @@ public override void Effect(ReagentEffectArgs args) if (args.EntityManager.TryGetComponent(args.SolutionEntity, out ThirstComponent? thirst)) EntitySystem.Get().UpdateThirst(thirst, HydrationFactor); } + + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => Loc.GetString("reagent-effect-guidebook-satiate-thirst", ("chance", Probability), ("relative", HydrationFactor / DefaultHydrationFactor)); } } diff --git a/Content.Server/Chemistry/ReagentEffects/StatusEffects/GenericStatusEffect.cs b/Content.Server/Chemistry/ReagentEffects/StatusEffects/GenericStatusEffect.cs index 8727ae2511..982606194a 100644 --- a/Content.Server/Chemistry/ReagentEffects/StatusEffects/GenericStatusEffect.cs +++ b/Content.Server/Chemistry/ReagentEffects/StatusEffects/GenericStatusEffect.cs @@ -1,6 +1,7 @@ using Content.Shared.Chemistry.Reagent; using Content.Shared.StatusEffect; using JetBrains.Annotations; +using Robust.Shared.Prototypes; namespace Content.Server.Chemistry.ReagentEffects.StatusEffects { @@ -57,6 +58,13 @@ public override void Effect(ReagentEffectArgs args) statusSys.TrySetTime(args.SolutionEntity, Key, TimeSpan.FromSeconds(time)); } } + + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) => Loc.GetString( + "reagent-effect-guidebook-status-effect", + ("chance", Probability), + ("type", Type), + ("time", Time), + ("key", $"reagent-effect-status-effect-{Key}")); } public enum StatusEffectMetabolismType diff --git a/Content.Server/Chemistry/ReagentEffects/StatusEffects/Jitter.cs b/Content.Server/Chemistry/ReagentEffects/StatusEffects/Jitter.cs index bd060c439a..3aa81e20f6 100644 --- a/Content.Server/Chemistry/ReagentEffects/StatusEffects/Jitter.cs +++ b/Content.Server/Chemistry/ReagentEffects/StatusEffects/Jitter.cs @@ -1,5 +1,6 @@ using Content.Shared.Chemistry.Reagent; using Content.Shared.Jittering; +using Robust.Shared.Prototypes; namespace Content.Server.Chemistry.ReagentEffects.StatusEffects { @@ -33,5 +34,8 @@ public override void Effect(ReagentEffectArgs args) args.EntityManager.EntitySysManager.GetEntitySystem() .DoJitter(args.SolutionEntity, TimeSpan.FromSeconds(time), Refresh, Amplitude, Frequency); } + + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) => + Loc.GetString("reagent-effect-guidebook-jittering", ("chance", Probability)); } } diff --git a/Content.Server/Chemistry/ReagentEffects/WashCreamPieReaction.cs b/Content.Server/Chemistry/ReagentEffects/WashCreamPieReaction.cs index fdd21c8335..6e2e871d2d 100644 --- a/Content.Server/Chemistry/ReagentEffects/WashCreamPieReaction.cs +++ b/Content.Server/Chemistry/ReagentEffects/WashCreamPieReaction.cs @@ -2,12 +2,16 @@ using Content.Shared.Chemistry.Reagent; using Content.Shared.Nutrition.Components; using JetBrains.Annotations; +using Robust.Shared.Prototypes; namespace Content.Server.Chemistry.ReagentEffects { [UsedImplicitly] public sealed class WashCreamPieReaction : ReagentEffect { + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => Loc.GetString("reagent-effect-guidebook-wash-cream-pie-reaction", ("chance", Probability)); + public override void Effect(ReagentEffectArgs args) { if (!args.EntityManager.TryGetComponent(args.SolutionEntity, out CreamPiedComponent? creamPied)) return; diff --git a/Content.Shared/Body/Prototypes/MetabolizerTypePrototype.cs b/Content.Shared/Body/Prototypes/MetabolizerTypePrototype.cs index bee2301b28..e5eee21185 100644 --- a/Content.Shared/Body/Prototypes/MetabolizerTypePrototype.cs +++ b/Content.Shared/Body/Prototypes/MetabolizerTypePrototype.cs @@ -7,5 +7,8 @@ public sealed class MetabolizerTypePrototype : IPrototype { [IdDataField] public string ID { get; } = default!; + + [DataField("name", required: true)] + public string Name { get; } = default!; } } diff --git a/Content.Shared/Chemistry/Reagent/ReagentEffect.cs b/Content.Shared/Chemistry/Reagent/ReagentEffect.cs index 9140c44f15..1ece3afc13 100644 --- a/Content.Shared/Chemistry/Reagent/ReagentEffect.cs +++ b/Content.Shared/Chemistry/Reagent/ReagentEffect.cs @@ -1,8 +1,11 @@ -using System.Text.Json.Serialization; +using System.Linq; +using System.Text.Json.Serialization; using Content.Shared.Chemistry.Components; using Content.Shared.Database; using Content.Shared.FixedPoint; +using Content.Shared.Localizations; using JetBrains.Annotations; +using Robust.Shared.Prototypes; using Robust.Shared.Random; namespace Content.Shared.Chemistry.Reagent @@ -23,6 +26,10 @@ public abstract class ReagentEffect [DataField("conditions")] public ReagentEffectCondition[]? Conditions; + public virtual string ReagentEffectFormat => "guidebook-reagent-effect-description"; + + protected abstract string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys); // => Loc.GetString("reagent-effect-guidebook-missing", ("chance", Probability)); + /// /// What's the chance, from 0 to 1, that this effect will occur? /// @@ -42,6 +49,23 @@ public abstract class ReagentEffect public virtual bool ShouldLog { get; } = false; public abstract void Effect(ReagentEffectArgs args); + + /// + /// Produces a localized, bbcode'd guidebook description for this effect. + /// + /// + public string? GuidebookEffectDescription(IPrototypeManager prototype, IEntitySystemManager entSys) + { + var effect = ReagentEffectGuidebookText(prototype, entSys); + if (effect is null) + return null; + + return Loc.GetString(ReagentEffectFormat, ("effect", effect), ("chance", Probability), + ("conditionCount", Conditions?.Length ?? 0), + ("conditions", + ContentLocalizationManager.FormatList(Conditions?.Select(x => x.GuidebookExplanation(prototype)).ToList() ?? + new List()))); + } } public static class ReagentEffectExt diff --git a/Content.Shared/Chemistry/Reagent/ReagentEffectCondition.cs b/Content.Shared/Chemistry/Reagent/ReagentEffectCondition.cs index 13d1cb37ee..708fe24c70 100644 --- a/Content.Shared/Chemistry/Reagent/ReagentEffectCondition.cs +++ b/Content.Shared/Chemistry/Reagent/ReagentEffectCondition.cs @@ -1,5 +1,6 @@ using System.Text.Json.Serialization; using JetBrains.Annotations; +using Robust.Shared.Prototypes; namespace Content.Shared.Chemistry.Reagent { @@ -10,5 +11,12 @@ public abstract class ReagentEffectCondition [JsonPropertyName("id")] private protected string _id => this.GetType().Name; public abstract bool Condition(ReagentEffectArgs args); + + /// + /// Effect explanations are of the form "[chance to] [action] when [condition] and [condition]" + /// + /// + /// + public abstract string GuidebookExplanation(IPrototypeManager prototype); } } diff --git a/Content.Shared/Chemistry/Reagent/ReagentPrototype.cs b/Content.Shared/Chemistry/Reagent/ReagentPrototype.cs index 001bfd6e00..51bd6c4fe6 100644 --- a/Content.Shared/Chemistry/Reagent/ReagentPrototype.cs +++ b/Content.Shared/Chemistry/Reagent/ReagentPrototype.cs @@ -1,4 +1,5 @@ -using System.Text.Json.Serialization; +using System.Linq; +using System.Text.Json.Serialization; using Content.Shared.Administration.Logs; using Content.Shared.Body.Prototypes; using Content.Shared.Chemistry.Components; @@ -9,6 +10,7 @@ using Robust.Shared.Map; using Robust.Shared.Prototypes; using Robust.Shared.Random; +using Robust.Shared.Serialization; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Array; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Dictionary; @@ -157,6 +159,23 @@ public void ReactionPlant(EntityUid? plantHolder, Solution.ReagentQuantity amoun } } + [Serializable, NetSerializable] + public struct ReagentGuideEntry + { + public string ReagentPrototype; + + public Dictionary? GuideEntries; + + public ReagentGuideEntry(ReagentPrototype proto, IPrototypeManager prototype, IEntitySystemManager entSys) + { + ReagentPrototype = proto.ID; + GuideEntries = proto.Metabolisms? + .Select(x => (x.Key, x.Value.MakeGuideEntry(prototype, entSys))) + .ToDictionary(x => x.Key, x => x.Item2); + } + } + + [DataDefinition] public sealed class ReagentEffectsEntry { @@ -173,6 +192,30 @@ public sealed class ReagentEffectsEntry [JsonPropertyName("effects")] [DataField("effects", required: true)] public ReagentEffect[] Effects = default!; + + public ReagentEffectsGuideEntry MakeGuideEntry(IPrototypeManager prototype, IEntitySystemManager entSys) + { + return new ReagentEffectsGuideEntry(MetabolismRate, + Effects + .Select(x => x.GuidebookEffectDescription(prototype, entSys)) // hate. + .Where(x => x is not null) + .Select(x => x!) + .ToArray()); + } + } + + [Serializable, NetSerializable] + public struct ReagentEffectsGuideEntry + { + public FixedPoint2 MetabolismRate; + + public string[] EffectDescriptions; + + public ReagentEffectsGuideEntry(FixedPoint2 metabolismRate, string[] effectDescriptions) + { + MetabolismRate = metabolismRate; + EffectDescriptions = effectDescriptions; + } } [DataDefinition] diff --git a/Content.Shared/Chemistry/SharedChemistryGuideDataSystem.cs b/Content.Shared/Chemistry/SharedChemistryGuideDataSystem.cs new file mode 100644 index 0000000000..391134bcf0 --- /dev/null +++ b/Content.Shared/Chemistry/SharedChemistryGuideDataSystem.cs @@ -0,0 +1,42 @@ +using Content.Shared.Chemistry.Reagent; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization; + +namespace Content.Shared.Chemistry; + +/// +/// This handles the chemistry guidebook and caching it. +/// +public abstract class SharedChemistryGuideDataSystem : EntitySystem +{ + [Dependency] protected readonly IPrototypeManager PrototypeManager = default!; + + protected readonly Dictionary Registry = new(); + + public IReadOnlyDictionary ReagentGuideRegistry => Registry; +} + +[Serializable, NetSerializable] +public sealed class ReagentGuideRegistryChangedEvent : EntityEventArgs +{ + public ReagentGuideChangeset Changeset; + + public ReagentGuideRegistryChangedEvent(ReagentGuideChangeset changeset) + { + Changeset = changeset; + } +} + +[Serializable, NetSerializable] +public sealed class ReagentGuideChangeset +{ + public Dictionary GuideEntries; + + public HashSet Removed; + + public ReagentGuideChangeset(Dictionary guideEntries, HashSet removed) + { + GuideEntries = guideEntries; + Removed = removed; + } +} diff --git a/Content.Shared/Localizations/ContentLocalizationManager.cs b/Content.Shared/Localizations/ContentLocalizationManager.cs index c3069ccd4d..f974eb0785 100644 --- a/Content.Shared/Localizations/ContentLocalizationManager.cs +++ b/Content.Shared/Localizations/ContentLocalizationManager.cs @@ -1,4 +1,7 @@ using System.Globalization; +using System.Linq; +using System.Text.RegularExpressions; +using Robust.Shared.Utility; namespace Content.Shared.Localizations { @@ -31,13 +34,96 @@ public void Initialize() _loc.AddFunction(culture, "UNITS", FormatUnits); _loc.AddFunction(culture, "TOSTRING", args => FormatToString(culture, args)); _loc.AddFunction(culture, "LOC", FormatLoc); + _loc.AddFunction(culture, "NATURALFIXED", FormatNaturalFixed); + _loc.AddFunction(culture, "NATURALPERCENT", FormatNaturalPercent); + + + /* + * The following language functions are specific to the english localization. When working on your own + * localization you should NOT modify these, instead add new functions specific to your language/culture. + * This ensures the english translations continue to work as expected when fallbacks are needed. + */ + var cultureEn = new CultureInfo("en-US"); + + _loc.AddFunction(cultureEn, "MAKEPLURAL", FormatMakePlural); + _loc.AddFunction(cultureEn, "MANY", FormatMany); + } + + private ILocValue FormatMany(LocArgs args) + { + var count = ((LocValueNumber) args.Args[1]).Value; + + if (Math.Abs(count - 1) < 0.0001f) + { + return (LocValueString) args.Args[0]; + } + else + { + return (LocValueString) FormatMakePlural(args); + } + } + + private ILocValue FormatNaturalPercent(LocArgs args) + { + var number = ((LocValueNumber) args.Args[0]).Value * 100; + var maxDecimals = (int)Math.Floor(((LocValueNumber) args.Args[1]).Value); + var formatter = (NumberFormatInfo)NumberFormatInfo.GetInstance(CultureInfo.GetCultureInfo(Culture)).Clone(); + formatter.NumberDecimalDigits = maxDecimals; + return new LocValueString(string.Format(formatter, "{0:N}", number).TrimEnd('0').TrimEnd('.') + "%"); + } + + private ILocValue FormatNaturalFixed(LocArgs args) + { + var number = ((LocValueNumber) args.Args[0]).Value; + var maxDecimals = (int)Math.Floor(((LocValueNumber) args.Args[1]).Value); + var formatter = (NumberFormatInfo)NumberFormatInfo.GetInstance(CultureInfo.GetCultureInfo(Culture)).Clone(); + formatter.NumberDecimalDigits = maxDecimals; + return new LocValueString(string.Format(formatter, "{0:N}", number).TrimEnd('0').TrimEnd('.')); + } + + private static readonly Regex PluralEsRule = new("^.*(s|sh|ch|x|z)$"); + + private ILocValue FormatMakePlural(LocArgs args) + { + var text = ((LocValueString) args.Args[0]).Value; + var split = text.Split(" ", 1); + var firstWord = split[0]; + if (PluralEsRule.IsMatch(firstWord)) + { + if (split.Length == 1) + return new LocValueString($"{firstWord}es"); + else + return new LocValueString($"{firstWord}es {split[1]}"); + } + else + { + if (split.Length == 1) + return new LocValueString($"{firstWord}s"); + else + return new LocValueString($"{firstWord}s {split[1]}"); + } + } + + // TODO: allow fluent to take in lists of strings so this can be a format function like it should be. + /// + /// Formats a list as per english grammar rules. + /// + public static string FormatList(List list) + { + return list.Count switch + { + <= 0 => string.Empty, + 1 => list[0], + 2 => $"{list[0]} and {list[1]}", + > 2 => $"{string.Join(", ", list.GetRange(0, list.Count - 2))}, and {list[^1]}" + }; } private static ILocValue FormatLoc(LocArgs args) { - var id = ((LocValueString)args.Args[0]).Value; + var id = ((LocValueString) args.Args[0]).Value; - return new LocValueString(Loc.GetString(id)); + return new LocValueString(Loc.GetString(id, args.Options.Select(x => (x.Key, x.Value.Value!)).ToArray())); } private static ILocValue FormatToString(CultureInfo culture, LocArgs args) @@ -115,8 +201,8 @@ private static ILocValue FormatUnits(LocArgs args) // // Note that the closing brace isn't replaced so that format specifiers can be applied. var res = String.Format( - fmtstr.Replace("{UNIT", "{" + $"{fargs.Length - 1}"), - fargs + fmtstr.Replace("{UNIT", "{" + $"{fargs.Length - 1}"), + fargs ); return new LocValueString(res); diff --git a/Resources/Locale/en-US/guidebook/chemistry/conditions.ftl b/Resources/Locale/en-US/guidebook/chemistry/conditions.ftl new file mode 100644 index 0000000000..807b5591a8 --- /dev/null +++ b/Resources/Locale/en-US/guidebook/chemistry/conditions.ftl @@ -0,0 +1,50 @@ +reagent-effect-condition-guidebook-total-damage = + { $max -> + [2147483648] it has at least {NATURALFIXED($min, 2)} total damage + *[other] { $min -> + [0] it has at most {NATURALFIXED($max, 2)} total damage + *[other] it has between {NATURALFIXED($min, 2)} and {NATURALFIXED($max, 2)} total damage + } + } + +reagent-effect-condition-guidebook-reagent-threshold = + { $max -> + [2147483648] there's at least {NATURALFIXED($min, 2)}u of {$reagent} + *[other] { $min -> + [0] there's at most {NATURALFIXED($max, 2)}u of {$reagent} + *[other] there's between {NATURALFIXED($min, 2)}u and {NATURALFIXED($max, 2)}u of {$reagent} + } + } + +reagent-effect-condition-guidebook-mob-state-condition = + the mob is { $state } + +reagent-effect-condition-guidebook-solution-temperature = + the solution's temperature is { $max -> + [2147483648] at least {NATURALFIXED($min, 2)}k + *[other] { $min -> + [0] at most {NATURALFIXED($max, 2)}k + *[other] between {NATURALFIXED($min, 2)}k and {NATURALFIXED($max, 2)}k + } + } + +reagent-effect-condition-guidebook-body-temperature = + the body's temperature is { $max -> + [2147483648] at least {NATURALFIXED($min, 2)}k + *[other] { $min -> + [0] at most {NATURALFIXED($max, 2)}k + *[other] between {NATURALFIXED($min, 2)}k and {NATURALFIXED($max, 2)}k + } + } + +reagent-effect-condition-guidebook-organ-type = + the metabolizing organ { $shouldhave -> + [true] is + *[false] is not + } {INDEFINITE($name)} {$name} organ + +reagent-effect-condition-guidebook-has-tag = + the target { $invert -> + [true] does not have + *[false] has + } the tag {$tag} diff --git a/Resources/Locale/en-US/guidebook/chemistry/core.ftl b/Resources/Locale/en-US/guidebook/chemistry/core.ftl new file mode 100644 index 0000000000..185595826d --- /dev/null +++ b/Resources/Locale/en-US/guidebook/chemistry/core.ftl @@ -0,0 +1,16 @@ +guidebook-reagent-effect-description = + {$chance -> + [1] { $effect } + *[other] Has a { NATURALPERCENT($chance, 2) } chance to { $effect } + }{ $conditionCount -> + [0] . + *[other] {" "}when { $conditions }. + } + +guidebook-reagent-name = [bold][color={$color}]{CAPITALIZE($name)}[/color][/bold] +guidebook-reagent-recipes-header = Recipe +guidebook-reagent-recipes-reagent-display = [bold]{$reagent}[/bold] \[{$ratio}\] +guidebook-reagent-recipes-mix = Mix +guidebook-reagent-effects-header = Effects +guidebook-reagent-effects-metabolism-group-rate = [bold]{$group}[/bold] [color=gray]({$rate} units per second)[/color] +guidebook-reagent-physical-description = Seems to be {$description}. diff --git a/Resources/Locale/en-US/guidebook/chemistry/effects.ftl b/Resources/Locale/en-US/guidebook/chemistry/effects.ftl new file mode 100644 index 0000000000..e004cc1590 --- /dev/null +++ b/Resources/Locale/en-US/guidebook/chemistry/effects.ftl @@ -0,0 +1,316 @@ +-create-3rd-person = + { $chance -> + [1] Creates + *[other] create + } + +-cause-3rd-person = + { $chance -> + [1] Causes + *[other] cause + } + +-satiate-3rd-person = + { $chance -> + [1] Satiates + *[other] satiate + } + +reagent-effect-guidebook-create-entity-reaction-effect = + { $chance -> + [1] Creates + *[other] create + } { $amount -> + [1] {INDEFINITE($entname)} + *[other] {$amount} {MAKEPLURAL($entname)} + } + +reagent-effect-guidebook-explosion-reaction-effect = + { $chance -> + [1] Causes + *[other] cause + } an explosion + +reagent-effect-guidebook-foam-area-reaction-effect = + { $chance -> + [1] Creates + *[other] create + } large quantities of foam + +reagent-effect-guidebook-foam-area-reaction-effect = + { $chance -> + [1] Creates + *[other] create + } large quantities of smoke + +reagent-effect-guidebook-satiate-thirst = + { $chance -> + [1] Satiates + *[other] satiate + } { $relative -> + [1] thirst averagely + *[other] thirst at {NATURALFIXED($relative, 3)}x the average rate + } + +reagent-effect-guidebook-satiate-hunger = + { $chance -> + [1] Satiates + *[other] satiate + } { $relative -> + [1] hunger averagely + *[other] hunger at {NATURALFIXED($relative, 3)}x the average rate + } + +reagent-effect-guidebook-health-change = + { $chance -> + [1] { $healsordeals -> + [heals] Heals + [deals] Deals + *[both] Modifies health by + } + *[other] { $healsordeals -> + [heals] heal + [deals] deal + *[both] modify health by + } + } { $changes } + +reagent-effect-guidebook-status-effect = + { $type -> + [add] { $chance -> + [1] Causes + *[other] cause + } {LOC($key)} for at least {NATURALFIXED($time, 3)} {MANY("second", $time)} with accumulation + *[set] { $chance -> + [1] Causes + *[other] cause + } {LOC($key)} for at least {NATURALFIXED($time, 3)} {MANY("second", $time)} without accumulation + [remove]{ $chance -> + [1] Removes + *[other] remove + } {NATURALFIXED($time, 3)} {MANY("second", $time)} of {LOC($key)} + } + +reagent-effect-guidebook-activate-artifact = + { $chance -> + [1] Attempts + *[other] attempt + } to activate an artifact + +reagent-effect-guidebook-set-solution-temperature-effect = + { $chance -> + [1] Sets + *[other] set + } the solution temperature to exactly {NATURALFIXED($temperature, 2)}k + +reagent-effect-guidebook-adjust-solution-temperature-effect = + { $chance -> + [1] { $deltasign -> + [1] Adds + *[-1] Removes + } + *[other] + { $deltasign -> + [1] add + *[-1] remove + } + } heat from the solution until it reaches { $deltasign -> + [1] at most {NATURALFIXED($maxtemp, 2)}k + *[-1] at least {NATURALFIXED($mintemp, 2)}k + } + +reagent-effect-guidebook-adjust-reagent-reagent = + { $chance -> + [1] { $deltasign -> + [1] Adds + *[-1] Removes + } + *[other] + { $deltasign -> + [1] add + *[-1] remove + } + } {NATURALFIXED($amount, 2)}u of {$reagent} { $deltasign -> + [1] to + *[-1] from + } the solution + +reagent-effect-guidebook-adjust-reagent-group = + { $chance -> + [1] { $deltasign -> + [1] Adds + *[-1] Removes + } + *[other] + { $deltasign -> + [1] add + *[-1] remove + } + } {NATURALFIXED($amount, 2)}u of reagents in the group {$group} { $deltasign -> + [1] to + *[-1] from + } the solution + +reagent-effect-guidebook-adjust-temperature = + { $chance -> + [1] { $deltasign -> + [1] Adds + *[-1] Removes + } + *[other] + { $deltasign -> + [1] add + *[-1] remove + } + } {POWERJOULES($amount)} of heat { $deltasign -> + [1] to + *[-1] from + } the body it's in + +reagent-effect-guidebook-chem-cause-disease = + { $chance -> + [1] Causes + *[other] cause + } the disease { $disease } + +reagent-effect-guidebook-chem-cause-random-disease = + { $chance -> + [1] Causes + *[other] cause + } the diseases { $diseases } + +reagent-effect-guidebook-jittering = + { $chance -> + [1] Causes + *[other] cause + } jittering + +reagent-effect-guidebook-chem-clean-bloodstream = + { $chance -> + [1] Cleanses + *[other] cleanse + } the bloodstream of other chemicals + +reagent-effect-guidebook-cure-disease = + { $chance -> + [1] Cures + *[other] cure + } diseases + +reagent-effect-guidebook-cure-eye-damage = + { $chance -> + [1] { $deltasign -> + [1] Heals + *[-1] Deals + } + *[other] + { $deltasign -> + [1] heal + *[-1] deal + } + } eye damage + +reagent-effect-guidebook-chem-vomit = + { $chance -> + [1] Causes + *[other] cause + } vomiting + +reagent-effect-guidebook-create-gas = + { $chance -> + [1] Creates + *[other] create + } { $moles } { $moles -> + [1] mole + *[other] moles + } of { $gas } + +reagent-effect-guidebook-drunk = + { $chance -> + [1] Causes + *[other] cause + } drunkness + +reagent-effect-guidebook-electrocute = + { $chance -> + [1] Electrocutes + *[other] electrocute + } the metabolizer for {NATURALFIXED($time, 3)} {MANY("second", $time)} + +reagent-effect-guidebook-extinguish-reaction = + { $chance -> + [1] Extinguishes + *[other] extinguish + } fire + +reagent-effect-guidebook-flammable-reaction = + { $chance -> + [1] Increases + *[other] increase + } flammability + +reagent-effect-guidebook-ignite = + { $chance -> + [1] Ignites + *[other] ignite + } the metabolizer + +reagent-effect-guidebook-make-sentient = + { $chance -> + [1] Makes + *[other] make + } the metabolizer sentient + +reagent-effect-guidebook-modify-bleed-amount = + { $chance -> + [1] { $deltasign -> + [1] Induces + *[-1] Reduces + } + *[other] { $deltasign -> + [1] induce + *[-1] reduce + } + } bleeding + +reagent-effect-guidebook-modify-blood-level = + { $chance -> + [1] { $deltasign -> + [1] Increases + *[-1] Decreases + } + *[other] { $deltasign -> + [1] increases + *[-1] decreases + } + } blood level + +reagent-effect-guidebook-paralyze = + { $chance -> + [1] Paralyzes + *[other] paralyze + } the metabolizer for at least {NATURALFIXED($time, 3)} {MANY("second", $time)} + +reagent-effect-guidebook-movespeed-modifier = + { $chance -> + [1] Modifies + *[other] modify + } movement speed by {NATURALFIXED($walkspeed, 3)}x for at least {NATURALFIXED($time, 3)} {MANY("second", $time)} + +reagent-effect-guidebook-reset-narcolepsy = + { $chance -> + [1] Temporarily staves + *[other] temporarily stave + } off narcolepsy + +reagent-effect-guidebook-wash-cream-pie-reaction = + { $chance -> + [1] Washes + *[other] wash + } off cream pie from one's face + +reagent-effect-guidebook-missing = + { $chance -> + [1] Causes + *[other] cause + } an unknown effect as nobody has written this effect yet diff --git a/Resources/Locale/en-US/guidebook/chemistry/healthchange.ftl b/Resources/Locale/en-US/guidebook/chemistry/healthchange.ftl new file mode 100644 index 0000000000..d5eba5b02c --- /dev/null +++ b/Resources/Locale/en-US/guidebook/chemistry/healthchange.ftl @@ -0,0 +1,5 @@ +health-change-display = + { $deltasign -> + [-1] [color=green]{NATURALFIXED($amount, 2)}[/color] {$kind} + *[1] [color=red]{NATURALFIXED($amount, 2)}[/color] {$kind} + } diff --git a/Resources/Locale/en-US/guidebook/chemistry/statuseffects.ftl b/Resources/Locale/en-US/guidebook/chemistry/statuseffects.ftl new file mode 100644 index 0000000000..8cedbcabb6 --- /dev/null +++ b/Resources/Locale/en-US/guidebook/chemistry/statuseffects.ftl @@ -0,0 +1,11 @@ +reagent-effect-status-effect-Stun = stunning +reagent-effect-status-effect-KnockedDown = knockdown +reagent-effect-status-effect-Jitter = jittering +reagent-effect-status-effect-TemporaryBlindness = blindess +reagent-effect-status-effect-SeeingRainbows = hallucinations +reagent-effect-status-effect-Muted = inability to speak +reagent-effect-status-effect-Stutter = stuttering +reagent-effect-status-effect-ForcedSleep = unconsciousness +reagent-effect-status-effect-Drunk = drunkness +reagent-effect-status-effect-PressureImmunity = pressure immunity +reagent-effect-status-effect-Pacified = combat pacification diff --git a/Resources/Locale/en-US/guidebook/guides.ftl b/Resources/Locale/en-US/guidebook/guides.ftl index 5a688dd565..805eac357d 100644 --- a/Resources/Locale/en-US/guidebook/guides.ftl +++ b/Resources/Locale/en-US/guidebook/guides.ftl @@ -14,6 +14,7 @@ guide-entry-radio = Radio guide-entry-jobs = Jobs guide-entry-salvage = Salvage guide-entry-survival = Survival +guide-entry-chemicals = Chemicals guide-entry-ss14 = Space Station 14 guide-entry-janitorial = Janitorial diff --git a/Resources/Prototypes/Chemistry/metabolizer_types.yml b/Resources/Prototypes/Chemistry/metabolizer_types.yml index 11242bb7b8..1aa19f6084 100644 --- a/Resources/Prototypes/Chemistry/metabolizer_types.yml +++ b/Resources/Prototypes/Chemistry/metabolizer_types.yml @@ -3,24 +3,32 @@ - type: metabolizerType id: Animal + name: animal - type: metabolizerType id: Dragon + name: dragon - type: metabolizerType id: Human + name: human - type: metabolizerType id: Slime + name: slime - type: metabolizerType id: Vox + name: vox - type: metabolizerType id: Rat + name: rat - type: metabolizerType id: Plant + name: plant - type: metabolizerType id: Dwarf + name: dwarf diff --git a/Resources/Prototypes/Entities/Structures/Dispensers/chem.yml b/Resources/Prototypes/Entities/Structures/Dispensers/chem.yml index 44babe2411..27a2cd53be 100644 --- a/Resources/Prototypes/Entities/Structures/Dispensers/chem.yml +++ b/Resources/Prototypes/Entities/Structures/Dispensers/chem.yml @@ -32,3 +32,6 @@ - type: UpgradePowerDraw powerDrawMultiplier: 0.75 scaling: Exponential + - type: GuideHelp + guides: + - Chemicals diff --git a/Resources/Prototypes/Guidebook/shiftandcrew.yml b/Resources/Prototypes/Guidebook/shiftandcrew.yml index 39e580e052..fc37b330bf 100644 --- a/Resources/Prototypes/Guidebook/shiftandcrew.yml +++ b/Resources/Prototypes/Guidebook/shiftandcrew.yml @@ -15,6 +15,11 @@ name: guide-entry-survival text: "/ServerInfo/Guidebook/Survival.xml" +- type: guideEntry + id: Chemicals + name: guide-entry-chemicals + text: "/ServerInfo/Guidebook/Chemicals.xml" + - type: guideEntry id: Janitorial name: guide-entry-janitorial diff --git a/Resources/Prototypes/Guidebook/ss14.yml b/Resources/Prototypes/Guidebook/ss14.yml index bb98b11fcf..bcf474b773 100644 --- a/Resources/Prototypes/Guidebook/ss14.yml +++ b/Resources/Prototypes/Guidebook/ss14.yml @@ -6,3 +6,4 @@ - Controls - Jobs - Survival + - Chemicals diff --git a/Resources/ServerInfo/Guidebook/Chemicals.xml b/Resources/ServerInfo/Guidebook/Chemicals.xml new file mode 100644 index 0000000000..e157dbb437 --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Chemicals.xml @@ -0,0 +1,34 @@ + +# Chemicals + +Chemicals are a powerful tool that can cause a variety of effects when consumed. Some can be found in plants, purchased from cargo, or be synthesized through combination with other chemicals. + +Knowing different types of chemicals and their effects is important for being able to manage injury and danger. + +## Elements + + +## Medicine + + +## Narcotics + + +## Pyrotechnics + + +## Toxins + + +## Foods + + +## Botanical + + +## Biological + + +## Other + + diff --git a/Resources/Textures/Interface/Misc/beakerlarge.png b/Resources/Textures/Interface/Misc/beakerlarge.png new file mode 100644 index 0000000000000000000000000000000000000000..4e0fb0fc0619fad51251435287c6ec77c25a08e0 GIT binary patch literal 239 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJZJsWUAr*6y6C_v{Cy4Yk1sWV^ zm>9zQZ7TbG!Jy&|cjLMuK1X Date: Sun, 4 Jun 2023 17:06:42 -0400 Subject: [PATCH 064/474] Medical Doctor guidebook. (#16769) * Medical Doctor guide. * small wording update and cauterization * Minor adjustments, move Cloning and Cryo out of MD * Update Cryo Text + Guidehelp Tags * Update Resources/ServerInfo/Guidebook/Medical/Cryogenics.xml --------- Co-authored-by: Owai-Seek <> Co-authored-by: Moony --- Resources/Locale/en-US/guidebook/guides.ftl | 4 + .../Entities/Objects/Materials/materials.yml | 3 + .../Machines/Computers/computers.yml | 3 + .../Machines/Medical/biomass_reclaimer.yml | 3 + .../Structures/Machines/Medical/cryo_pod.yml | 3 + .../Structures/Machines/cloning_machine.yml | 3 + .../Structures/Machines/medical_scanner.yml | 3 + Resources/Prototypes/Guidebook/medical.yml | 23 ++++++ .../Prototypes/Guidebook/shiftandcrew.yml | 1 + .../ServerInfo/Guidebook/Medical/Cloning.xml | 23 ++++++ .../Guidebook/Medical/Cryogenics.xml | 41 ++++++++++ .../Guidebook/Medical/Medical Doctor.xml | 74 +++++++++++++++++++ .../ServerInfo/Guidebook/Medical/Medical.xml | 22 ++++++ 13 files changed, 206 insertions(+) create mode 100644 Resources/Prototypes/Guidebook/medical.yml create mode 100644 Resources/ServerInfo/Guidebook/Medical/Cloning.xml create mode 100644 Resources/ServerInfo/Guidebook/Medical/Cryogenics.xml create mode 100644 Resources/ServerInfo/Guidebook/Medical/Medical Doctor.xml create mode 100644 Resources/ServerInfo/Guidebook/Medical/Medical.xml diff --git a/Resources/Locale/en-US/guidebook/guides.ftl b/Resources/Locale/en-US/guidebook/guides.ftl index 805eac357d..9c525db3c7 100644 --- a/Resources/Locale/en-US/guidebook/guides.ftl +++ b/Resources/Locale/en-US/guidebook/guides.ftl @@ -17,6 +17,10 @@ guide-entry-survival = Survival guide-entry-chemicals = Chemicals guide-entry-ss14 = Space Station 14 guide-entry-janitorial = Janitorial +guide-entry-medical = Medical +guide-entry-medicaldoctor = Medical Doctor +guide-entry-cloning = Cloning +guide-entry-cryogenics = Cryogenics guide-entry-science = Science guide-entry-anomalous-research = Anomalous Research diff --git a/Resources/Prototypes/Entities/Objects/Materials/materials.yml b/Resources/Prototypes/Entities/Objects/Materials/materials.yml index e6c1febdf3..fffc9e5b51 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/materials.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/materials.yml @@ -203,6 +203,9 @@ sprite: /Textures/Objects/Misc/monkeycube.rsi state: cube color: "#8A9A5B" + - type: GuideHelp + guides: + - Cloning - type: entity parent: MaterialBiomass diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml index a06fc8f401..3720cf8706 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml @@ -757,6 +757,9 @@ - type: Damageable damageContainer: Inorganic damageModifierSet: StrongMetallic + - type: GuideHelp + guides: + - Cloning - type: entity id: ComputerSalvageExpedition diff --git a/Resources/Prototypes/Entities/Structures/Machines/Medical/biomass_reclaimer.yml b/Resources/Prototypes/Entities/Structures/Machines/Medical/biomass_reclaimer.yml index 9e31abd1ba..312fc0bcad 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Medical/biomass_reclaimer.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Medical/biomass_reclaimer.yml @@ -22,3 +22,6 @@ path: /Audio/Ambience/Objects/reclaimer_ambience.ogg - type: Machine board: BiomassReclaimerMachineCircuitboard + - type: GuideHelp + guides: + - Cloning diff --git a/Resources/Prototypes/Entities/Structures/Machines/Medical/cryo_pod.yml b/Resources/Prototypes/Entities/Structures/Machines/Medical/cryo_pod.yml index 7587373948..d72534c561 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Medical/cryo_pod.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Medical/cryo_pod.yml @@ -105,3 +105,6 @@ - type: CryoPodAir - type: ContainerTemperatureDamageThresholds coldDamageThreshold: 10 + - type: GuideHelp + guides: + - Cryogenics diff --git a/Resources/Prototypes/Entities/Structures/Machines/cloning_machine.yml b/Resources/Prototypes/Entities/Structures/Machines/cloning_machine.yml index 15ce16a6f5..cb27dfc1af 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/cloning_machine.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/cloning_machine.yml @@ -83,3 +83,6 @@ machine_board: !type:Container machine_parts: !type:Container clonepod-bodyContainer: !type:ContainerSlot + - type: GuideHelp + guides: + - Cloning diff --git a/Resources/Prototypes/Entities/Structures/Machines/medical_scanner.yml b/Resources/Prototypes/Entities/Structures/Machines/medical_scanner.yml index 80a0cb0d95..4d3ea4adb1 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/medical_scanner.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/medical_scanner.yml @@ -88,3 +88,6 @@ - type: EmptyOnMachineDeconstruct containers: - scanner-bodyContainer + - type: GuideHelp + guides: + - Cloning diff --git a/Resources/Prototypes/Guidebook/medical.yml b/Resources/Prototypes/Guidebook/medical.yml new file mode 100644 index 0000000000..5155facce5 --- /dev/null +++ b/Resources/Prototypes/Guidebook/medical.yml @@ -0,0 +1,23 @@ +- type: guideEntry + id: Medical + name: guide-entry-medical + text: "/ServerInfo/Guidebook/Medical/Medical.xml" + children: + - Medical Doctor + - Cloning + - Cryogenics + +- type: guideEntry + id: Medical Doctor + name: guide-entry-medicaldoctor + text: "/ServerInfo/Guidebook/Medical/Medical Doctor.xml" + +- type: guideEntry + id: Cloning + name: guide-entry-cloning + text: "/ServerInfo/Guidebook/Medical/Cloning.xml" + +- type: guideEntry + id: Cryogenics + name: guide-entry-cryogenics + text: "/ServerInfo/Guidebook/Medical/Cryogenics.xml" diff --git a/Resources/Prototypes/Guidebook/shiftandcrew.yml b/Resources/Prototypes/Guidebook/shiftandcrew.yml index fc37b330bf..01ca99a956 100644 --- a/Resources/Prototypes/Guidebook/shiftandcrew.yml +++ b/Resources/Prototypes/Guidebook/shiftandcrew.yml @@ -9,6 +9,7 @@ - Security - Janitorial - Salvage + - Medical - type: guideEntry id: Survival diff --git a/Resources/ServerInfo/Guidebook/Medical/Cloning.xml b/Resources/ServerInfo/Guidebook/Medical/Cloning.xml new file mode 100644 index 0000000000..866327ba03 --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Medical/Cloning.xml @@ -0,0 +1,23 @@ + +# Cloning +If all else fails, patients will need to be cloned. This should only be used as a last resort, if recovery is impossible. This is most often the case when the body has started to rot, or if they have excessive amounts of damage. + +Cloning itself is relatively simple. (Assuming the network is set.) Just drag a body into the scanner, check the cloning console, and clone! If they've taken cellular damage, or have rotted for too long, the results can be... less than pleasant. + +As a note: Cloning isn't always available, and it would be best not to rely on it. Science might be able to set up cloning, if it's unavailable. + + + + + + +## Biomass +Creating a clone requires biomass, which, gruesomely, involves recycling organic material. Be it crew members without a soul, station pets, or hostile creatures that have been 'taken care of', things can often be recycled. + +Dragging a body onto the biomass reclaimer (with your cursor) will mulch it for re-use. If it's a crew member, it's common practice to strip the body and return departmental gear before doing such. + + + + + + diff --git a/Resources/ServerInfo/Guidebook/Medical/Cryogenics.xml b/Resources/ServerInfo/Guidebook/Medical/Cryogenics.xml new file mode 100644 index 0000000000..36cf5d181d --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Medical/Cryogenics.xml @@ -0,0 +1,41 @@ + +# Cryogenics +Cryogenics can be a bit daunting to understand, but hopefully, quick run through of this diagram, you'll learn how to work it! So, let's go over what each part does: + +- Air in: Air comes in here through the distro or an air tank, giving those inside something to breathe, and the freezer something to chill. +- Gas pump: Limits the network pressure, so those in the tube aren't crushed. +- Freezer: Chills the air, and by extension, patients in the tube, so Cryoxadone can activate. +- Gas filters: Removes waste gas (Carbon Dioxide and Nitrous Oxide) from the loop. +- Air out: Waste gasses go here, either into a storage tank, or into the waste network. + + + + + + + + + + + + + + + + + + + + + + + + + +Not every network will look like this, but hopefully, it's enough to give you the basic gist of how it's functioning. + +An important thing to note, winter clothing (and hardsuits) will make cryogenic treatment less, or completely ineffective. Be sure to remove cold preventative clothing before placing people in the pod. + +## Using the Pod +Once things have been set up, you're going to require a specific medication, Cryoxadone. Cryoxadone heals all damage types when a patient is chilled, and can either be pre-adminsitered (with a pill), or loaded into the cell directly with a beaker. Do note, patients won't begin to heal until they've chilled to the appropriate temperature, it may be worthwhile to wait a bit before placing a beaker inside. + diff --git a/Resources/ServerInfo/Guidebook/Medical/Medical Doctor.xml b/Resources/ServerInfo/Guidebook/Medical/Medical Doctor.xml new file mode 100644 index 0000000000..72bdfcad6b --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Medical/Medical Doctor.xml @@ -0,0 +1,74 @@ + +# Medical Doctor +It's time to heal. Or at least, try to heal, anyway. Medical Doctors are the primary caretakers of every boo boo and ouchie crewmembers get on the station, be it a small scratch, or boiled skin. + +This guide will give you a basic outline of the treatment options you have available, triage, and other avenues of care. + +## The Basics +There are two ways to tell what's ailing someone: Taking a scan (with a health analyzer or a medical PDA), or examining them, with a shift-click, and clicking the heart symbol. + +It's best to do both, if possible, as some things (such as poison, or radiation) don't show up on examination, while others (such as blood levels) don't show up on an analyzer. + + + + + + + +## Medication and Treatment Options +Before we go any further, it's probably a good idea to go over damage types, and what will heal them The wiki has more extensive info available, but these are commonly used. + +An important note: Most medication has an overdose level, which will cause harm to your patient. Chemicals also take time to metabolise in pill form, if you want things to act quickly, use a syringe. + +- Brute Damage: Bicaridine or Bruise Packs +- Burn Damage: Dermaline or Ointment +- Toxin (Poison): Dylovene +- Toxin (Radiation) Hyronalin or Arithrazine +- Airloss: Dexaline or Inaprovaline +- Bloodloss: Dexaline (Examine the patient, if pale, they still need blood or iron.) +- Bleeding: Tranexamic acid and Gauze (Bleeding can also be cauterized with burn damage.) + +Many stations are stocked with kits in storage, and all medics have some equipment in their starting belt. + + + + + + + + + + + + + + + + + +## Basic Treatment and Triage +Examine your patient, and note down the important details: Are they alive? Bleeding? What type of damage? + +If alive, treat them as best as you can. Patients are in critical condition at 100 damage, and dead at 200. Keep this in mind when choosing how to treat them. Emergency Pens and Epinephrine are often used to keep patients stable. + +If possible, buckle them to a medical bed, if you need time to treat them, strap them to a stasis bed instead. Just keep in mind that metabolism (and by extension, healing chemicals) are slowed to a crawl when on stasis, they'll need to be taken off of it for the medicine to be effective. (But Blood Packs, Ointment, and Brute packs all work as normal.) + + + + +## Death and Revival +You can't save them all, sometimes, death happens. Depending on the status of the body, if there's a soul present, and if the body has started rotting, there are a few things that can be done. + +1. Do they have a soul attached? You can tell if, when examining, the following phrase is displayed: "Their soul has departed." If this isn't displayed, consider storing the body in a morgue tray, or using them for biomass. + +2. Is the body rotting? If it is, sadly, they'll have to be cloned. A rotting body can't be brought back with a defibrillator. (See Cloning) + +3. If they have a soul, and aren't rotten, it's possible to revive them. Not counting airloss, Defibrillator's can be used to revive patients under 200 total damage. Chemicals don't metabolise in the dead, but brute packs and ointment can still patch them up. Use them to bring their numbers down enough for revival. + + + + + + + + diff --git a/Resources/ServerInfo/Guidebook/Medical/Medical.xml b/Resources/ServerInfo/Guidebook/Medical/Medical.xml new file mode 100644 index 0000000000..22a4149833 --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Medical/Medical.xml @@ -0,0 +1,22 @@ + +# Medical +This is the department where people go to when they're hurt, it's up to the folks working here to fix them. + +Right now, medbay is divided into two different sets of care: + +## Medical Treatment + + + + + + + +## Chemical Production + + + + + + + From cd8e5ae34abb634533173e7f78e28e688a1f78e9 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 4 Jun 2023 17:07:46 -0400 Subject: [PATCH 065/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 2fb912c949..19b07b0731 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: ElectroJr - changes: - - {message: Fixed being able to eat and drink despite wearing a mask., type: Fix} - id: 3440 - time: '2023-04-17T07:56:42.0000000+00:00' - author: PuroSlavKing changes: - {message: Added InHand sprites for cloaks!, type: Add} @@ -2904,3 +2899,8 @@ Entries: and is now allowing psychologists to board Origin Station., type: Fix} id: 3939 time: '2023-06-04T20:11:15.0000000+00:00' +- author: Owai-Seek + changes: + - {message: 'Adds Medical Doctor, Cryo, and Cloning Guidebooks', type: Add} + id: 3940 + time: '2023-06-04T21:06:43.0000000+00:00' From 5b36355541aaca1e0ee6fd8986204bfc3a6cf789 Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Mon, 5 Jun 2023 09:33:50 +1200 Subject: [PATCH 066/474] Fix guidebook examine not working in lobby (#17093) --- Content.Client/Examine/ExamineSystem.cs | 4 +- .../Controls/GuideEntityEmbed.xaml.cs | 3 +- Content.Client/Guidebook/GuidebookSystem.cs | 40 ++++++++++++------- Content.Client/Verbs/VerbSystem.cs | 2 +- Content.Shared/Verbs/Verb.cs | 3 +- 5 files changed, 33 insertions(+), 19 deletions(-) diff --git a/Content.Client/Examine/ExamineSystem.cs b/Content.Client/Examine/ExamineSystem.cs index 0109f90cc5..9a563a8638 100644 --- a/Content.Client/Examine/ExamineSystem.cs +++ b/Content.Client/Examine/ExamineSystem.cs @@ -327,9 +327,9 @@ public void VerbButtonPressed(BaseButton.ButtonEventArgs obj) } } - public void DoExamine(EntityUid entity, bool centeredOnCursor=true) + public void DoExamine(EntityUid entity, bool centeredOnCursor = true, EntityUid? userOverride = null) { - var playerEnt = _playerManager.LocalPlayer?.ControlledEntity; + var playerEnt = userOverride ?? _playerManager.LocalPlayer?.ControlledEntity; if (playerEnt == null) return; diff --git a/Content.Client/Guidebook/Controls/GuideEntityEmbed.xaml.cs b/Content.Client/Guidebook/Controls/GuideEntityEmbed.xaml.cs index 34b4f3bdaa..fc885b3655 100644 --- a/Content.Client/Guidebook/Controls/GuideEntityEmbed.xaml.cs +++ b/Content.Client/Guidebook/Controls/GuideEntityEmbed.xaml.cs @@ -79,7 +79,8 @@ protected override void KeyBindDown(GUIBoundKeyEventArgs args) // do examination? if (args.Function == ContentKeyFunctions.ExamineEntity) { - _examineSystem.DoExamine(entity.Value); + _examineSystem.DoExamine(entity.Value, + userOverride: _guidebookSystem.GetGuidebookUser()); args.Handle(); return; } diff --git a/Content.Client/Guidebook/GuidebookSystem.cs b/Content.Client/Guidebook/GuidebookSystem.cs index acaa51524b..a3c55a0f0e 100644 --- a/Content.Client/Guidebook/GuidebookSystem.cs +++ b/Content.Client/Guidebook/GuidebookSystem.cs @@ -9,6 +9,7 @@ using Content.Shared.Verbs; using Robust.Client.GameObjects; using Robust.Client.Player; +using Robust.Shared.Map; using Robust.Shared.Player; using Robust.Shared.Utility; @@ -29,6 +30,8 @@ public sealed class GuidebookSystem : EntitySystem public event Action, List?, string?, bool, string?>? OnGuidebookOpen; public const string GuideEmbedTag = "GuideEmbeded"; + private EntityUid _defaultUser; + /// public override void Initialize() { @@ -41,6 +44,23 @@ public override void Initialize() OnGuidebookControlsTestGetAlternateVerbs); } + /// + /// Gets a user entity to use for verbs and examinations. If the player has no attached entity, this will use a + /// dummy client-side entity so that users can still use the guidebook when not attached to anything (e.g., in the + /// lobby) + /// + public EntityUid GetGuidebookUser() + { + var user = _playerManager.LocalPlayer!.ControlledEntity; + if (user != null) + return user.Value; + + if (!Exists(_defaultUser)) + _defaultUser = Spawn(null, MapCoordinates.Nullspace); + + return _defaultUser; + } + private void OnGetVerbs(EntityUid uid, GuideHelpComponent component, GetVerbsEvent args) { if (component.Guides.Count == 0 || _tags.HasTag(uid, GuideEmbedTag)) @@ -114,34 +134,26 @@ private void OnGuidebookControlsTestInteractHand(EntityUid uid, GuidebookControl _audioSystem.PlayGlobal(speech.SpeechSounds, Filter.Local(), false, speech.AudioParams); } - public void FakeClientActivateInWorld(EntityUid activated) { - var user = _playerManager.LocalPlayer!.ControlledEntity; - if (user is null) - return; - var activateMsg = new ActivateInWorldEvent(user.Value, activated); - RaiseLocalEvent(activated, activateMsg, true); + var activateMsg = new ActivateInWorldEvent(GetGuidebookUser(), activated); + RaiseLocalEvent(activated, activateMsg); } public void FakeClientAltActivateInWorld(EntityUid activated) { - var user = _playerManager.LocalPlayer!.ControlledEntity; - if (user is null) - return; // Get list of alt-interact verbs - var verbs = _verbSystem.GetLocalVerbs(activated, user.Value, typeof(AlternativeVerb)); + var verbs = _verbSystem.GetLocalVerbs(activated, GetGuidebookUser(), typeof(AlternativeVerb), force: true); if (!verbs.Any()) return; - _verbSystem.ExecuteVerb(verbs.First(), user.Value, activated); + _verbSystem.ExecuteVerb(verbs.First(), GetGuidebookUser(), activated); } public void FakeClientUse(EntityUid activated) { - var user = _playerManager.LocalPlayer!.ControlledEntity ?? EntityUid.Invalid; - var activateMsg = new InteractHandEvent(user, activated); - RaiseLocalEvent(activated, activateMsg, true); + var activateMsg = new InteractHandEvent(GetGuidebookUser(), activated); + RaiseLocalEvent(activated, activateMsg); } } diff --git a/Content.Client/Verbs/VerbSystem.cs b/Content.Client/Verbs/VerbSystem.cs index c55c3df841..1fcd7fd184 100644 --- a/Content.Client/Verbs/VerbSystem.cs +++ b/Content.Client/Verbs/VerbSystem.cs @@ -214,7 +214,7 @@ public void ExecuteVerb(EntityUid target, Verb verb) return; } - if (verb.ClientExclusive) + if (verb.ClientExclusive || target.IsClientSide()) // is this a client exclusive (gui) verb? ExecuteVerb(verb, user.Value, target); else diff --git a/Content.Shared/Verbs/Verb.cs b/Content.Shared/Verbs/Verb.cs index 047dfa5db9..cd5edc22d9 100644 --- a/Content.Shared/Verbs/Verb.cs +++ b/Content.Shared/Verbs/Verb.cs @@ -54,7 +54,8 @@ public class Verb : IComparable public EntityUid EventTarget = EntityUid.Invalid; /// - /// If a verb is only defined client-side, this should be set to true. + /// Whether a verb is only defined client-side. Note that this has nothing to do with whether the target of + /// the verb is client-side /// /// /// If true, the client will not also ask the server to run this verb when executed locally. This just From 09d16964c4e5f86af0010150fbc53cf67e44e7df Mon Sep 17 00:00:00 2001 From: Sir Winters <7543955+Owai-Seek@users.noreply.github.com> Date: Sun, 4 Jun 2023 17:34:29 -0400 Subject: [PATCH 067/474] Chef Guidebook (#17120) Co-authored-by: Owai-Seek <> Co-authored-by: Moony --- Resources/Locale/en-US/guidebook/guides.ftl | 2 + .../Prototypes/Guidebook/shiftandcrew.yml | 13 ++++ Resources/ServerInfo/Guidebook/Chef.xml | 73 +++++++++++++++++++ .../ServerInfo/Guidebook/Food Recipes.xml | 65 +++++++++++++++++ 4 files changed, 153 insertions(+) create mode 100644 Resources/ServerInfo/Guidebook/Chef.xml create mode 100644 Resources/ServerInfo/Guidebook/Food Recipes.xml diff --git a/Resources/Locale/en-US/guidebook/guides.ftl b/Resources/Locale/en-US/guidebook/guides.ftl index 9c525db3c7..4b5452804f 100644 --- a/Resources/Locale/en-US/guidebook/guides.ftl +++ b/Resources/Locale/en-US/guidebook/guides.ftl @@ -17,6 +17,8 @@ guide-entry-survival = Survival guide-entry-chemicals = Chemicals guide-entry-ss14 = Space Station 14 guide-entry-janitorial = Janitorial +guide-entry-chef = Chef +guide-entry-foodrecipes = Food Recipes guide-entry-medical = Medical guide-entry-medicaldoctor = Medical Doctor guide-entry-cloning = Cloning diff --git a/Resources/Prototypes/Guidebook/shiftandcrew.yml b/Resources/Prototypes/Guidebook/shiftandcrew.yml index 01ca99a956..726b80cbac 100644 --- a/Resources/Prototypes/Guidebook/shiftandcrew.yml +++ b/Resources/Prototypes/Guidebook/shiftandcrew.yml @@ -3,6 +3,7 @@ name: guide-entry-jobs text: "/ServerInfo/Guidebook/Jobs.xml" children: + - Chef - Botany - Engineering - Science @@ -25,3 +26,15 @@ id: Janitorial name: guide-entry-janitorial text: "/ServerInfo/Guidebook/Janitorial.xml" + +- type: guideEntry + id: Chef + name: guide-entry-chef + text: "/ServerInfo/Guidebook/Chef.xml" + children: + - Food Recipes + +- type: guideEntry + id: Food Recipes + name: guide-entry-foodrecipes + text: "/ServerInfo/Guidebook/Food Recipes.xml" diff --git a/Resources/ServerInfo/Guidebook/Chef.xml b/Resources/ServerInfo/Guidebook/Chef.xml new file mode 100644 index 0000000000..65a413059c --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Chef.xml @@ -0,0 +1,73 @@ + +# Chef +A fella has gotta eat, and it's the chef's job to make sure folks have something other than junk to munch on. + +First and foremost, you'll need to familiarize yourself with the kitchen, and the tools available to you. + + + + + + + + + + + + + + + +## Kitchen Prep: + +It's hard to put into words how to play chef without feeling like you're being given orders, but here are some basics. + +- Check what you have on hand when it comes to ingredients, most kitchens have some Flour, Rice, Eggs, Monkey Cubes, and a few other things to get started with. +- Try your hand at mixing up some dough by putting water and flour together in a beaker. (Use the sinks!) +- Check the Wiki (or Food Recipes) guidebook for things you can make, and put all the listed ingredients into a microwave to cook it into a meal. +- Set up mouse traps. Yes, really. It's easy to see all your hard work disappear if you don't take precautions for mice infestations. + +Once you're a bit more experienced and familiar with what you can make, it might be best to put together a few menus, or a "cheat sheet" so you can give a list of ingredients to botany. + +## Mixing Dough: +Add Flour and Water together in a beaker. (Use the sink for water!) + + + + + + +## Making Flour: +Place wheat in a grinder (with a beaker placed inside) and grind it up! + + + + + + +## Getting Plants: +Ask Botany for what you need, without a botanist, you may need to grow more plants yourself. + + + + + + +## Gathering Milk: +Alt-Click on a Cow with a container in your hand. (Beakers, Buckets, Milk Jugs, ect.) + + + + + +## How to Butcher: +In most cases, you should be able to use a knife directly on a creature that's dead. It's best to do this in the freezer, as the results are... messy. + +Monkeys, however, (and other humanoids), need to be dragged onto a meatspike to be butchered. + + + + + + + diff --git a/Resources/ServerInfo/Guidebook/Food Recipes.xml b/Resources/ServerInfo/Guidebook/Food Recipes.xml new file mode 100644 index 0000000000..7508bda2aa --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Food Recipes.xml @@ -0,0 +1,65 @@ + +## Starting Out +This is not an extensive list of recipes, these listings are to showcase the basics. + +Mixes are done in a Beaker, foods are cooked in a Microwave. Cook times will be listed. + +WARNING: This is not an automatically generated list, things here may become outdated. The wiki has much more than is listed here. + +## The Basics: Mixing + +- Dough = 15 Flour, 10 Water +- Cornmeal Dough = 1 Egg (6u), 10 Milk, 15 Cornmeal +- Tofu = 5 Enzyme, 30 Soy Milk +- Pie Dough = 2 Eggs (12u), 15 Flour, 5 Table Salt +- Cake Batter = 2 Eggs(12u), 15 flour, 5 Sugar +- Vegan Cake Batter = 15 Soy Milk, 15 Flour, 5 Sugar +- Butter = 30 Milk, 5 Table Salt +- Cheese Wheel = 5 Enzyme, 30 Soy Milk +- Meatball = 1 Egg (6u), 5 Flour, 5 Uncooked Animal Proteins +- Uncooked Animal Protein: Grind Raw Meat + + + + + + + + + + + + + + + +## Secondary Products + +- Dough Slice: Cut Dough +- Bun: Microwave Dough Slice for 5 Seconds +- Cutlet: Slice Raw Meat +- Cheese Wedge: Slice Cheese Wheel + +## Food Examples + +- Bread: Microwave Dough for 10 Seconds +- Plain Burger: Microwave 1 Bun and 1 Raw Meat for 10 Seconds +- Tomato Soup: 10u Water, 1 Bowl, and 2 Tomatoes for 10 Seconds +- Citrus Salad: 1 Bowl, 1 Lemon, 1 Lime, 1 Orange for 5 Seconds +- Margherita Pizza: Microwave 1 Dough, 1 Cheese Wedge, and 4 Tomatoes for 30 Seconds +- Cake: 1 Cake Batter for 15 Seconds +- Apple Pie: 1 Pie Dough, 3 Apples, and 1 Pie Tin for 15 Seconds + + + + + + + + + + + + + + From 66ed5c85a463b69d0e76db2cac24337a4202276a Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 4 Jun 2023 17:35:32 -0400 Subject: [PATCH 068/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 19b07b0731..a1e69b739d 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: PuroSlavKing - changes: - - {message: Added InHand sprites for cloaks!, type: Add} - id: 3441 - time: '2023-04-17T22:21:49.0000000+00:00' - author: PuroSlavKing changes: - {message: Added research magboots in RND!, type: Add} @@ -2904,3 +2899,8 @@ Entries: - {message: 'Adds Medical Doctor, Cryo, and Cloning Guidebooks', type: Add} id: 3940 time: '2023-06-04T21:06:43.0000000+00:00' +- author: Owai-Seek + changes: + - {message: Added Chef Guidebook, type: Add} + id: 3941 + time: '2023-06-04T21:34:29.0000000+00:00' From 69f6756cae90d95f10bc874414a2d4b98cbb7ac7 Mon Sep 17 00:00:00 2001 From: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> Date: Sun, 4 Jun 2023 18:23:27 -0400 Subject: [PATCH 069/474] Replace industrial welder with experimental welder for Advanced Tools (#17127) --- Resources/Prototypes/Entities/Structures/Machines/lathe.yml | 2 +- Resources/Prototypes/Recipes/Lathes/tools.yml | 4 ++-- Resources/Prototypes/Research/industrial.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index 627f4a9261..3018fbe5cb 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -250,7 +250,7 @@ - ClothingBackpackHolding - ClothingBackpackSatchelHolding - ClothingBackpackDuffelHolding - - WelderIndustrialAdvanced + - WelderExperimental - JawsOfLife - type: entity diff --git a/Resources/Prototypes/Recipes/Lathes/tools.yml b/Resources/Prototypes/Recipes/Lathes/tools.yml index 2a4341c14a..a9e86e928b 100644 --- a/Resources/Prototypes/Recipes/Lathes/tools.yml +++ b/Resources/Prototypes/Recipes/Lathes/tools.yml @@ -186,8 +186,8 @@ Plastic: 100 - type: latheRecipe - id: WelderIndustrialAdvanced - result: WelderIndustrialAdvanced + id: WelderExperimental + result: WelderExperimental completetime: 6 materials: Steel: 800 diff --git a/Resources/Prototypes/Research/industrial.yml b/Resources/Prototypes/Research/industrial.yml index fd8ec3bd63..0061d78c3d 100644 --- a/Resources/Prototypes/Research/industrial.yml +++ b/Resources/Prototypes/Research/industrial.yml @@ -181,7 +181,7 @@ tier: 2 cost: 10000 recipeUnlocks: - - WelderIndustrialAdvanced + - WelderExperimental - PowerDrill - JawsOfLife From 5326b72f5ba8e163762f27785a5b5659a32ea8d3 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 4 Jun 2023 18:24:31 -0400 Subject: [PATCH 070/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index a1e69b739d..fca2b551ee 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: PuroSlavKing - changes: - - {message: Added research magboots in RND!, type: Add} - id: 3442 - time: '2023-04-17T22:26:31.0000000+00:00' - author: Kit0vras changes: - {message: Fixed non-appearing ERT equipment., type: Fix} @@ -2904,3 +2899,9 @@ Entries: - {message: Added Chef Guidebook, type: Add} id: 3941 time: '2023-06-04T21:34:29.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: Advanced tools now has the recipe for the Experimental welding tool + instead of the Industrial welding tool, type: Fix} + id: 3942 + time: '2023-06-04T22:23:27.0000000+00:00' From fff6a7640cd213421c423c349cc9b2c516e90622 Mon Sep 17 00:00:00 2001 From: HerCoyote23 <131214189+HerCoyote23@users.noreply.github.com> Date: Sun, 4 Jun 2023 17:49:17 -0700 Subject: [PATCH 071/474] Spears and Bats are big now (#17126) --- .../Entities/Objects/Weapons/Melee/baseball_bat.yml | 2 +- .../Prototypes/Entities/Objects/Weapons/Melee/spear.yml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/baseball_bat.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/baseball_bat.yml index 0cacd6378f..78df0f9989 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/baseball_bat.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/baseball_bat.yml @@ -17,7 +17,7 @@ types: Blunt: 8 - type: Item - size: 20 + size: 80 - type: Clothing quickEquip: false slots: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml index b6155d8062..f0bda9a491 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml @@ -23,7 +23,7 @@ types: Piercing: 15 - type: Item - size: 25 + size: 95 - type: Clothing quickEquip: false slots: @@ -103,7 +103,7 @@ types: Piercing: 18 - type: Item - size: 25 + size: 95 - type: Clothing quickEquip: false slots: @@ -183,7 +183,7 @@ types: Piercing: 21 - type: Item - size: 25 + size: 95 - type: Clothing quickEquip: false slots: @@ -265,7 +265,7 @@ Piercing: 12 Radiation: 9 - type: Item - size: 25 + size: 95 - type: Clothing quickEquip: false slots: From cdad71f48ca59d7902c95efa135881ab2a7ecb47 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 4 Jun 2023 20:50:21 -0400 Subject: [PATCH 072/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index fca2b551ee..ffd5ef3148 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: Kit0vras - changes: - - {message: Fixed non-appearing ERT equipment., type: Fix} - id: 3443 - time: '2023-04-17T22:28:09.0000000+00:00' - author: deltanedas changes: - {message: Fixed being able to remove powercells from ninja suits., type: Fix} @@ -2905,3 +2900,8 @@ Entries: instead of the Industrial welding tool, type: Fix} id: 3942 time: '2023-06-04T22:23:27.0000000+00:00' +- author: HerCoyote23 + changes: + - {message: Spears and Bats are bigger now, type: Tweak} + id: 3943 + time: '2023-06-05T00:49:18.0000000+00:00' From d96f3e653056f25ee975c5d3fe003c577fa647f7 Mon Sep 17 00:00:00 2001 From: Puro <103608145+PuroSlavKing@users.noreply.github.com> Date: Mon, 5 Jun 2023 03:54:12 +0300 Subject: [PATCH 073/474] [SG] IHS remove (#17081) --- .../Roles/Jobs/Fun/misc_startinggear.yml | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml b/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml index a966bf017c..7c01ca2d14 100644 --- a/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml +++ b/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml @@ -1,21 +1,5 @@ #Misc outfit startingGear definitions. -#IHS Void Suit Outfit -- type: startingGear - id: IHSGear - equipment: - jumpsuit: ClothingUniformJumpsuitColorBlack - back: ClothingBackpackFilled - head: ClothingHeadHelmetIHSVoidHelm - gloves: ClothingHandsGlovesIhscombat - outerClothing: IHSVoidsuit - shoes: ClothingShoesBootsJack - id: PassengerPDA - ears: ClothingHeadsetService - innerclothingskirt: ClothingUniformJumpskirtColorBlack - satchel: ClothingBackpackSatchelFilled - duffelbag: ClothingBackpackDuffelFilled - #Skeleton Biker - type: startingGear id: SkeletonBiker From 181ab585deddb1047cbf3fd990ea576cf4de4c09 Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Mon, 5 Jun 2023 03:55:30 +0300 Subject: [PATCH 074/474] comit (#17037) --- .../Roles/Jobs/Fun/misc_startinggear.yml | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml b/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml index 7c01ca2d14..aae21134ad 100644 --- a/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml +++ b/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml @@ -174,3 +174,23 @@ head: ClothingHeadHatTophat jumpsuit: ClothingUniformJumpsuitJacketMonkey id: BartenderIDCard + +#Brigmedic + +- type: startingGear + id: BrigmedicGear + equipment: + jumpsuit: ClothingUniformJumpsuitBrigmedic + outerClothing: ClothingOuterCoatAMG + back: ClothingBackpackBrigmedicFilled + shoes: ClothingShoesColorRed + gloves: ClothingHandsGlovesNitrile + eyes: ClothingEyesHudMedical + head: ClothingHeadHatBeretBrigmedic + id: BrigmedicPDA + ears: ClothingHeadsetBrigmedic + mask: ClothingMaskBreathMedicalSecurity + belt: ClothingBeltMedicalFilled + innerclothingskirt: ClothingUniformJumpskirtBrigmedic + satchel: ClothingBackpackSatchelBrigmedicFilled + duffelbag: ClothingBackpackDuffelBrigmedicFilled From c1644ccd48a844a8cc73af88813c4e6bae9c3780 Mon Sep 17 00:00:00 2001 From: Ilya246 <57039557+Ilya246@users.noreply.github.com> Date: Mon, 5 Jun 2023 04:57:45 +0400 Subject: [PATCH 075/474] Update Atmospherics.cs (#17125) --- Content.Shared/Atmos/Atmospherics.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Atmos/Atmospherics.cs b/Content.Shared/Atmos/Atmospherics.cs index 478fc01004..4afc1fdb5f 100644 --- a/Content.Shared/Atmos/Atmospherics.cs +++ b/Content.Shared/Atmos/Atmospherics.cs @@ -198,7 +198,7 @@ static Atmospherics() /// /// This is calculated to help prevent singlecap bombs (Overpowered tritium/oxygen single tank bombs) /// - public const float MinimumTritiumOxyburnEnergy = 2000000f; + public const float MinimumTritiumOxyburnEnergy = 430000f; public const float TritiumBurnOxyFactor = 100f; public const float TritiumBurnTritFactor = 10f; From 082d2041733e57f790c7c1b262eb656d014f1d44 Mon Sep 17 00:00:00 2001 From: Slava0135 <40753025+Slava0135@users.noreply.github.com> Date: Mon, 5 Jun 2023 05:23:54 +0300 Subject: [PATCH 076/474] Fix shield modifiers (#17071) * use uid instead of .Owner * a bit of refactoring * block damage reimplemented --- .../Blocking/BlockingSystem.User.cs | 36 ++++++++++++------- .../Blocking/Components/BlockingComponent.cs | 14 ++++++++ .../Damage/Systems/DamageableSystem.cs | 2 ++ 3 files changed, 39 insertions(+), 13 deletions(-) diff --git a/Content.Shared/Blocking/BlockingSystem.User.cs b/Content.Shared/Blocking/BlockingSystem.User.cs index e660e7f3b0..8967b91fd4 100644 --- a/Content.Shared/Blocking/BlockingSystem.User.cs +++ b/Content.Shared/Blocking/BlockingSystem.User.cs @@ -12,8 +12,8 @@ public sealed partial class BlockingSystem private void InitializeUser() { - SubscribeLocalEvent(OnDamageChanged); SubscribeLocalEvent(OnUserDamageModified); + SubscribeLocalEvent(OnDamageModified); SubscribeLocalEvent(OnParentChanged); SubscribeLocalEvent(OnInsertAttempt); @@ -39,27 +39,37 @@ private void OnAnchorChanged(EntityUid uid, BlockingUserComponent component, ref UserStopBlocking(uid, component); } - private void OnDamageChanged(EntityUid uid, BlockingUserComponent component, DamageChangedEvent args) - { - if (args.DamageDelta != null && args.DamageIncreased) - _damageable.TryChangeDamage(component.BlockingItem, args.DamageDelta, origin: args.Origin); - } - private void OnUserDamageModified(EntityUid uid, BlockingUserComponent component, DamageModifyEvent args) { - if (TryComp(component.BlockingItem, out var blockingComponent)) + if (TryComp(component.BlockingItem, out var blocking)) { - if (_proto.TryIndex(blockingComponent.PassiveBlockDamageModifer, out DamageModifierSetPrototype? passiveblockModifier) && !blockingComponent.IsBlocking) - args.Damage = DamageSpecifier.ApplyModifierSet(args.Damage, passiveblockModifier); + var blockFraction = blocking.IsBlocking ? blocking.ActiveBlockFraction : blocking.PassiveBlockFraction; + blockFraction = Math.Clamp(blockFraction, 0, 1); + _damageable.TryChangeDamage(component.BlockingItem, blockFraction * args.OriginalDamage); - if (_proto.TryIndex(blockingComponent.ActiveBlockDamageModifier, out DamageModifierSetPrototype? activeBlockModifier) && blockingComponent.IsBlocking) + args.Damage *= (1 - blockFraction); + + if (blocking.IsBlocking) { - args.Damage = DamageSpecifier.ApplyModifierSet(args.Damage, activeBlockModifier); - _audio.PlayPvs(blockingComponent.BlockSound, component.Owner, AudioParams.Default.WithVariation(0.2f)); + _audio.PlayPvs(blocking.BlockSound, uid, AudioParams.Default.WithVariation(0.2f)); } } } + private void OnDamageModified(EntityUid uid, BlockingComponent component, DamageModifyEvent args) + { + _proto.TryIndex(component.PassiveBlockDamageModifer, out var passiveblockModifier); + _proto.TryIndex(component.ActiveBlockDamageModifier, out var activeBlockModifier); + + var modifier = component.IsBlocking ? activeBlockModifier : passiveblockModifier; + if (modifier == null) + { + return; + } + + args.Damage = DamageSpecifier.ApplyModifierSet(args.Damage, modifier); + } + private void OnEntityTerminating(EntityUid uid, BlockingUserComponent component, ref EntityTerminatingEvent args) { if (!TryComp(component.BlockingItem, out var blockingComponent)) diff --git a/Content.Shared/Blocking/Components/BlockingComponent.cs b/Content.Shared/Blocking/Components/BlockingComponent.cs index 2468becf84..dfa22d323e 100644 --- a/Content.Shared/Blocking/Components/BlockingComponent.cs +++ b/Content.Shared/Blocking/Components/BlockingComponent.cs @@ -59,4 +59,18 @@ public sealed class BlockingComponent : Component ///
[DataField("blockSound")] public SoundSpecifier BlockSound = new SoundPathSpecifier("/Audio/Weapons/block_metal1.ogg"); + + /// + /// Fraction of original damage shield will take instead of user + /// when not blocking + /// + [DataField("passiveBlockFraction"), ViewVariables(VVAccess.ReadWrite)] + public float PassiveBlockFraction = 0.5f; + + /// + /// Fraction of original damage shield will take instead of user + /// when blocking + /// + [DataField("activeBlockFraction"), ViewVariables(VVAccess.ReadWrite)] + public float ActiveBlockFraction = 1.0f; } diff --git a/Content.Shared/Damage/Systems/DamageableSystem.cs b/Content.Shared/Damage/Systems/DamageableSystem.cs index f2644d647c..98e0ce0117 100644 --- a/Content.Shared/Damage/Systems/DamageableSystem.cs +++ b/Content.Shared/Damage/Systems/DamageableSystem.cs @@ -313,10 +313,12 @@ public sealed class DamageModifyEvent : EntityEventArgs, IInventoryRelayEvent // Whenever locational damage is a thing, this should just check only that bit of armour. public SlotFlags TargetSlots { get; } = ~SlotFlags.POCKET; + public readonly DamageSpecifier OriginalDamage; public DamageSpecifier Damage; public DamageModifyEvent(DamageSpecifier damage) { + OriginalDamage = damage; Damage = damage; } } From 3cf477eb2df15d0704432ca18434428951a8918c Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 4 Jun 2023 22:24:59 -0400 Subject: [PATCH 077/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index ffd5ef3148..404843059c 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: deltanedas - changes: - - {message: Fixed being able to remove powercells from ninja suits., type: Fix} - id: 3444 - time: '2023-04-17T22:30:41.0000000+00:00' - author: Nimfar changes: - {message: 'Renamed Gun Safes as well as their prototypes. On each safe of the @@ -2905,3 +2900,13 @@ Entries: - {message: Spears and Bats are bigger now, type: Tweak} id: 3943 time: '2023-06-05T00:49:18.0000000+00:00' +- author: Slava0135 + changes: + - {message: shields by default now block 50% of damage when not blocking and 100% + of damage when blocking., type: Tweak} + - {message: fixed shields affected by owner damage modifiers, type: Fix} + - {message: fixed shields taking damage from pressure if owner taking damage from + pressure (and etc.), type: Fix} + - {message: fixed shields making owner less resistant to damage, type: Fix} + id: 3944 + time: '2023-06-05T02:23:55.0000000+00:00' From 35ebcc66df31e34c168f0f2d1f8ba7f70ad699b0 Mon Sep 17 00:00:00 2001 From: Ubaser <134914314+UbaserB@users.noreply.github.com> Date: Mon, 5 Jun 2023 12:52:57 +1000 Subject: [PATCH 078/474] Transit: NEW Evacuation shuttle (#17095) * add shuttle * fix mistakes, improve consistency - adds tiny fans to airlock - changes LED to lights - adds supplies to med - engineering door changed to not be glass - added tile beneath engi and medbay door - changed security cell - added SMES to power - added variety (variantize) - saved as grid instead of map * apply changes - replaced plastic tiles with steel - removed fireaxe in bridge - rotated defib the correct way - switched a couple LED lights out - replaced potted plants and vending machines with their appropriate spawner - adds more chairs * fix defib changed from empty to filled --------- Co-authored-by: Ubaser --- Resources/Maps/Shuttles/emergency_transit.yml | 4543 +++++++++++++++++ Resources/Prototypes/Maps/cluster.yml | 2 + 2 files changed, 4545 insertions(+) create mode 100644 Resources/Maps/Shuttles/emergency_transit.yml diff --git a/Resources/Maps/Shuttles/emergency_transit.yml b/Resources/Maps/Shuttles/emergency_transit.yml new file mode 100644 index 0000000000..0a4415e97e --- /dev/null +++ b/Resources/Maps/Shuttles/emergency_transit.yml @@ -0,0 +1,4543 @@ +meta: + format: 5 + postmapinit: false +tilemap: + 0: Space + 23: FloorDark + 32: FloorDarkPlastic + 59: FloorReinforced + 75: FloorSteelMono + 79: FloorTechMaint + 86: FloorWhiteMini + 94: Lattice + 95: Plating +entities: +- proto: "" + entities: + - uid: 2 + components: + - type: MetaData + - pos: -4.3957214,6.3308363 + parent: invalid + type: Transform + - chunks: + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAF8AAAAgAAABIAAAAxcAAAMXAAABFwAAACAAAAE7AAAAOwAAADsAAAAXAAABFwAAAV8AAABfAAAAAAAAAAAAAABfAAAASwAAABcAAAAXAAACFwAAABcAAAFfAAAATwAAAE8AAABPAAAATwAAAE8AAABPAAAAFwAAAgAAAAAAAAAAXwAAAEsAAAEXAAABFwAAARcAAAIXAAADFwAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAABcAAAEAAAAAAAAAAF8AAABLAAAAFwAAABcAAAAXAAABFwAAA18AAAAXAAABFwAAAhcAAABLAAAASwAAABcAAAAXAAADAAAAAAAAAABfAAAAXwAAAF8AAAAXAAAAFwAAAhcAAAJfAAAAIAAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + 1,-2: + ind: 1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAXgAAAF8AAABLAAACFwAAAEsAAAJfAAAAFwAAARcAAAEXAAAAFwAAARcAAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABfAAAASwAAABcAAABLAAABXwAAABcAAAAXAAAAFwAAAxcAAAAXAAADXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEsAAAAXAAACSwAAAl8AAAAXAAACFwAAAxcAAAEXAAAAFwAAAV8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABLAAADFwAAAEsAAAFfAAAAFwAAABcAAAEXAAABFwAAARcAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAASwAAARcAAANLAAABXwAAABcAAAMXAAABFwAAAhcAAAMXAAACXwAAAF4AAAAAAAAAAAAAAF8AAABfAAAAXwAAABcAAAIXAAADFwAAAyAAAAAgAAAAFwAAAV8AAABfAAAAIAAAAF8AAABfAAAAAAAAAAAAAABPAAAAFwAAARcAAAAXAAAAFwAAAxcAAAIXAAADFwAAARcAAAAXAAAAFwAAABcAAAIXAAADFwAAAwAAAAAAAAAAXwAAABcAAAIXAAAAFwAAABcAAAEXAAAAFwAAARcAAAAXAAABFwAAARcAAAAXAAAAFwAAABcAAAAAAAAAAAAAAE8AAAAXAAAAFwAAARcAAAMXAAACSwAAAEsAAAEXAAABSwAAAksAAAIXAAAAFwAAAxcAAAIXAAADAAAAAAAAAABfAAAAXwAAAF8AAAAXAAACXwAAACAAAAEgAAADIAAAAV8AAABfAAAAIAAAAhcAAANfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAABfAAAAFwAAAl8AAABWAAABVgAAAlYAAAJWAAABVgAAAF8AAAAXAAABXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAANfAAAAVgAAAlYAAAJWAAABVgAAA1YAAAFfAAAAFwAAAV8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAAAXAAACIAAAAFYAAABWAAADVgAAAlYAAABWAAADXwAAABcAAAFfAAAAXgAAAAAAAAAAAAAAAAAAAF8AAAAgAAABIAAAA18AAAAgAAACXwAAAF8AAABfAAAAXwAAAF8AAAAgAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAgAAACFwAAAxcAAAEXAAAAFwAAAhcAAAEXAAADFwAAARcAAAAXAAADFwAAAxcAAANfAAAAAAAAAAAAAAAAAAAAIAAAAiAAAAEXAAADFwAAARcAAAAXAAABFwAAAxcAAAAXAAACFwAAARcAAAMgAAACIAAAAw== + 0,0: + ind: 0,0 + tiles: AAAAAAAAAAAAAAAAXgAAACAAAAIgAAAAFwAAABcAAAAXAAAAFwAAAhcAAAAXAAABFwAAAyAAAAMgAAACXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAIAAAAyAAAAAgAAABIAAAACAAAAMgAAAAIAAAAyAAAAMgAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + 1,-1: + ind: 1,-1 + tiles: XgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + type: MapGrid + - type: Broadphase + - angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - nextUpdate: -307.6002253 + type: SpreaderGrid + - type: Shuttle + - nextUpdate: 6051.0947718 + type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + angle: -7.853981633974483 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 62: 9,-19 + - node: + angle: -6.283185307179586 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 63: 5,-2 + 64: 13,-2 + - node: + angle: -4.71238898038469 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 60: 15,-10 + 61: 15,-8 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 58: 3,-10 + 59: 3,-8 + - node: + angle: -6.283185307179586 rad + color: '#FFFFFFFF' + id: Bot + decals: + 65: 12,-18 + 66: 13,-18 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 0: 7,-8 + 1: 10,-8 + 2: 8,-8 + 3: 11,-8 + 4: 5,-12 + 5: 5,-14 + 6: 5,-13 + 7: 5,-15 + 8: 5,-16 + 9: 3,-18 + 10: 3,-19 + 11: 3,-20 + 12: 11,-1 + 13: 12,-1 + 14: 9,-1 + 15: 7,-1 + 16: 6,-1 + 17: 9,-13 + 18: 9,-14 + 19: 9,-15 + 67: 7,-12 + 68: 7,-13 + 69: 7,-14 + 70: 7,-15 + 71: 7,-16 + - node: + angle: -3.141592653589793 rad + color: '#B02E26FF' + id: BrickTileWhiteCornerNw + decals: + 28: 13,-16 + - node: + angle: -3.141592653589793 rad + color: '#B02E26FF' + id: BrickTileWhiteCornerSw + decals: + 27: 13,-12 + - node: + angle: -3.141592653589793 rad + color: '#3AB3DAFF' + id: BrickTileWhiteLineE + decals: + 21: 7,-6 + 22: 7,-5 + 23: 7,-4 + - node: + angle: -3.141592653589793 rad + color: '#F9801DFF' + id: BrickTileWhiteLineE + decals: + 55: 9,-19 + 56: 9,-20 + 57: 9,-18 + - node: + angle: -3.141592653589793 rad + color: '#3C44AAFF' + id: BrickTileWhiteLineN + decals: + 40: 4,-2 + 41: 5,-2 + 42: 6,-2 + 43: 7,-2 + 44: 8,-2 + 45: 9,-2 + 46: 10,-2 + 47: 11,-2 + 48: 11,-2 + 49: 12,-2 + 50: 13,-2 + 51: 14,-2 + - node: + angle: -3.141592653589793 rad + color: '#B02E26FF' + id: BrickTileWhiteLineN + decals: + 29: 12,-16 + 30: 11,-16 + 31: 10,-16 + 32: 9,-16 + - node: + angle: -3.141592653589793 rad + color: '#3AB3DAFF' + id: BrickTileWhiteLineS + decals: + 20: 9,-8 + - node: + angle: -3.141592653589793 rad + color: '#3C44AAFF' + id: BrickTileWhiteLineS + decals: + 52: 5,-4 + 53: 13,-4 + - node: + angle: -3.141592653589793 rad + color: '#B02E26FF' + id: BrickTileWhiteLineS + decals: + 33: 12,-12 + 34: 11,-12 + 35: 10,-12 + 36: 9,-12 + - node: + angle: -3.141592653589793 rad + color: '#3AB3DAFF' + id: BrickTileWhiteLineW + decals: + 24: 11,-6 + 25: 11,-5 + 26: 11,-4 + - node: + angle: -3.141592653589793 rad + color: '#B02E26FF' + id: BrickTileWhiteLineW + decals: + 37: 13,-13 + 38: 13,-14 + 39: 13,-15 + - node: + angle: -3.141592653589793 rad + color: '#F9801DFF' + id: BrickTileWhiteLineW + decals: + 54: 7,-19 + type: DecalGrid + - type: RadiationGridResistance + - version: 2 + data: + tiles: + 2,-5: + 0: 65535 + 0,-6: + 0: 51200 + 0,-5: + 0: 52428 + 1,-6: + 0: 65280 + 1,-5: + 0: 65535 + 2,-6: + 0: 65280 + 3,-6: + 0: 65280 + 3,-5: + 0: 65535 + 4,-6: + 0: 4096 + 4,-5: + 0: 4369 + 0,-4: + 0: 8 + 0,-3: + 0: 52424 + 0,-2: + 0: 2252 + 0,-1: + 0: 34952 + 1,-4: + 0: 65535 + 1,-3: + 0: 65535 + 1,-2: + 0: 65535 + 1,-1: + 0: 65535 + 2,-4: + 0: 65535 + 2,-3: + 0: 65535 + 2,-2: + 0: 65535 + 2,-1: + 0: 65535 + 3,-4: + 0: 30591 + 3,-3: + 0: 65535 + 3,-2: + 0: 32767 + 3,-1: + 0: 65535 + 0,0: + 0: 8 + 1,0: + 0: 255 + 2,0: + 0: 255 + 3,0: + 0: 127 + 4,-3: + 0: 4368 + 4,-2: + 0: 17 + 4,-4: + 0: 1 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay +- proto: AirAlarm + entities: + - uid: 3 + components: + - pos: 12.5,-6.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 198 + - 200 + - 558 + - 557 + - 204 + - 197 + - 203 + type: DeviceNetwork + - devices: + - 198 + - 200 + - 558 + - 557 + - 204 + - 197 + - 203 + type: DeviceList +- proto: AirCanister + entities: + - uid: 4 + components: + - anchored: True + pos: 12.5,-20.5 + parent: 2 + type: Transform + - bodyType: Static + type: Physics +- proto: AirlockCommandLocked + entities: + - uid: 5 + components: + - pos: 5.5,-2.5 + parent: 2 + type: Transform + - uid: 6 + components: + - pos: 13.5,-2.5 + parent: 2 + type: Transform +- proto: AirlockEngineeringLocked + entities: + - uid: 7 + components: + - pos: 8.5,-18.5 + parent: 2 + type: Transform +- proto: AirlockGlassShuttle + entities: + - uid: 8 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 2 + type: Transform + - uid: 9 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-9.5 + parent: 2 + type: Transform + - uid: 10 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-7.5 + parent: 2 + type: Transform + - uid: 11 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-9.5 + parent: 2 + type: Transform +- proto: AirlockMedicalGlassLocked + entities: + - uid: 12 + components: + - pos: 9.5,-6.5 + parent: 2 + type: Transform +- proto: AirlockSecurityLocked + entities: + - uid: 13 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-10.5 + parent: 2 + type: Transform +- proto: APCHighCapacity + entities: + - uid: 14 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-17.5 + parent: 2 + type: Transform + - uid: 15 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-10.5 + parent: 2 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 584 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-9.5 + parent: 2 + type: Transform + - uid: 585 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 2 + type: Transform + - uid: 586 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-7.5 + parent: 2 + type: Transform + - uid: 587 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-9.5 + parent: 2 + type: Transform +- proto: Bed + entities: + - uid: 16 + components: + - pos: 13.5,-15.5 + parent: 2 + type: Transform +- proto: BedsheetBrown + entities: + - uid: 17 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-15.5 + parent: 2 + type: Transform + - nextSound: 33.6518485 + type: EmitSoundOnCollide +- proto: BedsheetMedical + entities: + - uid: 18 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-4.5 + parent: 2 + type: Transform + - nextSound: 3257.5560695 + type: EmitSoundOnCollide + - uid: 19 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-3.5 + parent: 2 + type: Transform + - nextSound: 3258.0080385 + type: EmitSoundOnCollide +- proto: BoxSyringe + entities: + - uid: 579 + components: + - pos: 8.410651,-3.2939768 + parent: 2 + type: Transform + - nextSound: 328.6298029 + type: EmitSoundOnCollide +- proto: BrigTimer + entities: + - uid: 592 + components: + - pos: 11.5,-13.5 + parent: 2 + type: Transform +- proto: CableApcExtension + entities: + - uid: 20 + components: + - pos: 11.5,-6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 21 + components: + - pos: 11.5,-5.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 22 + components: + - pos: 8.5,-17.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 23 + components: + - pos: 15.5,-17.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 24 + components: + - pos: 2.5,-7.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 25 + components: + - pos: 12.5,-13.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 26 + components: + - pos: 13.5,-13.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 27 + components: + - pos: 8.5,-17.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 28 + components: + - pos: 7.5,-17.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 29 + components: + - pos: 7.5,-18.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 30 + components: + - pos: 7.5,-19.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 31 + components: + - pos: 7.5,-20.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 32 + components: + - pos: 6.5,-20.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 33 + components: + - pos: 13.5,-10.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 34 + components: + - pos: 13.5,-9.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 35 + components: + - pos: 13.5,-12.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 36 + components: + - pos: 13.5,-7.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 37 + components: + - pos: 12.5,-7.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 38 + components: + - pos: 11.5,-7.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 39 + components: + - pos: 10.5,-7.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 40 + components: + - pos: 9.5,-7.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 41 + components: + - pos: 9.5,-6.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 42 + components: + - pos: 9.5,-5.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 43 + components: + - pos: 9.5,-4.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 44 + components: + - pos: 9.5,-3.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 45 + components: + - pos: 8.5,-3.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 46 + components: + - pos: 7.5,-3.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 47 + components: + - pos: 9.5,-2.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 48 + components: + - pos: 8.5,-18.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 49 + components: + - pos: 9.5,-1.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 50 + components: + - pos: 9.5,-0.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 51 + components: + - pos: 8.5,-2.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 52 + components: + - pos: 7.5,-2.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 53 + components: + - pos: 6.5,-2.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 54 + components: + - pos: 5.5,-2.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 55 + components: + - pos: 4.5,-2.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 56 + components: + - pos: 4.5,-1.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 57 + components: + - pos: 14.5,-10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 58 + components: + - pos: 15.5,-10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 59 + components: + - pos: 16.5,-10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 60 + components: + - pos: 16.5,-9.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 61 + components: + - pos: 16.5,-8.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 62 + components: + - pos: 16.5,-7.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 63 + components: + - pos: 16.5,-6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 64 + components: + - pos: 15.5,-6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 65 + components: + - pos: 14.5,-6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 66 + components: + - pos: 13.5,-6.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 67 + components: + - pos: 13.5,-5.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 68 + components: + - pos: 13.5,-4.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 69 + components: + - pos: 13.5,-3.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 70 + components: + - pos: 13.5,-2.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 71 + components: + - pos: 13.5,-1.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 72 + components: + - pos: 12.5,-1.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 73 + components: + - pos: 11.5,-1.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 74 + components: + - pos: 11.5,-0.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 75 + components: + - pos: 11.5,0.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 76 + components: + - pos: 2.5,-8.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 77 + components: + - pos: 2.5,-9.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 78 + components: + - pos: 2.5,-10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 79 + components: + - pos: 3.5,-10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 80 + components: + - pos: 4.5,-10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 81 + components: + - pos: 5.5,-10.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 82 + components: + - pos: 5.5,-10.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 83 + components: + - pos: 4.5,-10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 84 + components: + - pos: 9.5,-10.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 85 + components: + - pos: 6.5,-10.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 86 + components: + - pos: 7.5,-10.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 87 + components: + - pos: 8.5,-10.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 88 + components: + - pos: 10.5,-10.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 89 + components: + - pos: 11.5,-10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 90 + components: + - pos: 12.5,-10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 91 + components: + - pos: 13.5,-11.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 92 + components: + - pos: 10.5,-17.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 93 + components: + - pos: 9.5,-21.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 94 + components: + - pos: 14.5,-17.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 95 + components: + - pos: 14.5,-19.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 96 + components: + - pos: 11.5,-15.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 97 + components: + - pos: 11.5,-14.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 98 + components: + - pos: 11.5,-13.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 99 + components: + - pos: 3.5,-6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 100 + components: + - pos: 2.5,-6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 101 + components: + - pos: 13.5,-8.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 102 + components: + - pos: 3.5,-5.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 103 + components: + - pos: 3.5,-2.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 104 + components: + - pos: 3.5,-3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 105 + components: + - pos: 4.5,-0.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 106 + components: + - pos: 4.5,0.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 107 + components: + - pos: 4.5,1.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 108 + components: + - pos: 3.5,0.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 109 + components: + - pos: 13.5,-1.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 110 + components: + - pos: 14.5,-1.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 111 + components: + - pos: 14.5,-0.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 112 + components: + - pos: 14.5,0.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 113 + components: + - pos: 14.5,0.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 114 + components: + - pos: 15.5,0.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 115 + components: + - pos: 15.5,-5.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 116 + components: + - pos: 15.5,-3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 117 + components: + - pos: 15.5,-2.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 118 + components: + - pos: 15.5,-1.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 119 + components: + - pos: 14.5,-11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 120 + components: + - pos: 14.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 121 + components: + - pos: 13.5,-15.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 122 + components: + - pos: 12.5,-15.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 123 + components: + - pos: 4.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 124 + components: + - pos: 5.5,-15.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 125 + components: + - pos: 5.5,-16.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 126 + components: + - pos: 5.5,-17.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 127 + components: + - pos: 5.5,-18.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 128 + components: + - pos: 6.5,-18.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 129 + components: + - pos: 3.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 130 + components: + - pos: 3.5,-21.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 131 + components: + - pos: 3.5,-20.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 132 + components: + - pos: 4.5,-20.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 133 + components: + - pos: 5.5,-20.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 134 + components: + - pos: 7.5,-21.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 135 + components: + - pos: 8.5,-21.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 136 + components: + - pos: 3.5,-11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 428 + components: + - pos: 14.5,-16.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 471 + components: + - pos: 15.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 549 + components: + - pos: 10.5,-21.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 550 + components: + - pos: 11.5,-21.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 551 + components: + - pos: 12.5,-21.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 552 + components: + - pos: 13.5,-21.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 553 + components: + - pos: 14.5,-21.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 554 + components: + - pos: 14.5,-20.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 555 + components: + - pos: 14.5,-19.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 556 + components: + - pos: 15.5,-21.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 562 + components: + - pos: 10.5,0.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 563 + components: + - pos: 9.5,0.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 564 + components: + - pos: 8.5,0.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 570 + components: + - pos: 12.5,-16.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 571 + components: + - pos: 12.5,-17.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 572 + components: + - pos: 12.5,-18.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 573 + components: + - pos: 12.5,-19.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 574 + components: + - pos: 12.5,-20.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures +- proto: CableHV + entities: + - uid: 137 + components: + - pos: 15.5,-19.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 139 + components: + - pos: 15.5,-17.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 299 + components: + - pos: 15.5,-17.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 576 + components: + - pos: 15.5,-18.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures +- proto: CableMV + entities: + - uid: 140 + components: + - pos: 8.5,-11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 141 + components: + - pos: 8.5,-12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 142 + components: + - pos: 8.5,-13.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 143 + components: + - pos: 8.5,-14.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 144 + components: + - pos: 8.5,-10.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 145 + components: + - pos: 8.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 146 + components: + - pos: 15.5,-17.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 147 + components: + - pos: 12.5,-10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 148 + components: + - pos: 14.5,-16.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 149 + components: + - pos: 13.5,-16.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 150 + components: + - pos: 12.5,-16.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 151 + components: + - pos: 11.5,-16.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 152 + components: + - pos: 10.5,-16.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 153 + components: + - pos: 9.5,-16.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 154 + components: + - pos: 8.5,-17.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 155 + components: + - pos: 8.5,-16.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 156 + components: + - pos: 11.5,-10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 157 + components: + - pos: 10.5,-10.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 158 + components: + - pos: 9.5,-10.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 159 + components: + - pos: 13.5,-10.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 160 + components: + - pos: 15.5,-16.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures +- proto: CableTerminal + entities: + - uid: 575 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-19.5 + parent: 2 + type: Transform +- proto: ChairOfficeLight + entities: + - uid: 161 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-5.5 + parent: 2 + type: Transform + - uid: 162 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-12.5 + parent: 2 + type: Transform +- proto: ChairPilotSeat + entities: + - uid: 163 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-12.5 + parent: 2 + type: Transform + - uid: 164 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-11.5 + parent: 2 + type: Transform + - uid: 165 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-13.5 + parent: 2 + type: Transform + - uid: 166 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-13.5 + parent: 2 + type: Transform + - uid: 167 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-14.5 + parent: 2 + type: Transform + - uid: 168 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-15.5 + parent: 2 + type: Transform + - uid: 169 + components: + - pos: 11.5,-7.5 + parent: 2 + type: Transform + - uid: 170 + components: + - pos: 10.5,-7.5 + parent: 2 + type: Transform + - uid: 171 + components: + - pos: 8.5,-7.5 + parent: 2 + type: Transform + - uid: 172 + components: + - pos: 7.5,-7.5 + parent: 2 + type: Transform + - uid: 173 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-18.5 + parent: 2 + type: Transform + - uid: 174 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-17.5 + parent: 2 + type: Transform + - uid: 175 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-0.5 + parent: 2 + type: Transform + - uid: 176 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-0.5 + parent: 2 + type: Transform + - uid: 177 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-0.5 + parent: 2 + type: Transform + - uid: 178 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-0.5 + parent: 2 + type: Transform + - uid: 179 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-0.5 + parent: 2 + type: Transform + - uid: 180 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-19.5 + parent: 2 + type: Transform + - uid: 181 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-12.5 + parent: 2 + type: Transform + - uid: 182 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-13.5 + parent: 2 + type: Transform + - uid: 183 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-14.5 + parent: 2 + type: Transform + - uid: 184 + components: + - pos: 12.5,-17.5 + parent: 2 + type: Transform + - uid: 185 + components: + - pos: 13.5,-17.5 + parent: 2 + type: Transform + - uid: 361 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-11.5 + parent: 2 + type: Transform + - uid: 594 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-12.5 + parent: 2 + type: Transform + - uid: 595 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-13.5 + parent: 2 + type: Transform + - uid: 596 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-14.5 + parent: 2 + type: Transform + - uid: 597 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-15.5 + parent: 2 + type: Transform +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 186 + components: + - pos: 15.5,-8.5 + parent: 2 + type: Transform + - uid: 187 + components: + - pos: 3.5,-8.5 + parent: 2 + type: Transform + - uid: 188 + components: + - pos: 5.5,-20.5 + parent: 2 + type: Transform + - uid: 189 + components: + - pos: 9.5,-15.5 + parent: 2 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 190 + components: + - pos: 14.5,-1.5 + parent: 2 + type: Transform +- proto: ClosetFireFilled + entities: + - uid: 191 + components: + - pos: 9.5,-17.5 + parent: 2 + type: Transform +- proto: ComputerCrewMonitoring + entities: + - uid: 561 + components: + - pos: 8.5,0.5 + parent: 2 + type: Transform +- proto: ComputerEmergencyShuttle + entities: + - uid: 559 + components: + - pos: 9.5,0.5 + parent: 2 + type: Transform +- proto: ComputerRadar + entities: + - uid: 560 + components: + - pos: 10.5,0.5 + parent: 2 + type: Transform +- proto: CrayonBox + entities: + - uid: 591 + components: + - pos: 8.623848,-9.36953 + parent: 2 + type: Transform + - nextSound: 1051.5237623 + type: EmitSoundOnCollide +- proto: DefibrillatorCabinetFilled + entities: + - uid: 1 + components: + - pos: 10.5,-2.5 + parent: 2 + type: Transform +- proto: DogBed + entities: + - uid: 192 + components: + - pos: 9.5,-1.5 + parent: 2 + type: Transform +- proto: EpinephrineChemistryBottle + entities: + - uid: 578 + components: + - pos: 8.598151,-3.4971018 + parent: 2 + type: Transform + - nextAttack: 401.8711134 + type: MeleeWeapon + - nextSound: 402.0711134 + type: EmitSoundOnCollide +- proto: ExtinguisherCabinetFilled + entities: + - uid: 193 + components: + - pos: 6.5,-6.5 + parent: 2 + type: Transform + - uid: 194 + components: + - pos: 14.5,-0.5 + parent: 2 + type: Transform + - uid: 195 + components: + - pos: 8.5,-19.5 + parent: 2 + type: Transform +- proto: FireAlarm + entities: + - uid: 196 + components: + - pos: 4.5,-6.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 197 + - 204 + - 557 + - 558 + - 198 + - 200 + - 203 + type: DeviceNetwork + - devices: + - 197 + - 204 + - 557 + - 558 + - 198 + - 200 + - 203 + type: DeviceList +- proto: Firelock + entities: + - uid: 197 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 196 + - 3 + type: DeviceNetwork + - uid: 198 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-6.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 196 + - 3 + type: DeviceNetwork + - uid: 199 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-18.5 + parent: 2 + type: Transform + - uid: 200 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-10.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 196 + - 3 + type: DeviceNetwork + - uid: 201 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 2 + type: Transform + - uid: 202 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-2.5 + parent: 2 + type: Transform + - uid: 203 + components: + - pos: 9.5,-6.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 196 + - 3 + type: DeviceNetwork +- proto: FirelockGlass + entities: + - uid: 204 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 196 + - 3 + type: DeviceNetwork + - uid: 205 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-16.5 + parent: 2 + type: Transform + - uid: 206 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-16.5 + parent: 2 + type: Transform + - uid: 207 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-16.5 + parent: 2 + type: Transform + - uid: 557 + components: + - pos: 6.5,-10.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 196 + - 3 + type: DeviceNetwork + - uid: 558 + components: + - pos: 7.5,-10.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 196 + - 3 + type: DeviceNetwork +- proto: Flash + entities: + - uid: 208 + components: + - pos: 11.444105,-11.399542 + parent: 2 + type: Transform + - nextAttack: 756.8198121 + type: MeleeWeapon + - nextSound: 757.0198121 + type: EmitSoundOnCollide + - uid: 209 + components: + - pos: 11.787855,-11.508917 + parent: 2 + type: Transform + - nextAttack: 757.7026162 + type: MeleeWeapon + - nextSound: 757.9026162 + type: EmitSoundOnCollide +- proto: FlashlightSeclite + entities: + - uid: 210 + components: + - pos: 12.444105,-11.36624 + parent: 2 + type: Transform + - nextSound: 763.7946382 + type: EmitSoundOnCollide +- proto: GasOutletInjector + entities: + - uid: 211 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-20.5 + parent: 2 + type: Transform + - nextSound: 332.0444447 + type: EmitSoundOnCollide +- proto: GasPassiveVent + entities: + - uid: 212 + components: + - pos: 16.5,-15.5 + parent: 2 + type: Transform + - nextSound: 3520.8746969 + type: EmitSoundOnCollide +- proto: GasPipeBend + entities: + - uid: 214 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - nextSound: 2745.0333529 + type: EmitSoundOnCollide + - uid: 215 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-20.5 + parent: 2 + type: Transform + - nextSound: 2746.3998907 + type: EmitSoundOnCollide + - uid: 216 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-20.5 + parent: 2 + type: Transform + - nextSound: 2763.8009526 + type: EmitSoundOnCollide + - uid: 217 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 2 + type: Transform + - nextSound: 2862.0320468 + type: EmitSoundOnCollide + - uid: 218 + components: + - pos: 5.5,-2.5 + parent: 2 + type: Transform + - nextSound: 2864.2346577 + type: EmitSoundOnCollide + - uid: 219 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-8.5 + parent: 2 + type: Transform + - nextSound: 3808.2789299 + type: EmitSoundOnCollide + - uid: 220 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-8.5 + parent: 2 + type: Transform + - nextSound: 3789.6431486 + type: EmitSoundOnCollide + - uid: 221 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-17.5 + parent: 2 + type: Transform + - nextSound: 3436.9734529 + type: EmitSoundOnCollide + - uid: 222 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-12.5 + parent: 2 + type: Transform + - nextSound: 2919.8903554 + type: EmitSoundOnCollide + - uid: 223 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-8.5 + parent: 2 + type: Transform + - nextSound: 2940.8780546 + type: EmitSoundOnCollide + - uid: 224 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 2 + type: Transform + - nextSound: 2947.9853152 + type: EmitSoundOnCollide + - uid: 425 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-16.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - nextSound: 116.4599338 + type: EmitSoundOnCollide +- proto: GasPipeStraight + entities: + - uid: 225 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-17.5 + parent: 2 + type: Transform + - nextSound: 3259.4144722 + type: EmitSoundOnCollide + - uid: 226 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-17.5 + parent: 2 + type: Transform + - nextSound: 3439.0915485 + type: EmitSoundOnCollide + - uid: 227 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-19.5 + parent: 2 + type: Transform + - nextSound: 2735.3529557 + type: EmitSoundOnCollide + - uid: 228 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-19.5 + parent: 2 + type: Transform + - nextSound: 2736.4209284 + type: EmitSoundOnCollide + - uid: 229 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-19.5 + parent: 2 + type: Transform + - nextSound: 2737.1415893 + type: EmitSoundOnCollide + - uid: 230 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-20.5 + parent: 2 + type: Transform + - nextSound: 2749.2023971 + type: EmitSoundOnCollide + - uid: 231 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-19.5 + parent: 2 + type: Transform + - nextSound: 2766.0358716 + type: EmitSoundOnCollide + - uid: 232 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-18.5 + parent: 2 + type: Transform + - nextSound: 2766.4522386 + type: EmitSoundOnCollide + - uid: 233 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-17.5 + parent: 2 + type: Transform + - nextSound: 2766.9361892 + type: EmitSoundOnCollide + - uid: 234 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-16.5 + parent: 2 + type: Transform + - nextSound: 2768.3859822 + type: EmitSoundOnCollide + - uid: 235 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-15.5 + parent: 2 + type: Transform + - nextSound: 2768.9356168 + type: EmitSoundOnCollide + - uid: 236 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-14.5 + parent: 2 + type: Transform + - nextSound: 2769.3037298 + type: EmitSoundOnCollide + - uid: 237 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-13.5 + parent: 2 + type: Transform + - nextSound: 2769.6707009 + type: EmitSoundOnCollide + - uid: 238 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-12.5 + parent: 2 + type: Transform + - nextSound: 2770.0400471 + type: EmitSoundOnCollide + - uid: 239 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-10.5 + parent: 2 + type: Transform + - nextSound: 2770.8037341 + type: EmitSoundOnCollide + - uid: 240 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-11.5 + parent: 2 + type: Transform + - nextSound: 2785.9704616 + type: EmitSoundOnCollide + - uid: 241 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-11.5 + parent: 2 + type: Transform + - nextSound: 2786.8402523 + type: EmitSoundOnCollide + - uid: 242 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - nextSound: 2787.4241659 + type: EmitSoundOnCollide + - uid: 243 + components: + - pos: 5.5,-3.5 + parent: 2 + type: Transform + - nextSound: 2866.5868302 + type: EmitSoundOnCollide + - uid: 244 + components: + - pos: 5.5,-4.5 + parent: 2 + type: Transform + - nextSound: 2866.8861006 + type: EmitSoundOnCollide + - uid: 245 + components: + - pos: 5.5,-5.5 + parent: 2 + type: Transform + - nextSound: 2867.219399 + type: EmitSoundOnCollide + - uid: 246 + components: + - pos: 5.5,-6.5 + parent: 2 + type: Transform + - nextSound: 2867.5026555 + type: EmitSoundOnCollide + - uid: 247 + components: + - pos: 5.5,-7.5 + parent: 2 + type: Transform + - nextSound: 2868.9569832 + type: EmitSoundOnCollide + - uid: 248 + components: + - pos: 5.5,-9.5 + parent: 2 + type: Transform + - nextSound: 2869.5535296 + type: EmitSoundOnCollide + - uid: 249 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-17.5 + parent: 2 + type: Transform + - nextSound: 3258.9290278 + type: EmitSoundOnCollide + - uid: 250 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-17.5 + parent: 2 + type: Transform + - nextSound: 3258.3464976 + type: EmitSoundOnCollide + - uid: 251 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-18.5 + parent: 2 + type: Transform + - nextSound: 3434.8174886 + type: EmitSoundOnCollide + - uid: 252 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-18.5 + parent: 2 + type: Transform + - nextSound: 2895.3162421 + type: EmitSoundOnCollide + - uid: 253 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-18.5 + parent: 2 + type: Transform + - nextSound: 2901.1193949 + type: EmitSoundOnCollide + - uid: 254 + components: + - pos: 7.5,-17.5 + parent: 2 + type: Transform + - nextSound: 2902.2234064 + type: EmitSoundOnCollide + - uid: 255 + components: + - pos: 7.5,-16.5 + parent: 2 + type: Transform + - nextSound: 2902.7058364 + type: EmitSoundOnCollide + - uid: 256 + components: + - pos: 7.5,-15.5 + parent: 2 + type: Transform + - nextSound: 2903.5576273 + type: EmitSoundOnCollide + - uid: 257 + components: + - pos: 7.5,-14.5 + parent: 2 + type: Transform + - nextSound: 2904.0580693 + type: EmitSoundOnCollide + - uid: 258 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-12.5 + parent: 2 + type: Transform + - nextSound: 2921.6079142 + type: EmitSoundOnCollide + - uid: 259 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-12.5 + parent: 2 + type: Transform + - nextSound: 2921.9939065 + type: EmitSoundOnCollide + - uid: 260 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-12.5 + parent: 2 + type: Transform + - nextSound: 2922.442441 + type: EmitSoundOnCollide + - uid: 261 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-12.5 + parent: 2 + type: Transform + - nextSound: 2922.9107558 + type: EmitSoundOnCollide + - uid: 262 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - nextSound: 2923.9607105 + type: EmitSoundOnCollide + - uid: 263 + components: + - pos: 7.5,-13.5 + parent: 2 + type: Transform + - nextSound: 2933.219682 + type: EmitSoundOnCollide + - uid: 264 + components: + - pos: 7.5,-11.5 + parent: 2 + type: Transform + - nextSound: 2935.4727276 + type: EmitSoundOnCollide + - uid: 265 + components: + - pos: 7.5,-10.5 + parent: 2 + type: Transform + - nextSound: 2936.3696832 + type: EmitSoundOnCollide + - uid: 266 + components: + - pos: 7.5,-9.5 + parent: 2 + type: Transform + - nextSound: 2936.7906055 + type: EmitSoundOnCollide + - uid: 267 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 2 + type: Transform + - nextSound: 2942.3644129 + type: EmitSoundOnCollide + - uid: 268 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-8.5 + parent: 2 + type: Transform + - nextSound: 2942.6298983 + type: EmitSoundOnCollide + - uid: 269 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-8.5 + parent: 2 + type: Transform + - nextSound: 2942.9461865 + type: EmitSoundOnCollide + - uid: 270 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-8.5 + parent: 2 + type: Transform + - nextSound: 2944.1823101 + type: EmitSoundOnCollide + - uid: 271 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-2.5 + parent: 2 + type: Transform + - nextSound: 2956.6935576 + type: EmitSoundOnCollide + - uid: 272 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-3.5 + parent: 2 + type: Transform + - nextSound: 2957.1949697 + type: EmitSoundOnCollide + - uid: 273 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-4.5 + parent: 2 + type: Transform + - nextSound: 2957.761478 + type: EmitSoundOnCollide + - uid: 274 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-5.5 + parent: 2 + type: Transform + - nextSound: 2958.6292957 + type: EmitSoundOnCollide + - uid: 275 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-6.5 + parent: 2 + type: Transform + - nextSound: 2959.1127075 + type: EmitSoundOnCollide + - uid: 276 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-7.5 + parent: 2 + type: Transform + - nextSound: 2959.663946 + type: EmitSoundOnCollide + - uid: 278 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-18.5 + parent: 2 + type: Transform + - nextSound: 3715.165827 + type: EmitSoundOnCollide +- proto: GasPipeTJunction + entities: + - uid: 279 + components: + - pos: 9.5,-19.5 + parent: 2 + type: Transform + - nextSound: 2732.0367839 + type: EmitSoundOnCollide + - uid: 280 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-20.5 + parent: 2 + type: Transform + - nextSound: 2761.7328809 + type: EmitSoundOnCollide + - uid: 281 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-11.5 + parent: 2 + type: Transform + - nextSound: 2782.2203814 + type: EmitSoundOnCollide + - uid: 282 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-8.5 + parent: 2 + type: Transform + - nextSound: 3811.6990956 + type: EmitSoundOnCollide + - uid: 283 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-18.5 + parent: 2 + type: Transform + - nextSound: 3432.5829122 + type: EmitSoundOnCollide + - uid: 284 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-18.5 + parent: 2 + type: Transform + - nextSound: 2897.885693 + type: EmitSoundOnCollide + - uid: 285 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-12.5 + parent: 2 + type: Transform + - nextSound: 2927.7827324 + type: EmitSoundOnCollide + - uid: 286 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-8.5 + parent: 2 + type: Transform + - nextSound: 2951.2359978 + type: EmitSoundOnCollide +- proto: GasPort + entities: + - uid: 287 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-20.5 + parent: 2 + type: Transform + - nextSound: 888.1016216 + type: EmitSoundOnCollide +- proto: GasVentPump + entities: + - uid: 288 + components: + - pos: 6.5,-19.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - nextSound: 2795.0326697 + type: EmitSoundOnCollide + - uid: 289 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-11.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - nextSound: 2796.7162828 + type: EmitSoundOnCollide + - uid: 290 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - nextSound: 698.8129273 + type: EmitSoundOnCollide + - uid: 291 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-19.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - nextSound: 852.7424978 + type: EmitSoundOnCollide + - uid: 292 + components: + - pos: 6.5,-7.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - nextSound: 3591.9398823 + type: EmitSoundOnCollide + - uid: 293 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-20.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - nextSound: 675.905591 + type: EmitSoundOnCollide +- proto: GasVentScrubber + entities: + - uid: 294 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-19.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - nextSound: 684.3802735 + type: EmitSoundOnCollide + - uid: 295 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-1.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - nextSound: 701.9492997 + type: EmitSoundOnCollide + - uid: 296 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-18.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - nextSound: 851.091997 + type: EmitSoundOnCollide + - uid: 297 + components: + - pos: 12.5,-7.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - nextSound: 3639.3711351 + type: EmitSoundOnCollide + - uid: 298 + components: + - pos: 13.5,-11.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - nextSound: 3618.7997382 + type: EmitSoundOnCollide +- proto: GeneratorUranium + entities: + - uid: 300 + components: + - pos: 15.5,-19.5 + parent: 2 + type: Transform +- proto: GravityGeneratorMini + entities: + - uid: 301 + components: + - pos: 14.5,-19.5 + parent: 2 + type: Transform +- proto: Grille + entities: + - uid: 302 + components: + - pos: 2.5,-8.5 + parent: 2 + type: Transform + - uid: 303 + components: + - pos: 16.5,-8.5 + parent: 2 + type: Transform + - uid: 304 + components: + - pos: 4.5,-5.5 + parent: 2 + type: Transform + - uid: 305 + components: + - pos: 4.5,-4.5 + parent: 2 + type: Transform + - uid: 306 + components: + - pos: 4.5,-3.5 + parent: 2 + type: Transform + - uid: 307 + components: + - pos: 14.5,-5.5 + parent: 2 + type: Transform + - uid: 308 + components: + - pos: 14.5,-4.5 + parent: 2 + type: Transform + - uid: 309 + components: + - pos: 14.5,-3.5 + parent: 2 + type: Transform + - uid: 310 + components: + - pos: 12.5,-10.5 + parent: 2 + type: Transform + - uid: 311 + components: + - pos: 11.5,-10.5 + parent: 2 + type: Transform + - uid: 312 + components: + - pos: 8.5,-11.5 + parent: 2 + type: Transform + - uid: 313 + components: + - pos: 8.5,-12.5 + parent: 2 + type: Transform + - uid: 314 + components: + - pos: 8.5,-13.5 + parent: 2 + type: Transform + - uid: 318 + components: + - pos: 2.5,-17.5 + parent: 2 + type: Transform + - uid: 319 + components: + - pos: 2.5,-18.5 + parent: 2 + type: Transform + - uid: 320 + components: + - pos: 2.5,-19.5 + parent: 2 + type: Transform + - uid: 321 + components: + - rot: 3.141592653589793 rad + pos: 8.5,1.5 + parent: 2 + type: Transform + - uid: 322 + components: + - rot: 3.141592653589793 rad + pos: 5.5,0.5 + parent: 2 + type: Transform + - uid: 323 + components: + - rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 2 + type: Transform + - uid: 324 + components: + - rot: 3.141592653589793 rad + pos: 7.5,1.5 + parent: 2 + type: Transform + - uid: 325 + components: + - pos: 5.5,1.5 + parent: 2 + type: Transform + - uid: 326 + components: + - rot: 3.141592653589793 rad + pos: 10.5,1.5 + parent: 2 + type: Transform + - uid: 327 + components: + - rot: 3.141592653589793 rad + pos: 11.5,1.5 + parent: 2 + type: Transform + - uid: 328 + components: + - rot: 3.141592653589793 rad + pos: 12.5,1.5 + parent: 2 + type: Transform + - uid: 329 + components: + - rot: 3.141592653589793 rad + pos: 13.5,1.5 + parent: 2 + type: Transform + - uid: 330 + components: + - pos: 13.5,0.5 + parent: 2 + type: Transform + - uid: 331 + components: + - rot: 3.141592653589793 rad + pos: 9.5,1.5 + parent: 2 + type: Transform + - uid: 332 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-6.5 + parent: 2 + type: Transform + - uid: 333 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-6.5 + parent: 2 + type: Transform + - uid: 334 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-6.5 + parent: 2 + type: Transform + - uid: 335 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 2 + type: Transform + - uid: 336 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-11.5 + parent: 2 + type: Transform + - uid: 337 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-12.5 + parent: 2 + type: Transform + - uid: 338 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-13.5 + parent: 2 + type: Transform + - uid: 339 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-14.5 + parent: 2 + type: Transform + - uid: 340 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-15.5 + parent: 2 + type: Transform + - uid: 421 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-17.5 + parent: 2 + type: Transform + - uid: 529 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-18.5 + parent: 2 + type: Transform + - uid: 567 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-19.5 + parent: 2 + type: Transform + - uid: 580 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-13.5 + parent: 2 + type: Transform + - uid: 581 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-14.5 + parent: 2 + type: Transform + - uid: 582 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-15.5 + parent: 2 + type: Transform + - uid: 583 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-13.5 + parent: 2 + type: Transform +- proto: Gyroscope + entities: + - uid: 341 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-17.5 + parent: 2 + type: Transform + - nextFire: 560.5758072 + type: Thruster +- proto: InflatableDoorStack + entities: + - uid: 342 + components: + - rot: -1.5707963267948966 rad + pos: 11.6196575,-17.425388 + parent: 2 + type: Transform + - nextSound: 596.1093703 + type: EmitSoundOnCollide +- proto: InflatableWallStack + entities: + - uid: 343 + components: + - rot: -1.5707963267948966 rad + pos: 11.218833,-17.441013 + parent: 2 + type: Transform + - nextSound: 593.5400327 + type: EmitSoundOnCollide +- proto: LockerMedicineFilled + entities: + - uid: 344 + components: + - pos: 7.5,-5.5 + parent: 2 + type: Transform +- proto: LockerSecurityFilled + entities: + - uid: 593 + components: + - pos: 9.5,-11.5 + parent: 2 + type: Transform +- proto: MedicalBed + entities: + - uid: 345 + components: + - pos: 11.5,-3.5 + parent: 2 + type: Transform + - uid: 346 + components: + - pos: 11.5,-4.5 + parent: 2 + type: Transform +- proto: MedkitBruteFilled + entities: + - uid: 347 + components: + - rot: -1.5707963267948966 rad + pos: 8.954886,-3.3356583 + parent: 2 + type: Transform + - nextSound: 610.1077468 + type: EmitSoundOnCollide +- proto: MedkitOxygenFilled + entities: + - uid: 348 + components: + - rot: -1.5707963267948966 rad + pos: 9.470511,-3.4919083 + parent: 2 + type: Transform + - nextSound: 612.4253881 + type: EmitSoundOnCollide +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 349 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-20.5 + parent: 2 + type: Transform + - uid: 350 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-20.5 + parent: 2 + type: Transform + - uid: 351 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-20.5 + parent: 2 + type: Transform + - uid: 352 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-20.5 + parent: 2 + type: Transform +- proto: PlushieLizard + entities: + - uid: 353 + components: + - pos: 7.3750105,0.676074 + parent: 2 + type: Transform + - nextAttack: 5292.589895 + type: MeleeWeapon + - nextSound: 5292.7898951 + type: EmitSoundOnCollide +- proto: PortableScrubber + entities: + - uid: 354 + components: + - pos: 13.5,-20.5 + parent: 2 + type: Transform +- proto: PosterContrabandVoteWeh + entities: + - uid: 355 + components: + - pos: 12.5,-4.5 + parent: 2 + type: Transform +- proto: PosterLegitBuild + entities: + - uid: 356 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-20.5 + parent: 2 + type: Transform +- proto: PosterLegitHelpOthers + entities: + - uid: 357 + components: + - pos: 6.5,-4.5 + parent: 2 + type: Transform +- proto: PosterLegitLoveIan + entities: + - uid: 358 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 2 + type: Transform +- proto: PosterLegitSecWatch + entities: + - uid: 359 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-12.5 + parent: 2 + type: Transform +- proto: PottedPlantRandom + entities: + - uid: 362 + components: + - pos: 13.5,-0.5 + parent: 2 + type: Transform + - uid: 363 + components: + - pos: 5.5,-0.5 + parent: 2 + type: Transform + - uid: 365 + components: + - pos: 6.5,-7.5 + parent: 2 + type: Transform + - uid: 366 + components: + - pos: 12.5,-7.5 + parent: 2 + type: Transform +- proto: PowerCellRecharger + entities: + - uid: 364 + components: + - pos: 10.5,-17.5 + parent: 2 + type: Transform +- proto: Poweredlight + entities: + - uid: 367 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-9.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 368 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-19.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 369 + components: + - pos: 10.5,-17.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 370 + components: + - pos: 14.5,-17.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 371 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-11.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 372 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-15.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 373 + components: + - pos: 5.5,-0.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 374 + components: + - pos: 13.5,-0.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 375 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-11.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 376 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-15.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 377 + components: + - pos: 7.5,-3.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 378 + components: + - pos: 11.5,-3.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 379 + components: + - pos: 12.5,0.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 380 + components: + - pos: 6.5,0.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 381 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-3.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 382 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 383 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 384 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-8.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 457 + components: + - pos: 12.5,-7.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 460 + components: + - pos: 6.5,-7.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound +- proto: RandomVendingDrinks + entities: + - uid: 577 + components: + - pos: 7.5,-20.5 + parent: 2 + type: Transform +- proto: RandomVendingSnacks + entities: + - uid: 590 + components: + - pos: 6.5,-20.5 + parent: 2 + type: Transform +- proto: ShuttleWindow + entities: + - uid: 213 + components: + - pos: 16.5,-18.5 + parent: 2 + type: Transform + - uid: 277 + components: + - pos: 16.5,-17.5 + parent: 2 + type: Transform + - uid: 315 + components: + - pos: 16.5,-19.5 + parent: 2 + type: Transform + - uid: 385 + components: + - pos: 4.5,-12.5 + parent: 2 + type: Transform + - uid: 386 + components: + - pos: 14.5,-4.5 + parent: 2 + type: Transform + - uid: 387 + components: + - pos: 4.5,-5.5 + parent: 2 + type: Transform + - uid: 388 + components: + - pos: 4.5,-4.5 + parent: 2 + type: Transform + - uid: 389 + components: + - pos: 14.5,-3.5 + parent: 2 + type: Transform + - uid: 390 + components: + - pos: 4.5,-3.5 + parent: 2 + type: Transform + - uid: 391 + components: + - pos: 4.5,-3.5 + parent: 2 + type: Transform + - uid: 392 + components: + - pos: 6.5,1.5 + parent: 2 + type: Transform + - uid: 393 + components: + - pos: 12.5,1.5 + parent: 2 + type: Transform + - uid: 394 + components: + - pos: 12.5,1.5 + parent: 2 + type: Transform + - uid: 395 + components: + - pos: 7.5,-6.5 + parent: 2 + type: Transform + - uid: 396 + components: + - pos: 8.5,-12.5 + parent: 2 + type: Transform + - uid: 397 + components: + - pos: 8.5,-6.5 + parent: 2 + type: Transform + - uid: 398 + components: + - pos: 4.5,-14.5 + parent: 2 + type: Transform + - uid: 399 + components: + - pos: 4.5,-11.5 + parent: 2 + type: Transform + - uid: 400 + components: + - pos: 4.5,-11.5 + parent: 2 + type: Transform + - uid: 401 + components: + - pos: 2.5,-19.5 + parent: 2 + type: Transform + - uid: 402 + components: + - pos: 2.5,-17.5 + parent: 2 + type: Transform + - uid: 403 + components: + - pos: 2.5,-18.5 + parent: 2 + type: Transform + - uid: 404 + components: + - pos: 4.5,-15.5 + parent: 2 + type: Transform + - uid: 405 + components: + - pos: 4.5,-13.5 + parent: 2 + type: Transform + - uid: 406 + components: + - pos: 8.5,-13.5 + parent: 2 + type: Transform + - uid: 407 + components: + - pos: 8.5,-11.5 + parent: 2 + type: Transform + - uid: 408 + components: + - pos: 12.5,-10.5 + parent: 2 + type: Transform + - uid: 409 + components: + - pos: 11.5,-10.5 + parent: 2 + type: Transform + - uid: 410 + components: + - pos: 8.5,1.5 + parent: 2 + type: Transform + - uid: 411 + components: + - pos: 10.5,-6.5 + parent: 2 + type: Transform + - uid: 412 + components: + - pos: 11.5,-6.5 + parent: 2 + type: Transform + - uid: 413 + components: + - pos: 13.5,0.5 + parent: 2 + type: Transform + - uid: 414 + components: + - pos: 9.5,1.5 + parent: 2 + type: Transform + - uid: 415 + components: + - pos: 4.5,-15.5 + parent: 2 + type: Transform + - uid: 416 + components: + - pos: 14.5,-5.5 + parent: 2 + type: Transform + - uid: 417 + components: + - pos: 13.5,1.5 + parent: 2 + type: Transform + - uid: 418 + components: + - pos: 7.5,1.5 + parent: 2 + type: Transform + - uid: 419 + components: + - pos: 10.5,1.5 + parent: 2 + type: Transform + - uid: 420 + components: + - pos: 10.5,1.5 + parent: 2 + type: Transform + - uid: 422 + components: + - pos: 5.5,0.5 + parent: 2 + type: Transform + - uid: 423 + components: + - pos: 5.5,1.5 + parent: 2 + type: Transform + - uid: 424 + components: + - pos: 16.5,-8.5 + parent: 2 + type: Transform + - uid: 426 + components: + - pos: 2.5,-8.5 + parent: 2 + type: Transform + - uid: 427 + components: + - pos: 11.5,1.5 + parent: 2 + type: Transform + - uid: 565 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-13.5 + parent: 2 + type: Transform + - uid: 566 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-15.5 + parent: 2 + type: Transform + - uid: 568 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-14.5 + parent: 2 + type: Transform + - uid: 569 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-13.5 + parent: 2 + type: Transform +- proto: SignPrison + entities: + - uid: 429 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-13.5 + parent: 2 + type: Transform +- proto: SMESBasic + entities: + - uid: 138 + components: + - pos: 15.5,-18.5 + parent: 2 + type: Transform +- proto: StasisBed + entities: + - uid: 430 + components: + - pos: 11.5,-5.5 + parent: 2 + type: Transform +- proto: SubstationBasic + entities: + - uid: 431 + components: + - pos: 15.5,-17.5 + parent: 2 + type: Transform +- proto: Table + entities: + - uid: 432 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-11.5 + parent: 2 + type: Transform + - uid: 433 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-11.5 + parent: 2 + type: Transform + - uid: 434 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-17.5 + parent: 2 + type: Transform + - uid: 435 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-17.5 + parent: 2 + type: Transform + - uid: 588 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-9.5 + parent: 2 + type: Transform + - uid: 589 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-9.5 + parent: 2 + type: Transform +- proto: TableGlass + entities: + - uid: 436 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-3.5 + parent: 2 + type: Transform + - uid: 437 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 2 + type: Transform +- proto: TableReinforced + entities: + - uid: 438 + components: + - rot: 3.141592653589793 rad + pos: 12.5,0.5 + parent: 2 + type: Transform + - uid: 439 + components: + - rot: 3.141592653589793 rad + pos: 6.5,0.5 + parent: 2 + type: Transform + - uid: 440 + components: + - rot: 3.141592653589793 rad + pos: 11.5,0.5 + parent: 2 + type: Transform + - uid: 441 + components: + - rot: 3.141592653589793 rad + pos: 7.5,0.5 + parent: 2 + type: Transform +- proto: Thruster + entities: + - uid: 442 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-21.5 + parent: 2 + type: Transform + - nextFire: 2958.6249795 + type: Thruster + - uid: 443 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-3.5 + parent: 2 + type: Transform + - nextFire: 2947.8100301 + type: Thruster + - uid: 444 + components: + - pos: 15.5,-5.5 + parent: 2 + type: Transform + - nextFire: 2948.9810177 + type: Thruster + - uid: 445 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,0.5 + parent: 2 + type: Transform + - nextFire: 2952.4519556 + type: Thruster + - uid: 446 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 2 + type: Transform + - nextFire: 2953.9526458 + type: Thruster + - uid: 447 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-15.5 + parent: 2 + type: Transform + - nextFire: 2943.7259326 + type: Thruster + - uid: 448 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 2 + type: Transform + - nextFire: 2944.2088789 + type: Thruster + - uid: 449 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-11.5 + parent: 2 + type: Transform + - nextFire: 2941.9575691 + type: Thruster + - uid: 450 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-15.5 + parent: 2 + type: Transform + - nextFire: 2941.4751144 + type: Thruster + - uid: 451 + components: + - pos: 3.5,-5.5 + parent: 2 + type: Transform + - nextFire: 2945.8249411 + type: Thruster + - uid: 452 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 2 + type: Transform + - nextFire: 2947.0469724 + type: Thruster + - uid: 453 + components: + - pos: 14.5,1.5 + parent: 2 + type: Transform + - nextFire: 2955.6710566 + type: Thruster + - uid: 454 + components: + - pos: 4.5,1.5 + parent: 2 + type: Transform + - nextFire: 2955.2049955 + type: Thruster + - uid: 455 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-21.5 + parent: 2 + type: Transform + - nextFire: 2958.1409552 + type: Thruster +- proto: VendingMachineBooze + entities: + - uid: 456 + components: + - flags: SessionSpecific + type: MetaData + - pos: 4.5,-1.5 + parent: 2 + type: Transform + - nextEmpEject: 1934.1599486 + type: VendingMachine +- proto: VendingMachineMedical + entities: + - uid: 458 + components: + - flags: SessionSpecific + type: MetaData + - pos: 7.5,-3.5 + parent: 2 + type: Transform + - nextEmpEject: 3285.3349356 + type: VendingMachine +- proto: VendingMachineSec + entities: + - uid: 459 + components: + - flags: SessionSpecific + type: MetaData + - pos: 13.5,-11.5 + parent: 2 + type: Transform + - nextEmpEject: -47.4476933 + type: VendingMachine +- proto: WallShuttle + entities: + - uid: 316 + components: + - pos: 16.5,-20.5 + parent: 2 + type: Transform + - uid: 317 + components: + - pos: 16.5,-16.5 + parent: 2 + type: Transform + - uid: 461 + components: + - pos: 3.5,-1.5 + parent: 2 + type: Transform + - uid: 462 + components: + - pos: 14.5,-21.5 + parent: 2 + type: Transform + - uid: 463 + components: + - pos: 13.5,-21.5 + parent: 2 + type: Transform + - uid: 464 + components: + - pos: 12.5,-21.5 + parent: 2 + type: Transform + - uid: 465 + components: + - pos: 11.5,-21.5 + parent: 2 + type: Transform + - uid: 466 + components: + - pos: 10.5,-21.5 + parent: 2 + type: Transform + - uid: 467 + components: + - pos: 9.5,-21.5 + parent: 2 + type: Transform + - uid: 468 + components: + - pos: 8.5,-21.5 + parent: 2 + type: Transform + - uid: 469 + components: + - pos: 8.5,-20.5 + parent: 2 + type: Transform + - uid: 470 + components: + - pos: 8.5,-19.5 + parent: 2 + type: Transform + - uid: 472 + components: + - pos: 15.5,-20.5 + parent: 2 + type: Transform + - uid: 473 + components: + - pos: 14.5,-20.5 + parent: 2 + type: Transform + - uid: 474 + components: + - pos: 15.5,-6.5 + parent: 2 + type: Transform + - uid: 475 + components: + - pos: 15.5,-10.5 + parent: 2 + type: Transform + - uid: 476 + components: + - pos: 3.5,-6.5 + parent: 2 + type: Transform + - uid: 477 + components: + - pos: 3.5,-10.5 + parent: 2 + type: Transform + - uid: 478 + components: + - pos: 4.5,-10.5 + parent: 2 + type: Transform + - uid: 479 + components: + - pos: 14.5,-6.5 + parent: 2 + type: Transform + - uid: 480 + components: + - pos: 14.5,-10.5 + parent: 2 + type: Transform + - uid: 481 + components: + - pos: 14.5,-11.5 + parent: 2 + type: Transform + - uid: 482 + components: + - pos: 6.5,-2.5 + parent: 2 + type: Transform + - uid: 483 + components: + - pos: 3.5,-2.5 + parent: 2 + type: Transform + - uid: 484 + components: + - pos: 4.5,-2.5 + parent: 2 + type: Transform + - uid: 485 + components: + - pos: 7.5,-2.5 + parent: 2 + type: Transform + - uid: 486 + components: + - pos: 9.5,-2.5 + parent: 2 + type: Transform + - uid: 487 + components: + - pos: 10.5,-2.5 + parent: 2 + type: Transform + - uid: 488 + components: + - pos: 11.5,-2.5 + parent: 2 + type: Transform + - uid: 489 + components: + - pos: 12.5,-2.5 + parent: 2 + type: Transform + - uid: 490 + components: + - pos: 8.5,-2.5 + parent: 2 + type: Transform + - uid: 491 + components: + - pos: 14.5,-2.5 + parent: 2 + type: Transform + - uid: 492 + components: + - pos: 15.5,-2.5 + parent: 2 + type: Transform + - uid: 493 + components: + - pos: 15.5,-1.5 + parent: 2 + type: Transform + - uid: 494 + components: + - pos: 4.5,0.5 + parent: 2 + type: Transform + - uid: 495 + components: + - pos: 6.5,-3.5 + parent: 2 + type: Transform + - uid: 496 + components: + - pos: 6.5,-4.5 + parent: 2 + type: Transform + - uid: 497 + components: + - pos: 6.5,-5.5 + parent: 2 + type: Transform + - uid: 498 + components: + - pos: 12.5,-4.5 + parent: 2 + type: Transform + - uid: 499 + components: + - pos: 12.5,-3.5 + parent: 2 + type: Transform + - uid: 500 + components: + - pos: 14.5,-12.5 + parent: 2 + type: Transform + - uid: 501 + components: + - pos: 14.5,-13.5 + parent: 2 + type: Transform + - uid: 502 + components: + - pos: 14.5,-14.5 + parent: 2 + type: Transform + - uid: 503 + components: + - pos: 14.5,-15.5 + parent: 2 + type: Transform + - uid: 504 + components: + - pos: 14.5,-0.5 + parent: 2 + type: Transform + - uid: 505 + components: + - pos: 4.5,-16.5 + parent: 2 + type: Transform + - uid: 506 + components: + - pos: 3.5,-16.5 + parent: 2 + type: Transform + - uid: 507 + components: + - pos: 2.5,-16.5 + parent: 2 + type: Transform + - uid: 508 + components: + - pos: 2.5,-20.5 + parent: 2 + type: Transform + - uid: 509 + components: + - pos: 3.5,-20.5 + parent: 2 + type: Transform + - uid: 510 + components: + - pos: 4.5,-20.5 + parent: 2 + type: Transform + - uid: 511 + components: + - pos: 4.5,-21.5 + parent: 2 + type: Transform + - uid: 512 + components: + - pos: 5.5,-21.5 + parent: 2 + type: Transform + - uid: 513 + components: + - pos: 6.5,-21.5 + parent: 2 + type: Transform + - uid: 514 + components: + - pos: 7.5,-21.5 + parent: 2 + type: Transform + - uid: 515 + components: + - pos: 13.5,-10.5 + parent: 2 + type: Transform + - uid: 516 + components: + - pos: 6.5,-6.5 + parent: 2 + type: Transform + - uid: 517 + components: + - pos: 12.5,-5.5 + parent: 2 + type: Transform + - uid: 518 + components: + - pos: 12.5,-6.5 + parent: 2 + type: Transform + - uid: 519 + components: + - pos: 14.5,0.5 + parent: 2 + type: Transform + - uid: 520 + components: + - pos: 15.5,-0.5 + parent: 2 + type: Transform + - uid: 521 + components: + - pos: 4.5,-0.5 + parent: 2 + type: Transform + - uid: 522 + components: + - pos: 3.5,-0.5 + parent: 2 + type: Transform + - uid: 523 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-16.5 + parent: 2 + type: Transform + - uid: 524 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-16.5 + parent: 2 + type: Transform + - uid: 525 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-17.5 + parent: 2 + type: Transform + - uid: 526 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 2 + type: Transform + - uid: 527 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-15.5 + parent: 2 + type: Transform + - uid: 528 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-14.5 + parent: 2 + type: Transform + - uid: 530 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-16.5 + parent: 2 + type: Transform + - uid: 531 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-10.5 + parent: 2 + type: Transform + - uid: 532 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-10.5 + parent: 2 + type: Transform + - uid: 533 + components: + - pos: 16.5,-6.5 + parent: 2 + type: Transform + - uid: 534 + components: + - pos: 16.5,-10.5 + parent: 2 + type: Transform + - uid: 535 + components: + - pos: 2.5,-10.5 + parent: 2 + type: Transform + - uid: 536 + components: + - pos: 2.5,-6.5 + parent: 2 + type: Transform + - uid: 537 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-16.5 + parent: 2 + type: Transform + - uid: 538 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-16.5 + parent: 2 + type: Transform + - uid: 539 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-16.5 + parent: 2 + type: Transform + - uid: 540 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-16.5 + parent: 2 + type: Transform + - uid: 541 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-16.5 + parent: 2 + type: Transform +- proto: WardrobePrisonFilled + entities: + - uid: 542 + components: + - pos: 12.5,-15.5 + parent: 2 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: WarningAir + entities: + - uid: 543 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-21.5 + parent: 2 + type: Transform +- proto: WeaponCapacitorRecharger + entities: + - uid: 544 + components: + - pos: 11.5,0.5 + parent: 2 + type: Transform +- proto: WindoorEngineeringLocked + entities: + - uid: 545 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-18.5 + parent: 2 + type: Transform +- proto: WindoorSecurityLocked + entities: + - uid: 546 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-13.5 + parent: 2 + type: Transform +- proto: WindowReinforcedDirectional + entities: + - uid: 547 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-19.5 + parent: 2 + type: Transform + - uid: 548 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-17.5 + parent: 2 + type: Transform +... diff --git a/Resources/Prototypes/Maps/cluster.yml b/Resources/Prototypes/Maps/cluster.yml index 9957fc33bf..73a28b76f7 100644 --- a/Resources/Prototypes/Maps/cluster.yml +++ b/Resources/Prototypes/Maps/cluster.yml @@ -8,6 +8,8 @@ Cluster: stationProto: StandardNanotrasenStation components: + - type: StationEmergencyShuttle + emergencyShuttlePath: /Maps/Shuttles/emergency_transit.yml - type: StationNameSetup mapNameTemplate: '{0} Cluster Station {1}' nameGenerator: From 265285a0300781658779bfa90c9d11a6fccb7920 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 4 Jun 2023 22:54:04 -0400 Subject: [PATCH 079/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 404843059c..2728dfedd3 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,10 +1,4 @@ Entries: -- author: Nimfar - changes: - - {message: 'Renamed Gun Safes as well as their prototypes. On each safe of the - spawn, it is now written what weapons are inside', type: Tweak} - id: 3445 - time: '2023-04-17T22:31:40.0000000+00:00' - author: SonicDC changes: - {message: Changed brigmed hardsuit sprites!, type: Tweak} @@ -2910,3 +2904,8 @@ Entries: - {message: fixed shields making owner less resistant to damage, type: Fix} id: 3944 time: '2023-06-05T02:23:55.0000000+00:00' +- author: Ubaser + changes: + - {message: Added a new evacuation shuttle for Cluster, type: Add} + id: 3945 + time: '2023-06-05T02:52:58.0000000+00:00' From 7d178555e126fea491cbe61f88c5300734511121 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Mon, 5 Jun 2023 13:37:00 +1000 Subject: [PATCH 080/474] Cargo shuttle fixes (#17118) --- .../Cargo/Systems/CargoSystem.Shuttle.cs | 27 +++++++++++++------ .../Systems/EmergencyShuttleSystem.cs | 2 +- 2 files changed, 20 insertions(+), 9 deletions(-) diff --git a/Content.Server/Cargo/Systems/CargoSystem.Shuttle.cs b/Content.Server/Cargo/Systems/CargoSystem.Shuttle.cs index 9226627d4a..3c272b4990 100644 --- a/Content.Server/Cargo/Systems/CargoSystem.Shuttle.cs +++ b/Content.Server/Cargo/Systems/CargoSystem.Shuttle.cs @@ -1,9 +1,7 @@ using System.Linq; using Content.Server.Cargo.Components; -using Content.Server.Shuttle.Components; using Content.Server.Shuttles.Components; using Content.Server.Shuttles.Events; -using Content.Server.UserInterface; using Content.Server.Shuttles.Systems; using Content.Server.Stack; using Content.Shared.Stacks; @@ -11,12 +9,9 @@ using Content.Shared.Cargo.BUI; using Content.Shared.Cargo.Components; using Content.Shared.Cargo.Events; -using Content.Shared.Cargo.Prototypes; using Content.Shared.CCVar; -using Content.Shared.Dataset; using Content.Shared.GameTicking; using Content.Shared.Whitelist; -using Robust.Server.GameObjects; using Robust.Shared.Configuration; using Robust.Shared.Map; using Robust.Shared.Random; @@ -35,6 +30,7 @@ public sealed partial class CargoSystem */ [Dependency] private readonly IComponentFactory _factory = default!; + [Dependency] private readonly IConfigurationManager _cfgManager = default!; [Dependency] private readonly IMapManager _mapManager = default!; [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly IPrototypeManager _prototypeManager = default!; @@ -57,6 +53,20 @@ private void InitializeShuttle() SubscribeLocalEvent(OnPalletUIOpen); SubscribeLocalEvent(OnRoundRestart); + _cfgManager.OnValueChanged(CCVars.GridFill, SetGridFill); + } + + private void ShutdownShuttle() + { + _cfgManager.UnsubValueChanged(CCVars.GridFill, SetGridFill); + } + + private void SetGridFill(bool obj) + { + if (obj) + { + SetupCargoShuttle(); + } } private void OnCargoFTLTag(EntityUid uid, CargoShuttleComponent component, ref FTLTagEvent args) @@ -368,7 +378,9 @@ private void OnCargoFTLCompleted(EntityUid uid, CargoShuttleComponent component, private void OnRoundRestart(RoundRestartCleanupEvent ev) { CleanupCargoShuttle(); - SetupCargoShuttle(); + + if (_cfgManager.GetCVar(CCVars.GridFill)) + SetupCargoShuttle(); } private void CleanupCargoShuttle() @@ -388,12 +400,11 @@ private void CleanupCargoShuttle() while (query.MoveNext(out var uid, out var comp)) { - var stationUid = _station.GetOwningStation(uid); - if (TryComp(uid, out var station)) { station.Shuttle = null; } + QueueDel(uid); } } diff --git a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs index 4062f8cd40..5a14a30c5e 100644 --- a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs +++ b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs @@ -366,7 +366,7 @@ private void AddEmergencyShuttle(EntityUid uid, StationEmergencyShuttleComponent if (comp == centcomm || comp.MapId != centcomm.MapId) continue; - comp.ShuttleIndex = comp.ShuttleIndex; + comp.ShuttleIndex = centcomm.ShuttleIndex; } component.EmergencyShuttle = shuttle; From a8eee5878ad999f56f474256f4f8a74806f4d4c6 Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Mon, 5 Jun 2023 16:33:49 +1200 Subject: [PATCH 081/474] Misc replay related changes (#17102) --- Content.Client/Actions/ActionsSystem.cs | 2 +- Content.Client/Examine/ExamineSystem.cs | 6 +- .../GameTicking/Managers/ClientGameTicker.cs | 17 ++++- Content.Client/Gameplay/GameplayState.cs | 3 +- .../MainMenu/UI/MainMenuControl.xaml.cs | 5 +- .../RoundEnd/RoundEndSummaryWindow.cs | 2 + .../Systems/Actions/ActionUIController.cs | 47 +++++++------- Content.Server/Chat/Managers/ChatManager.cs | 24 ++++++- Content.Server/GameTicking/GameTicker.cs | 12 +++- .../Stunnable/Systems/StunOnCollideSystem.cs | 6 -- Content.Shared/CCVar/CCVars.cs | 11 ++++ Content.Shared/Chat/ChatChannel.cs | 2 + .../Systems/SharedContentEyeSystem.cs | 7 +++ .../Movement/Systems/SharedMoverController.cs | 63 ++++++++++--------- 14 files changed, 132 insertions(+), 75 deletions(-) diff --git a/Content.Client/Actions/ActionsSystem.cs b/Content.Client/Actions/ActionsSystem.cs index 08cdb8c832..3eac41d835 100644 --- a/Content.Client/Actions/ActionsSystem.cs +++ b/Content.Client/Actions/ActionsSystem.cs @@ -173,7 +173,7 @@ public void UnlinkAllActions() public void LinkAllActions(ActionsComponent? actions = null) { var player = _playerManager.LocalPlayer?.ControlledEntity; - if (player == null || !Resolve(player.Value, ref actions)) + if (player == null || !Resolve(player.Value, ref actions, false)) { return; } diff --git a/Content.Client/Examine/ExamineSystem.cs b/Content.Client/Examine/ExamineSystem.cs index 9a563a8638..cd09ff5fd1 100644 --- a/Content.Client/Examine/ExamineSystem.cs +++ b/Content.Client/Examine/ExamineSystem.cs @@ -16,6 +16,7 @@ using System.Linq; using System.Threading; using Content.Shared.Eye.Blinding.Components; +using Robust.Client; using static Content.Shared.Interaction.SharedInteractionSystem; using static Robust.Client.UserInterface.Controls.BoxContainer; @@ -28,6 +29,7 @@ public sealed class ExamineSystem : ExamineSystemShared [Dependency] private readonly IPlayerManager _playerManager = default!; [Dependency] private readonly IEyeManager _eyeManager = default!; [Dependency] private readonly VerbSystem _verbSystem = default!; + [Dependency] private readonly IBaseClient _client = default!; public const string StyleClassEntityTooltip = "entity-tooltip"; @@ -341,10 +343,10 @@ public void DoExamine(EntityUid entity, bool centeredOnCursor = true, EntityUid? canSeeClearly = false; OpenTooltip(playerEnt.Value, entity, centeredOnCursor, false, knowTarget: canSeeClearly); - if (entity.IsClientSide()) + if (entity.IsClientSide() + || _client.RunLevel == ClientRunLevel.SinglePlayerGame) // i.e. a replay { message = GetExamineText(entity, playerEnt); - UpdateTooltipInfo(playerEnt.Value, entity, message); } else diff --git a/Content.Client/GameTicking/Managers/ClientGameTicker.cs b/Content.Client/GameTicking/Managers/ClientGameTicker.cs index f1e29a2ea1..33a20c945a 100644 --- a/Content.Client/GameTicking/Managers/ClientGameTicker.cs +++ b/Content.Client/GameTicking/Managers/ClientGameTicker.cs @@ -21,11 +21,18 @@ public sealed class ClientGameTicker : SharedGameTicker [Dependency] private readonly IStateManager _stateManager = default!; [Dependency] private readonly IEntityManager _entityManager = default!; [Dependency] private readonly IConfigurationManager _configManager = default!; + [Dependency] private readonly BackgroundAudioSystem _backgroundAudio = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; [ViewVariables] private bool _initialized; private Dictionary> _jobsAvailable = new(); private Dictionary _stationNames = new(); + /// + /// The current round-end window. Could be used to support re-opening the window after closing it. + /// + private RoundEndSummaryWindow? _window; + [ViewVariables] public bool AreWeReady { get; private set; } [ViewVariables] public bool IsGameStarted { get; private set; } [ViewVariables] public string? LobbySong { get; private set; } @@ -127,13 +134,17 @@ private void RoundEnd(RoundEndMessageEvent message) if (message.LobbySong != null) { LobbySong = message.LobbySong; - Get().StartLobbyMusic(); + _backgroundAudio.StartLobbyMusic(); } RestartSound = message.RestartSound; + // Don't open duplicate windows (mainly for replays). + if (_window?.RoundId == message.RoundId) + return; + //This is not ideal at all, but I don't see an immediately better fit anywhere else. - var roundEnd = new RoundEndSummaryWindow(message.GamemodeTitle, message.RoundEndText, message.RoundDuration, message.RoundId, message.AllPlayersEndInfo, _entityManager); + _window = new RoundEndSummaryWindow(message.GamemodeTitle, message.RoundEndText, message.RoundDuration, message.RoundId, message.AllPlayersEndInfo, _entityManager); } private void RoundRestartCleanup(RoundRestartCleanupEvent ev) @@ -147,7 +158,7 @@ private void RoundRestartCleanup(RoundRestartCleanupEvent ev) return; } - SoundSystem.Play(RestartSound, Filter.Empty()); + _audio.PlayGlobal(RestartSound, Filter.Local(), false); // Cleanup the sound, we only want it to play when the round restarts after it ends normally. RestartSound = null; diff --git a/Content.Client/Gameplay/GameplayState.cs b/Content.Client/Gameplay/GameplayState.cs index 3765753c69..1efee978f3 100644 --- a/Content.Client/Gameplay/GameplayState.cs +++ b/Content.Client/Gameplay/GameplayState.cs @@ -13,7 +13,8 @@ namespace Content.Client.Gameplay { - public sealed class GameplayState : GameplayStateBase, IMainViewportState + [Virtual] + public class GameplayState : GameplayStateBase, IMainViewportState { [Dependency] private readonly IEyeManager _eyeManager = default!; [Dependency] private readonly IOverlayManager _overlayManager = default!; diff --git a/Content.Client/MainMenu/UI/MainMenuControl.xaml.cs b/Content.Client/MainMenu/UI/MainMenuControl.xaml.cs index 5216547b92..e9e90288c6 100644 --- a/Content.Client/MainMenu/UI/MainMenuControl.xaml.cs +++ b/Content.Client/MainMenu/UI/MainMenuControl.xaml.cs @@ -1,13 +1,10 @@ -using Content.Client.Changelog; -using Content.Client.Parallax; -using Robust.Client.AutoGenerated; +using Robust.Client.AutoGenerated; using Robust.Client.ResourceManagement; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.XAML; using Robust.Shared; using Robust.Shared.Configuration; -using Robust.Shared.Localization; namespace Content.Client.MainMenu.UI { diff --git a/Content.Client/RoundEnd/RoundEndSummaryWindow.cs b/Content.Client/RoundEnd/RoundEndSummaryWindow.cs index c6d989c0a8..8f83689e80 100644 --- a/Content.Client/RoundEnd/RoundEndSummaryWindow.cs +++ b/Content.Client/RoundEnd/RoundEndSummaryWindow.cs @@ -12,6 +12,7 @@ namespace Content.Client.RoundEnd public sealed class RoundEndSummaryWindow : DefaultWindow { private readonly IEntityManager _entityManager; + public int RoundId; public RoundEndSummaryWindow(string gm, string roundEnd, TimeSpan roundTimeSpan, int roundId, RoundEndMessageEvent.RoundEndPlayerInfo[] info, IEntityManager entityManager) @@ -28,6 +29,7 @@ public RoundEndSummaryWindow(string gm, string roundEnd, TimeSpan roundTimeSpan, // "clown slipped the crew x times.", "x shots were fired this round.", etc. // Also good for serious info. + RoundId = roundId; var roundEndTabs = new TabContainer(); roundEndTabs.AddChild(MakeRoundEndSummaryTab(gm, roundEnd, roundTimeSpan, roundId)); roundEndTabs.AddChild(MakePlayerManifestoTab(info)); diff --git a/Content.Client/UserInterface/Systems/Actions/ActionUIController.cs b/Content.Client/UserInterface/Systems/Actions/ActionUIController.cs index 472ad49a3f..d325009912 100644 --- a/Content.Client/UserInterface/Systems/Actions/ActionUIController.cs +++ b/Content.Client/UserInterface/Systems/Actions/ActionUIController.cs @@ -108,18 +108,6 @@ private void OnScreenUnload() public void OnStateEntered(GameplayState state) { - DebugTools.Assert(_window == null); - - _window = UIManager.CreateWindow(); - LayoutContainer.SetAnchorPreset(_window, LayoutContainer.LayoutPreset.CenterTop); - - _window.OnOpen += OnWindowOpened; - _window.OnClose += OnWindowClosed; - _window.ClearButton.OnPressed += OnClearPressed; - _window.SearchBar.OnTextChanged += OnSearchChanged; - _window.FilterButton.OnItemSelected += OnFilterSelected; - - if (_actionsSystem != null) { _actionsSystem.ActionAdded += OnActionAdded; @@ -328,18 +316,6 @@ public void OnStateExited(GameplayState state) _actionsSystem.ActionsUpdated -= OnActionsUpdated; } - if (_window != null) - { - _window.OnOpen -= OnWindowOpened; - _window.OnClose -= OnWindowClosed; - _window.ClearButton.OnPressed -= OnClearPressed; - _window.SearchBar.OnTextChanged -= OnSearchChanged; - _window.FilterButton.OnItemSelected -= OnFilterSelected; - - _window.Dispose(); - _window = null; - } - CommandBinds.Unregister(); } @@ -779,10 +755,32 @@ private void UnloadGui() ActionsBar.PageButtons.LeftArrow.OnPressed -= OnLeftArrowPressed; ActionsBar.PageButtons.RightArrow.OnPressed -= OnRightArrowPressed; + + if (_window != null) + { + _window.OnOpen -= OnWindowOpened; + _window.OnClose -= OnWindowClosed; + _window.ClearButton.OnPressed -= OnClearPressed; + _window.SearchBar.OnTextChanged -= OnSearchChanged; + _window.FilterButton.OnItemSelected -= OnFilterSelected; + + _window.Dispose(); + _window = null; + } } private void LoadGui() { + DebugTools.Assert(_window == null); + _window = UIManager.CreateWindow(); + LayoutContainer.SetAnchorPreset(_window, LayoutContainer.LayoutPreset.CenterTop); + + _window.OnOpen += OnWindowOpened; + _window.OnClose += OnWindowClosed; + _window.ClearButton.OnPressed += OnClearPressed; + _window.SearchBar.OnTextChanged += OnSearchChanged; + _window.FilterButton.OnItemSelected += OnFilterSelected; + if (ActionsBar == null) { return; @@ -791,7 +789,6 @@ private void LoadGui() ActionsBar.PageButtons.LeftArrow.OnPressed += OnLeftArrowPressed; ActionsBar.PageButtons.RightArrow.OnPressed += OnRightArrowPressed; - RegisterActionContainer(ActionsBar.ActionsContainer); _actionsSystem?.LinkAllActions(); diff --git a/Content.Server/Chat/Managers/ChatManager.cs b/Content.Server/Chat/Managers/ChatManager.cs index 8f62ca4758..3ad3ff7c3e 100644 --- a/Content.Server/Chat/Managers/ChatManager.cs +++ b/Content.Server/Chat/Managers/ChatManager.cs @@ -247,8 +247,14 @@ public void ChatMessageToOne(ChatChannel channel, string message, string wrapped var msg = new ChatMessage(channel, message, wrappedMessage, source, hideChat, colorOverride, audioPath, audioVolume); _netManager.ServerSendMessage(new MsgChatMessage() { Message = msg }, client); - if (recordReplay) + if (!recordReplay) + return; + + if ((channel & ChatChannel.AdminRelated) == 0 || + _configurationManager.GetCVar(CCVars.ReplayRecordAdminChat)) + { _replay.QueueReplayMessage(msg); + } } public void ChatMessageToMany(ChatChannel channel, string message, string wrappedMessage, EntityUid source, bool hideChat, bool recordReplay, IEnumerable clients, Color? colorOverride = null, string? audioPath = null, float audioVolume = 0) @@ -259,8 +265,14 @@ public void ChatMessageToMany(ChatChannel channel, string message, string wrappe var msg = new ChatMessage(channel, message, wrappedMessage, source, hideChat, colorOverride, audioPath, audioVolume); _netManager.ServerSendToMany(new MsgChatMessage() { Message = msg }, clients); - if (recordReplay) + if (!recordReplay) + return; + + if ((channel & ChatChannel.AdminRelated) == 0 || + _configurationManager.GetCVar(CCVars.ReplayRecordAdminChat)) + { _replay.QueueReplayMessage(msg); + } } public void ChatMessageToManyFiltered(Filter filter, ChatChannel channel, string message, string wrappedMessage, EntityUid source, @@ -283,8 +295,14 @@ public void ChatMessageToAll(ChatChannel channel, string message, string wrapped var msg = new ChatMessage(channel, message, wrappedMessage, source, hideChat, colorOverride, audioPath, audioVolume); _netManager.ServerSendToAll(new MsgChatMessage() { Message = msg }); - if (recordReplay) + if (!recordReplay) + return; + + if ((channel & ChatChannel.AdminRelated) == 0 || + _configurationManager.GetCVar(CCVars.ReplayRecordAdminChat)) + { _replay.QueueReplayMessage(msg); + } } public bool MessageCharacterLimit(IPlayerSession? player, string message) diff --git a/Content.Server/GameTicking/GameTicker.cs b/Content.Server/GameTicking/GameTicker.cs index a7f7ef5471..4ede0f6f50 100644 --- a/Content.Server/GameTicking/GameTicker.cs +++ b/Content.Server/GameTicking/GameTicker.cs @@ -28,6 +28,9 @@ using Robust.Shared.Network; using Robust.Shared.Prototypes; using Robust.Shared.Random; +using Robust.Shared.Replays; +using Robust.Shared.Serialization.Markdown.Mapping; +using Robust.Shared.Serialization.Markdown.Value; using Robust.Shared.Timing; using Robust.Shared.Utility; @@ -65,7 +68,7 @@ public override void Initialize() DebugTools.Assert(_prototypeManager.Index(FallbackOverflowJob).Name == FallbackOverflowJobName, "Overflow role does not have the correct name!"); InitializeGameRules(); - + _replay.OnRecordingStarted += OnRecordingStart; _initialized = true; } @@ -85,6 +88,12 @@ public override void Shutdown() base.Shutdown(); ShutdownGameRules(); + _replay.OnRecordingStarted -= OnRecordingStart; + } + + private void OnRecordingStart((MappingDataNode, List) data) + { + data.Item1["roundId"] = new ValueDataNode(RoundId.ToString()); } private void SendServerMessage(string message) @@ -124,5 +133,6 @@ public override void Update(float frameTime) [Dependency] private readonly ServerUpdateManager _serverUpdates = default!; [Dependency] private readonly PlayTimeTrackingSystem _playTimeTrackings = default!; [Dependency] private readonly UserDbDataManager _userDb = default!; + [Dependency] private readonly IReplayRecordingManager _replay = default!; } } diff --git a/Content.Server/Stunnable/Systems/StunOnCollideSystem.cs b/Content.Server/Stunnable/Systems/StunOnCollideSystem.cs index 92a2e91a22..f2ddbcf803 100644 --- a/Content.Server/Stunnable/Systems/StunOnCollideSystem.cs +++ b/Content.Server/Stunnable/Systems/StunOnCollideSystem.cs @@ -25,12 +25,6 @@ private void TryDoCollideStun(EntityUid uid, StunOnCollideComponent component, E if (EntityManager.TryGetComponent(target, out var status)) { - StandingStateComponent? standingState = null; - AppearanceComponent? appearance = null; - - // Let the actual methods log errors for these. - Resolve(target, ref standingState, ref appearance, false); - _stunSystem.TryStun(target, TimeSpan.FromSeconds(component.StunAmount), true, status); _stunSystem.TryKnockdown(target, TimeSpan.FromSeconds(component.KnockdownAmount), true, diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs index eee95cd2fe..63fcf16bcd 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -1581,5 +1581,16 @@ public static readonly CVarDef /// public static readonly CVarDef GCMaximumTimeMs = CVarDef.Create("entgc.maximum_time_ms", 5, CVar.SERVERONLY); + + /* + * Replays + */ + + /// + /// Whether or not to record admin chat. If replays are being publicly distributes, this should probably be + /// false. + /// + public static readonly CVarDef ReplayRecordAdminChat = + CVarDef.Create("replay.record_admin_chat", false, CVar.SERVERONLY); } } diff --git a/Content.Shared/Chat/ChatChannel.cs b/Content.Shared/Chat/ChatChannel.cs index a80deda37a..f14f33666a 100644 --- a/Content.Shared/Chat/ChatChannel.cs +++ b/Content.Shared/Chat/ChatChannel.cs @@ -83,5 +83,7 @@ public enum ChatChannel : ushort /// Channels considered to be IC. /// IC = Local | Whisper | Radio | Dead | Emotes | Damage | Visual, + + AdminRelated = Admin | AdminAlert | AdminChat, } } diff --git a/Content.Shared/Movement/Systems/SharedContentEyeSystem.cs b/Content.Shared/Movement/Systems/SharedContentEyeSystem.cs index 456792c853..9c749695a9 100644 --- a/Content.Shared/Movement/Systems/SharedContentEyeSystem.cs +++ b/Content.Shared/Movement/Systems/SharedContentEyeSystem.cs @@ -37,6 +37,7 @@ public override void Initialize() .Register(); Sawmill.Level = LogLevel.Info; + UpdatesOutsidePrediction = true; } private void OnContentZoomRequest(RequestTargetZoomEvent msg, EntitySessionEventArgs args) @@ -112,6 +113,12 @@ private void ResetZoom(EntityUid uid, ContentEyeComponent? component = null) Dirty(component); } + public void SetMaxZoom(EntityUid uid, Vector2 value, ContentEyeComponent? component = null) + { + if (Resolve(uid, ref component)) + component.MaxZoom = value; + } + private void Zoom(EntityUid uid, bool zoomIn, ContentEyeComponent? component = null) { if (!Resolve(uid, ref component)) diff --git a/Content.Shared/Movement/Systems/SharedMoverController.cs b/Content.Shared/Movement/Systems/SharedMoverController.cs index 0c44e83850..80ee0c38a7 100644 --- a/Content.Shared/Movement/Systems/SharedMoverController.cs +++ b/Content.Shared/Movement/Systems/SharedMoverController.cs @@ -133,35 +133,7 @@ protected void HandleMobMovement( } } - var angleDiff = Angle.ShortestDistance(mover.RelativeRotation, mover.TargetRelativeRotation); - - // if we've just traversed then lerp to our target rotation. - if (!angleDiff.EqualsApprox(Angle.Zero, 0.001)) - { - var adjustment = angleDiff * 5f * frameTime; - var minAdjustment = 0.01 * frameTime; - - if (angleDiff < 0) - { - adjustment = Math.Min(adjustment, -minAdjustment); - adjustment = Math.Clamp(adjustment, angleDiff, -angleDiff); - } - else - { - adjustment = Math.Max(adjustment, minAdjustment); - adjustment = Math.Clamp(adjustment, -angleDiff, angleDiff); - } - - mover.RelativeRotation += adjustment; - mover.RelativeRotation.FlipPositive(); - Dirty(mover); - } - else if (!angleDiff.Equals(Angle.Zero)) - { - mover.TargetRelativeRotation.FlipPositive(); - mover.RelativeRotation = mover.TargetRelativeRotation; - Dirty(mover); - } + LerpRotation(mover, frameTime); if (!canMove || physicsComponent.BodyStatus != BodyStatus.OnGround @@ -282,6 +254,39 @@ protected void HandleMobMovement( PhysicsSystem.SetAngularVelocity(physicsUid, 0, body: physicsComponent); } + public void LerpRotation(InputMoverComponent mover, float frameTime) + { + var angleDiff = Angle.ShortestDistance(mover.RelativeRotation, mover.TargetRelativeRotation); + + // if we've just traversed then lerp to our target rotation. + if (!angleDiff.EqualsApprox(Angle.Zero, 0.001)) + { + var adjustment = angleDiff * 5f * frameTime; + var minAdjustment = 0.01 * frameTime; + + if (angleDiff < 0) + { + adjustment = Math.Min(adjustment, -minAdjustment); + adjustment = Math.Clamp(adjustment, angleDiff, -angleDiff); + } + else + { + adjustment = Math.Max(adjustment, minAdjustment); + adjustment = Math.Clamp(adjustment, -angleDiff, angleDiff); + } + + mover.RelativeRotation += adjustment; + mover.RelativeRotation.FlipPositive(); + Dirty(mover); + } + else if (!angleDiff.Equals(Angle.Zero)) + { + mover.TargetRelativeRotation.FlipPositive(); + mover.RelativeRotation = mover.TargetRelativeRotation; + Dirty(mover); + } + } + private void Friction(float minimumFrictionSpeed, float frameTime, float friction, ref Vector2 velocity) { var speed = velocity.Length; From 2ef95a322573f074186e98ea2808c6627a4de71e Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Mon, 5 Jun 2023 16:44:09 +1200 Subject: [PATCH 082/474] Replay client (#15001) --- Content.Client/Entry/EntryPoint.cs | 4 +- Content.Client/IoC/ClientContentIoC.cs | 2 + .../Replay/ContentReplayPlaybackManager.cs | 143 +++++++++ Content.Client/Replay/LoadReplayJob.cs | 39 +++ Content.Client/Replay/ReplayConGroup.cs | 13 + .../Spectator/ReplaySpectatorComponent.cs | 9 + .../ReplaySpectatorSystem.Blockers.cs | 44 +++ .../ReplaySpectatorSystem.Movement.cs | 123 ++++++++ .../Replay/Spectator/ReplaySpectatorSystem.cs | 281 +++++++++++++++++ .../Replay/UI/Loading/LoadingScreen.cs | 51 ++++ .../UI/Loading/LoadingScreenControl.xaml | 38 +++ .../UI/Loading/LoadingScreenControl.xaml.cs | 39 +++ Content.Client/Replay/UI/ReplayGhostState.cs | 40 +++ .../Replay/UI/ReplaySpectateEntityState.cs | 48 +++ Content.Replay/Content.Replay.csproj | 26 ++ Content.Replay/EntryPoint.cs | 34 +++ Content.Replay/GlobalUsings.cs | 9 + Content.Replay/Menu/ReplayMainMenu.cs | 283 ++++++++++++++++++ .../Menu/ReplayMainMenuControl.xaml | 52 ++++ .../Menu/ReplayMainMenuControl.xaml.cs | 39 +++ Content.Replay/Menu/SelectReplayWindow.xaml | 9 + .../Menu/SelectReplayWindow.xaml.cs | 61 ++++ Content.Replay/Program.cs | 19 ++ Resources/Locale/en-US/replays/replays.ftl | 34 +++ .../Mobs/Silicon/Bots/mommi.rsi/base.png | Bin 0 -> 1590 bytes .../Mobs/Silicon/Bots/mommi.rsi/meta.json | 26 ++ .../Mobs/Silicon/Bots/mommi.rsi/wiggle.png | Bin 0 -> 7784 bytes SpaceStation14.sln | 9 + 28 files changed, 1474 insertions(+), 1 deletion(-) create mode 100644 Content.Client/Replay/ContentReplayPlaybackManager.cs create mode 100644 Content.Client/Replay/LoadReplayJob.cs create mode 100644 Content.Client/Replay/ReplayConGroup.cs create mode 100644 Content.Client/Replay/Spectator/ReplaySpectatorComponent.cs create mode 100644 Content.Client/Replay/Spectator/ReplaySpectatorSystem.Blockers.cs create mode 100644 Content.Client/Replay/Spectator/ReplaySpectatorSystem.Movement.cs create mode 100644 Content.Client/Replay/Spectator/ReplaySpectatorSystem.cs create mode 100644 Content.Client/Replay/UI/Loading/LoadingScreen.cs create mode 100644 Content.Client/Replay/UI/Loading/LoadingScreenControl.xaml create mode 100644 Content.Client/Replay/UI/Loading/LoadingScreenControl.xaml.cs create mode 100644 Content.Client/Replay/UI/ReplayGhostState.cs create mode 100644 Content.Client/Replay/UI/ReplaySpectateEntityState.cs create mode 100644 Content.Replay/Content.Replay.csproj create mode 100644 Content.Replay/EntryPoint.cs create mode 100644 Content.Replay/GlobalUsings.cs create mode 100644 Content.Replay/Menu/ReplayMainMenu.cs create mode 100644 Content.Replay/Menu/ReplayMainMenuControl.xaml create mode 100644 Content.Replay/Menu/ReplayMainMenuControl.xaml.cs create mode 100644 Content.Replay/Menu/SelectReplayWindow.xaml create mode 100644 Content.Replay/Menu/SelectReplayWindow.xaml.cs create mode 100644 Content.Replay/Program.cs create mode 100644 Resources/Locale/en-US/replays/replays.ftl create mode 100644 Resources/Textures/Mobs/Silicon/Bots/mommi.rsi/base.png create mode 100644 Resources/Textures/Mobs/Silicon/Bots/mommi.rsi/meta.json create mode 100644 Resources/Textures/Mobs/Silicon/Bots/mommi.rsi/wiggle.png diff --git a/Content.Client/Entry/EntryPoint.cs b/Content.Client/Entry/EntryPoint.cs index e17b3a6a2f..49383d9779 100644 --- a/Content.Client/Entry/EntryPoint.cs +++ b/Content.Client/Entry/EntryPoint.cs @@ -14,6 +14,7 @@ using Content.Client.Players.PlayTimeTracking; using Content.Client.Preferences; using Content.Client.Radiation.Overlays; +using Content.Client.Replay; using Content.Client.Screenshot; using Content.Client.Singularity; using Content.Client.Stylesheets; @@ -62,6 +63,7 @@ public sealed class EntryPoint : GameClient [Dependency] private readonly ExtendedDisconnectInformationManager _extendedDisconnectInformation = default!; [Dependency] private readonly JobRequirementsManager _jobRequirements = default!; [Dependency] private readonly ContentLocalizationManager _contentLoc = default!; + [Dependency] private readonly ContentReplayPlaybackManager _playbackMan = default!; public override void Init() { @@ -131,6 +133,7 @@ public override void Init() _ghostKick.Initialize(); _extendedDisconnectInformation.Initialize(); _jobRequirements.Initialize(); + _playbackMan.Initialize(); //AUTOSCALING default Setup! _configManager.SetCVar("interface.resolutionAutoScaleUpperCutoffX", 1080); @@ -154,7 +157,6 @@ public override void PostInit() _overlayManager.AddOverlay(new SingularityOverlay()); _overlayManager.AddOverlay(new FlashOverlay()); _overlayManager.AddOverlay(new RadiationPulseOverlay()); - _chatManager.Initialize(); _clientPreferencesManager.Initialize(); _euiManager.Initialize(); diff --git a/Content.Client/IoC/ClientContentIoC.cs b/Content.Client/IoC/ClientContentIoC.cs index c7d45ec085..b98b907cd0 100644 --- a/Content.Client/IoC/ClientContentIoC.cs +++ b/Content.Client/IoC/ClientContentIoC.cs @@ -18,6 +18,7 @@ using Content.Shared.Administration.Logs; using Content.Shared.Module; using Content.Client.Guidebook; +using Content.Client.Replay; using Content.Shared.Administration.Managers; namespace Content.Client.IoC @@ -44,6 +45,7 @@ public static void Register() IoCManager.Register(); IoCManager.Register(); IoCManager.Register(); + IoCManager.Register(); } } } diff --git a/Content.Client/Replay/ContentReplayPlaybackManager.cs b/Content.Client/Replay/ContentReplayPlaybackManager.cs new file mode 100644 index 0000000000..0ecb98ec0d --- /dev/null +++ b/Content.Client/Replay/ContentReplayPlaybackManager.cs @@ -0,0 +1,143 @@ +using Content.Client.Administration.Managers; +using Content.Client.Launcher; +using Content.Client.MainMenu; +using Content.Client.Replay.UI.Loading; +using Content.Client.UserInterface.Systems.Chat; +using Content.Shared.Chat; +using Content.Shared.GameTicking; +using Content.Shared.Hands; +using Content.Shared.Instruments; +using Content.Shared.Popups; +using Content.Shared.Projectiles; +using Content.Shared.Weapons.Melee; +using Content.Shared.Weapons.Melee.Events; +using Content.Shared.Weapons.Ranged.Events; +using Content.Shared.Weapons.Ranged.Systems; +using Robust.Client; +using Robust.Client.Console; +using Robust.Client.GameObjects; +using Robust.Client.Replays.Loading; +using Robust.Client.Replays.Playback; +using Robust.Client.State; +using Robust.Client.Timing; +using Robust.Client.UserInterface; +using Robust.Shared.ContentPack; +using Robust.Shared.Utility; + +namespace Content.Client.Replay; + +public sealed class ContentReplayPlaybackManager +{ + [Dependency] private readonly IStateManager _stateMan = default!; + [Dependency] private readonly IClientGameTiming _timing = default!; + [Dependency] private readonly IReplayLoadManager _loadMan = default!; + [Dependency] private readonly IGameController _controller = default!; + [Dependency] private readonly IClientEntityManager _entMan = default!; + [Dependency] private readonly IUserInterfaceManager _uiMan = default!; + [Dependency] private readonly IReplayPlaybackManager _playback = default!; + [Dependency] private readonly IClientConGroupController _conGrp = default!; + [Dependency] private readonly IClientAdminManager _adminMan = default!; + + /// + /// UI state to return to when stopping a replay or loading fails. + /// + public Type? DefaultState; + + private bool _initialized; + + public void Initialize() + { + if (_initialized) + return; + + _initialized = true; + _playback.HandleReplayMessage += OnHandleReplayMessage; + _playback.ReplayPlaybackStopped += OnReplayPlaybackStopped; + _playback.ReplayPlaybackStarted += OnReplayPlaybackStarted; + _playback.ReplayCheckpointReset += OnCheckpointReset; + _loadMan.LoadOverride += LoadOverride; + } + + private void LoadOverride(IWritableDirProvider dir, ResPath resPath) + { + var screen = _stateMan.RequestStateChange>(); + screen.Job = new ContentLoadReplayJob(1/60f, dir, resPath, _loadMan, screen); + screen.OnJobFinished += (_, e) => OnFinishedLoading(e); + } + + private void OnFinishedLoading(Exception? exception) + { + if (exception != null) + { + ReturnToDefaultState(); + _uiMan.Popup(Loc.GetString("replay-loading-failed", ("reason", exception))); + } + } + + public void ReturnToDefaultState() + { + if (DefaultState != null) + _stateMan.RequestStateChange(DefaultState); + else if (_controller.LaunchState.FromLauncher) + _stateMan.RequestStateChange().SetDisconnected(); + else + _stateMan.RequestStateChange(); + } + + private void OnCheckpointReset() + { + // This function removes future chat messages when rewinding time. + + // TODO REPLAYS add chat messages when jumping forward in time. + // Need to allow content to add data to checkpoint states. + + _uiMan.GetUIController().History.RemoveAll(x => x.Item1 > _timing.CurTick); + _uiMan.GetUIController().Repopulate(); + } + + private bool OnHandleReplayMessage(object message, bool skipEffects) + { + switch (message) + { + case ChatMessage chat: + // Just pass on the chat message to the UI controller, but skip speech-bubbles if we are fast-forwarding. + _uiMan.GetUIController().ProcessChatMessage(chat, speechBubble: !skipEffects); + return true; + // TODO REPLAYS figure out a cleaner way of doing this. This sucks. + // Next: we want to avoid spamming animations, sounds, and pop-ups while scrubbing or rewinding time + // (e.g., to rewind 1 tick, we really rewind ~60 and then fast forward 59). Currently, this is + // effectively an EntityEvent blacklist. But this is kinda shit and should be done differently somehow. + // The unifying aspect of these events is that they trigger pop-ups, UI changes, spawn client-side + // entities or start animations. + case RoundEndMessageEvent: + case PopupEvent: + case AudioMessage: + case PickupAnimationEvent: + case MeleeLungeEvent: + case SharedGunSystem.HitscanEvent: + case ImpactEffectEvent: + case MuzzleFlashEvent: + case DamageEffectEvent: + case InstrumentStartMidiEvent: + case InstrumentMidiEventEvent: + case InstrumentStopMidiEvent: + if (!skipEffects) + _entMan.DispatchReceivedNetworkMsg((EntityEventArgs)message); + return true; + } + + return false; + } + + + private void OnReplayPlaybackStarted() + { + _conGrp.Implementation = new ReplayConGroup(); + } + + private void OnReplayPlaybackStopped() + { + _conGrp.Implementation = (IClientConGroupImplementation)_adminMan; + ReturnToDefaultState(); + } +} diff --git a/Content.Client/Replay/LoadReplayJob.cs b/Content.Client/Replay/LoadReplayJob.cs new file mode 100644 index 0000000000..1064008609 --- /dev/null +++ b/Content.Client/Replay/LoadReplayJob.cs @@ -0,0 +1,39 @@ +using System.Threading.Tasks; +using Content.Client.Replay.UI.Loading; +using Robust.Client.Replays.Loading; +using Robust.Shared.ContentPack; +using Robust.Shared.Utility; + +namespace Content.Client.Replay; + +public sealed class ContentLoadReplayJob : LoadReplayJob +{ + private readonly LoadingScreen _screen; + + public ContentLoadReplayJob( + float maxTime, + IWritableDirProvider dir, + ResPath path, + IReplayLoadManager loadMan, + LoadingScreen screen) + : base(maxTime, dir, path, loadMan) + { + _screen = screen; + } + + protected override async Task Yield(float value, float maxValue, LoadingState state, bool force) + { + var header = Loc.GetString("replay-loading", ("cur", (int)state + 1), ("total", 5)); + var subText = Loc.GetString(state switch + { + LoadingState.ReadingFiles => "replay-loading-reading", + LoadingState.ProcessingFiles => "replay-loading-processing", + LoadingState.Spawning => "replay-loading-spawning", + LoadingState.Initializing => "replay-loading-initializing", + _ => "replay-loading-starting", + }); + _screen.UpdateProgress(value, maxValue, header, subText); + + await base.Yield(value, maxValue, state, force); + } +} diff --git a/Content.Client/Replay/ReplayConGroup.cs b/Content.Client/Replay/ReplayConGroup.cs new file mode 100644 index 0000000000..8e85632683 --- /dev/null +++ b/Content.Client/Replay/ReplayConGroup.cs @@ -0,0 +1,13 @@ +using Robust.Client.Console; + +namespace Content.Client.Replay; + +public sealed class ReplayConGroup : IClientConGroupImplementation +{ + public event Action? ConGroupUpdated; + public bool CanAdminMenu() => true; + public bool CanAdminPlace() => true; + public bool CanCommand(string cmdName) => true; + public bool CanScript() => true; + public bool CanViewVar() => true; +} diff --git a/Content.Client/Replay/Spectator/ReplaySpectatorComponent.cs b/Content.Client/Replay/Spectator/ReplaySpectatorComponent.cs new file mode 100644 index 0000000000..509240a386 --- /dev/null +++ b/Content.Client/Replay/Spectator/ReplaySpectatorComponent.cs @@ -0,0 +1,9 @@ +namespace Content.Client.Replay.Spectator; + +/// +/// This component indicates that this entity currently has a replay spectator/observer attached to it. +/// +[RegisterComponent] +public sealed class ReplaySpectatorComponent : Component +{ +} diff --git a/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Blockers.cs b/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Blockers.cs new file mode 100644 index 0000000000..86d113defb --- /dev/null +++ b/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Blockers.cs @@ -0,0 +1,44 @@ +using Content.Shared.Hands; +using Content.Shared.Interaction.Events; +using Content.Shared.Inventory.Events; +using Content.Shared.Item; +using Content.Shared.Movement.Events; +using Content.Shared.Physics.Pull; +using Content.Shared.Throwing; + +namespace Content.Client.Replay.Spectator; + +public sealed partial class ReplaySpectatorSystem +{ + private void InitializeBlockers() + { + // Block most interactions to avoid mispredicts + // This **shouldn't** be required, but just in case. + SubscribeLocalEvent(OnAttempt); + SubscribeLocalEvent(OnAttempt); + SubscribeLocalEvent(OnAttempt); + SubscribeLocalEvent(OnAttempt); + SubscribeLocalEvent(OnAttempt); + SubscribeLocalEvent(OnAttempt); + SubscribeLocalEvent(OnAttempt); + SubscribeLocalEvent(OnAttempt); + SubscribeLocalEvent(OnUpdateCanMove); + SubscribeLocalEvent(OnUpdateCanMove); + SubscribeLocalEvent(OnPullAttempt); + } + + private void OnAttempt(EntityUid uid, ReplaySpectatorComponent component, CancellableEntityEventArgs args) + { + args.Cancel(); + } + + private void OnUpdateCanMove(EntityUid uid, ReplaySpectatorComponent component, CancellableEntityEventArgs args) + { + args.Cancel(); + } + + private void OnPullAttempt(EntityUid uid, ReplaySpectatorComponent component, PullAttemptEvent args) + { + args.Cancelled = true; + } +} diff --git a/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Movement.cs b/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Movement.cs new file mode 100644 index 0000000000..46c268d310 --- /dev/null +++ b/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Movement.cs @@ -0,0 +1,123 @@ +using Content.Shared.Movement.Components; +using Robust.Shared.Input; +using Robust.Shared.Input.Binding; +using Robust.Shared.Map; +using Robust.Shared.Players; + +namespace Content.Client.Replay.Spectator; + +// Partial class handles movement logic for observers. +public sealed partial class ReplaySpectatorSystem +{ + public DirectionFlag Direction; + + /// + /// Fallback speed if the observer ghost has no . + /// + public const float DefaultSpeed = 12; + + private void InitializeMovement() + { + var moveUpCmdHandler = new MoverHandler(this, DirectionFlag.North); + var moveLeftCmdHandler = new MoverHandler(this, DirectionFlag.West); + var moveRightCmdHandler = new MoverHandler(this, DirectionFlag.East); + var moveDownCmdHandler = new MoverHandler(this, DirectionFlag.South); + + CommandBinds.Builder + .Bind(EngineKeyFunctions.MoveUp, moveUpCmdHandler) + .Bind(EngineKeyFunctions.MoveLeft, moveLeftCmdHandler) + .Bind(EngineKeyFunctions.MoveRight, moveRightCmdHandler) + .Bind(EngineKeyFunctions.MoveDown, moveDownCmdHandler) + .Register(); + } + + private void ShutdownMovement() + { + CommandBinds.Unregister(); + } + + // Normal mover code works via physics. Replays don't do prediction/physics. You can fudge it by relying on the + // fact that only local-player physics is currently predicted, but instead I've just added crude mover logic here. + // This just runs on frame updates, no acceleration or friction here. + public override void FrameUpdate(float frameTime) + { + if (_replayPlayback.Replay == null) + return; + + if (_player.LocalPlayer?.ControlledEntity is not { } player) + return; + + if (Direction == DirectionFlag.None) + { + if (TryComp(player, out InputMoverComponent? cmp)) + _mover.LerpRotation(cmp, frameTime); + return; + } + + if (!player.IsClientSide() || !HasComp(player)) + { + // Player is trying to move -> behave like the ghost-on-move component. + SpawnObserverGhost(new EntityCoordinates(player, default), true); + return; + } + + if (!TryComp(player, out InputMoverComponent? mover)) + return; + + _mover.LerpRotation(mover, frameTime); + + var effectiveDir = Direction; + if ((Direction & DirectionFlag.North) != 0) + effectiveDir &= ~DirectionFlag.South; + + if ((Direction & DirectionFlag.East) != 0) + effectiveDir &= ~DirectionFlag.West; + + var query = GetEntityQuery(); + var xform = query.GetComponent(player); + var pos = _transform.GetWorldPosition(xform, query); + + if (!xform.ParentUid.IsValid()) + { + // Were they sitting on a grid as it was getting deleted? + SetObserverPosition(default); + return; + } + + // A poor mans grid-traversal system. Should also interrupt ghost-following. + _transform.SetGridId(player, xform, null); + _transform.AttachToGridOrMap(player); + + var parentRotation = _mover.GetParentGridAngle(mover, query); + var localVec = effectiveDir.AsDir().ToAngle().ToWorldVec(); + var worldVec = parentRotation.RotateVec(localVec); + var speed = CompOrNull(player)?.BaseSprintSpeed ?? DefaultSpeed; + var delta = worldVec * frameTime * speed; + _transform.SetWorldPositionRotation(xform, pos + delta, delta.ToWorldAngle(), query); + } + + private sealed class MoverHandler : InputCmdHandler + { + private readonly ReplaySpectatorSystem _sys; + private readonly DirectionFlag _dir; + + public MoverHandler(ReplaySpectatorSystem sys, DirectionFlag dir) + { + _sys = sys; + _dir = dir; + } + + public override bool HandleCmdMessage(ICommonSession? session, InputCmdMessage message) + { + if (message is not FullInputCmdMessage full) + return false; + + if (full.State == BoundKeyState.Down) + _sys.Direction |= _dir; + else + _sys.Direction &= ~_dir; + + return true; + } + } +} diff --git a/Content.Client/Replay/Spectator/ReplaySpectatorSystem.cs b/Content.Client/Replay/Spectator/ReplaySpectatorSystem.cs new file mode 100644 index 0000000000..40f0fd1880 --- /dev/null +++ b/Content.Client/Replay/Spectator/ReplaySpectatorSystem.cs @@ -0,0 +1,281 @@ +using System.Linq; +using Content.Client.Replay.UI; +using Content.Shared.Movement.Components; +using Content.Shared.Movement.Systems; +using Content.Shared.Verbs; +using Robust.Client; +using Robust.Client.GameObjects; +using Robust.Client.Player; +using Robust.Client.Replays.Playback; +using Robust.Client.State; +using Robust.Shared.Console; +using Robust.Shared.Map; +using Robust.Shared.Map.Components; +using Robust.Shared.Utility; + +namespace Content.Client.Replay.Spectator; + +/// +/// This system handles spawning replay observer ghosts and maintaining their positions when traveling through time. +/// It also blocks most normal interactions, just in case. +/// +/// +/// E.g., if an observer is on a grid, and then jumps forward or backward in time to a point where the grid does not +/// exist, where should the observer go? This attempts to maintain their position and eye rotation or just re-spawns +/// them as needed. +/// +public sealed partial class ReplaySpectatorSystem : EntitySystem +{ + [Dependency] private readonly IPlayerManager _player = default!; + [Dependency] private readonly IConsoleHost _conHost = default!; + [Dependency] private readonly IStateManager _stateMan = default!; + [Dependency] private readonly TransformSystem _transform = default!; + [Dependency] private readonly SharedMoverController _mover = default!; + [Dependency] private readonly IBaseClient _client = default!; + [Dependency] private readonly SharedContentEyeSystem _eye = default!; + [Dependency] private readonly IReplayPlaybackManager _replayPlayback = default!; + + private ObserverData? _oldPosition; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent>(OnGetAlternativeVerbs); + SubscribeLocalEvent(OnTerminating); + SubscribeLocalEvent(OnDetached); + + InitializeBlockers(); + _conHost.RegisterCommand("observe", ObserveCommand); + + _replayPlayback.BeforeSetTick += OnBeforeSetTick; + _replayPlayback.AfterSetTick += OnAfterSetTick; + _replayPlayback.ReplayPlaybackStarted += OnPlaybackStarted; + _replayPlayback.ReplayPlaybackStopped += OnPlaybackStopped; + } + + private void OnPlaybackStarted() + { + InitializeMovement(); + SetObserverPosition(default); + } + + private void OnAfterSetTick() + { + if (_oldPosition != null) + SetObserverPosition(_oldPosition.Value); + _oldPosition = null; + } + + public override void Shutdown() + { + base.Shutdown(); + _conHost.UnregisterCommand("observe"); + _replayPlayback.BeforeSetTick -= OnBeforeSetTick; + _replayPlayback.AfterSetTick -= OnAfterSetTick; + _replayPlayback.ReplayPlaybackStarted -= OnPlaybackStarted; + _replayPlayback.ReplayPlaybackStopped -= OnPlaybackStopped; + } + + private void OnPlaybackStopped() + { + ShutdownMovement(); + } + + private void OnBeforeSetTick() + { + _oldPosition = GetObserverPosition(); + } + + private void OnDetached(EntityUid uid, ReplaySpectatorComponent component, PlayerDetachedEvent args) + { + if (uid.IsClientSide()) + QueueDel(uid); + else + RemCompDeferred(uid, component); + } + + public void SetObserverPosition(ObserverData observer) + { + if (Exists(observer.Entity) && Transform(observer.Entity).MapID != MapId.Nullspace) + { + _player.LocalPlayer!.AttachEntity(observer.Entity, EntityManager, _client); + return; + } + + if (observer.Local != null && observer.Local.Value.Coords.IsValid(EntityManager)) + { + var newXform = SpawnObserverGhost(observer.Local.Value.Coords, false); + newXform.LocalRotation = observer.Local.Value.Rot; + } + else if (observer.World != null && observer.World.Value.Coords.IsValid(EntityManager)) + { + var newXform = SpawnObserverGhost(observer.World.Value.Coords, true); + newXform.LocalRotation = observer.World.Value.Rot; + } + else if (TryFindFallbackSpawn(out var coords)) + { + var newXform = SpawnObserverGhost(coords, true); + newXform.LocalRotation = 0; + } + else + { + Logger.Error("Failed to find a suitable observer spawn point"); + return; + } + + if (observer.Eye != null && TryComp(_player.LocalPlayer?.ControlledEntity, out InputMoverComponent? newMover)) + { + newMover.RelativeEntity = observer.Eye.Value.Ent; + newMover.TargetRelativeRotation = newMover.RelativeRotation = observer.Eye.Value.Rot; + } + } + + private bool TryFindFallbackSpawn(out EntityCoordinates coords) + { + var uid = EntityQuery().OrderByDescending(x => x.LocalAABB.Size.LengthSquared).FirstOrDefault()?.Owner; + coords = new EntityCoordinates(uid ?? default, default); + return uid != null; + } + + public struct ObserverData + { + // TODO REPLAYS handle ghost-following. + public EntityUid Entity; + public (EntityCoordinates Coords, Angle Rot)? Local; + public (EntityCoordinates Coords, Angle Rot)? World; + public (EntityUid? Ent, Angle Rot)? Eye; + } + + public ObserverData GetObserverPosition() + { + var obs = new ObserverData(); + if (_player.LocalPlayer?.ControlledEntity is { } player && TryComp(player, out TransformComponent? xform) && xform.MapUid != null) + { + obs.Local = (xform.Coordinates, xform.LocalRotation); + obs.World = (new(xform.MapUid.Value, xform.WorldPosition), xform.WorldRotation); + + if (TryComp(player, out InputMoverComponent? mover)) + obs.Eye = (mover.RelativeEntity, mover.TargetRelativeRotation); + + obs.Entity = player; + } + + return obs; + } + + private void OnTerminating(EntityUid uid, ReplaySpectatorComponent component, ref EntityTerminatingEvent args) + { + if (uid != _player.LocalPlayer?.ControlledEntity) + return; + + var xform = Transform(uid); + if (xform.MapUid == null || Terminating(xform.MapUid.Value)) + return; + + SpawnObserverGhost(new EntityCoordinates(xform.MapUid.Value, default), true); + } + + private void OnGetAlternativeVerbs(GetVerbsEvent ev) + { + if (_replayPlayback.Replay == null) + return; + + var verb = new AlternativeVerb + { + Priority = 100, + Act = () => + { + SpectateEntity(ev.Target); + }, + + Text = "Observe", + Icon = new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/VerbIcons/vv.svg.192dpi.png")) + }; + + ev.Verbs.Add(verb); + } + + public void SpectateEntity(EntityUid target) + { + if (_player.LocalPlayer == null) + return; + + var old = _player.LocalPlayer.ControlledEntity; + + if (old == target) + { + // un-visit + SpawnObserverGhost(Transform(target).Coordinates, true); + return; + } + + _player.LocalPlayer.AttachEntity(target, EntityManager, _client); + EnsureComp(target); + + if (old == null) + return; + + if (old.Value.IsClientSide()) + Del(old.Value); + else + RemComp(old.Value); + + _stateMan.RequestStateChange(); + } + + public TransformComponent SpawnObserverGhost(EntityCoordinates coords, bool gridAttach) + { + if (_player.LocalPlayer == null) + throw new InvalidOperationException(); + + var old = _player.LocalPlayer.ControlledEntity; + + var ent = Spawn("MobObserver", coords); + _eye.SetMaxZoom(ent, Vector2.One * 5); + EnsureComp(ent); + + var xform = Transform(ent); + + if (gridAttach) + _transform.AttachToGridOrMap(ent); + + _player.LocalPlayer.AttachEntity(ent, EntityManager, _client); + + if (old != null) + { + if (old.Value.IsClientSide()) + QueueDel(old.Value); + else + RemComp(old.Value); + } + + _stateMan.RequestStateChange(); + + return xform; + } + + private void ObserveCommand(IConsoleShell shell, string argStr, string[] args) + { + if (args.Length == 0) + { + if (_player.LocalPlayer?.ControlledEntity is { } current) + SpawnObserverGhost(new EntityCoordinates(current, default), true); + return; + } + + if (!EntityUid.TryParse(args[0], out var uid)) + { + shell.WriteError(Loc.GetString("cmd-parse-failure-uid", ("arg", args[0]))); + return; + } + + if (!TryComp(uid, out TransformComponent? xform)) + { + shell.WriteError(Loc.GetString("cmd-parse-failure-entity-exist", ("arg", args[0]))); + return; + } + + SpectateEntity(uid); + } +} diff --git a/Content.Client/Replay/UI/Loading/LoadingScreen.cs b/Content.Client/Replay/UI/Loading/LoadingScreen.cs new file mode 100644 index 0000000000..f3f75a2950 --- /dev/null +++ b/Content.Client/Replay/UI/Loading/LoadingScreen.cs @@ -0,0 +1,51 @@ +using Robust.Client.ResourceManagement; +using Robust.Client.State; +using Robust.Client.UserInterface; +using Robust.Shared.CPUJob.JobQueues; +using Robust.Shared.Timing; + +namespace Content.Client.Replay.UI.Loading; + +[Virtual] +public class LoadingScreen : State +{ + [Dependency] private readonly IResourceCache _resourceCache = default!; + [Dependency] private readonly IUserInterfaceManager _userInterfaceManager = default!; + + public event Action? OnJobFinished; + private LoadingScreenControl _screen = default!; + public Job? Job; + + public override void FrameUpdate(FrameEventArgs e) + { + base.FrameUpdate(e); + if (Job == null) + return; + + Job.Run(); + if (Job.Status != JobStatus.Finished) + return; + + OnJobFinished?.Invoke(Job.Result, Job.Exception); + Job = null; + } + + protected override void Startup() + { + _screen = new(_resourceCache); + _userInterfaceManager.StateRoot.AddChild(_screen); + } + + protected override void Shutdown() + { + _screen.Dispose(); + } + + public void UpdateProgress(float value, float maxValue, string header, string subtext = "") + { + _screen.Bar.Value = value; + _screen.Bar.MaxValue = maxValue; + _screen.Header.Text = header; + _screen.Subtext.Text = subtext; + } +} diff --git a/Content.Client/Replay/UI/Loading/LoadingScreenControl.xaml b/Content.Client/Replay/UI/Loading/LoadingScreenControl.xaml new file mode 100644 index 0000000000..58f353a5ff --- /dev/null +++ b/Content.Client/Replay/UI/Loading/LoadingScreenControl.xaml @@ -0,0 +1,38 @@ + + + + + + + + + + + + + diff --git a/Content.Client/Replay/UI/Loading/LoadingScreenControl.xaml.cs b/Content.Client/Replay/UI/Loading/LoadingScreenControl.xaml.cs new file mode 100644 index 0000000000..bbb5111438 --- /dev/null +++ b/Content.Client/Replay/UI/Loading/LoadingScreenControl.xaml.cs @@ -0,0 +1,39 @@ +using Content.Client.Resources; +using Robust.Client.AutoGenerated; +using Robust.Client.Graphics; +using Robust.Client.ResourceManagement; +using Robust.Client.UserInterface; +using Robust.Client.UserInterface.Controls; +using Robust.Client.UserInterface.XAML; +using Robust.Shared.Utility; + +namespace Content.Client.Replay.UI.Loading; + +[GenerateTypedNameReferences] +public sealed partial class LoadingScreenControl : Control +{ + public static SpriteSpecifier Sprite = new SpriteSpecifier.Rsi(new ("/Textures/Mobs/Silicon/Bots/mommi.rsi"), "wiggle"); + + public LoadingScreenControl(IResourceCache resCache) + { + RobustXamlLoader.Load(this); + + LayoutContainer.SetAnchorPreset(this, LayoutContainer.LayoutPreset.Wide); + Header.FontOverride = resCache.GetFont("/Fonts/NotoSansDisplay/NotoSansDisplay-Bold.ttf", 24); + Subtext.FontOverride = resCache.GetFont("/Fonts/NotoSansDisplay/NotoSansDisplay-Bold.ttf", 12); + + SpriteLeft.SetFromSpriteSpecifier(Sprite); + SpriteRight.SetFromSpriteSpecifier(Sprite); + SpriteLeft.HorizontalAlignment = HAlignment.Stretch; + SpriteLeft.VerticalAlignment = VAlignment.Stretch; + SpriteLeft.DisplayRect.Stretch = TextureRect.StretchMode.KeepAspectCentered; + SpriteRight.DisplayRect.Stretch = TextureRect.StretchMode.KeepAspectCentered; + + Background.PanelOverride = new StyleBoxFlat() + { + BackgroundColor = Color.FromHex("#303033"), + BorderColor = Color.FromHex("#5a5a5a"), + BorderThickness = new Thickness(4) + }; + } +} diff --git a/Content.Client/Replay/UI/ReplayGhostState.cs b/Content.Client/Replay/UI/ReplayGhostState.cs new file mode 100644 index 0000000000..284e1198a3 --- /dev/null +++ b/Content.Client/Replay/UI/ReplayGhostState.cs @@ -0,0 +1,40 @@ +using Content.Client.UserInterface.Systems.Actions.Widgets; +using Content.Client.UserInterface.Systems.Alerts.Widgets; +using Content.Client.UserInterface.Systems.Ghost.Widgets; +using Content.Client.UserInterface.Systems.Hotbar.Widgets; + +namespace Content.Client.Replay.UI; + +/// +/// Gameplay state when moving around a replay as a ghost. +/// +public sealed class ReplayGhostState : ReplaySpectateEntityState +{ + protected override void Startup() + { + base.Startup(); + + var screen = UserInterfaceManager.ActiveScreen; + if (screen == null) + return; + + screen.ShowWidget(false); + screen.ShowWidget(false); + screen.ShowWidget(false); + screen.ShowWidget(false); + } + + protected override void Shutdown() + { + var screen = UserInterfaceManager.ActiveScreen; + if (screen != null) + { + screen.ShowWidget(true); + screen.ShowWidget(true); + screen.ShowWidget(true); + screen.ShowWidget(true); + } + + base.Shutdown(); + } +} diff --git a/Content.Client/Replay/UI/ReplaySpectateEntityState.cs b/Content.Client/Replay/UI/ReplaySpectateEntityState.cs new file mode 100644 index 0000000000..f36c366dae --- /dev/null +++ b/Content.Client/Replay/UI/ReplaySpectateEntityState.cs @@ -0,0 +1,48 @@ +using Content.Client.Gameplay; +using Content.Client.UserInterface.Systems.Chat; +using Content.Client.UserInterface.Systems.MenuBar.Widgets; +using Robust.Client.Replays.UI; +using static Robust.Client.UserInterface.Controls.LayoutContainer; + +namespace Content.Client.Replay.UI; + +/// +/// Gameplay state when observing/spectating an entity during a replay. +/// +[Virtual] +public class ReplaySpectateEntityState : GameplayState +{ + protected override void Startup() + { + base.Startup(); + + var screen = UserInterfaceManager.ActiveScreen; + if (screen == null) + return; + + screen.ShowWidget(false); + SetAnchorAndMarginPreset(screen.GetOrAddWidget(), LayoutPreset.TopLeft, margin: 10); + + foreach (var chatbox in UserInterfaceManager.GetUIController().Chats) + { + chatbox.ChatInput.Visible = false; + } + } + + protected override void Shutdown() + { + var screen = UserInterfaceManager.ActiveScreen; + if (screen != null) + { + screen.RemoveWidget(); + screen.ShowWidget(true); + } + + foreach (var chatbox in UserInterfaceManager.GetUIController().Chats) + { + chatbox.ChatInput.Visible = true; + } + + base.Shutdown(); + } +} diff --git a/Content.Replay/Content.Replay.csproj b/Content.Replay/Content.Replay.csproj new file mode 100644 index 0000000000..5d5880f23a --- /dev/null +++ b/Content.Replay/Content.Replay.csproj @@ -0,0 +1,26 @@ + + + $(TargetFramework) + 10 + false + false + ..\bin\Content.Replay\ + Exe + nullable + enable + + + + + + + + + + + + + + + + diff --git a/Content.Replay/EntryPoint.cs b/Content.Replay/EntryPoint.cs new file mode 100644 index 0000000000..ed6460a7e7 --- /dev/null +++ b/Content.Replay/EntryPoint.cs @@ -0,0 +1,34 @@ +using Content.Client.Replay; +using Content.Replay.Menu; +using JetBrains.Annotations; +using Robust.Client; +using Robust.Client.Console; +using Robust.Client.State; +using Robust.Shared.ContentPack; + +namespace Content.Replay; + +[UsedImplicitly] +public sealed class EntryPoint : GameClient +{ + [Dependency] private readonly IBaseClient _client = default!; + [Dependency] private readonly IStateManager _stateMan = default!; + [Dependency] private readonly ContentReplayPlaybackManager _contentReplayPlaybackMan = default!; + [Dependency] private readonly IClientConGroupController _conGrp = default!; + + public override void Init() + { + base.Init(); + IoCManager.BuildGraph(); + IoCManager.InjectDependencies(this); + } + + public override void PostInit() + { + base.PostInit(); + _client.StartSinglePlayer(); + _conGrp.Implementation = new ReplayConGroup(); + _contentReplayPlaybackMan.DefaultState = typeof(ReplayMainScreen); + _stateMan.RequestStateChange(); + } +} diff --git a/Content.Replay/GlobalUsings.cs b/Content.Replay/GlobalUsings.cs new file mode 100644 index 0000000000..f0cbfd5b1a --- /dev/null +++ b/Content.Replay/GlobalUsings.cs @@ -0,0 +1,9 @@ +// Global usings for Content.Replay + +global using System; +global using System.Collections.Generic; +global using Robust.Shared.Log; +global using Robust.Shared.Localization; +global using Robust.Shared.GameObjects; +global using Robust.Shared.IoC; +global using Robust.Shared.Maths; diff --git a/Content.Replay/Menu/ReplayMainMenu.cs b/Content.Replay/Menu/ReplayMainMenu.cs new file mode 100644 index 0000000000..6748c20988 --- /dev/null +++ b/Content.Replay/Menu/ReplayMainMenu.cs @@ -0,0 +1,283 @@ +using System.Linq; +using Content.Client.Message; +using Content.Client.UserInterface.Systems.EscapeMenu; +using Robust.Client; +using Robust.Client.Replays.Loading; +using Robust.Client.ResourceManagement; +using Robust.Client.Serialization; +using Robust.Client.State; +using Robust.Client.UserInterface; +using Robust.Client.UserInterface.Controls; +using Robust.Shared; +using Robust.Shared.Configuration; +using Robust.Shared.Serialization.Markdown.Value; +using Robust.Shared.Utility; +using TerraFX.Interop.Windows; +using static Robust.Shared.Replays.IReplayRecordingManager; +using IResourceManager = Robust.Shared.ContentPack.IResourceManager; + +namespace Content.Replay.Menu; + +/// +/// Main menu screen for selecting and loading replays. +/// +public sealed class ReplayMainScreen : State +{ + [Dependency] private readonly IResourceManager _resMan = default!; + [Dependency] private readonly IComponentFactory _factory = default!; + [Dependency] private readonly IConfigurationManager _cfg = default!; + [Dependency] private readonly IReplayLoadManager _loadMan = default!; + [Dependency] private readonly IResourceCache _resourceCache = default!; + [Dependency] private readonly IGameController _controllerProxy = default!; + [Dependency] private readonly IClientRobustSerializer _serializer = default!; + [Dependency] private readonly IUserInterfaceManager _userInterfaceManager = default!; + + private ReplayMainMenuControl _mainMenuControl = default!; + private SelectReplayWindow? _selectWindow; + private ResPath _directory; + private List<(string Name, ResPath Path)> _replays = new(); + private ResPath? _selected; + + protected override void Startup() + { + _mainMenuControl = new(_resourceCache); + _userInterfaceManager.StateRoot.AddChild(_mainMenuControl); + + _mainMenuControl.SelectButton.OnPressed += OnSelectPressed; + _mainMenuControl.QuitButton.OnPressed += QuitButtonPressed; + _mainMenuControl.OptionsButton.OnPressed += OptionsButtonPressed; + _mainMenuControl.FolderButton.OnPressed += OnFolderPressed; + _mainMenuControl.LoadButton.OnPressed += OnLoadpressed; + + _directory = new ResPath(_cfg.GetCVar(CVars.ReplayDirectory)).ToRootedPath(); + RefreshReplays(); + SelectReplay(_replays.FirstOrNull()?.Path); + if (_selected == null) // force initial update + UpdateSelectedInfo(); + } + + /// + /// Read replay meta-data and update the replay info box. + /// + private void UpdateSelectedInfo() + { + var info = _mainMenuControl.Info; + + if (_selected is not { } replay) + { + info.SetMarkup(Loc.GetString("replay-info-none-selected")); + info.HorizontalAlignment = Control.HAlignment.Center; + info.VerticalAlignment = Control.VAlignment.Center; + _mainMenuControl.LoadButton.Disabled = true; + return; + } + + if (!_resMan.UserData.Exists(replay) + || _loadMan.LoadYamlMetadata(_resMan.UserData, replay) is not { } data) + { + info.SetMarkup(Loc.GetString("replay-info-invalid")); + info.HorizontalAlignment = Control.HAlignment.Center; + info.VerticalAlignment = Control.VAlignment.Center; + _mainMenuControl.LoadButton.Disabled = true; + return; + } + + var file = replay.ToRelativePath().ToString(); + data.TryGet(Time, out var timeNode); + data.TryGet(Duration, out var durationNode); + data.TryGet("roundId", out var roundIdNode); + data.TryGet(Hash, out var hashNode); + data.TryGet(CompHash, out var compHashNode); + DateTime.TryParse(timeNode?.Value, out var time); + TimeSpan.TryParse(durationNode?.Value, out var duration); + + var forkId = string.Empty; + if (data.TryGet(Fork, out var forkNode)) + { + // TODO REPLAYS somehow distribute and load from build.json? + var clientFork = _cfg.GetCVar(CVars.BuildForkId); + if (string.IsNullOrWhiteSpace(clientFork)) + forkId = forkNode.Value; + else if (forkNode.Value == clientFork) + forkId = $"[color=green]{forkNode.Value}[/color]"; + else + forkId = $"[color=yellow]{forkNode.Value}[/color]"; + } + + var forkVersion = string.Empty; + if (data.TryGet(ForkVersion, out var versionNode)) + { + forkVersion = versionNode.Value; + // Why does this not have a try-convert function? I just want to check if it looks like a hash code. + try + { + Convert.FromHexString(forkVersion); + // version is a probably some git commit. Crop it to keep the info box small. + forkVersion = forkVersion[..16]; + } + catch + { + // ignored + } + + // TODO REPLAYS somehow distribute and load from build.json? + var clientVer = _cfg.GetCVar(CVars.BuildVersion); + if (!string.IsNullOrWhiteSpace(clientVer)) + { + if (versionNode.Value == clientVer) + forkVersion = $"[color=green]{forkVersion}[/color]"; + else + forkVersion = $"[color=yellow]{forkVersion}[/color]"; + } + } + + if (hashNode == null) + throw new Exception("Invalid metadata file. Missing type hash"); + + var typeHash = hashNode.Value; + _mainMenuControl.LoadButton.Disabled = false; + if (Convert.FromHexString(typeHash).SequenceEqual(_serializer.GetSerializableTypesHash())) + { + typeHash = $"[color=green]{typeHash[..16]}[/color]"; + } + else + { + typeHash = $"[color=red]{typeHash[..16]}[/color]"; + _mainMenuControl.LoadButton.Disabled = true; + } + + if (compHashNode == null) + throw new Exception("Invalid metadata file. Missing component hash"); + + var compHash = compHashNode.Value; + if (Convert.FromHexString(compHash).SequenceEqual(_factory.GetHash(true))) + { + compHash = $"[color=green]{compHash[..16]}[/color]"; + _mainMenuControl.LoadButton.Disabled = false; + } + else + { + compHash = $"[color=red]{compHash[..16]}[/color]"; + _mainMenuControl.LoadButton.Disabled = true; + } + + var engineVersion = string.Empty; + if (data.TryGet(Engine, out var engineNode)) + { + var clientVer = _cfg.GetCVar(CVars.BuildEngineVersion); + if (string.IsNullOrWhiteSpace(clientVer)) + engineVersion = engineNode.Value; + else if (engineNode.Value == clientVer) + engineVersion = $"[color=green]{engineNode.Value}[/color]"; + else + engineVersion = $"[color=yellow]{engineNode.Value}[/color]"; + } + + // Strip milliseconds. Apparently there is no general format string that suppresses milliseconds. + duration = new((int)Math.Floor(duration.TotalDays), duration.Hours, duration.Minutes, duration.Seconds); + + data.TryGet(Name, out var nameNode); + var name = nameNode?.Value ?? string.Empty; + + info.HorizontalAlignment = Control.HAlignment.Left; + info.VerticalAlignment = Control.VAlignment.Top; + info.SetMarkup(Loc.GetString( + "replay-info-info", + ("file", file), + ("name", name), + ("time", time), + ("roundId", roundIdNode?.Value ?? "???"), + ("duration", duration), + ("forkId", forkId), + ("version", forkVersion), + ("engVersion", engineVersion), + ("compHash", compHash), + ("hash", typeHash))); + } + + private void OnFolderPressed(BaseButton.ButtonEventArgs obj) + { + _resMan.UserData.CreateDir(_directory); + _resMan.UserData.OpenOsWindow(_directory); + } + + private void OnLoadpressed(BaseButton.ButtonEventArgs obj) + { + if (_selected.HasValue) + _loadMan.LoadAndStartReplay(_resMan.UserData, _selected.Value); + } + + private void RefreshReplays() + { + _replays.Clear(); + + foreach (var entry in _resMan.UserData.DirectoryEntries(_directory)) + { + var file = _directory / entry; + try + { + var data = _loadMan.LoadYamlMetadata(_resMan.UserData, file); + if (data == null) + continue; + + var name = data.Get(Name).Value; + _replays.Add((name, file)); + + } + catch + { + // Ignore file + } + } + + _selectWindow?.Repopulate(_replays); + if (_selected.HasValue && _replays.All(x => x.Path != _selected.Value)) + SelectReplay(null); + else + _selectWindow?.UpdateSelected(_selected); + } + + public void SelectReplay(ResPath? replay) + { + if (_selected == replay) + return; + + _selected = replay; + try + { + UpdateSelectedInfo(); + } + catch (Exception ex) + { + Logger.Error($"Failed to load replay info. Exception: {ex}"); + SelectReplay(null); + return; + } + _selectWindow?.UpdateSelected(replay); + } + + protected override void Shutdown() + { + _mainMenuControl.Dispose(); + _selectWindow?.Dispose(); + } + + private void OptionsButtonPressed(BaseButton.ButtonEventArgs args) + { + _userInterfaceManager.GetUIController().ToggleWindow(); + } + + private void QuitButtonPressed(BaseButton.ButtonEventArgs args) + { + _controllerProxy.Shutdown(); + } + + private void OnSelectPressed(BaseButton.ButtonEventArgs args) + { + RefreshReplays(); + _selectWindow ??= new(this); + _selectWindow.Repopulate(_replays); + _selectWindow.UpdateSelected(_selected); + _selectWindow.OpenCentered(); + } +} diff --git a/Content.Replay/Menu/ReplayMainMenuControl.xaml b/Content.Replay/Menu/ReplayMainMenuControl.xaml new file mode 100644 index 0000000000..f26db1121f --- /dev/null +++ b/Content.Replay/Menu/ReplayMainMenuControl.xaml @@ -0,0 +1,52 @@ + + + + + + diff --git a/Content.Client/Xenoarchaeology/Ui/AnalysisConsoleMenu.xaml.cs b/Content.Client/Xenoarchaeology/Ui/AnalysisConsoleMenu.xaml.cs index 9f0a424b3e..344df37a00 100644 --- a/Content.Client/Xenoarchaeology/Ui/AnalysisConsoleMenu.xaml.cs +++ b/Content.Client/Xenoarchaeology/Ui/AnalysisConsoleMenu.xaml.cs @@ -15,7 +15,7 @@ public sealed partial class AnalysisConsoleMenu : FancyWindow public event Action? OnServerSelectionButtonPressed; public event Action? OnScanButtonPressed; public event Action? OnPrintButtonPressed; - public event Action? OnDestroyButtonPressed; + public event Action? OnExtractButtonPressed; public AnalysisConsoleMenu() { @@ -25,7 +25,7 @@ public AnalysisConsoleMenu() ServerSelectionButton.OnPressed += _ => OnServerSelectionButtonPressed?.Invoke(); ScanButton.OnPressed += _ => OnScanButtonPressed?.Invoke(); PrintButton.OnPressed += _ => OnPrintButtonPressed?.Invoke(); - DestroyButton.OnPressed += _ => OnDestroyButtonPressed?.Invoke(); + ExtractButton.OnPressed += _ => OnExtractButtonPressed?.Invoke(); } public void SetButtonsDisabled(AnalysisConsoleScanUpdateState state) @@ -35,15 +35,15 @@ public void SetButtonsDisabled(AnalysisConsoleScanUpdateState state) var disabled = !state.ServerConnected || !state.CanScan || state.PointAmount <= 0; - DestroyButton.Disabled = disabled; + ExtractButton.Disabled = disabled; if (disabled) { - DestroyButton.RemoveStyleClass(StyleBase.ButtonCaution); + ExtractButton.RemoveStyleClass("ButtonColorGreen"); } else { - DestroyButton.AddStyleClass(StyleBase.ButtonCaution); + ExtractButton.AddStyleClass("ButtonColorGreen"); } } diff --git a/Content.Server/Xenoarchaeology/Equipment/Components/AnalysisConsoleComponent.cs b/Content.Server/Xenoarchaeology/Equipment/Components/AnalysisConsoleComponent.cs index 5a4b0e876a..d65fed28a8 100644 --- a/Content.Server/Xenoarchaeology/Equipment/Components/AnalysisConsoleComponent.cs +++ b/Content.Server/Xenoarchaeology/Equipment/Components/AnalysisConsoleComponent.cs @@ -26,10 +26,10 @@ public sealed class AnalysisConsoleComponent : Component public readonly string LinkingPort = "ArtifactAnalyzerSender"; /// - /// The sound played when an artifact is destroyed. + /// The sound played when an artifact has points extracted. /// - [DataField("destroySound")] - public SoundSpecifier DestroySound = new SoundPathSpecifier("/Audio/Effects/radpulse11.ogg"); + [DataField("extractSound")] + public SoundSpecifier ExtractSound = new SoundPathSpecifier("/Audio/Effects/radpulse11.ogg"); /// /// The entity spawned by a report. diff --git a/Content.Server/Xenoarchaeology/Equipment/Components/ArtifactAnalyzerComponent.cs b/Content.Server/Xenoarchaeology/Equipment/Components/ArtifactAnalyzerComponent.cs index f21c8a6b51..d07819fd06 100644 --- a/Content.Server/Xenoarchaeology/Equipment/Components/ArtifactAnalyzerComponent.cs +++ b/Content.Server/Xenoarchaeology/Equipment/Components/ArtifactAnalyzerComponent.cs @@ -8,7 +8,7 @@ namespace Content.Server.Xenoarchaeology.Equipment.Components; /// /// A machine that is combined and linked to the -/// in order to analyze and destroy artifacts. +/// in order to analyze artifacts and extract points. /// [RegisterComponent] public sealed class ArtifactAnalyzerComponent : Component diff --git a/Content.Server/Xenoarchaeology/Equipment/Systems/ArtifactAnalyzerSystem.cs b/Content.Server/Xenoarchaeology/Equipment/Systems/ArtifactAnalyzerSystem.cs index d4375f95e1..a9930ec36f 100644 --- a/Content.Server/Xenoarchaeology/Equipment/Systems/ArtifactAnalyzerSystem.cs +++ b/Content.Server/Xenoarchaeology/Equipment/Systems/ArtifactAnalyzerSystem.cs @@ -64,7 +64,7 @@ public override void Initialize() SubscribeLocalEvent(OnServerSelectionMessage); SubscribeLocalEvent(OnScanButton); SubscribeLocalEvent(OnPrintButton); - SubscribeLocalEvent(OnDestroyButton); + SubscribeLocalEvent(OnExtractButton); SubscribeLocalEvent((e,c,_) => UpdateUserInterface(e,c), after: new []{typeof(ResearchSystem)}); @@ -339,12 +339,12 @@ private void OnPrintButton(EntityUid uid, AnalysisConsoleComponent component, An } /// - /// destroys the artifact and updates the server points + /// Extracts points from the artifact and updates the server points /// /// /// /// - private void OnDestroyButton(EntityUid uid, AnalysisConsoleComponent component, AnalysisConsoleDestroyButtonPressedMessage args) + private void OnExtractButton(EntityUid uid, AnalysisConsoleComponent component, AnalysisConsoleExtractButtonPressedMessage args) { if (component.AnalyzerEntity == null) return; @@ -358,13 +358,14 @@ private void OnDestroyButton(EntityUid uid, AnalysisConsoleComponent component, var pointValue = _artifact.GetResearchPointValue(artifact.Value); + // no new nodes triggered so nothing to add if (pointValue == 0) return; _research.ModifyServerPoints(server.Value, pointValue, serverComponent); _artifact.AdjustConsumedPoints(artifact.Value, pointValue); - _audio.PlayPvs(component.DestroySound, component.AnalyzerEntity.Value, AudioParams.Default.WithVolume(2f)); + _audio.PlayPvs(component.ExtractSound, component.AnalyzerEntity.Value, AudioParams.Default.WithVolume(2f)); _popup.PopupEntity(Loc.GetString("analyzer-artifact-extract-popup"), component.AnalyzerEntity.Value, PopupType.Large); diff --git a/Content.Shared/Xenoarchaeology/Equipment/SharedArtifactAnalyzer.cs b/Content.Shared/Xenoarchaeology/Equipment/SharedArtifactAnalyzer.cs index 0215c84992..3945d93ca3 100644 --- a/Content.Shared/Xenoarchaeology/Equipment/SharedArtifactAnalyzer.cs +++ b/Content.Shared/Xenoarchaeology/Equipment/SharedArtifactAnalyzer.cs @@ -25,7 +25,7 @@ public sealed class AnalysisConsolePrintButtonPressedMessage : BoundUserInterfac } [Serializable, NetSerializable] -public sealed class AnalysisConsoleDestroyButtonPressedMessage : BoundUserInterfaceMessage +public sealed class AnalysisConsoleExtractButtonPressedMessage : BoundUserInterfaceMessage { } diff --git a/Resources/Locale/en-US/xenoarchaeology/artifact-analyzer.ftl b/Resources/Locale/en-US/xenoarchaeology/artifact-analyzer.ftl index 87c96ffc48..453680f427 100644 --- a/Resources/Locale/en-US/xenoarchaeology/artifact-analyzer.ftl +++ b/Resources/Locale/en-US/xenoarchaeology/artifact-analyzer.ftl @@ -4,8 +4,8 @@ analysis-console-scan-button = Scan analysis-console-scan-tooltip-info = Scan artifacts to learn information about their structure. analysis-console-print-button = Print analysis-console-print-tooltip-info = Print out the current information about the artifact. -analysis-console-destroy-button = Extract -analysis-console-destroy-button-info = Extract points from an artifact based on the explored nodes. +analysis-console-extract-button = Extract +analysis-console-extract-button-info = Extract points from an artifact based on the newly explored nodes. analysis-console-info-no-scanner = No analyzer connected! Please connect one using a multitool. analysis-console-info-no-artifact = No artifact present! Place one on the pad then scan for information. @@ -31,4 +31,4 @@ analyzer-artifact-component-upgrade-analysis = analysis duration analysis-console-print-popup = The console printed out a report. analyzer-artifact-extract-popup = Energy shimmers on the artifact's surface! -analysis-report-title = Artifact Report: Node {$id} \ No newline at end of file +analysis-report-title = Artifact Report: Node {$id} From e916557e54efea1ccdebe33fa924a4d1e0898963 Mon Sep 17 00:00:00 2001 From: MisterMecky Date: Sat, 10 Jun 2023 10:32:09 +0800 Subject: [PATCH 164/474] add buckets to origin botany (#17235) --- Resources/Maps/origin.yml | 434 ++++++++++++++++++-------------------- 1 file changed, 208 insertions(+), 226 deletions(-) diff --git a/Resources/Maps/origin.yml b/Resources/Maps/origin.yml index 55387ea73b..d4202c1cfa 100644 --- a/Resources/Maps/origin.yml +++ b/Resources/Maps/origin.yml @@ -7977,7 +7977,7 @@ entities: 0: 65535 -13,-12: 0: 7967 - 4: 224 + 3: 224 2: 57344 -13,-11: 0: 65311 @@ -7986,8 +7986,8 @@ entities: 0: 65523 -13,-14: 0: 7967 - 5: 224 - 6: 57344 + 4: 224 + 5: 57344 -13,-13: 0: 7967 2: 57568 @@ -8309,7 +8309,7 @@ entities: 0: 65392 -14,-22: 0: 32699 - 7: 4 + 6: 4 3: 64 -14,-21: 0: 65535 @@ -9453,21 +9453,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 27.809448 - - 104.6165 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 293.15 moles: @@ -9513,36 +9498,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.14996 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14996 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 chunkSize: 4 type: GridAtmosphere - id: Origin @@ -22171,7 +22126,7 @@ entities: - pos: 10.5,47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -227074.14 + - SecondsUntilStateChange: -227191.06 state: Closing type: Door - enabled: False @@ -22194,7 +22149,7 @@ entities: - pos: 10.5,49.5 parent: 2 type: Transform - - SecondsUntilStateChange: -227074.14 + - SecondsUntilStateChange: -227191.06 state: Closing type: Door - enabled: False @@ -22217,7 +22172,7 @@ entities: - pos: 10.5,48.5 parent: 2 type: Transform - - SecondsUntilStateChange: -227074.14 + - SecondsUntilStateChange: -227191.06 state: Closing type: Door - enabled: False @@ -22242,7 +22197,7 @@ entities: - pos: 18.5,-56.5 parent: 2 type: Transform - - SecondsUntilStateChange: -292503.56 + - SecondsUntilStateChange: -292620.47 state: Closing type: Door - enabled: False @@ -22265,7 +22220,7 @@ entities: - pos: 47.5,-51.5 parent: 2 type: Transform - - SecondsUntilStateChange: -161884.34 + - SecondsUntilStateChange: -162001.27 state: Closing type: Door - enabled: False @@ -22288,7 +22243,7 @@ entities: - pos: 47.5,-52.5 parent: 2 type: Transform - - SecondsUntilStateChange: -161884.34 + - SecondsUntilStateChange: -162001.27 state: Closing type: Door - enabled: False @@ -22311,7 +22266,7 @@ entities: - pos: 47.5,-53.5 parent: 2 type: Transform - - SecondsUntilStateChange: -161884.34 + - SecondsUntilStateChange: -162001.27 state: Closing type: Door - enabled: False @@ -22334,7 +22289,7 @@ entities: - pos: 47.5,-54.5 parent: 2 type: Transform - - SecondsUntilStateChange: -161884.34 + - SecondsUntilStateChange: -162001.27 state: Closing type: Door - enabled: False @@ -22357,7 +22312,7 @@ entities: - pos: 52.5,-58.5 parent: 2 type: Transform - - SecondsUntilStateChange: -161872.02 + - SecondsUntilStateChange: -161988.94 state: Closing type: Door - enabled: False @@ -22380,7 +22335,7 @@ entities: - pos: 50.5,-62.5 parent: 2 type: Transform - - SecondsUntilStateChange: -161874.55 + - SecondsUntilStateChange: -161991.47 state: Closing type: Door - enabled: False @@ -22404,7 +22359,7 @@ entities: pos: 55.5,-56.5 parent: 2 type: Transform - - SecondsUntilStateChange: -161822.83 + - SecondsUntilStateChange: -161939.75 state: Closing type: Door - enabled: False @@ -22428,7 +22383,7 @@ entities: pos: 54.5,-56.5 parent: 2 type: Transform - - SecondsUntilStateChange: -161822.83 + - SecondsUntilStateChange: -161939.75 state: Closing type: Door - enabled: False @@ -22451,7 +22406,7 @@ entities: - pos: -45.5,-34.5 parent: 2 type: Transform - - SecondsUntilStateChange: -417352 + - SecondsUntilStateChange: -417468.9 state: Closing type: Door - enabled: False @@ -22475,7 +22430,7 @@ entities: pos: -40.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -415702.34 + - SecondsUntilStateChange: -415819.25 state: Closing type: Door - enabled: False @@ -22499,7 +22454,7 @@ entities: pos: -39.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -415702.34 + - SecondsUntilStateChange: -415819.25 state: Closing type: Door - enabled: False @@ -22523,7 +22478,7 @@ entities: pos: -38.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -415702.34 + - SecondsUntilStateChange: -415819.25 state: Closing type: Door - enabled: False @@ -22547,7 +22502,7 @@ entities: pos: -37.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -415702.34 + - SecondsUntilStateChange: -415819.25 state: Closing type: Door - enabled: False @@ -22570,7 +22525,7 @@ entities: - pos: -49.5,19.5 parent: 2 type: Transform - - SecondsUntilStateChange: -295666.72 + - SecondsUntilStateChange: -295783.62 state: Closing type: Door - enabled: False @@ -22593,7 +22548,7 @@ entities: - pos: -49.5,23.5 parent: 2 type: Transform - - SecondsUntilStateChange: -295666.72 + - SecondsUntilStateChange: -295783.62 state: Closing type: Door - enabled: False @@ -22616,7 +22571,7 @@ entities: - pos: 51.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -257825 + - SecondsUntilStateChange: -257941.92 state: Closing type: Door - enabled: False @@ -22647,7 +22602,7 @@ entities: - pos: 54.5,45.5 parent: 2 type: Transform - - SecondsUntilStateChange: -257825 + - SecondsUntilStateChange: -257941.92 state: Closing type: Door - enabled: False @@ -22674,7 +22629,7 @@ entities: - pos: -52.5,34.5 parent: 2 type: Transform - - SecondsUntilStateChange: -89793.836 + - SecondsUntilStateChange: -89910.75 state: Closing type: Door - enabled: False @@ -22697,7 +22652,7 @@ entities: - pos: -52.5,30.5 parent: 2 type: Transform - - SecondsUntilStateChange: -89766.125 + - SecondsUntilStateChange: -89883.04 state: Closing type: Door - enabled: False @@ -22720,7 +22675,7 @@ entities: - pos: -53.5,23.5 parent: 2 type: Transform - - SecondsUntilStateChange: -89834.77 + - SecondsUntilStateChange: -89951.69 state: Closing type: Door - enabled: False @@ -22743,7 +22698,7 @@ entities: - pos: -53.5,19.5 parent: 2 type: Transform - - SecondsUntilStateChange: -89834.77 + - SecondsUntilStateChange: -89951.69 state: Closing type: Door - enabled: False @@ -22766,7 +22721,7 @@ entities: - pos: 53.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -256082.88 + - SecondsUntilStateChange: -256199.8 state: Closing type: Door - enabled: False @@ -22797,7 +22752,7 @@ entities: - pos: 55.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -258085.27 + - SecondsUntilStateChange: -258202.19 state: Closing type: Door - enabled: False @@ -22824,7 +22779,7 @@ entities: - pos: 50.5,47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -257825 + - SecondsUntilStateChange: -257941.92 state: Closing type: Door - enabled: False @@ -22847,7 +22802,7 @@ entities: - pos: 57.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -257825 + - SecondsUntilStateChange: -257941.92 state: Closing type: Door - enabled: False @@ -22870,7 +22825,7 @@ entities: - pos: 56.5,47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -257825 + - SecondsUntilStateChange: -257941.92 state: Closing type: Door - enabled: False @@ -22898,7 +22853,7 @@ entities: - pos: 53.5,48.5 parent: 2 type: Transform - - SecondsUntilStateChange: -256082.88 + - SecondsUntilStateChange: -256199.8 state: Closing type: Door - enabled: False @@ -22943,7 +22898,7 @@ entities: - pos: 58.5,47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -257825 + - SecondsUntilStateChange: -257941.92 state: Closing type: Door - enabled: False @@ -22966,7 +22921,7 @@ entities: - pos: 52.5,45.5 parent: 2 type: Transform - - SecondsUntilStateChange: -258320.66 + - SecondsUntilStateChange: -258437.58 state: Closing type: Door - enabled: False @@ -22993,7 +22948,7 @@ entities: - pos: 53.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -256082.88 + - SecondsUntilStateChange: -256199.8 state: Closing type: Door - enabled: False @@ -23020,7 +22975,7 @@ entities: - pos: 55.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -257825 + - SecondsUntilStateChange: -257941.92 state: Closing type: Door - enabled: False @@ -23047,7 +23002,7 @@ entities: - pos: 58.5,45.5 parent: 2 type: Transform - - SecondsUntilStateChange: -257825 + - SecondsUntilStateChange: -257941.92 state: Closing type: Door - enabled: False @@ -23070,7 +23025,7 @@ entities: - pos: 57.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -257825 + - SecondsUntilStateChange: -257941.92 state: Closing type: Door - enabled: False @@ -23106,7 +23061,7 @@ entities: - pos: 54.5,47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -257825 + - SecondsUntilStateChange: -257941.92 state: Closing type: Door - enabled: False @@ -23129,7 +23084,7 @@ entities: - pos: 52.5,47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -257825 + - SecondsUntilStateChange: -257941.92 state: Closing type: Door - enabled: False @@ -23152,7 +23107,7 @@ entities: - pos: 51.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -257825 + - SecondsUntilStateChange: -257941.92 state: Closing type: Door - enabled: False @@ -23179,7 +23134,7 @@ entities: - pos: 56.5,45.5 parent: 2 type: Transform - - SecondsUntilStateChange: -258179.36 + - SecondsUntilStateChange: -258296.28 state: Closing type: Door - enabled: False @@ -23206,7 +23161,7 @@ entities: - pos: 50.5,45.5 parent: 2 type: Transform - - SecondsUntilStateChange: -257825 + - SecondsUntilStateChange: -257941.92 state: Closing type: Door - enabled: False @@ -23233,7 +23188,7 @@ entities: - pos: -18.5,-96.5 parent: 2 type: Transform - - SecondsUntilStateChange: -204199.27 + - SecondsUntilStateChange: -204316.19 state: Closing type: Door - enabled: False @@ -23256,7 +23211,7 @@ entities: - pos: -18.5,-98.5 parent: 2 type: Transform - - SecondsUntilStateChange: -204199.27 + - SecondsUntilStateChange: -204316.19 state: Closing type: Door - enabled: False @@ -23279,7 +23234,7 @@ entities: - pos: -26.5,-96.5 parent: 2 type: Transform - - SecondsUntilStateChange: -204207.6 + - SecondsUntilStateChange: -204324.52 state: Closing type: Door - enabled: False @@ -23302,7 +23257,7 @@ entities: - pos: -26.5,-98.5 parent: 2 type: Transform - - SecondsUntilStateChange: -204207.6 + - SecondsUntilStateChange: -204324.52 state: Closing type: Door - enabled: False @@ -23325,7 +23280,7 @@ entities: - pos: 67.5,-39.5 parent: 2 type: Transform - - SecondsUntilStateChange: -159981.14 + - SecondsUntilStateChange: -160098.06 state: Closing type: Door - enabled: False @@ -23366,7 +23321,7 @@ entities: pos: 24.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -222062.17 + - SecondsUntilStateChange: -222179.1 state: Opening type: Door - enabled: True @@ -23390,7 +23345,7 @@ entities: pos: 23.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -222062.17 + - SecondsUntilStateChange: -222179.1 state: Opening type: Door - enabled: True @@ -23414,7 +23369,7 @@ entities: pos: 25.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -222062.17 + - SecondsUntilStateChange: -222179.1 state: Opening type: Door - enabled: True @@ -23438,7 +23393,7 @@ entities: pos: 26.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -222062.17 + - SecondsUntilStateChange: -222179.1 state: Opening type: Door - enabled: True @@ -23462,7 +23417,7 @@ entities: pos: 24.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -222062.17 + - SecondsUntilStateChange: -222179.1 state: Opening type: Door - enabled: True @@ -23486,7 +23441,7 @@ entities: pos: 23.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -222062.17 + - SecondsUntilStateChange: -222179.1 state: Opening type: Door - enabled: True @@ -23510,7 +23465,7 @@ entities: pos: 25.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -222062.17 + - SecondsUntilStateChange: -222179.1 state: Opening type: Door - enabled: True @@ -23534,7 +23489,7 @@ entities: pos: 26.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -222062.17 + - SecondsUntilStateChange: -222179.1 state: Opening type: Door - enabled: True @@ -23558,7 +23513,7 @@ entities: pos: 22.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -222062.17 + - SecondsUntilStateChange: -222179.1 state: Opening type: Door - enabled: True @@ -23582,7 +23537,7 @@ entities: pos: 22.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -222062.17 + - SecondsUntilStateChange: -222179.1 state: Opening type: Door - enabled: True @@ -23605,7 +23560,7 @@ entities: - pos: -8.5,-91.5 parent: 2 type: Transform - - SecondsUntilStateChange: -205956.25 + - SecondsUntilStateChange: -206073.17 state: Opening type: Door - enabled: True @@ -23632,7 +23587,7 @@ entities: - pos: -8.5,-92.5 parent: 2 type: Transform - - SecondsUntilStateChange: -205956.25 + - SecondsUntilStateChange: -206073.17 state: Opening type: Door - enabled: True @@ -23659,7 +23614,7 @@ entities: - pos: -8.5,-93.5 parent: 2 type: Transform - - SecondsUntilStateChange: -205956.25 + - SecondsUntilStateChange: -206073.17 state: Opening type: Door - enabled: True @@ -23686,7 +23641,7 @@ entities: - pos: -6.5,-91.5 parent: 2 type: Transform - - SecondsUntilStateChange: -205956.25 + - SecondsUntilStateChange: -206073.17 state: Opening type: Door - enabled: True @@ -23713,7 +23668,7 @@ entities: - pos: -6.5,-90.5 parent: 2 type: Transform - - SecondsUntilStateChange: -205956.25 + - SecondsUntilStateChange: -206073.17 state: Opening type: Door - enabled: True @@ -23740,7 +23695,7 @@ entities: - pos: -6.5,-92.5 parent: 2 type: Transform - - SecondsUntilStateChange: -205956.25 + - SecondsUntilStateChange: -206073.17 state: Opening type: Door - enabled: True @@ -23767,7 +23722,7 @@ entities: - pos: -6.5,-93.5 parent: 2 type: Transform - - SecondsUntilStateChange: -205956.25 + - SecondsUntilStateChange: -206073.17 state: Opening type: Door - enabled: True @@ -23794,7 +23749,7 @@ entities: - pos: -8.5,-90.5 parent: 2 type: Transform - - SecondsUntilStateChange: -205956.25 + - SecondsUntilStateChange: -206073.17 state: Opening type: Door - enabled: True @@ -23823,7 +23778,7 @@ entities: - pos: -11.5,-11.5 parent: 2 type: Transform - - SecondsUntilStateChange: -50906.73 + - SecondsUntilStateChange: -51023.65 state: Closing type: Door - enabled: False @@ -23848,7 +23803,7 @@ entities: - pos: -56.5,-11.5 parent: 2 type: Transform - - SecondsUntilStateChange: -333632.2 + - SecondsUntilStateChange: -333749.1 state: Opening type: Door - enabled: True @@ -23871,7 +23826,7 @@ entities: - pos: -56.5,-12.5 parent: 2 type: Transform - - SecondsUntilStateChange: -333632.2 + - SecondsUntilStateChange: -333749.1 state: Opening type: Door - enabled: True @@ -23894,7 +23849,7 @@ entities: - pos: -56.5,-13.5 parent: 2 type: Transform - - SecondsUntilStateChange: -333632.2 + - SecondsUntilStateChange: -333749.1 state: Opening type: Door - enabled: True @@ -23917,7 +23872,7 @@ entities: - pos: -56.5,-14.5 parent: 2 type: Transform - - SecondsUntilStateChange: -333632.2 + - SecondsUntilStateChange: -333749.1 state: Opening type: Door - enabled: True @@ -23940,7 +23895,7 @@ entities: - pos: -56.5,-15.5 parent: 2 type: Transform - - SecondsUntilStateChange: -333632.2 + - SecondsUntilStateChange: -333749.1 state: Opening type: Door - enabled: True @@ -23964,7 +23919,7 @@ entities: pos: -64.5,-22.5 parent: 2 type: Transform - - SecondsUntilStateChange: -102829.82 + - SecondsUntilStateChange: -102946.734 state: Opening type: Door - enabled: True @@ -23988,7 +23943,7 @@ entities: pos: -65.5,-22.5 parent: 2 type: Transform - - SecondsUntilStateChange: -102829.82 + - SecondsUntilStateChange: -102946.734 state: Opening type: Door - enabled: True @@ -24012,7 +23967,7 @@ entities: pos: -66.5,-22.5 parent: 2 type: Transform - - SecondsUntilStateChange: -102829.82 + - SecondsUntilStateChange: -102946.734 state: Opening type: Door - enabled: True @@ -24036,7 +23991,7 @@ entities: pos: -67.5,-22.5 parent: 2 type: Transform - - SecondsUntilStateChange: -102829.82 + - SecondsUntilStateChange: -102946.734 state: Opening type: Door - enabled: True @@ -24060,7 +24015,7 @@ entities: pos: -68.5,-22.5 parent: 2 type: Transform - - SecondsUntilStateChange: -102829.82 + - SecondsUntilStateChange: -102946.734 state: Opening type: Door - enabled: True @@ -24881,6 +24836,33 @@ entities: - pos: -4.262462,56.45376 parent: 2 type: Transform + - uid: 30716 + components: + - pos: -7.5253143,11.562103 + parent: 2 + type: Transform + - nextAttack: 49.7885232 + type: MeleeWeapon + - nextSound: 49.9885232 + type: EmitSoundOnCollide + - uid: 30717 + components: + - pos: -4.5110397,5.5954375 + parent: 2 + type: Transform + - nextAttack: 59.2494659 + type: MeleeWeapon + - nextSound: 59.4494659 + type: EmitSoundOnCollide + - uid: 30718 + components: + - pos: -2.4959726,11.545437 + parent: 2 + type: Transform + - nextAttack: 66.4990814 + type: MeleeWeapon + - nextSound: 66.6990814 + type: EmitSoundOnCollide - proto: BulletFoam entities: - uid: 2256 @@ -61570,6 +61552,13 @@ entities: type: Transform - fixtures: {} type: Fixtures + - uid: 30711 + components: + - pos: -13.5,-33.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures - uid: 30712 components: - pos: -14.5,-33.5 @@ -61591,13 +61580,6 @@ entities: type: Transform - fixtures: {} type: Fixtures - - uid: 30711 - components: - - pos: -13.5,-33.5 - parent: 2 - type: Transform - - fixtures: {} - type: Fixtures - uid: 30715 components: - pos: -41.5,-17.5 @@ -157190,7 +157172,7 @@ entities: - pos: 60.5,21.5 parent: 2 type: Transform - - SecondsUntilStateChange: -495022.72 + - SecondsUntilStateChange: -495139.62 state: Opening type: Door - uid: 20525 @@ -157221,7 +157203,7 @@ entities: - pos: 3.5,-62.5 parent: 2 type: Transform - - SecondsUntilStateChange: -569584.3 + - SecondsUntilStateChange: -569701.25 state: Closing type: Door - uid: 20530 @@ -162359,7 +162341,7 @@ entities: - pos: -66.5,-30.5 parent: 2 type: Transform -- proto: ParticleAcceleratorEmitterCenterUnfinished +- proto: ParticleAcceleratorEmitterForeUnfinished entities: - uid: 21181 components: @@ -162367,20 +162349,20 @@ entities: pos: -66.5,-24.5 parent: 2 type: Transform -- proto: ParticleAcceleratorEmitterLeftUnfinished +- proto: ParticleAcceleratorEmitterPortUnfinished entities: - - uid: 21182 + - uid: 21183 components: - rot: 3.141592653589793 rad - pos: -65.5,-24.5 + pos: -67.5,-24.5 parent: 2 type: Transform -- proto: ParticleAcceleratorEmitterRightUnfinished +- proto: ParticleAcceleratorEmitterStarboardUnfinished entities: - - uid: 21183 + - uid: 21182 components: - rot: 3.141592653589793 rad - pos: -67.5,-24.5 + pos: -65.5,-24.5 parent: 2 type: Transform - proto: ParticleAcceleratorEndCapUnfinished @@ -175691,7 +175673,7 @@ entities: type: Occluder - canCollide: False type: Physics - - SecondsUntilStateChange: -105106.98 + - SecondsUntilStateChange: -105223.89 state: Closing type: Door - airBlocked: False @@ -175715,7 +175697,7 @@ entities: type: Occluder - canCollide: False type: Physics - - SecondsUntilStateChange: -105106.98 + - SecondsUntilStateChange: -105223.89 state: Closing type: Door - airBlocked: False @@ -175737,7 +175719,7 @@ entities: pos: 15.5,13.5 parent: 2 type: Transform - - SecondsUntilStateChange: -86162.06 + - SecondsUntilStateChange: -86278.98 state: Opening type: Door - canCollide: True @@ -175766,7 +175748,7 @@ entities: - pos: -32.5,32.5 parent: 2 type: Transform - - SecondsUntilStateChange: -115720.45 + - SecondsUntilStateChange: -115837.37 state: Opening type: Door - canCollide: True @@ -175789,7 +175771,7 @@ entities: - pos: 37.5,-0.5 parent: 2 type: Transform - - SecondsUntilStateChange: -23810.303 + - SecondsUntilStateChange: -23927.219 state: Opening type: Door - canCollide: True @@ -175827,7 +175809,7 @@ entities: pos: 15.5,11.5 parent: 2 type: Transform - - SecondsUntilStateChange: -86162.06 + - SecondsUntilStateChange: -86278.98 state: Opening type: Door - canCollide: True @@ -175851,7 +175833,7 @@ entities: pos: 15.5,10.5 parent: 2 type: Transform - - SecondsUntilStateChange: -86162.06 + - SecondsUntilStateChange: -86278.98 state: Opening type: Door - canCollide: True @@ -175875,7 +175857,7 @@ entities: pos: -2.5,-5.5 parent: 2 type: Transform - - SecondsUntilStateChange: -65831.22 + - SecondsUntilStateChange: -65948.13 state: Opening type: Door - canCollide: True @@ -175898,7 +175880,7 @@ entities: - pos: -0.5,-2.5 parent: 2 type: Transform - - SecondsUntilStateChange: -65831.22 + - SecondsUntilStateChange: -65948.13 state: Opening type: Door - canCollide: True @@ -175921,7 +175903,7 @@ entities: - pos: 18.5,15.5 parent: 2 type: Transform - - SecondsUntilStateChange: -86162.06 + - SecondsUntilStateChange: -86278.98 state: Opening type: Door - canCollide: True @@ -175944,7 +175926,7 @@ entities: - pos: 17.5,15.5 parent: 2 type: Transform - - SecondsUntilStateChange: -86162.06 + - SecondsUntilStateChange: -86278.98 state: Opening type: Door - canCollide: True @@ -175982,7 +175964,7 @@ entities: pos: 48.5,6.5 parent: 2 type: Transform - - SecondsUntilStateChange: -21356.13 + - SecondsUntilStateChange: -21473.047 state: Opening type: Door - canCollide: True @@ -176006,7 +175988,7 @@ entities: pos: 35.5,4.5 parent: 2 type: Transform - - SecondsUntilStateChange: -85249.336 + - SecondsUntilStateChange: -85366.25 state: Opening type: Door - canCollide: True @@ -176030,7 +176012,7 @@ entities: pos: 15.5,12.5 parent: 2 type: Transform - - SecondsUntilStateChange: -86162.06 + - SecondsUntilStateChange: -86278.98 state: Opening type: Door - canCollide: True @@ -176053,7 +176035,7 @@ entities: - pos: 61.5,-56.5 parent: 2 type: Transform - - SecondsUntilStateChange: -115634.72 + - SecondsUntilStateChange: -115751.63 state: Opening type: Door - canCollide: True @@ -176077,7 +176059,7 @@ entities: pos: 15.5,14.5 parent: 2 type: Transform - - SecondsUntilStateChange: -86162.06 + - SecondsUntilStateChange: -86278.98 state: Opening type: Door - canCollide: True @@ -176100,7 +176082,7 @@ entities: - pos: 45.5,9.5 parent: 2 type: Transform - - SecondsUntilStateChange: -21356.13 + - SecondsUntilStateChange: -21473.047 state: Opening type: Door - canCollide: True @@ -176123,7 +176105,7 @@ entities: - pos: 43.5,7.5 parent: 2 type: Transform - - SecondsUntilStateChange: -21356.13 + - SecondsUntilStateChange: -21473.047 state: Opening type: Door - canCollide: True @@ -176146,7 +176128,7 @@ entities: - pos: 62.5,-56.5 parent: 2 type: Transform - - SecondsUntilStateChange: -115634.72 + - SecondsUntilStateChange: -115751.63 state: Opening type: Door - canCollide: True @@ -176169,7 +176151,7 @@ entities: - pos: 63.5,-56.5 parent: 2 type: Transform - - SecondsUntilStateChange: -115634.72 + - SecondsUntilStateChange: -115751.63 state: Opening type: Door - canCollide: True @@ -176192,7 +176174,7 @@ entities: - pos: 22.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -110726.125 + - SecondsUntilStateChange: -110843.04 state: Opening type: Door - canCollide: True @@ -176215,7 +176197,7 @@ entities: - pos: -30.5,27.5 parent: 2 type: Transform - - SecondsUntilStateChange: -115720.45 + - SecondsUntilStateChange: -115837.37 state: Opening type: Door - canCollide: True @@ -176238,7 +176220,7 @@ entities: - pos: 29.5,9.5 parent: 2 type: Transform - - SecondsUntilStateChange: -85249.336 + - SecondsUntilStateChange: -85366.25 state: Opening type: Door - canCollide: True @@ -176261,7 +176243,7 @@ entities: - pos: 34.5,9.5 parent: 2 type: Transform - - SecondsUntilStateChange: -85249.336 + - SecondsUntilStateChange: -85366.25 state: Opening type: Door - canCollide: True @@ -176284,7 +176266,7 @@ entities: - pos: -31.5,27.5 parent: 2 type: Transform - - SecondsUntilStateChange: -115720.45 + - SecondsUntilStateChange: -115837.37 state: Opening type: Door - canCollide: True @@ -176308,7 +176290,7 @@ entities: pos: 35.5,7.5 parent: 2 type: Transform - - SecondsUntilStateChange: -85249.336 + - SecondsUntilStateChange: -85366.25 state: Opening type: Door - canCollide: True @@ -176331,7 +176313,7 @@ entities: - pos: -33.5,27.5 parent: 2 type: Transform - - SecondsUntilStateChange: -115720.45 + - SecondsUntilStateChange: -115837.37 state: Opening type: Door - canCollide: True @@ -176354,7 +176336,7 @@ entities: - pos: -49.5,13.5 parent: 2 type: Transform - - SecondsUntilStateChange: -75899.27 + - SecondsUntilStateChange: -76016.19 state: Opening type: Door - canCollide: True @@ -176377,7 +176359,7 @@ entities: - pos: -48.5,13.5 parent: 2 type: Transform - - SecondsUntilStateChange: -75899.27 + - SecondsUntilStateChange: -76016.19 state: Opening type: Door - canCollide: True @@ -176400,7 +176382,7 @@ entities: - pos: -31.5,32.5 parent: 2 type: Transform - - SecondsUntilStateChange: -115720.45 + - SecondsUntilStateChange: -115837.37 state: Opening type: Door - canCollide: True @@ -176423,7 +176405,7 @@ entities: - pos: 32.5,9.5 parent: 2 type: Transform - - SecondsUntilStateChange: -85249.336 + - SecondsUntilStateChange: -85366.25 state: Opening type: Door - canCollide: True @@ -176446,7 +176428,7 @@ entities: - pos: 39.5,-0.5 parent: 2 type: Transform - - SecondsUntilStateChange: -23810.303 + - SecondsUntilStateChange: -23927.219 state: Opening type: Door - canCollide: True @@ -176469,7 +176451,7 @@ entities: - pos: -33.5,32.5 parent: 2 type: Transform - - SecondsUntilStateChange: -115720.45 + - SecondsUntilStateChange: -115837.37 state: Opening type: Door - canCollide: True @@ -176492,7 +176474,7 @@ entities: - pos: -46.5,13.5 parent: 2 type: Transform - - SecondsUntilStateChange: -75899.27 + - SecondsUntilStateChange: -76016.19 state: Opening type: Door - canCollide: True @@ -176515,7 +176497,7 @@ entities: - pos: -47.5,13.5 parent: 2 type: Transform - - SecondsUntilStateChange: -75899.27 + - SecondsUntilStateChange: -76016.19 state: Opening type: Door - canCollide: True @@ -176538,7 +176520,7 @@ entities: - pos: 43.5,5.5 parent: 2 type: Transform - - SecondsUntilStateChange: -21356.13 + - SecondsUntilStateChange: -21473.047 state: Opening type: Door - canCollide: True @@ -176561,7 +176543,7 @@ entities: - pos: 59.5,-54.5 parent: 2 type: Transform - - SecondsUntilStateChange: -115634.72 + - SecondsUntilStateChange: -115751.63 state: Opening type: Door - canCollide: True @@ -176584,7 +176566,7 @@ entities: - pos: 65.5,-54.5 parent: 2 type: Transform - - SecondsUntilStateChange: -115634.72 + - SecondsUntilStateChange: -115751.63 state: Opening type: Door - canCollide: True @@ -176608,7 +176590,7 @@ entities: pos: 66.5,-51.5 parent: 2 type: Transform - - SecondsUntilStateChange: -115634.72 + - SecondsUntilStateChange: -115751.63 state: Opening type: Door - canCollide: True @@ -176632,7 +176614,7 @@ entities: pos: 66.5,-52.5 parent: 2 type: Transform - - SecondsUntilStateChange: -115634.72 + - SecondsUntilStateChange: -115751.63 state: Opening type: Door - canCollide: True @@ -176656,7 +176638,7 @@ entities: pos: 58.5,-51.5 parent: 2 type: Transform - - SecondsUntilStateChange: -115634.72 + - SecondsUntilStateChange: -115751.63 state: Opening type: Door - canCollide: True @@ -176680,7 +176662,7 @@ entities: pos: 58.5,-52.5 parent: 2 type: Transform - - SecondsUntilStateChange: -115634.72 + - SecondsUntilStateChange: -115751.63 state: Opening type: Door - canCollide: True @@ -176703,7 +176685,7 @@ entities: - pos: 61.5,-50.5 parent: 2 type: Transform - - SecondsUntilStateChange: -115634.72 + - SecondsUntilStateChange: -115751.63 state: Opening type: Door - canCollide: True @@ -176726,7 +176708,7 @@ entities: - pos: 63.5,-50.5 parent: 2 type: Transform - - SecondsUntilStateChange: -115634.72 + - SecondsUntilStateChange: -115751.63 state: Opening type: Door - canCollide: True @@ -176749,7 +176731,7 @@ entities: - pos: -20.5,-58.5 parent: 2 type: Transform - - SecondsUntilStateChange: -115575.52 + - SecondsUntilStateChange: -115692.44 state: Opening type: Door - canCollide: True @@ -176772,7 +176754,7 @@ entities: - pos: -18.5,-58.5 parent: 2 type: Transform - - SecondsUntilStateChange: -115575.52 + - SecondsUntilStateChange: -115692.44 state: Opening type: Door - canCollide: True @@ -176795,7 +176777,7 @@ entities: - pos: -37.5,-14.5 parent: 2 type: Transform - - SecondsUntilStateChange: -65788.37 + - SecondsUntilStateChange: -65905.28 state: Opening type: Door - canCollide: True @@ -176819,7 +176801,7 @@ entities: pos: -33.5,-15.5 parent: 2 type: Transform - - SecondsUntilStateChange: -65788.37 + - SecondsUntilStateChange: -65905.28 state: Opening type: Door - canCollide: True @@ -176843,7 +176825,7 @@ entities: pos: -33.5,-17.5 parent: 2 type: Transform - - SecondsUntilStateChange: -65788.37 + - SecondsUntilStateChange: -65905.28 state: Opening type: Door - canCollide: True @@ -176866,7 +176848,7 @@ entities: - pos: 0.5,-2.5 parent: 2 type: Transform - - SecondsUntilStateChange: -65831.22 + - SecondsUntilStateChange: -65948.13 state: Opening type: Door - canCollide: True @@ -176889,7 +176871,7 @@ entities: - pos: 1.5,-2.5 parent: 2 type: Transform - - SecondsUntilStateChange: -65831.22 + - SecondsUntilStateChange: -65948.13 state: Opening type: Door - canCollide: True @@ -176913,7 +176895,7 @@ entities: pos: 7.5,9.5 parent: 2 type: Transform - - SecondsUntilStateChange: -54984.3 + - SecondsUntilStateChange: -55101.22 state: Opening type: Door - canCollide: True @@ -176937,7 +176919,7 @@ entities: pos: 7.5,8.5 parent: 2 type: Transform - - SecondsUntilStateChange: -54984.3 + - SecondsUntilStateChange: -55101.22 state: Opening type: Door - canCollide: True @@ -176961,7 +176943,7 @@ entities: pos: 7.5,7.5 parent: 2 type: Transform - - SecondsUntilStateChange: -54984.3 + - SecondsUntilStateChange: -55101.22 state: Opening type: Door - canCollide: True @@ -176984,7 +176966,7 @@ entities: - pos: 2.5,4.5 parent: 2 type: Transform - - SecondsUntilStateChange: -54984.3 + - SecondsUntilStateChange: -55101.22 state: Opening type: Door - canCollide: True @@ -177021,7 +177003,7 @@ entities: - pos: 0.5,4.5 parent: 2 type: Transform - - SecondsUntilStateChange: -54984.3 + - SecondsUntilStateChange: -55101.22 state: Opening type: Door - canCollide: True @@ -177044,7 +177026,7 @@ entities: - pos: 5.5,11.5 parent: 2 type: Transform - - SecondsUntilStateChange: -54984.3 + - SecondsUntilStateChange: -55101.22 state: Opening type: Door - canCollide: True @@ -177067,7 +177049,7 @@ entities: - pos: 4.5,11.5 parent: 2 type: Transform - - SecondsUntilStateChange: -54984.3 + - SecondsUntilStateChange: -55101.22 state: Opening type: Door - canCollide: True @@ -177090,7 +177072,7 @@ entities: - pos: 23.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -110726.125 + - SecondsUntilStateChange: -110843.04 state: Opening type: Door - canCollide: True @@ -177113,7 +177095,7 @@ entities: - pos: 24.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -110726.125 + - SecondsUntilStateChange: -110843.04 state: Opening type: Door - canCollide: True @@ -177136,7 +177118,7 @@ entities: - pos: 25.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -110726.125 + - SecondsUntilStateChange: -110843.04 state: Opening type: Door - canCollide: True @@ -177159,7 +177141,7 @@ entities: - pos: 26.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -110726.125 + - SecondsUntilStateChange: -110843.04 state: Opening type: Door - canCollide: True @@ -177182,7 +177164,7 @@ entities: - pos: 27.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -110726.125 + - SecondsUntilStateChange: -110843.04 state: Opening type: Door - canCollide: True @@ -177205,7 +177187,7 @@ entities: - pos: 28.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -110726.125 + - SecondsUntilStateChange: -110843.04 state: Opening type: Door - canCollide: True @@ -177229,7 +177211,7 @@ entities: pos: -2.5,-4.5 parent: 2 type: Transform - - SecondsUntilStateChange: -65831.22 + - SecondsUntilStateChange: -65948.13 state: Opening type: Door - canCollide: True @@ -177253,7 +177235,7 @@ entities: pos: 1.5,-46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -21225.889 + - SecondsUntilStateChange: -21342.805 state: Opening type: Door - canCollide: True @@ -177276,7 +177258,7 @@ entities: - pos: 34.5,18.5 parent: 2 type: Transform - - SecondsUntilStateChange: -83744.93 + - SecondsUntilStateChange: -83861.84 state: Opening type: Door - canCollide: True @@ -177299,7 +177281,7 @@ entities: - pos: 35.5,18.5 parent: 2 type: Transform - - SecondsUntilStateChange: -83744.93 + - SecondsUntilStateChange: -83861.84 state: Opening type: Door - canCollide: True @@ -177322,7 +177304,7 @@ entities: - pos: 36.5,18.5 parent: 2 type: Transform - - SecondsUntilStateChange: -83744.93 + - SecondsUntilStateChange: -83861.84 state: Opening type: Door - canCollide: True @@ -177360,7 +177342,7 @@ entities: pos: 48.5,7.5 parent: 2 type: Transform - - SecondsUntilStateChange: -21356.13 + - SecondsUntilStateChange: -21473.047 state: Opening type: Door - canCollide: True @@ -177383,7 +177365,7 @@ entities: - pos: 46.5,9.5 parent: 2 type: Transform - - SecondsUntilStateChange: -21356.13 + - SecondsUntilStateChange: -21473.047 state: Opening type: Door - canCollide: True @@ -177407,7 +177389,7 @@ entities: pos: 35.5,-1.5 parent: 2 type: Transform - - SecondsUntilStateChange: -23810.303 + - SecondsUntilStateChange: -23927.219 state: Opening type: Door - canCollide: True @@ -177431,7 +177413,7 @@ entities: pos: 35.5,-2.5 parent: 2 type: Transform - - SecondsUntilStateChange: -23810.303 + - SecondsUntilStateChange: -23927.219 state: Opening type: Door - canCollide: True @@ -177455,7 +177437,7 @@ entities: pos: 35.5,-4.5 parent: 2 type: Transform - - SecondsUntilStateChange: -23810.303 + - SecondsUntilStateChange: -23927.219 state: Opening type: Door - canCollide: True @@ -177479,7 +177461,7 @@ entities: pos: 35.5,-5.5 parent: 2 type: Transform - - SecondsUntilStateChange: -23810.303 + - SecondsUntilStateChange: -23927.219 state: Opening type: Door - canCollide: True @@ -177502,7 +177484,7 @@ entities: - pos: 41.5,-0.5 parent: 2 type: Transform - - SecondsUntilStateChange: -23805.803 + - SecondsUntilStateChange: -23922.719 state: Opening type: Door - canCollide: True @@ -177525,7 +177507,7 @@ entities: - pos: 42.5,-0.5 parent: 2 type: Transform - - SecondsUntilStateChange: -23805.803 + - SecondsUntilStateChange: -23922.719 state: Opening type: Door - canCollide: True @@ -177548,7 +177530,7 @@ entities: - pos: 43.5,-0.5 parent: 2 type: Transform - - SecondsUntilStateChange: -23805.803 + - SecondsUntilStateChange: -23922.719 state: Opening type: Door - canCollide: True @@ -177571,7 +177553,7 @@ entities: - pos: 46.5,3.5 parent: 2 type: Transform - - SecondsUntilStateChange: -21356.13 + - SecondsUntilStateChange: -21473.047 state: Opening type: Door - canCollide: True @@ -177595,7 +177577,7 @@ entities: pos: 1.5,-47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -21225.889 + - SecondsUntilStateChange: -21342.805 state: Opening type: Door - canCollide: True @@ -177619,7 +177601,7 @@ entities: pos: 1.5,-48.5 parent: 2 type: Transform - - SecondsUntilStateChange: -21225.889 + - SecondsUntilStateChange: -21342.805 state: Opening type: Door - canCollide: True @@ -177642,7 +177624,7 @@ entities: - pos: 3.5,-44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -21225.889 + - SecondsUntilStateChange: -21342.805 state: Opening type: Door - canCollide: True @@ -177665,7 +177647,7 @@ entities: - pos: 4.5,-44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -21225.889 + - SecondsUntilStateChange: -21342.805 state: Opening type: Door - canCollide: True @@ -177688,7 +177670,7 @@ entities: - pos: 5.5,-44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -21225.889 + - SecondsUntilStateChange: -21342.805 state: Opening type: Door - canCollide: True @@ -177711,7 +177693,7 @@ entities: - pos: 3.5,-51.5 parent: 2 type: Transform - - SecondsUntilStateChange: -21225.889 + - SecondsUntilStateChange: -21342.805 state: Opening type: Door - canCollide: True From 47676525d71ca32881fa5f199f567fa183c6a3b9 Mon Sep 17 00:00:00 2001 From: Nairod <110078045+Nairodian@users.noreply.github.com> Date: Fri, 9 Jun 2023 21:58:09 -0500 Subject: [PATCH 165/474] Remove Multitools From Salvagers (#17244) --- Resources/Prototypes/Catalog/Fills/Items/belt.yml | 13 +++++++++++++ .../Jobs/Engineering/atmospheric_technician.yml | 2 +- .../Roles/Jobs/Engineering/station_engineer.yml | 2 +- .../Roles/Jobs/Engineering/technical_assistant.yml | 2 +- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/Resources/Prototypes/Catalog/Fills/Items/belt.yml b/Resources/Prototypes/Catalog/Fills/Items/belt.yml index 05d5cdbdb3..ade417352b 100644 --- a/Resources/Prototypes/Catalog/Fills/Items/belt.yml +++ b/Resources/Prototypes/Catalog/Fills/Items/belt.yml @@ -3,6 +3,19 @@ parent: ClothingBeltUtility suffix: Filled components: + - type: StorageFill + contents: + - id: Crowbar + - id: Wrench + - id: Screwdriver + - id: Wirecutter + - id: Welder + +- type: entity + id: ClothingBeltUtilityEngineering + parent: ClothingBeltUtility + suffix: Engineering + components: - type: StorageFill contents: - id: Crowbar diff --git a/Resources/Prototypes/Roles/Jobs/Engineering/atmospheric_technician.yml b/Resources/Prototypes/Roles/Jobs/Engineering/atmospheric_technician.yml index c80eb7be6a..75ec5e161d 100644 --- a/Resources/Prototypes/Roles/Jobs/Engineering/atmospheric_technician.yml +++ b/Resources/Prototypes/Roles/Jobs/Engineering/atmospheric_technician.yml @@ -25,7 +25,7 @@ shoes: ClothingShoesColorWhite eyes: ClothingEyesGlassesMeson id: AtmosPDA - belt: ClothingBeltUtilityFilled + belt: ClothingBeltUtilityEngineering ears: ClothingHeadsetEngineering innerclothingskirt: ClothingUniformJumpskirtAtmos satchel: ClothingBackpackSatchelEngineeringFilled diff --git a/Resources/Prototypes/Roles/Jobs/Engineering/station_engineer.yml b/Resources/Prototypes/Roles/Jobs/Engineering/station_engineer.yml index 0b90792ca8..fd48e33e0b 100644 --- a/Resources/Prototypes/Roles/Jobs/Engineering/station_engineer.yml +++ b/Resources/Prototypes/Roles/Jobs/Engineering/station_engineer.yml @@ -27,7 +27,7 @@ outerClothing: ClothingOuterVestHazard id: EngineerPDA eyes: ClothingEyesGlassesMeson - belt: ClothingBeltUtilityFilled + belt: ClothingBeltUtilityEngineering ears: ClothingHeadsetEngineering innerclothingskirt: ClothingUniformJumpskirtEngineering satchel: ClothingBackpackSatchelEngineeringFilled diff --git a/Resources/Prototypes/Roles/Jobs/Engineering/technical_assistant.yml b/Resources/Prototypes/Roles/Jobs/Engineering/technical_assistant.yml index 5cd1aa43d8..a7951a1b6f 100644 --- a/Resources/Prototypes/Roles/Jobs/Engineering/technical_assistant.yml +++ b/Resources/Prototypes/Roles/Jobs/Engineering/technical_assistant.yml @@ -25,7 +25,7 @@ back: ClothingBackpackEngineeringFilled shoes: ClothingShoesBootsWork id: TechnicalAssistantPDA - belt: ClothingBeltUtilityFilled + belt: ClothingBeltUtilityEngineering ears: ClothingHeadsetEngineering innerclothingskirt: ClothingUniformJumpskirtColorYellow satchel: ClothingBackpackSatchelEngineeringFilled From 3159e75849ee8c93caef7fba6d6bd2b180ec92c6 Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 9 Jun 2023 22:59:18 -0400 Subject: [PATCH 166/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index f149791646..0e3865e3c8 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: metalgearsloth - changes: - - {message: Fix NPCs prying doors., type: Fix} - id: 3476 - time: '2023-04-21T05:05:29.0000000+00:00' - author: metalgearsloth changes: - {message: Disabled ghost roles for salvage expeditions., type: Tweak} @@ -2908,3 +2903,9 @@ Entries: type: Fix} id: 3975 time: '2023-06-08T15:10:27.0000000+00:00' +- author: Nairodian + changes: + - {message: Tweaked toolbelt starting items to remove multitools from non-engineering + personnel., type: Tweak} + id: 3976 + time: '2023-06-10T02:58:09.0000000+00:00' From aad3acfc92053eb58f09a8966e89a1e19af8d5d1 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Sat, 10 Jun 2023 19:43:54 +1000 Subject: [PATCH 167/474] Fix cargo pallet collision (#17248) --- .../Entities/Objects/Specific/Cargo/cargo_pallet.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Resources/Prototypes/Entities/Objects/Specific/Cargo/cargo_pallet.yml b/Resources/Prototypes/Entities/Objects/Specific/Cargo/cargo_pallet.yml index 0e14ba06ac..683df33b74 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Cargo/cargo_pallet.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Cargo/cargo_pallet.yml @@ -6,6 +6,9 @@ components: - type: InteractionOutline - type: Anchorable + - type: CollideOnAnchor + - type: Physics + canCollide: false - type: Fixtures fixtures: fix1: From 16bf9f5cedd0d0017e1a7117e2efdf0774ac3de5 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 10 Jun 2023 05:44:58 -0400 Subject: [PATCH 168/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 0e3865e3c8..c77433e5f4 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: metalgearsloth - changes: - - {message: Disabled ghost roles for salvage expeditions., type: Tweak} - id: 3477 - time: '2023-04-21T05:06:22.0000000+00:00' - author: qtqt changes: - {message: Added song for salvage at the 2 minute timer (for expeditions)., type: Add} @@ -2909,3 +2904,8 @@ Entries: personnel., type: Tweak} id: 3976 time: '2023-06-10T02:58:09.0000000+00:00' +- author: metalgearsloth + changes: + - {message: Fix cargo pallet collision when anchored., type: Fix} + id: 3977 + time: '2023-06-10T09:43:55.0000000+00:00' From f055faeebdc26d334ac3b33f2fc9faca8084d6ca Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Sat, 10 Jun 2023 14:51:26 +0300 Subject: [PATCH 169/474] remove netsync false from sprite component in prototypes (#17207) --- .../Prototypes/Body/Organs/Animal/animal.yml | 1 - Resources/Prototypes/Body/Organs/arachnid.yml | 1 - Resources/Prototypes/Body/Organs/diona.yml | 1 - Resources/Prototypes/Body/Organs/human.yml | 1 - Resources/Prototypes/Body/Organs/slime.yml | 1 - Resources/Prototypes/Body/Parts/arachnid.yml | 10 ---------- Resources/Prototypes/Body/Parts/diona.yml | 1 - Resources/Prototypes/Body/Parts/human.yml | 10 ---------- Resources/Prototypes/Body/Parts/reptilian.yml | 10 ---------- Resources/Prototypes/Body/Parts/silicon.yml | 5 ----- Resources/Prototypes/Body/Parts/skeleton.yml | 10 ---------- Resources/Prototypes/Body/Parts/slime.yml | 10 ---------- Resources/Prototypes/Body/Parts/vox.yml | 10 ---------- .../Prototypes/Catalog/Fills/Paper/manuals.yml | 1 - .../Entities/Clothing/Ears/specific.yml | 1 - .../Entities/Clothing/Eyes/specific.yml | 1 - .../Entities/Clothing/Hands/specific.yml | 1 - .../Entities/Clothing/Head/base_clothinghead.yml | 2 -- .../Entities/Clothing/Head/hardhats.yml | 1 - .../Entities/Clothing/Head/hardsuit-helmets.yml | 3 --- .../Entities/Clothing/Head/specific.yml | 1 - .../Entities/Clothing/Masks/specific.yml | 1 - .../Entities/Clothing/Neck/specific.yml | 1 - .../Entities/Clothing/OuterClothing/specific.yml | 1 - .../Entities/Clothing/Shoes/magboots.yml | 1 - .../Entities/Clothing/Shoes/specific.yml | 1 - .../Entities/Clothing/Uniforms/specific.yml | 1 - .../Entities/Clothing/base_clothing.yml | 1 - .../Entities/Effects/chemistry_effects.yml | 2 -- .../Prototypes/Entities/Effects/emp_effects.yml | 2 -- .../Prototypes/Entities/Effects/lightning.yml | 1 - Resources/Prototypes/Entities/Effects/puddle.yml | 1 - .../Prototypes/Entities/Effects/weapon_arc.yml | 2 -- .../Prototypes/Entities/Markers/marker_base.yml | 1 - .../Prototypes/Entities/Markers/pointing.yml | 1 - .../Prototypes/Entities/Mobs/NPCs/animals.yml | 1 - Resources/Prototypes/Entities/Mobs/NPCs/carp.yml | 1 - .../Prototypes/Entities/Mobs/NPCs/revenant.yml | 1 - .../Prototypes/Entities/Mobs/NPCs/silicon.yml | 1 - .../Prototypes/Entities/Mobs/NPCs/simplemob.yml | 1 - .../Prototypes/Entities/Mobs/NPCs/slimes.yml | 1 - Resources/Prototypes/Entities/Mobs/NPCs/space.yml | 4 ---- .../Prototypes/Entities/Mobs/Player/guardian.yml | 1 - .../Prototypes/Entities/Mobs/Player/humanoid.yml | 15 --------------- .../Prototypes/Entities/Mobs/Player/observer.yml | 1 - .../Prototypes/Entities/Mobs/Player/silicon.yml | 3 --- .../Prototypes/Entities/Mobs/Species/base.yml | 2 -- .../Prototypes/Entities/Mobs/Species/dwarf.yml | 2 -- .../Objects/Consumable/Drinks/drinks_cans.yml | 2 -- .../Drinks/drinks_solutioncontainerexample.yml | 2 -- .../Objects/Consumable/Food/Baked/bread.yml | 1 - .../Objects/Consumable/Food/Baked/cake.yml | 1 - .../Objects/Consumable/Food/Baked/donkpocket.yml | 1 - .../Objects/Consumable/Food/Baked/donut.yml | 1 - .../Objects/Consumable/Food/Baked/misc.yml | 2 -- .../Objects/Consumable/Food/Baked/pie.yml | 2 -- .../Objects/Consumable/Food/Baked/pizza.yml | 2 -- .../Objects/Consumable/Food/Containers/bowl.yml | 2 -- .../Objects/Consumable/Food/Containers/box.yml | 9 --------- .../Objects/Consumable/Food/Containers/plate.yml | 6 ------ .../Objects/Consumable/Food/Containers/tin.yml | 2 -- .../Entities/Objects/Consumable/Food/burger.yml | 1 - .../Entities/Objects/Consumable/Food/egg.yml | 2 -- .../Objects/Consumable/Food/food_base.yml | 1 - .../Entities/Objects/Consumable/Food/frozen.yml | 3 --- .../Objects/Consumable/Food/ingredients.yml | 2 -- .../Entities/Objects/Consumable/Food/meals.yml | 2 -- .../Entities/Objects/Consumable/Food/meat.yml | 4 ---- .../Entities/Objects/Consumable/Food/noodles.yml | 1 - .../Entities/Objects/Consumable/Food/produce.yml | 4 ---- .../Entities/Objects/Consumable/Food/skewer.yml | 1 - .../Entities/Objects/Consumable/Food/snacks.yml | 5 ----- .../Entities/Objects/Consumable/Food/soup.yml | 1 - .../Smokeables/Cigarettes/cigarette.yml | 1 - .../Consumable/Smokeables/Cigarettes/joints.yml | 2 -- .../Consumable/Smokeables/Cigarettes/packs.yml | 1 - .../Objects/Consumable/Smokeables/Cigars/case.yml | 1 - .../Consumable/Smokeables/Cigars/cigar.yml | 2 -- .../Objects/Consumable/Smokeables/Pipes/pipe.yml | 1 - .../Objects/Consumable/Smokeables/Vapes/vape.yml | 1 - .../Consumable/Smokeables/base_smokeables.yml | 1 - .../Entities/Objects/Decoration/flora.yml | 2 -- .../Entities/Objects/Decoration/present.yml | 2 -- .../Devices/Electronics/base_electronics.yml | 1 - .../Objects/Devices/Electronics/firelock.yml | 1 - .../Devices/Electronics/power_electronics.yml | 5 ----- .../Syndicate_Gadgets/guardian_activators.yml | 1 - .../reinforcement_teleporter.yml | 1 - .../Entities/Objects/Devices/cartridges.yml | 2 -- .../Entities/Objects/Devices/door_remote.yml | 1 - .../Entities/Objects/Devices/encryption_keys.yml | 1 - .../Entities/Objects/Devices/forensic_scanner.yml | 1 - .../Entities/Objects/Devices/geiger.yml | 1 - .../Entities/Objects/Devices/holoprojectors.yml | 3 --- .../Entities/Objects/Devices/mousetrap.yml | 1 - .../Prototypes/Entities/Objects/Devices/nuke.yml | 2 -- .../Entities/Objects/Devices/payload.yml | 1 - .../Prototypes/Entities/Objects/Devices/pda.yml | 1 - .../Entities/Objects/Devices/station_map.yml | 1 - .../Objects/Fun/Instruments/base_instruments.yml | 1 - .../Entities/Objects/Fun/Tabletop/checkers.yml | 1 - .../Entities/Objects/Fun/Tabletop/chess.yml | 1 - .../Objects/Fun/Tabletop/tabletopGeneric.yml | 1 - .../Prototypes/Entities/Objects/Fun/crayons.yml | 1 - .../Prototypes/Entities/Objects/Fun/dice.yml | 1 - .../Prototypes/Entities/Objects/Fun/dice_bag.yml | 2 -- .../Prototypes/Entities/Objects/Fun/puppet.yml | 2 -- .../Prototypes/Entities/Objects/Fun/skub.yml | 1 - .../Prototypes/Entities/Objects/Fun/toys.yml | 7 ------- .../Prototypes/Entities/Objects/Magic/books.yml | 7 ------- .../Entities/Objects/Materials/Sheets/metal.yml | 1 - .../Entities/Objects/Materials/Sheets/other.yml | 1 - .../Entities/Objects/Materials/ingots.yml | 1 - .../Entities/Objects/Materials/materials.yml | 2 -- .../Prototypes/Entities/Objects/Materials/ore.yml | 1 - .../Entities/Objects/Materials/parts.yml | 1 - .../Entities/Objects/Materials/shards.yml | 1 - .../Entities/Objects/Misc/bedsheets.yml | 1 - .../Prototypes/Entities/Objects/Misc/books.yml | 1 - .../Prototypes/Entities/Objects/Misc/box.yml | 1 - .../Entities/Objects/Misc/dat_fukken_disk.yml | 2 -- .../Entities/Objects/Misc/desk_bell.yml | 1 - .../Entities/Objects/Misc/fire_extinguisher.yml | 1 - .../Entities/Objects/Misc/fluff_lights.yml | 1 - .../Entities/Objects/Misc/implanters.yml | 2 -- .../Entities/Objects/Misc/inflatable_wall.yml | 1 - .../Prototypes/Entities/Objects/Misc/kudzu.yml | 2 -- .../Entities/Objects/Misc/machine_parts.yml | 1 - .../Prototypes/Entities/Objects/Misc/paper.yml | 8 -------- .../Entities/Objects/Misc/space_cash.yml | 1 - .../Entities/Objects/Misc/spider_web.yml | 1 - .../Prototypes/Entities/Objects/Misc/tiles.yml | 1 - .../Entities/Objects/Power/antimatter_jar.yml | 1 - .../Prototypes/Entities/Objects/Power/lights.yml | 1 - .../Entities/Objects/Power/powercells.yml | 1 - .../Entities/Objects/Power/powersink.yml | 1 - .../Entities/Objects/Shields/shields.yml | 1 - .../Entities/Objects/Specific/Chapel/bibles.yml | 2 -- .../Objects/Specific/Chemistry/chem_bag.yml | 1 - .../Objects/Specific/Forensics/forensics.yml | 1 - .../Objects/Specific/Hydroponics/tools.yml | 3 --- .../Objects/Specific/Janitorial/janitor.yml | 3 --- .../Objects/Specific/Janitorial/spray.yml | 4 ---- .../Objects/Specific/Janitorial/trashbag.yml | 1 - .../Objects/Specific/Librarian/books_bag.yml | 1 - .../Objects/Specific/Mech/mech_construction.yml | 2 -- .../Entities/Objects/Specific/Mech/mechs.yml | 2 -- .../Entities/Objects/Specific/Medical/disease.yml | 2 -- .../Entities/Objects/Specific/Medical/healing.yml | 1 - .../Objects/Specific/Medical/healthanalyzer.yml | 1 - .../Entities/Objects/Specific/Medical/medkits.yml | 1 - .../Entities/Objects/Specific/Medical/morgue.yml | 3 --- .../Objects/Specific/Medical/randompill.yml | 1 - .../Entities/Objects/Specific/Medical/surgery.yml | 1 - .../Objects/Specific/Research/anomaly.yml | 4 +--- .../Entities/Objects/Specific/Salvage/ore_bag.yml | 1 - .../Objects/Specific/Security/barrier.yml | 1 - .../Entities/Objects/Specific/Security/target.yml | 1 - .../Specific/Service/vending_machine_restock.yml | 1 - .../Entities/Objects/Specific/atmos.yml | 1 - .../Objects/Specific/chemical-containers.yml | 1 - .../Entities/Objects/Specific/chemistry.yml | 3 --- .../Entities/Objects/Specific/syndicate.yml | 2 -- .../Entities/Objects/Tools/airlock_painter.yml | 1 - .../Entities/Objects/Tools/appraisal.yml | 3 +-- .../Prototypes/Entities/Objects/Tools/bucket.yml | 1 - .../Prototypes/Entities/Objects/Tools/emag.yml | 2 -- .../Entities/Objects/Tools/flashlights.yml | 1 - .../Entities/Objects/Tools/gas_tanks.yml | 1 - .../Prototypes/Entities/Objects/Tools/gps.yml | 1 - .../Entities/Objects/Tools/hand_labeler.yml | 1 - .../Entities/Objects/Tools/inflatable_wall.yml | 2 -- .../Prototypes/Entities/Objects/Tools/jammer.yml | 1 - .../Entities/Objects/Tools/jaws_of_life.yml | 1 - .../Entities/Objects/Tools/jetpacks.yml | 2 -- .../Entities/Objects/Tools/lighters.yml | 1 - .../Prototypes/Entities/Objects/Tools/matches.yml | 2 -- .../Prototypes/Entities/Objects/Tools/t-ray.yml | 1 - .../Prototypes/Entities/Objects/Tools/toolbox.yml | 1 - .../Prototypes/Entities/Objects/Tools/tools.yml | 4 ---- .../Prototypes/Entities/Objects/Tools/welders.yml | 1 - .../Entities/Objects/Vehicles/buckleable.yml | 7 ------- .../Prototypes/Entities/Objects/Vehicles/keys.yml | 5 ----- .../Entities/Objects/Weapons/Bombs/funny.yml | 2 -- .../Entities/Objects/Weapons/Bombs/pen.yml | 1 - .../Guns/Ammunition/Boxes/antimateriel.yml | 1 - .../Guns/Ammunition/Boxes/caseless_rifle.yml | 1 - .../Weapons/Guns/Ammunition/Boxes/light_rifle.yml | 1 - .../Weapons/Guns/Ammunition/Boxes/magnum.yml | 1 - .../Weapons/Guns/Ammunition/Boxes/pistol.yml | 1 - .../Weapons/Guns/Ammunition/Boxes/rifle.yml | 1 - .../Objects/Weapons/Guns/Ammunition/Boxes/toy.yml | 1 - .../Guns/Ammunition/Cartridges/base_cartridge.yml | 1 - .../Guns/Ammunition/Cartridges/caseless_rifle.yml | 1 - .../Guns/Ammunition/Cartridges/heavy_rifle.yml | 1 - .../Guns/Ammunition/Cartridges/light_rifle.yml | 1 - .../Weapons/Guns/Ammunition/Cartridges/magnum.yml | 2 -- .../Weapons/Guns/Ammunition/Cartridges/pistol.yml | 1 - .../Weapons/Guns/Ammunition/Cartridges/rifle.yml | 1 - .../Guns/Ammunition/Cartridges/shotgun.yml | 1 - .../Weapons/Guns/Ammunition/Cartridges/toy.yml | 1 - .../Guns/Ammunition/Magazines/caseless_rifle.yml | 1 - .../Guns/Ammunition/Magazines/heavy_rifle.yml | 1 - .../Guns/Ammunition/Magazines/light_rifle.yml | 1 - .../Weapons/Guns/Ammunition/Magazines/magnum.yml | 1 - .../Weapons/Guns/Ammunition/Magazines/pistol.yml | 4 ---- .../Weapons/Guns/Ammunition/Magazines/rifle.yml | 1 - .../Weapons/Guns/Ammunition/Magazines/shotgun.yml | 1 - .../Guns/Ammunition/SpeedLoaders/magnum.yml | 1 - .../Guns/Ammunition/SpeedLoaders/pistol.yml | 1 - .../Guns/Ammunition/SpeedLoaders/rifle_light.yml | 1 - .../Weapons/Guns/Ammunition/SpeedLoaders/toy.yml | 1 - .../Weapons/Guns/Ammunition/explosives.yml | 3 --- .../Objects/Weapons/Guns/Battery/battery_guns.yml | 1 - .../Entities/Objects/Weapons/Guns/HMGs/hmgs.yml | 1 - .../Entities/Objects/Weapons/Guns/LMGs/lmgs.yml | 1 - .../Objects/Weapons/Guns/Launchers/launchers.yml | 1 - .../Objects/Weapons/Guns/Pistols/pistols.yml | 1 - .../Objects/Weapons/Guns/Projectiles/hitscan.yml | 1 - .../Objects/Weapons/Guns/Projectiles/impacts.yml | 3 --- .../Objects/Weapons/Guns/Projectiles/meteors.yml | 1 - .../Weapons/Guns/Projectiles/projectiles.yml | 2 -- .../Objects/Weapons/Guns/Revolvers/revolvers.yml | 1 - .../Objects/Weapons/Guns/Rifles/rifles.yml | 1 - .../Entities/Objects/Weapons/Guns/SMGs/smgs.yml | 1 - .../Objects/Weapons/Guns/Shotguns/shotguns.yml | 2 -- .../Objects/Weapons/Guns/Snipers/snipers.yml | 1 - .../Objects/Weapons/Guns/pneumatic_cannon.yml | 1 - .../Entities/Objects/Weapons/Guns/turrets.yml | 3 --- .../Entities/Objects/Weapons/Melee/e_sword.yml | 1 - .../Entities/Objects/Weapons/Melee/knife.yml | 1 - .../Entities/Objects/Weapons/Melee/spear.yml | 4 ---- .../Objects/Weapons/Throwable/clusterbang.yml | 1 - .../Entities/Objects/Weapons/security.yml | 2 -- .../Entities/Structures/Decoration/banners.yml | 1 - .../Entities/Structures/Decoration/bonfire.yml | 1 - .../Entities/Structures/Decoration/curtains.yml | 1 - .../Entities/Structures/Decoration/fireplace.yml | 1 - .../Entities/Structures/Decoration/statues.yml | 1 - .../Entities/Structures/Dispensers/booze.yml | 1 - .../Entities/Structures/Dispensers/chem.yml | 1 - .../Entities/Structures/Dispensers/soda.yml | 1 - .../Structures/Doors/Airlocks/assembly.yml | 1 - .../Doors/Airlocks/base_structureairlocks.yml | 1 - .../Structures/Doors/Airlocks/highsec.yml | 1 - .../Structures/Doors/Airlocks/shuttle.yml | 3 --- .../Structures/Doors/Firelocks/firelock.yml | 1 - .../Doors/MaterialDoors/material_doors.yml | 7 ------- .../Structures/Doors/Shutter/blast_door.yml | 1 - .../Structures/Doors/Shutter/shutters.yml | 4 ---- .../Structures/Doors/Windoors/assembly.yml | 2 -- .../Doors/Windoors/base_structurewindoors.yml | 2 -- .../Furniture/Tables/base_structuretables.yml | 1 - .../Structures/Furniture/Tables/tables.yml | 1 - .../Entities/Structures/Furniture/altar.yml | 2 -- .../Entities/Structures/Furniture/beds.yml | 1 - .../Entities/Structures/Furniture/bookshelf.yml | 1 - .../Entities/Structures/Furniture/carpets.yml | 1 - .../Entities/Structures/Furniture/chairs.yml | 1 - .../Entities/Structures/Furniture/rollerbeds.yml | 1 - .../Entities/Structures/Furniture/sink.yml | 3 --- .../Entities/Structures/Furniture/toilet.yml | 1 - .../Structures/Holographic/projections.yml | 3 --- .../Structures/Lighting/base_lighting.yml | 1 - .../Computers/base_structurecomputers.yml | 1 - .../Machines/Computers/techdiskterminal.yml | 1 - .../Machines/Medical/biomass_reclaimer.yml | 1 - .../Structures/Machines/Medical/cryo_pod.yml | 1 - .../Machines/Medical/disease_diagnoser.yml | 2 -- .../Structures/Machines/Medical/vaccinator.yml | 1 - .../Structures/Machines/anomaly_equipment.yml | 1 - .../Structures/Machines/artifact_analyzer.yml | 1 - .../Entities/Structures/Machines/chem_master.yml | 1 - .../Structures/Machines/cloning_machine.yml | 1 - .../Entities/Structures/Machines/fatextractor.yml | 1 - .../Entities/Structures/Machines/fax_machine.yml | 1 - .../Entities/Structures/Machines/frame.yml | 2 -- .../Structures/Machines/gravity_generator.yml | 2 -- .../Entities/Structures/Machines/hotplate.yml | 1 - .../Entities/Structures/Machines/lathe.yml | 8 -------- .../Structures/Machines/material_reclaimer.yml | 1 - .../Structures/Machines/medical_scanner.yml | 1 - .../Entities/Structures/Machines/microwave.yml | 1 - .../Structures/Machines/reagent_grinder.yml | 1 - .../Entities/Structures/Machines/recycler.yml | 1 - .../Entities/Structures/Machines/research.yml | 1 - .../Entities/Structures/Machines/salvage.yml | 1 - .../Structures/Machines/seed_extractor.yml | 1 - .../Entities/Structures/Machines/stasisbed.yml | 1 - .../Entities/Structures/Machines/telecomms.yml | 1 - .../Structures/Machines/vending_machines.yml | 2 -- .../Structures/Piping/Atmospherics/binary.yml | 8 -------- .../Structures/Piping/Atmospherics/miners.yml | 1 - .../Structures/Piping/Atmospherics/pipes.yml | 1 - .../Structures/Piping/Atmospherics/portable.yml | 1 - .../Structures/Piping/Atmospherics/special.yml | 1 - .../Structures/Piping/Atmospherics/trinary.yml | 5 ----- .../Structures/Piping/Atmospherics/unary.yml | 5 ----- .../Entities/Structures/Piping/Disposal/pipes.yml | 1 - .../Entities/Structures/Piping/Disposal/units.yml | 2 -- .../Power/Generation/Singularity/collector.yml | 1 - .../Power/Generation/Singularity/containment.yml | 2 -- .../Power/Generation/Singularity/emitter.yml | 1 - .../Power/Generation/Singularity/generator.yml | 1 - .../Power/Generation/Singularity/singularity.yml | 1 - .../Entities/Structures/Power/Generation/ame.yml | 2 -- .../Structures/Power/Generation/generators.yml | 4 ---- .../Structures/Power/Generation/solar.yml | 2 -- .../Prototypes/Entities/Structures/Power/apc.yml | 2 -- .../Entities/Structures/Power/cable_terminal.yml | 1 - .../Entities/Structures/Power/cables.yml | 1 - .../Prototypes/Entities/Structures/Power/smes.yml | 1 - .../Entities/Structures/Power/substation.yml | 2 -- .../Entities/Structures/Shuttles/thrusters.yml | 1 - .../Structures/Specific/Atmospherics/sensor.yml | 2 -- .../Entities/Structures/Specific/anomalies.yml | 1 - .../Entities/Structures/Specific/dragon.yml | 1 - .../Storage/Canisters/gas_canisters.yml | 1 - .../Closets/Lockers/base_structurelockers.yml | 1 - .../Storage/Closets/base_structureclosets.yml | 4 ---- .../Structures/Storage/Closets/big_boxes.yml | 2 -- .../Storage/Crates/base_structurecrates.yml | 1 - .../Storage/Tanks/base_structuretanks.yml | 1 - .../Structures/Storage/filing_cabinets.yml | 2 -- .../Entities/Structures/Storage/morgue.yml | 2 -- .../Entities/Structures/Storage/paper_bin.yml | 1 - .../Entities/Structures/Storage/storage.yml | 1 - .../Wallmounts/Signs/base_structuresigns.yml | 1 - .../Structures/Wallmounts/defib_cabinet.yml | 1 - .../Wallmounts/extinguisher_cabinet.yml | 1 - .../Structures/Wallmounts/fireaxe_cabinet.yml | 1 - .../Wallmounts/monitors_televisions.yml | 2 -- .../Structures/Wallmounts/station_map.yml | 1 - .../Entities/Structures/Wallmounts/switch.yml | 1 - .../Entities/Structures/Wallmounts/timer.yml | 2 -- .../Entities/Structures/Walls/asteroid.yml | 2 -- .../Entities/Structures/Walls/grille.yml | 2 -- .../Entities/Structures/Walls/railing.yml | 3 --- .../Entities/Structures/Walls/walls.yml | 4 ---- .../Entities/Structures/Windows/plasma.yml | 1 - .../Entities/Structures/Windows/reinforced.yml | 1 - .../Entities/Structures/Windows/rplasma.yml | 1 - .../Entities/Structures/Windows/window.yml | 4 ---- .../Prototypes/Entities/Structures/catwalk.yml | 1 - .../Prototypes/Entities/Structures/conveyor.yml | 2 -- .../Prototypes/Entities/Structures/meat_spike.yml | 1 - .../Entities/Structures/plastic_flaps.yml | 1 - Resources/Prototypes/Entities/Structures/soil.yml | 1 - Resources/Prototypes/Entities/Tiles/bananium.yml | 1 - Resources/Prototypes/Entities/Tiles/lava.yml | 1 - Resources/Prototypes/Entities/Tiles/water.yml | 1 - .../Entities/Virtual/stripping_hidden.yml | 1 - Resources/Prototypes/Entities/World/chunk.yml | 1 - Resources/Prototypes/Magic/Fixtures/runes.yml | 1 - 354 files changed, 2 insertions(+), 637 deletions(-) diff --git a/Resources/Prototypes/Body/Organs/Animal/animal.yml b/Resources/Prototypes/Body/Organs/Animal/animal.yml index a7a5769490..3b62391332 100644 --- a/Resources/Prototypes/Body/Organs/Animal/animal.yml +++ b/Resources/Prototypes/Body/Organs/Animal/animal.yml @@ -5,7 +5,6 @@ components: - type: Organ - type: Sprite - netsync: false sprite: Mobs/Species/Human/organs.rsi - type: StaticPrice price: 50 diff --git a/Resources/Prototypes/Body/Organs/arachnid.yml b/Resources/Prototypes/Body/Organs/arachnid.yml index 1541859664..8f844e7cca 100644 --- a/Resources/Prototypes/Body/Organs/arachnid.yml +++ b/Resources/Prototypes/Body/Organs/arachnid.yml @@ -4,7 +4,6 @@ abstract: true components: - type: Sprite - netsync: false sprite: Mobs/Species/Arachnid/organs.rsi - type: Organ - type: Food diff --git a/Resources/Prototypes/Body/Organs/diona.yml b/Resources/Prototypes/Body/Organs/diona.yml index b59b1458f8..f8322d4024 100644 --- a/Resources/Prototypes/Body/Organs/diona.yml +++ b/Resources/Prototypes/Body/Organs/diona.yml @@ -4,7 +4,6 @@ abstract: true components: - type: Sprite - netsync: false sprite: Mobs/Species/Diona/organs.rsi - type: Organ - type: Food diff --git a/Resources/Prototypes/Body/Organs/human.yml b/Resources/Prototypes/Body/Organs/human.yml index b9d0242f72..1a45865bf7 100644 --- a/Resources/Prototypes/Body/Organs/human.yml +++ b/Resources/Prototypes/Body/Organs/human.yml @@ -4,7 +4,6 @@ abstract: true components: - type: Sprite - netsync: false sprite: Mobs/Species/Human/organs.rsi - type: Organ - type: Food diff --git a/Resources/Prototypes/Body/Organs/slime.yml b/Resources/Prototypes/Body/Organs/slime.yml index c279ba68f5..7bb91b18b5 100644 --- a/Resources/Prototypes/Body/Organs/slime.yml +++ b/Resources/Prototypes/Body/Organs/slime.yml @@ -5,7 +5,6 @@ description: "The source of incredible, unending gooeyness." components: - type: Sprite - netsync: false sprite: Mobs/Species/Human/organs.rsi state: brain - type: Organ diff --git a/Resources/Prototypes/Body/Parts/arachnid.yml b/Resources/Prototypes/Body/Parts/arachnid.yml index 757bd2d63f..0917795624 100644 --- a/Resources/Prototypes/Body/Parts/arachnid.yml +++ b/Resources/Prototypes/Body/Parts/arachnid.yml @@ -27,7 +27,6 @@ parent: PartArachnid components: - type: Sprite - netsync: false sprite: Mobs/Species/Arachnid/parts.rsi state: "torso_m" - type: Icon @@ -49,7 +48,6 @@ parent: PartArachnid components: - type: Sprite - netsync: false sprite: Mobs/Species/Arachnid/parts.rsi state: "head_m" - type: Icon @@ -82,7 +80,6 @@ parent: PartArachnid components: - type: Sprite - netsync: false sprite: Mobs/Species/Arachnid/parts.rsi state: "l_arm" - type: Icon @@ -98,7 +95,6 @@ parent: PartArachnid components: - type: Sprite - netsync: false sprite: Mobs/Species/Arachnid/parts.rsi state: "r_arm" - type: Icon @@ -114,7 +110,6 @@ parent: PartArachnid components: - type: Sprite - netsync: false sprite: Mobs/Species/Arachnid/parts.rsi state: "l_hand" - type: Icon @@ -130,7 +125,6 @@ parent: PartArachnid components: - type: Sprite - netsync: false sprite: Mobs/Species/Arachnid/parts.rsi state: "r_hand" - type: Icon @@ -146,7 +140,6 @@ parent: PartArachnid components: - type: Sprite - netsync: false sprite: Mobs/Species/Arachnid/parts.rsi state: "l_leg" - type: Icon @@ -165,7 +158,6 @@ parent: PartArachnid components: - type: Sprite - netsync: false sprite: Mobs/Species/Arachnid/parts.rsi state: "r_leg" - type: Icon @@ -184,7 +176,6 @@ parent: PartArachnid components: - type: Sprite - netsync: false sprite: Mobs/Species/Arachnid/parts.rsi state: "l_foot" - type: Icon @@ -200,7 +191,6 @@ parent: PartArachnid components: - type: Sprite - netsync: false sprite: Mobs/Species/Arachnid/parts.rsi state: "r_foot" - type: Icon diff --git a/Resources/Prototypes/Body/Parts/diona.yml b/Resources/Prototypes/Body/Parts/diona.yml index 527d56eee5..07b4c144d9 100644 --- a/Resources/Prototypes/Body/Parts/diona.yml +++ b/Resources/Prototypes/Body/Parts/diona.yml @@ -12,7 +12,6 @@ bodypart: !type:Container ents: [] - type: Sprite - netsync: false sprite: Mobs/Species/Diona/parts.rsi - type: Icon sprite: Mobs/Species/Diona/parts.rsi diff --git a/Resources/Prototypes/Body/Parts/human.yml b/Resources/Prototypes/Body/Parts/human.yml index 46ae7963a7..1866011622 100644 --- a/Resources/Prototypes/Body/Parts/human.yml +++ b/Resources/Prototypes/Body/Parts/human.yml @@ -32,7 +32,6 @@ parent: PartHuman components: - type: Sprite - netsync: false sprite: Mobs/Species/Human/parts.rsi state: "torso_m" - type: Icon @@ -54,7 +53,6 @@ parent: PartHuman components: - type: Sprite - netsync: false sprite: Mobs/Species/Human/parts.rsi state: "head_m" - type: Icon @@ -82,7 +80,6 @@ parent: PartHuman components: - type: Sprite - netsync: false sprite: Mobs/Species/Human/parts.rsi state: "l_arm" - type: Icon @@ -98,7 +95,6 @@ parent: PartHuman components: - type: Sprite - netsync: false sprite: Mobs/Species/Human/parts.rsi state: "r_arm" - type: Icon @@ -114,7 +110,6 @@ parent: PartHuman components: - type: Sprite - netsync: false sprite: Mobs/Species/Human/parts.rsi state: "l_hand" - type: Icon @@ -130,7 +125,6 @@ parent: PartHuman components: - type: Sprite - netsync: false sprite: Mobs/Species/Human/parts.rsi state: "r_hand" - type: Icon @@ -146,7 +140,6 @@ parent: PartHuman components: - type: Sprite - netsync: false sprite: Mobs/Species/Human/parts.rsi state: "l_leg" - type: Icon @@ -163,7 +156,6 @@ parent: PartHuman components: - type: Sprite - netsync: false sprite: Mobs/Species/Human/parts.rsi state: "r_leg" - type: Icon @@ -180,7 +172,6 @@ parent: PartHuman components: - type: Sprite - netsync: false sprite: Mobs/Species/Human/parts.rsi state: "l_foot" - type: Icon @@ -196,7 +187,6 @@ parent: PartHuman components: - type: Sprite - netsync: false sprite: Mobs/Species/Human/parts.rsi state: "r_foot" - type: Icon diff --git a/Resources/Prototypes/Body/Parts/reptilian.yml b/Resources/Prototypes/Body/Parts/reptilian.yml index 5c9fb3cbe8..1af2d1db75 100644 --- a/Resources/Prototypes/Body/Parts/reptilian.yml +++ b/Resources/Prototypes/Body/Parts/reptilian.yml @@ -30,7 +30,6 @@ parent: PartReptilian components: - type: Sprite - netsync: false sprite: Mobs/Species/Reptilian/parts.rsi state: "torso_m" - type: Icon @@ -52,7 +51,6 @@ parent: PartReptilian components: - type: Sprite - netsync: false sprite: Mobs/Species/Reptilian/parts.rsi state: "head_m" - type: Icon @@ -80,7 +78,6 @@ parent: PartReptilian components: - type: Sprite - netsync: false sprite: Mobs/Species/Reptilian/parts.rsi state: "l_arm" - type: Icon @@ -96,7 +93,6 @@ parent: PartReptilian components: - type: Sprite - netsync: false sprite: Mobs/Species/Reptilian/parts.rsi state: "r_arm" - type: Icon @@ -112,7 +108,6 @@ parent: PartReptilian components: - type: Sprite - netsync: false sprite: Mobs/Species/Reptilian/parts.rsi state: "l_hand" - type: Icon @@ -128,7 +123,6 @@ parent: PartReptilian components: - type: Sprite - netsync: false sprite: Mobs/Species/Reptilian/parts.rsi state: "r_hand" - type: Icon @@ -144,7 +138,6 @@ parent: PartReptilian components: - type: Sprite - netsync: false sprite: Mobs/Species/Reptilian/parts.rsi state: "l_leg" - type: Icon @@ -163,7 +156,6 @@ parent: PartReptilian components: - type: Sprite - netsync: false sprite: Mobs/Species/Reptilian/parts.rsi state: "r_leg" - type: Icon @@ -182,7 +174,6 @@ parent: PartReptilian components: - type: Sprite - netsync: false sprite: Mobs/Species/Reptilian/parts.rsi state: "l_foot" - type: Icon @@ -198,7 +189,6 @@ parent: PartReptilian components: - type: Sprite - netsync: false sprite: Mobs/Species/Reptilian/parts.rsi state: "r_foot" - type: Icon diff --git a/Resources/Prototypes/Body/Parts/silicon.yml b/Resources/Prototypes/Body/Parts/silicon.yml index 90353d6568..804fe5b5e2 100644 --- a/Resources/Prototypes/Body/Parts/silicon.yml +++ b/Resources/Prototypes/Body/Parts/silicon.yml @@ -26,7 +26,6 @@ parent: PartSilicon components: - type: Sprite - netsync: false sprite: Mobs/Silicon/drone.rsi state: "l_hand" - type: Icon @@ -46,7 +45,6 @@ parent: PartSilicon components: - type: Sprite - netsync: false sprite: Mobs/Silicon/drone.rsi state: "r_hand" - type: Icon @@ -66,7 +64,6 @@ parent: PartSilicon components: - type: Sprite - netsync: false sprite: Mobs/Silicon/borg.rsi state: "l_leg" - type: Icon @@ -87,7 +84,6 @@ parent: PartSilicon components: - type: Sprite - netsync: false sprite: Mobs/Silicon/borg.rsi state: "r_leg" - type: Icon @@ -108,7 +104,6 @@ parent: PartSilicon components: - type: Sprite - netsync: false sprite: Objects/Specific/Borg/head.rsi state: "light_borg_head" - type: Icon diff --git a/Resources/Prototypes/Body/Parts/skeleton.yml b/Resources/Prototypes/Body/Parts/skeleton.yml index 2d5d76a039..963a8b4409 100644 --- a/Resources/Prototypes/Body/Parts/skeleton.yml +++ b/Resources/Prototypes/Body/Parts/skeleton.yml @@ -24,7 +24,6 @@ parent: PartSkeleton components: - type: Sprite - netsync: false sprite: Mobs/Species/Skeleton/parts.rsi state: "torso_m" - type: Icon @@ -40,7 +39,6 @@ parent: PartSkeleton components: - type: Sprite - netsync: false sprite: Mobs/Species/Skeleton/parts.rsi state: "skull_icon" - type: Icon @@ -78,7 +76,6 @@ parent: PartSkeleton components: - type: Sprite - netsync: false sprite: Mobs/Species/Skeleton/parts.rsi state: "l_arm" - type: Icon @@ -94,7 +91,6 @@ parent: PartSkeleton components: - type: Sprite - netsync: false sprite: Mobs/Species/Skeleton/parts.rsi state: "r_arm" - type: Icon @@ -110,7 +106,6 @@ parent: PartSkeleton components: - type: Sprite - netsync: false sprite: Mobs/Species/Skeleton/parts.rsi state: "l_hand" - type: Icon @@ -126,7 +121,6 @@ parent: PartSkeleton components: - type: Sprite - netsync: false sprite: Mobs/Species/Skeleton/parts.rsi state: "r_hand" - type: Icon @@ -142,7 +136,6 @@ parent: PartSkeleton components: - type: Sprite - netsync: false sprite: Mobs/Species/Skeleton/parts.rsi state: "l_leg" - type: Icon @@ -159,7 +152,6 @@ parent: PartSkeleton components: - type: Sprite - netsync: false sprite: Mobs/Species/Skeleton/parts.rsi state: "r_leg" - type: Icon @@ -176,7 +168,6 @@ parent: PartSkeleton components: - type: Sprite - netsync: false sprite: Mobs/Species/Skeleton/parts.rsi state: "l_foot" - type: Icon @@ -192,7 +183,6 @@ parent: PartSkeleton components: - type: Sprite - netsync: false sprite: Mobs/Species/Skeleton/parts.rsi state: "r_foot" - type: Icon diff --git a/Resources/Prototypes/Body/Parts/slime.yml b/Resources/Prototypes/Body/Parts/slime.yml index 8f58f0b7eb..011cf3462d 100644 --- a/Resources/Prototypes/Body/Parts/slime.yml +++ b/Resources/Prototypes/Body/Parts/slime.yml @@ -24,7 +24,6 @@ parent: PartSlime components: - type: Sprite - netsync: false sprite: Mobs/Species/Slime/parts.rsi state: "torso_m" - type: Icon @@ -39,7 +38,6 @@ parent: PartSlime components: - type: Sprite - netsync: false sprite: Mobs/Species/Slime/parts.rsi state: "head_m" - type: Icon @@ -60,7 +58,6 @@ parent: PartSlime components: - type: Sprite - netsync: false sprite: Mobs/Species/Slime/parts.rsi state: "l_arm" - type: Icon @@ -76,7 +73,6 @@ parent: PartSlime components: - type: Sprite - netsync: false sprite: Mobs/Species/Slime/parts.rsi state: "r_arm" - type: Icon @@ -92,7 +88,6 @@ parent: PartSlime components: - type: Sprite - netsync: false sprite: Mobs/Species/Slime/parts.rsi state: "l_hand" - type: Icon @@ -108,7 +103,6 @@ parent: PartSlime components: - type: Sprite - netsync: false sprite: Mobs/Species/Slime/parts.rsi state: "r_hand" - type: Icon @@ -124,7 +118,6 @@ parent: PartSlime components: - type: Sprite - netsync: false sprite: Mobs/Species/Slime/parts.rsi state: "l_leg" - type: Icon @@ -141,7 +134,6 @@ parent: PartSlime components: - type: Sprite - netsync: false sprite: Mobs/Species/Slime/parts.rsi state: "r_leg" - type: Icon @@ -158,7 +150,6 @@ parent: PartSlime components: - type: Sprite - netsync: false sprite: Mobs/Species/Slime/parts.rsi state: "l_foot" - type: Icon @@ -174,7 +165,6 @@ parent: PartSlime components: - type: Sprite - netsync: false sprite: Mobs/Species/Slime/parts.rsi state: "r_foot" - type: Icon diff --git a/Resources/Prototypes/Body/Parts/vox.yml b/Resources/Prototypes/Body/Parts/vox.yml index cc9394e394..b163ed0864 100644 --- a/Resources/Prototypes/Body/Parts/vox.yml +++ b/Resources/Prototypes/Body/Parts/vox.yml @@ -32,7 +32,6 @@ parent: PartVox components: - type: Sprite - netsync: false sprite: Mobs/Species/Vox/parts.rsi state: "torso_m" - type: Icon @@ -54,7 +53,6 @@ parent: PartVox components: - type: Sprite - netsync: false sprite: Mobs/Species/Vox/parts.rsi state: "head_m" - type: Icon @@ -82,7 +80,6 @@ parent: PartVox components: - type: Sprite - netsync: false sprite: Mobs/Species/Vox/parts.rsi state: "l_arm" - type: Icon @@ -98,7 +95,6 @@ parent: PartVox components: - type: Sprite - netsync: false sprite: Mobs/Species/Vox/parts.rsi state: "r_arm" - type: Icon @@ -114,7 +110,6 @@ parent: PartVox components: - type: Sprite - netsync: false sprite: Mobs/Species/Vox/parts.rsi state: "l_hand" - type: Icon @@ -130,7 +125,6 @@ parent: PartVox components: - type: Sprite - netsync: false sprite: Mobs/Species/Vox/parts.rsi state: "r_hand" - type: Icon @@ -146,7 +140,6 @@ parent: PartVox components: - type: Sprite - netsync: false sprite: Mobs/Species/Vox/parts.rsi state: "l_leg" - type: Icon @@ -163,7 +156,6 @@ parent: PartVox components: - type: Sprite - netsync: false sprite: Mobs/Species/Vox/parts.rsi state: "r_leg" - type: Icon @@ -180,7 +172,6 @@ parent: PartVox components: - type: Sprite - netsync: false sprite: Mobs/Species/Vox/parts.rsi state: "l_foot" - type: Icon @@ -196,7 +187,6 @@ parent: PartVox components: - type: Sprite - netsync: false sprite: Mobs/Species/Vox/parts.rsi state: "r_foot" - type: Icon diff --git a/Resources/Prototypes/Catalog/Fills/Paper/manuals.yml b/Resources/Prototypes/Catalog/Fills/Paper/manuals.yml index f406ea71aa..9b61eab0b4 100644 --- a/Resources/Prototypes/Catalog/Fills/Paper/manuals.yml +++ b/Resources/Prototypes/Catalog/Fills/Paper/manuals.yml @@ -13,7 +13,6 @@ description: A tiny volumetric display for documents, makes one wonder if Cybersun's legal budget is way too high. components: - type: Sprite - netsync: false sprite: Objects/Misc/guardian_info.rsi state: guardian_info - type: ActivatableUI diff --git a/Resources/Prototypes/Entities/Clothing/Ears/specific.yml b/Resources/Prototypes/Entities/Clothing/Ears/specific.yml index fcdca8d0a7..093f5e645b 100644 --- a/Resources/Prototypes/Entities/Clothing/Ears/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Ears/specific.yml @@ -9,7 +9,6 @@ tags: [] # ignore "WhitelistChameleon" tag - type: Sprite sprite: Clothing/Ears/Headsets/base.rsi - netsync: false - type: Clothing sprite: Clothing/Ears/Headsets/base.rsi - type: ChameleonClothing diff --git a/Resources/Prototypes/Entities/Clothing/Eyes/specific.yml b/Resources/Prototypes/Entities/Clothing/Eyes/specific.yml index a4d3fc5c3f..a213ca21cd 100644 --- a/Resources/Prototypes/Entities/Clothing/Eyes/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Eyes/specific.yml @@ -9,7 +9,6 @@ tags: [] # ignore "WhitelistChameleon" tag - type: Sprite sprite: Clothing/Eyes/Glasses/sunglasses.rsi - netsync: false - type: Clothing sprite: Clothing/Eyes/Glasses/sunglasses.rsi - type: ChameleonClothing diff --git a/Resources/Prototypes/Entities/Clothing/Hands/specific.yml b/Resources/Prototypes/Entities/Clothing/Hands/specific.yml index 25d8300012..87a0961569 100644 --- a/Resources/Prototypes/Entities/Clothing/Hands/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Hands/specific.yml @@ -9,7 +9,6 @@ tags: [] # ignore "WhitelistChameleon" tag - type: Sprite sprite: Clothing/Hands/Gloves/Color/black.rsi - netsync: false - type: Clothing sprite: Clothing/Hands/Gloves/Color/black.rsi - type: ChameleonClothing diff --git a/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml b/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml index 94ed9ad2bf..daf47b9707 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml @@ -49,7 +49,6 @@ noSpawn: true components: - type: Sprite - netsync: false layers: - state: icon - state: icon-flash @@ -170,7 +169,6 @@ noSpawn: true components: - type: Sprite - netsync: false layers: - state: icon - state: icon-flash diff --git a/Resources/Prototypes/Entities/Clothing/Head/hardhats.yml b/Resources/Prototypes/Entities/Clothing/Head/hardhats.yml index 43c2f48a18..cdacbc1cc3 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hardhats.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hardhats.yml @@ -4,7 +4,6 @@ abstract: true components: - type: Sprite - netsync: false layers: - state: icon - state: light-icon diff --git a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml index 595af2758e..15900fa61e 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml @@ -6,7 +6,6 @@ description: A special hardsuit helmet designed for working in low-pressure, high thermal environments. components: - type: Sprite - netsync: false sprite: Clothing/Head/Hardsuits/atmospherics.rsi layers: - state: icon @@ -328,7 +327,6 @@ description: A sturdy helmet designed for complex industrial operations in space. components: - type: Sprite - netsync: false sprite: Clothing/Head/Hardsuits/spatiohelm.rsi layers: - state: icon @@ -430,7 +428,6 @@ description: A pressure resistant and fireproof hood worn by special cleanup units. components: - type: Sprite - netsync: false sprite: Clothing/Head/Hardsuits/cburn.rsi layers: - state: icon diff --git a/Resources/Prototypes/Entities/Clothing/Head/specific.yml b/Resources/Prototypes/Entities/Clothing/Head/specific.yml index bba65c6613..1dd36bff94 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/specific.yml @@ -9,7 +9,6 @@ tags: [] # ignore "WhitelistChameleon" tag - type: Sprite sprite: Clothing/Head/Hats/beret.rsi - netsync: false - type: Clothing sprite: Clothing/Head/Hats/beret.rsi - type: ChameleonClothing diff --git a/Resources/Prototypes/Entities/Clothing/Masks/specific.yml b/Resources/Prototypes/Entities/Clothing/Masks/specific.yml index bed4a631bb..e60c29d212 100644 --- a/Resources/Prototypes/Entities/Clothing/Masks/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Masks/specific.yml @@ -9,7 +9,6 @@ tags: [] # ignore "WhitelistChameleon" tag - type: Sprite sprite: Clothing/Mask/gas.rsi - netsync: false - type: Clothing sprite: Clothing/Mask/gas.rsi - type: ChameleonClothing diff --git a/Resources/Prototypes/Entities/Clothing/Neck/specific.yml b/Resources/Prototypes/Entities/Clothing/Neck/specific.yml index b9bfde68e4..1f50dc1ef1 100644 --- a/Resources/Prototypes/Entities/Clothing/Neck/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Neck/specific.yml @@ -9,7 +9,6 @@ tags: [] # ignore "WhitelistChameleon" tag - type: Sprite sprite: Clothing/Neck/Scarfs/red.rsi - netsync: false - type: Clothing sprite: Clothing/Neck/Scarfs/red.rsi - type: ChameleonClothing diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/specific.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/specific.yml index 4977be5626..9be8c22a0a 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/specific.yml @@ -9,7 +9,6 @@ tags: [] # ignore "WhitelistChameleon" tag - type: Sprite sprite: Clothing/OuterClothing/Vests/vest.rsi - netsync: false - type: Clothing sprite: Clothing/OuterClothing/Vests/vest.rsi - type: ChameleonClothing diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/magboots.yml b/Resources/Prototypes/Entities/Clothing/Shoes/magboots.yml index 221749d241..7d91e20c46 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/magboots.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/magboots.yml @@ -6,7 +6,6 @@ components: - type: Sprite sprite: Clothing/Shoes/Boots/magboots.rsi - netsync: false layers: - state: icon map: [ "enum.ToggleVisuals.Layer" ] diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml b/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml index dae8bf2f19..71b0742174 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml @@ -115,7 +115,6 @@ tags: [] # ignore "WhitelistChameleon" tag - type: Sprite sprite: Clothing/Shoes/Color/black.rsi - netsync: false - type: Clothing sprite: Clothing/Shoes/Color/black.rsi - type: ChameleonClothing diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/specific.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/specific.yml index 293379ab48..19793f873f 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/specific.yml @@ -9,7 +9,6 @@ tags: [] # ignore "WhitelistChameleon" tag - type: Sprite sprite: Clothing/Uniforms/Jumpsuit/Color/black.rsi - netsync: false - type: Clothing sprite: Clothing/Uniforms/Jumpsuit/Color/black.rsi - type: SuitSensor diff --git a/Resources/Prototypes/Entities/Clothing/base_clothing.yml b/Resources/Prototypes/Entities/Clothing/base_clothing.yml index 68d2a88288..60a94fe291 100644 --- a/Resources/Prototypes/Entities/Clothing/base_clothing.yml +++ b/Resources/Prototypes/Entities/Clothing/base_clothing.yml @@ -4,7 +4,6 @@ id: Clothing components: - type: Sprite - netsync: false - type: Tag tags: - WhitelistChameleon diff --git a/Resources/Prototypes/Entities/Effects/chemistry_effects.yml b/Resources/Prototypes/Entities/Effects/chemistry_effects.yml index bd2b1781b3..5e14925d78 100644 --- a/Resources/Prototypes/Entities/Effects/chemistry_effects.yml +++ b/Resources/Prototypes/Entities/Effects/chemistry_effects.yml @@ -36,7 +36,6 @@ noSpawn: true components: - type: Sprite - netsync: false drawdepth: Effects color: "#ffffffcc" #Add some transparency sprite: Effects/foam.rsi @@ -135,7 +134,6 @@ - type: Clickable - type: InteractionOutline - type: Sprite - netsync: false drawdepth: Walls - type: Physics - type: Fixtures diff --git a/Resources/Prototypes/Entities/Effects/emp_effects.yml b/Resources/Prototypes/Entities/Effects/emp_effects.yml index c04b765dec..890dd24d43 100644 --- a/Resources/Prototypes/Entities/Effects/emp_effects.yml +++ b/Resources/Prototypes/Entities/Effects/emp_effects.yml @@ -5,7 +5,6 @@ - type: TimedDespawn lifetime: 0.8 - type: Sprite - netsync: false drawdepth: Effects noRot: true layers: @@ -29,7 +28,6 @@ - type: TimedDespawn lifetime: 0.4 - type: Sprite - netsync: false drawdepth: Effects noRot: true layers: diff --git a/Resources/Prototypes/Entities/Effects/lightning.yml b/Resources/Prototypes/Entities/Effects/lightning.yml index e7d0cf5df3..62a4153c00 100644 --- a/Resources/Prototypes/Entities/Effects/lightning.yml +++ b/Resources/Prototypes/Entities/Effects/lightning.yml @@ -6,7 +6,6 @@ - type: Sprite sprite: /Textures/Effects/lightning.rsi drawdepth: Effects - netsync: false layers: - state: "lightning_1" shader: unshaded diff --git a/Resources/Prototypes/Entities/Effects/puddle.yml b/Resources/Prototypes/Entities/Effects/puddle.yml index 611a482299..bf2b56067e 100644 --- a/Resources/Prototypes/Entities/Effects/puddle.yml +++ b/Resources/Prototypes/Entities/Effects/puddle.yml @@ -95,7 +95,6 @@ layers: - sprite: Fluids/wet_floor_sparkles.rsi state: sparkles - netsync: false drawdepth: FloorObjects color: "#FFFFFF80" diff --git a/Resources/Prototypes/Entities/Effects/weapon_arc.yml b/Resources/Prototypes/Entities/Effects/weapon_arc.yml index 73ada95518..bda67ab34a 100644 --- a/Resources/Prototypes/Entities/Effects/weapon_arc.yml +++ b/Resources/Prototypes/Entities/Effects/weapon_arc.yml @@ -6,7 +6,6 @@ - type: Sprite sprite: Effects/arcs.rsi state: spear - netsync: false drawdepth: Effects - type: EffectVisuals - type: WeaponArcVisuals @@ -22,7 +21,6 @@ - type: Sprite sprite: Effects/arcs.rsi state: disarm - netsync: false drawdepth: Effects - type: EffectVisuals - type: WeaponArcVisuals diff --git a/Resources/Prototypes/Entities/Markers/marker_base.yml b/Resources/Prototypes/Entities/Markers/marker_base.yml index 4bbb4d9fc5..7613913edb 100644 --- a/Resources/Prototypes/Entities/Markers/marker_base.yml +++ b/Resources/Prototypes/Entities/Markers/marker_base.yml @@ -11,7 +11,6 @@ - type: InteractionOutline - type: Sprite sprite: Markers/cross.rsi - netsync: false # If serialization was cool this would work. # layers: # - state: blue diff --git a/Resources/Prototypes/Entities/Markers/pointing.yml b/Resources/Prototypes/Entities/Markers/pointing.yml index de0f7057d3..e347809a47 100644 --- a/Resources/Prototypes/Entities/Markers/pointing.yml +++ b/Resources/Prototypes/Entities/Markers/pointing.yml @@ -7,7 +7,6 @@ tags: - HideContextMenu - type: Sprite - netsync: false sprite: Interface/Misc/pointing.rsi state: pointing drawDepth: Overlays diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index 23cf2b9804..d90ecfb486 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -314,7 +314,6 @@ baseSprintSpeed : 6 - type: Sprite drawdepth: Mobs - netsync: false layers: - map: ["enum.DamageStateVisualLayers.Base"] state: butterfly diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/carp.yml b/Resources/Prototypes/Entities/Mobs/NPCs/carp.yml index aad5fe32d0..115927ee96 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/carp.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/carp.yml @@ -14,7 +14,6 @@ - SimpleHostile - type: Sprite drawdepth: Mobs - netsync: false sprite: Mobs/Aliens/Carps/space.rsi layers: - map: [ "enum.DamageStateVisualLayers.Base" ] diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml b/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml index 7fcb98e275..1d8ba8dc8c 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml @@ -14,7 +14,6 @@ - type: Sprite noRot: true drawdepth: Ghosts - netsync: false sprite: Mobs/Ghosts/revenant.rsi layers: - state: active diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml index df1c894ab9..7d73d0561a 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml @@ -38,7 +38,6 @@ - type: Sprite noRot: true drawdepth: Mobs - netsync: false - type: Faction factions: - SimpleNeutral diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/simplemob.yml b/Resources/Prototypes/Entities/Mobs/NPCs/simplemob.yml index 79ca05200a..396d214f39 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/simplemob.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/simplemob.yml @@ -42,7 +42,6 @@ - type: Sprite noRot: true drawdepth: Mobs - netsync: false - type: Clickable - type: InteractionOutline - type: Physics diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml b/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml index 3f377312e7..a325d557d1 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml @@ -12,7 +12,6 @@ rootTask: SimpleHostileCompound - type: Sprite drawdepth: Mobs - netsync: false sprite: Mobs/Aliens/slimes.rsi layers: - map: [ "enum.DamageStateVisualLayers.Base" ] diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/space.yml b/Resources/Prototypes/Entities/Mobs/NPCs/space.yml index 69f5993176..5a73e4a525 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/space.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/space.yml @@ -12,7 +12,6 @@ - SimpleHostile - type: Sprite drawdepth: Mobs - netsync: false sprite: Mobs/Animals/bear.rsi layers: - map: [ "enum.DamageStateVisualLayers.Base" ] @@ -75,7 +74,6 @@ components: - type: Sprite drawdepth: Mobs - netsync: false sprite: Mobs/Animals/bear.rsi layers: - map: [ "enum.DamageStateVisualLayers.Base" ] @@ -134,7 +132,6 @@ components: - type: Sprite drawdepth: Mobs - netsync: false sprite: Mobs/Animals/kangaroo.rsi layers: - map: [ "enum.DamageStateVisualLayers.Base" ] @@ -210,7 +207,6 @@ components: - type: Sprite drawdepth: Mobs - netsync: false sprite: Mobs/Animals/spacespider.rsi layers: - map: [ "enum.DamageStateVisualLayers.Base" ] diff --git a/Resources/Prototypes/Entities/Mobs/Player/guardian.yml b/Resources/Prototypes/Entities/Mobs/Player/guardian.yml index aa58b81bcb..d7aec292d2 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/guardian.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/guardian.yml @@ -44,7 +44,6 @@ - type: Sprite drawdepth: Mobs sprite: Mobs/Aliens/Guardians/guardians.rsi - netsync: false layers: - state: tech_base map: [ "enum.DamageStateVisualLayers.Base" ] diff --git a/Resources/Prototypes/Entities/Mobs/Player/humanoid.yml b/Resources/Prototypes/Entities/Mobs/Player/humanoid.yml index eebceb9fde..7040bfb29e 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/humanoid.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/humanoid.yml @@ -7,7 +7,6 @@ name: ERT leader components: - type: Sprite - netsync: false sprite: Markers/jobs.rsi state: ertleader - type: RandomMetadata @@ -39,7 +38,6 @@ suffix: EVA components: - type: Sprite - netsync: false sprite: Markers/jobs.rsi state: ertleadereva - type: RandomHumanoidSpawner @@ -64,7 +62,6 @@ name: ERT janitor components: - type: Sprite - netsync: false sprite: Markers/jobs.rsi state: ertjanitor - type: RandomMetadata @@ -96,7 +93,6 @@ suffix: EVA components: - type: Sprite - netsync: false sprite: Markers/jobs.rsi state: ertjanitoreva - type: RandomHumanoidSpawner @@ -121,7 +117,6 @@ name: ERT engineer components: - type: Sprite - netsync: false sprite: Markers/jobs.rsi state: ertengineer - type: RandomMetadata @@ -153,7 +148,6 @@ suffix: EVA components: - type: Sprite - netsync: false sprite: Markers/jobs.rsi state: ertengineereva - type: RandomHumanoidSpawner @@ -178,7 +172,6 @@ name: ERT security components: - type: Sprite - netsync: false sprite: Markers/jobs.rsi state: ertsecurity - type: RandomMetadata @@ -210,7 +203,6 @@ suffix: EVA components: - type: Sprite - netsync: false sprite: Markers/jobs.rsi state: ertsecurityeva - type: RandomHumanoidSpawner @@ -235,7 +227,6 @@ name: ERT medic components: - type: Sprite - netsync: false sprite: Markers/jobs.rsi state: ertmedical - type: RandomMetadata @@ -267,7 +258,6 @@ suffix: EVA components: - type: Sprite - netsync: false sprite: Markers/jobs.rsi state: ertmedicaleva - type: RandomHumanoidSpawner @@ -291,7 +281,6 @@ name: CBURN Agent components: - type: Sprite - netsync: false sprite: Markers/jobs.rsi state: cburn - type: RandomHumanoidSpawner @@ -317,7 +306,6 @@ id: RandomHumanoidSpawnerCentcomOfficial components: - type: Sprite - netsync: false sprite: Markers/jobs.rsi state: centcom - type: RandomHumanoidSpawner @@ -340,7 +328,6 @@ name: Syndicate Agent components: - type: Sprite - netsync: false sprite: Mobs/Species/Human/parts.rsi state: full - type: RandomMetadata @@ -359,7 +346,6 @@ name: Nuclear Operative components: - type: Sprite - netsync: false sprite: Mobs/Species/Human/parts.rsi state: full - type: RandomHumanoidSpawner @@ -376,7 +362,6 @@ suffix: spawns a cluwne components: - type: Sprite - netsync: false sprite: Markers/jobs.rsi state: cluwne - type: RandomHumanoidSpawner diff --git a/Resources/Prototypes/Entities/Mobs/Player/observer.yml b/Resources/Prototypes/Entities/Mobs/Player/observer.yml index 1576b40371..c973535f4a 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/observer.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/observer.yml @@ -47,7 +47,6 @@ globalReceive: true - type: Sprite overrideContainerOcclusion: true # Ghosts always show up regardless of where they're contained. - netsync: false noRot: true drawdepth: Ghosts sprite: Mobs/Ghosts/ghost_human.rsi diff --git a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml index 71b3677350..17dbbbace0 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml @@ -46,7 +46,6 @@ - type: Sprite noRot: true drawdepth: Mobs - netsync: false - type: Physics bodyType: KinematicController - type: Hands @@ -126,7 +125,6 @@ Heat : 1 #per second, scales with temperature & other constants - type: Sprite drawdepth: SmallMobs - netsync: false layers: - state: shell sprite: Mobs/Silicon/drone.rsi @@ -208,7 +206,6 @@ 1000: Dead - type: Sprite drawdepth: Mobs - netsync: false layers: - state: onestar_boss sprite: Mobs/Silicon/onestar.rsi diff --git a/Resources/Prototypes/Entities/Mobs/Species/base.yml b/Resources/Prototypes/Entities/Mobs/Species/base.yml index 173256ec5c..7392202ae6 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/base.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/base.yml @@ -93,7 +93,6 @@ sprite: Mobs/Species/Human/parts.rsi state: full - type: Sprite - netsync: false noRot: true drawdepth: Mobs layers: @@ -317,7 +316,6 @@ sprite: Mobs/Species/Human/parts.rsi state: full - type: Sprite - netsync: false drawdepth: Mobs noRot: true # TODO BODY Turn these into individual body parts? diff --git a/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml b/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml index 80ac808d20..af55f07f18 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml @@ -18,7 +18,6 @@ types: Asphyxiation: -1.0 - type: Sprite - netsync: false noRot: true drawdepth: Mobs scale: 1, 0.8 @@ -63,7 +62,6 @@ description: A dummy human meant to be used in character setup. components: - type: Sprite - netsync: false noRot: true drawdepth: Mobs scale: 1, 0.8 diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml index 8732134bd6..2514f08214 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml @@ -26,7 +26,6 @@ layers: - state: icon map: ["drinkCanIcon"] - netsync: false - type: FitsInDispenser solution: drink - type: DrawableSolution @@ -346,7 +345,6 @@ name: 6pack components: - type: Sprite - netsync: false sprite: Objects/Misc/6pack.rsi layers: - state: plastic-thingy diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_solutioncontainerexample.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_solutioncontainerexample.yml index 3ed87fcf4d..3a491e9373 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_solutioncontainerexample.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_solutioncontainerexample.yml @@ -16,7 +16,6 @@ - ReagentId: JuiceWatermelon Quantity: 30 - type: Sprite - netsync: false sprite: Objects/Consumable/Drinks/pitcher.rsi layers: - state: icon @@ -45,7 +44,6 @@ - ReagentId: JuiceWatermelon Quantity: 30 - type: Sprite - netsync: false sprite: Objects/Consumable/Drinks/pitcher.rsi layers: - state: icon-6 diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bread.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bread.yml index 7261ab976e..d30e0aa107 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bread.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bread.yml @@ -11,7 +11,6 @@ - type: Food - type: Sprite sprite: Objects/Consumable/Food/Baked/bread.rsi - netsync: false - type: SolutionContainerManager solutions: food: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/cake.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/cake.yml index 96bc3d85b9..e247add774 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/cake.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/cake.yml @@ -12,7 +12,6 @@ trash: FoodPlate - type: Sprite sprite: Objects/Consumable/Food/Baked/cake.rsi - netsync: false - type: SolutionContainerManager solutions: food: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/donkpocket.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/donkpocket.yml index 42ae718534..23278bf5dc 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/donkpocket.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/donkpocket.yml @@ -8,7 +8,6 @@ - type: Food - type: Sprite sprite: Objects/Consumable/Food/Baked/donkpocket.rsi - netsync: false - type: SolutionContainerManager solutions: food: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/donut.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/donut.yml index dcea18c836..5fc6ade0b0 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/donut.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/donut.yml @@ -12,7 +12,6 @@ - Donut - type: Sprite sprite: Objects/Consumable/Food/Baked/donut.rsi - netsync: false - type: SolutionContainerManager solutions: food: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml index 2e306f8821..dbe9284f40 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml @@ -8,7 +8,6 @@ - type: Food - type: Sprite sprite: Objects/Consumable/Food/Baked/misc.rsi - netsync: false - type: SolutionContainerManager solutions: food: @@ -168,7 +167,6 @@ layers: - state: tendie map: [ "enum.DamageStateVisualLayers.Base" ] - netsync: false - type: RandomSprite available: - enum.DamageStateVisualLayers.Base: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml index 713fd6bb26..b2637028bb 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml @@ -12,7 +12,6 @@ trash: FoodPlateTin - type: Sprite sprite: Objects/Consumable/Food/Baked/pie.rsi - netsync: false - type: SolutionContainerManager solutions: food: @@ -41,7 +40,6 @@ trash: FoodPlateSmall - type: Sprite sprite: Objects/Consumable/Food/Baked/pie.rsi - netsync: false - type: SolutionContainerManager solutions: food: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pizza.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pizza.yml index e271c0dafd..04cc4233bf 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pizza.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pizza.yml @@ -12,7 +12,6 @@ - type: Food - type: Sprite sprite: Objects/Consumable/Food/Baked/pizza.rsi - netsync: false - type: SolutionContainerManager solutions: food: @@ -42,7 +41,6 @@ - type: Food - type: Sprite sprite: Objects/Consumable/Food/Baked/pizza.rsi - netsync: false - type: SolutionContainerManager solutions: food: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/bowl.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/bowl.yml index 04693e0596..0fcd87be5a 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/bowl.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/bowl.yml @@ -13,7 +13,6 @@ - type: Sprite sprite: Objects/Consumable/Food/bowl.rsi state: bowl - netsync: false - type: DamageOnLand damage: types: @@ -65,7 +64,6 @@ - type: Sprite sprite: Objects/Consumable/Food/bowl.rsi state: bowl-trash - netsync: false - type: Tag tags: - Trash diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml index 4982eb8e2d..3751574a6c 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml @@ -12,7 +12,6 @@ description: Mmm, Donuts. components: - type: Sprite - netsync: false sprite: Objects/Consumable/Food/Baked/donut.rsi state: box layers: @@ -75,7 +74,6 @@ description: Don't drop 'em! components: - type: Sprite - netsync: false sprite: Objects/Consumable/Food/egg.rsi state: box-closed layers: @@ -206,7 +204,6 @@ map: ["enum.StorageVisualLayers.Base"] - state: box-open map: ["enum.StorageVisualLayers.Door"] - netsync: false # TODO make these entitystorage again + placeablesurface after entity storage ECS gets merged. - type: Storage capacity: 8 @@ -273,7 +270,6 @@ description: You suddenly have an urge to trade on the intergalactic stock market. components: - type: Sprite - netsync: false sprite: Objects/Consumable/Food/Baked/nuggets.rsi state: box layers: @@ -331,7 +327,6 @@ description: 'Instructions: Heat in microwave. Product will cool if not eaten within seven minutes.' components: - type: Sprite - netsync: false sprite: Objects/Consumable/Food/Baked/donkpocket.rsi state: box - type: Storage @@ -454,7 +449,6 @@ description: The toy is more edible than the food. components: - type: Sprite - netsync: false sprite: Objects/Storage/Happyhonk/clown.rsi state: box layers: @@ -545,7 +539,6 @@ - HappyHonk - MimeHappyHonk - type: Sprite - netsync: false sprite: Objects/Storage/Happyhonk/mime.rsi state: box - type: Item @@ -560,7 +553,6 @@ suffix: Toy Unsafe components: - type: Sprite - netsync: false sprite: Objects/Storage/Happyhonk/nukie.rsi state: box - type: Item @@ -592,7 +584,6 @@ description: Nothing good can come of this. components: - type: Sprite - netsync: false sprite: Objects/Storage/Happyhonk/cluwne.rsi state: box - type: Item diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/plate.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/plate.yml index f5b0ff6880..88fdbd9366 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/plate.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/plate.yml @@ -15,7 +15,6 @@ - type: Sprite sprite: Objects/Consumable/Food/plates.rsi state: plate - netsync: false - type: DamageOnLand damage: types: @@ -59,7 +58,6 @@ - type: Sprite sprite: Objects/Consumable/Food/plates.rsi state: plate-trash - netsync: false - type: Tag tags: - Trash @@ -101,7 +99,6 @@ - type: Sprite sprite: Objects/Consumable/Food/plates.rsi state: plate-small-trash - netsync: false # Plastic Plate @@ -114,7 +111,6 @@ - type: Sprite sprite: Objects/Consumable/Food/plates.rsi state: plate-plastic - netsync: false - type: Tag tags: - Trash @@ -128,7 +124,6 @@ - type: Sprite sprite: Objects/Consumable/Food/plates.rsi state: plate-small-plastic - netsync: false - type: Tag tags: - Trash @@ -144,7 +139,6 @@ - type: Sprite sprite: Objects/Consumable/Food/plates.rsi state: tin - netsync: false - type: Tag tags: - Trash diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/tin.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/tin.yml index 80129c01e0..d7de1d234b 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/tin.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/tin.yml @@ -13,7 +13,6 @@ maxVol: 20 - type: Sprite sprite: Objects/Consumable/Food/snacks.rsi - netsync: false - type: Item sprite: Objects/Consumable/Food/snacks.rsi heldPrefix: packet @@ -41,7 +40,6 @@ components: - type: Sprite sprite: Objects/Consumable/Food/snacks.rsi - netsync: false - type: Item sprite: Objects/Consumable/Food/snacks.rsi heldPrefix: packet diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/burger.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/burger.yml index 2f0334a8e8..c566df7a25 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/burger.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/burger.yml @@ -34,7 +34,6 @@ transferAmount: 5 - type: Sprite sprite: Objects/Consumable/Food/burger.rsi - netsync: false - type: SolutionContainerManager solutions: food: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/egg.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/egg.yml index 697aa54970..5b75611d04 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/egg.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/egg.yml @@ -77,7 +77,6 @@ - type: Sprite sprite: Objects/Consumable/Food/egg.rsi state: eggshells - netsync: false - type: Item size: 1 - type: SolutionContainerManager @@ -105,7 +104,6 @@ layers: - state: icon map: [ "enum.DamageStateVisualLayers.Base" ] - netsync: false - type: RandomSprite available: - enum.DamageStateVisualLayers.Base: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/food_base.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/food_base.yml index a9f0609914..be65bc29b0 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/food_base.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/food_base.yml @@ -12,7 +12,6 @@ - type: Food - type: SpaceGarbage - type: Sprite - netsync: false - type: StaticPrice price: 0 diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/frozen.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/frozen.yml index 12b93c35a8..2bc327d222 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/frozen.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/frozen.yml @@ -8,7 +8,6 @@ - type: Food - type: Sprite sprite: Objects/Consumable/Food/frozen.rsi - netsync: false - type: SolutionContainerManager solutions: food: @@ -249,7 +248,6 @@ - type: Sprite sprite: Objects/Consumable/Food/frozen.rsi state: cone-trash - netsync: false - type: Tag tags: - Trash @@ -262,7 +260,6 @@ components: - type: Sprite sprite: Objects/Consumable/Food/frozen.rsi - netsync: false layers: - state: stick map: [ "enum.DamageStateVisualLayers.Base" ] diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml index e329d25c31..5e39dda1b0 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml @@ -10,7 +10,6 @@ abstract: true components: - type: Sprite - netsync: false sprite: Objects/Consumable/Food/ingredients.rsi - type: SolutionContainerManager solutions: @@ -328,7 +327,6 @@ components: - type: Sprite sprite: Objects/Consumable/Food/ingredients.rsi - netsync: false - type: Food - type: SolutionContainerManager solutions: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/meals.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/meals.yml index 06731cf55a..fa686b0f96 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/meals.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/meals.yml @@ -12,7 +12,6 @@ - type: Food - type: Sprite sprite: Objects/Consumable/Food/meals.rsi - netsync: false - type: SolutionContainerManager solutions: food: @@ -78,7 +77,6 @@ - salty - type: Sprite state: fries-carrot - netsync: false - type: SolutionContainerManager solutions: food: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml index 0dccac5531..01e7356f50 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml @@ -11,7 +11,6 @@ - type: Food - type: Sprite sprite: Objects/Consumable/Food/meat.rsi - netsync: false - type: Extractable grindableSolutionName: food - type: SolutionContainerManager @@ -126,7 +125,6 @@ tags: - Raw - type: Sprite - netsync: false state: bacon - type: SolutionContainerManager solutions: @@ -645,7 +643,6 @@ - Cooked - type: Food - type: Sprite - netsync: true layers: - state: plate-meat - state: bacon-cooked @@ -752,7 +749,6 @@ - type: Food trash: FoodPlateSmall - type: Sprite - netsync: false layers: - state: chicken-fried map: [ "enum.DamageStateVisualLayers.Base" ] diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/noodles.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/noodles.yml index 9ebc219404..1dda3610d9 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/noodles.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/noodles.yml @@ -10,7 +10,6 @@ trash: FoodPlate - type: Sprite sprite: Objects/Consumable/Food/noodles.rsi - netsync: false - type: SolutionContainerManager solutions: food: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml index 6800a0b97d..25fc1ca242 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml @@ -7,7 +7,6 @@ components: - type: SolutionContainerManager - type: Sprite - netsync: false state: produce - type: Produce - type: PotencyVisuals @@ -24,7 +23,6 @@ components: - type: SolutionContainerManager - type: Sprite - netsync: false state: produce - type: Produce - type: PotencyVisuals @@ -610,7 +608,6 @@ - type: Sprite sprite: Objects/Specific/Hydroponics/corn.rsi state: cob - netsync: false - type: Item size: 1 - type: Tag @@ -712,7 +709,6 @@ - ReagentId: Nutriment Quantity: 2 - type: Sprite - netsync: false state: slice - type: Extractable grindableSolutionName: food diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/skewer.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/skewer.yml index 88b536250f..8eea9da270 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/skewer.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/skewer.yml @@ -9,7 +9,6 @@ trash: FoodKebabSkewer - type: Sprite sprite: Objects/Consumable/Food/skewer.rsi - netsync: false - type: SolutionContainerManager solutions: food: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml index ee0c29fbe9..45d59c2877 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml @@ -8,7 +8,6 @@ - type: Food - type: Sprite sprite: Objects/Consumable/Food/snacks.rsi - netsync: false - type: SolutionContainerManager solutions: food: @@ -82,7 +81,6 @@ - type: Sprite sprite: Objects/Consumable/Food/snacks.rsi state: chocolatebar - netsync: false - type: Item heldPrefix: chocolatebar size: 3 @@ -300,7 +298,6 @@ - type: Sprite sprite: Objects/Consumable/Food/snacks.rsi state: nutribrick - netsync: false - type: SpawnItemsOnUse items: - id: FoodPacketMRETrash @@ -339,7 +336,6 @@ - type: Sprite sprite: Objects/Consumable/Food/snacks.rsi state: mre-brownie - netsync: false - type: SpawnItemsOnUse items: - id: FoodPacketMRETrash @@ -380,7 +376,6 @@ components: - type: Sprite sprite: Objects/Consumable/Food/snacks.rsi - netsync: false - type: Item sprite: Objects/Consumable/Food/snacks.rsi heldPrefix: packet diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/soup.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/soup.yml index 0187080f3a..4607e594c5 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/soup.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/soup.yml @@ -15,7 +15,6 @@ Quantity: 20 - type: Sprite sprite: Objects/Consumable/Food/bowl.rsi - netsync: false - type: DamageOnLand damage: types: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/cigarette.yml b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/cigarette.yml index 9d9cfba7dc..cb58637be3 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/cigarette.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/cigarette.yml @@ -6,7 +6,6 @@ components: - type: Sprite sprite: Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi - netsync: false state: unlit-icon - type: Tag tags: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/joints.yml b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/joints.yml index 42aa84d43d..cdd455a71d 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/joints.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/joints.yml @@ -6,7 +6,6 @@ components: - type: Sprite sprite: Objects/Consumable/Smokeables/Cannabis/joint.rsi - netsync: false state: unlit-icon - type: Tag tags: @@ -38,7 +37,6 @@ components: - type: Sprite sprite: Objects/Consumable/Smokeables/Cannabis/blunt.rsi - netsync: false state: unlit-icon - type: Tag tags: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/packs.yml b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/packs.yml index 693a24452c..d81adaf35a 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/packs.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/packs.yml @@ -5,7 +5,6 @@ abstract: true components: - type: Sprite - netsync: false layers: - state: closed - state: open diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigars/case.yml b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigars/case.yml index f58e5ee6cf..6034df179a 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigars/case.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigars/case.yml @@ -5,7 +5,6 @@ description: A case for holding your cigars when you are not smoking them. components: - type: Sprite - netsync: false sprite: Objects/Consumable/Smokeables/Cigars/case.rsi layers: - state: closed diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigars/cigar.yml b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigars/cigar.yml index 23a698206a..4ed5912fc5 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigars/cigar.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigars/cigar.yml @@ -9,7 +9,6 @@ components: - type: Sprite sprite: Objects/Consumable/Smokeables/Cigars/cigar.rsi - netsync: false state: unlit-icon - type: Tag tags: @@ -44,7 +43,6 @@ components: - type: Sprite sprite: Objects/Consumable/Smokeables/Cigars/cigar-gold.rsi - netsync: false state: unlit-icon - type: Clothing sprite: Objects/Consumable/Smokeables/Cigars/cigar-gold.rsi diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Pipes/pipe.yml b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Pipes/pipe.yml index 009bc9880c..21017465bc 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Pipes/pipe.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Pipes/pipe.yml @@ -6,7 +6,6 @@ components: - type: Sprite sprite: Objects/Consumable/Smokeables/Pipes/pipe.rsi - netsync: false state: unlit-icon - type: Clothing sprite: Objects/Consumable/Smokeables/Pipes/pipe.rsi diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Vapes/vape.yml b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Vapes/vape.yml index bdb7bb23cf..06009b4d2f 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Vapes/vape.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Vapes/vape.yml @@ -6,5 +6,4 @@ components: - type: Sprite sprite: Objects/Consumable/Smokeables/Vapes/vape-standart.rsi - netsync: false state: icon \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/base_smokeables.yml b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/base_smokeables.yml index 62af60b66e..b99a9d37ec 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/base_smokeables.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/base_smokeables.yml @@ -6,7 +6,6 @@ components: - type: Smokable - type: Sprite - netsync: false - type: Appearance - type: BurnStateVisuals - type: Tag diff --git a/Resources/Prototypes/Entities/Objects/Decoration/flora.yml b/Resources/Prototypes/Entities/Objects/Decoration/flora.yml index c392726d15..0426e10326 100644 --- a/Resources/Prototypes/Entities/Objects/Decoration/flora.yml +++ b/Resources/Prototypes/Entities/Objects/Decoration/flora.yml @@ -6,7 +6,6 @@ - type: Clickable - type: Sprite sprite: Objects/Decoration/Flora/flora_rockssolid.rsi - netsync: false - type: Physics bodyType: Static - type: Fixtures @@ -43,7 +42,6 @@ - type: Clickable - type: Sprite sprite: Objects/Decoration/Flora/flora_trees.rsi - netsync: false drawdepth: Overdoors offset: 0,0.9 - type: Physics diff --git a/Resources/Prototypes/Entities/Objects/Decoration/present.yml b/Resources/Prototypes/Entities/Objects/Decoration/present.yml index f6fa82ca47..080aca80ba 100644 --- a/Resources/Prototypes/Entities/Objects/Decoration/present.yml +++ b/Resources/Prototypes/Entities/Objects/Decoration/present.yml @@ -6,7 +6,6 @@ components: - type: Sprite sprite: Objects/Decoration/present.rsi - netsync: false layers: - state: present @@ -372,7 +371,6 @@ components: - type: Sprite sprite: Objects/Decoration/present.rsi - netsync: false layers: - state: unwrapped - type: Tag diff --git a/Resources/Prototypes/Entities/Objects/Devices/Electronics/base_electronics.yml b/Resources/Prototypes/Entities/Objects/Devices/Electronics/base_electronics.yml index ec24e4be15..d55b5a1098 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Electronics/base_electronics.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Electronics/base_electronics.yml @@ -8,7 +8,6 @@ - type: Sprite sprite: Objects/Misc/module.rsi state: generic - netsync: false - type: Tag tags: - DroneUsable diff --git a/Resources/Prototypes/Entities/Objects/Devices/Electronics/firelock.yml b/Resources/Prototypes/Entities/Objects/Devices/Electronics/firelock.yml index be3f0be1dc..3dee4037b3 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Electronics/firelock.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Electronics/firelock.yml @@ -7,7 +7,6 @@ - type: Sprite sprite: Objects/Misc/module.rsi state: mainboard - netsync: false - type: Tag tags: - DroneUsable diff --git a/Resources/Prototypes/Entities/Objects/Devices/Electronics/power_electronics.yml b/Resources/Prototypes/Entities/Objects/Devices/Electronics/power_electronics.yml index 7f02682b34..6c0eae8a74 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Electronics/power_electronics.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Electronics/power_electronics.yml @@ -9,7 +9,6 @@ - type: Sprite sprite: Objects/Misc/module.rsi state: charger_APC - netsync: false - type: PhysicalComposition materialComposition: Glass: 50 @@ -28,7 +27,6 @@ - type: Sprite sprite: Objects/Misc/module.rsi state: charger_APC - netsync: false - type: Tag tags: - DroneUsable @@ -44,7 +42,6 @@ - type: Sprite sprite: Objects/Misc/module.rsi state: charger_APC - netsync: false - type: Tag tags: - DroneUsable @@ -60,7 +57,6 @@ - type: Sprite sprite: Objects/Misc/module.rsi state: charger_APC - netsync: false - type: Tag tags: - DroneUsable @@ -76,7 +72,6 @@ - type: Sprite sprite: Objects/Misc/module.rsi state: generic - netsync: false - type: Tag tags: - DroneUsable diff --git a/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/guardian_activators.yml b/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/guardian_activators.yml index f052743b46..188e98d316 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/guardian_activators.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/guardian_activators.yml @@ -7,7 +7,6 @@ - type: Sprite sprite: Objects/Specific/Medical/hypospray.rsi state: combat_hypo - netsync: false - type: GuardianCreator guardianProto: MobHoloparasiteGuardian diff --git a/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/reinforcement_teleporter.yml b/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/reinforcement_teleporter.yml index c81a876517..e070b19e49 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/reinforcement_teleporter.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/reinforcement_teleporter.yml @@ -8,7 +8,6 @@ sprite: Objects/Devices/communication.rsi layers: - state: old-radio - netsync: false - type: GhostRole name: Syndicate Agent description: Someone needs reinforcements. You, the first person the syndicate could find, will help them. diff --git a/Resources/Prototypes/Entities/Objects/Devices/cartridges.yml b/Resources/Prototypes/Entities/Objects/Devices/cartridges.yml index 7b102b27bc..fa66dfe6d1 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/cartridges.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/cartridges.yml @@ -7,7 +7,6 @@ - type: Sprite sprite: Objects/Devices/cartridge.rsi state: cart-y - netsync: false - type: Icon sprite: Objects/Devices/cartridge.rsi state: cart-y @@ -29,7 +28,6 @@ - type: Sprite sprite: Objects/Devices/cartridge.rsi state: cart-y - netsync: false - type: Icon sprite: Objects/Devices/cartridge.rsi state: cart-y diff --git a/Resources/Prototypes/Entities/Objects/Devices/door_remote.yml b/Resources/Prototypes/Entities/Objects/Devices/door_remote.yml index 3f2b75833a..58331a36e3 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/door_remote.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/door_remote.yml @@ -7,7 +7,6 @@ components: - type: Sprite sprite: Objects/Devices/door_remote.rsi - netsync: false - type: Access - type: DoorRemote diff --git a/Resources/Prototypes/Entities/Objects/Devices/encryption_keys.yml b/Resources/Prototypes/Entities/Objects/Devices/encryption_keys.yml index f55dee983b..dcbb5fe112 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/encryption_keys.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/encryption_keys.yml @@ -10,7 +10,6 @@ sprite: Objects/Devices/encryption_keys.rsi - type: Sprite sprite: Objects/Devices/encryption_keys.rsi - netsync: false - type: entity parent: EncryptionKey diff --git a/Resources/Prototypes/Entities/Objects/Devices/forensic_scanner.yml b/Resources/Prototypes/Entities/Objects/Devices/forensic_scanner.yml index abdef8dd1d..ec7b2a0cbb 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/forensic_scanner.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/forensic_scanner.yml @@ -5,7 +5,6 @@ description: A handheld device that can scan objects for fingerprints and fibers. components: - type: Sprite - netsync: false sprite: Objects/Devices/forensic_scanner.rsi state: forensicnew - type: Item diff --git a/Resources/Prototypes/Entities/Objects/Devices/geiger.yml b/Resources/Prototypes/Entities/Objects/Devices/geiger.yml index 66eaba5e87..de4178ce7f 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/geiger.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/geiger.yml @@ -5,7 +5,6 @@ description: A handheld device used for detecting and measuring radiation pulses. components: - type: Sprite - netsync: false sprite: Objects/Tools/geiger.rsi layers: - state: geiger_base diff --git a/Resources/Prototypes/Entities/Objects/Devices/holoprojectors.yml b/Resources/Prototypes/Entities/Objects/Devices/holoprojectors.yml index fa2b13638c..67b0047103 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/holoprojectors.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/holoprojectors.yml @@ -21,7 +21,6 @@ - type: Sprite sprite: Objects/Devices/Holoprojectors/custodial.rsi state: icon - netsync: false - type: Tag tags: - HolosignProjector @@ -38,7 +37,6 @@ - type: Sprite sprite: Objects/Devices/Holoprojectors/atmos.rsi state: icon - netsync: false - type: Tag tags: - HolofanProjector @@ -58,7 +56,6 @@ - type: Sprite sprite: Objects/Devices/Holoprojectors/security.rsi state: icon - netsync: false - type: Tag tags: - HolofanProjector diff --git a/Resources/Prototypes/Entities/Objects/Devices/mousetrap.yml b/Resources/Prototypes/Entities/Objects/Devices/mousetrap.yml index b09460ce97..310f1d598d 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/mousetrap.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/mousetrap.yml @@ -6,7 +6,6 @@ components: - type: Sprite sprite: Objects/Devices/mousetrap.rsi - netsync: false drawdepth: SmallMobs # if mice can hide under tables, so can mousetraps layers: - state: mousetrap diff --git a/Resources/Prototypes/Entities/Objects/Devices/nuke.yml b/Resources/Prototypes/Entities/Objects/Devices/nuke.yml index 47d1f45875..c77f826001 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/nuke.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/nuke.yml @@ -8,7 +8,6 @@ anchored: true - type: Sprite sprite: Objects/Devices/nuke.rsi - netsync: false noRot: true state: nuclearbomb_base - type: Physics @@ -75,7 +74,6 @@ - type: NukeLabel - type: Sprite sprite: Objects/Devices/nuke.rsi - netsync: false state: nuclearbomb_base - type: Physics bodyType: Dynamic diff --git a/Resources/Prototypes/Entities/Objects/Devices/payload.yml b/Resources/Prototypes/Entities/Objects/Devices/payload.yml index 4752ac1ba2..019f19e711 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/payload.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/payload.yml @@ -5,7 +5,6 @@ components: - type: Appearance - type: Sprite - netsync: false - type: Tag tags: - Payload diff --git a/Resources/Prototypes/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/Entities/Objects/Devices/pda.yml index 5372f79813..ae8abd0f1c 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/pda.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/pda.yml @@ -8,7 +8,6 @@ - type: Appearance - type: Sprite sprite: Objects/Devices/pda.rsi - netsync: false layers: - map: [ "enum.PDAVisualLayers.Base" ] - state: "light_overlay" diff --git a/Resources/Prototypes/Entities/Objects/Devices/station_map.yml b/Resources/Prototypes/Entities/Objects/Devices/station_map.yml index d333417ff1..27732de790 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/station_map.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/station_map.yml @@ -9,7 +9,6 @@ components: - type: StationMap - type: Sprite - netsync: false sprite: Objects/Devices/tablets.rsi layers: - state: tablet diff --git a/Resources/Prototypes/Entities/Objects/Fun/Instruments/base_instruments.yml b/Resources/Prototypes/Entities/Objects/Fun/Instruments/base_instruments.yml index 526655556d..06b2301262 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/Instruments/base_instruments.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/Instruments/base_instruments.yml @@ -5,7 +5,6 @@ description: That's an instrument. components: - type: Sprite - netsync: false - type: Instrument - type: ActivatableUI inHandsOnly: true diff --git a/Resources/Prototypes/Entities/Objects/Fun/Tabletop/checkers.yml b/Resources/Prototypes/Entities/Objects/Fun/Tabletop/checkers.yml index e2249faaaf..bbfd403e91 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/Tabletop/checkers.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/Tabletop/checkers.yml @@ -32,7 +32,6 @@ components: - type: TabletopDraggable - type: Sprite - netsync: false noRot: true - type: Appearance diff --git a/Resources/Prototypes/Entities/Objects/Fun/Tabletop/chess.yml b/Resources/Prototypes/Entities/Objects/Fun/Tabletop/chess.yml index a1b5496c4a..f5821b9bf7 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/Tabletop/chess.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/Tabletop/chess.yml @@ -33,7 +33,6 @@ components: - type: TabletopDraggable - type: Sprite - netsync: false noRot: true - type: Appearance diff --git a/Resources/Prototypes/Entities/Objects/Fun/Tabletop/tabletopGeneric.yml b/Resources/Prototypes/Entities/Objects/Fun/Tabletop/tabletopGeneric.yml index 637c07a6a0..0be3b37a65 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/Tabletop/tabletopGeneric.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/Tabletop/tabletopGeneric.yml @@ -5,7 +5,6 @@ components: - type: TabletopDraggable - type: Sprite - netsync: false noRot: true sprite: Objects/Fun/Tabletop/generic_pieces.rsi - type: Appearance diff --git a/Resources/Prototypes/Entities/Objects/Fun/crayons.yml b/Resources/Prototypes/Entities/Objects/Fun/crayons.yml index d0856c64f4..49113f18fd 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/crayons.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/crayons.yml @@ -267,7 +267,6 @@ components: - type: Sprite sprite: Objects/Fun/crayons.rsi - netsync: false state: box - type: Storage capacity: 7 diff --git a/Resources/Prototypes/Entities/Objects/Fun/dice.yml b/Resources/Prototypes/Entities/Objects/Fun/dice.yml index 969c0c1e9a..6903a0bcac 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/dice.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/dice.yml @@ -7,7 +7,6 @@ - type: ItemCooldown - type: UseDelay - type: Sprite - netsync: false sprite: Objects/Fun/dice.rsi noRot: true # If their sprites rotate, the number becomes even more illegible than usual. - type: Tag diff --git a/Resources/Prototypes/Entities/Objects/Fun/dice_bag.yml b/Resources/Prototypes/Entities/Objects/Fun/dice_bag.yml index 3b74279841..cac3e0ac58 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/dice_bag.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/dice_bag.yml @@ -14,7 +14,6 @@ - id: d20Dice - id: PercentileDie - type: Sprite - netsync: false sprite: Objects/Fun/dice.rsi state: dicebag - type: Item @@ -31,7 +30,6 @@ name: bag of dice components: - type: Sprite - netsync: false sprite: Objects/Fun/dice.rsi state: magicdicebag - type: Storage diff --git a/Resources/Prototypes/Entities/Objects/Fun/puppet.yml b/Resources/Prototypes/Entities/Objects/Fun/puppet.yml index e7dbf94ba9..845a4b97c6 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/puppet.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/puppet.yml @@ -6,7 +6,6 @@ description: It's a dummy, dummy! components: - type: Sprite - netsync: false sprite: Objects/Fun/mrchips.rsi layers: - state: icon @@ -39,7 +38,6 @@ name: mr dips components: - type: Sprite - netsync: false sprite: Objects/Fun/mrdips.rsi layers: - state: icon diff --git a/Resources/Prototypes/Entities/Objects/Fun/skub.yml b/Resources/Prototypes/Entities/Objects/Fun/skub.yml index 6ab3312b1a..037f9ec80d 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/skub.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/skub.yml @@ -7,7 +7,6 @@ - type: Sprite sprite: Objects/Misc/skub.rsi state: icon - netsync: false - type: Item sprite: Objects/Misc/skub.rsi - type: ItemCooldown diff --git a/Resources/Prototypes/Entities/Objects/Fun/toys.yml b/Resources/Prototypes/Entities/Objects/Fun/toys.yml index 1262d30c08..96fd720fe6 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/toys.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/toys.yml @@ -7,7 +7,6 @@ components: - type: Sprite sprite: Objects/Fun/toys.rsi - netsync: false - type: EmitSoundOnUse sound: collection: ToySqueak @@ -83,7 +82,6 @@ - type: Sprite sprite: Mobs/Ghosts/revenant.rsi state: icon - netsync: false noRot: true - type: Construction graph: PlushieGhostRevenant @@ -421,7 +419,6 @@ components: - type: Sprite state: plushie_vox - netsync: false - type: EmitSoundOnUse sound: path: /Audio/Voice/Vox/shriek1.ogg @@ -473,7 +470,6 @@ components: - type: Sprite sprite: Objects/Fun/toys.rsi - netsync: false - type: PhysicalComposition materialComposition: Plastic: 100 @@ -686,7 +682,6 @@ id: FoamWeaponBase components: - type: Sprite - netsync: false - type: Item size: 24 @@ -730,7 +725,6 @@ abstract: true components: - type: Sprite - netsync: false - type: entity parent: ToyGunBase @@ -956,7 +950,6 @@ components: - type: Sprite sprite: Objects/Fun/pequeno.rsi - netsync: false layers: - state: base map: [ "enum.DamageStateVisualLayers.Base" ] diff --git a/Resources/Prototypes/Entities/Objects/Magic/books.yml b/Resources/Prototypes/Entities/Objects/Magic/books.yml index 1961348cd5..779c688035 100644 --- a/Resources/Prototypes/Entities/Objects/Magic/books.yml +++ b/Resources/Prototypes/Entities/Objects/Magic/books.yml @@ -5,7 +5,6 @@ abstract: true components: - type: Sprite - netsync: false sprite: Objects/Misc/books.rsi layers: - state: book_demonomicon @@ -31,7 +30,6 @@ parent: BaseSpellbook components: - type: Sprite - netsync: false sprite: Objects/Magic/spellbooks.rsi layers: - state: bookforcewall @@ -45,7 +43,6 @@ parent: BaseSpellbook components: - type: Sprite - netsync: false sprite: Objects/Magic/spellbooks.rsi layers: - state: spellbook @@ -59,7 +56,6 @@ parent: BaseSpellbook components: - type: Sprite - netsync: false sprite: Objects/Magic/spellbooks.rsi layers: - state: spellbook @@ -73,7 +69,6 @@ parent: BaseSpellbook components: - type: Sprite - netsync: false sprite: Objects/Magic/spellbooks.rsi layers: - state: bookknock @@ -87,7 +82,6 @@ parent: BaseSpellbook components: - type: Sprite - netsync: false sprite: Objects/Magic/spellbooks.rsi layers: - state: bookfireball @@ -101,7 +95,6 @@ parent: BaseSpellbook components: - type: Sprite - netsync: false sprite: Objects/Magic/magicactions.rsi layers: - state: spell_default diff --git a/Resources/Prototypes/Entities/Objects/Materials/Sheets/metal.yml b/Resources/Prototypes/Entities/Objects/Materials/Sheets/metal.yml index bac810b02f..b25c0bc451 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/Sheets/metal.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/Sheets/metal.yml @@ -5,7 +5,6 @@ description: A sheet of metal, used often on the station in various applications. components: - type: Sprite - netsync: false sprite: Objects/Materials/Sheets/metal.rsi - type: Item sprite: Objects/Materials/Sheets/metal.rsi diff --git a/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml b/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml index 50725ecdb2..cb498ab433 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml @@ -5,7 +5,6 @@ description: A sheet of material, used often on the station in various applications. components: - type: Sprite - netsync: false sprite: Objects/Materials/Sheets/other.rsi - type: Item sprite: Objects/Materials/Sheets/other.rsi diff --git a/Resources/Prototypes/Entities/Objects/Materials/ingots.yml b/Resources/Prototypes/Entities/Objects/Materials/ingots.yml index 877efc2de4..434fdf5979 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/ingots.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/ingots.yml @@ -5,7 +5,6 @@ description: A heavy metal ingot stamped with the Nanotrasen logo. components: - type: Sprite - netsync: false sprite: Objects/Materials/ingots.rsi - type: Item sprite: Objects/Materials/ingots.rsi diff --git a/Resources/Prototypes/Entities/Objects/Materials/materials.yml b/Resources/Prototypes/Entities/Objects/Materials/materials.yml index fffc9e5b51..52934a0e8e 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/materials.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/materials.yml @@ -5,7 +5,6 @@ description: A raw material. components: - type: Sprite - netsync: false sprite: Objects/Materials/materials.rsi - type: Item sprite: Objects/Materials/materials.rsi @@ -222,7 +221,6 @@ name: bear hide components: - type: Sprite - netsync: false sprite: Objects/Materials/materials.rsi layers: - map: [ "enum.DamageStateVisualLayers.Base" ] diff --git a/Resources/Prototypes/Entities/Objects/Materials/ore.yml b/Resources/Prototypes/Entities/Objects/Materials/ore.yml index 136405704e..f22f46e1d9 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/ore.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/ore.yml @@ -5,7 +5,6 @@ description: A piece of unrefined ore. components: - type: Sprite - netsync: false sprite: Objects/Materials/ore.rsi - type: Item sprite: Objects/Materials/ore.rsi diff --git a/Resources/Prototypes/Entities/Objects/Materials/parts.yml b/Resources/Prototypes/Entities/Objects/Materials/parts.yml index c86bcdce96..7974381ff8 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/parts.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/parts.yml @@ -4,7 +4,6 @@ id: PartBase components: - type: Sprite - netsync: false sprite: Objects/Materials/parts.rsi state: rods - type: Item diff --git a/Resources/Prototypes/Entities/Objects/Materials/shards.yml b/Resources/Prototypes/Entities/Objects/Materials/shards.yml index a1a068e54c..affd08edb1 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/shards.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/shards.yml @@ -10,7 +10,6 @@ - sprite: Objects/Materials/Shards/shard.rsi state: shard1 map: [ "enum.DamageStateVisualLayers.Base" ] - netsync: false - type: RandomSprite available: - enum.DamageStateVisualLayers.Base: diff --git a/Resources/Prototypes/Entities/Objects/Misc/bedsheets.yml b/Resources/Prototypes/Entities/Objects/Misc/bedsheets.yml index 0e56b8b5cd..6c6f2d484e 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/bedsheets.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/bedsheets.yml @@ -11,7 +11,6 @@ components: - type: Sprite sprite: Objects/Misc/bedsheets.rsi - netsync: false noRot: true - type: Item size: 10 diff --git a/Resources/Prototypes/Entities/Objects/Misc/books.yml b/Resources/Prototypes/Entities/Objects/Misc/books.yml index 6def659a54..19a1a28e36 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/books.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/books.yml @@ -6,7 +6,6 @@ components: - type: Sprite sprite: Objects/Misc/books.rsi - netsync: false layers: - state: book0 map: [ "enum.DamageStateVisualLayers.Base" ] diff --git a/Resources/Prototypes/Entities/Objects/Misc/box.yml b/Resources/Prototypes/Entities/Objects/Misc/box.yml index d893b56cce..418e8f667a 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/box.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/box.yml @@ -4,7 +4,6 @@ abstract: true components: - type: Sprite - netsync: false sprite: Objects/Storage/boxes.rsi - type: Item sprite: Objects/Storage/boxes.rsi diff --git a/Resources/Prototypes/Entities/Objects/Misc/dat_fukken_disk.yml b/Resources/Prototypes/Entities/Objects/Misc/dat_fukken_disk.yml index 30a0065056..ec0b64ade2 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/dat_fukken_disk.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/dat_fukken_disk.yml @@ -8,7 +8,6 @@ - type: SpecialRespawn prototype: NukeDisk - type: Sprite - netsync: false sprite: Objects/Misc/nukedisk.rsi state: icon - type: StaticPrice @@ -30,7 +29,6 @@ description: A nuclear auth disk, capable of arming a nuke if used along with a code. Note from nanotrasen reads "THIS IS YOUR MOST IMPORTANT POSESSION, SECURE DAT FUKKEN DISK!" components: - type: Sprite - netsync: false sprite: Objects/Misc/nukedisk.rsi state: icon - type: StaticPrice diff --git a/Resources/Prototypes/Entities/Objects/Misc/desk_bell.yml b/Resources/Prototypes/Entities/Objects/Misc/desk_bell.yml index 87ec1a6e73..2c57cc105a 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/desk_bell.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/desk_bell.yml @@ -7,7 +7,6 @@ - type: Sprite sprite: Objects/Misc/desk_bell.rsi state: "normal" - netsync: false - type: InteractionPopup successChance: 1 interactSuccessSound: diff --git a/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml b/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml index dd5b0e2644..aea2fb7ee1 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml @@ -5,7 +5,6 @@ description: It extinguishes fires. components: - type: Sprite - netsync: false sprite: Objects/Misc/fire_extinguisher.rsi layers: - state: fire_extinguisher_closed diff --git a/Resources/Prototypes/Entities/Objects/Misc/fluff_lights.yml b/Resources/Prototypes/Entities/Objects/Misc/fluff_lights.yml index 1532d5787f..e80d063d2d 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/fluff_lights.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/fluff_lights.yml @@ -41,7 +41,6 @@ cell_slot: !type:ContainerSlot - type: Sprite sprite: Objects/Misc/Lights/lights.rsi - netsync: false - type: Item sprite: Objects/Misc/Lights/lights.rsi size: 20 diff --git a/Resources/Prototypes/Entities/Objects/Misc/implanters.yml b/Resources/Prototypes/Entities/Objects/Misc/implanters.yml index 7c9e635442..0cfb9f8aba 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/implanters.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/implanters.yml @@ -21,7 +21,6 @@ - SubdermalImplant - type: Sprite sprite: Objects/Specific/Chemistry/syringe.rsi - netsync: false state: syringe_base0 layers: - state: syringe2 @@ -61,7 +60,6 @@ components: - type: Sprite sprite: Objects/Specific/Chemistry/syringe.rsi - netsync: false state: syringe_base0 layers: - state: syringe2 diff --git a/Resources/Prototypes/Entities/Objects/Misc/inflatable_wall.yml b/Resources/Prototypes/Entities/Objects/Misc/inflatable_wall.yml index bad28e743f..d11aa714cb 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/inflatable_wall.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/inflatable_wall.yml @@ -8,7 +8,6 @@ - type: Sprite sprite: Objects/Misc/inflatable_wall.rsi state: inflatable_wall - netsync: false - type: Physics bodyType: Static - type: Fixtures diff --git a/Resources/Prototypes/Entities/Objects/Misc/kudzu.yml b/Resources/Prototypes/Entities/Objects/Misc/kudzu.yml index d1d026fb5d..89dd885c4f 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/kudzu.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/kudzu.yml @@ -16,7 +16,6 @@ sprite: Objects/Misc/kudzu.rsi state: kudzu_11 drawdepth: Overdoors - netsync: false - type: Appearance - type: KudzuVisuals - type: Clickable @@ -122,7 +121,6 @@ sprite: Objects/Misc/fleshkudzu.rsi state: kudzu_11 drawdepth: Overdoors - netsync: false - type: Appearance - type: KudzuVisuals - type: Clickable diff --git a/Resources/Prototypes/Entities/Objects/Misc/machine_parts.yml b/Resources/Prototypes/Entities/Objects/Misc/machine_parts.yml index e2e78b7c09..9dfa4d9258 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/machine_parts.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/machine_parts.yml @@ -6,7 +6,6 @@ abstract: true components: - type: Sprite - netsync: false sprite: Objects/Misc/stock_parts.rsi - type: Item size: 1 diff --git a/Resources/Prototypes/Entities/Objects/Misc/paper.yml b/Resources/Prototypes/Entities/Objects/Misc/paper.yml index 4dfaac71ef..bac3ccd2f0 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/paper.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/paper.yml @@ -6,7 +6,6 @@ components: - type: Sprite sprite: Objects/Misc/bureaucracy.rsi - netsync: false layers: - state: paper - state: paper_words @@ -52,7 +51,6 @@ components: - type: Sprite sprite: Objects/Misc/bureaucracy.rsi - netsync: false layers: - state: paper_dotmatrix - state: paper_dotmatrix_words @@ -84,7 +82,6 @@ components: - type: Sprite sprite: Objects/Misc/bureaucracy.rsi - netsync: false layers: - state: paper color: "#e6e6fa" @@ -110,7 +107,6 @@ components: - type: Sprite sprite: Objects/Misc/bureaucracy.rsi - netsync: false layers: - state: paper color: "#f7e574" @@ -198,7 +194,6 @@ - type: Sprite sprite: Objects/Misc/bureaucracy.rsi state: overpriced_pen - netsync: false - type: ItemCooldown - type: MeleeWeapon damage: @@ -233,7 +228,6 @@ - type: Sprite sprite: Objects/Misc/bureaucracy.rsi state: pen_centcom - netsync: false - type: Item sprite: Objects/Misc/bureaucracy.rsi heldPrefix: pen_centcom @@ -255,7 +249,6 @@ description: A folder filled with top secret paperwork. components: - type: Sprite -# netsync: true sprite: Objects/Misc/bureaucracy.rsi layers: - state: folder-colormap @@ -386,7 +379,6 @@ - type: Sprite sprite: Objects/Misc/bureaucracy.rsi state: stamp-mime - netsync: false - type: Item size: 3 diff --git a/Resources/Prototypes/Entities/Objects/Misc/space_cash.yml b/Resources/Prototypes/Entities/Objects/Misc/space_cash.yml index 369faba4e9..9132080ebe 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/space_cash.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/space_cash.yml @@ -23,7 +23,6 @@ - cash_1000000 - type: Sprite sprite: Objects/Economy/cash.rsi - netsync: false state: cash layers: - state: cash diff --git a/Resources/Prototypes/Entities/Objects/Misc/spider_web.yml b/Resources/Prototypes/Entities/Objects/Misc/spider_web.yml index 759e746c2c..d7a05e874d 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/spider_web.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/spider_web.yml @@ -18,7 +18,6 @@ - state: spider_web_1 map: ["spiderWebLayer"] drawdepth: WallMountedItems - netsync: false - type: Appearance - type: GenericVisualizer visuals: diff --git a/Resources/Prototypes/Entities/Objects/Misc/tiles.yml b/Resources/Prototypes/Entities/Objects/Misc/tiles.yml index 6a0870d0a2..b17b35eb73 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/tiles.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/tiles.yml @@ -6,7 +6,6 @@ components: - type: Sprite sprite: Objects/Tiles/tile.rsi - netsync: false - type: Item sprite: Objects/Tiles/tile.rsi - type: DamageOtherOnHit diff --git a/Resources/Prototypes/Entities/Objects/Power/antimatter_jar.yml b/Resources/Prototypes/Entities/Objects/Power/antimatter_jar.yml index 5dbda413b0..a18d9bba79 100644 --- a/Resources/Prototypes/Entities/Objects/Power/antimatter_jar.yml +++ b/Resources/Prototypes/Entities/Objects/Power/antimatter_jar.yml @@ -10,7 +10,6 @@ - type: Sprite sprite: Objects/Power/AME/ame_jar.rsi state: jar - netsync: false - type: AMEFuelContainer - type: StaticPrice price: 500 diff --git a/Resources/Prototypes/Entities/Objects/Power/lights.yml b/Resources/Prototypes/Entities/Objects/Power/lights.yml index ccc3cdb146..a6d1ed80ca 100644 --- a/Resources/Prototypes/Entities/Objects/Power/lights.yml +++ b/Resources/Prototypes/Entities/Objects/Power/lights.yml @@ -9,7 +9,6 @@ path: "/Audio/Effects/glass_hit.ogg" - type: Sprite - netsync: false sprite: Objects/Power/light_bulb.rsi layers: - map: [ enum.LightBulbVisualLayers.Base ] diff --git a/Resources/Prototypes/Entities/Objects/Power/powercells.yml b/Resources/Prototypes/Entities/Objects/Power/powercells.yml index 0f03ac7782..945bda93da 100644 --- a/Resources/Prototypes/Entities/Objects/Power/powercells.yml +++ b/Resources/Prototypes/Entities/Objects/Power/powercells.yml @@ -12,7 +12,6 @@ intensitySlope: 1.5 - type: Sprite sprite: Objects/Power/power_cells.rsi - netsync: false - type: SolutionContainerManager solutions: powerCell: diff --git a/Resources/Prototypes/Entities/Objects/Power/powersink.yml b/Resources/Prototypes/Entities/Objects/Power/powersink.yml index 9e3ad3c391..c60ffcd86f 100644 --- a/Resources/Prototypes/Entities/Objects/Power/powersink.yml +++ b/Resources/Prototypes/Entities/Objects/Power/powersink.yml @@ -43,6 +43,5 @@ voltage: High drawRate: 1000000 - type: Sprite - netsync: false sprite: Objects/Power/powersink.rsi state: powersink diff --git a/Resources/Prototypes/Entities/Objects/Shields/shields.yml b/Resources/Prototypes/Entities/Objects/Shields/shields.yml index d1668feae5..f6bc0d5015 100644 --- a/Resources/Prototypes/Entities/Objects/Shields/shields.yml +++ b/Resources/Prototypes/Entities/Objects/Shields/shields.yml @@ -8,7 +8,6 @@ - type: Sprite sprite: Objects/Weapons/Melee/shields.rsi state: riot-icon - netsync: false - type: Item sprite: Objects/Weapons/Melee/shields.rsi size: 100 diff --git a/Resources/Prototypes/Entities/Objects/Specific/Chapel/bibles.yml b/Resources/Prototypes/Entities/Objects/Specific/Chapel/bibles.yml index e196f4a761..0328a7b149 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Chapel/bibles.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Chapel/bibles.yml @@ -28,7 +28,6 @@ - Holy - type: ItemCooldown - type: Sprite - netsync: false sprite: Objects/Specific/Chapel/bible.rsi state: icon - type: Item @@ -72,7 +71,6 @@ specialItem: SpawnPointGhostCerberus respawnTime: 300 - type: Sprite - netsync: false sprite: Objects/Specific/Chapel/necronomicon.rsi state: icon - type: Item diff --git a/Resources/Prototypes/Entities/Objects/Specific/Chemistry/chem_bag.yml b/Resources/Prototypes/Entities/Objects/Specific/Chemistry/chem_bag.yml index 90f47359b3..8be5fecb4f 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Chemistry/chem_bag.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Chemistry/chem_bag.yml @@ -5,7 +5,6 @@ description: A bag for storing chemistry products, such as pills, pill canisters, bottles, and syringes. components: - type: Sprite - netsync: false sprite: Objects/Specific/Chemistry/chem_bag.rsi state: icon - type: Clothing diff --git a/Resources/Prototypes/Entities/Objects/Specific/Forensics/forensics.yml b/Resources/Prototypes/Entities/Objects/Specific/Forensics/forensics.yml index 9bb9e058a2..0df0a16403 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Forensics/forensics.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Forensics/forensics.yml @@ -9,7 +9,6 @@ - type: ForensicPad - type: Sprite sprite: Objects/Misc/bureaucracy.rsi - netsync: false layers: - state: paper color: yellow diff --git a/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/tools.yml b/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/tools.yml index 750c28d3ac..bdc8c2ee63 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/tools.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/tools.yml @@ -49,7 +49,6 @@ - type: Sprite sprite: Objects/Tools/Hydroponics/scythe.rsi state: icon - netsync: false - type: ItemCooldown - type: MeleeWeapon damage: @@ -77,7 +76,6 @@ - type: Sprite sprite: Objects/Tools/Hydroponics/hatchet.rsi state: icon - netsync: false - type: ItemCooldown - type: MeleeWeapon damage: @@ -116,7 +114,6 @@ description: A bag for botanists to easily move their huge harvests. components: - type: Sprite - netsync: false sprite: Objects/Specific/Hydroponics/Equipment/plant_bag.rsi state: icon - type: Item diff --git a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/janitor.yml b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/janitor.yml index c95a6a01fb..1d390e099a 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/janitor.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/janitor.yml @@ -87,7 +87,6 @@ - type: Clickable - type: Sprite sprite: Objects/Specific/Janitorial/janitorial.rsi - netsync: false noRot: true layers: - state: mopbucket @@ -227,7 +226,6 @@ description: This is the alpha and omega of sanitation. components: - type: Sprite - netSync: false noRot: true sprite: Objects/Specific/Janitorial/janitorial_cart.rsi layers: @@ -389,7 +387,6 @@ mode: SnapgridCenter components: - type: Sprite - netsync: false drawdepth: FloorObjects sprite: Objects/Specific/Janitorial/drain.rsi state: icon diff --git a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/spray.yml b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/spray.yml index b33201f47a..f88dc4f6b2 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/spray.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/spray.yml @@ -10,7 +10,6 @@ - Spray - Trash - type: Sprite - netsync: false sprite: Objects/Specific/Janitorial/janitorial.rsi state: cleaner - type: Item @@ -42,7 +41,6 @@ description: A huge spray bottle, capable of unrivaled janitorial power. components: - type: Sprite - netsync: false sprite: Objects/Specific/Janitorial/janitorial.rsi state: cleaner_large - type: SolutionContainerManager @@ -107,7 +105,6 @@ - type: Vapor - type: AnimationPlayer - type: Sprite - netsync: false sprite: Effects/chempuff.rsi rotation: 180 layers: @@ -134,7 +131,6 @@ noSpawn: true components: - type: Sprite - netsync: false sprite: Effects/chempuff.rsi rotation: 180 layers: diff --git a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/trashbag.yml b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/trashbag.yml index fff34e34fc..80aace05e7 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/trashbag.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/trashbag.yml @@ -4,7 +4,6 @@ parent: BaseStorageItem components: - type: Sprite - netSync: false sprite: Objects/Specific/Janitorial/trashbag.rsi layers: - state: icon-0 diff --git a/Resources/Prototypes/Entities/Objects/Specific/Librarian/books_bag.yml b/Resources/Prototypes/Entities/Objects/Specific/Librarian/books_bag.yml index 787c9a39e6..78b368d6d3 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Librarian/books_bag.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Librarian/books_bag.yml @@ -5,7 +5,6 @@ description: A refined bag to carry your own library components: - type: Sprite - netsync: false sprite: Objects/Specific/Library/Equipment/books_bag.rsi state: icon - type: Clothing diff --git a/Resources/Prototypes/Entities/Objects/Specific/Mech/mech_construction.yml b/Resources/Prototypes/Entities/Objects/Specific/Mech/mech_construction.yml index 5ba73f7a99..df6ca8e88c 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Mech/mech_construction.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Mech/mech_construction.yml @@ -36,7 +36,6 @@ - type: Sprite drawdepth: Items noRot: false - netsync: false sprite: Objects/Specific/Mech/ripley_construction.rsi - type: entity @@ -165,7 +164,6 @@ - type: Sprite drawdepth: Items noRot: false - netsync: false sprite: Objects/Specific/Mech/honker_construction.rsi - type: entity diff --git a/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml b/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml index 4cf83e0e6e..7007004d44 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml @@ -74,7 +74,6 @@ description: Versatile and lightly armored, the Ripley is useful for almost any heavy work scenario. The "APLU" stands for Autonomous Power Loading Unit. components: - type: Sprite - netsync: false drawdepth: Mobs noRot: true sprite: Objects/Specific/Mech/mecha.rsi @@ -120,7 +119,6 @@ description: "Produced by \"Tyranny of Honk, INC\", this exosuit is designed as heavy clown-support. Used to spread the fun and joy of life. HONK!" components: - type: Sprite - netsync: false drawdepth: Mobs noRot: true sprite: Objects/Specific/Mech/mecha.rsi diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/disease.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/disease.yml index 4575de51fd..e6671aa424 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/disease.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/disease.yml @@ -7,7 +7,6 @@ - type: Item size: 1 - type: Sprite - netsync: false sprite: Objects/Specific/Medical/mouth_swab.rsi state: icon - type: Tag @@ -26,5 +25,4 @@ size: 3 - type: Sprite sprite: Objects/Specific/Medical/medipen.rsi - netsync: false state: salpen diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml index b0008f219e..bb58661ec4 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml @@ -161,7 +161,6 @@ id: AloeCream components: - type: Sprite - netsync: false sprite: Objects/Specific/Hydroponics/aloe.rsi state: cream - type: Stack diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/healthanalyzer.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/healthanalyzer.yml index 2e4d44ee03..c638fe89bd 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/healthanalyzer.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/healthanalyzer.yml @@ -8,7 +8,6 @@ components: - type: Sprite sprite: Objects/Specific/Medical/healthanalyzer.rsi - netsync: false state: icon layers: - state: icon diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/medkits.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/medkits.yml index 30c1527157..d3f7ee81f0 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/medkits.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/medkits.yml @@ -6,7 +6,6 @@ components: - type: Sprite sprite: Objects/Specific/Medical/firstaidkits.rsi - netsync: false state: firstaid - type: Storage capacity: 35 diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/morgue.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/morgue.yml index 01f1306a9d..d8e2a8edfa 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/morgue.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/morgue.yml @@ -7,7 +7,6 @@ - type: Item size: 6 - type: Sprite - netsync: false drawdepth: SmallObjects # I guess body bags need appear above a coroner's table? sprite: Objects/Specific/Medical/Morgue/bodybags.rsi layers: @@ -104,7 +103,6 @@ description: This used to be something, but now it's not. components: - type: Sprite - netsync: false sprite: Objects/Materials/materials.rsi state: ash - type: Tag @@ -131,7 +129,6 @@ description: Much less deadly in this form. components: - type: Sprite - netsync: false sprite: Mobs/Ghosts/revenant.rsi state: ectoplasm - type: Tag diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/randompill.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/randompill.yml index 6d57716a86..14bc13343b 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/randompill.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/randompill.yml @@ -50,7 +50,6 @@ quantity: 20 - type: Sprite sprite: Objects/Specific/Chemistry/pills.rsi - netsync: false layers: - state: pill1 map: [ "enum.DamageStateVisualLayers.Base" ] diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/surgery.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/surgery.yml index e456541ff4..354cee2f99 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/surgery.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/surgery.yml @@ -6,7 +6,6 @@ abstract: true components: - type: Sprite - netsync: false - type: StaticPrice price: 60 diff --git a/Resources/Prototypes/Entities/Objects/Specific/Research/anomaly.yml b/Resources/Prototypes/Entities/Objects/Specific/Research/anomaly.yml index 32d8caa07e..ec270e6edf 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Research/anomaly.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Research/anomaly.yml @@ -6,7 +6,6 @@ components: - type: Sprite sprite: Objects/Specific/Research/anomalyscanner.rsi - netsync: false state: icon - type: ActivatableUI key: enum.AnomalyScannerUiKey.Key @@ -29,7 +28,6 @@ components: - type: Sprite sprite: Objects/Specific/Research/anomalylocator.rsi - netsync: false layers: - state: icon - state: screen @@ -62,4 +60,4 @@ - type: ItemSlots slots: cell_slot: - name: power-cell-slot-component-slot-name-default \ No newline at end of file + name: power-cell-slot-component-slot-name-default diff --git a/Resources/Prototypes/Entities/Objects/Specific/Salvage/ore_bag.yml b/Resources/Prototypes/Entities/Objects/Specific/Salvage/ore_bag.yml index 34d332746a..a2afb788e3 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Salvage/ore_bag.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Salvage/ore_bag.yml @@ -5,7 +5,6 @@ description: A robust bag for salvage specialists and miners alike to carry large amounts of ore. components: - type: Sprite - netsync: false sprite: Objects/Specific/Mining/ore_bag.rsi state: icon - type: Clothing diff --git a/Resources/Prototypes/Entities/Objects/Specific/Security/barrier.yml b/Resources/Prototypes/Entities/Objects/Specific/Security/barrier.yml index a76cae6af6..049a7bb94a 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Security/barrier.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Security/barrier.yml @@ -8,7 +8,6 @@ noRot: true - type: Sprite sprite: Objects/Specific/Security/barrier.rsi - netsync: false layers: - state: "idle" map: ["deployableBarrierBase"] diff --git a/Resources/Prototypes/Entities/Objects/Specific/Security/target.yml b/Resources/Prototypes/Entities/Objects/Specific/Security/target.yml index 4f56c63644..0bbebe3ded 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Security/target.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Security/target.yml @@ -7,7 +7,6 @@ sprite: Objects/Specific/Security/target.rsi state: target_stake noRot: true - netsync: false - type: Repairable - type: DamagePopup damagePopupType: Combined diff --git a/Resources/Prototypes/Entities/Objects/Specific/Service/vending_machine_restock.yml b/Resources/Prototypes/Entities/Objects/Specific/Service/vending_machine_restock.yml index 74168fc8f0..e0cc828810 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Service/vending_machine_restock.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Service/vending_machine_restock.yml @@ -7,7 +7,6 @@ components: - type: VendingMachineRestock - type: Sprite - netsync: false sprite: Objects/Specific/Service/vending_machine_restock.rsi layers: - state: base diff --git a/Resources/Prototypes/Entities/Objects/Specific/atmos.yml b/Resources/Prototypes/Entities/Objects/Specific/atmos.yml index 1bb1ae59ca..ff946aefe9 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/atmos.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/atmos.yml @@ -9,7 +9,6 @@ layers: - state: icon map: ["analyzer"] - netsync: false - type: GasAnalyzer - type: ActivatableUI inHandsOnly: true diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemical-containers.yml b/Resources/Prototypes/Entities/Objects/Specific/chemical-containers.yml index 5ff20524a2..a9e98201a6 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemical-containers.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemical-containers.yml @@ -11,7 +11,6 @@ canMix: true - type: Sprite sprite: Objects/Specific/Chemistry/jug.rsi - netsync: false layers: - state: jug - state: jug1 diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml index df68b7ec16..88fcfbce66 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml @@ -8,7 +8,6 @@ - GlassBeaker - type: Sprite sprite: Objects/Specific/Chemistry/beaker.rsi - netsync: false layers: - state: beaker - state: beaker1 @@ -190,7 +189,6 @@ components: - type: Sprite sprite: Objects/Specific/Chemistry/dropper.rsi - netsync: false layers: - state: dropper - state: dropper1 @@ -233,7 +231,6 @@ components: - type: Sprite sprite: Objects/Specific/Chemistry/syringe.rsi - netsync: false layers: - state: syringe1 map: ["enum.SolutionContainerLayers.Fill"] diff --git a/Resources/Prototypes/Entities/Objects/Specific/syndicate.yml b/Resources/Prototypes/Entities/Objects/Specific/syndicate.yml index b477f40a4a..3ecfeced61 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/syndicate.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/syndicate.yml @@ -7,7 +7,6 @@ components: - type: Sprite sprite: Objects/Specific/Syndicate/telecrystal.rsi - netsync: false state: telecrystal - type: Item sprite: Objects/Specific/Syndicate/telecrystal.rsi @@ -58,7 +57,6 @@ sprite: Objects/Devices/communication.rsi layers: - state: old-radio - netsync: false - type: Item sprite: Objects/Devices/communication.rsi heldPrefix: old-radio diff --git a/Resources/Prototypes/Entities/Objects/Tools/airlock_painter.yml b/Resources/Prototypes/Entities/Objects/Tools/airlock_painter.yml index 2f540ac934..8e387db340 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/airlock_painter.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/airlock_painter.yml @@ -7,7 +7,6 @@ - type: Sprite sprite: Objects/Tools/airlock_painter.rsi state: airlock_painter - netsync: false - type: Item sprite: Objects/Tools/airlock_painter.rsi - type: UserInterface diff --git a/Resources/Prototypes/Entities/Objects/Tools/appraisal.yml b/Resources/Prototypes/Entities/Objects/Tools/appraisal.yml index d864e59d18..e1f93b019b 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/appraisal.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/appraisal.yml @@ -7,7 +7,6 @@ - type: Sprite sprite: Objects/Tools/appraisal-tool.rsi state: icon - netsync: false - type: Item sprite: Objects/Tools/appraisal-tool.rsi - type: PriceGun @@ -20,4 +19,4 @@ - Belt - type: Tag tags: - - AppraisalTool \ No newline at end of file + - AppraisalTool diff --git a/Resources/Prototypes/Entities/Objects/Tools/bucket.yml b/Resources/Prototypes/Entities/Objects/Tools/bucket.yml index 532e838817..242c59172c 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/bucket.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/bucket.yml @@ -9,7 +9,6 @@ solution: bucket - type: Clickable - type: Sprite - netsync: false sprite: Objects/Tools/bucket.rsi layers: - state: icon diff --git a/Resources/Prototypes/Entities/Objects/Tools/emag.yml b/Resources/Prototypes/Entities/Objects/Tools/emag.yml index dcc0d0a288..8ebf56d68e 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/emag.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/emag.yml @@ -8,7 +8,6 @@ - type: LimitedCharges - type: AutoRecharge - type: Sprite - netsync: false sprite: Objects/Tools/emag.rsi state: icon @@ -21,6 +20,5 @@ components: - type: Emag - type: Sprite - netsync: false sprite: Objects/Tools/emag.rsi state: icon diff --git a/Resources/Prototypes/Entities/Objects/Tools/flashlights.yml b/Resources/Prototypes/Entities/Objects/Tools/flashlights.yml index c5a60243fa..653a3ab975 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/flashlights.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/flashlights.yml @@ -54,7 +54,6 @@ startingItem: PowerCellMedium - type: Sprite sprite: Objects/Tools/flashlight.rsi - netsync: false layers: - state: flashlight - state: flashlight-overlay diff --git a/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml b/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml index b32c72f83e..84e25a3355 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml @@ -126,7 +126,6 @@ components: - type: Sprite sprite: Objects/Tanks/emergency_yellow.rsi - netsync: false - type: GasTank outputPressure: 21.27825 air: diff --git a/Resources/Prototypes/Entities/Objects/Tools/gps.yml b/Resources/Prototypes/Entities/Objects/Tools/gps.yml index 8d81ee9e9f..973b2fe9c8 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/gps.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/gps.yml @@ -6,7 +6,6 @@ components: - type: Sprite sprite: Objects/Devices/gps.rsi - netsync: false layers: - state: icon - state: active diff --git a/Resources/Prototypes/Entities/Objects/Tools/hand_labeler.yml b/Resources/Prototypes/Entities/Objects/Tools/hand_labeler.yml index 037a44295e..3b16f6938a 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/hand_labeler.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/hand_labeler.yml @@ -7,7 +7,6 @@ - type: Sprite sprite: Objects/Tools/hand_labeler.rsi state: hand_labeler - netsync: false - type: Item sprite: Objects/Tools/hand_labeler.rsi - type: UseDelay diff --git a/Resources/Prototypes/Entities/Objects/Tools/inflatable_wall.yml b/Resources/Prototypes/Entities/Objects/Tools/inflatable_wall.yml index ef32ab913c..6944136109 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/inflatable_wall.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/inflatable_wall.yml @@ -11,7 +11,6 @@ - type: Sprite sprite: Objects/Misc/inflatable_wall.rsi state: item_wall - netsync: false - type: Item sprite: Objects/Misc/inflatable_wall.rsi size: 5 @@ -38,7 +37,6 @@ - type: Sprite sprite: Objects/Misc/inflatable_door.rsi state: item_door - netsync: false - type: Item sprite: Objects/Misc/inflatable_door.rsi size: 5 diff --git a/Resources/Prototypes/Entities/Objects/Tools/jammer.yml b/Resources/Prototypes/Entities/Objects/Tools/jammer.yml index 00214917cb..e0a68156e0 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/jammer.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/jammer.yml @@ -5,7 +5,6 @@ description: This device will disrupt any nearby outgoing radio communication when activated. components: - type: Sprite - netsync: false sprite: Objects/Devices/jammer.rsi state: jammer - type: RadioJammer diff --git a/Resources/Prototypes/Entities/Objects/Tools/jaws_of_life.yml b/Resources/Prototypes/Entities/Objects/Tools/jaws_of_life.yml index 7991f8eb9e..a7f74a542f 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/jaws_of_life.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/jaws_of_life.yml @@ -10,7 +10,6 @@ - type: Sprite sprite: Objects/Tools/jaws_of_life.rsi state: jaws_pry - netsync: false - type: Item size: 50 - type: Clothing diff --git a/Resources/Prototypes/Entities/Objects/Tools/jetpacks.yml b/Resources/Prototypes/Entities/Objects/Tools/jetpacks.yml index cd8da06a32..c7291c2513 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/jetpacks.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/jetpacks.yml @@ -5,7 +5,6 @@ - type: TimedDespawn lifetime: 2 - type: Sprite - netsync: false drawdepth: SmallMobs noRot: true layers: @@ -35,7 +34,6 @@ - type: Sprite sprite: Objects/Tanks/Jetpacks/blue.rsi state: icon - netsync: false - type: Item sprite: Objects/Tanks/Jetpacks/blue.rsi size: 100 diff --git a/Resources/Prototypes/Entities/Objects/Tools/lighters.yml b/Resources/Prototypes/Entities/Objects/Tools/lighters.yml index ff27ed0218..7fec16a8c3 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/lighters.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/lighters.yml @@ -31,7 +31,6 @@ basic_icon_base-11: "" - type: Sprite sprite: Objects/Tools/lighters.rsi - netsync: false layers: - state: icon_map map: ["enum.WelderLayers.Base"] diff --git a/Resources/Prototypes/Entities/Objects/Tools/matches.yml b/Resources/Prototypes/Entities/Objects/Tools/matches.yml index cc2ef078a5..fd7e185cb0 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/matches.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/matches.yml @@ -20,7 +20,6 @@ - Trash - type: SpaceGarbage - type: Sprite - netsync: false sprite: Objects/Tools/matches.rsi layers: - state: match_unlit @@ -64,7 +63,6 @@ path: /Audio/Items/matchbox_drop.ogg - type: Matchbox - type: Sprite - netsync: false sprite: Objects/Tools/matches.rsi layers: - state: matchbox diff --git a/Resources/Prototypes/Entities/Objects/Tools/t-ray.yml b/Resources/Prototypes/Entities/Objects/Tools/t-ray.yml index 189f653033..57e832200c 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/t-ray.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/t-ray.yml @@ -5,7 +5,6 @@ components: - type: Sprite sprite: Objects/Tools/t-ray.rsi - netsync: false layers: - state: tray-off map: ["base"] diff --git a/Resources/Prototypes/Entities/Objects/Tools/toolbox.yml b/Resources/Prototypes/Entities/Objects/Tools/toolbox.yml index 0996bbf4e9..884afd19d3 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/toolbox.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/toolbox.yml @@ -4,7 +4,6 @@ abstract: true components: - type: Sprite - netsync: false - type: EmitSoundOnLand sound: path: /Audio/Items/toolbox_drop.ogg diff --git a/Resources/Prototypes/Entities/Objects/Tools/tools.yml b/Resources/Prototypes/Entities/Objects/Tools/tools.yml index 00dae38cc2..f2d68a1f84 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/tools.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/tools.yml @@ -13,7 +13,6 @@ - Wirecutter - type: Sprite sprite: Objects/Tools/wirecutters.rsi - netsync: false layers: - state: cutters map: [ "enum.DamageStateVisualLayers.Base" ] @@ -58,7 +57,6 @@ - Screwdriver - type: Sprite sprite: Objects/Tools/screwdriver.rsi - netsync: false layers: - state: screwdriver map: [ "enum.DamageStateVisualLayers.Base" ] @@ -103,7 +101,6 @@ - type: Sprite sprite: Objects/Tools/wrench.rsi state: icon - netsync: false - type: Item sprite: Objects/Tools/wrench.rsi - type: ItemCooldown @@ -138,7 +135,6 @@ - type: Sprite sprite: Objects/Tools/crowbar.rsi state: icon - netsync: false - type: Item sprite: Objects/Tools/crowbar.rsi size: 10 diff --git a/Resources/Prototypes/Entities/Objects/Tools/welders.yml b/Resources/Prototypes/Entities/Objects/Tools/welders.yml index 2c512ddf05..f9519e4825 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/welders.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/welders.yml @@ -9,7 +9,6 @@ path: /Audio/Items/welder_drop.ogg - type: Sprite sprite: Objects/Tools/welder.rsi - netsync: false layers: - state: icon map: ["enum.WelderLayers.Base"] diff --git a/Resources/Prototypes/Entities/Objects/Vehicles/buckleable.yml b/Resources/Prototypes/Entities/Objects/Vehicles/buckleable.yml index a2b9f067b0..4b5a654189 100644 --- a/Resources/Prototypes/Entities/Objects/Vehicles/buckleable.yml +++ b/Resources/Prototypes/Entities/Objects/Vehicles/buckleable.yml @@ -97,7 +97,6 @@ layers: - state: vehicle map: ["enum.VehicleVisualLayers.AutoAnimate"] - netsync: false noRot: true - type: UnpoweredFlashlight toggleAction: @@ -170,7 +169,6 @@ - type: Sprite sprite: Objects/Vehicles/janicart.rsi state: destroyed - netsync: false - type: entity id: VehicleSecway @@ -191,7 +189,6 @@ layers: - state: vehicle map: ["enum.VehicleVisualLayers.AutoAnimate"] - netsync: false noRot: true - type: Strap buckleOffset: "0.15, -0.05" @@ -237,7 +234,6 @@ layers: - state: vehicle map: ["enum.VehicleVisualLayers.AutoAnimate"] - netsync: false noRot: true - type: RandomMetadata descriptionSegments: [ATVDescriptions] @@ -295,7 +291,6 @@ layers: - state: vehicle map: ["enum.VehicleVisualLayers.AutoAnimate"] - netsync: false noRot: true - type: Strap buckleOffset: "0.15, -0.05" @@ -336,7 +331,6 @@ layers: - state: vehicle map: ["enum.VehicleVisualLayers.AutoAnimate"] - netsync: false noRot: true - type: Strap buckleOffset: "0.1, -0.05" @@ -396,7 +390,6 @@ - state: vehicle_folded map: ["foldedLayer"] visible: false - netsync: false noRot: true - type: Strap buckleOffset: "0.1, -0.05" diff --git a/Resources/Prototypes/Entities/Objects/Vehicles/keys.yml b/Resources/Prototypes/Entities/Objects/Vehicles/keys.yml index 8144d512f7..f361c2b877 100644 --- a/Resources/Prototypes/Entities/Objects/Vehicles/keys.yml +++ b/Resources/Prototypes/Entities/Objects/Vehicles/keys.yml @@ -13,7 +13,6 @@ - type: Sprite sprite: Objects/Vehicles/janicart.rsi state: keys - netsync: false - type: entity parent: VehicleKeyJanicart @@ -28,7 +27,6 @@ - type: Sprite sprite: Objects/Vehicles/secway.rsi state: keys - netsync: false - type: entity parent: VehicleKeyJanicart @@ -43,7 +41,6 @@ - type: Sprite sprite: Objects/Vehicles/atv.rsi state: keys - netsync: false - type: entity parent: VehicleKeyATV @@ -73,7 +70,6 @@ - type: Sprite sprite: Objects/Vehicles/syndicatesegway.rsi state: keys - netsync: false - type: entity parent: VehicleKeyATV @@ -88,4 +84,3 @@ - type: Sprite sprite: Objects/Vehicles/motorbike.rsi state: keys - netsync: false diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Bombs/funny.yml b/Resources/Prototypes/Entities/Objects/Weapons/Bombs/funny.yml index 27cea3bdb7..e6f35892ba 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Bombs/funny.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Bombs/funny.yml @@ -7,7 +7,6 @@ - type: Sprite sprite: Objects/Weapons/Bombs/hot_potato.rsi state: icon - netsync: false layers: - state: icon map: ["base"] @@ -57,7 +56,6 @@ - type: TimedDespawn lifetime: 0.6 - type: Sprite - netsync: false noRot: true drawdepth: Effects sprite: Effects/chemsmoke.rsi diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Bombs/pen.yml b/Resources/Prototypes/Entities/Objects/Weapons/Bombs/pen.yml index e7ff65613f..7d08fe7b8f 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Bombs/pen.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Bombs/pen.yml @@ -26,7 +26,6 @@ - type: Sprite sprite: Objects/Storage/penbox.rsi state: exploding_pen - netsync: false - type: SpawnItemsOnUse items: - id: PenExploding diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/antimateriel.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/antimateriel.yml index c8a3994658..aa07a756d8 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/antimateriel.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/antimateriel.yml @@ -8,7 +8,6 @@ capacity: 30 proto: CartridgeAntiMateriel - type: Sprite - netsync: false sprite: Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi layers: - state: base diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.yml index 4fff28544c..6e73310a85 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.yml @@ -18,7 +18,6 @@ ballistic-ammo: !type:Container - type: Sprite sprite: Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi - netsync: false - type: MagazineVisuals magState: mag steps: 2 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.yml index ee2376172c..5ac13ad067 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.yml @@ -18,7 +18,6 @@ ballistic-ammo: !type:Container - type: Sprite sprite: Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi - netsync: false - type: MagazineVisuals magState: mag steps: 2 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/magnum.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/magnum.yml index 5581c7aba0..44327b1878 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/magnum.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/magnum.yml @@ -17,7 +17,6 @@ ballistic-ammo: !type:Container - type: Sprite sprite: Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi - netsync: false - type: MagazineVisuals magState: mag steps: 2 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/pistol.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/pistol.yml index bcba37d0c7..50491c9e43 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/pistol.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/pistol.yml @@ -18,7 +18,6 @@ ballistic-ammo: !type:Container - type: Sprite sprite: Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi - netsync: false - type: MagazineVisuals magState: mag steps: 2 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/rifle.yml index 52c0abe583..09a22bbafe 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/rifle.yml @@ -17,7 +17,6 @@ ballistic-ammo: !type:Container - type: Sprite sprite: Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi - netsync: false - type: MagazineVisuals magState: mag steps: 2 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/toy.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/toy.yml index 52b9070ab7..11649f3db3 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/toy.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/toy.yml @@ -8,7 +8,6 @@ mayTransfer: true capacity: 30 - type: Sprite - netsync: false - type: ContainerContainer containers: ballistic-ammo: !type:Container diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/base_cartridge.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/base_cartridge.yml index 504633fb84..f0c84aef1a 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/base_cartridge.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/base_cartridge.yml @@ -5,7 +5,6 @@ components: - type: Sprite drawdepth: Items - netsync: false - type: Fixtures fixtures: fix1: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/caseless_rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/caseless_rifle.yml index 6200c50499..87df215fe3 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/caseless_rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/caseless_rifle.yml @@ -11,7 +11,6 @@ - type: CartridgeAmmo deleteOnSpawn: true - type: Sprite - netsync: false noRot: false sprite: Objects/Weapons/Guns/Ammunition/Casings/ammo_casing.rsi layers: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/heavy_rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/heavy_rifle.yml index c3b3ced849..a63351b6f9 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/heavy_rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/heavy_rifle.yml @@ -11,7 +11,6 @@ - type: CartridgeAmmo proto: BulletHeavyRifle - type: Sprite - netsync: false sprite: Objects/Weapons/Guns/Ammunition/Casings/ammo_casing.rsi layers: - state: base diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/light_rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/light_rifle.yml index 5ffb67b65b..3d38920eb3 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/light_rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/light_rifle.yml @@ -11,7 +11,6 @@ - type: CartridgeAmmo proto: BulletLightRifle - type: Sprite - netsync: false sprite: Objects/Weapons/Guns/Ammunition/Casings/ammo_casing.rsi layers: - state: base diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/magnum.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/magnum.yml index 443b8cc5f9..dc500cffc5 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/magnum.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/magnum.yml @@ -11,7 +11,6 @@ - type: CartridgeAmmo proto: BulletMagnum - type: Sprite - netsync: false sprite: Objects/Weapons/Guns/Ammunition/Casings/ammo_casing.rsi layers: - state: base @@ -60,7 +59,6 @@ abstract: true components: - type: Sprite - netsync: false sprite: Objects/Weapons/Guns/Ammunition/Casings/anomalous_casing.rsi layers: - state: base diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/pistol.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/pistol.yml index 1a11d21dfc..eff0c4f5cf 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/pistol.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/pistol.yml @@ -11,7 +11,6 @@ - type: CartridgeAmmo proto: BulletPistol - type: Sprite - netsync: false sprite: Objects/Weapons/Guns/Ammunition/Casings/ammo_casing.rsi layers: - state: base diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/rifle.yml index 8da032ebb3..c9949e6d8a 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/rifle.yml @@ -11,7 +11,6 @@ - type: CartridgeAmmo proto: BulletRifle - type: Sprite - netsync: false sprite: Objects/Weapons/Guns/Ammunition/Casings/ammo_casing.rsi layers: - state: base diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/shotgun.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/shotgun.yml index fce6c407ba..297d9e9df7 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/shotgun.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/shotgun.yml @@ -14,7 +14,6 @@ soundEject: collection: ShellEject - type: Sprite - netsync: false sprite: Objects/Weapons/Guns/Ammunition/Casings/shotgun_shell.rsi layers: - state: base diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/toy.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/toy.yml index b05202a170..0ac5d95e1a 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/toy.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/toy.yml @@ -10,7 +10,6 @@ - CartridgeCap - type: CartridgeAmmo - type: Sprite - netsync: false sprite: Objects/Weapons/Guns/Ammunition/Casings/ammo_casing.rsi layers: - state: base diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/caseless_rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/caseless_rifle.yml index ad92333983..c746534674 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/caseless_rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/caseless_rifle.yml @@ -20,7 +20,6 @@ containers: ballistic-ammo: !type:Container - type: Sprite - netsync: false sprite: Objects/Weapons/Guns/Ammunition/Magazine/CaselessRifle/caseless_rifle_mag.rsi layers: - state: base diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/heavy_rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/heavy_rifle.yml index f9ef981bf0..239533c940 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/heavy_rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/heavy_rifle.yml @@ -16,7 +16,6 @@ containers: ballistic-ammo: !type:Container - type: Sprite - netsync: false layers: - state: base map: ["enum.GunVisualLayers.Base"] diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/light_rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/light_rifle.yml index a200c6bfc3..f09d3e3bb6 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/light_rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/light_rifle.yml @@ -21,7 +21,6 @@ containers: ballistic-ammo: !type:Container - type: Sprite - netsync: false sprite: Objects/Weapons/Guns/Ammunition/Magazine/LightRifle/light_rifle_mag.rsi layers: - state: base diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/magnum.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/magnum.yml index 8266613ab3..ab439303c9 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/magnum.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/magnum.yml @@ -19,7 +19,6 @@ containers: ballistic-ammo: !type:Container - type: Sprite - netsync: false sprite: Objects/Weapons/Guns/Ammunition/Magazine/Magnum/magnum_smg_mag.rsi layers: - state: base diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/pistol.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/pistol.yml index a453b3f52c..21b04d9b10 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/pistol.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/pistol.yml @@ -19,7 +19,6 @@ containers: ballistic-ammo: !type:Container - type: Sprite - netsync: false sprite: Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_mag.rsi layers: - state: base @@ -53,7 +52,6 @@ containers: ballistic-ammo: !type:Container - type: Sprite - netsync: false sprite: Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_high_capacity_mag.rsi layers: - state: base @@ -87,7 +85,6 @@ containers: ballistic-ammo: !type:Container - type: Sprite - netsync: false sprite: Objects/Weapons/Guns/Ammunition/Magazine/Pistol/smg_mag.rsi layers: - state: base @@ -116,7 +113,6 @@ - CartridgePistol - type: Sprite sprite: Objects/Weapons/Guns/Ammunition/Magazine/Pistol/smg_mag_top_mounted.rsi - netsync: false layers: - state: base map: ["enum.GunVisualLayers.Base"] diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/rifle.yml index f476a6db55..d2b0ea32ea 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/rifle.yml @@ -20,7 +20,6 @@ containers: ballistic-ammo: !type:Container - type: Sprite - netsync: false sprite: Objects/Weapons/Guns/Ammunition/Magazine/Rifle/rifle_mag.rsi layers: - state: base diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/shotgun.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/shotgun.yml index 62d206acc5..b78825f3e1 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/shotgun.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/shotgun.yml @@ -21,7 +21,6 @@ containers: ballistic-ammo: !type:Container - type: Sprite - netsync: false sprite: Objects/Weapons/Guns/Ammunition/Magazine/Shotgun/m12.rsi layers: - state: base diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/SpeedLoaders/magnum.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/SpeedLoaders/magnum.yml index 6cbdf1b007..7b391f0516 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/SpeedLoaders/magnum.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/SpeedLoaders/magnum.yml @@ -14,7 +14,6 @@ - CartridgeMagnum capacity: 6 - type: Sprite - netsync: false - type: ContainerContainer containers: ballistic-ammo: !type:Container diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/SpeedLoaders/pistol.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/SpeedLoaders/pistol.yml index 0ae43ab606..ef869fe4be 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/SpeedLoaders/pistol.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/SpeedLoaders/pistol.yml @@ -14,7 +14,6 @@ - CartridgePistol capacity: 6 - type: Sprite - netsync: false sprite: Objects/Weapons/Guns/Ammunition/SpeedLoaders/Pistol/pistol_speed_loader.rsi - type: ContainerContainer containers: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/SpeedLoaders/rifle_light.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/SpeedLoaders/rifle_light.yml index a41bfab34c..f527440600 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/SpeedLoaders/rifle_light.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/SpeedLoaders/rifle_light.yml @@ -15,7 +15,6 @@ capacity: 5 proto: CartridgeLightRifle - type: Sprite - netsync: false sprite: Objects/Weapons/Guns/Ammunition/SpeedLoaders/LightRifle/light_rifle_speed_loader.rsi layers: - state: base diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/SpeedLoaders/toy.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/SpeedLoaders/toy.yml index 64fdeb9da3..51c1037194 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/SpeedLoaders/toy.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/SpeedLoaders/toy.yml @@ -14,7 +14,6 @@ - CartridgeCap capacity: 6 - type: Sprite - netsync: false layers: - state: base map: ["enum.GunVisualLayers.Base"] diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/explosives.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/explosives.yml index 7e6537f9b2..56d420cb33 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/explosives.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/explosives.yml @@ -15,7 +15,6 @@ proto: BulletRocket deleteOnSpawn: true - type: Sprite - netsync: false sprite: Objects/Weapons/Guns/Ammunition/Explosives/explosives.rsi state: rpg - type: StaticPrice @@ -55,7 +54,6 @@ - type: Item size: 5 - type: Sprite - netsync: false - type: entity id: GrenadeBaton @@ -135,6 +133,5 @@ proto: BulletCannonBall deleteOnSpawn: true - type: Sprite - netsync: false sprite: Objects/Weapons/Guns/Ammunition/Explosives/explosives.rsi state: ball diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml index ba1e9cfa46..f995b90a13 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml @@ -4,7 +4,6 @@ abstract: true components: - type: Sprite - netsync: false - type: Item size: 50 - type: Clothing diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/HMGs/hmgs.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/HMGs/hmgs.yml index 54600ef806..00e5c3767f 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/HMGs/hmgs.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/HMGs/hmgs.yml @@ -6,7 +6,6 @@ abstract: true components: - type: Sprite - netsync: false - type: Item - type: Gun fireRate: 20 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/LMGs/lmgs.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/LMGs/lmgs.yml index 646c645f98..f83e6420ed 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/LMGs/lmgs.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/LMGs/lmgs.yml @@ -6,7 +6,6 @@ abstract: true components: - type: Sprite - netsync: false - type: Item size: 60 - type: Clothing diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml index cbf7176bd8..ea102509fe 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml @@ -6,7 +6,6 @@ abstract: true components: - type: Sprite - netsync: false - type: Clothing sprite: Objects/Weapons/Guns/Launchers/china_lake.rsi quickEquip: false diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml index e041410eb7..2951a80073 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml @@ -6,7 +6,6 @@ abstract: true components: - type: Sprite - netsync: false layers: - state: base map: ["enum.GunVisualLayers.Base"] diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/hitscan.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/hitscan.yml index c3349e2648..ce58d69e4b 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/hitscan.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/hitscan.yml @@ -4,7 +4,6 @@ noSpawn: true components: - type: Sprite - netsync: false drawdepth: Effects layers: - shader: unshaded diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/impacts.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/impacts.yml index 394458cba1..f8678a2f22 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/impacts.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/impacts.yml @@ -5,7 +5,6 @@ - type: TimedDespawn lifetime: 0.25 - type: Sprite - netsync: false drawdepth: Effects layers: - shader: unshaded @@ -24,7 +23,6 @@ - type: TimedDespawn lifetime: 0.2 - type: Sprite - netsync: false drawdepth: Effects layers: - shader: unshaded @@ -43,7 +41,6 @@ - type: TimedDespawn lifetime: 0.2 - type: Sprite - netsync: false drawdepth: Effects layers: - shader: unshaded diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/meteors.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/meteors.yml index 8e354f53fe..6bdac1e85f 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/meteors.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/meteors.yml @@ -5,7 +5,6 @@ components: - type: Sprite noRot: false - netsync: false sprite: Objects/Weapons/Guns/Projectiles/meteor.rsi scale: 4,4 layers: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml index 705da6a081..63613492ac 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml @@ -5,7 +5,6 @@ - type: TimedDespawn lifetime: 0.4 - type: Sprite - netsync: false drawdepth: Effects layers: - shader: unshaded @@ -29,7 +28,6 @@ - type: FlyBySound - type: Clickable - type: Sprite - netsync: false noRot: false sprite: Objects/Weapons/Guns/Projectiles/projectiles2.rsi layers: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml index 7f8f69e1d7..e240d1ac65 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml @@ -6,7 +6,6 @@ abstract: true components: - type: Sprite - netsync: false state: icon - type: Item size: 10 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml index 04e00066c1..c35c49da95 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml @@ -6,7 +6,6 @@ abstract: true components: - type: Sprite - netsync: false - type: Item size: 50 - type: Clothing diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml index 486d77825d..7d572d49e6 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml @@ -6,7 +6,6 @@ abstract: true components: - type: Sprite - netsync: false - type: Item size: 30 - type: Clothing diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml index a798fa4325..a9124c49ae 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml @@ -6,7 +6,6 @@ abstract: true components: - type: Sprite - netsync: false layers: - state: icon map: [ "enum.GunVisualLayers.Base" ] @@ -54,7 +53,6 @@ components: - type: Sprite sprite: Objects/Weapons/Guns/Shotguns/bulldog.rsi - netsync: false layers: - state: base map: ["enum.GunVisualLayers.Base"] diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml index 9f911c0e06..39bbd8878e 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml @@ -6,7 +6,6 @@ abstract: true components: - type: Sprite - netsync: false layers: - state: base map: ["enum.GunVisualLayers.Base"] diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/pneumatic_cannon.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/pneumatic_cannon.yml index d689776d32..46138ae233 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/pneumatic_cannon.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/pneumatic_cannon.yml @@ -6,7 +6,6 @@ components: - type: Sprite sprite: Objects/Weapons/Guns/Cannons/pneumatic_cannon.rsi - netsync: false layers: - state: icon - state: tank diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/turrets.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/turrets.yml index b00177d481..cf162fa4fd 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/turrets.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/turrets.yml @@ -7,7 +7,6 @@ - type: Clickable - type: InteractionOutline - type: Sprite - netsync: false sprite: Objects/Weapons/Guns/Turrets/turrets.rsi drawdepth: WallMountedItems layers: @@ -37,7 +36,6 @@ containers: ballistic-ammo: !type:Container - type: Sprite - netsync: false sprite: Objects/Weapons/Guns/Turrets/turrets.rsi drawdepth: WallMountedItems layers: @@ -133,7 +131,6 @@ factions: - Xeno - type: Sprite - netsync: false sprite: Objects/Weapons/Guns/Turrets/xenoturret.rsi noRot: true layers: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml index f2e30dc7ee..b1d0566978 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml @@ -129,7 +129,6 @@ - type: Sprite sprite: Objects/Storage/penbox.rsi state: e_dagger - netsync: false - type: SpawnItemsOnUse items: - id: EnergyDagger diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/knife.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/knife.yml index 2da4f1cd9f..077cac7f1c 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/knife.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/knife.yml @@ -18,7 +18,6 @@ soundHit: path: /Audio/Weapons/bladeslice.ogg - type: Sprite - netsync: false - type: Item - type: Tool qualities: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml index f0bda9a491..8936f786b2 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml @@ -10,7 +10,6 @@ - type: Sharp - type: Sprite sprite: Objects/Weapons/Melee/spear.rsi - netsync: false state: spear - type: MeleeWeapon damage: @@ -90,7 +89,6 @@ - type: Sharp - type: Sprite sprite: Objects/Weapons/Melee/reinforced_spear.rsi - netsync: false state: spear - type: MeleeWeapon damage: @@ -170,7 +168,6 @@ - type: Sharp - type: Sprite sprite: Objects/Weapons/Melee/plasma_spear.rsi - netsync: false state: spear - type: MeleeWeapon damage: @@ -250,7 +247,6 @@ - type: Sharp - type: Sprite sprite: Objects/Weapons/Melee/uranium_spear.rsi - netsync: false state: spear - type: MeleeWeapon damage: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/clusterbang.yml b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/clusterbang.yml index 794ab0a4b2..f7d0a0e5df 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/clusterbang.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/clusterbang.yml @@ -6,7 +6,6 @@ components: - type: Sprite sprite: Objects/Weapons/Grenades/clusterbang.rsi - netsync: false state: base-0 - type: Appearance - type: ClusterGrenadeVisuals diff --git a/Resources/Prototypes/Entities/Objects/Weapons/security.yml b/Resources/Prototypes/Entities/Objects/Weapons/security.yml index 201a16aa39..cce3002e14 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/security.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/security.yml @@ -6,7 +6,6 @@ components: - type: Sprite sprite: Objects/Weapons/Melee/stunbaton.rsi - netsync: false layers: - state: stunbaton_off map: [ "enum.ToggleVisuals.Layer" ] @@ -106,7 +105,6 @@ radius: 2 - type: Anchorable - type: Sprite - netsync: false sprite: Objects/Weapons/pflash.rsi layers: - state: "off" diff --git a/Resources/Prototypes/Entities/Structures/Decoration/banners.yml b/Resources/Prototypes/Entities/Structures/Decoration/banners.yml index 9a321f93ef..8ee7ccbf6d 100644 --- a/Resources/Prototypes/Entities/Structures/Decoration/banners.yml +++ b/Resources/Prototypes/Entities/Structures/Decoration/banners.yml @@ -8,7 +8,6 @@ - type: Sprite sprite: Structures/Decoration/banner.rsi state: banner - netsync: false noRot: true - type: Transform noRot: true diff --git a/Resources/Prototypes/Entities/Structures/Decoration/bonfire.yml b/Resources/Prototypes/Entities/Structures/Decoration/bonfire.yml index 7d3bef8e50..0fb3614393 100644 --- a/Resources/Prototypes/Entities/Structures/Decoration/bonfire.yml +++ b/Resources/Prototypes/Entities/Structures/Decoration/bonfire.yml @@ -5,7 +5,6 @@ description: What can be better then late evening under the sky with guitar and friends. components: - type: Sprite - netsync: false sprite: Structures/Decoration/bonfire.rsi state: burning - type: PointLight diff --git a/Resources/Prototypes/Entities/Structures/Decoration/curtains.yml b/Resources/Prototypes/Entities/Structures/Decoration/curtains.yml index d47c895597..ed35fb0110 100644 --- a/Resources/Prototypes/Entities/Structures/Decoration/curtains.yml +++ b/Resources/Prototypes/Entities/Structures/Decoration/curtains.yml @@ -6,7 +6,6 @@ components: - type: Occluder - type: Sprite - netsync: false snapCardinals: true sprite: Structures/Decoration/curtains.rsi layers: diff --git a/Resources/Prototypes/Entities/Structures/Decoration/fireplace.yml b/Resources/Prototypes/Entities/Structures/Decoration/fireplace.yml index fb5996efa0..918f857f62 100644 --- a/Resources/Prototypes/Entities/Structures/Decoration/fireplace.yml +++ b/Resources/Prototypes/Entities/Structures/Decoration/fireplace.yml @@ -5,7 +5,6 @@ description: A place that has fire. Cozy! components: - type: Sprite - netsync: false sprite: Structures/Decoration/fireplace.rsi layers: - state: fireplace diff --git a/Resources/Prototypes/Entities/Structures/Decoration/statues.yml b/Resources/Prototypes/Entities/Structures/Decoration/statues.yml index acb1a875fb..c8806c5d95 100644 --- a/Resources/Prototypes/Entities/Structures/Decoration/statues.yml +++ b/Resources/Prototypes/Entities/Structures/Decoration/statues.yml @@ -31,7 +31,6 @@ description: A bananium statue. It portrays the return of the savior who will rise up and lead the clowns to the great honk. components: - type: Sprite - netsync: false sprite: Structures/Decoration/statues.rsi state: bananium_clown drawdepth: Mobs diff --git a/Resources/Prototypes/Entities/Structures/Dispensers/booze.yml b/Resources/Prototypes/Entities/Structures/Dispensers/booze.yml index 6fe1d451f2..0bd5e68198 100644 --- a/Resources/Prototypes/Entities/Structures/Dispensers/booze.yml +++ b/Resources/Prototypes/Entities/Structures/Dispensers/booze.yml @@ -9,7 +9,6 @@ sprite: Structures/smalldispensers.rsi drawdepth: SmallObjects state: booze - netsync: false - type: ReagentDispenser pack: BoozeDispenserInventory emagPack: BoozeDispenserEmagInventory diff --git a/Resources/Prototypes/Entities/Structures/Dispensers/chem.yml b/Resources/Prototypes/Entities/Structures/Dispensers/chem.yml index 7bae7d19c5..0e3f06feb5 100644 --- a/Resources/Prototypes/Entities/Structures/Dispensers/chem.yml +++ b/Resources/Prototypes/Entities/Structures/Dispensers/chem.yml @@ -7,7 +7,6 @@ - type: Sprite sprite: Structures/dispensers.rsi state: industrial-working - netsync: false snapCardinals: true - type: ReagentDispenser pack: ChemDispenserStandardInventory diff --git a/Resources/Prototypes/Entities/Structures/Dispensers/soda.yml b/Resources/Prototypes/Entities/Structures/Dispensers/soda.yml index 70fc8bf52c..9eede7b5a8 100644 --- a/Resources/Prototypes/Entities/Structures/Dispensers/soda.yml +++ b/Resources/Prototypes/Entities/Structures/Dispensers/soda.yml @@ -9,7 +9,6 @@ sprite: Structures/smalldispensers.rsi drawdepth: SmallObjects state: soda - netsync: false - type: ReagentDispenser pack: SodaDispenserInventory emagPack: SodaDispenserEmagInventory diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/assembly.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/assembly.yml index 819d49312f..f69768cf85 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/assembly.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/assembly.yml @@ -6,7 +6,6 @@ - type: Clickable - type: InteractionOutline - type: Sprite - netsync: false sprite: Structures/Doors/Airlocks/Standard/basic.rsi state: "assembly" - type: Physics diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml index 304aea8992..171dbed152 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml @@ -11,7 +11,6 @@ "/Audio/Weapons/smash.ogg" - type: InteractionOutline - type: Sprite - netsync: false sprite: Structures/Doors/Airlocks/Standard/basic.rsi snapCardinals: true layers: diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml index cb69d8e8df..2aabdfd342 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml @@ -8,7 +8,6 @@ components: - type: InteractionOutline - type: Sprite - netsync: false sprite: Structures/Doors/Airlocks/highsec/highsec.rsi layers: - state: closed diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml index 2830a44d26..f5229c7bba 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml @@ -24,7 +24,6 @@ position: "0,-0.5" hard: false - type: Sprite - netsync: false sprite: Structures/Doors/Airlocks/Standard/shuttle.rsi snapCardinals: false layers: @@ -79,7 +78,6 @@ components: - type: Docking - type: Sprite - netsync: false sprite: Structures/Doors/Airlocks/Glass/shuttle.rsi snapCardinals: false layers: @@ -117,7 +115,6 @@ noRot: false - type: Rotatable - type: Sprite - netsync: false sprite: Structures/Doors/Airlocks/Glass/shuttle.rsi state: closed - type: Construction diff --git a/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml b/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml index c2dc2859fd..60022c9f4f 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml @@ -28,7 +28,6 @@ - !type:DoActsBehavior acts: ["Destruction"] - type: Sprite - netsync: false sprite: Structures/Doors/Airlocks/Standard/firelock.rsi snapCardinals: true layers: diff --git a/Resources/Prototypes/Entities/Structures/Doors/MaterialDoors/material_doors.yml b/Resources/Prototypes/Entities/Structures/Doors/MaterialDoors/material_doors.yml index 8165e55c94..c2cd34bd4c 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/MaterialDoors/material_doors.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/MaterialDoors/material_doors.yml @@ -7,7 +7,6 @@ components: - type: InteractionOutline - type: Sprite - netsync: false sprite: Structures/Doors/MineralDoors/metal_door.rsi layers: - state: closed @@ -74,7 +73,6 @@ description: A door, where will it lead? components: - type: Sprite - netsync: false sprite: Structures/Doors/MineralDoors/wood_door.rsi layers: - state: closed @@ -112,7 +110,6 @@ description: A door, where will it lead? components: - type: Sprite - netsync: false sprite: Structures/Doors/MineralDoors/paper_door.rsi layers: - state: closed @@ -136,7 +133,6 @@ description: A door, where will it lead? components: - type: Sprite - netsync: false sprite: Structures/Doors/MineralDoors/plasma_door.rsi layers: - state: closed @@ -163,7 +159,6 @@ description: A door, where will it lead? components: - type: Sprite - netsync: false sprite: Structures/Doors/MineralDoors/gold_door.rsi layers: - state: closed @@ -179,7 +174,6 @@ description: A door, where will it lead? components: - type: Sprite - netsync: false sprite: Structures/Doors/MineralDoors/silver_door.rsi layers: - state: closed @@ -195,7 +189,6 @@ description: A door, where will it lead? components: - type: Sprite - netsync: false sprite: Structures/Doors/MineralDoors/bananium_door.rsi layers: - state: closed diff --git a/Resources/Prototypes/Entities/Structures/Doors/Shutter/blast_door.yml b/Resources/Prototypes/Entities/Structures/Doors/Shutter/blast_door.yml index 02259ebcaa..6c08fda452 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Shutter/blast_door.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Shutter/blast_door.yml @@ -5,7 +5,6 @@ description: This one says 'BLAST DONGER'. components: - type: Sprite - netsync: false sprite: Structures/Doors/Shutters/blastdoor.rsi layers: - state: closed diff --git a/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml b/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml index 94ca4d9291..9d3a7b0607 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml @@ -8,7 +8,6 @@ mode: SnapgridCenter components: - type: Sprite - netsync: false sprite: Structures/Doors/Shutters/shutters.rsi drawdepth: Overdoors layers: @@ -129,7 +128,6 @@ description: Why did they make these shutters radioactive? components: - type: Sprite - netsync: false sprite: Structures/Doors/Shutters/shutters_radiation.rsi layers: - state: closed @@ -164,7 +162,6 @@ description: The Best (TM) place to see your friends explode! components: - type: Sprite - netsync: false sprite: Structures/Doors/Shutters/shutters_window.rsi layers: - state: closed @@ -199,7 +196,6 @@ - type: Sprite sprite: Structures/Doors/Shutters/shutters.rsi state: frame - netsync: false - type: Construction graph: Shutters node: frame1 diff --git a/Resources/Prototypes/Entities/Structures/Doors/Windoors/assembly.yml b/Resources/Prototypes/Entities/Structures/Doors/Windoors/assembly.yml index 8192edd8bd..a86c7a44b9 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Windoors/assembly.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Windoors/assembly.yml @@ -6,7 +6,6 @@ components: - type: InteractionOutline - type: Sprite - netsync: false sprite: Structures/Doors/Windoors/windoor.rsi layers: - state: assembly @@ -53,7 +52,6 @@ parent: WindoorAssembly components: - type: Sprite - netsync: false sprite: Structures/Doors/Windoors/windoor.rsi layers: - state: secure_underlay diff --git a/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml b/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml index d975769416..2263ee86ee 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml @@ -24,7 +24,6 @@ layer: - GlassAirlockLayer - type: Sprite - netsync: false sprite: Structures/Doors/Windoors/windoor.rsi layers: - state: closed @@ -145,7 +144,6 @@ abstract: true components: - type: Sprite - netsync: false sprite: Structures/Doors/Windoors/windoor.rsi layers: - state: secure_underlay diff --git a/Resources/Prototypes/Entities/Structures/Furniture/Tables/base_structuretables.yml b/Resources/Prototypes/Entities/Structures/Furniture/Tables/base_structuretables.yml index cb6060f707..88d630c0ac 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/Tables/base_structuretables.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/Tables/base_structuretables.yml @@ -22,7 +22,6 @@ - TableLayer - type: SpriteFade - type: Sprite - netsync: false - type: Icon state: full - type: IconSmooth diff --git a/Resources/Prototypes/Entities/Structures/Furniture/Tables/tables.yml b/Resources/Prototypes/Entities/Structures/Furniture/Tables/tables.yml index 2bb3e62a1c..bf061c4a74 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/Tables/tables.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/Tables/tables.yml @@ -62,7 +62,6 @@ - type: SpriteFade - type: Sprite sprite: Structures/Furniture/Tables/frame.rsi - netsync: false - type: Icon sprite: Structures/Furniture/Tables/frame.rsi state: full diff --git a/Resources/Prototypes/Entities/Structures/Furniture/altar.yml b/Resources/Prototypes/Entities/Structures/Furniture/altar.yml index e652d0fd1c..e51d31f571 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/altar.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/altar.yml @@ -7,7 +7,6 @@ components: - type: Anchorable - type: Transform - noRot: true - type: Prayable - type: Damageable damageContainer: Inorganic @@ -25,7 +24,6 @@ layer: - TableLayer - type: Sprite - netsync: false snapCardinals: true - type: Climbable - type: Clickable diff --git a/Resources/Prototypes/Entities/Structures/Furniture/beds.yml b/Resources/Prototypes/Entities/Structures/Furniture/beds.yml index 509640b77c..3382a2e0ab 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/beds.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/beds.yml @@ -25,7 +25,6 @@ - type: Sprite sprite: Structures/Furniture/furniture.rsi state: bed - netsync: false noRot: true - type: Strap position: Down diff --git a/Resources/Prototypes/Entities/Structures/Furniture/bookshelf.yml b/Resources/Prototypes/Entities/Structures/Furniture/bookshelf.yml index 7274ec391b..68360ad059 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/bookshelf.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/bookshelf.yml @@ -7,7 +7,6 @@ - type: Sprite sprite: Structures/Furniture/bookshelf.rsi snapCardinals: true - netsync: false layers: - state: base - state: book-0 diff --git a/Resources/Prototypes/Entities/Structures/Furniture/carpets.yml b/Resources/Prototypes/Entities/Structures/Furniture/carpets.yml index 8890dd52d3..fa6a00623b 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/carpets.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/carpets.yml @@ -7,7 +7,6 @@ components: - type: Sprite drawdepth: FloorTiles - netsync: false - type: Icon state: full - type: IconSmooth diff --git a/Resources/Prototypes/Entities/Structures/Furniture/chairs.yml b/Resources/Prototypes/Entities/Structures/Furniture/chairs.yml index bf9cc0b018..f697558104 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/chairs.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/chairs.yml @@ -22,7 +22,6 @@ - type: Sprite sprite: Structures/Furniture/chairs.rsi noRot: true - netsync: false - type: Strap position: Stand buckleOffset: "0,0.15" diff --git a/Resources/Prototypes/Entities/Structures/Furniture/rollerbeds.yml b/Resources/Prototypes/Entities/Structures/Furniture/rollerbeds.yml index 014e804bf7..695a529734 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/rollerbeds.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/rollerbeds.yml @@ -10,7 +10,6 @@ size: 25 - type: Sprite sprite: Structures/Furniture/rollerbeds.rsi - netsync: false noRot: true layers: - state: rollerbed diff --git a/Resources/Prototypes/Entities/Structures/Furniture/sink.yml b/Resources/Prototypes/Entities/Structures/Furniture/sink.yml index 4955996813..0e1654f598 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/sink.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/sink.yml @@ -11,7 +11,6 @@ - type: Sprite sprite: Structures/Furniture/sink.rsi state: sink_stem - netsync: false - type: SolutionContainerManager solutions: tank: @@ -67,7 +66,6 @@ - type: Sprite sprite: Structures/Furniture/sink.rsi state: sink_wide - netsync: false #Stemless Sink @@ -79,7 +77,6 @@ - type: Sprite sprite: Structures/Furniture/sink.rsi state: sink - netsync: false - type: entity name: sink diff --git a/Resources/Prototypes/Entities/Structures/Furniture/toilet.yml b/Resources/Prototypes/Entities/Structures/Furniture/toilet.yml index 95251a7b0f..3dfd47d264 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/toilet.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/toilet.yml @@ -14,7 +14,6 @@ - type: Sprite sprite: Structures/Furniture/toilet.rsi state: closed_toilet_seat_up - netsync: false - type: Toilet - type: SecretStash secretPartName: secret-stash-part-toilet diff --git a/Resources/Prototypes/Entities/Structures/Holographic/projections.yml b/Resources/Prototypes/Entities/Structures/Holographic/projections.yml index 0fdd1d912c..d49ee0c635 100644 --- a/Resources/Prototypes/Entities/Structures/Holographic/projections.yml +++ b/Resources/Prototypes/Entities/Structures/Holographic/projections.yml @@ -13,7 +13,6 @@ - type: Sprite sprite: Structures/Holo/wetfloor.rsi state: icon - netsync: false - type: TimedDespawn lifetime: 90 @@ -26,7 +25,6 @@ - type: Sprite sprite: Structures/Holo/holofan.rsi state: icon - netsync: false - type: Fixtures fixtures: fix1: @@ -50,7 +48,6 @@ - type: Sprite sprite: Structures/Holo/security.rsi state: icon - netsync: false - type: Fixtures fixtures: fix1: diff --git a/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml b/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml index 4f72c68b6a..d538c1df03 100644 --- a/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml +++ b/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml @@ -25,7 +25,6 @@ - type: Sprite sprite: Structures/Wallmounts/Lighting/light_tube.rsi drawdepth: WallMountedItems - netsync: false layers: - state: on map: ["enum.PoweredLightLayers.Base"] diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml index 6e5233e625..32316a5a41 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml @@ -20,7 +20,6 @@ - type: ActivatableUIRequiresPower - type: Sprite sprite: Structures/Machines/computers.rsi - netsync: false layers: - map: ["computerLayerBody"] state: computer diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/techdiskterminal.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/techdiskterminal.yml index 2c512eb743..7d70d00568 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/techdiskterminal.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/techdiskterminal.yml @@ -5,7 +5,6 @@ description: A terminal used to print out technology disks. components: - type: Sprite - netsync: false noRot: true sprite: Structures/Machines/tech_disk_printer.rsi layers: diff --git a/Resources/Prototypes/Entities/Structures/Machines/Medical/biomass_reclaimer.yml b/Resources/Prototypes/Entities/Structures/Machines/Medical/biomass_reclaimer.yml index 312fc0bcad..b6e8e791e6 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Medical/biomass_reclaimer.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Medical/biomass_reclaimer.yml @@ -9,7 +9,6 @@ - type: Sprite sprite: Structures/Machines/Medical/biomass_reclaimer.rsi state: icon - netsync: false snapCardinals: true - type: BiomassReclaimer - type: Climbable diff --git a/Resources/Prototypes/Entities/Structures/Machines/Medical/cryo_pod.yml b/Resources/Prototypes/Entities/Structures/Machines/Medical/cryo_pod.yml index d72534c561..e80a029d6e 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Medical/cryo_pod.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Medical/cryo_pod.yml @@ -5,7 +5,6 @@ description: A special machine intended to create a safe environment for the use of chemicals that react in cold environments. components: - type: Sprite - netsync: false sprite: Structures/Machines/cryogenics.rsi drawdepth: Mobs noRot: true diff --git a/Resources/Prototypes/Entities/Structures/Machines/Medical/disease_diagnoser.yml b/Resources/Prototypes/Entities/Structures/Machines/Medical/disease_diagnoser.yml index 6b7dd46fac..e46c62053a 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Medical/disease_diagnoser.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Medical/disease_diagnoser.yml @@ -14,7 +14,6 @@ - state: unlit shader: unshaded map: ["enum.DiseaseMachineVisualLayers.IsOn"] - netsync: false - type: Appearance - type: Machine board: DiagnoserMachineCircuitboard @@ -27,7 +26,6 @@ components: - type: Sprite sprite: Objects/Misc/bureaucracy.rsi - netsync: false layers: - state: paper_receipt - state: paper_receipt_words diff --git a/Resources/Prototypes/Entities/Structures/Machines/Medical/vaccinator.yml b/Resources/Prototypes/Entities/Structures/Machines/Medical/vaccinator.yml index 7a889b71c2..8c2b88d41e 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Medical/vaccinator.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Medical/vaccinator.yml @@ -14,7 +14,6 @@ - state: unlit shader: unshaded map: ["enum.DiseaseMachineVisualLayers.IsOn"] - netsync: false - type: Appearance - type: DiseaseMachineVisuals idleState: icon diff --git a/Resources/Prototypes/Entities/Structures/Machines/anomaly_equipment.yml b/Resources/Prototypes/Entities/Structures/Machines/anomaly_equipment.yml index cf220589aa..be7f9a1fbe 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/anomaly_equipment.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/anomaly_equipment.yml @@ -207,7 +207,6 @@ components: - type: SpriteFade - type: Sprite - netsync: false sprite: Structures/Machines/Anomaly/anomaly_generator.rsi offset: 0,1 drawdepth: Mobs diff --git a/Resources/Prototypes/Entities/Structures/Machines/artifact_analyzer.yml b/Resources/Prototypes/Entities/Structures/Machines/artifact_analyzer.yml index ab05abda77..3244dd1541 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/artifact_analyzer.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/artifact_analyzer.yml @@ -6,7 +6,6 @@ components: - type: Sprite noRot: true - netsync: false sprite: Structures/Machines/artifact_analyzer.rsi drawdepth: FloorObjects layers: diff --git a/Resources/Prototypes/Entities/Structures/Machines/chem_master.yml b/Resources/Prototypes/Entities/Structures/Machines/chem_master.yml index d6ac944d62..d9520dea8d 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/chem_master.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/chem_master.yml @@ -8,7 +8,6 @@ components: - type: Sprite sprite: Structures/Machines/mixer.rsi - netsync: false snapCardinals: true layers: - state: mixer_empty diff --git a/Resources/Prototypes/Entities/Structures/Machines/cloning_machine.yml b/Resources/Prototypes/Entities/Structures/Machines/cloning_machine.yml index cb27dfc1af..e8f5a6a740 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/cloning_machine.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/cloning_machine.yml @@ -13,7 +13,6 @@ ports: - CloningPodReceiver - type: Sprite - netsync: false sprite: Structures/Machines/cloning.rsi snapCardinals: true layers: diff --git a/Resources/Prototypes/Entities/Structures/Machines/fatextractor.yml b/Resources/Prototypes/Entities/Structures/Machines/fatextractor.yml index 2db9931ea7..5d4a63eb4f 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/fatextractor.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/fatextractor.yml @@ -11,7 +11,6 @@ loop: true maxdistance: 5 - type: Sprite - netsync: false sprite: Structures/Machines/fat_sucker.rsi snapCardinals: true layers: diff --git a/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml b/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml index 14496fcb52..89e1e695eb 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml @@ -7,7 +7,6 @@ - type: Sprite sprite: Structures/Machines/fax_machine.rsi drawdepth: SmallObjects - netsync: false layers: - state: icon map: ["base"] diff --git a/Resources/Prototypes/Entities/Structures/Machines/frame.yml b/Resources/Prototypes/Entities/Structures/Machines/frame.yml index b26882c306..19be323117 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/frame.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/frame.yml @@ -102,7 +102,6 @@ machine_board: !type:Container machine_parts: !type:Container - type: Sprite - netsync: false sprite: Structures/Machines/parts.rsi state: box_1 - type: Appearance @@ -146,6 +145,5 @@ - !type:DoActsBehavior acts: ["Destruction"] - type: Sprite - netsync: false sprite: Structures/Machines/parts.rsi state: destroyed diff --git a/Resources/Prototypes/Entities/Structures/Machines/gravity_generator.yml b/Resources/Prototypes/Entities/Structures/Machines/gravity_generator.yml index 58118a956d..9d1bf03efc 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/gravity_generator.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/gravity_generator.yml @@ -14,7 +14,6 @@ path: /Audio/Ambience/Objects/gravity_gen_hum.ogg - type: Sprite - netsync: false sprite: Structures/Machines/gravity_generator.rsi layers: - state: on @@ -83,7 +82,6 @@ description: It's what keeps you to the floor, now in fun size. components: - type: Sprite - netsync: false sprite: Structures/Machines/gravity_generator_mini.rsi snapCardinals: true layers: diff --git a/Resources/Prototypes/Entities/Structures/Machines/hotplate.yml b/Resources/Prototypes/Entities/Structures/Machines/hotplate.yml index 15c1e69af7..ab7e9e65b5 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/hotplate.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/hotplate.yml @@ -17,7 +17,6 @@ layer: - TabletopMachineLayer - type: Sprite - netsync: false sprite: Structures/Machines/hotplate.rsi drawdepth: SmallObjects snapCardinals: true diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index d4ba6d0afa..e34ad45f15 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -7,7 +7,6 @@ - type: Sprite sprite: Structures/Machines/autolathe.rsi snapCardinals: true - netsync: false layers: - state: icon map: ["enum.LatheVisualLayers.IsRunning"] @@ -123,7 +122,6 @@ - type: Sprite sprite: Structures/Machines/protolathe.rsi snapCardinals: true - netsync: false layers: - state: icon map: ["enum.LatheVisualLayers.IsRunning"] @@ -260,7 +258,6 @@ description: Prints circuit boards for machines. components: - type: Sprite - netsync: false sprite: Structures/Machines/circuit_imprinter.rsi layers: - state: icon @@ -355,7 +352,6 @@ description: Creates parts for robotics and other mechanical needs components: - type: Sprite - netsync: false sprite: Structures/Machines/exosuit_fabricator.rsi layers: - state: fab-idle @@ -412,7 +408,6 @@ description: Prints equipment for use by security crew. components: - type: Sprite - netsync: false sprite: Structures/Machines/techfab.rsi layers: - state: icon @@ -475,7 +470,6 @@ description: Prints equipment for use by the medbay. components: - type: Sprite - netsync: false sprite: Structures/Machines/techfab.rsi layers: - state: icon @@ -539,7 +533,6 @@ noRot: false - type: Sprite sprite: Structures/Machines/uniform_printer.rsi - netsync: false snapCardinals: false layers: - state: icon @@ -657,7 +650,6 @@ components: - type: Sprite sprite: Structures/Machines/ore_processor.rsi - netsync: false layers: - state: icon map: ["enum.LatheVisualLayers.IsRunning"] diff --git a/Resources/Prototypes/Entities/Structures/Machines/material_reclaimer.yml b/Resources/Prototypes/Entities/Structures/Machines/material_reclaimer.yml index 505426f913..a995af95cb 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/material_reclaimer.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/material_reclaimer.yml @@ -7,7 +7,6 @@ - type: Sprite sprite: Structures/Machines/material_reclaimer.rsi snapCardinals: true - netsync: false layers: - state: icon map: ["enum.LatheVisualLayers.IsRunning"] diff --git a/Resources/Prototypes/Entities/Structures/Machines/medical_scanner.yml b/Resources/Prototypes/Entities/Structures/Machines/medical_scanner.yml index 4d3ea4adb1..a4f09881cd 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/medical_scanner.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/medical_scanner.yml @@ -13,7 +13,6 @@ ports: - MedicalScannerReceiver - type: Sprite - netsync: false sprite: Structures/Machines/scanner.rsi snapCardinals: true layers: diff --git a/Resources/Prototypes/Entities/Structures/Machines/microwave.yml b/Resources/Prototypes/Entities/Structures/Machines/microwave.yml index 75d39acd8d..38e123870d 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/microwave.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/microwave.yml @@ -40,7 +40,6 @@ layer: - TabletopMachineLayer - type: Sprite - netsync: false sprite: Structures/Machines/microwave.rsi drawdepth: SmallObjects snapCardinals: true diff --git a/Resources/Prototypes/Entities/Structures/Machines/reagent_grinder.yml b/Resources/Prototypes/Entities/Structures/Machines/reagent_grinder.yml index 75264e6400..81ae3850ac 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/reagent_grinder.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/reagent_grinder.yml @@ -33,7 +33,6 @@ layer: - TabletopMachineLayer - type: Sprite - netsync: false sprite: Structures/Machines/juicer.rsi drawdepth: SmallObjects snapCardinals: true diff --git a/Resources/Prototypes/Entities/Structures/Machines/recycler.yml b/Resources/Prototypes/Entities/Structures/Machines/recycler.yml index 1a61ee9f2d..3b36fdda97 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/recycler.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/recycler.yml @@ -51,7 +51,6 @@ anchored: true noRot: false - type: Sprite - netsync: false drawdepth: Doors sprite: Structures/Machines/recycling.rsi layers: diff --git a/Resources/Prototypes/Entities/Structures/Machines/research.yml b/Resources/Prototypes/Entities/Structures/Machines/research.yml index b0c3a1bbb2..69352b8459 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/research.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/research.yml @@ -64,7 +64,6 @@ components: - type: Sprite sprite: Structures/Machines/rndpointsource.rsi - netsync: false layers: - state: rndpointsource-off - state: rndpointsource diff --git a/Resources/Prototypes/Entities/Structures/Machines/salvage.yml b/Resources/Prototypes/Entities/Structures/Machines/salvage.yml index 522e10297d..21248846a8 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/salvage.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/salvage.yml @@ -5,7 +5,6 @@ description: "Pulls in salvage." components: - type: Sprite - netsync: false sprite: Structures/Machines/salvage.rsi layers: - state: salvage-magnet diff --git a/Resources/Prototypes/Entities/Structures/Machines/seed_extractor.yml b/Resources/Prototypes/Entities/Structures/Machines/seed_extractor.yml index f971a4a6f0..4ecd1c29e2 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/seed_extractor.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/seed_extractor.yml @@ -12,7 +12,6 @@ - state: seedextractor-unlit shader: unshaded map: ["enum.PowerDeviceVisualLayers.Powered"] - netsync: false - type: Physics bodyType: Static - type: Fixtures diff --git a/Resources/Prototypes/Entities/Structures/Machines/stasisbed.yml b/Resources/Prototypes/Entities/Structures/Machines/stasisbed.yml index 7282fdcc77..45d5d2b75c 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/stasisbed.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/stasisbed.yml @@ -8,7 +8,6 @@ baseMultiplier: 10 - type: Sprite sprite: Structures/Machines/stasis_bed.rsi - netsync: false noRot: true layers: - state: icon diff --git a/Resources/Prototypes/Entities/Structures/Machines/telecomms.yml b/Resources/Prototypes/Entities/Structures/Machines/telecomms.yml index c07a092906..e8726f74c2 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/telecomms.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/telecomms.yml @@ -7,7 +7,6 @@ - type: Sprite sprite: Structures/Machines/telecomms.rsi snapCardinals: true - netsync: false layers: - state: icon - state: unlit diff --git a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml index ea342dc5b7..f72dd9a9cb 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml @@ -14,7 +14,6 @@ path: /Audio/Ambience/Objects/vending_machine_hum.ogg - type: Sprite sprite: Structures/Machines/VendingMachines/empty.rsi - netsync: false snapCardinals: true - type: Physics bodyType: Static @@ -1311,7 +1310,6 @@ components: - type: Sprite drawdepth: WallMountedItems - netsync: false snapCardinals: false - type: WallMount arc: 180 diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/binary.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/binary.yml index e1ef0251c5..698b9c224d 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/binary.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/binary.yml @@ -29,7 +29,6 @@ mode: SnapgridCenter components: - type: Sprite - netsync: false sprite: Structures/Piping/Atmospherics/pump.rsi layers: - sprite: Structures/Piping/Atmospherics/pipe.rsi @@ -70,7 +69,6 @@ mode: SnapgridCenter components: - type: Sprite - netsync: false sprite: Structures/Piping/Atmospherics/pump.rsi layers: - sprite: Structures/Piping/Atmospherics/pipe.rsi @@ -111,7 +109,6 @@ mode: SnapgridCenter components: - type: Sprite - netsync: false sprite: Structures/Piping/Atmospherics/pump.rsi layers: - sprite: Structures/Piping/Atmospherics/pipe.rsi @@ -142,7 +139,6 @@ components: # TODO ATMOS: Give unique sprite. - type: Sprite - netsync: false sprite: Structures/Piping/Atmospherics/pump.rsi layers: - sprite: Structures/Piping/Atmospherics/pipe.rsi @@ -190,7 +186,6 @@ mode: SnapgridCenter components: - type: Sprite - netsync: false sprite: Structures/Piping/Atmospherics/pump.rsi layers: - sprite: Structures/Piping/Atmospherics/pipe.rsi @@ -249,7 +244,6 @@ mode: SnapgridCenter components: - type: Sprite - netsync: false sprite: Structures/Piping/Atmospherics/gascanisterport.rsi layers: - sprite: Structures/Piping/Atmospherics/pipe.rsi @@ -280,7 +274,6 @@ components: - type: Sprite drawdepth: FloorObjects - netsync: false sprite: Structures/Piping/Atmospherics/vent.rsi layers: - sprite: Structures/Piping/Atmospherics/pipe.rsi @@ -336,7 +329,6 @@ components: - type: Sprite sprite: Structures/Machines/gasrecycler.rsi - netsync: false layers: - sprite: Structures/Piping/Atmospherics/pipe.rsi state: pipeStraight diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/miners.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/miners.yml index 42b3b701f1..9db1eee927 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/miners.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/miners.yml @@ -25,7 +25,6 @@ - !type:DoActsBehavior acts: ["Destruction"] - type: Sprite - netsync: false sprite: Structures/Piping/Atmospherics/miners.rsi state: miner - type: AtmosDevice diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/pipes.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/pipes.yml index 23f2f7b8cd..3be418b525 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/pipes.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/pipes.yml @@ -30,7 +30,6 @@ - type: Sprite sprite: Structures/Piping/Atmospherics/pipe.rsi drawdepth: ThinPipe - netsync: false visible: false - type: Appearance - type: PipeColorVisuals diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/portable.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/portable.yml index 5c3fb081a6..b6f1e6ec4b 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/portable.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/portable.yml @@ -22,7 +22,6 @@ layer: - MachineLayer - type: Sprite - netsync: false sprite: Structures/Piping/Atmospherics/Portable/portable_scrubber.rsi noRot: true layers: diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/special.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/special.yml index 69b8adb92d..4eec014f11 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/special.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/special.yml @@ -13,7 +13,6 @@ - type: Sprite sprite: Structures/Piping/Atmospherics/tinyfan.rsi state: icon - netsync: false - type: Fixtures fixtures: fix1: diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/trinary.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/trinary.yml index adcb622636..0b435f426f 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/trinary.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/trinary.yml @@ -33,7 +33,6 @@ mode: SnapgridCenter components: - type: Sprite - netsync: false sprite: Structures/Piping/Atmospherics/gasfilter.rsi layers: - sprite: Structures/Piping/Atmospherics/pipe.rsi @@ -76,7 +75,6 @@ mode: SnapgridCenter components: - type: Sprite - netsync: false sprite: Structures/Piping/Atmospherics/gasfilter.rsi layers: - sprite: Structures/Piping/Atmospherics/pipe.rsi @@ -118,7 +116,6 @@ mode: SnapgridCenter components: - type: Sprite - netsync: false sprite: Structures/Piping/Atmospherics/gasmixer.rsi layers: - sprite: Structures/Piping/Atmospherics/pipe.rsi @@ -163,7 +160,6 @@ mode: SnapgridCenter components: - type: Sprite - netsync: false sprite: Structures/Piping/Atmospherics/gasmixer.rsi layers: - sprite: Structures/Piping/Atmospherics/pipe.rsi @@ -223,7 +219,6 @@ nodeGroupID: Pipe pipeDirection: South - type: Sprite - netsync: false sprite: Structures/Piping/Atmospherics/pneumaticvalve.rsi layers: - sprite: Structures/Piping/Atmospherics/pipe.rsi diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml index 39bc082038..7e6f033547 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml @@ -54,7 +54,6 @@ tags: - GasVent - type: Sprite - netsync: false drawdepth: FloorObjects sprite: Structures/Piping/Atmospherics/vent.rsi layers: @@ -95,7 +94,6 @@ components: # TODO ATMOS: Find sprite for this. - type: Sprite - netsync: false drawdepth: FloorObjects sprite: Structures/Piping/Atmospherics/vent.rsi layers: @@ -145,7 +143,6 @@ tags: - GasScrubber - type: Sprite - netsync: false drawdepth: FloorObjects sprite: Structures/Piping/Atmospherics/scrubber.rsi layers: @@ -187,7 +184,6 @@ components: - type: Sprite drawdepth: FloorObjects - netsync: false sprite: Structures/Piping/Atmospherics/outletinjector.rsi layers: - state: pipeHalf @@ -226,7 +222,6 @@ mode: SnapgridCenter components: - type: Sprite - netsync: false sprite: Structures/Piping/Atmospherics/thermomachine.rsi snapCardinals: true - type: Appearance diff --git a/Resources/Prototypes/Entities/Structures/Piping/Disposal/pipes.yml b/Resources/Prototypes/Entities/Structures/Piping/Disposal/pipes.yml index e82f3f17fa..1c8ff35f7d 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Disposal/pipes.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Disposal/pipes.yml @@ -9,7 +9,6 @@ - Disposal components: - type: Sprite - netsync: false visible: false - type: Appearance - type: SubFloorHide diff --git a/Resources/Prototypes/Entities/Structures/Piping/Disposal/units.yml b/Resources/Prototypes/Entities/Structures/Piping/Disposal/units.yml index 471a2f53a1..49337f5c7c 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Disposal/units.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Disposal/units.yml @@ -9,7 +9,6 @@ - Disposal components: - type: Sprite - netsync: false sprite: Structures/Piping/disposal.rsi snapCardinals: true layers: @@ -100,7 +99,6 @@ description: A pneumatic mail delivery unit. components: - type: Sprite - netsync: false sprite: Structures/Piping/disposal.rsi layers: - state: conmailing diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/collector.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/collector.yml index d4d7979bfd..ba3e8c9480 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/collector.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/collector.yml @@ -25,7 +25,6 @@ noRot: true - type: Sprite sprite: Structures/Power/Generation/Singularity/collector.rsi - netsync: false snapCardinals: true layers: - state: ca_off diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/containment.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/containment.yml index 63856085ba..066076452a 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/containment.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/containment.yml @@ -20,7 +20,6 @@ - type: Sprite sprite: Structures/Power/Generation/Singularity/containment.rsi state: icon - netsync: false noRot: true layers: - state: icon @@ -93,7 +92,6 @@ - type: Sprite sprite: Structures/Power/Generation/Singularity/containment_field.rsi state: field - netsync: false noRot: true - type: Icon sprite: Structures/Power/Generation/Singularity/containment_field.rsi diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/emitter.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/emitter.yml index cec4f98317..8492f31e52 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/emitter.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/emitter.yml @@ -25,7 +25,6 @@ anchored: true - type: Sprite sprite: Structures/Power/Generation/Singularity/emitter.rsi - netsync: false layers: - state: emitter2 - state: beam diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/generator.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/generator.yml index 36538b66e7..647eae2772 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/generator.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/generator.yml @@ -8,7 +8,6 @@ - type: Sprite sprite: Structures/Power/Generation/Singularity/generator.rsi state: icon - netsync: false - type: SingularityGenerator - type: InteractionOutline - type: Clickable diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/singularity.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/singularity.yml index b17c3ab29a..d02d2cd383 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/singularity.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/singularity.yml @@ -49,7 +49,6 @@ - type: Sprite sprite: Structures/Power/Generation/Singularity/singularity_1.rsi shader: unshaded - netsync: false layers: - map: [ "VisualLevel" ] state: singularity_1 diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/ame.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/ame.yml index 92e926a71c..c39152934f 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/ame.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/ame.yml @@ -8,7 +8,6 @@ - type: Clickable - type: InteractionOutline - type: Sprite - netsync: false snapCardinals: true sprite: Structures/Power/Generation/ame.rsi state: control @@ -105,7 +104,6 @@ - type: Clickable - type: InteractionOutline - type: Sprite - netsync: false drawdepth: Walls sprite: Structures/Power/Generation/ame.rsi state: shield_0 diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/generators.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/generators.yml index 139c509cef..e7afb09ab0 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/generators.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/generators.yml @@ -33,7 +33,6 @@ - type: Sprite sprite: Structures/Power/power.rsi state: generator - netsync: false snapCardinals: true - type: NodeContainer examinable: true @@ -114,7 +113,6 @@ canCollide: false - type: Sprite drawdepth: WallMountedItems - netsync: false sprite: Structures/Power/Generation/wallmount_generator.rsi layers: - state: panel @@ -151,7 +149,6 @@ anchored: true - type: Sprite drawdepth: WallMountedItems - netsync: false sprite: Structures/Power/Generation/wallmount_generator.rsi layers: - state: panel @@ -287,7 +284,6 @@ - type: PowerSupplier supplyRate: 10000 - type: Sprite - netsync: false sprite: Structures/Power/Generation/rtg.rsi layers: - state: rtg_damaged diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/solar.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/solar.yml index 378376b9e2..7fc240f2d4 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/solar.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/solar.yml @@ -30,7 +30,6 @@ - type: Sprite sprite: Structures/Power/Generation/solar_panel.rsi state: normal - netsync: false - type: NodeContainer examinable: true nodes: @@ -177,7 +176,6 @@ - type: Sprite sprite: Structures/Power/Generation/solar_panel.rsi state: solar_tracker - netsync: false - type: Transform anchored: true noRot: true diff --git a/Resources/Prototypes/Entities/Structures/Power/apc.yml b/Resources/Prototypes/Entities/Structures/Power/apc.yml index 236c066762..6a9c7416da 100644 --- a/Resources/Prototypes/Entities/Structures/Power/apc.yml +++ b/Resources/Prototypes/Entities/Structures/Power/apc.yml @@ -26,7 +26,6 @@ anchored: true - type: Sprite drawdepth: WallMountedItems - netsync: false sprite: Structures/Power/apc.rsi layers: - state: base @@ -146,7 +145,6 @@ anchored: true - type: Sprite drawdepth: WallMountedItems - netsync: false sprite: Structures/Power/apc.rsi state: frame - type: Construction diff --git a/Resources/Prototypes/Entities/Structures/Power/cable_terminal.yml b/Resources/Prototypes/Entities/Structures/Power/cable_terminal.yml index cfe17627f4..da724014dc 100644 --- a/Resources/Prototypes/Entities/Structures/Power/cable_terminal.yml +++ b/Resources/Prototypes/Entities/Structures/Power/cable_terminal.yml @@ -8,7 +8,6 @@ - type: Sprite sprite: Structures/Power/cable_terminal.rsi state: term - netsync: false drawdepth: BelowFloor - type: Clickable - type: InteractionOutline diff --git a/Resources/Prototypes/Entities/Structures/Power/cables.yml b/Resources/Prototypes/Entities/Structures/Power/cables.yml index 77abc3f109..055106cb63 100644 --- a/Resources/Prototypes/Entities/Structures/Power/cables.yml +++ b/Resources/Prototypes/Entities/Structures/Power/cables.yml @@ -15,7 +15,6 @@ bodyType: Static canCollide: false - type: Sprite - netsync: false drawdepth: ThinWire visible: false - type: Damageable diff --git a/Resources/Prototypes/Entities/Structures/Power/smes.yml b/Resources/Prototypes/Entities/Structures/Power/smes.yml index b7b5e962d3..bdd1093bad 100644 --- a/Resources/Prototypes/Entities/Structures/Power/smes.yml +++ b/Resources/Prototypes/Entities/Structures/Power/smes.yml @@ -14,7 +14,6 @@ sound: path: /Audio/Ambience/Objects/periodic_beep.ogg - type: Sprite - netsync: false sprite: Structures/Power/smes.rsi snapCardinals: true layers: diff --git a/Resources/Prototypes/Entities/Structures/Power/substation.yml b/Resources/Prototypes/Entities/Structures/Power/substation.yml index 2d5547e58d..b9441824db 100644 --- a/Resources/Prototypes/Entities/Structures/Power/substation.yml +++ b/Resources/Prototypes/Entities/Structures/Power/substation.yml @@ -131,7 +131,6 @@ anchored: true - type: Sprite # TODO: add sprite for maintenance panel open drawdepth: WallMountedItems - netsync: false sprite: Structures/Power/substation.rsi layers: - state: substation_wall @@ -238,7 +237,6 @@ anchored: true - type: Sprite drawdepth: WallMountedItems - netsync: false sprite: Structures/Power/substation.rsi layers: - state: substation_wall diff --git a/Resources/Prototypes/Entities/Structures/Shuttles/thrusters.yml b/Resources/Prototypes/Entities/Structures/Shuttles/thrusters.yml index f5a5782f8e..d3560b8b68 100644 --- a/Resources/Prototypes/Entities/Structures/Shuttles/thrusters.yml +++ b/Resources/Prototypes/Entities/Structures/Shuttles/thrusters.yml @@ -21,7 +21,6 @@ Heat: 40 - type: InteractionOutline - type: Sprite - netsync: false - type: Appearance - type: ThrusterVisuals - type: ApcPowerReceiver diff --git a/Resources/Prototypes/Entities/Structures/Specific/Atmospherics/sensor.yml b/Resources/Prototypes/Entities/Structures/Specific/Atmospherics/sensor.yml index fcb26ff4c8..727e88d70f 100644 --- a/Resources/Prototypes/Entities/Structures/Specific/Atmospherics/sensor.yml +++ b/Resources/Prototypes/Entities/Structures/Specific/Atmospherics/sensor.yml @@ -68,7 +68,6 @@ node: sensor - type: Appearance - type: Sprite - netsync: false drawdepth: FloorObjects sprite: Structures/Specific/Atmospherics/sensor.rsi layers: @@ -94,7 +93,6 @@ graph: AirSensor node: assembly - type: Sprite - netsync: false drawdepth: FloorObjects sprite: Structures/Specific/Atmospherics/sensor.rsi layers: diff --git a/Resources/Prototypes/Entities/Structures/Specific/anomalies.yml b/Resources/Prototypes/Entities/Structures/Specific/anomalies.yml index 557b07ddce..6c0e780757 100644 --- a/Resources/Prototypes/Entities/Structures/Specific/anomalies.yml +++ b/Resources/Prototypes/Entities/Structures/Specific/anomalies.yml @@ -33,7 +33,6 @@ layer: - MobLayer - type: Sprite - netsync: false noRot: true drawdepth: Effects #it needs to draw over stuff. sprite: Structures/Specific/anomaly.rsi diff --git a/Resources/Prototypes/Entities/Structures/Specific/dragon.yml b/Resources/Prototypes/Entities/Structures/Specific/dragon.yml index 2586036e9a..9c9b09c7c7 100644 --- a/Resources/Prototypes/Entities/Structures/Specific/dragon.yml +++ b/Resources/Prototypes/Entities/Structures/Specific/dragon.yml @@ -13,7 +13,6 @@ canCollide: false - type: Fixtures - type: Sprite - netsync: false layers: - sprite: Structures/Specific/carp_rift.rsi state: icon diff --git a/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml b/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml index 418829170c..6d4e7a29a4 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml @@ -7,7 +7,6 @@ - type: Transform noRot: true - type: Sprite - netsync: false sprite: Structures/Storage/canister.rsi noRot: true layers: diff --git a/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/base_structurelockers.yml b/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/base_structurelockers.yml index 145a587208..8dac19d80d 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/base_structurelockers.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/base_structurelockers.yml @@ -6,7 +6,6 @@ - type: AccessReader - type: Lock - type: Sprite - netsync: false sprite: Structures/Storage/closet.rsi noRot: true layers: diff --git a/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml b/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml index 3ed6aa27dc..042d35fc57 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml @@ -9,7 +9,6 @@ noRot: true - type: Sprite noRot: true - netsync: false sprite: Structures/Storage/closet.rsi layers: - state: generic @@ -108,7 +107,6 @@ noRot: false - type: Sprite drawdepth: WallMountedItems - netsync: false noRot: false sprite: Structures/Storage/wall_locker.rsi layers: @@ -165,7 +163,6 @@ - type: AccessReader - type: Lock - type: Sprite - netsync: false sprite: Structures/Storage/wall_locker.rsi layers: - state: generic @@ -194,7 +191,6 @@ noRot: true - type: Sprite noRot: true - netsync: false sprite: Structures/Storage/suit_storage.rsi layers: - state: base diff --git a/Resources/Prototypes/Entities/Structures/Storage/Closets/big_boxes.yml b/Resources/Prototypes/Entities/Structures/Storage/Closets/big_boxes.yml index b22288627e..f4033554ad 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Closets/big_boxes.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Closets/big_boxes.yml @@ -37,7 +37,6 @@ damageContainer: Box - type: Sprite noRot: true - netsync: false sprite: Structures/Storage/closet.rsi layers: - state: cardboard @@ -122,7 +121,6 @@ sprite: Structures/Storage/closet.rsi drawdepth: Effects noRot: true - netsync: false layers: - state: "cardboard_special" - type: TimedDespawn diff --git a/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml b/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml index e943b7e219..2c433fa54b 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml @@ -11,7 +11,6 @@ sprite: Structures/Storage/Crates/generic.rsi state: icon - type: Sprite - netsync: false noRot: true sprite: Structures/Storage/Crates/generic.rsi layers: diff --git a/Resources/Prototypes/Entities/Structures/Storage/Tanks/base_structuretanks.yml b/Resources/Prototypes/Entities/Structures/Storage/Tanks/base_structuretanks.yml index 8eb10ce590..eef5ef6ed6 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Tanks/base_structuretanks.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Tanks/base_structuretanks.yml @@ -6,7 +6,6 @@ abstract: true components: - type: Sprite - netsync: false noRot: true - type: InteractionOutline - type: Physics diff --git a/Resources/Prototypes/Entities/Structures/Storage/filing_cabinets.yml b/Resources/Prototypes/Entities/Structures/Storage/filing_cabinets.yml index 5306ce02ae..b79921815b 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/filing_cabinets.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/filing_cabinets.yml @@ -13,7 +13,6 @@ - Folder - Write - type: Sprite - netsync: false sprite: Structures/Storage/cabinets.rsi state: filingcabinet noRot: true @@ -73,7 +72,6 @@ - Folder - Write - type: Sprite - netsync: false sprite: Structures/Storage/cabinets.rsi state: chestdrawer noRot: true diff --git a/Resources/Prototypes/Entities/Structures/Storage/morgue.yml b/Resources/Prototypes/Entities/Structures/Storage/morgue.yml index 7052ffa815..725f4c9b0f 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/morgue.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/morgue.yml @@ -6,7 +6,6 @@ mode: SnapgridCenter components: - type: Sprite - netsync: false sprite: Structures/Storage/morgue.rsi layers: - state: morgue_closed @@ -81,7 +80,6 @@ mode: SnapgridCenter components: - type: Sprite - netsync: false sprite: Structures/Storage/morgue.rsi layers: - state: crema_closed diff --git a/Resources/Prototypes/Entities/Structures/Storage/paper_bin.yml b/Resources/Prototypes/Entities/Structures/Storage/paper_bin.yml index 7b2bbf9350..5d53ccddd1 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/paper_bin.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/paper_bin.yml @@ -6,7 +6,6 @@ suffix: Empty components: - type: Sprite - netsync: false sprite: Objects/Misc/bureaucracy.rsi state: paper_bin0 drawdepth: SmallObjects diff --git a/Resources/Prototypes/Entities/Structures/Storage/storage.yml b/Resources/Prototypes/Entities/Structures/Storage/storage.yml index b70c734d35..fb879289eb 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/storage.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/storage.yml @@ -18,7 +18,6 @@ - type: Sprite sprite: Structures/Furniture/furniture.rsi state: rack - netsync: false snapCardinals: true - type: Fixtures fixtures: diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/base_structuresigns.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/base_structuresigns.yml index fa0a6fe4ee..e7d938a3c9 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/base_structuresigns.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/base_structuresigns.yml @@ -32,7 +32,6 @@ - type: Sprite drawdepth: WallTops sprite: Structures/Wallmounts/signs.rsi - netsync: false snapCardinals: true - type: StaticPrice price: 20 diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/defib_cabinet.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/defib_cabinet.yml index 34a96deb3e..d5132100db 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/defib_cabinet.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/defib_cabinet.yml @@ -11,7 +11,6 @@ - type: InteractionOutline - type: Sprite sprite: Structures/Wallmounts/defib_cabinet.rsi - netsync: false noRot: false layers: - state: frame diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/extinguisher_cabinet.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/extinguisher_cabinet.yml index 9175a1f9ea..44e1ff4add 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/extinguisher_cabinet.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/extinguisher_cabinet.yml @@ -11,7 +11,6 @@ - type: InteractionOutline - type: Sprite sprite: Structures/Wallmounts/extinguisher_cabinet.rsi - netsync: false snapCardinals: true layers: - state: frame diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/fireaxe_cabinet.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/fireaxe_cabinet.yml index 77e4c34a89..fea1161bdb 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/fireaxe_cabinet.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/fireaxe_cabinet.yml @@ -13,7 +13,6 @@ - type: InteractionOutline - type: Sprite sprite: Structures/Wallmounts/fireaxe_cabinet.rsi - netsync: false layers: - state: cabinet - state: fireaxe diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/monitors_televisions.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/monitors_televisions.yml index dc05549883..386a065212 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/monitors_televisions.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/monitors_televisions.yml @@ -39,7 +39,6 @@ node: TelescreenFrame - type: Sprite drawdepth: WallMountedItems - netsync: false sprite: Structures/Machines/computers.rsi layers: - map: ["computerLayerBody"] @@ -136,7 +135,6 @@ node: TelevisionFrame - type: Sprite drawdepth: WallMountedItems - netsync: false sprite: Structures/Wallmounts/flatscreentv.rsi layers: - map: ["computerLayerBody"] diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/station_map.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/station_map.yml index f1d1452a08..3bad37ec76 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/station_map.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/station_map.yml @@ -11,7 +11,6 @@ - type: Transform anchored: true - type: Sprite - netsync: false sprite: Structures/Machines/station_map.rsi drawdepth: WallMountedItems layers: diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/switch.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/switch.yml index 44c1f0e538..db6825b96e 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/switch.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/switch.yml @@ -131,7 +131,6 @@ - type: Clickable - type: InteractionOutline - type: Sprite - netsync: false sprite: Structures/conveyor.rsi layers: - state: switch-off diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/timer.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/timer.yml index 1a46d6b07a..f8db40cbe9 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/timer.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/timer.yml @@ -15,7 +15,6 @@ - type: InteractionOutline - type: Sprite sprite: Structures/Wallmounts/switch.rsi - netsync: false state: on - type: Appearance - type: Rotatable @@ -87,7 +86,6 @@ anchored: true - type: Sprite drawdepth: WallMountedItems - netsync: false sprite: Structures/Wallmounts/textscreen.rsi state: textscreen - type: Construction diff --git a/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml b/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml index 759643f5d6..031f017868 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml @@ -12,7 +12,6 @@ - type: Sprite sprite: Structures/Walls/asteroid_rock.rsi state: full - netsync: false - type: Damageable damageContainer: Inorganic damageModifierSet: Metallic @@ -99,7 +98,6 @@ - type: SmoothEdge - type: Sprite sprite: Structures/Walls/rock.rsi - netsync: false layers: - state: rock - map: [ "enum.EdgeLayer.South" ] diff --git a/Resources/Prototypes/Entities/Structures/Walls/grille.yml b/Resources/Prototypes/Entities/Structures/Walls/grille.yml index 95713a30f7..cb5a919306 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/grille.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/grille.yml @@ -14,7 +14,6 @@ - RCDDeconstructWhitelist - type: CanBuildWindowOnTop - type: Sprite - netsync: false drawdepth: Walls sprite: Structures/Walls/grille.rsi layers: @@ -95,7 +94,6 @@ description: A flimsy framework of iron rods. It has seen better days. components: - type: Sprite - netsync: false drawdepth: Walls sprite: Structures/Walls/grille.rsi state: grille_broken diff --git a/Resources/Prototypes/Entities/Structures/Walls/railing.yml b/Resources/Prototypes/Entities/Structures/Walls/railing.yml index ab0c44e2ad..dbb3aaabcf 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/railing.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/railing.yml @@ -5,7 +5,6 @@ description: Basic railing meant to protect idiots like you from falling. components: - type: Sprite - netsync: false drawdepth: WallTops sprite: Structures/Walls/railing.rsi state: side @@ -64,7 +63,6 @@ description: Basic railing meant to protect idiots like you from falling. components: - type: Sprite - netsync: false drawdepth: WallTops sprite: Structures/Walls/railing.rsi state: corner @@ -132,7 +130,6 @@ description: Basic railing meant to protect idiots like you from falling. components: - type: Sprite - netsync: false drawdepth: WallTops sprite: Structures/Walls/railing.rsi state: corner_small diff --git a/Resources/Prototypes/Entities/Structures/Walls/walls.yml b/Resources/Prototypes/Entities/Structures/Walls/walls.yml index 5442a2f2ec..eef4088383 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/walls.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/walls.yml @@ -22,7 +22,6 @@ tags: - Wall - type: Sprite - netsync: false drawdepth: Walls - type: Icon state: full @@ -443,7 +442,6 @@ - Wall components: - type: Sprite - netsync: false drawdepth: Walls sprite: Structures/Walls/plastitanium_diagonal.rsi state: state0 @@ -625,7 +623,6 @@ tags: - Wall - type: Sprite - netsync: false drawdepth: Walls sprite: Structures/Walls/shuttle_diagonal.rsi state: state0 @@ -768,7 +765,6 @@ - Wall components: - type: Sprite - netsync: false drawdepth: Walls sprite: Structures/Walls/solid_diagonal.rsi state: state0 diff --git a/Resources/Prototypes/Entities/Structures/Windows/plasma.yml b/Resources/Prototypes/Entities/Structures/Windows/plasma.yml index 3a2b9bf0c3..a0f091133a 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/plasma.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/plasma.yml @@ -55,7 +55,6 @@ - Window components: - type: Sprite - netsync: false sprite: Structures/Windows/directional.rsi state: plasma_window - type: Icon diff --git a/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml b/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml index 8a9b891a10..9e59143e99 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml @@ -79,7 +79,6 @@ - Window components: - type: Sprite - netsync: false sprite: Structures/Windows/directional.rsi state: reinforced_window - type: Icon diff --git a/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml b/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml index 8a41e3f665..62ddbbe8eb 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml @@ -64,7 +64,6 @@ - Window components: - type: Sprite - netsync: false sprite: Structures/Windows/directional.rsi state: plasma_reinforced_window - type: Icon diff --git a/Resources/Prototypes/Entities/Structures/Windows/window.yml b/Resources/Prototypes/Entities/Structures/Windows/window.yml index 7a95d8c3d6..648bb12378 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/window.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/window.yml @@ -21,7 +21,6 @@ - ForceFixRotations - Window - type: Sprite - netsync: false drawdepth: WallTops sprite: Structures/Windows/window.rsi - type: Icon @@ -112,7 +111,6 @@ "/Audio/Effects/glass_hit.ogg" - type: Sprite drawdepth: Mobs - netsync: false sprite: Structures/Windows/directional.rsi state: window - type: Icon @@ -184,7 +182,6 @@ - Window components: - type: Sprite - netsync: false sprite: Structures/Windows/directional.rsi state: tinted_window - type: Tag @@ -207,7 +204,6 @@ - Window components: - type: Sprite - netsync: false sprite: Structures/Windows/directional.rsi state: frosted_window - type: Icon diff --git a/Resources/Prototypes/Entities/Structures/catwalk.yml b/Resources/Prototypes/Entities/Structures/catwalk.yml index 7f5c6a60a8..c727c24952 100644 --- a/Resources/Prototypes/Entities/Structures/catwalk.yml +++ b/Resources/Prototypes/Entities/Structures/catwalk.yml @@ -8,7 +8,6 @@ components: - type: Clickable - type: Sprite - netsync: false sprite: Structures/catwalk.rsi drawdepth: FloorTiles - type: Icon diff --git a/Resources/Prototypes/Entities/Structures/conveyor.yml b/Resources/Prototypes/Entities/Structures/conveyor.yml index 608a3ca29a..fe641fddfd 100644 --- a/Resources/Prototypes/Entities/Structures/conveyor.yml +++ b/Resources/Prototypes/Entities/Structures/conveyor.yml @@ -12,7 +12,6 @@ - type: Transform anchored: true - type: Sprite - netsync: false sprite: Structures/conveyor.rsi state: conveyor_started_cw drawdepth: FloorObjects @@ -75,7 +74,6 @@ tags: - ConveyorAssembly - type: Sprite - netsync: false sprite: Structures/conveyor.rsi state: conveyor_loose - type: Construction diff --git a/Resources/Prototypes/Entities/Structures/meat_spike.yml b/Resources/Prototypes/Entities/Structures/meat_spike.yml index bd2fccb6e3..182ec09c8e 100644 --- a/Resources/Prototypes/Entities/Structures/meat_spike.yml +++ b/Resources/Prototypes/Entities/Structures/meat_spike.yml @@ -6,7 +6,6 @@ components: - type: InteractionOutline - type: Sprite - netsync: false # temp to make clickmask work sprite: Structures/meat_spike.rsi state: spike diff --git a/Resources/Prototypes/Entities/Structures/plastic_flaps.yml b/Resources/Prototypes/Entities/Structures/plastic_flaps.yml index d5d016264d..2bc8d6532f 100644 --- a/Resources/Prototypes/Entities/Structures/plastic_flaps.yml +++ b/Resources/Prototypes/Entities/Structures/plastic_flaps.yml @@ -8,7 +8,6 @@ mode: SnapgridCenter components: - type: Sprite - netsync: false sprite: Structures/plastic_flaps.rsi state: plasticflaps drawdepth: Mobs diff --git a/Resources/Prototypes/Entities/Structures/soil.yml b/Resources/Prototypes/Entities/Structures/soil.yml index c123b3087f..c5c8f2e61f 100644 --- a/Resources/Prototypes/Entities/Structures/soil.yml +++ b/Resources/Prototypes/Entities/Structures/soil.yml @@ -34,7 +34,6 @@ - type: Sprite sprite: Structures/Hydroponics/misc.rsi state: soil - netsync: false noRot: true - type: PlantHolder drawWarnings: false diff --git a/Resources/Prototypes/Entities/Tiles/bananium.yml b/Resources/Prototypes/Entities/Tiles/bananium.yml index b9178b546d..c9a6ec2844 100644 --- a/Resources/Prototypes/Entities/Tiles/bananium.yml +++ b/Resources/Prototypes/Entities/Tiles/bananium.yml @@ -6,7 +6,6 @@ components: - type: Clickable - type: Sprite - netsync: false sprite: Tiles/Misc/bananium.rsi drawdepth: FloorTiles layers: diff --git a/Resources/Prototypes/Entities/Tiles/lava.yml b/Resources/Prototypes/Entities/Tiles/lava.yml index fe4ca7e0d1..b1d94c7a9c 100644 --- a/Resources/Prototypes/Entities/Tiles/lava.yml +++ b/Resources/Prototypes/Entities/Tiles/lava.yml @@ -19,7 +19,6 @@ - type: Clickable - type: Sprite sprite: Tiles/Planet/lava.rsi - netsync: false drawdepth: BelowFloor layers: - state: lava diff --git a/Resources/Prototypes/Entities/Tiles/water.yml b/Resources/Prototypes/Entities/Tiles/water.yml index 45cdc667bd..59e03da991 100644 --- a/Resources/Prototypes/Entities/Tiles/water.yml +++ b/Resources/Prototypes/Entities/Tiles/water.yml @@ -15,7 +15,6 @@ - type: Clickable - type: Sprite sprite: Tiles/Planet/water.rsi - netsync: false drawdepth: BelowFloor layers: - state: shoreline_water diff --git a/Resources/Prototypes/Entities/Virtual/stripping_hidden.yml b/Resources/Prototypes/Entities/Virtual/stripping_hidden.yml index 24c234af15..538e502a40 100644 --- a/Resources/Prototypes/Entities/Virtual/stripping_hidden.yml +++ b/Resources/Prototypes/Entities/Virtual/stripping_hidden.yml @@ -9,5 +9,4 @@ components: - type: Sprite texture: Interface/VerbIcons/information.svg.192dpi.png - netsync: false scale: 0.3,0.3 diff --git a/Resources/Prototypes/Entities/World/chunk.yml b/Resources/Prototypes/Entities/World/chunk.yml index 83a4d65a88..b60fd0d91b 100644 --- a/Resources/Prototypes/Entities/World/chunk.yml +++ b/Resources/Prototypes/Entities/World/chunk.yml @@ -10,6 +10,5 @@ - type: WorldChunk - type: Sprite sprite: Markers/cross.rsi - netsync: false layers: - state: blue diff --git a/Resources/Prototypes/Magic/Fixtures/runes.yml b/Resources/Prototypes/Magic/Fixtures/runes.yml index 4525dcfd82..18efd2e299 100644 --- a/Resources/Prototypes/Magic/Fixtures/runes.yml +++ b/Resources/Prototypes/Magic/Fixtures/runes.yml @@ -8,7 +8,6 @@ - type: Clickable - type: Sprite sprite: Structures/Magic/Cult/rune.rsi - netsync: false layers: - state: cult2 color: '#FF00FF' From 50257c3bd751d08988706bb81d5a0f388db8dd8b Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Sat, 10 Jun 2023 13:52:08 +0200 Subject: [PATCH 170/474] Limit postgres database concurrency (#17246) --- Content.Server/Database/ServerDbManager.cs | 4 ++-- Content.Server/Database/ServerDbPostgres.cs | 21 ++++++++++++++----- Content.Server/Database/ServerDbSqlite.cs | 9 ++++---- Content.Shared/CCVar/CCVars.cs | 7 ++++++- .../Server/Preferences/ServerDbSqliteTests.cs | 3 ++- 5 files changed, 30 insertions(+), 14 deletions(-) diff --git a/Content.Server/Database/ServerDbManager.cs b/Content.Server/Database/ServerDbManager.cs index 5dde449b58..be9bc9917b 100644 --- a/Content.Server/Database/ServerDbManager.cs +++ b/Content.Server/Database/ServerDbManager.cs @@ -283,11 +283,11 @@ public void Init() { case "sqlite": SetupSqlite(out var contextFunc, out var inMemory); - _db = new ServerDbSqlite(contextFunc, inMemory); + _db = new ServerDbSqlite(contextFunc, inMemory, _cfg); break; case "postgres": var pgOptions = CreatePostgresOptions(); - _db = new ServerDbPostgres(pgOptions); + _db = new ServerDbPostgres(pgOptions, _cfg); break; default: throw new InvalidDataException($"Unknown database engine {engine}."); diff --git a/Content.Server/Database/ServerDbPostgres.cs b/Content.Server/Database/ServerDbPostgres.cs index ae700573c5..7c0094064e 100644 --- a/Content.Server/Database/ServerDbPostgres.cs +++ b/Content.Server/Database/ServerDbPostgres.cs @@ -4,7 +4,9 @@ using System.Net; using System.Threading; using System.Threading.Tasks; +using Content.Shared.CCVar; using Microsoft.EntityFrameworkCore; +using Robust.Shared.Configuration; using Robust.Shared.Network; using Robust.Shared.Utility; @@ -13,11 +15,15 @@ namespace Content.Server.Database public sealed class ServerDbPostgres : ServerDbBase { private readonly DbContextOptions _options; + private readonly SemaphoreSlim _prefsSemaphore; private readonly Task _dbReadyTask; - public ServerDbPostgres(DbContextOptions options) + public ServerDbPostgres(DbContextOptions options, IConfigurationManager cfg) { + var concurrency = cfg.GetCVar(CCVars.DatabasePgConcurrency); + _options = options; + _prefsSemaphore = new SemaphoreSlim(concurrency, concurrency); _dbReadyTask = Task.Run(async () => { @@ -485,8 +491,9 @@ public override async Task AddConnectionLogAsync( private async Task GetDbImpl() { await _dbReadyTask; + await _prefsSemaphore.WaitAsync(); - return new DbGuardImpl(new PostgresServerDbContext(_options)); + return new DbGuardImpl(this, new PostgresServerDbContext(_options)); } protected override async Task GetDb() @@ -496,17 +503,21 @@ protected override async Task GetDb() private sealed class DbGuardImpl : DbGuard { - public DbGuardImpl(PostgresServerDbContext dbC) + private readonly ServerDbPostgres _db; + + public DbGuardImpl(ServerDbPostgres db, PostgresServerDbContext dbC) { + _db = db; PgDbContext = dbC; } public PostgresServerDbContext PgDbContext { get; } public override ServerDbContext DbContext => PgDbContext; - public override ValueTask DisposeAsync() + public override async ValueTask DisposeAsync() { - return DbContext.DisposeAsync(); + await DbContext.DisposeAsync(); + _db._prefsSemaphore.Release(); } } } diff --git a/Content.Server/Database/ServerDbSqlite.cs b/Content.Server/Database/ServerDbSqlite.cs index fe225266cc..9f2c777a46 100644 --- a/Content.Server/Database/ServerDbSqlite.cs +++ b/Content.Server/Database/ServerDbSqlite.cs @@ -20,22 +20,21 @@ public sealed class ServerDbSqlite : ServerDbBase { private readonly Func> _options; - // This doesn't allow concurrent access so that's what the semaphore is for. - // That said, this is bloody SQLite, I don't even think EFCore bothers to truly async it. private readonly SemaphoreSlim _prefsSemaphore; private readonly Task _dbReadyTask; private int _msDelay; - public ServerDbSqlite(Func> options, bool inMemory) + public ServerDbSqlite( + Func> options, + bool inMemory, + IConfigurationManager cfg) { _options = options; var prefsCtx = new SqliteServerDbContext(options()); - var cfg = IoCManager.Resolve(); - // When inMemory we re-use the same connection, so we can't have any concurrency. var concurrency = inMemory ? 1 : cfg.GetCVar(CCVars.DatabaseSqliteConcurrency); _prefsSemaphore = new SemaphoreSlim(concurrency, concurrency); diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs index e3757530ce..fef043efc4 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -479,11 +479,16 @@ public static readonly CVarDef public static readonly CVarDef DatabasePgPassword = CVarDef.Create("database.pg_password", "", CVar.SERVERONLY | CVar.CONFIDENTIAL); + /// + /// Max amount of concurrent Postgres database operations. + /// + public static readonly CVarDef DatabasePgConcurrency = + CVarDef.Create("database.pg_concurrency", 8, CVar.SERVERONLY); + // Basically only exists for integration tests to avoid race conditions. public static readonly CVarDef DatabaseSynchronous = CVarDef.Create("database.sync", false, CVar.SERVERONLY); - /* * Outline */ diff --git a/Content.Tests/Server/Preferences/ServerDbSqliteTests.cs b/Content.Tests/Server/Preferences/ServerDbSqliteTests.cs index 50e679cb6e..e18964817b 100644 --- a/Content.Tests/Server/Preferences/ServerDbSqliteTests.cs +++ b/Content.Tests/Server/Preferences/ServerDbSqliteTests.cs @@ -10,6 +10,7 @@ using Microsoft.Data.Sqlite; using Microsoft.EntityFrameworkCore; using NUnit.Framework; +using Robust.Shared.Configuration; using Robust.Shared.Enums; using Robust.Shared.IoC; using Robust.Shared.Maths; @@ -74,7 +75,7 @@ private static ServerDbSqlite GetDb() var conn = new SqliteConnection("Data Source=:memory:"); conn.Open(); builder.UseSqlite(conn); - return new ServerDbSqlite(() => builder.Options, true); + return new ServerDbSqlite(() => builder.Options, true, IoCManager.Resolve()); } [Test] From db9ef092d8d260f66f4151210455e078fa8653d9 Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Sat, 10 Jun 2023 11:52:35 +0000 Subject: [PATCH 171/474] dont lock escape pod (#17240) Co-authored-by: deltanedas <@deltanedas:kde.org> --- Resources/Maps/Shuttles/escape_pod_small.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Maps/Shuttles/escape_pod_small.yml b/Resources/Maps/Shuttles/escape_pod_small.yml index 72d79f4358..9113378034 100644 --- a/Resources/Maps/Shuttles/escape_pod_small.yml +++ b/Resources/Maps/Shuttles/escape_pod_small.yml @@ -100,7 +100,7 @@ entities: - type: GasTileOverlay - type: RadiationGridResistance - type: SpreaderGrid -- proto: AirlockExternalShuttleLocked +- proto: AirlockGlassShuttle entities: - uid: 12 components: From c3bdae812eb6d3d1a6b94b923f0c77208febfbba Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Sat, 10 Jun 2023 11:58:30 +0000 Subject: [PATCH 172/474] add CannotSuicide to queen and dragon (#17241) Co-authored-by: deltanedas <@deltanedas:kde.org> --- Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml | 3 +++ Resources/Prototypes/Entities/Mobs/Player/dragon.yml | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml b/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml index 0338a9af21..62f030af57 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml @@ -233,6 +233,9 @@ - MobMask layer: - MobLayer + - type: Tag + tags: + - CannotSuicide - type: entity name: Ravager diff --git a/Resources/Prototypes/Entities/Mobs/Player/dragon.yml b/Resources/Prototypes/Entities/Mobs/Player/dragon.yml index c6fe8dce99..a933583c48 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/dragon.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/dragon.yml @@ -4,6 +4,7 @@ suffix: "" name: space dragon description: A flying leviathan, loosely related to space carps. + abstract: true components: - type: GhostRole allowMovement: true @@ -112,6 +113,9 @@ icon: Interface/Actions/devour.png name: action-name-devour description: action-description-devour + - type: Tag + tags: + - CannotSuicide - type: entity parent: BaseMobDragon From 56c10b503c27cf0b49895921bcabc79b598eb595 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Sat, 10 Jun 2023 22:24:34 +1000 Subject: [PATCH 173/474] Don't show paused ghosts in window (#17188) --- Content.Server/Ghost/Roles/GhostRoleSystem.cs | 46 +++++++++++++++---- 1 file changed, 37 insertions(+), 9 deletions(-) diff --git a/Content.Server/Ghost/Roles/GhostRoleSystem.cs b/Content.Server/Ghost/Roles/GhostRoleSystem.cs index 6cbb51b009..bdb0d97186 100644 --- a/Content.Server/Ghost/Roles/GhostRoleSystem.cs +++ b/Content.Server/Ghost/Roles/GhostRoleSystem.cs @@ -54,6 +54,8 @@ public override void Initialize() SubscribeLocalEvent(OnMobStateChanged); SubscribeLocalEvent(OnInit); SubscribeLocalEvent(OnShutdown); + SubscribeLocalEvent(OnPaused); + SubscribeLocalEvent(OnUnpaused); SubscribeLocalEvent(OnSpawnerTakeRole); SubscribeLocalEvent(OnTakeoverTakeRole); _playerManager.PlayerStatusChanged += PlayerStatusChanged; @@ -153,7 +155,7 @@ public override void Update(float frameTime) if (_needsUpdateGhostRoleCount) { _needsUpdateGhostRoleCount = false; - var response = new GhostUpdateGhostRoleCountEvent(_ghostRoles.Count); + var response = new GhostUpdateGhostRoleCountEvent(GetGhostRolesInfo().Length); foreach (var player in _playerManager.Sessions) { RaiseNetworkEvent(response, player.ConnectedClient); @@ -228,17 +230,20 @@ public void GhostRoleInternalCreateMindAndTransfer(IPlayerSession player, Entity public GhostRoleInfo[] GetGhostRolesInfo() { - var roles = new GhostRoleInfo[_ghostRoles.Count]; - - var i = 0; + var roles = new List(); + var metaQuery = GetEntityQuery(); foreach (var (id, role) in _ghostRoles) { - roles[i] = new GhostRoleInfo(){Identifier = id, Name = role.RoleName, Description = role.RoleDescription, Rules = role.RoleRules}; - i++; + var uid = role.Owner; + + if (metaQuery.GetComponent(uid).EntityPaused) + continue; + + roles.Add(new GhostRoleInfo {Identifier = id, Name = role.RoleName, Description = role.RoleDescription, Rules = role.RoleRules}); } - return roles; + return roles.ToArray(); } private void OnPlayerAttached(PlayerAttachedEvent message) @@ -283,6 +288,22 @@ public void Reset(RoundRestartCleanupEvent ev) _nextRoleIdentifier = 0; } + private void OnPaused(EntityUid uid, GhostRoleComponent component, ref EntityPausedEvent args) + { + if (HasComp(uid)) + return; + + UpdateAllEui(); + } + + private void OnUnpaused(EntityUid uid, GhostRoleComponent component, ref EntityUnpausedEvent args) + { + if (HasComp(uid)) + return; + + UpdateAllEui(); + } + private void OnInit(EntityUid uid, GhostRoleComponent role, ComponentInit args) { if (role.Probability < 1f && !_random.Prob(role.Probability)) @@ -304,7 +325,7 @@ private void OnShutdown(EntityUid uid, GhostRoleComponent role, ComponentShutdow private void OnSpawnerTakeRole(EntityUid uid, GhostRoleMobSpawnerComponent component, ref TakeGhostRoleEvent args) { if (!TryComp(uid, out GhostRoleComponent? ghostRole) || - ghostRole.Taken) + !CanTakeGhost(uid, ghostRole)) { args.TookRole = false; return; @@ -340,10 +361,17 @@ private void OnSpawnerTakeRole(EntityUid uid, GhostRoleMobSpawnerComponent compo args.TookRole = true; } + private bool CanTakeGhost(EntityUid uid, GhostRoleComponent? component = null) + { + return Resolve(uid, ref component, false) && + !component.Taken && + !MetaData(uid).EntityPaused; + } + private void OnTakeoverTakeRole(EntityUid uid, GhostTakeoverAvailableComponent component, ref TakeGhostRoleEvent args) { if (!TryComp(uid, out GhostRoleComponent? ghostRole) || - ghostRole.Taken) + !CanTakeGhost(uid, ghostRole)) { args.TookRole = false; return; From b5a7327a3540d054e28fdd91dd1f7d0cd76c89ee Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 10 Jun 2023 08:25:41 -0400 Subject: [PATCH 174/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index c77433e5f4..0d016dc404 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: qtqt - changes: - - {message: Added song for salvage at the 2 minute timer (for expeditions)., type: Add} - id: 3478 - time: '2023-04-21T05:06:35.0000000+00:00' - author: emisse changes: - {message: Added a shuttle for salvage., type: Add} @@ -2909,3 +2904,9 @@ Entries: - {message: Fix cargo pallet collision when anchored., type: Fix} id: 3977 time: '2023-06-10T09:43:55.0000000+00:00' +- author: metalgearsloth + changes: + - {message: Paused entities will no longer show as ghost roles (no more taking xeno + / dragon on expeditions and waiting for the crew to arrive)., type: Tweak} + id: 3978 + time: '2023-06-10T12:24:35.0000000+00:00' From d1b3a3150c38ecff693c9f875860ec7e4643ff7d Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Sun, 11 Jun 2023 08:03:07 +1200 Subject: [PATCH 175/474] Update engine (#17263) --- RobustToolbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RobustToolbox b/RobustToolbox index de81199037..0ae409a795 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit de81199037c6a76d9f4856aefbc16fbd7939799e +Subproject commit 0ae409a7956806d7ff8a50b9cabbb9e5cb091bef From 2015a913eba2a6fd190cc8b0e35400752303ee70 Mon Sep 17 00:00:00 2001 From: Chief-Engineer <119664036+Chief-Engineer@users.noreply.github.com> Date: Sun, 11 Jun 2023 07:56:25 -0500 Subject: [PATCH 176/474] Add grille cut logs (#17267) --- .../Recipes/Construction/Graphs/structures/grille.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/structures/grille.yml b/Resources/Prototypes/Recipes/Construction/Graphs/structures/grille.yml index 3a1840cc01..33aa50e1c1 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/structures/grille.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/structures/grille.yml @@ -18,6 +18,8 @@ edges: - to: start completed: + - !type:AdminLog # Needs a log for start of attempt in addition to the completion log + message: "A grille was cut" - !type:SpawnPrototype prototype: PartRodMetal1 amount: 2 From 1825f19a8e3e03717fd26ee79ba1ce285526aec2 Mon Sep 17 00:00:00 2001 From: Chief-Engineer <119664036+Chief-Engineer@users.noreply.github.com> Date: Sun, 11 Jun 2023 07:56:34 -0500 Subject: [PATCH 177/474] Add AME shielding welding logs (#17266) --- .../Recipes/Construction/Graphs/utilities/ame_shielding.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/utilities/ame_shielding.yml b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/ame_shielding.yml index bf52bfa8a8..2f9c8a9715 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/utilities/ame_shielding.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/ame_shielding.yml @@ -9,6 +9,8 @@ edges: - to: start completed: + - !type:AdminLog # I don't like logging it like this. The log should include the user, AMEShielding EntityID, and AMEPart EntityID, and there should also be a start of attempt log. + message: "An AME shielding was deconstructed" - !type:SpawnPrototype prototype: AMEPart amount: 1 From fc07ed403ce4374a70d2d042ff02fda809345eea Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Mon, 12 Jun 2023 05:04:42 +1200 Subject: [PATCH 178/474] Fix glue puddle slowdown (#17260) --- .../Movement/Systems/SlowContactsSystem.cs | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/Content.Shared/Movement/Systems/SlowContactsSystem.cs b/Content.Shared/Movement/Systems/SlowContactsSystem.cs index 3118e80a20..1ee145075f 100644 --- a/Content.Shared/Movement/Systems/SlowContactsSystem.cs +++ b/Content.Shared/Movement/Systems/SlowContactsSystem.cs @@ -10,6 +10,8 @@ public sealed class SlowContactsSystem : EntitySystem [Dependency] private readonly SharedPhysicsSystem _physics = default!; [Dependency] private readonly MovementSpeedModifierSystem _speedModifierSystem = default!; + // TODO full-game-save + // Either these need to be processed before a map is saved, or slowed/slowing entities need to update on init. private HashSet _toUpdate = new(); private HashSet _toRemove = new(); @@ -19,6 +21,7 @@ public override void Initialize() SubscribeLocalEvent(OnEntityEnter); SubscribeLocalEvent(OnEntityExit); SubscribeLocalEvent(MovementSpeedCheck); + SubscribeLocalEvent(OnShutdown); UpdatesAfter.Add(typeof(SharedPhysicsSystem)); } @@ -56,6 +59,16 @@ public void ChangeModifiers(EntityUid uid, float walkSpeed, float sprintSpeed, S component.WalkSpeedModifier = walkSpeed; component.SprintSpeedModifier = sprintSpeed; Dirty(component); + _toUpdate.UnionWith(_physics.GetContactingEntities(uid)); + } + + private void OnShutdown(EntityUid uid, SlowContactsComponent component, ComponentShutdown args) + { + if (!TryComp(uid, out PhysicsComponent? phys)) + return; + + // Note that the entity may not be getting deleted here. E.g., glue puddles. + _toUpdate.UnionWith(_physics.GetContactingEntities(uid, phys)); } private void MovementSpeedCheck(EntityUid uid, SlowedByContactComponent component, RefreshMovementSpeedModifiersEvent args) @@ -90,8 +103,7 @@ private void MovementSpeedCheck(EntityUid uid, SlowedByContactComponent componen private void OnEntityExit(EntityUid uid, SlowContactsComponent component, ref EndCollideEvent args) { var otherUid = args.OtherEntity; - if (HasComp(otherUid)) - _toUpdate.Add(otherUid); + _toUpdate.Add(otherUid); } private void OnEntityEnter(EntityUid uid, SlowContactsComponent component, ref StartCollideEvent args) From 14a8c50ccc90e6b1a554c8aaf0bf148e7fd2b5d8 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 11 Jun 2023 13:05:47 -0400 Subject: [PATCH 179/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 0d016dc404..066954ca92 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: emisse - changes: - - {message: Added a shuttle for salvage., type: Add} - id: 3479 - time: '2023-04-21T05:36:32.0000000+00:00' - author: EmoGarbage404 changes: - {message: Added mega spray bottles to advanced cleaning tech. They have bigger @@ -2910,3 +2905,8 @@ Entries: / dragon on expeditions and waiting for the crew to arrive)., type: Tweak} id: 3978 time: '2023-06-10T12:24:35.0000000+00:00' +- author: ElectroJr + changes: + - {message: Fixed glue puddles sometimes causing permanent slowdown., type: Fix} + id: 3979 + time: '2023-06-11T17:04:42.0000000+00:00' From d0b42aebeb52339dbdc0309f177fb957f5a36fd0 Mon Sep 17 00:00:00 2001 From: Veritius Date: Mon, 12 Jun 2023 03:09:41 +1000 Subject: [PATCH 180/474] Add the White Gilgamesh (#16378) --- .../Locale/en-US/flavors/flavor-profiles.ftl | 1 + .../meta/consumable/drink/alcohol.ftl | 3 --- .../reagents/meta/consumable/drink/drinks.ftl | 5 ++++- .../en-US/reagents/meta/physical-desc.ftl | 1 - .../Random/Food_Drinks/drinks_glass.yml | 1 - .../Objects/Consumable/Drinks/drinks.yml | 17 -------------- Resources/Prototypes/Flavors/flavors.yml | 7 +++++- .../Reagents/Consumable/Drink/alcohol.yml | 12 ---------- .../Reagents/Consumable/Drink/drinks.yml | 14 ++++++++++++ .../Prototypes/Recipes/Reactions/drinks.yml | 22 +++++++++---------- 10 files changed, 36 insertions(+), 47 deletions(-) diff --git a/Resources/Locale/en-US/flavors/flavor-profiles.ftl b/Resources/Locale/en-US/flavors/flavor-profiles.ftl index 47cf9717d3..4739278200 100644 --- a/Resources/Locale/en-US/flavors/flavor-profiles.ftl +++ b/Resources/Locale/en-US/flavors/flavor-profiles.ftl @@ -192,6 +192,7 @@ flavor-complex-gin-tonic = like spiked lemon-lime soda flavor-complex-screwdriver = like spiked orange juice flavor-complex-themartinez = like violets and lemon vodka flavor-complex-cogchamp = like brass +flavor-complex-white-gilgamesh = like lightly carbonated cream flavor-complex-antifreeze = warm ### This is exactly what pilk tastes like. I'm not even joking. I might've been a little drunk though diff --git a/Resources/Locale/en-US/reagents/meta/consumable/drink/alcohol.ftl b/Resources/Locale/en-US/reagents/meta/consumable/drink/alcohol.ftl index 9b6029234c..9275b13010 100644 --- a/Resources/Locale/en-US/reagents/meta/consumable/drink/alcohol.ftl +++ b/Resources/Locale/en-US/reagents/meta/consumable/drink/alcohol.ftl @@ -91,9 +91,6 @@ reagent-desc-barefoot = Barefoot and pregnant. reagent-name-beepsky-smash = beepsky smash reagent-desc-beepsky-smash = Deny drinking this and prepare for THE LAW. -reagent-name-bilk = bilk -reagent-desc-bilk = This appears to be beer mixed with milk. Disgusting. - reagent-name-black-russian = black russian reagent-desc-black-russian = For the lactose-intolerant. Still as classy as a White Russian. diff --git a/Resources/Locale/en-US/reagents/meta/consumable/drink/drinks.ftl b/Resources/Locale/en-US/reagents/meta/consumable/drink/drinks.ftl index f0ce8430f0..5153d7f9a0 100644 --- a/Resources/Locale/en-US/reagents/meta/consumable/drink/drinks.ftl +++ b/Resources/Locale/en-US/reagents/meta/consumable/drink/drinks.ftl @@ -77,4 +77,7 @@ reagent-name-posca = posca reagent-desc-posca = Poor warriors' drink from a forgotten era. reagent-name-the-martinez = The Martinez -reagent-desc-the-martinez = The edgerunner legend. Remembered by a drink, Forgotten by a drunk. +reagent-desc-the-martinez = The edgerunner legend. Remembered by a drink, forgotten by a drunk. + +reagent-name-white-gilgamesh = white gilgamesh +reagent-desc-white-gilgamesh = A sickening mixture of milk and beer. Makes you feel like you're made of wood. \ No newline at end of file diff --git a/Resources/Locale/en-US/reagents/meta/physical-desc.ftl b/Resources/Locale/en-US/reagents/meta/physical-desc.ftl index 3879cb4bce..9093e54810 100644 --- a/Resources/Locale/en-US/reagents/meta/physical-desc.ftl +++ b/Resources/Locale/en-US/reagents/meta/physical-desc.ftl @@ -66,7 +66,6 @@ reagent-physical-desc-lemony-fresh = lemony fresh reagent-physical-desc-crisp = crisp reagent-physical-desc-citric = citric reagent-physical-desc-acidic = acidic -reagent-physical-desc-bilky = bilky reagent-physical-desc-buzzy = buzzy reagent-physical-desc-fibrous = fibrous reagent-physical-desc-strong-smelling = strong smelling diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/drinks_glass.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/drinks_glass.yml index 5979ded6d0..236d36fc88 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/drinks_glass.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/drinks_glass.yml @@ -25,7 +25,6 @@ - DrinkBarefootGlass - DrinkBeerglass - DrinkBerryJuice - - DrinkBilkGlass - DrinkBlackRussianGlass - DrinkBlueCuracaoGlass - DrinkBloodyMaryGlass diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml index a3e0892796..405e21c1a5 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml @@ -397,23 +397,6 @@ - type: Sprite sprite: Objects/Consumable/Drinks/berryjuice.rsi -- type: entity - parent: DrinkGlassBase - id: DrinkBilkGlass - name: bilk - description: A brew of milk and beer. For those alcoholics who fear osteoporosis. - components: - - type: SolutionContainerManager - solutions: - drink: - maxVol: 30 - reagents: - - ReagentId: Bilk - Quantity: 30 - - type: Drink - - type: Sprite - sprite: Objects/Consumable/Drinks/glass_brown.rsi - - type: entity parent: DrinkGlassBase id: DrinkBlackRussianGlass diff --git a/Resources/Prototypes/Flavors/flavors.yml b/Resources/Prototypes/Flavors/flavors.yml index e2b03bb749..5690148621 100644 --- a/Resources/Prototypes/Flavors/flavors.yml +++ b/Resources/Prototypes/Flavors/flavors.yml @@ -799,6 +799,11 @@ flavorType: Complex description: flavor-complex-themartinez +- type: flavor + id: white-gilgamesh + flavorType: Complex + description: flavor-complex-white-gilgamesh + - type: flavor id: plastic flavorType: Complex @@ -808,7 +813,7 @@ id: glue flavorType: Complex description: flavor-complex-glue - + - type: flavor id: rocksandstones flavorType: Complex diff --git a/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml b/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml index 0ab8db6d36..d776094948 100644 --- a/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml +++ b/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml @@ -545,18 +545,6 @@ reagent: Ethanol amount: 0.15 -- type: reagent - id: Bilk - name: reagent-name-bilk - parent: BaseDrink - desc: reagent-desc-bilk - physicalDesc: reagent-physical-desc-bilky - flavor: alcohol - color: "#895C4C" - metamorphicSprite: - sprite: Objects/Consumable/Drinks/glass_brown.rsi - state: icon - - type: reagent id: BlackRussian name: reagent-name-black-russian diff --git a/Resources/Prototypes/Reagents/Consumable/Drink/drinks.yml b/Resources/Prototypes/Reagents/Consumable/Drink/drinks.yml index 2c88dcb9c0..3baa6bbf2d 100644 --- a/Resources/Prototypes/Reagents/Consumable/Drink/drinks.yml +++ b/Resources/Prototypes/Reagents/Consumable/Drink/drinks.yml @@ -418,3 +418,17 @@ metamorphicSprite: sprite: Objects/Consumable/Drinks/the_martinez.rsi state: icon + +- type: reagent + id: WhiteGilgamesh + name: reagent-name-white-gilgamesh + parent: BaseDrink + desc: reagent-desc-white-gilgamesh + physicalDesc: reagent-physical-desc-creamy + flavor: white-gilgamesh + color: "#e5d27e" + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 1 \ No newline at end of file diff --git a/Resources/Prototypes/Recipes/Reactions/drinks.yml b/Resources/Prototypes/Recipes/Reactions/drinks.yml index 9cf0f902b7..831719d19d 100644 --- a/Resources/Prototypes/Recipes/Reactions/drinks.yml +++ b/Resources/Prototypes/Recipes/Reactions/drinks.yml @@ -126,16 +126,6 @@ products: BeepskySmash: 2 -- type: reaction - id: Bilk - reactants: - Beer: - amount: 1 - Milk: - amount: 1 - products: - Bilk: 2 - - type: reaction id: BlackRussian reactants: @@ -879,6 +869,16 @@ products: TheMartinez: 6 +- type: reaction + id: WhiteGilgamesh + reactants: + Beer: + amount: 2 + Milk: + amount: 1 + products: + WhiteGilgamesh: 3 + - type: reaction id: Cola reactants: @@ -891,4 +891,4 @@ Sugar: amount: 1 products: - Cola: 4 + Cola: 4 \ No newline at end of file From be6177c11d69084b6acc59745dcb2498f357545b Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 11 Jun 2023 13:10:45 -0400 Subject: [PATCH 181/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 066954ca92..03fc630e0a 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: EmoGarbage404 - changes: - - {message: Added mega spray bottles to advanced cleaning tech. They have bigger - spray and more capacity., type: Add} - - {message: You can adjust the solution transfer amount of spray bottles., type: Tweak} - id: 3480 - time: '2023-04-21T09:16:33.0000000+00:00' - author: metalgearsloth changes: - {message: Reduce the standard salvage expedition time from 18-20 minutes to 15 @@ -2910,3 +2903,10 @@ Entries: - {message: Fixed glue puddles sometimes causing permanent slowdown., type: Fix} id: 3979 time: '2023-06-11T17:04:42.0000000+00:00' +- author: Veritius + changes: + - {message: Added the White Gilgamesh., type: Add} + - {message: Removed bilk., type: Remove} + - {message: Fixed the grammar of The Martinez., type: Fix} + id: 3980 + time: '2023-06-11T17:09:41.0000000+00:00' From 999557902c92547f0867bfd63b4068030b303583 Mon Sep 17 00:00:00 2001 From: Checkraze <71046427+Cheackraze@users.noreply.github.com> Date: Mon, 12 Jun 2023 04:09:11 -0400 Subject: [PATCH 182/474] Aspid 1.1 (#17276) --- Resources/Maps/aspid.yml | 9402 ++++++++++++++++++++------------------ 1 file changed, 4966 insertions(+), 4436 deletions(-) diff --git a/Resources/Maps/aspid.yml b/Resources/Maps/aspid.yml index 246dcfee77..4286fa64b8 100644 --- a/Resources/Maps/aspid.yml +++ b/Resources/Maps/aspid.yml @@ -5,48 +5,48 @@ tilemap: 0: Space 1: FloorArcadeBlue 15: FloorBlueCircuit - 17: FloorCarpetClown - 22: FloorDark - 23: FloorDarkDiagonal - 25: FloorDarkHerringbone - 26: FloorDarkMini - 27: FloorDarkMono - 29: FloorDarkPavement - 30: FloorDarkPavementVertical - 31: FloorDarkPlastic - 33: FloorDirt - 34: FloorEighties - 37: FloorFreezer - 38: FloorGlass - 41: FloorGrassDark - 44: FloorGreenCircuit - 46: FloorHydro - 49: FloorLino - 51: FloorMetalDiamond - 52: FloorMime - 53: FloorMono - 56: FloorPlastic - 58: FloorReinforced - 68: FloorSteel - 71: FloorSteelDirty - 72: FloorSteelHerringbone - 73: FloorSteelMini - 74: FloorSteelMono - 75: FloorSteelOffset - 76: FloorSteelPavement - 77: FloorSteelPavementVertical - 78: FloorTechMaint - 79: FloorTechMaint2 - 81: FloorWhite - 82: FloorWhiteDiagonal - 83: FloorWhiteDiagonalMini - 85: FloorWhiteMini - 86: FloorWhiteMono - 90: FloorWhitePlastic - 91: FloorWood - 92: FloorWoodTile - 93: Lattice - 94: Plating + 18: FloorCarpetClown + 23: FloorDark + 24: FloorDarkDiagonal + 26: FloorDarkHerringbone + 27: FloorDarkMini + 28: FloorDarkMono + 30: FloorDarkPavement + 31: FloorDarkPavementVertical + 32: FloorDarkPlastic + 34: FloorDirt + 35: FloorEighties + 38: FloorFreezer + 39: FloorGlass + 42: FloorGrassDark + 45: FloorGreenCircuit + 47: FloorHydro + 50: FloorLino + 52: FloorMetalDiamond + 53: FloorMime + 54: FloorMono + 57: FloorPlastic + 59: FloorReinforced + 69: FloorSteel + 72: FloorSteelDirty + 73: FloorSteelHerringbone + 74: FloorSteelMini + 75: FloorSteelMono + 76: FloorSteelOffset + 77: FloorSteelPavement + 78: FloorSteelPavementVertical + 79: FloorTechMaint + 80: FloorTechMaint2 + 82: FloorWhite + 83: FloorWhiteDiagonal + 84: FloorWhiteDiagonalMini + 86: FloorWhiteMini + 87: FloorWhiteMono + 91: FloorWhitePlastic + 92: FloorWood + 93: FloorWoodTile + 94: Lattice + 95: Plating entities: - proto: "" entities: @@ -59,196 +59,196 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: XgAAAEoAAAFKAAAARAAAA0QAAABEAAADRAAAAkQAAANEAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABKAAABSgAAAkkAAAFJAAABSQAAA0kAAANEAAADSgAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAFJAAABSQAAAUkAAANJAAADRAAAAkQAAANEAAAARAAAAkQAAAJEAAABRAAAAUQAAAJEAAAAXgAAAEoAAAJKAAADSQAAA0kAAAFJAAACSQAAA0QAAABEAAAARAAAAUQAAANEAAADJgAAAEQAAAJEAAACJgAAAF4AAABKAAABSgAAAUQAAAJEAAADRAAAAUQAAANEAAABRAAAAF4AAABEAAAARAAAAUQAAAFEAAABRAAAA0QAAAFeAAAAXgAAAF4AAABKAAADSgAAA14AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAABEAAADXgAAAEQAAABEAAADRAAAAEQAAANEAAABRAAAAUQAAABEAAACRAAAAUQAAAJEAAADRAAAAEQAAABEAAACRAAAAkQAAANEAAACRAAAAEQAAABEAAAARAAAAUQAAANEAAADRAAAA0QAAABEAAACRAAAAUQAAANEAAACRAAAA0QAAAFEAAABRAAAAiYAAABEAAABRAAAAkQAAABEAAAARAAAA0QAAAFEAAADRAAAAkQAAAJEAAADRAAAAEQAAAJEAAABRAAAA0QAAANEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAARYAAANeAAAAXgAAACIAAABeAAAAFgAAAxYAAAAWAAAAFgAAAhYAAAEWAAADFgAAAhYAAAIWAAACFgAAABYAAAMWAAAAFgAAABYAAAAiAAAAXgAAABYAAAMmAAAAFgAAAxYAAAMmAAAAFgAAABYAAAMmAAAAFgAAAxYAAAMmAAAAFgAAARYAAAAmAAAAIgAAACIAAAAWAAABFgAAABYAAAAWAAACFgAAARYAAAMWAAACFgAAARYAAAMWAAABFgAAABYAAAAWAAAAFgAAACIAAABeAAAAFgAAACYAAAAWAAAAFgAAAyYAAAAWAAAAFgAAASYAAAAWAAACFgAAASYAAAAWAAACFgAAAyYAAABeAAAAXgAAABYAAAEWAAADFgAAARYAAAAWAAADFgAAAxYAAAMWAAABFgAAARYAAAEWAAADFgAAABYAAAEWAAAAEQAAAF4AAAAWAAABFgAAAxYAAAEWAAADFgAAAxYAAAAWAAABFgAAAxYAAAAWAAADFgAAAhYAAAMWAAADFgAAAA== + tiles: XwAAAEsAAAJLAAABRQAAA0UAAANFAAABRQAAAUUAAANFAAABUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABLAAACSwAAAEoAAABKAAADSgAAA0oAAANFAAABSwAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAAFKAAACSgAAAEoAAAFKAAADRQAAAkUAAANFAAABRQAAAEUAAAJFAAAARQAAAEUAAANFAAAAXwAAAEsAAANLAAACSgAAAEoAAAFKAAADSgAAAUUAAAJFAAAARQAAA0UAAABFAAABJwAAAEUAAANFAAABJwAAAF8AAABLAAAASwAAAUUAAAFFAAADRQAAAUUAAANFAAADRQAAAF8AAABFAAABRQAAAUUAAAJFAAADRQAAAkUAAABfAAAAXwAAAF8AAABLAAADSwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAFFAAADXwAAAEUAAAJFAAAARQAAAUUAAANFAAABRQAAAkUAAANFAAACRQAAAUUAAAJFAAABRQAAAkUAAAJFAAADRQAAAkUAAAFFAAABRQAAAUUAAANFAAABRQAAAEUAAAJFAAACRQAAAUUAAANFAAADRQAAAUUAAAFFAAADRQAAAkUAAAFFAAACRQAAAScAAABFAAABRQAAAEUAAAJFAAACRQAAAkUAAAJFAAAARQAAAUUAAABFAAACRQAAAEUAAABFAAADRQAAA0UAAAFFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAARcAAAFfAAAAXwAAACMAAABfAAAAFwAAAxcAAAAXAAABFwAAABcAAAEXAAADFwAAAhcAAAIXAAABFwAAAxcAAAMXAAADFwAAAxcAAAAjAAAAXwAAABcAAAInAAAAFwAAAhcAAAEnAAAAFwAAABcAAAEnAAAAFwAAABcAAAMnAAAAFwAAABcAAAInAAAAIwAAACMAAAAXAAACFwAAABcAAAEXAAACFwAAABcAAAEXAAABFwAAARcAAAMXAAADFwAAAhcAAAMXAAAAFwAAASMAAABfAAAAFwAAAScAAAAXAAABFwAAAicAAAAXAAABFwAAAicAAAAXAAADFwAAAScAAAAXAAABFwAAAycAAABfAAAAXwAAABcAAAEXAAAAFwAAABcAAAMXAAADFwAAAhcAAAAXAAACFwAAAxcAAAAXAAADFwAAAxcAAAMXAAADEgAAAF8AAAAXAAACFwAAABcAAAMXAAAAFwAAAxcAAAAXAAAAFwAAABcAAAAXAAADFwAAAxcAAAAXAAADFwAAAA== -1,0: ind: -1,0 - tiles: EQAAABEAAAAWAAABJgAAABYAAAMWAAABJgAAABYAAAMWAAADJgAAABYAAAIWAAADJgAAABYAAAIWAAAAJgAAABEAAABeAAAAGwAAARYAAAIWAAADFgAAAhYAAAMWAAABFgAAARYAAAEWAAABFgAAAhYAAAMWAAABFgAAAhYAAANeAAAAXgAAABYAAAImAAAAFgAAABYAAAAmAAAAFgAAAxYAAAEmAAAAFgAAAxYAAAEmAAAAFgAAARYAAAAmAAAANAAAAF4AAAAWAAACFgAAABYAAAAWAAAAFgAAABYAAAEWAAABFgAAARYAAAIWAAADFgAAARYAAAEWAAADFgAAAzQAAAA0AAAAFgAAARYAAAAWAAAAFgAAAFsAAAFbAAACWwAAAVsAAANbAAAAWwAAABYAAAAWAAAAFgAAABYAAAE0AAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAADWwAAA1sAAAFbAAACWwAAA1sAAAAmAAAAFgAAAxYAAAImAAAAXgAAAF4AAABeAAAAXgAAAFsAAAJbAAABWwAAAVsAAANbAAAAWwAAAlsAAAFbAAABFgAAAxYAAAEWAAAAFgAAA14AAABeAAAAXgAAAF4AAABbAAADWwAAAVsAAAFbAAABWwAAA1sAAANbAAADWwAAACYAAAAWAAADFgAAASYAAABeAAAAXgAAAF4AAABeAAAAWwAAAVsAAABbAAACWwAAAVsAAAJbAAAAWwAAAFsAAAMWAAACFgAAAhYAAAIWAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAADEAAABeAAAAXgAAAF4AAAAWAAACFgAAAhYAAAMWAAAAFgAAA14AAABeAAAAXgAAAE4AAABeAAAAMQAAADEAAAAxAAAAMQAAADEAAABeAAAAFgAAASYAAAAWAAABFgAAAyYAAABeAAAAXgAAAF4AAABeAAAATwAAADEAAAAxAAAAMQAAADEAAAAxAAAAXgAAABYAAAEWAAADFgAAARYAAAEWAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAASgAAAEoAAABeAAAAXgAAAEQAAANEAAABRAAAAkQAAANEAAAARAAAA0QAAANEAAADRAAAAEQAAAFEAAACRAAAAEQAAAJEAAADRAAAAUQAAANEAAADRAAAA0QAAAFEAAADRAAAAUQAAAJEAAAARAAAAEQAAANEAAABRAAAAEQAAAFEAAADRAAAAUQAAAFEAAABRAAAAUQAAAFEAAAARAAAAkQAAABEAAAARAAAAUQAAABEAAAARAAAAEQAAAJEAAAARAAAAkQAAAJEAAACRAAAAQ== + tiles: EgAAABIAAAAXAAADJwAAABcAAAIXAAADJwAAABcAAAMXAAADJwAAABcAAAIXAAAAJwAAABcAAAMXAAABJwAAABIAAABfAAAAHAAAAhcAAAEXAAAAFwAAARcAAAMXAAABFwAAAhcAAAAXAAAAFwAAABcAAAMXAAAAFwAAAxcAAANfAAAAXwAAABcAAAInAAAAFwAAAhcAAAEnAAAAFwAAABcAAAAnAAAAFwAAAxcAAAMnAAAAFwAAAxcAAAInAAAANQAAAF8AAAAXAAABFwAAAhcAAAIXAAABFwAAABcAAAIXAAAAFwAAARcAAAAXAAADFwAAAhcAAAMXAAABFwAAAzUAAAA1AAAAFwAAAxcAAAMXAAADFwAAAFwAAANcAAABXAAAAlwAAABcAAABXAAAAxcAAAEXAAACFwAAARcAAAE1AAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAADXAAAAFwAAANcAAABXAAAA1wAAAInAAAAFwAAAxcAAAInAAAAXwAAAF8AAABfAAAAXwAAAFwAAABcAAACXAAAAVwAAABcAAADXAAAAlwAAAFcAAABFwAAARcAAAEXAAACFwAAAl8AAABfAAAAXwAAAF8AAABcAAAAXAAAA1wAAANcAAACXAAAAVwAAABcAAAAXAAAAScAAAAXAAABFwAAAycAAABfAAAAXwAAAF8AAABfAAAAXAAAAlwAAABcAAACXAAAAVwAAAFcAAABXAAAA1wAAAAXAAABFwAAAhcAAAEXAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAADIAAABfAAAAXwAAAF8AAAAXAAADFwAAARcAAAEXAAAAFwAAAF8AAABfAAAAXwAAAE8AAABfAAAAMgAAADIAAAAyAAAAMgAAADIAAABfAAAAFwAAACcAAAAXAAADFwAAAicAAABfAAAAXwAAAF8AAABfAAAAUAAAADIAAAAyAAAAMgAAADIAAAAyAAAAXwAAABcAAAEXAAABFwAAABcAAAIXAAADUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASwAAAksAAAFfAAAAXwAAAEUAAAFFAAADRQAAAUUAAABFAAAARQAAAUUAAAFFAAACRQAAA0UAAABFAAACRQAAAUUAAABFAAADRQAAAkUAAAJFAAACRQAAAkUAAAJFAAABRQAAAEUAAANFAAABRQAAAEUAAAJFAAADRQAAAEUAAAJFAAAARQAAA0UAAAFFAAABRQAAAkUAAABFAAADRQAAA0UAAAJFAAADRQAAA0UAAABFAAAARQAAAEUAAAFFAAACRQAAAEUAAABFAAADRQAAAw== 0,-1: ind: 0,-1 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABPAAAARAAAAkQAAABEAAACRAAAA0QAAAFEAAACRAAAAkQAAAJeAAAADwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAABSQAAAUkAAAFJAAACSQAAAkQAAAFEAAABXgAAABsAAAJEAAACRAAAAEQAAABEAAABRAAAA0QAAANEAAABRAAAAUkAAANJAAACSQAAAUkAAAFEAAAARAAAAV4AAAAPAAAARAAAAEQAAAEmAAAARAAAAUQAAANEAAABRAAAA0QAAABJAAACSQAAAUkAAANJAAADRAAAAEQAAAJeAAAATgAAAEQAAAJEAAAARAAAAUQAAANEAAADXgAAAEQAAAFEAAABRAAAAEQAAABEAAAARAAAAEQAAAJEAAABXgAAAE4AAABEAAABXgAAAEQAAANEAAACRAAAAl4AAABeAAAAXgAAAF4AAABeAAAASgAAAUoAAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAANEAAACRAAAA0QAAABEAAACRAAAAUQAAAJEAAAARAAAAUQAAAFEAAADRAAAAUQAAAJEAAAARAAAAkQAAAJEAAACRAAAAUQAAANEAAAARAAAA0QAAANEAAADRAAAAUQAAAJEAAAARAAAAEQAAABEAAADRAAAA0QAAABEAAAARAAAA0QAAAJEAAAARAAAA0QAAAJEAAADRAAAA0QAAAFEAAADRAAAA0QAAAJEAAACRAAAAUQAAANEAAABXgAAABYAAAAWAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAhYAAAEWAAACXgAAABsAAAMWAAAAXgAAABYAAAAWAAADFgAAABYAAAJeAAAAWgAAAFoAAAJWAAAAXgAAAEQAAAFEAAAARAAAA14AAABeAAAATwAAAF4AAAAWAAAAFgAAASYAAAAWAAADSgAAA1oAAANaAAAAWgAAAVoAAAFaAAADWgAAAFoAAANaAAABXgAAAF4AAABeAAAAFgAAABYAAAEWAAAAFgAAAl4AAABaAAACGgAAAxoAAAIaAAABGgAAARoAAAFaAAACWgAAA14AAABeAAAAXgAAABYAAAEWAAADJgAAABYAAANeAAAAWgAAAhoAAAMaAAACGgAAABoAAAIaAAACWgAAAVoAAANPAAAAXgAAAF4AAAAWAAADFgAAARYAAAIWAAAAXgAAAFoAAAMaAAACGgAAAxoAAAMaAAABGgAAAloAAAJaAAACXgAAAF4AAABeAAAAFgAAAhYAAAIWAAADFgAAAF4AAABaAAACGgAAABoAAANaAAACWgAAAloAAAJaAAADWgAAAF4AAABeAAAATgAAAA== + tiles: XwAAAF8AAABfAAAAXwAAAF8AAABQAAAARQAAA0UAAANFAAAARQAAAUUAAAJFAAACRQAAAEUAAAJfAAAADwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAAASgAAA0oAAAJKAAABSgAAAUUAAAFFAAABXwAAABwAAAJFAAADRQAAA0UAAANFAAADRQAAAkUAAANFAAADRQAAAUoAAAFKAAACSgAAAUoAAANFAAAARQAAAV8AAAAPAAAARQAAAEUAAAInAAAARQAAAUUAAABFAAACRQAAAEUAAAJKAAACSgAAAEoAAAJKAAAARQAAA0UAAANfAAAATwAAAEUAAABFAAAARQAAAUUAAAJFAAABXwAAAEUAAAFFAAABRQAAAUUAAABFAAABRQAAAUUAAAJFAAAAXwAAAE8AAABFAAABXwAAAEUAAAJFAAADRQAAA18AAABfAAAAXwAAAF8AAABfAAAASwAAA0sAAAFfAAAAXwAAAF8AAABfAAAARQAAAUUAAAJFAAABRQAAAUUAAANFAAAARQAAAkUAAANFAAADRQAAAkUAAABFAAABRQAAAkUAAAFFAAAARQAAAUUAAAFFAAACRQAAA0UAAANFAAACRQAAAUUAAAFFAAACRQAAAUUAAAFFAAACRQAAAEUAAANFAAAARQAAAEUAAANFAAADRQAAA0UAAANFAAABRQAAA0UAAABFAAABRQAAA0UAAABFAAADRQAAAkUAAAJFAAACRQAAAkUAAABFAAABXwAAABcAAAIXAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAABcAAAIXAAAAXwAAABwAAAMXAAABXwAAABcAAAIXAAACFwAAARcAAABfAAAAWwAAAVsAAAFXAAACXwAAAEUAAABFAAABRQAAAl8AAABfAAAAUAAAAF8AAAAXAAAAFwAAAycAAAAXAAADSwAAAVsAAAJbAAADWwAAAFsAAANbAAAAWwAAAVsAAAFbAAACXwAAAF8AAABfAAAAFwAAARcAAAAXAAACFwAAAF8AAABbAAACGwAAAhsAAAEbAAAAGwAAAhsAAANbAAACWwAAAl8AAABfAAAAXwAAABcAAAAXAAACJwAAABcAAABfAAAAWwAAAxsAAAEbAAADGwAAARsAAAEbAAABWwAAAlsAAABQAAAAXwAAAF8AAAAXAAADFwAAAhcAAAAXAAAAXwAAAFsAAAMbAAACGwAAABsAAAAbAAACGwAAAFsAAANbAAABXwAAAF8AAABfAAAAFwAAARcAAAEXAAABFwAAA18AAABbAAADGwAAAhsAAANbAAABWwAAAlsAAANbAAAAWwAAAV8AAABfAAAATwAAAA== 0,0: ind: 0,0 - tiles: FgAAABYAAAAmAAAAFgAAAV4AAABaAAADGgAAAxoAAABaAAACXgAAAF4AAAAlAAAAXgAAAF4AAABeAAAATgAAABYAAAMWAAADFgAAAxYAAAFeAAAAWgAAAhoAAAEaAAADWgAAAV4AAAAlAAAAJQAAACUAAABeAAAAXgAAAE4AAAAWAAAAFgAAAiYAAAAbAAABXgAAAFoAAAFaAAACWgAAAloAAAFeAAAAJQAAACUAAAAlAAAAXgAAAF4AAABOAAAAFgAAABYAAAIWAAACFgAAAkoAAAFeAAAAFgAAAxYAAAEWAAABXgAAACUAAAAlAAAAJQAAAF4AAABeAAAAXgAAABYAAAEWAAACFgAAAxYAAABeAAAAFgAAABYAAAEWAAAAFgAAAF4AAABeAAAAJQAAAF4AAABeAAAAXgAAAF4AAAAWAAACFgAAAiYAAAAWAAABGwAAARYAAAMWAAABFgAAABYAAAMWAAACFgAAAhYAAANeAAAATgAAAF4AAABeAAAAFgAAAhYAAAMWAAAAFgAAAl4AAAAWAAABFgAAABoAAAIaAAABGgAAAxYAAAIWAAAATwAAAF4AAABeAAAAXgAAABYAAAIWAAABJgAAABYAAABeAAAAFgAAAhYAAAEaAAABGgAAARoAAAEWAAAAGwAAAF4AAABeAAAATwAAAF4AAAAWAAAAFgAAAhYAAAEWAAACXgAAABYAAAEWAAADGgAAAxoAAAIaAAABFgAAABYAAAJeAAAARAAAA0QAAABEAAAAFgAAAxYAAAMWAAADFgAAAF4AAAAWAAAAFgAAAhoAAAAaAAADGgAAAxYAAAAWAAADSgAAAUQAAABEAAABRAAAAhYAAAMWAAADJgAAABYAAANeAAAAFgAAAhYAAAMWAAACFgAAARYAAAAWAAACFgAAAl4AAABEAAABRAAAAEQAAAIWAAAAFgAAABYAAAEWAAABXgAAABYAAAAWAAADFgAAABYAAAEWAAABFgAAAxYAAAJeAAAARAAAAUQAAAJEAAADXgAAAEoAAABKAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAJEAAABXgAAAF4AAABeAAAAXgAAAEQAAAJEAAACRAAAAkQAAAFEAAAARAAAAEQAAAJEAAABRAAAAEQAAAJEAAABRAAAAkQAAAFEAAACRAAAA0QAAABEAAAARAAAAUQAAAJEAAABRAAAAUQAAABEAAACRAAAAUQAAABEAAABRAAAAEQAAABEAAACRAAAAUQAAANEAAAARAAAAEQAAANEAAABRAAAAUQAAANEAAACRAAAA0QAAABEAAAARAAAA0QAAAJEAAACRAAAA0QAAANEAAAARAAAAQ== + tiles: FwAAAxcAAAInAAAAFwAAAl8AAABbAAADGwAAABsAAANbAAAAXwAAAF8AAAAmAAAAXwAAAF8AAABfAAAATwAAABcAAAAXAAAAFwAAAxcAAAJfAAAAWwAAAxsAAAMbAAADWwAAAV8AAAAmAAAAJgAAACYAAABfAAAAXwAAAE8AAAAXAAABFwAAAycAAAAcAAABXwAAAFsAAABbAAABWwAAAVsAAABfAAAAJgAAACYAAAAmAAAAXwAAAF8AAABPAAAAFwAAABcAAAEXAAACFwAAAEsAAAFfAAAAFwAAAxcAAAMXAAACXwAAACYAAAAmAAAAJgAAAF8AAABfAAAAXwAAABcAAAMXAAADFwAAAxcAAANfAAAAFwAAAxcAAAIXAAADFwAAA18AAABfAAAAJgAAAF8AAABfAAAAXwAAAF8AAAAXAAABFwAAAScAAAAXAAAAHAAAABcAAAMXAAABFwAAAhcAAAMXAAADFwAAARcAAAFfAAAATwAAAF8AAABfAAAAFwAAAxcAAAEXAAADFwAAA18AAAAXAAAAFwAAAhsAAAMbAAADGwAAAhcAAAIXAAABUAAAAF8AAABfAAAAXwAAABcAAAMXAAABJwAAABcAAANfAAAAFwAAAhcAAAIbAAAAGwAAARsAAAMXAAACHAAAAV8AAABfAAAAUAAAAF8AAAAXAAACFwAAAhcAAAAXAAAAXwAAABcAAAEXAAABGwAAABsAAAEbAAACFwAAARcAAAFfAAAARQAAAEUAAABFAAADFwAAAxcAAAMXAAABFwAAAV8AAAAXAAACFwAAARsAAAMbAAABGwAAABcAAAMXAAADSwAAAkUAAABFAAADRQAAAhcAAAAXAAACJwAAABcAAANfAAAAFwAAABcAAAEXAAACFwAAAxcAAAMXAAACFwAAAl8AAABFAAABRQAAAEUAAAAXAAAAFwAAAhcAAAEXAAADXwAAABcAAAMXAAADFwAAABcAAAIXAAACFwAAAxcAAANfAAAARQAAA0UAAANFAAACXwAAAEsAAAJLAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAJFAAADXwAAAF8AAABfAAAAXwAAAEUAAANFAAADRQAAAkUAAAJFAAADRQAAAkUAAABFAAAARQAAAkUAAAJFAAADRQAAAEUAAABFAAABRQAAAkUAAABFAAAARQAAAUUAAAFFAAAARQAAAEUAAABFAAAARQAAAEUAAAFFAAADRQAAAkUAAABFAAABRQAAAkUAAAJFAAABRQAAA0UAAANFAAADRQAAAEUAAABFAAABRQAAAUUAAAFFAAADRQAAAUUAAAJFAAAARQAAAkUAAABFAAAARQAAAw== -1,1: ind: -1,1 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAADRAAAAl4AAABEAAAARAAAABYAAAIbAAAAXgAAAEQAAAFEAAACGwAAAhsAAAAbAAACGwAAAxsAAANEAAABRAAAAEQAAABEAAACRAAAAUQAAAEWAAADGwAAAF4AAABEAAACRAAAARsAAAIbAAADGwAAARsAAAAbAAADRAAAAEQAAANEAAAARAAAA0QAAAAmAAAAFgAAARsAAANeAAAARAAAAkQAAAFeAAAAVQAAAFUAAAFVAAACXgAAAEQAAAFEAAADRAAAAEQAAANEAAACRAAAAxYAAAEbAAAAXgAAAEQAAAFEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAAMWAAAAXgAAAF4AAABEAAAARAAAA0QAAAFEAAACXgAAAFEAAANRAAACUQAAAlEAAAJRAAAAXgAAAEQAAAEmAAAAFgAAAF4AAAAaAAAARAAAAkQAAAJEAAABRAAAAEoAAAFRAAAAVQAAAVUAAAJVAAABUQAAAF4AAABEAAACRAAAAl4AAABeAAAAGgAAA0QAAABEAAAARAAAAUoAAAJeAAAAUQAAAlUAAABVAAACVQAAAlEAAANeAAAARAAAAUQAAABEAAABRAAAA0QAAABEAAABRAAAA0QAAAJEAAAAXgAAAFEAAAFRAAABUQAAAVEAAAJRAAAAXgAAAEQAAAAmAAAARAAAAUQAAABEAAACRAAAAEQAAAFEAAAARAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAA14AAAAbAAADXgAAAF4AAABeAAAAGwAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAARAAAAEQAAAJVAAABFgAAAhYAAAFeAAAAFgAAABYAAAIWAAADXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAEQAAAMmAAAAVQAAAxYAAAMWAAAAXgAAABYAAAEWAAACFgAAAV4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABEAAACRAAAAxYAAAIbAAABXgAAAF4AAAAWAAABFgAAARYAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAARAAAAUQAAAJKAAACRAAAAEQAAAJeAAAAFgAAABYAAAMWAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAEQAAAMmAAAARAAAA0QAAANEAAACXgAAABYAAAIWAAACFgAAA14AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABEAAABRAAAAg== + tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAAARQAAA18AAABFAAACRQAAAhcAAAIcAAADXwAAAEUAAAFFAAACHAAAABwAAAMcAAADHAAAABwAAANFAAABRQAAAUUAAAFFAAAARQAAAkUAAAMXAAACHAAAAl8AAABFAAABRQAAAxwAAAEcAAAAHAAAAxwAAAEcAAACRQAAAEUAAABFAAABRQAAAkUAAAEnAAAAFwAAABwAAAJfAAAARQAAA0UAAANfAAAAVgAAAFYAAAJWAAACXwAAAEUAAANFAAAARQAAAUUAAANFAAACRQAAAhcAAAMcAAAAXwAAAEUAAAFFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAAIXAAABXwAAAF8AAABFAAABRQAAAUUAAABFAAACXwAAAFIAAABSAAADUgAAAVIAAANSAAACXwAAAEUAAAMnAAAAFwAAAl8AAAAbAAAARQAAA0UAAABFAAADRQAAA0sAAAFSAAACVgAAAVYAAAFWAAAAUgAAA18AAABFAAACRQAAAl8AAABfAAAAGwAAAkUAAAJFAAAARQAAAksAAAJfAAAAUgAAAlYAAAJWAAADVgAAAlIAAAFfAAAARQAAAEUAAAFFAAABRQAAAUUAAAJFAAABRQAAAkUAAAJFAAAAXwAAAFIAAAFSAAADUgAAA1IAAAFSAAADXwAAAEUAAAInAAAARQAAAkUAAANFAAAARQAAAkUAAAJFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAV8AAAAcAAABXwAAAF8AAABfAAAAHAAAAV8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAARQAAA0UAAAJWAAADFwAAARcAAANfAAAAFwAAARcAAAIXAAACXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAEUAAAInAAAAVgAAAxcAAAIXAAABXwAAABcAAAMXAAAAFwAAA18AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABFAAAARQAAAhcAAAMcAAACXwAAAF8AAAAXAAACFwAAAhcAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAARQAAAkUAAANLAAAARQAAAUUAAABfAAAAFwAAAxcAAAIXAAABXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAEUAAAMnAAAARQAAAEUAAANFAAADXwAAABcAAAEXAAACFwAAAl8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABFAAAARQAAAQ== 0,1: ind: 0,1 - tiles: RAAAAl4AAABEAAAARAAAAUQAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAACRAAAA0QAAAFEAAACVgAAAVEAAAFRAAADUQAAAVEAAAJRAAAAUQAAAFEAAANRAAADUQAAAVEAAABEAAADRAAAAEQAAAFEAAABRAAAA1YAAANRAAACUQAAA1EAAANRAAADUQAAA1EAAANRAAABUQAAAVEAAANRAAABRAAAAEQAAANEAAADRAAAAEQAAANeAAAAUQAAAFEAAANRAAABUQAAAVEAAANRAAADUQAAAFEAAABRAAABUQAAA0QAAAJeAAAAXgAAAEQAAAFEAAADXgAAAFEAAAJRAAABUQAAAlEAAABRAAADUQAAAFEAAAJRAAACUQAAAFEAAABEAAADXgAAAFEAAAFRAAADUQAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFYAAAFeAAAAXgAAAF4AAABPAAAARAAAA14AAABRAAADVQAAAlUAAAFRAAABUQAAA1EAAANRAAADUQAAAVEAAABRAAACUQAAAF4AAABeAAAAXgAAAEQAAANeAAAAUQAAA1UAAABVAAAAVQAAAlEAAAJRAAABUQAAA1EAAANRAAABUgAAAFEAAAJeAAAATwAAAF4AAABEAAACXgAAAFEAAAFVAAAAVQAAAlUAAAJRAAADUQAAAlEAAANeAAAAUQAAA1IAAAJRAAACXgAAAF4AAABeAAAARAAAAl4AAABRAAADUQAAAlEAAAJRAAAAUQAAAV4AAABeAAAAXgAAAFEAAAJSAAAAUQAAAV4AAABOAAAATgAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAFYAAANeAAAAUQAAAVEAAABRAAACUgAAAlEAAAJeAAAAXgAAAF4AAABEAAABXgAAAFEAAANRAAABUQAAAV4AAABRAAACUQAAAFEAAABRAAAAUQAAAlIAAAFRAAABXgAAAFEAAAFRAAABRAAAAF4AAABRAAADXgAAAFEAAABeAAAAUQAAAFEAAAFRAAAAUQAAA1EAAABRAAADUQAAAFYAAANRAAAAUwAAAEQAAAFeAAAAUQAAA1EAAAFRAAAAXgAAAFYAAAJWAAAAXgAAAF4AAAAWAAAAXgAAAF4AAABeAAAAUQAAA1EAAAFEAAACXgAAAFEAAANeAAAAUQAAAVEAAAFRAAABUQAAAV4AAAAWAAACFgAAABYAAAAWAAAAXgAAAF4AAABeAAAARAAAAV4AAABRAAAAUQAAAFIAAABSAAACUgAAAlEAAAJeAAAAFgAAAhYAAAEWAAACFgAAAxsAAANbAAAAWwAAAw== + tiles: RQAAA18AAABFAAABRQAAA0UAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAACRQAAAkUAAAFFAAAAVwAAAFIAAAFSAAACUgAAA1IAAANSAAABUgAAAVIAAAJSAAACUgAAAVIAAANFAAAARQAAAUUAAANFAAAARQAAA1cAAAJSAAADUgAAAlIAAABSAAAAUgAAA1IAAANSAAAAUgAAAFIAAAJSAAAARQAAAkUAAAJFAAABRQAAAEUAAABfAAAAUgAAAlIAAANSAAAAUgAAAVIAAAFSAAACUgAAA1IAAAJSAAABUgAAAUUAAAJfAAAAXwAAAEUAAABFAAACXwAAAFIAAAFSAAACUgAAAVIAAABSAAAAUgAAA1IAAAFSAAAAUgAAAlIAAANFAAACXwAAAFIAAAFSAAADUgAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFcAAAFfAAAAXwAAAF8AAABQAAAARQAAAl8AAABSAAAAVgAAAFYAAANSAAAAUgAAA1IAAAJSAAADUgAAA1IAAAFSAAAAUgAAAV8AAABfAAAAXwAAAEUAAAJfAAAAUgAAAVYAAAFWAAAAVgAAAlIAAAFSAAADUgAAAVIAAAFSAAADUwAAAlIAAAJfAAAAUAAAAF8AAABFAAADXwAAAFIAAAFWAAADVgAAA1YAAAJSAAADUgAAA1IAAANfAAAAUgAAAlMAAAFSAAADXwAAAF8AAABfAAAARQAAA18AAABSAAAAUgAAAVIAAAJSAAADUgAAAV8AAABfAAAAXwAAAFIAAABTAAAAUgAAAl8AAABPAAAATwAAAEUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAFcAAAJfAAAAUgAAAFIAAABSAAADUwAAAFIAAANfAAAAXwAAAF8AAABFAAACXwAAAFIAAANSAAABUgAAA18AAABSAAABUgAAAFIAAABSAAABUgAAAFMAAABSAAABXwAAAFIAAANSAAABRQAAA18AAABSAAAAXwAAAFIAAABfAAAAUgAAA1IAAAFSAAAAUgAAA1IAAABSAAACUgAAA1cAAAJSAAACVAAAA0UAAANfAAAAUgAAAFIAAAFSAAADXwAAAFcAAANXAAACXwAAAF8AAAAXAAAAXwAAAF8AAABfAAAAUgAAAFIAAANFAAABXwAAAFIAAAFfAAAAUgAAAFIAAABSAAADUgAAA18AAAAXAAABFwAAAhcAAAAXAAAAXwAAAF8AAABfAAAARQAAAl8AAABSAAAAUgAAAVMAAAFTAAADUwAAAVIAAABfAAAAFwAAARcAAAAXAAABFwAAAhwAAANcAAAAXAAAAg== 1,0: ind: 1,0 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAAABAAAAAQAAAAEAAAABAAAAXgAAAEQAAABEAAAARAAAA14AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAyYAAABeAAAATgAAAF4AAABOAAAAXgAAAF4AAABPAAAAMQAAADEAAAAxAAAAXgAAAEQAAANeAAAARAAAAEQAAAFEAAAAXgAAAE4AAABeAAAATgAAAF4AAABeAAAAXgAAADEAAAAxAAAAMQAAAEQAAANKAAACSgAAAUQAAANEAAACRAAAAl4AAABOAAAAXgAAAE4AAABeAAAAXgAAAF4AAAAxAAAAMQAAADEAAABeAAAASgAAAV4AAABEAAABRAAAACYAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAMQAAADEAAAAxAAAAXgAAAEoAAAFeAAAARAAAAEQAAANEAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAADEAAAAxAAAAMQAAAF4AAABKAAACSgAAA0QAAAJEAAABRAAAAV4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAAAxAAAAMQAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAACYAAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAMQAAAF4AAABeAAAAWwAAA1sAAAFeAAAARAAAAUQAAABEAAADXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAABbAAACWwAAAlsAAAJbAAADXgAAAEQAAAFEAAADRAAAA14AAABOAAAAXgAAAF4AAABOAAAATgAAAF4AAABbAAADWwAAA1sAAABbAAACWwAAAkQAAABEAAABRAAAACYAAABeAAAATgAAAF4AAABeAAAATgAAAE4AAABeAAAAWwAAAlsAAAFbAAACWwAAAVsAAAFeAAAARAAAA0QAAANEAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAkQAAAJEAAADRAAAA0QAAANEAAABRAAAAEQAAAFEAAACRAAAAUQAAANEAAABRAAAAkQAAANEAAADRAAAA0QAAAFEAAABRAAAA0QAAAJEAAABRAAAAUQAAAJEAAACRAAAAUQAAABEAAADRAAAAUQAAAFEAAACRAAAAEQAAAImAAAARAAAAkQAAABEAAADRAAAAEQAAABEAAADRAAAA0QAAABEAAACRAAAAkQAAANEAAACRAAAAkQAAAJEAAABRAAAAQ== + tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAAABAAAAAQAAAAEAAAABAAAAXwAAAEUAAAFFAAADRQAAA18AAABfAAAAUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAACcAAABfAAAATwAAAF8AAABPAAAAXwAAAF8AAABQAAAAMgAAADIAAAAyAAAAXwAAAEUAAAJfAAAARQAAAEUAAABFAAADXwAAAE8AAABfAAAATwAAAF8AAABfAAAAXwAAADIAAAAyAAAAMgAAAEUAAAJLAAACSwAAAUUAAAJFAAAARQAAA18AAABPAAAAXwAAAE8AAABfAAAAXwAAAF8AAAAyAAAAMgAAADIAAABfAAAASwAAAl8AAABFAAABRQAAAScAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAMgAAADIAAAAyAAAAXwAAAEsAAANfAAAARQAAAkUAAAFFAAADXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAADIAAAAyAAAAMgAAAF8AAABLAAABSwAAA0UAAANFAAACRQAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAAAyAAAAMgAAAF8AAABfAAAAXwAAAF8AAABFAAABRQAAAicAAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAMgAAAF8AAABfAAAAXAAAAlwAAABfAAAARQAAAUUAAABFAAADXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAANcAAACXAAAA1wAAAJcAAADXwAAAEUAAABFAAACRQAAAF8AAABPAAAAXwAAAF8AAABPAAAATwAAAF8AAABcAAABXAAAAVwAAAFcAAACXAAAAEUAAABFAAABRQAAAycAAABfAAAATwAAAF8AAABfAAAATwAAAE8AAABfAAAAXAAAAFwAAAFcAAAAXAAAAlwAAAFfAAAARQAAAUUAAANFAAADXwAAAF8AAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAUUAAAJFAAACRQAAAUUAAABFAAABRQAAAUUAAAFFAAABRQAAAUUAAABFAAADRQAAAEUAAAJFAAACRQAAAEUAAABFAAABRQAAAkUAAABFAAADRQAAA0UAAAJFAAADRQAAAkUAAABFAAADRQAAA0UAAAJFAAACRQAAAEUAAAAnAAAARQAAAUUAAAFFAAABRQAAAUUAAAJFAAADRQAAAkUAAAFFAAACRQAAAkUAAAJFAAACRQAAA0UAAANFAAAARQAAAg== 1,-1: ind: 1,-1 - tiles: DwAAAA8AAAAaAAACGgAAAQ8AAAAPAAAADwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABsAAAIbAAAAGgAAAxoAAAIbAAABGwAAAhsAAAJeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABeAAAAXgAAAF4AAAAPAAAADwAAABoAAAIaAAACDwAAAA8AAAAPAAAAXgAAAF4AAABeAAAAFgAAABYAAAMWAAACFgAAAhYAAAFeAAAATgAAABYAAAIbAAACGwAAAhYAAAFOAAAATgAAAF4AAABeAAAAXgAAABYAAAIWAAACFgAAAhYAAAIWAAACXgAAAE4AAAAWAAACFgAAAhYAAAMWAAABTgAAAE4AAABeAAAAXgAAAF4AAAAWAAABFgAAAxYAAAEWAAABFgAAAV4AAABeAAAAXgAAABsAAAMbAAADXgAAAF4AAABeAAAAXgAAAE8AAABeAAAAXgAAABsAAABeAAAARAAAAkQAAAFeAAAARAAAAUQAAAJEAAADRAAAAUQAAABEAAAARAAAAkQAAABEAAACRAAAA0QAAABEAAACRAAAAUQAAAJEAAADRAAAAUQAAAFEAAADRAAAAUQAAANEAAAARAAAAkQAAAFEAAACRAAAAUQAAABEAAAARAAAAUQAAAFEAAACRAAAAyYAAABEAAABRAAAAEQAAABEAAACRAAAAkQAAAJEAAADRAAAAUQAAABEAAADRAAAAEQAAAFEAAACRAAAAUQAAANEAAADXgAAAF4AAABeAAAASgAAAV4AAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAABRAAAAi4AAABEAAACLgAAAEQAAAIuAAAARAAAAi4AAABeAAAAAQAAAAEAAAABAAAAAQAAAF4AAABEAAABRAAAAkQAAAJEAAADLgAAAEQAAAAuAAAARAAAAC4AAABEAAADXgAAAAEAAAABAAAAAQAAAAEAAABeAAAARAAAAEQAAAAmAAAALgAAAEoAAAIuAAAARAAAAy4AAABEAAACLgAAAF4AAAABAAAAAQAAAAEAAAABAAAAXgAAAEQAAAFEAAACRAAAAl4AAABeAAAATwAAAF4AAABEAAABLgAAAEQAAABeAAAAAQAAAAEAAAABAAAAAQAAAF4AAABEAAAARAAAA0QAAANeAAAAXgAAAF4AAABeAAAARAAAAUQAAAJEAAACXgAAAAEAAAABAAAAAQAAAAEAAABeAAAARAAAAkQAAAMmAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAF4AAAABAAAAAQAAAAEAAAABAAAAXgAAAEQAAAFEAAABRAAAAg== + tiles: DwAAAA8AAAAbAAAAGwAAAQ8AAAAPAAAADwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABwAAAAcAAABGwAAAxsAAAEcAAAAHAAAARwAAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABfAAAAXwAAAF8AAAAPAAAADwAAABsAAAIbAAABDwAAAA8AAAAPAAAAXwAAAF8AAABfAAAAFwAAABcAAAAXAAAAFwAAAhcAAAJfAAAATwAAABcAAAEcAAABHAAAARcAAAJPAAAATwAAAF8AAABfAAAAXwAAABcAAAAXAAADFwAAAhcAAAAXAAABXwAAAE8AAAAXAAACFwAAAhcAAAAXAAABTwAAAE8AAABfAAAAXwAAAF8AAAAXAAAAFwAAAhcAAAAXAAACFwAAA18AAABfAAAAXwAAABwAAAEcAAACXwAAAF8AAABfAAAAXwAAAFAAAABfAAAAXwAAABwAAAFfAAAARQAAAUUAAANfAAAARQAAAUUAAABFAAAARQAAAkUAAAFFAAADRQAAAEUAAAFFAAACRQAAAEUAAANFAAACRQAAAkUAAABFAAADRQAAAkUAAANFAAADRQAAAEUAAANFAAACRQAAA0UAAABFAAABRQAAAEUAAAFFAAABRQAAAkUAAAJFAAAARQAAACcAAABFAAAARQAAAEUAAAJFAAACRQAAA0UAAABFAAABRQAAAEUAAAJFAAABRQAAAkUAAABFAAACRQAAAkUAAAJFAAACXwAAAF8AAABfAAAASwAAA18AAABFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAAARQAAAC8AAABFAAABLwAAAEUAAAAvAAAARQAAAC8AAABfAAAAAQAAAAEAAAABAAAAAQAAAF8AAABFAAACRQAAAkUAAAJFAAABLwAAAEUAAAMvAAAARQAAAC8AAABFAAAAXwAAAAEAAAABAAAAAQAAAAEAAABfAAAARQAAAkUAAAEnAAAALwAAAEsAAAAvAAAARQAAAC8AAABFAAABLwAAAF8AAAABAAAAAQAAAAEAAAABAAAAXwAAAEUAAANFAAAARQAAA18AAABfAAAAUAAAAF8AAABFAAADLwAAAEUAAABfAAAAAQAAAAEAAAABAAAAAQAAAF8AAABFAAABRQAAAUUAAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAANFAAACXwAAAAEAAAABAAAAAQAAAAEAAABfAAAARQAAAEUAAAEnAAAAXwAAAF8AAABfAAAAXwAAAE8AAABPAAAATwAAAF8AAAABAAAAAQAAAAEAAAABAAAAXwAAAEUAAAJFAAABRQAAAQ== 1,1: ind: 1,1 - tiles: XgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAEoAAAJKAAACSgAAAl4AAABeAAAAXgAAAEQAAANEAAAARAAAA1EAAAJeAAAATgAAAF4AAABeAAAATAAAAkwAAAFMAAACTAAAA0gAAAApAAADKQAAA14AAABEAAADRAAAAUQAAAFRAAABXgAAAE4AAABeAAAAXgAAAEwAAAJMAAACTAAAAkgAAAJIAAACKQAAASkAAANeAAAARAAAA0QAAAAmAAAAUQAAA14AAABOAAAAXgAAAF4AAABMAAAATAAAAkgAAAFIAAABSAAAAU0AAAFNAAAASgAAAkQAAAFEAAAARAAAA1EAAAJeAAAATgAAAF4AAABeAAAAKQAAAikAAAApAAABSAAAA00AAANNAAADTQAAAUoAAAJEAAAARAAAAEQAAANeAAAAXgAAAF4AAABeAAAAXgAAACkAAAIpAAABKQAAAE0AAANNAAADTQAAAk0AAAFKAAACRAAAAEQAAAImAAAAXgAAAF4AAABeAAAAXgAAAF4AAAApAAAAKQAAAykAAABNAAABTQAAAk0AAANNAAADXgAAAEQAAABEAAABRAAAAl4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABNAAABSgAAAF4AAABEAAAARAAAAUQAAANeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAEmAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABEAAABRAAAAEQAAAJEAAAARAAAAV4AAABeAAAAWgAAA1oAAAFaAAACHwAAAR8AAAFeAAAAXgAAAE4AAABeAAAASgAAAkQAAANEAAADRAAAAEQAAANRAAAAXgAAAFoAAAFaAAAAWgAAAh8AAAMfAAADTwAAAF4AAABOAAAAXgAAAEQAAAJEAAABRAAAA0QAAAEmAAAAUQAAAVYAAABaAAAAWgAAAFoAAAMfAAABHwAAAl4AAABeAAAATgAAAF4AAABEAAAARAAAAUQAAAJEAAABRAAAAFYAAAJeAAAAWgAAAloAAANaAAAAHwAAAx8AAAFeAAAAXgAAAE4AAABeAAAARAAAA0QAAABEAAADRAAAAUQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAAAmAAAAWwAAAV4AAAAfAAAAHwAAAB8AAAAfAAABXgAAAEoAAAJEAAAASgAAAkoAAABKAAABXgAAAEQAAANEAAABRAAAAw== + tiles: XwAAAF8AAABfAAAAUAAAAF8AAABfAAAAXwAAAEsAAABLAAAASwAAAF8AAABfAAAAXwAAAEUAAAFFAAADRQAAAlIAAAFfAAAATwAAAF8AAABfAAAATQAAAU0AAABNAAACTQAAA0kAAAEqAAABKgAAAl8AAABFAAAARQAAA0UAAABSAAACXwAAAE8AAABfAAAAXwAAAE0AAAFNAAADTQAAAkkAAANJAAACKgAAAyoAAANfAAAARQAAAUUAAAEnAAAAUgAAAF8AAABPAAAAXwAAAF8AAABNAAABTQAAAEkAAAJJAAADSQAAAk4AAAFOAAABSwAAAEUAAABFAAADRQAAAVIAAABfAAAATwAAAF8AAABfAAAAKgAAAyoAAAEqAAABSQAAAU4AAAJOAAACTgAAAksAAABFAAADRQAAAUUAAAFfAAAAXwAAAF8AAABfAAAAXwAAACoAAAIqAAABKgAAAk4AAAFOAAABTgAAAU4AAANLAAACRQAAAkUAAAInAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAqAAADKgAAACoAAAFOAAAATgAAAk4AAAFOAAADXwAAAEUAAAFFAAAARQAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABOAAACSwAAAV8AAABFAAADRQAAAUUAAANfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAMnAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABFAAADRQAAAkUAAAFFAAAARQAAAF8AAABfAAAAWwAAAlsAAAFbAAADIAAAAyAAAAJfAAAAXwAAAE8AAABfAAAASwAAA0UAAAJFAAADRQAAAUUAAAJSAAAAXwAAAFsAAAFbAAAAWwAAAiAAAAIgAAACUAAAAF8AAABPAAAAXwAAAEUAAABFAAABRQAAAEUAAAInAAAAUgAAA1cAAABbAAAAWwAAA1sAAAAgAAADIAAAA18AAABfAAAATwAAAF8AAABFAAADRQAAAUUAAANFAAABRQAAAlcAAAFfAAAAWwAAA1sAAAJbAAACIAAAAiAAAAFfAAAAXwAAAE8AAABfAAAARQAAA0UAAABFAAAARQAAAkUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAAAnAAAAXAAAAl8AAAAgAAADIAAAAiAAAAMgAAABXwAAAEsAAABFAAABSwAAA0sAAAJLAAADXwAAAEUAAABFAAABRQAAAA== -2,-1: ind: -2,-1 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAAA6AAAAOgAAADoAAAAWAAACXgAAAEQAAANEAAAARAAAAU4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAkQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAA1AAAANQAAADUAAAA1AAAANQAAAF4AAABeAAAARAAAAEQAAANEAAAAJQAAACUAAABeAAAATgAAAF4AAABeAAAANQAAADUAAAA1AAAANQAAADUAAABKAAAASgAAAEQAAANEAAACRAAAAyUAAAAlAAAAXgAAAE4AAABeAAAAXgAAADUAAAA1AAAANQAAADUAAAA1AAAAXgAAAF4AAABEAAADRAAAAkQAAABeAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAAFEAAAARAAAA0QAAABEAAACRAAAAkQAAABEAAABRAAAAUQAAANEAAACRAAAAEQAAANEAAAARAAAAEQAAAJEAAABRAAAAyYAAABEAAAARAAAA0QAAAJEAAAARAAAAUQAAANEAAACRAAAAkQAAANEAAADRAAAAUQAAAJEAAAARAAAAkQAAANEAAAARAAAA0QAAANEAAAARAAAAEQAAABEAAAARAAAAkQAAABEAAABRAAAA0QAAANEAAABRAAAA0QAAAJEAAABRAAAA0QAAAFeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAABXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAIgAAACIAAAAmAAAARAAAA14AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAACIAAAAiAAAARAAAAEQAAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAAAiAAAAIgAAAEQAAANEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABeAAAAXgAAAF4AAABeAAAAIgAAACIAAAAmAAAARAAAAV4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAABeAAAATgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAE4AAABeAAAAXgAAAE8AAAARAAAAEQAAAA== + tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAAA7AAAAOwAAADsAAAAXAAADXwAAAEUAAAFFAAABRQAAAk8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABRQAAAUUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAA2AAAANgAAADYAAAA2AAAANgAAAF8AAABfAAAARQAAAUUAAABFAAAAJgAAACYAAABfAAAATwAAAF8AAABfAAAANgAAADYAAAA2AAAANgAAADYAAABLAAACSwAAAkUAAABFAAABRQAAAyYAAAAmAAAAXwAAAE8AAABfAAAAXwAAADYAAAA2AAAANgAAADYAAAA2AAAAXwAAAF8AAABFAAAARQAAA0UAAAJfAAAAXwAAAF8AAABfAAAAUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAANFAAACRQAAAkUAAANFAAADRQAAAkUAAABFAAADRQAAA0UAAANFAAACRQAAA0UAAABFAAACRQAAAEUAAAFFAAABRQAAAicAAABFAAABRQAAAUUAAABFAAACRQAAAUUAAAJFAAACRQAAAEUAAAJFAAADRQAAAkUAAAFFAAABRQAAAUUAAAJFAAACRQAAAUUAAABFAAACRQAAAkUAAANFAAABRQAAAUUAAAFFAAAARQAAAkUAAANFAAABRQAAAEUAAANFAAAARQAAAEUAAAJfAAAAXwAAAF8AAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAABXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAIwAAACMAAAAnAAAARQAAAl8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAACMAAAAjAAAARQAAAUUAAAFfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAAAjAAAAIwAAAEUAAABFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABfAAAAXwAAAF8AAABfAAAAIwAAACMAAAAnAAAARQAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAABfAAAATwAAAF8AAABfAAAATwAAAE8AAABPAAAAXwAAAE8AAABfAAAAXwAAAFAAAAASAAAAEgAAAA== -2,1: ind: -2,1 - tiles: RAAAAUQAAABeAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAABXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABEAAADRAAAAF4AAAAWAAACFgAAARYAAAImAAAARAAAA14AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAAbAAADFgAAABYAAAMWAAAARAAAAkQAAANeAAAATgAAAF4AAABeAAAAWwAAA1sAAABbAAACXgAAAEQAAAJEAAACGwAAABYAAAAWAAABFgAAAkQAAANEAAADXgAAAF4AAABeAAAAXgAAAFsAAAFbAAACWwAAAl4AAABEAAAARAAAAl4AAAAWAAABFgAAABYAAAAmAAAARAAAA14AAABeAAAAXgAAAF4AAABeAAAAWwAAAFsAAANeAAAARAAAAEQAAABeAAAAXgAAABYAAAEWAAABRAAAAUoAAANeAAAAXgAAAF4AAABeAAAAMQAAADEAAAAxAAAAXgAAAEQAAANEAAACGgAAAF4AAAAWAAACFgAAA0QAAAJEAAABTwAAAF4AAABeAAAAXgAAADEAAAAxAAAAMQAAADEAAABEAAADRAAAAxoAAANeAAAAXgAAAF4AAAAmAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAJEAAADRAAAA0QAAABEAAADRAAAAUQAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEoAAABEAAAARAAAAEQAAANEAAADRAAAAEQAAABEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAAAmAAAARAAAA14AAABOAAAATgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAARAAAAUQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABOAAAAXgAAAEQAAAFEAAACXgAAAEQAAANEAAAARAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAmAAAARAAAAEQAAAJEAAAASwAAAEQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAANEAAAARAAAAEQAAAJeAAAARAAAA0sAAABEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAACRAAAAA== + tiles: RQAAA0UAAANfAAAAXwAAAF8AAABfAAAAUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABFAAACRQAAAl8AAAAXAAAAFwAAAhcAAAEnAAAARQAAA18AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAIcAAAAFwAAAxcAAAEXAAADRQAAAUUAAAFfAAAATwAAAF8AAABfAAAAXAAAAVwAAABcAAADXwAAAEUAAAJFAAABHAAAARcAAAIXAAAAFwAAAUUAAABFAAACXwAAAF8AAABfAAAAXwAAAFwAAAJcAAAAXAAAA18AAABFAAABRQAAAF8AAAAXAAABFwAAABcAAAMnAAAARQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXAAAAFwAAABfAAAARQAAAkUAAAFfAAAAXwAAABcAAAAXAAACRQAAA0sAAABfAAAAXwAAAF8AAABfAAAAMgAAADIAAAAyAAAAXwAAAEUAAANFAAADGwAAAl8AAAAXAAABFwAAAUUAAANFAAAAUAAAAF8AAABfAAAAXwAAADIAAAAyAAAAMgAAADIAAABFAAACRQAAARsAAAFfAAAAXwAAAF8AAAAnAAAARQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAABFAAACRQAAAkUAAABFAAADRQAAAUUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEsAAAJFAAABRQAAAkUAAAJFAAAARQAAA0UAAAFFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUAAAAF8AAABfAAAAXwAAAF8AAAAnAAAARQAAAl8AAABPAAAATwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAARQAAAUUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAAF8AAABPAAAAXwAAAEUAAABFAAAAXwAAAEUAAAJFAAADRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAnAAAARQAAAkUAAABFAAADTAAAAEUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAJFAAACRQAAAUUAAAFfAAAARQAAAkwAAABFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAABRQAAAA== -2,0: ind: -2,0 - tiles: RAAAA0QAAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAARAAAAEQAAACYAAABEAAAATwAAAF4AAABeAAAATwAAADEAAAAxAAAAMQAAAF4AAABeAAAAXgAAAF4AAABeAAAAEQAAABEAAABEAAACRAAAA14AAABeAAAAXgAAAF4AAAAxAAAAMQAAADEAAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAABeAAAATgAAAE4AAABeAAAAMQAAADEAAAAxAAAAXgAAAE4AAABeAAAAXgAAAF4AAAA4AAADNAAAACYAAABEAAACXgAAAF4AAABeAAAAXgAAAF4AAAAxAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAOAAAATQAAABEAAABRAAAAV4AAABbAAADWwAAAlsAAAJbAAAAWwAAAFsAAAFbAAABXgAAAE4AAABeAAAATwAAADgAAAI0AAAARAAAAkQAAANeAAAAWwAAAFsAAAFbAAABWwAAA1sAAAFbAAAAWwAAAV4AAABOAAAAXgAAAF4AAABeAAAAXgAAACYAAABEAAACXgAAAFsAAANbAAABWwAAA1sAAABbAAADWwAAAFsAAANPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAV4AAABbAAABWwAAAFsAAAFbAAAAWwAAAlsAAAJbAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAAJeAAAAWwAAA1sAAAFbAAACWwAAAFsAAAFbAAAAWwAAA14AAABeAAAARwAAAF4AAABeAAAATgAAACYAAABEAAADSgAAAlsAAABbAAADWwAAAFsAAAFbAAADWwAAAlsAAAJeAAAARwAAAF4AAABeAAAAXgAAAE4AAABEAAAARAAAAl4AAABbAAACWwAAAVsAAAFbAAABWwAAAVsAAANbAAAAXgAAAF4AAABeAAAARwAAAF4AAABOAAAARAAAAUQAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAASgAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAAARAAAAUQAAABEAAAARAAAAkQAAAJEAAABRAAAAkQAAABEAAAARAAAAEQAAANEAAACRAAAAUQAAAMmAAAARAAAAEQAAAFEAAADRAAAAUQAAABEAAAARAAAAEQAAANEAAABRAAAAEQAAAJEAAABRAAAA0QAAABEAAADRAAAAkQAAAJEAAADRAAAAEQAAAJEAAACRAAAA0QAAABEAAACRAAAAEQAAAFEAAAARAAAAUQAAAFEAAACRAAAAg== + tiles: RQAAAUUAAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAASAAAAEgAAACcAAABFAAACUAAAAF8AAABfAAAAUAAAADIAAAAyAAAAMgAAAF8AAABfAAAAXwAAAF8AAABfAAAAEgAAABIAAABFAAABRQAAAV8AAABfAAAAXwAAAF8AAAAyAAAAMgAAADIAAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAANfAAAATwAAAE8AAABfAAAAMgAAADIAAAAyAAAAXwAAAE8AAABfAAAAXwAAAF8AAAA5AAACNQAAACcAAABFAAACXwAAAF8AAABfAAAAXwAAAF8AAAAyAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAOQAAADUAAABFAAABRQAAAV8AAABcAAABXAAAAVwAAANcAAACXAAAAVwAAAFcAAAAXwAAAE8AAABfAAAAUAAAADkAAAM1AAAARQAAA0UAAABfAAAAXAAAAVwAAAFcAAADXAAAAlwAAAFcAAAAXAAAAV8AAABPAAAAXwAAAF8AAABfAAAAXwAAACcAAABFAAACXwAAAFwAAANcAAABXAAAAVwAAAJcAAAAXAAAAFwAAAJQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABRQAAAl8AAABcAAABXAAAAFwAAAJcAAAAXAAAA1wAAAFcAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAFfAAAAXAAAAFwAAANcAAAAXAAAAFwAAABcAAADXAAAAV8AAABfAAAASAAAAF8AAABfAAAATwAAACcAAABFAAABSwAAAVwAAANcAAAAXAAAA1wAAAFcAAABXAAAA1wAAANfAAAASAAAAF8AAABfAAAAXwAAAE8AAABFAAAARQAAAl8AAABcAAABXAAAAlwAAABcAAACXAAAAVwAAABcAAABXwAAAF8AAABfAAAASAAAAF8AAABPAAAARQAAAUUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASwAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAABRQAAAUUAAAFFAAAARQAAA0UAAAFFAAABRQAAAkUAAABFAAADRQAAAkUAAAFFAAADRQAAAkUAAAMnAAAARQAAA0UAAABFAAACRQAAA0UAAANFAAABRQAAAUUAAAJFAAACRQAAAEUAAABFAAADRQAAA0UAAAFFAAABRQAAAUUAAAFFAAAARQAAAkUAAAJFAAAARQAAAEUAAANFAAADRQAAAEUAAAJFAAACRQAAAUUAAABFAAABRQAAAw== 2,-1: ind: 2,-1 - tiles: XgAAAF4AAABHAAAARwAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEcAAABHAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABEAAACRAAAA0QAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAAXgAAAAAAAAAAAAAAAAAAAF0AAABeAAAARAAAA0QAAAJEAAADXgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABdAAAAXgAAAEQAAAFEAAAARAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF4AAABEAAACRAAAA0QAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAANEAAACRAAAAUQAAABEAAAARAAAA0QAAABEAAADRAAAAkQAAANEAAADRAAAAUQAAANEAAADRAAAAEQAAAFEAAABRAAAAEQAAABEAAADRAAAAEQAAABEAAACRAAAAkQAAAFEAAAARAAAA0QAAAJEAAABRAAAAEQAAAFEAAADRAAAAkQAAANEAAADRAAAAUQAAANEAAADRAAAAEQAAAJEAAACRAAAAEQAAABEAAABRAAAAkQAAAFEAAADRAAAA0QAAABEAAAARAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEoAAANEAAADRAAAAEQAAAFeAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABEAAADXgAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAV4AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAANeAAAAXgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAABRAAAAV4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAkQAAANEAAACXgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: XwAAAF8AAABIAAAASAAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABIAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABFAAACRQAAAUUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAAXwAAAAAAAAAAAAAAAAAAAF4AAABfAAAARQAAAEUAAAFFAAABXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAABeAAAAXwAAAEUAAAFFAAABRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF8AAABFAAAARQAAAkUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUAAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAJFAAADRQAAAUUAAAJFAAABRQAAAUUAAAFFAAAARQAAA0UAAANFAAADRQAAAEUAAAJFAAAARQAAAEUAAABFAAACRQAAA0UAAANFAAAARQAAAEUAAAFFAAACRQAAAUUAAABFAAAARQAAAEUAAAFFAAADRQAAAkUAAAJFAAABRQAAAEUAAAFFAAADRQAAAEUAAABFAAABRQAAAEUAAAFFAAABRQAAAEUAAAJFAAAARQAAAUUAAAJFAAACRQAAAEUAAAFFAAADRQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEsAAABFAAABRQAAAUUAAABfAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABFAAABXwAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAV8AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABfAAAAXwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAADRQAAA18AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAUUAAAFFAAACXwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,0: ind: 2,0 - tiles: RAAAA0QAAAFEAAACXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAFEAAADRAAAA14AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAEQAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAUQAAABEAAADXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAANEAAADRAAAAV4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAADRAAAA0QAAAJEAAABRAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAUQAAAJEAAACRAAAAUQAAAJeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAJKAAABXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAACXgAAAF4AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAF4AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAFeAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAADXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAARAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEoAAANEAAADRAAAA0QAAAJEAAAARAAAAEQAAAJEAAADRAAAAEQAAABEAAADRAAAAkQAAAFEAAABRAAAAEQAAANEAAAARAAAAUQAAAJEAAAARAAAA0QAAABEAAAARAAAAUQAAABEAAACRAAAA0QAAAFEAAACRAAAAEQAAAFEAAAARAAAAUQAAAJEAAADRAAAAUQAAABEAAADRAAAAUQAAAFEAAAARAAAAkQAAAFEAAABRAAAAkQAAANEAAABRAAAAUQAAAJEAAACRAAAAA== + tiles: RQAAAEUAAABFAAADXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAJFAAACRQAAA18AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAACRQAAAEUAAAFfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAACXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAABRQAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAACRQAAA0UAAAFFAAABRQAAAV8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAA0UAAAJFAAAARQAAAUUAAAJfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAANLAAADXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAADXwAAAF8AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAA18AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABfAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAARQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEsAAABFAAACRQAAAkUAAABFAAABRQAAA0UAAABFAAAARQAAA0UAAAFFAAADRQAAA0UAAAFFAAAARQAAAUUAAAJFAAADRQAAAkUAAANFAAABRQAAAUUAAAJFAAADRQAAA0UAAAFFAAADRQAAAkUAAABFAAABRQAAAEUAAANFAAAARQAAAEUAAANFAAADRQAAAUUAAAJFAAAARQAAA0UAAABFAAAARQAAA0UAAABFAAACRQAAAUUAAABFAAABRQAAAUUAAAFFAAAARQAAAw== 2,1: ind: 2,1 - tiles: RAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAAEQAAAFeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABEAAADXgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAARAAAAl4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAANeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAl4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAANeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAl4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAFeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAA14AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAANeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAA14AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: RQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAAEUAAANfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABFAAACXwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAARQAAA18AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAANfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAV8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAJfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAABXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAV8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAANfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAABXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAV8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAANfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAADXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAA18AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -3,-1: ind: -3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAE4AAABOAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAE4AAABeAAAAJQAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABOAAAAXgAAACUAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAEcAAABeAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAGwAAAkQAAAFHAAAAXgAAAEcAAABeAAAAGwAAABsAAAM6AAAAOgAAABsAAAMbAAAAXgAAAF4AAABeAAAATwAAABYAAAFEAAAAXgAAAF4AAABeAAAAXgAAABsAAAAbAAABOgAAADoAAAAbAAAAGwAAAl4AAABPAAAAXgAAAF4AAABeAAAARAAAAl4AAABeAAAAXgAAAF4AAAAbAAACGwAAAzoAAAA6AAAAGwAAABsAAAFeAAAAFgAAAhYAAAEWAAADXgAAAEQAAAEAAAAAAAAAAAAAAABeAAAAGwAAARsAAAA6AAAAOgAAABsAAAAbAAABXgAAABYAAAMWAAABFgAAAhsAAANEAAACAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAGwAAAhsAAANeAAAAXgAAAF4AAAAWAAAAFgAAAhYAAAFeAAAARAAAAQAAAAAAAAAAAAAAAF4AAABEAAACRAAAA0QAAAJEAAABRAAAAUoAAABeAAAAFgAAARYAAAAWAAACRAAAAEQAAAIAAAAAAAAAAAAAAABeAAAARAAAA0QAAANEAAACRAAAAkQAAAJEAAACGwAAARYAAAEWAAAAFgAAAkQAAABEAAAAAAAAAAAAAAAAAAAAXgAAAEQAAANEAAACRAAAAEQAAANEAAACRAAAAV4AAAAWAAAAFgAAABYAAAJeAAAARAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAE8AAABfAAAAJgAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF8AAABPAAAATwAAAE8AAABfAAAAXwAAAF8AAABPAAAAXwAAACYAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAEgAAABfAAAATwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAHAAAAkUAAABIAAAAXwAAAEgAAABfAAAAHAAAAhwAAAI7AAAAOwAAABwAAAIcAAACXwAAAF8AAABfAAAAUAAAABcAAABFAAABXwAAAF8AAABfAAAAXwAAABwAAAMcAAACOwAAADsAAAAcAAABHAAAAF8AAABQAAAAXwAAAF8AAABfAAAARQAAAl8AAABfAAAAXwAAAF8AAAAcAAACHAAAAzsAAAA7AAAAHAAAABwAAABfAAAAFwAAAxcAAAEXAAABXwAAAEUAAAAAAAAAAAAAAAAAAABfAAAAHAAAARwAAAM7AAAAOwAAABwAAAEcAAADXwAAABcAAAIXAAACFwAAAhwAAANFAAABAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAHAAAARwAAANfAAAAXwAAAF8AAAAXAAACFwAAAhcAAABfAAAARQAAAgAAAAAAAAAAAAAAAF8AAABFAAAARQAAAUUAAANFAAAARQAAAksAAAJfAAAAFwAAAhcAAAAXAAACRQAAA0UAAAMAAAAAAAAAAAAAAABfAAAARQAAAEUAAABFAAADRQAAAkUAAANFAAACHAAAAhcAAAMXAAABFwAAA0UAAAFFAAAAAAAAAAAAAAAAAAAAXwAAAEUAAABFAAADRQAAAUUAAAJFAAABRQAAAl8AAAAXAAAAFwAAAxcAAABfAAAARQAAAg== -3,0: ind: -3,0 - tiles: AAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAEoAAAFEAAABRAAAA14AAABeAAAAXgAAAF4AAABeAAAARAAAAQAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABKAAAASgAAA0QAAANEAAABRAAAAEQAAABEAAABXgAAAEQAAAMAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAASgAAAEQAAABEAAACRAAAAkQAAAFEAAADRAAAA14AAABEAAACAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAACRAAAAUQAAAFeAAAASgAAAF4AAABeAAAARAAAAQAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABKAAAARAAAAkQAAAJEAAACXgAAAEQAAAFEAAACSgAAAUQAAAIAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAASgAAAkoAAANEAAABRAAAAF4AAABKAAACRAAAA0oAAAFEAAACAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAEoAAAJEAAABRAAAAUQAAABEAAACRAAAAUQAAANKAAABRAAAAAAAAAAAAAAAAAAAAF4AAABbAAABWwAAAF4AAABEAAAARAAAAkQAAABEAAACRAAAA0QAAAFEAAADSgAAA0QAAAMAAAAAAAAAAAAAAABeAAAAWwAAAlsAAAFeAAAARAAAAUQAAAFEAAADXgAAAF4AAABeAAAAXgAAAF4AAABEAAAAAAAAAAAAAAAAAAAAXgAAAFsAAAJbAAABSgAAAEQAAAJEAAACRAAAAl4AAAAWAAADFgAAAhYAAAJeAAAARAAAAwAAAAAAAAAAAAAAAF4AAABbAAACWwAAAF4AAABEAAADRAAAAkQAAAMbAAADFgAAAhYAAAIWAAABXgAAAEQAAAFeAAAAXgAAAF4AAABeAAAAWwAAA1sAAAFeAAAARAAAAUQAAAJEAAAAXgAAABYAAAAWAAAAFgAAAl4AAABEAAABRAAAA0QAAAFKAAAAXgAAAF4AAABeAAAAXgAAAF4AAABKAAADXgAAAF4AAABeAAAARAAAA14AAABeAAAARAAAAkQAAAJEAAABRAAAAEQAAABEAAACRAAAAUQAAANEAAABRAAAAEQAAANEAAACRAAAAUQAAAFEAAAARAAAAkQAAANEAAABRAAAAkQAAAFEAAACRAAAAEQAAANEAAABRAAAAkQAAAFEAAADRAAAAUQAAAFEAAAARAAAAkQAAABEAAACRAAAA0QAAAJEAAAARAAAAUQAAAFEAAACRAAAAUQAAANEAAABRAAAAUQAAAJEAAADRAAAAEQAAANEAAACRAAAAg== + tiles: AAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAEsAAANFAAADRQAAA18AAABfAAAAXwAAAF8AAABfAAAARQAAAQAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABLAAABSwAAAUUAAANFAAABRQAAAEUAAABFAAACXwAAAEUAAAIAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAASwAAAUUAAAJFAAADRQAAAkUAAABFAAABRQAAAF8AAABFAAADAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAACRQAAAkUAAAJfAAAASwAAAl8AAABfAAAARQAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABLAAABRQAAA0UAAANFAAACXwAAAEUAAAJFAAABSwAAAUUAAAMAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAASwAAA0sAAAFFAAACRQAAA18AAABLAAADRQAAAksAAAJFAAABAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAEsAAAFFAAADRQAAA0UAAAFFAAACRQAAAkUAAAFLAAACRQAAAAAAAAAAAAAAAAAAAF8AAABcAAADXAAAAl8AAABFAAADRQAAAEUAAAJFAAADRQAAA0UAAANFAAAASwAAAEUAAAMAAAAAAAAAAAAAAABfAAAAXAAAAlwAAAFfAAAARQAAAEUAAANFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAAAAAAAAAAAAAAAAAAXwAAAFwAAANcAAACSwAAAUUAAAFFAAAARQAAAF8AAAAXAAABFwAAARcAAABfAAAARQAAAQAAAAAAAAAAAAAAAF8AAABcAAABXAAAAF8AAABFAAACRQAAAEUAAAMcAAABFwAAARcAAAEXAAAAXwAAAEUAAAJfAAAAXwAAAF8AAABfAAAAXAAAAlwAAANfAAAARQAAAUUAAAFFAAACXwAAABcAAAEXAAAAFwAAAl8AAABFAAAARQAAA0UAAAJLAAABXwAAAF8AAABfAAAAXwAAAF8AAABLAAAAXwAAAF8AAABfAAAARQAAAF8AAABfAAAARQAAAUUAAAFFAAABRQAAAEUAAANFAAAARQAAAkUAAANFAAAARQAAAEUAAANFAAABRQAAAkUAAABFAAABRQAAA0UAAABFAAABRQAAAUUAAABFAAAARQAAAkUAAABFAAABRQAAA0UAAAJFAAADRQAAAkUAAANFAAAARQAAAEUAAABFAAACRQAAAUUAAAJFAAADRQAAAkUAAAJFAAADRQAAA0UAAABFAAADRQAAA0UAAAFFAAABRQAAAEUAAAFFAAADRQAAAw== -3,1: ind: -3,1 - tiles: HQAAAR0AAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABsAAAJeAAAAFgAAAxsAAAFeAAAARAAAA14AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABeAAAAFgAAARYAAAMWAAAAXgAAAE8AAABeAAAAXgAAAEQAAAIAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAABYAAAAWAAABFgAAAl4AAABeAAAAXgAAAF4AAABEAAACXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAF4AAAAWAAADFgAAAhYAAABeAAAAXgAAAF4AAABeAAAARAAAAgAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABeAAAAFgAAABYAAAIWAAABXgAAAF4AAABeAAAAXgAAAEQAAAEAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXgAAABYAAAIWAAAAFgAAAU8AAABeAAAAXgAAAF4AAABEAAADAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF4AAAAWAAACFgAAAhYAAANeAAAAXgAAAF4AAABeAAAARAAAAwAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABeAAAAFgAAAhYAAAAWAAABFgAAAF4AAABeAAAATwAAAEQAAAEAAAAAAAAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAAAWAAACFgAAABYAAANeAAAAXgAAAF4AAABEAAAAAAAAAAAAAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAFgAAAxYAAAMWAAABXgAAAF4AAABeAAAARAAAAgAAAAAAAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAABYAAAMWAAACFgAAAV4AAABeAAAAXgAAAEQAAAMAAAAAAAAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAAAWAAACFgAAABYAAANeAAAAXgAAAF4AAABEAAACAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF4AAAAbAAADFgAAARYAAAEWAAAAXgAAAF4AAABeAAAARAAAAgAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABeAAAAFgAAARYAAAMWAAADXgAAAF4AAABeAAAAXgAAAEQAAAMAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXgAAABYAAAAWAAADFgAAAV4AAABOAAAAXgAAAF4AAABEAAADAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAARAAAAw== + tiles: HgAAAB4AAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABwAAABfAAAAFwAAABwAAAFfAAAARQAAAl8AAABfAAAAXwAAAAAAAABeAAAAXgAAAF4AAABfAAAAFwAAARcAAAAXAAABXwAAAFAAAABfAAAAXwAAAEUAAAIAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXwAAABcAAAAXAAADFwAAAF8AAABfAAAAXwAAAF8AAABFAAACAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF8AAAAXAAADFwAAARcAAAFfAAAAXwAAAF8AAABfAAAARQAAAgAAAAAAAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAFwAAABcAAAEXAAACXwAAAF8AAABfAAAAXwAAAEUAAAIAAAAAAAAAAF4AAABeAAAAXwAAABcAAAMXAAADFwAAAhcAAAEXAAACFwAAAlAAAABfAAAAXwAAAF8AAABFAAABAAAAAAAAAABeAAAAXgAAAF8AAAAcAAADHAAAAxwAAAIXAAACFwAAABcAAABfAAAAXwAAAF8AAABfAAAARQAAAgAAAAAAAAAAXgAAAF4AAABfAAAAFwAAAxcAAAIXAAADFwAAABcAAAEXAAADFwAAA18AAABfAAAAUAAAAEUAAAMAAAAAAAAAAF4AAABeAAAAXwAAABwAAAAcAAAAHAAAAxcAAAAXAAAAFwAAABcAAABfAAAAXwAAAF8AAABFAAABAAAAAF4AAABeAAAAXgAAAF8AAAAXAAADFwAAAxcAAAMXAAAAFwAAABcAAAEXAAADXwAAAF8AAABfAAAARQAAAAAAAABfAAAAXwAAAF8AAABfAAAAFwAAARcAAAMXAAABFwAAARcAAAMXAAAAFwAAAl8AAABfAAAAXwAAAEUAAAEAAAAAHAAAAxwAAAIcAAACHAAAARcAAAAXAAACFwAAABcAAAIXAAADFwAAABcAAABfAAAAXwAAAF8AAABFAAACAAAAABwAAAMcAAAAHAAAAxwAAAEXAAADFwAAAhcAAAIXAAACFwAAAhcAAAEXAAABXwAAAF8AAABfAAAARQAAAQAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAhcAAAIXAAACXwAAAF8AAABfAAAAXwAAAEUAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAABcAAAIXAAAAFwAAAl8AAABPAAAAXwAAAF8AAABFAAADAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAARQAAAQ== 3,0: ind: 3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAA0QAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAANEAAACTwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAADRAAAA14AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAA0QAAABPAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAUUAAAJfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAFFAAADUAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAV8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAANQAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,1: ind: 3,1 - tiles: TwAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: UAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,2: ind: 2,2 - tiles: RAAAAl4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABEAAABXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAAEQAAAFEAAABRAAAAkQAAANEAAABRAAAAEQAAABEAAACRAAAAkQAAAFEAAAARAAAA0QAAANEAAABRAAAAkQAAAJEAAAARAAAAUQAAAFEAAABRAAAAkQAAAFEAAABRAAAAUQAAANEAAABRAAAAEQAAABEAAADRAAAA0QAAABEAAABRAAAAkQAAAFEAAACRAAAAUQAAAFEAAACRAAAAkQAAAJEAAADRAAAA0QAAAJEAAADRAAAAEQAAAJEAAABRAAAAl4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAAARAAAAUQAAAFEAAADRAAAAUQAAAIpAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABEAAADRAAAAEQAAAFEAAADRAAAAkQAAABEAAADKQAAAV4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAF4AAABEAAACRAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAABYAAAIWAAADFgAAAhYAAAFeAAAARAAAAUQAAAIWAAABFgAAASYAAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAAAWAAADFgAAABYAAAMWAAADGwAAAkQAAANEAAAAFgAAABYAAAMWAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAABYAAAIWAAACFgAAA14AAABEAAABRAAAAhYAAAIWAAADJgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAACFgAAARYAAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAABbAAADWwAAAFsAAANbAAADWwAAAlsAAAFeAAAAHQAAAh0AAAAmAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAADWwAAAFsAAAJbAAAAXgAAAFsAAAJbAAACXgAAAA== + tiles: RQAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAFfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABFAAADXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAARQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAAEUAAAJFAAACRQAAAUUAAANFAAABRQAAAkUAAABFAAAARQAAAUUAAAFFAAABRQAAAUUAAABFAAADRQAAAkUAAAJFAAABRQAAAEUAAABFAAACRQAAAEUAAAFFAAAARQAAAkUAAANFAAAARQAAAUUAAAJFAAAARQAAAkUAAABFAAADRQAAAkUAAANFAAABRQAAAkUAAANFAAAARQAAAEUAAABFAAADRQAAAUUAAABFAAAARQAAAUUAAANFAAAARQAAAV8AAABfAAAAUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAABRQAAA0UAAABFAAACRQAAA0UAAAIqAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABFAAACRQAAAkUAAANFAAADRQAAAEUAAAFFAAAAKgAAAV8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAA18AAABFAAABRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAABcAAAIXAAABFwAAARcAAAFfAAAARQAAAkUAAAIXAAACFwAAAScAAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAAAXAAACFwAAAxcAAAIXAAAAHAAAAUUAAAJFAAADFwAAAhcAAAIXAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAxcAAAAXAAABFwAAAF8AAABFAAACRQAAAxcAAAMXAAACJwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAABFwAAAhcAAAJfAAAAXwAAAF8AAABfAAAAXwAAAFwAAAFcAAACXAAAA1wAAAFcAAABXAAAA1wAAAFfAAAAHgAAAx4AAAInAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAADXAAAAlwAAAJcAAADXwAAAFwAAAJcAAACXwAAAA== 3,2: ind: 3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAADTwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAABPAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAJeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAACXgAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAA14AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEoAAABeAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAADXgAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAl4AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAANFAAADUAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAV8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAA0UAAAFQAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAJfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAACXwAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAF8AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAANfAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAADXwAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAV8AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,2: ind: 1,2 - tiles: WwAAA14AAAAfAAAAHwAAAB8AAAAfAAABXgAAAEoAAAFEAAAARAAAA0QAAABEAAAASgAAAEQAAAJEAAABRAAAAlsAAANeAAAAHwAAAx8AAAIfAAADHwAAA14AAABKAAACRAAAAEQAAAJEAAADRAAAAkoAAAFEAAADRAAAACYAAABbAAACXgAAAB8AAAEfAAADHwAAAB8AAAJeAAAASgAAAUQAAANEAAACRAAAAUoAAANeAAAARAAAAkQAAANEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAASgAAAkoAAAJeAAAAXgAAAEQAAAFEAAABRAAAAkQAAAFEAAABSgAAAEQAAANEAAABRAAAA0QAAAFEAAACRAAAAEQAAABEAAAARAAAAUQAAANEAAACRAAAA0QAAANEAAAARAAAA0QAAANEAAADRAAAA0QAAANEAAAARAAAAEQAAABEAAABRAAAAUQAAAFEAAAARAAAAEQAAAMmAAAARAAAAUQAAAJEAAACRAAAA0QAAANEAAABRAAAAUQAAAJEAAADRAAAAkQAAANEAAAARAAAAEQAAAJEAAAARAAAAV4AAABEAAADRAAAAV4AAABeAAAAXgAAAEQAAAFEAAACXgAAAE8AAABeAAAAXgAAAF4AAABeAAAASgAAAUoAAABeAAAARAAAAkQAAANVAAABVQAAAlUAAABEAAAARAAAAl4AAABeAAAAXgAAAE4AAABeAAAAKQAAAU0AAAJNAAAAXgAAAEQAAABEAAACVQAAAVUAAABVAAAARAAAAUQAAAJeAAAAXgAAAF4AAABOAAAAXgAAACkAAANNAAAATQAAAF4AAABEAAACRAAAAlUAAABVAAACVQAAAUQAAAFEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAASgAAAUoAAAJeAAAARAAAAkQAAAFEAAADRAAAAUQAAABEAAACRAAAAF4AAABeAAAAXgAAACYAAAAWAAABFgAAAR4AAAMeAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABFgAAABYAAAMeAAADHgAAAFoAAANaAAADWgAAAk8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAJgAAABYAAAAWAAABHgAAAh4AAAJeAAAAWgAAAVoAAAJeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAMWAAAAFgAAAh4AAAMeAAAAXgAAAFoAAAFaAAAAXgAAAE4AAABeAAAAXgAAAF4AAABbAAABWwAAAVsAAAImAAAAHQAAAx0AAAAZAAAAGQAAAQ== + tiles: XAAAA18AAAAgAAACIAAAACAAAAEgAAACXwAAAEsAAABFAAADRQAAAEUAAANFAAADSwAAAEUAAAJFAAABRQAAAFwAAAJfAAAAIAAAASAAAAMgAAAAIAAAAV8AAABLAAABRQAAAkUAAABFAAAARQAAAUsAAAFFAAADRQAAACcAAABcAAAAXwAAACAAAAIgAAAAIAAAACAAAABfAAAASwAAAkUAAAJFAAACRQAAAEsAAAFfAAAARQAAAEUAAABFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASwAAAUsAAANfAAAAXwAAAEUAAABFAAADRQAAAUUAAAFFAAABSwAAAkUAAAFFAAADRQAAAUUAAAJFAAAARQAAAkUAAAFFAAADRQAAA0UAAAJFAAAARQAAA0UAAAFFAAAARQAAAUUAAAJFAAADRQAAAkUAAAFFAAADRQAAAUUAAABFAAABRQAAAEUAAAFFAAAARQAAAEUAAAInAAAARQAAAUUAAABFAAAARQAAA0UAAABFAAACRQAAA0UAAABFAAAARQAAAEUAAANFAAACRQAAAEUAAANFAAAARQAAAV8AAABFAAABRQAAAl8AAABfAAAAXwAAAEUAAABFAAACXwAAAFAAAABfAAAAXwAAAF8AAABfAAAASwAAAUsAAAJfAAAARQAAAUUAAABWAAADVgAAAlYAAAFFAAADRQAAAV8AAABfAAAAXwAAAE8AAABfAAAAKgAAAk4AAABOAAACXwAAAEUAAANFAAACVgAAAlYAAAJWAAABRQAAAEUAAAFfAAAAXwAAAF8AAABPAAAAXwAAACoAAAFOAAAATgAAAV8AAABFAAADRQAAA1YAAABWAAABVgAAAEUAAAJFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASwAAAksAAANfAAAARQAAAkUAAAFFAAAARQAAA0UAAAFFAAADRQAAAF8AAABfAAAAXwAAACcAAAAXAAABFwAAAR8AAAIfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAACFwAAAxcAAAIfAAACHwAAAVsAAABbAAACWwAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAJwAAABcAAAEXAAAAHwAAAR8AAAFfAAAAWwAAA1sAAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAAXAAAAFwAAAB8AAAMfAAADXwAAAFsAAAJbAAACXwAAAE8AAABfAAAAXwAAAF8AAABcAAACXAAAA1wAAAEnAAAAHgAAAx4AAAMaAAAAGgAAAA== 3,-1: ind: 3,-1 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAANEAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAABRAAAA14AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAkQAAAJeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAV4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAANeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAFEAAADXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAABRAAAA14AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAkQAAAFeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: XwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAADXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAUUAAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAANFAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAADRQAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAANfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAFFAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAADRQAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAA0UAAAFfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -4,-1: ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAARwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABHAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAASAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABIAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -4,0: ind: -4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAEQAAANEAAACRAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAE8AAABEAAADRAAAA0QAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAARAAAA0QAAAFEAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAATwAAAEQAAAJEAAADRAAAAg== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEUAAAFFAAABRQAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAFAAAABFAAACRQAAAkUAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAARQAAA0UAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAUAAAAEUAAAJFAAADRQAAAA== -4,1: ind: -4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAB0AAAEdAAADHQAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAB4AAAEeAAADHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,2: ind: 0,2 - tiles: RAAAAl4AAABRAAAAXgAAAFIAAAJSAAACUgAAAVEAAANeAAAAFgAAABYAAAMWAAACFgAAA14AAABbAAADWwAAAUQAAAFeAAAAUQAAAVEAAAFSAAABUgAAA1IAAAJRAAABXgAAABYAAAMWAAABFgAAABYAAAFeAAAAWwAAAVsAAANEAAAAXgAAAFEAAANeAAAAUQAAAFEAAAJRAAABVgAAAl4AAAAWAAACFgAAABYAAAMWAAADXgAAAFsAAAJbAAACRAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAACRAAAAkQAAANEAAADRAAAA0QAAAJEAAACRAAAAEQAAANEAAADRAAAAUQAAAJEAAACRAAAA0QAAABEAAADRAAAA0QAAABEAAABRAAAAkQAAANEAAABRAAAAUQAAABEAAADRAAAAEQAAANEAAAARAAAAUQAAAFEAAABRAAAAUQAAAJEAAACRAAAAkQAAAFEAAADRAAAAUQAAAFEAAACRAAAAUQAAANEAAADRAAAAUQAAAFEAAADRAAAAkQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAJEAAADXgAAAE4AAABOAAAATgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAADEAAAAxAAAAXgAAAEQAAANEAAACRAAAAU8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAxAAAAMQAAAF4AAABEAAAARAAAAEQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAMQAAADEAAAAxAAAARAAAAEQAAANEAAABXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAABRAAAAV4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABbAAAAWwAAAVsAAAJEAAADRAAAAEQAAANeAAAAXgAAAF4AAAAsAAAALAAAAF4AAABdAAAAXgAAAF4AAABeAAAAWwAAAlsAAABeAAAARAAAAEQAAANEAAAAGwAAARYAAAMbAAAAGgAAABoAAANeAAAAXQAAAF4AAABeAAAAXgAAAFsAAABbAAADXgAAAEQAAABEAAABRAAAARsAAAMWAAABGwAAAxoAAAIaAAACXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAQ== + tiles: RQAAAF8AAABSAAABXwAAAFMAAAJTAAADUwAAAFIAAABfAAAAFwAAABcAAAMXAAABFwAAAV8AAABcAAACXAAAAkUAAAJfAAAAUgAAAVIAAAJTAAADUwAAAFMAAANSAAADXwAAABcAAAMXAAADFwAAAhcAAAJfAAAAXAAAAVwAAAJFAAAAXwAAAFIAAAFfAAAAUgAAAFIAAANSAAADVwAAA18AAAAXAAADFwAAABcAAAIXAAAAXwAAAFwAAANcAAAARQAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAADRQAAAkUAAAFFAAACRQAAA0UAAABFAAABRQAAAkUAAABFAAAARQAAAUUAAABFAAAARQAAAkUAAAFFAAADRQAAA0UAAANFAAADRQAAA0UAAAFFAAAARQAAAkUAAAJFAAABRQAAAUUAAABFAAACRQAAAEUAAANFAAADRQAAAkUAAABFAAADRQAAAEUAAANFAAABRQAAAkUAAABFAAACRQAAAEUAAAJFAAAARQAAAUUAAAJFAAABRQAAA0UAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAAXwAAAE8AAABPAAAATwAAAF8AAABfAAAATwAAAE8AAABPAAAAXwAAADIAAAAyAAAAXwAAAEUAAABFAAABRQAAA1AAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAyAAAAMgAAAF8AAABFAAAARQAAAkUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAMgAAADIAAAAyAAAARQAAAUUAAAFFAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAAARQAAA18AAABeAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABcAAACXAAAA1wAAANFAAAARQAAAEUAAAJfAAAAXwAAAF8AAAAtAAAALQAAAF8AAABeAAAAXwAAAF8AAABfAAAAXAAAAFwAAABfAAAARQAAA0UAAANFAAAAHAAAAxcAAAEcAAAAGwAAAxsAAAFfAAAAXgAAAF8AAABfAAAAXwAAAFwAAAJcAAAAXwAAAEUAAABFAAAARQAAARwAAAMXAAADHAAAARsAAAMbAAABXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAQ== -1,2: ind: -1,2 - tiles: MwAAADMAAAAzAAAAXgAAABYAAAAWAAABFgAAAF4AAAAWAAADFgAAAxYAAANeAAAAXQAAAF4AAABEAAACRAAAADMAAAAzAAAAMwAAAF4AAAAWAAABFgAAARYAAAAbAAADXgAAAF4AAABeAAAAXgAAAF0AAABeAAAARAAAAiYAAAAzAAAAMwAAADMAAABeAAAAFgAAARYAAAAWAAABXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAEQAAAJEAAACSgAAAkoAAANKAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAUQAAAJEAAACRAAAAUQAAANEAAACRAAAAUQAAAJEAAADRAAAAkQAAAFEAAABRAAAAEQAAAFEAAADRAAAAkQAAAJEAAABRAAAA0QAAANEAAAARAAAAUQAAAFEAAADRAAAAEQAAABEAAACRAAAAUQAAABEAAACRAAAAUQAAAFEAAABRAAAAUQAAABEAAACRAAAA0QAAAFEAAAARAAAAkQAAANEAAADRAAAAUQAAAFEAAADRAAAA0QAAAJEAAACRAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAAFEAAACXgAAAE4AAABOAAAAXgAAAE4AAABOAAAAXgAAAE4AAABOAAAAXgAAAE4AAABOAAAAXgAAAEQAAABEAAADRAAAAF4AAABOAAAATgAAAF4AAABOAAAATgAAAF4AAABOAAAATgAAAF4AAABOAAAATgAAAF4AAABEAAADJgAAAEQAAANeAAAATgAAAE4AAABeAAAATgAAAE4AAABeAAAATgAAAE4AAABeAAAATgAAAE4AAABeAAAARAAAAUQAAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABOAAAAXgAAAF4AAABOAAAAXgAAAF4AAABOAAAAXgAAAEQAAAJEAAABRAAAAUQAAANEAAABRAAAAUQAAABEAAAARAAAAEQAAAJEAAAARAAAAkQAAABEAAAARAAAAV4AAABEAAACJgAAAEQAAANEAAACRAAAAEQAAAJEAAABRAAAAEQAAANEAAABRAAAAEQAAANEAAADRAAAA0QAAAFeAAAARAAAA0QAAABEAAADRAAAAUQAAANEAAAARAAAA0QAAABEAAACRAAAAkQAAANEAAACRAAAA0QAAABEAAABXgAAAEQAAAMmAAAAXgAAAF4AAABEAAAARAAAA14AAABeAAAARAAAAUQAAANEAAAARAAAAV4AAABeAAAAXgAAAF4AAABEAAABRAAAAQ== + tiles: NAAAADQAAAA0AAAAXwAAABcAAAMXAAABFwAAAV8AAAAXAAAAFwAAARcAAAJfAAAAXgAAAF8AAABFAAADRQAAAzQAAAA0AAAANAAAAF8AAAAXAAAAFwAAAhcAAAEcAAADXwAAAF8AAABfAAAAXwAAAF4AAABfAAAARQAAAycAAAA0AAAANAAAADQAAABfAAAAFwAAAxcAAAEXAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAEUAAABFAAADSwAAAEsAAAJLAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAEUAAABFAAAARQAAAEUAAAFFAAABRQAAAEUAAAFFAAADRQAAA0UAAABFAAADRQAAAkUAAAFFAAADRQAAAkUAAAFFAAACRQAAAEUAAABFAAACRQAAAUUAAANFAAACRQAAAkUAAABFAAADRQAAAUUAAANFAAACRQAAAkUAAAFFAAACRQAAAEUAAABFAAAARQAAAEUAAAFFAAABRQAAA0UAAAJFAAAARQAAA0UAAAJFAAACRQAAAkUAAABFAAACRQAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAAJFAAACXwAAAE8AAABPAAAAXwAAAE8AAABPAAAAXwAAAE8AAABPAAAAXwAAAE8AAABPAAAAXwAAAEUAAANFAAABRQAAA18AAABPAAAATwAAAF8AAABPAAAATwAAAF8AAABPAAAATwAAAF8AAABPAAAATwAAAF8AAABFAAADJwAAAEUAAAFfAAAATwAAAE8AAABfAAAATwAAAE8AAABfAAAATwAAAE8AAABfAAAATwAAAE8AAABfAAAARQAAA0UAAAFfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABPAAAAXwAAAF8AAABPAAAAXwAAAF8AAABPAAAAXwAAAEUAAAFFAAADRQAAAUUAAAFFAAABRQAAAkUAAABFAAABRQAAA0UAAAJFAAABRQAAAEUAAANFAAAARQAAA18AAABFAAACJwAAAEUAAAFFAAADRQAAAkUAAANFAAACRQAAAkUAAANFAAACRQAAAkUAAAFFAAAARQAAAUUAAAFfAAAARQAAAkUAAAFFAAADRQAAAEUAAANFAAAARQAAAEUAAAFFAAADRQAAAkUAAANFAAADRQAAA0UAAAJFAAADXwAAAEUAAAAnAAAAXwAAAF8AAABFAAADRQAAA18AAABfAAAARQAAAkUAAANFAAADRQAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAw== -2,2: ind: -2,2 - tiles: RAAAAkQAAAJeAAAARAAAAUsAAABEAAADXgAAAE4AAABeAAAAXgAAAEQAAAJEAAADRAAAAUQAAAFEAAADRAAAASYAAABEAAABRAAAAUQAAAJLAAAARAAAAV4AAABOAAAAXgAAAF4AAABEAAABRAAAAkQAAANEAAABRAAAA0QAAANEAAAARAAAAV4AAABEAAACRAAAA0QAAAJeAAAATgAAAF4AAABeAAAARAAAA0QAAAFEAAABRAAAAEQAAABEAAAARAAAAkQAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAEoAAAJeAAAAXgAAAEQAAABEAAABRAAAAUQAAAJEAAAARAAAAkQAAAFEAAAARAAAA0QAAAFEAAAARAAAA0QAAANEAAABRAAAA0QAAAMmAAAARAAAAkQAAANEAAABRAAAAEQAAAJEAAABRAAAA0QAAAJEAAACRAAAAUQAAANEAAAARAAAAEQAAAJEAAADRAAAAEQAAAJEAAAARAAAAkQAAAFEAAAARAAAAEoAAAJEAAAARAAAAUQAAAFEAAABRAAAAkQAAANEAAAARAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAE4AAABeAAAAXgAAAF4AAABEAAABRAAAAkQAAAJEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABOAAAAXgAAAF4AAABeAAAARAAAAkQAAAFEAAACRAAAAkcAAABHAAAARwAAAEcAAABHAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAABRAAAA0QAAAJHAAAARwAAAEcAAABHAAAARwAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEoAAAJeAAAARwAAAEcAAABHAAAARwAAAEcAAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAABEAAAARAAAAkcAAABHAAAARwAAAEcAAABHAAAAXgAAAF0AAABeAAAAXgAAAE8AAABPAAAAXgAAAEQAAANEAAACRAAAAEQAAAFHAAAARwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAFgAAA14AAABEAAACRAAAA0QAAABEAAADRwAAAEcAAAAbAAABFgAAARYAAAEbAAADFgAAAhYAAAAbAAABGwAAABsAAAMbAAAARAAAA0QAAABEAAACRAAAAQ== + tiles: RQAAAUUAAANfAAAARQAAAEwAAABFAAADXwAAAE8AAABfAAAAXwAAAEUAAAFFAAADRQAAAEUAAANFAAACRQAAAicAAABFAAABRQAAA0UAAABMAAAARQAAAF8AAABPAAAAXwAAAF8AAABFAAABRQAAAEUAAAFFAAAARQAAAkUAAANFAAAARQAAAV8AAABFAAAARQAAA0UAAABfAAAATwAAAF8AAABfAAAARQAAAkUAAAJFAAADRQAAAEUAAANFAAABRQAAAUUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAAF8AAABfAAAAXwAAAEsAAAFfAAAAXwAAAEUAAAFFAAACRQAAAEUAAAJFAAADRQAAAUUAAABFAAADRQAAAkUAAABFAAAARQAAA0UAAABFAAADRQAAAEUAAAAnAAAARQAAAkUAAAFFAAACRQAAAUUAAAJFAAACRQAAA0UAAABFAAAARQAAAkUAAAJFAAADRQAAAkUAAABFAAABRQAAA0UAAAJFAAACRQAAAUUAAAFFAAABRQAAAksAAAFFAAACRQAAAEUAAANFAAAARQAAAUUAAANFAAABRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAE8AAABfAAAAXwAAAF8AAABFAAABRQAAAEUAAAFFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABPAAAAXwAAAF8AAABfAAAARQAAAUUAAANFAAABRQAAAUgAAABIAAAASAAAAEgAAABIAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAACRQAAAUUAAABIAAAASAAAAEgAAABIAAAASAAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEsAAAJfAAAASAAAAEgAAABIAAAASAAAAEgAAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAABFAAADRQAAAEgAAABIAAAASAAAAEgAAABIAAAAXwAAAF4AAABfAAAAXwAAAFAAAABQAAAAXwAAAEUAAANFAAADRQAAA0UAAAJIAAAASAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAFwAAAV8AAABFAAABRQAAAEUAAANFAAAASAAAAEgAAAAcAAADFwAAARcAAAAcAAABFwAAAxcAAAEcAAADHAAAARwAAAEcAAABRQAAAEUAAAFFAAAARQAAAA== -3,2: ind: -3,2 - tiles: XQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAF4AAABOAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAARAAAAgAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXgAAAE4AAABeAAAAXgAAAE4AAABOAAAATgAAAF4AAABEAAAAHQAAAB0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAFEAAAARAAAAkQAAABEAAACRAAAA0QAAANEAAAARAAAAUQAAAFEAAADRAAAA0QAAAFEAAADRAAAAEQAAANEAAACRAAAAUQAAABEAAAARAAAA0QAAAJEAAABRAAAA0QAAANEAAAARAAAAEQAAABEAAACRAAAAEQAAABEAAACRAAAA0QAAAJEAAAARAAAAkQAAABEAAABRAAAAkQAAAFEAAADRAAAAEQAAAJEAAABRAAAAEQAAABEAAADRAAAAl4AAABeAAAAXgAAAF4AAABEAAACRAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAApAAADKQAAAikAAAMpAAACRAAAAUQAAAJeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAKQAAACkAAAEpAAAAKQAAAUQAAABEAAADXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAAARAAAAUQAAABEAAADRAAAAl4AAABdAAAAXgAAAFsAAABbAAABXgAAAEcAAABHAAAARwAAAEcAAABEAAABRAAAAEQAAABEAAACRAAAAkQAAAJeAAAAXQAAAF4AAABbAAADWwAAAVsAAAFHAAAARwAAAEcAAABHAAAARAAAAUQAAABKAAADRAAAAE8AAABEAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAARwAAACEAAAJHAAAAIQAAAl4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABdAAAAXgAAAFsAAABbAAAAWwAAA0cAAAAhAAACRwAAACEAAAFeAAAAXgAAAF4AAABOAAAAXgAAAE4AAABeAAAAXQAAAF4AAABbAAACWwAAAl4AAABHAAAAIQAAA0cAAAAhAAAAXgAAAF4AAABeAAAATgAAAF4AAABOAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAARwAAAEcAAABHAAAARwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF8AAABPAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAARQAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXwAAAE8AAABfAAAAXwAAAE8AAABPAAAATwAAAF8AAABFAAABHgAAAh4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUAAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAABFAAADRQAAAkUAAAJFAAAARQAAAkUAAAJFAAACRQAAAkUAAAFFAAACRQAAAEUAAABFAAACRQAAAkUAAANFAAACRQAAAUUAAABFAAACRQAAAEUAAABFAAABRQAAAkUAAABFAAAARQAAAkUAAAJFAAAARQAAA0UAAABFAAACRQAAAkUAAANFAAADRQAAAkUAAAJFAAAARQAAAEUAAABFAAACRQAAAEUAAANFAAAARQAAAEUAAABFAAABRQAAA18AAABfAAAAXwAAAF8AAABFAAADRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAqAAABKgAAAioAAAEqAAADRQAAAkUAAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAKgAAACoAAAEqAAAAKgAAAkUAAANFAAACXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAACRQAAAEUAAANFAAAARQAAA18AAABeAAAAXwAAAFwAAANcAAADXwAAAEgAAABIAAAASAAAAEgAAABFAAABRQAAA0UAAANFAAADRQAAAkUAAAJfAAAAXgAAAF8AAABcAAABXAAAAlwAAAJIAAAASAAAAEgAAABIAAAARQAAAEUAAANLAAACRQAAA1AAAABFAAACXwAAAF4AAABfAAAAXwAAAF8AAABfAAAASAAAACIAAABIAAAAIgAAAV8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABeAAAAXwAAAFwAAANcAAACXAAAAUgAAAAiAAADSAAAACIAAAJfAAAAXwAAAF8AAABPAAAAXwAAAE8AAABfAAAAXgAAAF8AAABcAAACXAAAA18AAABIAAAAIgAAAUgAAAAiAAABXwAAAF8AAABfAAAATwAAAF8AAABPAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAASAAAAEgAAABIAAAASAAAAA== -4,2: ind: -4,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAB0AAAEdAAADHQAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAE8AAABEAAAARAAAAUQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAARAAAA0QAAABEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAATwAAAEQAAAFEAAABRAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXgAAAEQAAAJEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF4AAABEAAADRAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABeAAAARAAAA0QAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXgAAAEQAAANEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF4AAABEAAAARAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAB4AAAEeAAAAHgAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAFAAAABFAAACRQAAAUUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAARQAAA0UAAANFAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAUAAAAEUAAABFAAABRQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXwAAAEUAAABFAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF8AAABFAAACRQAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABfAAAARQAAA0UAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXwAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF8AAABFAAACRQAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXwAAAA== 0,-2: ind: 0,-2 - tiles: XQAAAF0AAABdAAAAXgAAAF4AAABeAAAAGwAAABsAAAFeAAAAXgAAAF4AAABEAAACRAAAAUoAAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAAA6AAAAXgAAAF4AAABeAAAAXgAAADoAAABeAAAARAAAAEQAAAFEAAABXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAXgAAAEQAAAJEAAABRAAAA14AAABeAAAAXgAAAF4AAABdAAAAXgAAADoAAABeAAAAXgAAAF4AAABeAAAAOgAAAF4AAABEAAADRAAAAkQAAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAFEAAABXgAAAF0AAABeAAAAXgAAAF0AAABeAAAAFgAAARYAAAEWAAACFgAAAF4AAABEAAAARAAAA0QAAAFEAAAARAAAA14AAABdAAAAXgAAAF4AAABdAAAAXgAAABYAAAAaAAACGgAAABYAAANKAAABRAAAA0QAAABEAAADRAAAA0QAAAJeAAAAXgAAAF4AAABeAAAAXQAAAF4AAAAWAAABGgAAAxoAAAIWAAABSgAAAUQAAAFEAAADRAAAAUQAAAJEAAABXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAFgAAAhYAAAEWAAADFgAAAF4AAABEAAACRAAAAEQAAANEAAAARAAAARsAAAMbAAADXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAABEAAABRAAAAkQAAANeAAAAXgAAAF4AAABeAAAAXQAAAF4AAAAWAAAAFgAAAhYAAAEbAAADXgAAAEQAAAFEAAADRAAAAEQAAAFEAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAFgAAABYAAAEWAAACFgAAA0oAAAFEAAACRAAAAUQAAANEAAABRAAAAV4AAABdAAAAXgAAAF4AAABdAAAAXgAAABYAAAIWAAACFgAAABYAAAFeAAAAXgAAAF4AAABKAAABSgAAAl4AAABeAAAAXQAAAF4AAABeAAAAXQAAAF4AAAAWAAADFgAAABYAAAEWAAACTgAAAF4AAABOAAAAFgAAARYAAAFOAAAAXgAAAF4AAABdAAAAXQAAAF0AAABeAAAAFgAAABYAAAMWAAABFgAAAk4AAABeAAAATgAAABYAAAIWAAAATgAAAF4AAAAPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABKAAABSgAAA14AAABeAAAAGwAAAA== + tiles: XgAAAF4AAABeAAAAXwAAAF8AAABfAAAAHAAAAhwAAAJfAAAAXwAAAF8AAABFAAADRQAAAEsAAAFfAAAAXwAAAF8AAABfAAAAXgAAAF8AAAA7AAAAXwAAAF8AAABfAAAAXwAAADsAAABfAAAARQAAAEUAAAFFAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAXwAAAEUAAAJFAAAARQAAA18AAABfAAAAXwAAAF8AAABeAAAAXwAAADsAAABfAAAAXwAAAF8AAABfAAAAOwAAAF8AAABFAAACRQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAANFAAADXwAAAF4AAABfAAAAXwAAAF4AAABfAAAAFwAAAhcAAAIXAAACFwAAAV8AAABFAAADRQAAAEUAAABFAAACRQAAAF8AAABeAAAAXwAAAF8AAABeAAAAXwAAABcAAAAbAAACGwAAABcAAANLAAABRQAAAkUAAAJFAAABRQAAA0UAAAFfAAAAXwAAAF8AAABfAAAAXgAAAF8AAAAXAAABGwAAARsAAAAXAAAASwAAAUUAAAFFAAADRQAAAEUAAAFFAAABXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAFwAAAhcAAAMXAAACFwAAAl8AAABFAAACRQAAAkUAAABFAAABRQAAARwAAAEcAAABXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAAJFAAADRQAAAUUAAANfAAAAXwAAAF8AAABfAAAAXgAAAF8AAAAXAAABFwAAABcAAAEcAAADXwAAAEUAAAJFAAABRQAAAkUAAAFFAAADXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAFwAAARcAAAMXAAAAFwAAAEsAAABFAAABRQAAA0UAAAJFAAAARQAAA18AAABeAAAAXwAAAF8AAABeAAAAXwAAABcAAAIXAAACFwAAABcAAANfAAAAXwAAAF8AAABLAAADSwAAAV8AAABfAAAAXgAAAF8AAABfAAAAXgAAAF8AAAAXAAABFwAAAxcAAAEXAAABTwAAAF8AAABPAAAAFwAAABcAAANPAAAAXwAAAF8AAABeAAAAXgAAAF4AAABfAAAAFwAAAhcAAAIXAAAAFwAAAU8AAABfAAAATwAAABcAAAIXAAABTwAAAF8AAAAPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABLAAACSwAAAV8AAABfAAAAHAAAAQ== -1,-2: ind: -1,-2 - tiles: XgAAAF4AAAAWAAAAFgAAAhYAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAAAbAAACGwAAAhsAAAIbAAAAGwAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAGwAAAxsAAAMbAAABGwAAAxsAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAABsAAAIbAAACGwAAAxsAAAAbAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAAAbAAADGwAAAxsAAAAbAAACGwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAARYAAAIWAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABOAAAAXgAAABYAAAMWAAAAFgAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAATgAAAF4AAAAWAAADFgAAABYAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAE4AAABeAAAAFgAAABYAAAAWAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAbAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAABYAAAAWAAABFgAAAxYAAAIWAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAAAWAAADFgAAAxYAAAAWAAADFgAAAxsAAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAFgAAAhYAAAIWAAACFgAAAhYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAASgAAA14AAABeAAAAXgAAABsAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== + tiles: XwAAAF8AAAAXAAACFwAAAxcAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAAAcAAAAHAAAAhwAAAIcAAACHAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAHAAAARwAAAIcAAABHAAAABwAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAABwAAAMcAAACHAAAAhwAAAMcAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAAAcAAAAHAAAAhwAAAMcAAACHAAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAxcAAAEXAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABPAAAAXwAAABcAAAEXAAACFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAATwAAAF8AAAAXAAACFwAAAhcAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAE8AAABfAAAAFwAAARcAAAEXAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAcAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAABcAAAIXAAAAFwAAAhcAAAEXAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAAAXAAADFwAAABcAAAEXAAACFwAAAxwAAANfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAFwAAARcAAAMXAAAAFwAAABcAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAASwAAAV8AAABfAAAAXwAAABwAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== -3,3: ind: -3,3 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAARwAAAEcAAABHAAAARwAAAEcAAABHAAAARwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEcAAABHAAAARwAAAEcAAABHAAAARwAAAEcAAABdAAAAXQAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF0AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAABXgAAAFsAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAAl4AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAAJbAAABXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAAAXgAAAFsAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAADWwAAA14AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAASAAAAEgAAABIAAAASAAAAEgAAABIAAAASAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABIAAAASAAAAEgAAABIAAAASAAAAEgAAABeAAAAXgAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF4AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAADXwAAAFwAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAAV8AAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAANcAAADXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAACXwAAAFwAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAADXAAAAV8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAA== -4,3: ind: -4,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -2,3: ind: -2,3 - tiles: RwAAAEcAAAAbAAACFgAAARYAAAIbAAADFgAAAhYAAAAbAAADGwAAAxsAAAIbAAADRAAAAUQAAANEAAADRAAAAkcAAABHAAAAXgAAABsAAAAbAAACXgAAAF4AAABeAAAAXgAAABYAAAEWAAAAXgAAAEQAAAJEAAADRAAAAUQAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAATwAAAF4AAABEAAADRAAAAUQAAAJEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAADRAAAAl4AAABeAAAAXgAAAFsAAAFeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAAARAAAAEQAAABbAAABXgAAAF4AAABeAAAAWwAAA14AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAA0oAAANEAAAAXgAAAF4AAABbAAABWwAAA14AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAFsAAANeAAAAXgAAAFsAAABbAAADXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAATwAAAEQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABEAAADXgAAAF4AAABbAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAWwAAAlsAAAFbAAABXgAAAE4AAABOAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAABYAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAAAWAAADXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAE4AAABeAAAAFgAAA10AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABOAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== + tiles: SAAAAEgAAAAcAAACFwAAAhcAAAEcAAAAFwAAABcAAAAcAAADHAAAAxwAAAEcAAACRQAAAEUAAANFAAAARQAAA0gAAABIAAAAXwAAABwAAAIcAAACXwAAAF8AAABfAAAAXwAAABcAAAEXAAACXwAAAEUAAANFAAADRQAAA0UAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAUAAAAF8AAABFAAADRQAAAkUAAAFFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAFFAAABRQAAAl8AAABfAAAAXwAAAFwAAAFfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAACRQAAA0UAAAJcAAABXwAAAF8AAABfAAAAXAAAA18AAABfAAAAUAAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAEsAAABFAAABXwAAAF8AAABcAAAAXAAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA1wAAANfAAAAXwAAAFwAAABcAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAUAAAAEUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABFAAAAXwAAAF8AAABcAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXAAAAVwAAABcAAADXwAAAE8AAABPAAAATwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAABcAAAFeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAAAXAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAE8AAABfAAAAFwAAAV4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABPAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== -1,3: ind: -1,3 - tiles: XgAAABYAAAIWAAADFgAAAhYAAAJEAAABRAAAAEQAAANEAAABRAAAAhsAAAAWAAADFgAAARsAAANEAAABRAAAAl4AAAAWAAABGgAAARoAAAIWAAAARAAAAUQAAABEAAAARAAAAkQAAAJeAAAAGwAAAhsAAANeAAAARAAAACYAAABeAAAAFgAAABYAAAEWAAAAFgAAAl4AAABEAAACRAAAAUQAAABEAAACGwAAAhYAAAMWAAADGwAAAEQAAANEAAABXgAAAF4AAABeAAAAGwAAAF4AAABeAAAARAAAAEQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAUQAAANEAAADRAAAAkQAAAJEAAACRAAAAEQAAAFEAAAAXgAAABYAAAIWAAABXgAAAEQAAAJEAAACRAAAAkQAAAJEAAAARAAAAUQAAANEAAADRAAAAUQAAAJEAAADRAAAAl4AAAAWAAABFgAAAxYAAANEAAAARAAAA0QAAAMmAAAARAAAAEQAAANEAAACRAAAAEQAAABEAAACRAAAAkQAAAFeAAAAFgAAABYAAAAWAAACRAAAAUQAAAFEAAAARAAAAkQAAAFEAAAARAAAA0QAAANEAAADRAAAAkQAAABEAAABGwAAAhYAAAIWAAABXgAAAEQAAAJEAAACRAAAA0QAAANEAAABRAAAAEQAAANEAAADRAAAAUQAAANEAAABRAAAAV4AAAAWAAABFgAAAl4AAABEAAACRAAAA0QAAAImAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAAARAAAA0QAAABeAAAAFgAAARYAAANeAAAASgAAAEQAAAFEAAADRAAAAxYAAAAWAAACFgAAAV4AAABEAAAARAAAAUQAAAFEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAAEaAAAAGgAAAhYAAAMbAAABRAAAAEQAAABEAAACRAAAABsAAAEWAAAAFgAAABsAAABeAAAAXgAAAEQAAAFEAAACFgAAAhYAAAAWAAACXgAAAEQAAAFEAAACRAAAAkQAAANeAAAAFgAAAhYAAAMbAAAAXgAAAF4AAABEAAACJgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAEWAAABGwAAAV4AAABeAAAARAAAAkQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAbAAADFgAAABYAAAAWAAADFgAAABsAAAJeAAAAXgAAAEQAAAJEAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAGwAAARYAAAIWAAABFgAAAxYAAAEbAAAAXgAAAF4AAABEAAADJgAAAA== + tiles: XwAAABcAAAEXAAAAFwAAAxcAAANFAAABRQAAAUUAAAFFAAADRQAAABwAAAIXAAADFwAAAxwAAABFAAADRQAAA18AAAAXAAACGwAAABsAAAIXAAAARQAAAUUAAAFFAAAARQAAA0UAAAFfAAAAHAAAARwAAAFfAAAARQAAAycAAABfAAAAFwAAARcAAAAXAAACFwAAAV8AAABFAAADRQAAAUUAAABFAAACHAAAARcAAAAXAAABHAAAAkUAAABFAAACXwAAAF8AAABfAAAAHAAAA18AAABfAAAARQAAAEUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABRQAAAUUAAAFFAAACRQAAAEUAAABFAAAARQAAA0UAAAJFAAAAXwAAABcAAAAXAAACXwAAAEUAAAJFAAADRQAAAkUAAABFAAADRQAAAUUAAAFFAAABRQAAAkUAAAFFAAAARQAAAF8AAAAXAAAAFwAAAhcAAANFAAAARQAAAEUAAAEnAAAARQAAAkUAAANFAAABRQAAA0UAAAFFAAAARQAAAUUAAANfAAAAFwAAAhcAAAEXAAACRQAAA0UAAAJFAAACRQAAAUUAAAFFAAACRQAAAkUAAAJFAAADRQAAAEUAAAFFAAABHAAAABcAAAAXAAADXwAAAEUAAAJFAAADRQAAAkUAAAJFAAACRQAAA0UAAAJFAAABRQAAAEUAAABFAAACRQAAAF8AAAAXAAAAFwAAAl8AAABFAAAARQAAAkUAAAAnAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAABRQAAA0UAAABfAAAAFwAAARcAAAFfAAAASwAAAUUAAANFAAAARQAAAhcAAAIXAAAAFwAAAl8AAABFAAADRQAAAkUAAAJFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAAIbAAAAGwAAABcAAAAcAAABRQAAAEUAAABFAAAARQAAARwAAAMXAAABFwAAAxwAAAFfAAAAXwAAAEUAAABFAAADFwAAAhcAAAIXAAABXwAAAEUAAABFAAABRQAAAUUAAAFfAAAAFwAAAxcAAAAcAAACXwAAAF8AAABFAAABJwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAIXAAABHAAAA18AAABfAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAcAAADFwAAAxcAAAAXAAADFwAAAxwAAAFfAAAAXwAAAEUAAAJFAAADXwAAAF8AAABfAAAATwAAAF8AAABfAAAAHAAAABcAAAIXAAADFwAAAxcAAAAcAAACXwAAAF8AAABFAAACJwAAAA== 0,3: ind: 0,3 - tiles: RAAAAV4AAABeAAAAXgAAACwAAAAsAAAAXgAAAF0AAABeAAAAXgAAAE4AAABOAAAATgAAAF4AAABeAAAATwAAAEQAAAJeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABEAAADXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAACRAAAAF4AAAAbAAABFgAAARYAAAEWAAAAFgAAABYAAAMWAAACFgAAABYAAAIWAAADFgAAAV4AAABEAAAARAAAAUQAAAEbAAADFgAAABYAAAIWAAACFgAAABcAAAMXAAABFwAAABcAAAMXAAADFwAAABYAAANeAAAARAAAAEQAAANEAAACXgAAABYAAAEWAAADFgAAABYAAAAXAAACFwAAAhcAAAIXAAAAFwAAABcAAAIWAAACXgAAAEQAAABEAAAARAAAA14AAAAWAAABFgAAAxYAAAMWAAADFgAAAxYAAAAWAAADFgAAAhYAAAEWAAABFgAAAV4AAABEAAACRAAAA0QAAAIbAAABFgAAARYAAAIWAAAAWwAAA1sAAANbAAADWwAAA1sAAAFbAAAAWwAAAVsAAABeAAAARAAAAUQAAAFEAAABXgAAABYAAAIWAAABFgAAAVsAAANcAAAAXAAAAlsAAAJbAAAAXAAAAVwAAAFbAAABXgAAAEQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAABWwAAAFsAAAJbAAAAWwAAA1sAAABbAAADWwAAAE8AAABEAAADXgAAADEAAAAxAAAAMQAAADEAAABeAAAAWwAAA1sAAAFcAAACXAAAAlwAAAFcAAACWwAAAlsAAAFeAAAARAAAA14AAAAxAAAAMQAAADEAAAAxAAAAMQAAAFsAAAFbAAADXAAAAVsAAABbAAACXAAAAVsAAABbAAAAXgAAAEQAAAFeAAAAMQAAADEAAAAxAAAAMQAAAF4AAABbAAADWwAAAFsAAAJbAAADWwAAAFsAAABbAAAAWwAAAV4AAABEAAABXgAAADEAAAAxAAAAMQAAADEAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAzEAAAAxAAAAMQAAADEAAAAxAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== + tiles: RQAAAV8AAABfAAAAXwAAAC0AAAAtAAAAXwAAAF4AAABfAAAAXwAAAE8AAABPAAAATwAAAF8AAABfAAAAUAAAAEUAAAFfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABPAAAATwAAAE8AAABfAAAAXwAAAF8AAABFAAABXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAACRQAAAV8AAAAcAAAAFwAAABcAAAIXAAAAFwAAAhcAAAAXAAADFwAAAxcAAAAXAAABFwAAAV8AAABFAAAARQAAAEUAAAMcAAADFwAAARcAAAIXAAAAFwAAARgAAAEYAAABGAAAAxgAAAIYAAAAGAAAAhcAAAJfAAAARQAAA0UAAANFAAABXwAAABcAAAMXAAAAFwAAAhcAAAEYAAACGAAAAhgAAAAYAAABGAAAAhgAAAAXAAADXwAAAEUAAAJFAAADRQAAAV8AAAAXAAADFwAAARcAAAMXAAABFwAAARcAAAIXAAAAFwAAAxcAAAAXAAABFwAAAF8AAABFAAADRQAAA0UAAAEcAAABFwAAAxcAAAMXAAACXAAAAlwAAAFcAAADXAAAAFwAAANcAAABXAAAA1wAAANfAAAARQAAAkUAAAJFAAACXwAAABcAAAEXAAAAFwAAAFwAAAFdAAAAXQAAAVwAAAFcAAADXQAAA10AAAJcAAACXwAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAAAXAAAAFwAAANcAAAAXAAAAVwAAABcAAADXAAAAFAAAABFAAACXwAAADIAAAAyAAAAMgAAADIAAABfAAAAXAAAAVwAAAFdAAABXQAAAV0AAABdAAADXAAAAVwAAABfAAAARQAAA18AAAAyAAAAMgAAADIAAAAyAAAAMgAAAFwAAAJcAAACXQAAAVwAAAFcAAABXQAAAVwAAABcAAAAXwAAAEUAAAJfAAAAMgAAADIAAAAyAAAAMgAAAF8AAABcAAAAXAAAA1wAAAFcAAADXAAAAFwAAAJcAAABXAAAAV8AAABFAAAAXwAAADIAAAAyAAAAMgAAADIAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAATIAAAAyAAAAMgAAADIAAAAyAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== 1,3: ind: 1,3 - tiles: XgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAAAWAAADFgAAAhYAAAMeAAACHgAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAA1sAAAFeAAAAJgAAABYAAAMWAAADHgAAAh4AAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAADEAAAAxAAAAGwAAARYAAAJeAAAAXgAAAE8AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAAAxAAAAMQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAMQAAADEAAAAxAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAADEAAAAxAAAAMQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAAAxAAAAMQAAADEAAABeAAAAXgAAAF4AAAAfAAACHwAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAHwAAACYAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAATgAAAE4AAABeAAAAXgAAAB8AAAEmAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAATgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAE4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABOAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: XwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAAAXAAACFwAAAxcAAAEfAAACHwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAAFwAAAJfAAAAJwAAABcAAAEXAAAAHwAAAB8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAADIAAAAyAAAAHAAAABcAAAFfAAAAXwAAAFAAAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAAAyAAAAMgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAMgAAADIAAAAyAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAADIAAAAyAAAAMgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAAAyAAAAMgAAADIAAABfAAAAXwAAAF8AAAAgAAAAIAAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAIAAAAycAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABPAAAATwAAAE8AAABfAAAAXwAAACAAAAEnAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAATwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABPAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,3: ind: 2,3 - tiles: FgAAAxYAAAIWAAACXgAAAF4AAABeAAAAXgAAAE8AAABbAAABWwAAA1sAAAJbAAAAXgAAAFsAAAJbAAADXgAAABYAAAMWAAACJgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAAlsAAAFbAAACWwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAACWwAAAFsAAAFeAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAWwAAAlsAAANbAAABXgAAAF0AAAAAAAAAAAAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAHwAAAR8AAAEfAAABXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAACYAAAAmAAAAHwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAfAAAAJgAAAB8AAAJeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: FwAAABcAAAMXAAADXwAAAF8AAABfAAAAXwAAAFAAAABcAAACXAAAAVwAAAFcAAACXwAAAFwAAAJcAAADXwAAABcAAAIXAAACJwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAAFwAAABcAAADXAAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAACXAAAAFwAAAJfAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXAAAAVwAAANcAAABXwAAAF4AAAAAAAAAAAAAAF8AAABPAAAATwAAAE8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAIAAAASAAAAMgAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAACcAAAAnAAAAIAAAA18AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAgAAABJwAAACAAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,4: ind: -1,4 - tiles: TgAAAE4AAABeAAAATgAAAF4AAABeAAAAGwAAAhYAAAMbAAABGwAAAhYAAAAbAAADXgAAAF4AAABEAAAARAAAAV4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAAFdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAEmAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAABYAAANEAAADRAAAAl0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAAAbAAABRAAAAkQAAAJdAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAVQAAA1UAAAFeAAAATgAAAF4AAABeAAAAXgAAABsAAANeAAAAXQAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAFUAAABVAAADXgAAAE4AAABeAAAAXgAAAF4AAAAWAAACFgAAAV0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABVAAAAXgAAAF4AAABeAAAAXgAAAE8AAABeAAAAFgAAAhYAAAJdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAWwAAAVsAAABbAAADWwAAAl4AAABeAAAAXgAAABsAAAEbAAACXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAFsAAABbAAAAWwAAAVsAAANeAAAAXgAAAF4AAAAWAAABFgAAA10AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABbAAADWwAAAlsAAABbAAACXgAAAF4AAABeAAAAFgAAAhYAAAMAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAGwAAA14AAABeAAAAXgAAABsAAAFeAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXgAAABYAAAMWAAACFgAAABYAAAAWAAADFgAAABYAAAEWAAAAFgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF4AAAAWAAACFgAAARYAAAMWAAACFgAAARYAAAIWAAAAFgAAAxYAAAIAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABeAAAAXgAAABYAAAIWAAAAJgAAABYAAAMWAAACFgAAABYAAAEWAAADAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF4AAAAWAAABFgAAABYAAAMmAAAAFgAAACYAAAAWAAACJgAAAA== + tiles: TwAAAE8AAABfAAAATwAAAF8AAABfAAAAHAAAABcAAAEcAAABHAAAAxcAAAIcAAACXwAAAF8AAABFAAACRQAAAl8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAFeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAInAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUAAAABcAAAFFAAACRQAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAAAcAAADRQAAAUUAAAFeAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAVgAAA1YAAABfAAAATwAAAF8AAABfAAAAXwAAABwAAANfAAAAXgAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAFYAAAFWAAADXwAAAE8AAABfAAAAXwAAAF8AAAAXAAABFwAAAV4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABWAAAAXwAAAF8AAABfAAAAXwAAAFAAAABfAAAAFwAAABcAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXAAAAFwAAANcAAACXAAAAV8AAABfAAAAXwAAABwAAAEcAAACXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAFwAAAFcAAADXAAAAVwAAABfAAAAXwAAAF8AAAAXAAACFwAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABcAAACXAAAAVwAAABcAAABXwAAAF8AAABfAAAAFwAAARcAAAIAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAHAAAAV8AAABfAAAAXwAAABwAAAJfAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXwAAABcAAAEXAAADFwAAABcAAAIXAAACFwAAABcAAAAXAAADFwAAAgAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF8AAAAXAAAAFwAAARcAAAIXAAADFwAAAhcAAAAXAAADFwAAAhcAAAMAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABfAAAAXwAAABcAAAAXAAADJwAAABcAAAIXAAABFwAAAxcAAAMXAAACAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF8AAAAXAAACFwAAARcAAAMnAAAAFwAAAycAAAAXAAACJwAAAA== -2,4: ind: -2,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAATgAAAE4AAABOAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAATwAAAE8AAABPAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,4: ind: 0,4 - tiles: RAAAAF4AAAAxAAAAMQAAADEAAAAxAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAATgAAAE4AAABOAAAAXgAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAA0QAAABEAAADRAAAA0QAAAJEAAAARAAAAEQAAAJEAAADRAAAAEQAAANEAAACXgAAAF0AAABdAAAARAAAA0QAAAJEAAADRAAAA0QAAAJEAAABRAAAAEQAAANEAAADRAAAASYAAABEAAACRAAAAl4AAABdAAAAAAAAAEQAAANEAAADRAAAAkQAAAJEAAAARAAAA0QAAAJEAAAARAAAAUQAAABEAAACJgAAAEQAAANeAAAAXQAAAF0AAAAbAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAAJgAAAEQAAAFEAAAAXgAAAF0AAAAAAAAAFgAAAV4AAAAWAAACFgAAARYAAAMWAAACFgAAABYAAABeAAAARAAAAUQAAANEAAAARAAAA14AAABdAAAAAAAAABYAAAJeAAAAFgAAAxYAAANbAAABWwAAAVsAAAEWAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAbAAAAXgAAABYAAAIWAAABWwAAAlsAAAJbAAADFgAAAV4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAFgAAAV4AAAAWAAAAFgAAAVsAAAJbAAAAWwAAABYAAAJeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAABYAAAJeAAAAFgAAARYAAAAWAAADFgAAAxYAAAAWAAABXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAbAAABXgAAAF4AAABeAAAAXgAAABsAAAFeAAAAXgAAAF4AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAFgAAAxYAAAMWAAACFgAAAxYAAAIWAAADFgAAAxYAAAFeAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAABYAAAMWAAABFgAAAhYAAAAWAAACFgAAAhYAAAAWAAABXgAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAWAAADFgAAABYAAAMWAAADJgAAABYAAAAWAAACXgAAAF4AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAFgAAAyYAAAAWAAAAJgAAABYAAAEWAAACFgAAAF4AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: RQAAAF8AAAAyAAAAMgAAADIAAAAyAAAAXwAAAF8AAABPAAAATwAAAE8AAABfAAAATwAAAE8AAABPAAAAXwAAAEUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAEUAAAFFAAADRQAAAEUAAAJFAAACRQAAA0UAAANFAAADRQAAAUUAAAJFAAADXwAAAF4AAABeAAAARQAAAUUAAAFFAAADRQAAAUUAAAFFAAACRQAAAUUAAABFAAABRQAAAycAAABFAAACRQAAAV8AAABeAAAAAAAAAEUAAABFAAADRQAAAEUAAANFAAAARQAAAEUAAANFAAABRQAAA0UAAAFFAAAAJwAAAEUAAABfAAAAXgAAAF4AAAAcAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAAJwAAAEUAAABFAAACXwAAAF4AAAAAAAAAFwAAA18AAAAXAAACFwAAAxcAAAIXAAACFwAAAhcAAAFfAAAARQAAAkUAAAJFAAACRQAAAl8AAABeAAAAAAAAABcAAANfAAAAFwAAARcAAANcAAABXAAAA1wAAAAXAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAcAAACXwAAABcAAAMXAAAAXAAAA1wAAAJcAAACFwAAA18AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAFwAAAV8AAAAXAAADFwAAA1wAAABcAAABXAAAAhcAAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAABcAAAJfAAAAFwAAAxcAAAIXAAABFwAAAhcAAAEXAAADXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAcAAABXwAAAF8AAABfAAAAXwAAABwAAAJfAAAAXwAAAF8AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAFwAAAhcAAAIXAAACFwAAAxcAAAMXAAABFwAAAhcAAAFfAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAABcAAAEXAAACFwAAABcAAAEXAAAAFwAAARcAAAEXAAAAXwAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAXAAABFwAAAxcAAAEXAAADJwAAABcAAAMXAAADXwAAAF8AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAFwAAAScAAAAXAAABJwAAABcAAAIXAAABFwAAA18AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,4: ind: 1,4 - tiles: XgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: XwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,5: ind: -1,5 - tiles: AAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF4AAAAWAAADFgAAARYAAAEmAAAAFgAAABYAAAEWAAACJgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABeAAAAXgAAABYAAAEmAAAAFgAAAhYAAAMWAAADFgAAABYAAAMAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF4AAAAWAAAAFgAAAhYAAAImAAAAFgAAARYAAAMmAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAJgAAABYAAAAWAAACJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF8AAAAXAAACFwAAAhcAAAInAAAAFwAAABcAAAIXAAACJwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABfAAAAXwAAABcAAAMnAAAAFwAAAxcAAAEXAAAAFwAAAxcAAAIAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF8AAAAXAAADFwAAAhcAAAInAAAAFwAAABcAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAJwAAABcAAAAXAAADJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,5: ind: 0,5 - tiles: FgAAAxYAAAIWAAABJgAAABYAAAAWAAABFgAAAF4AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAMWAAAAFgAAARYAAAAmAAAAFgAAAl4AAABeAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAADFgAAAyYAAAAWAAABFgAAARYAAAJeAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAARYAAAAmAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: FwAAARcAAAEXAAADJwAAABcAAAEXAAADFwAAAF8AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAEXAAACFwAAAhcAAAEnAAAAFwAAAl8AAABfAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAADFwAAAScAAAAXAAADFwAAAxcAAAFfAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAhcAAAEnAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABeAAAATgAAAE4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXgAAAE4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAWwAAAVsAAAJbAAABXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAFsAAAJbAAABWwAAAlsAAAFeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABbAAADWwAAAFsAAAJbAAADTwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAARwAAAF4AAABeAAAATgAAAE4AAABOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARwAAAEcAAABeAAAAXgAAAF4AAABeAAAAXgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABfAAAATwAAAE8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXwAAAE8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXAAAAFwAAABcAAADXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAFwAAABcAAACXAAAAFwAAANfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABcAAAAXAAAAVwAAABcAAABUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAASAAAAF8AAABfAAAATwAAAE8AAABPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAASAAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAA== -2,-2: ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAGwAAAF4AAABdAAAAXQAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXgAAABsAAABeAAAAXQAAAF4AAABeAAAATgAAAE4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF0AAABeAAAAXgAAAF4AAAAbAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAEcAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARwAAAF4AAABHAAAAXgAAAEcAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAAXgAAAEcAAABHAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAARwAAAEcAAABeAAAARwAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJKAAABRAAAAV4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAFgAAAxYAAAAWAAAAFgAAABsAAABEAAADRAAAAkQAAAJOAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAADoAAAA6AAAAOgAAABYAAAFeAAAARAAAAUQAAAJEAAADXgAAAF4AAABeAAAAXgAAAE8AAABeAAAAXgAAAF4AAAA6AAAAOgAAADoAAAAWAAACXgAAAEQAAAJEAAADRAAAAw== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABfAAAAHAAAA18AAABeAAAAXgAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXwAAABwAAABfAAAAXgAAAF8AAABfAAAATwAAAE8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF4AAABfAAAAXwAAAF8AAAAcAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAF8AAABIAAAAXwAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAAXwAAAEgAAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAE8AAABfAAAASAAAAEgAAABfAAAASAAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFLAAABRQAAAl8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAFwAAAhcAAAEXAAADFwAAARwAAANFAAABRQAAAkUAAAFPAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAADsAAAA7AAAAOwAAABcAAANfAAAARQAAAUUAAAFFAAAAXwAAAF8AAABfAAAAXwAAAFAAAABfAAAAXwAAAF8AAAA7AAAAOwAAADsAAAAXAAABXwAAAEUAAAFFAAAARQAAAg== 1,-2: ind: 1,-2 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABeAAAAGwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAABsAAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAbAAAAXgAAAF4AAABeAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABOAAAAXgAAAF0AAABdAAAAXgAAABYAAAEWAAADXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAIaAAADFgAAA14AAABdAAAAXgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAACGgAAAxYAAAJeAAAAXQAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAABoAAAAWAAADXgAAAF0AAABeAAAATgAAAE4AAABeAAAATgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAFgAAA14AAABdAAAAXgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAAE4AAAAPAAAADwAAABoAAAIaAAADDwAAAA8AAAAPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAGwAAARsAAAMaAAABGgAAABsAAAMbAAACGwAAA14AAABeAAAATgAAAE4AAABOAAAATgAAAE4AAABeAAAAXgAAAA== + tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABPAAAATwAAAE8AAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABfAAAAHAAAA18AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAABwAAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAcAAACXwAAAF8AAABfAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAE8AAABPAAAAXwAAAF4AAABeAAAAXwAAABcAAAMXAAACXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAMbAAAAFwAAAF8AAABeAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAGwAAARcAAAJfAAAAXgAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAARsAAAEXAAACXwAAAF4AAABfAAAATwAAAE8AAABfAAAATwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAAAXAAADFwAAAF8AAABeAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABPAAAATwAAAE8AAABfAAAAXwAAAE8AAAAPAAAADwAAABsAAAMbAAACDwAAAA8AAAAPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAHAAAABwAAAMbAAADGwAAABwAAAIcAAABHAAAAl8AAABfAAAATwAAAE8AAABPAAAATwAAAE8AAABfAAAAXwAAAA== 2,-2: ind: 2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE4AAABeAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABOAAAAXgAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAADEAAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPAAAAXgAAADEAAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAADEAAAAxAAAAMQAAAF4AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAxAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAMQAAADEAAABeAAAAXgAAAEcAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE8AAABfAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPAAAAXwAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAADIAAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAXwAAADIAAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAADIAAAAyAAAAMgAAAF8AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAyAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAMgAAADIAAABfAAAAXwAAAEgAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,-3: ind: 1,-3 - tiles: XQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFUAAABeAAAAXQAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABVAAACXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABHAAAARwAAADoAAABeAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARwAAAEcAAAA6AAAAXgAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEcAAABHAAAAOgAAAF4AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE8AAABHAAAARwAAADoAAABeAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARwAAAEcAAAA6AAAAXgAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAADoAAAA6AAAAOgAAAF4AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: XgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFYAAANfAAAAXgAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABWAAABXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABIAAAASAAAADsAAABfAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAASAAAAEgAAAA7AAAAXwAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEgAAABIAAAAOwAAAF8AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABIAAAASAAAADsAAABfAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAASAAAAEgAAAA7AAAAXwAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAADsAAAA7AAAAOwAAAF8AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,-3: ind: 0,-3 - tiles: XgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABdAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXQAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABdAAAAXgAAABYAAAM6AAAAOgAAADoAAAA6AAAAFgAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAAAWAAABOgAAAF4AAABeAAAAOgAAABYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAFUAAANeAAAAXgAAAF0AAABeAAAAFgAAADoAAABeAAAAXgAAADoAAAAWAAABXgAAAF4AAABeAAAAXgAAAF4AAABVAAACXgAAAF4AAABdAAAAXgAAABYAAAI6AAAAOgAAAF4AAAA6AAAAFgAAAl4AAABeAAAAGwAAAV4AAABeAAAATwAAAF0AAABdAAAAXQAAAF4AAAAWAAACFgAAAhYAAANeAAAAFgAAAxYAAAJeAAAARAAAAkQAAAFEAAACXgAAAE4AAABeAAAAXgAAAF0AAABeAAAAGwAAAhsAAAMWAAADFgAAARsAAAIbAAACXgAAAEQAAAFEAAABRAAAAl4AAABOAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAGwAAABsAAAFeAAAAXgAAAF4AAABEAAAARAAAAUQAAAJPAAAAXgAAAF4AAABeAAAAXQAAAF4AAABEAAABRAAAAEQAAABEAAAARAAAAUQAAANEAAAARAAAAUQAAANEAAABXgAAAF4AAABeAAAAXgAAAF0AAABeAAAARAAAAEQAAANEAAABRAAAA0QAAABEAAACRAAAAEQAAAFEAAABSgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAEQAAANEAAAARAAAAkQAAANEAAAARAAAAEQAAAJEAAAARAAAA0oAAABeAAAAXgAAAA== + tiles: XwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABeAAAAXwAAAF8AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXgAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABeAAAAXwAAABcAAAI7AAAAOwAAADsAAAA7AAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAAAXAAADOwAAAF8AAABfAAAAOwAAABcAAABfAAAAXwAAAF8AAABfAAAAXwAAAFYAAANfAAAAXwAAAF4AAABfAAAAFwAAAzsAAABfAAAAXwAAADsAAAAXAAADXwAAAF8AAABfAAAAXwAAAF8AAABWAAABXwAAAF8AAABeAAAAXwAAABcAAAA7AAAAOwAAAF8AAAA7AAAAFwAAAV8AAABfAAAAHAAAAV8AAABfAAAAUAAAAF4AAABeAAAAXgAAAF8AAAAXAAACFwAAAxcAAANfAAAAFwAAABcAAANfAAAARQAAAkUAAABFAAAAXwAAAE8AAABfAAAAXwAAAF4AAABfAAAAHAAAARwAAAAXAAACFwAAARwAAAEcAAADXwAAAEUAAANFAAADRQAAAl8AAABPAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAHAAAARwAAANfAAAAXwAAAF8AAABFAAAARQAAAkUAAANQAAAAXwAAAF8AAABfAAAAXgAAAF8AAABFAAABRQAAAkUAAABFAAABRQAAAEUAAANFAAADRQAAAkUAAAFFAAADXwAAAF8AAABfAAAAXwAAAF4AAABfAAAARQAAAEUAAAFFAAAARQAAAkUAAANFAAAARQAAAUUAAAFFAAADSwAAAl8AAABfAAAAXwAAAF8AAABeAAAAXwAAAEUAAABFAAADRQAAAUUAAAFFAAABRQAAA0UAAAJFAAADRQAAAksAAAJfAAAAXwAAAA== -1,-3: ind: -1,-3 - tiles: XgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAbAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAARYAAAMWAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABeAAAATwAAABYAAAAWAAAAFgAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAATgAAAF4AAAAWAAACFgAAABYAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAE4AAABeAAAAFgAAARYAAAMWAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABOAAAAXgAAABYAAAMWAAADFgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAATgAAAF4AAAAWAAABFgAAAhYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAA== + tiles: XwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAcAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAhcAAAMXAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABfAAAAUAAAABcAAAMXAAABFwAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAATwAAAF8AAAAXAAACFwAAAxcAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAE8AAABfAAAAFwAAAxcAAAEXAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABPAAAAXwAAABcAAAIXAAACFwAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAATwAAAF8AAAAXAAABFwAAAhcAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAA== -2,-3: ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABeAAAAVQAAAlUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAFUAAABVAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABeAAAARwAAAEcAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXgAAAF4AAABHAAAARwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF4AAABeAAAAXgAAAEcAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABeAAAARwAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXgAAAEcAAABHAAAARwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABfAAAAVgAAAFYAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAFYAAABWAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABfAAAASAAAAEgAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXwAAAF8AAABIAAAASAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF8AAABfAAAAXwAAAEgAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABfAAAASAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXwAAAEgAAABIAAAASAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF8AAABfAAAAUAAAAF8AAABfAAAAXwAAAA== -1,-4: ind: -1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABdAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF0AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABdAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF0AAABeAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABdAAAAXgAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXQAAAF4AAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF0AAABeAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAF0AAABdAAAAXgAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABdAAAAXgAAAF0AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXQAAAF4AAABdAAAAXgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABdAAAAXQAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAF0AAABeAAAAXQAAAF4AAABdAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABeAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXgAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF4AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABeAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF4AAABfAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABeAAAAXwAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXgAAAF8AAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF4AAABfAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXgAAAF4AAABeAAAAXwAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABeAAAAXwAAAF4AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXgAAAF8AAABeAAAAXwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABeAAAAXgAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAF4AAABfAAAAXgAAAF8AAABeAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAA== 0,-4: ind: 0,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXQAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAF4AAABdAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF0AAABeAAAAXQAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABdAAAAXgAAAF0AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAF4AAABdAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF0AAABeAAAAXQAAAF0AAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABdAAAAXgAAAF0AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABeAAAAXQAAAF4AAABdAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF0AAABeAAAAXQAAAF4AAABdAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXgAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXgAAAF8AAABeAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF4AAABfAAAAXgAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABeAAAAXwAAAF4AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXgAAAF8AAABeAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF4AAABfAAAAXgAAAF4AAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABeAAAAXwAAAF4AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABfAAAAXgAAAF8AAABeAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF4AAABfAAAAXgAAAF8AAABeAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAA== -1,-5: ind: -1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABdAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABeAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,-5: ind: 0,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,3: ind: 3,3 - tiles: XQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: XgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,4: ind: 2,4 - tiles: AAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,4: ind: 3,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -3,4: ind: -3,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -4,4: ind: -4,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - type: Broadphase - angularDamping: 0.05 @@ -268,6 +268,15 @@ entities: - chunkCollection: version: 2 nodes: + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 5231: -43,28 + 5232: -43,27 + 5251: -46,27 + 5252: -46,28 - node: color: '#FFFFFFFF' id: Bot @@ -288,46 +297,46 @@ entities: 1711: 5,-37 1712: 8,-37 1713: 9,-37 - 2022: 7,-22 - 2449: 27,23 - 2450: 27,26 - 2451: 48,42 - 2452: 27,43 - 2453: 18,36 - 2454: 16,29 - 2455: 7,34 - 2456: -10,23 - 2457: -22,25 - 2458: -16,30 - 2459: -25,38 - 2460: -31,22 - 2461: -40,28 - 2462: -46,44 - 2463: -18,53 - 2464: 4,52 - 2465: -4,57 - 2466: -3,68 - 2467: 2,70 - 2468: -8,76 - 2469: -2,27 - 2470: 16,20 - 2471: 45,12 - 2472: 33,7 - 2473: 45,-7 - 2474: 17,-4 - 2475: 10,-16 - 2476: -8,-15 - 2477: 3,2 - 2478: -14,1 - 2479: 11,7 - 2480: 7,-6 - 2481: -18,-20 - 2482: -39,-3 - 2483: -46,12 - 2484: -35,16 - 2485: -24,15 - 2486: 14,47 - 2487: -34,-9 + 2016: 7,-22 + 2443: 27,23 + 2444: 27,26 + 2445: 48,42 + 2446: 27,43 + 2447: 18,36 + 2448: 16,29 + 2449: 7,34 + 2450: -10,23 + 2451: -22,25 + 2452: -16,30 + 2453: -25,38 + 2454: -31,22 + 2456: -46,44 + 2457: -18,53 + 2458: 4,52 + 2459: -4,57 + 2460: -3,68 + 2461: 2,70 + 2462: -8,76 + 2463: -2,27 + 2464: 16,20 + 2465: 45,12 + 2466: 33,7 + 2467: 45,-7 + 2468: 17,-4 + 2469: 10,-16 + 2470: -8,-15 + 2471: 3,2 + 2472: -14,1 + 2473: 11,7 + 2474: 7,-6 + 2475: -18,-20 + 2476: -39,-3 + 2477: -46,12 + 2478: -35,16 + 2479: -24,15 + 2480: 14,47 + 2481: -34,-9 + 5214: -37,24 - node: color: '#52B4E996' id: BotGreyscale @@ -335,21 +344,21 @@ entities: 459: -2,72 460: -1,72 461: 0,72 - 2009: 1,47 - 2010: 1,46 - 2011: 3,47 - 2012: 3,46 - 2013: 18,-11 - 2014: 19,-11 - 2015: 14,-24 - 2016: 15,-24 + 2003: 1,47 + 2004: 1,46 + 2005: 3,47 + 2006: 3,46 + 2007: 18,-11 + 2008: 19,-11 + 2009: 14,-24 + 2010: 15,-24 - node: color: '#52B4E996' id: BotLeftGreyscale decals: - 2325: 27,5 - 2326: 27,6 - 2327: 27,4 + 2319: 27,5 + 2320: 27,6 + 2321: 27,4 - node: color: '#FFFFFFFF' id: BotRight @@ -358,28 +367,35 @@ entities: 1202: -15,19 1203: -15,18 1204: -15,17 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: BotRight + decals: + 5235: -41,24 + 5236: -41,22 - node: color: '#FFFFFFFF' id: Box decals: - 2052: -41,6 - 2053: -41,0 - 2054: -44,-5 - 2055: -44,-6 - 2056: -44,-7 - 2057: -44,-8 - 2058: -43,-8 - 2059: -43,-7 - 2060: -43,-6 - 2061: -43,-5 - 2062: -39,-5 - 2063: -39,-6 - 2064: -39,-7 - 2065: -39,-8 - 2066: -40,-8 - 2067: -40,-7 - 2068: -40,-6 - 2069: -40,-5 + 2046: -41,6 + 2047: -41,0 + 2048: -44,-5 + 2049: -44,-6 + 2050: -44,-7 + 2051: -44,-8 + 2052: -43,-8 + 2053: -43,-7 + 2054: -43,-6 + 2055: -43,-5 + 2056: -39,-5 + 2057: -39,-6 + 2058: -39,-7 + 2059: -39,-8 + 2060: -40,-8 + 2061: -40,-7 + 2062: -40,-6 + 2063: -40,-5 - node: color: '#FFFFFFFF' id: BrickTileDarkBox @@ -433,10 +449,10 @@ entities: 1455: -7,-5 1456: -4,-5 1457: -4,-3 - 5108: -13,-5 - 5109: -13,-3 - 5110: -10,-3 - 5111: -10,-5 + 5102: -13,-5 + 5103: -13,-3 + 5104: -10,-3 + 5105: -10,-5 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe @@ -449,13 +465,13 @@ entities: 42: -5,82 1186: -16,22 1584: 9,9 - 1800: 6,-25 - 1906: 18,-22 - 1949: -11,-18 - 2005: 5,47 - 2313: 13,54 - 2348: 18,-34 - 5113: 19,-14 + 1794: 6,-25 + 1900: 18,-22 + 1943: -11,-18 + 1999: 5,47 + 2307: 13,54 + 2342: 18,-34 + 5107: 19,-14 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw @@ -468,33 +484,33 @@ entities: 46: 3,82 1184: -18,22 1588: 7,9 - 1777: 4,-18 - 1797: 5,-25 - 1936: 18,-14 - 2006: 4,47 - 2314: 8,54 + 1771: 4,-18 + 1791: 5,-25 + 1930: 18,-14 + 2000: 4,47 + 2308: 8,54 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: 1589: 9,6 - 1798: 6,-26 - 1907: 18,-26 - 1935: 19,-18 - 2007: 5,46 - 2023: 7,-27 - 2315: 13,53 - 2345: 18,-38 + 1792: 6,-26 + 1901: 18,-26 + 1929: 19,-18 + 2001: 5,46 + 2017: 7,-27 + 2309: 13,53 + 2339: 18,-38 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: 593: -20,44 1587: 7,6 - 1799: 5,-26 - 1934: 18,-18 - 2008: 4,46 - 2316: 8,53 + 1793: 5,-26 + 1928: 18,-18 + 2002: 4,46 + 2310: 8,53 - node: color: '#FFFFFFFF' id: BrickTileDarkEndE @@ -505,18 +521,18 @@ entities: color: '#FFFFFFFF' id: BrickTileDarkEndN decals: - 1899: 17,-23 - 2040: -4,83 - 2041: -1,83 - 2042: 2,83 + 1893: 17,-23 + 2034: -4,83 + 2035: -1,83 + 2036: 2,83 - node: color: '#FFFFFFFF' id: BrickTileDarkEndS decals: - 1900: 17,-25 - 2037: -4,82 - 2038: -1,82 - 2039: 2,82 + 1894: 17,-25 + 2031: -4,82 + 2032: -1,82 + 2033: 2,82 - node: color: '#FFFFFFFF' id: BrickTileDarkEndW @@ -527,26 +543,26 @@ entities: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: - 1943: 13,-25 - 1992: 0,45 - 2347: 18,-35 - 2349: 17,-34 + 1937: 13,-25 + 1986: 0,45 + 2341: 18,-35 + 2343: 17,-34 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 2383: 29,2 + 2377: 29,2 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: 27: -3,77 414: -3,76 - 1919: 17,-10 - 1944: 13,-23 - 1991: 0,48 - 2346: 18,-37 - 2350: 17,-38 + 1913: 17,-10 + 1938: 13,-23 + 1985: 0,48 + 2340: 18,-37 + 2344: 17,-38 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw @@ -554,8 +570,8 @@ entities: 28: 1,77 415: 1,76 684: -7,62 - 1920: 20,-10 - 2382: 29,7 + 1914: 20,-10 + 2376: 29,7 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE @@ -617,31 +633,32 @@ entities: 1585: 9,8 1586: 9,7 1720: 13,-24 - 1902: 17,-24 - 1903: 18,-24 - 1904: 18,-23 - 1905: 18,-25 - 1937: 19,-15 - 1938: 19,-16 - 1939: 19,-17 - 1947: -11,-19 - 1948: -11,-20 - 1989: 0,47 - 1990: 0,46 - 2024: 7,-26 - 2025: 7,-25 - 2026: 7,-24 - 2164: -37,28 - 2165: -37,27 - 2166: -37,23 - 2167: -37,26 - 2168: -37,25 - 2207: -35,-1 - 2208: -35,-2 - 2209: -35,-3 - 2210: -35,-4 - 2211: -35,-5 - 2212: -35,-6 + 1896: 17,-24 + 1897: 18,-24 + 1898: 18,-23 + 1899: 18,-25 + 1931: 19,-15 + 1932: 19,-16 + 1933: 19,-17 + 1941: -11,-19 + 1942: -11,-20 + 1983: 0,47 + 1984: 0,46 + 2018: 7,-26 + 2019: 7,-25 + 2020: 7,-24 + 2158: -37,28 + 2159: -37,27 + 2160: -37,23 + 2161: -37,26 + 2162: -37,25 + 2201: -35,-1 + 2202: -35,-2 + 2203: -35,-3 + 2204: -35,-4 + 2205: -35,-5 + 2206: -35,-6 + 5212: -37,24 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN @@ -676,53 +693,55 @@ entities: 1264: 20,34 1265: 21,34 1593: 8,9 - 1778: 5,-18 - 1779: 6,-18 - 1780: 7,-18 - 1851: 14,29 - 1852: 15,29 - 1853: 16,29 - 1909: 17,-22 - 1950: -12,-18 - 1951: -13,-18 - 1952: -14,-18 - 1953: -15,-18 - 2081: -37,11 - 2082: -36,11 - 2083: -35,11 - 2230: 26,-12 - 2231: 27,-12 - 2232: 28,-12 - 2233: 29,-12 - 2234: 30,-12 - 2281: 41,44 - 2282: 42,44 - 2283: 43,44 - 2284: 44,44 - 2317: 9,54 - 2318: 10,54 - 2319: 11,54 - 2320: 12,54 - 5130: 22,-17 - 5131: 21,-17 - 5132: 20,-17 - 5133: 20,-15 - 5134: 21,-15 - 5135: 22,-15 - 5136: 15,-15 - 5137: 16,-15 - 5138: 17,-15 - 5139: 15,-17 - 5140: 16,-17 - 5141: 17,-17 - 5178: 18,-13 - 5179: 19,-13 + 1772: 5,-18 + 1773: 6,-18 + 1774: 7,-18 + 1845: 14,29 + 1846: 15,29 + 1847: 16,29 + 1903: 17,-22 + 1944: -12,-18 + 1945: -13,-18 + 1946: -14,-18 + 1947: -15,-18 + 2075: -37,11 + 2076: -36,11 + 2077: -35,11 + 2224: 26,-12 + 2225: 27,-12 + 2226: 28,-12 + 2227: 29,-12 + 2228: 30,-12 + 2275: 41,44 + 2276: 42,44 + 2277: 43,44 + 2278: 44,44 + 2311: 9,54 + 2312: 10,54 + 2313: 11,54 + 2314: 12,54 + 5124: 22,-17 + 5125: 21,-17 + 5126: 20,-17 + 5127: 20,-15 + 5128: 21,-15 + 5129: 22,-15 + 5130: 15,-15 + 5131: 16,-15 + 5132: 17,-15 + 5133: 15,-17 + 5134: 16,-17 + 5135: 17,-17 + 5172: 18,-13 + 5173: 19,-13 + 5239: -46,28 + 5240: -45,28 - node: color: '#D4D4D479' id: BrickTileDarkLineS decals: - 5172: 18,-12 - 5173: 19,-12 + 5166: 18,-12 + 5167: 19,-12 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS @@ -790,45 +809,47 @@ entities: 1210: -9,17 1211: -8,17 1590: 8,6 - 1848: 15,27 - 1849: 14,27 - 1850: 16,27 - 1908: 17,-26 - 1917: 18,-10 - 1918: 19,-10 - 2027: 6,-27 - 2028: 5,-27 - 2029: 4,-27 - 2078: -37,9 - 2079: -36,9 - 2080: -35,9 - 2225: 26,-14 - 2226: 27,-14 - 2227: 28,-14 - 2228: 29,-14 - 2229: 30,-14 - 2277: 41,42 - 2278: 42,42 - 2279: 43,42 - 2280: 44,42 - 2321: 9,53 - 2322: 10,53 - 2323: 11,53 - 2324: 12,53 - 5118: 22,-15 - 5119: 21,-15 - 5120: 20,-15 - 5121: 17,-15 - 5122: 16,-15 - 5123: 15,-15 - 5124: 15,-17 - 5125: 16,-17 - 5126: 17,-17 - 5127: 20,-17 - 5128: 21,-17 - 5129: 22,-17 - 5176: 18,-13 - 5177: 19,-13 + 1842: 15,27 + 1843: 14,27 + 1844: 16,27 + 1902: 17,-26 + 1911: 18,-10 + 1912: 19,-10 + 2021: 6,-27 + 2022: 5,-27 + 2023: 4,-27 + 2072: -37,9 + 2073: -36,9 + 2074: -35,9 + 2219: 26,-14 + 2220: 27,-14 + 2221: 28,-14 + 2222: 29,-14 + 2223: 30,-14 + 2271: 41,42 + 2272: 42,42 + 2273: 43,42 + 2274: 44,42 + 2315: 9,53 + 2316: 10,53 + 2317: 11,53 + 2318: 12,53 + 5112: 22,-15 + 5113: 21,-15 + 5114: 20,-15 + 5115: 17,-15 + 5116: 16,-15 + 5117: 15,-15 + 5118: 15,-17 + 5119: 16,-17 + 5120: 17,-17 + 5121: 20,-17 + 5122: 21,-17 + 5123: 22,-17 + 5170: 18,-13 + 5171: 19,-13 + 5237: -45,27 + 5238: -46,27 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW @@ -887,43 +908,45 @@ entities: 1591: 7,7 1592: 7,8 1714: 21,-27 - 1781: 4,-19 - 1782: 4,-20 - 1783: 4,-21 - 1784: 4,-22 - 1901: 17,-24 - 1940: 18,-17 - 1941: 18,-16 - 1942: 18,-15 - 1961: -14,-38 - 1962: -14,-37 - 1963: -14,-36 - 1964: -14,-35 - 1965: -14,-34 - 1966: -14,-33 - 1967: -14,-32 - 1968: -14,-25 - 1969: -14,-24 - 1970: -14,-23 - 1971: -14,-22 - 2154: -40,17 - 2155: -40,18 - 2156: -40,19 - 2157: -40,20 - 2158: -40,21 - 2159: -40,22 - 2160: -40,23 - 2161: -40,28 - 2162: -40,29 - 2163: -40,30 - 2201: -37,-1 - 2202: -37,-2 - 2203: -37,-3 - 2204: -37,-4 - 2205: -37,-5 - 2206: -37,-6 - 2380: 29,4 - 2381: 29,5 + 1775: 4,-19 + 1776: 4,-20 + 1777: 4,-21 + 1778: 4,-22 + 1895: 17,-24 + 1934: 18,-17 + 1935: 18,-16 + 1936: 18,-15 + 1955: -14,-38 + 1956: -14,-37 + 1957: -14,-36 + 1958: -14,-35 + 1959: -14,-34 + 1960: -14,-33 + 1961: -14,-32 + 1962: -14,-25 + 1963: -14,-24 + 1964: -14,-23 + 1965: -14,-22 + 2148: -40,17 + 2149: -40,18 + 2150: -40,19 + 2151: -40,20 + 2156: -40,29 + 2157: -40,30 + 2195: -37,-1 + 2196: -37,-2 + 2197: -37,-3 + 2198: -37,-4 + 2199: -37,-5 + 2200: -37,-6 + 2374: 29,4 + 2375: 29,5 + 5215: -43,26 + 5216: -43,25 + 5217: -43,24 + 5218: -43,23 + 5219: -43,22 + 5220: -43,21 - node: color: '#FFFFFFFF' id: BrickTileSteelBox @@ -950,36 +973,36 @@ entities: 744: 10,67 745: 11,68 746: 10,69 - 1866: -32,37 - 1867: -32,33 - 1868: -32,30 - 1869: -32,27 - 1870: -32,24 - 1871: -32,21 - 1872: -32,18 - 1873: -32,14 - 1874: -32,10 - 1875: -32,7 - 1876: -32,4 - 1877: -32,1 - 1878: -32,-2 - 1879: -32,-5 - 1880: -32,-9 - 1881: 31,-9 - 1882: 31,-5 - 1883: 31,-2 - 1884: 31,1 - 1885: 31,4 - 1886: 31,7 - 1887: 31,10 - 1888: 31,14 - 1889: 31,18 - 1890: 31,21 - 1891: 31,24 - 1892: 31,27 - 1893: 31,30 - 1894: 31,33 - 1895: 31,37 + 1860: -32,37 + 1861: -32,33 + 1862: -32,30 + 1863: -32,27 + 1864: -32,24 + 1865: -32,21 + 1866: -32,18 + 1867: -32,14 + 1868: -32,10 + 1869: -32,7 + 1870: -32,4 + 1871: -32,1 + 1872: -32,-2 + 1873: -32,-5 + 1874: -32,-9 + 1875: 31,-9 + 1876: 31,-5 + 1877: 31,-2 + 1878: 31,1 + 1879: 31,4 + 1880: 31,7 + 1881: 31,10 + 1882: 31,14 + 1883: 31,18 + 1884: 31,21 + 1885: 31,24 + 1886: 31,27 + 1887: 31,30 + 1888: 31,33 + 1889: 31,37 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNe @@ -989,8 +1012,8 @@ entities: 1336: -10,-13 1358: 11,-13 1376: -8,-12 - 1823: 4,19 - 1862: -45,41 + 1817: 4,19 + 1856: -45,41 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNw @@ -1002,11 +1025,11 @@ entities: 1337: -13,-13 1359: 8,-13 1402: 6,-12 - 1834: -6,19 - 1863: -48,41 - 2131: -36,7 - 2191: -4,57 - 2407: 26,18 + 1828: -6,19 + 1857: -48,41 + 2125: -36,7 + 2185: -4,57 + 2401: 26,18 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSe @@ -1014,7 +1037,7 @@ entities: 772: 21,40 1334: -10,-15 1357: 11,-15 - 2401: 23,20 + 2395: 23,20 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSw @@ -1024,18 +1047,18 @@ entities: 1046: -19,30 1335: -13,-15 1356: 8,-15 - 2132: -36,4 - 2186: -4,52 + 2126: -36,4 + 2180: -4,52 - node: color: '#FFFFFFFF' id: BrickTileSteelEndN decals: - 2271: -28,33 + 2265: -28,33 - node: color: '#FFFFFFFF' id: BrickTileSteelEndS decals: - 2272: -28,30 + 2266: -28,30 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSw @@ -1072,29 +1095,29 @@ entities: 1723: 13,-29 1724: 13,-30 1725: 13,-31 - 1729: 13,-35 - 1730: 13,-36 - 1731: 13,-37 - 1732: 13,-38 - 1820: 4,16 - 1821: 4,17 - 1822: 4,18 - 1865: -45,40 - 2094: -39,-3 - 2095: -39,-2 - 2096: -39,-1 - 2097: -39,0 - 2098: -38,3 - 2099: -38,4 - 2100: -38,5 - 2101: -38,6 - 2102: -38,7 - 2109: -35,1 - 2110: -35,2 - 2273: -28,32 - 2274: -28,31 - 2402: 23,21 - 2403: 23,22 + 1726: 13,-35 + 1727: 13,-36 + 1728: 13,-37 + 1729: 13,-38 + 1814: 4,16 + 1815: 4,17 + 1816: 4,18 + 1859: -45,40 + 2088: -39,-3 + 2089: -39,-2 + 2090: -39,-1 + 2091: -39,0 + 2092: -38,3 + 2093: -38,4 + 2094: -38,5 + 2095: -38,6 + 2096: -38,7 + 2103: -35,1 + 2104: -35,2 + 2267: -28,32 + 2268: -28,31 + 2396: 23,21 + 2397: 23,22 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN @@ -1137,18 +1160,18 @@ entities: 1400: 8,-12 1401: 7,-12 1420: -14,-15 - 1824: 3,19 - 1825: 2,19 - 1826: 1,19 - 1838: -5,19 - 1839: -4,19 - 1840: -3,19 - 1860: -47,41 - 1861: -46,41 - 2134: -35,7 - 2135: -34,7 - 2192: -3,57 - 2406: 27,18 + 1818: 3,19 + 1819: 2,19 + 1820: 1,19 + 1832: -5,19 + 1833: -4,19 + 1834: -3,19 + 1854: -47,41 + 1855: -46,41 + 2128: -35,7 + 2129: -34,7 + 2186: -3,57 + 2400: 27,18 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS @@ -1169,11 +1192,11 @@ entities: 1370: -14,-13 1371: -14,-12 1419: -14,-15 - 2136: -35,4 - 2137: -34,4 - 2185: -3,52 - 2404: 21,20 - 2418: 22,20 + 2130: -35,4 + 2131: -34,4 + 2179: -3,52 + 2398: 21,20 + 2412: 22,20 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW @@ -1198,40 +1221,40 @@ entities: 1404: 6,-14 1405: 6,-15 1406: 6,-16 - 1733: 9,-21 - 1734: 9,-22 - 1735: 9,-23 - 1736: 9,-24 - 1737: 9,-25 - 1738: 9,-26 - 1739: 9,-27 - 1740: 4,-33 - 1741: 4,-34 - 1742: 4,-35 - 1743: 11,-36 - 1744: 11,-37 - 1745: 11,-38 - 1835: -6,18 - 1836: -6,17 - 1837: -6,16 - 1864: -48,40 - 2091: -44,-1 - 2092: -44,-2 - 2093: -44,-3 - 2103: -41,7 - 2104: -41,8 - 2105: -41,9 - 2106: -41,10 - 2107: -41,11 - 2108: -41,3 - 2133: -36,6 - 2187: -4,53 - 2188: -4,54 - 2189: -4,55 - 2190: -4,56 - 2275: -28,31 - 2276: -28,32 - 2400: 26,17 + 1730: 9,-21 + 1731: 9,-22 + 1732: 9,-23 + 1733: 9,-24 + 1734: 9,-25 + 1735: 9,-26 + 1736: 9,-27 + 1737: 4,-33 + 1738: 4,-34 + 1739: 4,-35 + 1740: 11,-36 + 1741: 11,-37 + 1742: 11,-38 + 1829: -6,18 + 1830: -6,17 + 1831: -6,16 + 1858: -48,40 + 2085: -44,-1 + 2086: -44,-2 + 2087: -44,-3 + 2097: -41,7 + 2098: -41,8 + 2099: -41,9 + 2100: -41,10 + 2101: -41,11 + 2102: -41,3 + 2127: -36,6 + 2181: -4,53 + 2182: -4,54 + 2183: -4,55 + 2184: -4,56 + 2269: -28,31 + 2270: -28,32 + 2394: 26,17 - node: color: '#FFFFFFFF' id: BrickTileWhiteBox @@ -1242,7 +1265,7 @@ entities: id: BrickTileWhiteCornerNe decals: 55: -2,80 - 1910: 18,-22 + 1904: 18,-22 - node: color: '#52B4E996' id: BrickTileWhiteCornerNe @@ -1250,7 +1273,7 @@ entities: 56: 5,82 916: 12,28 989: 7,34 - 1830: 4,19 + 1824: 4,19 - node: color: '#A4610696' id: BrickTileWhiteCornerNe @@ -1273,7 +1296,7 @@ entities: decals: 70: -5,82 1387: -8,-12 - 1958: -11,-18 + 1952: -11,-18 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNe @@ -1285,8 +1308,8 @@ entities: 1231: -5,23 1683: 7,1 1686: 10,-2 - 2391: -17,-40 - 2396: 16,-40 + 2385: -17,-40 + 2390: 16,-40 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNw @@ -1302,7 +1325,7 @@ entities: id: BrickTileWhiteCornerNw decals: 63: 0,83 - 2142: -36,7 + 2136: -36,7 - node: color: '#D381C996' id: BrickTileWhiteCornerNw @@ -1311,7 +1334,7 @@ entities: 1064: -22,34 1170: -22,25 1199: -18,22 - 1841: -6,19 + 1835: -6,19 - node: color: '#D56F18EF' id: BrickTileWhiteCornerNw @@ -1322,14 +1345,14 @@ entities: id: BrickTileWhiteCornerNw decals: 77: 0,80 - 2194: -4,57 + 2188: -4,57 - node: color: '#EFB34196' id: BrickTileWhiteCornerNw decals: 71: -7,82 1411: 6,-12 - 1792: 4,-18 + 1786: 4,-18 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNw @@ -1339,13 +1362,13 @@ entities: 1008: 4,33 1232: -7,23 1682: 6,1 - 2393: -18,-40 - 2394: 15,-40 + 2387: -18,-40 + 2388: 15,-40 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSe decals: - 1911: 18,-26 + 1905: 18,-26 - node: color: '#52B4E996' id: BrickTileWhiteCornerSe @@ -1360,7 +1383,7 @@ entities: color: '#EFB34196' id: BrickTileWhiteCornerSe decals: - 2030: 7,-27 + 2024: 7,-27 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSe @@ -1373,8 +1396,8 @@ entities: 1226: -4,21 1227: -5,22 1681: 10,-4 - 2390: -17,-41 - 2395: 16,-41 + 2384: -17,-41 + 2389: 16,-41 - node: color: '#52B4E996' id: BrickTileWhiteCornerSw @@ -1384,7 +1407,7 @@ entities: color: '#A4610696' id: BrickTileWhiteCornerSw decals: - 2140: -36,4 + 2134: -36,4 - node: color: '#D381C996' id: BrickTileWhiteCornerSw @@ -1401,7 +1424,7 @@ entities: id: BrickTileWhiteCornerSw decals: 594: -20,44 - 2199: -4,52 + 2193: -4,52 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSw @@ -1413,8 +1436,8 @@ entities: 1005: 4,31 1233: -7,22 1684: 6,-4 - 2392: -18,-41 - 2397: 15,-41 + 2386: -18,-41 + 2391: 15,-41 - node: color: '#FFFFFFFF' id: BrickTileWhiteEndN @@ -1429,8 +1452,8 @@ entities: color: '#334E6DC8' id: BrickTileWhiteInnerNe decals: - 1946: 13,-25 - 1994: 0,45 + 1940: 13,-25 + 1988: 0,45 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerNe @@ -1440,14 +1463,14 @@ entities: color: '#334E6DC8' id: BrickTileWhiteInnerNw decals: - 2385: 29,2 + 2379: 29,2 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSe decals: - 1923: 17,-10 - 1945: 13,-23 - 1993: 0,48 + 1917: 17,-10 + 1939: 13,-23 + 1987: 0,48 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerSe @@ -1457,8 +1480,8 @@ entities: color: '#334E6DC8' id: BrickTileWhiteInnerSw decals: - 1924: 20,-10 - 2384: 29,7 + 1918: 20,-10 + 2378: 29,7 - node: color: '#52B4E996' id: BrickTileWhiteInnerSw @@ -1490,12 +1513,12 @@ entities: 437: 0,73 438: 0,71 439: 0,70 - 1776: 13,-24 - 1912: 18,-25 - 1913: 18,-24 - 1914: 18,-23 - 1995: 0,46 - 1996: 0,47 + 1770: 13,-24 + 1906: 18,-25 + 1907: 18,-24 + 1908: 18,-23 + 1989: 0,46 + 1990: 0,47 - node: color: '#52B4E996' id: BrickTileWhiteLineE @@ -1514,31 +1537,31 @@ entities: 1275: 22,28 1276: 22,27 1277: 22,26 - 1831: 4,18 - 1832: 4,17 - 1833: 4,16 + 1825: 4,18 + 1826: 4,17 + 1827: 4,16 - node: color: '#A4610696' id: BrickTileWhiteLineE decals: 65: 1,82 - 2111: -35,1 - 2112: -35,2 - 2113: -39,-3 - 2114: -39,-2 - 2115: -39,-1 - 2116: -39,0 - 2117: -38,7 - 2118: -38,6 - 2119: -38,5 - 2120: -38,4 - 2121: -38,3 - 2169: -37,28 - 2170: -37,27 - 2171: -37,26 - 2172: -37,25 - 2173: -37,24 - 2174: -37,23 + 2105: -35,1 + 2106: -35,2 + 2107: -39,-3 + 2108: -39,-2 + 2109: -39,-1 + 2110: -39,0 + 2111: -38,7 + 2112: -38,6 + 2113: -38,5 + 2114: -38,4 + 2115: -38,3 + 2163: -37,28 + 2164: -37,27 + 2165: -37,26 + 2166: -37,25 + 2168: -37,23 + 5213: -37,24 - node: color: '#D381C996' id: BrickTileWhiteLineE @@ -1593,12 +1616,12 @@ entities: 659: -6,54 660: -6,53 661: -6,52 - 2213: -35,-6 - 2214: -35,-5 - 2215: -35,-4 - 2216: -35,-3 - 2217: -35,-2 - 2218: -35,-1 + 2207: -35,-6 + 2208: -35,-5 + 2209: -35,-4 + 2210: -35,-3 + 2211: -35,-2 + 2212: -35,-1 - node: color: '#EFB34196' id: BrickTileWhiteLineE @@ -1607,25 +1630,25 @@ entities: 1384: -8,-15 1385: -8,-14 1386: -8,-13 - 1746: 13,-21 - 1747: 13,-22 - 1748: 13,-23 - 1749: 13,-25 - 1750: 13,-26 - 1751: 13,-27 - 1752: 13,-28 - 1753: 13,-29 - 1754: 13,-30 - 1755: 13,-31 - 1759: 13,-35 - 1760: 13,-36 - 1761: 13,-37 - 1762: 13,-38 - 1959: -11,-19 - 1960: -11,-20 - 2034: 7,-26 - 2035: 7,-25 - 2036: 7,-24 + 1743: 13,-21 + 1744: 13,-22 + 1745: 13,-23 + 1746: 13,-25 + 1747: 13,-26 + 1748: 13,-27 + 1749: 13,-28 + 1750: 13,-29 + 1751: 13,-30 + 1752: 13,-31 + 1753: 13,-35 + 1754: 13,-36 + 1755: 13,-37 + 1756: 13,-38 + 1953: -11,-19 + 1954: -11,-20 + 2028: 7,-26 + 2029: 7,-25 + 2030: 7,-24 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineE @@ -1666,9 +1689,9 @@ entities: 453: 6,74 454: 5,74 455: 7,74 - 1915: 17,-22 - 5142: 17,-15 - 5157: 20,-15 + 1909: 17,-22 + 5136: 17,-15 + 5151: 20,-15 - node: color: '#52B4E996' id: BrickTileWhiteLineN @@ -1687,31 +1710,33 @@ entities: 1267: 20,34 1268: 19,34 1269: 21,34 - 1827: 1,19 - 1828: 2,19 - 1829: 3,19 - 1857: 14,29 - 1858: 15,29 - 1859: 16,29 - 5145: 15,-17 - 5152: 22,-17 + 1821: 1,19 + 1822: 2,19 + 1823: 3,19 + 1851: 14,29 + 1852: 15,29 + 1853: 16,29 + 5139: 15,-17 + 5146: 22,-17 - node: color: '#9FED5896' id: BrickTileWhiteLineN decals: - 5144: 15,-15 - 5159: 22,-15 + 5138: 15,-15 + 5153: 22,-15 - node: color: '#A4610696' id: BrickTileWhiteLineN decals: - 2088: -37,11 - 2089: -36,11 - 2090: -35,11 - 2143: -35,7 - 2144: -34,7 - 5143: 16,-15 - 5158: 21,-15 + 2082: -37,11 + 2083: -36,11 + 2084: -35,11 + 2137: -35,7 + 2138: -34,7 + 5137: 16,-15 + 5152: 21,-15 + 5243: -46,28 + 5244: -45,28 - node: color: '#D381C996' id: BrickTileWhiteLineN @@ -1733,15 +1758,15 @@ entities: 1168: -20,25 1169: -21,25 1200: -17,22 - 1842: -5,19 - 1843: -4,19 - 1844: -3,19 + 1836: -5,19 + 1837: -4,19 + 1838: -3,19 - node: color: '#D4D4D426' id: BrickTileWhiteLineN decals: - 5170: 18,-12 - 5171: 19,-12 + 5164: 18,-12 + 5165: 19,-12 - node: color: '#D56F18EF' id: BrickTileWhiteLineN @@ -1768,18 +1793,18 @@ entities: 675: -14,50 676: -13,50 677: -12,50 - 2193: -3,57 - 2235: 26,-12 - 2236: 27,-12 - 2237: 28,-12 - 2238: 29,-12 - 2239: 30,-12 - 2285: 41,44 - 2286: 42,44 - 2287: 43,44 - 2288: 44,44 - 5146: 16,-17 - 5153: 21,-17 + 2187: -3,57 + 2229: 26,-12 + 2230: 27,-12 + 2231: 28,-12 + 2232: 29,-12 + 2233: 30,-12 + 2279: 41,44 + 2280: 42,44 + 2281: 43,44 + 2282: 44,44 + 5140: 16,-17 + 5147: 21,-17 - node: color: '#EFB34196' id: BrickTileWhiteLineN @@ -1799,15 +1824,15 @@ entities: 1416: 11,-12 1417: 12,-12 1418: 13,-12 - 1785: 7,-18 - 1786: 6,-18 - 1787: 5,-18 - 1954: -15,-18 - 1955: -14,-18 - 1956: -13,-18 - 1957: -12,-18 - 5147: 17,-17 - 5156: 20,-17 + 1779: 7,-18 + 1780: 6,-18 + 1781: 5,-18 + 1948: -15,-18 + 1949: -14,-18 + 1950: -13,-18 + 1951: -12,-18 + 5141: 17,-17 + 5150: 20,-17 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineN @@ -1854,9 +1879,9 @@ entities: 447: 6,70 448: 5,70 449: 7,70 - 1916: 17,-26 - 1921: 18,-10 - 1922: 19,-10 + 1910: 17,-26 + 1915: 18,-10 + 1916: 19,-10 - node: color: '#52B4E996' id: BrickTileWhiteLineS @@ -1866,11 +1891,11 @@ entities: 895: 9,26 995: 6,30 996: 5,30 - 1854: 14,27 - 1855: 15,27 - 1856: 16,27 - 5150: 15,-15 - 5151: 22,-15 + 1848: 14,27 + 1849: 15,27 + 1850: 16,27 + 5144: 15,-15 + 5145: 22,-15 - node: color: '#5A5A605A' id: BrickTileWhiteLineS @@ -1889,11 +1914,13 @@ entities: color: '#A4610696' id: BrickTileWhiteLineS decals: - 2085: -37,9 - 2086: -36,9 - 2087: -35,9 - 2138: -34,4 - 2139: -35,4 + 2079: -37,9 + 2080: -36,9 + 2081: -35,9 + 2132: -34,4 + 2133: -35,4 + 5241: -45,27 + 5242: -46,27 - node: color: '#D381C996' id: BrickTileWhiteLineS @@ -1912,20 +1939,20 @@ entities: 1239: -7,21 1240: -6,21 1241: -5,21 - 5160: 16,-17 - 5165: 21,-17 + 5154: 16,-17 + 5159: 21,-17 - node: color: '#D4D4D428' id: BrickTileWhiteLineS decals: - 5163: 15,-17 - 5164: 22,-17 + 5157: 15,-17 + 5158: 22,-17 - node: color: '#D4D4D496' id: BrickTileWhiteLineS decals: - 5161: 17,-17 - 5162: 20,-17 + 5155: 17,-17 + 5156: 20,-17 - node: color: '#D56F18EF' id: BrickTileWhiteLineS @@ -1972,27 +1999,27 @@ entities: 688: -8,62 689: -9,62 690: -10,62 - 2200: -3,52 - 2240: 26,-14 - 2241: 27,-14 - 2242: 28,-14 - 2243: 29,-14 - 2244: 30,-14 - 2289: 41,42 - 2290: 42,42 - 2291: 43,42 - 2292: 44,42 - 5149: 16,-15 - 5154: 21,-15 + 2194: -3,52 + 2234: 26,-14 + 2235: 27,-14 + 2236: 28,-14 + 2237: 29,-14 + 2238: 30,-14 + 2283: 41,42 + 2284: 42,42 + 2285: 43,42 + 2286: 44,42 + 5143: 16,-15 + 5148: 21,-15 - node: color: '#EFB34196' id: BrickTileWhiteLineS decals: - 2031: 6,-27 - 2032: 5,-27 - 2033: 4,-27 - 5148: 17,-15 - 5155: 20,-15 + 2025: 6,-27 + 2026: 5,-27 + 2027: 4,-27 + 5142: 17,-15 + 5149: 20,-15 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineS @@ -2031,8 +2058,8 @@ entities: 441: -2,73 442: -2,71 443: -2,70 - 2386: 29,4 - 2387: 29,5 + 2380: 29,4 + 2381: 29,5 - node: color: '#52B4E996' id: BrickTileWhiteLineW @@ -2058,26 +2085,28 @@ entities: id: BrickTileWhiteLineW decals: 62: 0,82 - 2122: -41,11 - 2123: -41,10 - 2124: -41,9 - 2125: -41,8 - 2126: -41,7 - 2127: -41,3 - 2128: -44,-1 - 2129: -44,-2 - 2130: -44,-3 - 2141: -36,6 - 2175: -40,30 - 2176: -40,29 - 2177: -40,28 - 2178: -40,23 - 2179: -40,22 - 2180: -40,21 - 2181: -40,20 - 2182: -40,19 - 2183: -40,18 - 2184: -40,17 + 2116: -41,11 + 2117: -41,10 + 2118: -41,9 + 2119: -41,8 + 2120: -41,7 + 2121: -41,3 + 2122: -44,-1 + 2123: -44,-2 + 2124: -44,-3 + 2135: -36,6 + 2169: -40,30 + 2170: -40,29 + 2175: -40,20 + 2176: -40,19 + 2177: -40,18 + 2178: -40,17 + 5221: -43,26 + 5222: -43,25 + 5223: -43,24 + 5224: -43,23 + 5225: -43,22 + 5226: -43,21 - node: color: '#D381C996' id: BrickTileWhiteLineW @@ -2098,9 +2127,9 @@ entities: 1194: -19,19 1195: -19,20 1196: -18,21 - 1845: -6,18 - 1846: -6,17 - 1847: -6,16 + 1839: -6,18 + 1840: -6,17 + 1841: -6,16 - node: color: '#D56F18EF' id: BrickTileWhiteLineW @@ -2132,16 +2161,16 @@ entities: 681: -7,61 682: -7,60 683: -7,59 - 2195: -4,56 - 2196: -4,55 - 2197: -4,54 - 2198: -4,53 - 2219: -37,-6 - 2220: -37,-5 - 2221: -37,-4 - 2222: -37,-3 - 2223: -37,-2 - 2224: -37,-1 + 2189: -4,56 + 2190: -4,55 + 2191: -4,54 + 2192: -4,53 + 2213: -37,-6 + 2214: -37,-5 + 2215: -37,-4 + 2216: -37,-3 + 2217: -37,-2 + 2218: -37,-1 - node: color: '#EFB34196' id: BrickTileWhiteLineW @@ -2151,34 +2180,34 @@ entities: 1408: 6,-15 1409: 6,-14 1410: 6,-13 - 1763: 11,-38 - 1764: 11,-37 - 1765: 11,-36 - 1766: 4,-35 - 1767: 4,-34 - 1768: 4,-33 - 1769: 9,-27 - 1770: 9,-26 - 1771: 9,-25 - 1772: 9,-24 - 1773: 9,-23 - 1774: 9,-22 - 1775: 9,-21 - 1788: 4,-22 - 1789: 4,-21 - 1790: 4,-20 - 1791: 4,-19 - 1972: -14,-22 - 1973: -14,-23 - 1974: -14,-24 - 1975: -14,-25 - 1976: -14,-32 - 1977: -14,-33 - 1978: -14,-34 - 1979: -14,-35 - 1980: -14,-36 - 1981: -14,-37 - 1982: -14,-38 + 1757: 11,-38 + 1758: 11,-37 + 1759: 11,-36 + 1760: 4,-35 + 1761: 4,-34 + 1762: 4,-33 + 1763: 9,-27 + 1764: 9,-26 + 1765: 9,-25 + 1766: 9,-24 + 1767: 9,-23 + 1768: 9,-22 + 1769: 9,-21 + 1782: 4,-22 + 1783: 4,-21 + 1784: 4,-20 + 1785: 4,-19 + 1966: -14,-22 + 1967: -14,-23 + 1968: -14,-24 + 1969: -14,-25 + 1970: -14,-32 + 1971: -14,-33 + 1972: -14,-34 + 1973: -14,-35 + 1974: -14,-36 + 1975: -14,-37 + 1976: -14,-38 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineW @@ -2214,88 +2243,88 @@ entities: color: '#80C71FA4' id: Busha1 decals: - 5086: -47.70598,40.43374 + 5080: -47.70598,40.43374 - node: color: '#80C71FAB' id: Busha1 decals: - 2410: 22.65236,20.282064 + 2404: 22.65236,20.282064 - node: color: '#FFFFFF7F' id: Busha1 decals: - 2359: 32.123173,40.915573 + 2353: 32.123173,40.915573 - node: color: '#80C71FA4' id: Busha2 decals: - 5088: -45.230186,40.743168 + 5082: -45.230186,40.743168 - node: color: '#80C71FCA' id: Busha2 decals: - 2409: 22.247696,21.53798 + 2403: 22.247696,21.53798 - node: color: '#FFFFFF7F' id: Busha2 decals: - 2358: 28.87165,40.802044 - 2360: 32.094776,39.978962 + 2352: 28.87165,40.802044 + 2354: 32.094776,39.978962 - node: color: '#FFFFFF7F' id: Busha3 decals: - 2361: 28.928446,39.978962 + 2355: 28.928446,39.978962 - node: color: '#80C71FA4' id: Bushb1 decals: - 5085: -46.05545,40.68423 - 5089: -47.396503,39.873817 + 5079: -46.05545,40.68423 + 5083: -47.396503,39.873817 - node: color: '#80C71FCA' id: Bushb1 decals: - 2408: 21.225384,20.367212 + 2402: 21.225384,20.367212 - node: color: '#FFFFFF7F' id: Bushb1 decals: - 2362: 28.857452,41.01491 - 2363: 32.123173,41.043293 + 2356: 28.857452,41.01491 + 2357: 32.123173,41.043293 - node: color: '#80C71FAB' id: Bushb3 decals: - 2411: 26.187859,16.8762 + 2405: 26.187859,16.8762 - node: color: '#80C71FA4' id: Bushc2 decals: - 5087: -45.30387,39.903286 + 5081: -45.30387,39.903286 - node: color: '#FFFFFF7F' id: Bushf1 decals: - 2354: 28.885849,40.418884 - 2355: 32.13737,41.057484 + 2348: 28.885849,40.418884 + 2349: 32.13737,41.057484 - node: color: '#80C71FAB' id: Bushf2 decals: - 2412: 26.99719,17.621233 + 2406: 26.99719,17.621233 - node: color: '#FFFFFF7F' id: Bushf3 decals: - 2352: 32.108974,39.865433 - 2353: 28.87165,41.01491 + 2346: 32.108974,39.865433 + 2347: 28.87165,41.01491 - node: color: '#FFFFFF7F' id: Bushg3 decals: - 2356: 28.843252,39.879623 - 2357: 32.165768,40.518223 + 2350: 28.843252,39.879623 + 2351: 32.165768,40.518223 - node: color: '#DE3A3A96' id: CautionGreyscale @@ -2447,29 +2476,29 @@ entities: color: '#FFFFFFFF' id: Delivery decals: - 2050: -41,2 - 2051: -41,4 + 2044: -41,2 + 2045: -41,4 - node: color: '#52B4E996' id: DeliveryGreyscale decals: - 2328: 27,3 + 2322: 27,3 - node: color: '#334E6DC8' id: DiagonalCheckerAOverlay decals: - 2301: 13,53 - 2302: 13,54 - 2303: 11,54 - 2304: 12,54 - 2305: 12,53 - 2306: 11,53 - 2307: 10,53 - 2308: 10,54 - 2309: 9,54 - 2310: 9,53 - 2311: 8,53 - 2312: 8,54 + 2295: 13,53 + 2296: 13,54 + 2297: 11,54 + 2298: 12,54 + 2299: 12,53 + 2300: 11,53 + 2301: 10,53 + 2302: 10,54 + 2303: 9,54 + 2304: 9,53 + 2305: 8,53 + 2306: 8,54 - node: color: '#52B4E996' id: DiagonalCheckerAOverlay @@ -2492,2683 +2521,2794 @@ entities: color: '#83543273' id: Dirt decals: - 2488: 6,-9 - 2489: 4,-9 - 2490: 2,-9 - 2491: 0,-9 - 2492: -2,-9 - 2493: -4,-9 - 2494: -6,-9 - 2495: -7,-9 - 2496: -9,-9 - 2497: -11,-9 - 2498: -13,-9 - 2499: -15,-9 - 2500: -17,-9 - 2501: -18,-9 - 2502: -19,-9 - 2503: -21,-9 - 2504: -23,-9 - 2505: -25,-9 - 2506: -27,-9 - 2507: -30,-9 - 2508: -32,-9 - 2509: -32,-7 - 2510: -32,-4 - 2511: -32,-1 - 2512: -32,0 - 2513: -32,4 - 2514: -32,8 - 2515: -32,12 - 2516: -32,14 - 2517: -34,14 - 2518: -36,14 - 2519: -38,14 - 2520: -39,14 - 2521: -42,14 + 2482: 6,-9 + 2483: 4,-9 + 2484: 2,-9 + 2485: 0,-9 + 2486: -2,-9 + 2487: -4,-9 + 2488: -6,-9 + 2489: -7,-9 + 2490: -9,-9 + 2491: -11,-9 + 2492: -13,-9 + 2493: -15,-9 + 2494: -17,-9 + 2495: -18,-9 + 2496: -19,-9 + 2497: -21,-9 + 2498: -23,-9 + 2499: -25,-9 + 2500: -27,-9 + 2501: -30,-9 + 2502: -32,-9 + 2503: -32,-7 + 2504: -32,-4 + 2505: -32,-1 + 2506: -32,0 + 2507: -32,4 + 2508: -32,8 + 2509: -32,12 + 2510: -32,14 + 2511: -34,14 + 2512: -36,14 + 2513: -38,14 + 2514: -39,14 + 2515: -42,14 + 2516: -44,14 + 2517: -46,14 + 2518: -48,14 + 2519: -50,14 + 2520: -48,14 + 2521: -46,14 2522: -44,14 - 2523: -46,14 - 2524: -48,14 - 2525: -50,14 - 2526: -48,14 - 2527: -46,14 - 2528: -44,14 - 2529: -42,14 - 2530: -40,14 - 2531: -38,14 - 2532: -36,14 - 2533: -29,14 - 2534: -27,14 - 2535: -25,14 - 2536: -23,14 - 2537: -21,14 - 2538: -19,14 - 2539: -17,14 - 2540: -15,14 - 2541: -13,14 - 2542: -11,14 - 2543: -9,14 - 2544: -7,14 - 2545: -5,14 - 2546: -3,14 - 2547: -1,14 - 2548: 1,14 - 2549: 3,14 - 2550: 5,14 - 2551: 7,14 - 2552: 9,14 - 2553: 11,14 - 2554: 13,14 - 2555: 15,14 - 2556: 17,14 - 2557: 19,14 - 2558: 21,14 - 2559: 23,14 - 2560: 25,14 - 2561: 27,14 - 2562: 29,14 - 2563: 31,14 - 2564: 33,14 - 2565: 35,14 - 2566: 37,14 - 2567: 39,14 - 2568: 41,14 - 2569: 43,14 - 2570: 45,14 - 2571: 47,14 - 2572: 49,14 - 2573: 30,14 - 2574: 30,15 - 2575: 30,17 - 2576: 30,19 - 2577: 30,22 - 2578: 30,24 - 2579: 30,26 - 2580: 30,28 - 2581: 30,30 - 2582: 30,32 - 2583: 30,34 - 2584: 31,28 - 2585: 31,24 - 2586: 31,20 - 2587: 32,19 - 2588: 31,10 - 2589: 31,6 - 2590: 30,5 - 2591: 28,3 + 2523: -42,14 + 2524: -40,14 + 2525: -38,14 + 2526: -36,14 + 2527: -29,14 + 2528: -27,14 + 2529: -25,14 + 2530: -23,14 + 2531: -21,14 + 2532: -19,14 + 2533: -17,14 + 2534: -15,14 + 2535: -13,14 + 2536: -11,14 + 2537: -9,14 + 2538: -7,14 + 2539: -5,14 + 2540: -3,14 + 2541: -1,14 + 2542: 1,14 + 2543: 3,14 + 2544: 5,14 + 2545: 7,14 + 2546: 9,14 + 2547: 11,14 + 2548: 13,14 + 2549: 15,14 + 2550: 17,14 + 2551: 19,14 + 2552: 21,14 + 2553: 23,14 + 2554: 25,14 + 2555: 27,14 + 2556: 29,14 + 2557: 31,14 + 2558: 33,14 + 2559: 35,14 + 2560: 37,14 + 2561: 39,14 + 2562: 41,14 + 2563: 43,14 + 2564: 45,14 + 2565: 47,14 + 2566: 49,14 + 2567: 30,14 + 2568: 30,15 + 2569: 30,17 + 2570: 30,19 + 2571: 30,22 + 2572: 30,24 + 2573: 30,26 + 2574: 30,28 + 2575: 30,30 + 2576: 30,32 + 2577: 30,34 + 2578: 31,28 + 2579: 31,24 + 2580: 31,20 + 2581: 32,19 + 2582: 31,10 + 2583: 31,6 + 2584: 30,5 + 2585: 28,3 - node: cleanable: True color: '#83543273' id: Dirt decals: - 2592: 27,3 - 2593: 27,4 - 2594: 27,5 - 2595: 27,6 - 2596: 28,6 - 2597: 29,6 - 2598: 29,5 - 2599: 31,5 - 2600: 32,6 - 2601: 32,11 - 2602: 32,14 - 2603: 26,14 - 2604: 21,14 - 2605: 18,14 - 2606: 16,14 - 2607: 14,14 - 2608: 10,14 - 2609: 5,14 - 2610: 2,14 - 2611: -4,14 - 2612: -7,14 - 2613: -10,14 - 2614: -13,14 - 2615: -15,14 - 2616: -19,14 - 2617: -21,14 - 2618: -26,14 - 2619: -28,13 - 2620: -30,13 - 2621: -33,14 - 2622: -35,14 - 2623: -37,13 - 2624: -39,14 - 2625: -41,14 - 2626: -39,15 - 2627: -38,15 - 2628: -37,14 - 2629: -48,13 - 2630: -50,13 - 2631: -51,15 - 2632: -51,13 - 2633: -53,13 - 2634: -53,15 - 2635: -51,14 - 2636: -34,4 - 2637: -34,6 - 2638: -34,7 - 2639: -34,5 - 2640: -36,5 - 2641: -36,4 - 2642: -36,6 - 2643: -36,7 - 2644: -35,7 - 2645: -31,7 - 2646: -31,6 - 2647: -31,4 - 2648: -34,4 - 2649: -36,2 - 2650: -37,2 - 2651: -39,2 - 2652: -41,1 - 2653: -41,0 - 2654: -40,0 - 2655: -40,1 - 2656: -42,2 - 2657: -43,2 - 2658: -44,2 - 2659: -45,2 - 2660: -44,4 - 2661: -43,4 - 2662: -43,4 - 2663: -42,4 - 2664: -40,4 - 2665: -39,6 - 2666: -39,5 - 2667: -40,6 - 2668: -41,8 - 2669: -41,10 - 2670: -41,10 - 2671: -39,7 - 2672: -38,7 - 2673: -41,-1 - 2674: -42,-3 - 2675: -41,-3 - 2676: -42,-4 - 2677: -41,-4 - 2678: -42,-5 - 2679: -42,-6 - 2680: -41,-7 - 2681: -42,-8 - 2682: -44,-8 - 2683: -43,-6 - 2684: -40,-6 - 2685: -39,-6 - 2686: -39,-8 - 2687: -41,-8 - 2688: -39,-5 - 2689: -42,-2 - 2690: -42,-1 - 2691: -39,-2 - 2692: -39,1 - 2693: -37,1 - 2694: -36,-3 - 2695: -35,-5 - 2696: -35,-5 - 2697: -37,-3 - 2698: -40,-2 - 2699: -35,-6 - 2700: -36,-5 - 2701: -36,-4 - 2702: -37,-3 - 2703: -37,-2 - 2704: -33,-5 - 2705: -32,-5 - 2706: -33,-5 - 2707: -32,-3 - 2708: -32,-2 - 2709: -32,1 - 2710: -32,4 - 2711: -32,8 - 2712: -32,5 - 2713: -32,6 - 2714: -33,7 - 2715: -33,6 - 2716: -33,4 - 2717: -33,3 - 2718: -32,2 - 2719: -32,3 - 2720: -31,0 - 2721: -31,1 - 2722: -32,-6 - 2723: -31,-7 - 2724: -31,-8 - 2725: -30,-8 - 2726: -29,-9 - 2727: -28,-9 - 2728: -27,-8 - 2729: -28,-8 - 2730: -27,-9 - 2731: -28,-10 - 2732: -27,-10 - 2733: -29,-10 - 2734: -25,-9 - 2735: -21,-9 - 2736: -19,-9 - 2737: -17,-9 - 2738: -14,-9 - 2739: -11,-9 - 2740: -9,-9 - 2741: -6,-9 - 2742: -4,-9 - 2743: -2,-9 - 2744: 2,-9 - 2745: 4,-9 - 2746: 6,-9 - 2747: 9,-9 - 2748: 11,-9 - 2749: 13,-9 - 2750: 15,-9 - 2751: 18,-9 - 2752: 20,-9 - 2753: 23,-9 - 2754: 25,-9 - 2755: 27,-9 - 2756: 30,-9 - 2757: 32,-9 - 2758: 35,-9 - 2759: 37,-9 - 2760: 39,-9 - 2761: 42,-9 - 2762: 44,-9 - 2763: 46,-9 - 2764: 48,-9 - 2765: 46,-10 - 2766: 46,-9 - 2767: 47,-9 - 2768: 48,-10 - 2769: 49,-10 - 2770: 49,-9 - 2771: 50,-8 - 2772: 51,-8 - 2773: 50,-8 - 2774: 50,-10 - 2775: 48,-10 - 2776: 44,-10 - 2777: 38,-10 - 2778: 39,-10 - 2779: 41,-10 - 2780: 40,-9 - 2781: 38,-9 - 2782: 38,-10 - 2783: 37,-9 - 2784: 34,-8 - 2785: 33,-8 - 2786: 32,-8 - 2787: 32,-7 - 2788: 30,-8 - 2789: 30,-7 - 2790: 29,-8 - 2791: 29,-10 - 2792: 30,-10 - 2793: 26,-11 - 2794: 27,-10 - 2795: 27,-11 - 2796: 27,-12 - 2797: 27,-13 - 2798: 28,-13 - 2799: 28,-14 - 2800: 28,-15 - 2801: 27,-14 - 2802: 28,-14 - 2803: 27,-9 - 2804: 30,-5 - 2805: 30,-2 - 2806: 32,-2 - 2807: 31,-3 - 2808: 30,-4 - 2809: 30,-4 - 2810: 31,-6 - 2811: 32,-5 - 2812: 30,-1 - 2813: 30,2 - 2814: 29,3 - 2815: 33,3 - 2816: 34,0 - 2817: 34,2 - 2818: 34,5 - 2819: 34,1 - 2820: 32,0 - 2821: 29,4 - 2822: 31,8 - 2823: 32,11 - 2824: 30,14 - 2825: 35,13 - 2826: 39,12 - 2827: 42,14 - 2828: 45,14 - 2829: 50,13 - 2830: 51,13 - 2831: 51,15 - 2832: 50,15 - 2833: 51,15 - 2834: 49,15 - 2835: 48,15 - 2836: 48,17 - 2837: 48,17 - 2838: 48,15 - 2839: 46,15 - 2840: 46,16 - 2841: 46,17 - 2842: 46,15 - 2843: 45,13 - 2844: 48,13 - 2845: 50,13 - 2846: 49,13 - 2847: 46,13 - 2848: 42,13 - 2849: 40,14 - 2850: 39,14 - 2851: 36,13 - 2852: 34,15 - 2853: 31,14 - 2854: 30,13 - 2855: 27,13 - 2856: 26,14 - 2857: 24,15 - 2858: 22,14 - 2859: 21,13 - 2860: 30,16 - 2861: 31,18 - 2862: 29,20 - 2863: 31,22 - 2864: 30,24 - 2865: 28,26 - 2866: 29,26 - 2867: 28,26 - 2868: 28,28 - 2869: 27,25 - 2870: 28,25 - 2871: 28,25 - 2872: 29,25 - 2873: 28,28 - 2874: 29,32 - 2875: 29,32 - 2876: 29,33 - 2877: 27,33 - 2878: 27,32 - 2879: 26,32 - 2880: 25,33 - 2881: 25,35 - 2882: 25,35 - 2883: 26,35 - 2884: 25,36 - 2885: 27,36 - 2886: 25,36 - 2887: 26,36 - 2888: 27,36 - 2889: 30,36 - 2890: 30,37 - 2891: 30,38 - 2892: 31,41 - 2893: 30,41 - 2894: 31,40 - 2895: 30,44 - 2896: 30,45 - 2897: 31,46 - 2898: 31,44 - 2899: 30,47 - 2900: 31,49 - 2901: 32,47 - 2902: 35,47 - 2903: 34,48 - 2904: 31,47 - 2905: 28,47 - 2906: 27,47 - 2907: 27,45 - 2908: 27,43 - 2909: 27,47 - 2910: 27,49 - 2911: 29,47 - 2912: 31,48 - 2913: 32,37 - 2914: 34,37 - 2915: 37,37 - 2916: 41,38 - 2917: 46,37 - 2918: 34,38 - 2919: 34,38 - 2920: 36,38 - 2921: 35,38 - 2922: 35,37 - 2923: 39,37 - 2924: 45,36 - 2925: 41,37 - 2926: 41,39 - 2927: 43,40 - 2928: 42,40 - 2929: 41,40 - 2930: 42,40 - 2931: 41,40 - 2932: 45,40 - 2933: 47,41 - 2934: 47,43 - 2935: 47,44 - 2936: 46,42 - 2937: 47,38 - 2938: 47,37 - 2939: 48,40 + 2586: 27,3 + 2587: 27,4 + 2588: 27,5 + 2589: 27,6 + 2590: 28,6 + 2591: 29,6 + 2592: 29,5 + 2593: 31,5 + 2594: 32,6 + 2595: 32,11 + 2596: 32,14 + 2597: 26,14 + 2598: 21,14 + 2599: 18,14 + 2600: 16,14 + 2601: 14,14 + 2602: 10,14 + 2603: 5,14 + 2604: 2,14 + 2605: -4,14 + 2606: -7,14 + 2607: -10,14 + 2608: -13,14 + 2609: -15,14 + 2610: -19,14 + 2611: -21,14 + 2612: -26,14 + 2613: -28,13 + 2614: -30,13 + 2615: -33,14 + 2616: -35,14 + 2617: -37,13 + 2618: -39,14 + 2619: -41,14 + 2620: -39,15 + 2621: -38,15 + 2622: -37,14 + 2623: -48,13 + 2624: -50,13 + 2625: -51,15 + 2626: -51,13 + 2627: -53,13 + 2628: -53,15 + 2629: -51,14 + 2630: -34,4 + 2631: -34,6 + 2632: -34,7 + 2633: -34,5 + 2634: -36,5 + 2635: -36,4 + 2636: -36,6 + 2637: -36,7 + 2638: -35,7 + 2639: -31,7 + 2640: -31,6 + 2641: -31,4 + 2642: -34,4 + 2643: -36,2 + 2644: -37,2 + 2645: -39,2 + 2646: -41,1 + 2647: -41,0 + 2648: -40,0 + 2649: -40,1 + 2650: -42,2 + 2651: -43,2 + 2652: -44,2 + 2653: -45,2 + 2654: -44,4 + 2655: -43,4 + 2656: -43,4 + 2657: -42,4 + 2658: -40,4 + 2659: -39,6 + 2660: -39,5 + 2661: -40,6 + 2662: -41,8 + 2663: -41,10 + 2664: -41,10 + 2665: -39,7 + 2666: -38,7 + 2667: -41,-1 + 2668: -42,-3 + 2669: -41,-3 + 2670: -42,-4 + 2671: -41,-4 + 2672: -42,-5 + 2673: -42,-6 + 2674: -41,-7 + 2675: -42,-8 + 2676: -44,-8 + 2677: -43,-6 + 2678: -40,-6 + 2679: -39,-6 + 2680: -39,-8 + 2681: -41,-8 + 2682: -39,-5 + 2683: -42,-2 + 2684: -42,-1 + 2685: -39,-2 + 2686: -39,1 + 2687: -37,1 + 2688: -36,-3 + 2689: -35,-5 + 2690: -35,-5 + 2691: -37,-3 + 2692: -40,-2 + 2693: -35,-6 + 2694: -36,-5 + 2695: -36,-4 + 2696: -37,-3 + 2697: -37,-2 + 2698: -33,-5 + 2699: -32,-5 + 2700: -33,-5 + 2701: -32,-3 + 2702: -32,-2 + 2703: -32,1 + 2704: -32,4 + 2705: -32,8 + 2706: -32,5 + 2707: -32,6 + 2708: -33,7 + 2709: -33,6 + 2710: -33,4 + 2711: -33,3 + 2712: -32,2 + 2713: -32,3 + 2714: -31,0 + 2715: -31,1 + 2716: -32,-6 + 2717: -31,-7 + 2718: -31,-8 + 2719: -30,-8 + 2720: -29,-9 + 2721: -28,-9 + 2722: -27,-8 + 2723: -28,-8 + 2724: -27,-9 + 2725: -28,-10 + 2726: -27,-10 + 2727: -29,-10 + 2728: -25,-9 + 2729: -21,-9 + 2730: -19,-9 + 2731: -17,-9 + 2732: -14,-9 + 2733: -11,-9 + 2734: -9,-9 + 2735: -6,-9 + 2736: -4,-9 + 2737: -2,-9 + 2738: 2,-9 + 2739: 4,-9 + 2740: 6,-9 + 2741: 9,-9 + 2742: 11,-9 + 2743: 13,-9 + 2744: 15,-9 + 2745: 18,-9 + 2746: 20,-9 + 2747: 23,-9 + 2748: 25,-9 + 2749: 27,-9 + 2750: 30,-9 + 2751: 32,-9 + 2752: 35,-9 + 2753: 37,-9 + 2754: 39,-9 + 2755: 42,-9 + 2756: 44,-9 + 2757: 46,-9 + 2758: 48,-9 + 2759: 46,-10 + 2760: 46,-9 + 2761: 47,-9 + 2762: 48,-10 + 2763: 49,-10 + 2764: 49,-9 + 2765: 50,-8 + 2766: 51,-8 + 2767: 50,-8 + 2768: 50,-10 + 2769: 48,-10 + 2770: 44,-10 + 2771: 38,-10 + 2772: 39,-10 + 2773: 41,-10 + 2774: 40,-9 + 2775: 38,-9 + 2776: 38,-10 + 2777: 37,-9 + 2778: 34,-8 + 2779: 33,-8 + 2780: 32,-8 + 2781: 32,-7 + 2782: 30,-8 + 2783: 30,-7 + 2784: 29,-8 + 2785: 29,-10 + 2786: 30,-10 + 2787: 26,-11 + 2788: 27,-10 + 2789: 27,-11 + 2790: 27,-12 + 2791: 27,-13 + 2792: 28,-13 + 2793: 28,-14 + 2794: 28,-15 + 2795: 27,-14 + 2796: 28,-14 + 2797: 27,-9 + 2798: 30,-5 + 2799: 30,-2 + 2800: 32,-2 + 2801: 31,-3 + 2802: 30,-4 + 2803: 30,-4 + 2804: 31,-6 + 2805: 32,-5 + 2806: 30,-1 + 2807: 30,2 + 2808: 29,3 + 2809: 33,3 + 2810: 34,0 + 2811: 34,2 + 2812: 34,5 + 2813: 34,1 + 2814: 32,0 + 2815: 29,4 + 2816: 31,8 + 2817: 32,11 + 2818: 30,14 + 2819: 35,13 + 2820: 39,12 + 2821: 42,14 + 2822: 45,14 + 2823: 50,13 + 2824: 51,13 + 2825: 51,15 + 2826: 50,15 + 2827: 51,15 + 2828: 49,15 + 2829: 48,15 + 2830: 48,17 + 2831: 48,17 + 2832: 48,15 + 2833: 46,15 + 2834: 46,16 + 2835: 46,17 + 2836: 46,15 + 2837: 45,13 + 2838: 48,13 + 2839: 50,13 + 2840: 49,13 + 2841: 46,13 + 2842: 42,13 + 2843: 40,14 + 2844: 39,14 + 2845: 36,13 + 2846: 34,15 + 2847: 31,14 + 2848: 30,13 + 2849: 27,13 + 2850: 26,14 + 2851: 24,15 + 2852: 22,14 + 2853: 21,13 + 2854: 30,16 + 2855: 31,18 + 2856: 29,20 + 2857: 31,22 + 2858: 30,24 + 2859: 28,26 + 2860: 29,26 + 2861: 28,26 + 2862: 28,28 + 2863: 27,25 + 2864: 28,25 + 2865: 28,25 + 2866: 29,25 + 2867: 28,28 + 2868: 29,32 + 2869: 29,32 + 2870: 29,33 + 2871: 27,33 + 2872: 27,32 + 2873: 26,32 + 2874: 25,33 + 2875: 25,35 + 2876: 25,35 + 2877: 26,35 + 2878: 25,36 + 2879: 27,36 + 2880: 25,36 + 2881: 26,36 + 2882: 27,36 + 2883: 30,36 + 2884: 30,37 + 2885: 30,38 + 2886: 31,41 + 2887: 30,41 + 2888: 31,40 + 2889: 30,44 + 2890: 30,45 + 2891: 31,46 + 2892: 31,44 + 2893: 30,47 + 2894: 31,49 + 2895: 32,47 + 2896: 35,47 + 2897: 34,48 + 2898: 31,47 + 2899: 28,47 + 2900: 27,47 + 2901: 27,45 + 2902: 27,43 + 2903: 27,47 + 2904: 27,49 + 2905: 29,47 + 2906: 31,48 + 2907: 32,37 + 2908: 34,37 + 2909: 37,37 + 2910: 41,38 + 2911: 46,37 + 2912: 34,38 + 2913: 34,38 + 2914: 36,38 + 2915: 35,38 + 2916: 35,37 + 2917: 39,37 + 2918: 45,36 + 2919: 41,37 + 2920: 41,39 + 2921: 43,40 + 2922: 42,40 + 2923: 41,40 + 2924: 42,40 + 2925: 41,40 + 2926: 45,40 + 2927: 47,41 + 2928: 47,43 + 2929: 47,44 + 2930: 46,42 + 2931: 47,38 + 2932: 47,37 + 2933: 48,40 + 2934: 48,38 + 2935: 49,37 + 2936: 49,36 + 2937: 50,38 + 2938: 51,38 + 2939: 51,38 2940: 48,38 - 2941: 49,37 - 2942: 49,36 - 2943: 50,38 - 2944: 51,38 - 2945: 51,38 - 2946: 48,38 - 2947: 51,36 - 2948: 50,36 - 2949: 49,36 - 2950: 51,36 - 2951: 49,38 - 2952: 48,36 - 2953: 48,35 - 2954: 48,35 - 2955: 49,34 - 2956: 47,35 - 2957: 44,36 - 2958: 46,35 - 2959: 46,35 - 2960: 46,36 - 2961: 46,34 - 2962: 46,34 - 2963: 46,37 - 2964: 43,36 - 2965: 43,36 - 2966: 45,38 + 2941: 51,36 + 2942: 50,36 + 2943: 49,36 + 2944: 51,36 + 2945: 49,38 + 2946: 48,36 + 2947: 48,35 + 2948: 48,35 + 2949: 49,34 + 2950: 47,35 + 2951: 44,36 + 2952: 46,35 + 2953: 46,35 + 2954: 46,36 + 2955: 46,34 + 2956: 46,34 + 2957: 46,37 + 2958: 43,36 + 2959: 43,36 + 2960: 45,38 + 2961: 44,38 + 2962: 45,39 + 2963: 42,39 + 2964: 46,37 + 2965: 43,37 + 2966: 41,37 2967: 44,38 - 2968: 45,39 - 2969: 42,39 - 2970: 46,37 - 2971: 43,37 - 2972: 41,37 - 2973: 44,38 - 2974: 45,38 - 2975: 38,37 - 2976: 41,37 - 2977: 42,37 - 2978: 40,37 - 2979: 42,39 - 2980: 41,40 - 2981: 45,43 - 2982: 45,43 - 2983: 44,43 - 2984: 41,43 - 2985: 41,43 - 2986: 43,43 - 2987: 44,43 - 2988: 41,43 - 2989: 44,42 - 2990: 43,42 - 2991: 27,37 - 2992: 25,38 - 2993: 24,38 - 2994: 25,38 - 2995: 26,38 - 2996: 22,40 - 2997: 22,42 - 2998: 20,42 - 2999: 18,41 - 3000: 17,40 - 3001: 18,39 - 3002: 19,41 - 3003: 22,41 - 3004: 22,40 - 3005: 24,38 - 3006: 17,38 - 3007: 14,39 - 3008: 14,41 - 3009: 14,42 - 3010: 13,42 - 3011: 12,44 - 3012: 12,45 - 3013: 14,45 - 3014: 16,46 - 3015: 17,46 - 3016: 18,46 - 3017: 18,45 - 3018: 18,45 - 3019: 18,46 - 3020: 17,46 - 3021: 18,45 - 3022: 20,45 - 3023: 21,45 - 3024: 21,46 - 3025: 21,47 - 3026: 21,48 - 3027: 20,49 - 3028: 16,50 - 3029: 15,47 - 3030: 15,48 - 3031: 15,49 - 3032: 14,44 - 3033: 15,37 - 3034: 13,38 - 3035: 11,38 - 3036: 7,38 - 3037: 12,38 - 3038: 12,38 - 3039: 7,36 - 3040: 3,36 - 3041: 0,36 - 3042: 0,37 - 3043: 5,37 - 3044: 4,37 - 3045: -5,37 - 3046: -9,37 - 3047: -12,37 - 3048: -13,37 - 3049: -7,37 - 3050: -6,37 - 3051: -13,38 - 3052: -18,37 - 3053: -22,37 - 3054: -27,37 - 3055: -29,37 - 3056: -13,42 - 3057: -14,42 - 3058: -14,41 - 3059: -13,41 + 2968: 45,38 + 2969: 38,37 + 2970: 41,37 + 2971: 42,37 + 2972: 40,37 + 2973: 42,39 + 2974: 41,40 + 2975: 45,43 + 2976: 45,43 + 2977: 44,43 + 2978: 41,43 + 2979: 41,43 + 2980: 43,43 + 2981: 44,43 + 2982: 41,43 + 2983: 44,42 + 2984: 43,42 + 2985: 27,37 + 2986: 25,38 + 2987: 24,38 + 2988: 25,38 + 2989: 26,38 + 2990: 22,40 + 2991: 22,42 + 2992: 20,42 + 2993: 18,41 + 2994: 17,40 + 2995: 18,39 + 2996: 19,41 + 2997: 22,41 + 2998: 22,40 + 2999: 24,38 + 3000: 17,38 + 3001: 14,39 + 3002: 14,41 + 3003: 14,42 + 3004: 13,42 + 3005: 12,44 + 3006: 12,45 + 3007: 14,45 + 3008: 16,46 + 3009: 17,46 + 3010: 18,46 + 3011: 18,45 + 3012: 18,45 + 3013: 18,46 + 3014: 17,46 + 3015: 18,45 + 3016: 20,45 + 3017: 21,45 + 3018: 21,46 + 3019: 21,47 + 3020: 21,48 + 3021: 20,49 + 3022: 16,50 + 3023: 15,47 + 3024: 15,48 + 3025: 15,49 + 3026: 14,44 + 3027: 15,37 + 3028: 13,38 + 3029: 11,38 + 3030: 7,38 + 3031: 12,38 + 3032: 12,38 + 3033: 7,36 + 3034: 3,36 + 3035: 0,36 + 3036: 0,37 + 3037: 5,37 + 3038: 4,37 + 3039: -5,37 + 3040: -9,37 + 3041: -12,37 + 3042: -13,37 + 3043: -7,37 + 3044: -6,37 + 3045: -13,38 + 3046: -18,37 + 3047: -22,37 + 3048: -27,37 + 3049: -29,37 + 3050: -13,42 + 3051: -14,42 + 3052: -14,41 + 3053: -13,41 + 3054: -13,42 + 3055: -15,40 + 3056: -13,40 + 3057: -13,41 + 3058: -14,40 + 3059: -14,40 3060: -13,42 - 3061: -15,40 - 3062: -13,40 - 3063: -13,41 - 3064: -14,40 - 3065: -14,40 - 3066: -13,42 - 3067: -13,42 - 3068: -14,40 - 3069: -13,42 + 3061: -13,42 + 3062: -14,40 + 3063: -13,42 + 3064: -11,42 + 3065: -10,41 + 3066: -11,40 + 3067: -11,42 + 3068: -11,41 + 3069: -10,41 3070: -11,42 - 3071: -10,41 - 3072: -11,40 - 3073: -11,42 - 3074: -11,41 + 3071: -11,40 + 3072: -10,40 + 3073: -10,42 + 3074: -10,40 3075: -10,41 - 3076: -11,42 - 3077: -11,40 - 3078: -10,40 - 3079: -10,42 - 3080: -10,40 - 3081: -10,41 - 3082: -10,42 - 3083: -10,42 - 3084: -10,42 - 3085: -7,42 - 3086: -7,41 - 3087: -7,40 - 3088: -7,42 - 3089: -7,40 - 3090: -7,40 - 3091: -8,42 - 3092: -7,40 - 3093: -7,42 - 3094: -8,41 - 3095: -7,42 - 3096: -7,42 - 3097: -4,42 - 3098: -4,41 - 3099: -5,41 - 3100: -5,40 - 3101: -4,40 - 3102: -4,41 - 3103: -5,42 - 3104: -5,42 - 3105: -4,40 - 3106: -4,40 - 3107: -5,42 - 3108: -5,40 - 3109: -4,42 - 3110: -4,42 - 3111: -4,42 - 3112: -5,41 - 3113: -4,44 - 3114: -5,45 - 3115: -7,45 - 3116: -9,46 - 3117: -6,44 - 3118: -8,45 - 3119: -7,44 - 3120: -8,46 - 3121: -12,46 - 3122: -10,44 - 3123: -11,45 - 3124: -13,46 - 3125: -11,45 - 3126: -10,43 - 3127: -13,45 - 3128: -12,43 - 3129: -14,45 - 3130: -15,46 - 3131: -13,44 - 3132: -16,46 - 3133: -14,45 - 3134: -17,46 - 3135: -18,47 - 3136: -18,50 - 3137: -17,52 - 3138: -17,46 - 3139: -18,48 - 3140: -19,48 - 3141: -20,47 - 3142: -20,48 - 3143: -22,48 - 3144: -22,47 - 3145: -23,47 - 3146: -23,48 - 3147: -24,48 - 3148: -22,49 - 3149: -23,46 - 3150: -24,46 - 3151: -22,46 - 3152: -22,49 - 3153: -23,49 - 3154: -22,46 - 3155: -25,48 - 3156: -26,47 - 3157: -26,47 - 3158: -25,48 - 3159: -29,47 - 3160: -29,48 - 3161: -28,48 - 3162: -29,47 - 3163: -28,48 - 3164: -31,47 + 3076: -10,42 + 3077: -10,42 + 3078: -10,42 + 3079: -7,42 + 3080: -7,41 + 3081: -7,40 + 3082: -7,42 + 3083: -7,40 + 3084: -7,40 + 3085: -8,42 + 3086: -7,40 + 3087: -7,42 + 3088: -8,41 + 3089: -7,42 + 3090: -7,42 + 3091: -4,42 + 3092: -4,41 + 3093: -5,41 + 3094: -5,40 + 3095: -4,40 + 3096: -4,41 + 3097: -5,42 + 3098: -5,42 + 3099: -4,40 + 3100: -4,40 + 3101: -5,42 + 3102: -5,40 + 3103: -4,42 + 3104: -4,42 + 3105: -4,42 + 3106: -5,41 + 3107: -4,44 + 3108: -5,45 + 3109: -7,45 + 3110: -9,46 + 3111: -6,44 + 3112: -8,45 + 3113: -7,44 + 3114: -8,46 + 3115: -12,46 + 3116: -10,44 + 3117: -11,45 + 3118: -13,46 + 3119: -11,45 + 3120: -10,43 + 3121: -13,45 + 3122: -12,43 + 3123: -14,45 + 3124: -15,46 + 3125: -13,44 + 3126: -16,46 + 3127: -14,45 + 3128: -17,46 + 3129: -18,47 + 3130: -18,50 + 3131: -17,52 + 3132: -17,46 + 3133: -18,48 + 3134: -19,48 + 3135: -20,47 + 3136: -20,48 + 3137: -22,48 + 3138: -22,47 + 3139: -23,47 + 3140: -23,48 + 3141: -24,48 + 3142: -22,49 + 3143: -23,46 + 3144: -24,46 + 3145: -22,46 + 3146: -22,49 + 3147: -23,49 + 3148: -22,46 + 3149: -25,48 + 3150: -26,47 + 3151: -26,47 + 3152: -25,48 + 3153: -29,47 + 3154: -29,48 + 3155: -28,48 + 3156: -29,47 + 3157: -28,48 + 3158: -31,47 + 3159: -32,48 + 3160: -36,48 + 3161: -35,47 + 3162: -33,47 + 3163: -34,48 + 3164: -35,48 3165: -32,48 - 3166: -36,48 - 3167: -35,47 - 3168: -33,47 - 3169: -34,48 - 3170: -35,48 - 3171: -32,48 - 3172: -32,46 - 3173: -32,45 - 3174: -32,43 - 3175: -34,43 - 3176: -35,43 - 3177: -30,42 - 3178: -30,43 - 3179: -36,43 - 3180: -35,43 - 3181: -31,42 - 3182: -30,43 - 3183: -34,43 - 3184: -27,42 - 3185: -28,43 - 3186: -28,45 - 3187: -29,45 - 3188: -29,44 - 3189: -29,43 - 3190: -18,49 - 3191: -18,52 - 3192: -16,54 - 3193: -15,55 - 3194: -14,53 - 3195: -11,54 - 3196: -10,56 - 3197: -11,58 - 3198: -10,59 - 3199: -11,59 - 3200: -12,59 - 3201: -14,59 - 3202: -16,59 - 3203: -14,59 - 3204: -14,59 - 3205: -12,59 - 3206: -11,58 - 3207: -10,59 - 3208: -9,59 - 3209: -7,59 - 3210: -6,60 - 3211: -7,59 - 3212: -7,60 - 3213: -7,61 - 3214: -7,62 - 3215: -9,63 - 3216: -9,64 - 3217: -9,62 - 3218: -6,63 - 3219: -9,58 - 3220: -9,54 - 3221: -9,53 - 3222: -8,55 - 3223: -7,56 - 3224: -7,54 - 3225: -6,53 - 3226: -7,53 - 3227: -8,55 - 3228: -11,55 - 3229: -9,51 - 3230: -10,50 - 3231: -6,50 - 3232: -3,50 - 3233: -2,50 - 3234: -5,50 - 3235: -8,50 - 3236: -6,50 - 3237: -2,50 - 3238: -2,50 - 3239: -4,50 - 3240: -4,50 - 3241: -2,51 - 3242: -2,51 - 3243: -4,53 - 3244: -4,53 - 3245: -4,54 - 3246: -1,52 - 3247: -1,54 - 3248: 0,57 - 3249: 0,60 - 3250: 0,56 - 3251: 0,54 - 3252: 0,52 - 3253: -2,53 - 3254: -1,56 - 3255: -2,59 - 3256: -1,60 - 3257: -1,64 - 3258: -1,66 - 3259: 0,68 - 3260: 0,67 - 3261: 0,66 - 3262: 0,62 - 3263: 0,59 - 3264: -2,61 - 3265: -1,66 - 3266: -1,69 - 3267: -2,65 - 3268: -1,68 - 3269: -2,71 - 3270: -2,74 - 3271: -1,77 - 3272: 0,67 - 3273: 0,71 - 3274: 0,75 - 3275: 0,78 - 3276: -3,77 - 3277: -5,78 - 3278: -4,79 - 3279: -3,80 - 3280: -4,78 - 3281: -6,77 - 3282: -6,80 - 3283: -4,81 - 3284: -1,81 - 3285: 1,82 - 3286: 3,81 - 3287: 4,81 - 3288: 4,78 - 3289: 5,77 - 3290: 6,76 - 3291: 2,76 - 3292: 1,78 - 3293: -1,79 - 3294: -4,78 - 3295: 1,79 - 3296: 2,79 - 3297: 2,80 - 3298: 4,80 - 3299: 4,78 - 3300: -2,77 - 3301: -6,78 - 3302: -6,80 - 3303: -4,82 - 3304: -8,76 - 3305: -8,75 - 3306: -6,76 - 3307: -6,74 - 3308: -9,72 - 3309: -8,72 - 3310: -9,71 - 3311: -9,70 - 3312: -9,69 - 3313: -8,70 - 3314: -8,69 - 3315: -9,69 - 3316: -9,72 - 3317: -6,75 - 3318: -6,76 - 3319: 1,67 - 3320: 4,67 - 3321: 8,67 - 3322: 9,68 - 3323: 10,69 - 3324: 13,69 - 3325: 7,66 - 3326: 6,67 - 3327: 7,66 - 3328: 9,67 - 3329: 7,66 - 3330: 6,66 - 3331: 9,66 - 3332: 8,66 - 3333: 1,67 - 3334: -1,66 - 3335: 0,62 - 3336: -1,59 - 3337: 1,56 - 3338: 3,55 - 3339: 2,56 - 3340: 3,56 - 3341: 4,56 - 3342: 5,55 - 3343: 7,53 - 3344: 10,53 - 3345: 11,53 - 3346: 14,54 - 3347: 13,55 - 3348: 10,54 - 3349: 7,54 - 3350: 6,52 - 3351: 8,52 - 3352: 11,52 - 3353: 13,52 - 3354: 14,52 - 3355: 11,52 - 3356: 7,52 - 3357: 5,53 - 3358: 3,53 - 3359: 4,53 - 3360: 1,53 - 3361: 0,52 - 3362: 2,52 - 3363: 4,53 - 3364: 0,53 - 3365: 0,50 - 3366: -1,50 - 3367: -1,49 - 3368: -1,47 - 3369: -1,45 - 3370: -1,47 - 3371: -3,48 - 3372: -2,47 - 3373: -2,47 - 3374: -2,48 - 3375: -1,48 - 3376: -1,46 - 3377: -1,44 - 3378: -1,44 - 3379: -2,40 - 3380: -2,39 - 3381: -3,38 - 3382: -4,37 - 3383: -2,38 - 3384: -2,40 - 3385: -2,38 - 3386: -4,38 - 3387: 0,40 - 3388: 0,38 - 3389: 2,37 - 3390: 1,38 - 3391: 0,39 - 3392: -1,40 - 3393: -1,41 - 3394: -1,43 - 3395: -1,44 - 3396: -1,44 - 3397: 1,37 - 3398: 2,37 - 3399: 5,37 - 3400: 10,37 - 3401: 5,37 - 3402: 12,37 - 3403: 15,37 - 3404: 20,37 - 3405: 20,37 - 3406: 11,37 - 3407: 2,37 - 3408: -1,35 - 3409: -1,33 - 3410: -1,31 - 3411: -1,29 - 3412: -1,28 - 3413: -1,28 - 3414: -1,26 - 3415: -1,24 - 3416: -1,22 - 3417: -1,21 - 3418: -1,20 - 3419: -1,18 - 3420: -5,18 - 3421: -6,18 - 3422: -7,18 - 3423: -6,17 - 3424: -7,17 - 3425: -10,17 - 3426: -12,17 - 3427: -9,17 - 3428: -7,17 - 3429: -11,18 - 3430: -9,18 - 3431: -8,17 - 3432: -10,17 - 3433: -6,17 - 3434: -3,17 - 3435: 1,17 - 3436: 5,17 - 3437: 6,17 - 3438: 3,18 - 3439: 10,18 - 3440: 5,18 - 3441: 8,18 - 3442: 12,18 - 3443: 16,18 + 3166: -32,46 + 3167: -32,45 + 3168: -32,43 + 3169: -34,43 + 3170: -35,43 + 3171: -30,42 + 3172: -30,43 + 3173: -36,43 + 3174: -35,43 + 3175: -31,42 + 3176: -30,43 + 3177: -34,43 + 3178: -27,42 + 3179: -28,43 + 3180: -28,45 + 3181: -29,45 + 3182: -29,44 + 3183: -29,43 + 3184: -18,49 + 3185: -18,52 + 3186: -16,54 + 3187: -15,55 + 3188: -14,53 + 3189: -11,54 + 3190: -10,56 + 3191: -11,58 + 3192: -10,59 + 3193: -11,59 + 3194: -12,59 + 3195: -14,59 + 3196: -16,59 + 3197: -14,59 + 3198: -14,59 + 3199: -12,59 + 3200: -11,58 + 3201: -10,59 + 3202: -9,59 + 3203: -7,59 + 3204: -6,60 + 3205: -7,59 + 3206: -7,60 + 3207: -7,61 + 3208: -7,62 + 3209: -9,63 + 3210: -9,64 + 3211: -9,62 + 3212: -6,63 + 3213: -9,58 + 3214: -9,54 + 3215: -9,53 + 3216: -8,55 + 3217: -7,56 + 3218: -7,54 + 3219: -6,53 + 3220: -7,53 + 3221: -8,55 + 3222: -11,55 + 3223: -9,51 + 3224: -10,50 + 3225: -6,50 + 3226: -3,50 + 3227: -2,50 + 3228: -5,50 + 3229: -8,50 + 3230: -6,50 + 3231: -2,50 + 3232: -2,50 + 3233: -4,50 + 3234: -4,50 + 3235: -2,51 + 3236: -2,51 + 3237: -4,53 + 3238: -4,53 + 3239: -4,54 + 3240: -1,52 + 3241: -1,54 + 3242: 0,57 + 3243: 0,60 + 3244: 0,56 + 3245: 0,54 + 3246: 0,52 + 3247: -2,53 + 3248: -1,56 + 3249: -2,59 + 3250: -1,60 + 3251: -1,64 + 3252: -1,66 + 3253: 0,68 + 3254: 0,67 + 3255: 0,66 + 3256: 0,62 + 3257: 0,59 + 3258: -2,61 + 3259: -1,66 + 3260: -1,69 + 3261: -2,65 + 3262: -1,68 + 3263: -2,71 + 3264: -2,74 + 3265: -1,77 + 3266: 0,67 + 3267: 0,71 + 3268: 0,75 + 3269: 0,78 + 3270: -3,77 + 3271: -5,78 + 3272: -4,79 + 3273: -3,80 + 3274: -4,78 + 3275: -6,77 + 3276: -6,80 + 3277: -4,81 + 3278: -1,81 + 3279: 1,82 + 3280: 3,81 + 3281: 4,81 + 3282: 4,78 + 3283: 5,77 + 3284: 6,76 + 3285: 2,76 + 3286: 1,78 + 3287: -1,79 + 3288: -4,78 + 3289: 1,79 + 3290: 2,79 + 3291: 2,80 + 3292: 4,80 + 3293: 4,78 + 3294: -2,77 + 3295: -6,78 + 3296: -6,80 + 3297: -4,82 + 3298: -8,76 + 3299: -8,75 + 3300: -6,76 + 3301: -6,74 + 3302: -9,72 + 3303: -8,72 + 3304: -9,71 + 3305: -9,70 + 3306: -9,69 + 3307: -8,70 + 3308: -8,69 + 3309: -9,69 + 3310: -9,72 + 3311: -6,75 + 3312: -6,76 + 3313: 1,67 + 3314: 4,67 + 3315: 8,67 + 3316: 9,68 + 3317: 10,69 + 3318: 13,69 + 3319: 7,66 + 3320: 6,67 + 3321: 7,66 + 3322: 9,67 + 3323: 7,66 + 3324: 6,66 + 3325: 9,66 + 3326: 8,66 + 3327: 1,67 + 3328: -1,66 + 3329: 0,62 + 3330: -1,59 + 3331: 1,56 + 3332: 3,55 + 3333: 2,56 + 3334: 3,56 + 3335: 4,56 + 3336: 5,55 + 3337: 7,53 + 3338: 10,53 + 3339: 11,53 + 3340: 14,54 + 3341: 13,55 + 3342: 10,54 + 3343: 7,54 + 3344: 6,52 + 3345: 8,52 + 3346: 11,52 + 3347: 13,52 + 3348: 14,52 + 3349: 11,52 + 3350: 7,52 + 3351: 5,53 + 3352: 3,53 + 3353: 4,53 + 3354: 1,53 + 3355: 0,52 + 3356: 2,52 + 3357: 4,53 + 3358: 0,53 + 3359: 0,50 + 3360: -1,50 + 3361: -1,49 + 3362: -1,47 + 3363: -1,45 + 3364: -1,47 + 3365: -3,48 + 3366: -2,47 + 3367: -2,47 + 3368: -2,48 + 3369: -1,48 + 3370: -1,46 + 3371: -1,44 + 3372: -1,44 + 3373: -2,40 + 3374: -2,39 + 3375: -3,38 + 3376: -4,37 + 3377: -2,38 + 3378: -2,40 + 3379: -2,38 + 3380: -4,38 + 3381: 0,40 + 3382: 0,38 + 3383: 2,37 + 3384: 1,38 + 3385: 0,39 + 3386: -1,40 + 3387: -1,41 + 3388: -1,43 + 3389: -1,44 + 3390: -1,44 + 3391: 1,37 + 3392: 2,37 + 3393: 5,37 + 3394: 10,37 + 3395: 5,37 + 3396: 12,37 + 3397: 15,37 + 3398: 20,37 + 3399: 20,37 + 3400: 11,37 + 3401: 2,37 + 3402: -1,35 + 3403: -1,33 + 3404: -1,31 + 3405: -1,29 + 3406: -1,28 + 3407: -1,28 + 3408: -1,26 + 3409: -1,24 + 3410: -1,22 + 3411: -1,21 + 3412: -1,20 + 3413: -1,18 + 3414: -5,18 + 3415: -6,18 + 3416: -7,18 + 3417: -6,17 + 3418: -7,17 + 3419: -10,17 + 3420: -12,17 + 3421: -9,17 + 3422: -7,17 + 3423: -11,18 + 3424: -9,18 + 3425: -8,17 + 3426: -10,17 + 3427: -6,17 + 3428: -3,17 + 3429: 1,17 + 3430: 5,17 + 3431: 6,17 + 3432: 3,18 + 3433: 10,18 + 3434: 5,18 + 3435: 8,18 + 3436: 12,18 + 3437: 16,18 + 3438: 16,19 + 3439: 15,20 + 3440: 15,20 + 3441: 15,19 + 3442: 14,20 + 3443: 15,20 3444: 16,19 - 3445: 15,20 - 3446: 15,20 - 3447: 15,19 - 3448: 14,20 - 3449: 15,20 - 3450: 16,19 - 3451: 10,18 - 3452: 7,18 - 3453: 6,18 - 3454: 5,17 - 3455: 11,19 - 3456: 11,20 - 3457: 11,23 - 3458: 11,22 - 3459: 11,21 - 3460: 10,23 - 3461: 10,24 - 3462: 10,26 - 3463: 11,27 - 3464: 11,25 - 3465: 10,26 - 3466: 9,27 - 3467: 7,28 - 3468: 6,28 - 3469: 8,27 - 3470: 6,25 - 3471: 4,23 - 3472: 3,22 - 3473: 7,23 - 3474: 5,24 - 3475: 3,24 - 3476: 7,27 - 3477: 6,28 - 3478: 6,30 - 3479: 6,33 - 3480: 5,34 - 3481: 4,33 - 3482: 4,32 - 3483: 4,31 - 3484: 4,29 - 3485: 3,27 - 3486: 4,27 - 3487: 4,27 - 3488: 4,29 - 3489: 5,32 - 3490: 5,33 - 3491: 6,31 - 3492: 6,29 - 3493: 7,29 - 3494: 7,31 - 3495: 8,28 - 3496: 11,28 - 3497: 11,28 - 3498: 13,28 - 3499: 15,28 - 3500: 12,28 - 3501: 14,28 - 3502: 19,29 - 3503: 19,30 - 3504: 19,29 - 3505: 19,31 - 3506: 19,32 - 3507: 20,33 - 3508: 20,34 - 3509: 20,33 - 3510: 19,31 - 3511: 18,31 - 3512: 18,33 - 3513: 18,27 - 3514: 19,26 - 3515: 22,27 - 3516: 21,26 - 3517: 21,26 - 3518: 21,27 - 3519: 21,28 - 3520: 20,32 + 3445: 10,18 + 3446: 7,18 + 3447: 6,18 + 3448: 5,17 + 3449: 11,19 + 3450: 11,20 + 3451: 11,23 + 3452: 11,22 + 3453: 11,21 + 3454: 10,23 + 3455: 10,24 + 3456: 10,26 + 3457: 11,27 + 3458: 11,25 + 3459: 10,26 + 3460: 9,27 + 3461: 7,28 + 3462: 6,28 + 3463: 8,27 + 3464: 6,25 + 3465: 4,23 + 3466: 3,22 + 3467: 7,23 + 3468: 5,24 + 3469: 3,24 + 3470: 7,27 + 3471: 6,28 + 3472: 6,30 + 3473: 6,33 + 3474: 5,34 + 3475: 4,33 + 3476: 4,32 + 3477: 4,31 + 3478: 4,29 + 3479: 3,27 + 3480: 4,27 + 3481: 4,27 + 3482: 4,29 + 3483: 5,32 + 3484: 5,33 + 3485: 6,31 + 3486: 6,29 + 3487: 7,29 + 3488: 7,31 + 3489: 8,28 + 3490: 11,28 + 3491: 11,28 + 3492: 13,28 + 3493: 15,28 + 3494: 12,28 + 3495: 14,28 + 3496: 19,29 + 3497: 19,30 + 3498: 19,29 + 3499: 19,31 + 3500: 19,32 + 3501: 20,33 + 3502: 20,34 + 3503: 20,33 + 3504: 19,31 + 3505: 18,31 + 3506: 18,33 + 3507: 18,27 + 3508: 19,26 + 3509: 22,27 + 3510: 21,26 + 3511: 21,26 + 3512: 21,27 + 3513: 21,28 + 3514: 20,32 + 3515: 20,33 + 3516: 20,33 + 3517: 19,32 + 3518: 19,31 + 3519: 19,34 + 3520: 19,34 3521: 20,33 - 3522: 20,33 - 3523: 19,32 - 3524: 19,31 - 3525: 19,34 - 3526: 19,34 - 3527: 20,33 - 3528: 20,31 - 3529: 20,31 - 3530: 20,32 - 3531: 20,33 - 3532: 20,34 - 3533: 20,32 - 3534: 19,32 - 3535: 19,34 - 3536: 19,31 - 3537: 14,17 - 3538: 11,22 - 3539: 10,23 - 3540: 10,25 - 3541: 18,14 - 3542: 20,14 - 3543: 25,14 - 3544: 23,14 - 3545: 23,17 - 3546: 25,19 - 3547: 26,21 - 3548: 27,22 - 3549: 26,21 - 3550: 24,19 - 3551: 23,18 - 3552: 22,18 - 3553: 22,19 - 3554: 24,20 - 3555: 26,22 - 3556: 27,22 - 3557: 27,20 - 3558: 24,18 - 3559: 23,18 - 3560: 27,20 - 3561: 26,20 - 3562: 25,18 - 3563: 25,17 - 3564: 24,17 - 3565: 24,16 - 3566: 23,15 - 3567: 23,16 - 3568: 25,16 - 3569: 25,16 - 3570: 24,16 - 3571: 25,17 - 3572: 28,19 - 3573: 29,20 - 3574: 29,21 - 3575: 28,19 - 3576: 28,20 - 3577: 29,21 - 3578: 29,22 - 3579: 27,25 - 3580: 30,31 - 3581: 30,28 - 3582: 31,26 - 3583: 31,19 - 3584: 31,18 - 3585: 33,16 - 3586: 39,14 - 3587: 44,15 - 3588: 19,13 - 3589: 18,13 - 3590: 17,14 - 3591: 17,13 - 3592: 18,13 - 3593: 19,15 - 3594: 18,14 - 3595: 18,15 - 3596: 23,16 - 3597: 22,17 - 3598: 25,21 - 3599: 27,21 - 3600: 28,21 - 3601: 27,19 - 3602: 27,21 - 3603: 25,18 - 3604: 24,17 - 3619: 10,-12 - 3620: 11,-12 - 3621: 11,-13 - 3622: 11,-15 - 3623: 11,-16 - 3624: 12,-17 - 3625: 11,-15 - 3626: 10,-11 - 3627: 8,-14 - 3628: 5,-16 - 3629: 6,-16 - 3630: 10,-12 - 3631: 12,-14 - 3632: 12,-17 - 3633: 12,-18 - 3634: 11,-14 - 3635: 9,-12 - 3636: 9,-13 - 3637: 5,-13 - 3638: 4,-10 - 3639: 4,-11 - 3640: 4,-13 - 3641: 4,-14 - 3642: 2,-14 - 3643: 4,-11 - 3644: 4,-12 - 3645: 3,-13 - 3646: -4,-14 - 3647: -6,-13 - 3648: -6,-11 - 3649: -7,-8 - 3650: -3,-13 - 3651: -6,-11 - 3652: -7,-9 - 3653: -5,-14 - 3654: -5,-10 - 3655: -1,-11 - 3656: 0,-11 - 3657: -5,-14 - 3658: -6,-11 - 3659: -8,-9 - 3660: -12,-9 - 3661: -10,-10 - 3662: -15,-10 - 3663: -19,-10 - 3664: -19,-13 - 3665: -19,-16 - 3666: -19,-19 - 3667: -16,-10 - 3668: -18,-18 - 3669: -19,-19 - 3670: -17,-12 - 3671: -18,-12 - 3672: -18,-13 - 3673: -19,-12 - 3674: -19,-10 - 3675: -17,-10 - 3676: -15,-9 - 3677: -11,-9 - 3678: -20,-10 - 3679: -20,-10 - 3680: -18,-17 - 3681: -17,-19 - 3682: -17,-20 - 3683: -17,-20 - 3684: -9,-14 - 3685: -13,-12 - 3686: -11,-13 - 3687: -10,-15 - 3688: -10,-15 - 3689: -14,-13 - 3690: -10,-13 - 3691: -9,-16 - 3692: -9,-15 - 3693: -10,-16 - 3694: -9,-16 - 3695: -13,-16 - 3696: -13,-15 - 3697: -13,-13 - 3698: -13,-14 - 3699: -13,-18 - 3700: -13,-19 - 3701: -13,-20 - 3702: -14,-19 - 3703: -12,-19 - 3704: -11,-19 - 3705: -15,-19 - 3706: -8,-19 - 3707: -8,-21 - 3708: -10,-23 - 3709: -8,-26 - 3710: -8,-28 - 3711: -7,-30 - 3712: -6,-32 - 3713: -9,-34 - 3714: -6,-36 - 3715: -9,-37 - 3716: -10,-39 + 3522: 20,31 + 3523: 20,31 + 3524: 20,32 + 3525: 20,33 + 3526: 20,34 + 3527: 20,32 + 3528: 19,32 + 3529: 19,34 + 3530: 19,31 + 3531: 14,17 + 3532: 11,22 + 3533: 10,23 + 3534: 10,25 + 3535: 18,14 + 3536: 20,14 + 3537: 25,14 + 3538: 23,14 + 3539: 23,17 + 3540: 25,19 + 3541: 26,21 + 3542: 27,22 + 3543: 26,21 + 3544: 24,19 + 3545: 23,18 + 3546: 22,18 + 3547: 22,19 + 3548: 24,20 + 3549: 26,22 + 3550: 27,22 + 3551: 27,20 + 3552: 24,18 + 3553: 23,18 + 3554: 27,20 + 3555: 26,20 + 3556: 25,18 + 3557: 25,17 + 3558: 24,17 + 3559: 24,16 + 3560: 23,15 + 3561: 23,16 + 3562: 25,16 + 3563: 25,16 + 3564: 24,16 + 3565: 25,17 + 3566: 28,19 + 3567: 29,20 + 3568: 29,21 + 3569: 28,19 + 3570: 28,20 + 3571: 29,21 + 3572: 29,22 + 3573: 27,25 + 3574: 30,31 + 3575: 30,28 + 3576: 31,26 + 3577: 31,19 + 3578: 31,18 + 3579: 33,16 + 3580: 39,14 + 3581: 44,15 + 3582: 19,13 + 3583: 18,13 + 3584: 17,14 + 3585: 17,13 + 3586: 18,13 + 3587: 19,15 + 3588: 18,14 + 3589: 18,15 + 3590: 23,16 + 3591: 22,17 + 3592: 25,21 + 3593: 27,21 + 3594: 28,21 + 3595: 27,19 + 3596: 27,21 + 3597: 25,18 + 3598: 24,17 + 3613: 10,-12 + 3614: 11,-12 + 3615: 11,-13 + 3616: 11,-15 + 3617: 11,-16 + 3618: 12,-17 + 3619: 11,-15 + 3620: 10,-11 + 3621: 8,-14 + 3622: 5,-16 + 3623: 6,-16 + 3624: 10,-12 + 3625: 12,-14 + 3626: 12,-17 + 3627: 12,-18 + 3628: 11,-14 + 3629: 9,-12 + 3630: 9,-13 + 3631: 5,-13 + 3632: 4,-10 + 3633: 4,-11 + 3634: 4,-13 + 3635: 4,-14 + 3636: 2,-14 + 3637: 4,-11 + 3638: 4,-12 + 3639: 3,-13 + 3640: -4,-14 + 3641: -6,-13 + 3642: -6,-11 + 3643: -7,-8 + 3644: -3,-13 + 3645: -6,-11 + 3646: -7,-9 + 3647: -5,-14 + 3648: -5,-10 + 3649: -1,-11 + 3650: 0,-11 + 3651: -5,-14 + 3652: -6,-11 + 3653: -8,-9 + 3654: -12,-9 + 3655: -10,-10 + 3656: -15,-10 + 3657: -19,-10 + 3658: -19,-13 + 3659: -19,-16 + 3660: -19,-19 + 3661: -16,-10 + 3662: -18,-18 + 3663: -19,-19 + 3664: -17,-12 + 3665: -18,-12 + 3666: -18,-13 + 3667: -19,-12 + 3668: -19,-10 + 3669: -17,-10 + 3670: -15,-9 + 3671: -11,-9 + 3672: -20,-10 + 3673: -20,-10 + 3674: -18,-17 + 3675: -17,-19 + 3676: -17,-20 + 3677: -17,-20 + 3678: -9,-14 + 3679: -13,-12 + 3680: -11,-13 + 3681: -10,-15 + 3682: -10,-15 + 3683: -14,-13 + 3684: -10,-13 + 3685: -9,-16 + 3686: -9,-15 + 3687: -10,-16 + 3688: -9,-16 + 3689: -13,-16 + 3690: -13,-15 + 3691: -13,-13 + 3692: -13,-14 + 3693: -13,-18 + 3694: -13,-19 + 3695: -13,-20 + 3696: -14,-19 + 3697: -12,-19 + 3698: -11,-19 + 3699: -15,-19 + 3700: -8,-19 + 3701: -8,-21 + 3702: -10,-23 + 3703: -8,-26 + 3704: -8,-28 + 3705: -7,-30 + 3706: -6,-32 + 3707: -9,-34 + 3708: -6,-36 + 3709: -9,-37 + 3710: -10,-39 + 3711: -10,-41 + 3712: -7,-41 + 3713: -9,-39 + 3714: -10,-36 + 3715: -11,-34 + 3716: -10,-38 3717: -10,-41 - 3718: -7,-41 - 3719: -9,-39 - 3720: -10,-36 - 3721: -11,-34 - 3722: -10,-38 - 3723: -10,-41 - 3724: -7,-39 - 3725: -7,-33 - 3754: -14,-38 - 3755: -13,-37 - 3756: -13,-35 - 3757: -13,-32 - 3758: -13,-24 + 3718: -7,-39 + 3719: -7,-33 + 3748: -14,-38 + 3749: -13,-37 + 3750: -13,-35 + 3751: -13,-32 + 3752: -13,-24 + 3753: -13,-24 + 3754: -12,-23 + 3755: -12,-22 + 3756: -13,-22 + 3757: -13,-22 + 3758: -13,-23 3759: -13,-24 - 3760: -12,-23 - 3761: -12,-22 - 3762: -13,-22 - 3763: -13,-22 - 3764: -13,-23 - 3765: -13,-24 - 3766: -12,-25 - 3767: 12,-21 - 3768: 12,-22 - 3769: 12,-23 - 3770: 12,-25 - 3771: 12,-27 - 3772: 12,-29 - 3773: 12,-31 - 3774: 12,-33 - 3775: 12,-35 - 3776: 12,-36 - 3777: 12,-37 - 3778: 12,-38 - 3779: 12,-37 - 3780: 12,-35 - 3781: 12,-33 - 3782: 12,-31 - 3783: 12,-29 + 3760: -12,-25 + 3761: 12,-21 + 3762: 12,-22 + 3763: 12,-23 + 3764: 12,-25 + 3765: 12,-27 + 3766: 12,-29 + 3767: 12,-31 + 3768: 12,-33 + 3769: 12,-35 + 3770: 12,-36 + 3771: 12,-37 + 3772: 12,-38 + 3773: 12,-37 + 3774: 12,-35 + 3775: 12,-33 + 3776: 12,-31 + 3777: 12,-29 + 3778: 12,-27 + 3779: 12,-25 + 3780: 12,-23 + 3781: 12,-21 + 3782: 12,-21 + 3783: 12,-25 3784: 12,-27 - 3785: 12,-25 - 3786: 12,-23 - 3787: 12,-21 - 3788: 12,-21 - 3789: 12,-25 - 3790: 12,-27 - 3791: 12,-29 - 3792: 12,-32 - 3793: 12,-34 - 3828: 11,-21 - 3829: 11,-23 - 3830: 11,-25 - 3831: 11,-27 + 3785: 12,-29 + 3786: 12,-32 + 3787: 12,-34 + 3822: 11,-21 + 3823: 11,-23 + 3824: 11,-25 + 3825: 11,-27 + 3826: 11,-30 + 3827: 11,-32 + 3828: 11,-35 + 3829: 11,-36 + 3830: 11,-35 + 3831: 11,-33 3832: 11,-30 - 3833: 11,-32 - 3834: 11,-35 - 3835: 11,-36 - 3836: 11,-35 - 3837: 11,-33 - 3838: 11,-30 - 3839: 11,-27 - 3840: 11,-24 - 3841: 11,-21 - 3842: 13,-24 - 3843: 13,-24 - 3844: 12,-24 - 3845: 11,-24 - 3846: 10,-25 - 3847: 9,-25 - 3848: 10,-25 - 3849: 7,-26 - 3850: 6,-27 - 3851: 4,-26 - 3852: 6,-25 - 3853: 7,-25 - 3854: 10,-21 - 3855: 8,-21 - 3856: 6,-21 - 3857: 5,-20 - 3858: 5,-19 - 3859: 7,-19 - 3861: 7,-18 - 3862: 7,-20 - 3864: 5,-21 + 3833: 11,-27 + 3834: 11,-24 + 3835: 11,-21 + 3836: 13,-24 + 3837: 13,-24 + 3838: 12,-24 + 3839: 11,-24 + 3840: 10,-25 + 3841: 9,-25 + 3842: 10,-25 + 3843: 7,-26 + 3844: 6,-27 + 3845: 4,-26 + 3846: 6,-25 + 3847: 7,-25 + 3848: 10,-21 + 3849: 8,-21 + 3850: 6,-21 + 3851: 5,-20 + 3852: 5,-19 + 3853: 7,-19 + 3855: 7,-18 + 3856: 7,-20 + 3858: 5,-21 + 3859: 5,-21 + 3861: 6,-19 + 3862: 5,-19 + 3863: 6,-20 + 3864: 6,-21 3865: 5,-21 - 3867: 6,-19 - 3868: 5,-19 - 3869: 6,-20 - 3870: 6,-21 - 3871: 5,-21 - 3876: 10,-21 - 3877: 9,-21 - 3878: 10,-22 - 3879: 9,-22 - 3880: 10,-23 - 3881: 9,-22 - 3882: 11,-22 - 3915: 6,-35 - 3916: 11,-34 - 3917: 7,-37 - 3918: 6,-37 - 3919: 7,-38 - 3920: 7,-37 - 3921: 6,-37 - 3922: 6,-38 - 3923: 6,-38 - 3924: 6,-38 - 3925: 5,-38 - 3926: 4,-40 - 3949: 17,-37 - 3950: 18,-37 - 3951: 18,-37 - 3952: 18,-36 - 3953: 18,-35 - 3954: 18,-35 - 3955: 18,-34 - 3956: 18,-35 - 3957: 18,-35 - 3958: 17,-35 - 3959: 17,-35 - 3960: 17,-34 - 3961: 17,-34 - 3962: 17,-34 - 3963: 17,-34 - 3964: 18,-36 - 3965: 18,-36 - 3966: 18,-36 - 3967: 18,-36 - 3968: 18,-36 - 3979: 15,-41 - 3980: 15,-40 - 3981: 16,-40 - 3982: 16,-41 - 3983: 15,-41 - 3984: 15,-40 - 3985: 15,-38 - 3986: 15,-37 - 3987: 15,-37 - 3988: 15,-38 - 3989: 16,-41 - 3990: 16,-40 - 3991: 15,-41 - 3992: 15,-40 - 3993: 8,-38 - 3994: 9,-39 - 3995: 9,-41 - 3996: 4,-42 - 3997: 4,-39 - 3998: 5,-41 - 3999: -14,-38 - 4000: -13,-35 - 4001: -13,-32 - 4002: -13,-24 - 4003: -12,-23 - 4004: -13,-30 - 4005: -14,-30 - 4006: -16,-27 - 4007: -13,-27 - 4008: -14,-28 - 4009: -16,-29 - 4010: -16,-29 - 4011: -15,-27 - 4012: -13,-28 - 4013: -13,-29 - 4014: -14,-30 - 4015: -13,-29 - 4016: -13,-27 - 4017: -12,-29 - 4018: -7,-6 - 4019: -7,-4 - 4020: -5,-2 - 4021: -2,1 - 4022: -1,4 - 4023: 0,7 - 4024: 2,10 - 4025: 1,8 - 4026: 1,4 - 4027: -3,6 - 4028: -3,11 - 4029: -3,5 - 4030: 1,1 - 4031: -3,-2 - 4032: -1,-5 - 4033: 1,-6 - 4034: 1,-4 - 4035: 1,0 - 4036: 1,4 - 4037: 1,9 - 4038: 2,11 - 4039: 2,7 - 4040: 2,2 - 4041: 3,-2 - 4042: 3,-7 - 4043: 2,-4 - 4044: 1,0 - 4045: 1,5 - 4046: 1,8 - 4047: 1,11 - 4048: -2,11 - 4049: -4,7 - 4050: -4,2 - 4051: -3,-2 - 4052: 7,-5 - 4053: 6,-4 - 4054: 5,-1 - 4055: 6,1 - 4056: 7,0 - 4057: 7,-2 - 4058: 7,-3 - 4059: 10,-4 - 4060: 11,-5 - 4061: 11,-3 - 4062: 11,-3 - 4063: 9,-5 - 4064: 8,-5 - 4065: 10,-3 - 4066: 10,-1 - 4067: 8,-1 - 4068: 7,1 - 4069: 11,-1 - 4070: 11,-1 - 4071: 11,-2 - 4072: 11,-1 - 4073: 10,2 - 4074: 10,2 - 4075: 11,2 - 4076: 11,1 - 4077: 10,1 - 4078: 11,1 - 4079: 11,1 - 4080: 12,2 - 4081: 12,2 - 4094: 8,5 + 3870: 10,-21 + 3871: 9,-21 + 3872: 10,-22 + 3873: 9,-22 + 3874: 10,-23 + 3875: 9,-22 + 3876: 11,-22 + 3909: 6,-35 + 3910: 11,-34 + 3911: 7,-37 + 3912: 6,-37 + 3913: 7,-38 + 3914: 7,-37 + 3915: 6,-37 + 3916: 6,-38 + 3917: 6,-38 + 3918: 6,-38 + 3919: 5,-38 + 3920: 4,-40 + 3943: 17,-37 + 3944: 18,-37 + 3945: 18,-37 + 3946: 18,-36 + 3947: 18,-35 + 3948: 18,-35 + 3949: 18,-34 + 3950: 18,-35 + 3951: 18,-35 + 3952: 17,-35 + 3953: 17,-35 + 3954: 17,-34 + 3955: 17,-34 + 3956: 17,-34 + 3957: 17,-34 + 3958: 18,-36 + 3959: 18,-36 + 3960: 18,-36 + 3961: 18,-36 + 3962: 18,-36 + 3973: 15,-41 + 3974: 15,-40 + 3975: 16,-40 + 3976: 16,-41 + 3977: 15,-41 + 3978: 15,-40 + 3979: 15,-38 + 3980: 15,-37 + 3981: 15,-37 + 3982: 15,-38 + 3983: 16,-41 + 3984: 16,-40 + 3985: 15,-41 + 3986: 15,-40 + 3987: 8,-38 + 3988: 9,-39 + 3989: 9,-41 + 3990: 4,-42 + 3991: 4,-39 + 3992: 5,-41 + 3993: -14,-38 + 3994: -13,-35 + 3995: -13,-32 + 3996: -13,-24 + 3997: -12,-23 + 3998: -13,-30 + 3999: -14,-30 + 4000: -16,-27 + 4001: -13,-27 + 4002: -14,-28 + 4003: -16,-29 + 4004: -16,-29 + 4005: -15,-27 + 4006: -13,-28 + 4007: -13,-29 + 4008: -14,-30 + 4009: -13,-29 + 4010: -13,-27 + 4011: -12,-29 + 4012: -7,-6 + 4013: -7,-4 + 4014: -5,-2 + 4015: -2,1 + 4016: -1,4 + 4017: 0,7 + 4018: 2,10 + 4019: 1,8 + 4020: 1,4 + 4021: -3,6 + 4022: -3,11 + 4023: -3,5 + 4024: 1,1 + 4025: -3,-2 + 4026: -1,-5 + 4027: 1,-6 + 4028: 1,-4 + 4029: 1,0 + 4030: 1,4 + 4031: 1,9 + 4032: 2,11 + 4033: 2,7 + 4034: 2,2 + 4035: 3,-2 + 4036: 3,-7 + 4037: 2,-4 + 4038: 1,0 + 4039: 1,5 + 4040: 1,8 + 4041: 1,11 + 4042: -2,11 + 4043: -4,7 + 4044: -4,2 + 4045: -3,-2 + 4046: 7,-5 + 4047: 6,-4 + 4048: 5,-1 + 4049: 6,1 + 4050: 7,0 + 4051: 7,-2 + 4052: 7,-3 + 4053: 10,-4 + 4054: 11,-5 + 4055: 11,-3 + 4056: 11,-3 + 4057: 9,-5 + 4058: 8,-5 + 4059: 10,-3 + 4060: 10,-1 + 4061: 8,-1 + 4062: 7,1 + 4063: 11,-1 + 4064: 11,-1 + 4065: 11,-2 + 4066: 11,-1 + 4067: 10,2 + 4068: 10,2 + 4069: 11,2 + 4070: 11,1 + 4071: 10,1 + 4072: 11,1 + 4073: 11,1 + 4074: 12,2 + 4075: 12,2 + 4088: 8,5 + 4089: 7,6 + 4090: 6,8 + 4091: 7,9 + 4092: 9,10 + 4093: 10,9 + 4094: 10,7 4095: 7,6 - 4096: 6,8 - 4097: 7,9 - 4098: 9,10 - 4099: 10,9 - 4100: 10,7 - 4101: 7,6 - 4102: 5,11 - 4103: 5,11 - 4104: 5,9 - 4105: 6,6 - 4106: 7,5 - 4107: 11,7 - 4108: 10,10 - 4109: 6,5 - 4110: 5,5 - 4111: 5,5 - 4112: 3,5 - 4113: 4,5 - 4114: 5,5 - 4115: 2,5 - 4116: 3,5 - 4117: 3,5 - 4118: 5,-4 - 4119: 5,-5 - 4120: 6,-5 - 4121: 6,1 - 4122: 7,2 - 4123: 6,2 - 4124: 5,-5 - 4125: 4,-5 - 4139: 7,-4 - 4140: 6,-4 - 4141: 5,-3 - 4142: 5,-3 - 4143: 3,-3 - 4144: 3,-2 - 4145: 3,-1 - 4146: 3,-4 - 4147: 2,-6 - 4148: 1,-6 - 4149: 1,-6 - 4150: 1,-5 - 4151: 2,-5 - 4152: 3,-3 - 4153: 3,-2 + 4096: 5,11 + 4097: 5,11 + 4098: 5,9 + 4099: 6,6 + 4100: 7,5 + 4101: 11,7 + 4102: 10,10 + 4103: 6,5 + 4104: 5,5 + 4105: 5,5 + 4106: 3,5 + 4107: 4,5 + 4108: 5,5 + 4109: 2,5 + 4110: 3,5 + 4111: 3,5 + 4112: 5,-4 + 4113: 5,-5 + 4114: 6,-5 + 4115: 6,1 + 4116: 7,2 + 4117: 6,2 + 4118: 5,-5 + 4119: 4,-5 + 4133: 7,-4 + 4134: 6,-4 + 4135: 5,-3 + 4136: 5,-3 + 4137: 3,-3 + 4138: 3,-2 + 4139: 3,-1 + 4140: 3,-4 + 4141: 2,-6 + 4142: 1,-6 + 4143: 1,-6 + 4144: 1,-5 + 4145: 2,-5 + 4146: 3,-3 + 4147: 3,-2 + 4148: 9,-8 + 4149: 10,-7 + 4150: 11,-7 + 4151: 9,-7 + 4152: 11,-7 + 4153: 10,-7 4154: 9,-8 - 4155: 10,-7 - 4156: 11,-7 - 4157: 9,-7 - 4158: 11,-7 - 4159: 10,-7 - 4160: 9,-8 + 4155: 10,-8 + 4156: 10,-9 + 4157: 7,-8 + 4158: 8,-8 + 4159: 7,-8 + 4160: 8,-8 4161: 10,-8 - 4162: 10,-9 - 4163: 7,-8 - 4164: 8,-8 - 4165: 7,-8 - 4166: 8,-8 - 4167: 10,-8 - 4168: 10,-7 - 4169: 11,-7 - 4170: 12,-8 - 4171: 13,-8 - 4172: 14,-8 - 4173: 12,-8 - 4174: 13,-9 - 4175: 11,-8 - 4176: 10,-7 - 4177: 9,-8 - 4178: 8,-8 - 4179: 6,-8 - 4180: 9,-8 - 4181: 9,-7 - 4182: 8,-9 - 4193: -3,-1 - 4194: -4,1 - 4195: -4,3 - 4196: -4,4 - 4197: -7,3 - 4198: -9,2 - 4199: -11,-1 - 4200: -11,-1 - 4201: -13,-2 - 4202: -13,-2 - 4203: -15,1 - 4204: -14,0 - 4205: -14,2 - 4206: -14,3 - 4207: -14,4 - 4208: -13,2 - 4209: -13,1 - 4210: -12,0 - 4211: -10,1 - 4212: -9,2 - 4213: -8,2 - 4214: -7,1 - 4215: -8,2 - 4216: -6,0 - 4217: -4,0 - 4218: -3,2 - 4219: -3,4 - 4220: -2,6 - 4221: 0,6 - 4228: 3,6 - 4229: 2,6 - 4232: -10,7 - 4233: -9,6 - 4234: -9,6 - 4235: -8,6 - 4236: -7,6 - 4237: -10,7 - 4238: -10,6 - 4239: -10,8 - 4240: -9,8 - 4241: -10,8 - 4242: -11,7 - 4243: -10,6 - 4244: -9,6 - 4245: -9,7 - 4246: -7,8 - 4247: -5,7 - 4248: -5,6 - 4249: -5,5 - 4250: -5,4 - 4251: -8,4 - 4252: -9,4 - 4253: -8,4 - 4254: -9,4 - 4255: -9,4 - 4256: -7,4 - 4257: -5,10 - 4258: -5,10 - 4259: -4,10 - 4260: -4,11 - 4261: -4,11 - 4262: -3,11 - 4263: -4,9 - 4264: -3,10 - 4265: -3,7 - 4266: -3,5 - 4267: -3,3 - 4268: -3,0 + 4162: 10,-7 + 4163: 11,-7 + 4164: 12,-8 + 4165: 13,-8 + 4166: 14,-8 + 4167: 12,-8 + 4168: 13,-9 + 4169: 11,-8 + 4170: 10,-7 + 4171: 9,-8 + 4172: 8,-8 + 4173: 6,-8 + 4174: 9,-8 + 4175: 9,-7 + 4176: 8,-9 + 4187: -3,-1 + 4188: -4,1 + 4189: -4,3 + 4190: -4,4 + 4191: -7,3 + 4192: -9,2 + 4193: -11,-1 + 4194: -11,-1 + 4195: -13,-2 + 4196: -13,-2 + 4197: -15,1 + 4198: -14,0 + 4199: -14,2 + 4200: -14,3 + 4201: -14,4 + 4202: -13,2 + 4203: -13,1 + 4204: -12,0 + 4205: -10,1 + 4206: -9,2 + 4207: -8,2 + 4208: -7,1 + 4209: -8,2 + 4210: -6,0 + 4211: -4,0 + 4212: -3,2 + 4213: -3,4 + 4214: -2,6 + 4215: 0,6 + 4222: 3,6 + 4223: 2,6 + 4226: -10,7 + 4227: -9,6 + 4228: -9,6 + 4229: -8,6 + 4230: -7,6 + 4231: -10,7 + 4232: -10,6 + 4233: -10,8 + 4234: -9,8 + 4235: -10,8 + 4236: -11,7 + 4237: -10,6 + 4238: -9,6 + 4239: -9,7 + 4240: -7,8 + 4241: -5,7 + 4242: -5,6 + 4243: -5,5 + 4244: -5,4 + 4245: -8,4 + 4246: -9,4 + 4247: -8,4 + 4248: -9,4 + 4249: -9,4 + 4250: -7,4 + 4251: -5,10 + 4252: -5,10 + 4253: -4,10 + 4254: -4,11 + 4255: -4,11 + 4256: -3,11 + 4257: -4,9 + 4258: -3,10 + 4259: -3,7 + 4260: -3,5 + 4261: -3,3 + 4262: -3,0 + 4263: -3,-2 + 4264: -3,0 + 4265: -3,4 + 4266: -3,8 + 4267: -3,11 + 4268: -3,1 4269: -3,-2 - 4270: -3,0 - 4271: -3,4 - 4272: -3,8 - 4273: -3,11 - 4274: -3,1 - 4275: -3,-2 - 4276: -3,-5 - 4277: -3,-6 - 4372: -44,43 + 4270: -3,-5 + 4271: -3,-6 + 4366: -44,43 + 4367: -44,42 + 4368: -44,40 + 4369: -43,38 + 4370: -43,37 + 4371: -43,37 + 4372: -44,39 4373: -44,42 - 4374: -44,40 - 4375: -43,38 - 4376: -43,37 - 4377: -43,37 - 4378: -44,39 - 4379: -44,42 - 4380: -45,44 - 4381: -46,43 - 4382: -47,43 - 4383: -48,44 - 4384: -45,43 - 4385: -44,43 - 4386: -45,43 - 4387: -47,43 - 4388: -49,43 - 4389: -49,41 - 4390: -49,39 - 4391: -51,38 - 4392: -51,38 - 4393: -51,37 - 4394: -51,36 - 4395: -51,36 - 4396: -46,36 - 4397: -44,36 - 4398: -49,36 - 4399: -51,36 - 4400: -47,37 - 4401: -51,38 - 4402: -50,38 - 4403: -46,37 - 4404: -43,37 + 4374: -45,44 + 4375: -46,43 + 4376: -47,43 + 4377: -48,44 + 4378: -45,43 + 4379: -44,43 + 4380: -45,43 + 4381: -47,43 + 4382: -49,43 + 4383: -49,41 + 4384: -49,39 + 4385: -51,38 + 4386: -51,38 + 4387: -51,37 + 4388: -51,36 + 4389: -51,36 + 4390: -46,36 + 4391: -44,36 + 4392: -49,36 + 4393: -51,36 + 4394: -47,37 + 4395: -51,38 + 4396: -50,38 + 4397: -46,37 + 4398: -43,37 + 4399: -38,37 + 4400: -45,37 + 4401: -51,36 + 4402: -47,36 + 4403: -41,36 + 4404: -44,37 4405: -38,37 - 4406: -45,37 - 4407: -51,36 - 4408: -47,36 + 4406: -33,37 + 4407: -38,36 + 4408: -39,36 4409: -41,36 - 4410: -44,37 - 4411: -38,37 - 4412: -33,37 - 4413: -38,36 - 4414: -39,36 - 4415: -41,36 - 4416: -39,36 - 4417: -39,37 - 4418: -40,37 - 4419: -40,36 - 4420: -37,37 - 4421: -37,36 - 4422: -41,37 - 4423: -42,37 - 4424: -36,37 - 4425: -35,37 - 4426: -33,36 - 4427: -35,36 - 4428: -35,36 - 4429: -37,37 - 4430: -35,38 - 4431: -30,36 - 4432: -31,36 - 4433: -31,35 - 4434: -31,35 - 4435: -30,37 - 4436: -30,36 - 4437: -31,35 - 4438: -30,33 - 4439: -29,33 - 4440: -27,32 - 4441: -28,31 - 4442: -29,30 - 4443: -30,30 - 4444: -32,30 - 4445: -29,30 - 4446: -28,31 - 4447: -29,33 - 4448: -31,33 - 4449: -31,32 - 4450: -28,33 - 4451: -28,31 - 4452: -28,32 - 4453: -28,33 - 4454: -28,32 - 4455: -28,30 - 4456: -28,30 - 4457: -27,30 - 4458: -27,31 - 4459: -27,33 - 4502: -39,19 - 4503: -39,18 - 4504: -39,20 + 4410: -39,36 + 4411: -39,37 + 4412: -40,37 + 4413: -40,36 + 4414: -37,37 + 4415: -37,36 + 4416: -41,37 + 4417: -42,37 + 4418: -36,37 + 4419: -35,37 + 4420: -33,36 + 4421: -35,36 + 4422: -35,36 + 4423: -37,37 + 4424: -35,38 + 4425: -30,36 + 4426: -31,36 + 4427: -31,35 + 4428: -31,35 + 4429: -30,37 + 4430: -30,36 + 4431: -31,35 + 4432: -30,33 + 4433: -29,33 + 4434: -27,32 + 4435: -28,31 + 4436: -29,30 + 4437: -30,30 + 4438: -32,30 + 4439: -29,30 + 4440: -28,31 + 4441: -29,33 + 4442: -31,33 + 4443: -31,32 + 4444: -28,33 + 4445: -28,31 + 4446: -28,32 + 4447: -28,33 + 4448: -28,32 + 4449: -28,30 + 4450: -28,30 + 4451: -27,30 + 4452: -27,31 + 4453: -27,33 + 4496: -39,19 + 4497: -39,18 + 4498: -39,20 + 4499: -39,23 + 4500: -39,23 + 4501: -38,26 + 4502: -39,29 + 4503: -38,28 + 4504: -39,26 4505: -39,23 - 4506: -39,23 - 4507: -38,26 - 4508: -39,29 - 4509: -38,28 - 4510: -39,26 - 4511: -39,23 - 4512: -39,21 + 4506: -39,21 + 4507: -39,27 + 4508: -38,26 + 4509: -38,21 + 4510: -38,19 + 4511: -39,21 + 4512: -39,29 4513: -39,27 - 4514: -38,26 - 4515: -38,21 - 4516: -38,19 - 4517: -39,21 - 4518: -39,29 - 4519: -39,27 - 4520: -39,21 - 4521: -39,24 - 4522: -40,27 - 4523: -39,25 - 4524: -39,24 - 4525: -39,26 - 4526: -37,26 - 4527: -37,23 - 4528: -38,20 - 4529: -39,19 - 4530: -39,18 - 4531: -40,18 - 4532: -38,21 - 4533: -38,26 - 4534: -40,26 - 4535: -42,26 - 4536: -42,25 - 4537: -41,25 - 4538: -42,25 - 4539: -41,26 - 4540: -41,26 - 4570: -38,15 - 4571: -36,15 - 4572: -36,15 - 4573: -35,15 - 4574: -40,5 - 4575: -39,4 - 4576: -40,3 - 4577: -41,3 - 4578: -40,2 - 4579: -40,1 - 4580: -41,0 - 4581: -40,0 - 4582: -40,-1 - 4583: -42,-5 - 4584: -42,-7 - 4585: -41,-7 - 4586: -41,-1 - 4587: -41,-2 - 4588: -42,-2 - 4589: -43,-3 - 4590: -36,2 - 4591: -36,2 - 4592: -36,1 - 4593: -37,2 - 4594: -36,1 - 4595: -40,9 - 4596: -41,9 - 4597: -39,10 - 4598: -39,10 + 4514: -39,21 + 4515: -39,24 + 4516: -40,27 + 4517: -39,25 + 4518: -39,24 + 4519: -39,26 + 4520: -37,26 + 4521: -37,23 + 4522: -38,20 + 4523: -39,19 + 4524: -39,18 + 4525: -40,18 + 4526: -38,21 + 4527: -38,26 + 4529: -42,26 + 4530: -42,25 + 4531: -41,25 + 4532: -42,25 + 4533: -41,26 + 4534: -41,26 + 4564: -38,15 + 4565: -36,15 + 4566: -36,15 + 4567: -35,15 + 4568: -40,5 + 4569: -39,4 + 4570: -40,3 + 4571: -41,3 + 4572: -40,2 + 4573: -40,1 + 4574: -41,0 + 4575: -40,0 + 4576: -40,-1 + 4577: -42,-5 + 4578: -42,-7 + 4579: -41,-7 + 4580: -41,-1 + 4581: -41,-2 + 4582: -42,-2 + 4583: -43,-3 + 4584: -36,2 + 4585: -36,2 + 4586: -36,1 + 4587: -37,2 + 4588: -36,1 + 4589: -40,9 + 4590: -41,9 + 4591: -39,10 + 4592: -39,10 + 4593: -37,10 + 4594: -38,10 + 4595: -37,10 + 4596: -35,10 + 4597: -35,10 + 4598: -36,11 4599: -37,10 - 4600: -38,10 - 4601: -37,10 - 4602: -35,10 - 4603: -35,10 - 4604: -36,11 - 4605: -37,10 + 4643: -4,13 + 4644: 2,13 + 4645: 1,13 + 4646: 1,13 + 4647: -3,13 + 4648: -3,13 4649: -4,13 - 4650: 2,13 - 4651: 1,13 - 4652: 1,13 - 4653: -3,13 - 4654: -3,13 - 4655: -4,13 - 4656: -5,13 - 4657: -5,13 - 4658: -2,13 - 4659: -2,13 - 4660: 3,13 - 4661: 3,13 - 4662: 0,13 - 4663: 0,13 - 4675: -5,16 - 4676: -4,16 - 4677: -6,16 - 4678: -3,18 - 4679: -3,19 - 4680: 1,18 - 4681: 1,17 - 4682: 1,17 - 4683: 3,16 - 4684: 4,16 - 4685: 2,16 - 4715: 15,47 - 4716: 15,46 - 4717: 14,46 - 4718: 15,47 - 4755: 5,74 - 4756: 5,75 - 4757: 5,76 - 4758: 4,77 - 4759: 4,80 - 4760: 5,81 - 4761: 1,81 - 4762: -2,81 - 4763: 1,82 + 4650: -5,13 + 4651: -5,13 + 4652: -2,13 + 4653: -2,13 + 4654: 3,13 + 4655: 3,13 + 4656: 0,13 + 4657: 0,13 + 4669: -5,16 + 4670: -4,16 + 4671: -6,16 + 4672: -3,18 + 4673: -3,19 + 4674: 1,18 + 4675: 1,17 + 4676: 1,17 + 4677: 3,16 + 4678: 4,16 + 4679: 2,16 + 4709: 15,47 + 4710: 15,46 + 4711: 14,46 + 4712: 15,47 + 4749: 5,74 + 4750: 5,75 + 4751: 5,76 + 4752: 4,77 + 4753: 4,80 + 4754: 5,81 + 4755: 1,81 + 4756: -2,81 + 4757: 1,82 + 4758: 0,82 + 4759: 1,82 + 4760: 0,83 + 4761: 1,83 + 4762: 1,82 + 4763: 0,83 4764: 0,82 - 4765: 1,82 - 4766: 0,83 - 4767: 1,83 - 4768: 1,82 - 4769: 0,83 - 4770: 0,82 - 4771: -1,81 - 4772: -4,81 - 4773: -7,81 - 4774: -5,81 - 4775: 2,79 - 4776: 0,79 - 4777: 0,79 - 4778: -4,76 - 4779: -5,76 - 4780: -6,74 - 4781: -7,74 - 4782: -8,73 - 4783: -9,72 - 4784: -9,73 - 4785: -8,72 - 4786: -8,74 - 4787: -9,70 - 4788: -9,69 - 4789: -8,70 - 4790: 9,66 - 4791: 10,69 - 4792: 12,69 - 4793: 13,58 - 4794: 13,60 - 4795: 12,56 - 4796: 13,56 - 4797: 8,56 - 4798: 8,56 - 4799: 8,56 - 4800: 14,60 - 4801: 14,60 - 4802: 14,61 - 4803: 14,60 - 4804: 22,58 - 4805: 23,57 - 4806: 27,56 - 4807: 28,56 - 4808: 28,55 - 4809: 28,54 - 4810: 34,55 - 4811: 34,54 - 4812: 33,54 - 4813: 30,55 - 4814: 30,56 - 4815: 30,54 - 4816: 31,54 - 4817: 32,54 - 4825: 46,36 - 4826: 46,34 - 4877: 32,16 - 4878: 32,15 - 4879: 32,13 - 4880: 32,11 - 4881: 32,13 - 4910: 34,1 - 4911: 36,1 - 4912: 37,1 - 4913: 37,1 - 4914: 36,1 - 4915: 35,1 - 4916: 35,3 - 4917: 37,3 - 4918: 19,-4 - 4919: 18,-5 - 4920: 17,-6 - 4921: 17,-5 - 4922: 17,-4 - 4923: 18,-6 - 4924: 21,-6 - 4925: 19,-4 - 4926: 22,-4 - 4927: 21,-5 - 4928: 20,-6 - 4929: 22,-6 - 4930: 21,-4 - 4931: 21,-4 - 4932: 19,-5 - 4933: 20,-4 - 4934: 20,-4 - 4935: 20,-5 - 4936: 17,-4 - 4951: -9,-6 - 4952: -9,-5 - 4953: -9,-3 - 4954: -11,-2 - 4955: -10,-2 - 4956: -9,-3 - 4957: -9,-5 - 4958: -16,1 - 4959: -14,0 - 4960: -14,0 - 4961: -14,0 - 4962: -14,-1 - 4963: -13,0 - 4964: -13,1 - 4971: -10,-9 - 4972: -9,-10 - 4973: -6,-10 - 4974: -4,-11 - 4975: -2,-11 - 4976: -6,-14 - 4977: -6,-13 - 4978: 4,-14 - 4979: 4,-13 - 4980: 3,-11 - 4981: 3,-9 - 4982: 1,-9 - 4983: 5,-9 - 4984: 7,-9 - 4985: 8,-10 - 4986: 3,-5 - 4987: 4,-5 - 4988: 3,-5 - 5038: 12,9 - 5039: 13,9 - 5040: 14,9 - 5041: 14,8 - 5042: 14,7 - 5043: 15,9 - 5044: 15,10 - 5045: 15,10 - 5046: 13,10 - 5047: 9,10 - 5048: 6,10 - 5049: 6,8 - 5050: 7,6 - 5051: 7,9 - 5052: 8,8 - 5053: 7,7 - 5054: 8,7 - 5055: 8,9 - 5056: 8,6 - 5057: 8,7 - 5058: 8,9 - 5059: 7,10 - 5060: 6,11 - 5061: 8,11 - 5062: 10,10 - 5063: 10,6 - 5066: 14,38 - 5067: 15,38 - 5068: 14,38 - 5069: 15,38 - 5070: 14,38 + 4765: -1,81 + 4766: -4,81 + 4767: -7,81 + 4768: -5,81 + 4769: 2,79 + 4770: 0,79 + 4771: 0,79 + 4772: -4,76 + 4773: -5,76 + 4774: -6,74 + 4775: -7,74 + 4776: -8,73 + 4777: -9,72 + 4778: -9,73 + 4779: -8,72 + 4780: -8,74 + 4781: -9,70 + 4782: -9,69 + 4783: -8,70 + 4784: 9,66 + 4785: 10,69 + 4786: 12,69 + 4787: 13,58 + 4788: 13,60 + 4789: 12,56 + 4790: 13,56 + 4791: 8,56 + 4792: 8,56 + 4793: 8,56 + 4794: 14,60 + 4795: 14,60 + 4796: 14,61 + 4797: 14,60 + 4798: 22,58 + 4799: 23,57 + 4800: 27,56 + 4801: 28,56 + 4802: 28,55 + 4803: 28,54 + 4804: 34,55 + 4805: 34,54 + 4806: 33,54 + 4807: 30,55 + 4808: 30,56 + 4809: 30,54 + 4810: 31,54 + 4811: 32,54 + 4819: 46,36 + 4820: 46,34 + 4871: 32,16 + 4872: 32,15 + 4873: 32,13 + 4874: 32,11 + 4875: 32,13 + 4904: 34,1 + 4905: 36,1 + 4906: 37,1 + 4907: 37,1 + 4908: 36,1 + 4909: 35,1 + 4910: 35,3 + 4911: 37,3 + 4912: 19,-4 + 4913: 18,-5 + 4914: 17,-6 + 4915: 17,-5 + 4916: 17,-4 + 4917: 18,-6 + 4918: 21,-6 + 4919: 19,-4 + 4920: 22,-4 + 4921: 21,-5 + 4922: 20,-6 + 4923: 22,-6 + 4924: 21,-4 + 4925: 21,-4 + 4926: 19,-5 + 4927: 20,-4 + 4928: 20,-4 + 4929: 20,-5 + 4930: 17,-4 + 4945: -9,-6 + 4946: -9,-5 + 4947: -9,-3 + 4948: -11,-2 + 4949: -10,-2 + 4950: -9,-3 + 4951: -9,-5 + 4952: -16,1 + 4953: -14,0 + 4954: -14,0 + 4955: -14,0 + 4956: -14,-1 + 4957: -13,0 + 4958: -13,1 + 4965: -10,-9 + 4966: -9,-10 + 4967: -6,-10 + 4968: -4,-11 + 4969: -2,-11 + 4970: -6,-14 + 4971: -6,-13 + 4972: 4,-14 + 4973: 4,-13 + 4974: 3,-11 + 4975: 3,-9 + 4976: 1,-9 + 4977: 5,-9 + 4978: 7,-9 + 4979: 8,-10 + 4980: 3,-5 + 4981: 4,-5 + 4982: 3,-5 + 5032: 12,9 + 5033: 13,9 + 5034: 14,9 + 5035: 14,8 + 5036: 14,7 + 5037: 15,9 + 5038: 15,10 + 5039: 15,10 + 5040: 13,10 + 5041: 9,10 + 5042: 6,10 + 5043: 6,8 + 5044: 7,6 + 5045: 7,9 + 5046: 8,8 + 5047: 7,7 + 5048: 8,7 + 5049: 8,9 + 5050: 8,6 + 5051: 8,7 + 5052: 8,9 + 5053: 7,10 + 5054: 6,11 + 5055: 8,11 + 5056: 10,10 + 5057: 10,6 + 5060: 14,38 + 5061: 15,38 + 5062: 14,38 + 5063: 15,38 + 5064: 14,38 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#A461065E' + id: Dirt + decals: + 5288: -42,22 + 5289: -41,22 + 5290: -41,22 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#A46106A4' + id: Dirt + decals: + 5291: -41,22 + 5292: -42,22 + 5293: -42,24 + 5294: -42,24 + 5295: -41,24 + 5296: -42,23 + 5297: -43,23 + 5298: -39,22 + 5299: -40,22 + 5300: -40,24 + 5301: -40,25 + 5302: -40,26 + 5303: -42,27 + 5304: -43,27 + 5305: -41,28 + 5306: -40,28 + 5307: -41,27 + 5308: -44,27 + 5309: -44,28 + 5310: -45,28 + 5311: -46,27 + 5312: -47,28 + 5313: -47,27 + 5314: -46,28 + 5315: -38,23 + 5316: -38,24 + 5317: -38,27 + 5318: -38,29 + 5319: -42,24 + 5320: -42,22 + 5321: -41,21 + 5322: -43,21 + 5323: -42,21 + 5324: -43,22 + 5325: -43,25 + 5326: -43,24 + 5327: -41,24 + 5328: -41,22 + 5329: -41,24 + 5330: -40,20 + 5331: -38,17 + 5332: -38,22 - node: cleanable: True color: '#83543273' id: DirtHeavy decals: - 3605: 29,6 - 3610: 46,-10 - 3611: 48,-10 - 3726: -13,-41 - 3727: -11,-41 - 3728: -11,-40 - 3729: -10,-37 - 3730: -9,-34 - 3731: -7,-37 - 3732: -8,-40 - 3733: -6,-39 - 3734: -7,-34 - 3735: -7,-28 - 3736: -7,-24 - 3737: -7,-26 - 3738: -7,-30 - 3739: -9,-35 - 3740: -10,-38 - 3741: -10,-40 - 3794: 12,-37 - 3795: 12,-35 - 3796: 12,-34 - 3797: 12,-32 - 3798: 12,-30 - 3799: 12,-28 - 3800: 12,-26 - 3801: 12,-23 - 3802: 12,-21 - 3803: 12,-20 - 3860: 6,-19 - 3863: 5,-19 - 3866: 5,-20 - 3883: 11,-22 - 3884: 11,-24 - 3885: 11,-27 - 3886: 11,-29 - 3887: 11,-32 - 3888: 11,-34 - 3889: 11,-36 - 3910: 7,-35 - 3911: 5,-35 - 3912: 9,-34 - 3913: 10,-34 - 3914: 8,-35 - 3927: 4,-39 - 3928: 6,-38 - 3929: 7,-38 - 3930: 7,-37 - 3931: 8,-38 - 3932: 9,-39 - 3933: 18,-38 - 3934: 18,-37 - 3935: 17,-37 - 3936: 17,-35 - 3937: 17,-34 - 3938: 17,-34 - 3972: 18,-36 - 3973: 18,-36 - 3974: 16,-41 - 4082: 10,1 - 4083: 10,1 - 4084: 12,2 - 4136: 11,-4 - 4137: 6,-1 - 4138: 8,-1 - 4183: 8,-8 - 4226: 3,4 - 4227: 2,4 - 4278: -3,-6 - 4279: -5,-6 - 4280: -3,-4 - 4281: -4,-2 - 4282: -3,1 - 4283: -4,4 - 4284: -4,6 - 4285: -3,8 - 4286: -5,9 - 4287: -3,10 - 4300: 3,14 - 4301: -1,17 - 4302: 0,20 - 4303: -1,25 - 4304: -1,30 - 4305: -1,33 - 4306: -1,36 - 4307: -2,38 - 4308: -1,49 - 4309: -1,50 - 4310: -2,50 - 4338: -7,48 - 4339: -8,48 + 3599: 29,6 + 3604: 46,-10 + 3605: 48,-10 + 3720: -13,-41 + 3721: -11,-41 + 3722: -11,-40 + 3723: -10,-37 + 3724: -9,-34 + 3725: -7,-37 + 3726: -8,-40 + 3727: -6,-39 + 3728: -7,-34 + 3729: -7,-28 + 3730: -7,-24 + 3731: -7,-26 + 3732: -7,-30 + 3733: -9,-35 + 3734: -10,-38 + 3735: -10,-40 + 3788: 12,-37 + 3789: 12,-35 + 3790: 12,-34 + 3791: 12,-32 + 3792: 12,-30 + 3793: 12,-28 + 3794: 12,-26 + 3795: 12,-23 + 3796: 12,-21 + 3797: 12,-20 + 3854: 6,-19 + 3857: 5,-19 + 3860: 5,-20 + 3877: 11,-22 + 3878: 11,-24 + 3879: 11,-27 + 3880: 11,-29 + 3881: 11,-32 + 3882: 11,-34 + 3883: 11,-36 + 3904: 7,-35 + 3905: 5,-35 + 3906: 9,-34 + 3907: 10,-34 + 3908: 8,-35 + 3921: 4,-39 + 3922: 6,-38 + 3923: 7,-38 + 3924: 7,-37 + 3925: 8,-38 + 3926: 9,-39 + 3927: 18,-38 + 3928: 18,-37 + 3929: 17,-37 + 3930: 17,-35 + 3931: 17,-34 + 3932: 17,-34 + 3966: 18,-36 + 3967: 18,-36 + 3968: 16,-41 + 4076: 10,1 + 4077: 10,1 + 4078: 12,2 + 4130: 11,-4 + 4131: 6,-1 + 4132: 8,-1 + 4177: 8,-8 + 4220: 3,4 + 4221: 2,4 + 4272: -3,-6 + 4273: -5,-6 + 4274: -3,-4 + 4275: -4,-2 + 4276: -3,1 + 4277: -4,4 + 4278: -4,6 + 4279: -3,8 + 4280: -5,9 + 4281: -3,10 + 4294: 3,14 + 4295: -1,17 + 4296: 0,20 + 4297: -1,25 + 4298: -1,30 + 4299: -1,33 + 4300: -1,36 + 4301: -2,38 + 4302: -1,49 + 4303: -1,50 + 4304: -2,50 + 4332: -7,48 + 4333: -8,48 + 4334: -9,46 + 4335: -10,45 + 4336: -11,45 + 4337: -13,45 + 4338: -16,45 + 4339: -17,45 4340: -9,46 - 4341: -10,45 - 4342: -11,45 - 4343: -13,45 - 4344: -16,45 - 4345: -17,45 - 4346: -9,46 - 4347: -7,46 - 4348: -5,45 - 4349: -7,46 - 4350: -8,48 - 4351: -9,49 - 4352: -11,53 - 4353: -14,55 - 4354: -17,53 - 4355: -13,53 - 4356: -12,54 - 4357: -14,53 - 4358: -16,53 - 4359: -18,52 - 4360: -19,51 - 4361: -19,50 - 4362: -19,48 - 4363: -20,48 - 4364: -20,47 - 4365: -20,47 - 4366: -18,46 - 4367: -16,45 - 4460: -27,33 - 4461: -30,33 - 4462: -29,33 - 4470: -29,33 - 4471: -27,30 - 4606: -41,10 - 4607: -40,10 - 4608: -40,9 - 4609: -40,8 - 4610: -39,5 - 4611: -39,4 - 4612: -39,5 - 4613: -40,2 - 4614: -40,1 - 4615: -41,2 - 4616: -41,4 - 4617: -41,4 - 4640: -38,6 - 4641: -39,4 - 4642: -38,3 - 4643: -39,3 - 4644: -38,2 - 4645: -38,1 - 4646: -36,2 - 4647: -36,4 - 4648: -36,3 - 4664: -5,13 - 4665: -3,13 - 4666: -2,13 - 4667: 1,13 - 4668: 2,13 - 4719: 15,47 - 4720: 15,47 - 4721: 15,46 - 4722: 14,46 - 4723: 15,45 - 4724: 15,44 - 4725: 2,56 - 4726: 2,54 - 4727: 3,53 - 4728: 4,53 - 4729: 2,53 - 4730: 4,54 - 4731: 4,56 - 4732: 4,56 - 4733: 5,55 - 4734: -2,54 - 4735: -2,54 - 4736: -2,70 - 4737: -2,70 - 4738: -2,68 - 4739: -2,68 - 4740: 0,68 - 4741: -2,67 - 4742: -3,67 - 4743: -3,67 - 4818: 32,54 - 4819: 33,54 - 4827: 46,36 - 4828: 45,36 - 4829: 46,36 - 4830: 49,36 - 4831: 48,36 - 4832: 48,35 - 4833: 48,34 - 4834: 48,35 - 4835: 48,36 - 4864: 27,25 - 4865: 29,25 - 4866: 30,26 - 4867: 30,23 - 4868: 30,24 - 4869: 30,25 - 4870: 30,24 - 4871: 32,19 - 4872: 32,16 - 4873: 32,15 - 4874: 33,15 - 4875: 32,15 - 4876: 32,16 - 4882: 39,14 - 4883: 41,15 - 4884: 42,15 - 4885: 45,14 - 4886: 46,15 - 4887: 48,15 - 4888: 47,15 - 4889: 49,15 - 4890: 49,13 - 4891: 45,15 - 4937: 17,-4 - 4938: 16,-5 - 4939: 16,-6 - 4940: 18,-5 - 4941: 18,-4 - 4942: 19,-6 - 4943: 20,-6 - 4944: 20,-4 - 4945: 20,-5 - 4946: 20,-5 - 4947: 21,-6 - 4948: 21,-4 - 4949: 22,-3 - 4950: 20,-3 - 4965: -12,-10 - 4966: -13,-10 - 4967: -12,-9 - 4968: -13,-10 - 4969: -12,-10 - 4970: -11,-10 - 4989: 3,-5 - 4990: 2,-6 - 5071: 14,38 + 4341: -7,46 + 4342: -5,45 + 4343: -7,46 + 4344: -8,48 + 4345: -9,49 + 4346: -11,53 + 4347: -14,55 + 4348: -17,53 + 4349: -13,53 + 4350: -12,54 + 4351: -14,53 + 4352: -16,53 + 4353: -18,52 + 4354: -19,51 + 4355: -19,50 + 4356: -19,48 + 4357: -20,48 + 4358: -20,47 + 4359: -20,47 + 4360: -18,46 + 4361: -16,45 + 4454: -27,33 + 4455: -30,33 + 4456: -29,33 + 4464: -29,33 + 4465: -27,30 + 4600: -41,10 + 4601: -40,10 + 4602: -40,9 + 4603: -40,8 + 4604: -39,5 + 4605: -39,4 + 4606: -39,5 + 4607: -40,2 + 4608: -40,1 + 4609: -41,2 + 4610: -41,4 + 4611: -41,4 + 4634: -38,6 + 4635: -39,4 + 4636: -38,3 + 4637: -39,3 + 4638: -38,2 + 4639: -38,1 + 4640: -36,2 + 4641: -36,4 + 4642: -36,3 + 4658: -5,13 + 4659: -3,13 + 4660: -2,13 + 4661: 1,13 + 4662: 2,13 + 4713: 15,47 + 4714: 15,47 + 4715: 15,46 + 4716: 14,46 + 4717: 15,45 + 4718: 15,44 + 4719: 2,56 + 4720: 2,54 + 4721: 3,53 + 4722: 4,53 + 4723: 2,53 + 4724: 4,54 + 4725: 4,56 + 4726: 4,56 + 4727: 5,55 + 4728: -2,54 + 4729: -2,54 + 4730: -2,70 + 4731: -2,70 + 4732: -2,68 + 4733: -2,68 + 4734: 0,68 + 4735: -2,67 + 4736: -3,67 + 4737: -3,67 + 4812: 32,54 + 4813: 33,54 + 4821: 46,36 + 4822: 45,36 + 4823: 46,36 + 4824: 49,36 + 4825: 48,36 + 4826: 48,35 + 4827: 48,34 + 4828: 48,35 + 4829: 48,36 + 4858: 27,25 + 4859: 29,25 + 4860: 30,26 + 4861: 30,23 + 4862: 30,24 + 4863: 30,25 + 4864: 30,24 + 4865: 32,19 + 4866: 32,16 + 4867: 32,15 + 4868: 33,15 + 4869: 32,15 + 4870: 32,16 + 4876: 39,14 + 4877: 41,15 + 4878: 42,15 + 4879: 45,14 + 4880: 46,15 + 4881: 48,15 + 4882: 47,15 + 4883: 49,15 + 4884: 49,13 + 4885: 45,15 + 4931: 17,-4 + 4932: 16,-5 + 4933: 16,-6 + 4934: 18,-5 + 4935: 18,-4 + 4936: 19,-6 + 4937: 20,-6 + 4938: 20,-4 + 4939: 20,-5 + 4940: 20,-5 + 4941: 21,-6 + 4942: 21,-4 + 4943: 22,-3 + 4944: 20,-3 + 4959: -12,-10 + 4960: -13,-10 + 4961: -12,-9 + 4962: -13,-10 + 4963: -12,-10 + 4964: -11,-10 + 4983: 3,-5 + 4984: 2,-6 + 5065: 14,38 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#A4610696' + id: DirtHeavy + decals: + 5257: -40,21 + 5258: -41,22 + 5259: -43,23 + 5260: -43,27 + 5261: -43,28 + 5262: -42,28 + 5263: -46,28 + 5264: -45,28 + 5265: -45,27 + 5266: -47,27 + 5267: -38,20 + 5268: -41,20 + 5269: -42,27 + 5270: -41,24 + 5271: -42,24 - node: cleanable: True color: '#83543273' id: DirtLight decals: - 3606: 29,6 - 3608: 46,-10 - 3609: 48,-10 - 3612: 46,-10 - 3615: 18,-9 - 3616: 22,-9 - 3804: 12,-36 - 3805: 12,-34 - 3806: 12,-32 - 3807: 12,-30 - 3808: 12,-28 - 3809: 12,-26 - 3810: 12,-24 - 3811: 12,-22 - 3812: 12,-20 - 3813: 12,-18 - 3814: 12,-18 - 3815: 11,-19 - 3816: 12,-19 - 3872: 6,-21 - 3873: 5,-19 - 3907: 9,-35 - 3908: 7,-35 - 3909: 8,-35 - 3975: 15,-40 - 3976: 16,-40 - 4126: 5,-5 - 4127: 7,-5 - 4128: 10,-5 - 4129: 11,-2 - 4184: 9,-8 - 4185: 10,-8 - 4186: 10,-9 - 4187: 10,-9 - 4188: 9,-9 - 4189: 9,-9 - 4190: 12,-9 - 4191: 11,-8 - 4192: 11,-9 - 4222: -1,6 - 4230: -8,6 - 4231: -11,7 - 4288: 1,11 - 4289: 2,10 - 4290: 1,8 - 4291: 1,6 - 4292: 2,4 - 4293: 0,2 - 4294: 2,0 - 4295: 1,-3 - 4296: 2,-5 - 4297: 1,-6 - 4298: 1,4 - 4299: 2,7 - 4311: -2,48 - 4312: -2,50 - 4368: -44,43 - 4369: -44,43 - 4463: -31,31 - 4464: -31,30 - 4465: -29,30 - 4466: -32,33 - 4467: -31,33 - 4468: -31,30 - 4469: -29,30 - 4472: -27,31 - 4473: -27,32 - 4618: -41,-1 - 4619: -42,-2 - 4620: -40,-1 - 4621: -40,2 - 4622: -37,2 - 4623: -36,2 - 4624: -36,4 - 4625: -35,4 - 4631: -39,10 - 4632: -36,10 - 4633: -35,10 - 4634: -37,10 - 4635: -38,10 - 4636: -36,11 - 4637: -41,10 - 4638: -41,9 - 4639: -42,9 - 4669: 1,13 - 4670: 3,13 - 4671: 5,14 - 4672: 5,14 - 4673: 3,15 - 4674: 2,15 - 4686: 3,16 - 4687: 3,16 - 4688: 4,17 - 4689: 4,18 - 4690: 3,18 - 4701: 6,28 - 4702: 7,28 - 4703: 7,29 - 4704: 6,29 - 4705: 6,30 - 4706: 3,31 - 4707: 3,33 - 4708: 2,33 - 4709: 2,27 - 4710: 2,29 - 4711: 5,29 - 4712: 4,28 - 4713: 4,28 - 4714: 4,30 - 4892: 46,15 - 4893: 46,17 - 4894: 46,17 - 4895: 48,17 - 4896: 49,17 - 4897: 49,17 - 4898: 48,17 - 4991: 3,-5 - 4992: 3,-5 - 4993: 2,-6 - 5072: 15,38 + 3600: 29,6 + 3602: 46,-10 + 3603: 48,-10 + 3606: 46,-10 + 3609: 18,-9 + 3610: 22,-9 + 3798: 12,-36 + 3799: 12,-34 + 3800: 12,-32 + 3801: 12,-30 + 3802: 12,-28 + 3803: 12,-26 + 3804: 12,-24 + 3805: 12,-22 + 3806: 12,-20 + 3807: 12,-18 + 3808: 12,-18 + 3809: 11,-19 + 3810: 12,-19 + 3866: 6,-21 + 3867: 5,-19 + 3901: 9,-35 + 3902: 7,-35 + 3903: 8,-35 + 3969: 15,-40 + 3970: 16,-40 + 4120: 5,-5 + 4121: 7,-5 + 4122: 10,-5 + 4123: 11,-2 + 4178: 9,-8 + 4179: 10,-8 + 4180: 10,-9 + 4181: 10,-9 + 4182: 9,-9 + 4183: 9,-9 + 4184: 12,-9 + 4185: 11,-8 + 4186: 11,-9 + 4216: -1,6 + 4224: -8,6 + 4225: -11,7 + 4282: 1,11 + 4283: 2,10 + 4284: 1,8 + 4285: 1,6 + 4286: 2,4 + 4287: 0,2 + 4288: 2,0 + 4289: 1,-3 + 4290: 2,-5 + 4291: 1,-6 + 4292: 1,4 + 4293: 2,7 + 4305: -2,48 + 4306: -2,50 + 4362: -44,43 + 4363: -44,43 + 4457: -31,31 + 4458: -31,30 + 4459: -29,30 + 4460: -32,33 + 4461: -31,33 + 4462: -31,30 + 4463: -29,30 + 4466: -27,31 + 4467: -27,32 + 4612: -41,-1 + 4613: -42,-2 + 4614: -40,-1 + 4615: -40,2 + 4616: -37,2 + 4617: -36,2 + 4618: -36,4 + 4619: -35,4 + 4625: -39,10 + 4626: -36,10 + 4627: -35,10 + 4628: -37,10 + 4629: -38,10 + 4630: -36,11 + 4631: -41,10 + 4632: -41,9 + 4633: -42,9 + 4663: 1,13 + 4664: 3,13 + 4665: 5,14 + 4666: 5,14 + 4667: 3,15 + 4668: 2,15 + 4680: 3,16 + 4681: 3,16 + 4682: 4,17 + 4683: 4,18 + 4684: 3,18 + 4695: 6,28 + 4696: 7,28 + 4697: 7,29 + 4698: 6,29 + 4699: 6,30 + 4700: 3,31 + 4701: 3,33 + 4702: 2,33 + 4703: 2,27 + 4704: 2,29 + 4705: 5,29 + 4706: 4,28 + 4707: 4,28 + 4708: 4,30 + 4886: 46,15 + 4887: 46,17 + 4888: 46,17 + 4889: 48,17 + 4890: 49,17 + 4891: 49,17 + 4892: 48,17 + 4985: 3,-5 + 4986: 3,-5 + 4987: 2,-6 + 5066: 15,38 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#A461065E' + id: DirtLight + decals: + 5285: -41,22 + 5286: -42,23 + 5287: -41,23 - node: cleanable: True color: '#FFFFFFFF' id: DirtLight decals: - 5186: 46,-11 - 5187: 45,-11 - 5188: 46,-13 - 5189: 47,-14 - 5190: 48,-12 - 5191: 48,-12 - 5192: 48,-14 - 5193: 47,-14 - 5194: 49,-15 - 5195: 49,-8 - 5196: 48,-8 + 5180: 46,-11 + 5181: 45,-11 + 5182: 46,-13 + 5183: 47,-14 + 5184: 48,-12 + 5185: 48,-12 + 5186: 48,-14 + 5187: 47,-14 + 5188: 49,-15 + 5189: 49,-8 + 5190: 48,-8 - node: cleanable: True color: '#83543273' id: DirtMedium decals: - 3607: 28,-14 - 3613: 48,-10 - 3614: 37,-9 - 3617: 11,-9 - 3618: 9,-9 - 3742: -10,-42 - 3743: -10,-37 - 3744: -10,-34 - 3745: -8,-33 - 3746: -14,-36 - 3747: -13,-33 - 3748: -12,-37 - 3749: -13,-36 - 3750: -12,-34 - 3751: -13,-34 - 3752: -13,-36 - 3753: -13,-37 - 3817: 11,-19 - 3818: 11,-18 - 3819: 12,-18 - 3820: 12,-20 - 3821: 12,-22 - 3822: 12,-25 - 3823: 12,-28 - 3824: 12,-30 - 3825: 12,-32 - 3826: 12,-34 - 3827: 12,-36 - 3874: 7,-21 - 3875: 7,-21 - 3890: 11,-37 - 3891: 11,-35 - 3892: 11,-32 - 3893: 11,-29 - 3894: 11,-26 - 3895: 11,-24 - 3896: 7,-31 - 3897: 6,-31 - 3898: 5,-35 - 3899: 6,-34 - 3900: 7,-34 - 3901: 6,-35 - 3902: 7,-35 - 3903: 6,-35 - 3904: 8,-34 - 3905: 10,-34 - 3906: 10,-35 - 3939: 17,-37 - 3940: 17,-36 - 3941: 17,-35 - 3942: 17,-35 - 3943: 17,-37 - 3944: 18,-37 - 3945: 18,-35 - 3946: 18,-34 - 3947: 18,-36 - 3948: 18,-37 - 3969: 17,-36 - 3970: 17,-36 - 3971: 18,-35 - 3977: 15,-40 - 3978: 15,-40 - 4085: 11,3 - 4086: 10,2 - 4087: 11,1 - 4088: 11,1 - 4089: 12,2 - 4090: 12,2 - 4091: 12,2 - 4092: 10,1 - 4093: 10,1 - 4130: 5,-1 - 4131: 8,2 - 4132: 8,-1 - 4133: 9,-5 - 4134: 6,-5 - 4135: 11,-5 - 4223: -3,5 - 4224: -4,6 - 4225: -2,5 - 4313: -7,50 - 4314: -7,47 - 4315: -8,50 - 4316: -9,47 - 4317: -9,46 - 4318: -14,45 - 4319: -16,45 - 4320: -19,47 - 4321: -19,49 - 4322: -17,53 - 4323: -15,54 - 4324: -13,54 - 4325: -11,55 - 4326: -10,57 - 4327: -10,58 - 4328: -9,55 - 4329: -9,55 - 4330: -9,55 - 4331: -10,56 - 4332: -12,59 - 4333: -12,59 - 4334: -7,48 - 4335: -7,48 - 4336: -7,50 - 4337: -7,50 - 4370: -44,43 - 4371: -44,43 - 4474: -27,33 - 4475: -27,30 - 4476: -33,25 - 4477: -33,24 - 4478: -33,22 - 4479: -33,20 - 4480: -33,17 - 4481: -36,13 - 4482: -43,13 - 4483: -48,14 - 4484: -50,14 - 4485: -46,14 - 4486: -45,14 - 4487: -45,14 - 4488: -46,15 - 4489: -48,15 - 4490: -49,13 - 4491: -42,14 - 4492: -39,15 - 4493: -38,15 - 4494: -36,15 - 4495: -39,17 - 4496: -38,17 - 4497: -38,18 - 4498: -39,16 - 4499: -38,18 - 4500: -39,19 - 4501: -38,17 - 4541: -41,26 - 4542: -42,25 - 4543: -42,25 - 4544: -41,25 - 4545: -38,28 - 4546: -38,29 - 4547: -38,28 - 4548: -40,29 - 4549: -40,29 - 4550: -39,27 - 4551: -39,25 - 4552: -38,23 - 4553: -39,21 - 4554: -39,20 - 4555: -39,19 - 4556: -41,18 - 4557: -40,17 - 4558: -40,18 - 4559: -39,17 - 4560: -38,18 - 4561: -38,15 - 4562: -39,15 - 4563: -38,14 - 4564: -37,15 - 4565: -36,14 - 4566: -36,15 - 4567: -36,16 - 4568: -36,16 - 4569: -36,16 - 4626: -36,2 - 4627: -36,3 - 4628: -35,4 - 4629: -38,6 - 4630: -38,7 - 4691: 3,17 - 4692: 4,17 - 4693: 3,18 - 4694: 3,18 - 4695: 3,17 - 4696: 4,27 - 4697: 2,27 - 4698: 2,31 - 4699: 7,30 - 4700: 6,30 - 4744: -3,67 - 4745: -3,67 - 4746: -2,68 - 4747: 0,68 - 4748: 0,70 - 4749: 0,74 - 4750: 2,76 - 4751: 3,76 - 4752: 5,76 - 4753: 5,75 - 4754: 5,74 - 4820: 32,54 - 4821: 31,54 - 4822: 40,47 - 4823: 44,43 - 4824: 42,43 - 4836: 47,36 - 4837: 47,37 - 4838: 47,36 - 4839: 47,37 - 4840: 47,37 - 4841: 45,37 - 4842: 45,35 - 4843: 43,36 - 4844: 42,37 - 4845: 41,37 - 4846: 41,40 - 4847: 41,40 - 4848: 39,37 - 4849: 39,36 - 4850: 36,38 - 4851: 34,38 - 4852: 32,38 - 4853: 29,37 - 4854: 30,36 - 4855: 30,38 - 4856: 31,38 - 4857: 31,38 - 4858: 31,38 - 4859: 28,26 - 4860: 27,25 - 4861: 27,25 - 4862: 29,29 - 4863: 30,27 - 4899: 46,15 - 4900: 48,15 - 4901: 46,16 - 4902: 46,17 - 4903: 46,16 - 4904: 34,5 - 4905: 34,5 - 4906: 35,5 - 4907: 34,3 - 4908: 34,3 - 4909: 34,1 - 4994: 2,-6 - 4995: 1,-5 - 4996: 0,-1 - 4997: 1,0 - 4998: 0,0 - 4999: -2,1 - 5000: -2,0 - 5001: 1,3 - 5002: 1,9 - 5003: -2,6 - 5004: -6,0 - 5005: -8,-2 - 5006: -10,-2 - 5007: -11,-1 - 5008: -7,-1 - 5009: -6,-1 - 5010: -4,-1 - 5011: -5,-1 - 5012: -5,0 - 5013: -8,3 - 5014: -9,3 - 5015: -9,3 - 5016: -7,3 - 5017: -4,6 - 5018: 7,4 - 5019: 6,5 - 5020: 6,7 - 5021: 10,10 - 5022: 10,8 - 5023: 10,5 - 5024: 8,5 - 5025: 9,5 - 5026: 13,9 - 5027: 14,8 - 5028: 14,8 - 5029: 14,9 - 5030: 13,10 - 5031: 14,9 - 5032: 15,10 - 5033: 15,9 - 5034: 13,10 - 5035: 15,10 - 5036: 14,10 - 5037: 13,9 - 5073: 14,38 - 5074: 15,38 - 5075: 15,38 + 3601: 28,-14 + 3607: 48,-10 + 3608: 37,-9 + 3611: 11,-9 + 3612: 9,-9 + 3736: -10,-42 + 3737: -10,-37 + 3738: -10,-34 + 3739: -8,-33 + 3740: -14,-36 + 3741: -13,-33 + 3742: -12,-37 + 3743: -13,-36 + 3744: -12,-34 + 3745: -13,-34 + 3746: -13,-36 + 3747: -13,-37 + 3811: 11,-19 + 3812: 11,-18 + 3813: 12,-18 + 3814: 12,-20 + 3815: 12,-22 + 3816: 12,-25 + 3817: 12,-28 + 3818: 12,-30 + 3819: 12,-32 + 3820: 12,-34 + 3821: 12,-36 + 3868: 7,-21 + 3869: 7,-21 + 3884: 11,-37 + 3885: 11,-35 + 3886: 11,-32 + 3887: 11,-29 + 3888: 11,-26 + 3889: 11,-24 + 3890: 7,-31 + 3891: 6,-31 + 3892: 5,-35 + 3893: 6,-34 + 3894: 7,-34 + 3895: 6,-35 + 3896: 7,-35 + 3897: 6,-35 + 3898: 8,-34 + 3899: 10,-34 + 3900: 10,-35 + 3933: 17,-37 + 3934: 17,-36 + 3935: 17,-35 + 3936: 17,-35 + 3937: 17,-37 + 3938: 18,-37 + 3939: 18,-35 + 3940: 18,-34 + 3941: 18,-36 + 3942: 18,-37 + 3963: 17,-36 + 3964: 17,-36 + 3965: 18,-35 + 3971: 15,-40 + 3972: 15,-40 + 4079: 11,3 + 4080: 10,2 + 4081: 11,1 + 4082: 11,1 + 4083: 12,2 + 4084: 12,2 + 4085: 12,2 + 4086: 10,1 + 4087: 10,1 + 4124: 5,-1 + 4125: 8,2 + 4126: 8,-1 + 4127: 9,-5 + 4128: 6,-5 + 4129: 11,-5 + 4217: -3,5 + 4218: -4,6 + 4219: -2,5 + 4307: -7,50 + 4308: -7,47 + 4309: -8,50 + 4310: -9,47 + 4311: -9,46 + 4312: -14,45 + 4313: -16,45 + 4314: -19,47 + 4315: -19,49 + 4316: -17,53 + 4317: -15,54 + 4318: -13,54 + 4319: -11,55 + 4320: -10,57 + 4321: -10,58 + 4322: -9,55 + 4323: -9,55 + 4324: -9,55 + 4325: -10,56 + 4326: -12,59 + 4327: -12,59 + 4328: -7,48 + 4329: -7,48 + 4330: -7,50 + 4331: -7,50 + 4364: -44,43 + 4365: -44,43 + 4468: -27,33 + 4469: -27,30 + 4470: -33,25 + 4471: -33,24 + 4472: -33,22 + 4473: -33,20 + 4474: -33,17 + 4475: -36,13 + 4476: -43,13 + 4477: -48,14 + 4478: -50,14 + 4479: -46,14 + 4480: -45,14 + 4481: -45,14 + 4482: -46,15 + 4483: -48,15 + 4484: -49,13 + 4485: -42,14 + 4486: -39,15 + 4487: -38,15 + 4488: -36,15 + 4489: -39,17 + 4490: -38,17 + 4491: -38,18 + 4492: -39,16 + 4493: -38,18 + 4494: -39,19 + 4495: -38,17 + 4535: -41,26 + 4536: -42,25 + 4537: -42,25 + 4538: -41,25 + 4539: -38,28 + 4540: -38,29 + 4541: -38,28 + 4542: -40,29 + 4543: -40,29 + 4544: -39,27 + 4545: -39,25 + 4546: -38,23 + 4547: -39,21 + 4548: -39,20 + 4549: -39,19 + 4550: -41,18 + 4551: -40,17 + 4552: -40,18 + 4553: -39,17 + 4554: -38,18 + 4555: -38,15 + 4556: -39,15 + 4557: -38,14 + 4558: -37,15 + 4559: -36,14 + 4560: -36,15 + 4561: -36,16 + 4562: -36,16 + 4563: -36,16 + 4620: -36,2 + 4621: -36,3 + 4622: -35,4 + 4623: -38,6 + 4624: -38,7 + 4685: 3,17 + 4686: 4,17 + 4687: 3,18 + 4688: 3,18 + 4689: 3,17 + 4690: 4,27 + 4691: 2,27 + 4692: 2,31 + 4693: 7,30 + 4694: 6,30 + 4738: -3,67 + 4739: -3,67 + 4740: -2,68 + 4741: 0,68 + 4742: 0,70 + 4743: 0,74 + 4744: 2,76 + 4745: 3,76 + 4746: 5,76 + 4747: 5,75 + 4748: 5,74 + 4814: 32,54 + 4815: 31,54 + 4816: 40,47 + 4817: 44,43 + 4818: 42,43 + 4830: 47,36 + 4831: 47,37 + 4832: 47,36 + 4833: 47,37 + 4834: 47,37 + 4835: 45,37 + 4836: 45,35 + 4837: 43,36 + 4838: 42,37 + 4839: 41,37 + 4840: 41,40 + 4841: 41,40 + 4842: 39,37 + 4843: 39,36 + 4844: 36,38 + 4845: 34,38 + 4846: 32,38 + 4847: 29,37 + 4848: 30,36 + 4849: 30,38 + 4850: 31,38 + 4851: 31,38 + 4852: 31,38 + 4853: 28,26 + 4854: 27,25 + 4855: 27,25 + 4856: 29,29 + 4857: 30,27 + 4893: 46,15 + 4894: 48,15 + 4895: 46,16 + 4896: 46,17 + 4897: 46,16 + 4898: 34,5 + 4899: 34,5 + 4900: 35,5 + 4901: 34,3 + 4902: 34,3 + 4903: 34,1 + 4988: 2,-6 + 4989: 1,-5 + 4990: 0,-1 + 4991: 1,0 + 4992: 0,0 + 4993: -2,1 + 4994: -2,0 + 4995: 1,3 + 4996: 1,9 + 4997: -2,6 + 4998: -6,0 + 4999: -8,-2 + 5000: -10,-2 + 5001: -11,-1 + 5002: -7,-1 + 5003: -6,-1 + 5004: -4,-1 + 5005: -5,-1 + 5006: -5,0 + 5007: -8,3 + 5008: -9,3 + 5009: -9,3 + 5010: -7,3 + 5011: -4,6 + 5012: 7,4 + 5013: 6,5 + 5014: 6,7 + 5015: 10,10 + 5016: 10,8 + 5017: 10,5 + 5018: 8,5 + 5019: 9,5 + 5020: 13,9 + 5021: 14,8 + 5022: 14,8 + 5023: 14,9 + 5024: 13,10 + 5025: 14,9 + 5026: 15,10 + 5027: 15,9 + 5028: 13,10 + 5029: 15,10 + 5030: 14,10 + 5031: 13,9 + 5067: 14,38 + 5068: 15,38 + 5069: 15,38 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#A461065E' + id: DirtMedium + decals: + 5276: -43,27 + 5277: -43,28 + 5278: -46,28 + 5279: -46,27 + 5280: -41,24 + 5281: -40,21 + 5282: -41,27 + 5283: -41,23 + 5284: -41,22 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#A4610696' + id: DirtMedium + decals: + 5272: -42,22 + 5273: -43,24 + 5274: -42,25 + 5275: -42,28 - node: color: '#80C71FA4' id: Flowersbr1 decals: - 5093: -45.480713,39.888554 + 5087: -45.480713,39.888554 - node: color: '#80C71FA4' id: Flowersbr2 decals: - 5095: -47.82387,40.787373 + 5089: -47.82387,40.787373 - node: color: '#80C71FAE' id: Flowerspv2 decals: - 2429: 22.31159,21.239965 + 2423: 22.31159,21.239965 - node: color: '#80C71FAE' id: Flowerspv3 decals: - 2428: 22.119907,20.303352 + 2422: 22.119907,20.303352 - node: color: '#80C71FA4' id: Flowersy1 decals: - 5090: -45.40703,40.65476 - 5092: -46.468082,40.168514 + 5084: -45.40703,40.65476 + 5086: -46.468082,40.168514 - node: color: '#80C71FAE' id: Flowersy2 decals: - 2425: 21.097595,20.409784 - 2430: 21.012402,21.21868 - 2431: 22.780151,20.0692 + 2419: 21.097595,20.409784 + 2424: 21.012402,21.21868 + 2425: 22.780151,20.0692 - node: color: '#80C71FA4' id: Flowersy3 decals: - 5094: -46.61545,40.787373 + 5088: -46.61545,40.787373 - node: color: '#80C71FAE' id: Flowersy3 decals: - 2424: 22.013416,21.53798 - 2426: 26.379543,16.769766 - 2432: 21.928225,20.32464 + 2418: 22.013416,21.53798 + 2420: 26.379543,16.769766 + 2426: 21.928225,20.32464 - node: color: '#80C71FA4' id: Flowersy4 decals: - 5091: -47.750187,39.991695 + 5085: -47.750187,39.991695 - node: color: '#80C71FAE' id: Flowersy4 decals: - 2427: 27.061085,17.45094 + 2421: 27.061085,17.45094 - node: color: '#18A2D50C' id: FullTileOverlayGreyscale @@ -5207,193 +5347,193 @@ entities: color: '#80C71FAB' id: Grassa1 decals: - 2420: 20.991104,21.857279 - 2422: 26.975891,16.94006 + 2414: 20.991104,21.857279 + 2416: 26.975891,16.94006 - node: color: '#80C71FB4' id: Grassa1 decals: - 2445: 20.92721,20.19692 + 2439: 20.92721,20.19692 - node: color: '#80C71FA4' id: Grassa2 decals: - 5077: -47.73545,40.050636 - 5081: -47.764923,40.698963 - 5083: -46.24703,40.743168 - 5084: -46.084923,39.918022 + 5071: -47.73545,40.050636 + 5075: -47.764923,40.698963 + 5077: -46.24703,40.743168 + 5078: -46.084923,39.918022 - node: color: '#80C71FB4' id: Grassa2 decals: - 2446: 22.865343,21.921139 - 2447: 26.358244,16.94006 + 2440: 22.865343,21.921139 + 2441: 26.358244,16.94006 - node: color: '#80C71F95' id: Grassa3 decals: - 2441: 22.247696,20.388498 + 2435: 22.247696,20.388498 - node: color: '#80C71FA4' id: Grassa3 decals: - 5078: -45.421764,40.669495 + 5072: -45.421764,40.669495 - node: color: '#80C71FA4' id: Grassa4 decals: - 5079: -45.40703,39.918022 + 5073: -45.40703,39.918022 - node: color: '#80C71FAB' id: Grassa4 decals: - 2419: 21.885628,21.303825 + 2413: 21.885628,21.303825 - node: color: '#80C71FB4' id: Grassa4 decals: - 2442: 21.992119,21.3464 - 2448: 27.124979,17.599947 + 2436: 21.992119,21.3464 + 2442: 27.124979,17.599947 - node: color: '#80C71FA4' id: Grassa5 decals: - 5080: -46.60071,39.873817 + 5074: -46.60071,39.873817 - node: color: '#80C71FAB' id: Grassa5 decals: - 2421: 26.209158,17.685093 - 2423: 21.566154,21.814705 + 2415: 26.209158,17.685093 + 2417: 21.566154,21.814705 - node: color: '#80C71FB4' id: Grassa5 decals: - 2443: 21.523558,20.409784 - 2444: 20.756824,21.835993 + 2437: 21.523558,20.409784 + 2438: 20.756824,21.835993 - node: color: '#80C71FA4' id: Grassb2 decals: - 5101: -46.541767,41.02313 - 5103: -44.994396,39.829613 + 5095: -46.541767,41.02313 + 5097: -44.994396,39.829613 - node: color: '#80C71FAB' id: Grassb2 decals: - 2415: 27.188873,17.578661 - 2416: 20.92721,20.111773 - 2417: 23.057028,20.239492 + 2409: 27.188873,17.578661 + 2410: 20.92721,20.111773 + 2411: 23.057028,20.239492 - node: color: '#80C71FAB' id: Grassb3 decals: - 2413: 21.821733,20.154345 - 2414: 26.954594,16.897486 + 2407: 21.821733,20.154345 + 2408: 26.954594,16.897486 - node: color: '#80C71FA4' id: Grassb4 decals: - 5097: -45.392292,40.65476 - 5100: -47.88282,40.743168 - 5102: -47.853344,39.991695 - 5104: -45.30387,40.919987 + 5091: -45.392292,40.65476 + 5094: -47.88282,40.743168 + 5096: -47.853344,39.991695 + 5098: -45.30387,40.919987 - node: color: '#80C71F95' id: Grassc1 decals: - 2438: 27.061085,17.770239 + 2432: 27.061085,17.770239 - node: color: '#80C71FA4' id: Grassc1 decals: - 5099: -46.52703,40.301125 + 5093: -46.52703,40.301125 - node: color: '#FFFFFF7F' id: Grassc1 decals: - 2367: 32.165768,40.007343 + 2361: 32.165768,40.007343 - node: color: '#80C71F95' id: Grassc2 decals: - 2437: 26.081367,17.770239 + 2431: 26.081367,17.770239 - node: color: '#80C71FA4' id: Grassc2 decals: - 5082: -46.29124,40.640026 + 5076: -46.29124,40.640026 - node: color: '#FFFFFF7F' id: Grassc2 decals: - 2366: 32.108974,40.943954 + 2360: 32.108974,40.943954 - node: color: '#80C71F95' id: Grassc3 decals: - 2436: 26.52863,16.897486 + 2430: 26.52863,16.897486 - node: color: '#80C71FA4' id: Grassc3 decals: - 5096: -47.70598,40.0359 + 5090: -47.70598,40.0359 - node: color: '#FFFFFF7F' id: Grassc3 decals: - 2364: 28.90005,40.85881 + 2358: 28.90005,40.85881 - node: color: '#80C71F95' id: Grassc4 decals: - 2433: 21.054998,20.45236 + 2427: 21.054998,20.45236 - node: color: '#FFFFFF7F' id: Grassc4 decals: - 2365: 28.87165,40.035725 + 2359: 28.87165,40.035725 - node: color: '#FFFFFFEF' id: Grassd1 decals: - 2370: 32.13737,39.978962 + 2364: 32.13737,39.978962 - node: color: '#FFFFFFEF' id: Grassd2 decals: - 2368: 28.90005,40.049915 + 2362: 28.90005,40.049915 - node: color: '#80C71FA4' id: Grassd3 decals: - 5098: -45.30387,39.976963 + 5092: -45.30387,39.976963 - node: color: '#FFFFFFEF' id: Grassd3 decals: - 2369: 28.942644,41.057484 + 2363: 28.942644,41.057484 - node: color: '#80C71F95' id: Grasse1 decals: - 2439: 26.379543,17.025208 - 2440: 21.331875,20.494932 + 2433: 26.379543,17.025208 + 2434: 21.331875,20.494932 - node: color: '#FFFFFFEF' id: Grasse1 decals: - 2371: 32.15157,40.943954 + 2365: 32.15157,40.943954 - node: color: '#80C71F95' id: Grasse2 decals: - 2434: 22.375484,21.729559 + 2428: 22.375484,21.729559 - node: color: '#80C71F95' id: Grasse3 decals: - 2435: 22.65236,20.175632 + 2429: 22.65236,20.175632 - node: color: '#5A5A6015' id: HalfTileOverlayGreyscale @@ -5405,8 +5545,8 @@ entities: color: '#D4D4D426' id: HalfTileOverlayGreyscale decals: - 5166: 19,-12 - 5167: 18,-12 + 5160: 19,-12 + 5161: 18,-12 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale180 @@ -5438,8 +5578,8 @@ entities: color: '#D4D4D40C' id: HalfTileOverlayGreyscale180 decals: - 5168: 18,-12 - 5169: 19,-12 + 5162: 18,-12 + 5163: 19,-12 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale270 @@ -5503,47 +5643,49 @@ entities: color: '#A46105C0' id: LoadingArea decals: - 2146: -36,5 + 2140: -36,5 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: LoadingArea decals: - 2048: -40,1 - 2049: -40,5 + 2042: -40,1 + 2043: -40,5 + 5233: -42,24 + 5234: -42,22 - node: angle: -1.5707963267948966 rad color: '#52B4E996' id: LoadingAreaGreyscale decals: - 2330: 28,6 + 2324: 28,6 - node: angle: 1.5707963267948966 rad color: '#52B4E996' id: LoadingAreaGreyscale decals: - 2329: 28,3 + 2323: 28,3 - node: color: '#334E6DC8' id: MiniTileCheckerAOverlay decals: - 1896: 17,-25 - 1897: 17,-24 - 1898: 17,-23 - 1925: 18,-18 - 1926: 19,-18 - 1927: 19,-17 - 1928: 18,-17 - 1929: 18,-16 - 1930: 19,-16 - 1931: 19,-15 - 1932: 18,-15 - 1933: 18,-14 - 2001: 4,46 - 2002: 5,46 - 2003: 5,47 - 2004: 4,47 - 5112: 19,-14 + 1890: 17,-25 + 1891: 17,-24 + 1892: 17,-23 + 1919: 18,-18 + 1920: 19,-18 + 1921: 19,-17 + 1922: 18,-17 + 1923: 18,-16 + 1924: 19,-16 + 1925: 19,-15 + 1926: 18,-15 + 1927: 18,-14 + 1995: 4,46 + 1996: 5,46 + 1997: 5,47 + 1998: 4,47 + 5106: 19,-14 - node: color: '#52B4E996' id: MiniTileCheckerAOverlay @@ -5583,10 +5725,10 @@ entities: color: '#EFB34196' id: MiniTileCheckerAOverlay decals: - 1793: 5,-26 - 1794: 5,-25 - 1795: 6,-25 - 1796: 6,-26 + 1787: 5,-26 + 1788: 5,-25 + 1789: 6,-25 + 1790: 6,-26 - node: color: '#FFFFFFA8' id: MiniTileCheckerAOverlay @@ -5730,8 +5872,8 @@ entities: 228: 5,68 229: 6,68 230: 7,68 - 2388: -2,67 - 2389: 1,68 + 2382: -2,67 + 2383: 1,68 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale @@ -5895,7 +6037,7 @@ entities: 303: -43,13 304: -44,13 305: -45,13 - 2084: -40,13 + 2078: -40,13 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale270 @@ -6126,10 +6268,10 @@ entities: 276: 22,38 277: 23,38 278: 24,38 - 1987: 0,49 - 1988: 0,48 - 5064: 14,38 - 5065: 15,38 + 1981: 0,49 + 1982: 0,48 + 5058: 14,38 + 5059: 15,38 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale90 @@ -6179,59 +6321,53 @@ entities: color: '#FFFFFFFF' id: Rock03 decals: - 2405: 22.524572,21.835993 + 2399: 22.524572,21.835993 - node: color: '#FFFFFFFF' id: SpaceStationSign1 decals: - 2331: -4,14 + 2325: -4,14 - node: color: '#FFFFFFFF' id: SpaceStationSign2 decals: - 2332: -3,14 + 2326: -3,14 - node: color: '#FFFFFFFF' id: SpaceStationSign3 decals: - 2333: -2,14 + 2327: -2,14 - node: color: '#FFFFFFFF' id: SpaceStationSign4 decals: - 2334: -1,14 + 2328: -1,14 - node: color: '#FFFFFFFF' id: SpaceStationSign5 decals: - 2335: 0,14 + 2329: 0,14 - node: color: '#FFFFFFFF' id: SpaceStationSign6 decals: - 2336: 1,14 + 2330: 1,14 - node: color: '#FFFFFFFF' id: SpaceStationSign7 decals: - 2337: 2,14 + 2331: 2,14 - node: angle: 1.5707963267948966 rad color: '#A46105C0' id: StandClear decals: - 2145: -36,5 + 2139: -36,5 - node: color: '#A4610696' id: StandClear decals: - 2147: -38,16 - 2148: -40,26 - 2149: -40,25 - 2150: -43,26 - 2151: -43,25 - 2152: -40,25 - 2153: -40,26 + 2141: -38,16 - node: color: '#FFFFFFFF' id: StandClear @@ -6241,34 +6377,34 @@ entities: 1296: -12,-28 1297: -12,-29 1298: -12,-30 - 1801: 8,-25 - 1802: 8,-21 - 1803: 11,-20 - 1804: 12,-20 - 1805: 11,-17 - 1806: 12,-17 - 1807: 10,-11 - 1808: 11,-11 - 1809: -12,-11 - 1810: -13,-11 - 1811: -13,-17 - 1812: -10,-19 - 1813: -13,-21 - 1814: 12,-39 - 1815: 6,-36 - 1816: 7,-36 - 1817: 6,-32 - 1818: 7,-32 - 1819: -20,-19 - 2021: -9,-17 - 2043: -42,9 - 2044: -38,10 - 2045: -36,3 - 2046: -42,-4 - 2047: -41,-4 - 2398: -20,-13 - 2399: -21,-13 - 5076: -40,12 + 1795: 8,-25 + 1796: 8,-21 + 1797: 11,-20 + 1798: 12,-20 + 1799: 11,-17 + 1800: 12,-17 + 1801: 10,-11 + 1802: 11,-11 + 1803: -12,-11 + 1804: -13,-11 + 1805: -13,-17 + 1806: -10,-19 + 1807: -13,-21 + 1808: 12,-39 + 1809: 6,-36 + 1810: 7,-36 + 1811: 6,-32 + 1812: 7,-32 + 1813: -20,-19 + 2015: -9,-17 + 2037: -42,9 + 2038: -38,10 + 2039: -36,3 + 2040: -42,-4 + 2041: -41,-4 + 2392: -20,-13 + 2393: -21,-13 + 5070: -40,12 - node: color: '#52B4E996' id: StandClearGreyscale @@ -6276,23 +6412,29 @@ entities: 456: -2,72 457: -1,72 458: 0,72 - 1997: 1,47 - 1998: 1,46 - 1999: 3,47 - 2000: 3,46 - 2017: 15,-24 - 2018: 14,-24 - 2019: 18,-11 - 2020: 19,-11 - 5174: 18,-13 - 5175: 19,-13 + 1991: 1,47 + 1992: 1,46 + 1993: 3,47 + 1994: 3,46 + 2011: 15,-24 + 2012: 14,-24 + 2013: 18,-11 + 2014: 19,-11 + 5168: 18,-13 + 5169: 19,-13 + - node: + color: '#A4610696' + id: StandClearGreyscale + decals: + 5245: -44,27 + 5246: -44,28 - node: color: '#D381C9FF' id: StandClearGreyscale decals: - 5182: -16,35 - 5183: -15,35 - 5184: -14,35 + 5176: -16,35 + 5177: -15,35 + 5178: -14,35 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 @@ -6340,34 +6482,34 @@ entities: id: WarnCornerNE decals: 1709: 8,-39 - 2374: -22,-16 - 5180: -14,35 + 2368: -22,-16 + 5174: -14,35 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: 1708: 5,-39 - 2373: -24,-16 - 5185: -16,35 - 5204: 13,-32 - 5212: 25,31 + 2367: -24,-16 + 5179: -16,35 + 5198: 13,-32 + 5206: 25,31 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: 1074: -14,32 1707: 8,-42 - 2372: -22,-18 + 2366: -22,-18 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: 1073: -16,32 1706: 5,-42 - 2375: -24,-18 - 5201: -7,-18 - 5203: 13,-34 - 5213: 27,34 + 2369: -24,-18 + 5195: -7,-18 + 5197: 13,-34 + 5207: 27,34 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE @@ -6382,7 +6524,7 @@ entities: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 2343: 19,-33 + 2337: 19,-33 - node: color: '#FFFFFFFF' id: WarnLineE @@ -6409,25 +6551,27 @@ entities: 1309: -12,-22 1704: 8,-40 1705: 8,-41 - 1985: 12,-18 - 1986: 12,-19 - 2070: -41,-5 - 2071: -41,-6 - 2072: -41,-7 - 2073: -41,-8 - 2376: -22,-17 - 5114: 20,-12 - 5115: 20,-13 - 5206: 23,34 - 5207: 23,33 - 5208: 23,32 - 5209: 23,31 + 1979: 12,-18 + 1980: 12,-19 + 2064: -41,-5 + 2065: -41,-6 + 2066: -41,-7 + 2067: -41,-8 + 2370: -22,-17 + 5108: 20,-12 + 5109: 20,-13 + 5200: 23,34 + 5201: 23,33 + 5202: 23,32 + 5203: 23,31 + 5247: -45,27 + 5248: -45,28 - node: color: '#FFA500FF' id: WarnLineN decals: - 5198: -28,-29 - 5199: 26,-29 + 5192: -28,-29 + 5193: 26,-29 - node: color: '#FFFFFFFF' id: WarnLineN @@ -6438,12 +6582,12 @@ entities: 1111: -6,32 1699: 6,-42 1700: 7,-42 - 2344: 18,-33 - 2351: 17,-33 - 2379: -23,-18 - 5202: -6,-18 - 5214: -29,49 - 5215: -28,49 + 2338: 18,-33 + 2345: 17,-33 + 2373: -23,-18 + 5196: -6,-18 + 5208: -29,49 + 5209: -28,49 - node: color: '#FFFFFFFF' id: WarnLineS @@ -6458,27 +6602,31 @@ entities: 1249: -15,28 1701: 5,-41 1702: 5,-40 - 1983: 11,-19 - 1984: 11,-18 - 2074: -42,-5 - 2075: -42,-6 - 2076: -42,-7 - 2077: -42,-8 - 2338: 19,-35 - 2339: 19,-34 - 2340: 19,-36 - 2341: 19,-37 - 2342: 19,-38 - 2378: -24,-17 - 5116: 17,-13 - 5117: 17,-12 - 5205: 13,-33 + 1977: 11,-19 + 1978: 11,-18 + 2068: -42,-5 + 2069: -42,-6 + 2070: -42,-7 + 2071: -42,-8 + 2332: 19,-35 + 2333: 19,-34 + 2334: 19,-36 + 2335: 19,-37 + 2336: 19,-38 + 2372: -24,-17 + 5110: 17,-13 + 5111: 17,-12 + 5199: 13,-33 + 5229: -43,27 + 5230: -43,28 + 5249: -46,28 + 5250: -46,27 - node: color: '#FFA500FF' id: WarnLineW decals: - 5197: -28,-29 - 5200: 26,-29 + 5191: -28,-29 + 5194: 26,-29 - node: color: '#FFFFFFFF' id: WarnLineW @@ -6489,16 +6637,16 @@ entities: 1216: -9,18 1217: -8,18 1703: 6,-39 - 2377: -23,-16 - 5181: -15,35 - 5210: 27,31 - 5211: 26,31 + 2371: -23,-16 + 5175: -15,35 + 5204: 27,31 + 5205: 26,31 - node: color: '#E7B795FF' id: WoodTrimThinCornerNe decals: - 2249: 43,51 - 2266: 46,48 + 2243: 43,51 + 2260: 46,48 - node: color: '#FFD381FF' id: WoodTrimThinCornerNe @@ -6514,9 +6662,9 @@ entities: color: '#E7B795FF' id: WoodTrimThinCornerNw decals: - 2250: 41,51 - 2255: 40,49 - 2267: 45,48 + 2244: 41,51 + 2249: 40,49 + 2261: 45,48 - node: color: '#FFD381FF' id: WoodTrimThinCornerNw @@ -6532,7 +6680,7 @@ entities: color: '#E7B795FF' id: WoodTrimThinCornerSe decals: - 2264: 46,46 + 2258: 46,46 - node: color: '#FFD381FF' id: WoodTrimThinCornerSe @@ -6542,12 +6690,12 @@ entities: color: '#FFFFFFFF' id: WoodTrimThinCornerSe decals: - 2300: 14,56 + 2294: 14,56 - node: color: '#E7B795FF' id: WoodTrimThinCornerSw decals: - 2258: 40,46 + 2252: 40,46 - node: color: '#FFD381FF' id: WoodTrimThinCornerSw @@ -6558,12 +6706,12 @@ entities: color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: - 2299: 7,56 + 2293: 7,56 - node: color: '#E7B795FF' id: WoodTrimThinInnerNe decals: - 2254: 43,46 + 2248: 43,46 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNe @@ -6573,8 +6721,8 @@ entities: color: '#E7B795FF' id: WoodTrimThinInnerNw decals: - 2253: 41,49 - 2269: 45,46 + 2247: 41,49 + 2263: 45,46 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNw @@ -6599,11 +6747,11 @@ entities: color: '#E7B795FF' id: WoodTrimThinLineE decals: - 2245: 43,47 - 2246: 43,48 - 2247: 43,49 - 2248: 43,50 - 2265: 46,47 + 2239: 43,47 + 2240: 43,48 + 2241: 43,49 + 2242: 43,50 + 2259: 46,47 - node: color: '#FFD381FF' id: WoodTrimThinLineE @@ -6628,8 +6776,8 @@ entities: color: '#E7B795FF' id: WoodTrimThinLineN decals: - 2251: 42,51 - 2270: 44,46 + 2245: 42,51 + 2264: 44,46 - node: color: '#FFD381FF' id: WoodTrimThinLineN @@ -6660,11 +6808,11 @@ entities: color: '#E7B795FF' id: WoodTrimThinLineS decals: - 2259: 41,46 - 2260: 42,46 - 2261: 43,46 - 2262: 44,46 - 2263: 45,46 + 2253: 41,46 + 2254: 42,46 + 2255: 43,46 + 2256: 44,46 + 2257: 45,46 - node: color: '#FFD381FF' id: WoodTrimThinLineS @@ -6681,20 +6829,20 @@ entities: 472: 4,74 473: 5,74 474: 6,74 - 2293: 8,56 - 2294: 9,56 - 2295: 10,56 - 2296: 11,56 - 2297: 12,56 - 2298: 13,56 + 2287: 8,56 + 2288: 9,56 + 2289: 10,56 + 2290: 11,56 + 2291: 12,56 + 2292: 13,56 - node: color: '#E7B795FF' id: WoodTrimThinLineW decals: - 2252: 41,50 - 2256: 40,48 - 2257: 40,47 - 2268: 45,47 + 2246: 41,50 + 2250: 40,48 + 2251: 40,47 + 2262: 45,47 - node: color: '#FFD381FF' id: WoodTrimThinLineW @@ -6719,17 +6867,17 @@ entities: color: '#80C71F76' id: grasssnowa2 decals: - 5107: -45.348083,39.888554 + 5101: -45.348083,39.888554 - node: color: '#80C71F76' id: grasssnowb1 decals: - 5106: -45.952293,40.610558 + 5100: -45.952293,40.610558 - node: color: '#80C71F76' id: grasssnowc1 decals: - 5105: -47.55861,40.00643 + 5099: -47.55861,40.00643 type: DecalGrid - version: 2 data: @@ -6793,8 +6941,7 @@ entities: -2,1: 0: 65535 -2,2: - 0: 65023 - 1: 512 + 0: 65535 -2,3: 0: 65535 -1,1: @@ -6814,8 +6961,7 @@ entities: 1,-3: 0: 65535 1,-2: - 0: 64511 - 2: 1024 + 0: 65535 1,-1: 0: 65535 2,-4: @@ -6833,8 +6979,7 @@ entities: 3,-2: 0: 65535 3,-1: - 0: 32767 - 1: 32768 + 0: 65535 0,1: 0: 65535 0,2: @@ -6842,8 +6987,7 @@ entities: 0,3: 0: 65535 1,0: - 0: 65533 - 1: 2 + 0: 65535 1,1: 0: 65535 1,2: @@ -6851,10 +6995,8 @@ entities: 1,3: 0: 65535 2,0: - 0: 13103 - 1: 16 - 3: 36032 - 4: 16384 + 0: 13119 + 1: 52416 2,1: 0: 65535 2,2: @@ -6862,30 +7004,24 @@ entities: 2,3: 0: 65535 3,0: - 0: 61031 - 1: 136 - 3: 4368 + 0: 61167 + 1: 4368 3,1: 0: 65535 3,2: - 0: 16383 - 1: 49152 + 0: 65535 3,3: 0: 65535 -4,4: 0: 65535 -4,5: - 0: 48127 - 1: 17408 + 0: 65535 -4,6: - 0: 61439 - 1: 4096 + 0: 65535 -4,7: - 1: 1 - 0: 65534 + 0: 65535 -3,4: - 0: 16383 - 1: 49152 + 0: 65535 -3,5: 0: 65535 -3,6: @@ -6893,8 +7029,7 @@ entities: -3,7: 0: 65535 -2,4: - 0: 61439 - 1: 4096 + 0: 65535 -2,5: 0: 65535 -2,6: @@ -6914,8 +7049,7 @@ entities: 0,5: 0: 65535 0,6: - 0: 65407 - 1: 128 + 0: 65535 0,7: 0: 65535 1,4: @@ -6923,8 +7057,7 @@ entities: 1,5: 0: 65535 1,6: - 0: 65519 - 1: 16 + 0: 65535 1,7: 0: 65535 2,4: @@ -6940,19 +7073,15 @@ entities: 3,5: 0: 65535 3,6: - 0: 61167 - 1: 4368 + 0: 65535 3,7: - 0: 65471 - 1: 64 + 0: 65535 4,0: - 0: 65023 - 1: 512 + 0: 65535 4,1: 0: 65535 4,2: - 0: 56799 - 1: 8736 + 0: 65535 4,3: 0: 65535 5,0: @@ -6968,8 +7097,7 @@ entities: 6,1: 0: 65535 6,2: - 0: 49151 - 1: 16384 + 0: 65535 6,3: 0: 65535 7,0: @@ -6995,14 +7123,11 @@ entities: 5,-2: 0: 65535 5,-1: - 0: 65487 - 1: 48 + 0: 65535 6,-4: - 0: 49151 - 1: 16384 + 0: 65535 6,-3: - 0: 65531 - 1: 4 + 0: 65535 6,-2: 0: 65535 6,-1: @@ -7014,16 +7139,13 @@ entities: 7,-2: 0: 65535 7,-1: - 0: 64991 - 1: 544 + 0: 65535 4,4: - 0: 48063 - 1: 17472 + 0: 65535 4,5: 0: 65535 4,6: - 0: 63487 - 1: 2048 + 0: 65535 4,7: 0: 65535 5,4: @@ -7039,11 +7161,9 @@ entities: 6,5: 0: 65535 6,6: - 0: 57343 - 1: 8192 + 0: 65535 6,7: - 0: 65501 - 1: 34 + 0: 65535 7,4: 0: 65535 7,5: @@ -7053,18 +7173,15 @@ entities: 7,7: 0: 65535 -8,-4: - 0: 20479 - 1: 32768 - 3: 12288 + 0: 53247 + 1: 12288 -8,-3: - 3: 3 - 0: 65012 - 1: 520 + 1: 3 + 0: 65532 -8,-2: 0: 65535 -8,-1: - 0: 30719 - 1: 34816 + 0: 65535 -7,-4: 0: 65535 -7,-3: @@ -7072,8 +7189,7 @@ entities: -7,-2: 0: 65535 -7,-1: - 0: 65527 - 1: 8 + 0: 65535 -6,-4: 0: 65535 -6,-3: @@ -7081,8 +7197,7 @@ entities: -6,-2: 0: 65535 -6,-1: - 1: 1 - 0: 65534 + 0: 65535 -5,-4: 0: 65535 -5,-3: @@ -7092,11 +7207,9 @@ entities: -5,-1: 0: 65535 -8,4: - 0: 21887 - 1: 43648 + 0: 65535 -8,5: - 0: 63359 - 1: 2176 + 0: 65535 -8,6: 0: 65535 -8,7: @@ -7104,15 +7217,13 @@ entities: -7,4: 0: 65535 -7,5: - 0: 64511 - 1: 1024 + 0: 65535 -7,6: 0: 65535 -7,7: 0: 65535 -6,4: - 0: 65407 - 1: 128 + 0: 65535 -6,5: 0: 65535 -6,6: @@ -7122,15 +7233,13 @@ entities: -5,4: 0: 65535 -5,5: - 0: 61439 - 1: 4096 + 0: 65535 -5,6: 0: 65535 -5,7: 0: 65535 -8,0: - 0: 65527 - 1: 8 + 0: 65535 -8,1: 0: 65535 -8,2: @@ -7146,11 +7255,9 @@ entities: -7,3: 0: 65535 -6,0: - 0: 65471 - 1: 64 + 0: 65535 -6,1: - 0: 65407 - 1: 128 + 0: 65535 -6,2: 0: 65535 -6,3: @@ -7160,13 +7267,11 @@ entities: -5,1: 0: 65535 -5,2: - 0: 30591 - 1: 34944 + 0: 65535 -5,3: 0: 65535 8,-4: - 0: 40959 - 1: 24576 + 0: 65535 8,-3: 0: 65535 8,-2: @@ -7174,8 +7279,7 @@ entities: 8,-1: 0: 65535 9,-4: - 0: 65527 - 5: 8 + 0: 65535 9,-3: 0: 65535 9,-2: @@ -7237,8 +7341,7 @@ entities: -11,-3: 0: 65535 -11,-2: - 0: 65279 - 1: 256 + 0: 65535 -11,-1: 0: 65535 -11,-4: @@ -7248,24 +7351,19 @@ entities: -10,-3: 0: 65535 -10,-2: - 0: 57341 - 1: 8194 + 0: 65535 -10,-1: + 0: 65535 + -9,-4: 0: 32767 1: 32768 - -9,-4: - 0: 24575 - 1: 8192 - 3: 32768 -9,-3: - 0: 65493 - 1: 34 - 4: 8 + 0: 65527 + 1: 8 -9,-2: 0: 65535 -9,-1: - 0: 61439 - 1: 4096 + 0: 65535 -12,2: 0: 63624 -12,3: @@ -7279,8 +7377,7 @@ entities: -11,1: 0: 65535 -11,2: - 0: 65519 - 1: 16 + 0: 65535 -11,3: 0: 65535 -10,0: @@ -7320,16 +7417,13 @@ entities: -10,5: 0: 65535 -10,6: - 0: 30591 - 1: 34944 + 0: 65535 -10,7: 0: 65535 -9,4: - 0: 56831 - 1: 8704 + 0: 65535 -9,5: - 0: 65533 - 1: 2 + 0: 65535 -9,6: 0: 65535 -9,7: @@ -7337,8 +7431,7 @@ entities: 12,2: 0: 65280 12,3: - 1: 3 - 0: 65532 + 0: 65535 13,2: 0: 4096 13,3: @@ -7370,8 +7463,7 @@ entities: 10,10: 0: 65535 10,11: - 0: 64505 - 1: 1030 + 0: 65535 11,8: 0: 65520 11,9: @@ -7379,8 +7471,7 @@ entities: 11,10: 0: 65535 11,11: - 0: 65523 - 1: 12 + 0: 65535 12,8: 0: 63344 12,9: @@ -7398,34 +7489,27 @@ entities: 13,11: 0: 4369 4,8: - 0: 63095 - 1: 2440 + 0: 65535 4,9: 0: 65535 4,10: - 0: 40959 - 1: 24576 + 0: 65535 4,11: - 0: 57343 - 1: 8192 + 0: 65535 5,8: - 1: 273 - 0: 65262 + 0: 65535 5,9: 0: 65535 5,10: - 0: 8191 - 1: 57344 + 0: 65535 5,11: - 0: 61183 - 1: 4352 + 0: 65535 6,8: 0: 65535 6,9: 0: 65535 6,10: - 0: 65399 - 1: 136 + 0: 65535 6,11: 0: 65535 7,8: @@ -7437,14 +7521,11 @@ entities: 7,11: 0: 65535 12,-4: - 0: 32767 - 5: 32768 + 0: 65535 12,-3: - 0: 65527 - 5: 8 + 0: 65535 12,-2: - 0: 30671 - 1: 48 + 0: 30719 13,-3: 0: 4368 13,-2: @@ -7464,8 +7545,7 @@ entities: -13,2: 0: 61440 -13,3: - 0: 65529 - 1: 6 + 0: 65535 -14,4: 0: 2252 -13,4: @@ -7475,8 +7555,7 @@ entities: 0,9: 0: 65535 0,10: - 0: 65523 - 1: 12 + 0: 65535 0,11: 0: 65535 1,8: @@ -7484,8 +7563,7 @@ entities: 1,9: 0: 65535 1,10: - 1: 1 - 0: 65534 + 0: 65535 1,11: 0: 65535 2,8: @@ -7509,32 +7587,25 @@ entities: -4,9: 0: 65535 -4,10: - 1: 1281 - 0: 64254 + 0: 65535 -4,11: - 0: 65533 - 1: 2 + 0: 65535 -3,8: - 0: 64511 - 1: 1024 + 0: 65535 -3,9: 0: 65535 -3,10: - 0: 65023 - 1: 512 + 0: 65535 -3,11: - 1: 9 - 0: 65526 + 0: 65535 -2,8: 0: 65535 -2,9: 0: 65535 -2,10: - 0: 63231 - 1: 2304 + 0: 65535 -2,11: - 0: 65531 - 1: 4 + 0: 65535 -1,8: 0: 65535 -1,9: @@ -7552,8 +7623,7 @@ entities: -8,11: 0: 65535 -7,8: - 0: 63351 - 1: 2184 + 0: 65535 -7,9: 0: 65535 -7,10: @@ -7565,8 +7635,7 @@ entities: -6,9: 0: 65535 -6,10: - 1: 17 - 0: 65518 + 0: 65535 -6,11: 0: 65535 -5,8: @@ -7574,8 +7643,7 @@ entities: -5,9: 0: 65535 -5,10: - 0: 62711 - 1: 2824 + 0: 65535 -5,11: 0: 65535 -12,8: @@ -7585,8 +7653,7 @@ entities: -12,10: 0: 65535 -12,11: - 1: 2051 - 0: 63484 + 0: 65535 -11,8: 0: 65535 -11,9: @@ -7594,22 +7661,17 @@ entities: -11,10: 0: 65535 -11,11: - 0: 64991 - 1: 544 + 0: 65535 -10,8: - 0: 63487 - 1: 2048 + 0: 65535 -10,9: 0: 65535 -10,10: - 0: 64511 - 1: 1024 + 0: 65535 -10,11: - 0: 64511 - 1: 1024 + 0: 65535 -9,8: - 0: 64767 - 1: 768 + 0: 65535 -9,9: 0: 65535 -9,10: @@ -7632,28 +7694,26 @@ entities: 0: 57343 0,-8: 0: 65279 - 5: 256 + 2: 256 0,-7: - 6: 1 + 3: 1 0: 65278 - 5: 256 + 2: 256 0,-6: - 5: 1 + 2: 1 0: 65278 - 7: 256 + 4: 256 0,-5: - 8: 1 + 5: 1 0: 65534 1,-8: 0: 65535 1,-7: 0: 65535 1,-6: - 0: 61435 - 1: 4100 + 0: 65535 1,-5: - 1: 1793 - 0: 63742 + 0: 65535 2,-8: 0: 65535 2,-7: @@ -7669,18 +7729,15 @@ entities: 3,-6: 0: 65535 3,-5: - 0: 65503 - 1: 32 + 0: 65535 -4,-8: 0: 65535 -4,-7: 0: 65535 -4,-6: - 1: 273 - 0: 65262 + 0: 65535 -4,-5: - 0: 63999 - 1: 1536 + 0: 65535 -3,-8: 0: 65535 -3,-7: @@ -7696,22 +7753,21 @@ entities: -2,-6: 0: 65535 -2,-5: - 0: 64511 - 1: 1024 + 0: 65535 -1,-8: 0: 62463 - 5: 3072 + 2: 3072 -1,-7: 0: 62451 - 6: 12 - 5: 3072 + 3: 12 + 2: 3072 -1,-6: 0: 62451 - 5: 12 - 7: 3072 + 2: 12 + 4: 3072 -1,-5: 0: 65523 - 8: 12 + 5: 12 -12,12: 0: 61439 -12,13: @@ -7725,8 +7781,7 @@ entities: -10,12: 0: 65535 -10,13: - 0: 49151 - 1: 16384 + 0: 65535 -10,14: 0: 45055 -10,15: @@ -7752,47 +7807,37 @@ entities: -8,15: 0: 3871 -7,12: - 0: 65519 - 1: 16 + 0: 65535 -7,13: - 0: 65531 - 1: 4 + 0: 65535 -7,14: - 0: 64511 - 1: 1024 + 0: 65535 -7,15: 0: 3855 -6,12: 0: 65535 -6,13: - 0: 65023 - 1: 512 + 0: 65535 -6,14: - 0: 64511 - 1: 1024 + 0: 65535 -6,15: 0: 53199 -5,12: 0: 65535 -5,13: - 0: 61439 - 1: 4096 + 0: 65535 -5,14: - 1: 1 - 0: 65534 + 0: 65535 -5,15: - 0: 65527 - 1: 8 + 0: 65535 -4,12: - 0: 64511 - 1: 1024 + 0: 65535 -4,13: 0: 65535 -4,14: 0: 65535 -4,15: - 0: 32767 - 1: 32768 + 0: 65535 -3,12: 0: 65535 -3,13: @@ -7806,11 +7851,9 @@ entities: -2,13: 0: 65535 -2,14: - 0: 65467 - 1: 68 + 0: 65535 -2,15: - 0: 63487 - 9: 2048 + 0: 65535 -1,12: 0: 65535 -1,13: @@ -7834,8 +7877,7 @@ entities: 1,14: 0: 65535 1,15: - 0: 65407 - 1: 128 + 0: 65535 2,12: 0: 65535 2,13: @@ -7859,11 +7901,9 @@ entities: 4,14: 0: 65535 4,15: - 1: 1 - 0: 65534 + 0: 65535 5,12: - 1: 1 - 0: 65534 + 0: 65535 5,13: 0: 65535 5,14: @@ -7889,18 +7929,15 @@ entities: 8,12: 0: 65535 8,13: - 0: 61425 - 1: 4110 + 0: 65535 8,14: - 0: 36861 - 10: 2 + 0: 36863 8,15: 0: 34959 9,12: 0: 65535 9,13: - 0: 49151 - 1: 16384 + 0: 65535 9,14: 0: 65535 9,15: @@ -7930,16 +7967,13 @@ entities: -3,18: 0: 61423 -3,19: - 0: 65134 - 1: 128 + 0: 65262 -2,16: 0: 65535 -2,17: - 0: 64443 - 1: 1092 + 0: 65535 -2,18: - 1: 1 - 0: 65534 + 0: 65535 -2,19: 0: 65535 -1,16: @@ -7973,11 +8007,9 @@ entities: 1,18: 0: 65535 1,19: - 0: 65527 - 1: 8 + 0: 65535 2,16: - 1: 2055 - 0: 63480 + 0: 65535 2,17: 0: 65535 2,18: @@ -7985,8 +8017,7 @@ entities: 2,19: 0: 64443 3,16: - 0: 32511 - 1: 256 + 0: 32767 3,17: 0: 30591 3,18: @@ -8032,11 +8063,9 @@ entities: -7,-5: 0: 65535 -7,-8: - 0: 64698 - 5: 768 + 0: 65466 -7,-7: - 0: 64767 - 1: 768 + 0: 65535 -6,-8: 0: 65535 -6,-7: @@ -8054,8 +8083,7 @@ entities: -5,-5: 0: 65535 4,-8: - 0: 65311 - 1: 224 + 0: 65535 4,-7: 0: 65535 4,-6: @@ -8067,22 +8095,17 @@ entities: 5,-7: 0: 65535 5,-6: - 0: 63487 - 1: 2048 + 0: 65535 5,-5: 0: 65535 6,-6: - 0: 65503 - 1: 32 + 0: 65535 6,-5: - 0: 8191 - 1: 57344 + 0: 65535 7,-6: - 0: 61439 - 1: 4096 + 0: 65535 7,-5: - 0: 61439 - 1: 4096 + 0: 65535 8,-5: 0: 65535 4,-11: @@ -8096,34 +8119,31 @@ entities: 5,-9: 0: 64443 0,-12: - 5: 13073 + 2: 13073 0: 52462 0,-11: - 5: 4355 + 2: 4355 0: 61180 0,-10: - 5: 1 + 2: 1 0: 65534 0,-9: - 5: 273 + 2: 273 0: 65262 1,-12: 0: 65535 1,-11: 0: 65535 1,-10: - 0: 53247 - 1: 12288 + 0: 65535 1,-9: 0: 65535 2,-12: 0: 65535 2,-11: - 0: 32767 - 1: 32768 + 0: 65535 2,-10: - 0: 53239 - 1: 12296 + 0: 65535 2,-9: 0: 65535 3,-12: @@ -8131,21 +8151,17 @@ entities: 3,-11: 0: 65535 3,-10: - 0: 65533 - 1: 2 + 0: 65535 3,-9: 0: 65535 -4,-12: 0: 65535 -4,-11: - 0: 56831 - 1: 8704 + 0: 65535 -4,-10: - 0: 65533 - 1: 2 + 0: 65535 -4,-9: - 1: 17 - 0: 65518 + 0: 65535 -3,-12: 0: 65535 -3,-11: @@ -8164,16 +8180,16 @@ entities: 0: 65535 -1,-12: 0: 4403 - 5: 61132 + 2: 61132 -1,-11: 0: 13169 - 5: 52366 + 2: 52366 -1,-10: 0: 65523 - 5: 12 + 2: 12 -1,-9: 0: 62259 - 5: 3276 + 2: 3276 -6,-10: 0: 61167 -6,-9: @@ -8181,8 +8197,7 @@ entities: -5,-10: 0: 65535 -5,-9: - 0: 65503 - 1: 32 + 0: 65535 -5,-11: 0: 65530 -5,-12: @@ -8207,9 +8222,9 @@ entities: 0: 65535 -1,-13: 0: 16320 - 5: 49152 + 2: 49152 0,-13: - 5: 4096 + 2: 4096 0: 61336 0,-15: 0: 34952 @@ -8256,13 +8271,11 @@ entities: -10,-6: 0: 61166 -9,-6: - 0: 65023 - 1: 512 + 0: 65535 -9,-7: 0: 65521 -8,-7: - 0: 63487 - 1: 2048 + 0: 65535 8,-6: 0: 65535 9,-6: @@ -8286,11 +8299,9 @@ entities: -9,-8: 0: 61440 -8,-8: - 0: 61937 - 5: 2048 + 0: 63985 6,-8: - 0: 61922 - 5: 3584 + 0: 65506 6,-7: 0: 65535 7,-8: @@ -8320,8 +8331,7 @@ entities: -6,-11: 0: 41696 13,-4: - 0: 17 - 5: 256 + 0: 273 -11,15: 0: 34952 -8,17: @@ -8484,36 +8494,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 14.840918 - - 55.830124 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 235 moles: @@ -8529,21 +8509,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 235 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 293.15 moles: @@ -8604,36 +8569,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.14996 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 18.472576 - - 69.49208 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 chunkSize: 4 type: GridAtmosphere - type: GasTileOverlay @@ -8671,6 +8606,8 @@ entities: - parallax: AspidParallax type: Parallax - type: LoadedMap + - type: GridTree + - type: MovedGrids - uid: 8756 components: - type: MetaData @@ -8680,16 +8617,16 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAHwAAAR8AAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAASgAAAB8AAAIfAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAEoAAAMfAAADSgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAHwAAAx8AAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAbAAACHwAAABsAAAIfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAFgAAAF4AAAAfAAADHwAAAQ== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAIAAAASAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAASwAAACAAAAIgAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAEsAAAMgAAADSwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAIAAAAyAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAcAAACIAAAABwAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAAF8AAAAgAAADIAAAAQ== -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAGwAAAx8AAAAbAAACHwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAB8AAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAABYAAAMWAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAWAAADFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAHAAAAyAAAAAcAAACIAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAACAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAABcAAAMXAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAADFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,0: ind: 0,0 - tiles: GwAAAx8AAAAbAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAABXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAA14AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: HAAAAyAAAAAcAAACXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAABXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAA18AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAFeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAABSgAAAV4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAEoAAANeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAFeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAACHwAAABsAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAA14AAAAWAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAFfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAABSwAAAV8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAEsAAANfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAFfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAACIAAAABwAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAA18AAAAXAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - type: Broadphase - angularDamping: 0.05 @@ -8869,6 +8806,8 @@ entities: - pos: 22.399736,-23.44135 parent: 1 type: Transform + - nextSound: 1111.2782265 + type: EmitSoundOnCollide - uid: 13453 components: - pos: -46.782776,46.69757 @@ -10899,98 +10838,18 @@ entities: - pos: -41.5,4.5 parent: 1 type: Transform - - uid: 9366 - components: - - pos: -39.5,25.5 - parent: 1 - type: Transform - - links: - - 9368 - - 9369 - type: DeviceLinkSink - - linkedPorts: - 9369: - - DoorStatus: Close - - DoorStatus: AutoClose - - DoorStatus: DoorBolt - 9368: - - DoorStatus: Close - - DoorStatus: AutoClose - - DoorStatus: DoorBolt - registeredSinks: - DoorStatus: - - 9369 - - 9368 - type: DeviceLinkSource - - uid: 9367 + - uid: 7814 components: - - pos: -39.5,26.5 - parent: 1 - type: Transform - - links: - - 9368 - - 9369 - type: DeviceLinkSink - - linkedPorts: - 9369: - - DoorStatus: AutoClose - - DoorStatus: Close - - DoorStatus: DoorBolt - 9368: - - DoorStatus: Close - - DoorStatus: AutoClose - - DoorStatus: DoorBolt - registeredSinks: - DoorStatus: - - 9369 - - 9368 - type: DeviceLinkSource - - uid: 9368 - components: - - pos: -42.5,25.5 + - rot: -1.5707963267948966 rad + pos: -43.5,28.5 parent: 1 type: Transform - - links: - - 9367 - - 9366 - type: DeviceLinkSink - - linkedPorts: - 9367: - - DoorStatus: Close - - DoorStatus: AutoClose - - DoorStatus: DoorBolt - 9366: - - DoorStatus: AutoClose - - DoorStatus: DoorBolt - - DoorStatus: Close - registeredSinks: - DoorStatus: - - 9367 - - 9366 - type: DeviceLinkSource - - uid: 9369 + - uid: 7917 components: - - pos: -42.5,26.5 + - rot: -1.5707963267948966 rad + pos: -43.5,27.5 parent: 1 type: Transform - - links: - - 9367 - - 9366 - type: DeviceLinkSink - - linkedPorts: - 9367: - - DoorStatus: Close - - DoorStatus: AutoClose - - DoorStatus: DoorBolt - 9366: - - DoorStatus: Close - - DoorStatus: AutoClose - - DoorStatus: DoorBolt - registeredSinks: - DoorStatus: - - 9367 - - 9366 - type: DeviceLinkSource - proto: AirlockExternalGlassEngineeringLocked entities: - uid: 7150 @@ -11519,6 +11378,18 @@ entities: type: Transform - proto: AirlockGlassShuttle entities: + - uid: 1771 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,28.5 + parent: 1 + type: Transform + - uid: 1772 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,27.5 + parent: 1 + type: Transform - uid: 2030 components: - rot: 1.5707963267948966 rad @@ -13014,6 +12885,16 @@ entities: - pos: 26.5,-29.5 parent: 1 type: Transform + - uid: 7936 + components: + - pos: -46.5,27.5 + parent: 1 + type: Transform + - uid: 7937 + components: + - pos: -46.5,28.5 + parent: 1 + type: Transform - uid: 8868 components: - rot: 1.5707963267948966 rad @@ -13993,6 +13874,22 @@ entities: type: Transform - proto: BlastDoor entities: + - uid: 4135 + components: + - pos: -43.5,24.5 + parent: 1 + type: Transform + - links: + - 7826 + type: DeviceLinkSink + - uid: 7923 + components: + - pos: -43.5,22.5 + parent: 1 + type: Transform + - links: + - 7826 + type: DeviceLinkSink - uid: 9406 components: - pos: -19.5,-15.5 @@ -14204,7 +14101,7 @@ entities: - pos: -11.5,-26.5 parent: 1 type: Transform - - SecondsUntilStateChange: -55160.566 + - SecondsUntilStateChange: -60896.523 state: Closing type: Door - links: @@ -14222,7 +14119,7 @@ entities: - pos: -11.5,-27.5 parent: 1 type: Transform - - SecondsUntilStateChange: -55160.566 + - SecondsUntilStateChange: -60896.523 state: Closing type: Door - links: @@ -14240,7 +14137,7 @@ entities: - pos: -11.5,-28.5 parent: 1 type: Transform - - SecondsUntilStateChange: -55160.566 + - SecondsUntilStateChange: -60896.523 state: Closing type: Door - links: @@ -14258,7 +14155,7 @@ entities: - pos: -11.5,-29.5 parent: 1 type: Transform - - SecondsUntilStateChange: -55160.566 + - SecondsUntilStateChange: -60896.523 state: Closing type: Door - links: @@ -14324,7 +14221,7 @@ entities: - pos: 19.5,-38.5 parent: 1 type: Transform - - SecondsUntilStateChange: -54153.816 + - SecondsUntilStateChange: -59889.773 state: Closing type: Door - inputs: @@ -14339,7 +14236,7 @@ entities: - pos: 14.5,-23.5 parent: 1 type: Transform - - SecondsUntilStateChange: -54176.49 + - SecondsUntilStateChange: -59912.445 state: Closing type: Door - inputs: @@ -14421,6 +14318,8 @@ entities: - pos: 16.457653,27.693125 parent: 1 type: Transform + - nextSound: 397.7167552 + type: EmitSoundOnCollide - proto: Bola entities: - uid: 8195 @@ -14646,6 +14545,8 @@ entities: type: MetaData - parent: 7683 type: Transform + - nextSound: 223.5037006 + type: EmitSoundOnCollide - canCollide: False type: Physics - type: InsideEntityStorage @@ -14655,6 +14556,8 @@ entities: type: MetaData - parent: 7683 type: Transform + - nextSound: 223.9165887 + type: EmitSoundOnCollide - canCollide: False type: Physics - type: InsideEntityStorage @@ -14986,11 +14889,13 @@ entities: type: Transform - proto: Brutepack entities: - - uid: 9385 + - uid: 7815 components: - - pos: -38.034355,30.71766 + - pos: -42.603355,21.659529 parent: 1 type: Transform + - nextSound: 1432.4179368 + type: EmitSoundOnCollide - proto: Bucket entities: - uid: 9006 @@ -15180,6 +15085,169 @@ entities: type: Transform - fixtures: {} type: Fixtures + - uid: 7938 + components: + - pos: -42.5,24.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 7939 + components: + - pos: -42.5,23.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 7940 + components: + - pos: -42.5,22.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 7941 + components: + - pos: -43.5,22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 7942 + components: + - pos: -44.5,22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 7943 + components: + - pos: -45.5,22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 7944 + components: + - pos: -45.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 8009 + components: + - pos: -45.5,20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 8140 + components: + - pos: -43.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 8141 + components: + - pos: -44.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 8142 + components: + - pos: -45.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 8143 + components: + - pos: -42.5,27.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 8144 + components: + - pos: -43.5,27.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 8146 + components: + - pos: -44.5,27.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 8151 + components: + - pos: -45.5,27.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 8152 + components: + - pos: -45.5,28.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 8156 + components: + - pos: -42.5,26.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 8157 + components: + - pos: -42.5,28.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 8158 + components: + - pos: -41.5,28.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 8159 + components: + - pos: -40.5,28.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 8160 + components: + - pos: -39.5,28.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures - uid: 8830 components: - pos: 1.5,-5.5 @@ -28091,8 +28159,6 @@ entities: - pos: -39.5,25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 12331 @@ -28100,8 +28166,6 @@ entities: - pos: -40.5,25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 12332 @@ -28109,8 +28173,6 @@ entities: - pos: -41.5,25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 12333 @@ -28118,35 +28180,6 @@ entities: - pos: -42.5,25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 12334 - components: - - pos: -43.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 12335 - components: - - pos: -44.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 12336 - components: - - pos: -45.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 12337 @@ -36929,11 +36962,20 @@ entities: type: Fixtures - proto: CableApcStack entities: + - uid: 1766 + components: + - pos: -42.50212,21.737055 + parent: 1 + type: Transform + - nextSound: 3203.4095693 + type: EmitSoundOnCollide - uid: 7462 components: - pos: 22.493486,-23.113226 parent: 1 type: Transform + - nextSound: 1127.0789323 + type: EmitSoundOnCollide - uid: 8668 components: - pos: -6.657152,21.752699 @@ -36949,11 +36991,6 @@ entities: - pos: 13.59571,-22.378843 parent: 1 type: Transform - - uid: 9377 - components: - - pos: -39.617687,21.559856 - parent: 1 - type: Transform - proto: CableApcStack1 entities: - uid: 9815 @@ -54739,6 +54776,8 @@ entities: - pos: 9.689535,34.47762 parent: 1 type: Transform + - nextSound: 410.3326722 + type: EmitSoundOnCollide - proto: CaptainIDCard entities: - uid: 9149 @@ -55514,6 +55553,18 @@ entities: - pos: -38.5,75.5 parent: 1 type: Transform + - uid: 1785 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,20.5 + parent: 1 + type: Transform + - uid: 1987 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,21.5 + parent: 1 + type: Transform - uid: 2147 components: - pos: 7.5,-38.5 @@ -56245,42 +56296,6 @@ entities: pos: -9.5,-48.5 parent: 1 type: Transform - - uid: 4114 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,26.5 - parent: 1 - type: Transform - - uid: 4115 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,25.5 - parent: 1 - type: Transform - - uid: 4116 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,26.5 - parent: 1 - type: Transform - - uid: 4117 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,25.5 - parent: 1 - type: Transform - - uid: 4118 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,26.5 - parent: 1 - type: Transform - - uid: 4119 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,25.5 - parent: 1 - type: Transform - uid: 4164 components: - pos: -5.5,-15.5 @@ -58237,6 +58252,12 @@ entities: - pos: 46.5,69.5 parent: 1 type: Transform + - uid: 7715 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,20.5 + parent: 1 + type: Transform - uid: 7730 components: - pos: -38.5,72.5 @@ -58477,6 +58498,22 @@ entities: - pos: -29.5,69.5 parent: 1 type: Transform + - uid: 7803 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,21.5 + parent: 1 + type: Transform + - uid: 8153 + components: + - pos: -45.5,25.5 + parent: 1 + type: Transform + - uid: 8162 + components: + - pos: -44.5,25.5 + parent: 1 + type: Transform - uid: 8573 components: - rot: -1.5707963267948966 rad @@ -59752,6 +59789,12 @@ entities: pos: 4.5,63.5 parent: 1 type: Transform + - uid: 7932 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,25.5 + parent: 1 + type: Transform - uid: 8133 components: - rot: 1.5707963267948966 rad @@ -60551,6 +60594,8 @@ entities: - pos: 9.522836,34.653053 parent: 1 type: Transform + - nextSound: 375.884542 + type: EmitSoundOnCollide - proto: CloningPodMachineCircuitboard entities: - uid: 6384 @@ -60558,6 +60603,8 @@ entities: - pos: 16.560993,33.373604 parent: 1 type: Transform + - nextSound: 380.0594577 + type: EmitSoundOnCollide - proto: ClosetBase entities: - uid: 9867 @@ -63433,6 +63480,8 @@ entities: - pos: -42.38712,-12.466305 parent: 1 type: Transform + - nextSound: 671.3996034 + type: EmitSoundOnCollide - proto: ClothingBackpackSatchelLeather entities: - uid: 18320 @@ -63471,6 +63520,8 @@ entities: - pos: -39.31486,-19.325691 parent: 1 type: Transform + - nextSound: 682.4405545 + type: EmitSoundOnCollide - proto: ClothingBeltPlant entities: - uid: 4242 @@ -63534,6 +63585,8 @@ entities: - pos: -0.6837692,2.6104674 parent: 8756 type: Transform + - nextSound: 643.3781692 + type: EmitSoundOnCollide - proto: ClothingEyesGlassesMeson entities: - uid: 8082 @@ -63598,6 +63651,8 @@ entities: - pos: 18.631903,31.596643 parent: 1 type: Transform + - nextSound: 3363.1792541 + type: EmitSoundOnCollide - proto: ClothingHandsGlovesLeather entities: - uid: 4235 @@ -63696,6 +63751,8 @@ entities: - pos: 10.540607,19.673868 parent: 1 type: Transform + - nextSound: 3723.120875 + type: EmitSoundOnCollide - proto: ClothingHeadHatPumpkin entities: - uid: 4237 @@ -63759,11 +63816,15 @@ entities: - pos: -19.491697,40.80205 parent: 1 type: Transform + - nextSound: 552.6830059 + type: EmitSoundOnCollide - uid: 7799 components: - pos: -19.335447,40.598927 parent: 1 type: Transform + - nextSound: 553.5325137 + type: EmitSoundOnCollide - proto: ClothingHeadHelmetSyndicate entities: - uid: 13306 @@ -63976,11 +64037,15 @@ entities: - pos: -19.444822,40.4583 parent: 1 type: Transform + - nextSound: 550.6448089 + type: EmitSoundOnCollide - uid: 7714 components: - pos: -19.632322,40.661427 parent: 1 type: Transform + - nextSound: 549.5251859 + type: EmitSoundOnCollide - proto: ClothingOuterCoatInspector entities: - uid: 10937 @@ -64028,6 +64093,8 @@ entities: - pos: -24.647196,-32.421364 parent: 1 type: Transform + - nextSound: 689.5904272 + type: EmitSoundOnCollide - uid: 17750 components: - pos: 20.426132,60.536144 @@ -64054,6 +64121,8 @@ entities: - pos: 25.694765,31.717653 parent: 1 type: Transform + - nextSound: 1129.9305457 + type: EmitSoundOnCollide - uid: 8706 components: - pos: -13.482979,-24.072556 @@ -64066,6 +64135,8 @@ entities: - pos: -42.277744,-12.73193 parent: 1 type: Transform + - nextSound: 674.1995128 + type: EmitSoundOnCollide - proto: ClothingShoesBootsPerformer entities: - uid: 6625 @@ -64189,6 +64260,8 @@ entities: - pos: -0.5118942,2.4542174 parent: 8756 type: Transform + - nextSound: 646.7782025 + type: EmitSoundOnCollide - proto: ClothingUniformJumpsuitSecBlue entities: - uid: 8150 @@ -64542,15 +64615,20 @@ entities: type: Transform - proto: ComputerRadar entities: - - uid: 4113 + - uid: 4257 components: - - rot: 1.5707963267948966 rad - pos: -45.5,24.5 + - pos: -1.5,80.5 parent: 1 type: Transform - - uid: 4257 + - uid: 7798 components: - - pos: -1.5,80.5 + - pos: -39.5,18.5 + parent: 1 + type: Transform + - uid: 7934 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,21.5 parent: 1 type: Transform - proto: ComputerResearchAndDevelopment @@ -64572,6 +64650,14 @@ entities: pos: -23.5,21.5 parent: 1 type: Transform +- proto: ComputerSalvageExpedition + entities: + - uid: 1781 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,25.5 + parent: 1 + type: Transform - proto: ComputerShuttle entities: - uid: 8887 @@ -64587,6 +64673,13 @@ entities: pos: -43.5,-0.5 parent: 1 type: Transform +- proto: ComputerShuttleSalvage + entities: + - uid: 4370 + components: + - pos: -41.5,26.5 + parent: 1 + type: Transform - proto: ComputerSolarControl entities: - uid: 4194 @@ -64711,6 +64804,16 @@ entities: type: Transform - proto: ConveyorBelt entities: + - uid: 1767 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,24.5 + parent: 1 + type: Transform + - links: + - 7918 + - 7808 + type: DeviceLinkSink - uid: 3830 components: - rot: -1.5707963267948966 rad @@ -64873,6 +64976,46 @@ entities: - port: Middle uid: 4007 type: SignalReceiver + - uid: 4110 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,22.5 + parent: 1 + type: Transform + - links: + - 7918 + - 7808 + type: DeviceLinkSink + - uid: 4115 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,22.5 + parent: 1 + type: Transform + - links: + - 7918 + - 7808 + type: DeviceLinkSink + - uid: 4130 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,22.5 + parent: 1 + type: Transform + - links: + - 7918 + - 7808 + type: DeviceLinkSink + - uid: 4134 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,24.5 + parent: 1 + type: Transform + - links: + - 7918 + - 7808 + type: DeviceLinkSink - uid: 4137 components: - rot: 1.5707963267948966 rad @@ -65077,6 +65220,36 @@ entities: - port: Middle uid: 9362 type: SignalReceiver + - uid: 7818 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,22.5 + parent: 1 + type: Transform + - links: + - 7918 + - 7808 + type: DeviceLinkSink + - uid: 7820 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,24.5 + parent: 1 + type: Transform + - links: + - 7918 + - 7808 + type: DeviceLinkSink + - uid: 7821 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,24.5 + parent: 1 + type: Transform + - links: + - 7918 + - 7808 + type: DeviceLinkSink - proto: CornSeeds entities: - uid: 8277 @@ -65733,6 +65906,12 @@ entities: type: Transform - proto: DefibrillatorCabinetFilled entities: + - uid: 1778 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,20.5 + parent: 1 + type: Transform - uid: 4111 components: - pos: -25.5,49.5 @@ -65839,12 +66018,6 @@ entities: pos: -33.5,0.5 parent: 1 type: Transform - - uid: 7798 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,20.5 - parent: 1 - type: Transform - proto: DeployableBarrier entities: - uid: 4383 @@ -65874,6 +66047,8 @@ entities: type: Transform - nextAttack: 4031.2062843 type: MeleeWeapon + - nextSound: 4031.4062843 + type: EmitSoundOnCollide - uid: 4565 components: - pos: 4.7110076,20.385416 @@ -65881,6 +66056,8 @@ entities: type: Transform - nextAttack: 4033.2851545 type: MeleeWeapon + - nextSound: 4033.4851545 + type: EmitSoundOnCollide - uid: 4566 components: - pos: -6.6414404,-12.133052 @@ -65888,6 +66065,8 @@ entities: type: Transform - nextAttack: 4052.8530547 type: MeleeWeapon + - nextSound: 4053.0530547 + type: EmitSoundOnCollide - uid: 4567 components: - pos: 5.5849104,-12.195552 @@ -65895,6 +66074,8 @@ entities: type: Transform - nextAttack: 4056.0823478 type: MeleeWeapon + - nextSound: 4056.2823478 + type: EmitSoundOnCollide - uid: 6150 components: - pos: 12.86205,19.48184 @@ -65902,6 +66083,8 @@ entities: type: Transform - nextAttack: 4036.4374013 type: MeleeWeapon + - nextSound: 4036.6374013 + type: EmitSoundOnCollide - uid: 6152 components: - pos: 4.2470655,-2.5974627 @@ -65909,6 +66092,8 @@ entities: type: Transform - nextAttack: 4041.1864912 type: MeleeWeapon + - nextSound: 4041.3864912 + type: EmitSoundOnCollide - uid: 6153 components: - pos: 11.743292,-5.633137 @@ -65916,6 +66101,8 @@ entities: type: Transform - nextAttack: 4044.2808961 type: MeleeWeapon + - nextSound: 4044.4808961 + type: EmitSoundOnCollide - uid: 6154 components: - pos: -6.2473664,5.4515653 @@ -65923,6 +66110,8 @@ entities: type: Transform - nextAttack: 4048.1100399 type: MeleeWeapon + - nextSound: 4048.3100399 + type: EmitSoundOnCollide - uid: 6193 components: - pos: -4.4996243,53.44499 @@ -65930,6 +66119,8 @@ entities: type: Transform - nextAttack: 4023.3133788 type: MeleeWeapon + - nextSound: 4023.5133788 + type: EmitSoundOnCollide - uid: 7655 components: - pos: 26.62281,3.3925822 @@ -65937,6 +66128,8 @@ entities: type: Transform - nextAttack: 4085.4978471 type: MeleeWeapon + - nextSound: 4085.6978471 + type: EmitSoundOnCollide - proto: DiceBag entities: - uid: 7030 @@ -65975,6 +66168,12 @@ entities: type: Transform - proto: DisposalBend entities: + - uid: 1784 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,24.5 + parent: 1 + type: Transform - uid: 16494 components: - rot: -1.5707963267948966 rad @@ -66118,11 +66317,6 @@ entities: pos: -45.5,14.5 parent: 1 type: Transform - - uid: 16956 - components: - - pos: -37.5,28.5 - parent: 1 - type: Transform - uid: 16973 components: - rot: 1.5707963267948966 rad @@ -68591,36 +68785,6 @@ entities: - pos: -31.5,21.5 parent: 1 type: Transform - - uid: 16957 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,28.5 - parent: 1 - type: Transform - - uid: 16958 - components: - - rot: 3.141592653589793 rad - pos: -37.5,27.5 - parent: 1 - type: Transform - - uid: 16959 - components: - - rot: 3.141592653589793 rad - pos: -37.5,26.5 - parent: 1 - type: Transform - - uid: 16960 - components: - - rot: 3.141592653589793 rad - pos: -37.5,25.5 - parent: 1 - type: Transform - - uid: 16961 - components: - - rot: 3.141592653589793 rad - pos: -37.5,24.5 - parent: 1 - type: Transform - uid: 16962 components: - rot: 3.141592653589793 rad @@ -69927,6 +70091,12 @@ entities: type: Transform - proto: DisposalTrunk entities: + - uid: 1783 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,24.5 + parent: 1 + type: Transform - uid: 16491 components: - rot: 1.5707963267948966 rad @@ -70056,12 +70226,6 @@ entities: pos: -45.5,12.5 parent: 1 type: Transform - - uid: 16943 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,28.5 - parent: 1 - type: Transform - uid: 16948 components: - pos: -34.5,16.5 @@ -70155,6 +70319,11 @@ entities: type: Transform - proto: DisposalUnit entities: + - uid: 1988 + components: + - pos: -36.5,24.5 + parent: 1 + type: Transform - uid: 2033 components: - pos: 33.5,7.5 @@ -70325,11 +70494,6 @@ entities: - pos: -17.5,53.5 parent: 1 type: Transform - - uid: 9884 - components: - - pos: -39.5,28.5 - parent: 1 - type: Transform - uid: 9888 components: - pos: -23.5,15.5 @@ -71818,6 +71982,25 @@ entities: type: Transform - proto: FireAlarm entities: + - uid: 8155 + components: + - pos: -40.5,29.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 7827 + - 7913 + - 7922 + - 8154 + - 7812 + type: DeviceNetwork + - devices: + - 7827 + - 7913 + - 7922 + - 8154 + - 7812 + type: DeviceList - uid: 9150 components: - rot: 1.5707963267948966 rad @@ -72470,9 +72653,17 @@ entities: pos: -36.5,18.5 parent: 1 type: Transform + - ShutdownSubscribers: + - 7827 + - 7913 + - 7922 + type: DeviceNetwork - devices: - 5832 - 5831 + - 7827 + - 7913 + - 7922 type: DeviceList - uid: 17493 components: @@ -72892,16 +73083,6 @@ entities: - pos: -13.517798,27.785059 parent: 1 type: Transform - - uid: 9379 - components: - - pos: -38.70102,30.86758 - parent: 1 - type: Transform - - uid: 9380 - components: - - pos: -38.45102,30.68008 - parent: 1 - type: Transform - proto: Firelock entities: - uid: 5867 @@ -72996,6 +73177,26 @@ entities: - pos: 19.5,-6.5 parent: 1 type: Transform +- proto: FirelockEdge + entities: + - uid: 7812 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,27.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 8155 + type: DeviceNetwork + - uid: 8154 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,28.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 8155 + type: DeviceNetwork - proto: FirelockElectronics entities: - uid: 9132 @@ -74299,6 +74500,16 @@ entities: - pos: 28.5,32.5 parent: 1 type: Transform + - uid: 7827 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,20.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 17490 + - 8155 + type: DeviceNetwork - uid: 7894 components: - pos: -43.5,39.5 @@ -74319,6 +74530,26 @@ entities: - pos: -48.5,39.5 parent: 1 type: Transform + - uid: 7913 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,20.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 17490 + - 8155 + type: DeviceNetwork + - uid: 7922 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,20.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 17490 + - 8155 + type: DeviceNetwork - uid: 8180 components: - rot: -1.5707963267948966 rad @@ -74554,11 +74785,15 @@ entities: - pos: -18.39577,40.731785 parent: 1 type: Transform + - nextSound: 593.0165614 + type: EmitSoundOnCollide - uid: 7771 components: - pos: -18.58327,40.43491 parent: 1 type: Transform + - nextSound: 593.0165614 + type: EmitSoundOnCollide - uid: 8184 components: - pos: -16.611473,49.69518 @@ -74581,16 +74816,6 @@ entities: - pos: 39.53336,61.486675 parent: 1 type: Transform - - uid: 18422 - components: - - pos: -44.507248,28.485949 - parent: 1 - type: Transform - - uid: 18423 - components: - - pos: -44.53658,23.689919 - parent: 1 - type: Transform - proto: FloodlightBroken entities: - uid: 18356 @@ -74841,6 +75066,8 @@ entities: - pos: -40.490295,77.610565 parent: 1 type: Transform + - nextSound: 570.2859087 + type: EmitSoundOnCollide - proto: FoodFrozenPopsicleBerry entities: - uid: 9848 @@ -74931,6 +75158,8 @@ entities: - pos: 47.521317,74.488594 parent: 1 type: Transform + - nextSound: 659.6528992 + type: EmitSoundOnCollide - proto: FoodMealMilkape entities: - uid: 17747 @@ -96201,11 +96430,6 @@ entities: pos: -44.5,-2.5 parent: 1 type: Transform - - uid: 147 - components: - - pos: -48.5,19.5 - parent: 1 - type: Transform - uid: 152 components: - pos: -42.5,6.5 @@ -96438,11 +96662,6 @@ entities: - pos: -42.5,3.5 parent: 1 type: Transform - - uid: 239 - components: - - pos: -46.5,19.5 - parent: 1 - type: Transform - uid: 274 components: - pos: -33.5,10.5 @@ -96456,7 +96675,8 @@ entities: type: Transform - uid: 288 components: - - pos: -48.5,32.5 + - rot: -1.5707963267948966 rad + pos: -43.5,25.5 parent: 1 type: Transform - uid: 297 @@ -97234,11 +97454,6 @@ entities: - pos: -47.5,17.5 parent: 1 type: Transform - - uid: 1280 - components: - - pos: -49.5,32.5 - parent: 1 - type: Transform - uid: 1282 components: - pos: -46.5,34.5 @@ -97850,34 +98065,38 @@ entities: - pos: -40.5,19.5 parent: 1 type: Transform - - uid: 1774 + - uid: 1768 components: - - pos: -40.5,28.5 + - rot: -1.5707963267948966 rad + pos: -41.5,29.5 parent: 1 type: Transform - - uid: 1775 + - uid: 1769 components: - - pos: -40.5,29.5 + - rot: -1.5707963267948966 rad + pos: -42.5,29.5 parent: 1 type: Transform - - uid: 1776 + - uid: 1770 components: - - pos: -40.5,30.5 + - pos: -43.5,31.5 parent: 1 type: Transform - - uid: 1780 + - uid: 1775 components: - - pos: -40.5,21.5 + - rot: -1.5707963267948966 rad + pos: -45.5,29.5 parent: 1 type: Transform - - uid: 1781 + - uid: 1776 components: - - pos: -40.5,22.5 + - rot: -1.5707963267948966 rad + pos: -44.5,29.5 parent: 1 type: Transform - - uid: 1782 + - uid: 1780 components: - - pos: -40.5,23.5 + - pos: -43.5,33.5 parent: 1 type: Transform - uid: 1795 @@ -97990,21 +98209,6 @@ entities: pos: -51.5,-11.5 parent: 1 type: Transform - - uid: 1987 - components: - - pos: -50.5,19.5 - parent: 1 - type: Transform - - uid: 1988 - components: - - pos: -46.5,32.5 - parent: 1 - type: Transform - - uid: 1989 - components: - - pos: -47.5,19.5 - parent: 1 - type: Transform - uid: 1995 components: - pos: 46.5,-15.5 @@ -98259,21 +98463,6 @@ entities: - pos: -52.5,16.5 parent: 1 type: Transform - - uid: 2142 - components: - - pos: -50.5,32.5 - parent: 1 - type: Transform - - uid: 2143 - components: - - pos: -47.5,32.5 - parent: 1 - type: Transform - - uid: 2144 - components: - - pos: -49.5,19.5 - parent: 1 - type: Transform - uid: 2148 components: - pos: -2.5,-39.5 @@ -99159,6 +99348,18 @@ entities: pos: -43.5,16.5 parent: 1 type: Transform + - uid: 4129 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,20.5 + parent: 1 + type: Transform + - uid: 4132 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,20.5 + parent: 1 + type: Transform - uid: 4215 components: - pos: 29.5,76.5 @@ -100531,6 +100732,29 @@ entities: - pos: -44.5,39.5 parent: 1 type: Transform + - uid: 7914 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,21.5 + parent: 1 + type: Transform + - uid: 7916 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,26.5 + parent: 1 + type: Transform + - uid: 7924 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,26.5 + parent: 1 + type: Transform + - uid: 7933 + components: + - pos: -43.5,32.5 + parent: 1 + type: Transform - uid: 8588 components: - rot: -1.5707963267948966 rad @@ -101466,16 +101690,13 @@ entities: type: Transform - proto: HandheldGPSBasic entities: - - uid: 9381 - components: - - pos: -37.346855,30.78016 - parent: 1 - type: Transform - - uid: 9382 + - uid: 4126 components: - - pos: -37.51352,30.59266 + - pos: -42.37712,26.662056 parent: 1 type: Transform + - nextSound: 3186.1093647 + type: EmitSoundOnCollide - uid: 9388 components: - pos: -43.72039,-2.2772734 @@ -101634,7 +101855,7 @@ entities: - pos: 3.5,27.5 parent: 1 type: Transform - - SecondsUntilStateChange: -558385.75 + - SecondsUntilStateChange: -564121.7 state: Closing type: Door - uid: 4073 @@ -101690,7 +101911,7 @@ entities: pos: 11.5,46.5 parent: 1 type: Transform - - SecondsUntilStateChange: -472537.7 + - SecondsUntilStateChange: -478273.66 state: Closing type: Door - uid: 8393 @@ -102355,17 +102576,6 @@ entities: pos: -36.5,22.5 parent: 1 type: Transform - - uid: 17584 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,24.5 - parent: 1 - type: Transform - - uid: 17585 - components: - - pos: -38.5,16.5 - parent: 1 - type: Transform - proto: JanitorialTrolley entities: - uid: 4018 @@ -102385,6 +102595,8 @@ entities: type: InputMover - nextAttack: 1136.1295944 type: MeleeWeapon + - nextSound: 1136.3295944 + type: EmitSoundOnCollide - uid: 4368 components: - pos: 25.476015,31.717653 @@ -102394,11 +102606,30 @@ entities: type: InputMover - nextAttack: 1136.8638719 type: MeleeWeapon - - uid: 9373 + - nextSound: 1137.0638719 + type: EmitSoundOnCollide + - uid: 7829 + components: + - pos: -41.32702,21.77888 + parent: 1 + type: Transform + - lerpTarget: 1289.818745 + type: InputMover + - nextAttack: 1289.818745 + type: MeleeWeapon + - nextSound: 1290.018745 + type: EmitSoundOnCollide + - uid: 7931 components: - - pos: -39.45102,20.252634 + - pos: -41.62712,21.537056 parent: 1 type: Transform + - lerpTarget: 3214.4427465 + type: InputMover + - nextAttack: 3214.4427465 + type: MeleeWeapon + - nextSound: 3214.6427465 + type: EmitSoundOnCollide - proto: KitchenMicrowave entities: - uid: 4327 @@ -103355,14 +103586,14 @@ entities: type: EntityStorage - proto: LockerSalvageSpecialistFilled entities: - - uid: 7715 + - uid: 239 components: - - pos: -36.5,24.5 + - pos: -37.5,30.5 parent: 1 type: Transform - - uid: 7803 + - uid: 7825 components: - - pos: -39.5,29.5 + - pos: -38.5,30.5 parent: 1 type: Transform - proto: LockerScienceFilled @@ -103730,25 +103961,25 @@ entities: - pos: -16.5,64.5 parent: 1 type: Transform -- proto: MachineParticleAcceleratorEmitterCenterCircuitboard +- proto: MachineParticleAcceleratorEmitterForeCircuitboard entities: - uid: 18338 components: - pos: 18.069408,-21.38702 parent: 1 type: Transform -- proto: MachineParticleAcceleratorEmitterLeftCircuitboard +- proto: MachineParticleAcceleratorEmitterPortCircuitboard entities: - - uid: 18331 + - uid: 18332 components: - - pos: 18.41018,-21.741798 + - pos: 18.552168,-21.543123 parent: 1 type: Transform -- proto: MachineParticleAcceleratorEmitterRightCircuitboard +- proto: MachineParticleAcceleratorEmitterStarboardCircuitboard entities: - - uid: 18332 + - uid: 18331 components: - - pos: 18.552168,-21.543123 + - pos: 18.41018,-21.741798 parent: 1 type: Transform - proto: MachineParticleAcceleratorEndCapCircuitboard @@ -103773,6 +104004,8 @@ entities: type: MetaData - parent: 7683 type: Transform + - nextSound: 173.0796955 + type: EmitSoundOnCollide - canCollide: False type: Physics - type: InsideEntityStorage @@ -103784,6 +104017,8 @@ entities: type: MetaData - parent: 7683 type: Transform + - nextSound: 166.3325007 + type: EmitSoundOnCollide - canCollide: False type: Physics - type: InsideEntityStorage @@ -103795,6 +104030,8 @@ entities: type: MetaData - parent: 7683 type: Transform + - nextSound: 157.6002064 + type: EmitSoundOnCollide - canCollide: False type: Physics - type: InsideEntityStorage @@ -104281,6 +104518,8 @@ entities: - pos: 9.36141,34.82137 parent: 1 type: Transform + - nextSound: 415.8338084 + type: EmitSoundOnCollide - proto: MedicalBed entities: - uid: 4058 @@ -104338,6 +104577,8 @@ entities: - pos: -24.283842,-32.51983 parent: 1 type: Transform + - nextSound: 1308.0121035 + type: EmitSoundOnCollide - proto: MedkitFilled entities: - uid: 8523 @@ -104378,11 +104619,15 @@ entities: - pos: 9.29891,34.524494 parent: 1 type: Transform + - nextSound: 413.0929966 + type: EmitSoundOnCollide - uid: 7765 components: - pos: 9.61141,34.711994 parent: 1 type: Transform + - nextSound: 413.6761214 + type: EmitSoundOnCollide - proto: MicrophoneInstrument entities: - uid: 18256 @@ -104660,6 +104905,8 @@ entities: type: Transform - lastUseAttempt: 3271.8018285 type: NetworkConfigurator + - nextSound: 3272.0018285 + type: EmitSoundOnCollide - uid: 7432 components: - pos: 12.35541,-11.368492 @@ -104667,6 +104914,8 @@ entities: type: Transform - lastUseAttempt: 3273.9582154 type: NetworkConfigurator + - nextSound: 3274.1582153 + type: EmitSoundOnCollide - uid: 7433 components: - pos: -11.6948395,-19.44185 @@ -104674,6 +104923,8 @@ entities: type: Transform - lastUseAttempt: 3278.6395168 type: NetworkConfigurator + - nextSound: 3278.8395168 + type: EmitSoundOnCollide - uid: 7434 components: - pos: -13.616468,-33.96476 @@ -104681,6 +104932,8 @@ entities: type: Transform - lastUseAttempt: 3282.5743269 type: NetworkConfigurator + - nextSound: 3282.7743268 + type: EmitSoundOnCollide - uid: 7435 components: - pos: 8.562072,-32.386993 @@ -104688,6 +104941,8 @@ entities: type: Transform - lastUseAttempt: 3289.8166357 type: NetworkConfigurator + - nextSound: 3290.0166357 + type: EmitSoundOnCollide - uid: 7436 components: - pos: -9.608111,27.948849 @@ -104695,6 +104950,8 @@ entities: type: Transform - lastUseAttempt: 3309.3056352 type: NetworkConfigurator + - nextSound: 3309.5056352 + type: EmitSoundOnCollide - uid: 7437 components: - pos: -6.7244835,21.503235 @@ -104702,6 +104959,8 @@ entities: type: Transform - lastUseAttempt: 3313.4132294 type: NetworkConfigurator + - nextSound: 3313.6132294 + type: EmitSoundOnCollide - uid: 7438 components: - pos: -10.361936,34.69222 @@ -104709,6 +104968,8 @@ entities: type: Transform - lastUseAttempt: 3317.7694012 type: NetworkConfigurator + - nextSound: 3317.9694012 + type: EmitSoundOnCollide - proto: NitrogenCanister entities: - uid: 3027 @@ -104726,11 +104987,6 @@ entities: - pos: -15.5,-29.5 parent: 1 type: Transform - - uid: 4135 - components: - - pos: -39.5,30.5 - parent: 1 - type: Transform - uid: 6914 components: - pos: 26.5,31.5 @@ -104844,6 +105100,11 @@ entities: type: Transform - proto: OxygenCanister entities: + - uid: 147 + components: + - pos: -40.5,21.5 + parent: 1 + type: Transform - uid: 3026 components: - pos: 0.5,-19.5 @@ -104859,11 +105120,6 @@ entities: - pos: -15.5,-27.5 parent: 1 type: Transform - - uid: 4134 - components: - - pos: -39.5,22.5 - parent: 1 - type: Transform - uid: 6916 components: - pos: 27.5,31.5 @@ -105201,6 +105457,13 @@ entities: type: Transform - proto: PartRodMetal entities: + - uid: 7823 + components: + - pos: -42.102123,21.612055 + parent: 1 + type: Transform + - nextSound: 3208.2768799 + type: EmitSoundOnCollide - uid: 9123 components: - pos: 13.554044,-21.633276 @@ -105211,11 +105474,6 @@ entities: - pos: -25.391773,-12.691285 parent: 1 type: Transform - - uid: 9378 - components: - - pos: -39.430187,21.351522 - parent: 1 - type: Transform - proto: Pen entities: - uid: 8108 @@ -105418,6 +105676,16 @@ entities: - pos: 19.5,-38.5 parent: 1 type: Transform + - uid: 4114 + components: + - pos: -43.5,22.5 + parent: 1 + type: Transform + - uid: 7819 + components: + - pos: -43.5,24.5 + parent: 1 + type: Transform - proto: PlushieAtmosian entities: - uid: 8478 @@ -106354,6 +106622,44 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver + - uid: 7809 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,20.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 7811 + components: + - rot: 3.141592653589793 rad + pos: -46.5,30.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 7813 + components: + - rot: 3.141592653589793 rad + pos: -38.5,17.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 7935 + components: + - pos: -46.5,25.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 8161 + components: + - pos: -40.5,28.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound - uid: 8641 components: - rot: -1.5707963267948966 rad @@ -107203,14 +107509,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 14215 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 14216 components: - rot: 1.5707963267948966 rad @@ -108192,13 +108490,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 13366 - components: - - pos: -41.5,26.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 13460 components: - pos: -41.5,51.5 @@ -109020,6 +109311,13 @@ entities: type: Transform - proto: RadioHandheld entities: + - uid: 2144 + components: + - pos: -42.652122,26.537056 + parent: 1 + type: Transform + - nextSound: 3182.3109971 + type: EmitSoundOnCollide - uid: 7397 components: - pos: -14.804126,50.394012 @@ -109030,16 +109328,6 @@ entities: - pos: 6.5608225,-21.29419 parent: 1 type: Transform - - uid: 9383 - components: - - pos: -37.659355,30.800995 - parent: 1 - type: Transform - - uid: 9384 - components: - - pos: -37.784355,30.550995 - parent: 1 - type: Transform - uid: 13400 components: - pos: -23.682875,43.57468 @@ -109118,6 +109406,17 @@ entities: pos: -6.5,-3.5 parent: 1 type: Transform + - uid: 4118 + components: + - pos: -44.5,25.5 + parent: 1 + type: Transform + - uid: 4119 + components: + - rot: 3.141592653589793 rad + pos: -44.5,21.5 + parent: 1 + type: Transform - uid: 4267 components: - rot: 1.5707963267948966 rad @@ -109173,6 +109472,11 @@ entities: pos: 26.5,17.5 parent: 1 type: Transform + - uid: 7915 + components: + - pos: -44.5,20.5 + parent: 1 + type: Transform - uid: 8292 components: - rot: -1.5707963267948966 rad @@ -109384,6 +109688,12 @@ entities: type: Transform - proto: RailingCorner entities: + - uid: 1779 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,20.5 + parent: 1 + type: Transform - uid: 4003 components: - rot: 1.5707963267948966 rad @@ -109413,6 +109723,12 @@ entities: pos: -9.5,-4.5 parent: 1 type: Transform + - uid: 4117 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,25.5 + parent: 1 + type: Transform - uid: 6891 components: - pos: 23.5,20.5 @@ -109424,6 +109740,12 @@ entities: pos: 26.5,18.5 parent: 1 type: Transform + - uid: 7822 + components: + - rot: 3.141592653589793 rad + pos: -45.5,21.5 + parent: 1 + type: Transform - uid: 8575 components: - rot: 3.141592653589793 rad @@ -112072,6 +112394,12 @@ entities: - pos: -49.5,17.5 parent: 1 type: Transform + - uid: 1280 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,26.5 + parent: 1 + type: Transform - uid: 1290 components: - pos: -46.5,34.5 @@ -112627,36 +112955,6 @@ entities: - pos: -40.5,19.5 parent: 1 type: Transform - - uid: 1777 - components: - - pos: -40.5,30.5 - parent: 1 - type: Transform - - uid: 1778 - components: - - pos: -40.5,29.5 - parent: 1 - type: Transform - - uid: 1779 - components: - - pos: -40.5,28.5 - parent: 1 - type: Transform - - uid: 1783 - components: - - pos: -40.5,21.5 - parent: 1 - type: Transform - - uid: 1784 - components: - - pos: -40.5,22.5 - parent: 1 - type: Transform - - uid: 1785 - components: - - pos: -40.5,23.5 - parent: 1 - type: Transform - uid: 1796 components: - pos: -15.5,57.5 @@ -112822,6 +113120,11 @@ entities: pos: -52.5,16.5 parent: 1 type: Transform + - uid: 1989 + components: + - pos: -41.5,29.5 + parent: 1 + type: Transform - uid: 1993 components: - pos: 48.5,-15.5 @@ -113658,6 +113961,18 @@ entities: pos: 24.5,35.5 parent: 1 type: Transform + - uid: 4112 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,20.5 + parent: 1 + type: Transform + - uid: 4113 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,20.5 + parent: 1 + type: Transform - uid: 4123 components: - rot: 1.5707963267948966 rad @@ -113920,12 +114235,47 @@ entities: - pos: -28.5,-28.5 parent: 1 type: Transform + - uid: 7824 + components: + - pos: -42.5,29.5 + parent: 1 + type: Transform - uid: 7870 components: - rot: 1.5707963267948966 rad pos: 36.5,2.5 parent: 1 type: Transform + - uid: 7926 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,21.5 + parent: 1 + type: Transform + - uid: 7927 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,29.5 + parent: 1 + type: Transform + - uid: 7928 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,29.5 + parent: 1 + type: Transform + - uid: 7929 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,26.5 + parent: 1 + type: Transform + - uid: 7930 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,25.5 + parent: 1 + type: Transform - uid: 14086 components: - pos: -48.5,17.5 @@ -113964,6 +114314,8 @@ entities: type: Transform - nextFire: 2753.552245 type: Gun + - nextSound: 2753.752245 + type: EmitSoundOnCollide - proto: RiotShield entities: - uid: 7800 @@ -113971,11 +114323,15 @@ entities: - pos: -18.644022,40.739033 parent: 1 type: Transform + - nextSound: 564.1596002 + type: EmitSoundOnCollide - uid: 7801 components: - pos: -18.456522,40.489033 parent: 1 type: Transform + - nextSound: 564.8663498 + type: EmitSoundOnCollide - proto: RitualDagger entities: - uid: 13305 @@ -114043,10 +114399,10 @@ entities: type: Transform - proto: SalvageMagnet entities: - - uid: 4112 + - uid: 1782 components: - rot: -1.5707963267948966 rad - pos: -45.5,27.5 + pos: -45.5,20.5 parent: 1 type: Transform - proto: Saw @@ -114093,6 +114449,8 @@ entities: type: Transform - nextAttack: 1121.364106 type: MeleeWeapon + - nextSound: 1121.564106 + type: EmitSoundOnCollide - uid: 8669 components: - pos: -6.6287556,21.412113 @@ -114844,6 +115202,21 @@ entities: uid: 1065 type: SignalTransmitter - type: ItemCooldown + - uid: 7826 + components: + - pos: -43.5,23.5 + parent: 1 + type: Transform + - linkedPorts: + 4135: + - Pressed: Toggle + 7923: + - Pressed: Toggle + registeredSinks: + Pressed: + - 4135 + - 7923 + type: DeviceLinkSource - uid: 8571 components: - rot: -1.5707963267948966 rad @@ -115897,10 +116270,10 @@ entities: type: Transform - proto: SignMinerDock entities: - - uid: 17876 + - uid: 7925 components: - - rot: 3.141592653589793 rad - pos: -42.5,27.5 + - rot: -1.5707963267948966 rad + pos: -46.5,29.5 parent: 1 type: Transform - proto: SignMorgue @@ -118102,6 +118475,8 @@ entities: - pos: -16.575819,5.572419 parent: 1 type: Transform + - nextSound: 2778.592326 + type: EmitSoundOnCollide - proto: Spoon entities: - uid: 17288 @@ -118349,26 +118724,36 @@ entities: - pos: -38.658638,42.44425 parent: 1 type: Transform + - nextSound: 3569.5465411 + type: EmitSoundOnCollide - uid: 6551 components: - pos: -34.521122,33.610306 parent: 1 type: Transform + - nextSound: 3576.5104575 + type: EmitSoundOnCollide - uid: 7545 components: - pos: 23.385082,56.636555 parent: 1 type: Transform + - nextSound: 3614.8449104 + type: EmitSoundOnCollide - uid: 7624 components: - pos: 17.981688,-36.520332 parent: 1 type: Transform + - nextSound: 3597.8214944 + type: EmitSoundOnCollide - uid: 7672 components: - pos: -17.505447,-39.48328 parent: 1 type: Transform + - nextSound: 3587.3353742 + type: EmitSoundOnCollide - proto: Stunbaton entities: - uid: 8187 @@ -120516,6 +120901,18 @@ entities: - pos: -12.5,55.5 parent: 1 type: Transform + - uid: 2142 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,21.5 + parent: 1 + type: Transform + - uid: 2143 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,21.5 + parent: 1 + type: Transform - uid: 2396 components: - pos: 5.5,-12.5 @@ -120649,26 +121046,6 @@ entities: - pos: 16.5,-3.5 parent: 1 type: Transform - - uid: 4129 - components: - - pos: -37.5,30.5 - parent: 1 - type: Transform - - uid: 4130 - components: - - pos: -38.5,30.5 - parent: 1 - type: Transform - - uid: 4131 - components: - - pos: -39.5,21.5 - parent: 1 - type: Transform - - uid: 4132 - components: - - pos: -39.5,20.5 - parent: 1 - type: Transform - uid: 4133 components: - pos: -39.5,19.5 @@ -120898,6 +121275,11 @@ entities: - pos: -14.5,50.5 parent: 1 type: Transform + - uid: 7816 + components: + - pos: -42.5,26.5 + parent: 1 + type: Transform - uid: 7889 components: - pos: 44.5,44.5 @@ -122002,6 +122384,15 @@ entities: - pos: 13.367895,-41.31494 parent: 1 type: Transform + - uid: 7828 + components: + - pos: -42.546696,26.738258 + parent: 1 + type: Transform + - nextAttack: 3543.1210858 + type: MeleeWeapon + - nextSound: 3543.3210858 + type: EmitSoundOnCollide - uid: 8067 components: - pos: 7.70034,77.49678 @@ -122022,11 +122413,6 @@ entities: - pos: -22.28761,-13.462118 parent: 1 type: Transform - - uid: 9386 - components: - - pos: -39.492687,20.65749 - parent: 1 - type: Transform - proto: ToyAi entities: - uid: 13382 @@ -122167,6 +122553,140 @@ entities: - port: Off uid: 3995 type: SignalTransmitter + - uid: 7808 + components: + - pos: -42.5,23.5 + parent: 1 + type: Transform + - linkedPorts: + 4134: + - Left: Forward + - Right: Reverse + - Middle: Off + 4130: + - Left: Forward + - Right: Reverse + - Middle: Off + 1767: + - Left: Forward + - Right: Reverse + - Middle: Off + 4110: + - Left: Forward + - Right: Reverse + - Middle: Off + 7820: + - Left: Forward + - Right: Reverse + - Middle: Off + 7818: + - Left: Forward + - Right: Reverse + - Middle: Off + 4115: + - Left: Forward + - Right: Reverse + - Middle: Off + 7821: + - Left: Forward + - Right: Reverse + - Middle: Off + registeredSinks: + Left: + - 4134 + - 4130 + - 1767 + - 4110 + - 7820 + - 7818 + - 4115 + - 7821 + Right: + - 4134 + - 4130 + - 1767 + - 4110 + - 7820 + - 7818 + - 4115 + - 7821 + Middle: + - 4134 + - 4130 + - 1767 + - 4110 + - 7820 + - 7818 + - 4115 + - 7821 + type: DeviceLinkSource + - uid: 7918 + components: + - pos: -44.5,23.5 + parent: 1 + type: Transform + - linkedPorts: + 7821: + - Left: Forward + - Right: Reverse + - Middle: Off + 7820: + - Left: Forward + - Right: Reverse + - Middle: Off + 1767: + - Left: Forward + - Right: Reverse + - Middle: Off + 4134: + - Left: Forward + - Right: Reverse + - Middle: Off + 4115: + - Left: Forward + - Right: Reverse + - Middle: Off + 7818: + - Left: Forward + - Right: Reverse + - Middle: Off + 4110: + - Left: Forward + - Right: Reverse + - Middle: Off + 4130: + - Left: Forward + - Right: Reverse + - Middle: Off + registeredSinks: + Left: + - 7821 + - 7820 + - 1767 + - 4134 + - 4115 + - 7818 + - 4110 + - 4130 + Right: + - 7821 + - 7820 + - 1767 + - 4134 + - 4115 + - 7818 + - 4110 + - 4130 + Middle: + - 7821 + - 7820 + - 1767 + - 4134 + - 4115 + - 7818 + - 4110 + - 4130 + type: DeviceLinkSource - uid: 9362 components: - pos: -40.5,3.5 @@ -122843,13 +123363,6 @@ entities: type: Transform - proto: VendingMachineTankDispenserEVA entities: - - uid: 4126 - components: - - flags: SessionSpecific - type: MetaData - - pos: -39.5,23.5 - parent: 1 - type: Transform - uid: 4219 components: - flags: SessionSpecific @@ -122871,6 +123384,15 @@ entities: - pos: -8.5,-11.5 parent: 1 type: Transform + - uid: 7810 + components: + - flags: SessionSpecific + type: MetaData + - pos: -39.5,30.5 + parent: 1 + type: Transform + - nextEmpEject: 3532.2388949 + type: VendingMachine - uid: 8167 components: - flags: SessionSpecific @@ -125860,44 +126382,16 @@ entities: - pos: -40.5,31.5 parent: 1 type: Transform - - uid: 1766 - components: - - pos: -42.5,27.5 - parent: 1 - type: Transform - - uid: 1767 - components: - - pos: -42.5,24.5 - parent: 1 - type: Transform - - uid: 1768 - components: - - pos: -41.5,27.5 - parent: 1 - type: Transform - - uid: 1769 - components: - - pos: -41.5,24.5 - parent: 1 - type: Transform - - uid: 1770 - components: - - pos: -40.5,24.5 - parent: 1 - type: Transform - - uid: 1771 - components: - - pos: -40.5,27.5 - parent: 1 - type: Transform - - uid: 1772 + - uid: 1773 components: - - pos: -39.5,27.5 + - rot: -1.5707963267948966 rad + pos: -46.5,29.5 parent: 1 type: Transform - - uid: 1773 + - uid: 1774 components: - - pos: -39.5,24.5 + - rot: -1.5707963267948966 rad + pos: -46.5,26.5 parent: 1 type: Transform - uid: 1786 @@ -128922,6 +129416,17 @@ entities: - pos: 5.5,29.5 parent: 1 type: Transform + - uid: 4116 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,30.5 + parent: 1 + type: Transform + - uid: 4131 + components: + - pos: -43.5,23.5 + parent: 1 + type: Transform - uid: 4151 components: - rot: 3.141592653589793 rad @@ -129237,6 +129742,30 @@ entities: - pos: 25.5,-27.5 parent: 1 type: Transform + - uid: 7817 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,29.5 + parent: 1 + type: Transform + - uid: 7919 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,26.5 + parent: 1 + type: Transform + - uid: 7920 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,29.5 + parent: 1 + type: Transform + - uid: 7921 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,20.5 + parent: 1 + type: Transform - uid: 18083 components: - rot: 1.5707963267948966 rad @@ -134134,26 +134663,19 @@ entities: - pos: 30.5,-13.5 parent: 1 type: Transform -- proto: WeaponCrusherDagger - entities: - - uid: 4110 - components: - - pos: -39.47178,20.144724 - parent: 1 - type: Transform - - nextAttack: 2999.556561 - type: MeleeWeapon - proto: WeaponCrusherGlaive entities: - - uid: 4370 + - uid: 1777 components: - - pos: -38.182167,30.631466 + - pos: -41.696693,21.56326 parent: 1 type: Transform - - nextFire: 2987.9906197 + - nextFire: 3549.1038101 type: Gun - - nextAttack: 2987.9906197 + - nextAttack: 3549.1038101 type: MeleeWeapon + - nextSound: 3549.3038101 + type: EmitSoundOnCollide - proto: WeaponDisabler entities: - uid: 7396 @@ -134197,6 +134719,8 @@ entities: type: Transform - nextFire: 215.1615452 type: Gun + - nextSound: 215.3615452 + type: EmitSoundOnCollide - canCollide: False type: Physics - type: InsideEntityStorage @@ -134208,6 +134732,8 @@ entities: type: Transform - nextFire: 213.8413472 type: Gun + - nextSound: 214.0413472 + type: EmitSoundOnCollide - canCollide: False type: Physics - type: InsideEntityStorage @@ -134227,6 +134753,8 @@ entities: type: Transform - nextFire: 317.6654638 type: Gun + - nextSound: 317.8654638 + type: EmitSoundOnCollide - proto: WeaponWaterPistol entities: - uid: 7649 @@ -134236,6 +134764,8 @@ entities: type: Transform - nextFire: 348.1162994 type: Gun + - nextSound: 348.3162994 + type: EmitSoundOnCollide - proto: WelderIndustrial entities: - uid: 4700 From 263890ff64ca37c5315152d15ff93031147b12b1 Mon Sep 17 00:00:00 2001 From: MisterMecky Date: Mon, 12 Jun 2023 16:10:00 +0800 Subject: [PATCH 183/474] Adds a drain to box kitchen freezer (#17208) * add drain to box kitchen freezer * Revert "add drain to box kitchen freezer" This reverts commit 87d8850d4752675c773f735357714602728f97ac. * redo --- Resources/Maps/box.yml | 5845 ++++++++++++++++++++-------------------- 1 file changed, 2934 insertions(+), 2911 deletions(-) diff --git a/Resources/Maps/box.yml b/Resources/Maps/box.yml index d52bced1cd..581a3077f1 100644 --- a/Resources/Maps/box.yml +++ b/Resources/Maps/box.yml @@ -387,1796 +387,1796 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 3085: 30,-34 - 3086: 32,-34 + 3063: 30,-34 + 3064: 32,-34 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: - 1472: -24,-18 - 1473: -24,-16 + 1471: -24,-18 + 1472: -24,-16 - node: color: '#FFFFFFFF' id: Arrows decals: - 2066: 73,-55 + 2045: 73,-55 - node: color: '#FFFFFFFF' id: ArrowsGreyscale decals: - 596: -25,-66 + 595: -25,-66 - node: color: '#FFFFFFFF' id: Bot decals: - 470: 10,37 - 471: 10,38 - 472: 10,39 - 473: 10,40 - 474: 10,41 - 475: 6,41 - 476: 8,37 - 477: 8,38 - 478: 8,39 - 479: 8,40 - 562: -39,1 - 670: -23,-24 - 671: -38,-23 - 672: -37,-23 - 673: -36,-23 - 674: -35,-23 - 675: -38,-25 - 676: -37,-25 - 677: -36,-25 - 678: -35,-25 - 679: -35,-27 - 680: -36,-27 - 681: -37,-27 - 682: -38,-27 - 739: -14,-24 - 740: -14,-25 - 741: -14,-26 - 742: -14,-27 - 743: -14,-28 - 924: 76,-37 - 925: 77,-37 - 926: 77,-36 - 927: 76,-36 - 928: 76,-35 - 929: 77,-35 - 930: 77,-34 - 931: 76,-34 - 932: 76,-33 - 933: 77,-33 - 945: 61,-21 - 946: 61,-23 - 1193: 6,-42 - 1194: 5,-42 - 1195: 4,-42 - 1196: 3,-42 - 1197: 3,-41 - 1198: 4,-41 - 1199: 5,-41 - 1200: 6,-41 - 1324: 81,-6 - 1325: 81,-4 - 1326: 81,-12 - 1327: 81,-14 - 1420: 63,-56 - 1421: 62,-56 - 1422: 61,-56 - 1423: 60,-56 - 1460: 7,-42 - 1461: 7,-41 - 1471: -23,-16 - 1476: -25,-18 - 1477: -25,-16 - 1585: 59,-38 - 1586: 59,-37 - 1587: 60,-37 - 1588: 60,-38 - 1589: 61,-38 - 1590: 61,-37 - 1591: 62,-37 - 1592: 62,-38 - 2061: 72,-58 - 2062: 72,-57 - 2063: 73,-58 - 2064: 74,-58 - 2065: 74,-57 - 2161: 45,-29 - 2162: 45,-27 - 2163: 43,-27 - 2954: -73,8 - 2955: -74,8 - 2956: -75,8 - 2957: -76,8 - 2958: -73,-4 - 2959: -74,-4 - 2960: -75,-4 - 2961: -76,-4 - 3084: 33,-33 + 469: 10,37 + 470: 10,38 + 471: 10,39 + 472: 10,40 + 473: 10,41 + 474: 6,41 + 475: 8,37 + 476: 8,38 + 477: 8,39 + 478: 8,40 + 561: -39,1 + 669: -23,-24 + 670: -38,-23 + 671: -37,-23 + 672: -36,-23 + 673: -35,-23 + 674: -38,-25 + 675: -37,-25 + 676: -36,-25 + 677: -35,-25 + 678: -35,-27 + 679: -36,-27 + 680: -37,-27 + 681: -38,-27 + 738: -14,-24 + 739: -14,-25 + 740: -14,-26 + 741: -14,-27 + 742: -14,-28 + 923: 76,-37 + 924: 77,-37 + 925: 77,-36 + 926: 76,-36 + 927: 76,-35 + 928: 77,-35 + 929: 77,-34 + 930: 76,-34 + 931: 76,-33 + 932: 77,-33 + 944: 61,-21 + 945: 61,-23 + 1192: 6,-42 + 1193: 5,-42 + 1194: 4,-42 + 1195: 3,-42 + 1196: 3,-41 + 1197: 4,-41 + 1198: 5,-41 + 1199: 6,-41 + 1323: 81,-6 + 1324: 81,-4 + 1325: 81,-12 + 1326: 81,-14 + 1419: 63,-56 + 1420: 62,-56 + 1421: 61,-56 + 1422: 60,-56 + 1459: 7,-42 + 1460: 7,-41 + 1470: -23,-16 + 1475: -25,-18 + 1476: -25,-16 + 1584: 59,-38 + 1585: 59,-37 + 1586: 60,-37 + 1587: 60,-38 + 1588: 61,-38 + 1589: 61,-37 + 1590: 62,-37 + 1591: 62,-38 + 2040: 72,-58 + 2041: 72,-57 + 2042: 73,-58 + 2043: 74,-58 + 2044: 74,-57 + 2140: 45,-29 + 2141: 45,-27 + 2142: 43,-27 + 2933: -73,8 + 2934: -74,8 + 2935: -75,8 + 2936: -76,8 + 2937: -73,-4 + 2938: -74,-4 + 2939: -75,-4 + 2940: -76,-4 + 3062: 33,-33 - node: color: '#FFFFFFFF' id: BotGreyscale decals: - 593: -26,-69 - 594: -26,-68 - 595: -26,-67 - 1391: -1,-22 - 1392: -2,-21 - 1393: -1,-20 - 1394: 0,-21 - 1411: -2,-14 - 1412: 0,-14 + 592: -26,-69 + 593: -26,-68 + 594: -26,-67 + 1390: -1,-22 + 1391: -2,-21 + 1392: -1,-20 + 1393: 0,-21 + 1410: -2,-14 + 1411: 0,-14 - node: color: '#FFFFFFFF' id: BotLeft decals: - 2310: 55,-32 + 2289: 55,-32 - node: color: '#FFFFFFFF' id: BotLeftGreyscale decals: - 591: -24,-67 - 1389: 0,-20 - 1390: -2,-22 + 590: -24,-67 + 1388: 0,-20 + 1389: -2,-22 - node: color: '#DE3A3A96' id: BotRight decals: - 1979: -9,41 - 1980: -9,40 - 1981: -9,39 + 1958: -9,41 + 1959: -9,40 + 1960: -9,39 - node: color: '#FFFFFFFF' id: BotRightGreyscale decals: - 592: -24,-69 - 1387: 0,-22 - 1388: -2,-20 + 591: -24,-69 + 1386: 0,-22 + 1387: -2,-20 - node: color: '#FFFFFFFF' id: BrickTileDarkBox decals: - 2692: -3,-17 - 2693: -1,-17 - 2694: 1,-17 + 2671: -3,-17 + 2672: -1,-17 + 2673: 1,-17 - node: color: '#D381C996' id: BrickTileSteelCornerNe decals: - 2041: 74,-51 + 2020: 74,-51 - node: color: '#D381C996' id: BrickTileSteelCornerNw decals: - 2038: 71,-51 - 2047: 78,-51 + 2017: 71,-51 + 2026: 78,-51 - node: color: '#D381C996' id: BrickTileSteelCornerSe decals: - 2301: 46,-26 + 2280: 46,-26 - node: color: '#D381C996' id: BrickTileSteelCornerSw decals: - 2300: 44,-26 + 2279: 44,-26 - node: color: '#D381C996' id: BrickTileSteelInnerNe decals: - 2050: 74,-53 + 2029: 74,-53 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNe decals: - 3060: 28,-36 + 3038: 28,-36 - node: color: '#D381C996' id: BrickTileSteelInnerNw decals: - 2051: 78,-53 + 2030: 78,-53 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNw decals: - 3059: 34,-36 + 3037: 34,-36 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSw decals: - 3095: 46,-53 + 3073: 46,-53 - node: color: '#D381C996' id: BrickTileSteelLineE decals: - 2042: 74,-52 + 2021: 74,-52 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE decals: - 3051: 28,-33 - 3052: 28,-34 - 3053: 28,-35 + 3029: 28,-33 + 3030: 28,-34 + 3031: 28,-35 - node: color: '#D381C996' id: BrickTileSteelLineN decals: - 2039: 72,-51 - 2040: 73,-51 - 2043: 75,-53 - 2044: 76,-53 - 2045: 77,-53 - 2048: 79,-51 - 2049: 80,-51 + 2018: 72,-51 + 2019: 73,-51 + 2022: 75,-53 + 2023: 76,-53 + 2024: 77,-53 + 2027: 79,-51 + 2028: 80,-51 - node: color: '#DE3A3A96' id: BrickTileSteelLineN decals: - 1939: -16,45 - 1940: -15,45 - 1941: -13,45 - 1942: -12,45 - 1943: -11,45 - 1944: -10,45 - 1945: -9,45 - 1946: -7,45 - 1947: -6,45 - 1948: -5,45 - 1949: -17,45 - 1950: -19,45 - 1951: -20,45 - 1952: -22,45 - 1953: -23,45 - 1954: -25,45 + 1918: -16,45 + 1919: -15,45 + 1920: -13,45 + 1921: -12,45 + 1922: -11,45 + 1923: -10,45 + 1924: -9,45 + 1925: -7,45 + 1926: -6,45 + 1927: -5,45 + 1928: -17,45 + 1929: -19,45 + 1930: -20,45 + 1931: -22,45 + 1932: -23,45 + 1933: -25,45 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN decals: - 3054: 33,-36 - 3055: 32,-36 - 3056: 31,-36 - 3057: 30,-36 - 3058: 29,-36 + 3032: 33,-36 + 3033: 32,-36 + 3034: 31,-36 + 3035: 30,-36 + 3036: 29,-36 - node: color: '#D381C996' id: BrickTileSteelLineS decals: - 2052: 72,-55 - 2053: 73,-55 - 2054: 74,-55 - 2055: 75,-55 - 2056: 76,-55 - 2057: 77,-55 - 2058: 78,-55 - 2059: 79,-55 - 2060: 80,-55 - 2299: 45,-26 + 2031: 72,-55 + 2032: 73,-55 + 2033: 74,-55 + 2034: 75,-55 + 2035: 76,-55 + 2036: 77,-55 + 2037: 78,-55 + 2038: 79,-55 + 2039: 80,-55 + 2278: 45,-26 - node: color: '#DE3A3A96' id: BrickTileSteelLineS decals: - 1930: -10,43 - 1931: -9,43 - 1932: -8,43 - 1933: -7,43 - 1934: -5,43 - 1935: -12,43 - 1936: -13,43 - 1937: -14,43 - 1938: -16,43 - 1955: -25,43 - 1956: -23,43 - 1957: -21,43 - 1958: -20,43 - 1959: -18,43 - 1960: -17,43 + 1909: -10,43 + 1910: -9,43 + 1911: -8,43 + 1912: -7,43 + 1913: -5,43 + 1914: -12,43 + 1915: -13,43 + 1916: -14,43 + 1917: -16,43 + 1934: -25,43 + 1935: -23,43 + 1936: -21,43 + 1937: -20,43 + 1938: -18,43 + 1939: -17,43 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS decals: - 3092: 45,-53 - 3093: 44,-53 - 3094: 43,-53 + 3070: 45,-53 + 3071: 44,-53 + 3072: 43,-53 - node: color: '#D381C996' id: BrickTileSteelLineW decals: - 2036: 71,-53 - 2037: 71,-52 - 2046: 78,-52 + 2015: 71,-53 + 2016: 71,-52 + 2025: 78,-52 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW decals: - 3083: 34,-35 - 3091: 46,-54 + 3061: 34,-35 + 3069: 46,-54 - node: color: '#D4D4D428' id: BrickTileWhiteBox decals: - 2926: -16,-56 - 2927: -16,-52 + 2905: -16,-56 + 2906: -16,-52 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNe decals: - 1863: -7,-12 - 2757: -10,-14 - 2922: -6,-51 + 1842: -7,-12 + 2736: -10,-14 + 2901: -6,-51 - node: color: '#52B4E996' id: BrickTileWhiteCornerNe decals: - 2165: 41,-27 - 2296: 54,-24 - 2896: -15,-50 + 2144: 41,-27 + 2275: 54,-24 + 2875: -15,-50 - node: color: '#9FED5896' id: BrickTileWhiteCornerNe decals: - 1843: 48,-4 + 1822: 48,-4 - node: color: '#D381C996' id: BrickTileWhiteCornerNe decals: - 2030: 70,-51 + 2009: 70,-51 - node: color: '#D4D4D496' id: BrickTileWhiteCornerNe decals: - 2910: -12,-57 + 2889: -12,-57 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNe decals: - 2906: -15,-57 + 2885: -15,-57 - node: color: '#EFB34196' id: BrickTileWhiteCornerNe decals: - 2072: -4,9 - 2902: -12,-50 + 2051: -4,9 + 2881: -12,-50 - node: color: '#FFEBAE96' id: BrickTileWhiteCornerNe decals: - 2226: 19,-21 + 2205: 19,-21 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNw decals: - 1857: -14,-12 - 2756: -11,-14 - 2921: -8,-51 + 1836: -14,-12 + 2735: -11,-14 + 2900: -8,-51 - node: color: '#52B4E996' id: BrickTileWhiteCornerNw decals: - 2164: 38,-27 - 2295: 52,-24 - 2895: -16,-50 + 2143: 38,-27 + 2274: 52,-24 + 2874: -16,-50 - node: color: '#9FED5896' id: BrickTileWhiteCornerNw decals: - 1838: 43,-4 + 1817: 43,-4 - node: color: '#D4D4D496' id: BrickTileWhiteCornerNw decals: - 2909: -13,-57 + 2888: -13,-57 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNw decals: - 2305: 44,-23 - 2905: -16,-57 + 2284: 44,-23 + 2884: -16,-57 - node: color: '#EFB34196' id: BrickTileWhiteCornerNw decals: - 2071: -7,9 - 2901: -13,-50 + 2050: -7,9 + 2880: -13,-50 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSe decals: - 1870: -7,-20 - 2758: -10,-16 - 2904: -15,-58 + 1849: -7,-20 + 2737: -10,-16 + 2883: -15,-58 - node: color: '#52B4E996' id: BrickTileWhiteCornerSe decals: - 2166: 41,-30 + 2145: 41,-30 - node: color: '#9FED5896' id: BrickTileWhiteCornerSe decals: - 2907: -12,-58 + 2886: -12,-58 - node: color: '#A4610696' id: BrickTileWhiteCornerSe decals: - 2900: -12,-51 + 2879: -12,-51 - node: color: '#D381C996' id: BrickTileWhiteCornerSe decals: - 2897: -15,-51 + 2876: -15,-51 - node: color: '#EFB34196' id: BrickTileWhiteCornerSe decals: - 2917: -6,-58 + 2896: -6,-58 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSw decals: - 1871: -9,-20 - 2759: -11,-16 - 2903: -16,-58 + 1850: -9,-20 + 2738: -11,-16 + 2882: -16,-58 - node: color: '#52B4E996' id: BrickTileWhiteCornerSw decals: - 2167: 38,-30 + 2146: 38,-30 - node: color: '#9FED5896' id: BrickTileWhiteCornerSw decals: - 2908: -13,-58 + 2887: -13,-58 - node: color: '#A4610696' id: BrickTileWhiteCornerSw decals: - 2899: -13,-51 + 2878: -13,-51 - node: color: '#D381C996' id: BrickTileWhiteCornerSw decals: - 2898: -16,-51 + 2877: -16,-51 - node: color: '#EFB34196' id: BrickTileWhiteCornerSw decals: - 2074: -7,6 - 2915: -8,-58 + 2053: -7,6 + 2894: -8,-58 - node: color: '#EFB34196' id: BrickTileWhiteInnerNe decals: - 2079: -4,6 + 2058: -4,6 - node: color: '#FFEBAE96' id: BrickTileWhiteInnerNe decals: - 2225: 19,-22 + 2204: 19,-22 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSe decals: - 2095: -10,8 + 2074: -10,8 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSw decals: - 1873: -9,-18 - 2094: -14,8 + 1852: -9,-18 + 2073: -14,8 - node: color: '#334E6DC8' id: BrickTileWhiteLineE decals: - 1864: -7,-13 - 1865: -7,-14 - 1866: -7,-15 - 1867: -7,-16 - 1868: -7,-18 - 1869: -7,-19 - 2096: -10,7 - 2097: -10,6 - 2102: -11,2 - 2103: -11,3 - 2760: -10,-15 - 2924: -6,-52 + 1843: -7,-13 + 1844: -7,-14 + 1845: -7,-15 + 1846: -7,-16 + 1847: -7,-18 + 1848: -7,-19 + 2075: -10,7 + 2076: -10,6 + 2081: -11,2 + 2082: -11,3 + 2739: -10,-15 + 2903: -6,-52 - node: color: '#52B4E996' id: BrickTileWhiteLineE decals: - 2294: 54,-25 + 2273: 54,-25 - node: color: '#9FED5896' id: BrickTileWhiteLineE decals: - 1844: 48,-5 - 1845: 48,-6 - 1846: 48,-7 - 1847: 48,-8 - 1848: 48,-9 + 1823: 48,-5 + 1824: 48,-6 + 1825: 48,-7 + 1826: 48,-8 + 1827: 48,-9 - node: color: '#A4610696' id: BrickTileWhiteLineE decals: - 2106: -11,1 - 2973: -27,-17 - 2976: -27,-18 - 2977: -27,-16 + 2085: -11,1 + 2952: -27,-17 + 2955: -27,-18 + 2956: -27,-16 - node: color: '#D381C996' id: BrickTileWhiteLineE decals: - 2027: 70,-54 - 2028: 70,-53 - 2029: 70,-52 + 2006: 70,-54 + 2007: 70,-53 + 2008: 70,-52 - node: color: '#DE3A3A96' id: BrickTileWhiteLineE decals: - 2107: -11,4 - 2302: 46,-25 - 2303: 46,-24 + 2086: -11,4 + 2281: 46,-25 + 2282: 46,-24 - node: color: '#EFB34196' id: BrickTileWhiteLineE decals: - 2077: -4,8 - 2078: -4,7 - 2918: -6,-56 - 2919: -6,-55 - 2920: -6,-54 + 2056: -4,8 + 2057: -4,7 + 2897: -6,-56 + 2898: -6,-55 + 2899: -6,-54 - node: color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 1858: -13,-12 - 1859: -12,-12 - 1860: -11,-12 - 1861: -10,-12 - 1862: -9,-12 - 2085: -9,8 - 2086: -10,8 - 2087: -11,8 - 2088: -12,8 - 2089: -14,8 - 2090: -13,8 - 2091: -15,8 - 2923: -7,-51 + 1837: -13,-12 + 1838: -12,-12 + 1839: -11,-12 + 1840: -10,-12 + 1841: -9,-12 + 2064: -9,8 + 2065: -10,8 + 2066: -11,8 + 2067: -12,8 + 2068: -14,8 + 2069: -13,8 + 2070: -15,8 + 2902: -7,-51 - node: color: '#52B4E996' id: BrickTileWhiteLineN decals: - 2292: 53,-27 - 2297: 53,-24 + 2271: 53,-27 + 2276: 53,-24 - node: color: '#9FED5896' id: BrickTileWhiteLineN decals: - 1839: 44,-4 - 1840: 45,-4 - 1841: 46,-4 - 1842: 47,-4 - 1849: 46,-10 - 1850: 45,-10 + 1818: 44,-4 + 1819: 45,-4 + 1820: 46,-4 + 1821: 47,-4 + 1828: 46,-10 + 1829: 45,-10 - node: color: '#D381C996' id: BrickTileWhiteLineN decals: - 1559: 64,-27 - 1560: 60,-27 - 1561: 59,-27 - 1562: 58,-27 - 1563: 57,-27 - 1564: 56,-27 - 1565: 55,-27 - 1566: 54,-27 - 1573: 74,-26 - 1574: 73,-26 - 1575: 72,-26 - 1576: 71,-26 - 1577: 70,-26 - 1578: 69,-26 - 1579: 70,-44 - 1580: 71,-44 - 1581: 72,-44 - 1582: 73,-44 - 1583: 74,-44 - 1584: 75,-44 - 2031: 69,-51 - 2032: 68,-51 - 2033: 67,-51 - 2034: 65,-51 + 1558: 64,-27 + 1559: 60,-27 + 1560: 59,-27 + 1561: 58,-27 + 1562: 57,-27 + 1563: 56,-27 + 1564: 55,-27 + 1565: 54,-27 + 1572: 74,-26 + 1573: 73,-26 + 1574: 72,-26 + 1575: 71,-26 + 1576: 70,-26 + 1577: 69,-26 + 1578: 70,-44 + 1579: 71,-44 + 1580: 72,-44 + 1581: 73,-44 + 1582: 74,-44 + 1583: 75,-44 + 2010: 69,-51 + 2011: 68,-51 + 2012: 67,-51 + 2013: 65,-51 - node: color: '#DE3A3A96' id: BrickTileWhiteLineN decals: - 1907: -10,36 - 1908: -9,36 - 1909: -12,36 - 1910: -13,36 - 1911: -14,36 - 1912: -15,36 - 1913: -16,36 - 1914: -8,36 - 1915: -7,36 - 1916: -5,36 - 2306: 46,-23 + 1886: -10,36 + 1887: -9,36 + 1888: -12,36 + 1889: -13,36 + 1890: -14,36 + 1891: -15,36 + 1892: -16,36 + 1893: -8,36 + 1894: -7,36 + 1895: -5,36 + 2285: 46,-23 - node: color: '#EFB34196' id: BrickTileWhiteLineN decals: - 2075: -6,9 - 2076: -5,9 + 2054: -6,9 + 2055: -5,9 - node: color: '#FFEBAE96' id: BrickTileWhiteLineN decals: - 2222: 22,-22 - 2223: 21,-22 - 2224: 20,-22 - 2227: 18,-21 + 2201: 22,-22 + 2202: 21,-22 + 2203: 20,-22 + 2206: 18,-21 - node: color: '#334E6DC8' id: BrickTileWhiteLineS decals: - 1874: -10,-18 - 1875: -11,-18 - 1876: -12,-18 - 1877: -13,-18 - 2092: -9,8 - 2093: -15,8 + 1853: -10,-18 + 1854: -11,-18 + 1855: -12,-18 + 1856: -13,-18 + 2071: -9,8 + 2072: -15,8 - node: color: '#52B4E996' id: BrickTileWhiteLineS decals: - 2168: 40,-30 - 2169: 39,-30 - 2709: -11,26 - 2710: -10,26 - 2711: -9,26 + 2147: 40,-30 + 2148: 39,-30 + 2688: -11,26 + 2689: -10,26 + 2690: -9,26 - node: color: '#9FED5896' id: BrickTileWhiteLineS decals: - 2712: -7,26 - 2713: -6,26 - 2714: -5,26 + 2691: -7,26 + 2692: -6,26 + 2693: -5,26 - node: color: '#D381C996' id: BrickTileWhiteLineS decals: - 1549: 64,-28 - 1550: 63,-28 - 1551: 62,-28 - 1552: 60,-28 - 1553: 59,-28 - 1554: 58,-28 - 1555: 56,-28 - 1556: 57,-28 - 1557: 54,-28 - 1558: 53,-28 - 1568: 57,-25 - 1569: 58,-25 - 1570: 59,-25 - 1571: 60,-25 - 1572: 56,-25 + 1548: 64,-28 + 1549: 63,-28 + 1550: 62,-28 + 1551: 60,-28 + 1552: 59,-28 + 1553: 58,-28 + 1554: 56,-28 + 1555: 57,-28 + 1556: 54,-28 + 1557: 53,-28 + 1567: 57,-25 + 1568: 58,-25 + 1569: 59,-25 + 1570: 60,-25 + 1571: 56,-25 - node: color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 1921: -8,34 - 1922: -9,34 - 1923: -10,34 - 1924: -11,34 - 1925: -12,34 - 1926: -13,34 - 1927: -14,34 - 1928: -16,34 - 2718: -4,26 - 2719: 0,26 - 2720: -8,26 - 2721: -12,26 - 2722: -13,26 - 2723: 1,26 - 2724: 2,26 - 2725: 3,26 - 2726: 5,26 - 2727: 10,26 - 2728: 8,26 - 2729: 7,26 + 1900: -8,34 + 1901: -9,34 + 1902: -10,34 + 1903: -11,34 + 1904: -12,34 + 1905: -13,34 + 1906: -14,34 + 1907: -16,34 + 2697: -4,26 + 2698: 0,26 + 2699: -8,26 + 2700: -12,26 + 2701: -13,26 + 2702: 1,26 + 2703: 2,26 + 2704: 3,26 + 2705: 5,26 + 2706: 10,26 + 2707: 8,26 + 2708: 7,26 - node: color: '#EFB34196' id: BrickTileWhiteLineS decals: - 2073: -5,6 - 2715: -3,26 - 2716: -2,26 - 2717: -1,26 - 2916: -7,-58 + 2052: -5,6 + 2694: -3,26 + 2695: -2,26 + 2696: -1,26 + 2895: -7,-58 - node: color: '#334E6DC8' id: BrickTileWhiteLineW decals: - 1851: -14,-18 - 1852: -14,-17 - 1853: -14,-16 - 1854: -14,-15 - 1855: -14,-14 - 1856: -14,-13 - 1872: -9,-19 - 2098: -14,6 - 2099: -14,7 - 2100: -13,2 - 2101: -13,3 - 2451: -19,-13 - 2452: -19,-12 - 2453: -19,-11 - 2454: -19,-10 - 2778: 14,-27 - 2779: 14,-25 - 2925: -8,-52 - 2979: -19,-14 + 1830: -14,-18 + 1831: -14,-17 + 1832: -14,-16 + 1833: -14,-15 + 1834: -14,-14 + 1835: -14,-13 + 1851: -9,-19 + 2077: -14,6 + 2078: -14,7 + 2079: -13,2 + 2080: -13,3 + 2430: -19,-13 + 2431: -19,-12 + 2432: -19,-11 + 2433: -19,-10 + 2757: 14,-27 + 2758: 14,-25 + 2904: -8,-52 + 2958: -19,-14 - node: color: '#52B4E996' id: BrickTileWhiteLineW decals: - 2104: -13,4 - 2170: 38,-29 - 2171: 38,-28 - 2298: 52,-25 + 2083: -13,4 + 2149: 38,-29 + 2150: 38,-28 + 2277: 52,-25 - node: color: '#9FED5896' id: BrickTileWhiteLineW decals: - 1833: 43,-9 - 1834: 43,-8 - 1835: 43,-7 - 1836: 43,-6 - 1837: 43,-5 + 1812: 43,-9 + 1813: 43,-8 + 1814: 43,-7 + 1815: 43,-6 + 1816: 43,-5 - node: color: '#D381C996' id: BrickTileWhiteLineW decals: - 2105: -13,1 + 2084: -13,1 - node: color: '#DE3A3A96' id: BrickTileWhiteLineW decals: - 2304: 44,-25 + 2283: 44,-25 - node: color: '#EFB34196' id: BrickTileWhiteLineW decals: - 1641: 3,-46 - 1642: 3,-45 - 1643: 3,-44 - 2070: -7,7 - 2912: -8,-55 - 2913: -8,-56 - 2914: -8,-57 + 1620: 3,-46 + 1621: 3,-45 + 1622: 3,-44 + 2049: -7,7 + 2891: -8,-55 + 2892: -8,-56 + 2893: -8,-57 - node: color: '#FFFFFFFF' id: Busha3 decals: - 2699: 23.265696,-6.086069 + 2678: 23.265696,-6.086069 - node: color: '#FFFFFFFF' id: Bushb1 decals: - 750: -14.963916,-26.286882 + 749: -14.963916,-26.286882 - node: color: '#FFFFFFFF' id: Bushc1 decals: - 2698: 23.78132,-6.836069 + 2677: 23.78132,-6.836069 - node: color: '#FFFFFFFF' id: Bushe3 decals: - 1897: 6.4905357,-24.138845 + 1876: 6.4905357,-24.138845 - node: color: '#FFFFFFFF' id: Bushe4 decals: - 758: -15.010791,-24.240007 - 1898: 8.037411,-24.076345 + 757: -15.010791,-24.240007 + 1877: 8.037411,-24.076345 - node: color: '#FFFFFFFF' id: Bushg2 decals: - 757: -14.963916,-26.974382 + 756: -14.963916,-26.974382 - node: color: '#FFFFFFFF' id: Bushh3 decals: - 756: -15.026416,-24.552507 + 755: -15.026416,-24.552507 - node: color: '#FFFFFFFF' id: Bushi1 decals: - 1517: 44.560696,-52.296127 + 1516: 44.560696,-52.296127 - node: color: '#FFFFFFFF' id: Bushi3 decals: - 1518: 47.01382,-53.968002 + 1517: 47.01382,-53.968002 - node: color: '#FFFFFFFF' id: Bushj3 decals: - 1516: 45.623196,-52.499252 - 1899: 6.9749107,-24.013845 + 1515: 45.623196,-52.499252 + 1878: 6.9749107,-24.013845 - node: color: '#FFFFFFFF' id: Bushl4 decals: - 1895: 7.9749107,-24.107595 + 1874: 7.9749107,-24.107595 - node: color: '#FFFFFFFF' id: Bushm1 decals: - 1896: 6.1780357,-24.02947 + 1875: 6.1780357,-24.02947 - node: color: '#FFFFFFFF' id: Bushn1 decals: - 761: -14.995166,-24.818132 + 760: -14.995166,-24.818132 - node: color: '#FFFFFFFF' id: Caution decals: - 2291: 66,-22 - 3089: 31,-34 + 2270: 66,-22 + 3067: 31,-34 - node: color: '#52B4E996' id: CheckerNESW decals: - 199: 34,-46 - 200: 34,-47 - 201: 35,-46 - 202: 35,-47 - 203: 36,-46 - 204: 36,-47 - 205: 37,-46 - 206: 37,-47 - 207: 38,-47 - 208: 34,-49 - 209: 34,-50 - 210: 35,-49 - 211: 35,-50 - 212: 36,-49 - 213: 36,-50 - 214: 37,-49 - 215: 37,-50 - 216: 38,-50 - 217: 43,-58 - 218: 47,-58 - 1507: 19,-36 - 1508: 21,-34 - 1652: 1,-48 - 2176: 43,-48 - 2177: 44,-48 - 2178: 45,-48 - 2179: 46,-48 - 2180: 46,-47 - 2181: 45,-47 - 2182: 44,-47 - 2183: 43,-47 - 2184: 43,-46 - 2185: 44,-46 - 2186: 45,-46 - 2187: 46,-46 - 2188: 46,-45 - 2189: 45,-45 - 2190: 44,-45 - 2191: 43,-45 - 2192: 42,-46 + 198: 34,-46 + 199: 34,-47 + 200: 35,-46 + 201: 35,-47 + 202: 36,-46 + 203: 36,-47 + 204: 37,-46 + 205: 37,-47 + 206: 38,-47 + 207: 34,-49 + 208: 34,-50 + 209: 35,-49 + 210: 35,-50 + 211: 36,-49 + 212: 36,-50 + 213: 37,-49 + 214: 37,-50 + 215: 38,-50 + 216: 43,-58 + 217: 47,-58 + 1506: 19,-36 + 1507: 21,-34 + 1631: 1,-48 + 2155: 43,-48 + 2156: 44,-48 + 2157: 45,-48 + 2158: 46,-48 + 2159: 46,-47 + 2160: 45,-47 + 2161: 44,-47 + 2162: 43,-47 + 2163: 43,-46 + 2164: 44,-46 + 2165: 45,-46 + 2166: 46,-46 + 2167: 46,-45 + 2168: 45,-45 + 2169: 44,-45 + 2170: 43,-45 + 2171: 42,-46 - node: color: '#92929B96' id: CheckerNESW decals: - 1785: 34,-10 - 1786: 34,-9 - 1787: 33,-10 - 1788: 33,-9 - 1789: 33,-8 - 1790: 33,-7 - 1791: 33,-6 - 1792: 34,-8 - 1793: 34,-7 - 1794: 34,-6 - 1795: 34,-5 - 1796: 33,-5 - 1797: 35,-5 - 1798: 35,-6 - 1799: 35,-7 - 1800: 35,-8 - 1801: 35,-9 - 1802: 35,-10 - 1803: 36,-10 - 1804: 36,-9 - 1805: 36,-8 - 1806: 36,-7 - 1807: 36,-6 - 1808: 36,-5 - 1809: 37,-5 - 1810: 37,-6 - 1811: 37,-7 - 1812: 37,-8 - 1813: 37,-9 - 1814: 37,-10 - 1815: 38,-10 - 1816: 38,-9 - 1817: 38,-8 - 1818: 38,-7 - 1819: 38,-6 - 1820: 38,-5 - 1821: 39,-5 - 1822: 39,-6 - 1823: 39,-7 - 1824: 39,-8 - 1825: 39,-9 - 1826: 39,-10 - 1827: 40,-10 - 1828: 40,-9 - 1829: 40,-8 - 1830: 40,-7 - 1831: 40,-6 - 1832: 40,-5 + 1764: 34,-10 + 1765: 34,-9 + 1766: 33,-10 + 1767: 33,-9 + 1768: 33,-8 + 1769: 33,-7 + 1770: 33,-6 + 1771: 34,-8 + 1772: 34,-7 + 1773: 34,-6 + 1774: 34,-5 + 1775: 33,-5 + 1776: 35,-5 + 1777: 35,-6 + 1778: 35,-7 + 1779: 35,-8 + 1780: 35,-9 + 1781: 35,-10 + 1782: 36,-10 + 1783: 36,-9 + 1784: 36,-8 + 1785: 36,-7 + 1786: 36,-6 + 1787: 36,-5 + 1788: 37,-5 + 1789: 37,-6 + 1790: 37,-7 + 1791: 37,-8 + 1792: 37,-9 + 1793: 37,-10 + 1794: 38,-10 + 1795: 38,-9 + 1796: 38,-8 + 1797: 38,-7 + 1798: 38,-6 + 1799: 38,-5 + 1800: 39,-5 + 1801: 39,-6 + 1802: 39,-7 + 1803: 39,-8 + 1804: 39,-9 + 1805: 39,-10 + 1806: 40,-10 + 1807: 40,-9 + 1808: 40,-8 + 1809: 40,-7 + 1810: 40,-6 + 1811: 40,-5 - node: color: '#9D9D97FF' id: CheckerNESW decals: - 891: 69,-37 - 892: 69,-38 - 893: 70,-38 - 894: 70,-37 - 895: 71,-38 - 896: 71,-37 - 897: 72,-37 - 898: 72,-38 - 899: 73,-38 - 900: 73,-37 - 901: 74,-38 - 902: 74,-37 - 903: 71,-36 - 904: 70,-36 - 905: 69,-36 - 906: 69,-35 - 907: 70,-35 - 908: 71,-35 - 909: 71,-34 - 910: 70,-34 - 911: 69,-34 + 890: 69,-37 + 891: 69,-38 + 892: 70,-38 + 893: 70,-37 + 894: 71,-38 + 895: 71,-37 + 896: 72,-37 + 897: 72,-38 + 898: 73,-38 + 899: 73,-37 + 900: 74,-38 + 901: 74,-37 + 902: 71,-36 + 903: 70,-36 + 904: 69,-36 + 905: 69,-35 + 906: 70,-35 + 907: 71,-35 + 908: 71,-34 + 909: 70,-34 + 910: 69,-34 - node: color: '#D381C996' id: CheckerNESW decals: - 458: 68,-37 - 2119: 49,-28 - 2129: 44,-30 - 2130: 45,-30 - 2131: 46,-30 - 2132: 46,-29 - 2133: 46,-28 - 2134: 45,-28 - 2135: 44,-28 - 2136: 44,-29 - 2137: 45,-29 - 2314: 61,-32 - 2315: 61,-31 - 2316: 61,-30 - 2317: 62,-30 - 2318: 63,-30 - 2319: 63,-31 - 2320: 62,-31 - 2321: 62,-32 - 2322: 63,-32 + 457: 68,-37 + 2098: 49,-28 + 2108: 44,-30 + 2109: 45,-30 + 2110: 46,-30 + 2111: 46,-29 + 2112: 46,-28 + 2113: 45,-28 + 2114: 44,-28 + 2115: 44,-29 + 2116: 45,-29 + 2293: 61,-32 + 2294: 61,-31 + 2295: 61,-30 + 2296: 62,-30 + 2297: 63,-30 + 2298: 63,-31 + 2299: 62,-31 + 2300: 62,-32 + 2301: 63,-32 - node: color: '#D4D4D428' id: CheckerNESW decals: - 890: 69,-38 + 889: 69,-38 - node: color: '#DE3A3A96' id: CheckerNESW decals: - 1650: 1,-50 - 1651: 1,-49 + 1629: 1,-50 + 1630: 1,-49 - node: color: '#EFB34196' id: CheckerNESW decals: - 347: 1,-60 - 348: 2,-60 - 349: 3,-60 - 350: 4,-60 - 351: 4,-61 - 352: 3,-61 - 353: 2,-61 - 354: 1,-62 - 355: 2,-62 - 356: 3,-62 - 357: 4,-62 - 358: 4,-63 - 359: 3,-63 - 360: 2,-63 - 361: 1,-63 - 362: 1,-64 - 363: 2,-64 - 364: 3,-64 - 365: 4,-64 - 366: 5,-65 - 1250: 1,-42 + 346: 1,-60 + 347: 2,-60 + 348: 3,-60 + 349: 4,-60 + 350: 4,-61 + 351: 3,-61 + 352: 2,-61 + 353: 1,-62 + 354: 2,-62 + 355: 3,-62 + 356: 4,-62 + 357: 4,-63 + 358: 3,-63 + 359: 2,-63 + 360: 1,-63 + 361: 1,-64 + 362: 2,-64 + 363: 3,-64 + 364: 4,-64 + 365: 5,-65 + 1249: 1,-42 - node: color: '#FFEBAE96' id: CheckerNESW decals: - 2193: 21,-21 - 2194: 22,-21 - 2195: 22,-20 - 2196: 21,-20 - 2197: 21,-19 - 2198: 22,-19 - 2199: 22,-18 - 2200: 21,-18 - 2201: 21,-17 - 2202: 22,-17 - 2203: 19,-19 - 2204: 19,-18 - 2205: 18,-18 - 2206: 18,-19 - 2207: 18,-17 - 2208: 19,-17 + 2172: 21,-21 + 2173: 22,-21 + 2174: 22,-20 + 2175: 21,-20 + 2176: 21,-19 + 2177: 22,-19 + 2178: 22,-18 + 2179: 21,-18 + 2180: 21,-17 + 2181: 22,-17 + 2182: 19,-19 + 2183: 19,-18 + 2184: 18,-18 + 2185: 18,-19 + 2186: 18,-17 + 2187: 19,-17 - node: color: '#334E6DC8' id: CheckerNWSE decals: - 762: -25,-14 - 763: -25,-13 - 764: -25,-12 - 765: -25,-11 - 766: -25,-10 - 767: -24,-10 - 768: -23,-10 - 769: -22,-10 - 770: -21,-10 - 771: -21,-11 - 772: -21,-12 - 773: -21,-13 - 774: -21,-14 - 775: -22,-14 - 776: -23,-14 - 777: -24,-14 - 778: -24,-13 - 779: -24,-12 - 780: -24,-11 - 781: -23,-11 - 782: -22,-11 - 783: -22,-12 - 784: -22,-13 - 785: -23,-13 - 786: -23,-12 + 761: -25,-14 + 762: -25,-13 + 763: -25,-12 + 764: -25,-11 + 765: -25,-10 + 766: -24,-10 + 767: -23,-10 + 768: -22,-10 + 769: -21,-10 + 770: -21,-11 + 771: -21,-12 + 772: -21,-13 + 773: -21,-14 + 774: -22,-14 + 775: -23,-14 + 776: -24,-14 + 777: -24,-13 + 778: -24,-12 + 779: -24,-11 + 780: -23,-11 + 781: -22,-11 + 782: -22,-12 + 783: -22,-13 + 784: -23,-13 + 785: -23,-12 - node: color: '#474F52FF' id: CheckerNWSE decals: - 1245: 1,-41 - 1247: 1,-44 + 1244: 1,-41 + 1246: 1,-44 - node: color: '#52B4E996' id: CheckerNWSE decals: - 1056: 28,-22 - 1057: 28,-21 - 1058: 29,-21 - 1059: 29,-22 - 1060: 30,-22 - 1061: 30,-21 - 1062: 31,-21 - 1063: 31,-22 - 1064: 32,-22 - 1065: 32,-21 - 1505: 21,-36 - 1506: 19,-34 - 2256: 49,-38 - 2257: 49,-37 - 2258: 49,-36 - 2259: 49,-35 - 2260: 49,-34 + 1055: 28,-22 + 1056: 28,-21 + 1057: 29,-21 + 1058: 29,-22 + 1059: 30,-22 + 1060: 30,-21 + 1061: 31,-21 + 1062: 31,-22 + 1063: 32,-22 + 1064: 32,-21 + 1504: 21,-36 + 1505: 19,-34 + 2235: 49,-38 + 2236: 49,-37 + 2237: 49,-36 + 2238: 49,-35 + 2239: 49,-34 - node: color: '#9FED5896' id: CheckerNWSE decals: - 597: -52,-5 - 598: -51,-5 - 599: -50,-5 - 992: 43,-61 - 993: 43,-60 - 994: 43,-59 - 995: 44,-59 - 996: 44,-60 - 997: 44,-61 - 998: 46,-61 - 999: 46,-60 - 1000: 46,-59 - 1001: 47,-59 - 1002: 47,-60 - 1003: 47,-61 + 596: -52,-5 + 597: -51,-5 + 598: -50,-5 + 991: 43,-61 + 992: 43,-60 + 993: 43,-59 + 994: 44,-59 + 995: 44,-60 + 996: 44,-61 + 997: 46,-61 + 998: 46,-60 + 999: 46,-59 + 1000: 47,-59 + 1001: 47,-60 + 1002: 47,-61 - node: color: '#A4610696' id: CheckerNWSE decals: - 649: -35,-32 - 650: -35,-31 - 651: -35,-30 - 652: -34,-30 - 653: -34,-31 - 654: -34,-32 - 655: -33,-32 - 656: -33,-31 - 657: -33,-30 - 658: -32,-30 - 659: -32,-31 - 660: -32,-32 - 661: -31,-32 - 662: -31,-31 - 663: -31,-30 + 648: -35,-32 + 649: -35,-31 + 650: -35,-30 + 651: -34,-30 + 652: -34,-31 + 653: -34,-32 + 654: -33,-32 + 655: -33,-31 + 656: -33,-30 + 657: -32,-30 + 658: -32,-31 + 659: -32,-32 + 660: -31,-32 + 661: -31,-31 + 662: -31,-30 - node: color: '#D381C996' id: CheckerNWSE decals: - 1533: 82,-25 - 1534: 82,-24 - 1535: 81,-24 - 1536: 81,-25 - 1537: 80,-25 - 1538: 80,-24 - 1539: 79,-24 - 1540: 79,-25 - 1541: 78,-25 - 1542: 78,-24 - 1543: 77,-24 - 1544: 76,-24 - 1545: 76,-25 - 1546: 77,-25 + 1532: 82,-25 + 1533: 82,-24 + 1534: 81,-24 + 1535: 81,-25 + 1536: 80,-25 + 1537: 80,-24 + 1538: 79,-24 + 1539: 79,-25 + 1540: 78,-25 + 1541: 78,-24 + 1542: 77,-24 + 1543: 76,-24 + 1544: 76,-25 + 1545: 77,-25 - node: color: '#D4D4D496' id: CheckerNWSE decals: - 1647: 1,-50 - 1648: 1,-49 - 1649: 1,-48 + 1626: 1,-50 + 1627: 1,-49 + 1628: 1,-48 - node: color: '#EFB34196' id: CheckerNWSE decals: - 1259: 7,-54 - 1260: 7,-53 - 1261: 7,-52 - 1262: 7,-51 - 1263: 8,-51 - 1264: 8,-52 - 1265: 8,-53 - 1266: 8,-54 - 1267: 9,-54 - 1268: 9,-53 - 1269: 9,-52 - 1270: 9,-51 - 1706: 2,-54 - 2080: -7,3 - 2081: -7,4 - 2082: -6,4 - 2083: -6,3 + 1258: 7,-54 + 1259: 7,-53 + 1260: 7,-52 + 1261: 7,-51 + 1262: 8,-51 + 1263: 8,-52 + 1264: 8,-53 + 1265: 8,-54 + 1266: 9,-54 + 1267: 9,-53 + 1268: 9,-52 + 1269: 9,-51 + 1685: 2,-54 + 2059: -7,3 + 2060: -7,4 + 2061: -6,4 + 2062: -6,3 - node: color: '#FFFFFFFF' id: Delivery decals: - 563: -40,1 - 574: 8,-63 - 575: 9,-63 - 576: 7,-63 - 603: 9,-10 - 604: 9,-9 - 605: 9,-8 - 606: -11,-10 - 607: -11,-9 - 608: -11,-8 - 623: -39,-14 - 624: -40,-14 - 625: -40,-13 - 626: -39,-13 - 627: -39,-12 - 628: -40,-12 - 629: -40,-11 - 630: -39,-11 - 669: -23,-23 - 683: -39,-27 - 684: -39,-25 - 685: -39,-23 - 738: -14,-23 - 940: 63,-34 - 941: 62,-34 - 942: 61,-34 - 943: 60,-34 - 944: 59,-34 - 1169: 35,-16 - 1170: 34,-16 - 1171: 33,-16 - 1172: 25,-16 - 1173: 26,-16 - 1174: 27,-16 - 1320: 82,-14 - 1321: 82,-12 - 1322: 82,-6 - 1323: 82,-4 - 1474: -26,-18 - 1475: -26,-16 - 1478: 28,-30 - 1479: 28,-29 - 1480: 34,-30 - 1481: 34,-29 - 1482: 35,-27 - 1483: 36,-27 - 1484: 25,-27 - 1485: 26,-27 - 1486: 23,-26 - 1487: 23,-25 - 1488: 39,-38 - 1489: 40,-38 - 1490: 41,-38 - 2780: 14,-24 - 2781: 15,-24 - 2782: 16,-24 - 2783: 16,-11 - 2784: 15,-11 - 2785: 14,-11 - 2786: 8,-32 - 2787: 8,-31 - 2788: 8,-30 - 2789: -10,-32 - 2790: -10,-31 - 2791: -10,-30 - 2792: -16,-21 - 2793: -17,-21 - 2794: -7,-3 - 2795: -7,-2 - 2796: -7,-1 - 2797: 5,-3 - 2798: 5,-2 - 2799: 5,-1 - 2980: -18,-21 - 3087: 30,-33 - 3088: 32,-33 + 562: -40,1 + 573: 8,-63 + 574: 9,-63 + 575: 7,-63 + 602: 9,-10 + 603: 9,-9 + 604: 9,-8 + 605: -11,-10 + 606: -11,-9 + 607: -11,-8 + 622: -39,-14 + 623: -40,-14 + 624: -40,-13 + 625: -39,-13 + 626: -39,-12 + 627: -40,-12 + 628: -40,-11 + 629: -39,-11 + 668: -23,-23 + 682: -39,-27 + 683: -39,-25 + 684: -39,-23 + 737: -14,-23 + 939: 63,-34 + 940: 62,-34 + 941: 61,-34 + 942: 60,-34 + 943: 59,-34 + 1168: 35,-16 + 1169: 34,-16 + 1170: 33,-16 + 1171: 25,-16 + 1172: 26,-16 + 1173: 27,-16 + 1319: 82,-14 + 1320: 82,-12 + 1321: 82,-6 + 1322: 82,-4 + 1473: -26,-18 + 1474: -26,-16 + 1477: 28,-30 + 1478: 28,-29 + 1479: 34,-30 + 1480: 34,-29 + 1481: 35,-27 + 1482: 36,-27 + 1483: 25,-27 + 1484: 26,-27 + 1485: 23,-26 + 1486: 23,-25 + 1487: 39,-38 + 1488: 40,-38 + 1489: 41,-38 + 2759: 14,-24 + 2760: 15,-24 + 2761: 16,-24 + 2762: 16,-11 + 2763: 15,-11 + 2764: 14,-11 + 2765: 8,-32 + 2766: 8,-31 + 2767: 8,-30 + 2768: -10,-32 + 2769: -10,-31 + 2770: -10,-30 + 2771: -16,-21 + 2772: -17,-21 + 2773: -7,-3 + 2774: -7,-2 + 2775: -7,-1 + 2776: 5,-3 + 2777: 5,-2 + 2778: 5,-1 + 2959: -18,-21 + 3065: 30,-33 + 3066: 32,-33 - node: cleanable: True color: '#474F52FF' id: Dirt decals: - 266: -33,-11 - 267: -32,-11 - 268: -31,-11 - 269: -30,-11 - 270: -30,-12 - 271: -31,-12 - 272: -32,-12 - 273: -33,-12 - 274: -33,-13 - 275: -32,-13 - 276: -31,-13 - 277: -30,-13 - 278: -30,-14 - 279: -31,-14 - 280: -32,-14 - 281: -33,-14 - 282: -33,-15 - 283: -32,-15 - 284: -31,-15 - 285: -30,-15 - 286: -30,-16 - 287: -31,-16 - 288: -32,-16 - 289: -33,-16 - 290: -33,-17 - 291: -32,-17 - 292: -31,-17 - 293: -30,-17 - 319: -6,-46 - 320: -3,-44 - 463: 59,-34 - 464: 60,-34 - 465: 61,-34 - 466: 62,-34 - 467: 63,-34 - 468: 64,-36 + 265: -33,-11 + 266: -32,-11 + 267: -31,-11 + 268: -30,-11 + 269: -30,-12 + 270: -31,-12 + 271: -32,-12 + 272: -33,-12 + 273: -33,-13 + 274: -32,-13 + 275: -31,-13 + 276: -30,-13 + 277: -30,-14 + 278: -31,-14 + 279: -32,-14 + 280: -33,-14 + 281: -33,-15 + 282: -32,-15 + 283: -31,-15 + 284: -30,-15 + 285: -30,-16 + 286: -31,-16 + 287: -32,-16 + 288: -33,-16 + 289: -33,-17 + 290: -32,-17 + 291: -31,-17 + 292: -30,-17 + 318: -6,-46 + 319: -3,-44 + 462: 59,-34 + 463: 60,-34 + 464: 61,-34 + 465: 62,-34 + 466: 63,-34 + 467: 64,-36 - node: cleanable: True zIndex: 1 color: '#474F52FF' id: Dirt decals: - 303: -32,-18 + 302: -32,-18 - node: color: '#FFFFFFFF' id: DirtHeavy decals: - 709: -28,-37 - 710: -27,-33 + 708: -28,-37 + 709: -27,-33 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavy decals: - 1727: 8,-58 - 1728: 4,-56 + 1706: 8,-58 + 1707: 4,-56 - node: cleanable: True color: '#474F52FF' id: DirtLight decals: - 469: 61,-34 + 468: 61,-34 - node: cleanable: True zIndex: 1 color: '#474F52FF' id: DirtLight decals: - 304: -32,-16 - 305: -32,-15 - 306: -33,-15 - 307: -33,-16 - 308: -33,-17 - 309: -33,-14 - 310: -33,-13 - 311: -32,-13 - 312: -31,-11 - 313: -30,-11 - 314: -30,-12 - 315: -30,-13 - 316: -30,-14 - 317: -32,-11 - 318: -30,-10 + 303: -32,-16 + 304: -32,-15 + 305: -33,-15 + 306: -33,-16 + 307: -33,-17 + 308: -33,-14 + 309: -33,-13 + 310: -32,-13 + 311: -31,-11 + 312: -30,-11 + 313: -30,-12 + 314: -30,-13 + 315: -30,-14 + 316: -32,-11 + 317: -30,-10 - node: color: '#FFFFFFFF' id: DirtLight decals: - 699: -30,-38 - 700: -29,-37 - 701: -27,-31 - 702: -26,-28 - 703: -26,-27 - 704: -23,-25 - 705: -20,-24 - 711: -29,-22 - 712: -28,-23 - 713: -31,-22 - 714: -32,-23 - 715: -36,-24 - 716: -37,-26 - 717: -40,-24 - 718: -40,-29 - 719: -33,-30 - 720: -33,-26 - 721: -32,-25 - 723: -32,-19 - 724: -31,-20 - 725: -25,-20 - 2746: -6,24 - 2747: -5,23 - 2748: -6,25 - 2749: -2,25 - 2750: -3,23 - 2751: -3,24 - 2752: -11,24 - 2753: -10,25 - 2754: -10,23 - 2755: -9,23 + 698: -30,-38 + 699: -29,-37 + 700: -27,-31 + 701: -26,-28 + 702: -26,-27 + 703: -23,-25 + 704: -20,-24 + 710: -29,-22 + 711: -28,-23 + 712: -31,-22 + 713: -32,-23 + 714: -36,-24 + 715: -37,-26 + 716: -40,-24 + 717: -40,-29 + 718: -33,-30 + 719: -33,-26 + 720: -32,-25 + 722: -32,-19 + 723: -31,-20 + 724: -25,-20 + 2725: -6,24 + 2726: -5,23 + 2727: -6,25 + 2728: -2,25 + 2729: -3,23 + 2730: -3,24 + 2731: -11,24 + 2732: -10,25 + 2733: -10,23 + 2734: -9,23 - node: cleanable: True color: '#FFFFFFFF' id: DirtLight decals: - 1338: -62,-5 - 1339: -61,-5 - 1340: -55,-3 - 1341: -57,1 - 1342: -64,2 - 1343: -47,-1 - 1344: -46,1 - 1345: -45,2 - 1346: -39,-1 - 1347: -38,-2 - 1348: -3,0 - 1349: -2,1 - 1350: -1,5 - 1351: -2,7 - 1352: -1,10 - 1353: 16,-12 - 1354: 19,-14 - 1355: 31,-13 - 1356: 44,-15 - 1357: 49,-14 - 1358: 60,-13 - 1359: 71,-14 - 1360: 1,-48 - 1361: 0,-47 - 1362: 5,-46 - 1363: 0,-56 - 1364: 1,-57 - 1365: 8,-61 - 1366: 8,-65 - 1367: 6,-66 - 1368: 9,-70 - 1369: -7,-67 - 1370: -14,-73 - 1371: -15,-73 - 1372: -17,-70 - 1373: -20,-70 - 1374: -29,-39 - 1375: -27,-39 - 1376: -25,-37 - 1377: -38,-30 - 1378: -40,-31 - 1379: -41,-30 - 1380: -42,-25 - 1717: 4,-58 - 1718: 8,-59 - 1719: 7,-57 - 1720: 4,-52 - 1721: 3,-53 - 1722: 4,-55 - 1729: 4,-55 - 1730: 5,-57 - 1731: 5,-56 - 1732: 4,-54 - 1733: 7,-52 - 1734: 7,-53 - 1735: 9,-52 - 1736: 11,-53 - 1737: 4,-50 - 1738: 6,-49 - 1739: 7,-48 - 1740: -1,-42 - 1741: -2,-44 - 1742: 0,-45 - 1743: -2,-55 - 1744: -2,-52 - 1745: 0,-49 - 1746: 1,-45 - 1747: 0,-42 - 1748: -1,-38 - 1749: -2,-35 - 1750: -1,-35 - 1751: 0,-33 - 1752: 1,-32 - 1753: -2,-32 - 1982: -6,47 - 1983: -6,47 - 1984: -9,49 - 1985: -8,48 - 1986: -5,50 - 1987: -3,50 - 1988: 0,49 - 1989: 1,48 - 1990: 2,50 - 1991: 3,50 - 1992: -10,50 - 1993: -12,49 - 1994: -16,43 - 1995: -14,43 - 1996: -11,41 - 1997: -11,36 - 1998: -6,35 - 1999: -8,35 - 2000: -9,36 - 2001: -6,39 - 2003: -10,49 - 2004: -7,51 - 2005: -10,52 - 2006: 3,49 + 1337: -62,-5 + 1338: -61,-5 + 1339: -55,-3 + 1340: -57,1 + 1341: -64,2 + 1342: -47,-1 + 1343: -46,1 + 1344: -45,2 + 1345: -39,-1 + 1346: -38,-2 + 1347: -3,0 + 1348: -2,1 + 1349: -1,5 + 1350: -2,7 + 1351: -1,10 + 1352: 16,-12 + 1353: 19,-14 + 1354: 31,-13 + 1355: 44,-15 + 1356: 49,-14 + 1357: 60,-13 + 1358: 71,-14 + 1359: 1,-48 + 1360: 0,-47 + 1361: 5,-46 + 1362: 0,-56 + 1363: 1,-57 + 1364: 8,-61 + 1365: 8,-65 + 1366: 6,-66 + 1367: 9,-70 + 1368: -7,-67 + 1369: -14,-73 + 1370: -15,-73 + 1371: -17,-70 + 1372: -20,-70 + 1373: -29,-39 + 1374: -27,-39 + 1375: -25,-37 + 1376: -38,-30 + 1377: -40,-31 + 1378: -41,-30 + 1379: -42,-25 + 1696: 4,-58 + 1697: 8,-59 + 1698: 7,-57 + 1699: 4,-52 + 1700: 3,-53 + 1701: 4,-55 + 1708: 4,-55 + 1709: 5,-57 + 1710: 5,-56 + 1711: 4,-54 + 1712: 7,-52 + 1713: 7,-53 + 1714: 9,-52 + 1715: 11,-53 + 1716: 4,-50 + 1717: 6,-49 + 1718: 7,-48 + 1719: -1,-42 + 1720: -2,-44 + 1721: 0,-45 + 1722: -2,-55 + 1723: -2,-52 + 1724: 0,-49 + 1725: 1,-45 + 1726: 0,-42 + 1727: -1,-38 + 1728: -2,-35 + 1729: -1,-35 + 1730: 0,-33 + 1731: 1,-32 + 1732: -2,-32 + 1961: -6,47 + 1962: -6,47 + 1963: -9,49 + 1964: -8,48 + 1965: -5,50 + 1966: -3,50 + 1967: 0,49 + 1968: 1,48 + 1969: 2,50 + 1970: 3,50 + 1971: -10,50 + 1972: -12,49 + 1973: -16,43 + 1974: -14,43 + 1975: -11,41 + 1976: -11,36 + 1977: -6,35 + 1978: -8,35 + 1979: -9,36 + 1980: -6,39 + 1982: -10,49 + 1983: -7,51 + 1984: -10,52 + 1985: 3,49 - node: cleanable: True zIndex: 1 color: '#474F52FF' id: DirtMedium decals: - 294: -33,-11 - 295: -32,-12 - 296: -31,-12 - 297: -31,-13 - 298: -31,-14 - 299: -30,-15 - 300: -31,-16 - 301: -32,-17 - 302: -32,-18 + 293: -33,-11 + 294: -32,-12 + 295: -31,-12 + 296: -31,-13 + 297: -31,-14 + 298: -30,-15 + 299: -31,-16 + 300: -32,-17 + 301: -32,-18 - node: color: '#FFFFFFFF' id: DirtMedium decals: - 706: -22,-25 - 707: -26,-31 - 708: -27,-35 - 722: -32,-24 + 705: -22,-25 + 706: -26,-31 + 707: -27,-35 + 721: -32,-24 - node: cleanable: True color: '#FFFFFFFF' id: DirtMedium decals: - 1723: 3,-57 - 1724: 5,-53 - 1725: 8,-59 - 1726: 7,-58 - 2002: -8,50 + 1702: 3,-57 + 1703: 5,-53 + 1704: 8,-59 + 1705: 7,-58 + 1981: -8,50 - node: color: '#FFFFFFFF' id: Flowersbr2 decals: - 2702: 23.65632,-6.414194 + 2681: 23.65632,-6.414194 - node: color: '#FFFFFFFF' id: Flowersbr3 decals: - 1894: 7.3655357,-24.02947 + 1873: 7.3655357,-24.02947 - node: color: '#FFFFFFFF' id: Flowerspv2 decals: - 1515: 43.154446,-52.983627 + 1514: 43.154446,-52.983627 - node: color: '#FFFFFFFF' id: Flowersy1 decals: - 760: -15.026416,-25.521257 + 759: -15.026416,-25.521257 - node: color: '#FFFFFFFF' id: Flowersy3 decals: - 1514: 43.85757,-52.030502 + 1513: 43.85757,-52.030502 - node: color: '#FFFFFFFF' id: Flowersy4 decals: - 759: -15.026416,-24.599382 - 1513: 46.216946,-53.983627 - 1893: 6.2405357,-24.09197 - 2701: 23.328196,-6.882944 + 758: -15.026416,-24.599382 + 1512: 46.216946,-53.983627 + 1872: 6.2405357,-24.09197 + 2680: 23.328196,-6.882944 - node: color: '#334E6D5A' id: FullTileOverlayGreyscale decals: - 2876: -1,-5 + 2855: -1,-5 - node: color: '#52B4E931' id: FullTileOverlayGreyscale decals: - 2885: 2,-5 + 2864: 2,-5 - node: color: '#52B4E996' id: FullTileOverlayGreyscale decals: - 1029: 33,-21 - 1030: 33,-20 - 1031: 32,-20 - 1032: 31,-20 - 1033: 30,-20 - 1034: 29,-20 - 1035: 28,-20 - 1036: 27,-20 - 1037: 27,-21 - 1163: 35,-16 - 1164: 34,-16 - 1165: 33,-16 - 1166: 27,-16 - 1167: 26,-16 - 1168: 25,-16 - 1504: 20,-35 - 2708: -10,25 + 1028: 33,-21 + 1029: 33,-20 + 1030: 32,-20 + 1031: 31,-20 + 1032: 30,-20 + 1033: 29,-20 + 1034: 28,-20 + 1035: 27,-20 + 1036: 27,-21 + 1162: 35,-16 + 1163: 34,-16 + 1164: 33,-16 + 1165: 27,-16 + 1166: 26,-16 + 1167: 25,-16 + 1503: 20,-35 + 2687: -10,25 - node: color: '#9D9D97FF' id: FullTileOverlayGreyscale decals: - 1492: 18,-37 - 1493: 22,-33 - 1494: 18,-33 - 1495: 22,-37 + 1491: 18,-37 + 1492: 22,-33 + 1493: 18,-33 + 1494: 22,-37 - node: color: '#9FED5896' id: FullTileOverlayGreyscale decals: - 2707: -6,25 + 2686: -6,25 - node: color: '#A4610696' id: FullTileOverlayGreyscale decals: - 664: -30,-31 - 665: -33,-29 - 1521: -21,-31 - 1522: -22,-31 + 663: -30,-31 + 664: -33,-29 + 1520: -21,-31 + 1521: -22,-31 - node: color: '#D381C934' id: FullTileOverlayGreyscale decals: - 2888: 6,-7 + 2867: 6,-7 - node: color: '#D381C996' id: FullTileOverlayGreyscale decals: - 2288: 65,-22 - 2289: 66,-22 - 2290: 67,-22 - 2349: 61,-41 - 2350: 59,-41 - 2351: 57,-41 - 2352: 55,-41 - 2353: 53,-41 + 2267: 65,-22 + 2268: 66,-22 + 2269: 67,-22 + 2328: 61,-41 + 2329: 59,-41 + 2330: 57,-41 + 2331: 55,-41 + 2332: 53,-41 - node: color: '#D4D4D428' id: FullTileOverlayGreyscale decals: - 1491: 21,-35 + 1490: 21,-35 - node: color: '#DE3A3A2B' id: FullTileOverlayGreyscale decals: - 2866: -8,-7 + 2845: -8,-7 - node: color: '#DE3A3A96' id: FullTileOverlayGreyscale decals: - 1315: 77,-5 - 1453: 58,-16 - 1918: -8,37 - 1919: -7,37 - 1920: -5,37 + 1314: 77,-5 + 1452: 58,-16 + 1897: -8,37 + 1898: -7,37 + 1899: -5,37 - node: color: '#EFB34128' id: FullTileOverlayGreyscale decals: - 1653: 7,-59 - 1654: 7,-58 - 1655: 6,-58 - 1656: 5,-58 - 1657: 4,-58 - 1658: 3,-58 - 1659: 3,-57 - 1660: 3,-56 - 1661: 3,-55 - 1662: 3,-54 - 1663: 2,-54 - 1664: 2,-53 - 1665: 2,-52 - 1666: 3,-52 - 1667: 3,-53 - 1668: 4,-53 - 1669: 4,-52 - 1670: 5,-52 - 1671: 5,-53 - 1672: 5,-54 - 1673: 6,-53 - 1674: 4,-51 - 1675: 4,-54 - 1676: 4,-55 - 1677: 4,-56 - 1678: 4,-57 - 1679: 5,-57 - 1680: 5,-56 - 1681: 5,-55 - 1682: 6,-56 - 1683: 6,-57 - 1684: 7,-57 - 1685: 7,-56 - 1686: 8,-56 - 1687: 8,-57 - 1688: 8,-58 - 1689: 8,-59 - 1690: 9,-59 - 1691: 9,-58 - 1692: 9,-57 - 1693: 9,-56 + 1632: 7,-59 + 1633: 7,-58 + 1634: 6,-58 + 1635: 5,-58 + 1636: 4,-58 + 1637: 3,-58 + 1638: 3,-57 + 1639: 3,-56 + 1640: 3,-55 + 1641: 3,-54 + 1642: 2,-54 + 1643: 2,-53 + 1644: 2,-52 + 1645: 3,-52 + 1646: 3,-53 + 1647: 4,-53 + 1648: 4,-52 + 1649: 5,-52 + 1650: 5,-53 + 1651: 5,-54 + 1652: 6,-53 + 1653: 4,-51 + 1654: 4,-54 + 1655: 4,-55 + 1656: 4,-56 + 1657: 4,-57 + 1658: 5,-57 + 1659: 5,-56 + 1660: 5,-55 + 1661: 6,-56 + 1662: 6,-57 + 1663: 7,-57 + 1664: 7,-56 + 1665: 8,-56 + 1666: 8,-57 + 1667: 8,-58 + 1668: 8,-59 + 1669: 9,-59 + 1670: 9,-58 + 1671: 9,-57 + 1672: 9,-56 - node: color: '#EFB34131' id: FullTileOverlayGreyscale decals: - 2867: -4,-5 + 2846: -4,-5 - node: color: '#EFB34196' id: FullTileOverlayGreyscale decals: - 2706: -2,25 + 2685: -2,25 - node: color: '#FFFFFFFF' id: Grassa1 decals: - 1891: 7.2717857,-23.90447 - 1892: 6.2249107,-24.045095 - 2019: -3,48 + 1870: 7.2717857,-23.90447 + 1871: 6.2249107,-24.045095 + 1998: -3,48 - node: color: '#FFFFFFFF' id: Grassa2 decals: - 2014: 2,47 - 2015: 4,48 - 2026: -1,47 + 1993: 2,47 + 1994: 4,48 + 2005: -1,47 - node: color: '#FFFFFFFF' id: Grassa3 decals: - 2020: 2,48 + 1999: 2,48 - node: color: '#FFFFFFFF' id: Grassa5 decals: - 2016: 4,47 - 2017: -1,48 - 2018: -3,47 + 1995: 4,47 + 1996: -1,48 + 1997: -3,47 - node: color: '#FFFFFFFF' id: Grassb1 decals: - 751: -14.995166,-26.943132 - 1519: 47.091946,-51.921127 + 750: -14.995166,-26.943132 + 1518: 47.091946,-51.921127 - node: color: '#FFFFFFFF' id: Grassb2 decals: - 752: -14.917041,-24.615007 + 751: -14.917041,-24.615007 - node: color: '#FFFFFFFF' id: Grassb5 decals: - 1520: 42.85757,-51.827377 - 2700: 23.890696,-6.117319 + 1519: 42.85757,-51.827377 + 2679: 23.890696,-6.117319 - node: color: '#FFFFFFFF' id: Grassd1 decals: - 1512: 46.57632,-52.483627 + 1511: 46.57632,-52.483627 - node: color: '#FFFFFFFF' id: Grassd2 decals: - 1511: 44.04507,-52.733627 + 1510: 44.04507,-52.733627 - node: color: '#FFFFFFFF' id: Grassd3 decals: - 748: -14.979541,-25.083757 - 2012: 2,48 + 747: -14.979541,-25.083757 + 1991: 2,48 - node: color: '#FFFFFFFF' id: Grasse1 decals: - 747: -14.995166,-24.161882 - 1509: 46.42007,-53.327377 - 1510: 43.29507,-52.358627 - 2011: 2,47 - 2013: -3,48 - 2697: 23.90632,-6.523569 + 746: -14.995166,-24.161882 + 1508: 46.42007,-53.327377 + 1509: 43.29507,-52.358627 + 1990: 2,47 + 1992: -3,48 + 2676: 23.90632,-6.523569 - node: color: '#FFFFFFFF' id: Grasse2 decals: - 746: -15.010791,-27.036882 - 1886: 6,-24 - 1887: 7,-24 - 1888: 8,-24 - 2008: 4,47 - 2009: -1,48 - 2025: -1,47 - 2696: 23.171946,-6.117319 + 745: -15.010791,-27.036882 + 1865: 6,-24 + 1866: 7,-24 + 1867: 8,-24 + 1987: 4,47 + 1988: -1,48 + 2004: -1,47 + 2675: 23.171946,-6.117319 - node: color: '#FFFFFFFF' id: Grasse3 decals: - 749: -14.995166,-25.786882 - 1889: 8,-24 - 1890: 6.3967857,-23.96697 - 2007: 4,48 - 2010: -3,47 - 2695: 23.12507,-6.836069 + 748: -14.995166,-25.786882 + 1868: 8,-24 + 1869: 6.3967857,-23.96697 + 1986: 4,48 + 1989: -3,47 + 2674: 23.12507,-6.836069 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale @@ -2190,74 +2190,74 @@ entities: 136: 40,-32 137: 41,-32 141: 42,-32 - 186: 28,-29 - 191: 30,-28 - 192: 32,-28 - 193: 31,-28 - 194: 33,-28 - 1051: 33,-24 - 1052: 32,-24 - 1053: 31,-24 - 1054: 29,-24 - 1055: 27,-24 - 1070: 23,-25 - 2111: 49,-27 - 2147: 40,-23 - 2158: 44,-27 - 2159: 45,-27 - 2160: 46,-27 - 2703: -4,28 - 3081: 34,-35 + 185: 28,-29 + 190: 30,-28 + 191: 32,-28 + 192: 31,-28 + 193: 33,-28 + 1050: 33,-24 + 1051: 32,-24 + 1052: 31,-24 + 1053: 29,-24 + 1054: 27,-24 + 1069: 23,-25 + 2090: 49,-27 + 2126: 40,-23 + 2137: 44,-27 + 2138: 45,-27 + 2139: 46,-27 + 2682: -4,28 + 3059: 34,-35 - node: color: '#9D9D97FF' id: HalfTileOverlayGreyscale decals: - 1459: 62,-27 - 1498: 21,-33 - 1499: 19,-33 + 1458: 62,-27 + 1497: 21,-33 + 1498: 19,-33 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale decals: - 1006: 46,-56 - 1007: 44,-56 - 1008: 43,-56 - 1009: 42,-56 - 1010: 41,-56 - 1011: 39,-56 - 1289: 35,-52 - 1290: 36,-52 - 2704: -3,28 + 1005: 46,-56 + 1006: 44,-56 + 1007: 43,-56 + 1008: 42,-56 + 1009: 41,-56 + 1010: 39,-56 + 1288: 35,-52 + 1289: 36,-52 + 2683: -3,28 - node: color: '#A4610696' id: HalfTileOverlayGreyscale decals: - 259: -32,-11 - 1462: -24,-16 - 1463: -23,-16 - 1464: -22,-16 - 1465: -21,-16 - 2968: 5,28 - 2969: 28,-24 - 2970: 69,-18 + 258: -32,-11 + 1461: -24,-16 + 1462: -23,-16 + 1463: -22,-16 + 1464: -21,-16 + 2947: 5,28 + 2948: 28,-24 + 2949: 69,-18 - node: color: '#D381C996' id: HalfTileOverlayGreyscale decals: - 1142: 70,-18 - 1143: 71,-18 - 2323: 63,-40 - 2324: 62,-40 - 2325: 61,-40 - 2326: 60,-40 - 2327: 59,-40 - 2328: 58,-40 - 2329: 57,-40 - 2330: 56,-40 - 2331: 55,-40 - 2332: 53,-40 - 2333: 52,-40 - 2334: 51,-40 + 1141: 70,-18 + 1142: 71,-18 + 2302: 63,-40 + 2303: 62,-40 + 2304: 61,-40 + 2305: 60,-40 + 2306: 59,-40 + 2307: 58,-40 + 2308: 57,-40 + 2309: 56,-40 + 2310: 55,-40 + 2311: 53,-40 + 2312: 52,-40 + 2313: 51,-40 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale @@ -2280,73 +2280,73 @@ entities: 62: 11,35 67: 10,33 68: 6,33 - 234: 38,-17 - 237: -23,-30 - 238: -22,-30 - 239: -21,-30 - 240: -20,-30 - 511: -7,31 - 512: -8,31 - 513: -9,31 - 613: -61,5 - 614: -60,5 - 615: -59,5 - 616: -58,5 - 1303: 77,-2 - 1304: 78,-2 - 1305: 79,-2 - 1306: 80,-2 - 1307: 81,-2 - 1452: 58,-17 - 1456: 60,-18 - 1457: 61,-18 - 1458: 62,-18 - 2734: 14,32 + 233: 38,-17 + 236: -23,-30 + 237: -22,-30 + 238: -21,-30 + 239: -20,-30 + 510: -7,31 + 511: -8,31 + 512: -9,31 + 612: -61,5 + 613: -60,5 + 614: -59,5 + 615: -58,5 + 1302: 77,-2 + 1303: 78,-2 + 1304: 79,-2 + 1305: 80,-2 + 1306: 81,-2 + 1451: 58,-17 + 1455: 60,-18 + 1456: 61,-18 + 1457: 62,-18 + 2713: 14,32 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale decals: - 331: 3,-66 - 332: 2,-66 - 333: 1,-66 - 336: 0,-67 - 337: -1,-67 - 338: -2,-67 - 339: -3,-67 - 340: -4,-67 - 341: -5,-67 - 344: -9,-67 - 345: -10,-67 - 367: -11,-69 - 368: -13,-69 - 369: -12,-69 - 370: -14,-69 - 371: -18,-69 - 389: -20,-69 - 390: -21,-69 - 412: 17,-71 - 413: 16,-71 - 414: 15,-71 - 415: 14,-71 - 416: 13,-71 - 417: 12,-71 - 418: 11,-71 - 421: -10,-62 - 422: -9,-62 - 423: -8,-62 - 424: -7,-62 - 425: -6,-62 - 426: -5,-62 - 435: -4,-63 - 439: -2,-62 - 440: -1,-62 - 2705: -2,28 + 330: 3,-66 + 331: 2,-66 + 332: 1,-66 + 335: 0,-67 + 336: -1,-67 + 337: -2,-67 + 338: -3,-67 + 339: -4,-67 + 340: -5,-67 + 343: -9,-67 + 344: -10,-67 + 366: -11,-69 + 367: -13,-69 + 368: -12,-69 + 369: -14,-69 + 370: -18,-69 + 388: -20,-69 + 389: -21,-69 + 411: 17,-71 + 412: 16,-71 + 413: 15,-71 + 414: 14,-71 + 415: 13,-71 + 416: 12,-71 + 417: 11,-71 + 420: -10,-62 + 421: -9,-62 + 422: -8,-62 + 423: -7,-62 + 424: -6,-62 + 425: -5,-62 + 434: -4,-63 + 438: -2,-62 + 439: -1,-62 + 2684: -2,28 - node: color: '#F5DB9E96' id: HalfTileOverlayGreyscale decals: - 2241: 20,-25 - 2242: 22,-25 + 2220: 20,-25 + 2221: 22,-25 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 @@ -2361,82 +2361,82 @@ entities: 143: 42,-37 168: 38,-33 169: 37,-33 - 185: 28,-30 - 195: 30,-31 - 196: 31,-31 - 197: 32,-31 - 198: 33,-31 - 535: -10,23 - 1024: 23,-26 - 1027: 21,-28 - 1028: 19,-28 - 1042: 33,-19 - 1043: 32,-19 - 1044: 31,-19 - 1045: 30,-19 - 1046: 29,-19 - 1047: 28,-19 - 1048: 27,-19 - 2112: 49,-29 - 2139: 37,-25 - 2140: 38,-25 - 2141: 41,-25 - 3065: 29,-37 - 3066: 30,-37 - 3067: 31,-37 - 3068: 32,-37 - 3069: 33,-37 - 3070: 34,-37 - 3071: 35,-37 - 3072: 36,-37 + 184: 28,-30 + 194: 30,-31 + 195: 31,-31 + 196: 32,-31 + 197: 33,-31 + 534: -10,23 + 1023: 23,-26 + 1026: 21,-28 + 1027: 19,-28 + 1041: 33,-19 + 1042: 32,-19 + 1043: 31,-19 + 1044: 30,-19 + 1045: 29,-19 + 1046: 28,-19 + 1047: 27,-19 + 2091: 49,-29 + 2118: 37,-25 + 2119: 38,-25 + 2120: 41,-25 + 3043: 29,-37 + 3044: 30,-37 + 3045: 31,-37 + 3046: 32,-37 + 3047: 33,-37 + 3048: 34,-37 + 3049: 35,-37 + 3050: 36,-37 - node: color: '#9D9D97FF' id: HalfTileOverlayGreyscale180 decals: - 1084: 67,-49 - 1085: 66,-49 - 1086: 65,-49 - 1496: 21,-37 - 1497: 19,-37 + 1083: 67,-49 + 1084: 66,-49 + 1085: 65,-49 + 1495: 21,-37 + 1496: 19,-37 - node: color: '#9FED5828' id: HalfTileOverlayGreyscale180 decals: - 2021: 3,47 - 2022: 1,47 - 2023: 0,47 - 2024: -2,47 + 2000: 3,47 + 2001: 1,47 + 2002: 0,47 + 2003: -2,47 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale180 decals: - 536: -6,23 - 1296: 35,-56 + 535: -6,23 + 1295: 35,-56 - node: color: '#D381C996' id: HalfTileOverlayGreyscale180 decals: - 1149: 70,-16 - 1150: 69,-16 - 1151: 68,-16 - 1152: 67,-16 - 1153: 65,-16 - 1154: 64,-16 - 1155: 63,-16 - 1156: 62,-16 - 2280: 51,-15 - 2281: 55,-15 - 2335: 51,-42 - 2336: 52,-42 - 2337: 53,-42 - 2338: 54,-42 - 2339: 55,-42 - 2340: 57,-42 - 2341: 59,-42 - 2342: 60,-42 - 2343: 62,-42 - 2344: 63,-42 - 2345: 61,-42 + 1148: 70,-16 + 1149: 69,-16 + 1150: 68,-16 + 1151: 67,-16 + 1152: 65,-16 + 1153: 64,-16 + 1154: 63,-16 + 1155: 62,-16 + 2259: 51,-15 + 2260: 55,-15 + 2314: 51,-42 + 2315: 52,-42 + 2316: 53,-42 + 2317: 54,-42 + 2318: 55,-42 + 2319: 57,-42 + 2320: 59,-42 + 2321: 60,-42 + 2322: 62,-42 + 2323: 63,-42 + 2324: 61,-42 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale180 @@ -2451,53 +2451,53 @@ entities: 78: 14,30 79: 15,30 80: 16,30 - 241: -23,-32 - 242: -22,-32 - 243: -21,-32 - 244: -20,-32 - 619: -61,3 - 620: -60,3 - 621: -59,3 - 622: -58,3 - 1310: 77,-4 - 1311: 78,-4 - 1312: 79,-4 - 1313: 80,-4 - 1314: 81,-4 - 2732: 14,34 - 2737: 14,31 + 240: -23,-32 + 241: -22,-32 + 242: -21,-32 + 243: -20,-32 + 618: -61,3 + 619: -60,3 + 620: -59,3 + 621: -58,3 + 1309: 77,-4 + 1310: 78,-4 + 1311: 79,-4 + 1312: 80,-4 + 1313: 81,-4 + 2711: 14,34 + 2716: 14,31 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale180 decals: - 378: -16,-74 - 379: -15,-74 - 383: -13,-75 - 398: 11,-75 - 399: 12,-75 - 402: 13,-74 - 403: 14,-74 - 404: 15,-74 - 405: 16,-74 - 406: 17,-74 - 407: 18,-74 - 427: -10,-65 - 428: -9,-65 - 429: -5,-65 - 446: -2,-65 - 447: -3,-65 - 450: -4,-64 - 545: -2,23 + 377: -16,-74 + 378: -15,-74 + 382: -13,-75 + 397: 11,-75 + 398: 12,-75 + 401: 13,-74 + 402: 14,-74 + 403: 15,-74 + 404: 16,-74 + 405: 17,-74 + 406: 18,-74 + 426: -10,-65 + 427: -9,-65 + 428: -5,-65 + 445: -2,-65 + 446: -3,-65 + 449: -4,-64 + 544: -2,23 - node: color: '#334E6D5A' id: HalfTileOverlayGreyscale270 decals: - 2874: -2,-6 + 2853: -2,-6 - node: color: '#52B4E931' id: HalfTileOverlayGreyscale270 decals: - 2887: 1,-6 + 2866: 1,-6 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale270 @@ -2513,73 +2513,73 @@ entities: 165: 39,-36 166: 39,-35 167: 39,-34 - 173: 35,-27 - 175: 24,-28 - 178: 24,-31 - 179: 24,-30 - 180: 24,-29 - 187: 29,-28 - 188: 29,-31 - 220: 24,-33 - 222: 24,-37 - 1040: 34,-21 - 1041: 34,-20 - 1050: 34,-23 - 1069: 18,-26 - 1442: 56,-24 - 2114: 48,-28 - 2154: 43,-30 - 2155: 43,-29 - 2156: 43,-28 - 3061: 28,-33 - 3062: 28,-35 - 3063: 28,-36 - 3078: 35,-32 - 3079: 35,-33 - 3080: 35,-34 + 172: 35,-27 + 174: 24,-28 + 177: 24,-31 + 178: 24,-30 + 179: 24,-29 + 186: 29,-28 + 187: 29,-31 + 219: 24,-33 + 221: 24,-37 + 1039: 34,-21 + 1040: 34,-20 + 1049: 34,-23 + 1068: 18,-26 + 1441: 56,-24 + 2093: 48,-28 + 2133: 43,-30 + 2134: 43,-29 + 2135: 43,-28 + 3039: 28,-33 + 3040: 28,-35 + 3041: 28,-36 + 3056: 35,-32 + 3057: 35,-33 + 3058: 35,-34 - node: color: '#9D9D97FF' id: HalfTileOverlayGreyscale270 decals: - 1500: 18,-34 - 1501: 18,-36 + 1499: 18,-34 + 1500: 18,-36 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale270 decals: - 1293: 34,-55 - 1294: 34,-54 - 1295: 34,-53 + 1292: 34,-55 + 1293: 34,-54 + 1294: 34,-53 - node: color: '#A4610696' id: HalfTileOverlayGreyscale270 decals: - 251: -33,-17 - 252: -33,-16 - 253: -33,-15 - 254: -33,-14 - 255: -33,-13 - 256: -33,-12 - 257: -33,-11 - 639: -29,-22 - 640: -29,-21 - 647: -30,-38 - 648: -30,-37 - 686: -42,-21 - 687: -42,-22 - 688: -42,-23 - 689: -42,-24 - 690: -42,-25 - 691: -42,-26 - 692: -42,-27 + 250: -33,-17 + 251: -33,-16 + 252: -33,-15 + 253: -33,-14 + 254: -33,-13 + 255: -33,-12 + 256: -33,-11 + 638: -29,-22 + 639: -29,-21 + 646: -30,-38 + 647: -30,-37 + 685: -42,-21 + 686: -42,-22 + 687: -42,-23 + 688: -42,-24 + 689: -42,-25 + 690: -42,-26 + 691: -42,-27 - node: color: '#D381C996' id: HalfTileOverlayGreyscale270 decals: - 455: 65,-18 - 456: 65,-19 - 457: 65,-20 - 2355: 63,-41 + 454: 65,-18 + 455: 65,-19 + 456: 65,-20 + 2334: 63,-41 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 @@ -2591,49 +2591,49 @@ entities: 36: -6,32 56: 18,36 64: 11,34 - 230: 37,-20 - 231: 37,-19 - 232: 37,-18 - 233: 37,-17 - 515: -9,29 - 516: -9,30 - 618: -62,4 - 1309: 76,-3 - 1445: 57,-20 - 1446: 57,-19 - 1447: 57,-18 - 1971: -12,38 - 1972: -12,39 - 1973: -12,40 - 1974: -12,41 + 229: 37,-20 + 230: 37,-19 + 231: 37,-18 + 232: 37,-17 + 514: -9,29 + 515: -9,30 + 617: -62,4 + 1308: 76,-3 + 1444: 57,-20 + 1445: 57,-19 + 1446: 57,-18 + 1950: -12,38 + 1951: -12,39 + 1952: -12,40 + 1953: -12,41 - node: color: '#EFB34131' id: HalfTileOverlayGreyscale270 decals: - 2873: -5,-6 + 2852: -5,-6 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale270 decals: - 327: 7,-65 - 375: -18,-72 - 376: -18,-73 - 377: -18,-74 - 381: -14,-75 - 392: -11,-72 - 393: -11,-73 - 394: -11,-74 - 395: -11,-75 - 437: -3,-62 - 585: -10,-68 - 1395: -3,-26 - 1396: -3,-25 - 1399: -2,-27 + 326: 7,-65 + 374: -18,-72 + 375: -18,-73 + 376: -18,-74 + 380: -14,-75 + 391: -11,-72 + 392: -11,-73 + 393: -11,-74 + 394: -11,-75 + 436: -3,-62 + 584: -10,-68 + 1394: -3,-26 + 1395: -3,-25 + 1398: -2,-27 - node: color: '#334E6D5A' id: HalfTileOverlayGreyscale90 decals: - 2875: 0,-6 + 2854: 0,-6 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale90 @@ -2641,13 +2641,13 @@ entities: 106: -8,-24 107: -8,-25 108: -8,-26 - 799: -16,-28 - 800: -16,-23 + 798: -16,-28 + 799: -16,-23 - node: color: '#52B4E931' id: HalfTileOverlayGreyscale90 decals: - 2886: 3,-6 + 2865: 3,-6 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale90 @@ -2665,59 +2665,59 @@ entities: 146: 41,-40 147: 41,-41 151: 41,-48 - 176: 27,-28 - 177: 27,-31 - 223: 26,-37 - 224: 26,-36 - 1023: 22,-27 - 1038: 26,-21 - 1039: 26,-20 - 1049: 26,-23 - 2113: 50,-28 - 3076: 37,-36 - 3077: 36,-34 + 175: 27,-28 + 176: 27,-31 + 222: 26,-37 + 223: 26,-36 + 1022: 22,-27 + 1037: 26,-21 + 1038: 26,-20 + 1048: 26,-23 + 2092: 50,-28 + 3054: 37,-36 + 3055: 36,-34 - node: color: '#9D9D97FF' id: HalfTileOverlayGreyscale90 decals: - 1502: 22,-36 - 1503: 22,-34 + 1501: 22,-36 + 1502: 22,-34 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale90 decals: - 1291: 37,-53 - 1292: 36,-55 + 1290: 37,-53 + 1291: 36,-55 - node: color: '#A4610696' id: HalfTileOverlayGreyscale90 decals: - 260: -30,-17 - 261: -30,-16 - 262: -30,-15 - 263: -30,-14 - 264: -30,-13 - 265: -30,-12 - 693: -31,-28 - 694: -31,-27 - 695: -31,-26 - 696: -31,-25 - 697: -31,-24 - 1467: -20,-17 - 1468: -20,-18 - 1469: -20,-19 - 1470: -20,-20 + 259: -30,-17 + 260: -30,-16 + 261: -30,-15 + 262: -30,-14 + 263: -30,-13 + 264: -30,-12 + 692: -31,-28 + 693: -31,-27 + 694: -31,-26 + 695: -31,-25 + 696: -31,-24 + 1466: -20,-17 + 1467: -20,-18 + 1468: -20,-19 + 1469: -20,-20 - node: color: '#D381C996' id: HalfTileOverlayGreyscale90 decals: - 452: 67,-18 - 453: 67,-19 - 454: 67,-20 - 459: 63,-20 - 460: 63,-21 - 461: 63,-22 - 2354: 51,-41 + 451: 67,-18 + 452: 67,-19 + 453: 67,-20 + 458: 63,-20 + 459: 63,-21 + 460: 63,-22 + 2333: 51,-41 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale90 @@ -2732,84 +2732,84 @@ entities: 39: -13,22 53: 19,35 54: 19,36 - 226: 39,-20 - 227: 39,-19 - 228: 39,-18 - 229: 39,-17 - 247: -20,-31 - 617: -57,4 - 1308: 82,-3 - 1448: 63,-19 - 1975: -10,38 - 1976: -10,39 - 1977: -10,40 - 1978: -10,41 - 2733: 13,33 + 225: 39,-20 + 226: 39,-19 + 227: 39,-18 + 228: 39,-17 + 246: -20,-31 + 616: -57,4 + 1307: 82,-3 + 1447: 63,-19 + 1954: -10,38 + 1955: -10,39 + 1956: -10,40 + 1957: -10,41 + 2712: 13,33 - node: color: '#EFB34131' id: HalfTileOverlayGreyscale90 decals: - 2872: -3,-6 + 2851: -3,-6 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale90 decals: - 321: 9,-70 - 322: 9,-69 - 323: 9,-68 - 324: 9,-67 - 325: 9,-66 - 326: 9,-65 - 385: -13,-74 - 386: -13,-73 - 387: -13,-72 - 388: -13,-71 - 409: 18,-72 - 410: 18,-71 - 442: -1,-63 - 443: -1,-64 - 444: -1,-65 - 1271: 13,-53 - 1272: 13,-52 - 1273: 13,-51 - 1400: 0,-27 + 320: 9,-70 + 321: 9,-69 + 322: 9,-68 + 323: 9,-67 + 324: 9,-66 + 325: 9,-65 + 384: -13,-74 + 385: -13,-73 + 386: -13,-72 + 387: -13,-71 + 408: 18,-72 + 409: 18,-71 + 441: -1,-63 + 442: -1,-64 + 443: -1,-65 + 1270: 13,-53 + 1271: 13,-52 + 1272: 13,-51 + 1399: 0,-27 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: LoadingArea decals: - 666: -37,-32 - 745: -15,-23 - 1297: 1,-43 - 1298: 3,-43 + 665: -37,-32 + 744: -15,-23 + 1296: 1,-43 + 1297: 3,-43 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: LoadingArea decals: - 667: -41,-28 - 744: -15,-28 + 666: -41,-28 + 743: -15,-28 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: LoadingArea decals: - 668: -25,-30 + 667: -25,-30 - node: color: '#334E6DC8' id: MiniTileWhiteLineW decals: - 2761: -11,-15 + 2740: -11,-15 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale decals: - 793: 11,-8 - 794: 12,-8 - 795: 13,-8 - 2647: 27,-90 - 2648: 27,-91 - 2653: 31,-91 + 792: 11,-8 + 793: 12,-8 + 794: 13,-8 + 2626: 27,-90 + 2627: 27,-91 + 2632: 31,-91 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale @@ -2818,182 +2818,182 @@ entities: 155: 39,-49 156: 39,-46 162: 39,-39 - 174: 35,-28 - 183: 29,-29 - 221: 24,-34 - 1068: 18,-27 - 1443: 56,-25 - 2149: 37,-23 - 2455: -77,10 - 2456: -76,10 - 2457: -75,10 - 2458: -74,10 - 2459: -72,10 - 2460: -73,10 - 2461: -71,10 - 2462: -70,10 - 2463: -69,10 - 2464: -68,10 - 2465: -66,10 - 2466: -65,10 - 2479: -77,-14 - 2480: -76,-14 - 2481: -75,-14 - 2482: -74,-14 - 2483: -73,-14 - 2484: -72,-14 - 2485: -71,-14 - 2486: -70,-14 - 2487: -69,-14 - 2488: -68,-14 - 2489: -67,-14 - 2490: -66,-14 - 2934: -78,10 - 2935: -79,10 - 3082: 35,-35 + 173: 35,-28 + 182: 29,-29 + 220: 24,-34 + 1067: 18,-27 + 1442: 56,-25 + 2128: 37,-23 + 2434: -77,10 + 2435: -76,10 + 2436: -75,10 + 2437: -74,10 + 2438: -72,10 + 2439: -73,10 + 2440: -71,10 + 2441: -70,10 + 2442: -69,10 + 2443: -68,10 + 2444: -66,10 + 2445: -65,10 + 2458: -77,-14 + 2459: -76,-14 + 2460: -75,-14 + 2461: -74,-14 + 2462: -73,-14 + 2463: -72,-14 + 2464: -71,-14 + 2465: -70,-14 + 2466: -69,-14 + 2467: -68,-14 + 2468: -67,-14 + 2469: -66,-14 + 2913: -78,10 + 2914: -79,10 + 3060: 35,-35 - node: color: '#79150096' id: QuarterTileOverlayGreyscale decals: - 2535: 75,-6 - 2536: 75,-7 - 2537: 75,-8 - 2538: 75,-9 - 2539: 75,-10 - 2540: 75,-11 - 2541: 75,-12 + 2514: 75,-6 + 2515: 75,-7 + 2516: 75,-8 + 2517: 75,-9 + 2518: 75,-10 + 2519: 75,-11 + 2520: 75,-12 - node: color: '#9D9D97FF' id: QuarterTileOverlayGreyscale decals: - 1083: 63,-27 + 1082: 63,-27 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale decals: - 248: -31,-11 - 642: -29,-23 - 2981: -18,-22 - 2982: -18,-23 + 247: -31,-11 + 641: -29,-23 + 2960: -18,-22 + 2961: -18,-23 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale decals: - 1144: 72,-18 - 3007: -29,-35 - 3008: -29,-34 - 3009: -29,-33 - 3010: -29,-32 - 3011: -29,-31 - 3012: -29,-30 - 3013: -28,-30 - 3014: -27,-30 - 3030: -29,-36 + 1143: 72,-18 + 2986: -29,-35 + 2987: -29,-34 + 2988: -29,-33 + 2989: -29,-32 + 2990: -29,-31 + 2991: -29,-30 + 2992: -28,-30 + 2993: -27,-30 + 3009: -29,-36 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale decals: - 2385: 14,-4 - 2386: 14,-5 - 2387: 14,-6 - 2388: 14,-7 - 2395: -3,1 - 2396: -4,1 - 2397: -4,0 - 2398: -4,-1 - 2399: -5,-1 - 2400: -6,-1 - 2401: -8,-1 - 2402: -9,-1 - 2403: -10,-1 - 2417: -2,10 - 2418: -2,9 - 2419: -2,8 - 2420: -2,7 - 2421: -2,6 - 2422: -2,5 - 2423: -2,4 - 2424: -2,3 - 2557: 18,-13 - 2558: 19,-13 - 2559: 20,-13 - 2560: 21,-13 - 2561: 23,-13 - 2562: 22,-13 - 2563: 24,-13 - 2564: 25,-13 - 2565: 26,-13 - 2566: 27,-13 - 2567: 28,-13 - 2568: 29,-13 - 2569: 30,-13 - 2570: 31,-13 - 2571: 32,-13 - 2572: 73,-13 - 2573: 72,-13 - 2574: 71,-13 - 2575: 70,-13 - 2576: 69,-13 - 2577: 68,-13 - 2578: 67,-13 - 2579: 66,-13 - 2580: 65,-13 - 2581: 64,-13 - 2582: 63,-13 - 2583: 62,-13 - 2584: 61,-13 - 2585: 60,-13 - 2586: 59,-13 - 2587: 58,-13 - 2588: 57,-13 - 2589: 56,-13 - 2590: 55,-13 - 2591: 54,-13 - 2592: -21,-1 - 2593: -22,-1 - 2594: -23,-1 - 2595: -24,-1 - 2596: -25,-1 - 2597: -28,-1 - 2598: -29,-1 - 2599: -27,-1 - 2600: -30,-1 - 2601: -31,-1 - 2608: -40,-1 - 2609: -41,-1 - 2612: -48,-1 - 2613: -49,-1 - 2614: -50,-1 - 2615: -51,-1 - 2616: -52,-1 - 2617: -62,1 - 2618: -61,1 - 2619: -60,1 - 2620: -59,1 - 2621: -58,1 - 2622: -57,1 - 2623: -56,1 - 2624: -55,1 - 2625: -54,1 - 2827: 2,-33 - 2830: -18,-9 - 2831: -18,-8 - 2832: -18,-7 - 2833: -18,-6 - 2834: -18,-5 - 2835: -18,-4 + 2364: 14,-4 + 2365: 14,-5 + 2366: 14,-6 + 2367: 14,-7 + 2374: -3,1 + 2375: -4,1 + 2376: -4,0 + 2377: -4,-1 + 2378: -5,-1 + 2379: -6,-1 + 2380: -8,-1 + 2381: -9,-1 + 2382: -10,-1 + 2396: -2,10 + 2397: -2,9 + 2398: -2,8 + 2399: -2,7 + 2400: -2,6 + 2401: -2,5 + 2402: -2,4 + 2403: -2,3 + 2536: 18,-13 + 2537: 19,-13 + 2538: 20,-13 + 2539: 21,-13 + 2540: 23,-13 + 2541: 22,-13 + 2542: 24,-13 + 2543: 25,-13 + 2544: 26,-13 + 2545: 27,-13 + 2546: 28,-13 + 2547: 29,-13 + 2548: 30,-13 + 2549: 31,-13 + 2550: 32,-13 + 2551: 73,-13 + 2552: 72,-13 + 2553: 71,-13 + 2554: 70,-13 + 2555: 69,-13 + 2556: 68,-13 + 2557: 67,-13 + 2558: 66,-13 + 2559: 65,-13 + 2560: 64,-13 + 2561: 63,-13 + 2562: 62,-13 + 2563: 61,-13 + 2564: 60,-13 + 2565: 59,-13 + 2566: 58,-13 + 2567: 57,-13 + 2568: 56,-13 + 2569: 55,-13 + 2570: 54,-13 + 2571: -21,-1 + 2572: -22,-1 + 2573: -23,-1 + 2574: -24,-1 + 2575: -25,-1 + 2576: -28,-1 + 2577: -29,-1 + 2578: -27,-1 + 2579: -30,-1 + 2580: -31,-1 + 2587: -40,-1 + 2588: -41,-1 + 2591: -48,-1 + 2592: -49,-1 + 2593: -50,-1 + 2594: -51,-1 + 2595: -52,-1 + 2596: -62,1 + 2597: -61,1 + 2598: -60,1 + 2599: -59,1 + 2600: -58,1 + 2601: -57,1 + 2602: -56,1 + 2603: -55,1 + 2604: -54,1 + 2806: 2,-33 + 2809: -18,-9 + 2810: -18,-8 + 2811: -18,-7 + 2812: -18,-6 + 2813: -18,-5 + 2814: -18,-4 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale decals: - 2527: 33,-12 - 2528: 34,-12 - 2529: 35,-12 - 2530: 36,-12 - 2531: 37,-12 - 2532: 38,-12 - 2533: 39,-12 - 2534: 40,-12 + 2506: 33,-12 + 2507: 34,-12 + 2508: 35,-12 + 2509: 36,-12 + 2510: 37,-12 + 2511: 38,-12 + 2512: 39,-12 + 2513: 40,-12 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale @@ -3009,130 +3009,130 @@ entities: 66: 11,33 70: 7,33 71: 6,32 - 235: 39,-17 - 480: 21,36 - 481: 21,34 - 482: 21,35 - 517: -3,33 - 518: -2,33 - 519: -1,33 - 520: 0,33 - 521: 1,33 - 526: -3,32 - 527: -3,31 - 528: -3,30 - 826: 4,21 - 827: 3,21 - 828: 2,21 - 829: 1,21 - 830: 0,21 - 831: -1,21 - 832: -2,21 - 833: -3,21 - 834: -4,21 - 835: -5,21 - 836: -6,21 - 837: -7,21 - 838: -8,21 - 839: -9,21 - 840: -10,21 - 841: -11,21 - 861: -2,18 - 862: -2,17 - 863: -2,16 - 864: -2,15 - 865: -2,14 - 866: -2,13 - 867: -2,12 - 1454: 57,-21 - 2736: 15,31 - 2738: 15,33 + 234: 39,-17 + 479: 21,36 + 480: 21,34 + 481: 21,35 + 516: -3,33 + 517: -2,33 + 518: -1,33 + 519: 0,33 + 520: 1,33 + 525: -3,32 + 526: -3,31 + 527: -3,30 + 825: 4,21 + 826: 3,21 + 827: 2,21 + 828: 1,21 + 829: 0,21 + 830: -1,21 + 831: -2,21 + 832: -3,21 + 833: -4,21 + 834: -5,21 + 835: -6,21 + 836: -7,21 + 837: -8,21 + 838: -9,21 + 839: -10,21 + 840: -11,21 + 860: -2,18 + 861: -2,17 + 862: -2,16 + 863: -2,15 + 864: -2,14 + 865: -2,13 + 866: -2,12 + 1453: 57,-21 + 2715: 15,31 + 2717: 15,33 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale decals: - 328: 7,-66 - 330: 4,-66 - 335: 1,-67 - 343: -8,-67 - 372: -17,-69 - 396: -11,-76 - 411: 18,-71 - 420: 11,-72 - 436: -3,-63 - 448: -3,-65 - 564: -47,5 - 565: -47,4 - 566: -47,3 - 567: -47,2 - 568: -47,1 - 1236: -2,-56 - 1279: 12,-45 - 1280: 12,-44 - 1281: 12,-43 - 1282: 12,-42 - 1283: 12,-41 - 1704: 3,-56 - 1705: 3,-55 - 1707: 2,-53 - 1708: 2,-52 - 1709: 3,-52 - 1710: 9,-56 - 1711: 8,-56 - 1712: 7,-56 - 1713: 6,-56 + 327: 7,-66 + 329: 4,-66 + 334: 1,-67 + 342: -8,-67 + 371: -17,-69 + 395: -11,-76 + 410: 18,-71 + 419: 11,-72 + 435: -3,-63 + 447: -3,-65 + 563: -47,5 + 564: -47,4 + 565: -47,3 + 566: -47,2 + 567: -47,1 + 1235: -2,-56 + 1278: 12,-45 + 1279: 12,-44 + 1280: 12,-43 + 1281: 12,-42 + 1282: 12,-41 + 1683: 3,-56 + 1684: 3,-55 + 1686: 2,-53 + 1687: 2,-52 + 1688: 3,-52 + 1689: 9,-56 + 1690: 8,-56 + 1691: 7,-56 + 1692: 6,-56 - node: color: '#F5DB9E96' id: QuarterTileOverlayGreyscale decals: - 2231: 24,-17 - 2232: 24,-18 - 2233: 24,-19 - 2234: 24,-20 - 2235: 24,-21 + 2210: 24,-17 + 2211: 24,-18 + 2212: 24,-19 + 2213: 24,-20 + 2214: 24,-21 - node: color: '#FFEBAE96' id: QuarterTileOverlayGreyscale decals: - 2209: 18,-20 + 2188: 18,-20 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale180 decals: 110: -8,-23 - 787: -13,-10 - 788: -14,-10 - 789: -15,-10 - 803: -16,-27 - 804: -16,-22 - 805: -16,-19 - 806: -16,-18 - 807: -16,-17 - 808: -16,-16 - 809: -16,-15 - 810: -16,-14 - 811: -16,-13 - 812: -16,-12 - 2651: 29,-94 - 2652: 29,-93 - 2656: 25,-94 - 2657: 25,-93 - 2682: -9,-10 - 2683: -8,-10 - 2684: -7,-10 - 2685: -6,-10 - 2686: -6,-9 - 2687: -5,-9 - 2688: -4,-9 - 2689: -3,-9 - 2690: -2,-9 + 786: -13,-10 + 787: -14,-10 + 788: -15,-10 + 802: -16,-27 + 803: -16,-22 + 804: -16,-19 + 805: -16,-18 + 806: -16,-17 + 807: -16,-16 + 808: -16,-15 + 809: -16,-14 + 810: -16,-13 + 811: -16,-12 + 2630: 29,-94 + 2631: 29,-93 + 2635: 25,-94 + 2636: 25,-93 + 2661: -9,-10 + 2662: -8,-10 + 2663: -7,-10 + 2664: -6,-10 + 2665: -6,-9 + 2666: -5,-9 + 2667: -4,-9 + 2668: -3,-9 + 2669: -2,-9 - node: color: '#474F52FF' id: QuarterTileOverlayGreyscale180 decals: - 1246: 1,-42 - 1248: 1,-45 - 1249: 1,-46 + 1245: 1,-42 + 1247: 1,-45 + 1248: 1,-46 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 @@ -3142,138 +3142,138 @@ entities: 149: 41,-47 152: 41,-44 170: 36,-33 - 181: 27,-30 - 189: 29,-31 - 225: 26,-35 - 1026: 22,-26 - 1067: 18,-28 - 1074: 37,-41 - 1075: 37,-42 - 1076: 37,-43 - 1077: 37,-44 - 1175: 28,-15 - 1176: 29,-15 - 1179: 36,-15 - 1180: 37,-15 - 1181: 40,-15 - 1182: 42,-15 - 1183: 43,-15 - 1184: 41,-15 - 2138: 36,-25 - 2243: 39,-15 + 180: 27,-30 + 188: 29,-31 + 224: 26,-35 + 1025: 22,-26 + 1066: 18,-28 + 1073: 37,-41 + 1074: 37,-42 + 1075: 37,-43 + 1076: 37,-44 + 1174: 28,-15 + 1175: 29,-15 + 1178: 36,-15 + 1179: 37,-15 + 1180: 40,-15 + 1181: 42,-15 + 1182: 43,-15 + 1183: 41,-15 + 2117: 36,-25 + 2222: 39,-15 - node: color: '#9D9D97FF' id: QuarterTileOverlayGreyscale180 decals: - 1111: 67,-25 - 1112: 67,-26 - 1113: 67,-27 - 1114: 67,-28 - 1115: 67,-29 - 1116: 67,-30 - 1117: 67,-31 - 1118: 67,-32 - 1119: 67,-33 - 1120: 67,-34 - 1121: 67,-35 - 1122: 67,-36 - 1123: 67,-37 - 1124: 67,-38 - 1125: 67,-39 - 1126: 67,-40 - 1127: 67,-42 - 1128: 67,-41 - 1129: 67,-43 - 1130: 67,-44 - 1131: 67,-45 - 1132: 67,-46 - 1133: 67,-47 - 1134: 67,-48 - 1135: 68,-25 - 1136: 69,-25 - 1137: 70,-25 - 1138: 71,-25 - 1139: 72,-25 - 1140: 73,-25 - 1141: 74,-25 + 1110: 67,-25 + 1111: 67,-26 + 1112: 67,-27 + 1113: 67,-28 + 1114: 67,-29 + 1115: 67,-30 + 1116: 67,-31 + 1117: 67,-32 + 1118: 67,-33 + 1119: 67,-34 + 1120: 67,-35 + 1121: 67,-36 + 1122: 67,-37 + 1123: 67,-38 + 1124: 67,-39 + 1125: 67,-40 + 1126: 67,-42 + 1127: 67,-41 + 1128: 67,-43 + 1129: 67,-44 + 1130: 67,-45 + 1131: 67,-46 + 1132: 67,-47 + 1133: 67,-48 + 1134: 68,-25 + 1135: 69,-25 + 1136: 70,-25 + 1137: 71,-25 + 1138: 72,-25 + 1139: 73,-25 + 1140: 74,-25 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale180 decals: - 249: -31,-17 - 644: -27,-28 - 698: -31,-23 + 248: -31,-17 + 643: -27,-28 + 697: -31,-23 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale180 decals: - 2283: 50,-15 - 2284: 57,-15 - 3024: -24,-34 - 3025: -24,-35 - 3026: -24,-36 - 3027: -24,-37 - 3028: -24,-38 - 3029: -24,-39 - 3031: -25,-39 - 3032: -26,-39 - 3033: -27,-39 - 3034: -28,-39 - 3035: -29,-39 + 2262: 50,-15 + 2263: 57,-15 + 3003: -24,-34 + 3004: -24,-35 + 3005: -24,-36 + 3006: -24,-37 + 3007: -24,-38 + 3008: -24,-39 + 3010: -25,-39 + 3011: -26,-39 + 3012: -27,-39 + 3013: -28,-39 + 3014: -29,-39 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale180 decals: - 1381: 59,-27 - 2372: 1,-3 - 2373: 2,-3 - 2374: 3,-3 - 2375: 4,-3 - 2376: 5,-3 - 2377: 6,-3 - 2378: 7,-3 - 2379: 8,-3 - 2380: 9,-3 - 2381: 10,-3 - 2382: 11,-3 - 2383: 12,-3 - 2384: 13,-3 - 2626: -54,1 - 2627: -54,0 - 2762: 16,-15 - 2763: 16,-16 - 2764: 16,-17 - 2765: 16,-19 - 2766: 16,-20 - 2767: 16,-18 - 2768: 16,-21 - 2769: 16,-22 - 2770: 16,-23 - 2824: 0,-32 - 2825: 1,-32 - 2829: 7,-32 + 1380: 59,-27 + 2351: 1,-3 + 2352: 2,-3 + 2353: 3,-3 + 2354: 4,-3 + 2355: 5,-3 + 2356: 6,-3 + 2357: 7,-3 + 2358: 8,-3 + 2359: 9,-3 + 2360: 10,-3 + 2361: 11,-3 + 2362: 12,-3 + 2363: 13,-3 + 2605: -54,1 + 2606: -54,0 + 2741: 16,-15 + 2742: 16,-16 + 2743: 16,-17 + 2744: 16,-19 + 2745: 16,-20 + 2746: 16,-18 + 2747: 16,-21 + 2748: 16,-22 + 2749: 16,-23 + 2803: 0,-32 + 2804: 1,-32 + 2808: 7,-32 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale180 decals: - 2515: -77,-6 - 2516: -76,-6 - 2517: -75,-6 - 2518: -74,-6 - 2519: -73,-6 - 2520: -72,-6 - 2521: -71,-6 - 2522: -70,-6 - 2523: -69,-6 - 2524: -68,-6 - 2525: -67,-6 - 2526: -66,-6 - 2553: 76,-16 - 2554: 77,-16 - 2555: 78,-16 - 2556: 79,-16 - 2930: -78,-6 - 2931: -79,-6 + 2494: -77,-6 + 2495: -76,-6 + 2496: -75,-6 + 2497: -74,-6 + 2498: -73,-6 + 2499: -72,-6 + 2500: -71,-6 + 2501: -70,-6 + 2502: -69,-6 + 2503: -68,-6 + 2504: -67,-6 + 2505: -66,-6 + 2532: 76,-16 + 2533: 77,-16 + 2534: 78,-16 + 2535: 79,-16 + 2909: -78,-6 + 2910: -79,-6 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale180 @@ -3284,85 +3284,85 @@ entities: 42: -15,22 47: 6,24 51: 8,30 - 245: -20,-30 - 529: 4,30 - 530: 3,30 - 875: 0,19 - 876: 1,19 - 877: 2,19 - 878: 3,19 - 879: 4,19 - 880: 5,19 - 881: 6,19 - 882: 15,37 - 883: 16,37 - 2244: 38,-15 + 244: -20,-30 + 528: 4,30 + 529: 3,30 + 874: 0,19 + 875: 1,19 + 876: 2,19 + 877: 3,19 + 878: 4,19 + 879: 5,19 + 880: 6,19 + 881: 15,37 + 882: 16,37 + 2223: 38,-15 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale180 decals: - 380: -18,-74 - 382: -14,-75 - 401: 12,-74 - 430: -6,-65 - 433: -5,-62 - 441: -1,-62 - 451: -5,-64 - 1201: 0,-34 - 1202: 0,-35 - 1203: 0,-36 - 1204: 0,-37 - 1205: 0,-38 - 1206: 0,-39 - 1207: 0,-40 - 1240: 0,-55 - 1241: 0,-54 - 1242: 0,-53 - 1243: 0,-52 - 1384: 5,-33 - 1385: 6,-33 - 1386: 7,-33 - 1424: 63,-58 - 1425: 62,-58 - 1426: 61,-58 - 1427: 60,-58 - 1428: 57,-58 - 1429: 59,-58 - 1430: 58,-58 - 1431: 56,-58 - 1432: 55,-58 - 1695: 9,-59 - 1696: 9,-58 - 1697: 9,-57 - 1698: 9,-56 + 379: -18,-74 + 381: -14,-75 + 400: 12,-74 + 429: -6,-65 + 432: -5,-62 + 440: -1,-62 + 450: -5,-64 + 1200: 0,-34 + 1201: 0,-35 + 1202: 0,-36 + 1203: 0,-37 + 1204: 0,-38 + 1205: 0,-39 + 1206: 0,-40 + 1239: 0,-55 + 1240: 0,-54 + 1241: 0,-53 + 1242: 0,-52 + 1383: 5,-33 + 1384: 6,-33 + 1385: 7,-33 + 1423: 63,-58 + 1424: 62,-58 + 1425: 61,-58 + 1426: 60,-58 + 1427: 57,-58 + 1428: 59,-58 + 1429: 58,-58 + 1430: 56,-58 + 1431: 55,-58 + 1674: 9,-59 + 1675: 9,-58 + 1676: 9,-57 + 1677: 9,-56 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale270 decals: - 796: 11,-10 - 797: 12,-10 - 798: 13,-10 - 813: 14,-12 - 814: 14,-13 - 815: 14,-14 - 816: 14,-15 - 817: 14,-19 - 818: 14,-18 - 819: 14,-17 - 820: 14,-16 - 2649: 27,-94 - 2650: 27,-93 - 2654: 31,-94 - 2655: 31,-93 - 2673: 7,-10 - 2674: 6,-10 - 2675: 5,-10 - 2676: 4,-10 - 2677: 4,-9 - 2678: 3,-9 - 2679: 2,-9 - 2680: 1,-9 - 2681: 0,-9 + 795: 11,-10 + 796: 12,-10 + 797: 13,-10 + 812: 14,-12 + 813: 14,-13 + 814: 14,-14 + 815: 14,-15 + 816: 14,-19 + 817: 14,-18 + 818: 14,-17 + 819: 14,-16 + 2628: 27,-94 + 2629: 27,-93 + 2633: 31,-94 + 2634: 31,-93 + 2652: 7,-10 + 2653: 6,-10 + 2654: 5,-10 + 2655: 4,-10 + 2656: 4,-9 + 2657: 3,-9 + 2658: 2,-9 + 2659: 1,-9 + 2660: 0,-9 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 @@ -3371,209 +3371,209 @@ entities: 154: 39,-48 161: 39,-41 171: 35,-31 - 184: 29,-30 - 1025: 24,-26 - 1177: 31,-15 - 1178: 32,-15 - 1185: 45,-15 - 1186: 46,-15 - 1187: 47,-15 - 1188: 48,-15 - 1189: 24,-15 - 1190: 23,-15 - 1191: 22,-15 - 1192: 18,-15 - 1433: 63,-58 - 1434: 62,-58 - 1435: 61,-58 - 1436: 60,-58 - 1437: 59,-58 - 1438: 58,-58 - 1439: 57,-58 - 1440: 56,-58 - 1441: 55,-58 - 1444: 56,-23 - 1637: 34,-44 - 1638: 34,-43 - 1639: 34,-42 - 1640: 34,-41 - 2229: 26,-18 - 2467: -77,-6 - 2468: -76,-6 - 2469: -75,-6 - 2470: -74,-6 - 2471: -73,-6 - 2472: -72,-6 - 2473: -71,-6 - 2474: -70,-6 - 2475: -69,-6 - 2476: -68,-6 - 2477: -67,-6 - 2478: -66,-6 - 2928: -78,-6 - 2929: -79,-6 + 183: 29,-30 + 1024: 24,-26 + 1176: 31,-15 + 1177: 32,-15 + 1184: 45,-15 + 1185: 46,-15 + 1186: 47,-15 + 1187: 48,-15 + 1188: 24,-15 + 1189: 23,-15 + 1190: 22,-15 + 1191: 18,-15 + 1432: 63,-58 + 1433: 62,-58 + 1434: 61,-58 + 1435: 60,-58 + 1436: 59,-58 + 1437: 58,-58 + 1438: 57,-58 + 1439: 56,-58 + 1440: 55,-58 + 1443: 56,-23 + 1616: 34,-44 + 1617: 34,-43 + 1618: 34,-42 + 1619: 34,-41 + 2208: 26,-18 + 2446: -77,-6 + 2447: -76,-6 + 2448: -75,-6 + 2449: -74,-6 + 2450: -73,-6 + 2451: -72,-6 + 2452: -71,-6 + 2453: -70,-6 + 2454: -69,-6 + 2455: -68,-6 + 2456: -67,-6 + 2457: -66,-6 + 2907: -78,-6 + 2908: -79,-6 - node: color: '#79150096' id: QuarterTileOverlayGreyscale270 decals: - 2549: 76,-16 - 2550: 77,-16 - 2551: 78,-16 - 2552: 79,-16 + 2528: 76,-16 + 2529: 77,-16 + 2530: 78,-16 + 2531: 79,-16 - node: color: '#9D9D97FF' id: QuarterTileOverlayGreyscale270 decals: - 1087: 65,-48 - 1088: 65,-47 - 1089: 65,-46 - 1090: 65,-45 - 1091: 65,-44 - 1092: 65,-43 - 1093: 65,-42 - 1094: 65,-41 - 1095: 65,-40 - 1096: 65,-39 - 1097: 65,-38 - 1098: 65,-37 - 1099: 65,-36 - 1100: 65,-35 - 1101: 65,-34 - 1102: 65,-33 - 1103: 65,-32 - 1104: 65,-31 - 1105: 65,-30 - 1106: 65,-29 - 1107: 65,-28 - 1108: 65,-27 - 1109: 65,-26 - 1110: 65,-25 + 1086: 65,-48 + 1087: 65,-47 + 1088: 65,-46 + 1089: 65,-45 + 1090: 65,-44 + 1091: 65,-43 + 1092: 65,-42 + 1093: 65,-41 + 1094: 65,-40 + 1095: 65,-39 + 1096: 65,-38 + 1097: 65,-37 + 1098: 65,-36 + 1099: 65,-35 + 1100: 65,-34 + 1101: 65,-33 + 1102: 65,-32 + 1103: 65,-31 + 1104: 65,-30 + 1105: 65,-29 + 1106: 65,-28 + 1107: 65,-27 + 1108: 65,-26 + 1109: 65,-25 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale270 decals: - 984: 41,-61 - 985: 40,-61 - 986: 39,-61 - 987: 38,-61 - 988: 38,-60 - 989: 38,-59 - 990: 38,-58 - 991: 38,-57 + 983: 41,-61 + 984: 40,-61 + 985: 39,-61 + 986: 38,-61 + 987: 38,-60 + 988: 38,-59 + 989: 38,-58 + 990: 38,-57 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale270 decals: - 250: -30,-17 - 641: -29,-20 - 643: -25,-28 - 726: -18,-20 - 727: -18,-19 - 728: -18,-18 - 729: -18,-17 - 730: -18,-16 - 731: -18,-26 - 732: -18,-27 - 733: -18,-28 - 734: -18,-29 - 735: -18,-30 - 736: -18,-31 - 737: -18,-32 - 2971: 2,-52 - 2978: -18,-15 - 3001: -29,-35 - 3002: -29,-34 - 3003: -29,-33 - 3004: -29,-32 - 3005: -29,-31 - 3006: -29,-30 - 3036: -29,-39 - 3037: -28,-39 - 3038: -27,-39 - 3039: -26,-39 - 3040: -25,-39 - 3041: -24,-39 + 249: -30,-17 + 640: -29,-20 + 642: -25,-28 + 725: -18,-20 + 726: -18,-19 + 727: -18,-18 + 728: -18,-17 + 729: -18,-16 + 730: -18,-26 + 731: -18,-27 + 732: -18,-28 + 733: -18,-29 + 734: -18,-30 + 735: -18,-31 + 736: -18,-32 + 2950: 2,-52 + 2957: -18,-15 + 2980: -29,-35 + 2981: -29,-34 + 2982: -29,-33 + 2983: -29,-32 + 2984: -29,-31 + 2985: -29,-30 + 3015: -29,-39 + 3016: -28,-39 + 3017: -27,-39 + 3018: -26,-39 + 3019: -25,-39 + 3020: -24,-39 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale270 decals: - 2120: 50,-28 - 2121: 49,-27 - 2124: 50,-27 - 2282: 56,-15 - 2285: 59,-15 + 2099: 50,-28 + 2100: 49,-27 + 2103: 50,-27 + 2261: 56,-15 + 2264: 59,-15 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale270 decals: - 2356: -3,-3 - 2357: -4,-3 - 2358: -5,-3 - 2359: -6,-3 - 2360: -8,-3 - 2361: -9,-3 - 2362: -10,-3 - 2363: -12,-3 - 2364: -11,-3 - 2365: -13,-3 - 2366: -15,-3 - 2367: -14,-3 - 2425: 14,-20 - 2426: 14,-21 - 2427: 14,-22 - 2428: 14,-23 - 2429: 14,-28 - 2430: 14,-29 - 2628: -62,-6 - 2629: -61,-6 - 2630: -60,-6 - 2631: -59,-6 - 2632: -58,-6 - 2633: -57,-6 - 2634: -56,-6 - 2635: -55,-6 - 2636: -54,-6 - 2800: 9,-32 - 2801: 10,-32 - 2802: 11,-32 - 2803: 12,-32 - 2804: 13,-32 - 2805: 14,-32 - 2806: 15,-32 - 2807: 16,-32 - 2808: -17,-32 - 2809: -16,-32 - 2810: -15,-32 - 2811: -14,-32 - 2812: -13,-32 - 2813: -12,-32 - 2814: -11,-32 - 2815: -10,-32 - 2816: -9,-32 - 2817: -8,-32 - 2818: -7,-32 - 2819: -6,-32 - 2820: -5,-32 - 2821: -4,-32 - 2822: -3,-32 - 2823: -2,-32 - 2826: 2,-32 - 2989: 51,-12 - 2990: 51,-11 - 2991: 51,-10 - 2992: 51,-9 - 2996: 46,-12 + 2335: -3,-3 + 2336: -4,-3 + 2337: -5,-3 + 2338: -6,-3 + 2339: -8,-3 + 2340: -9,-3 + 2341: -10,-3 + 2342: -12,-3 + 2343: -11,-3 + 2344: -13,-3 + 2345: -15,-3 + 2346: -14,-3 + 2404: 14,-20 + 2405: 14,-21 + 2406: 14,-22 + 2407: 14,-23 + 2408: 14,-28 + 2409: 14,-29 + 2607: -62,-6 + 2608: -61,-6 + 2609: -60,-6 + 2610: -59,-6 + 2611: -58,-6 + 2612: -57,-6 + 2613: -56,-6 + 2614: -55,-6 + 2615: -54,-6 + 2779: 9,-32 + 2780: 10,-32 + 2781: 11,-32 + 2782: 12,-32 + 2783: 13,-32 + 2784: 14,-32 + 2785: 15,-32 + 2786: 16,-32 + 2787: -17,-32 + 2788: -16,-32 + 2789: -15,-32 + 2790: -14,-32 + 2791: -13,-32 + 2792: -12,-32 + 2793: -11,-32 + 2794: -10,-32 + 2795: -9,-32 + 2796: -8,-32 + 2797: -7,-32 + 2798: -6,-32 + 2799: -5,-32 + 2800: -4,-32 + 2801: -3,-32 + 2802: -2,-32 + 2805: 2,-32 + 2968: 51,-12 + 2969: 51,-11 + 2970: 51,-10 + 2971: 51,-9 + 2975: 46,-12 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale270 decals: - 2542: 75,-12 - 2543: 75,-11 - 2544: 75,-10 - 2545: 75,-9 - 2546: 75,-8 - 2547: 75,-7 - 2548: 75,-6 + 2521: 75,-12 + 2522: 75,-11 + 2523: 75,-10 + 2524: 75,-9 + 2525: 75,-8 + 2526: 75,-7 + 2527: 75,-6 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 @@ -3588,111 +3588,111 @@ entities: 65: 11,35 69: 6,33 72: 6,30 - 514: -9,31 - 842: -20,19 - 843: -18,19 - 844: -19,19 - 845: -17,19 - 846: -16,19 - 847: -15,19 - 848: -14,19 - 849: -13,19 - 850: -12,19 - 851: -11,19 - 852: -10,19 - 853: -9,19 - 854: -8,19 - 855: -7,19 - 856: -6,19 - 857: -5,19 - 858: -4,19 - 859: -3,19 - 860: -2,19 - 884: 13,37 - 885: 12,37 - 886: 6,35 - 887: 7,35 - 888: 8,35 - 889: 9,35 - 2735: 15,32 + 513: -9,31 + 841: -20,19 + 842: -18,19 + 843: -19,19 + 844: -17,19 + 845: -16,19 + 846: -15,19 + 847: -14,19 + 848: -13,19 + 849: -12,19 + 850: -11,19 + 851: -10,19 + 852: -9,19 + 853: -8,19 + 854: -7,19 + 855: -6,19 + 856: -5,19 + 857: -4,19 + 858: -3,19 + 859: -2,19 + 883: 13,37 + 884: 12,37 + 885: 6,35 + 886: 7,35 + 887: 8,35 + 888: 9,35 + 2714: 15,32 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale270 decals: - 334: 1,-66 - 346: -10,-67 - 374: -18,-71 - 391: -21,-71 - 419: 11,-71 - 431: -8,-65 - 445: -1,-65 - 449: -3,-64 - 1208: -2,-55 - 1209: -2,-54 - 1210: -2,-53 - 1211: -2,-52 - 1212: -2,-51 - 1213: -2,-50 - 1214: -2,-49 - 1215: -2,-48 - 1216: -2,-47 - 1217: -2,-46 - 1218: -2,-45 - 1219: -2,-44 - 1220: -2,-43 - 1221: -2,-42 - 1222: -2,-41 - 1223: -2,-40 - 1224: -2,-39 - 1225: -2,-38 - 1226: -2,-37 - 1227: -2,-36 - 1228: -2,-35 - 1229: -2,-34 - 1230: -4,-56 - 1231: -4,-57 - 1232: -4,-58 - 1233: 0,-58 - 1234: 1,-58 - 1382: 2,-33 - 1383: 3,-33 - 1644: 3,-50 - 1645: 3,-49 - 1646: 3,-48 - 1694: 7,-59 - 1699: 3,-58 - 1700: 4,-58 - 1701: 5,-58 - 1702: 6,-58 - 1703: 7,-58 - 2640: -4,-59 - 2641: -4,-60 - 2642: -3,-60 - 2643: -2,-60 - 2644: -1,-60 + 333: 1,-66 + 345: -10,-67 + 373: -18,-71 + 390: -21,-71 + 418: 11,-71 + 430: -8,-65 + 444: -1,-65 + 448: -3,-64 + 1207: -2,-55 + 1208: -2,-54 + 1209: -2,-53 + 1210: -2,-52 + 1211: -2,-51 + 1212: -2,-50 + 1213: -2,-49 + 1214: -2,-48 + 1215: -2,-47 + 1216: -2,-46 + 1217: -2,-45 + 1218: -2,-44 + 1219: -2,-43 + 1220: -2,-42 + 1221: -2,-41 + 1222: -2,-40 + 1223: -2,-39 + 1224: -2,-38 + 1225: -2,-37 + 1226: -2,-36 + 1227: -2,-35 + 1228: -2,-34 + 1229: -4,-56 + 1230: -4,-57 + 1231: -4,-58 + 1232: 0,-58 + 1233: 1,-58 + 1381: 2,-33 + 1382: 3,-33 + 1623: 3,-50 + 1624: 3,-49 + 1625: 3,-48 + 1673: 7,-59 + 1678: 3,-58 + 1679: 4,-58 + 1680: 5,-58 + 1681: 6,-58 + 1682: 7,-58 + 2619: -4,-59 + 2620: -4,-60 + 2621: -3,-60 + 2622: -2,-60 + 2623: -1,-60 - node: color: '#F5DB9E96' id: QuarterTileOverlayGreyscale270 decals: - 2236: 21,-15 - 2237: 20,-15 - 2238: 19,-15 + 2215: 21,-15 + 2216: 20,-15 + 2217: 19,-15 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale90 decals: 109: -8,-27 - 790: -13,-8 - 791: -14,-8 - 792: -15,-8 - 801: -16,-24 - 802: -16,-29 - 1071: -9,-30 - 1072: -8,-30 - 1073: -7,-30 - 2645: 29,-90 - 2646: 29,-91 - 2658: 25,-91 + 789: -13,-8 + 790: -14,-8 + 791: -15,-8 + 800: -16,-24 + 801: -16,-29 + 1070: -9,-30 + 1071: -8,-30 + 1072: -7,-30 + 2624: 29,-90 + 2625: 29,-91 + 2637: 25,-91 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 @@ -3702,181 +3702,181 @@ entities: 148: 41,-45 150: 41,-49 153: 41,-42 - 182: 27,-29 - 190: 29,-28 - 219: 26,-33 - 1078: 37,-39 - 1079: 36,-39 - 1080: 35,-39 - 1081: 34,-39 - 1523: 16,-28 - 1524: 16,-27 - 2148: 39,-23 - 2150: 36,-23 - 2230: 25,-19 - 3075: 36,-35 + 181: 27,-29 + 189: 29,-28 + 218: 26,-33 + 1077: 37,-39 + 1078: 36,-39 + 1079: 35,-39 + 1080: 34,-39 + 1522: 16,-28 + 1523: 16,-27 + 2127: 39,-23 + 2129: 36,-23 + 2209: 25,-19 + 3053: 36,-35 - node: color: '#9D9D97FF' id: QuarterTileOverlayGreyscale90 decals: - 1082: 61,-27 + 1081: 61,-27 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale90 decals: - 258: -33,-11 - 2972: 2,-52 - 3015: -29,-30 - 3016: -28,-30 - 3017: -27,-30 - 3018: -24,-34 - 3019: -24,-35 - 3020: -24,-36 - 3021: -24,-37 - 3022: -24,-38 - 3023: -24,-39 + 257: -33,-11 + 2951: 2,-52 + 2994: -29,-30 + 2995: -28,-30 + 2996: -27,-30 + 2997: -24,-34 + 2998: -24,-35 + 2999: -24,-36 + 3000: -24,-37 + 3001: -24,-38 + 3002: -24,-39 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale90 decals: - 462: 63,-23 - 2122: 48,-28 - 2123: 49,-29 - 2125: 48,-29 + 461: 63,-23 + 2101: 48,-28 + 2102: 49,-29 + 2104: 48,-29 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale90 decals: - 2368: -16,-4 - 2369: -16,-5 - 2370: -16,-6 - 2371: -16,-7 - 2389: 4,-1 - 2390: 3,-1 - 2391: 2,-1 - 2392: 2,0 - 2393: 2,1 - 2394: 1,1 - 2404: -14,-1 - 2405: -15,-1 - 2406: -16,-1 - 2407: -17,-1 - 2408: -18,-1 - 2409: 0,3 - 2410: 0,4 - 2411: 0,5 - 2412: 0,6 - 2413: 0,7 - 2414: 0,8 - 2415: 0,9 - 2416: 0,10 - 2431: 13,-30 - 2432: 12,-30 - 2433: 11,-30 - 2434: 9,-30 - 2435: 10,-30 - 2436: 7,-30 - 2437: 6,-30 - 2438: 5,-30 - 2439: 4,-30 - 2440: 3,-30 - 2441: 2,-30 - 2442: 1,-30 - 2443: -6,-30 - 2444: -5,-30 - 2445: -4,-30 - 2446: -11,-30 - 2447: -12,-30 - 2448: -13,-30 - 2449: -14,-30 - 2450: -15,-30 - 2602: -33,-1 - 2603: -34,-1 - 2604: -35,-1 - 2605: -37,-1 - 2606: -36,-1 - 2607: -38,-1 - 2610: -43,-1 - 2611: -44,-1 - 2637: -54,-6 - 2638: -54,-5 - 2639: -54,-4 - 2771: 16,-25 - 2772: 16,-26 - 2773: 16,-29 - 2774: 16,-30 - 2775: 16,-31 - 2776: 16,-32 - 2828: 7,-33 - 2836: 10,-1 - 2837: 11,-1 - 2838: 12,-1 - 2839: 13,-1 - 2840: 14,-1 - 2841: 15,-1 - 2842: 16,-1 - 2843: 16,-2 - 2844: 16,-3 - 2845: 16,-4 - 2846: 16,-5 - 2847: 16,-6 - 2848: 16,-7 - 2849: 16,-8 - 2850: 16,-9 - 2851: 16,-10 - 2852: 16,-12 - 2853: 16,-13 - 2854: 9,-1 - 2855: 9,0 - 2856: 9,1 - 2857: 9,2 - 2858: 9,3 - 2859: 9,4 - 2860: 9,5 - 2861: 9,6 - 2983: 46,-12 - 2984: 47,-12 - 2985: 48,-12 - 2986: 49,-12 - 2987: 49,-13 - 2988: 50,-13 - 2993: 51,-9 - 2994: 52,-9 - 2995: 53,-9 - 2997: 45,-13 - 2998: 44,-13 - 2999: 43,-13 - 3000: 42,-13 + 2347: -16,-4 + 2348: -16,-5 + 2349: -16,-6 + 2350: -16,-7 + 2368: 4,-1 + 2369: 3,-1 + 2370: 2,-1 + 2371: 2,0 + 2372: 2,1 + 2373: 1,1 + 2383: -14,-1 + 2384: -15,-1 + 2385: -16,-1 + 2386: -17,-1 + 2387: -18,-1 + 2388: 0,3 + 2389: 0,4 + 2390: 0,5 + 2391: 0,6 + 2392: 0,7 + 2393: 0,8 + 2394: 0,9 + 2395: 0,10 + 2410: 13,-30 + 2411: 12,-30 + 2412: 11,-30 + 2413: 9,-30 + 2414: 10,-30 + 2415: 7,-30 + 2416: 6,-30 + 2417: 5,-30 + 2418: 4,-30 + 2419: 3,-30 + 2420: 2,-30 + 2421: 1,-30 + 2422: -6,-30 + 2423: -5,-30 + 2424: -4,-30 + 2425: -11,-30 + 2426: -12,-30 + 2427: -13,-30 + 2428: -14,-30 + 2429: -15,-30 + 2581: -33,-1 + 2582: -34,-1 + 2583: -35,-1 + 2584: -37,-1 + 2585: -36,-1 + 2586: -38,-1 + 2589: -43,-1 + 2590: -44,-1 + 2616: -54,-6 + 2617: -54,-5 + 2618: -54,-4 + 2750: 16,-25 + 2751: 16,-26 + 2752: 16,-29 + 2753: 16,-30 + 2754: 16,-31 + 2755: 16,-32 + 2807: 7,-33 + 2815: 10,-1 + 2816: 11,-1 + 2817: 12,-1 + 2818: 13,-1 + 2819: 14,-1 + 2820: 15,-1 + 2821: 16,-1 + 2822: 16,-2 + 2823: 16,-3 + 2824: 16,-4 + 2825: 16,-5 + 2826: 16,-6 + 2827: 16,-7 + 2828: 16,-8 + 2829: 16,-9 + 2830: 16,-10 + 2831: 16,-12 + 2832: 16,-13 + 2833: 9,-1 + 2834: 9,0 + 2835: 9,1 + 2836: 9,2 + 2837: 9,3 + 2838: 9,4 + 2839: 9,5 + 2840: 9,6 + 2962: 46,-12 + 2963: 47,-12 + 2964: 48,-12 + 2965: 49,-12 + 2966: 49,-13 + 2967: 50,-13 + 2972: 51,-9 + 2973: 52,-9 + 2974: 53,-9 + 2976: 45,-13 + 2977: 44,-13 + 2978: 43,-13 + 2979: 42,-13 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale90 decals: - 2491: -66,-14 - 2492: -67,-14 - 2493: -68,-14 - 2494: -69,-14 - 2495: -70,-14 - 2496: -71,-14 - 2497: -72,-14 - 2498: -73,-14 - 2499: -74,-14 - 2500: -75,-14 - 2501: -76,-14 - 2502: -77,-14 - 2503: -77,10 - 2504: -76,10 - 2505: -75,10 - 2506: -74,10 - 2507: -73,10 - 2508: -72,10 - 2509: -71,10 - 2510: -70,10 - 2511: -69,10 - 2512: -68,10 - 2513: -66,10 - 2514: -65,10 - 2932: -78,10 - 2933: -79,10 + 2470: -66,-14 + 2471: -67,-14 + 2472: -68,-14 + 2473: -69,-14 + 2474: -70,-14 + 2475: -71,-14 + 2476: -72,-14 + 2477: -73,-14 + 2478: -74,-14 + 2479: -75,-14 + 2480: -76,-14 + 2481: -77,-14 + 2482: -77,10 + 2483: -76,10 + 2484: -75,10 + 2485: -74,10 + 2486: -73,10 + 2487: -72,10 + 2488: -71,10 + 2489: -70,10 + 2490: -69,10 + 2491: -68,10 + 2492: -66,10 + 2493: -65,10 + 2911: -78,10 + 2912: -79,10 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale90 @@ -3890,67 +3890,67 @@ entities: 50: 15,35 52: 19,34 55: 18,36 - 236: 37,-17 - 246: -20,-32 - 483: 25,36 - 484: 25,35 - 485: 25,34 - 486: 25,33 - 487: 25,32 - 522: 2,33 - 523: 3,33 - 524: 4,33 - 525: 4,32 - 821: 6,21 - 822: 7,21 - 823: 8,21 - 824: 9,21 - 825: 10,21 - 868: 0,12 - 869: 0,13 - 870: 0,14 - 871: 0,15 - 872: 0,16 - 873: 0,17 - 874: 0,18 - 1455: 59,-18 - 2739: 13,31 + 235: 37,-17 + 245: -20,-32 + 482: 25,36 + 483: 25,35 + 484: 25,34 + 485: 25,33 + 486: 25,32 + 521: 2,33 + 522: 3,33 + 523: 4,33 + 524: 4,32 + 820: 6,21 + 821: 7,21 + 822: 8,21 + 823: 9,21 + 824: 10,21 + 867: 0,12 + 868: 0,13 + 869: 0,14 + 870: 0,15 + 871: 0,16 + 872: 0,17 + 873: 0,18 + 1454: 59,-18 + 2718: 13,31 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale90 decals: - 329: 6,-66 - 342: -6,-67 - 373: -15,-69 - 384: -13,-75 - 397: 9,-72 - 400: 12,-75 - 408: 18,-74 - 432: -5,-65 - 434: -5,-63 - 438: -3,-62 - 569: -38,1 - 570: -38,2 - 571: -38,3 - 572: -38,4 - 573: -38,5 - 1235: -3,-56 - 1237: 1,-56 - 1238: 1,-57 - 1239: 0,-56 - 1244: 1,-41 - 1251: 1,-44 - 1252: 1,-45 - 1253: 1,-46 - 1254: 1,-47 - 1274: 14,-45 - 1275: 14,-44 - 1276: 14,-43 - 1277: 14,-42 - 1278: 14,-41 - 1714: 5,-52 - 1715: 5,-54 - 1716: 5,-55 + 328: 6,-66 + 341: -6,-67 + 372: -15,-69 + 383: -13,-75 + 396: 9,-72 + 399: 12,-75 + 407: 18,-74 + 431: -5,-65 + 433: -5,-63 + 437: -3,-62 + 568: -38,1 + 569: -38,2 + 570: -38,3 + 571: -38,4 + 572: -38,5 + 1234: -3,-56 + 1236: 1,-56 + 1237: 1,-57 + 1238: 0,-56 + 1243: 1,-41 + 1250: 1,-44 + 1251: 1,-45 + 1252: 1,-46 + 1253: 1,-47 + 1273: 14,-45 + 1274: 14,-44 + 1275: 14,-43 + 1276: 14,-42 + 1277: 14,-41 + 1693: 5,-52 + 1694: 5,-54 + 1695: 5,-55 - node: color: '#F9FFFEFF' id: Remains @@ -3960,259 +3960,259 @@ entities: color: '#FFFFFFFF' id: SpaceStationSign1 decals: - 1413: -4,-2 + 1412: -4,-2 - node: color: '#FFFFFFFF' id: SpaceStationSign2 decals: - 1414: -3,-2 + 1413: -3,-2 - node: color: '#FFFFFFFF' id: SpaceStationSign3 decals: - 1415: -2,-2 + 1414: -2,-2 - node: color: '#FFFFFFFF' id: SpaceStationSign4 decals: - 1416: -1,-2 + 1415: -1,-2 - node: color: '#FFFFFFFF' id: SpaceStationSign5 decals: - 1417: 0,-2 + 1416: 0,-2 - node: color: '#FFFFFFFF' id: SpaceStationSign6 decals: - 1418: 1,-2 + 1417: 1,-2 - node: color: '#FFFFFFFF' id: SpaceStationSign7 decals: - 1419: 2,-2 + 1418: 2,-2 - node: color: '#FFFFFFFF' id: StandClear decals: - 3046: -32,-38 + 3025: -32,-38 - node: color: '#334E6D5A' id: ThreeQuarterTileOverlayGreyscale decals: - 2879: 0,-7 - 2880: -2,-5 + 2858: 0,-7 + 2859: -2,-5 - node: color: '#52B4E931' id: ThreeQuarterTileOverlayGreyscale decals: - 2881: 3,-7 - 2884: 1,-5 + 2860: 3,-7 + 2863: 1,-5 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale decals: - 532: -11,24 - 1066: 18,-25 - 2115: 48,-27 - 2151: 37,-22 - 2157: 43,-27 + 531: -11,24 + 1065: 18,-25 + 2094: 48,-27 + 2130: 37,-22 + 2136: 43,-27 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale decals: - 537: -7,24 - 1285: 34,-52 + 536: -7,24 + 1284: 34,-52 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale decals: - 646: -30,-36 + 645: -30,-36 - node: color: '#D381C934' id: ThreeQuarterTileOverlayGreyscale decals: - 2889: 5,-7 + 2868: 5,-7 - node: color: '#DE3A3A2B' id: ThreeQuarterTileOverlayGreyscale decals: - 2864: -9,-7 + 2843: -9,-7 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale decals: - 612: -62,5 - 1299: 76,-2 - 1450: 57,-17 + 611: -62,5 + 1298: 76,-2 + 1449: 57,-17 - node: color: '#EFB34131' id: ThreeQuarterTileOverlayGreyscale decals: - 2868: -3,-7 - 2869: -5,-5 + 2847: -3,-7 + 2848: -5,-5 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale decals: - 544: -3,24 + 543: -3,24 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 534: -9,23 - 1022: 22,-28 - 2116: 50,-29 - 2142: 42,-25 - 2228: 25,-18 - 3073: 37,-37 + 533: -9,23 + 1021: 22,-28 + 2095: 50,-29 + 2121: 42,-25 + 2207: 25,-18 + 3051: 37,-37 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale180 decals: - 540: -5,23 - 1005: 47,-57 - 1287: 37,-54 - 1288: 36,-56 + 539: -5,23 + 1004: 47,-57 + 1286: 37,-54 + 1287: 36,-56 - node: color: '#D381C934' id: ThreeQuarterTileOverlayGreyscale180 decals: - 2890: 7,-8 + 2869: 7,-8 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1148: 71,-16 + 1147: 71,-16 - node: color: '#DE3A3A2B' id: ThreeQuarterTileOverlayGreyscale180 decals: - 2863: -7,-8 + 2842: -7,-8 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale180 decals: - 610: -57,3 - 1301: 82,-4 + 609: -57,3 + 1300: 82,-4 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale180 decals: - 541: -1,23 - 1397: 0,-28 + 540: -1,23 + 1396: 0,-28 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 decals: - 533: -11,23 - 2117: 48,-29 - 3064: 28,-37 + 532: -11,23 + 2096: 48,-29 + 3042: 28,-37 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale270 decals: - 539: -7,23 - 1284: 34,-56 + 538: -7,23 + 1283: 34,-56 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale270 decals: - 645: -30,-39 + 644: -30,-39 - node: color: '#D381C934' id: ThreeQuarterTileOverlayGreyscale270 decals: - 2892: 5,-8 + 2871: 5,-8 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale270 decals: - 1147: 61,-16 + 1146: 61,-16 - node: color: '#DE3A3A2B' id: ThreeQuarterTileOverlayGreyscale270 decals: - 2862: -9,-8 + 2841: -9,-8 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale270 decals: - 609: -62,3 - 1302: 76,-4 + 608: -62,3 + 1301: 76,-4 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale270 decals: - 542: -3,23 - 1398: -2,-28 + 541: -3,23 + 1397: -2,-28 - node: color: '#334E6D5A' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2877: -2,-7 - 2878: 0,-5 + 2856: -2,-7 + 2857: 0,-5 - node: color: '#52B4E931' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2882: 1,-7 - 2883: 3,-5 + 2861: 1,-7 + 2862: 3,-5 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 531: -9,24 - 2118: 50,-27 - 2143: 42,-23 - 2152: 39,-22 - 3074: 37,-35 + 530: -9,24 + 2097: 50,-27 + 2122: 42,-23 + 2131: 39,-22 + 3052: 37,-35 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale90 decals: - 538: -5,24 - 1004: 47,-56 - 1286: 37,-52 + 537: -5,24 + 1003: 47,-56 + 1285: 37,-52 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale90 decals: - 1466: -20,-16 + 1465: -20,-16 - node: color: '#D381C934' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2891: 7,-7 + 2870: 7,-7 - node: color: '#DE3A3A2B' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2865: -7,-7 + 2844: -7,-7 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale90 decals: - 611: -57,5 - 1300: 82,-2 - 1449: 63,-18 - 1451: 59,-17 + 610: -57,5 + 1299: 82,-2 + 1448: 63,-18 + 1450: 59,-17 - node: color: '#EFB34131' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2870: -5,-7 - 2871: -3,-5 + 2849: -5,-7 + 2850: -3,-5 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale90 decals: - 543: -1,24 + 542: -1,24 - node: color: '#FFFFFFFF' id: VentSmall decals: - 3090: 31,-35 + 3068: 31,-35 - node: color: '#FED83DFF' id: WarnBox @@ -4245,565 +4245,565 @@ entities: color: '#FFFFFFFF' id: WarnBox decals: - 1316: 84,-14 - 1317: 84,-12 - 1318: 84,-6 - 1319: 84,-4 - 1332: -69,-17 - 1333: -76,-17 - 1334: -67,-10 + 1315: 84,-14 + 1316: 84,-12 + 1317: 84,-6 + 1318: 84,-4 + 1331: -69,-17 + 1332: -76,-17 + 1333: -67,-10 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: - 2214: 19,-19 + 2193: 19,-19 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: - 2221: 21,-21 + 2200: 21,-21 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleNE decals: - 1782: 42,-21 - 1783: 44,-21 - 1784: 46,-21 + 1761: 42,-21 + 1762: 44,-21 + 1763: 46,-21 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleNW decals: - 1779: 46,-21 - 1780: 44,-21 - 1781: 42,-21 + 1758: 46,-21 + 1759: 44,-21 + 1760: 42,-21 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 1405: -3,-30 - 2276: 51,-21 - 2964: -73,-4 + 1404: -3,-30 + 2255: 51,-21 + 2943: -73,-4 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 939: 76,-42 - 1404: 1,-30 - 1548: 72,-22 - 2275: 55,-21 - 2938: -79,8 - 2941: -79,-6 - 2962: -69,-4 - 2963: -76,-4 + 938: 76,-42 + 1403: 1,-30 + 1547: 72,-22 + 2254: 55,-21 + 2917: -79,8 + 2920: -79,-6 + 2941: -69,-4 + 2942: -76,-4 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 638: -41,-10 - 2110: -13,6 - 2274: 51,-17 - 2671: 22,-90 - 2967: -73,8 + 637: -41,-10 + 2089: -13,6 + 2253: 51,-17 + 2650: 22,-90 + 2946: -73,8 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 560: 1,36 - 637: -38,-10 - 938: 76,-40 - 967: 72,-19 - 2109: -11,6 - 2273: 55,-17 - 2672: 34,-90 - 2937: -79,10 - 2940: -79,-4 - 2965: -69,8 - 2966: -76,8 + 559: 1,36 + 636: -38,-10 + 937: 76,-40 + 966: 72,-19 + 2088: -11,6 + 2252: 55,-17 + 2651: 34,-90 + 2916: -79,10 + 2919: -79,-4 + 2944: -69,8 + 2945: -76,8 - node: color: '#DE3A3A96' id: WarnFullGreyscale decals: - 2740: -2,41 - 2741: -1,41 - 2742: 0,41 - 2743: 1,41 - 2744: 2,41 - 2745: 3,41 + 2719: -2,41 + 2720: -1,41 + 2721: 0,41 + 2722: 1,41 + 2723: 2,41 + 2724: 3,41 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 505: 24,37 - 506: 24,38 - 507: 24,39 - 508: 24,40 - 509: 24,41 - 510: 24,42 - 580: 11,-45 - 581: 11,-44 - 582: 11,-43 - 583: 11,-42 - 584: 11,-41 - 918: 74,-36 - 919: 74,-35 - 920: 74,-34 - 982: 78,-47 - 983: 78,-48 - 1019: 41,-54 - 1020: 41,-53 - 1021: 41,-52 - 1160: 67,-20 - 1161: 67,-19 - 1162: 67,-18 - 2215: 19,-18 - 2216: 19,-17 - 2264: 51,-20 - 2265: 51,-19 - 2266: 51,-18 - 2311: 60,-32 - 2312: 60,-31 - 2313: 60,-30 - 2668: 22,-93 - 2669: 22,-92 - 2670: 22,-91 + 504: 24,37 + 505: 24,38 + 506: 24,39 + 507: 24,40 + 508: 24,41 + 509: 24,42 + 579: 11,-45 + 580: 11,-44 + 581: 11,-43 + 582: 11,-42 + 583: 11,-41 + 917: 74,-36 + 918: 74,-35 + 919: 74,-34 + 981: 78,-47 + 982: 78,-48 + 1018: 41,-54 + 1019: 41,-53 + 1020: 41,-52 + 1159: 67,-20 + 1160: 67,-19 + 1161: 67,-18 + 2194: 19,-18 + 2195: 19,-17 + 2243: 51,-20 + 2244: 51,-19 + 2245: 51,-18 + 2290: 60,-32 + 2291: 60,-31 + 2292: 60,-30 + 2647: 22,-93 + 2648: 22,-92 + 2649: 22,-91 - node: color: '#334E6DC8' id: WarnLineGreyscaleE decals: - 1880: -7,-17 - 2084: -9,8 + 1859: -7,-17 + 2063: -9,8 - node: color: '#52B4E996' id: WarnLineGreyscaleE decals: - 2174: 41,-29 - 2175: 41,-28 + 2153: 41,-29 + 2154: 41,-28 - node: color: '#DE3A3A96' id: WarnLineGreyscaleE decals: - 2308: 46,-23 + 2287: 46,-23 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleE decals: - 1765: 46,-20 - 1766: 46,-19 - 1767: 46,-18 - 1768: 46,-17 - 1769: 44,-20 - 1770: 44,-19 - 1771: 44,-18 - 1772: 44,-17 - 1773: 42,-20 - 1774: 42,-19 - 1775: 42,-18 + 1744: 46,-20 + 1745: 46,-19 + 1746: 46,-18 + 1747: 46,-17 + 1748: 44,-20 + 1749: 44,-19 + 1750: 44,-18 + 1751: 44,-17 + 1752: 42,-20 + 1753: 42,-19 + 1754: 42,-18 - node: color: '#334E6DC8' id: WarnLineGreyscaleN decals: - 1881: -8,-12 + 1860: -8,-12 - node: color: '#52B4E996' id: WarnLineGreyscaleN decals: - 2146: 41,-23 - 2172: 40,-27 - 2173: 39,-27 + 2125: 41,-23 + 2151: 40,-27 + 2152: 39,-27 - node: color: '#A4610696' id: WarnLineGreyscaleN decals: - 2975: -27,-16 + 2954: -27,-16 - node: color: '#D381C996' id: WarnLineGreyscaleN decals: - 2035: 66,-51 - 2348: 54,-40 + 2014: 66,-51 + 2327: 54,-40 - node: color: '#DE3A3A96' id: WarnLineGreyscaleN decals: - 1906: -11,36 - 1917: -6,36 - 1966: -8,45 - 1967: -14,45 - 1968: -18,45 - 1969: -21,45 - 1970: -24,45 - 2153: 38,-22 - 2309: 45,-23 - 2893: -8,27 - 2894: -9,27 + 1885: -11,36 + 1896: -6,36 + 1945: -8,45 + 1946: -14,45 + 1947: -18,45 + 1948: -21,45 + 1949: -24,45 + 2132: 38,-22 + 2288: 45,-23 + 2872: -8,27 + 2873: -9,27 - node: color: '#F5DB9E96' id: WarnLineGreyscaleN decals: - 2239: 19,-25 - 2240: 21,-25 + 2218: 19,-25 + 2219: 21,-25 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleN decals: - 1776: 41,-21 - 1777: 43,-21 - 1778: 45,-21 + 1755: 41,-21 + 1756: 43,-21 + 1757: 45,-21 - node: color: '#334E6DC8' id: WarnLineGreyscaleS decals: - 1878: -14,-18 - 1879: -8,-20 - 2691: -1,-9 + 1857: -14,-18 + 1858: -8,-20 + 2670: -1,-9 - node: color: '#52B4E996' id: WarnLineGreyscaleS decals: - 2144: 40,-25 - 2145: 39,-25 + 2123: 40,-25 + 2124: 39,-25 - node: color: '#A4610696' id: WarnLineGreyscaleS decals: - 2974: -27,-18 + 2953: -27,-18 - node: color: '#D381C996' id: WarnLineGreyscaleS decals: - 2277: 54,-15 - 2278: 53,-15 - 2279: 52,-15 - 2286: 58,-15 - 2287: 66,-16 - 2346: 58,-42 - 2347: 56,-42 + 2256: 54,-15 + 2257: 53,-15 + 2258: 52,-15 + 2265: 58,-15 + 2266: 66,-16 + 2325: 58,-42 + 2326: 56,-42 - node: color: '#DE3A3A96' id: WarnLineGreyscaleS decals: - 1905: -11,43 - 1929: -15,34 - 1961: -19,43 - 1962: -22,43 - 1963: -24,43 - 1964: -15,43 - 1965: -6,43 - 2730: 6,26 - 2731: 4,26 + 1884: -11,43 + 1908: -15,34 + 1940: -19,43 + 1941: -22,43 + 1942: -24,43 + 1943: -15,43 + 1944: -6,43 + 2709: 6,26 + 2710: 4,26 - node: color: '#EFB34196' id: WarnLineGreyscaleS decals: - 2067: -6,6 - 2068: -4,6 + 2046: -6,6 + 2047: -4,6 - node: color: '#334E6DC8' id: WarnLineGreyscaleW decals: - 2777: 14,-26 + 2756: 14,-26 - node: color: '#DE3A3A96' id: WarnLineGreyscaleW decals: - 2307: 44,-24 + 2286: 44,-24 - node: color: '#EFB34196' id: WarnLineGreyscaleW decals: - 2069: -7,8 + 2048: -7,8 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleW decals: - 1754: 42,-20 - 1755: 42,-19 - 1756: 42,-18 - 1757: 44,-20 - 1758: 44,-19 - 1759: 44,-18 - 1760: 44,-17 - 1761: 46,-20 - 1762: 46,-19 - 1763: 46,-18 - 1764: 46,-17 - 3047: 75,-15 - 3048: 75,-14 - 3049: 75,-13 + 1733: 42,-20 + 1734: 42,-19 + 1735: 42,-18 + 1736: 44,-20 + 1737: 44,-19 + 1738: 44,-18 + 1739: 44,-17 + 1740: 46,-20 + 1741: 46,-19 + 1742: 46,-18 + 1743: 46,-17 + 3026: 75,-15 + 3027: 75,-14 + 3028: 75,-13 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 488: 24,37 - 489: 23,37 - 490: 22,37 - 491: 21,32 - 492: 22,32 - 493: 23,32 - 494: 24,32 - 495: 25,32 - 556: -2,36 - 557: -1,36 - 558: 0,36 - 577: 9,-45 - 578: 10,-45 - 579: 11,-45 - 631: -40,-10 - 632: -39,-10 - 912: 72,-36 - 913: 73,-36 - 914: 74,-36 - 934: 78,-38 - 935: 77,-38 - 936: 76,-38 - 947: 63,-24 - 948: 62,-24 - 949: 61,-24 - 950: 60,-24 - 951: 59,-24 - 962: 70,-19 - 963: 71,-19 - 972: 68,-47 - 1012: 39,-54 - 1013: 41,-54 - 1146: 69,-19 - 1257: 11,-49 - 1258: 12,-49 - 1328: -73,-17 - 1329: -74,-17 - 1330: -72,-17 - 1331: -71,-17 - 2108: -12,6 - 2126: 50,-29 - 2127: 49,-29 - 2128: 48,-29 - 2210: 22,-21 - 2211: 21,-21 - 2212: 19,-19 - 2213: 18,-19 - 2270: 52,-17 - 2271: 53,-17 - 2272: 54,-17 - 2662: 33,-90 - 2663: 32,-90 - 2664: 31,-90 - 2665: 25,-90 - 2666: 24,-90 - 2667: 23,-90 - 2948: -70,8 - 2949: -71,8 - 2950: -72,8 - 2951: -77,8 - 2952: -78,8 - 2953: -79,8 + 487: 24,37 + 488: 23,37 + 489: 22,37 + 490: 21,32 + 491: 22,32 + 492: 23,32 + 493: 24,32 + 494: 25,32 + 555: -2,36 + 556: -1,36 + 557: 0,36 + 576: 9,-45 + 577: 10,-45 + 578: 11,-45 + 630: -40,-10 + 631: -39,-10 + 911: 72,-36 + 912: 73,-36 + 913: 74,-36 + 933: 78,-38 + 934: 77,-38 + 935: 76,-38 + 946: 63,-24 + 947: 62,-24 + 948: 61,-24 + 949: 60,-24 + 950: 59,-24 + 961: 70,-19 + 962: 71,-19 + 971: 68,-47 + 1011: 39,-54 + 1012: 41,-54 + 1145: 69,-19 + 1256: 11,-49 + 1257: 12,-49 + 1327: -73,-17 + 1328: -74,-17 + 1329: -72,-17 + 1330: -71,-17 + 2087: -12,6 + 2105: 50,-29 + 2106: 49,-29 + 2107: 48,-29 + 2189: 22,-21 + 2190: 21,-21 + 2191: 19,-19 + 2192: 18,-19 + 2249: 52,-17 + 2250: 53,-17 + 2251: 54,-17 + 2641: 33,-90 + 2642: 32,-90 + 2643: 31,-90 + 2644: 25,-90 + 2645: 24,-90 + 2646: 23,-90 + 2927: -70,8 + 2928: -71,8 + 2929: -72,8 + 2930: -77,8 + 2931: -78,8 + 2932: -79,8 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 499: 22,42 - 500: 22,41 - 501: 22,40 - 502: 22,39 - 503: 22,38 - 504: 22,37 - 553: -2,38 - 554: -2,37 - 555: -2,36 - 559: 1,35 - 561: 1,34 - 633: -38,-14 - 634: -38,-13 - 635: -38,-12 - 636: -38,-11 - 915: 72,-36 - 916: 72,-35 - 917: 72,-34 - 937: 76,-41 - 952: 59,-24 - 953: 59,-23 - 954: 59,-22 - 955: 59,-21 - 956: 59,-20 - 964: 72,-20 - 965: 72,-21 - 968: 68,-46 - 969: 68,-47 - 970: 68,-45 - 1016: 39,-54 - 1017: 39,-53 - 1018: 39,-52 - 1157: 65,-20 - 1158: 65,-19 - 1159: 65,-18 - 1567: 53,-28 - 2217: 21,-17 - 2218: 21,-18 - 2219: 21,-19 - 2220: 21,-20 - 2261: 55,-20 - 2262: 55,-19 - 2263: 55,-18 - 2293: 53,-27 - 2659: 34,-93 - 2660: 34,-92 - 2661: 34,-91 - 2911: -8,-54 - 2936: -79,9 - 2939: -79,-5 - 3042: -30,-38 - 3043: -30,-37 - 3044: -30,-36 - 3045: -30,-39 + 498: 22,42 + 499: 22,41 + 500: 22,40 + 501: 22,39 + 502: 22,38 + 503: 22,37 + 552: -2,38 + 553: -2,37 + 554: -2,36 + 558: 1,35 + 560: 1,34 + 632: -38,-14 + 633: -38,-13 + 634: -38,-12 + 635: -38,-11 + 914: 72,-36 + 915: 72,-35 + 916: 72,-34 + 936: 76,-41 + 951: 59,-24 + 952: 59,-23 + 953: 59,-22 + 954: 59,-21 + 955: 59,-20 + 963: 72,-20 + 964: 72,-21 + 967: 68,-46 + 968: 68,-47 + 969: 68,-45 + 1015: 39,-54 + 1016: 39,-53 + 1017: 39,-52 + 1156: 65,-20 + 1157: 65,-19 + 1158: 65,-18 + 1566: 53,-28 + 2196: 21,-17 + 2197: 21,-18 + 2198: 21,-19 + 2199: 21,-20 + 2240: 55,-20 + 2241: 55,-19 + 2242: 55,-18 + 2272: 53,-27 + 2638: 34,-93 + 2639: 34,-92 + 2640: 34,-91 + 2890: -8,-54 + 2915: -79,9 + 2918: -79,-5 + 3021: -30,-38 + 3022: -30,-37 + 3023: -30,-36 + 3024: -30,-39 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 496: 22,42 - 497: 23,42 - 498: 24,42 - 546: 4,38 - 547: 3,38 - 548: 2,38 - 549: 1,38 - 550: 0,38 - 551: -1,38 - 552: -2,38 - 586: -23,-70 - 587: -24,-70 - 588: -25,-70 - 589: -26,-70 - 590: -27,-70 - 600: -50,-6 - 601: -51,-6 - 602: -52,-6 - 921: 74,-34 - 922: 73,-34 - 923: 72,-34 - 957: 59,-20 - 958: 60,-20 - 959: 61,-20 - 960: 62,-20 - 961: 63,-20 - 966: 70,-22 - 971: 68,-45 - 973: 70,-47 - 974: 71,-47 - 975: 72,-47 - 976: 73,-47 - 977: 74,-47 - 978: 75,-47 - 979: 76,-47 - 980: 77,-47 - 981: 78,-47 - 1014: 41,-52 - 1015: 39,-52 - 1145: 69,-22 - 1255: 11,-55 - 1256: 12,-55 - 1335: -33,3 - 1336: -32,3 - 1337: -31,3 - 1401: -1,-30 - 1402: 0,-30 - 1403: -2,-30 - 1406: 0,-25 - 1407: -1,-25 - 1408: -2,-25 - 1409: -3,-25 - 1410: 1,-25 - 1526: 76,-26 - 1527: 77,-26 - 1528: 78,-26 - 1529: 79,-26 - 1530: 80,-26 - 1531: 82,-26 - 1532: 81,-26 - 1547: 71,-22 - 2267: 54,-21 - 2268: 53,-21 - 2269: 52,-21 - 2942: -71,-4 - 2943: -72,-4 - 2944: -70,-4 - 2945: -78,-4 - 2946: -79,-4 - 2947: -77,-4 + 495: 22,42 + 496: 23,42 + 497: 24,42 + 545: 4,38 + 546: 3,38 + 547: 2,38 + 548: 1,38 + 549: 0,38 + 550: -1,38 + 551: -2,38 + 585: -23,-70 + 586: -24,-70 + 587: -25,-70 + 588: -26,-70 + 589: -27,-70 + 599: -50,-6 + 600: -51,-6 + 601: -52,-6 + 920: 74,-34 + 921: 73,-34 + 922: 72,-34 + 956: 59,-20 + 957: 60,-20 + 958: 61,-20 + 959: 62,-20 + 960: 63,-20 + 965: 70,-22 + 970: 68,-45 + 972: 70,-47 + 973: 71,-47 + 974: 72,-47 + 975: 73,-47 + 976: 74,-47 + 977: 75,-47 + 978: 76,-47 + 979: 77,-47 + 980: 78,-47 + 1013: 41,-52 + 1014: 39,-52 + 1144: 69,-22 + 1254: 11,-55 + 1255: 12,-55 + 1334: -33,3 + 1335: -32,3 + 1336: -31,3 + 1400: -1,-30 + 1401: 0,-30 + 1402: -2,-30 + 1405: 0,-25 + 1406: -1,-25 + 1407: -2,-25 + 1408: -3,-25 + 1409: 1,-25 + 1525: 76,-26 + 1526: 77,-26 + 1527: 78,-26 + 1528: 79,-26 + 1529: 80,-26 + 1530: 82,-26 + 1531: 81,-26 + 1546: 71,-22 + 2246: 54,-21 + 2247: 53,-21 + 2248: 52,-21 + 2921: -71,-4 + 2922: -72,-4 + 2923: -70,-4 + 2924: -78,-4 + 2925: -79,-4 + 2926: -77,-4 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 1593: -8,15 - 1603: 11,-19 - 1604: 11,-18 - 1605: 11,-17 - 1606: 11,-16 - 1607: 11,-15 - 1608: 11,-14 - 1609: 11,-13 - 1882: 11,-28 - 1883: 11,-27 - 1884: 11,-26 - 1885: 11,-25 + 1592: -8,15 + 1602: 11,-19 + 1603: 11,-18 + 1604: 11,-17 + 1605: 11,-16 + 1606: 11,-15 + 1607: 11,-14 + 1608: 11,-13 + 1861: 11,-28 + 1862: 11,-27 + 1863: 11,-26 + 1864: 11,-25 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 1598: 16,37 - 1599: 15,37 - 1600: 14,37 - 1601: 13,37 - 1602: 12,37 - 1610: 11,-13 - 1611: 10,-13 - 1612: 9,-13 - 1613: 8,-13 - 1614: 7,-13 - 1615: 6,-13 - 1616: 5,-13 - 2249: 51,-38 - 2250: 52,-38 - 2251: 53,-38 - 2252: 54,-38 - 2253: 55,-38 - 2254: 56,-38 - 2255: 57,-38 + 1597: 16,37 + 1598: 15,37 + 1599: 14,37 + 1600: 13,37 + 1601: 12,37 + 1609: 11,-13 + 1610: 10,-13 + 1611: 9,-13 + 1612: 8,-13 + 1613: 7,-13 + 1614: 6,-13 + 1615: 5,-13 + 2228: 51,-38 + 2229: 52,-38 + 2230: 53,-38 + 2231: 54,-38 + 2232: 55,-38 + 2233: 56,-38 + 2234: 57,-38 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 1594: -7,16 - 1595: -6,16 - 1596: -5,16 - 1597: -4,16 - 1900: -12,53 - 1901: -13,53 - 1902: -14,53 - 1903: -15,53 - 1904: -16,53 - 2245: 47,-33 - 2246: 46,-33 - 2247: 45,-33 - 2248: 44,-33 + 1593: -7,16 + 1594: -6,16 + 1595: -5,16 + 1596: -4,16 + 1879: -12,53 + 1880: -13,53 + 1881: -14,53 + 1882: -15,53 + 1883: -16,53 + 2224: 47,-33 + 2225: 46,-33 + 2226: 45,-33 + 2227: 44,-33 - node: color: '#FFFFFFFF' id: bushsnowa2 decals: - 754: -14.995166,-26.958757 + 753: -14.995166,-26.958757 - node: color: '#FFFFFFFF' id: bushsnowb1 decals: - 755: -14.979541,-25.255632 + 754: -14.979541,-25.255632 - node: color: '#FFFFFFFF' id: bushsnowb3 decals: - 753: -15.010791,-24.068132 + 752: -15.010791,-24.068132 - node: color: '#A4610606' id: splatter decals: - 1525: 34.46607,8.395077 + 1524: 34.46607,8.395077 type: DecalGrid - version: 2 data: @@ -10503,7 +10503,7 @@ entities: - dockJointId: docking46345 dockedWith: 21828 type: Docking - - SecondsUntilStateChange: -32444.838 + - SecondsUntilStateChange: -32484.04 changeAirtight: False state: Opening type: Door @@ -10551,7 +10551,7 @@ entities: - dockJointId: docking46345 dockedWith: 562 type: Docking - - SecondsUntilStateChange: -32444.838 + - SecondsUntilStateChange: -32484.04 changeAirtight: False state: Opening type: Door @@ -107781,6 +107781,13 @@ entities: type: Transform - fixtures: {} type: Fixtures + - uid: 26044 + components: + - pos: 38.5,-1.5 + parent: 8364 + type: Transform + - fixtures: {} + type: Fixtures - proto: FloorTileItemArcadeBlue2 entities: - uid: 917 @@ -149853,25 +149860,25 @@ entities: - pos: -1.5,-71.5 parent: 8364 type: Transform -- proto: ParticleAcceleratorEmitterCenterUnfinished +- proto: ParticleAcceleratorEmitterForeUnfinished entities: - uid: 4501 components: - pos: -0.5,-73.5 parent: 8364 type: Transform -- proto: ParticleAcceleratorEmitterLeftUnfinished +- proto: ParticleAcceleratorEmitterPortUnfinished entities: - - uid: 4502 + - uid: 4503 components: - - pos: -1.5,-73.5 + - pos: 0.5,-73.5 parent: 8364 type: Transform -- proto: ParticleAcceleratorEmitterRightUnfinished +- proto: ParticleAcceleratorEmitterStarboardUnfinished entities: - - uid: 4503 + - uid: 4502 components: - - pos: 0.5,-73.5 + - pos: -1.5,-73.5 parent: 8364 type: Transform - proto: ParticleAcceleratorEndCapUnfinished @@ -193977,6 +193984,14 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] type: ContainerContainer - uid: 5680 components: @@ -193996,6 +194011,14 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] type: ContainerContainer - uid: 7001 components: From 7cbf08ea9e53d3f281770f59f835a5d66fe043fd Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Mon, 12 Jun 2023 22:43:59 +0000 Subject: [PATCH 184/474] logic gate momentary pulse, switch status port (#17198) * logic gate momentary is now pulse * switch status, minor refactor * filescope namespace * switch * fix ci probably * add auto linking for edge detector and logic gate --------- Co-authored-by: deltanedas <@deltanedas:kde.org> --- .../Components/SignalSwitchComponent.cs | 49 +++++++++-------- .../DeviceLinking/Systems/LogicGateSystem.cs | 25 ++++++++- .../Systems/SignalSwitchSystem.cs | 53 +++++++++++-------- .../machine-linking/transmitter_ports.ftl | 5 +- .../Prototypes/DeviceLinking/source_ports.yml | 8 +++ .../Entities/Structures/Wallmounts/switch.yml | 6 ++- .../MachineLinking/transmitter_ports.yml | 8 +++ 7 files changed, 107 insertions(+), 47 deletions(-) diff --git a/Content.Server/DeviceLinking/Components/SignalSwitchComponent.cs b/Content.Server/DeviceLinking/Components/SignalSwitchComponent.cs index 4259ba6c6c..5dc1d69aeb 100644 --- a/Content.Server/DeviceLinking/Components/SignalSwitchComponent.cs +++ b/Content.Server/DeviceLinking/Components/SignalSwitchComponent.cs @@ -1,32 +1,39 @@ +using Content.Server.DeviceLinking.Systems; using Content.Shared.MachineLinking; using Robust.Shared.Audio; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; -namespace Content.Server.DeviceLinking.Components +namespace Content.Server.DeviceLinking.Components; + +/// +/// Simple switch that will fire ports when toggled on or off. A button is jsut a switch that signals on the +/// same port regardless of its state. +/// +[RegisterComponent, Access(typeof(SignalSwitchSystem))] +public sealed class SignalSwitchComponent : Component { /// - /// Simple switch that will fire ports when toggled on or off. A button is jsut a switch that signals on the - /// same port regardless of its state. + /// The port that gets signaled when the switch turns on. + /// + [DataField("onPort", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string OnPort = "On"; + + /// + /// The port that gets signaled when the switch turns off. /// - [RegisterComponent] - public sealed class SignalSwitchComponent : Component - { - /// - /// The port that gets signaled when the switch turns on. - /// - [DataField("onPort", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string OnPort = "On"; + [DataField("offPort", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string OffPort = "Off"; - /// - /// The port that gets signaled when the switch turns off. - /// - [DataField("offPort", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string OffPort = "Off"; + /// + /// The port that gets signaled with the switch's current status. + /// This is only used if OnPort is different from OffPort, not in the case of a toggle switch. + /// + [DataField("statusPort", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string StatusPort = "Status"; - [DataField("state")] - public bool State; + [DataField("state")] + public bool State; - [DataField("clickSound")] - public SoundSpecifier ClickSound { get; set; } = new SoundPathSpecifier("/Audio/Machines/lightswitch.ogg"); - } + [DataField("clickSound")] + public SoundSpecifier ClickSound = new SoundPathSpecifier("/Audio/Machines/lightswitch.ogg"); } diff --git a/Content.Server/DeviceLinking/Systems/LogicGateSystem.cs b/Content.Server/DeviceLinking/Systems/LogicGateSystem.cs index 70e9ede1f2..b32f5694a2 100644 --- a/Content.Server/DeviceLinking/Systems/LogicGateSystem.cs +++ b/Content.Server/DeviceLinking/Systems/LogicGateSystem.cs @@ -32,6 +32,26 @@ public override void Initialize() SubscribeLocalEvent(OnSignalReceived); } + public override void Update(float deltaTime) + { + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var comp)) + { + // handle momentary pulses - high when received then low the next tick + if (comp.StateA == SignalState.Momentary) + { + comp.StateA = SignalState.Low; + } + if (comp.StateB == SignalState.Momentary) + { + comp.StateB = SignalState.High; + } + + // output most likely changed so update it + UpdateOutput(uid, comp); + } + } + private void OnInit(EntityUid uid, LogicGateComponent comp, ComponentInit args) { _deviceLink.EnsureSinkPorts(uid, comp.InputPortA, comp.InputPortB); @@ -92,8 +112,9 @@ private void OnSignalReceived(EntityUid uid, LogicGateComponent comp, ref Signal private void UpdateOutput(EntityUid uid, LogicGateComponent comp) { // get the new output value now that it's changed - var a = comp.StateA == SignalState.High; - var b = comp.StateB == SignalState.High; + // momentary is treated as high for the current tick, after updating it will be reset to low + var a = comp.StateA != SignalState.Low; + var b = comp.StateB != SignalState.Low; var output = false; switch (comp.Gate) { diff --git a/Content.Server/DeviceLinking/Systems/SignalSwitchSystem.cs b/Content.Server/DeviceLinking/Systems/SignalSwitchSystem.cs index acb3acb4aa..8e70aad706 100644 --- a/Content.Server/DeviceLinking/Systems/SignalSwitchSystem.cs +++ b/Content.Server/DeviceLinking/Systems/SignalSwitchSystem.cs @@ -1,40 +1,51 @@ using Content.Server.DeviceLinking.Components; +using Content.Server.DeviceNetwork; using Content.Server.MachineLinking.System; using Content.Shared.Audio; using Content.Shared.Interaction; using Robust.Shared.Audio; using Robust.Shared.Player; -namespace Content.Server.DeviceLinking.Systems +namespace Content.Server.DeviceLinking.Systems; + +public sealed class SignalSwitchSystem : EntitySystem { - public sealed class SignalSwitchSystem : EntitySystem + [Dependency] private readonly DeviceLinkSystem _deviceLink = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + + public override void Initialize() { - [Dependency] private readonly DeviceLinkSystem _signalSystem = default!; + base.Initialize(); - public override void Initialize() - { - base.Initialize(); + SubscribeLocalEvent(OnInit); + SubscribeLocalEvent(OnActivated); + } - SubscribeLocalEvent(OnInit); - SubscribeLocalEvent(OnActivated); - } + private void OnInit(EntityUid uid, SignalSwitchComponent comp, ComponentInit args) + { + _deviceLink.EnsureSourcePorts(uid, comp.OnPort, comp.OffPort, comp.StatusPort); + } + + private void OnActivated(EntityUid uid, SignalSwitchComponent comp, ActivateInWorldEvent args) + { + if (args.Handled) + return; - private void OnInit(EntityUid uid, SignalSwitchComponent component, ComponentInit args) + comp.State = !comp.State; + _deviceLink.InvokePort(uid, comp.State ? comp.OnPort : comp.OffPort); + var data = new NetworkPayload { - _signalSystem.EnsureSourcePorts(uid, component.OnPort, component.OffPort); - } + [DeviceNetworkConstants.LogicState] = comp.State ? SignalState.High : SignalState.Low + }; - private void OnActivated(EntityUid uid, SignalSwitchComponent component, ActivateInWorldEvent args) + // only send status if it's a toggle switch and not a button + if (comp.OnPort != comp.OffPort) { - if (args.Handled) - return; + _deviceLink.InvokePort(uid, comp.StatusPort, data); + } - component.State = !component.State; - _signalSystem.InvokePort(uid, component.State ? component.OnPort : component.OffPort); - SoundSystem.Play(component.ClickSound.GetSound(), Filter.Pvs(component.Owner), component.Owner, - AudioHelpers.WithVariation(0.125f).WithVolume(8f)); + _audio.PlayPvs(comp.ClickSound, uid, AudioParams.Default.WithVariation(0.125f).WithVolume(8f)); - args.Handled = true; - } + args.Handled = true; } } diff --git a/Resources/Locale/en-US/machine-linking/transmitter_ports.ftl b/Resources/Locale/en-US/machine-linking/transmitter_ports.ftl index 909c0dae87..02ede1e1b6 100644 --- a/Resources/Locale/en-US/machine-linking/transmitter_ports.ftl +++ b/Resources/Locale/en-US/machine-linking/transmitter_ports.ftl @@ -7,6 +7,9 @@ signal-port-description-on-transmitter = This port is invoked whenever the trans signal-port-name-off-transmitter = Off signal-port-description-off-transmitter = This port is invoked whenever the transmitter is turned off. +signal-port-name-status-transmitter = Status +signal-port-description-logic-output = This port is invoked with HIGH or LOW depending on the transmitter status. + signal-port-name-left = Left signal-port-description-left = This port is invoked whenever the lever is moved to the leftmost position. @@ -14,7 +17,7 @@ signal-port-name-right = Right signal-port-description-right = This port is invoked whenever the lever is moved to the rightmost position. signal-port-name-doorstatus = Door status -signal-port-description-doorstatus = This port is invoked with HIGH when the door opens and LOW when the door closes. +signal-port-description-doorstatus = This port is invoked with HIGH when the door opens and LOW when the door finishes closing. signal-port-name-middle = Middle signal-port-description-middle = This port is invoked whenever the lever is moved to the neutral position. diff --git a/Resources/Prototypes/DeviceLinking/source_ports.yml b/Resources/Prototypes/DeviceLinking/source_ports.yml index 151ba9c26f..45ee812f2e 100644 --- a/Resources/Prototypes/DeviceLinking/source_ports.yml +++ b/Resources/Prototypes/DeviceLinking/source_ports.yml @@ -16,6 +16,11 @@ description: signal-port-description-off-transmitter defaultLinks: [ Off, Close ] +- type: sourcePort + id: Status + name: signal-port-name-status-transmitter + description: signal-port-description-status-transmitter + - type: sourcePort id: Left name: signal-port-name-left @@ -78,13 +83,16 @@ id: Output name: signal-port-name-logic-output description: signal-port-description-logic-output + defaultLinks: [ Input ] - type: sourcePort id: OutputHigh name: signal-port-name-logic-output-high description: signal-port-description-logic-output-high + defaultLinks: [ On, Open, Forward, Trigger ] - type: sourcePort id: OutputLow name: signal-port-name-logic-output-low description: signal-port-description-logic-output-low + defaultLinks: [ Off, Close ] diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/switch.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/switch.yml index db6825b96e..012870a56e 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/switch.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/switch.yml @@ -30,8 +30,9 @@ range: 200 - type: DeviceLinkSource ports: - - On - - Off + - On + - Off + - Status - type: entity id: SignalButton @@ -56,6 +57,7 @@ - type: SignalSwitch onPort: Pressed offPort: Pressed + statusPort: Pressed - type: Rotatable - type: Construction graph: SignalButtonGraph diff --git a/Resources/Prototypes/MachineLinking/transmitter_ports.yml b/Resources/Prototypes/MachineLinking/transmitter_ports.yml index 4949097134..c97b324652 100644 --- a/Resources/Prototypes/MachineLinking/transmitter_ports.yml +++ b/Resources/Prototypes/MachineLinking/transmitter_ports.yml @@ -16,6 +16,11 @@ description: signal-port-description-off-transmitter defaultLinks: [ Off, Close ] +- type: transmitterPort + id: Status + name: signal-port-name-status-transmitter + description: signal-port-description-status-transmitter + - type: transmitterPort id: Left name: signal-port-name-left @@ -78,13 +83,16 @@ id: Output name: signal-port-name-logic-output description: signal-port-description-logic-output + defaultLinks: [ Input ] - type: transmitterPort id: OutputHigh name: signal-port-name-logic-output-high description: signal-port-description-logic-output-high + defaultLinks: [ On, Open, Forward, Trigger ] - type: transmitterPort id: OutputLow name: signal-port-name-logic-output-low description: signal-port-description-logic-output-low + defaultLinks: [ Off, Close ] From 577651202179fddfa177a450686c45c198a506fd Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Tue, 13 Jun 2023 00:27:05 +0000 Subject: [PATCH 185/474] fix jetpack popups, minor refactoring (#17289) Co-authored-by: deltanedas <@deltanedas:kde.org> --- .../Movement/Systems/SharedJetpackSystem.cs | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/Content.Shared/Movement/Systems/SharedJetpackSystem.cs b/Content.Shared/Movement/Systems/SharedJetpackSystem.cs index 0a82aa3576..9fdac9ff55 100644 --- a/Content.Shared/Movement/Systems/SharedJetpackSystem.cs +++ b/Content.Shared/Movement/Systems/SharedJetpackSystem.cs @@ -15,12 +15,10 @@ namespace Content.Shared.Movement.Systems; public abstract class SharedJetpackSystem : EntitySystem { - [Dependency] private readonly IGameTiming _timing = default!; - [Dependency] private readonly INetManager _network = default!; [Dependency] protected readonly MovementSpeedModifierSystem MovementSpeedModifier = default!; [Dependency] protected readonly SharedAppearanceSystem Appearance = default!; [Dependency] protected readonly SharedContainerSystem Container = default!; - [Dependency] private readonly SharedPopupSystem _popups = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly SharedMoverController _mover = default!; public override void Initialize() @@ -49,15 +47,15 @@ private void OnJetpackUserGravityChanged(ref GravityChangedEvent ev) var gridUid = ev.ChangedGridIndex; var jetpackQuery = GetEntityQuery(); - foreach (var (user, transform) in EntityQuery(true)) + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var user, out var transform)) { if (transform.GridUid == gridUid && ev.HasGravity && jetpackQuery.TryGetComponent(user.Jetpack, out var jetpack)) { - if (_timing.IsFirstTimePredicted) - _popups.PopupEntity(Loc.GetString("jetpack-to-grid"), user.Jetpack, user.Owner); + _popup.PopupClient(Loc.GetString("jetpack-to-grid"), uid, uid); - SetEnabled(jetpack, false, user.Owner); + SetEnabled(jetpack, false, uid); } } } @@ -93,8 +91,7 @@ private void OnJetpackUserEntParentChanged(EntityUid uid, JetpackUserComponent c { SetEnabled(jetpack, false, uid); - if (_timing.IsFirstTimePredicted && _network.IsClient) - _popups.PopupEntity(Loc.GetString("jetpack-to-grid"), uid, uid); + _popup.PopupClient(Loc.GetString("jetpack-to-grid"), uid, uid); } } @@ -118,8 +115,7 @@ private void OnJetpackToggle(EntityUid uid, JetpackComponent component, ToggleJe if (TryComp(uid, out var xform) && !CanEnableOnGrid(xform.GridUid)) { - if (_timing.IsFirstTimePredicted) - _popups.PopupEntity(Loc.GetString("jetpack-no-station"), uid, args.Performer); + _popup.PopupClient(Loc.GetString("jetpack-no-station"), uid, args.Performer); return; } From c90b4a41c2df7561b62c7de0a1850744cbeeeceb Mon Sep 17 00:00:00 2001 From: Sir Winters <7543955+Owai-Seek@users.noreply.github.com> Date: Mon, 12 Jun 2023 21:17:48 -0400 Subject: [PATCH 186/474] Fixes a minor error in the Food Recipes guidebook. (#17286) Co-authored-by: Owai-Seek <> --- Resources/ServerInfo/Guidebook/Food Recipes.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/ServerInfo/Guidebook/Food Recipes.xml b/Resources/ServerInfo/Guidebook/Food Recipes.xml index 7508bda2aa..f1aedf88e2 100644 --- a/Resources/ServerInfo/Guidebook/Food Recipes.xml +++ b/Resources/ServerInfo/Guidebook/Food Recipes.xml @@ -15,7 +15,7 @@ WARNING: This is not an automatically generated list, things here may become out - Cake Batter = 2 Eggs(12u), 15 flour, 5 Sugar - Vegan Cake Batter = 15 Soy Milk, 15 Flour, 5 Sugar - Butter = 30 Milk, 5 Table Salt -- Cheese Wheel = 5 Enzyme, 30 Soy Milk +- Cheese Wheel = 5 Enzyme, 30 Milk - Meatball = 1 Egg (6u), 5 Flour, 5 Uncooked Animal Proteins - Uncooked Animal Protein: Grind Raw Meat From 77762b761ebc0330dbf5e73f53e00129a8478016 Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 12 Jun 2023 21:18:53 -0400 Subject: [PATCH 187/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 03fc630e0a..1606bd827e 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,10 +1,4 @@ Entries: -- author: metalgearsloth - changes: - - {message: Reduce the standard salvage expedition time from 18-20 minutes to 15 - minutes., type: Tweak} - id: 3481 - time: '2023-04-21T10:26:17.0000000+00:00' - author: EmoGarbage404 changes: - {message: Added the lipid extractor. Simply place a well-fed spaceman inside and @@ -2910,3 +2904,8 @@ Entries: - {message: Fixed the grammar of The Martinez., type: Fix} id: 3980 time: '2023-06-11T17:09:41.0000000+00:00' +- author: Owai-Seek + changes: + - {message: Fixes a minor error in the Food Recipes guidebook., type: Fix} + id: 3981 + time: '2023-06-13T01:17:48.0000000+00:00' From 777c7dcd3324f81224dcfe2696d9ac0c40884b31 Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Tue, 13 Jun 2023 04:48:28 +0000 Subject: [PATCH 188/474] nerf xeno speeds + add some xenos to faction (#17290) Co-authored-by: deltanedas <@deltanedas:kde.org> --- .../Prototypes/Entities/Mobs/NPCs/xeno.yml | 64 ++++++------------- .../Procedural/salvage_factions.yml | 14 ++++ 2 files changed, 34 insertions(+), 44 deletions(-) diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml b/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml index 62f030af57..f3738a5f21 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml @@ -53,8 +53,8 @@ - MobLayer - type: MobState allowedStates: - - Alive - - Dead + - Alive + - Dead - type: MobThresholds thresholds: 0: Alive @@ -123,10 +123,6 @@ layers: - map: ["enum.DamageStateVisualLayers.Base"] state: running - - type: MobState - allowedStates: - - Alive - - Dead - type: MobThresholds thresholds: 0: Alive @@ -135,7 +131,7 @@ excess: 300 - type: SlowOnDamage speedModifierThresholds: - 250: 0.7 + 50: 0.7 - type: Fixtures fixtures: fix1: @@ -160,10 +156,6 @@ layers: - map: ["enum.DamageStateVisualLayers.Base"] state: running - - type: MobState - allowedStates: - - Alive - - Dead - type: MobThresholds thresholds: 0: Alive @@ -172,11 +164,13 @@ damage: groups: Brute: 5 - - type: Stamina - excess: 200 - type: MovementSpeedModifier - baseWalkSpeed : 3.0 - baseSprintSpeed : 5.5 + baseWalkSpeed: 2.0 + baseSprintSpeed: 2.5 + - type: SlowOnDamage + speedModifierThresholds: + 100: 0.4 + 50: 0.7 - type: Fixtures fixtures: fix1: @@ -201,10 +195,6 @@ layers: - map: ["enum.DamageStateVisualLayers.Base"] state: running - - type: MobState - allowedStates: - - Alive - - Dead - type: MobThresholds thresholds: 0: Alive @@ -212,8 +202,8 @@ - type: Stamina excess: 1500 - type: MovementSpeedModifier - baseWalkSpeed : 2.8 - baseSprintSpeed : 3.8 + baseWalkSpeed: 2.8 + baseSprintSpeed: 3.8 - type: MeleeWeapon hidden: true damage: @@ -221,7 +211,8 @@ Brute: 20 - type: SlowOnDamage speedModifierThresholds: - 1000: 0.7 + 250: 0.4 + 200: 0.7 - type: Fixtures fixtures: fix1: @@ -249,10 +240,6 @@ layers: - map: ["enum.DamageStateVisualLayers.Base"] state: running - - type: MobState - allowedStates: - - Alive - - Dead - type: MobThresholds thresholds: 0: Alive @@ -260,8 +247,8 @@ - type: Stamina excess: 550 - type: MovementSpeedModifier - baseWalkSpeed : 2.3 - baseSprintSpeed : 4.2 + baseWalkSpeed: 2.3 + baseSprintSpeed: 4.2 - type: MeleeWeapon hidden: true damage: @@ -269,7 +256,8 @@ Brute: 10 - type: SlowOnDamage speedModifierThresholds: - 450: 0.7 + 150: 0.5 + 100: 0.7 - type: Fixtures fixtures: fix1: @@ -294,19 +282,11 @@ layers: - map: ["enum.DamageStateVisualLayers.Base"] state: running - - type: MobState - allowedStates: - - Alive - - Dead - - type: MobThresholds - thresholds: - 0: Alive - 50: Dead - type: Stamina excess: 250 - type: MovementSpeedModifier - baseWalkSpeed : 2.7 - baseSprintSpeed : 6.0 + baseWalkSpeed: 2.7 + baseSprintSpeed: 6.0 - type: MeleeWeapon hidden: true damage: @@ -346,10 +326,6 @@ layers: - map: ["enum.DamageStateVisualLayers.Base"] state: running - - type: MobState - allowedStates: - - Alive - - Dead - type: MobThresholds thresholds: 0: Alive @@ -358,7 +334,7 @@ excess: 300 - type: SlowOnDamage speedModifierThresholds: - 250: 0.4 + 50: 0.4 - type: Fixtures fixtures: fix1: diff --git a/Resources/Prototypes/Procedural/salvage_factions.yml b/Resources/Prototypes/Procedural/salvage_factions.yml index cc19bb247a..f0823b3755 100644 --- a/Resources/Prototypes/Procedural/salvage_factions.yml +++ b/Resources/Prototypes/Procedural/salvage_factions.yml @@ -7,10 +7,24 @@ maxAmount: 3 - id: MobXenoDrone amount: 1 + - entries: + - id: MobXenoPraetorian + amount: 1 + maxAmount: 2 + prob: 0.5 + - entries: + - id: MobXenoDrone + amount: 0 + maxAmount: 2 + prob: 0.25 - entries: - id: MobXenoRavager amount: 1 prob: 0.1 + - entries: + - id: MobXenoRouny + amount: 1 + prob: 0.001 configs: DefenseStructure: XenoWardingTower Mining: Xenos From c189c52d85ac731ed0d7f84ef7c8a903b4ab6eab Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 13 Jun 2023 00:49:32 -0400 Subject: [PATCH 189/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 1606bd827e..f9d525c3ee 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,10 +1,4 @@ Entries: -- author: EmoGarbage404 - changes: - - {message: Added the lipid extractor. Simply place a well-fed spaceman inside and - let the excess food fall off into meat. Unlock it at science today!, type: Add} - id: 3482 - time: '2023-04-22T07:03:50.0000000+00:00' - author: DogZeroX changes: - {message: Added decorative crystals., type: Add} @@ -2909,3 +2903,10 @@ Entries: - {message: Fixes a minor error in the Food Recipes guidebook., type: Fix} id: 3981 time: '2023-06-13T01:17:48.0000000+00:00' +- author: deltanedas + changes: + - {message: The Praetorian and Runner xenos can now be rarely found on expeditions., + type: Add} + - {message: All xenos now enjoy a slowdown when badly wounded., type: Tweak} + id: 3982 + time: '2023-06-13T04:48:29.0000000+00:00' From 8625cb1b4b4d66a23b85e87879cf95e4890a33ee Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Tue, 13 Jun 2023 06:05:17 +0000 Subject: [PATCH 190/474] use PopupClient for encryption keys (#17291) Co-authored-by: deltanedas <@deltanedas:kde.org> --- .../EntitySystems/EncryptionKeySystem.cs | 23 +++++++------------ 1 file changed, 8 insertions(+), 15 deletions(-) diff --git a/Content.Shared/Radio/EntitySystems/EncryptionKeySystem.cs b/Content.Shared/Radio/EntitySystems/EncryptionKeySystem.cs index 1246e33e34..31f7933099 100644 --- a/Content.Shared/Radio/EntitySystems/EncryptionKeySystem.cs +++ b/Content.Shared/Radio/EntitySystems/EncryptionKeySystem.cs @@ -62,7 +62,7 @@ private void OnKeyRemoval(EntityUid uid, EncryptionKeyHolderComponent component, // TODO add predicted pop-up overrides. if (_net.IsServer) _popup.PopupEntity(Loc.GetString("encryption-keys-all-extracted"), uid, args.User); - + _audio.PlayPredicted(component.KeyExtractionSound, uid, args.User); } @@ -115,29 +115,25 @@ private void TryInsertKey(EntityUid uid, EncryptionKeyHolderComponent component, { if (!component.KeysUnlocked) { - if (_net.IsClient && _timing.IsFirstTimePredicted) - _popup.PopupEntity(Loc.GetString("encryption-keys-are-locked"), uid, args.User); + _popup.PopupClient(Loc.GetString("encryption-keys-are-locked"), uid, args.User); return; } if (TryComp(uid, out var panel) && !panel.Open) { - if (_net.IsClient && _timing.IsFirstTimePredicted) - _popup.PopupEntity(Loc.GetString("encryption-keys-panel-locked"), uid, args.User); + _popup.PopupClient(Loc.GetString("encryption-keys-panel-locked"), uid, args.User); return; } if (component.KeySlots <= component.KeyContainer.ContainedEntities.Count) { - if (_net.IsClient && _timing.IsFirstTimePredicted) - _popup.PopupEntity(Loc.GetString("encryption-key-slots-already-full"), uid, args.User); + _popup.PopupClient(Loc.GetString("encryption-key-slots-already-full"), uid, args.User); return; } if (component.KeyContainer.Insert(args.Used)) { - if (_net.IsClient&& _timing.IsFirstTimePredicted) - _popup.PopupEntity(Loc.GetString("encryption-key-successfully-installed"), uid, args.User); + _popup.PopupClient(Loc.GetString("encryption-key-successfully-installed"), uid, args.User); _audio.PlayPredicted(component.KeyInsertionSound, args.Target, args.User); args.Handled = true; return; @@ -149,22 +145,19 @@ private void TryRemoveKey(EntityUid uid, EncryptionKeyHolderComponent component, { if (!component.KeysUnlocked) { - if (_net.IsClient && _timing.IsFirstTimePredicted) - _popup.PopupEntity(Loc.GetString("encryption-keys-are-locked"), uid, args.User); + _popup.PopupClient(Loc.GetString("encryption-keys-are-locked"), uid, args.User); return; } if (TryComp(uid, out var panel) && !panel.Open) { - if (_net.IsClient && _timing.IsFirstTimePredicted) - _popup.PopupEntity(Loc.GetString("encryption-keys-panel-locked"), uid, args.User); + _popup.PopupClient(Loc.GetString("encryption-keys-panel-locked"), uid, args.User); return; } if (component.KeyContainer.ContainedEntities.Count == 0) { - if (_net.IsClient && _timing.IsFirstTimePredicted) - _popup.PopupEntity(Loc.GetString("encryption-keys-no-keys"), uid, args.User); + _popup.PopupClient(Loc.GetString("encryption-keys-no-keys"), uid, args.User); return; } From 2d9d27c1b20d3870dc82bc903fc4be2438944aa4 Mon Sep 17 00:00:00 2001 From: Chief-Engineer <119664036+Chief-Engineer@users.noreply.github.com> Date: Tue, 13 Jun 2023 01:27:10 -0500 Subject: [PATCH 191/474] Add Chief-Engineer to code owners (#17296) --- .github/CODEOWNERS | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index be6c490f74..ff52456cf3 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,15 +1,19 @@ # Last match in file takes precedence. +# Sorting by path instead of by who added it one day :( +/Resources/ConfigPresets/WizardsDen/ @Chief-Engineer + # Moony's Gargantuan List Of Things She Cares About, or MGLOTSCA for short. # You need to add your name to these entries, not make a new one, if you care about them. /Content.*/Bql/ @moonheart08 -/Content.*/Administration/ @moonheart08 @PaulRitter @DrSmugleaf +/Content.*/Administration/ @moonheart08 @PaulRitter @DrSmugleaf @Chief-Engineer /Content.*/Station/ @moonheart08 /Content.*/Maps/ @moonheart08 /Content.*/GameTicking/ @moonheart08 -/Resources/ServerInfo/ @moonheart08 -/Resources/engineCommandPerms.yml @moonheart08 -/Resources/clientCommandPerms.yml @moonheart08 +/Resources/ServerInfo/ @moonheart08 @Chief-Engineer +/Resources/ServerInfo/Guidebook/ @moonheart08 +/Resources/engineCommandPerms.yml @moonheart08 @Chief-Engineer +/Resources/clientCommandPerms.yml @moonheart08 @Chief-Engineer /Resources/Prototypes/species.yml @moonheart08 /Resources/Prototypes/Body/ @moonheart08 @mirrorcult @DrSmugleaf # suffering /Resources/Prototypes/Maps/ @moonheart08 @Emisse @@ -50,5 +54,6 @@ # SKREEEE /Content.*.Database/ @PJB3005 @DrSmugleaf +/Content.Shared.Database/Log*.cs @PJB3005 @DrSmugleaf @Chief-Engineer /Pow3r/ @PJB3005 /Content.Server/Power/Pow3r/ @PJB3005 From b82885af388086dbc621f27155ae411e3c2d9f29 Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Tue, 13 Jun 2023 06:37:53 +0000 Subject: [PATCH 192/474] make salvage magnets upgradable with capacitors (#16763) Co-authored-by: deltanedas <@deltanedas:kde.org> --- .../Salvage/SalvageMagnetComponent.cs | 52 ++++++++++++------- Content.Server/Salvage/SalvageSystem.cs | 16 ++++++ .../Salvage/SharedSalvageMagnetComponent.cs | 18 ++++++- .../Locale/en-US/salvage/salvage-system.ftl | 2 + .../Circuitboards/Machine/production.yml | 15 ++++++ .../Entities/Structures/Machines/salvage.yml | 50 ++++++++---------- 6 files changed, 105 insertions(+), 48 deletions(-) diff --git a/Content.Server/Salvage/SalvageMagnetComponent.cs b/Content.Server/Salvage/SalvageMagnetComponent.cs index 7020631c6a..69b0cbdf5d 100644 --- a/Content.Server/Salvage/SalvageMagnetComponent.cs +++ b/Content.Server/Salvage/SalvageMagnetComponent.cs @@ -6,90 +6,104 @@ namespace Content.Server.Salvage { /// - /// A salvage magnet. + /// A salvage magnet. /// [NetworkedComponent, RegisterComponent] [Access(typeof(SalvageSystem))] public sealed class SalvageMagnetComponent : SharedSalvageMagnetComponent { /// - /// Offset relative to magnet used as centre of the placement circle. + /// Offset relative to magnet used as centre of the placement circle. /// [ViewVariables(VVAccess.ReadWrite)] [DataField("offset")] public Vector2 Offset = Vector2.Zero; // TODO: Maybe specify a direction, and find the nearest edge of the magnets grid the salvage can fit at /// - /// Minimum distance from the offset position that will be used as a salvage's spawnpoint. + /// Minimum distance from the offset position that will be used as a salvage's spawnpoint. /// [ViewVariables(VVAccess.ReadWrite)] [DataField("offsetRadiusMin")] - public float OffsetRadiusMin = 0f; + public float OffsetRadiusMin = 24f; /// - /// Maximum distance from the offset position that will be used as a salvage's spawnpoint. + /// Maximum distance from the offset position that will be used as a salvage's spawnpoint. /// [ViewVariables(VVAccess.ReadWrite)] [DataField("offsetRadiusMax")] - public float OffsetRadiusMax = 0f; + public float OffsetRadiusMax = 48f; /// - /// The entity attached to the magnet + /// The entity attached to the magnet /// [ViewVariables(VVAccess.ReadOnly)] [DataField("attachedEntity")] public EntityUid? AttachedEntity = null; /// - /// Current state of this magnet + /// Current state of this magnet /// [ViewVariables(VVAccess.ReadOnly)] [DataField("magnetState")] public MagnetState MagnetState = MagnetState.Inactive; /// - /// How long it takes for the magnet to pull in the debris + /// How long it takes for the magnet to pull in the debris + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField("baseAttachingTime")] + public TimeSpan BaseAttachingTime = TimeSpan.FromSeconds(30); + + /// + /// How long it actually takes for the magnet to pull in the debris /// [ViewVariables(VVAccess.ReadWrite)] [DataField("attachingTime")] - public TimeSpan AttachingTime = TimeSpan.FromSeconds(10); + public TimeSpan AttachingTime = TimeSpan.FromSeconds(30); /// - /// How long the magnet can hold the debris until it starts losing the lock + /// How long the magnet can hold the debris until it starts losing the lock /// [ViewVariables(VVAccess.ReadWrite)] [DataField("holdTime")] - public TimeSpan HoldTime = TimeSpan.FromSeconds(10); + public TimeSpan HoldTime = TimeSpan.FromSeconds(240); /// - /// How long the magnet can hold the debris while losing the lock + /// How long the magnet can hold the debris while losing the lock /// [ViewVariables(VVAccess.ReadWrite)] [DataField("detachingTime")] - public TimeSpan DetachingTime = TimeSpan.FromSeconds(10); + public TimeSpan DetachingTime = TimeSpan.FromSeconds(30); + + /// + /// How long the magnet has to cool down for after use + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField("baseCooldownTime")] + public TimeSpan BaseCooldownTime = TimeSpan.FromSeconds(60); /// - /// How long the magnet has to cool down after use + /// How long the magnet actually has to cool down for after use /// [ViewVariables(VVAccess.ReadWrite)] [DataField("cooldownTime")] - public TimeSpan CooldownTime = TimeSpan.FromSeconds(10); + public TimeSpan CooldownTime = TimeSpan.FromSeconds(60); [DataField("salvageChannel", customTypeSerializer: typeof(PrototypeIdSerializer))] public string SalvageChannel = "Supply"; /// - /// Current how much charge the magnet currently has + /// Current how much charge the magnet currently has /// public int ChargeRemaining = 5; /// - /// How much capacity the magnet can hold + /// How much capacity the magnet can hold /// public int ChargeCapacity = 5; /// - /// Used as a guard to prevent spamming the appearance system + /// Used as a guard to prevent spamming the appearance system /// public int PreviousCharge = 5; diff --git a/Content.Server/Salvage/SalvageSystem.cs b/Content.Server/Salvage/SalvageSystem.cs index d5ac0ab798..c74933b02a 100644 --- a/Content.Server/Salvage/SalvageSystem.cs +++ b/Content.Server/Salvage/SalvageSystem.cs @@ -1,3 +1,4 @@ +using Content.Server.Construction; using Content.Server.GameTicking; using Content.Server.Radio.Components; using Content.Server.Radio.EntitySystems; @@ -61,6 +62,8 @@ public override void Initialize() _sawmill = Logger.GetSawmill("salvage"); SubscribeLocalEvent(OnInteractHand); + SubscribeLocalEvent(OnRefreshParts); + SubscribeLocalEvent(OnUpgradeExamine); SubscribeLocalEvent(OnExamined); SubscribeLocalEvent(OnMagnetRemoval); SubscribeLocalEvent(OnGridRemoval); @@ -169,6 +172,19 @@ private void OnMagnetRemoval(EntityUid uid, SalvageMagnetComponent component, Co component.MagnetState = MagnetState.Inactive; } + private void OnRefreshParts(EntityUid uid, SalvageMagnetComponent component, RefreshPartsEvent args) + { + var rating = args.PartRatings[component.MachinePartDelay] - 1; + var factor = MathF.Pow(component.PartRatingDelay, rating); + component.AttachingTime = component.BaseAttachingTime * factor; + component.CooldownTime = component.BaseCooldownTime * factor; + } + + private void OnUpgradeExamine(EntityUid uid, SalvageMagnetComponent component, UpgradeExamineEvent args) + { + args.AddPercentageUpgrade("salvage-system-magnet-delay-upgrade", (float) (component.CooldownTime / component.BaseCooldownTime)); + } + private void OnExamined(EntityUid uid, SalvageMagnetComponent component, ExaminedEvent args) { var gotGrid = false; diff --git a/Content.Shared/Salvage/SharedSalvageMagnetComponent.cs b/Content.Shared/Salvage/SharedSalvageMagnetComponent.cs index fac5870d2d..c0dd76d133 100644 --- a/Content.Shared/Salvage/SharedSalvageMagnetComponent.cs +++ b/Content.Shared/Salvage/SharedSalvageMagnetComponent.cs @@ -1,8 +1,24 @@ +using Content.Shared.Construction.Prototypes; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Shared.Salvage; -public abstract class SharedSalvageMagnetComponent : Component {} +public abstract class SharedSalvageMagnetComponent : Component +{ + /// + /// The machine part that affects the attaching and cooldown times + /// + [DataField("machinePartDelay", customTypeSerializer: typeof(PrototypeIdSerializer)), ViewVariables(VVAccess.ReadWrite)] + public string MachinePartDelay = "Capacitor"; + + /// + /// A multiplier applied to the attaching and cooldown times for each level of + /// + [DataField("partRatingDelay"), ViewVariables(VVAccess.ReadWrite)] + public float PartRatingDelay = 0.75f; +} [Serializable, NetSerializable] public enum SalvageMagnetVisuals : byte diff --git a/Resources/Locale/en-US/salvage/salvage-system.ftl b/Resources/Locale/en-US/salvage/salvage-system.ftl index f341fa0d24..1da79800d8 100644 --- a/Resources/Locale/en-US/salvage/salvage-system.ftl +++ b/Resources/Locale/en-US/salvage/salvage-system.ftl @@ -19,3 +19,5 @@ salvage-system-magnet-examined-active = The salvage magnet is holding salvage in } salvage-system-magnet-examined-releasing = The salvage magnet is releasing the salvage. salvage-system-magnet-examined-cooling-down = The salvage magnet is cooling down. It will be ready in: {$timeLeft} seconds. +salvage-system-magnet-delay-upgrade = Attaching/cooldown delay + diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml index b9a5139252..2bb112f83f 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml @@ -879,3 +879,18 @@ materialRequirements: Steel: 1 Cable: 2 + +- type: entity + parent: BaseMachineCircuitboard + id: SalvageMagnetMachineCircuitboard + name: salvage magnet machine board + description: A machine printed circuit board for a salvage magnet. + components: + - type: MachineBoard + prototype: SalvageMagnet + requirements: + Capacitor: 4 + materialRequirements: + Steel: 5 + CableHV: 5 + Cable: 2 diff --git a/Resources/Prototypes/Entities/Structures/Machines/salvage.yml b/Resources/Prototypes/Entities/Structures/Machines/salvage.yml index 21248846a8..56c6689b3e 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/salvage.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/salvage.yml @@ -1,28 +1,28 @@ - type: entity + parent: [ BaseMachinePowered, ConstructibleMachine ] id: SalvageMagnet - parent: BaseMachinePowered name: salvage magnet - description: "Pulls in salvage." + description: Pulls in salvage. components: - type: Sprite sprite: Structures/Machines/salvage.rsi layers: - - state: salvage-magnet - - state: salvage-magnet-ready - visible: false - map: [ "ready" ] - - state: salvage-magnet-ready-blinking - visible: false - map: [ "readyBlinking" ] - - state: salvage-magnet-unready - visible: false - map: [ "unready" ] - - state: salvage-magnet-unready-blinking - visible: false - map: [ "unreadyBlinking" ] - - state: salvage-magnet-o4 - map: ["chargeState"] - shader: unshaded + - state: salvage-magnet + - state: salvage-magnet-ready + visible: false + map: [ "ready" ] + - state: salvage-magnet-ready-blinking + visible: false + map: [ "readyBlinking" ] + - state: salvage-magnet-unready + visible: false + map: [ "unready" ] + - state: salvage-magnet-unready-blinking + visible: false + map: [ "unreadyBlinking" ] + - state: salvage-magnet-o4 + map: ["chargeState"] + shader: unshaded - type: Appearance - type: GenericVisualizer visuals: @@ -58,25 +58,19 @@ channels: - Supply - type: SalvageMagnet - offset: 0, 0 - offsetRadiusMin: 24 - offsetRadiusMax: 48 - attachingTime: 30 - holdTime: 240 - detachingTime: 30 - cooldownTime: 60 - type: ApcPowerReceiver powerLoad: 2500 # TODO change this to a HV power draw that really hits the grid hard WHEN active + - type: Machine + board: SalvageMagnetMachineCircuitboard # For Knightship - type: entity - id: SalvageLocator parent: SalvageMagnet + id: SalvageLocator name: salvage locator - description: "Locates salvage." + description: Locates salvage. components: - type: SalvageMagnet - offset: 0, 0 offsetRadiusMin: 12 offsetRadiusMax: 48 - type: ApcPowerReceiver From a43da26c63c1888025386f7fba0cc18a79b9bd6e Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 13 Jun 2023 02:38:57 -0400 Subject: [PATCH 193/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index f9d525c3ee..32b9359c45 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: DogZeroX - changes: - - {message: Added decorative crystals., type: Add} - id: 3483 - time: '2023-04-22T07:10:51.0000000+00:00' - author: metalgearsloth changes: - {message: Fix xeno ravagers not being able to pry doors on expeditions., type: Fix} @@ -2910,3 +2905,9 @@ Entries: - {message: All xenos now enjoy a slowdown when badly wounded., type: Tweak} id: 3982 time: '2023-06-13T04:48:29.0000000+00:00' +- author: deltanedas + changes: + - {message: R&D has figured out how to upgrade salvage magnets using high-tier capacitors., + type: Tweak} + id: 3983 + time: '2023-06-13T06:37:54.0000000+00:00' From 313dbe16f6f7c9d9ef22a2020959ea04d6c05df9 Mon Sep 17 00:00:00 2001 From: liltenhead <104418166+liltenhead@users.noreply.github.com> Date: Tue, 13 Jun 2023 01:09:17 -0700 Subject: [PATCH 194/474] Timer electronic price nerf (#17298) --- .../Prototypes/Entities/Objects/Devices/Electronics/timer.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Resources/Prototypes/Entities/Objects/Devices/Electronics/timer.yml b/Resources/Prototypes/Entities/Objects/Devices/Electronics/timer.yml index 60b9076c4c..8a74e1cee4 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Electronics/timer.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Electronics/timer.yml @@ -14,6 +14,8 @@ - type: Tag tags: - TimerSignalElectronics + - type: StaticPrice + price: 15 - type: entity id: ScreenTimerElectronics From 8fd8b878bf5811025398fdbdab752624d5ce8b30 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 13 Jun 2023 04:10:21 -0400 Subject: [PATCH 195/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 32b9359c45..2759958e65 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: metalgearsloth - changes: - - {message: Fix xeno ravagers not being able to pry doors on expeditions., type: Fix} - id: 3484 - time: '2023-04-22T08:57:20.0000000+00:00' - author: Slava0135 changes: - {message: fix holofan charges loc string missing, type: Fix} @@ -2911,3 +2906,8 @@ Entries: type: Tweak} id: 3983 time: '2023-06-13T06:37:54.0000000+00:00' +- author: liltenhead + changes: + - {message: The economy behind timer electronics has crashed., type: Tweak} + id: 3984 + time: '2023-06-13T08:09:18.0000000+00:00' From c24c6e93ec88e8a93c48f2cb0dc580139216e2df Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Tue, 13 Jun 2023 20:30:04 +1000 Subject: [PATCH 196/474] Door opening tweaks (#16799) --- Content.Server/Doors/Systems/DoorSystem.cs | 10 ---------- .../Doors/Systems/SharedDoorSystem.cs | 18 ++++++++++++++++-- .../Prototypes/Entities/Mobs/NPCs/animals.yml | 4 ++-- .../Prototypes/Entities/Mobs/NPCs/mimic.yml | 1 + .../Prototypes/Entities/Mobs/NPCs/slimes.yml | 1 + 5 files changed, 20 insertions(+), 14 deletions(-) diff --git a/Content.Server/Doors/Systems/DoorSystem.cs b/Content.Server/Doors/Systems/DoorSystem.cs index b4ecee928f..687fc98dd7 100644 --- a/Content.Server/Doors/Systems/DoorSystem.cs +++ b/Content.Server/Doors/Systems/DoorSystem.cs @@ -46,16 +46,6 @@ public override void Initialize() SubscribeLocalEvent(OnEmagged); } - protected override void OnActivate(EntityUid uid, DoorComponent door, ActivateInWorldEvent args) - { - // TODO once access permissions are shared, move this back to shared. - if (args.Handled || !door.ClickOpen) - return; - - TryToggleDoor(uid, door, args.User); - args.Handled = true; - } - protected override void SetCollidable( EntityUid uid, bool collidable, diff --git a/Content.Shared/Doors/Systems/SharedDoorSystem.cs b/Content.Shared/Doors/Systems/SharedDoorSystem.cs index d607319eb3..850e479ba7 100644 --- a/Content.Shared/Doors/Systems/SharedDoorSystem.cs +++ b/Content.Shared/Doors/Systems/SharedDoorSystem.cs @@ -57,6 +57,7 @@ public override void Initialize() SubscribeLocalEvent(OnGetState); SubscribeLocalEvent(OnHandleState); + SubscribeLocalEvent(OnInteractedNoHand); SubscribeLocalEvent(OnActivate); SubscribeLocalEvent(HandleCollide); @@ -179,9 +180,22 @@ protected void SetState(EntityUid uid, DoorState state, DoorComponent? door = nu #endregion #region Interactions - protected virtual void OnActivate(EntityUid uid, DoorComponent door, ActivateInWorldEvent args) + + private void OnInteractedNoHand(EntityUid uid, DoorComponent component, InteractedNoHandEvent args) { - // avoid client-mispredicts, as the server will definitely handle this event + if (args.Handled || !component.ClickOpen || !Tags.HasTag(args.User, "DoorBumpOpener")) + return; + + TryToggleDoor(uid, component, args.User, predicted: true); + args.Handled = true; + } + + public void OnActivate(EntityUid uid, DoorComponent door, ActivateInWorldEvent args) + { + if (args.Handled || !door.ClickOpen) + return; + + TryToggleDoor(uid, door, args.User, predicted: true); args.Handled = true; } diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index d90ecfb486..4e2405af7e 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -2122,9 +2122,9 @@ accent: mouse - type: Tag tags: - - Trash - - CannotSuicide - Hamster + - CannotSuicide + - Trash - type: Respirator damage: types: diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/mimic.yml b/Resources/Prototypes/Entities/Mobs/NPCs/mimic.yml index e763ecac9f..e1390920e3 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/mimic.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/mimic.yml @@ -6,6 +6,7 @@ components: - type: Tag tags: + - DoorBumpOpener - FootstepSound - type: InputMover - type: MobMover diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml b/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml index a325d557d1..644b373262 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml @@ -41,6 +41,7 @@ volume: 3 - type: Tag tags: + - DoorBumpOpener - FootstepSound - type: Butcherable butcheringType: Knife From 0af6ecd5058620f28be295d9689ac31dcba377ff Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 13 Jun 2023 06:31:09 -0400 Subject: [PATCH 197/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 2759958e65..cfcf2994a3 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: Slava0135 - changes: - - {message: fix holofan charges loc string missing, type: Fix} - id: 3485 - time: '2023-04-22T09:54:42.0000000+00:00' - author: metalgearsloth changes: - {message: Admins and ghosts can now scrollin and scrollout., type: Add} @@ -2911,3 +2906,9 @@ Entries: - {message: The economy behind timer electronics has crashed., type: Tweak} id: 3984 time: '2023-06-13T08:09:18.0000000+00:00' +- author: metalgearsloth + changes: + - {message: Add doorbumpopener to some stuff that should've had it (slimes)., type: Fix} + - {message: Mobs that can bump open doors can also click them open now., type: Tweak} + id: 3985 + time: '2023-06-13T10:30:05.0000000+00:00' From 12d3b4a32639568bd7aae4f8c22064f9a4efa248 Mon Sep 17 00:00:00 2001 From: Slava0135 <40753025+Slava0135@users.noreply.github.com> Date: Tue, 13 Jun 2023 15:59:07 +0300 Subject: [PATCH 198/474] ignore resistances in temperature system (#17301) --- Content.Server/Temperature/Systems/TemperatureSystem.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Server/Temperature/Systems/TemperatureSystem.cs b/Content.Server/Temperature/Systems/TemperatureSystem.cs index b28e7909ec..6e422765e0 100644 --- a/Content.Server/Temperature/Systems/TemperatureSystem.cs +++ b/Content.Server/Temperature/Systems/TemperatureSystem.cs @@ -199,7 +199,7 @@ private void ChangeDamage(EntityUid uid, TemperatureComponent temperature) var diff = Math.Abs(temperature.CurrentTemperature - heatDamageThreshold); var tempDamage = c / (1 + a * Math.Pow(Math.E, -heatK * diff)) - y; - _damageableSystem.TryChangeDamage(uid, temperature.HeatDamage * tempDamage, interruptsDoAfters: false); + _damageableSystem.TryChangeDamage(uid, temperature.HeatDamage * tempDamage, ignoreResistances: true, interruptsDoAfters: false); } else if (temperature.CurrentTemperature <= coldDamageThreshold) { @@ -213,7 +213,7 @@ private void ChangeDamage(EntityUid uid, TemperatureComponent temperature) var diff = Math.Abs(temperature.CurrentTemperature - coldDamageThreshold); var tempDamage = Math.Sqrt(diff * (Math.Pow(temperature.DamageCap.Double(), 2) / coldDamageThreshold)); - _damageableSystem.TryChangeDamage(uid, temperature.ColdDamage * tempDamage, interruptsDoAfters: false); + _damageableSystem.TryChangeDamage(uid, temperature.ColdDamage * tempDamage, ignoreResistances: true, interruptsDoAfters: false); } else if (temperature.TakingDamage) { From 726f988a45ed67909e00079191097b8a21a0c863 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 13 Jun 2023 09:00:11 -0400 Subject: [PATCH 199/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index cfcf2994a3..ac5e6b50ec 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: metalgearsloth - changes: - - {message: Admins and ghosts can now scrollin and scrollout., type: Add} - id: 3486 - time: '2023-04-22T10:26:41.0000000+00:00' - author: Kit0vras changes: - {message: Lights and light posts now have ambient sound., type: Add} @@ -2912,3 +2907,10 @@ Entries: - {message: Mobs that can bump open doors can also click them open now., type: Tweak} id: 3985 time: '2023-06-13T10:30:05.0000000+00:00' +- author: Slava0135 + changes: + - {message: made temperature ignore resistances, type: Tweak} + - {message: fixed shields making blocking sound when user is damaged by temperature, + type: Fix} + id: 3986 + time: '2023-06-13T12:59:08.0000000+00:00' From cbbebe22d89e148b4dd6ab35024b013a2603f96e Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Tue, 13 Jun 2023 20:16:29 +0000 Subject: [PATCH 200/474] prevent emitters being turned on or off when unanchored (#17303) Co-authored-by: deltanedas <@deltanedas:kde.org> --- Content.Server/Singularity/EntitySystems/EmitterSystem.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Content.Server/Singularity/EntitySystems/EmitterSystem.cs b/Content.Server/Singularity/EntitySystems/EmitterSystem.cs index 7a86154dd0..bfe5ca27b9 100644 --- a/Content.Server/Singularity/EntitySystems/EmitterSystem.cs +++ b/Content.Server/Singularity/EntitySystems/EmitterSystem.cs @@ -317,6 +317,10 @@ private void UpdateAppearance(EntityUid uid, EmitterComponent component) private void OnSignalReceived(EntityUid uid, EmitterComponent component, ref SignalReceivedEvent args) { + // must anchor the emitter for signals to work + if (TryComp(uid, out var phys) && phys.BodyType != BodyType.Static) + return; + if (args.Port == component.OffPort) { SwitchOff(uid, component); From 620678df98938fa20a4a0aae968a8ac1b0d0b991 Mon Sep 17 00:00:00 2001 From: Vordenburg <114301317+Vordenburg@users.noreply.github.com> Date: Tue, 13 Jun 2023 20:37:51 -0400 Subject: [PATCH 201/474] Flip curTime and NextUpdate in UpdateGrid (#17306) --- Content.Server/NPC/Pathfinding/PathfindingSystem.Grid.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/NPC/Pathfinding/PathfindingSystem.Grid.cs b/Content.Server/NPC/Pathfinding/PathfindingSystem.Grid.cs index ce48da0523..323bb4ea6b 100644 --- a/Content.Server/NPC/Pathfinding/PathfindingSystem.Grid.cs +++ b/Content.Server/NPC/Pathfinding/PathfindingSystem.Grid.cs @@ -103,7 +103,7 @@ private void UpdateGrid() while (query.MoveNext(out var comp)) { if (comp.DirtyChunks.Count == 0 || - comp.NextUpdate < curTime || + curTime < comp.NextUpdate || !TryComp(comp.Owner, out var mapGridComp)) { continue; From 81cff320451f1552c5febc33e8a4d838d3125d56 Mon Sep 17 00:00:00 2001 From: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> Date: Tue, 13 Jun 2023 21:32:03 -0400 Subject: [PATCH 202/474] bluespace love (#17315) --- .../Components/BluespaceAnomalyComponent.cs | 8 ++--- .../Anomaly/Effects/BluespaceAnomalySystem.cs | 9 +++-- .../Systems/SharedPortalSystem.cs | 33 ++++++++++++++++--- 3 files changed, 36 insertions(+), 14 deletions(-) rename {Content.Shared/Anomaly/Effects => Content.Server/Anomaly}/Components/BluespaceAnomalyComponent.cs (86%) rename {Content.Shared => Content.Server}/Anomaly/Effects/BluespaceAnomalySystem.cs (95%) diff --git a/Content.Shared/Anomaly/Effects/Components/BluespaceAnomalyComponent.cs b/Content.Server/Anomaly/Components/BluespaceAnomalyComponent.cs similarity index 86% rename from Content.Shared/Anomaly/Effects/Components/BluespaceAnomalyComponent.cs rename to Content.Server/Anomaly/Components/BluespaceAnomalyComponent.cs index 03b9c3fef0..d1e9e783b9 100644 --- a/Content.Shared/Anomaly/Effects/Components/BluespaceAnomalyComponent.cs +++ b/Content.Server/Anomaly/Components/BluespaceAnomalyComponent.cs @@ -1,9 +1,9 @@ -using Robust.Shared.Audio; -using Robust.Shared.GameStates; +using Content.Server.Anomaly.Effects; +using Robust.Shared.Audio; -namespace Content.Shared.Anomaly.Effects.Components; +namespace Content.Server.Anomaly.Components; -[RegisterComponent, NetworkedComponent, Access(typeof(BluespaceAnomalySystem))] +[RegisterComponent, Access(typeof(BluespaceAnomalySystem))] public sealed class BluespaceAnomalyComponent : Component { /// diff --git a/Content.Shared/Anomaly/Effects/BluespaceAnomalySystem.cs b/Content.Server/Anomaly/Effects/BluespaceAnomalySystem.cs similarity index 95% rename from Content.Shared/Anomaly/Effects/BluespaceAnomalySystem.cs rename to Content.Server/Anomaly/Effects/BluespaceAnomalySystem.cs index dd521aeca0..41e96fb4c8 100644 --- a/Content.Shared/Anomaly/Effects/BluespaceAnomalySystem.cs +++ b/Content.Server/Anomaly/Effects/BluespaceAnomalySystem.cs @@ -1,11 +1,11 @@ using System.Linq; +using Content.Server.Anomaly.Components; using Content.Shared.Anomaly.Components; -using Content.Shared.Anomaly.Effects.Components; using Content.Shared.Mobs.Components; using Content.Shared.Teleportation.Components; using Robust.Shared.Random; -namespace Content.Shared.Anomaly.Effects; +namespace Content.Server.Anomaly.Effects; public sealed class BluespaceAnomalySystem : EntitySystem { @@ -24,13 +24,12 @@ public override void Initialize() private void OnPulse(EntityUid uid, BluespaceAnomalyComponent component, ref AnomalyPulseEvent args) { - var xform = Transform(uid); + var xformQuery = GetEntityQuery(); + var xform = xformQuery.GetComponent(uid); var range = component.MaxShuffleRadius * args.Severity; var allEnts = _lookup.GetComponentsInRange(xform.Coordinates, range) .Select(x => x.Owner).ToList(); allEnts.Add(uid); - - var xformQuery = GetEntityQuery(); var coords = new List(); foreach (var ent in allEnts) { diff --git a/Content.Shared/Teleportation/Systems/SharedPortalSystem.cs b/Content.Shared/Teleportation/Systems/SharedPortalSystem.cs index f21c9b2efd..3bb0aac29b 100644 --- a/Content.Shared/Teleportation/Systems/SharedPortalSystem.cs +++ b/Content.Shared/Teleportation/Systems/SharedPortalSystem.cs @@ -1,4 +1,5 @@ using System.Linq; +using Content.Shared.Directions; using Content.Shared.Projectiles; using Content.Shared.Pulling; using Content.Shared.Pulling.Components; @@ -8,7 +9,6 @@ using Robust.Shared.Network; using Robust.Shared.Physics.Dynamics; using Robust.Shared.Physics.Events; -using Robust.Shared.Player; using Robust.Shared.Random; namespace Content.Shared.Teleportation.Systems; @@ -20,12 +20,16 @@ public abstract class SharedPortalSystem : EntitySystem { [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly INetManager _netMan = default!; + [Dependency] private readonly EntityLookupSystem _lookup = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; [Dependency] private readonly SharedPullingSystem _pulling = default!; private const string PortalFixture = "portalFixture"; private const string ProjectileFixture = "projectile"; + private const int MaxRandomTeleportAttempts = 20; + /// public override void Initialize() { @@ -117,9 +121,7 @@ private void OnCollide(EntityUid uid, PortalComponent component, ref StartCollid return; // no linked entity--teleport randomly - var randVector = _random.NextVector2(component.MaxRandomRadius); - var newCoords = Transform(uid).Coordinates.Offset(randVector); - TeleportEntity(uid, subject, newCoords); + TeleportRandomly(uid, subject, component); } private void OnEndCollide(EntityUid uid, PortalComponent component, ref EndCollideEvent args) @@ -155,12 +157,33 @@ private void TeleportEntity(EntityUid portal, EntityUid subject, EntityCoordinat LogTeleport(portal, subject, Transform(subject).Coordinates, target); - Transform(subject).Coordinates = target; + _transform.SetCoordinates(subject, target); _audio.PlayPredicted(departureSound, portal, subject); _audio.PlayPredicted(arrivalSound, subject, subject); } + private void TeleportRandomly(EntityUid portal, EntityUid subject, PortalComponent? component = null) + { + if (!Resolve(portal, ref component)) + return; + + var xform = Transform(portal); + var coords = xform.Coordinates; + var newCoords = coords.Offset(_random.NextVector2(component.MaxRandomRadius)); + for (var i = 0; i < MaxRandomTeleportAttempts; i++) + { + var randVector = _random.NextVector2(component.MaxRandomRadius); + newCoords = coords.Offset(randVector); + if (!_lookup.GetEntitiesIntersecting(newCoords.ToMap(EntityManager, _transform), LookupFlags.Static).Any()) + { + break; + } + } + + TeleportEntity(portal, subject, newCoords); + } + protected virtual void LogTeleport(EntityUid portal, EntityUid subject, EntityCoordinates source, EntityCoordinates target) { From df39370055d3f83e6ccd18727199a2e15fc9644a Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 13 Jun 2023 21:33:07 -0400 Subject: [PATCH 203/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index ac5e6b50ec..9cac4c1868 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,10 +1,4 @@ Entries: -- author: Kit0vras - changes: - - {message: Lights and light posts now have ambient sound., type: Add} - - {message: Substation now have a right sound for buzzing., type: Tweak} - id: 3487 - time: '2023-04-22T10:40:58.0000000+00:00' - author: Menshin changes: - {message: Magboots sprite now updates on toggling. The toggling verb works properly @@ -2914,3 +2908,11 @@ Entries: type: Fix} id: 3986 time: '2023-06-13T12:59:08.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: Bluespace anomalies no longer mispredict teleportation (no more jittering + around and teleporting 7 times instantly), type: Fix} + - {message: Portals and bluespace anomalies no longer teleport players into walls, + type: Fix} + id: 3987 + time: '2023-06-14T01:32:03.0000000+00:00' From 9946bd1f6170ea082156423b19602a6da98b8f1c Mon Sep 17 00:00:00 2001 From: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> Date: Wed, 14 Jun 2023 20:49:23 -0400 Subject: [PATCH 204/474] Sheet-meister 2000 (#16686) --- .../Tests/Materials/MaterialTests.cs | 2 +- .../Materials/MaterialStorageSystem.cs | 2 +- Content.Shared/Materials/MaterialPrototype.cs | 2 +- .../Locale/en-US/materials/materials.ftl | 1 + .../Entities/Objects/Consumable/Food/meat.yml | 4 + .../Circuitboards/Machine/production.yml | 11 +++ .../Objects/Materials/Sheets/other.yml | 41 ++++++++ .../Entities/Objects/Misc/tiles.yml | 19 ++++ .../Entities/Structures/Furniture/chairs.yml | 14 +++ .../Entities/Structures/Machines/lathe.yml | 29 ++++++ .../Entities/Structures/Walls/walls.yml | 34 +++++++ .../Reagents/Materials/materials.yml | 7 ++ .../Construction/Graphs/furniture/seats.yml | 17 ++++ .../Construction/Graphs/structures/girder.yml | 23 +++++ .../Recipes/Construction/furniture.yml | 17 ++++ .../Recipes/Construction/structures.yml | 18 ++++ .../Recipes/Crafting/Graphs/tiles.yml | 16 ++++ .../Prototypes/Recipes/Crafting/tiles.yml | 11 +++ .../Prototypes/Recipes/Lathes/electronics.yml | 8 ++ Resources/Prototypes/Recipes/Lathes/sheet.yml | 19 ++-- .../Prototypes/Research/civilianservices.yml | 1 + .../Prototypes/Stacks/Materials/materials.yml | 7 ++ .../Prototypes/Stacks/floor_tile_stacks.yml | 16 +++- Resources/Prototypes/Tiles/floors.yml | 1 + .../Textures/Mobs/Aliens/flesh.rsi/lover.png | Bin 723 -> 709 bytes .../Sheets/meaterial.rsi/meat-inhand-left.png | Bin 0 -> 388 bytes .../meaterial.rsi/meat-inhand-right.png | Bin 0 -> 408 bytes .../Materials/Sheets/meaterial.rsi/meat.png | Bin 0 -> 431 bytes .../Materials/Sheets/meaterial.rsi/meat_2.png | Bin 0 -> 520 bytes .../Materials/Sheets/meaterial.rsi/meat_3.png | Bin 0 -> 565 bytes .../Materials/Sheets/meaterial.rsi/meta.json | 28 ++++++ .../Tiles/tile.rsi/meat-inhand-left.png | Bin 0 -> 329 bytes .../Tiles/tile.rsi/meat-inhand-right.png | Bin 0 -> 344 bytes .../Textures/Objects/Tiles/tile.rsi/meat.png | Bin 0 -> 345 bytes .../Textures/Objects/Tiles/tile.rsi/meta.json | 11 +++ .../Structures/Furniture/chairs.rsi/meat.png | Bin 0 -> 2399 bytes .../Structures/Furniture/chairs.rsi/meta.json | 6 +- .../Machines/sheetifier.rsi/base_machine.png | Bin 0 -> 939 bytes .../base_machine_processing.png | Bin 0 -> 7429 bytes .../Machines/sheetifier.rsi/buttons_on.png | Bin 0 -> 201 bytes .../Machines/sheetifier.rsi/meta.json | 88 ++++++++++++++++++ .../Structures/Walls/meat.rsi/full.png | Bin 0 -> 690 bytes .../Structures/Walls/meat.rsi/meat0.png | Bin 0 -> 1000 bytes .../Structures/Walls/meat.rsi/meat1.png | Bin 0 -> 875 bytes .../Structures/Walls/meat.rsi/meat2.png | Bin 0 -> 1000 bytes .../Structures/Walls/meat.rsi/meat3.png | Bin 0 -> 875 bytes .../Structures/Walls/meat.rsi/meat4.png | Bin 0 -> 865 bytes .../Structures/Walls/meat.rsi/meat5.png | Bin 0 -> 751 bytes .../Structures/Walls/meat.rsi/meat6.png | Bin 0 -> 865 bytes .../Structures/Walls/meat.rsi/meat7.png | Bin 0 -> 258 bytes .../Structures/Walls/meat.rsi/meta.json | 1 + 51 files changed, 439 insertions(+), 15 deletions(-) create mode 100644 Resources/Textures/Objects/Materials/Sheets/meaterial.rsi/meat-inhand-left.png create mode 100644 Resources/Textures/Objects/Materials/Sheets/meaterial.rsi/meat-inhand-right.png create mode 100644 Resources/Textures/Objects/Materials/Sheets/meaterial.rsi/meat.png create mode 100644 Resources/Textures/Objects/Materials/Sheets/meaterial.rsi/meat_2.png create mode 100644 Resources/Textures/Objects/Materials/Sheets/meaterial.rsi/meat_3.png create mode 100644 Resources/Textures/Objects/Materials/Sheets/meaterial.rsi/meta.json create mode 100644 Resources/Textures/Objects/Tiles/tile.rsi/meat-inhand-left.png create mode 100644 Resources/Textures/Objects/Tiles/tile.rsi/meat-inhand-right.png create mode 100644 Resources/Textures/Objects/Tiles/tile.rsi/meat.png create mode 100644 Resources/Textures/Structures/Furniture/chairs.rsi/meat.png create mode 100644 Resources/Textures/Structures/Machines/sheetifier.rsi/base_machine.png create mode 100644 Resources/Textures/Structures/Machines/sheetifier.rsi/base_machine_processing.png create mode 100644 Resources/Textures/Structures/Machines/sheetifier.rsi/buttons_on.png create mode 100644 Resources/Textures/Structures/Machines/sheetifier.rsi/meta.json create mode 100644 Resources/Textures/Structures/Walls/meat.rsi/full.png create mode 100644 Resources/Textures/Structures/Walls/meat.rsi/meat0.png create mode 100644 Resources/Textures/Structures/Walls/meat.rsi/meat1.png create mode 100644 Resources/Textures/Structures/Walls/meat.rsi/meat2.png create mode 100644 Resources/Textures/Structures/Walls/meat.rsi/meat3.png create mode 100644 Resources/Textures/Structures/Walls/meat.rsi/meat4.png create mode 100644 Resources/Textures/Structures/Walls/meat.rsi/meat5.png create mode 100644 Resources/Textures/Structures/Walls/meat.rsi/meat6.png create mode 100644 Resources/Textures/Structures/Walls/meat.rsi/meat7.png create mode 100644 Resources/Textures/Structures/Walls/meat.rsi/meta.json diff --git a/Content.IntegrationTests/Tests/Materials/MaterialTests.cs b/Content.IntegrationTests/Tests/Materials/MaterialTests.cs index b0a96a98cd..b144d382ca 100644 --- a/Content.IntegrationTests/Tests/Materials/MaterialTests.cs +++ b/Content.IntegrationTests/Tests/Materials/MaterialTests.cs @@ -41,7 +41,7 @@ await server.WaitAssertion(() => { foreach (var proto in allMaterialProtos) { - if (proto.StackEntity == "") + if (proto.StackEntity == null) continue; var spawned = entityManager.SpawnEntity(proto.StackEntity, coords); diff --git a/Content.Server/Materials/MaterialStorageSystem.cs b/Content.Server/Materials/MaterialStorageSystem.cs index 63eeaf2fe5..f7029c96d2 100644 --- a/Content.Server/Materials/MaterialStorageSystem.cs +++ b/Content.Server/Materials/MaterialStorageSystem.cs @@ -117,7 +117,7 @@ public List SpawnMultipleFromMaterial(int amount, MaterialPrototype m { overflowMaterial = 0; - if (amount <= 0) + if (amount <= 0 || materialProto.StackEntity == null) return new List(); var entProto = _prototypeManager.Index(materialProto.StackEntity); diff --git a/Content.Shared/Materials/MaterialPrototype.cs b/Content.Shared/Materials/MaterialPrototype.cs index 0b470ed6f7..1418ed2182 100644 --- a/Content.Shared/Materials/MaterialPrototype.cs +++ b/Content.Shared/Materials/MaterialPrototype.cs @@ -30,7 +30,7 @@ public sealed class MaterialPrototype : IPrototype, IInheritingPrototype /// include which stack we should spawn by default. /// [DataField("stackEntity", customTypeSerializer:typeof(PrototypeIdSerializer))] - public string StackEntity { get; } = ""; + public string? StackEntity; [DataField("name")] public string Name = ""; diff --git a/Resources/Locale/en-US/materials/materials.ftl b/Resources/Locale/en-US/materials/materials.ftl index 70fb991c24..41052e5727 100644 --- a/Resources/Locale/en-US/materials/materials.ftl +++ b/Resources/Locale/en-US/materials/materials.ftl @@ -19,6 +19,7 @@ materials-plastic = plastic materials-wood = wood materials-uranium = uranium materials-bananium = bananium +materials-meat = meat # Material Reclaimer material-reclaimer-upgrade-process-rate = process rate diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml index 01e7356f50..c56816dbdd 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml @@ -28,6 +28,10 @@ size: 5 - type: Temperature currentTemperature: 290 + - type: Material + - type: PhysicalComposition + materialComposition: + Meaterial: 300 - type: Tag id: Raw diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml index 2bb112f83f..29324a65b1 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml @@ -708,6 +708,17 @@ materialRequirements: Glass: 1 +- type: entity + id: SheetifierMachineCircuitboard + parent: BaseMachineCircuitboard + name: sheet-meister 2000 machine board + components: + - type: MachineBoard + prototype: Sheetifier + requirements: + MatterBin: 1 + Manipulator: 1 + - type: entity id: MicrowaveMachineCircuitboard parent: BaseMachineCircuitboard diff --git a/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml b/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml index cb498ab433..b2168a7d45 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml @@ -191,3 +191,44 @@ components: - type: Stack count: 1 + +- type: entity + parent: SheetOtherBase + id: MaterialSheetMeat + name: meat sheet + suffix: Full + components: + - type: Sprite + sprite: Objects/Materials/Sheets/meaterial.rsi + layers: + - state: meat_3 + map: [ "base" ] + - type: Tag + tags: + - Sheet + - DroneUsable + - type: Material + - type: PhysicalComposition + materialComposition: + Meaterial: 100 + - type: Stack + stackType: MeatSheets + baseLayer: base + layerStates: + - meat + - meat_2 + - meat_3 + - type: Item + sprite: Objects/Materials/Sheets/meaterial.rsi + heldPrefix: meat + - type: Appearance + +- type: entity + parent: MaterialSheetMeat + id: MaterialSheetMeat1 + suffix: Single + components: + - type: Sprite + state: meat + - type: Stack + count: 1 diff --git a/Resources/Prototypes/Entities/Objects/Misc/tiles.yml b/Resources/Prototypes/Entities/Objects/Misc/tiles.yml index b17b35eb73..b3970f760e 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/tiles.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/tiles.yml @@ -735,6 +735,25 @@ - type: Stack stackType: FloorTileWoodPattern +- type: entity + id: FloorTileItemFlesh + parent: FloorTileItemBase + name: flesh floor + components: + - type: Sprite + state: meat + - type: Item + heldPrefix: meat + - type: FloorTile + outputs: + - Plating + - FloorFlesh + - type: Stack + stackType: FloorTileFlesh + - type: Construction + graph: TileFlesh + node: fleshTile + - type: entity name: steel maint floor parent: FloorTileItemBase diff --git a/Resources/Prototypes/Entities/Structures/Furniture/chairs.yml b/Resources/Prototypes/Entities/Structures/Furniture/chairs.yml index f697558104..5bbc10f0dd 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/chairs.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/chairs.yml @@ -206,6 +206,20 @@ graph: RitualSeat node: chairRitual +- type: entity + id: ChairMeat + parent: SeatBase + name: meat chair + description: Uncomfortably sweaty. + components: + - type: Anchorable + - type: Rotatable + - type: Sprite + state: meat + - type: Construction + graph: Seat + node: chairMeat + - type: entity name: cursed chair id: ChairCursed diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index e34ad45f15..2c54578e1b 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -301,6 +301,7 @@ - HotplateMachineCircuitboard - MicrowaveMachineCircuitboard - FatExtractorMachineCircuitboard + - SheetifierMachineCircuitboard - UniformPrinterMachineCircuitboard - ShuttleConsoleCircuitboard - RadarConsoleCircuitboard @@ -680,3 +681,31 @@ - IngotGold1 - IngotSilver1 - MaterialBananium1 + +- type: entity + parent: Autolathe + id: Sheetifier + name: sheet-meister 2000 + description: A very sheety machine. + components: + - type: Sprite + sprite: Structures/Machines/sheetifier.rsi + layers: + - state: base_machine + map: ["enum.LatheVisualLayers.IsRunning"] + - state: buttons_on + shader: unshaded + map: ["enum.PowerDeviceVisualLayers.Powered"] + - type: Machine + board: SheetifierMachineCircuitboard + - type: MaterialStorage + dropOnDeconstruct: false #should drop ores instead of ingots/sheets + ignoreColor: true + whitelist: + tags: + - Raw + - type: Lathe + idleState: base_machine + runningState: base_machine_processing + staticRecipes: + - MaterialSheetMeat diff --git a/Resources/Prototypes/Entities/Structures/Walls/walls.yml b/Resources/Prototypes/Entities/Structures/Walls/walls.yml index eef4088383..e6faa23a1b 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/walls.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/walls.yml @@ -144,6 +144,40 @@ key: walls base: clown +- type: entity + parent: BaseWall + id: WallMeat + name: meat wall + description: Sticky. + components: + - type: Tag + tags: + - RCDDeconstructWhitelist + - Wall + - Structure + - type: Sprite + sprite: Structures/Walls/meat.rsi + - type: Icon + sprite: Structures/Walls/meat.rsi + - type: Construction + graph: Girder + node: bananiumWall + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 100 # weak + behaviors: + - !type:SpawnEntitiesBehavior + spawn: + Girder: + min: 1 + max: 1 + - !type:DoActsBehavior + acts: [ "Destruction" ] + - type: IconSmooth + key: walls + base: meat - type: entity parent: BaseWall diff --git a/Resources/Prototypes/Reagents/Materials/materials.yml b/Resources/Prototypes/Reagents/Materials/materials.yml index 1b8181082b..f3ddc4d082 100644 --- a/Resources/Prototypes/Reagents/Materials/materials.yml +++ b/Resources/Prototypes/Reagents/Materials/materials.yml @@ -69,3 +69,10 @@ icon: { sprite: Objects/Materials/materials.rsi, state: bananium } color: "#32a852" price: 0.2 + +- type: material + id: Meaterial # you can't take this pun from me + name: materials-meat + icon: { sprite: Objects/Materials/Sheets/meaterial.rsi, state: meat } + color: "#c53648" + price: 0.05 diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/furniture/seats.yml b/Resources/Prototypes/Recipes/Construction/Graphs/furniture/seats.yml index e9034a295b..30a988cb8f 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/furniture/seats.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/furniture/seats.yml @@ -46,6 +46,11 @@ - material: WoodPlank amount: 3 doAfter: 1 + - to: chairMeat + steps: + - material: MeatSheets + amount: 2 + doAfter: 1 - to: chairFolding steps: - material: Plastic @@ -147,6 +152,18 @@ - tool: Screwing doAfter: 1 + - node: chairMeat + entity: ChairMeat + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: MaterialSheetMeat1 + amount: 2 + steps: + - tool: Screwing + doAfter: 1 + - node: chairFolding entity: ChairFolding edges: diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/structures/girder.yml b/Resources/Prototypes/Recipes/Construction/Graphs/structures/girder.yml index e133535a06..e652cfbec8 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/structures/girder.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/structures/girder.yml @@ -134,6 +134,17 @@ - tool: Welding doAfter: 20 + - to: meatWall + completed: + - !type:SnapToGrid + southRotation: true + conditions: + - !type:EntityAnchored {} + steps: + - material: MeatSheets + amount: 2 + doAfter: 2 + - node: wall entity: WallSolid edges: @@ -240,6 +251,18 @@ - tool: Prying doAfter: 10 + - node: meatWall + entity: WallMeat + edges: + - to: girder + completed: + - !type:GivePrototype + prototype: MaterialSheetMeat1 + amount: 2 + steps: + - tool: Prying + doAfter: 5 + - node: reinforcedGirder entity: ReinforcedGirder edges: diff --git a/Resources/Prototypes/Recipes/Construction/furniture.yml b/Resources/Prototypes/Recipes/Construction/furniture.yml index 1c7afe46e0..e0b3a9d7bc 100644 --- a/Resources/Prototypes/Recipes/Construction/furniture.yml +++ b/Resources/Prototypes/Recipes/Construction/furniture.yml @@ -135,6 +135,23 @@ conditions: - !type:TileNotBlocked +- type: construction + name: meat chair + id: ChairMeat + graph: Seat + startNode: start + targetNode: chairMeat + category: construction-category-furniture + description: Uncomfortably sweaty. + icon: + sprite: Structures/Furniture/chairs.rsi + state: meat + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: false + conditions: + - !type:TileNotBlocked + - type: construction name: ritual chair id: ChairRitual diff --git a/Resources/Prototypes/Recipes/Construction/structures.yml b/Resources/Prototypes/Recipes/Construction/structures.yml index f1afe2768e..d44977ae37 100644 --- a/Resources/Prototypes/Recipes/Construction/structures.yml +++ b/Resources/Prototypes/Recipes/Construction/structures.yml @@ -196,6 +196,24 @@ conditions: - !type:TileNotBlocked +- type: construction + name: meat wall + id: MeatWall + graph: Girder + startNode: start + targetNode: meatWall + category: construction-category-structures + description: Sticky. + icon: + sprite: Structures/Walls/meat.rsi + state: full + objectType: Structure + placementMode: SnapgridCenter + canRotate: false + canBuildInImpassable: false + conditions: + - !type:TileNotBlocked + - type: construction name: grille id: Grille diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/tiles.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/tiles.yml index 329037efb2..caff139192 100644 --- a/Resources/Prototypes/Recipes/Crafting/Graphs/tiles.yml +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/tiles.yml @@ -62,3 +62,19 @@ amount: 1 - node: darktile entity: FloorTileItemDark + +- type: constructionGraph + id: TileFlesh + start: start + graph: + - node: start + edges: + - to: fleshTile + completed: + - !type:SetStackCount + amount: 4 + steps: + - material: MeatSheets + amount: 1 + - node: fleshTile + entity: FloorTileItemFlesh diff --git a/Resources/Prototypes/Recipes/Crafting/tiles.yml b/Resources/Prototypes/Recipes/Crafting/tiles.yml index 590a1988c3..6050306597 100644 --- a/Resources/Prototypes/Recipes/Crafting/tiles.yml +++ b/Resources/Prototypes/Recipes/Crafting/tiles.yml @@ -44,6 +44,17 @@ icon: { sprite: Objects/Tiles/tile.rsi, state: dark } objectType: Item +- type: construction + name: flesh tile + id: TileFlesh + graph: TileFlesh + startNode: start + targetNode: fleshTile + category: construction-category-tiles + description: "Four fleshy tiles." + icon: { sprite: Objects/Tiles/tile.rsi, state: meat } + objectType: Item + # - type: construction # name: techmaint floor # id: tileTechmaint diff --git a/Resources/Prototypes/Recipes/Lathes/electronics.yml b/Resources/Prototypes/Recipes/Lathes/electronics.yml index 9d83b40c8e..a7badb03e5 100644 --- a/Resources/Prototypes/Recipes/Lathes/electronics.yml +++ b/Resources/Prototypes/Recipes/Lathes/electronics.yml @@ -501,6 +501,14 @@ Steel: 100 Glass: 900 +- type: latheRecipe + id: SheetifierMachineCircuitboard + result: SheetifierMachineCircuitboard + completetime: 4 + materials: + Steel: 100 + Glass: 900 + - type: latheRecipe id: SurveillanceCameraRouterCircuitboard result: SurveillanceCameraRouterCircuitboard diff --git a/Resources/Prototypes/Recipes/Lathes/sheet.yml b/Resources/Prototypes/Recipes/Lathes/sheet.yml index 7dbbb12aa4..ea17d46129 100644 --- a/Resources/Prototypes/Recipes/Lathes/sheet.yml +++ b/Resources/Prototypes/Recipes/Lathes/sheet.yml @@ -5,7 +5,7 @@ completetime: 2 materials: Steel: 100 - + - type: latheRecipe id: SheetSteel30 result: SheetSteel @@ -20,7 +20,7 @@ completetime: 2 materials: Glass: 100 - + - type: latheRecipe id: SheetGlass30 result: SheetGlass @@ -36,7 +36,7 @@ materials: Glass: 100 Steel: 50 - + - type: latheRecipe id: SheetRGlass30 result: SheetRGlass @@ -52,7 +52,7 @@ materials: Glass: 3000 Plasma: 3000 - + - type: latheRecipe id: SheetRPGlass30 result: SheetRPGlass @@ -61,7 +61,7 @@ Glass: 3000 Plasma: 3000 Steel: 1500 - + - type: latheRecipe id: SheetPlasma30 result: SheetPlasma @@ -75,7 +75,7 @@ completetime: 2 materials: Uranium: 500 - + - type: latheRecipe id: IngotGold1 result: IngotGold1 @@ -104,3 +104,10 @@ completetime: 2 materials: Bananium: 500 + +- type: latheRecipe + id: MaterialSheetMeat + result: MaterialSheetMeat1 + completetime: 6.4 + materials: + Meaterial: 200 diff --git a/Resources/Prototypes/Research/civilianservices.yml b/Resources/Prototypes/Research/civilianservices.yml index b39b85b26d..7bad53a08d 100644 --- a/Resources/Prototypes/Research/civilianservices.yml +++ b/Resources/Prototypes/Research/civilianservices.yml @@ -116,6 +116,7 @@ cost: 5000 recipeUnlocks: - FatExtractorMachineCircuitboard + - SheetifierMachineCircuitboard - type: technology id: HONKMech diff --git a/Resources/Prototypes/Stacks/Materials/materials.yml b/Resources/Prototypes/Stacks/Materials/materials.yml index ad22391a72..6c67fb991f 100644 --- a/Resources/Prototypes/Stacks/Materials/materials.yml +++ b/Resources/Prototypes/Stacks/Materials/materials.yml @@ -53,3 +53,10 @@ icon: { sprite: /Textures/Objects/Materials/materials.rsi, state: bananium } spawn: MaterialBananium1 maxCount: 10 + +- type: stack + id: MeatSheets + name: meat sheet + icon: { sprite: /Textures/Objects/Materials/Sheets/meaterial.rsi, state: meat } + spawn: MaterialSheetMeat1 + maxCount: 30 diff --git a/Resources/Prototypes/Stacks/floor_tile_stacks.yml b/Resources/Prototypes/Stacks/floor_tile_stacks.yml index 0d6e701837..efa6eb3084 100644 --- a/Resources/Prototypes/Stacks/floor_tile_stacks.yml +++ b/Resources/Prototypes/Stacks/floor_tile_stacks.yml @@ -3,7 +3,7 @@ name: steel tile spawn: FloorTileItemSteel maxCount: 30 - + - type: stack id: FloorTileMetalDiamond name: steel tile @@ -129,7 +129,7 @@ name: blue arcade tile spawn: FloorTileItemArcadeBlue maxCount: 30 - + - type: stack id: FloorTileStackArcadeBlue2 name: blue arcade tile @@ -189,7 +189,7 @@ name: pink carpet tile spawn: FloorCarpetItemPink maxCount: 30 - + - type: stack id: FloorTileStackCarpetClown name: clown carpet tile @@ -201,13 +201,13 @@ name: office carpet tile spawn: FloorTileItemCarpetOffice maxCount: 30 - + - type: stack id: FloorTileStackBoxing name: boxing ring tile spawn: FloorTileItemBoxing maxCount: 30 - + - type: stack id: FloorTileStackGym name: gym floor tile @@ -298,6 +298,12 @@ spawn: FloorTileItemWoodPattern maxCount: 30 +- type: stack + id: FloorTileFlesh + name: flesh floor + spawn: FloorTileItemFlesh + maxCount: 30 + - type: stack id: FloorTileSteelMaint name: steel maint floor diff --git a/Resources/Prototypes/Tiles/floors.yml b/Resources/Prototypes/Tiles/floors.yml index 0df9978782..9c755fb240 100644 --- a/Resources/Prototypes/Tiles/floors.yml +++ b/Resources/Prototypes/Tiles/floors.yml @@ -1135,6 +1135,7 @@ canCrowbar: true footstepSounds: collection: BarestepCarpet + itemDrop: FloorTileItemFlesh friction: 0.20 #slippy heatCapacity: 10000 diff --git a/Resources/Textures/Mobs/Aliens/flesh.rsi/lover.png b/Resources/Textures/Mobs/Aliens/flesh.rsi/lover.png index 0b5229c37f85e1d26dbab44f8a8c8cc4298a7b3c..d5680e1f8185814a64ea4c22f036a7c7f6a27148 100644 GIT binary patch delta 672 zcmV;R0$=^p1;quBF@JwaL_t(oh3%FxXxl&(hJTfSLD-N%QE_n=*;@)h33SQYp-?(z z%HS^UR7$6;MIAkbEE%#?bJvbpJ=UGvNzoEh43G?`p>c+J7D1Wsru~G?1zzaF9T)4X{=eVVaMGR<9{QTV6s>mO;k1zIDY!l zds=vY5l^9lx3^pXz|}QdX~Jkg&6eO4oB$)10DuurGMU&g!PRU>ED;bnxLj@>Se`do zObgGSl)<;RT#=CuPR8V`P9KNgjbjA^v|uB6jjL;xdygtuu8Iywamoy8dmwQ9^jk6( z_a}S%+5l>|1AoBz_)-h%wc6Sq&>HC4o%H9Q-#9)!#IrB4Xdrcq$#5DcV{+L|aKO-n zz-`w3A#Q+NaFW{X&3aAD8?gi@d;9qH*27JI2mpxrT+1-*)J-Z=-pN}umYqdp& zY6VD>#Zs)H`ej*v$=rnU(IAmou1^LZ}w-G8$q0W@`gvtAR`kl`kkehH}x zWI}E*s>bfw5#GP~j9#lP#%XN8W&*CuzLEg|FqzOv2Y-+Oxd-GjQa>D@9-{x@YYqw& z-#JMKUuodLbueHvggmljLu5o2H6IxU0C~NMW88+SLLOON+`SSRsDjBbnE*rT*^T>s z2SOfMV1Gy{K*%GDG9e?XC}VZ~yXT$T8Gc&nZ%Fd&26o&{5j1B`5oN4Pf~uAMp#nS?0|veC+f4$zuv`@#kmBSS)b>E&_{sOl zK-{0~?P~+5-G2@M=YvZvs9kSpdq8WTWjB*wf2KG-J;d{`v1lOm7n9*MPR8W2o8W+< z34zAir{fp-93_mHf8cRnptT|0wtO|$or3FSeK1);5r#IA&;!QBiT{~?zZFfdJ&Iu&vdHNeSZN+ zEn+%NX$_Db0ykAEjgeM$We?;{{ue!FtXu_-pC@!*zD{%}Xq^hL14SiQaIGTx3sq#C UZ&TV0gYP&c9qB zKYQlQoS%xPgI+)3i^#owb#i_+dro@kLnp~^S9ah29sV_DuiRhj-<$kSGD6(Tz);`3 zs9&MpvPy52UDF=2c0cHEyI{!Or< a{uOs$-l_YSelazJjPi8#b6Mw<&;$UH#i_vn literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Materials/Sheets/meaterial.rsi/meat-inhand-right.png b/Resources/Textures/Objects/Materials/Sheets/meaterial.rsi/meat-inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..7595ad686d9504a4d63cc39517e12cfc57801c0a GIT binary patch literal 408 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D%zgFIavLn`LH zy|vNnu!GF;kMor{To*R`7HD`ByngbGIpwqLm&h7kbNN-XOAMSJZeodIn)@nXQr0Y) z@(G9L*4TT`p2EFf?tfhS|9B>#(IDXYzTE%!yVCD*FJg@1`E<{04!N(t{_P_h@2Tl8 zPabPIX8w8V+eFvQFCRbbiB}0eo8H-Vsb}U_of_lsc?VYA%g9`})nnPDB}-S{x*ob$ z((+T~jx@P74PVRDS6Wrd?|Rm~JMG=whMc0+zh@`2dQ6=)DJs7_$TsZG$De8MY*}Wr zpG`kGzuIsP--)eP-jjgV!R$&loeCUHjQ!XLye1hDG>+h4B?R=K8)@zddw%FMg{c)L{)!{+zVH z=Q9nxpZy)W%F_-U+sTwPPjbV@SF?{>88akY;9ur?q$W{k)&+22xca%Qb4q9e02mIq A&j0`b literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Materials/Sheets/meaterial.rsi/meat.png b/Resources/Textures/Objects/Materials/Sheets/meaterial.rsi/meat.png new file mode 100644 index 0000000000000000000000000000000000000000..f6d01f8addc0978bcbed27155205602557ff7f14 GIT binary patch literal 431 zcmV;g0Z{&lP)Px$X-PyuR9J=Wma&S1KoExiI|4%Rz#{RmNE6aoJ#EyBcVEw#nEJ^ zOJaEcNQe&bI`XC~OpPp#>^9_yeZm$C;K_NT`9u(O9qK?(6B2wYy4!H+ED#+iyJoWa z2>$luQeo<$e4Q>pb%1K>ZpFgX_TJPi2tn-ux6aacV96{H9iUy1#nGt76kC&A6+n>1 zeBN{0*9@cJj}hR1OSj&X{7(jv`%o!1cLWCu@J&041HRZi)Dz3s{^C87X@nlhHa0dk ZegW1SxlM9nPCftt002ovPDHLkV1nTF!4?1j literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Materials/Sheets/meaterial.rsi/meat_2.png b/Resources/Textures/Objects/Materials/Sheets/meaterial.rsi/meat_2.png new file mode 100644 index 0000000000000000000000000000000000000000..5d8ca937e6649dab57341f89b411c8ab4b02e536 GIT binary patch literal 520 zcmV+j0{8uiP)Px$!bwCyR9J=WROYn;=|qJ`m#UX6MbknaKigyz$4FxHcRXyT)WstA~DGPiGzbvAQ_Vb`m%& zcFp(tt7A`80RYI#8gUqO*0ZukT0Oi-eE6_jEhGH{fNeAf0PTDm&9!YPK5dI_I@=6f zbA?lSGwwU9i+(0K*3%jG*ffA$4l4oRH{GZ7hCVssFfhtN_B}RD9|a!?hk-sMQN@#EiET93nc>8En+_sidNEPOlO$y0u#uE- z79r3^a#nX_WeuRsigaosV%j6&RfGgC2L}=BbI$8W!Z`;hS}q4KI@yNYv5D9q0(1zE zS{9m#1c9Dy8Sv@?QzX0VdPmcjPcdDfK4j zqX!X@0D%3pyPx$?@2^KR9J=WSFwtNKoET%2SPBABIjXoO-Pq2|8W1|x8zg&kF zhtJjfC|;-<0B~%3BvCk8Kej!puJI!A;#&N8i}eoxHt_-gbn;ES(6Qg*RSI6@yeM!u zDeS8+@z1#`^)=bCn$3}7Jpj|}5D5TRx%br9Fx1ijPq9HyWPCkrkIm}DVNO--il@$ zPMrle&jM}-?+)88=hbp`yxI_uW#@6T6$@4CHQOwZAa25}D}xm4fhy)znKR$@mNaD+ zSQW^+GT?`YX@}`C#e9-G32?Z&fRb|AeTLCZ0$EoERo5U_=TUb^RhoWNa<4%okpO^n zc6qtD#|ZW!z#&aLiUU&24X=*~;HrWzd_P#8_%nP1o#9Q1ybM!j00000NkvXXu0mjf DFcSdb literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Materials/Sheets/meaterial.rsi/meta.json b/Resources/Textures/Objects/Materials/Sheets/meaterial.rsi/meta.json new file mode 100644 index 0000000000..22d12d0637 --- /dev/null +++ b/Resources/Textures/Objects/Materials/Sheets/meaterial.rsi/meta.json @@ -0,0 +1,28 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Created by EmoGarbage404 (github) for Space Station 14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "meat-inhand-left", + "directions": 4 + }, + { + "name": "meat-inhand-right", + "directions": 4 + }, + { + "name": "meat" + }, + { + "name": "meat_2" + }, + { + "name": "meat_3" + } + ] +} diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/meat-inhand-left.png b/Resources/Textures/Objects/Tiles/tile.rsi/meat-inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..eeb14752fc1858a9f33986d745b0fc2eea0cc2c4 GIT binary patch literal 329 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D%znLS+`Ln`LH zy=9np$Ux%gNB65IcpwaDGL@k>#!MzxNQl#daP4$%K!Y+ z6U2}Iw0Y_YG!FF;ts6h~zziC1}EdYu@ZGuL0$DLQ+R<@&2N zE58UimoB`XwQq{$`fIZ+J_?;zyWem&N%r-rmFwnwJ8qzrUC-kcnYn1$w-_apy%n)L z-*9?-@4tKGzKA8$rRR_GHJ__b_HVFUulMD-e*QV{_C0g%9{)Z4^&A<9D?sEA@qN?P z+ooxD{gvB4?exEcscWCD?-Eg2w|1-AGP#4!c?V{woxCgGsIuL&=)17PWEO@A?^*gg VJiB+jUCa#9@9FC2vd$@?2>>fGjFJEV literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/meat-inhand-right.png b/Resources/Textures/Objects/Tiles/tile.rsi/meat-inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..2f10d57077a7f9d861edf58f831b63f754a282b6 GIT binary patch literal 344 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D%zg*;sxLn`LH zy``9U*g&G~VScbO`DP#IiS575(eh)=5jYKXxy<7b9y{t?zm5N!7~xi+{=|GjGk_ z8l9i&yYAGqx~>VqD|241JqZ*LH8WI;V(`qeTCQZQWmLTC#T}qFc_Z_=(sTCjGOKv4 zR4i;HK6B@LmKN8blI(XcI5((WfByaY&Fy{P*=Nr(-I;ZLUYXt0I}kU3$h0S$0+qHN z>$Gb=|G56@I@{kb7jFM95|caOMR1DSdjIqLUfxmSGI+(}vH!04!qPNOH*p8A?b%Dt iuh4e*&dQJwS;sK*Nl=>pgHs+L(>z`MT-G@yGywoCwU8$O literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/meat.png b/Resources/Textures/Objects/Tiles/tile.rsi/meat.png new file mode 100644 index 0000000000000000000000000000000000000000..5403a4c3f87a6e52cdf00dfeb11cc1f21a306630 GIT binary patch literal 345 zcmV-f0jBPx$6G=otR9J=WmO%=GFc3w5i;@ZoF1&^p^FX~=ui-+dP=f`#kZ-3Unxqw6G;gKj zF!M7r83ZDc$iH)PIW$E*eH;9Gzd7S?Iy6N+Rq6r&C{wlAyHTUn11fb{?0J>|0Q$!h z-KYTotsa~r5|=_I&$HwsIEC?@A}B=Ke-gmt67%%ksJ#;g3jpS_GLcL!g;9iT)h+^D zC!;uEu1qN2Ge9x6(-YYiUqQh$z>3I|( zw}6E9JXnCddcb=D*=EDsn!604ZRtqZo-$R-9$19+&irlxTT5pP-$C@60b5X(*Q`wF rO7_|VYc{jT=79Qe`2Rp85;>d~l+Uhs*{blT00000NkvXXu0mjfSM!nN literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/meta.json b/Resources/Textures/Objects/Tiles/tile.rsi/meta.json index f19df39b22..0dcf9a0b7e 100644 --- a/Resources/Textures/Objects/Tiles/tile.rsi/meta.json +++ b/Resources/Textures/Objects/Tiles/tile.rsi/meta.json @@ -40,6 +40,17 @@ { "name": "lino" }, + { + "name": "meat" + }, + { + "name": "meat-inhand-right", + "directions": 4 + }, + { + "name": "meat-inhand-left", + "directions": 4 + }, { "name": "mime" }, diff --git a/Resources/Textures/Structures/Furniture/chairs.rsi/meat.png b/Resources/Textures/Structures/Furniture/chairs.rsi/meat.png new file mode 100644 index 0000000000000000000000000000000000000000..86330d1378c4dea07249974dd408048372c71239 GIT binary patch literal 2399 zcmV-l3840gP)Px;8A(JzRCt{2TT5>n*A@Qw5IGuhXlnS7C{vUrx^`Q-G0*~Ts=z=4SZI+=U?2s& zaThfLWYblDfLoxOqRVay6wRia?y^hM)<9bnk=sSkCXk}aFeQhgD2fzmio>~lh~#uJ zyrY>BIddru9SG3}2qI@j_n!03x#yn86>y15e5K)HeenLwf+BkTsI|HXbKarP)LLB} z^*eYX7nsNWvN2o}6W&YSP*%b*v>H7iF#5U7QW#kxLD=&sAH3YX5F{`WaNO==r%2HE z^^g_?%!#6QuUM^WpR+_lv(ba-^*b-=gup~Vt}P=OC`i6Q2+oGIt014 z?5L2Fgq!6d`M3uFi19wd^)l%UNP$L5S`-lBIVWYDD3~lDFy+zSFg5>TwTiTOqByk< z0H~1G1Vo(-mp`z)tEzKMivlD{?#S?{fjIBpx^0X zuR~BK9qe_8L8f^hk1KB9sG&}QiGXWS5ounXBwLkGCLPV>^`Gf|r+vWFVjeTyzV_X` z?DTU3K;6}59-Day%!%T_@d=vqqsp6OgRN&0P-m9G7J3T=V3=1A`hBfYW*+-oK0q&o zosVz|!<08W=m^g-zW^ozBtif_48XYU#dzN--!O?K5aBtU!s>kg%2%`{Kz+|y=4T>6 z;Ca0Cx-rx38`huxEzl)#&})s6VvUbs>z~FTG$P>-RG_^`k{wj}{8({bfaAgX<*iklVQD5-(Ze&b~Oxf6_H zvr$*pnx%7*@F;d&8J1j8#m!5RI^)Ob+sZGppW4oCNkGEO15g!Sh{d(*yX6vq6U8YZ znZYCU`Zt0htTjt^GK|FI^le2HLU7lscq6%}DK{(zpxd+_k7Cztt&qtFP=$tF)00Dq z$;89hDAiDFby5Etd@IJ`wbvS`MENv6{0WUzgGDb}`RQyO z9;TM@;bFlx9EuWOV`k&LWc!iz=~ zf35FZZ)wewj}PXSlsQp^z)+X4^#L@tHVDwfXlCoG0JbwTfR^I6`r~Dn71BbnT4kzB zSQ1bnEtK8km$-9BGDN>KrSY>SSFC?$xeZ2m?o`0Rg4C4&UQb3GsScl|%1o=+EPuyT z79ST@vHLhM7h_pL9ik&?`B~TVYAE4|ANaE8zr-aj@fF5uD50!O$1kiic`&!6yt|yS zl;3h2ycQMl>u-JgLVDEIP(t}>>ZWZpXi31l%Zp?zjul-xd{L0{2e4kMA<*+!K4%*U zeYEjR%knM~Xf-GqvN+QN8v@o#N6ty~iV^0#h9d1KSQ2n6e#J3?UNw@T01`pJ?Mt*I zKoml_Wh#MRB(T)uEeX&UB`+GN-?A%=S`x4&*RfuzU8qxE6mG$fZ^pyeY*@cUO9CpS zHOW5b#NmQko3MgyNo=n}w0`@8xg|y5dF`G)$e@MFz?8?nes@L;OO5r-T8cjwcU%A< zb5pisS`t79t&kR0LkZ+n6Nu?Rmhs_UZg|`39yuhQ6U0_C8?Rg+Rjt7od4r`UcGB z1OUK=8uljS1YH2uO^PRieob-epIiWh!(G7T0vgt1+FHQcV6FeTQp67;bNIYe)52r= zdB4%d{JsE`(Jx&^#AblwR@cn%L!%i8y+#XO!C z^VpK>*plm5E0?s)uR>a=b&qkE51%g(()ZbEf&t*fshBd&cb7BD8_7i!^3MOqh#m%6 z%oxbFiiE<_pk+QF!2*d8eEj?iyl6OY0ra$pU0|a}nRHO;Tgz_S7cig6w?c)q&U9dz z1$KG;FvNJD?HK_}0whAl>hsITJ*G*|f(mINEedBM;#?TFE9BJqpjRc!{{f2Gg9u;V RAyEJT002ovPDHLkV1jTYhTi}H literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Furniture/chairs.rsi/meta.json b/Resources/Textures/Structures/Furniture/chairs.rsi/meta.json index 18c588b280..42085448d1 100644 --- a/Resources/Textures/Structures/Furniture/chairs.rsi/meta.json +++ b/Resources/Textures/Structures/Furniture/chairs.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/11402f6ae62facc2e8bcfa1f8ef5353b26663278", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/11402f6ae62facc2e8bcfa1f8ef5353b26663278, meat.png is CC0-1.0 by EmoGarbage404 (github) for Space Station 14", "size": { "x": 32, "y": 32 @@ -39,6 +39,10 @@ "name": "comfy-overlay", "directions": 4 }, + { + "name": "meat", + "directions": 4 + }, { "name": "office-dark", "directions": 4 diff --git a/Resources/Textures/Structures/Machines/sheetifier.rsi/base_machine.png b/Resources/Textures/Structures/Machines/sheetifier.rsi/base_machine.png new file mode 100644 index 0000000000000000000000000000000000000000..95e6702830aa6ee6fd4ec825fafab0c75cd15d9b GIT binary patch literal 939 zcmV;c162HpP)jbB}fQcF^OKX-Bnz%5M6K3OGQQ0Yb+AQ z(ha(RzV;$QB=};`1hopr=1+LkM8-)|;o8VLG%dIqk4SdAhDZ*lZG- zBWQdwX6RURGM|s*sU?y;bl|Y$`{Gq6f6ocfH~0G{qz!F$tE3DncB!_Fy(8e-+jYmd zQW*R}(_Q!)2ymb6+1YUB+=Vca-~>=+*HL?9WLJJGItD#qJ;?4l;R=Ul=UDLb7ccYo z_wL-%`14&Cl1m{y3kD#l*w8k^tiUhZXj$C`^uNO9WU2 zzDR=BH#9(RZ$Gz}l{sNH6p{&GAablIEawiZi=CPP9WT3;Ie>NqRe{6dV0&EsodMT3 z&GWfL0FB5FapQiEW>d6_ixAzO<;b7bPXtzh*fHA*G6BZsB|k<0yB0blyXNMH;C7#8 zPtlG9sKuIjA1JE;ga1`S)5qOauDCa*h>@|0xIQVgvFO}bR|Pe-Et2$ZR~dV5N&5wP zwgNUD_m3*a&pSI}5~wV7hTrw|CmHquB7w)@^?IfE9&fa3ex90wA4{p4agiez5``fF zQh;(opM+*XNkAq4zryG^lmw^>s?U~7B}pKeqxm3@33z^NQ~^X$V_koMn5t(;y+>$e*jb*xlKd$+e`oe N002ovPDHLkV1hWSrA`0< literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Machines/sheetifier.rsi/base_machine_processing.png b/Resources/Textures/Structures/Machines/sheetifier.rsi/base_machine_processing.png new file mode 100644 index 0000000000000000000000000000000000000000..667e8d39b2cc788902816d67967f14f87c53c160 GIT binary patch literal 7429 zcmb7Jc{r5o-+!hFmC&gWV(OHmltv;UMk|sm23%4}`NX|a@LoWkhXDJmh$ z%qZEH$x?PB+Zg*W%s%rzV|4wxe%JM0@Adw}{VezW+{^d#{eC{5d1QCSLT;VvIsgFV ztSpZ^000DRLVz{W;6K-(?5pCdn+_I7f&7-ObO6{&wmN>~Tv*a{Kh{@?g_fCP4Ii%m z5EJsHBg6aDCf(KD*{?hHUu_xRaHPg1HuALh$g6}pn;w7b_Cu{7tXwu@vaf&e@v*dQ z`(tO(uBZPx7#x2nRlcPnOzNp;%Ekx38AMq-Z(RQ=HQg$6^^kzU4ku9&DKrv=Q%d3O zIDeSJ33Crc^2{jxrnGP`kKBJea_$86lOrLOB`{9s>9)qtmrmsTShJu??hBEfsJ(Yp zqj}N0cZ;^xGxAK7V#2KH{Ac-TOq;)OO~Gzglz^{6 zh??N_M>C#?W&#FkVdx(d$N8by1=1*QBD@S$w0?{>Ipcg$U&GOOx_)UP3#p2@j+yUD z7*080#{Q-{9B5af2Omjt!JCY!Pfgr#TN@#|swc!FZW8zVb-oPn=u9yDz>Nndr{PlG z7M8F2wanztEjAkf4cBCm)UIkamUE!f6MXS>mldCHa{^I;@ST6@%0CkupbvbzeMVm1 z$o?85iQFLfSdCcJTg>oT3tyWS^EdjkPIM_WG8nr&|_KKHT8Gg~))& zZkdaEoao+!SDVcMUtYlx>jlVsvj_N@)KNGs&Q}0qFTf#nhIea4yeokSkv>~cN;(}I zUGM_e3gqWCMTwrD$F??6LtQ+=bLeuRMNcDB$hg8CJJ@3gR4-dtXp5k8xX%UIj=76i zwrq0^D|W7#ngtsOSW8zc;I=5r?$2mgG+3a@0Q@ie``>s%D#tmp3ABPH*T*j-Sa-;z z8!+6k+d!gFibW6PS`{D!mr-dD)X@C)t%v7bC{oT$EyMFEwmCju(x`sS#PB`R<;Hqr z!-SFnboW9LorZ*eEcRK5b;oiU++;WPe=;|aS^*6Av-P2cfyfkDU4D;s0_~+?@vHoq ztF zrm$ z8^Vk+AsFct-^isTIY!zieIlGG|J@#jtJRBZ2}Meql14j*?xx`v*tCMVWTi~i86Oq3 zty@2*QAK8V!g+sW8g>lx$FnCz&!)uv510v?&bMM94SoW8?PSRVX5=v()B>JXQbN%? z0C>K*u)(pM#r*i$r_5OPyo-x0z{W>sT}bJDVut2su)tXk44CQbcR+#fh|sTkXOA5t zdVabSg#Q{_*y5G{DPO)(@wy4k1{#HACK13c432mw%Qj$?0PaonKV?#jo<&7P*8->y zzJD)o9U!fpc;DXBbAh?Eq=G+GgEoEN{cJq%J#UOYhQxh%gAjxX>agoC7c4E=aPpzf z`8(X-zt^0DCp0Zi1hSrNzIW46i@ zqP`;$WM+bPpRT8pQpdmuJ-4>>E_LYBw}%|eBzA&%-T7TbcWA$D(&4{Yhzf@%3OD#h z!s=-3@MrEjK?GMXKO7i4a?OvZ28BYSW@*y%PCCiPXw_M4SjH&hUeC*|3l?v-iP$mi zj?v#dHlLk{7%UO`Ps)RnbJV9WXl(ptzA1dQgZf({I+pg2b#nZN0^_$Gi?%)Bqnc1Z zz`q<({b$_p_L6>r0~qPpHnUn}3%gunRd!*Fk73iB4*xU4usV+Ox5`T3g3E02VFm5c zy#8$^xj896Cfw2AEHoL);Ic|*w9aTesiv`S@(E5x*+?+JY8Ab6&#af1{{1Gc>66+HWx7%#fM<6*Z*?ktnu-Z>k75a$%Fph7rSTs$z{rEYZFfAb-l z&?_=`-82q-0UkNq18klNS-LT^b@t`C7kOXhEeU3VHa4jfayswzhrYwx#z#)Lo>;z@ z;A_6fsv{E7ADKVG0o;`1*{A;Lnbr2QTh(r)4}TR;U-&GLYOu9~&#H;nXdm7Oj{w8J zm4C18E~Msup|f}PF1ggf-g|}4ujk>zJ5xCuD)SmNVaec2KeS~>3^6&JaVFh*Ne2ea zT)tf|d|Mw7#4xb|lTcei^ce!_G8xf{_nv1sZqijX@0o9*H_zQg>F6jd9Yu8o#tJ7XUhobvV5a@I4-=#kDJhrD!Z#C!DGY^MX^~i^m}JRW zEJwJdr6=h z<&i{n9|OFBiNI3Y@|H#iA%I3%E;TNu`cnL{6W)LnRVfKt@MVoGrRKl21k0U}B$8z2_sPV~Qp3{ZgZUMww=MKt*nc zd8EWTHujdgu&8S9{V0YLCh^J|RZ$IC5_k%WR}Kfr=D#rC$eDuj%An|E&Qt-+RJEa` z{NYGpxTBp}MGHgbkAtfUMcmf3O19C?C8otog@@eM*;rE-m)nJf%n1w&*OkvDw3Bv*V)WI;mED0_aQND7(s4Y=) zs6`M<38rUntK;G%@sJ{Ce(JwtdNu^uD2Zv8p--Bl%VCPpn{iRa-Ep0f#9dmSLgoBD zp`qsGcg~}B_NwNeN~FBNCbGuLd|^AzDP#XKJTOXi0epvr<;><{CVkr4%vcc2!!%x` zny2$@_F=N>4JDZ`tJ8_hZr9$UZl=_sHv8PTliFyAe2M=+9U0F1!$TkU0i16=u)HmD|i3p+3 zHOtk_IPJ@ZsogTN9UN7Y+vW$ZqkS4$nM0NP@t0bj4#lxs?W-wo;ERGMld4J_nFu#X zO?^BO(ED~>Nx$G@6}6NO`Op{rP8g#l8!5fb0G5oo%{`l|`Yyy8CATXVcFtbS?i^x# z!)wjUQ0=M8Rh+H!H-O>2p{O<-sm12UmhDAhaP4b^L15mVpxvS zBmB(E_;2Mb@vsh@F-T%fW6dtm9g6-bPpivu!#ANh9orOwWGwhHsh%r1C&+sNUz(UT^r;LaG|SW->>-3*c4 zp<&ncxL3hN5lA)Dvojjewz}M*-_J+scjDJ_AHUy_#-v-!-96$N5*t3*|5a32=TRlN_V zfl2LtzUNwid8F)Q?GkLFG0a_NFdN~^~K^hca_ny`R=NH_w!LpZyPsg68iHh zz9X9S#OV2JpY#A4A=u=^d~4Vl7M$!>*_d%@M!D0H0hhkC`A^ zDQuyvoxsQZf_0KVLbk4Dxg^YD)p2ibrb|!<@~#+3t)VU$|13(TYCj>LFK6x`fjo5* z*g3Kc?~*U~ttGhud%3SfA6Wd@Cqb>nBbkzlRFTcv^Lzg^Iu|EB$mzuGRoWxClC)YM zwkpg~Rq~qGU49K*3M&npF^oTD-Dssc;R~d$5cOu;1}|EvH(H zKh&-?m6Wmp!IrCj*n7K!}BlEtzK8Aw7!_^N zB%n???kM*6W;%DhIce_~EM_5$P&}i=@+5HPvrLrK zHTU8zrlsh7S(=l*U^(3sLvnTp5P3nb&48rxxp3EoNA`_39hZW;U?QsAN0k9DdgC|3 z?W*;|oVlF#A^xRW@+yF9FcNE#b9BD-C0^$iTBm>>$O9*Qad1wlwsS1fPm_^#&S1!? z-2Dq^0C=MWKAlez9pVE{MeS)uscsN3Imz46B3FQbnoo5oH-C6;E6Fs-$RBY{!LkJQ zLFPEJn5x=VV0Yl9R&jrM-FxeQeds!lCr=7yOilCQ*_pkeN92=;HS_$khnvc4t=G-n zpSX{+&I;ijSx}smnTE7x%{oO6i)mT(8#nK%sE_^l3a!w!lLV7-_C)m)Y5YciyGj0zeRFyCGtM7SQ05)EM zLUMe7lsPUX+hEbzkGqHJm&@)#u`j7@K&y}@jd1lT(c*r$f~QVCwD#nGR02h%N-1PA z-&>Pmqa@iiwJuV5s3g&D_h%t8BhYrdgw5{)#i=@7N%|q`O>~ zV9tP0F^ZvCJ#r9B6kBTlEQqHFK%3Bq*|f^QM(6L`l9TX@7p`cks!l`}c*n;lpn^Sq z?>^Vx(6wju!Lp;FvmNcJP`UNwmV*R-eBW=@hV`^G+K$pw&m^ZMz7rej}KS128wg5i3p}mQnHUmDUf@6o0n|>X_~4=skoK z%==%e4$Bx=D~Svp#^7@am4vCVbmYuU_pu~rX+QKy2R@EHdsOL(qr74UByOsBaIez! z`S`$%Ur}oY9arLo0D7_H73s24QN+5rzIs-l14PhP~@DI#QBdkpy_t$g=D6z2(gDIW}Kkn6?>JS_oI7s1t5jMSHfgt zN5)>sVR|`PWbS(~OOUmzku2Ed7+2Bf>ca7r^{dsQDU(3Dq{y;-e`>}5U{nHl@s}v8 z-mlbBNVjAxK>_q_NR+-rdV>;nWhcW2uI=4L;FBIkrm)XOEJ44%j5br@gZyMV5feDF zUa*lZ!ca=)K)Mq}C-C?*28Dt+hDaAjoe`mL`et30{4|U2ka5dkO7vIGHpJ;x+XAuL zNi-I;N5L0P9zk@4_Ct3?pqQr0Ew_c(B2?KzH#{oIs)MD?Wma(|q88pkO%FVO^o^*< zF$GM6f$Jv26$SH*l>=9%iQ1pLm?C++em79pv>f@Wu=GoA5iofOPHUm3yVj>a1^tFQ z;9f8I)xV({pZ-)7Rlkktbo+fezxVsdo)vRtMa3Zg%Uf9y8b4L=vRZB*kFb&Ukr*q> z44aw8wg2~1@EftMe}g)aoM`Gb1Yd2t;*ZyxUqlT%W`O$)M<5!cv#Vt88JhF-zD$Qt zKTC|g+f*X801E77&L2#Uk<&c``ugWK2vF{@_= zF++TD_MM0sIo(_sOWJvyLhh1#Ylj8-frcQzlkkNGj;saj(1g;n!GLtPRD2JqAqwpc zD?bXd)l%~b*e-Bv#5L$vFrg$OARljs1-!=C>BSIN&8|zzLZ1v?srTOr;vMBBnBw$D(?Jcn&coo!uB+KD6`=BsW-Aibf}a?44@6_{o;g69&JraxHF=J~w3vLnr-tEYV{2Z8Z*4*q)Dd$%nl5!>qV`u!@ zAJNkG!?5q$Ms}@1HQPR|6r>M-{7L?W6R>b5eq<47a^EbHWNo(+7*jsGS0OiDkUfjD z7knIm$S&Uhw=|!Cd2?kpm{#Fk$q3`?8jv%MJ18I_x*#={raUR**d~;L;PaIym3i{c zufZYMbI|4l(RHlM-kR9~k~HNoS1}l@>l|kqMf4~HDK;wp*7}ZaUI>h#9-0Ad(A0Zt zW1B4CUgWN@@oh+&iN_X%@1cy`U9-3&7}km#CV zcJ9eVK7Kv~N|y)CTG8|J={sPiR)`6cLDugTJZa9u3g}5A*oLcuG$lbj9dvL&KMVdv zyd2PJK5(n3Pa{vxu9Mq&j#Amz%|UD^<>p53jcz_cAQ6^b2<4%YV>Sq1Za&YG%hW3T zk267*ul)YMITOsFMK34Ep~pEb(M$V~hofU@C+Y19qu>s0(}WRS1>kkyr5j%v85lN` z9>D;;m7Sw$S*=bd2$-1JWm?00zi6O@HX>bpHlSlTh+=^staW3y k4};T&OX0361;zyJUM literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Machines/sheetifier.rsi/buttons_on.png b/Resources/Textures/Structures/Machines/sheetifier.rsi/buttons_on.png new file mode 100644 index 0000000000000000000000000000000000000000..3b4fe8b151be8160741166532213f793ca429912 GIT binary patch literal 201 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5C|K?3 z;uumf=k0}sybT5dt%-dPA{rDYsBB=|x3AcMx%kTU&5SA@Z3&Dz{c~2VJaAF%iEZ(x z|3#q_D_H~_7#Ly1f&GlH6AiccC8%}GfBH?mdKI;Vst0IcRi)Bpeg literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Machines/sheetifier.rsi/meta.json b/Resources/Textures/Structures/Machines/sheetifier.rsi/meta.json new file mode 100644 index 0000000000..d812ec569a --- /dev/null +++ b/Resources/Textures/Structures/Machines/sheetifier.rsi/meta.json @@ -0,0 +1,88 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4b2a8aebe52199bcc60ee11d80482dcd61bf605c", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "base_machine" + }, + { + "name": "base_machine_processing", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "buttons_on" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Structures/Walls/meat.rsi/full.png b/Resources/Textures/Structures/Walls/meat.rsi/full.png new file mode 100644 index 0000000000000000000000000000000000000000..97d47de2c1c46f2edc10181ea22b0ee1c27bc77c GIT binary patch literal 690 zcmV;j0!{siP)Px%Y)M2xR9J<@S4&RAFccghMGX?7Y&MWpVPA9NvPEC zZ_oSm>hQ5gx-!i(IDSHKeO*CfWvr9x1a)^p&Mmj z8hAGk=;i_aGG%;yX8LNPjNEa*OnAJxO`q!g@#ePB;W>FKmtky_8;G(ZQJF!Iug?8k zvsC9!O)c9B^z7WTlAl$XEpd$(=MGSu$n2G8|;w-ezcnh9Ya08X{6!j}XQ0g%}%kNn0J{jH*M zx-(>R@%vqJg)RE{ep?WP$BeazOHP&ByQu;6X(18)fc6_RCb@qtWQ89BsNKNY9t&xxtkJa3{H74mN)t z%??1dfkgwUU#5H(M2>XBr32pu^_<^pdu7-Me2=HX+M-#@Dr&h=10z0)S)ip8&Ts%+ zG@bAG@#^7iKHuNxH$VYps8KCD1#6TMZ^3!GQxsL8Eplz=bMlP23Dtg(k`&xm|NZm) Y8~Q&}z{atvtN;K207*qoM6N<$g6>O1ivR!s literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Walls/meat.rsi/meat0.png b/Resources/Textures/Structures/Walls/meat.rsi/meat0.png new file mode 100644 index 0000000000000000000000000000000000000000..be7fba07f257a110e162e18f6cad5d43cf288d25 GIT binary patch literal 1000 zcmV>P)Px&qDe$SRCt`-TT71GKoEVCfsq{v4YT0}$t-fDxk8SUE96L7klcU`Af&+pqs#)8 zc`jEQi7v+#-p0^v&rsF%c~#whz{q&}{N-=X^FQDJJmfq-$$8iduf;P~$2|aGF)cAK zEF* zCN5xGRADSb`dJ`$)nA z16e?-aiN1+1i1Yg&Czv4XLz%@9JpA32(MRnF)f?9_31E3ODh*{79gw2yj{kvA}0#m z6kwIC+9Gt369Fy?NOAO3;W7lLzZGs4z-=l^K&#W^(bLOCb`WI2rDwfn3gDcto1ZeLnPKA|i45^C;g$vTzCBam zsC59~U;&m;?cQJ6@p-)sHYQvwKxi&2pj24w7icrnA*-}PGGge=EdZ`(jX%h<@-wHu`t-)AO}EMeV&Vw z1qNA)zOHbT;3pV$Zyq?mFQ8j!I$-wU$L`nv|Gt3USk>8r=e!Z3BgFj!t5Vc+o(Q1; zp#S{ekhMby7tkz{W58uRz2}gF5DKswC_tK3db&ag7vR1D?=R|k`JC!G-hvPc0AMyy z06PHQ-8)0qPJ`-F+w-VRh!_Ca2dDZPtzHPD0D*3-rW&nY2%!Lr18^`D!S$;(9@Y>- z0al7*O581@OSc!OLIgqJEacbOto2>4oc6?8?urO;8{G3e5qtpF Wv{O?|VyxT%0000Px&B}qgcq=i(yQgX)3&MV_7edL3-DsR&H=nOZ_K}-xCLm>FW)sh z&mTn|Ah7_zPi)4>M}@=U7BB>B8PXOF8Vk4=(IU`Vz*Kni0wk@a0pRP0&q?d~Z-0Iy z-$M%CyaoIhAnJ!A)6*#tZUI&Vc40yU5Q1a5yKZ9=BrFlSm%R6PNrVY7l%sq3eDsPg z1t9`>>8V%flu~!}f+huF7GO(Ny2hu$Kw2Y20Ixu4i<)ws?q@)V0Gf;vjI7IHYv!7~O_NI@ivZr-mMOqQ9>{C~ zW4S)VIsnKdz}QX?z(XF$xG!Ld%lwyih7bs35MXGl8|X#>h9n5cWC30#XhR_IfNKH3 zKlSB-B@$%03tbHHo<0kCU?L}IO&{Qi1d}>J;C9xJ1)&1;%j0!t3Je{HEQu_M(AX1Z z34el60raU3ErPBO%5^Nr7zMhp%Vri4itfz=*Y^cdYJ;ig3n;e7?Yclum*|6$78C*i z{VK8+L06iig`g1t7+)dg${u-gQV7Yqv#DZphlhJ#Kroge=8PB=Q$U-yePbl|feIQ6 z(B}vwb?&Yl^Xw#1Sin8S(_A}A6c#YFd1Buh%K-`jHr36%y{z!zogmP4c3vi!3p4_F ziOv+K$|wXVSv;i>0O*FnDg6M205%5@=n{J_yaJl$uznx3{_p?*002ovPDHLkV1l#k BgTnv- literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Walls/meat.rsi/meat2.png b/Resources/Textures/Structures/Walls/meat.rsi/meat2.png new file mode 100644 index 0000000000000000000000000000000000000000..be7fba07f257a110e162e18f6cad5d43cf288d25 GIT binary patch literal 1000 zcmV>P)Px&qDe$SRCt`-TT71GKoEVCfsq{v4YT0}$t-fDxk8SUE96L7klcU`Af&+pqs#)8 zc`jEQi7v+#-p0^v&rsF%c~#whz{q&}{N-=X^FQDJJmfq-$$8iduf;P~$2|aGF)cAK zEF* zCN5xGRADSb`dJ`$)nA z16e?-aiN1+1i1Yg&Czv4XLz%@9JpA32(MRnF)f?9_31E3ODh*{79gw2yj{kvA}0#m z6kwIC+9Gt369Fy?NOAO3;W7lLzZGs4z-=l^K&#W^(bLOCb`WI2rDwfn3gDcto1ZeLnPKA|i45^C;g$vTzCBam zsC59~U;&m;?cQJ6@p-)sHYQvwKxi&2pj24w7icrnA*-}PGGge=EdZ`(jX%h<@-wHu`t-)AO}EMeV&Vw z1qNA)zOHbT;3pV$Zyq?mFQ8j!I$-wU$L`nv|Gt3USk>8r=e!Z3BgFj!t5Vc+o(Q1; zp#S{ekhMby7tkz{W58uRz2}gF5DKswC_tK3db&ag7vR1D?=R|k`JC!G-hvPc0AMyy z06PHQ-8)0qPJ`-F+w-VRh!_Ca2dDZPtzHPD0D*3-rW&nY2%!Lr18^`D!S$;(9@Y>- z0al7*O581@OSc!OLIgqJEacbOto2>4oc6?8?urO;8{G3e5qtpF Wv{O?|VyxT%0000Px&B}qgcq=i(yQgX)3&MV_7edL3-DsR&H=nOZ_K}-xCLm>FW)sh z&mTn|Ah7_zPi)4>M}@=U7BB>B8PXOF8Vk4=(IU`Vz*Kni0wk@a0pRP0&q?d~Z-0Iy z-$M%CyaoIhAnJ!A)6*#tZUI&Vc40yU5Q1a5yKZ9=BrFlSm%R6PNrVY7l%sq3eDsPg z1t9`>>8V%flu~!}f+huF7GO(Ny2hu$Kw2Y20Ixu4i<)ws?q@)V0Gf;vjI7IHYv!7~O_NI@ivZr-mMOqQ9>{C~ zW4S)VIsnKdz}QX?z(XF$xG!Ld%lwyih7bs35MXGl8|X#>h9n5cWC30#XhR_IfNKH3 zKlSB-B@$%03tbHHo<0kCU?L}IO&{Qi1d}>J;C9xJ1)&1;%j0!t3Je{HEQu_M(AX1Z z34el60raU3ErPBO%5^Nr7zMhp%Vri4itfz=*Y^cdYJ;ig3n;e7?Yclum*|6$78C*i z{VK8+L06iig`g1t7+)dg${u-gQV7Yqv#DZphlhJ#Kroge=8PB=Q$U-yePbl|feIQ6 z(B}vwb?&Yl^Xw#1Sin8S(_A}A6c#YFd1Buh%K-`jHr36%y{z!zogmP4c3vi!3p4_F ziOv+K$|wXVSv;i>0O*FnDg6M205%5@=n{J_yaJl$uznx3{_p?*002ovPDHLkV1l#k BgTnv- literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Walls/meat.rsi/meat4.png b/Resources/Textures/Structures/Walls/meat.rsi/meat4.png new file mode 100644 index 0000000000000000000000000000000000000000..234be652b98b1ffe90028bb4451c6769ab666c07 GIT binary patch literal 865 zcmV-n1D^beP)Px&8%ab#RCt{2TU&11Kn$GJ4_F0?+CRQQ(T^UfSLktig&wINMQ@;=xF}Ewk%RQZ zpv9%Rs*)wWgwp{6#FCt7MqF~1yShVVe17}kX}4Iv`1@aff4?jF|8GjZY=!-*Nj~2{ zJ|ySp#{(e*08$Zli*+KxcC$QRV=Y7&0f5U$;2;sK;qzBth!e>M?a+bpLOXN-Mqy5$ z?GQ$Q?PiHXe^k#|ljaC91bBE8S;_&P2@nVr0f+vWkl!uV*smHUPU8{@AtE3b`uyB> zvvi4s5D~ziEIs}7_>B*N{b~$v%@y8!5(Ls@r#V3{gb_e9I-K}TTj42}=j8wiAp`)@ zGI-5A5JCXy0SN8TO_oRt6wRdp;LE#DPug)Bv$+ztUp4sA|H8LFKa2071g;Sv%?l^* zJ+|kK#hnY6yWovX?deA$4_qk;%FqYmRD!D}L14Q3TLY#7 z5P8|iq#+=C{1M<{gr=Twl=4R~6`&ouGeItbTc=8 z@6Sn(hkZMANzK>tLWC$N&HPznwtQ^ zkp~PSfU-L$yj!f3(l?r*5qy476J}*lBg4g!LPa1C7zvQ`|61243UNYl4xm!UcXDya z*0}e!x97qn0<;>h&HMl53u?f`2TXN=wag!dJYbjvbM5aO`6%VkZDB-41|5rrt2gJO zi4bCWye3|~09DuKf&Bi0xwwh<1#05I0JU#`P|F^N5r7~?coiEZFBeqCPx%sYygZRCt{2TT5=+Kn#6JtUxLd*xl#`ffqeeu8`y8YF*?C-pD~07Gw+QLZD33 zlQfOQc?9gYvS<7mavmRtlyn0!o_;*O|Gc|D8Eg6ucI+d({P}$|<^LB`zB~uk6684`*XK1XA;Jg3bU< zZApfeyv^&C4d2*H3{bWefK01bu{ zLNI`di+8}JS{eYJAAY@0`To>;ekv}W0apj){Ij~KT+j920fhmP9FgrDU=1G5|9mG< z7@+%rY`Cq&c62xU-8d$N59|1=;l33@b>?~hGq{C-HrBSao4y;{U~ITDz?Qnw?*8gk zpB!*;fb6!Wz3%nvc{W_LKq}ws_YuwlZXsa%e3tf6QlZN#KI`bF(jgOW+hF5cYrvol z2$2cgMNpsxP%ei@aKP*$CFNSK-Ta}9t>Chz${42J%?IA?`12a27@31yd$G#xK z834#w4vPpzFBcsNR`bp?p;8IaDYbc$}x-s>;n?gTK7f>4PchdbOzWasl3<5dujol z0lG0NuV34@Px&8%ab#RCt{2TU&11Kn$GJ4_F0?+CRQQ(T^UfSLktig&wINMQ@;=xF}Ewk%RQZ zpv9%Rs*)wWgwp{6#FCt7MqF~1yShVVe17}kX}4Iv`1@aff4?jF|8GjZY=!-*Nj~2{ zJ|ySp#{(e*08$Zli*+KxcC$QRV=Y7&0f5U$;2;sK;qzBth!e>M?a+bpLOXN-Mqy5$ z?GQ$Q?PiHXe^k#|ljaC91bBE8S;_&P2@nVr0f+vWkl!uV*smHUPU8{@AtE3b`uyB> zvvi4s5D~ziEIs}7_>B*N{b~$v%@y8!5(Ls@r#V3{gb_e9I-K}TTj42}=j8wiAp`)@ zGI-5A5JCXy0SN8TO_oRt6wRdp;LE#DPug)Bv$+ztUp4sA|H8LFKa2071g;Sv%?l^* zJ+|kK#hnY6yWovX?deA$4_qk;%FqYmRD!D}L14Q3TLY#7 z5P8|iq#+=C{1M<{gr=Twl=4R~6`&ouGeItbTc=8 z@6Sn(hkZMANzK>tLWC$N&HPznwtQ^ zkp~PSfU-L$yj!f3(l?r*5qy476J}*lBg4g!LPa1C7zvQ`|61243UNYl4xm!UcXDya z*0}e!x97qn0<;>h&HMl53u?f`2TXN=wag!dJYbjvbM5aO`6%VkZDB-41|5rrt2gJO zi4bCWye3|~09DuKf&Bi0xwwh<1#05I0JU#`P|F^N5r7~?coiEZFBeqCG9pG8kQbjMr11y1D9hPC$P!c)I$ztaD0e0s!rIS^59~ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Walls/meat.rsi/meta.json b/Resources/Textures/Structures/Walls/meat.rsi/meta.json new file mode 100644 index 0000000000..6d0a34fbf3 --- /dev/null +++ b/Resources/Textures/Structures/Walls/meat.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC0-1.0", "copyright": "Created by EmoGarbage404 (github) for Space Station 14", "states": [{"name": "meat0", "directions": 4}, {"name": "meat1", "directions": 4}, {"name": "meat2", "directions": 4}, {"name": "meat3", "directions": 4}, {"name": "meat4", "directions": 4}, {"name": "meat5", "directions": 4}, {"name": "meat6", "directions": 4}, {"name": "meat7", "directions": 4}, {"name": "full"}]} \ No newline at end of file From c565c8cbe01d206adc5c447a7f3fcb14c92f7a8a Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 14 Jun 2023 20:50:30 -0400 Subject: [PATCH 205/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 9cac4c1868..d66aafab99 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,10 +1,4 @@ Entries: -- author: Menshin - changes: - - {message: Magboots sprite now updates on toggling. The toggling verb works properly - too., type: Fix} - id: 3488 - time: '2023-04-22T10:42:37.0000000+00:00' - author: jick changes: - {message: Fixed sleepwalking after being stunned, type: Fix} @@ -2916,3 +2910,10 @@ Entries: type: Fix} id: 3987 time: '2023-06-14T01:32:03.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: 'Added the sheetmeister, a machine that presses raw meat into construction + sheets.', type: Add} + - {message: Added sheetmeister to meat manipulation technology., type: Add} + id: 3988 + time: '2023-06-15T00:49:24.0000000+00:00' From 0b1dd2c29ebf090eb070974174a749ceeb69c80f Mon Sep 17 00:00:00 2001 From: Kit0vras <123590995+Kit0vras@users.noreply.github.com> Date: Thu, 15 Jun 2023 04:24:28 +0300 Subject: [PATCH 206/474] Corpses spawners (#16615) --- .../Entities/Markers/Spawners/corpses.yml | 103 ++++++++++++++++++ 1 file changed, 103 insertions(+) create mode 100644 Resources/Prototypes/Entities/Markers/Spawners/corpses.yml diff --git a/Resources/Prototypes/Entities/Markers/Spawners/corpses.yml b/Resources/Prototypes/Entities/Markers/Spawners/corpses.yml new file mode 100644 index 0000000000..5bd5f76c4a --- /dev/null +++ b/Resources/Prototypes/Entities/Markers/Spawners/corpses.yml @@ -0,0 +1,103 @@ +- type: entity + name: Human Corpse Spawner + id: SalvageHumanCorpseSpawner + parent: MarkerBase + components: + - type: Sprite + sprite: Markers/jobs.rsi + layers: + - state: green + - type: ConditionalSpawner + prototypes: + - SalvageHumanCorpse + +- type: entity + name: Random Service Corpse Spawner + id: RandomServiceCorpseSpawner + parent: SalvageHumanCorpseSpawner + components: + - type: Sprite + layers: + - state: botanist + - state: green + - type: ConditionalSpawner + prototypes: + - MobRandomServiceCorpse + +- type: entity + name: Random Engineer Corpse Spawner + id: RandomEngineerCorpseSpawner + parent: SalvageHumanCorpseSpawner + components: + - type: Sprite + layers: + - state: engineer + - state: green + - type: ConditionalSpawner + prototypes: + - MobRandomEngineerCorpse + +- type: entity + name: Random Cargo Corpse Spawner + id: RandomCargoCorpseSpawner + parent: SalvageHumanCorpseSpawner + components: + - type: Sprite + layers: + - state: cargo_tech + - state: green + - type: ConditionalSpawner + prototypes: + - MobRandomCargoCorpse + +- type: entity + name: Random Medic Corpse Spawner + id: RandomMedicCorpseSpawner + parent: SalvageHumanCorpseSpawner + components: + - type: Sprite + layers: + - state: doctor + - state: green + - type: ConditionalSpawner + prototypes: + - MobRandomMedicCorpse + +- type: entity + name: Random Science Corpse Spawner + id: RandomScienceCorpseSpawner + parent: SalvageHumanCorpseSpawner + components: + - type: Sprite + layers: + - state: scientist + - state: green + - type: ConditionalSpawner + prototypes: + - MobRandomScienceCorpse + +- type: entity + name: Random Security Corpse Spawner + id: RandomSecurityCorpseSpawner + parent: SalvageHumanCorpseSpawner + components: + - type: Sprite + layers: + - state: security_officer + - state: green + - type: ConditionalSpawner + prototypes: + - MobRandomSecurityCorpse + +- type: entity + name: Random Command Corpse Spawner + id: RandomCommandCorpseSpawner + parent: SalvageHumanCorpseSpawner + components: + - type: Sprite + layers: + - state: captain + - state: green + - type: ConditionalSpawner + prototypes: + - MobRandomCommandCorpse From 35c838c1cf50b69d25a2509dac6f4ca25750dd96 Mon Sep 17 00:00:00 2001 From: Dynexust <47256242+Dynexust@users.noreply.github.com> Date: Thu, 15 Jun 2023 04:26:27 +0300 Subject: [PATCH 207/474] Added a new cryogenics chemical - Doxarubixadone! (#16568) --- .../Locale/en-US/reagents/meta/medicine.ftl | 3 +++ Resources/Prototypes/Reagents/medicine.yml | 19 +++++++++++++++++++ .../Prototypes/Recipes/Reactions/medicine.yml | 10 ++++++++++ 3 files changed, 32 insertions(+) diff --git a/Resources/Locale/en-US/reagents/meta/medicine.ftl b/Resources/Locale/en-US/reagents/meta/medicine.ftl index d89110d3d8..44d5a8d9f4 100644 --- a/Resources/Locale/en-US/reagents/meta/medicine.ftl +++ b/Resources/Locale/en-US/reagents/meta/medicine.ftl @@ -16,6 +16,9 @@ reagent-desc-bicaridine = An analgesic which is highly effective at treating bru reagent-name-cryoxadone = cryoxadone reagent-desc-cryoxadone = Required for the proper function of cryogenics. Heals all standard types of damage very swiftly, but only works in temperatures under 170K (usually this means cryo cells). Can also slowly heal clone damage, such as caused by cloning or Slimes. +reagent-name-doxarubixadone = doxarubixadone +reagent-desc-doxarubixadone = A cryogenics chemical. Heals certain types of cellular damage done by Slimes and improper use of other chemicals. + reagent-name-dermaline = dermaline reagent-desc-dermaline = An advanced chemical that is more effective at treating burn damage than Kelotane. diff --git a/Resources/Prototypes/Reagents/medicine.yml b/Resources/Prototypes/Reagents/medicine.yml index b3846e02bf..9a9cecb6c3 100644 --- a/Resources/Prototypes/Reagents/medicine.yml +++ b/Resources/Prototypes/Reagents/medicine.yml @@ -196,6 +196,25 @@ Burn: -6 Toxin: -4 +- type: reagent + id: Doxarubixadone + name: reagent-name-doxarubixadone + group: Medicine + desc: reagent-desc-doxarubixadone + physicalDesc: reagent-physical-desc-bubbling + flavor: medicine + color: "#32cd32" + metabolisms: + Medicine: + effects: + - !type:HealthChange + conditions: + - !type:Temperature + max: 150.0 + damage: + types: + Cellular: -2 + - type: reagent id: Dermaline name: reagent-name-dermaline diff --git a/Resources/Prototypes/Recipes/Reactions/medicine.yml b/Resources/Prototypes/Recipes/Reactions/medicine.yml index cdc4e2611d..08036acd41 100644 --- a/Resources/Prototypes/Recipes/Reactions/medicine.yml +++ b/Resources/Prototypes/Recipes/Reactions/medicine.yml @@ -66,6 +66,16 @@ products: Cryoxadone: 3 +- type: reaction + id: Doxarubixadone + reactants: + Cryoxadone: + amount: 1 + UnstableMutagen: + amount: 1 + products: + Doxarubixadone: 2 + - type: reaction id: Epinephrine reactants: From 43ea9d23295e9d494249b227f944c237c511344c Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 14 Jun 2023 21:27:32 -0400 Subject: [PATCH 208/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index d66aafab99..27c9700ca3 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: jick - changes: - - {message: Fixed sleepwalking after being stunned, type: Fix} - id: 3489 - time: '2023-04-22T11:06:45.0000000+00:00' - author: lapatison changes: - {message: 'Boxing equipment crates, empty boxes crates, and medical body bag crates @@ -2917,3 +2912,9 @@ Entries: - {message: Added sheetmeister to meat manipulation technology., type: Add} id: 3988 time: '2023-06-15T00:49:24.0000000+00:00' +- author: Dynexust + changes: + - {message: 'Interdyne Pharmaceutics has pushed a new chemical on the market, Doxarubixadone, + which cryogenically heals cellular damage.', type: Add} + id: 3989 + time: '2023-06-15T01:26:28.0000000+00:00' From 29297970e4c0c501ebaf81067500b1fa4218b0c0 Mon Sep 17 00:00:00 2001 From: Alex Nordlund Date: Thu, 15 Jun 2023 03:31:14 +0200 Subject: [PATCH 209/474] Connect to the closest ExtensionCable instead of the first (#17271) --- .../Tests/Power/PowerTest.cs | 33 +++++++++++++------ .../EntitySystems/ExtensionCableSystem.cs | 33 +++++++++++++++---- 2 files changed, 49 insertions(+), 17 deletions(-) diff --git a/Content.IntegrationTests/Tests/Power/PowerTest.cs b/Content.IntegrationTests/Tests/Power/PowerTest.cs index 569e279ef4..391ac2bae8 100644 --- a/Content.IntegrationTests/Tests/Power/PowerTest.cs +++ b/Content.IntegrationTests/Tests/Power/PowerTest.cs @@ -484,7 +484,7 @@ await server.WaitAssertion(() => supplier.MaxSupply = draw/2; supplier.SupplyRampRate = rampRate; supplier.SupplyRampTolerance = rampTol; - + battery.MaxCharge = 100_000; battery.CurrentCharge = 100_000; netBattery.MaxSupply = draw/2; @@ -817,7 +817,7 @@ await server.WaitAssertion(() => /// /// Checks that if there is insufficient supply to meet demand, generators will run at full power instead of - /// having generators and batteries sharing the load. + /// having generators and batteries sharing the load. /// [Test] public async Task TestSupplyPrioritized() @@ -1189,28 +1189,37 @@ public async Task ApcNetTest() var extensionCableSystem = entityManager.EntitySysManager.GetEntitySystem(); PowerNetworkBatteryComponent apcNetBattery = default!; ApcPowerReceiverComponent receiver = default!; + ApcPowerReceiverComponent unpoweredReceiver = default!; await server.WaitAssertion(() => { var map = mapManager.CreateMap(); var grid = mapManager.CreateGrid(map); + const int range = 5; + // Power only works when anchored - for (var i = 0; i < 3; i++) + for (var i = 0; i < range; i++) { grid.SetTile(new Vector2i(0, i), new Tile(1)); } var apcEnt = entityManager.SpawnEntity("ApcDummy", grid.ToCoordinates(0, 0)); var apcExtensionEnt = entityManager.SpawnEntity("CableApcExtension", grid.ToCoordinates(0, 0)); - var powerReceiverEnt = entityManager.SpawnEntity("ApcPowerReceiverDummy", grid.ToCoordinates(0, 2)); + // Create a powered receiver in range (range is 0 indexed) + var powerReceiverEnt = entityManager.SpawnEntity("ApcPowerReceiverDummy", grid.ToCoordinates(0, range - 1)); receiver = entityManager.GetComponent(powerReceiverEnt); + + // Create an unpowered receiver outside range + var unpoweredReceiverEnt = entityManager.SpawnEntity("ApcPowerReceiverDummy", grid.ToCoordinates(0, range)); + unpoweredReceiver = entityManager.GetComponent(unpoweredReceiverEnt); + var battery = entityManager.GetComponent(apcEnt); apcNetBattery = entityManager.GetComponent(apcEnt); - extensionCableSystem.SetProviderTransferRange(apcExtensionEnt, 5); - extensionCableSystem.SetReceiverReceptionRange(powerReceiverEnt, 5); + extensionCableSystem.SetProviderTransferRange(apcExtensionEnt, range); + extensionCableSystem.SetReceiverReceptionRange(powerReceiverEnt, range); battery.MaxCharge = 10000; //arbitrary nonzero amount of charge battery.CurrentCharge = battery.MaxCharge; //fill battery @@ -1220,13 +1229,17 @@ await server.WaitAssertion(() => server.RunTicks(1); //let run a tick for ApcNet to process power - await server.WaitAssertion(() => - { - Assert.That(receiver.Powered); - Assert.That(apcNetBattery.CurrentSupply, Is.EqualTo(1).Within(0.1)); + await server.WaitAssertion(() => { + Assert.Multiple(() => + { + Assert.That(receiver.Powered, "Receiver in range should be powered"); + Assert.That(!unpoweredReceiver.Powered, "Out of range receiver should not be powered"); + Assert.That(apcNetBattery.CurrentSupply, Is.EqualTo(1).Within(0.1)); + }); }); await pairTracker.CleanReturnAsync(); } + } } diff --git a/Content.Server/Power/EntitySystems/ExtensionCableSystem.cs b/Content.Server/Power/EntitySystems/ExtensionCableSystem.cs index 23bad50dea..143192a811 100644 --- a/Content.Server/Power/EntitySystems/ExtensionCableSystem.cs +++ b/Content.Server/Power/EntitySystems/ExtensionCableSystem.cs @@ -1,4 +1,5 @@ using System.Diagnostics.CodeAnalysis; +using System.Linq; using Content.Server.Power.Components; using Robust.Shared.Map; using Robust.Shared.Physics; @@ -247,24 +248,42 @@ private bool TryFindAvailableProvider(EntityUid owner, float range, [NotNullWhen var coordinates = xform.Coordinates; var nearbyEntities = grid.GetCellsInSquareArea(coordinates, (int) Math.Ceiling(range / grid.TileSize)); + var cableQuery = GetEntityQuery(); + var metaQuery = GetEntityQuery(); + var xformQuery = GetEntityQuery(); + ExtensionCableProviderComponent? closestCandidate = null; + var closestDistanceFound = float.MaxValue; foreach (var entity in nearbyEntities) { - if (entity == owner || !EntityManager.TryGetComponent(entity, out var provider)) continue; + if (entity == owner || !cableQuery.TryGetComponent(entity, out var provider) || !provider.Connectable) + continue; - if (EntityManager.IsQueuedForDeletion(entity)) continue; + if (EntityManager.IsQueuedForDeletion(entity)) + continue; - if (MetaData(entity).EntityLifeStage > EntityLifeStage.MapInitialized) continue; + if (!metaQuery.TryGetComponent(entity, out var meta) || meta.EntityLifeStage > EntityLifeStage.MapInitialized) + continue; - if (!provider.Connectable) continue; + // Find the closest provider + if (!xformQuery.TryGetComponent(entity, out var entityXform)) + continue; + var distance = (entityXform.LocalPosition - xform.LocalPosition).Length; + if (distance >= closestDistanceFound) + continue; - if ((Transform(entity).LocalPosition - xform.LocalPosition).Length > Math.Min(range, provider.TransferRange)) continue; + closestCandidate = provider; + closestDistanceFound = distance; + } - foundProvider = provider; + // Make sure the provider is in range before claiming success + if (closestCandidate != null && closestDistanceFound <= Math.Min(range, closestCandidate.TransferRange)) + { + foundProvider = closestCandidate; return true; } - foundProvider = default; + foundProvider = null; return false; } From e6bf18c05a8c5ad4e9fb7f0b6a255450d80e20d3 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 14 Jun 2023 21:32:18 -0400 Subject: [PATCH 210/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 27c9700ca3..3d02c11f8b 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,10 +1,4 @@ Entries: -- author: lapatison - changes: - - {message: 'Boxing equipment crates, empty boxes crates, and medical body bag crates - now can be ordered from cargo', type: Add} - id: 3490 - time: '2023-04-22T11:13:05.0000000+00:00' - author: Slava0135 changes: - {message: 'added hot potato. When activated you can''t drop it, hit others to @@ -2918,3 +2912,9 @@ Entries: which cryogenically heals cellular damage.', type: Add} id: 3989 time: '2023-06-15T01:26:28.0000000+00:00' +- author: deepy + changes: + - {message: Cables now connect to the closest net instead of the first one it finds., + type: Fix} + id: 3990 + time: '2023-06-15T01:31:15.0000000+00:00' From 247c7a1d4d8f9494689c87bed79dfe6ab3f18f67 Mon Sep 17 00:00:00 2001 From: 0x6273 <0x40@keemail.me> Date: Thu, 15 Jun 2023 03:44:28 +0200 Subject: [PATCH 211/474] Fix PDA capitalization to be PascalCase (#17335) --- .../NetworkConfiguratorLinkMenu.xaml | 10 +- ...omponent.cs => PdaBorderColorComponent.cs} | 2 +- ...rInterface.cs => PdaBoundUserInterface.cs} | 30 ++-- .../PDA/{PDAMenu.xaml => PdaMenu.xaml} | 36 ++--- .../PDA/{PDAMenu.xaml.cs => PdaMenu.xaml.cs} | 24 +-- ...onButton.xaml => PdaNavigationButton.xaml} | 4 +- ...on.xaml.cs => PdaNavigationButton.xaml.cs} | 4 +- ...DAProgramItem.xaml => PdaProgramItem.xaml} | 4 +- ...ramItem.xaml.cs => PdaProgramItem.xaml.cs} | 4 +- ...ingsButton.xaml => PdaSettingsButton.xaml} | 4 +- ...tton.xaml.cs => PdaSettingsButton.xaml.cs} | 4 +- .../PDA/{PDASystem.cs => PdaSystem.cs} | 24 +-- .../PDA/{PDAWindow.xaml => PdaWindow.xaml} | 20 +-- .../{PDAWindow.xaml.cs => PdaWindow.xaml.cs} | 4 +- .../UI/MiniTechnologyCardControl.xaml | 2 +- .../Research/UI/TechnologyCardControl.xaml | 2 +- Content.Client/Stylesheets/StyleNano.cs | 48 +++--- .../Tests/InventoryHelpersTest.cs | 2 +- .../Access/Systems/IdExaminableSystem.cs | 4 +- .../Commands/SetOutfitCommand.cs | 6 +- .../Systems/AdminVerbSystem.Tools.cs | 6 +- Content.Server/AlertLevel/AlertLevelSystem.cs | 2 +- .../CartridgeLoader/CartridgeLoaderSystem.cs | 6 +- Content.Server/Entry/IgnoredComponents.cs | 2 +- Content.Server/Mind/Commands/RenameCommand.cs | 4 +- .../PDA/{PDASystem.cs => PdaSystem.cs} | 74 ++++----- Content.Server/PDA/Ringer/RingerSystem.cs | 4 +- Content.Server/Sandbox/SandboxSystem.cs | 6 +- .../Station/Systems/StationSpawningSystem.cs | 6 +- .../Systems/StationRecordsSystem.cs | 2 +- Content.Server/Traitor/Uplink/UplinkSystem.cs | 4 +- .../Access/Components/IdCardComponent.cs | 4 +- .../Access/Systems/AccessReaderSystem.cs | 8 +- .../Access/Systems/SharedIdCardSystem.cs | 6 +- Content.Shared/PDA/PDAMessagesUI.cs | 39 ----- .../PDA/{PDAComponent.cs => PdaComponent.cs} | 8 +- Content.Shared/PDA/PdaMessagesUi.cs | 39 +++++ .../{PDAUpdateState.cs => PdaUpdateState.cs} | 10 +- .../PDA/{PDAVisuals.cs => PdaVisuals.cs} | 6 +- ...{SharedPDASystem.cs => SharedPdaSystem.cs} | 32 ++-- .../Catalog/Fills/Boxes/general.yml | 2 +- .../Entities/Objects/Devices/pda.yml | 146 +++++++++--------- .../Machines/material_reclaimer.yml | 2 +- .../Entities/Structures/Machines/recycler.yml | 2 +- 44 files changed, 329 insertions(+), 329 deletions(-) rename Content.Client/PDA/{PDABorderColorComponent.cs => PdaBorderColorComponent.cs} (86%) rename Content.Client/PDA/{PDABoundUserInterface.cs => PdaBoundUserInterface.cs} (79%) rename Content.Client/PDA/{PDAMenu.xaml => PdaMenu.xaml} (81%) rename Content.Client/PDA/{PDAMenu.xaml.cs => PdaMenu.xaml.cs} (93%) rename Content.Client/PDA/{PDANavigationButton.xaml => PdaNavigationButton.xaml} (78%) rename Content.Client/PDA/{PDANavigationButton.xaml.cs => PdaNavigationButton.xaml.cs} (96%) rename Content.Client/PDA/{PDAProgramItem.xaml => PdaProgramItem.xaml} (92%) rename Content.Client/PDA/{PDAProgramItem.xaml.cs => PdaProgramItem.xaml.cs} (91%) rename Content.Client/PDA/{PDASettingsButton.xaml => PdaSettingsButton.xaml} (82%) rename Content.Client/PDA/{PDASettingsButton.xaml.cs => PdaSettingsButton.xaml.cs} (94%) rename Content.Client/PDA/{PDASystem.cs => PdaSystem.cs} (56%) rename Content.Client/PDA/{PDAWindow.xaml => PdaWindow.xaml} (77%) rename Content.Client/PDA/{PDAWindow.xaml.cs => PdaWindow.xaml.cs} (94%) rename Content.Server/PDA/{PDASystem.cs => PdaSystem.cs} (71%) delete mode 100644 Content.Shared/PDA/PDAMessagesUI.cs rename Content.Shared/PDA/{PDAComponent.cs => PdaComponent.cs} (85%) create mode 100644 Content.Shared/PDA/PdaMessagesUi.cs rename Content.Shared/PDA/{PDAUpdateState.cs => PdaUpdateState.cs} (77%) rename Content.Shared/PDA/{PDAVisuals.cs => PdaVisuals.cs} (70%) rename Content.Shared/PDA/{SharedPDASystem.cs => SharedPdaSystem.cs} (53%) diff --git a/Content.Client/NetworkConfigurator/NetworkConfiguratorLinkMenu.xaml b/Content.Client/NetworkConfigurator/NetworkConfiguratorLinkMenu.xaml index b048f4527b..a512e694f6 100644 --- a/Content.Client/NetworkConfigurator/NetworkConfiguratorLinkMenu.xaml +++ b/Content.Client/NetworkConfigurator/NetworkConfiguratorLinkMenu.xaml @@ -35,12 +35,12 @@ - diff --git a/Content.Client/PDA/PDABorderColorComponent.cs b/Content.Client/PDA/PdaBorderColorComponent.cs similarity index 86% rename from Content.Client/PDA/PDABorderColorComponent.cs rename to Content.Client/PDA/PdaBorderColorComponent.cs index c9af50d2f5..fc0ba25963 100644 --- a/Content.Client/PDA/PDABorderColorComponent.cs +++ b/Content.Client/PDA/PdaBorderColorComponent.cs @@ -4,7 +4,7 @@ /// Used for specifying the pda windows border colors /// [RegisterComponent] -public sealed class PDABorderColorComponent : Component +public sealed class PdaBorderColorComponent : Component { [DataField("borderColor", required: true)] public string? BorderColor; diff --git a/Content.Client/PDA/PDABoundUserInterface.cs b/Content.Client/PDA/PdaBoundUserInterface.cs similarity index 79% rename from Content.Client/PDA/PDABoundUserInterface.cs rename to Content.Client/PDA/PdaBoundUserInterface.cs index 4553b23fd3..6e569dcf13 100644 --- a/Content.Client/PDA/PDABoundUserInterface.cs +++ b/Content.Client/PDA/PdaBoundUserInterface.cs @@ -12,14 +12,14 @@ namespace Content.Client.PDA { [UsedImplicitly] - public sealed class PDABoundUserInterface : CartridgeLoaderBoundUserInterface + public sealed class PdaBoundUserInterface : CartridgeLoaderBoundUserInterface { [Dependency] private readonly IEntityManager? _entityManager = default!; [Dependency] private readonly IConfigurationManager _configManager = default!; - private PDAMenu? _menu; + private PdaMenu? _menu; - public PDABoundUserInterface(ClientUserInterfaceComponent owner, Enum uiKey) : base(owner, uiKey) + public PdaBoundUserInterface(ClientUserInterfaceComponent owner, Enum uiKey) : base(owner, uiKey) { IoCManager.InjectDependencies(this); } @@ -27,13 +27,13 @@ public PDABoundUserInterface(ClientUserInterfaceComponent owner, Enum uiKey) : b protected override void Open() { base.Open(); - SendMessage(new PDARequestUpdateInterfaceMessage()); - _menu = new PDAMenu(); + SendMessage(new PdaRequestUpdateInterfaceMessage()); + _menu = new PdaMenu(); _menu.OpenCenteredLeft(); _menu.OnClose += Close; _menu.FlashLightToggleButton.OnToggled += _ => { - SendMessage(new PDAToggleFlashlightMessage()); + SendMessage(new PdaToggleFlashlightMessage()); }; if (_configManager.GetCVar(CCVars.CrewManifestUnsecure)) @@ -47,32 +47,32 @@ protected override void Open() _menu.EjectIdButton.OnPressed += _ => { - SendMessage(new ItemSlotButtonPressedEvent(PDAComponent.PDAIdSlotId)); + SendMessage(new ItemSlotButtonPressedEvent(PdaComponent.PdaIdSlotId)); }; _menu.EjectPenButton.OnPressed += _ => { - SendMessage(new ItemSlotButtonPressedEvent(PDAComponent.PDAPenSlotId)); + SendMessage(new ItemSlotButtonPressedEvent(PdaComponent.PdaPenSlotId)); }; _menu.ActivateMusicButton.OnPressed += _ => { - SendMessage(new PDAShowMusicMessage()); + SendMessage(new PdaShowMusicMessage()); }; _menu.AccessRingtoneButton.OnPressed += _ => { - SendMessage(new PDAShowRingtoneMessage()); + SendMessage(new PdaShowRingtoneMessage()); }; _menu.ShowUplinkButton.OnPressed += _ => { - SendMessage(new PDAShowUplinkMessage()); + SendMessage(new PdaShowUplinkMessage()); }; _menu.LockUplinkButton.OnPressed += _ => { - SendMessage(new PDALockUplinkMessage()); + SendMessage(new PdaLockUplinkMessage()); }; _menu.OnProgramItemPressed += ActivateCartridge; @@ -93,7 +93,7 @@ protected override void UpdateState(BoundUserInterfaceState state) { base.UpdateState(state); - if (state is not PDAUpdateState updateState) + if (state is not PdaUpdateState updateState) return; _menu?.UpdateState(updateState); @@ -130,9 +130,9 @@ protected override void Dispose(bool disposing) _menu?.Dispose(); } - private PDABorderColorComponent? GetBorderColorComponent() + private PdaBorderColorComponent? GetBorderColorComponent() { - return _entityManager?.GetComponentOrNull(Owner.Owner); + return _entityManager?.GetComponentOrNull(Owner.Owner); } } } diff --git a/Content.Client/PDA/PDAMenu.xaml b/Content.Client/PDA/PdaMenu.xaml similarity index 81% rename from Content.Client/PDA/PDAMenu.xaml rename to Content.Client/PDA/PdaMenu.xaml index 0b61cde932..a06032d6d2 100644 --- a/Content.Client/PDA/PDAMenu.xaml +++ b/Content.Client/PDA/PdaMenu.xaml @@ -1,25 +1,25 @@ - - - - + + + - - + - - - - + + + - - - - - @@ -88,8 +88,8 @@ - - + diff --git a/Content.Client/PDA/PDAMenu.xaml.cs b/Content.Client/PDA/PdaMenu.xaml.cs similarity index 93% rename from Content.Client/PDA/PDAMenu.xaml.cs rename to Content.Client/PDA/PdaMenu.xaml.cs index a639c9d184..e19c6710a2 100644 --- a/Content.Client/PDA/PDAMenu.xaml.cs +++ b/Content.Client/PDA/PdaMenu.xaml.cs @@ -13,7 +13,7 @@ namespace Content.Client.PDA { [GenerateTypedNameReferences] - public sealed partial class PDAMenu : PDAWindow + public sealed partial class PdaMenu : PdaWindow { [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly IEntitySystemManager _entitySystem = default!; @@ -29,7 +29,7 @@ public sealed partial class PDAMenu : PDAWindow public event Action? OnProgramItemPressed; public event Action? OnUninstallButtonPressed; public event Action? OnInstallButtonPressed; - public PDAMenu() + public PdaMenu() { IoCManager.InjectDependencies(this); _gameTicker = _entitySystem.GetEntitySystem(); @@ -88,22 +88,22 @@ public PDAMenu() ToHomeScreen(); } - public void UpdateState(PDAUpdateState state) + public void UpdateState(PdaUpdateState state) { FlashLightToggleButton.IsActive = state.FlashlightEnabled; - if (state.PDAOwnerInfo.ActualOwnerName != null) + if (state.PdaOwnerInfo.ActualOwnerName != null) { PdaOwnerLabel.SetMarkup(Loc.GetString("comp-pda-ui-owner", - ("actualOwnerName", state.PDAOwnerInfo.ActualOwnerName))); + ("actualOwnerName", state.PdaOwnerInfo.ActualOwnerName))); } - if (state.PDAOwnerInfo.IdOwner != null || state.PDAOwnerInfo.JobTitle != null) + if (state.PdaOwnerInfo.IdOwner != null || state.PdaOwnerInfo.JobTitle != null) { IdInfoLabel.SetMarkup(Loc.GetString("comp-pda-ui", - ("owner", state.PDAOwnerInfo.IdOwner ?? Loc.GetString("comp-pda-ui-unknown")), - ("jobTitle", state.PDAOwnerInfo.JobTitle ?? Loc.GetString("comp-pda-ui-unassigned")))); + ("owner", state.PdaOwnerInfo.IdOwner ?? Loc.GetString("comp-pda-ui-unknown")), + ("jobTitle", state.PdaOwnerInfo.JobTitle ?? Loc.GetString("comp-pda-ui-unassigned")))); } else { @@ -118,8 +118,8 @@ public void UpdateState(PDAUpdateState state) StationTimeLabel.SetMarkup(Loc.GetString("comp-pda-ui-station-time", ("time", stationTime.ToString("hh\\:mm\\:ss")))); - var alertLevel = state.PDAOwnerInfo.StationAlertLevel; - var alertColor = state.PDAOwnerInfo.StationAlertColor; + var alertLevel = state.PdaOwnerInfo.StationAlertLevel; + var alertColor = state.PdaOwnerInfo.StationAlertColor; var alertLevelKey = alertLevel != null ? $"alert-level-{alertLevel}" : "alert-level-unknown"; StationAlertLevelLabel.SetMarkup(Loc.GetString( @@ -135,7 +135,7 @@ public void UpdateState(PDAUpdateState state) AddressLabel.Text = state.Address?.ToUpper() ?? " - "; - EjectIdButton.IsActive = state.PDAOwnerInfo.IdOwner != null || state.PDAOwnerInfo.JobTitle != null; + EjectIdButton.IsActive = state.PdaOwnerInfo.IdOwner != null || state.PdaOwnerInfo.JobTitle != null; EjectPenButton.IsActive = state.HasPen; ActivateMusicButton.Visible = state.CanPlayMusic; ShowUplinkButton.Visible = state.HasUplink; @@ -172,7 +172,7 @@ public void UpdateAvailablePrograms(List<(EntityUid, CartridgeComponent)> progra ProgramList.AddChild(row); } - var item = new PDAProgramItem(); + var item = new PdaProgramItem(); if (component.Icon is not null) item.Icon.SetFromSpriteSpecifier(component.Icon); diff --git a/Content.Client/PDA/PDANavigationButton.xaml b/Content.Client/PDA/PdaNavigationButton.xaml similarity index 78% rename from Content.Client/PDA/PDANavigationButton.xaml rename to Content.Client/PDA/PdaNavigationButton.xaml index 94badd9451..03cf68f0ec 100644 --- a/Content.Client/PDA/PDANavigationButton.xaml +++ b/Content.Client/PDA/PdaNavigationButton.xaml @@ -1,5 +1,5 @@ - + + diff --git a/Content.Client/PDA/PDANavigationButton.xaml.cs b/Content.Client/PDA/PdaNavigationButton.xaml.cs similarity index 96% rename from Content.Client/PDA/PDANavigationButton.xaml.cs rename to Content.Client/PDA/PdaNavigationButton.xaml.cs index 83907717c3..3e44829411 100644 --- a/Content.Client/PDA/PDANavigationButton.xaml.cs +++ b/Content.Client/PDA/PdaNavigationButton.xaml.cs @@ -7,7 +7,7 @@ namespace Content.Client.PDA; [GenerateTypedNameReferences] -public sealed partial class PDANavigationButton : ContainerButton +public sealed partial class PdaNavigationButton : ContainerButton { private bool _isCurrent; @@ -100,7 +100,7 @@ public bool IsActive } } - public PDANavigationButton() + public PdaNavigationButton() { RobustXamlLoader.Load(this); Background.PanelOverride = _styleBox; diff --git a/Content.Client/PDA/PDAProgramItem.xaml b/Content.Client/PDA/PdaProgramItem.xaml similarity index 92% rename from Content.Client/PDA/PDAProgramItem.xaml rename to Content.Client/PDA/PdaProgramItem.xaml index d47df17e7f..9f9fba938f 100644 --- a/Content.Client/PDA/PDAProgramItem.xaml +++ b/Content.Client/PDA/PdaProgramItem.xaml @@ -1,4 +1,4 @@ - @@ -14,4 +14,4 @@ - + diff --git a/Content.Client/PDA/PDAProgramItem.xaml.cs b/Content.Client/PDA/PdaProgramItem.xaml.cs similarity index 91% rename from Content.Client/PDA/PDAProgramItem.xaml.cs rename to Content.Client/PDA/PdaProgramItem.xaml.cs index 9348cc5c12..9709f5706b 100644 --- a/Content.Client/PDA/PDAProgramItem.xaml.cs +++ b/Content.Client/PDA/PdaProgramItem.xaml.cs @@ -6,7 +6,7 @@ namespace Content.Client.PDA; [GenerateTypedNameReferences] -public sealed partial class PDAProgramItem : ContainerButton +public sealed partial class PdaProgramItem : ContainerButton { public const string StylePropertyBgColor = "backgroundColor"; public const string NormalBgColor = "#313138"; @@ -23,7 +23,7 @@ public Color BackgroundColor set => _styleBox.BackgroundColor = value; } - public PDAProgramItem() + public PdaProgramItem() { RobustXamlLoader.Load(this); Panel.PanelOverride = _styleBox; diff --git a/Content.Client/PDA/PDASettingsButton.xaml b/Content.Client/PDA/PdaSettingsButton.xaml similarity index 82% rename from Content.Client/PDA/PDASettingsButton.xaml rename to Content.Client/PDA/PdaSettingsButton.xaml index 39bd560324..213616f6c9 100644 --- a/Content.Client/PDA/PDASettingsButton.xaml +++ b/Content.Client/PDA/PdaSettingsButton.xaml @@ -1,4 +1,4 @@ - + diff --git a/Content.Client/PDA/PDASettingsButton.xaml.cs b/Content.Client/PDA/PdaSettingsButton.xaml.cs similarity index 94% rename from Content.Client/PDA/PDASettingsButton.xaml.cs rename to Content.Client/PDA/PdaSettingsButton.xaml.cs index c62f214194..f460f60200 100644 --- a/Content.Client/PDA/PDASettingsButton.xaml.cs +++ b/Content.Client/PDA/PdaSettingsButton.xaml.cs @@ -6,7 +6,7 @@ namespace Content.Client.PDA; [GenerateTypedNameReferences] -public sealed partial class PDASettingsButton : ContainerButton +public sealed partial class PdaSettingsButton : ContainerButton { public const string StylePropertyFgColor = "foregroundColor"; public const string StylePropertyBgColor = "backgroundColor"; @@ -49,7 +49,7 @@ public Color? ForegroundColor } } - public PDASettingsButton() + public PdaSettingsButton() { RobustXamlLoader.Load(this); Panel.PanelOverride = _styleBox; diff --git a/Content.Client/PDA/PDASystem.cs b/Content.Client/PDA/PdaSystem.cs similarity index 56% rename from Content.Client/PDA/PDASystem.cs rename to Content.Client/PDA/PdaSystem.cs index a5de98b9cf..00a12ae2e6 100644 --- a/Content.Client/PDA/PDASystem.cs +++ b/Content.Client/PDA/PdaSystem.cs @@ -4,28 +4,28 @@ namespace Content.Client.PDA; -public sealed class PDASystem : SharedPDASystem +public sealed class PdaSystem : SharedPdaSystem { public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnAppearanceChange); + SubscribeLocalEvent(OnAppearanceChange); } - private void OnAppearanceChange(EntityUid uid, PDAComponent component, ref AppearanceChangeEvent args) + private void OnAppearanceChange(EntityUid uid, PdaComponent component, ref AppearanceChangeEvent args) { if (args.Sprite == null) return; if (Appearance.TryGetData(uid, UnpoweredFlashlightVisuals.LightOn, out var isFlashlightOn, args.Component)) - args.Sprite.LayerSetVisible(PDAVisualLayers.Flashlight, isFlashlightOn); + args.Sprite.LayerSetVisible(PdaVisualLayers.Flashlight, isFlashlightOn); - if (Appearance.TryGetData(uid, PDAVisuals.IDCardInserted, out var isCardInserted, args.Component)) - args.Sprite.LayerSetVisible(PDAVisualLayers.IDLight, isCardInserted); + if (Appearance.TryGetData(uid, PdaVisuals.IdCardInserted, out var isCardInserted, args.Component)) + args.Sprite.LayerSetVisible(PdaVisualLayers.IdLight, isCardInserted); } - protected override void OnComponentInit(EntityUid uid, PDAComponent component, ComponentInit args) + protected override void OnComponentInit(EntityUid uid, PdaComponent component, ComponentInit args) { base.OnComponentInit(uid, component, args); @@ -33,16 +33,16 @@ protected override void OnComponentInit(EntityUid uid, PDAComponent component, C return; if (component.State != null) - sprite.LayerSetState(PDAVisualLayers.Base, component.State); + sprite.LayerSetState(PdaVisualLayers.Base, component.State); - sprite.LayerSetVisible(PDAVisualLayers.Flashlight, component.FlashlightOn); - sprite.LayerSetVisible(PDAVisualLayers.IDLight, component.IdSlot.StartingItem != null); + sprite.LayerSetVisible(PdaVisualLayers.Flashlight, component.FlashlightOn); + sprite.LayerSetVisible(PdaVisualLayers.IdLight, component.IdSlot.StartingItem != null); } - public enum PDAVisualLayers : byte + public enum PdaVisualLayers : byte { Base, Flashlight, - IDLight + IdLight } } diff --git a/Content.Client/PDA/PDAWindow.xaml b/Content.Client/PDA/PdaWindow.xaml similarity index 77% rename from Content.Client/PDA/PDAWindow.xaml rename to Content.Client/PDA/PdaWindow.xaml index fd6ec57ebe..0b0898cc3a 100644 --- a/Content.Client/PDA/PDAWindow.xaml +++ b/Content.Client/PDA/PdaWindow.xaml @@ -1,11 +1,11 @@ - - + - - - + + + @@ -16,16 +16,16 @@ - + - - + + - - + diff --git a/Content.Client/PDA/PDAWindow.xaml.cs b/Content.Client/PDA/PdaWindow.xaml.cs similarity index 94% rename from Content.Client/PDA/PDAWindow.xaml.cs rename to Content.Client/PDA/PdaWindow.xaml.cs index 4a7ef89c64..cc4d622751 100644 --- a/Content.Client/PDA/PDAWindow.xaml.cs +++ b/Content.Client/PDA/PdaWindow.xaml.cs @@ -6,7 +6,7 @@ namespace Content.Client.PDA; [Virtual] [GenerateTypedNameReferences] -public partial class PDAWindow : BaseWindow +public partial class PdaWindow : BaseWindow { public string? BorderColor @@ -38,7 +38,7 @@ public string? AccentVColor } } - public PDAWindow() + public PdaWindow() { RobustXamlLoader.Load(this); diff --git a/Content.Client/Research/UI/MiniTechnologyCardControl.xaml b/Content.Client/Research/UI/MiniTechnologyCardControl.xaml index 2808995524..c447df7bc0 100644 --- a/Content.Client/Research/UI/MiniTechnologyCardControl.xaml +++ b/Content.Client/Research/UI/MiniTechnologyCardControl.xaml @@ -2,7 +2,7 @@ ().Class("PDAContentBackground") + Element().Class("PdaContentBackground") .Prop(PanelContainer.StylePropertyPanel, BaseButtonOpenBoth) .Prop(Control.StylePropertyModulateSelf, Color.FromHex("#25252a")), - Element().Class("PDABackground") + Element().Class("PdaBackground") .Prop(PanelContainer.StylePropertyPanel, BaseButtonOpenBoth) .Prop(Control.StylePropertyModulateSelf, Color.FromHex("#000000")), - Element().Class("PDABackgroundRect") + Element().Class("PdaBackgroundRect") .Prop(PanelContainer.StylePropertyPanel, BaseAngleRect) .Prop(Control.StylePropertyModulateSelf, Color.FromHex("#717059")), - Element().Class("PDABorderRect") + Element().Class("PdaBorderRect") .Prop(PanelContainer.StylePropertyPanel, AngleBorderRect), Element().Class("BackgroundDark") .Prop(PanelContainer.StylePropertyPanel, new StyleBoxFlat(Color.FromHex("#25252A"))), //PDA - Buttons - Element().Pseudo(ContainerButton.StylePseudoClassNormal) - .Prop(PDASettingsButton.StylePropertyBgColor, Color.FromHex(PDASettingsButton.NormalBgColor)) - .Prop(PDASettingsButton.StylePropertyFgColor, Color.FromHex(PDASettingsButton.EnabledFgColor)), + Element().Pseudo(ContainerButton.StylePseudoClassNormal) + .Prop(PdaSettingsButton.StylePropertyBgColor, Color.FromHex(PdaSettingsButton.NormalBgColor)) + .Prop(PdaSettingsButton.StylePropertyFgColor, Color.FromHex(PdaSettingsButton.EnabledFgColor)), - Element().Pseudo(ContainerButton.StylePseudoClassHover) - .Prop(PDASettingsButton.StylePropertyBgColor, Color.FromHex(PDASettingsButton.HoverColor)) - .Prop(PDASettingsButton.StylePropertyFgColor, Color.FromHex(PDASettingsButton.EnabledFgColor)), + Element().Pseudo(ContainerButton.StylePseudoClassHover) + .Prop(PdaSettingsButton.StylePropertyBgColor, Color.FromHex(PdaSettingsButton.HoverColor)) + .Prop(PdaSettingsButton.StylePropertyFgColor, Color.FromHex(PdaSettingsButton.EnabledFgColor)), - Element().Pseudo(ContainerButton.StylePseudoClassPressed) - .Prop(PDASettingsButton.StylePropertyBgColor, Color.FromHex(PDASettingsButton.PressedColor)) - .Prop(PDASettingsButton.StylePropertyFgColor, Color.FromHex(PDASettingsButton.EnabledFgColor)), + Element().Pseudo(ContainerButton.StylePseudoClassPressed) + .Prop(PdaSettingsButton.StylePropertyBgColor, Color.FromHex(PdaSettingsButton.PressedColor)) + .Prop(PdaSettingsButton.StylePropertyFgColor, Color.FromHex(PdaSettingsButton.EnabledFgColor)), - Element().Pseudo(ContainerButton.StylePseudoClassDisabled) - .Prop(PDASettingsButton.StylePropertyBgColor, Color.FromHex(PDASettingsButton.NormalBgColor)) - .Prop(PDASettingsButton.StylePropertyFgColor, Color.FromHex(PDASettingsButton.DisabledFgColor)), + Element().Pseudo(ContainerButton.StylePseudoClassDisabled) + .Prop(PdaSettingsButton.StylePropertyBgColor, Color.FromHex(PdaSettingsButton.NormalBgColor)) + .Prop(PdaSettingsButton.StylePropertyFgColor, Color.FromHex(PdaSettingsButton.DisabledFgColor)), - Element().Pseudo(ContainerButton.StylePseudoClassNormal) - .Prop(PDAProgramItem.StylePropertyBgColor, Color.FromHex(PDAProgramItem.NormalBgColor)), + Element().Pseudo(ContainerButton.StylePseudoClassNormal) + .Prop(PdaProgramItem.StylePropertyBgColor, Color.FromHex(PdaProgramItem.NormalBgColor)), - Element().Pseudo(ContainerButton.StylePseudoClassHover) - .Prop(PDAProgramItem.StylePropertyBgColor, Color.FromHex(PDAProgramItem.HoverColor)), + Element().Pseudo(ContainerButton.StylePseudoClassHover) + .Prop(PdaProgramItem.StylePropertyBgColor, Color.FromHex(PdaProgramItem.HoverColor)), - Element().Pseudo(ContainerButton.StylePseudoClassPressed) - .Prop(PDAProgramItem.StylePropertyBgColor, Color.FromHex(PDAProgramItem.HoverColor)), + Element().Pseudo(ContainerButton.StylePseudoClassPressed) + .Prop(PdaProgramItem.StylePropertyBgColor, Color.FromHex(PdaProgramItem.HoverColor)), //PDA - Text - Element /// The base PDA sprite state, eg. "pda", "pda-clown" @@ -30,7 +30,7 @@ public sealed class PDAComponent : Component [DataField("id", customTypeSerializer: typeof(PrototypeIdSerializer))] public string? IdCard; - [ViewVariables] public IdCardComponent? ContainedID; + [ViewVariables] public IdCardComponent? ContainedId; [ViewVariables] public bool FlashlightOn; [ViewVariables] public string? OwnerName; diff --git a/Content.Shared/PDA/PdaMessagesUi.cs b/Content.Shared/PDA/PdaMessagesUi.cs new file mode 100644 index 0000000000..00d29e1e1a --- /dev/null +++ b/Content.Shared/PDA/PdaMessagesUi.cs @@ -0,0 +1,39 @@ +using Robust.Shared.Serialization; + +namespace Content.Shared.PDA; + +[Serializable, NetSerializable] +public sealed class PdaToggleFlashlightMessage : BoundUserInterfaceMessage +{ + public PdaToggleFlashlightMessage() { } +} + +[Serializable, NetSerializable] +public sealed class PdaShowRingtoneMessage : BoundUserInterfaceMessage +{ + public PdaShowRingtoneMessage() { } +} + +[Serializable, NetSerializable] +public sealed class PdaShowUplinkMessage : BoundUserInterfaceMessage +{ + public PdaShowUplinkMessage() { } +} + +[Serializable, NetSerializable] +public sealed class PdaLockUplinkMessage : BoundUserInterfaceMessage +{ + public PdaLockUplinkMessage() { } +} + +[Serializable, NetSerializable] +public sealed class PdaShowMusicMessage : BoundUserInterfaceMessage +{ + public PdaShowMusicMessage() { } +} + +[Serializable, NetSerializable] +public sealed class PdaRequestUpdateInterfaceMessage : BoundUserInterfaceMessage +{ + public PdaRequestUpdateInterfaceMessage() { } +} diff --git a/Content.Shared/PDA/PDAUpdateState.cs b/Content.Shared/PDA/PdaUpdateState.cs similarity index 77% rename from Content.Shared/PDA/PDAUpdateState.cs rename to Content.Shared/PDA/PdaUpdateState.cs index 20002e277e..053527a868 100644 --- a/Content.Shared/PDA/PDAUpdateState.cs +++ b/Content.Shared/PDA/PdaUpdateState.cs @@ -5,23 +5,23 @@ namespace Content.Shared.PDA { [Serializable, NetSerializable] - public sealed class PDAUpdateState : CartridgeLoaderUiState + public sealed class PdaUpdateState : CartridgeLoaderUiState { public bool FlashlightEnabled; public bool HasPen; - public PDAIdInfoText PDAOwnerInfo; + public PdaIdInfoText PdaOwnerInfo; public string? StationName; public bool HasUplink; public bool CanPlayMusic; public string? Address; - public PDAUpdateState(bool flashlightEnabled, bool hasPen, PDAIdInfoText pdaOwnerInfo, + public PdaUpdateState(bool flashlightEnabled, bool hasPen, PdaIdInfoText pdaOwnerInfo, string? stationName, bool hasUplink = false, bool canPlayMusic = false, string? address = null) { FlashlightEnabled = flashlightEnabled; HasPen = hasPen; - PDAOwnerInfo = pdaOwnerInfo; + PdaOwnerInfo = pdaOwnerInfo; HasUplink = hasUplink; CanPlayMusic = canPlayMusic; StationName = stationName; @@ -30,7 +30,7 @@ public PDAUpdateState(bool flashlightEnabled, bool hasPen, PDAIdInfoText pdaOwne } [Serializable, NetSerializable] - public struct PDAIdInfoText + public struct PdaIdInfoText { public string? ActualOwnerName; public string? IdOwner; diff --git a/Content.Shared/PDA/PDAVisuals.cs b/Content.Shared/PDA/PdaVisuals.cs similarity index 70% rename from Content.Shared/PDA/PDAVisuals.cs rename to Content.Shared/PDA/PdaVisuals.cs index 5abc340494..56039cf0d2 100644 --- a/Content.Shared/PDA/PDAVisuals.cs +++ b/Content.Shared/PDA/PdaVisuals.cs @@ -3,13 +3,13 @@ namespace Content.Shared.PDA { [Serializable, NetSerializable] - public enum PDAVisuals + public enum PdaVisuals { - IDCardInserted + IdCardInserted } [Serializable, NetSerializable] - public enum PDAUiKey + public enum PdaUiKey { Key } diff --git a/Content.Shared/PDA/SharedPDASystem.cs b/Content.Shared/PDA/SharedPdaSystem.cs similarity index 53% rename from Content.Shared/PDA/SharedPDASystem.cs rename to Content.Shared/PDA/SharedPdaSystem.cs index ec2d98f41c..7f7ab5c877 100644 --- a/Content.Shared/PDA/SharedPDASystem.cs +++ b/Content.Shared/PDA/SharedPdaSystem.cs @@ -4,7 +4,7 @@ namespace Content.Shared.PDA { - public abstract class SharedPDASystem : EntitySystem + public abstract class SharedPdaSystem : EntitySystem { [Dependency] protected readonly ItemSlotsSystem ItemSlotsSystem = default!; [Dependency] protected readonly SharedAppearanceSystem Appearance = default!; @@ -13,49 +13,49 @@ public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnComponentInit); - SubscribeLocalEvent(OnComponentRemove); + SubscribeLocalEvent(OnComponentInit); + SubscribeLocalEvent(OnComponentRemove); - SubscribeLocalEvent(OnItemInserted); - SubscribeLocalEvent(OnItemRemoved); + SubscribeLocalEvent(OnItemInserted); + SubscribeLocalEvent(OnItemRemoved); } - protected virtual void OnComponentInit(EntityUid uid, PDAComponent pda, ComponentInit args) + protected virtual void OnComponentInit(EntityUid uid, PdaComponent pda, ComponentInit args) { if (pda.IdCard != null) pda.IdSlot.StartingItem = pda.IdCard; - ItemSlotsSystem.AddItemSlot(uid, PDAComponent.PDAIdSlotId, pda.IdSlot); - ItemSlotsSystem.AddItemSlot(uid, PDAComponent.PDAPenSlotId, pda.PenSlot); + ItemSlotsSystem.AddItemSlot(uid, PdaComponent.PdaIdSlotId, pda.IdSlot); + ItemSlotsSystem.AddItemSlot(uid, PdaComponent.PdaPenSlotId, pda.PenSlot); UpdatePdaAppearance(uid, pda); } - private void OnComponentRemove(EntityUid uid, PDAComponent pda, ComponentRemove args) + private void OnComponentRemove(EntityUid uid, PdaComponent pda, ComponentRemove args) { ItemSlotsSystem.RemoveItemSlot(uid, pda.IdSlot); ItemSlotsSystem.RemoveItemSlot(uid, pda.PenSlot); } - protected virtual void OnItemInserted(EntityUid uid, PDAComponent pda, EntInsertedIntoContainerMessage args) + protected virtual void OnItemInserted(EntityUid uid, PdaComponent pda, EntInsertedIntoContainerMessage args) { - if (args.Container.ID == PDAComponent.PDAIdSlotId) - pda.ContainedID = CompOrNull(args.Entity); + if (args.Container.ID == PdaComponent.PdaIdSlotId) + pda.ContainedId = CompOrNull(args.Entity); UpdatePdaAppearance(uid, pda); } - protected virtual void OnItemRemoved(EntityUid uid, PDAComponent pda, EntRemovedFromContainerMessage args) + protected virtual void OnItemRemoved(EntityUid uid, PdaComponent pda, EntRemovedFromContainerMessage args) { if (args.Container.ID == pda.IdSlot.ID) - pda.ContainedID = null; + pda.ContainedId = null; UpdatePdaAppearance(uid, pda); } - private void UpdatePdaAppearance(EntityUid uid, PDAComponent pda) + private void UpdatePdaAppearance(EntityUid uid, PdaComponent pda) { - Appearance.SetData(uid, PDAVisuals.IDCardInserted, pda.ContainedID != null); + Appearance.SetData(uid, PdaVisuals.IdCardInserted, pda.ContainedId != null); } } } diff --git a/Resources/Prototypes/Catalog/Fills/Boxes/general.yml b/Resources/Prototypes/Catalog/Fills/Boxes/general.yml index cfe1d91675..5e2a1935a4 100644 --- a/Resources/Prototypes/Catalog/Fills/Boxes/general.yml +++ b/Resources/Prototypes/Catalog/Fills/Boxes/general.yml @@ -111,7 +111,7 @@ capacity: 60 whitelist: components: - - PDA + - Pda - type: entity name: ID card box diff --git a/Resources/Prototypes/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/Entities/Objects/Devices/pda.yml index ae8abd0f1c..7da719ed8a 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/pda.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/pda.yml @@ -9,19 +9,19 @@ - type: Sprite sprite: Objects/Devices/pda.rsi layers: - - map: [ "enum.PDAVisualLayers.Base" ] + - map: [ "enum.PdaVisualLayers.Base" ] - state: "light_overlay" - map: [ "enum.PDAVisualLayers.Flashlight" ] + map: [ "enum.PdaVisualLayers.Flashlight" ] shader: "unshaded" visible: false - state: "id_overlay" - map: [ "enum.PDAVisualLayers.IDLight" ] + map: [ "enum.PdaVisualLayers.IdLight" ] shader: "unshaded" visible: false - type: Icon sprite: Objects/Devices/pda.rsi state: pda - - type: PDA + - type: Pda state: pda penSlot: startingItem: Pen @@ -70,7 +70,7 @@ - type: WirelessNetworkConnection range: 500 - type: CartridgeLoader - uiKey: enum.PDAUiKey.Key + uiKey: enum.PdaUiKey.Key preinstalled: - NotekeeperCartridge cartridgeSlot: @@ -82,13 +82,13 @@ components: - Cartridge - type: ActivatableUI - key: enum.PDAUiKey.Key + key: enum.PdaUiKey.Key singleUser: true closeOnHandDeselect: false - type: UserInterface interfaces: - - key: enum.PDAUiKey.Key - type: PDABoundUserInterface + - key: enum.PdaUiKey.Key + type: PdaBoundUserInterface - key: enum.StoreUiKey.Key type: StoreBoundUserInterface - key: enum.RingerUiKey.Key @@ -111,10 +111,10 @@ name: passenger PDA description: Why isn't it gray? components: - - type: PDA + - type: Pda id: PassengerIDCard state: pda - - type: PDABorderColor + - type: PdaBorderColor borderColor: "#717059" - type: entity @@ -123,7 +123,7 @@ name: technical assistant PDA description: Why isn't it yellow? components: - - type: PDA + - type: Pda id: TechnicalAssistantIDCard state: pda-interntech - type: Icon @@ -135,7 +135,7 @@ name: medical intern PDA description: Why isn't it white? Has a built-in health analyzer. components: - - type: PDA + - type: Pda id: MedicalInternIDCard state: pda-internmed - type: Icon @@ -154,7 +154,7 @@ name: security cadet PDA description: Why isn't it red? components: - - type: PDA + - type: Pda id: SecurityCadetIDCard state: pda-interncadet - type: Icon @@ -166,7 +166,7 @@ name: research assistant PDA description: Why isn't it purple? components: - - type: PDA + - type: Pda id: ResearchAssistantIDCard state: pda-internsci - type: Icon @@ -178,7 +178,7 @@ name: service worker PDA description: Why isn't it gray? components: - - type: PDA + - type: Pda id: ServiceWorkerIDCard state: pda-internservice - type: Icon @@ -190,10 +190,10 @@ name: chef PDA description: Covered in grease and flour. components: - - type: PDA + - type: Pda id: ChefIDCard state: pda-cook - - type: PDABorderColor + - type: PdaBorderColor borderColor: "#d7d7d0" - type: Icon state: pda-cook @@ -204,7 +204,7 @@ name: botanist PDA description: Has an earthy scent. components: - - type: PDA + - type: Pda id: BotanistIDCard state: pda-hydro - type: Icon @@ -216,7 +216,7 @@ name: clown PDA description: Looks can be deceiving. components: - - type: PDA + - type: Pda id: ClownIDCard state: pda-clown penSlot: @@ -227,7 +227,7 @@ whitelist: tags: - Write - - type: PDABorderColor + - type: PdaBorderColor borderColor: "#C18199" - type: Icon state: pda-clown @@ -262,7 +262,7 @@ name: mime PDA description: Suprisingly not on mute. components: - - type: PDA + - type: Pda id: MimeIDCard state: pda-mime idSlot: @@ -279,10 +279,10 @@ id: ChaplainPDA description: God's chosen PDA. components: - - type: PDA + - type: Pda id: ChaplainIDCard state: pda-chaplain - - type: PDABorderColor + - type: PdaBorderColor borderColor: "#333333" - type: Icon state: pda-chaplain @@ -293,7 +293,7 @@ id: QuartermasterPDA description: PDA for the guy that orders the guns. components: - - type: PDA + - type: Pda id: QuartermasterIDCard state: pda-qm - type: Icon @@ -305,7 +305,7 @@ name: cargo PDA description: PDA for the guys that order the pizzas. components: - - type: PDA + - type: Pda id: CargoIDCard state: pda-cargo - type: Icon @@ -317,7 +317,7 @@ name: salvage PDA description: Smells like ash. components: - - type: PDA + - type: Pda id: SalvageIDCard state: pda-miner - type: Icon @@ -329,7 +329,7 @@ name: bartender PDA description: Smells like beer. components: - - type: PDA + - type: Pda id: BartenderIDCard state: pda-bartender - type: Icon @@ -341,7 +341,7 @@ name: librarian PDA description: Smells like books. components: - - type: PDA + - type: Pda id: LibrarianIDCard state: pda-library - type: Icon @@ -353,7 +353,7 @@ name: lawyer PDA description: For lawyers to poach dubious clients. components: - - type: PDA + - type: Pda id: LawyerIDCard state: pda-lawyer - type: Icon @@ -365,10 +365,10 @@ name: janitor PDA description: Smells like bleach. components: - - type: PDA + - type: Pda id: JanitorIDCard state: pda-janitor - - type: PDABorderColor + - type: PdaBorderColor borderColor: "#5D2D56" - type: Icon state: pda-janitor @@ -379,7 +379,7 @@ name: captain PDA description: Surprisingly no different from your PDA. components: - - type: PDA + - type: Pda id: CaptainIDCard state: pda-captain penSlot: @@ -388,7 +388,7 @@ whitelist: tags: - Write - - type: PDABorderColor + - type: PdaBorderColor borderColor: "#7C5D00" - type: Icon state: pda-captain @@ -399,7 +399,7 @@ name: head of personnel PDA description: Looks like it's been chewed on. components: - - type: PDA + - type: Pda id: HoPIDCard state: pda-hop penSlot: @@ -417,10 +417,10 @@ name: chief engineer PDA description: Looks like it's barely been used. components: - - type: PDA + - type: Pda id: CEIDCard state: pda-ce - - type: PDABorderColor + - type: PdaBorderColor borderColor: "#949137" accentHColor: "#447987" - type: Icon @@ -432,7 +432,7 @@ name: engineer PDA description: Rugged and well-worn. components: - - type: PDA + - type: Pda id: EngineeringIDCard state: pda-engineer - type: Icon @@ -444,10 +444,10 @@ name: chief medical officer PDA description: Extraordinarily shiny and sterile. Has a built-in health analyzer. components: - - type: PDA + - type: Pda id: CMOIDCard state: pda-cmo - - type: PDABorderColor + - type: PdaBorderColor borderColor: "#d7d7d0" accentHColor: "#447987" accentVColor: "#447987" @@ -464,10 +464,10 @@ name: medical PDA description: Shiny and sterile. Has a built-in health analyzer. components: - - type: PDA + - type: Pda id: MedicalIDCard state: pda-medical - - type: PDABorderColor + - type: PdaBorderColor borderColor: "#d7d7d0" accentVColor: "#447987" - type: Icon @@ -486,10 +486,10 @@ name: paramedic PDA description: Shiny and sterile. Has a built-in rapid health analyzer. components: - - type: PDA + - type: Pda id: ParamedicIDCard state: pda-paramedic - - type: PDABorderColor + - type: PdaBorderColor borderColor: "#d7d7d0" accentVColor: "#2a4b5b" - type: Icon @@ -505,10 +505,10 @@ name: chemistry PDA description: It has a few discolored blotches here and there. components: - - type: PDA + - type: Pda id: ChemistIDCard state: pda-chemistry - - type: PDABorderColor + - type: PdaBorderColor borderColor: "#d7d7d0" accentVColor: "#B34200" - type: Icon @@ -520,7 +520,7 @@ name: research director PDA description: It appears surprisingly ordinary. components: - - type: PDA + - type: Pda id: RDIDCard state: pda-rd - type: Icon @@ -532,7 +532,7 @@ name: science PDA description: It's covered with an unknown gooey substance. components: - - type: PDA + - type: Pda id: ResearchIDCard state: pda-science - type: Icon @@ -544,10 +544,10 @@ name: head of security PDA description: Whosoever bears this PDA is the law. components: - - type: PDA + - type: Pda id: HoSIDCard state: pda-hos - - type: PDABorderColor + - type: PdaBorderColor borderColor: "#A32D26" accentHColor: "#447987" - type: Icon @@ -559,7 +559,7 @@ name: warden PDA description: The OS appears to have been jailbroken. components: - - type: PDA + - type: Pda id: WardenIDCard state: pda-warden - type: Icon @@ -571,7 +571,7 @@ name: security PDA description: Red to hide the stains of passenger blood. components: - - type: PDA + - type: Pda id: SecurityIDCard state: pda-security - type: Icon @@ -583,7 +583,7 @@ name: CentCom PDA description: Light green sign of walking bureaucracy. components: - - type: PDA + - type: Pda id: CentcomIDCardSyndie state: pda-centcom penSlot: @@ -591,7 +591,7 @@ whitelist: tags: - Write - - type: PDABorderColor + - type: PdaBorderColor borderColor: "#32CD32" - type: Icon state: pda-centcom @@ -602,7 +602,7 @@ name: musician PDA description: It fills you with inspiration. components: - - type: PDA + - type: Pda id: MusicianIDCard state: pda-musician - type: Instrument @@ -617,7 +617,7 @@ name: atmos PDA description: Still smells like plasma. components: - - type: PDA + - type: Pda id: AtmosIDCard state: pda-atmos - type: Icon @@ -629,7 +629,7 @@ name: clear PDA description: 99 and 44/100ths percent pure plastic. components: - - type: PDA + - type: Pda id: PassengerIDCard state: pda-clear - type: Icon @@ -641,7 +641,7 @@ name: syndicate PDA description: Ok, time to be a productive member of- oh cool I'm a bad guy time to kill people! components: - - type: PDA + - type: Pda id: SyndicateIDCard state: pda-syndi - type: Icon @@ -653,10 +653,10 @@ name: ERT PDA description: Red for firepower. components: - - type: PDA + - type: Pda id: ERTLeaderIDCard state: pda-ert - - type: PDABorderColor + - type: PdaBorderColor borderColor: "#A32D26" accentHColor: "#447987" - type: Icon @@ -668,10 +668,10 @@ name: CBURN PDA description: Smells like rotten flesh. components: - - type: PDA + - type: Pda id: CBURNIDcard state: pda-ert - - type: PDABorderColor + - type: PdaBorderColor borderColor: "#A32D26" accentHColor: "#447987" @@ -681,10 +681,10 @@ name: psychologist PDA description: Looks immaculately cleaned. components: - - type: PDA + - type: Pda id: PsychologistIDCard state: pda-medical - - type: PDABorderColor + - type: PdaBorderColor borderColor: "#d7d7d0" accentVColor: "#447987" - type: Icon @@ -696,7 +696,7 @@ name: reporter PDA description: Smells like freshly printed press. components: - - type: PDA + - type: Pda id: ReporterIDCard state: pda-reporter - type: Icon @@ -708,7 +708,7 @@ name: zookeeper PDA description: Made with genuine synthetic leather. Crikey! components: - - type: PDA + - type: Pda id: ZookeeperIDCard state: pda-zookeeper - type: Icon @@ -720,10 +720,10 @@ name: boxer PDA description: Float like a butterfly, ringtone like a bee. components: - - type: PDA + - type: Pda id: BoxerIDCard state: pda-boxer - - type: PDABorderColor + - type: PdaBorderColor borderColor: "#333333" borderVColor: "#390504" - type: Icon @@ -735,10 +735,10 @@ name: detective PDA description: Smells like rain... pouring down the rooftops... components: - - type: PDA + - type: Pda id: DetectiveIDCard state: pda-detective - - type: PDABorderColor + - type: PdaBorderColor borderColor: "#774705" - type: Icon state: pda-detective @@ -749,10 +749,10 @@ name: brigmedic PDA description: I wonder whose pulse is on the screen? I hope he doesnt stop... PDA has a built-in health analyzer. components: - - type: PDA + - type: Pda id: BrigmedicIDCard state: pda-brigmedic - - type: PDABorderColor + - type: PdaBorderColor borderColor: "#A32D26" accentHColor: "#d7d7d0" accentVColor: "#d7d7d0" @@ -770,10 +770,10 @@ suffix: Unremoveable description: Cursed cluwne PDA. components: - - type: PDA + - type: Pda id: CluwneIDCard state: pda-cluwne - - type: PDABorderColor + - type: PdaBorderColor borderColor: "#1c8f4d" - type: Icon state: pda-cluwne diff --git a/Resources/Prototypes/Entities/Structures/Machines/material_reclaimer.yml b/Resources/Prototypes/Entities/Structures/Machines/material_reclaimer.yml index a995af95cb..d6efa81f92 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/material_reclaimer.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/material_reclaimer.yml @@ -72,7 +72,7 @@ blacklist: components: - Material - - PDA + - Pda - IdCard tags: - HighRiskItem diff --git a/Resources/Prototypes/Entities/Structures/Machines/recycler.yml b/Resources/Prototypes/Entities/Structures/Machines/recycler.yml index 3b36fdda97..abe591509b 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/recycler.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/recycler.yml @@ -94,7 +94,7 @@ blacklist: components: - Material - - PDA + - Pda - IdCard - HumanoidAppearance tags: From 7c6d217550eb9c2457c6ab4e533f1a7aaa3fe887 Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Thu, 15 Jun 2023 01:45:07 +0000 Subject: [PATCH 212/474] wallmount gen board cheaper (#17316) Co-authored-by: deltanedas <@deltanedas:kde.org> --- .../Devices/Electronics/power_electronics.yml | 19 +++++++++++-------- .../Prototypes/Recipes/Lathes/electronics.yml | 2 +- 2 files changed, 12 insertions(+), 9 deletions(-) diff --git a/Resources/Prototypes/Entities/Objects/Devices/Electronics/power_electronics.yml b/Resources/Prototypes/Entities/Objects/Devices/Electronics/power_electronics.yml index 6c0eae8a74..80c728aca7 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Electronics/power_electronics.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Electronics/power_electronics.yml @@ -34,18 +34,21 @@ # Wallmount Generator - type: entity - id: WallmountGeneratorElectronics parent: BaseElectronics + id: WallmountGeneratorElectronics name: wallmount generator electronics description: Circuit used to construct a wallmount generator. components: - - type: Sprite - sprite: Objects/Misc/module.rsi - state: charger_APC - - type: Tag - tags: - - DroneUsable - - WallmountGeneratorElectronics + - type: Sprite + sprite: Objects/Misc/module.rsi + state: charger_APC + - type: PhysicalComposition + materialComposition: + Glass: 90 + - type: Tag + tags: + - DroneUsable + - WallmountGeneratorElectronics # APU - type: entity diff --git a/Resources/Prototypes/Recipes/Lathes/electronics.yml b/Resources/Prototypes/Recipes/Lathes/electronics.yml index a7badb03e5..9dd8b0d999 100644 --- a/Resources/Prototypes/Recipes/Lathes/electronics.yml +++ b/Resources/Prototypes/Recipes/Lathes/electronics.yml @@ -451,7 +451,7 @@ completetime: 4 materials: Steel: 50 - Glass: 350 + Glass: 150 - type: latheRecipe id: WallmountGeneratorAPUElectronics From bf13e9ebcc894c57ba2806e227bdcb38b6e791ed Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 14 Jun 2023 21:46:11 -0400 Subject: [PATCH 213/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 3d02c11f8b..7a800e515d 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Slava0135 - changes: - - {message: 'added hot potato. When activated you can''t drop it, hit others to - transfer until it explodes!', type: Add} - - {message: 'added hot potato to chef, botanist, clown and mime uplink (4 TC)', - type: Add} - id: 3491 - time: '2023-04-22T11:40:37.0000000+00:00' - author: GoodWheatley changes: - {message: 'Rigged Boxing Gloves are now available in the uplink for 5 TC, if you''re @@ -2918,3 +2910,9 @@ Entries: type: Fix} id: 3990 time: '2023-06-15T01:31:15.0000000+00:00' +- author: deltanedas + changes: + - {message: Wallmount generator board is now cheaper to compensate for less power + output., type: Tweak} + id: 3991 + time: '2023-06-15T01:45:07.0000000+00:00' From 8d2d42fc611016409c47178e93a3f584855d324f Mon Sep 17 00:00:00 2001 From: Emisse <99158783+Emisse@users.noreply.github.com> Date: Wed, 14 Jun 2023 20:06:01 -0600 Subject: [PATCH 214/474] devmap cargo (#17339) --- Resources/Maps/Test/dev_map.yml | 14179 ++++++++++++++++-------------- 1 file changed, 7480 insertions(+), 6699 deletions(-) diff --git a/Resources/Maps/Test/dev_map.yml b/Resources/Maps/Test/dev_map.yml index 67321ef491..75eaa906fe 100644 --- a/Resources/Maps/Test/dev_map.yml +++ b/Resources/Maps/Test/dev_map.yml @@ -1,6699 +1,7480 @@ -meta: - format: 4 - postmapinit: false -tilemap: - 0: Space - 68: FloorSteel - 78: FloorTechMaint - 81: FloorWhite - 93: Lattice - 94: Plating -entities: -- proto: "" - entities: - - uid: 179 - components: - - type: MetaData - - parent: 962 - type: Transform - - chunks: - -1,0: - ind: -1,0 - tiles: RAAAAEQAAABEAAAARAAAAEQAAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAAARAAAAEQAAABeAAAAXgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAXgAAAF4AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAF4AAABeAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAF4AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAXQAAAF0AAABdAAAAXQAAAEQAAABEAAAARAAAAEQAAABeAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAF0AAABdAAAAXQAAAF0AAABEAAAARAAAAEQAAABEAAAAXgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAATgAAAEQAAABEAAAARAAAAEQAAABEAAAAXgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAEQAAABeAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -1,-1: - ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAE4AAABOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABOAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAEQAAABEAAAARAAAAEQAAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAF4AAABOAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAEQAAABEAAAARAAAAEQAAABEAAAAXgAAAE4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABEAAAARAAAAEQAAABEAAAARAAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAAARAAAAEQAAABeAAAATgAAAF4AAABeAAAARAAAAEQAAABEAAAARAAAAEQAAABeAAAAXgAAAEQAAABEAAAARAAAAEQAAABEAAAAXgAAAE4AAABeAAAAXgAAAEQAAABEAAAARAAAAEQAAABEAAAAXgAAAF4AAABEAAAARAAAAEQAAABEAAAARAAAAF4AAABOAAAAXgAAAF4AAABEAAAARAAAAEQAAABEAAAARAAAAF4AAABeAAAARAAAAEQAAABEAAAARAAAAEQAAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAAARAAAAEQAAABeAAAAXgAAAA== - 0,1: - ind: 0,1 - tiles: XQAAAF4AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAFEAAABRAAAAUQAAAFEAAABeAAAARAAAAF0AAABeAAAARAAAAEQAAABEAAAATgAAAF4AAABeAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAXgAAAFEAAAAAAAAAXgAAAEQAAABEAAAARAAAAE4AAABeAAAAXgAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAF4AAABeAAAAAAAAAF4AAABEAAAARAAAAF4AAABOAAAAXgAAAF4AAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABeAAAAUQAAAAAAAABeAAAARAAAAEQAAABeAAAATgAAAF4AAABOAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAAAAAAAAXgAAAEQAAABEAAAAXgAAAE4AAABeAAAAXgAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAF4AAABRAAAAAAAAAF4AAABEAAAARAAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUQAAAAAAAABeAAAARAAAAEQAAABeAAAATgAAAF4AAABOAAAATgAAAE4AAABeAAAATgAAAE4AAABeAAAAXgAAAFEAAAAAAAAAXgAAAEQAAABEAAAAXgAAAE4AAABeAAAATgAAAE4AAABOAAAAXgAAAE4AAABOAAAAXgAAAFEAAABRAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABOAAAAXgAAAE4AAABOAAAATgAAAF4AAABOAAAATgAAAF4AAABeAAAAUQAAAAAAAAAAAAAAAAAAAAAAAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAE4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABRAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABOAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,0: - ind: 0,0 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAFEAAABRAAAAUQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABRAAAAUQAAAFEAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAUQAAAFEAAABRAAAARAAAAEQAAABEAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAUQAAAEQAAABEAAAARAAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAUQAAAFEAAABEAAAARAAAAEQAAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAFEAAABRAAAARAAAAEQAAABEAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABRAAAAUQAAAEQAAABEAAAARAAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAUQAAAFEAAABEAAAARAAAAEQAAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAABRAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABRAAAAUQAAAF4AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAE4AAABOAAAATgAAAF4AAABOAAAAUQAAAFEAAABeAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAAXgAAAF4AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAF0AAABeAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABdAAAAXgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAXQAAAF4AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - 0,-1: - ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABOAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABOAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE4AAABOAAAATgAAAE4AAABeAAAATgAAAE4AAABOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABOAAAATgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAUQAAAFEAAABeAAAAXgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAFEAAABRAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABRAAAAUQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAUQAAAFEAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAFEAAABRAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAUQAAAA== - 1,-1: - ind: 1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABeAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAXgAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABeAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAXgAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAABRAAAAXgAAAF4AAABeAAAAUQAAAF4AAABeAAAAXgAAAA== - -2,0: - ind: -2,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -2,-1: - ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAARAAAAA== - 1,0: - ind: 1,0 - tiles: UQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABeAAAAAAAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAXgAAAAAAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAF4AAAAAAAAAUQAAAF4AAABeAAAAXgAAAFEAAABeAAAAXgAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABeAAAAAAAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAF4AAABeAAAAUQAAAF4AAABRAAAAXgAAAF4AAABeAAAAXgAAAAAAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABeAAAAUQAAAFEAAABRAAAAUQAAAFEAAABeAAAAAAAAAAAAAAAAAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAXgAAAFEAAABRAAAAUQAAAFEAAABRAAAAXgAAAAAAAAAAAAAAAAAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAF4AAABRAAAAUQAAAFEAAABRAAAAUQAAAF4AAAAAAAAAAAAAAAAAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABeAAAAAAAAAAAAAAAAAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAXgAAAFEAAABRAAAAUQAAAFEAAABRAAAAXgAAAAAAAAAAAAAAAAAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAF4AAABRAAAAUQAAAFEAAABRAAAAUQAAAF4AAAAAAAAAAAAAAAAAAABEAAAARAAAAEQAAABEAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAA== - 2,-1: - ind: 2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFEAAABRAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABRAAAAUQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAFEAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFEAAABRAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABRAAAAUQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,1: - ind: 1,1 - tiles: RAAAAEQAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFEAAABRAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABRAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAFEAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFEAAABRAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABRAAAAUQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAFEAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFEAAABRAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABRAAAAUQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAFEAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFEAAABRAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABRAAAAUQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAFEAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -1,1: - ind: -1,1 - tiles: AAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - type: MapGrid - - type: Broadphase - - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - type: Physics - - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - type: Gravity - - chunkCollection: - version: 2 - nodes: [] - type: DecalGrid - - type: OccluderTree - - type: Shuttle - - nextUpdate: 3888.4058032 - type: GridPathfinding - - type: RadiationGridResistance - - shakeTimes: 10 - type: GravityShake - - version: 2 - data: - tiles: - -4,0: - 0: 65535 - -4,1: - 0: 65535 - -3,0: - 0: 65407 - 1: 128 - -3,1: - 0: 30717 - 1: 2 - 2: 34816 - -2,0: - 0: 65519 - 1: 16 - -2,1: - 0: 65535 - -2,2: - 0: 65535 - -1,0: - 0: 32767 - 1: 32768 - -1,1: - 0: 65535 - -1,2: - 0: 65535 - -4,-3: - 0: 61440 - -4,-2: - 0: 65535 - -4,-1: - 0: 65535 - -3,-3: - 0: 61440 - -3,-2: - 0: 61183 - 1: 4352 - -3,-1: - 1: 17 - 0: 65518 - -2,-4: - 0: 65520 - -2,-3: - 0: 65535 - -2,-2: - 0: 65535 - -2,-1: - 0: 65529 - 1: 6 - -1,-4: - 0: 65520 - -1,-3: - 0: 65535 - -1,-2: - 0: 65535 - -1,-1: - 0: 65535 - 0,4: - 0: 61179 - 1: 4 - 0,5: - 0: 61166 - 0,6: - 0: 14 - 1,4: - 0: 65535 - 1,5: - 0: 65535 - 1,6: - 0: 65535 - 1,7: - 0: 15 - 2,4: - 0: 65535 - 2,5: - 0: 65535 - 2,6: - 0: 4095 - 3,4: - 0: 65535 - 3,5: - 0: 65487 - 1: 48 - 3,6: - 0: 53247 - 3,7: - 0: 12 - 0,0: - 0: 65535 - 0,1: - 0: 65535 - 0,2: - 0: 65535 - 0,3: - 0: 65467 - 1: 68 - 1,0: - 0: 26495 - 3: 4096 - 1: 34944 - 1,1: - 0: 65527 - 1: 8 - 1,2: - 0: 65407 - 1: 128 - 1,3: - 0: 65535 - 2,0: - 0: 4369 - 2,2: - 0: 65535 - 2,3: - 0: 65535 - 3,0: - 0: 65535 - 3,2: - 0: 65535 - 3,3: - 0: 65535 - 3,1: - 0: 61166 - 0,-4: - 0: 65520 - 0,-3: - 0: 65487 - 1: 48 - 0,-2: - 0: 65535 - 0,-1: - 0: 65535 - 1,-4: - 0: 30576 - 1,-3: - 0: 65399 - 1,-2: - 0: 63327 - 1: 32 - 1,-1: - 0: 65535 - 2,-2: - 0: 4096 - 2,-1: - 0: 4369 - 3,-1: - 0: 65262 - 3,-2: - 0: 61152 - 4,-2: - 0: 65520 - 4,-1: - 0: 65535 - 5,-2: - 0: 65520 - 5,-1: - 0: 65535 - 6,-2: - 0: 65520 - 6,-1: - 0: 65535 - 7,-2: - 0: 65520 - 7,-1: - 0: 61951 - 1: 3584 - -5,0: - 0: 52428 - -5,-3: - 0: 32768 - -5,-2: - 0: 51336 - -5,-1: - 0: 52428 - 4,0: - 0: 65535 - 4,1: - 0: 65535 - 4,2: - 0: 65535 - 4,3: - 0: 65535 - 5,0: - 0: 65535 - 5,1: - 0: 65535 - 5,2: - 0: 65535 - 5,3: - 0: 65535 - 6,0: - 0: 65535 - 6,1: - 0: 63359 - 1: 2176 - 6,2: - 0: 65535 - 6,3: - 0: 63351 - 7,0: - 0: 30583 - 7,1: - 0: 4375 - 7,2: - 0: 4369 - 7,3: - 0: 4096 - 8,-2: - 0: 30576 - 8,-1: - 0: 30327 - 1: 256 - 4,4: - 0: 30583 - 4,5: - 0: 30583 - 4,6: - 0: 30583 - 4,7: - 0: 7 - -4,2: - 0: 26367 - -1,3: - 0: 15 - 2,1: - 0: 4369 - -5,1: - 0: 52428 - -4,3: - 0: 26222 - -3,3: - 0: 15 - -2,3: - 0: 15 - -4,4: - 0: 238 - -3,4: - 0: 255 - -2,4: - 0: 255 - -1,4: - 0: 255 - -5,2: - 0: 204 - -3,2: - 0: 35071 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 16.488932 - - 62.029797 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 20.619795 - - 77.56971 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 - type: GridAtmosphere - - type: GasTileOverlay - - id: Dev - type: BecomesStation - - type: SpreaderGrid - - uid: 962 - components: - - type: MetaData - - type: Transform - - type: Map - - type: PhysicsMap - - type: Broadphase - - type: OccluderTree - - type: LoadedMap -- proto: AdvancedCapacitorStockPart - entities: - - uid: 700 - components: - - pos: -3.8324947,8.786524 - parent: 179 - type: Transform -- proto: AirAlarm - entities: - - uid: 800 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-4.5 - parent: 179 - type: Transform - - devices: - - 801 - type: DeviceList -- proto: AirCanister - entities: - - uid: 458 - components: - - pos: 7.5,-0.5 - parent: 179 - type: Transform -- proto: Airlock - entities: - - uid: 48 - components: - - pos: 7.5,20.5 - parent: 179 - type: Transform - - uid: 119 - components: - - pos: 6.5,17.5 - parent: 179 - type: Transform - - uid: 170 - components: - - pos: 13.5,10.5 - parent: 179 - type: Transform - - uid: 378 - components: - - pos: -9.5,0.5 - parent: 179 - type: Transform -- proto: AirlockEngineering - entities: - - uid: 257 - components: - - pos: -7.5,-6.5 - parent: 179 - type: Transform - - uid: 258 - components: - - pos: 3.5,-4.5 - parent: 179 - type: Transform - - uid: 259 - components: - - pos: 2.5,-4.5 - parent: 179 - type: Transform - - uid: 530 - components: - - pos: -10.5,-6.5 - parent: 179 - type: Transform - - uid: 563 - components: - - pos: -13.5,0.5 - parent: 179 - type: Transform - - uid: 867 - components: - - pos: -12.5,0.5 - parent: 179 - type: Transform -- proto: AirlockExternal - entities: - - uid: 155 - components: - - pos: 26.5,13.5 - parent: 179 - type: Transform - - uid: 255 - components: - - pos: 7.5,-8.5 - parent: 179 - type: Transform - - uid: 256 - components: - - pos: 5.5,-8.5 - parent: 179 - type: Transform - - uid: 318 - components: - - pos: 24.5,13.5 - parent: 179 - type: Transform -- proto: AirlockGlassShuttle - entities: - - uid: 146 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,9.5 - parent: 179 - type: Transform - -- proto: AirlockMedicalGlass - entities: - - uid: 177 - components: - - pos: 26.5,4.5 - parent: 179 - type: Transform - - uid: 178 - components: - - pos: 20.5,3.5 - parent: 179 - type: Transform - - uid: 206 - components: - - pos: 16.5,3.5 - parent: 179 - type: Transform - - uid: 207 - components: - - pos: 15.5,3.5 - parent: 179 - type: Transform - - uid: 369 - components: - - pos: 26.5,-3.5 - parent: 179 - type: Transform - - uid: 370 - components: - - pos: 28.5,-0.5 - parent: 179 - type: Transform -- proto: AirlockScience - entities: - - uid: 24 - components: - - pos: 14.5,24.5 - parent: 179 - type: Transform - - uid: 47 - components: - - pos: 16.5,18.5 - parent: 179 - type: Transform - - uid: 102 - components: - - pos: 16.5,15.5 - parent: 179 - type: Transform -- proto: AirlockScienceGlass - entities: - - uid: 26 - components: - - pos: 14.5,20.5 - parent: 179 - type: Transform -- proto: AirSensor - entities: - - uid: 801 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-3.5 - parent: 179 - type: Transform -- proto: AlwaysPoweredLightLED - entities: - - uid: 59 - components: - - pos: -14.5,-0.5 - parent: 179 - type: Transform - - uid: 330 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,8.5 - parent: 179 - type: Transform - - uid: 398 - components: - - pos: 4.5,-5.5 - parent: 179 - type: Transform - - uid: 451 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,9.5 - parent: 179 - type: Transform - - uid: 512 - components: - - rot: 3.141592653589793 rad - pos: -14.5,6.5 - parent: 179 - type: Transform - - uid: 662 - components: - - pos: 11.5,14.5 - parent: 179 - type: Transform - - uid: 664 - components: - - rot: 3.141592653589793 rad - pos: 22.5,12.5 - parent: 179 - type: Transform - - uid: 667 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,10.5 - parent: 179 - type: Transform - - uid: 669 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,4.5 - parent: 179 - type: Transform - - uid: 852 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,0.5 - parent: 179 - type: Transform - - uid: 907 - components: - - pos: -4.5,-5.5 - parent: 179 - type: Transform - - uid: 910 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-3.5 - parent: 179 - type: Transform - - uid: 913 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-3.5 - parent: 179 - type: Transform - - uid: 914 - components: - - pos: 4.5,3.5 - parent: 179 - type: Transform - - uid: 915 - components: - - pos: 6.5,7.5 - parent: 179 - type: Transform - - uid: 916 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,7.5 - parent: 179 - type: Transform - - uid: 917 - components: - - pos: -2.5,10.5 - parent: 179 - type: Transform - - uid: 918 - components: - - pos: 3.5,18.5 - parent: 179 - type: Transform - - uid: 921 - components: - - rot: 3.141592653589793 rad - pos: -13.5,1.5 - parent: 179 - type: Transform - - uid: 922 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,16.5 - parent: 179 - type: Transform - - uid: 923 - components: - - rot: 3.141592653589793 rad - pos: -7.5,12.5 - parent: 179 - type: Transform - - uid: 924 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,6.5 - parent: 179 - type: Transform - - uid: 926 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,17.5 - parent: 179 - type: Transform - - uid: 953 - components: - - pos: -14.5,16.5 - parent: 179 - type: Transform - - uid: 957 - components: - - rot: 3.141592653589793 rad - pos: 11.5,16.5 - parent: 179 - type: Transform -- proto: APCBasic - entities: - - uid: 753 - components: - - pos: -2.5,11.5 - parent: 179 - type: Transform - - startingCharge: 500000000 - maxCharge: 500000000 - type: Battery - - supplyRampRate: 50000 - supplyRampTolerance: 100000 - maxSupply: 1000000 - maxChargeRate: 500000 - type: PowerNetworkBattery -- proto: Autolathe - entities: - - uid: 1 - components: - - pos: 13.5,18.5 - parent: 179 - type: Transform - - uid: 94 - components: - - pos: -4.5,-5.5 - parent: 179 - type: Transform - - uid: 446 - components: - - pos: -6.5,5.5 - parent: 179 - type: Transform - - uid: 528 - components: - - pos: -12.5,-7.5 - parent: 179 - type: Transform - - uid: 531 - components: - - pos: -13.5,-7.5 - parent: 179 - type: Transform - - uid: 532 - components: - - pos: -14.5,-7.5 - parent: 179 - type: Transform -- proto: BaseResearchAndDevelopmentPointSource - entities: - - uid: 58 - components: - - pos: 13.5,16.5 - parent: 179 - type: Transform -- proto: BaseUplinkRadioDebug - entities: - - uid: 732 - components: - - pos: 0.6038008,7.5209107 - parent: 179 - type: Transform -- proto: Basketball - entities: - - uid: 951 - components: - - pos: -9.702013,9.68404 - parent: 179 - type: Transform - - uid: 952 - components: - - pos: -10.879096,9.579802 - parent: 179 - type: Transform -- proto: Beaker - entities: - - uid: 174 - components: - - pos: 25.291822,10.667244 - parent: 179 - type: Transform - - uid: 175 - components: - - pos: 24.541822,10.635994 - parent: 179 - type: Transform - - uid: 176 - components: - - pos: 26.416822,10.651619 - parent: 179 - type: Transform - - uid: 324 - components: - - pos: 4.718221,9.39097 - parent: 179 - type: Transform - - uid: 735 - components: - - pos: 4.739054,9.807927 - parent: 179 - type: Transform - - uid: 920 - components: - - pos: -4.293744,10.966518 - parent: 179 - type: Transform - - uid: 950 - components: - - pos: -4.293744,10.966518 - parent: 179 - type: Transform -- proto: BikeHorn - entities: - - uid: 672 - components: - - pos: 1.1246341,7.500063 - parent: 179 - type: Transform -- proto: BoozeDispenser - entities: - - uid: 752 - components: - - pos: 7.5,12.5 - parent: 179 - type: Transform -- proto: BoxBeaker - entities: - - uid: 280 - components: - - pos: 5.163024,9.63072 - parent: 179 - type: Transform -- proto: Brutepack - entities: - - uid: 150 - components: - - pos: 18.601385,5.512907 - parent: 179 - type: Transform - - uid: 151 - components: - - pos: 18.476385,4.841032 - parent: 179 - type: Transform -- proto: Bucket - entities: - - uid: 691 - components: - - pos: 7.1447573,15.900927 - parent: 179 - type: Transform -- proto: CableApcExtension - entities: - - uid: 281 - components: - - pos: -13.5,4.5 - parent: 179 - type: Transform - - uid: 736 - components: - - pos: -2.5,9.5 - parent: 179 - type: Transform - - uid: 760 - components: - - pos: -2.5,10.5 - parent: 179 - type: Transform - - uid: 761 - components: - - pos: -15.5,5.5 - parent: 179 - type: Transform - - uid: 763 - components: - - pos: -2.5,11.5 - parent: 179 - type: Transform - - enabled: True - type: AmbientSound - - uid: 764 - components: - - pos: -1.5,11.5 - parent: 179 - type: Transform - - enabled: True - type: AmbientSound - - uid: 765 - components: - - pos: -7.5,0.5 - parent: 179 - type: Transform - - enabled: True - type: AmbientSound - - uid: 766 - components: - - pos: -0.5,11.5 - parent: 179 - type: Transform - - enabled: True - type: AmbientSound - - uid: 767 - components: - - pos: -3.5,10.5 - parent: 179 - type: Transform - - uid: 768 - components: - - pos: -4.5,10.5 - parent: 179 - type: Transform - - uid: 769 - components: - - pos: -5.5,10.5 - parent: 179 - type: Transform - - uid: 770 - components: - - pos: -6.5,10.5 - parent: 179 - type: Transform - - uid: 771 - components: - - pos: -2.5,8.5 - parent: 179 - type: Transform - - uid: 772 - components: - - pos: -2.5,7.5 - parent: 179 - type: Transform - - uid: 773 - components: - - pos: -2.5,6.5 - parent: 179 - type: Transform - - uid: 774 - components: - - pos: -2.5,5.5 - parent: 179 - type: Transform - - uid: 775 - components: - - pos: -3.5,5.5 - parent: 179 - type: Transform - - uid: 776 - components: - - pos: -4.5,5.5 - parent: 179 - type: Transform - - uid: 777 - components: - - pos: -5.5,5.5 - parent: 179 - type: Transform - - uid: 778 - components: - - pos: -6.5,5.5 - parent: 179 - type: Transform - - uid: 779 - components: - - pos: -6.5,4.5 - parent: 179 - type: Transform - - uid: 780 - components: - - pos: -7.5,4.5 - parent: 179 - type: Transform - - uid: 781 - components: - - pos: -8.5,4.5 - parent: 179 - type: Transform - - uid: 782 - components: - - pos: -9.5,4.5 - parent: 179 - type: Transform - - uid: 783 - components: - - pos: -10.5,4.5 - parent: 179 - type: Transform - - uid: 784 - components: - - pos: -11.5,4.5 - parent: 179 - type: Transform - - uid: 785 - components: - - pos: -12.5,4.5 - parent: 179 - type: Transform - - uid: 786 - components: - - pos: -12.5,3.5 - parent: 179 - type: Transform - - uid: 787 - components: - - pos: -12.5,2.5 - parent: 179 - type: Transform - - uid: 788 - components: - - pos: -12.5,1.5 - parent: 179 - type: Transform - - uid: 789 - components: - - pos: -12.5,0.5 - parent: 179 - type: Transform - - uid: 790 - components: - - pos: -12.5,-0.5 - parent: 179 - type: Transform - - uid: 791 - components: - - pos: -2.5,4.5 - parent: 179 - type: Transform - - uid: 792 - components: - - pos: -2.5,2.5 - parent: 179 - type: Transform - - uid: 793 - components: - - pos: -2.5,1.5 - parent: 179 - type: Transform - - uid: 794 - components: - - pos: -2.5,0.5 - parent: 179 - type: Transform - - uid: 795 - components: - - pos: -2.5,3.5 - parent: 179 - type: Transform - - uid: 796 - components: - - pos: -2.5,-0.5 - parent: 179 - type: Transform - - uid: 797 - components: - - pos: -2.5,-1.5 - parent: 179 - type: Transform - - uid: 798 - components: - - pos: -2.5,-2.5 - parent: 179 - type: Transform - - uid: 799 - components: - - pos: -2.5,-3.5 - parent: 179 - type: Transform - - uid: 802 - components: - - pos: -8.5,0.5 - parent: 179 - type: Transform - - enabled: True - type: AmbientSound - - uid: 803 - components: - - pos: 2.5,-2.5 - parent: 179 - type: Transform - - enabled: True - type: AmbientSound - - uid: 804 - components: - - pos: 2.5,-3.5 - parent: 179 - type: Transform - - enabled: True - type: AmbientSound - - uid: 805 - components: - - pos: -9.5,0.5 - parent: 179 - type: Transform - - enabled: True - type: AmbientSound - - uid: 806 - components: - - pos: -10.5,0.5 - parent: 179 - type: Transform - - enabled: True - type: AmbientSound - - uid: 807 - components: - - pos: -14.5,0.5 - parent: 179 - type: Transform - - uid: 808 - components: - - pos: -11.5,0.5 - parent: 179 - type: Transform - - uid: 809 - components: - - pos: -15.5,0.5 - parent: 179 - type: Transform - - uid: 810 - components: - - pos: -15.5,0.5 - parent: 179 - type: Transform - - uid: 811 - components: - - pos: -16.5,0.5 - parent: 179 - type: Transform - - uid: 812 - components: - - pos: -16.5,5.5 - parent: 179 - type: Transform - - uid: 813 - components: - - pos: -16.5,4.5 - parent: 179 - type: Transform - - uid: 814 - components: - - pos: -16.5,3.5 - parent: 179 - type: Transform - - uid: 815 - components: - - pos: -16.5,2.5 - parent: 179 - type: Transform - - uid: 816 - components: - - pos: -16.5,1.5 - parent: 179 - type: Transform - - uid: 817 - components: - - pos: 7.5,5.5 - parent: 179 - type: Transform - - enabled: True - type: AmbientSound - - uid: 818 - components: - - pos: 7.5,7.5 - parent: 179 - type: Transform - - enabled: True - type: AmbientSound - - uid: 819 - components: - - pos: 7.5,8.5 - parent: 179 - type: Transform - - enabled: True - type: AmbientSound - - uid: 820 - components: - - pos: 7.5,9.5 - parent: 179 - type: Transform - - uid: 821 - components: - - pos: 8.5,9.5 - parent: 179 - type: Transform - - uid: 822 - components: - - pos: 6.5,9.5 - parent: 179 - type: Transform - - uid: 823 - components: - - pos: 5.5,9.5 - parent: 179 - type: Transform - - uid: 824 - components: - - pos: 4.5,9.5 - parent: 179 - type: Transform - - uid: 825 - components: - - pos: 8.5,10.5 - parent: 179 - type: Transform - - uid: 826 - components: - - pos: 8.5,11.5 - parent: 179 - type: Transform - - uid: 827 - components: - - pos: 8.5,12.5 - parent: 179 - type: Transform - - uid: 828 - components: - - pos: 7.5,12.5 - parent: 179 - type: Transform - - uid: 829 - components: - - pos: 7.5,11.5 - parent: 179 - type: Transform - - uid: 830 - components: - - pos: 2.5,-5.5 - parent: 179 - type: Transform - - uid: 831 - components: - - pos: 2.5,-4.5 - parent: 179 - type: Transform - - uid: 832 - components: - - pos: 1.5,-5.5 - parent: 179 - type: Transform - - uid: 833 - components: - - pos: 0.5,-5.5 - parent: 179 - type: Transform - - uid: 834 - components: - - pos: -0.5,-5.5 - parent: 179 - type: Transform - - uid: 835 - components: - - pos: -1.5,-5.5 - parent: 179 - type: Transform - - uid: 836 - components: - - pos: -2.5,-5.5 - parent: 179 - type: Transform - - uid: 837 - components: - - pos: -3.5,-5.5 - parent: 179 - type: Transform - - uid: 838 - components: - - pos: -4.5,-5.5 - parent: 179 - type: Transform - - uid: 839 - components: - - pos: 1.5,11.5 - parent: 179 - type: Transform - - uid: 840 - components: - - pos: 2.5,11.5 - parent: 179 - type: Transform - - uid: 841 - components: - - pos: 0.5,11.5 - parent: 179 - type: Transform - - enabled: True - type: AmbientSound - - uid: 842 - components: - - pos: 2.5,12.5 - parent: 179 - type: Transform - - uid: 843 - components: - - pos: 2.5,13.5 - parent: 179 - type: Transform - - uid: 844 - components: - - pos: 2.5,14.5 - parent: 179 - type: Transform - - uid: 845 - components: - - pos: 2.5,15.5 - parent: 179 - type: Transform - - uid: 853 - components: - - pos: -3.5,-3.5 - parent: 179 - type: Transform - - uid: 854 - components: - - pos: -4.5,-3.5 - parent: 179 - type: Transform - - uid: 855 - components: - - pos: -5.5,-3.5 - parent: 179 - type: Transform - - uid: 856 - components: - - pos: -6.5,-3.5 - parent: 179 - type: Transform - - uid: 857 - components: - - pos: -6.5,-2.5 - parent: 179 - type: Transform - - uid: 858 - components: - - pos: -6.5,-1.5 - parent: 179 - type: Transform - - uid: 859 - components: - - pos: -6.5,-0.5 - parent: 179 - type: Transform - - uid: 860 - components: - - pos: -6.5,0.5 - parent: 179 - type: Transform - - uid: 861 - components: - - pos: -6.5,1.5 - parent: 179 - type: Transform - - uid: 862 - components: - - pos: -6.5,2.5 - parent: 179 - type: Transform - - uid: 872 - components: - - pos: 7.5,6.5 - parent: 179 - type: Transform - - enabled: True - type: AmbientSound - - uid: 877 - components: - - pos: -6.5,3.5 - parent: 179 - type: Transform - - uid: 878 - components: - - pos: -2.5,-4.5 - parent: 179 - type: Transform - - enabled: True - type: AmbientSound - - uid: 879 - components: - - pos: -1.5,-4.5 - parent: 179 - type: Transform - - enabled: True - type: AmbientSound - - uid: 880 - components: - - pos: -0.5,-4.5 - parent: 179 - type: Transform - - enabled: True - type: AmbientSound - - uid: 881 - components: - - pos: 0.5,-4.5 - parent: 179 - type: Transform - - enabled: True - type: AmbientSound - - uid: 882 - components: - - pos: 1.5,-4.5 - parent: 179 - type: Transform - - enabled: True - type: AmbientSound - - uid: 883 - components: - - pos: 2.5,-4.5 - parent: 179 - type: Transform - - uid: 884 - components: - - pos: 3.5,-4.5 - parent: 179 - type: Transform - - uid: 885 - components: - - pos: 4.5,-4.5 - parent: 179 - type: Transform - - enabled: True - type: AmbientSound - - uid: 886 - components: - - pos: 5.5,-4.5 - parent: 179 - type: Transform - - enabled: True - type: AmbientSound - - uid: 887 - components: - - pos: 6.5,-4.5 - parent: 179 - type: Transform - - enabled: True - type: AmbientSound - - uid: 888 - components: - - pos: 7.5,-4.5 - parent: 179 - type: Transform - - enabled: True - type: AmbientSound - - uid: 889 - components: - - pos: 8.5,-4.5 - parent: 179 - type: Transform - - enabled: True - type: AmbientSound - - uid: 890 - components: - - pos: 8.5,-3.5 - parent: 179 - type: Transform - - enabled: True - type: AmbientSound - - uid: 891 - components: - - pos: 8.5,-2.5 - parent: 179 - type: Transform - - enabled: True - type: AmbientSound - - uid: 892 - components: - - pos: 8.5,-1.5 - parent: 179 - type: Transform - - enabled: True - type: AmbientSound - - uid: 893 - components: - - pos: 8.5,-0.5 - parent: 179 - type: Transform - - enabled: True - type: AmbientSound - - uid: 894 - components: - - pos: 8.5,0.5 - parent: 179 - type: Transform - - enabled: True - type: AmbientSound - - uid: 895 - components: - - pos: 8.5,1.5 - parent: 179 - type: Transform - - enabled: True - type: AmbientSound - - uid: 896 - components: - - pos: 8.5,2.5 - parent: 179 - type: Transform - - enabled: True - type: AmbientSound - - uid: 897 - components: - - pos: 8.5,3.5 - parent: 179 - type: Transform - - enabled: True - type: AmbientSound - - uid: 898 - components: - - pos: 8.5,4.5 - parent: 179 - type: Transform - - enabled: True - type: AmbientSound - - uid: 899 - components: - - pos: 8.5,5.5 - parent: 179 - type: Transform - - enabled: True - type: AmbientSound - - uid: 900 - components: - - pos: -14.5,5.5 - parent: 179 - type: Transform - - uid: 905 - components: - - pos: -12.5,5.5 - parent: 179 - type: Transform - - uid: 906 - components: - - pos: -14.5,4.5 - parent: 179 - type: Transform - - uid: 908 - components: - - pos: -15.5,4.5 - parent: 179 - type: Transform - - uid: 970 - components: - - pos: 9.5,12.5 - parent: 179 - type: Transform - - uid: 971 - components: - - pos: 10.5,12.5 - parent: 179 - type: Transform - - uid: 972 - components: - - pos: 11.5,12.5 - parent: 179 - type: Transform - - uid: 973 - components: - - pos: 12.5,12.5 - parent: 179 - type: Transform - - uid: 974 - components: - - pos: 13.5,12.5 - parent: 179 - type: Transform -- proto: CableApcStack - entities: - - uid: 70 - components: - - pos: 10.577456,21.424059 - parent: 179 - type: Transform - - uid: 183 - components: - - pos: -6.6863613,7.351646 - parent: 179 - type: Transform - - uid: 351 - components: - - pos: 10.561831,21.767809 - parent: 179 - type: Transform - - uid: 537 - components: - - pos: -15.5,-0.5 - parent: 179 - type: Transform - - uid: 538 - components: - - pos: -15.5,-0.5 - parent: 179 - type: Transform -- proto: CableHVStack - entities: - - uid: 184 - components: - - pos: -6.665528,7.840053 - parent: 179 - type: Transform -- proto: CableMVStack - entities: - - uid: 325 - components: - - pos: -6.665528,7.5601244 - parent: 179 - type: Transform -- proto: CapacitorStockPart - entities: - - uid: 701 - components: - - pos: -3.2804112,8.786524 - parent: 179 - type: Transform -- proto: CaptainIDCard - entities: - - uid: 726 - components: - - pos: 1.0820513,8.752605 - parent: 179 - type: Transform -- proto: CaptainSabre - entities: - - uid: 381 - components: - - pos: -3.277628,-2.15838 - parent: 179 - type: Transform -- proto: Catwalk - entities: - - uid: 2 - components: - - pos: 13.5,24.5 - parent: 179 - type: Transform - - uid: 7 - components: - - pos: 6.5,24.5 - parent: 179 - type: Transform - - uid: 20 - components: - - pos: 6.5,20.5 - parent: 179 - type: Transform - - uid: 120 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,18.5 - parent: 179 - type: Transform - - uid: 246 - components: - - pos: -6.5,-6.5 - parent: 179 - type: Transform - - uid: 247 - components: - - pos: -8.5,-6.5 - parent: 179 - type: Transform - - uid: 252 - components: - - pos: 4.5,-8.5 - parent: 179 - type: Transform - - uid: 269 - components: - - pos: 12.5,10.5 - parent: 179 - type: Transform - - uid: 286 - components: - - pos: 2.5,-11.5 - parent: 179 - type: Transform - - uid: 287 - components: - - pos: -4.5,-11.5 - parent: 179 - type: Transform - - uid: 308 - components: - - pos: -2.5,-12.5 - parent: 179 - type: Transform - - uid: 309 - components: - - pos: 1.5,-12.5 - parent: 179 - type: Transform - - uid: 333 - components: - - pos: 4.5,-13.5 - parent: 179 - type: Transform - - uid: 334 - components: - - pos: -5.5,-13.5 - parent: 179 - type: Transform - - uid: 345 - components: - - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,0.5 - parent: 179 - type: Transform - - uid: 346 - components: - - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,1.5 - parent: 179 - type: Transform - - uid: 347 - components: - - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,2.5 - parent: 179 - type: Transform - - uid: 348 - components: - - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,3.5 - parent: 179 - type: Transform - - uid: 349 - components: - - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,4.5 - parent: 179 - type: Transform - - uid: 403 - components: - - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,-0.5 - parent: 179 - type: Transform - - uid: 404 - components: - - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,-1.5 - parent: 179 - type: Transform - - uid: 405 - components: - - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,-2.5 - parent: 179 - type: Transform - - uid: 406 - components: - - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,-3.5 - parent: 179 - type: Transform - - uid: 407 - components: - - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,-4.5 - parent: 179 - type: Transform - - uid: 408 - components: - - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,-5.5 - parent: 179 - type: Transform - - uid: 409 - components: - - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,-6.5 - parent: 179 - type: Transform - - uid: 410 - components: - - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,-7.5 - parent: 179 - type: Transform - - uid: 411 - components: - - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,-8.5 - parent: 179 - type: Transform - - uid: 412 - components: - - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,-9.5 - parent: 179 - type: Transform - - uid: 413 - components: - - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,-10.5 - parent: 179 - type: Transform - - uid: 414 - components: - - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,-11.5 - parent: 179 - type: Transform - - uid: 415 - components: - - anchored: False - rot: -1.5707963267949 rad - pos: 8.5,-8.5 - parent: 179 - type: Transform - - uid: 438 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-0.5 - parent: 179 - type: Transform - - uid: 442 - components: - - pos: -9.5,8.5 - parent: 179 - type: Transform - - uid: 514 - components: - - pos: -10.5,8.5 - parent: 179 - type: Transform - - uid: 541 - components: - - pos: -11.5,-6.5 - parent: 179 - type: Transform - - uid: 542 - components: - - pos: -9.5,-6.5 - parent: 179 - type: Transform - - uid: 695 - components: - - rot: 3.141592653589793 rad - pos: -8.5,8.5 - parent: 179 - type: Transform -- proto: Chair - entities: - - uid: 90 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,17.5 - parent: 179 - type: Transform - - bodyType: Static - type: Physics - - uid: 580 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,6.5 - parent: 179 - type: Transform - - bodyType: Static - type: Physics - - uid: 581 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,8.5 - parent: 179 - type: Transform - - bodyType: Static - type: Physics - - uid: 582 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,7.5 - parent: 179 - type: Transform - - bodyType: Static - type: Physics -- proto: ChairOfficeDark - entities: - - uid: 380 - components: - - rot: 3.1415926535897967 rad - pos: 0.5,-6.5 - parent: 179 - type: Transform -- proto: ChairOfficeLight - entities: - - uid: 88 - components: - - rot: 4.71238898038469 rad - pos: 9.5,18.5 - parent: 179 - type: Transform - - uid: 576 - components: - - rot: 4.71238898038469 rad - pos: 19.5,4.5 - parent: 179 - type: Transform - - uid: 577 - components: - - rot: 3.141592653589793 rad - pos: 20.5,5.5 - parent: 179 - type: Transform - - uid: 578 - components: - - rot: 4.71238898038469 rad - pos: 23.5,8.5 - parent: 179 - type: Transform - - uid: 579 - components: - - pos: 24.5,5.5 - parent: 179 - type: Transform -- proto: chem_master - entities: - - uid: 311 - components: - - pos: 8.5,11.5 - parent: 179 - type: Transform -- proto: ChemDispenser - entities: - - uid: 583 - components: - - pos: 23.5,9.5 - parent: 179 - type: Transform - - containers: - ReagentDispenser-beaker: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - beakerSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 750 - components: - - pos: 7.5,11.5 - parent: 179 - type: Transform -- proto: ChemicalPayload - entities: - - uid: 432 - components: - - pos: 6.4651074,9.828774 - parent: 179 - type: Transform -- proto: ChemMasterMachineCircuitboard - entities: - - uid: 718 - components: - - pos: -4.5458,10.514079 - parent: 179 - type: Transform -- proto: CircuitImprinter - entities: - - uid: 332 - components: - - pos: -6.5,4.5 - parent: 179 - type: Transform -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 319 - components: - - pos: 1.5,-10.5 - parent: 179 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 322 - components: - - pos: 0.5,-10.5 - parent: 179 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: ClosetToolFilled - entities: - - uid: 524 - components: - - pos: -11.5,-5.5 - parent: 179 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 525 - components: - - pos: -11.5,-4.5 - parent: 179 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 526 - components: - - pos: -11.5,-3.5 - parent: 179 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 527 - components: - - pos: -11.5,-2.5 - parent: 179 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: ClothingBeltUtilityFilled - entities: - - uid: 427 - components: - - pos: -1.895102,-10.33495 - parent: 179 - type: Transform - - uid: 428 - components: - - pos: -1.770102,-10.63182 - parent: 179 - type: Transform -- proto: ClothingHandsGlovesColorYellow - entities: - - uid: 454 - components: - - pos: -0.78741443,4.322194 - parent: 179 - type: Transform -- proto: ClothingHeadHatWelding - entities: - - uid: 344 - components: - - pos: 0.7198646,4.374314 - parent: 179 - type: Transform -- proto: ClothingMaskBreath - entities: - - uid: 955 - components: - - pos: -10.595239,6.1907988 - parent: 179 - type: Transform -- proto: ClothingMaskGas - entities: - - uid: 425 - components: - - pos: -0.2880585,-10.69432 - parent: 179 - type: Transform -- proto: ClothingOuterHardsuitAtmos - entities: - - uid: 270 - components: - - pos: -10.5426235,5.472399 - parent: 179 - type: Transform -- proto: ClothingOuterVest - entities: - - uid: 426 - components: - - pos: -0.9130585,-10.66307 - parent: 179 - type: Transform -- proto: ClothingShoesBootsMag - entities: - - uid: 725 - components: - - pos: 0.47880077,8.073378 - parent: 179 - type: Transform -- proto: ClothingUniformJumpsuitEngineering - entities: - - uid: 424 - components: - - pos: -0.6474335,-10.27245 - parent: 179 - type: Transform -- proto: ClownPDA - entities: - - uid: 91 - components: - - pos: -15.5,2.5 - parent: 179 - type: Transform - - uid: 762 - components: - - pos: -14.5,1.5 - parent: 179 - type: Transform - - uid: 864 - components: - - pos: -14.5,2.5 - parent: 179 - type: Transform - - uid: 912 - components: - - pos: -15.5,1.5 - parent: 179 - type: Transform -- proto: ComputerCargoOrders - entities: - - uid: 326 - components: - - pos: 0.5,-5.5 - parent: 179 - type: Transform -- proto: ComputerMedicalRecords - entities: - - uid: 152 - components: - - rot: 3.141592653589793 rad - pos: 22.5,-5.5 - parent: 179 - type: Transform - - uid: 591 - components: - - pos: 21.5,5.5 - parent: 179 - type: Transform -- proto: ComputerResearchAndDevelopment - entities: - - uid: 17 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,18.5 - parent: 179 - type: Transform -- proto: ConveyorBelt - entities: - - uid: 716 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,11.5 - parent: 179 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 722 - Forward: - - port: Left - uid: 722 - Off: - - port: Middle - uid: 722 - type: SignalReceiver - - uid: 720 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,11.5 - parent: 179 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 722 - Forward: - - port: Left - uid: 722 - Off: - - port: Middle - uid: 722 - type: SignalReceiver - - uid: 721 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,11.5 - parent: 179 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 722 - Forward: - - port: Left - uid: 722 - Off: - - port: Middle - uid: 722 - type: SignalReceiver -- proto: CrateEngineeringToolbox - entities: - - uid: 692 - components: - - pos: -0.5,3.5 - parent: 179 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: CrateGeneric - entities: - - uid: 266 - components: - - pos: 5.5,-6.5 - parent: 179 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: CrateHydroponicsSeeds - entities: - - uid: 754 - components: - - pos: 2.5,12.5 - parent: 179 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: CrateHydroponicsTools - entities: - - uid: 755 - components: - - pos: 2.5,13.5 - parent: 179 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: CrateMedical - entities: - - uid: 131 - components: - - pos: 31.5,-1.5 - parent: 179 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 132 - components: - - pos: 32.5,-1.5 - parent: 179 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: Crowbar - entities: - - uid: 147 - components: - - pos: -2.172831,4.5306726 - parent: 179 - type: Transform - - uid: 423 - components: - - pos: -2.861032,-5.524786 - parent: 179 - type: Transform -- proto: DebugBatteryDischarger - entities: - - uid: 711 - components: - - pos: 0.5,-3.5 - parent: 179 - type: Transform -- proto: DisposalPipe - entities: - - uid: 717 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,10.5 - parent: 179 - type: Transform -- proto: DisposalTrunk - entities: - - uid: 285 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,10.5 - parent: 179 - type: Transform - - uid: 715 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,10.5 - parent: 179 - type: Transform -- proto: DisposalUnit - entities: - - uid: 719 - components: - - pos: -1.5,10.5 - parent: 179 - type: Transform -- proto: DrinkBeerglass - entities: - - uid: 688 - components: - - pos: 3.1981986,5.733985 - parent: 179 - type: Transform -- proto: DrinkColaCan - entities: - - uid: 690 - components: - - pos: 3.8231986,6.150942 - parent: 179 - type: Transform -- proto: Dropper - entities: - - uid: 730 - components: - - pos: 5.892191,9.4118185 - parent: 179 - type: Transform -- proto: EmergencyOxygenTankFilled - entities: - - uid: 956 - components: - - pos: -10.505015,6.711994 - parent: 179 - type: Transform -- proto: ExGrenade - entities: - - uid: 433 - components: - - pos: -3.7704864,-1.6163371 - parent: 179 - type: Transform -- proto: ExplosivePayload - entities: - - uid: 668 - components: - - pos: 6.829691,9.4118185 - parent: 179 - type: Transform -- proto: FaxMachineCaptain - entities: - - uid: 967 - components: - - pos: 9.5,12.5 - parent: 179 - type: Transform -- proto: FaxMachineCentcom - entities: - - uid: 968 - components: - - pos: 11.5,12.5 - parent: 179 - type: Transform -- proto: FaxMachineSyndie - entities: - - uid: 969 - components: - - pos: 13.5,12.5 - parent: 179 - type: Transform -- proto: FemtoManipulatorStockPart - entities: - - uid: 712 - components: - - pos: -6.7434506,8.817795 - parent: 179 - type: Transform -- proto: FireExtinguisher - entities: - - uid: 323 - components: - - pos: -1.297692,-5.396082 - parent: 179 - type: Transform - - uid: 868 - components: - - pos: -14.5,-1.5 - parent: 179 - type: Transform -- proto: FlashlightLantern - entities: - - uid: 421 - components: - - pos: -1.934832,-5.154238 - parent: 179 - type: Transform - - uid: 422 - components: - - pos: 1.1350493,8.198464 - parent: 179 - type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight -- proto: FloorLavaEntity - entities: - - uid: 134 - components: - - pos: -13.5,-3.5 - parent: 179 - type: Transform - - uid: 135 - components: - - pos: -14.5,-3.5 - parent: 179 - type: Transform - - uid: 141 - components: - - pos: -13.5,-2.5 - parent: 179 - type: Transform - - uid: 469 - components: - - pos: -14.5,-2.5 - parent: 179 - type: Transform -- proto: FloorWaterEntity - entities: - - uid: 136 - components: - - pos: -12.5,-2.5 - parent: 179 - type: Transform - - uid: 137 - components: - - pos: -12.5,-3.5 - parent: 179 - type: Transform -- proto: FoodApple - entities: - - uid: 16 - components: - - pos: 3.9853282,16.430082 - parent: 179 - type: Transform - - uid: 849 - components: - - pos: 3.7249117,16.242453 - parent: 179 - type: Transform - - uid: 866 - components: - - pos: 3.651995,16.55517 - parent: 179 - type: Transform -- proto: FoodBurgerBacon - entities: - - uid: 689 - components: - - pos: 3.3844857,6.0702233 - parent: 179 - type: Transform -- proto: FoodCarrot - entities: - - uid: 850 - components: - - pos: 3.6023045,15.67151 - parent: 179 - type: Transform - - uid: 851 - components: - - pos: 3.620745,15.015423 - parent: 179 - type: Transform - - uid: 863 - components: - - pos: 3.620745,14.389988 - parent: 179 - type: Transform -- proto: FoodPizzaPineapple - entities: - - uid: 687 - components: - - pos: 3.5215416,6.799056 - parent: 179 - type: Transform -- proto: GasAnalyzer - entities: - - uid: 876 - components: - - pos: 4.4732866,-0.48882532 - parent: 179 - type: Transform -- proto: GasFilter - entities: - - uid: 480 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-3.5 - parent: 179 - type: Transform - - bodyType: Static - type: Physics -- proto: GasMixer - entities: - - uid: 747 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-2.5 - parent: 179 - type: Transform - - bodyType: Static - type: Physics -- proto: GasOutletInjector - entities: - - uid: 429 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-1.5 - parent: 179 - type: Transform - - bodyType: Static - type: Physics -- proto: GasPipeBend - entities: - - uid: 727 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-0.5 - parent: 179 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- proto: GasPipeFourway - entities: - - uid: 728 - components: - - pos: 5.5,-1.5 - parent: 179 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- proto: GasPipeStraight - entities: - - uid: 749 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-3.5 - parent: 179 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- proto: GasPipeTJunction - entities: - - uid: 748 - components: - - pos: 5.5,-2.5 - parent: 179 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- proto: GasPort - entities: - - uid: 457 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-0.5 - parent: 179 - type: Transform - - bodyType: Static - type: Physics -- proto: GasPressurePump - entities: - - uid: 171 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-3.5 - parent: 179 - type: Transform - - bodyType: Static - type: Physics -- proto: GasValve - entities: - - uid: 168 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-2.5 - parent: 179 - type: Transform - - enabled: True - type: AmbientSound - - bodyType: Static - type: Physics -- proto: GasVentPump - entities: - - uid: 729 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-3.5 - parent: 179 - type: Transform - - bodyType: Static - type: Physics -- proto: GasVentScrubber - entities: - - uid: 452 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-2.5 - parent: 179 - type: Transform - - bodyType: Static - type: Physics -- proto: GasVolumePump - entities: - - uid: 160 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-1.5 - parent: 179 - type: Transform - - bodyType: Static - type: Physics -- proto: GeigerCounter - entities: - - uid: 759 - components: - - pos: 1.760596,4.5697265 - parent: 179 - type: Transform -- proto: GravityGenerator - entities: - - uid: 744 - components: - - pos: 6.5,6.5 - parent: 179 - type: Transform -- proto: Handcuffs - entities: - - uid: 331 - components: - - pos: -3.5805476,0.74100244 - parent: 179 - type: Transform -- proto: HandheldHealthAnalyzer - entities: - - uid: 513 - components: - - pos: -5.9808183,-3.6614444 - parent: 179 - type: Transform -- proto: HoloFan - entities: - - uid: 142 - components: - - pos: -8.5,7.5 - parent: 179 - type: Transform - missingComponents: - - TimedDespawn - - uid: 901 - components: - - pos: -10.5,7.5 - parent: 179 - type: Transform - missingComponents: - - TimedDespawn - - uid: 902 - components: - - pos: -9.5,7.5 - parent: 179 - type: Transform - missingComponents: - - TimedDespawn -- proto: HolosignWetFloor - entities: - - uid: 848 - components: - - pos: -13.5,2.5 - parent: 179 - type: Transform - - missingComponents: - - TimedDespawn - - uid: 911 - components: - - pos: -13.5,1.5 - parent: 179 - type: Transform - - missingComponents: - - TimedDespawn -- proto: hydroponicsTray - entities: - - uid: 756 - components: - - pos: 2.5,14.5 - parent: 179 - type: Transform - - uid: 757 - components: - - pos: 2.5,15.5 - parent: 179 - type: Transform -- proto: KitchenReagentGrinder - entities: - - uid: 731 - components: - - pos: 8.5,9.5 - parent: 179 - type: Transform -- proto: LargeBeaker - entities: - - uid: 210 - components: - - pos: 4.3272614,9.338851 - parent: 179 - type: Transform - - uid: 253 - components: - - pos: 23.494947,7.0422435 - parent: 179 - type: Transform - - uid: 402 - components: - - pos: 23.510572,7.7141185 - parent: 179 - type: Transform - - uid: 737 - components: - - pos: 4.2969,9.828774 - parent: 179 - type: Transform -- proto: LedLightTube - entities: - - uid: 481 - components: - - pos: -3.511025,-10.35149 - parent: 179 - type: Transform -- proto: LockerBotanistFilled - entities: - - uid: 869 - components: - - pos: 2.5,16.5 - parent: 179 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerChemistry - entities: - - uid: 127 - components: - - pos: 27.5,6.5 - parent: 179 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerChemistryFilled - entities: - - uid: 297 - components: - - pos: 7.5,9.5 - parent: 179 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerChiefEngineerFilled - entities: - - uid: 447 - components: - - pos: 7.5,2.5 - parent: 179 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerElectricalSuppliesFilled - entities: - - uid: 444 - components: - - pos: 7.5,3.5 - parent: 179 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerEngineerFilled - entities: - - uid: 490 - components: - - pos: 7.5,4.5 - parent: 179 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerMedical - entities: - - uid: 128 - components: - - pos: 27.5,5.5 - parent: 179 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 129 - components: - - pos: 29.5,-1.5 - parent: 179 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 130 - components: - - pos: 30.5,-1.5 - parent: 179 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerMedicalFilled - entities: - - uid: 865 - components: - - pos: -6.5,-3.5 - parent: 179 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerMedicineFilled - entities: - - uid: 562 - components: - - pos: -5.5,-3.5 - parent: 179 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerSalvageSpecialistFilled - entities: - - uid: 493 - components: - - pos: -10.5,4.5 - parent: 179 - type: Transform - - locked: False - type: Lock - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerSyndicatePersonalFilled - entities: - - uid: 909 - components: - - pos: -7.5,1.5 - parent: 179 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerWardenFilled - entities: - - uid: 873 - components: - - pos: -8.5,1.5 - parent: 179 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerWeldingSuppliesFilled - entities: - - uid: 871 - components: - - pos: 7.5,1.5 - parent: 179 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: MachineFrame - entities: - - uid: 533 - components: - - pos: -5.5,10.5 - parent: 179 - type: Transform -- proto: MedicalScanner - entities: - - uid: 592 - components: - - pos: 18.5,-1.5 - parent: 179 - type: Transform - - containers: - MedicalScanner-bodyContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - scanner-bodyContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 593 - components: - - pos: 18.5,-5.5 - parent: 179 - type: Transform - - containers: - MedicalScanner-bodyContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - scanner-bodyContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: MedkitFilled - entities: - - uid: 153 - components: - - pos: 13.632214,1.5673001 - parent: 179 - type: Transform - - uid: 154 - components: - - pos: 13.460339,0.6141751 - parent: 179 - type: Transform - - uid: 321 - components: - - pos: 3.8440318,4.425983 - parent: 179 - type: Transform -- proto: MicroManipulatorStockPart - entities: - - uid: 484 - components: - - pos: -5.5039105,8.838643 - parent: 179 - type: Transform - - uid: 959 - components: - - pos: -4.752078,10.904018 - parent: 179 - type: Transform -- proto: ModularGrenade - entities: - - uid: 435 - components: - - pos: 6.829691,9.860046 - parent: 179 - type: Transform -- proto: MopBucket - entities: - - uid: 696 - components: - - pos: 7.5,16.5 - parent: 179 - type: Transform -- proto: MopItem - entities: - - uid: 328 - components: - - pos: 7.6382103,16.08618 - parent: 179 - type: Transform - - solutions: - absorbed: - temperature: 293.15 - canMix: False - canReact: True - maxVol: 50 - reagents: - - Quantity: 25 - ReagentId: Water - type: SolutionContainerManager -- proto: Multitool - entities: - - uid: 307 - components: - - pos: -1.249865,-10.43489 - parent: 179 - type: Transform - - uid: 430 - components: - - pos: -0.6298993,4.7431083 - parent: 179 - type: Transform - - devices: - 'UID: 31739': 801 - type: NetworkConfigurator -- proto: NanoManipulatorStockPart - entities: - - uid: 456 - components: - - pos: -5.920577,8.817795 - parent: 179 - type: Transform -- proto: NitrogenCanister - entities: - - uid: 459 - components: - - pos: 7.5,-1.5 - parent: 179 - type: Transform -- proto: Ointment - entities: - - uid: 148 - components: - - pos: 18.77326,6.653532 - parent: 179 - type: Transform - - uid: 149 - components: - - pos: 18.49201,6.059782 - parent: 179 - type: Transform -- proto: OxygenCanister - entities: - - uid: 340 - components: - - pos: 7.5,-3.5 - parent: 179 - type: Transform -- proto: PaperBin10 - entities: - - uid: 977 - components: - - pos: 10.5,12.5 - parent: 179 - type: Transform -- proto: PartRodMetal - entities: - - uid: 133 - components: - - pos: -3.4717777,7.672426 - parent: 179 - type: Transform -- proto: Pen - entities: - - uid: 978 - components: - - pos: 10.893699,12.7794075 - parent: 179 - type: Transform - - uid: 979 - components: - - pos: 10.862433,12.602201 - parent: 179 - type: Transform -- proto: PicoManipulatorStockPart - entities: - - uid: 455 - components: - - pos: -6.337244,8.838643 - parent: 179 - type: Transform -- proto: PlasmaCanister - entities: - - uid: 461 - components: - - pos: 7.5,-2.5 - parent: 179 - type: Transform -- proto: PowerCellHigh - entities: - - uid: 567 - components: - - pos: -4.76583,8.265328 - parent: 179 - type: Transform -- proto: PowerCellHyper - entities: - - uid: 703 - components: - - pos: -4.3179135,8.275752 - parent: 179 - type: Transform -- proto: PowerCellMedium - entities: - - uid: 186 - components: - - pos: -2.67511,-10.351 - parent: 179 - type: Transform - - uid: 187 - components: - - pos: -2.55011,-10.6635 - parent: 179 - type: Transform - - uid: 360 - components: - - pos: -3.7970803,8.275752 - parent: 179 - type: Transform -- proto: PowerCellRecharger - entities: - - uid: 709 - components: - - pos: -1.5,-3.5 - parent: 179 - type: Transform -- proto: PowerCellSmall - entities: - - uid: 705 - components: - - pos: -3.3182633,8.234056 - parent: 179 - type: Transform -- proto: Poweredlight - entities: - - uid: 93 - components: - - rot: 3.141592653589793 rad - pos: 31.5,-5.5 - parent: 179 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 536 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-0.5 - parent: 179 - type: Transform - - enabled: False - type: AmbientSound - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 660 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,1.5 - parent: 179 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 661 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,7.5 - parent: 179 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 663 - components: - - pos: 22.5,2.5 - parent: 179 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 666 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,23.5 - parent: 179 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 670 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,18.5 - parent: 179 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 673 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-5.5 - parent: 179 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 674 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-5.5 - parent: 179 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 675 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-0.5 - parent: 179 - type: Transform - - enabled: False - type: AmbientSound - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 676 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-10.5 - parent: 179 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 677 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-13.5 - parent: 179 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 678 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-1.5 - parent: 179 - type: Transform - - enabled: False - type: AmbientSound - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 680 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-5.5 - parent: 179 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 681 - components: - - rot: 3.141592653589793 rad - pos: 23.5,-5.5 - parent: 179 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 682 - components: - - pos: 13.5,2.5 - parent: 179 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 683 - components: - - rot: 3.141592653589793 rad - pos: 17.5,4.5 - parent: 179 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- proto: PoweredSmallLight - entities: - - uid: 163 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,26.5 - parent: 179 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 166 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,24.5 - parent: 179 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 167 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,17.5 - parent: 179 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 388 - components: - - pos: 0.5,-5.5 - parent: 179 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 417 - components: - - pos: -4.5,-5.5 - parent: 179 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 483 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-9.5 - parent: 179 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 534 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-5.5 - parent: 179 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- proto: Protolathe - entities: - - uid: 15 - components: - - pos: 8.5,17.5 - parent: 179 - type: Transform - - uid: 384 - components: - - pos: -6.5,6.5 - parent: 179 - type: Transform -- proto: QuadraticCapacitorStockPart - entities: - - uid: 704 - components: - - pos: -4.8741612,8.817795 - parent: 179 - type: Transform -- proto: Railing - entities: - - uid: 665 - components: - - rot: 3.141592653589793 rad - pos: -15.5,9.5 - parent: 179 - type: Transform - - uid: 927 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,10.5 - parent: 179 - type: Transform - - uid: 928 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,11.5 - parent: 179 - type: Transform - - uid: 929 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,12.5 - parent: 179 - type: Transform - - uid: 930 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,13.5 - parent: 179 - type: Transform - - uid: 931 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,14.5 - parent: 179 - type: Transform - - uid: 932 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,15.5 - parent: 179 - type: Transform - - uid: 933 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,16.5 - parent: 179 - type: Transform - - uid: 934 - components: - - rot: 3.141592653589793 rad - pos: -13.5,17.5 - parent: 179 - type: Transform - - uid: 935 - components: - - rot: 3.141592653589793 rad - pos: -12.5,17.5 - parent: 179 - type: Transform - - uid: 936 - components: - - rot: 3.141592653589793 rad - pos: -11.5,17.5 - parent: 179 - type: Transform - - uid: 937 - components: - - rot: 3.141592653589793 rad - pos: -10.5,17.5 - parent: 179 - type: Transform - - uid: 938 - components: - - rot: 3.141592653589793 rad - pos: -9.5,17.5 - parent: 179 - type: Transform - - uid: 939 - components: - - rot: 3.141592653589793 rad - pos: -8.5,17.5 - parent: 179 - type: Transform - - uid: 940 - components: - - rot: 3.141592653589793 rad - pos: -7.5,17.5 - parent: 179 - type: Transform - - uid: 941 - components: - - rot: 3.141592653589793 rad - pos: -6.5,17.5 - parent: 179 - type: Transform - - uid: 942 - components: - - rot: 3.141592653589793 rad - pos: -5.5,17.5 - parent: 179 - type: Transform - - uid: 943 - components: - - rot: 3.141592653589793 rad - pos: -4.5,17.5 - parent: 179 - type: Transform - - uid: 944 - components: - - rot: 3.141592653589793 rad - pos: -3.5,17.5 - parent: 179 - type: Transform - - uid: 945 - components: - - rot: 3.141592653589793 rad - pos: -2.5,17.5 - parent: 179 - type: Transform - - uid: 946 - components: - - rot: 3.141592653589793 rad - pos: -1.5,17.5 - parent: 179 - type: Transform - - uid: 947 - components: - - rot: 3.141592653589793 rad - pos: -0.5,17.5 - parent: 179 - type: Transform - - uid: 948 - components: - - rot: 3.141592653589793 rad - pos: 0.5,17.5 - parent: 179 - type: Transform -- proto: RailingCornerSmall - entities: - - uid: 919 - components: - - pos: -14.5,9.5 - parent: 179 - type: Transform -- proto: ResearchAndDevelopmentServer - entities: - - uid: 12 - components: - - pos: 11.5,24.5 - parent: 179 - type: Transform - - points: 343000 - type: ResearchServer -- proto: RubberStampCaptain - entities: - - uid: 982 - components: - - pos: 12.800895,12.664745 - parent: 179 - type: Transform -- proto: RubberStampCentcom - entities: - - uid: 980 - components: - - pos: 12.186007,12.716865 - parent: 179 - type: Transform -- proto: RubberStampSyndicate - entities: - - uid: 981 - components: - - pos: 12.436131,12.550082 - parent: 179 - type: Transform -- proto: Screwdriver - entities: - - uid: 431 - components: - - pos: -1.235331,4.739151 - parent: 179 - type: Transform -- proto: SeedExtractor - entities: - - uid: 65 - components: - - pos: 2.5,17.5 - parent: 179 - type: Transform -- proto: SheetGlass - entities: - - uid: 23 - components: - - pos: 8.560405,21.456738 - parent: 179 - type: Transform - - uid: 354 - components: - - pos: 8.57603,21.566113 - parent: 179 - type: Transform - - uid: 479 - components: - - pos: -5.13758,7.5586076 - parent: 179 - type: Transform - - uid: 529 - components: - - pos: -15.5,-3.5 - parent: 179 - type: Transform - - uid: 564 - components: - - pos: -15.5,-1.5 - parent: 179 - type: Transform - - uid: 565 - components: - - pos: -15.5,-1.5 - parent: 179 - type: Transform - - uid: 566 - components: - - pos: -15.5,-3.5 - parent: 179 - type: Transform -- proto: SheetGlass1 - entities: - - uid: 960 - components: - - pos: -3.981244,10.799851 - parent: 179 - type: Transform -- proto: SheetPGlass - entities: - - uid: 416 - components: - - pos: -0.5,8.5 - parent: 179 - type: Transform -- proto: SheetPlasteel - entities: - - uid: 478 - components: - - pos: -4.0129576,7.6107273 - parent: 179 - type: Transform -- proto: SheetPlastic - entities: - - uid: 181 - components: - - pos: -4.54383,7.579455 - parent: 179 - type: Transform -- proto: SheetRPGlass - entities: - - uid: 182 - components: - - pos: -0.5,7.5 - parent: 179 - type: Transform -- proto: SheetSteel - entities: - - uid: 205 - components: - - pos: -15.5,-5.5 - parent: 179 - type: Transform - - uid: 305 - components: - - pos: 9.435405,21.503613 - parent: 179 - type: Transform - - uid: 306 - components: - - pos: 9.654155,21.628613 - parent: 179 - type: Transform - - uid: 382 - components: - - pos: -15.5,-5.5 - parent: 179 - type: Transform - - uid: 473 - components: - - pos: -5.6834707,7.529523 - parent: 179 - type: Transform - - uid: 543 - components: - - pos: -15.5,-4.5 - parent: 179 - type: Transform - - uid: 544 - components: - - pos: -15.5,-4.5 - parent: 179 - type: Transform -- proto: soda_dispenser - entities: - - uid: 751 - components: - - pos: 8.5,12.5 - parent: 179 - type: Transform -- proto: SpawnMobHuman - entities: - - uid: 138 - components: - - pos: -6.5,-0.5 - parent: 179 - type: Transform - - uid: 139 - components: - - pos: -6.5,0.5 - parent: 179 - type: Transform - - uid: 140 - components: - - pos: 3.5,7.5 - parent: 179 - type: Transform -- proto: SpawnPointCaptain - entities: - - uid: 954 - components: - - pos: -4.5,4.5 - parent: 179 - type: Transform -- proto: SpawnPointLatejoin - entities: - - uid: 961 - components: - - pos: -3.5,3.5 - parent: 179 - type: Transform -- proto: SpawnPointObserver - entities: - - uid: 679 - components: - - pos: -3.5,4.5 - parent: 179 - type: Transform -- proto: SpawnVehicleJanicart - entities: - - uid: 904 - components: - - pos: 5.5,16.5 - parent: 179 - type: Transform -- proto: Spear - entities: - - uid: 185 - components: - - pos: -3.4579864,-1.9811735 - parent: 179 - type: Transform -- proto: SprayBottleWater - entities: - - uid: 903 - components: - - pos: 6.985283,16.424004 - parent: 179 - type: Transform -- proto: Stimpack - entities: - - uid: 462 - components: - - pos: 3.6877818,5.312015 - parent: 179 - type: Transform -- proto: Stool - entities: - - uid: 383 - components: - - pos: -1.5,-9.5 - parent: 179 - type: Transform - - uid: 387 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-6.5 - parent: 179 - type: Transform -- proto: Stunbaton - entities: - - uid: 434 - components: - - pos: -3.1734612,-2.6066077 - parent: 179 - type: Transform -- proto: SuperCapacitorStockPart - entities: - - uid: 296 - components: - - pos: -4.3012447,8.817795 - parent: 179 - type: Transform -- proto: Syringe - entities: - - uid: 460 - components: - - pos: 3.2502818,4.5823417 - parent: 179 - type: Transform - - uid: 738 - components: - - pos: 5.767191,9.787079 - parent: 179 - type: Transform -- proto: Table - entities: - - uid: 63 - components: - - pos: 9.5,21.5 - parent: 179 - type: Transform - - uid: 64 - components: - - pos: 10.5,21.5 - parent: 179 - type: Transform - - uid: 67 - components: - - pos: 8.5,21.5 - parent: 179 - type: Transform - - uid: 79 - components: - - pos: 13.5,17.5 - parent: 179 - type: Transform - - uid: 92 - components: - - pos: 11.5,21.5 - parent: 179 - type: Transform - - uid: 143 - components: - - pos: 33.5,-3.5 - parent: 179 - type: Transform - - uid: 144 - components: - - pos: 33.5,-2.5 - parent: 179 - type: Transform - - uid: 145 - components: - - pos: 33.5,-1.5 - parent: 179 - type: Transform - - uid: 161 - components: - - pos: 24.5,-5.5 - parent: 179 - type: Transform - - uid: 162 - components: - - pos: 23.5,-5.5 - parent: 179 - type: Transform - - uid: 172 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,9.5 - parent: 179 - type: Transform - - uid: 180 - components: - - pos: -4.5,10.5 - parent: 179 - type: Transform - - uid: 262 - components: - - pos: -3.5,-5.5 - parent: 179 - type: Transform - - uid: 263 - components: - - pos: -2.5,-5.5 - parent: 179 - type: Transform - - uid: 264 - components: - - pos: -1.5,-5.5 - parent: 179 - type: Transform - - uid: 265 - components: - - pos: -0.5,-5.5 - parent: 179 - type: Transform - - uid: 267 - components: - - pos: 23.5,5.5 - parent: 179 - type: Transform - - uid: 268 - components: - - pos: 23.5,6.5 - parent: 179 - type: Transform - - uid: 298 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,9.5 - parent: 179 - type: Transform - - uid: 299 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,9.5 - parent: 179 - type: Transform - - uid: 300 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,9.5 - parent: 179 - type: Transform - - uid: 312 - components: - - pos: -3.5,-10.5 - parent: 179 - type: Transform - - uid: 313 - components: - - pos: -2.5,-10.5 - parent: 179 - type: Transform - - uid: 314 - components: - - pos: -1.5,-10.5 - parent: 179 - type: Transform - - uid: 315 - components: - - pos: -0.5,-10.5 - parent: 179 - type: Transform - - uid: 355 - components: - - pos: -6.5,7.5 - parent: 179 - type: Transform - - uid: 356 - components: - - pos: -5.5,7.5 - parent: 179 - type: Transform - - uid: 357 - components: - - pos: -4.5,7.5 - parent: 179 - type: Transform - - uid: 358 - components: - - pos: -3.5,7.5 - parent: 179 - type: Transform - - uid: 361 - components: - - pos: -0.5,7.5 - parent: 179 - type: Transform - - uid: 362 - components: - - pos: 0.5,7.5 - parent: 179 - type: Transform - - uid: 363 - components: - - pos: 1.5,7.5 - parent: 179 - type: Transform - - uid: 366 - components: - - pos: -2.5,4.5 - parent: 179 - type: Transform - - uid: 367 - components: - - pos: -1.5,4.5 - parent: 179 - type: Transform - - uid: 368 - components: - - pos: -0.5,4.5 - parent: 179 - type: Transform - - uid: 371 - components: - - pos: 1.5,4.5 - parent: 179 - type: Transform - - uid: 385 - components: - - pos: -3.5,-2.5 - parent: 179 - type: Transform - - uid: 386 - components: - - pos: -3.5,-1.5 - parent: 179 - type: Transform - - uid: 440 - components: - - pos: 0.5,4.5 - parent: 179 - type: Transform - - uid: 445 - components: - - pos: -3.5,-0.5 - parent: 179 - type: Transform - - uid: 448 - components: - - pos: 3.5,5.5 - parent: 179 - type: Transform - - uid: 465 - components: - - pos: 1.5,8.5 - parent: 179 - type: Transform - - uid: 466 - components: - - pos: 0.5,8.5 - parent: 179 - type: Transform - - uid: 467 - components: - - pos: -3.5,8.5 - parent: 179 - type: Transform - - uid: 468 - components: - - pos: -0.5,8.5 - parent: 179 - type: Transform - - uid: 470 - components: - - pos: -6.5,8.5 - parent: 179 - type: Transform - - uid: 471 - components: - - pos: -5.5,8.5 - parent: 179 - type: Transform - - uid: 472 - components: - - pos: -4.5,8.5 - parent: 179 - type: Transform - - uid: 515 - components: - - pos: -15.5,-5.5 - parent: 179 - type: Transform - - uid: 516 - components: - - pos: -15.5,-1.5 - parent: 179 - type: Transform - - uid: 520 - components: - - pos: -15.5,-0.5 - parent: 179 - type: Transform - - uid: 559 - components: - - pos: -15.5,-4.5 - parent: 179 - type: Transform - - uid: 560 - components: - - pos: -15.5,-3.5 - parent: 179 - type: Transform - - uid: 568 - components: - - pos: 18.5,4.5 - parent: 179 - type: Transform - - uid: 569 - components: - - pos: 21.5,6.5 - parent: 179 - type: Transform - - uid: 570 - components: - - pos: 20.5,6.5 - parent: 179 - type: Transform - - uid: 571 - components: - - pos: 18.5,6.5 - parent: 179 - type: Transform - - uid: 572 - components: - - pos: 19.5,6.5 - parent: 179 - type: Transform - - uid: 573 - components: - - pos: 18.5,5.5 - parent: 179 - type: Transform - - uid: 574 - components: - - pos: 22.5,8.5 - parent: 179 - type: Transform - - uid: 575 - components: - - pos: 24.5,4.5 - parent: 179 - type: Transform - - uid: 584 - components: - - pos: 23.5,7.5 - parent: 179 - type: Transform - - uid: 586 - components: - - pos: 25.5,10.5 - parent: 179 - type: Transform - - uid: 587 - components: - - pos: 23.5,10.5 - parent: 179 - type: Transform - - uid: 588 - components: - - pos: 24.5,10.5 - parent: 179 - type: Transform - - uid: 589 - components: - - pos: 26.5,10.5 - parent: 179 - type: Transform - - uid: 590 - components: - - pos: 27.5,10.5 - parent: 179 - type: Transform - - uid: 594 - components: - - pos: 13.5,2.5 - parent: 179 - type: Transform - - uid: 595 - components: - - pos: 13.5,0.5 - parent: 179 - type: Transform - - uid: 596 - components: - - pos: 13.5,1.5 - parent: 179 - type: Transform - - uid: 684 - components: - - pos: -3.5,0.5 - parent: 179 - type: Transform - - uid: 685 - components: - - pos: 3.5,4.5 - parent: 179 - type: Transform - - uid: 686 - components: - - pos: 3.5,6.5 - parent: 179 - type: Transform - - uid: 706 - components: - - pos: -1.5,-3.5 - parent: 179 - type: Transform - - uid: 707 - components: - - pos: -0.5,-3.5 - parent: 179 - type: Transform - - uid: 710 - components: - - pos: 0.5,-3.5 - parent: 179 - type: Transform -- proto: TableGlass - entities: - - uid: 964 - components: - - pos: 9.5,12.5 - parent: 179 - type: Transform - - uid: 965 - components: - - pos: 11.5,12.5 - parent: 179 - type: Transform - - uid: 966 - components: - - pos: 13.5,12.5 - parent: 179 - type: Transform - - uid: 975 - components: - - pos: 10.5,12.5 - parent: 179 - type: Transform - - uid: 976 - components: - - pos: 12.5,12.5 - parent: 179 - type: Transform -- proto: TargetHuman - entities: - - uid: 159 - components: - - pos: -6.5,-1.5 - parent: 179 - type: Transform -- proto: TelecomServerFilled - entities: - - uid: 963 - components: - - pos: -3.5,10.5 - parent: 179 - type: Transform -- proto: TimerTrigger - entities: - - uid: 482 - components: - - pos: 6.413024,9.39097 - parent: 179 - type: Transform -- proto: ToolboxElectricalFilled - entities: - - uid: 365 - components: - - pos: 0.4993378,3.429311 - parent: 179 - type: Transform - - uid: 419 - components: - - pos: -0.8099712,-5.21454 - parent: 179 - type: Transform - - uid: 420 - components: - - pos: -0.5597038,-5.679647 - parent: 179 - type: Transform -- proto: ToolboxMechanicalFilled - entities: - - uid: 364 - components: - - pos: 1.452203,3.4605832 - parent: 179 - type: Transform -- proto: ToyRubberDuck - entities: - - uid: 723 - components: - - pos: -1.6653601,11.616664 - parent: 179 - type: Transform -- proto: trayScanner - entities: - - uid: 758 - components: - - pos: 1.354346,4.548879 - parent: 179 - type: Transform -- proto: TwoWayLever - entities: - - uid: 722 - components: - - pos: 1.5,11.5 - parent: 179 - type: Transform - - outputs: - Left: - - port: Forward - uid: 721 - - port: Forward - uid: 720 - - port: Forward - uid: 716 - Right: - - port: Reverse - uid: 721 - - port: Reverse - uid: 720 - - port: Reverse - uid: 716 - Middle: - - port: Off - uid: 721 - - port: Off - uid: 720 - - port: Off - uid: 716 - type: SignalTransmitter -- proto: UnfinishedMachineFrame - entities: - - uid: 522 - components: - - pos: -6.5,10.5 - parent: 179 - type: Transform -- proto: UniformPrinter - entities: - - uid: 443 - components: - - pos: -7.5,4.5 - parent: 179 - type: Transform -- proto: VehicleKeyJanicart - entities: - - uid: 14 - components: - - pos: 6.5,16.5 - parent: 179 - type: Transform -- proto: VendingMachineCigs - entities: - - uid: 870 - components: - - flags: SessionSpecific - type: MetaData - - pos: -14.5,4.5 - parent: 179 - type: Transform -- proto: VendingMachineEngivend - entities: - - uid: 441 - components: - - flags: SessionSpecific - type: MetaData - - pos: -11.5,4.5 - parent: 179 - type: Transform - - uid: 523 - components: - - flags: SessionSpecific - type: MetaData - - pos: -11.5,-1.5 - parent: 179 - type: Transform -- proto: VendingMachineMedical - entities: - - uid: 156 - components: - - flags: SessionSpecific - type: MetaData - - pos: 25.5,-5.5 - parent: 179 - type: Transform - - uid: 157 - components: - - flags: SessionSpecific - type: MetaData - - pos: 27.5,-5.5 - parent: 179 - type: Transform - - uid: 158 - components: - - flags: SessionSpecific - type: MetaData - - pos: 29.5,3.5 - parent: 179 - type: Transform - - uid: 521 - components: - - flags: SessionSpecific - type: MetaData - - pos: -12.5,4.5 - parent: 179 - type: Transform -- proto: VendingMachineSalvage - entities: - - uid: 485 - components: - - flags: SessionSpecific - type: MetaData - - pos: -15.5,4.5 - parent: 179 - type: Transform -- proto: VendingMachineSec - entities: - - uid: 874 - components: - - flags: SessionSpecific - type: MetaData - - pos: -13.5,4.5 - parent: 179 - type: Transform -- proto: VendingMachineTankDispenserEVA - entities: - - uid: 875 - components: - - flags: SessionSpecific - type: MetaData - - pos: 7.5,0.5 - parent: 179 - type: Transform -- proto: VendingMachineYouTool - entities: - - uid: 350 - components: - - flags: SessionSpecific - type: MetaData - - pos: -11.5,-0.5 - parent: 179 - type: Transform -- proto: WallSolid - entities: - - uid: 3 - components: - - pos: 1.5,18.5 - parent: 179 - type: Transform - - uid: 4 - components: - - pos: 11.5,26.5 - parent: 179 - type: Transform - - uid: 5 - components: - - pos: 18.5,24.5 - parent: 179 - type: Transform - - uid: 6 - components: - - pos: 20.5,15.5 - parent: 179 - type: Transform - - uid: 8 - components: - - pos: 14.5,19.5 - parent: 179 - type: Transform - - uid: 9 - components: - - pos: 1.5,19.5 - parent: 179 - type: Transform - - uid: 10 - components: - - pos: 18.5,26.5 - parent: 179 - type: Transform - - uid: 11 - components: - - pos: 13.5,26.5 - parent: 179 - type: Transform - - uid: 13 - components: - - pos: 25.5,15.5 - parent: 179 - type: Transform - - uid: 18 - components: - - pos: 4.5,26.5 - parent: 179 - type: Transform - - uid: 19 - components: - - pos: 18.5,25.5 - parent: 179 - type: Transform - - uid: 21 - components: - - pos: 10.5,26.5 - parent: 179 - type: Transform - - uid: 22 - components: - - pos: 26.5,15.5 - parent: 179 - type: Transform - - uid: 25 - components: - - pos: 1.5,21.5 - parent: 179 - type: Transform - - uid: 27 - components: - - pos: 8.5,-0.5 - parent: 179 - type: Transform - - uid: 28 - components: - - pos: 18.5,18.5 - parent: 179 - type: Transform - - uid: 29 - components: - - pos: 18.5,21.5 - parent: 179 - type: Transform - - uid: 30 - components: - - pos: 1.5,22.5 - parent: 179 - type: Transform - - uid: 31 - components: - - pos: 1.5,20.5 - parent: 179 - type: Transform - - uid: 32 - components: - - pos: 18.5,19.5 - parent: 179 - type: Transform - - uid: 33 - components: - - pos: 23.5,15.5 - parent: 179 - type: Transform - - uid: 34 - components: - - pos: 12.5,22.5 - parent: 179 - type: Transform - - uid: 35 - components: - - pos: 27.5,15.5 - parent: 179 - type: Transform - - uid: 36 - components: - - pos: 7.5,22.5 - parent: 179 - type: Transform - - uid: 37 - components: - - pos: 14.5,22.5 - parent: 179 - type: Transform - - uid: 38 - components: - - pos: 10.5,23.5 - parent: 179 - type: Transform - - uid: 39 - components: - - pos: 10.5,24.5 - parent: 179 - type: Transform - - uid: 40 - components: - - pos: 8.5,26.5 - parent: 179 - type: Transform - - uid: 41 - components: - - pos: 10.5,25.5 - parent: 179 - type: Transform - - uid: 42 - components: - - pos: 18.5,22.5 - parent: 179 - type: Transform - - uid: 43 - components: - - pos: 14.5,27.5 - parent: 179 - type: Transform - - uid: 44 - components: - - pos: 14.5,26.5 - parent: 179 - type: Transform - - uid: 45 - components: - - pos: 1.5,16.5 - parent: 179 - type: Transform - - uid: 46 - components: - - pos: 18.5,27.5 - parent: 179 - type: Transform - - uid: 49 - components: - - pos: 7.5,28.5 - parent: 179 - type: Transform - - uid: 50 - components: - - pos: 13.5,22.5 - parent: 179 - type: Transform - - uid: 51 - components: - - pos: 12.5,26.5 - parent: 179 - type: Transform - - uid: 52 - components: - - pos: 1.5,15.5 - parent: 179 - type: Transform - - uid: 53 - components: - - pos: 9.5,26.5 - parent: 179 - type: Transform - - uid: 54 - components: - - pos: 14.5,23.5 - parent: 179 - type: Transform - - uid: 55 - components: - - pos: 24.5,15.5 - parent: 179 - type: Transform - - uid: 56 - components: - - pos: 14.5,25.5 - parent: 179 - type: Transform - - uid: 57 - components: - - pos: 14.5,21.5 - parent: 179 - type: Transform - - uid: 60 - components: - - pos: 7.5,21.5 - parent: 179 - type: Transform - - uid: 61 - components: - - pos: 18.5,20.5 - parent: 179 - type: Transform - - uid: 62 - components: - - pos: 18.5,23.5 - parent: 179 - type: Transform - - uid: 66 - components: - - pos: 18.5,17.5 - parent: 179 - type: Transform - - uid: 68 - components: - - pos: 18.5,28.5 - parent: 179 - type: Transform - - uid: 69 - components: - - pos: 28.5,15.5 - parent: 179 - type: Transform - - uid: 71 - components: - - pos: 11.5,22.5 - parent: 179 - type: Transform - - uid: 72 - components: - - pos: 1.5,17.5 - parent: 179 - type: Transform - - uid: 73 - components: - - pos: 14.5,28.5 - parent: 179 - type: Transform - - uid: 74 - components: - - pos: 10.5,22.5 - parent: 179 - type: Transform - - uid: 75 - components: - - pos: 9.5,22.5 - parent: 179 - type: Transform - - uid: 76 - components: - - pos: 8.5,-1.5 - parent: 179 - type: Transform - - uid: 77 - components: - - pos: 8.5,-2.5 - parent: 179 - type: Transform - - uid: 78 - components: - - pos: 21.5,15.5 - parent: 179 - type: Transform - - uid: 80 - components: - - pos: 18.5,16.5 - parent: 179 - type: Transform - - uid: 81 - components: - - pos: 18.5,15.5 - parent: 179 - type: Transform - - uid: 82 - components: - - pos: 14.5,18.5 - parent: 179 - type: Transform - - uid: 83 - components: - - pos: 4.5,28.5 - parent: 179 - type: Transform - - uid: 84 - components: - - pos: 7.5,26.5 - parent: 179 - type: Transform - - uid: 85 - components: - - pos: 1.5,23.5 - parent: 179 - type: Transform - - uid: 86 - components: - - pos: 17.5,15.5 - parent: 179 - type: Transform - - uid: 89 - components: - - pos: 22.5,15.5 - parent: 179 - type: Transform - - uid: 95 - components: - - pos: 8.5,22.5 - parent: 179 - type: Transform - - uid: 96 - components: - - pos: 7.5,27.5 - parent: 179 - type: Transform - - uid: 97 - components: - - pos: 8.5,-3.5 - parent: 179 - type: Transform - - uid: 98 - components: - - pos: 4.5,25.5 - parent: 179 - type: Transform - - uid: 99 - components: - - pos: 17.5,18.5 - parent: 179 - type: Transform - - uid: 100 - components: - - pos: 19.5,15.5 - parent: 179 - type: Transform - - uid: 101 - components: - - pos: 4.5,27.5 - parent: 179 - type: Transform - - uid: 103 - components: - - pos: 14.5,17.5 - parent: 179 - type: Transform - - uid: 104 - components: - - pos: 14.5,16.5 - parent: 179 - type: Transform - - uid: 105 - components: - - pos: 15.5,15.5 - parent: 179 - type: Transform - - uid: 106 - components: - - pos: 14.5,15.5 - parent: 179 - type: Transform - - uid: 107 - components: - - pos: 13.5,15.5 - parent: 179 - type: Transform - - uid: 108 - components: - - pos: 12.5,15.5 - parent: 179 - type: Transform - - uid: 109 - components: - - pos: 11.5,15.5 - parent: 179 - type: Transform - - uid: 110 - components: - - pos: 10.5,15.5 - parent: 179 - type: Transform - - uid: 112 - components: - - pos: 7.5,19.5 - parent: 179 - type: Transform - - uid: 113 - components: - - pos: 7.5,18.5 - parent: 179 - type: Transform - - uid: 114 - components: - - pos: 7.5,17.5 - parent: 179 - type: Transform - - uid: 117 - components: - - pos: 5.5,18.5 - parent: 179 - type: Transform - - uid: 118 - components: - - pos: 5.5,19.5 - parent: 179 - type: Transform - - uid: 121 - components: - - pos: 4.5,19.5 - parent: 179 - type: Transform - - uid: 122 - components: - - pos: 4.5,20.5 - parent: 179 - type: Transform - - uid: 123 - components: - - pos: 4.5,21.5 - parent: 179 - type: Transform - - uid: 124 - components: - - pos: 4.5,22.5 - parent: 179 - type: Transform - - uid: 125 - components: - - pos: 4.5,23.5 - parent: 179 - type: Transform - - uid: 126 - components: - - pos: 4.5,24.5 - parent: 179 - type: Transform - - uid: 164 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,9.5 - parent: 179 - type: Transform - - uid: 165 - components: - - pos: 8.5,2.5 - parent: 179 - type: Transform - - uid: 169 - components: - - pos: 8.5,0.5 - parent: 179 - type: Transform - - uid: 173 - components: - - pos: 8.5,1.5 - parent: 179 - type: Transform - - uid: 189 - components: - - pos: -7.5,0.5 - parent: 179 - type: Transform - - uid: 190 - components: - - pos: -7.5,-0.5 - parent: 179 - type: Transform - - uid: 191 - components: - - pos: -7.5,-1.5 - parent: 179 - type: Transform - - uid: 192 - components: - - pos: -7.5,-2.5 - parent: 179 - type: Transform - - uid: 193 - components: - - pos: -7.5,-3.5 - parent: 179 - type: Transform - - uid: 194 - components: - - pos: 0.5,-14.5 - parent: 179 - type: Transform - - uid: 195 - components: - - pos: -0.5,-14.5 - parent: 179 - type: Transform - - uid: 196 - components: - - pos: 3.5,-14.5 - parent: 179 - type: Transform - - uid: 197 - components: - - pos: 4.5,-14.5 - parent: 179 - type: Transform - - uid: 198 - components: - - pos: -7.5,-10.5 - parent: 179 - type: Transform - - uid: 199 - components: - - pos: -7.5,-11.5 - parent: 179 - type: Transform - - uid: 200 - components: - - pos: -7.5,-12.5 - parent: 179 - type: Transform - - uid: 201 - components: - - pos: -7.5,-13.5 - parent: 179 - type: Transform - - uid: 202 - components: - - pos: 2.5,-14.5 - parent: 179 - type: Transform - - uid: 203 - components: - - pos: 1.5,-14.5 - parent: 179 - type: Transform - - uid: 204 - components: - - pos: -1.5,-14.5 - parent: 179 - type: Transform - - uid: 208 - components: - - pos: -7.5,-9.5 - parent: 179 - type: Transform - - uid: 209 - components: - - pos: -10.5,-7.5 - parent: 179 - type: Transform - - uid: 211 - components: - - pos: -10.5,-5.5 - parent: 179 - type: Transform - - uid: 212 - components: - - pos: -10.5,-4.5 - parent: 179 - type: Transform - - uid: 213 - components: - - pos: -10.5,-3.5 - parent: 179 - type: Transform - - uid: 214 - components: - - pos: -10.5,-2.5 - parent: 179 - type: Transform - - uid: 215 - components: - - pos: -10.5,-1.5 - parent: 179 - type: Transform - - uid: 216 - components: - - pos: -3.5,-14.5 - parent: 179 - type: Transform - - uid: 217 - components: - - pos: 1.5,-4.5 - parent: 179 - type: Transform - - uid: 218 - components: - - pos: 0.5,-4.5 - parent: 179 - type: Transform - - uid: 219 - components: - - pos: -0.5,-4.5 - parent: 179 - type: Transform - - uid: 220 - components: - - pos: -1.5,-4.5 - parent: 179 - type: Transform - - uid: 221 - components: - - pos: -2.5,-4.5 - parent: 179 - type: Transform - - uid: 222 - components: - - pos: -3.5,-4.5 - parent: 179 - type: Transform - - uid: 223 - components: - - pos: -4.5,-4.5 - parent: 179 - type: Transform - - uid: 224 - components: - - pos: -5.5,-4.5 - parent: 179 - type: Transform - - uid: 225 - components: - - pos: -6.5,-4.5 - parent: 179 - type: Transform - - uid: 226 - components: - - pos: 4.5,-4.5 - parent: 179 - type: Transform - - uid: 227 - components: - - pos: 5.5,-4.5 - parent: 179 - type: Transform - - uid: 228 - components: - - pos: 6.5,-4.5 - parent: 179 - type: Transform - - uid: 229 - components: - - pos: -7.5,-14.5 - parent: 179 - type: Transform - - uid: 230 - components: - - pos: -2.5,-14.5 - parent: 179 - type: Transform - - uid: 231 - components: - - pos: -6.5,-14.5 - parent: 179 - type: Transform - - uid: 232 - components: - - pos: -5.5,-14.5 - parent: 179 - type: Transform - - uid: 233 - components: - - pos: -4.5,-14.5 - parent: 179 - type: Transform - - uid: 234 - components: - - pos: 6.5,-10.5 - parent: 179 - type: Transform - - uid: 235 - components: - - pos: 6.5,-11.5 - parent: 179 - type: Transform - - uid: 236 - components: - - pos: 6.5,-12.5 - parent: 179 - type: Transform - - uid: 237 - components: - - pos: 6.5,-13.5 - parent: 179 - type: Transform - - uid: 238 - components: - - pos: 6.5,-14.5 - parent: 179 - type: Transform - - uid: 239 - components: - - pos: 5.5,-14.5 - parent: 179 - type: Transform - - uid: 240 - components: - - pos: -7.5,-8.5 - parent: 179 - type: Transform - - uid: 241 - components: - - pos: -7.5,-7.5 - parent: 179 - type: Transform - - uid: 242 - components: - - pos: -8.5,-8.5 - parent: 179 - type: Transform - - uid: 243 - components: - - pos: -9.5,-8.5 - parent: 179 - type: Transform - - uid: 244 - components: - - pos: -10.5,-8.5 - parent: 179 - type: Transform - - uid: 245 - components: - - pos: -7.5,-5.5 - parent: 179 - type: Transform - - uid: 248 - components: - - pos: 5.5,-7.5 - parent: 179 - type: Transform - - uid: 249 - components: - - pos: 5.5,-9.5 - parent: 179 - type: Transform - - uid: 250 - components: - - pos: 6.5,-9.5 - parent: 179 - type: Transform - - uid: 251 - components: - - pos: 6.5,-7.5 - parent: 179 - type: Transform - - uid: 254 - components: - - pos: 7.5,-9.5 - parent: 179 - type: Transform - - uid: 260 - components: - - pos: 6.5,-6.5 - parent: 179 - type: Transform - - uid: 261 - components: - - pos: 6.5,-5.5 - parent: 179 - type: Transform - - uid: 271 - components: - - pos: 1.5,14.5 - parent: 179 - type: Transform - - uid: 272 - components: - - pos: 1.5,13.5 - parent: 179 - type: Transform - - uid: 273 - components: - - pos: 1.5,12.5 - parent: 179 - type: Transform - - uid: 274 - components: - - pos: -7.5,11.5 - parent: 179 - type: Transform - - uid: 275 - components: - - pos: -6.5,11.5 - parent: 179 - type: Transform - - uid: 276 - components: - - pos: -5.5,11.5 - parent: 179 - type: Transform - - uid: 277 - components: - - pos: -4.5,11.5 - parent: 179 - type: Transform - - uid: 278 - components: - - pos: -3.5,11.5 - parent: 179 - type: Transform - - uid: 279 - components: - - pos: -2.5,11.5 - parent: 179 - type: Transform - - uid: 282 - components: - - pos: -1.5,12.5 - parent: 179 - type: Transform - - uid: 283 - components: - - pos: -0.5,12.5 - parent: 179 - type: Transform - - uid: 284 - components: - - pos: 0.5,12.5 - parent: 179 - type: Transform - - uid: 288 - components: - - pos: 12.5,8.5 - parent: 179 - type: Transform - - uid: 289 - components: - - pos: 11.5,8.5 - parent: 179 - type: Transform - - uid: 290 - components: - - pos: 10.5,8.5 - parent: 179 - type: Transform - - uid: 291 - components: - - pos: 9.5,8.5 - parent: 179 - type: Transform - - uid: 292 - components: - - pos: 8.5,8.5 - parent: 179 - type: Transform - - uid: 293 - components: - - pos: 7.5,8.5 - parent: 179 - type: Transform - - uid: 294 - components: - - pos: 6.5,8.5 - parent: 179 - type: Transform - - uid: 295 - components: - - pos: 5.5,8.5 - parent: 179 - type: Transform - - uid: 301 - components: - - pos: 9.5,11.5 - parent: 179 - type: Transform - - uid: 302 - components: - - pos: 10.5,11.5 - parent: 179 - type: Transform - - uid: 303 - components: - - pos: 11.5,11.5 - parent: 179 - type: Transform - - uid: 304 - components: - - pos: 12.5,11.5 - parent: 179 - type: Transform - - uid: 310 - components: - - pos: 9.5,9.5 - parent: 179 - type: Transform - - uid: 316 - components: - - pos: -7.5,-4.5 - parent: 179 - type: Transform - - uid: 317 - components: - - pos: 26.5,14.5 - parent: 179 - type: Transform - - uid: 320 - components: - - pos: 24.5,14.5 - parent: 179 - type: Transform - - uid: 329 - components: - - pos: -11.5,5.5 - parent: 179 - type: Transform - - uid: 335 - components: - - pos: 13.5,11.5 - parent: 179 - type: Transform - - uid: 336 - components: - - pos: 14.5,11.5 - parent: 179 - type: Transform - - uid: 337 - components: - - pos: 13.5,9.5 - parent: 179 - type: Transform - - uid: 338 - components: - - pos: 13.5,8.5 - parent: 179 - type: Transform - - uid: 339 - components: - - pos: 13.5,7.5 - parent: 179 - type: Transform - - uid: 341 - components: - - pos: 24.5,12.5 - parent: 179 - type: Transform - - uid: 342 - components: - - pos: 26.5,12.5 - parent: 179 - type: Transform - - uid: 352 - components: - - pos: 13.5,6.5 - parent: 179 - type: Transform - - uid: 353 - components: - - pos: 13.5,5.5 - parent: 179 - type: Transform - - uid: 372 - components: - - pos: 13.5,4.5 - parent: 179 - type: Transform - - uid: 373 - components: - - pos: 25.5,4.5 - parent: 179 - type: Transform - - uid: 374 - components: - - pos: 23.5,4.5 - parent: 179 - type: Transform - - uid: 375 - components: - - pos: 17.5,3.5 - parent: 179 - type: Transform - - uid: 376 - components: - - pos: -10.5,-0.5 - parent: 179 - type: Transform - - uid: 377 - components: - - pos: -10.5,0.5 - parent: 179 - type: Transform - - uid: 379 - components: - - pos: -8.5,0.5 - parent: 179 - type: Transform - - uid: 390 - components: - - pos: 18.5,3.5 - parent: 179 - type: Transform - - uid: 391 - components: - - pos: 19.5,3.5 - parent: 179 - type: Transform - - uid: 392 - components: - - pos: 21.5,3.5 - parent: 179 - type: Transform - - uid: 393 - components: - - pos: 22.5,3.5 - parent: 179 - type: Transform - - uid: 394 - components: - - pos: 22.5,4.5 - parent: 179 - type: Transform - - uid: 395 - components: - - pos: 22.5,5.5 - parent: 179 - type: Transform - - uid: 396 - components: - - pos: 22.5,6.5 - parent: 179 - type: Transform - - uid: 397 - components: - - pos: 22.5,7.5 - parent: 179 - type: Transform - - uid: 399 - components: - - pos: 22.5,10.5 - parent: 179 - type: Transform - - uid: 400 - components: - - pos: 21.5,11.5 - parent: 179 - type: Transform - - uid: 401 - components: - - pos: 22.5,11.5 - parent: 179 - type: Transform - - uid: 418 - components: - - pos: 7.5,-7.5 - parent: 179 - type: Transform - - uid: 439 - components: - - pos: -13.5,5.5 - parent: 179 - type: Transform - - uid: 449 - components: - - pos: -16.5,2.5 - parent: 179 - type: Transform - - uid: 450 - components: - - pos: -16.5,3.5 - parent: 179 - type: Transform - - uid: 464 - components: - - pos: 4.5,8.5 - parent: 179 - type: Transform - - uid: 474 - components: - - pos: -7.5,8.5 - parent: 179 - type: Transform - - uid: 475 - components: - - pos: -7.5,7.5 - parent: 179 - type: Transform - - uid: 476 - components: - - pos: -7.5,6.5 - parent: 179 - type: Transform - - uid: 477 - components: - - pos: -7.5,5.5 - parent: 179 - type: Transform - - uid: 486 - components: - - pos: -15.5,5.5 - parent: 179 - type: Transform - - uid: 487 - components: - - pos: -16.5,4.5 - parent: 179 - type: Transform - - uid: 488 - components: - - pos: 5.5,17.5 - parent: 179 - type: Transform - - uid: 489 - components: - - pos: -11.5,0.5 - parent: 179 - type: Transform - - uid: 491 - components: - - pos: -16.5,5.5 - parent: 179 - type: Transform - - uid: 492 - components: - - pos: -14.5,5.5 - parent: 179 - type: Transform - - uid: 494 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,7.5 - parent: 179 - type: Transform - - uid: 495 - components: - - pos: -12.5,5.5 - parent: 179 - type: Transform - - uid: 496 - components: - - pos: -16.5,1.5 - parent: 179 - type: Transform - - uid: 497 - components: - - pos: -16.5,0.5 - parent: 179 - type: Transform - - uid: 498 - components: - - pos: -16.5,-0.5 - parent: 179 - type: Transform - - uid: 499 - components: - - pos: -16.5,-1.5 - parent: 179 - type: Transform - - uid: 500 - components: - - pos: -16.5,-2.5 - parent: 179 - type: Transform - - uid: 501 - components: - - pos: -16.5,-3.5 - parent: 179 - type: Transform - - uid: 502 - components: - - pos: -16.5,-4.5 - parent: 179 - type: Transform - - uid: 503 - components: - - pos: -16.5,-5.5 - parent: 179 - type: Transform - - uid: 504 - components: - - pos: -16.5,-6.5 - parent: 179 - type: Transform - - uid: 505 - components: - - pos: -16.5,-7.5 - parent: 179 - type: Transform - - uid: 506 - components: - - pos: -16.5,-8.5 - parent: 179 - type: Transform - - uid: 507 - components: - - pos: -15.5,-8.5 - parent: 179 - type: Transform - - uid: 508 - components: - - pos: -14.5,-8.5 - parent: 179 - type: Transform - - uid: 509 - components: - - pos: -13.5,-8.5 - parent: 179 - type: Transform - - uid: 510 - components: - - pos: -12.5,-8.5 - parent: 179 - type: Transform - - uid: 511 - components: - - pos: -11.5,-8.5 - parent: 179 - type: Transform - - uid: 517 - components: - - pos: 23.5,11.5 - parent: 179 - type: Transform - - uid: 518 - components: - - pos: 24.5,11.5 - parent: 179 - type: Transform - - uid: 519 - components: - - pos: 25.5,11.5 - parent: 179 - type: Transform - - uid: 535 - components: - - pos: -15.5,0.5 - parent: 179 - type: Transform - - uid: 539 - components: - - pos: 26.5,11.5 - parent: 179 - type: Transform - - uid: 540 - components: - - pos: 27.5,11.5 - parent: 179 - type: Transform - - uid: 545 - components: - - pos: 7.5,-4.5 - parent: 179 - type: Transform - - uid: 546 - components: - - pos: 8.5,-4.5 - parent: 179 - type: Transform - - uid: 547 - components: - - pos: 28.5,11.5 - parent: 179 - type: Transform - - uid: 548 - components: - - pos: 28.5,10.5 - parent: 179 - type: Transform - - uid: 549 - components: - - pos: 28.5,9.5 - parent: 179 - type: Transform - - uid: 550 - components: - - pos: 28.5,8.5 - parent: 179 - type: Transform - - uid: 551 - components: - - pos: 28.5,7.5 - parent: 179 - type: Transform - - uid: 552 - components: - - pos: 28.5,6.5 - parent: 179 - type: Transform - - uid: 553 - components: - - pos: 28.5,5.5 - parent: 179 - type: Transform - - uid: 554 - components: - - pos: 26.5,-2.5 - parent: 179 - type: Transform - - uid: 555 - components: - - pos: 26.5,-1.5 - parent: 179 - type: Transform - - uid: 556 - components: - - pos: 25.5,-0.5 - parent: 179 - type: Transform - - uid: 557 - components: - - pos: 26.5,-0.5 - parent: 179 - type: Transform - - uid: 558 - components: - - pos: 27.5,-0.5 - parent: 179 - type: Transform - - uid: 561 - components: - - pos: -14.5,0.5 - parent: 179 - type: Transform - - uid: 585 - components: - - pos: 9.5,10.5 - parent: 179 - type: Transform - - uid: 597 - components: - - pos: 22.5,-0.5 - parent: 179 - type: Transform - - uid: 598 - components: - - pos: 17.5,-0.5 - parent: 179 - type: Transform - - uid: 599 - components: - - pos: 18.5,-0.5 - parent: 179 - type: Transform - - uid: 600 - components: - - pos: 20.5,-0.5 - parent: 179 - type: Transform - - uid: 601 - components: - - pos: 21.5,-0.5 - parent: 179 - type: Transform - - uid: 602 - components: - - pos: 19.5,-0.5 - parent: 179 - type: Transform - - uid: 603 - components: - - pos: 14.5,3.5 - parent: 179 - type: Transform - - uid: 604 - components: - - pos: 13.5,3.5 - parent: 179 - type: Transform - - uid: 605 - components: - - pos: 12.5,3.5 - parent: 179 - type: Transform - - uid: 606 - components: - - pos: 12.5,2.5 - parent: 179 - type: Transform - - uid: 607 - components: - - pos: 12.5,1.5 - parent: 179 - type: Transform - - uid: 608 - components: - - pos: 12.5,0.5 - parent: 179 - type: Transform - - uid: 609 - components: - - pos: 12.5,-0.5 - parent: 179 - type: Transform - - uid: 610 - components: - - pos: 13.5,-0.5 - parent: 179 - type: Transform - - uid: 611 - components: - - pos: 14.5,-0.5 - parent: 179 - type: Transform - - uid: 612 - components: - - pos: 13.5,-1.5 - parent: 179 - type: Transform - - uid: 613 - components: - - pos: 13.5,-6.5 - parent: 179 - type: Transform - - uid: 614 - components: - - pos: 13.5,-5.5 - parent: 179 - type: Transform - - uid: 615 - components: - - pos: 13.5,-4.5 - parent: 179 - type: Transform - - uid: 616 - components: - - pos: 13.5,-3.5 - parent: 179 - type: Transform - - uid: 617 - components: - - pos: 13.5,-2.5 - parent: 179 - type: Transform - - uid: 618 - components: - - pos: 14.5,-6.5 - parent: 179 - type: Transform - - uid: 619 - components: - - pos: 15.5,-6.5 - parent: 179 - type: Transform - - uid: 620 - components: - - pos: 16.5,-6.5 - parent: 179 - type: Transform - - uid: 621 - components: - - pos: 17.5,-6.5 - parent: 179 - type: Transform - - uid: 622 - components: - - pos: 18.5,-6.5 - parent: 179 - type: Transform - - uid: 623 - components: - - pos: 19.5,-6.5 - parent: 179 - type: Transform - - uid: 624 - components: - - pos: 20.5,-6.5 - parent: 179 - type: Transform - - uid: 625 - components: - - pos: 21.5,-6.5 - parent: 179 - type: Transform - - uid: 626 - components: - - pos: 22.5,-6.5 - parent: 179 - type: Transform - - uid: 627 - components: - - pos: 23.5,-6.5 - parent: 179 - type: Transform - - uid: 628 - components: - - pos: 24.5,-6.5 - parent: 179 - type: Transform - - uid: 629 - components: - - pos: 25.5,-6.5 - parent: 179 - type: Transform - - uid: 630 - components: - - pos: 26.5,-6.5 - parent: 179 - type: Transform - - uid: 631 - components: - - pos: 26.5,-5.5 - parent: 179 - type: Transform - - uid: 632 - components: - - pos: 26.5,-4.5 - parent: 179 - type: Transform - - uid: 633 - components: - - pos: 27.5,-6.5 - parent: 179 - type: Transform - - uid: 634 - components: - - pos: 28.5,-6.5 - parent: 179 - type: Transform - - uid: 635 - components: - - pos: 29.5,-6.5 - parent: 179 - type: Transform - - uid: 636 - components: - - pos: 30.5,-6.5 - parent: 179 - type: Transform - - uid: 637 - components: - - pos: 31.5,-6.5 - parent: 179 - type: Transform - - uid: 638 - components: - - pos: 32.5,-6.5 - parent: 179 - type: Transform - - uid: 639 - components: - - pos: 33.5,-6.5 - parent: 179 - type: Transform - - uid: 640 - components: - - pos: 34.5,-6.5 - parent: 179 - type: Transform - - uid: 641 - components: - - pos: 34.5,-5.5 - parent: 179 - type: Transform - - uid: 642 - components: - - pos: 34.5,-4.5 - parent: 179 - type: Transform - - uid: 643 - components: - - pos: 34.5,-3.5 - parent: 179 - type: Transform - - uid: 644 - components: - - pos: 34.5,-2.5 - parent: 179 - type: Transform - - uid: 645 - components: - - pos: 34.5,-1.5 - parent: 179 - type: Transform - - uid: 646 - components: - - pos: 34.5,-0.5 - parent: 179 - type: Transform - - uid: 647 - components: - - pos: 33.5,-0.5 - parent: 179 - type: Transform - - uid: 648 - components: - - pos: 32.5,-0.5 - parent: 179 - type: Transform - - uid: 649 - components: - - pos: 31.5,-0.5 - parent: 179 - type: Transform - - uid: 650 - components: - - pos: 30.5,-0.5 - parent: 179 - type: Transform - - uid: 651 - components: - - pos: 29.5,-0.5 - parent: 179 - type: Transform - - uid: 652 - components: - - pos: 30.5,0.5 - parent: 179 - type: Transform - - uid: 653 - components: - - pos: 30.5,1.5 - parent: 179 - type: Transform - - uid: 654 - components: - - pos: 30.5,2.5 - parent: 179 - type: Transform - - uid: 655 - components: - - pos: 30.5,3.5 - parent: 179 - type: Transform - - uid: 656 - components: - - pos: 30.5,4.5 - parent: 179 - type: Transform - - uid: 657 - components: - - pos: 29.5,4.5 - parent: 179 - type: Transform - - uid: 658 - components: - - pos: 28.5,4.5 - parent: 179 - type: Transform - - uid: 659 - components: - - pos: 27.5,4.5 - parent: 179 - type: Transform - - uid: 702 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,6.5 - parent: 179 - type: Transform - - uid: 713 - components: - - pos: -7.5,9.5 - parent: 179 - type: Transform - - uid: 714 - components: - - pos: -7.5,10.5 - parent: 179 - type: Transform - - uid: 724 - components: - - pos: -2.5,12.5 - parent: 179 - type: Transform - - uid: 733 - components: - - pos: 4.5,5.5 - parent: 179 - type: Transform - - uid: 734 - components: - - pos: 4.5,4.5 - parent: 179 - type: Transform - - uid: 739 - components: - - pos: 8.5,7.5 - parent: 179 - type: Transform - - uid: 740 - components: - - pos: 8.5,6.5 - parent: 179 - type: Transform - - uid: 741 - components: - - pos: 8.5,5.5 - parent: 179 - type: Transform - - uid: 742 - components: - - pos: 8.5,4.5 - parent: 179 - type: Transform - - uid: 743 - components: - - pos: 8.5,3.5 - parent: 179 - type: Transform - - uid: 745 - components: - - pos: 4.5,7.5 - parent: 179 - type: Transform - - uid: 746 - components: - - pos: 4.5,6.5 - parent: 179 - type: Transform - - uid: 846 - components: - - pos: 2.5,19.5 - parent: 179 - type: Transform - - uid: 847 - components: - - pos: 3.5,19.5 - parent: 179 - type: Transform - - uid: 925 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,17.5 - parent: 179 - type: Transform - - uid: 958 - components: - - rot: 3.141592653589793 rad - pos: 15.5,18.5 - parent: 179 - type: Transform -- proto: WardrobeScience - entities: - - uid: 389 - components: - - pos: 12.5,21.5 - parent: 179 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 453 - components: - - pos: 13.5,21.5 - parent: 179 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: WaterTankFull - entities: - - uid: 115 - components: - - pos: 4.5,18.5 - parent: 179 - type: Transform - - uid: 694 - components: - - pos: -2.5,3.5 - parent: 179 - type: Transform -- proto: WeaponCapacitorRecharger - entities: - - uid: 708 - components: - - pos: -0.5,-3.5 - parent: 179 - type: Transform -- proto: WeaponLaserCarbine - entities: - - uid: 188 - components: - - pos: -3.5226438,-0.45543313 - parent: 179 - type: Transform -- proto: WeaponLauncherMultipleRocket - entities: - - uid: 671 - components: - - pos: -13.195735,9.730438 - parent: 179 - type: Transform -- proto: WeaponLauncherRocket - entities: - - uid: 436 - components: - - pos: -3.478273,-1.1611286 - parent: 179 - type: Transform -- proto: WeaponRifleAk - entities: - - uid: 437 - components: - - pos: -3.5018106,0.24183923 - parent: 179 - type: Transform - - uid: 949 - components: - - pos: -12.238617,9.081488 - parent: 179 - type: Transform -- proto: WelderExperimental - entities: - - uid: 343 - components: - - pos: 0.6895334,4.7183027 - parent: 179 - type: Transform -- proto: WeldingFuelTankFull - entities: - - uid: 693 - components: - - pos: -1.5,3.5 - parent: 179 - type: Transform -- proto: Wirecutter - entities: - - uid: 359 - components: - - pos: -1.6207478,4.3951616 - parent: 179 - type: Transform -- proto: Wrench - entities: - - uid: 327 - components: - - pos: -0.11783123,4.753312 - parent: 179 - type: Transform -... +meta: + format: 5 + postmapinit: false +tilemap: + 0: Space + 69: FloorSteel + 79: FloorTechMaint + 82: FloorWhite + 94: Lattice + 95: Plating +entities: +- proto: "" + entities: + - uid: 179 + components: + - type: MetaData + - parent: 962 + type: Transform + - chunks: + -1,0: + ind: -1,0 + tiles: RQAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXgAAAF4AAABeAAAAXgAAAEUAAABFAAAARQAAAEUAAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF4AAABeAAAAXgAAAF4AAABFAAAARQAAAEUAAABFAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAATwAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEUAAABfAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAE8AAABPAAAATwAAAE8AAABPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABPAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAATwAAAE8AAABPAAAATwAAAE8AAABPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAF8AAABPAAAAXwAAAF8AAABfAAAATwAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAE8AAABfAAAAXwAAAF8AAABPAAAATwAAAE8AAABPAAAATwAAAE8AAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAATwAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAE8AAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABPAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAA== + 0,1: + ind: 0,1 + tiles: XgAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAFIAAABSAAAAUgAAAFIAAABfAAAARQAAAF4AAABfAAAARQAAAEUAAABFAAAATwAAAF8AAABfAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAXwAAAFIAAAAAAAAAXwAAAEUAAABFAAAARQAAAE8AAABfAAAAXwAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAF8AAABfAAAAAAAAAF8AAABFAAAARQAAAF8AAABPAAAAXwAAAF8AAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABfAAAAUgAAAAAAAABfAAAARQAAAEUAAABfAAAATwAAAF8AAABPAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAAAAAAAAXwAAAEUAAABFAAAAXwAAAE8AAABfAAAAXwAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAF8AAABSAAAAAAAAAF8AAABFAAAARQAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAAAAAAABfAAAARQAAAEUAAABfAAAATwAAAF8AAABPAAAATwAAAE8AAABfAAAATwAAAE8AAABfAAAAXwAAAFIAAAAAAAAAXwAAAEUAAABFAAAAXwAAAE8AAABfAAAATwAAAE8AAABPAAAAXwAAAE8AAABPAAAAXwAAAFIAAABSAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABPAAAAXwAAAE8AAABPAAAATwAAAF8AAABPAAAATwAAAF8AAABfAAAAUgAAAAAAAAAAAAAAAAAAAAAAAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFIAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAE8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABSAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABPAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + 0,0: + ind: 0,0 + tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAFIAAABSAAAAUgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABSAAAAUgAAAFIAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABfAAAAUgAAAFIAAABSAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAUgAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAUgAAAFIAAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFIAAABSAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABSAAAAUgAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAUgAAAFIAAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFIAAABSAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAAAUgAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAE8AAABPAAAATwAAAF8AAABPAAAAUgAAAFIAAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF4AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABeAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXgAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + 0,-1: + ind: 0,-1 + tiles: XwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPAAAATwAAAE8AAABPAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPAAAATwAAAE8AAABPAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE8AAABPAAAATwAAAE8AAABfAAAATwAAAE8AAABPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPAAAATwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAE8AAABPAAAATwAAAE8AAABPAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAUgAAAFIAAABfAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFIAAABSAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABSAAAAUgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAUgAAAFIAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFIAAABSAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAUgAAAA== + 1,-1: + ind: 1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABfAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAXwAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABfAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAXwAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFIAAABSAAAAXwAAAF8AAABfAAAAUgAAAF8AAABfAAAAXwAAAA== + -2,0: + ind: -2,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + -2,-1: + ind: -2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARQAAAA== + 1,0: + ind: 1,0 + tiles: UgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABfAAAAAAAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAXwAAAAAAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAF8AAAAAAAAAUgAAAF8AAABfAAAAXwAAAFIAAABfAAAAXwAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABfAAAAAAAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAF8AAABfAAAAUgAAAF8AAABSAAAAXwAAAF8AAABfAAAAXwAAAAAAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABfAAAAUgAAAFIAAABSAAAAUgAAAFIAAABfAAAAAAAAAAAAAAAAAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAXwAAAFIAAABSAAAAUgAAAFIAAABSAAAAXwAAAAAAAAAAAAAAAAAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAF8AAABSAAAAUgAAAFIAAABSAAAAUgAAAF8AAAAAAAAAAAAAAAAAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABfAAAAAAAAAAAAAAAAAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAXwAAAFIAAABSAAAAUgAAAFIAAABSAAAAXwAAAAAAAAAAAAAAAAAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAF8AAABSAAAAUgAAAFIAAABSAAAAUgAAAF8AAAAAAAAAAAAAAAAAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAA== + 2,-1: + ind: 2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFIAAABSAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABSAAAAUgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAFIAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFIAAABSAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABSAAAAUgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + 1,1: + ind: 1,1 + tiles: RQAAAEUAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFIAAABSAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABSAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAFIAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFIAAABSAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABSAAAAUgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAFIAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFIAAABSAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABSAAAAUgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAFIAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFIAAABSAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABSAAAAUgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAFIAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + -1,1: + ind: -1,1 + tiles: AAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + -1,-2: + ind: -1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAA== + type: MapGrid + - type: Broadphase + - angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: [] + type: DecalGrid + - type: OccluderTree + - type: Shuttle + - nextUpdate: 3888.4058032 + type: GridPathfinding + - type: RadiationGridResistance + - nextShake: 0 + shakeTimes: 10 + type: GravityShake + - version: 2 + data: + tiles: + -4,0: + 0: 65535 + -4,1: + 0: 65535 + -3,0: + 0: 65535 + -3,1: + 0: 65535 + -2,0: + 0: 65535 + -2,1: + 0: 65535 + -2,2: + 0: 65535 + -1,0: + 0: 65535 + -1,1: + 0: 65535 + -1,2: + 0: 65535 + -4,-3: + 0: 61440 + -4,-2: + 0: 65535 + -4,-1: + 0: 65535 + -3,-3: + 0: 61440 + -3,-2: + 0: 65535 + -3,-1: + 0: 65535 + -2,-4: + 0: 65520 + -2,-3: + 0: 65535 + -2,-2: + 0: 65535 + -2,-1: + 0: 65535 + -1,-4: + 0: 65520 + -1,-3: + 0: 65535 + -1,-2: + 0: 65535 + -1,-1: + 0: 65535 + 0,4: + 0: 61183 + 0,5: + 0: 61166 + 0,6: + 0: 14 + 1,4: + 0: 65535 + 1,5: + 0: 65535 + 1,6: + 0: 65535 + 1,7: + 0: 15 + 2,4: + 0: 65535 + 2,5: + 0: 65535 + 2,6: + 0: 4095 + 3,4: + 0: 65535 + 3,5: + 0: 65535 + 3,6: + 0: 53247 + 3,7: + 0: 12 + 0,0: + 0: 65535 + 0,1: + 0: 65535 + 0,2: + 0: 65535 + 0,3: + 0: 65535 + 1,0: + 0: 65535 + 1,1: + 0: 65535 + 1,2: + 0: 65535 + 1,3: + 0: 65535 + 2,0: + 0: 4369 + 2,2: + 0: 65535 + 2,3: + 0: 65535 + 3,0: + 0: 65535 + 3,2: + 0: 65535 + 3,3: + 0: 65535 + 3,1: + 0: 61166 + 0,-4: + 0: 65520 + 0,-3: + 0: 65535 + 0,-2: + 0: 65535 + 0,-1: + 0: 65535 + 1,-4: + 0: 30576 + 1,-3: + 0: 65399 + 1,-2: + 0: 63359 + 1,-1: + 0: 65535 + 2,-2: + 0: 4096 + 2,-1: + 0: 4369 + 3,-1: + 0: 65262 + 3,-2: + 0: 61152 + 4,-2: + 0: 65520 + 4,-1: + 0: 65535 + 5,-2: + 0: 65520 + 5,-1: + 0: 65535 + 6,-2: + 0: 65520 + 6,-1: + 0: 65535 + 7,-2: + 0: 65520 + 7,-1: + 0: 65535 + -5,0: + 0: 52428 + -5,-3: + 0: 32768 + -5,-2: + 0: 51336 + -5,-1: + 0: 52428 + 4,0: + 0: 65535 + 4,1: + 0: 65535 + 4,2: + 0: 65535 + 4,3: + 0: 65535 + 5,0: + 0: 65535 + 5,1: + 0: 65535 + 5,2: + 0: 65535 + 5,3: + 0: 65535 + 6,0: + 0: 65535 + 6,1: + 0: 65535 + 6,2: + 0: 65535 + 6,3: + 0: 63351 + 7,0: + 0: 30583 + 7,1: + 0: 4375 + 7,2: + 0: 4369 + 7,3: + 0: 4096 + 8,-2: + 0: 30576 + 8,-1: + 0: 30583 + 4,4: + 0: 30583 + 4,5: + 0: 30583 + 4,6: + 0: 30583 + 4,7: + 0: 7 + -4,2: + 0: 26367 + -1,3: + 0: 15 + 2,1: + 0: 4369 + -5,1: + 0: 52428 + -4,3: + 0: 26222 + -3,3: + 0: 15 + -2,3: + 0: 15 + -4,4: + 0: 238 + -3,4: + 0: 255 + -2,4: + 0: 255 + -1,4: + 0: 255 + -5,2: + 0: 204 + -3,2: + 0: 35071 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - id: Dev + type: BecomesStation + - nextUpdate: 0 + type: SpreaderGrid + - uid: 962 + components: + - type: MetaData + - type: Transform + - type: Map + - type: PhysicsMap + - type: Broadphase + - type: OccluderTree + - type: LoadedMap + - type: GridTree + - type: MovedGrids +- proto: AdvancedCapacitorStockPart + entities: + - uid: 700 + components: + - pos: -3.8324947,8.786524 + parent: 179 + type: Transform +- proto: AirAlarm + entities: + - uid: 800 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 179 + type: Transform + - devices: + - 801 + type: DeviceList +- proto: AirCanister + entities: + - uid: 458 + components: + - pos: 7.5,-0.5 + parent: 179 + type: Transform +- proto: Airlock + entities: + - uid: 48 + components: + - pos: 7.5,20.5 + parent: 179 + type: Transform + - uid: 119 + components: + - pos: 6.5,17.5 + parent: 179 + type: Transform + - uid: 170 + components: + - pos: 13.5,10.5 + parent: 179 + type: Transform + - uid: 378 + components: + - pos: -9.5,0.5 + parent: 179 + type: Transform +- proto: AirlockCargo + entities: + - uid: 87 + components: + - pos: 2.5,-4.5 + parent: 179 + type: Transform +- proto: AirlockEngineering + entities: + - uid: 257 + components: + - pos: -7.5,-6.5 + parent: 179 + type: Transform + - uid: 258 + components: + - pos: 3.5,-4.5 + parent: 179 + type: Transform + - uid: 530 + components: + - pos: -10.5,-6.5 + parent: 179 + type: Transform + - uid: 563 + components: + - pos: -13.5,0.5 + parent: 179 + type: Transform + - uid: 867 + components: + - pos: -12.5,0.5 + parent: 179 + type: Transform +- proto: AirlockExternal + entities: + - uid: 155 + components: + - pos: 26.5,13.5 + parent: 179 + type: Transform + - uid: 203 + components: + - pos: 0.5,-14.5 + parent: 179 + type: Transform + - uid: 255 + components: + - pos: 7.5,-8.5 + parent: 179 + type: Transform + - uid: 256 + components: + - pos: 5.5,-8.5 + parent: 179 + type: Transform + - uid: 318 + components: + - pos: 24.5,13.5 + parent: 179 + type: Transform +- proto: AirlockExternalGlass + entities: + - uid: 216 + components: + - pos: -1.5,-14.5 + parent: 179 + type: Transform +- proto: AirlockGlassShuttle + entities: + - uid: 146 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,9.5 + parent: 179 + type: Transform + - uid: 204 + components: + - pos: -1.5,-16.5 + parent: 179 + type: Transform +- proto: AirlockMedicalGlass + entities: + - uid: 177 + components: + - pos: 26.5,4.5 + parent: 179 + type: Transform + - uid: 178 + components: + - pos: 20.5,3.5 + parent: 179 + type: Transform + - uid: 206 + components: + - pos: 16.5,3.5 + parent: 179 + type: Transform + - uid: 207 + components: + - pos: 15.5,3.5 + parent: 179 + type: Transform + - uid: 369 + components: + - pos: 26.5,-3.5 + parent: 179 + type: Transform + - uid: 370 + components: + - pos: 28.5,-0.5 + parent: 179 + type: Transform +- proto: AirlockScience + entities: + - uid: 24 + components: + - pos: 14.5,24.5 + parent: 179 + type: Transform + - uid: 47 + components: + - pos: 16.5,18.5 + parent: 179 + type: Transform + - uid: 102 + components: + - pos: 16.5,15.5 + parent: 179 + type: Transform +- proto: AirlockScienceGlass + entities: + - uid: 26 + components: + - pos: 14.5,20.5 + parent: 179 + type: Transform +- proto: AirlockShuttle + entities: + - uid: 116 + components: + - pos: 0.5,-16.5 + parent: 179 + type: Transform +- proto: AirSensor + entities: + - uid: 801 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 179 + type: Transform +- proto: AlwaysPoweredLightLED + entities: + - uid: 59 + components: + - pos: -14.5,-0.5 + parent: 179 + type: Transform + - uid: 330 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,8.5 + parent: 179 + type: Transform + - uid: 398 + components: + - pos: 4.5,-5.5 + parent: 179 + type: Transform + - uid: 451 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,9.5 + parent: 179 + type: Transform + - uid: 512 + components: + - rot: 3.141592653589793 rad + pos: -14.5,6.5 + parent: 179 + type: Transform + - uid: 662 + components: + - pos: 11.5,14.5 + parent: 179 + type: Transform + - uid: 664 + components: + - rot: 3.141592653589793 rad + pos: 22.5,12.5 + parent: 179 + type: Transform + - uid: 667 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,10.5 + parent: 179 + type: Transform + - uid: 669 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,4.5 + parent: 179 + type: Transform + - uid: 852 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,0.5 + parent: 179 + type: Transform + - uid: 907 + components: + - pos: -4.5,-5.5 + parent: 179 + type: Transform + - uid: 910 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 179 + type: Transform + - uid: 913 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-3.5 + parent: 179 + type: Transform + - uid: 914 + components: + - pos: 4.5,3.5 + parent: 179 + type: Transform + - uid: 915 + components: + - pos: 6.5,7.5 + parent: 179 + type: Transform + - uid: 916 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,7.5 + parent: 179 + type: Transform + - uid: 917 + components: + - pos: -2.5,10.5 + parent: 179 + type: Transform + - uid: 918 + components: + - pos: 3.5,18.5 + parent: 179 + type: Transform + - uid: 921 + components: + - rot: 3.141592653589793 rad + pos: -13.5,1.5 + parent: 179 + type: Transform + - uid: 922 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,16.5 + parent: 179 + type: Transform + - uid: 923 + components: + - rot: 3.141592653589793 rad + pos: -7.5,12.5 + parent: 179 + type: Transform + - uid: 924 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,6.5 + parent: 179 + type: Transform + - uid: 926 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,17.5 + parent: 179 + type: Transform + - uid: 953 + components: + - pos: -14.5,16.5 + parent: 179 + type: Transform + - uid: 957 + components: + - rot: 3.141592653589793 rad + pos: 11.5,16.5 + parent: 179 + type: Transform +- proto: AlwaysPoweredWallLight + entities: + - uid: 1047 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-13.5 + parent: 179 + type: Transform +- proto: APCBasic + entities: + - uid: 753 + components: + - pos: -2.5,11.5 + parent: 179 + type: Transform + - startingCharge: 500000000 + maxCharge: 500000000 + type: Battery + - supplyRampRate: 50000 + supplyRampTolerance: 100000 + maxSupply: 1000000 + maxChargeRate: 500000 + type: PowerNetworkBattery + - uid: 1015 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-14.5 + parent: 179 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 992 + components: + - pos: -1.5,-16.5 + parent: 179 + type: Transform + - uid: 993 + components: + - pos: 0.5,-16.5 + parent: 179 + type: Transform +- proto: Autolathe + entities: + - uid: 1 + components: + - pos: 13.5,18.5 + parent: 179 + type: Transform + - uid: 94 + components: + - pos: -4.5,-5.5 + parent: 179 + type: Transform + - uid: 446 + components: + - pos: -6.5,5.5 + parent: 179 + type: Transform + - uid: 528 + components: + - pos: -12.5,-7.5 + parent: 179 + type: Transform + - uid: 531 + components: + - pos: -13.5,-7.5 + parent: 179 + type: Transform + - uid: 532 + components: + - pos: -14.5,-7.5 + parent: 179 + type: Transform +- proto: BaseResearchAndDevelopmentPointSource + entities: + - uid: 58 + components: + - pos: 13.5,16.5 + parent: 179 + type: Transform +- proto: BaseUplinkRadioDebug + entities: + - uid: 732 + components: + - pos: 0.6038008,7.5209107 + parent: 179 + type: Transform +- proto: Basketball + entities: + - uid: 951 + components: + - pos: -9.702013,9.68404 + parent: 179 + type: Transform + - uid: 952 + components: + - pos: -10.879096,9.579802 + parent: 179 + type: Transform +- proto: Beaker + entities: + - uid: 174 + components: + - pos: 25.291822,10.667244 + parent: 179 + type: Transform + - uid: 175 + components: + - pos: 24.541822,10.635994 + parent: 179 + type: Transform + - uid: 176 + components: + - pos: 26.416822,10.651619 + parent: 179 + type: Transform + - uid: 324 + components: + - pos: 4.718221,9.39097 + parent: 179 + type: Transform + - uid: 735 + components: + - pos: 4.739054,9.807927 + parent: 179 + type: Transform + - uid: 920 + components: + - pos: -4.293744,10.966518 + parent: 179 + type: Transform + - uid: 950 + components: + - pos: -4.293744,10.966518 + parent: 179 + type: Transform +- proto: BikeHorn + entities: + - uid: 672 + components: + - pos: 1.1246341,7.500063 + parent: 179 + type: Transform +- proto: BlastDoor + entities: + - uid: 202 + components: + - pos: -2.5,-14.5 + parent: 179 + type: Transform + - links: + - 1013 + type: DeviceLinkSink + - uid: 697 + components: + - pos: 1.5,-14.5 + parent: 179 + type: Transform + - links: + - 1014 + type: DeviceLinkSink + - uid: 698 + components: + - pos: 1.5,-16.5 + parent: 179 + type: Transform + - links: + - 1014 + type: DeviceLinkSink + - uid: 984 + components: + - pos: -2.5,-16.5 + parent: 179 + type: Transform + - links: + - 1013 + type: DeviceLinkSink +- proto: BoozeDispenser + entities: + - uid: 752 + components: + - pos: 7.5,12.5 + parent: 179 + type: Transform +- proto: BoxBeaker + entities: + - uid: 280 + components: + - pos: 5.163024,9.63072 + parent: 179 + type: Transform +- proto: Brutepack + entities: + - uid: 150 + components: + - pos: 18.601385,5.512907 + parent: 179 + type: Transform + - uid: 151 + components: + - pos: 18.476385,4.841032 + parent: 179 + type: Transform +- proto: Bucket + entities: + - uid: 691 + components: + - pos: 7.1447573,15.900927 + parent: 179 + type: Transform +- proto: CableApcExtension + entities: + - uid: 281 + components: + - pos: -13.5,4.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 736 + components: + - pos: -2.5,9.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 760 + components: + - pos: -2.5,10.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 761 + components: + - pos: -15.5,5.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 763 + components: + - pos: -2.5,11.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 764 + components: + - pos: -1.5,11.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 765 + components: + - pos: -7.5,0.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 766 + components: + - pos: -0.5,11.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 767 + components: + - pos: -3.5,10.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 768 + components: + - pos: -4.5,10.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 769 + components: + - pos: -5.5,10.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 770 + components: + - pos: -6.5,10.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 771 + components: + - pos: -2.5,8.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 772 + components: + - pos: -2.5,7.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 773 + components: + - pos: -2.5,6.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 774 + components: + - pos: -2.5,5.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 775 + components: + - pos: -3.5,5.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 776 + components: + - pos: -4.5,5.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 777 + components: + - pos: -5.5,5.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 778 + components: + - pos: -6.5,5.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 779 + components: + - pos: -6.5,4.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 780 + components: + - pos: -7.5,4.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 781 + components: + - pos: -8.5,4.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 782 + components: + - pos: -9.5,4.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 783 + components: + - pos: -10.5,4.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 784 + components: + - pos: -11.5,4.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 785 + components: + - pos: -12.5,4.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 786 + components: + - pos: -12.5,3.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 787 + components: + - pos: -12.5,2.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 788 + components: + - pos: -12.5,1.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 789 + components: + - pos: -12.5,0.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 790 + components: + - pos: -12.5,-0.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 791 + components: + - pos: -2.5,4.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 792 + components: + - pos: -2.5,2.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 793 + components: + - pos: -2.5,1.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 794 + components: + - pos: -2.5,0.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 795 + components: + - pos: -2.5,3.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 796 + components: + - pos: -2.5,-0.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 797 + components: + - pos: -2.5,-1.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 798 + components: + - pos: -2.5,-2.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 799 + components: + - pos: -2.5,-3.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 802 + components: + - pos: -8.5,0.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 803 + components: + - pos: 2.5,-2.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 804 + components: + - pos: 2.5,-3.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 805 + components: + - pos: -9.5,0.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 806 + components: + - pos: -10.5,0.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 807 + components: + - pos: -14.5,0.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 808 + components: + - pos: -11.5,0.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 809 + components: + - pos: -15.5,0.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 810 + components: + - pos: -15.5,0.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 811 + components: + - pos: -16.5,0.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 812 + components: + - pos: -16.5,5.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 813 + components: + - pos: -16.5,4.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 814 + components: + - pos: -16.5,3.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 815 + components: + - pos: -16.5,2.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 816 + components: + - pos: -16.5,1.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 817 + components: + - pos: 7.5,5.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 818 + components: + - pos: 7.5,7.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 819 + components: + - pos: 7.5,8.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 820 + components: + - pos: 7.5,9.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 821 + components: + - pos: 8.5,9.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 822 + components: + - pos: 6.5,9.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 823 + components: + - pos: 5.5,9.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 824 + components: + - pos: 4.5,9.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 825 + components: + - pos: 8.5,10.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 826 + components: + - pos: 8.5,11.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 827 + components: + - pos: 8.5,12.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 828 + components: + - pos: 7.5,12.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 829 + components: + - pos: 7.5,11.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 830 + components: + - pos: 2.5,-5.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 831 + components: + - pos: 2.5,-4.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 832 + components: + - pos: 1.5,-5.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 833 + components: + - pos: 0.5,-5.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 834 + components: + - pos: -0.5,-5.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 835 + components: + - pos: -1.5,-5.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 836 + components: + - pos: -2.5,-5.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 837 + components: + - pos: -3.5,-5.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 838 + components: + - pos: -4.5,-5.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 839 + components: + - pos: 1.5,11.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 840 + components: + - pos: 2.5,11.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 841 + components: + - pos: 0.5,11.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 842 + components: + - pos: 2.5,12.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 843 + components: + - pos: 2.5,13.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 844 + components: + - pos: 2.5,14.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 845 + components: + - pos: 2.5,15.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 853 + components: + - pos: -3.5,-3.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 854 + components: + - pos: -4.5,-3.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 855 + components: + - pos: -5.5,-3.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 856 + components: + - pos: -6.5,-3.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 857 + components: + - pos: -6.5,-2.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 858 + components: + - pos: -6.5,-1.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 859 + components: + - pos: -6.5,-0.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 860 + components: + - pos: -6.5,0.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 861 + components: + - pos: -6.5,1.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 862 + components: + - pos: -6.5,2.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 872 + components: + - pos: 7.5,6.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 877 + components: + - pos: -6.5,3.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 878 + components: + - pos: -2.5,-4.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 879 + components: + - pos: -1.5,-4.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 880 + components: + - pos: -0.5,-4.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 881 + components: + - pos: 0.5,-4.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 882 + components: + - pos: 1.5,-4.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 883 + components: + - pos: 2.5,-4.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 884 + components: + - pos: 3.5,-4.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 885 + components: + - pos: 4.5,-4.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 886 + components: + - pos: 5.5,-4.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 887 + components: + - pos: 6.5,-4.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 888 + components: + - pos: 7.5,-4.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 889 + components: + - pos: 8.5,-4.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 890 + components: + - pos: 8.5,-3.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 891 + components: + - pos: 8.5,-2.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 892 + components: + - pos: 8.5,-1.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 893 + components: + - pos: 8.5,-0.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 894 + components: + - pos: 8.5,0.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 895 + components: + - pos: 8.5,1.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 896 + components: + - pos: 8.5,2.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 897 + components: + - pos: 8.5,3.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 898 + components: + - pos: 8.5,4.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 899 + components: + - pos: 8.5,5.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 900 + components: + - pos: -14.5,5.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 905 + components: + - pos: -12.5,5.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 906 + components: + - pos: -14.5,4.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 908 + components: + - pos: -15.5,4.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 970 + components: + - pos: 9.5,12.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 971 + components: + - pos: 10.5,12.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 972 + components: + - pos: 11.5,12.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 973 + components: + - pos: 12.5,12.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 974 + components: + - pos: 13.5,12.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 1026 + components: + - pos: -5.5,-14.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 1027 + components: + - pos: -5.5,-13.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 1028 + components: + - pos: -5.5,-12.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 1029 + components: + - pos: -4.5,-12.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 1030 + components: + - pos: -3.5,-12.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 1031 + components: + - pos: -2.5,-12.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 1032 + components: + - pos: -1.5,-12.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 1033 + components: + - pos: -0.5,-12.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 1034 + components: + - pos: 0.5,-12.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 1035 + components: + - pos: 1.5,-12.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 1036 + components: + - pos: 2.5,-12.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 1037 + components: + - pos: 3.5,-12.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 1038 + components: + - pos: 0.5,-13.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 1039 + components: + - pos: 0.5,-14.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 1040 + components: + - pos: 0.5,-15.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 1041 + components: + - pos: -1.5,-13.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 1042 + components: + - pos: -1.5,-14.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 1043 + components: + - pos: -1.5,-15.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 1044 + components: + - pos: 4.5,-12.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 1045 + components: + - pos: 4.5,-13.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures +- proto: CableApcStack + entities: + - uid: 70 + components: + - pos: 10.577456,21.424059 + parent: 179 + type: Transform + - uid: 183 + components: + - pos: -6.6863613,7.351646 + parent: 179 + type: Transform + - uid: 351 + components: + - pos: 10.561831,21.767809 + parent: 179 + type: Transform + - uid: 537 + components: + - pos: -15.5,-0.5 + parent: 179 + type: Transform + - uid: 538 + components: + - pos: -15.5,-0.5 + parent: 179 + type: Transform +- proto: CableHV + entities: + - uid: 1019 + components: + - pos: -6.5,-13.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 1020 + components: + - pos: -6.5,-12.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 1021 + components: + - pos: -6.5,-11.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures +- proto: CableHVStack + entities: + - uid: 184 + components: + - pos: -6.665528,7.840053 + parent: 179 + type: Transform +- proto: CableMV + entities: + - uid: 1023 + components: + - pos: -6.5,-13.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 1024 + components: + - pos: -5.5,-13.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 1025 + components: + - pos: -5.5,-14.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures +- proto: CableMVStack + entities: + - uid: 325 + components: + - pos: -6.665528,7.5601244 + parent: 179 + type: Transform +- proto: CableTerminal + entities: + - uid: 1022 + components: + - pos: -6.5,-11.5 + parent: 179 + type: Transform +- proto: CapacitorStockPart + entities: + - uid: 701 + components: + - pos: -3.2804112,8.786524 + parent: 179 + type: Transform +- proto: CaptainIDCard + entities: + - uid: 726 + components: + - pos: 1.0820513,8.752605 + parent: 179 + type: Transform +- proto: CaptainSabre + entities: + - uid: 381 + components: + - pos: -3.277628,-2.15838 + parent: 179 + type: Transform +- proto: Catwalk + entities: + - uid: 2 + components: + - pos: 13.5,24.5 + parent: 179 + type: Transform + - uid: 7 + components: + - pos: 6.5,24.5 + parent: 179 + type: Transform + - uid: 20 + components: + - pos: 6.5,20.5 + parent: 179 + type: Transform + - uid: 120 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,18.5 + parent: 179 + type: Transform + - uid: 246 + components: + - pos: -6.5,-6.5 + parent: 179 + type: Transform + - uid: 247 + components: + - pos: -8.5,-6.5 + parent: 179 + type: Transform + - uid: 252 + components: + - pos: 4.5,-8.5 + parent: 179 + type: Transform + - uid: 269 + components: + - pos: 12.5,10.5 + parent: 179 + type: Transform + - uid: 286 + components: + - pos: 2.5,-11.5 + parent: 179 + type: Transform + - uid: 287 + components: + - pos: -4.5,-11.5 + parent: 179 + type: Transform + - uid: 308 + components: + - pos: -2.5,-12.5 + parent: 179 + type: Transform + - uid: 309 + components: + - pos: 1.5,-12.5 + parent: 179 + type: Transform + - uid: 333 + components: + - pos: 4.5,-13.5 + parent: 179 + type: Transform + - uid: 334 + components: + - pos: -5.5,-13.5 + parent: 179 + type: Transform + - uid: 345 + components: + - anchored: False + rot: -1.5707963267949 rad + pos: 9.5,0.5 + parent: 179 + type: Transform + - uid: 346 + components: + - anchored: False + rot: -1.5707963267949 rad + pos: 9.5,1.5 + parent: 179 + type: Transform + - uid: 347 + components: + - anchored: False + rot: -1.5707963267949 rad + pos: 9.5,2.5 + parent: 179 + type: Transform + - uid: 348 + components: + - anchored: False + rot: -1.5707963267949 rad + pos: 9.5,3.5 + parent: 179 + type: Transform + - uid: 349 + components: + - anchored: False + rot: -1.5707963267949 rad + pos: 9.5,4.5 + parent: 179 + type: Transform + - uid: 403 + components: + - anchored: False + rot: -1.5707963267949 rad + pos: 9.5,-0.5 + parent: 179 + type: Transform + - uid: 404 + components: + - anchored: False + rot: -1.5707963267949 rad + pos: 9.5,-1.5 + parent: 179 + type: Transform + - uid: 405 + components: + - anchored: False + rot: -1.5707963267949 rad + pos: 9.5,-2.5 + parent: 179 + type: Transform + - uid: 406 + components: + - anchored: False + rot: -1.5707963267949 rad + pos: 9.5,-3.5 + parent: 179 + type: Transform + - uid: 407 + components: + - anchored: False + rot: -1.5707963267949 rad + pos: 9.5,-4.5 + parent: 179 + type: Transform + - uid: 408 + components: + - anchored: False + rot: -1.5707963267949 rad + pos: 9.5,-5.5 + parent: 179 + type: Transform + - uid: 409 + components: + - anchored: False + rot: -1.5707963267949 rad + pos: 9.5,-6.5 + parent: 179 + type: Transform + - uid: 410 + components: + - anchored: False + rot: -1.5707963267949 rad + pos: 9.5,-7.5 + parent: 179 + type: Transform + - uid: 411 + components: + - anchored: False + rot: -1.5707963267949 rad + pos: 9.5,-8.5 + parent: 179 + type: Transform + - uid: 412 + components: + - anchored: False + rot: -1.5707963267949 rad + pos: 9.5,-9.5 + parent: 179 + type: Transform + - uid: 413 + components: + - anchored: False + rot: -1.5707963267949 rad + pos: 9.5,-10.5 + parent: 179 + type: Transform + - uid: 414 + components: + - anchored: False + rot: -1.5707963267949 rad + pos: 9.5,-11.5 + parent: 179 + type: Transform + - uid: 415 + components: + - anchored: False + rot: -1.5707963267949 rad + pos: 8.5,-8.5 + parent: 179 + type: Transform + - uid: 438 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-0.5 + parent: 179 + type: Transform + - uid: 442 + components: + - pos: -9.5,8.5 + parent: 179 + type: Transform + - uid: 514 + components: + - pos: -10.5,8.5 + parent: 179 + type: Transform + - uid: 541 + components: + - pos: -11.5,-6.5 + parent: 179 + type: Transform + - uid: 542 + components: + - pos: -9.5,-6.5 + parent: 179 + type: Transform + - uid: 695 + components: + - rot: 3.141592653589793 rad + pos: -8.5,8.5 + parent: 179 + type: Transform +- proto: Chair + entities: + - uid: 90 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,17.5 + parent: 179 + type: Transform + - uid: 580 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,6.5 + parent: 179 + type: Transform + - uid: 581 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,8.5 + parent: 179 + type: Transform + - uid: 582 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,7.5 + parent: 179 + type: Transform +- proto: ChairOfficeDark + entities: + - uid: 380 + components: + - rot: 3.1415926535897967 rad + pos: 0.5,-6.5 + parent: 179 + type: Transform +- proto: ChairOfficeLight + entities: + - uid: 88 + components: + - rot: 4.71238898038469 rad + pos: 9.5,18.5 + parent: 179 + type: Transform + - uid: 576 + components: + - rot: 4.71238898038469 rad + pos: 19.5,4.5 + parent: 179 + type: Transform + - uid: 577 + components: + - rot: 3.141592653589793 rad + pos: 20.5,5.5 + parent: 179 + type: Transform + - uid: 578 + components: + - rot: 4.71238898038469 rad + pos: 23.5,8.5 + parent: 179 + type: Transform + - uid: 579 + components: + - pos: 24.5,5.5 + parent: 179 + type: Transform +- proto: chem_master + entities: + - uid: 311 + components: + - pos: 8.5,11.5 + parent: 179 + type: Transform +- proto: ChemDispenser + entities: + - uid: 583 + components: + - pos: 23.5,9.5 + parent: 179 + type: Transform + - containers: + ReagentDispenser-beaker: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + beakerSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 750 + components: + - pos: 7.5,11.5 + parent: 179 + type: Transform +- proto: ChemicalPayload + entities: + - uid: 432 + components: + - pos: 6.4651074,9.828774 + parent: 179 + type: Transform +- proto: ChemMasterMachineCircuitboard + entities: + - uid: 718 + components: + - pos: -4.5458,10.514079 + parent: 179 + type: Transform +- proto: CircuitImprinter + entities: + - uid: 332 + components: + - pos: -6.5,4.5 + parent: 179 + type: Transform +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 319 + components: + - pos: 1.5,-10.5 + parent: 179 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 322 + components: + - pos: 0.5,-10.5 + parent: 179 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: ClosetToolFilled + entities: + - uid: 524 + components: + - pos: -11.5,-5.5 + parent: 179 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 525 + components: + - pos: -11.5,-4.5 + parent: 179 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 526 + components: + - pos: -11.5,-3.5 + parent: 179 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 527 + components: + - pos: -11.5,-2.5 + parent: 179 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: ClothingBeltUtilityFilled + entities: + - uid: 427 + components: + - pos: -1.895102,-10.33495 + parent: 179 + type: Transform + - uid: 428 + components: + - pos: -1.770102,-10.63182 + parent: 179 + type: Transform +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 454 + components: + - pos: -0.78741443,4.322194 + parent: 179 + type: Transform +- proto: ClothingHeadHatWelding + entities: + - uid: 344 + components: + - pos: 0.7198646,4.374314 + parent: 179 + type: Transform +- proto: ClothingMaskBreath + entities: + - uid: 955 + components: + - pos: -10.595239,6.1907988 + parent: 179 + type: Transform +- proto: ClothingMaskGas + entities: + - uid: 425 + components: + - pos: -0.2880585,-10.69432 + parent: 179 + type: Transform +- proto: ClothingOuterHardsuitAtmos + entities: + - uid: 270 + components: + - pos: -10.5426235,5.472399 + parent: 179 + type: Transform +- proto: ClothingOuterVest + entities: + - uid: 426 + components: + - pos: -0.9130585,-10.66307 + parent: 179 + type: Transform +- proto: ClothingShoesBootsMag + entities: + - uid: 725 + components: + - pos: 0.47880077,8.073378 + parent: 179 + type: Transform +- proto: ClothingUniformJumpsuitEngineering + entities: + - uid: 424 + components: + - pos: -0.6474335,-10.27245 + parent: 179 + type: Transform +- proto: ClownPDA + entities: + - uid: 91 + components: + - pos: -15.5,2.5 + parent: 179 + type: Transform + - uid: 762 + components: + - pos: -14.5,1.5 + parent: 179 + type: Transform + - uid: 864 + components: + - pos: -14.5,2.5 + parent: 179 + type: Transform + - uid: 912 + components: + - pos: -15.5,1.5 + parent: 179 + type: Transform +- proto: ComputerCargoOrders + entities: + - uid: 326 + components: + - pos: 0.5,-5.5 + parent: 179 + type: Transform + - uid: 996 + components: + - pos: -1.5,-11.5 + parent: 179 + type: Transform +- proto: ComputerCargoShuttle + entities: + - uid: 995 + components: + - pos: 0.5,-11.5 + parent: 179 + type: Transform +- proto: ComputerMedicalRecords + entities: + - uid: 152 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-5.5 + parent: 179 + type: Transform + - uid: 591 + components: + - pos: 21.5,5.5 + parent: 179 + type: Transform +- proto: ComputerResearchAndDevelopment + entities: + - uid: 17 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,18.5 + parent: 179 + type: Transform +- proto: ComputerShuttleCargo + entities: + - uid: 994 + components: + - pos: -0.5,-11.5 + parent: 179 + type: Transform +- proto: ConveyorBelt + entities: + - uid: 195 + components: + - pos: -2.5,-15.5 + parent: 179 + type: Transform + - links: + - 699 + type: DeviceLinkSink + - uid: 259 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-14.5 + parent: 179 + type: Transform + - links: + - 983 + type: DeviceLinkSink + - uid: 463 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-16.5 + parent: 179 + type: Transform + - links: + - 983 + type: DeviceLinkSink + - uid: 677 + components: + - pos: -2.5,-14.5 + parent: 179 + type: Transform + - uid: 716 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,11.5 + parent: 179 + type: Transform + - inputs: + Reverse: + - port: Right + uid: 722 + Forward: + - port: Left + uid: 722 + Off: + - port: Middle + uid: 722 + type: SignalReceiver + - uid: 720 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,11.5 + parent: 179 + type: Transform + - inputs: + Reverse: + - port: Right + uid: 722 + Forward: + - port: Left + uid: 722 + Off: + - port: Middle + uid: 722 + type: SignalReceiver + - uid: 721 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,11.5 + parent: 179 + type: Transform + - inputs: + Reverse: + - port: Right + uid: 722 + Forward: + - port: Left + uid: 722 + Off: + - port: Middle + uid: 722 + type: SignalReceiver + - uid: 985 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-13.5 + parent: 179 + type: Transform + - links: + - 983 + type: DeviceLinkSink + - uid: 989 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-15.5 + parent: 179 + type: Transform + - links: + - 983 + type: DeviceLinkSink + - uid: 990 + components: + - pos: -2.5,-13.5 + parent: 179 + type: Transform + - links: + - 699 + type: DeviceLinkSink + - uid: 991 + components: + - pos: -2.5,-16.5 + parent: 179 + type: Transform + - links: + - 699 + type: DeviceLinkSink +- proto: CrateEngineeringToolbox + entities: + - uid: 692 + components: + - pos: -0.5,3.5 + parent: 179 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrateGeneric + entities: + - uid: 266 + components: + - pos: 5.5,-6.5 + parent: 179 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrateHydroponicsSeeds + entities: + - uid: 754 + components: + - pos: 2.5,12.5 + parent: 179 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrateHydroponicsTools + entities: + - uid: 755 + components: + - pos: 2.5,13.5 + parent: 179 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrateMedical + entities: + - uid: 131 + components: + - pos: 31.5,-1.5 + parent: 179 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 132 + components: + - pos: 32.5,-1.5 + parent: 179 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: Crowbar + entities: + - uid: 147 + components: + - pos: -2.172831,4.5306726 + parent: 179 + type: Transform + - uid: 423 + components: + - pos: -2.861032,-5.524786 + parent: 179 + type: Transform +- proto: DebugBatteryDischarger + entities: + - uid: 711 + components: + - pos: 0.5,-3.5 + parent: 179 + type: Transform +- proto: DisposalPipe + entities: + - uid: 717 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,10.5 + parent: 179 + type: Transform +- proto: DisposalTrunk + entities: + - uid: 285 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,10.5 + parent: 179 + type: Transform + - uid: 715 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,10.5 + parent: 179 + type: Transform +- proto: DisposalUnit + entities: + - uid: 719 + components: + - pos: -1.5,10.5 + parent: 179 + type: Transform +- proto: DrinkBeerglass + entities: + - uid: 688 + components: + - pos: 3.1981986,5.733985 + parent: 179 + type: Transform +- proto: DrinkColaCan + entities: + - uid: 690 + components: + - pos: 3.8231986,6.150942 + parent: 179 + type: Transform +- proto: Dropper + entities: + - uid: 730 + components: + - pos: 5.892191,9.4118185 + parent: 179 + type: Transform +- proto: EmergencyOxygenTankFilled + entities: + - uid: 956 + components: + - pos: -10.505015,6.711994 + parent: 179 + type: Transform +- proto: ExGrenade + entities: + - uid: 433 + components: + - pos: -3.7704864,-1.6163371 + parent: 179 + type: Transform +- proto: ExplosivePayload + entities: + - uid: 668 + components: + - pos: 6.829691,9.4118185 + parent: 179 + type: Transform +- proto: FaxMachineCaptain + entities: + - uid: 967 + components: + - pos: 9.5,12.5 + parent: 179 + type: Transform +- proto: FaxMachineCentcom + entities: + - uid: 968 + components: + - pos: 11.5,12.5 + parent: 179 + type: Transform +- proto: FaxMachineSyndie + entities: + - uid: 969 + components: + - pos: 13.5,12.5 + parent: 179 + type: Transform +- proto: FemtoManipulatorStockPart + entities: + - uid: 712 + components: + - pos: -6.7434506,8.817795 + parent: 179 + type: Transform +- proto: FireExtinguisher + entities: + - uid: 323 + components: + - pos: -1.297692,-5.396082 + parent: 179 + type: Transform + - uid: 868 + components: + - pos: -14.5,-1.5 + parent: 179 + type: Transform +- proto: FlashlightLantern + entities: + - uid: 421 + components: + - pos: -1.934832,-5.154238 + parent: 179 + type: Transform + - uid: 422 + components: + - pos: 1.1350493,8.198464 + parent: 179 + type: Transform + - toggleAction: + sound: null + itemIconStyle: BigItem + icon: + sprite: Objects/Tools/flashlight.rsi + state: flashlight + iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png + iconColor: '#FFFFFFFF' + name: action-name-toggle-light + description: action-description-toggle-light + keywords: [] + enabled: True + useDelay: null + charges: null + checkCanInteract: True + clientExclusive: False + priority: 0 + autoPopulate: True + autoRemove: True + temporary: False + event: !type:ToggleActionEvent {} + type: HandheldLight +- proto: FloorLavaEntity + entities: + - uid: 134 + components: + - pos: -13.5,-3.5 + parent: 179 + type: Transform + - uid: 135 + components: + - pos: -14.5,-3.5 + parent: 179 + type: Transform + - uid: 141 + components: + - pos: -13.5,-2.5 + parent: 179 + type: Transform + - uid: 469 + components: + - pos: -14.5,-2.5 + parent: 179 + type: Transform +- proto: FloorWaterEntity + entities: + - uid: 136 + components: + - pos: -12.5,-2.5 + parent: 179 + type: Transform + - uid: 137 + components: + - pos: -12.5,-3.5 + parent: 179 + type: Transform +- proto: FoodApple + entities: + - uid: 16 + components: + - pos: 3.9853282,16.430082 + parent: 179 + type: Transform + - uid: 849 + components: + - pos: 3.7249117,16.242453 + parent: 179 + type: Transform + - uid: 866 + components: + - pos: 3.651995,16.55517 + parent: 179 + type: Transform +- proto: FoodBurgerBacon + entities: + - uid: 689 + components: + - pos: 3.3844857,6.0702233 + parent: 179 + type: Transform +- proto: FoodCarrot + entities: + - uid: 850 + components: + - pos: 3.6023045,15.67151 + parent: 179 + type: Transform + - uid: 851 + components: + - pos: 3.620745,15.015423 + parent: 179 + type: Transform + - uid: 863 + components: + - pos: 3.620745,14.389988 + parent: 179 + type: Transform +- proto: FoodPizzaPineapple + entities: + - uid: 687 + components: + - pos: 3.5215416,6.799056 + parent: 179 + type: Transform +- proto: GasAnalyzer + entities: + - uid: 876 + components: + - pos: 4.4732866,-0.48882532 + parent: 179 + type: Transform +- proto: GasFilter + entities: + - uid: 480 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 179 + type: Transform +- proto: GasMixer + entities: + - uid: 747 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 179 + type: Transform +- proto: GasOutletInjector + entities: + - uid: 429 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 179 + type: Transform +- proto: GasPipeBend + entities: + - uid: 727 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound +- proto: GasPipeFourway + entities: + - uid: 728 + components: + - pos: 5.5,-1.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound +- proto: GasPipeStraight + entities: + - uid: 749 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound +- proto: GasPipeTJunction + entities: + - uid: 748 + components: + - pos: 5.5,-2.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound +- proto: GasPort + entities: + - uid: 457 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 179 + type: Transform +- proto: GasPressurePump + entities: + - uid: 171 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 179 + type: Transform +- proto: GasValve + entities: + - uid: 168 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 179 + type: Transform +- proto: GasVentPump + entities: + - uid: 729 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 179 + type: Transform + - enabled: False + type: AmbientSound +- proto: GasVentScrubber + entities: + - uid: 452 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 179 + type: Transform + - enabled: False + type: AmbientSound +- proto: GasVolumePump + entities: + - uid: 160 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 179 + type: Transform +- proto: GeigerCounter + entities: + - uid: 759 + components: + - pos: 1.760596,4.5697265 + parent: 179 + type: Transform +- proto: GeneratorUranium + entities: + - uid: 1016 + components: + - pos: -6.5,-11.5 + parent: 179 + type: Transform +- proto: GravityGenerator + entities: + - uid: 744 + components: + - pos: 6.5,6.5 + parent: 179 + type: Transform +- proto: Grille + entities: + - uid: 986 + components: + - pos: -0.5,-16.5 + parent: 179 + type: Transform + - uid: 987 + components: + - pos: -0.5,-15.5 + parent: 179 + type: Transform + - uid: 988 + components: + - pos: -0.5,-14.5 + parent: 179 + type: Transform + - uid: 1007 + components: + - pos: -3.5,-16.5 + parent: 179 + type: Transform + - uid: 1008 + components: + - pos: -3.5,-15.5 + parent: 179 + type: Transform + - uid: 1009 + components: + - pos: -3.5,-14.5 + parent: 179 + type: Transform + - uid: 1010 + components: + - pos: 2.5,-16.5 + parent: 179 + type: Transform + - uid: 1011 + components: + - pos: 2.5,-15.5 + parent: 179 + type: Transform + - uid: 1012 + components: + - pos: 2.5,-14.5 + parent: 179 + type: Transform +- proto: Handcuffs + entities: + - uid: 331 + components: + - pos: -3.5805476,0.74100244 + parent: 179 + type: Transform +- proto: HandheldHealthAnalyzer + entities: + - uid: 513 + components: + - pos: -5.9808183,-3.6614444 + parent: 179 + type: Transform +- proto: HoloFan + entities: + - uid: 142 + components: + - pos: -8.5,7.5 + parent: 179 + type: Transform + missingComponents: + - TimedDespawn + - uid: 901 + components: + - pos: -10.5,7.5 + parent: 179 + type: Transform + missingComponents: + - TimedDespawn + - uid: 902 + components: + - pos: -9.5,7.5 + parent: 179 + type: Transform + missingComponents: + - TimedDespawn +- proto: HolosignWetFloor + entities: + - uid: 848 + components: + - pos: -13.5,2.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + missingComponents: + - TimedDespawn + - uid: 911 + components: + - pos: -13.5,1.5 + parent: 179 + type: Transform + - fixtures: {} + type: Fixtures + missingComponents: + - TimedDespawn +- proto: hydroponicsTray + entities: + - uid: 756 + components: + - pos: 2.5,14.5 + parent: 179 + type: Transform + - uid: 757 + components: + - pos: 2.5,15.5 + parent: 179 + type: Transform +- proto: KitchenReagentGrinder + entities: + - uid: 731 + components: + - pos: 8.5,9.5 + parent: 179 + type: Transform +- proto: LargeBeaker + entities: + - uid: 210 + components: + - pos: 4.3272614,9.338851 + parent: 179 + type: Transform + - uid: 253 + components: + - pos: 23.494947,7.0422435 + parent: 179 + type: Transform + - uid: 402 + components: + - pos: 23.510572,7.7141185 + parent: 179 + type: Transform + - uid: 737 + components: + - pos: 4.2969,9.828774 + parent: 179 + type: Transform +- proto: LedLightTube + entities: + - uid: 481 + components: + - pos: -3.511025,-10.35149 + parent: 179 + type: Transform +- proto: LockerBotanistFilled + entities: + - uid: 869 + components: + - pos: 2.5,16.5 + parent: 179 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerChemistry + entities: + - uid: 127 + components: + - pos: 27.5,6.5 + parent: 179 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerChemistryFilled + entities: + - uid: 297 + components: + - pos: 7.5,9.5 + parent: 179 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerChiefEngineerFilled + entities: + - uid: 447 + components: + - pos: 7.5,2.5 + parent: 179 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerElectricalSuppliesFilled + entities: + - uid: 444 + components: + - pos: 7.5,3.5 + parent: 179 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerEngineerFilled + entities: + - uid: 490 + components: + - pos: 7.5,4.5 + parent: 179 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerMedical + entities: + - uid: 128 + components: + - pos: 27.5,5.5 + parent: 179 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 129 + components: + - pos: 29.5,-1.5 + parent: 179 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 130 + components: + - pos: 30.5,-1.5 + parent: 179 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerMedicalFilled + entities: + - uid: 865 + components: + - pos: -6.5,-3.5 + parent: 179 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerMedicineFilled + entities: + - uid: 562 + components: + - pos: -5.5,-3.5 + parent: 179 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerSalvageSpecialistFilled + entities: + - uid: 493 + components: + - pos: -10.5,4.5 + parent: 179 + type: Transform + - locked: False + type: Lock + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerSyndicatePersonalFilled + entities: + - uid: 909 + components: + - pos: -7.5,1.5 + parent: 179 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerWardenFilled + entities: + - uid: 873 + components: + - pos: -8.5,1.5 + parent: 179 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 871 + components: + - pos: 7.5,1.5 + parent: 179 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: MachineFrame + entities: + - uid: 533 + components: + - pos: -5.5,10.5 + parent: 179 + type: Transform +- proto: MedicalScanner + entities: + - uid: 592 + components: + - pos: 18.5,-1.5 + parent: 179 + type: Transform + - containers: + MedicalScanner-bodyContainer: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + scanner-bodyContainer: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 593 + components: + - pos: 18.5,-5.5 + parent: 179 + type: Transform + - containers: + MedicalScanner-bodyContainer: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + scanner-bodyContainer: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: MedkitFilled + entities: + - uid: 153 + components: + - pos: 13.632214,1.5673001 + parent: 179 + type: Transform + - uid: 154 + components: + - pos: 13.460339,0.6141751 + parent: 179 + type: Transform + - uid: 321 + components: + - pos: 3.8440318,4.425983 + parent: 179 + type: Transform +- proto: MicroManipulatorStockPart + entities: + - uid: 484 + components: + - pos: -5.5039105,8.838643 + parent: 179 + type: Transform + - uid: 959 + components: + - pos: -4.752078,10.904018 + parent: 179 + type: Transform +- proto: ModularGrenade + entities: + - uid: 435 + components: + - pos: 6.829691,9.860046 + parent: 179 + type: Transform +- proto: MopBucket + entities: + - uid: 696 + components: + - pos: 7.5,16.5 + parent: 179 + type: Transform +- proto: MopItem + entities: + - uid: 328 + components: + - pos: 7.6382103,16.08618 + parent: 179 + type: Transform + - solutions: + absorbed: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 50 + reagents: + - Quantity: 25 + ReagentId: Water + type: SolutionContainerManager +- proto: Multitool + entities: + - uid: 307 + components: + - pos: -1.249865,-10.43489 + parent: 179 + type: Transform + - uid: 430 + components: + - pos: -0.6298993,4.7431083 + parent: 179 + type: Transform + - devices: + 'UID: 31739': 801 + type: NetworkConfigurator +- proto: NanoManipulatorStockPart + entities: + - uid: 456 + components: + - pos: -5.920577,8.817795 + parent: 179 + type: Transform +- proto: NitrogenCanister + entities: + - uid: 459 + components: + - pos: 7.5,-1.5 + parent: 179 + type: Transform +- proto: Ointment + entities: + - uid: 148 + components: + - pos: 18.77326,6.653532 + parent: 179 + type: Transform + - uid: 149 + components: + - pos: 18.49201,6.059782 + parent: 179 + type: Transform +- proto: OxygenCanister + entities: + - uid: 340 + components: + - pos: 7.5,-3.5 + parent: 179 + type: Transform +- proto: PaperBin10 + entities: + - uid: 977 + components: + - pos: 10.5,12.5 + parent: 179 + type: Transform +- proto: PartRodMetal + entities: + - uid: 133 + components: + - pos: -3.4717777,7.672426 + parent: 179 + type: Transform +- proto: Pen + entities: + - uid: 978 + components: + - pos: 10.893699,12.7794075 + parent: 179 + type: Transform + - uid: 979 + components: + - pos: 10.862433,12.602201 + parent: 179 + type: Transform +- proto: PicoManipulatorStockPart + entities: + - uid: 455 + components: + - pos: -6.337244,8.838643 + parent: 179 + type: Transform +- proto: PlasmaCanister + entities: + - uid: 461 + components: + - pos: 7.5,-2.5 + parent: 179 + type: Transform +- proto: PlasticFlapsAirtightClear + entities: + - uid: 997 + components: + - pos: -2.5,-16.5 + parent: 179 + type: Transform + - uid: 998 + components: + - pos: -2.5,-14.5 + parent: 179 + type: Transform + - uid: 999 + components: + - pos: 1.5,-16.5 + parent: 179 + type: Transform + - uid: 1000 + components: + - pos: 1.5,-14.5 + parent: 179 + type: Transform +- proto: PowerCellHigh + entities: + - uid: 567 + components: + - pos: -4.76583,8.265328 + parent: 179 + type: Transform +- proto: PowerCellHyper + entities: + - uid: 703 + components: + - pos: -4.3179135,8.275752 + parent: 179 + type: Transform +- proto: PowerCellMedium + entities: + - uid: 186 + components: + - pos: -2.67511,-10.351 + parent: 179 + type: Transform + - uid: 187 + components: + - pos: -2.55011,-10.6635 + parent: 179 + type: Transform + - uid: 360 + components: + - pos: -3.7970803,8.275752 + parent: 179 + type: Transform +- proto: PowerCellRecharger + entities: + - uid: 709 + components: + - pos: -1.5,-3.5 + parent: 179 + type: Transform +- proto: PowerCellSmall + entities: + - uid: 705 + components: + - pos: -3.3182633,8.234056 + parent: 179 + type: Transform +- proto: Poweredlight + entities: + - uid: 93 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-5.5 + parent: 179 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 536 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 179 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 660 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,1.5 + parent: 179 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 661 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,7.5 + parent: 179 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 663 + components: + - pos: 22.5,2.5 + parent: 179 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 666 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,23.5 + parent: 179 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 670 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,18.5 + parent: 179 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 673 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-5.5 + parent: 179 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 674 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-5.5 + parent: 179 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 675 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-0.5 + parent: 179 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 676 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-10.5 + parent: 179 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 678 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 179 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 680 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-5.5 + parent: 179 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 681 + components: + - rot: 3.141592653589793 rad + pos: 23.5,-5.5 + parent: 179 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 682 + components: + - pos: 13.5,2.5 + parent: 179 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 683 + components: + - rot: 3.141592653589793 rad + pos: 17.5,4.5 + parent: 179 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredSmallLight + entities: + - uid: 163 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,26.5 + parent: 179 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 166 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,24.5 + parent: 179 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 167 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,17.5 + parent: 179 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 388 + components: + - pos: 0.5,-5.5 + parent: 179 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 417 + components: + - pos: -4.5,-5.5 + parent: 179 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 483 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 179 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 534 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-5.5 + parent: 179 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: Protolathe + entities: + - uid: 15 + components: + - pos: 8.5,17.5 + parent: 179 + type: Transform + - uid: 384 + components: + - pos: -6.5,6.5 + parent: 179 + type: Transform +- proto: QuadraticCapacitorStockPart + entities: + - uid: 704 + components: + - pos: -4.8741612,8.817795 + parent: 179 + type: Transform +- proto: Railing + entities: + - uid: 665 + components: + - rot: 3.141592653589793 rad + pos: -15.5,9.5 + parent: 179 + type: Transform + - uid: 927 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,10.5 + parent: 179 + type: Transform + - uid: 928 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,11.5 + parent: 179 + type: Transform + - uid: 929 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,12.5 + parent: 179 + type: Transform + - uid: 930 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,13.5 + parent: 179 + type: Transform + - uid: 931 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,14.5 + parent: 179 + type: Transform + - uid: 932 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,15.5 + parent: 179 + type: Transform + - uid: 933 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,16.5 + parent: 179 + type: Transform + - uid: 934 + components: + - rot: 3.141592653589793 rad + pos: -13.5,17.5 + parent: 179 + type: Transform + - uid: 935 + components: + - rot: 3.141592653589793 rad + pos: -12.5,17.5 + parent: 179 + type: Transform + - uid: 936 + components: + - rot: 3.141592653589793 rad + pos: -11.5,17.5 + parent: 179 + type: Transform + - uid: 937 + components: + - rot: 3.141592653589793 rad + pos: -10.5,17.5 + parent: 179 + type: Transform + - uid: 938 + components: + - rot: 3.141592653589793 rad + pos: -9.5,17.5 + parent: 179 + type: Transform + - uid: 939 + components: + - rot: 3.141592653589793 rad + pos: -8.5,17.5 + parent: 179 + type: Transform + - uid: 940 + components: + - rot: 3.141592653589793 rad + pos: -7.5,17.5 + parent: 179 + type: Transform + - uid: 941 + components: + - rot: 3.141592653589793 rad + pos: -6.5,17.5 + parent: 179 + type: Transform + - uid: 942 + components: + - rot: 3.141592653589793 rad + pos: -5.5,17.5 + parent: 179 + type: Transform + - uid: 943 + components: + - rot: 3.141592653589793 rad + pos: -4.5,17.5 + parent: 179 + type: Transform + - uid: 944 + components: + - rot: 3.141592653589793 rad + pos: -3.5,17.5 + parent: 179 + type: Transform + - uid: 945 + components: + - rot: 3.141592653589793 rad + pos: -2.5,17.5 + parent: 179 + type: Transform + - uid: 946 + components: + - rot: 3.141592653589793 rad + pos: -1.5,17.5 + parent: 179 + type: Transform + - uid: 947 + components: + - rot: 3.141592653589793 rad + pos: -0.5,17.5 + parent: 179 + type: Transform + - uid: 948 + components: + - rot: 3.141592653589793 rad + pos: 0.5,17.5 + parent: 179 + type: Transform +- proto: RailingCornerSmall + entities: + - uid: 919 + components: + - pos: -14.5,9.5 + parent: 179 + type: Transform +- proto: ResearchAndDevelopmentServer + entities: + - uid: 12 + components: + - pos: 11.5,24.5 + parent: 179 + type: Transform + - points: 343000 + type: ResearchServer +- proto: RubberStampCaptain + entities: + - uid: 982 + components: + - pos: 12.800895,12.664745 + parent: 179 + type: Transform +- proto: RubberStampCentcom + entities: + - uid: 980 + components: + - pos: 12.186007,12.716865 + parent: 179 + type: Transform +- proto: RubberStampSyndicate + entities: + - uid: 981 + components: + - pos: 12.436131,12.550082 + parent: 179 + type: Transform +- proto: Screwdriver + entities: + - uid: 431 + components: + - pos: -1.235331,4.739151 + parent: 179 + type: Transform +- proto: SeedExtractor + entities: + - uid: 65 + components: + - pos: 2.5,17.5 + parent: 179 + type: Transform +- proto: SheetGlass + entities: + - uid: 23 + components: + - pos: 8.560405,21.456738 + parent: 179 + type: Transform + - uid: 354 + components: + - pos: 8.57603,21.566113 + parent: 179 + type: Transform + - uid: 479 + components: + - pos: -5.13758,7.5586076 + parent: 179 + type: Transform + - uid: 529 + components: + - pos: -15.5,-3.5 + parent: 179 + type: Transform + - uid: 564 + components: + - pos: -15.5,-1.5 + parent: 179 + type: Transform + - uid: 565 + components: + - pos: -15.5,-1.5 + parent: 179 + type: Transform + - uid: 566 + components: + - pos: -15.5,-3.5 + parent: 179 + type: Transform +- proto: SheetGlass1 + entities: + - uid: 960 + components: + - pos: -3.981244,10.799851 + parent: 179 + type: Transform +- proto: SheetPGlass + entities: + - uid: 416 + components: + - pos: -0.5,8.5 + parent: 179 + type: Transform +- proto: SheetPlasteel + entities: + - uid: 478 + components: + - pos: -4.0129576,7.6107273 + parent: 179 + type: Transform +- proto: SheetPlastic + entities: + - uid: 181 + components: + - pos: -4.54383,7.579455 + parent: 179 + type: Transform +- proto: SheetRPGlass + entities: + - uid: 182 + components: + - pos: -0.5,7.5 + parent: 179 + type: Transform +- proto: SheetSteel + entities: + - uid: 205 + components: + - pos: -15.5,-5.5 + parent: 179 + type: Transform + - uid: 305 + components: + - pos: 9.435405,21.503613 + parent: 179 + type: Transform + - uid: 306 + components: + - pos: 9.654155,21.628613 + parent: 179 + type: Transform + - uid: 382 + components: + - pos: -15.5,-5.5 + parent: 179 + type: Transform + - uid: 473 + components: + - pos: -5.6834707,7.529523 + parent: 179 + type: Transform + - uid: 543 + components: + - pos: -15.5,-4.5 + parent: 179 + type: Transform + - uid: 544 + components: + - pos: -15.5,-4.5 + parent: 179 + type: Transform +- proto: SignalButton + entities: + - uid: 1013 + components: + - pos: -4.5,-14.5 + parent: 179 + type: Transform + - linkedPorts: + 202: + - Pressed: Toggle + 984: + - Pressed: Toggle + registeredSinks: + Pressed: + - 202 + - 984 + type: DeviceLinkSource + - uid: 1014 + components: + - pos: 3.5,-14.5 + parent: 179 + type: Transform + - linkedPorts: + 697: + - Pressed: Toggle + 698: + - Pressed: Toggle + registeredSinks: + Pressed: + - 697 + - 698 + type: DeviceLinkSource +- proto: SignCargoDock + entities: + - uid: 1046 + components: + - pos: 4.5,-4.5 + parent: 179 + type: Transform +- proto: SmallLight + entities: + - uid: 1048 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-15.5 + parent: 179 + type: Transform + - uid: 1049 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-15.5 + parent: 179 + type: Transform +- proto: SMESBasic + entities: + - uid: 1017 + components: + - pos: -6.5,-12.5 + parent: 179 + type: Transform +- proto: soda_dispenser + entities: + - uid: 751 + components: + - pos: 8.5,12.5 + parent: 179 + type: Transform +- proto: SpawnMobHuman + entities: + - uid: 138 + components: + - pos: -6.5,-0.5 + parent: 179 + type: Transform + - uid: 139 + components: + - pos: -6.5,0.5 + parent: 179 + type: Transform + - uid: 140 + components: + - pos: 3.5,7.5 + parent: 179 + type: Transform +- proto: SpawnPointCaptain + entities: + - uid: 954 + components: + - pos: -4.5,4.5 + parent: 179 + type: Transform +- proto: SpawnPointLatejoin + entities: + - uid: 961 + components: + - pos: -3.5,3.5 + parent: 179 + type: Transform +- proto: SpawnPointObserver + entities: + - uid: 679 + components: + - pos: -3.5,4.5 + parent: 179 + type: Transform +- proto: SpawnVehicleJanicart + entities: + - uid: 904 + components: + - pos: 5.5,16.5 + parent: 179 + type: Transform +- proto: Spear + entities: + - uid: 185 + components: + - pos: -3.4579864,-1.9811735 + parent: 179 + type: Transform +- proto: SprayBottleWater + entities: + - uid: 903 + components: + - pos: 6.985283,16.424004 + parent: 179 + type: Transform +- proto: Stimpack + entities: + - uid: 462 + components: + - pos: 3.6877818,5.312015 + parent: 179 + type: Transform +- proto: Stool + entities: + - uid: 383 + components: + - pos: -1.5,-9.5 + parent: 179 + type: Transform + - uid: 387 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-6.5 + parent: 179 + type: Transform +- proto: Stunbaton + entities: + - uid: 434 + components: + - pos: -3.1734612,-2.6066077 + parent: 179 + type: Transform +- proto: SubstationBasic + entities: + - uid: 1018 + components: + - pos: -6.5,-13.5 + parent: 179 + type: Transform +- proto: SuperCapacitorStockPart + entities: + - uid: 296 + components: + - pos: -4.3012447,8.817795 + parent: 179 + type: Transform +- proto: Syringe + entities: + - uid: 460 + components: + - pos: 3.2502818,4.5823417 + parent: 179 + type: Transform + - uid: 738 + components: + - pos: 5.767191,9.787079 + parent: 179 + type: Transform +- proto: Table + entities: + - uid: 63 + components: + - pos: 9.5,21.5 + parent: 179 + type: Transform + - uid: 64 + components: + - pos: 10.5,21.5 + parent: 179 + type: Transform + - uid: 67 + components: + - pos: 8.5,21.5 + parent: 179 + type: Transform + - uid: 79 + components: + - pos: 13.5,17.5 + parent: 179 + type: Transform + - uid: 92 + components: + - pos: 11.5,21.5 + parent: 179 + type: Transform + - uid: 143 + components: + - pos: 33.5,-3.5 + parent: 179 + type: Transform + - uid: 144 + components: + - pos: 33.5,-2.5 + parent: 179 + type: Transform + - uid: 145 + components: + - pos: 33.5,-1.5 + parent: 179 + type: Transform + - uid: 161 + components: + - pos: 24.5,-5.5 + parent: 179 + type: Transform + - uid: 162 + components: + - pos: 23.5,-5.5 + parent: 179 + type: Transform + - uid: 172 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,9.5 + parent: 179 + type: Transform + - uid: 180 + components: + - pos: -4.5,10.5 + parent: 179 + type: Transform + - uid: 262 + components: + - pos: -3.5,-5.5 + parent: 179 + type: Transform + - uid: 263 + components: + - pos: -2.5,-5.5 + parent: 179 + type: Transform + - uid: 264 + components: + - pos: -1.5,-5.5 + parent: 179 + type: Transform + - uid: 265 + components: + - pos: -0.5,-5.5 + parent: 179 + type: Transform + - uid: 267 + components: + - pos: 23.5,5.5 + parent: 179 + type: Transform + - uid: 268 + components: + - pos: 23.5,6.5 + parent: 179 + type: Transform + - uid: 298 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,9.5 + parent: 179 + type: Transform + - uid: 299 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,9.5 + parent: 179 + type: Transform + - uid: 300 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,9.5 + parent: 179 + type: Transform + - uid: 312 + components: + - pos: -3.5,-10.5 + parent: 179 + type: Transform + - uid: 313 + components: + - pos: -2.5,-10.5 + parent: 179 + type: Transform + - uid: 314 + components: + - pos: -1.5,-10.5 + parent: 179 + type: Transform + - uid: 315 + components: + - pos: -0.5,-10.5 + parent: 179 + type: Transform + - uid: 355 + components: + - pos: -6.5,7.5 + parent: 179 + type: Transform + - uid: 356 + components: + - pos: -5.5,7.5 + parent: 179 + type: Transform + - uid: 357 + components: + - pos: -4.5,7.5 + parent: 179 + type: Transform + - uid: 358 + components: + - pos: -3.5,7.5 + parent: 179 + type: Transform + - uid: 361 + components: + - pos: -0.5,7.5 + parent: 179 + type: Transform + - uid: 362 + components: + - pos: 0.5,7.5 + parent: 179 + type: Transform + - uid: 363 + components: + - pos: 1.5,7.5 + parent: 179 + type: Transform + - uid: 366 + components: + - pos: -2.5,4.5 + parent: 179 + type: Transform + - uid: 367 + components: + - pos: -1.5,4.5 + parent: 179 + type: Transform + - uid: 368 + components: + - pos: -0.5,4.5 + parent: 179 + type: Transform + - uid: 371 + components: + - pos: 1.5,4.5 + parent: 179 + type: Transform + - uid: 385 + components: + - pos: -3.5,-2.5 + parent: 179 + type: Transform + - uid: 386 + components: + - pos: -3.5,-1.5 + parent: 179 + type: Transform + - uid: 440 + components: + - pos: 0.5,4.5 + parent: 179 + type: Transform + - uid: 445 + components: + - pos: -3.5,-0.5 + parent: 179 + type: Transform + - uid: 448 + components: + - pos: 3.5,5.5 + parent: 179 + type: Transform + - uid: 465 + components: + - pos: 1.5,8.5 + parent: 179 + type: Transform + - uid: 466 + components: + - pos: 0.5,8.5 + parent: 179 + type: Transform + - uid: 467 + components: + - pos: -3.5,8.5 + parent: 179 + type: Transform + - uid: 468 + components: + - pos: -0.5,8.5 + parent: 179 + type: Transform + - uid: 470 + components: + - pos: -6.5,8.5 + parent: 179 + type: Transform + - uid: 471 + components: + - pos: -5.5,8.5 + parent: 179 + type: Transform + - uid: 472 + components: + - pos: -4.5,8.5 + parent: 179 + type: Transform + - uid: 515 + components: + - pos: -15.5,-5.5 + parent: 179 + type: Transform + - uid: 516 + components: + - pos: -15.5,-1.5 + parent: 179 + type: Transform + - uid: 520 + components: + - pos: -15.5,-0.5 + parent: 179 + type: Transform + - uid: 559 + components: + - pos: -15.5,-4.5 + parent: 179 + type: Transform + - uid: 560 + components: + - pos: -15.5,-3.5 + parent: 179 + type: Transform + - uid: 568 + components: + - pos: 18.5,4.5 + parent: 179 + type: Transform + - uid: 569 + components: + - pos: 21.5,6.5 + parent: 179 + type: Transform + - uid: 570 + components: + - pos: 20.5,6.5 + parent: 179 + type: Transform + - uid: 571 + components: + - pos: 18.5,6.5 + parent: 179 + type: Transform + - uid: 572 + components: + - pos: 19.5,6.5 + parent: 179 + type: Transform + - uid: 573 + components: + - pos: 18.5,5.5 + parent: 179 + type: Transform + - uid: 574 + components: + - pos: 22.5,8.5 + parent: 179 + type: Transform + - uid: 575 + components: + - pos: 24.5,4.5 + parent: 179 + type: Transform + - uid: 584 + components: + - pos: 23.5,7.5 + parent: 179 + type: Transform + - uid: 586 + components: + - pos: 25.5,10.5 + parent: 179 + type: Transform + - uid: 587 + components: + - pos: 23.5,10.5 + parent: 179 + type: Transform + - uid: 588 + components: + - pos: 24.5,10.5 + parent: 179 + type: Transform + - uid: 589 + components: + - pos: 26.5,10.5 + parent: 179 + type: Transform + - uid: 590 + components: + - pos: 27.5,10.5 + parent: 179 + type: Transform + - uid: 594 + components: + - pos: 13.5,2.5 + parent: 179 + type: Transform + - uid: 595 + components: + - pos: 13.5,0.5 + parent: 179 + type: Transform + - uid: 596 + components: + - pos: 13.5,1.5 + parent: 179 + type: Transform + - uid: 684 + components: + - pos: -3.5,0.5 + parent: 179 + type: Transform + - uid: 685 + components: + - pos: 3.5,4.5 + parent: 179 + type: Transform + - uid: 686 + components: + - pos: 3.5,6.5 + parent: 179 + type: Transform + - uid: 706 + components: + - pos: -1.5,-3.5 + parent: 179 + type: Transform + - uid: 707 + components: + - pos: -0.5,-3.5 + parent: 179 + type: Transform + - uid: 710 + components: + - pos: 0.5,-3.5 + parent: 179 + type: Transform +- proto: TableGlass + entities: + - uid: 964 + components: + - pos: 9.5,12.5 + parent: 179 + type: Transform + - uid: 965 + components: + - pos: 11.5,12.5 + parent: 179 + type: Transform + - uid: 966 + components: + - pos: 13.5,12.5 + parent: 179 + type: Transform + - uid: 975 + components: + - pos: 10.5,12.5 + parent: 179 + type: Transform + - uid: 976 + components: + - pos: 12.5,12.5 + parent: 179 + type: Transform +- proto: TargetHuman + entities: + - uid: 159 + components: + - pos: -6.5,-1.5 + parent: 179 + type: Transform +- proto: TelecomServerFilled + entities: + - uid: 963 + components: + - pos: -3.5,10.5 + parent: 179 + type: Transform +- proto: TimerTrigger + entities: + - uid: 482 + components: + - pos: 6.413024,9.39097 + parent: 179 + type: Transform +- proto: ToolboxElectricalFilled + entities: + - uid: 365 + components: + - pos: 0.4993378,3.429311 + parent: 179 + type: Transform + - uid: 419 + components: + - pos: -0.8099712,-5.21454 + parent: 179 + type: Transform + - uid: 420 + components: + - pos: -0.5597038,-5.679647 + parent: 179 + type: Transform +- proto: ToolboxMechanicalFilled + entities: + - uid: 364 + components: + - pos: 1.452203,3.4605832 + parent: 179 + type: Transform +- proto: ToyRubberDuck + entities: + - uid: 723 + components: + - pos: -1.6653601,11.616664 + parent: 179 + type: Transform +- proto: trayScanner + entities: + - uid: 758 + components: + - pos: 1.354346,4.548879 + parent: 179 + type: Transform +- proto: TwoWayLever + entities: + - uid: 699 + components: + - pos: -3.5,-13.5 + parent: 179 + type: Transform + - linkedPorts: + 990: + - Left: Forward + - Right: Reverse + - Middle: Off + 195: + - Left: Forward + - Right: Reverse + - Middle: Off + 991: + - Left: Forward + - Right: Reverse + - Middle: Off + registeredSinks: + Left: + - 990 + - 195 + - 991 + Right: + - 990 + - 195 + - 991 + Middle: + - 990 + - 195 + - 991 + type: DeviceLinkSource + - uid: 722 + components: + - pos: 1.5,11.5 + parent: 179 + type: Transform + - outputs: + Left: + - port: Forward + uid: 721 + - port: Forward + uid: 720 + - port: Forward + uid: 716 + Right: + - port: Reverse + uid: 721 + - port: Reverse + uid: 720 + - port: Reverse + uid: 716 + Middle: + - port: Off + uid: 721 + - port: Off + uid: 720 + - port: Off + uid: 716 + type: SignalTransmitter + - uid: 983 + components: + - pos: 2.5,-13.5 + parent: 179 + type: Transform + - linkedPorts: + 985: + - Left: Forward + - Right: Reverse + - Middle: Off + 259: + - Left: Forward + - Right: Reverse + - Middle: Off + 989: + - Left: Forward + - Right: Reverse + - Middle: Off + 463: + - Left: Forward + - Right: Reverse + - Middle: Off + registeredSinks: + Left: + - 985 + - 259 + - 989 + - 463 + Right: + - 985 + - 259 + - 989 + - 463 + Middle: + - 985 + - 259 + - 989 + - 463 + type: DeviceLinkSource +- proto: UnfinishedMachineFrame + entities: + - uid: 522 + components: + - pos: -6.5,10.5 + parent: 179 + type: Transform +- proto: UniformPrinter + entities: + - uid: 443 + components: + - pos: -7.5,4.5 + parent: 179 + type: Transform +- proto: VehicleKeyJanicart + entities: + - uid: 14 + components: + - pos: 6.5,16.5 + parent: 179 + type: Transform +- proto: VendingMachineCigs + entities: + - uid: 870 + components: + - flags: SessionSpecific + type: MetaData + - pos: -14.5,4.5 + parent: 179 + type: Transform +- proto: VendingMachineEngivend + entities: + - uid: 441 + components: + - flags: SessionSpecific + type: MetaData + - pos: -11.5,4.5 + parent: 179 + type: Transform + - uid: 523 + components: + - flags: SessionSpecific + type: MetaData + - pos: -11.5,-1.5 + parent: 179 + type: Transform +- proto: VendingMachineMedical + entities: + - uid: 156 + components: + - flags: SessionSpecific + type: MetaData + - pos: 25.5,-5.5 + parent: 179 + type: Transform + - uid: 157 + components: + - flags: SessionSpecific + type: MetaData + - pos: 27.5,-5.5 + parent: 179 + type: Transform + - uid: 158 + components: + - flags: SessionSpecific + type: MetaData + - pos: 29.5,3.5 + parent: 179 + type: Transform + - uid: 521 + components: + - flags: SessionSpecific + type: MetaData + - pos: -12.5,4.5 + parent: 179 + type: Transform +- proto: VendingMachineSalvage + entities: + - uid: 485 + components: + - flags: SessionSpecific + type: MetaData + - pos: -15.5,4.5 + parent: 179 + type: Transform +- proto: VendingMachineSec + entities: + - uid: 874 + components: + - flags: SessionSpecific + type: MetaData + - pos: -13.5,4.5 + parent: 179 + type: Transform +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 875 + components: + - flags: SessionSpecific + type: MetaData + - pos: 7.5,0.5 + parent: 179 + type: Transform +- proto: VendingMachineYouTool + entities: + - uid: 350 + components: + - flags: SessionSpecific + type: MetaData + - pos: -11.5,-0.5 + parent: 179 + type: Transform +- proto: WallSolid + entities: + - uid: 3 + components: + - pos: 1.5,18.5 + parent: 179 + type: Transform + - uid: 4 + components: + - pos: 11.5,26.5 + parent: 179 + type: Transform + - uid: 5 + components: + - pos: 18.5,24.5 + parent: 179 + type: Transform + - uid: 6 + components: + - pos: 20.5,15.5 + parent: 179 + type: Transform + - uid: 8 + components: + - pos: 14.5,19.5 + parent: 179 + type: Transform + - uid: 9 + components: + - pos: 1.5,19.5 + parent: 179 + type: Transform + - uid: 10 + components: + - pos: 18.5,26.5 + parent: 179 + type: Transform + - uid: 11 + components: + - pos: 13.5,26.5 + parent: 179 + type: Transform + - uid: 13 + components: + - pos: 25.5,15.5 + parent: 179 + type: Transform + - uid: 18 + components: + - pos: 4.5,26.5 + parent: 179 + type: Transform + - uid: 19 + components: + - pos: 18.5,25.5 + parent: 179 + type: Transform + - uid: 21 + components: + - pos: 10.5,26.5 + parent: 179 + type: Transform + - uid: 22 + components: + - pos: 26.5,15.5 + parent: 179 + type: Transform + - uid: 25 + components: + - pos: 1.5,21.5 + parent: 179 + type: Transform + - uid: 27 + components: + - pos: 8.5,-0.5 + parent: 179 + type: Transform + - uid: 28 + components: + - pos: 18.5,18.5 + parent: 179 + type: Transform + - uid: 29 + components: + - pos: 18.5,21.5 + parent: 179 + type: Transform + - uid: 30 + components: + - pos: 1.5,22.5 + parent: 179 + type: Transform + - uid: 31 + components: + - pos: 1.5,20.5 + parent: 179 + type: Transform + - uid: 32 + components: + - pos: 18.5,19.5 + parent: 179 + type: Transform + - uid: 33 + components: + - pos: 23.5,15.5 + parent: 179 + type: Transform + - uid: 34 + components: + - pos: 12.5,22.5 + parent: 179 + type: Transform + - uid: 35 + components: + - pos: 27.5,15.5 + parent: 179 + type: Transform + - uid: 36 + components: + - pos: 7.5,22.5 + parent: 179 + type: Transform + - uid: 37 + components: + - pos: 14.5,22.5 + parent: 179 + type: Transform + - uid: 38 + components: + - pos: 10.5,23.5 + parent: 179 + type: Transform + - uid: 39 + components: + - pos: 10.5,24.5 + parent: 179 + type: Transform + - uid: 40 + components: + - pos: 8.5,26.5 + parent: 179 + type: Transform + - uid: 41 + components: + - pos: 10.5,25.5 + parent: 179 + type: Transform + - uid: 42 + components: + - pos: 18.5,22.5 + parent: 179 + type: Transform + - uid: 43 + components: + - pos: 14.5,27.5 + parent: 179 + type: Transform + - uid: 44 + components: + - pos: 14.5,26.5 + parent: 179 + type: Transform + - uid: 45 + components: + - pos: 1.5,16.5 + parent: 179 + type: Transform + - uid: 46 + components: + - pos: 18.5,27.5 + parent: 179 + type: Transform + - uid: 49 + components: + - pos: 7.5,28.5 + parent: 179 + type: Transform + - uid: 50 + components: + - pos: 13.5,22.5 + parent: 179 + type: Transform + - uid: 51 + components: + - pos: 12.5,26.5 + parent: 179 + type: Transform + - uid: 52 + components: + - pos: 1.5,15.5 + parent: 179 + type: Transform + - uid: 53 + components: + - pos: 9.5,26.5 + parent: 179 + type: Transform + - uid: 54 + components: + - pos: 14.5,23.5 + parent: 179 + type: Transform + - uid: 55 + components: + - pos: 24.5,15.5 + parent: 179 + type: Transform + - uid: 56 + components: + - pos: 14.5,25.5 + parent: 179 + type: Transform + - uid: 57 + components: + - pos: 14.5,21.5 + parent: 179 + type: Transform + - uid: 60 + components: + - pos: 7.5,21.5 + parent: 179 + type: Transform + - uid: 61 + components: + - pos: 18.5,20.5 + parent: 179 + type: Transform + - uid: 62 + components: + - pos: 18.5,23.5 + parent: 179 + type: Transform + - uid: 66 + components: + - pos: 18.5,17.5 + parent: 179 + type: Transform + - uid: 68 + components: + - pos: 18.5,28.5 + parent: 179 + type: Transform + - uid: 69 + components: + - pos: 28.5,15.5 + parent: 179 + type: Transform + - uid: 71 + components: + - pos: 11.5,22.5 + parent: 179 + type: Transform + - uid: 72 + components: + - pos: 1.5,17.5 + parent: 179 + type: Transform + - uid: 73 + components: + - pos: 14.5,28.5 + parent: 179 + type: Transform + - uid: 74 + components: + - pos: 10.5,22.5 + parent: 179 + type: Transform + - uid: 75 + components: + - pos: 9.5,22.5 + parent: 179 + type: Transform + - uid: 76 + components: + - pos: 8.5,-1.5 + parent: 179 + type: Transform + - uid: 77 + components: + - pos: 8.5,-2.5 + parent: 179 + type: Transform + - uid: 78 + components: + - pos: 21.5,15.5 + parent: 179 + type: Transform + - uid: 80 + components: + - pos: 18.5,16.5 + parent: 179 + type: Transform + - uid: 81 + components: + - pos: 18.5,15.5 + parent: 179 + type: Transform + - uid: 82 + components: + - pos: 14.5,18.5 + parent: 179 + type: Transform + - uid: 83 + components: + - pos: 4.5,28.5 + parent: 179 + type: Transform + - uid: 84 + components: + - pos: 7.5,26.5 + parent: 179 + type: Transform + - uid: 85 + components: + - pos: 1.5,23.5 + parent: 179 + type: Transform + - uid: 86 + components: + - pos: 17.5,15.5 + parent: 179 + type: Transform + - uid: 89 + components: + - pos: 22.5,15.5 + parent: 179 + type: Transform + - uid: 95 + components: + - pos: 8.5,22.5 + parent: 179 + type: Transform + - uid: 96 + components: + - pos: 7.5,27.5 + parent: 179 + type: Transform + - uid: 97 + components: + - pos: 8.5,-3.5 + parent: 179 + type: Transform + - uid: 98 + components: + - pos: 4.5,25.5 + parent: 179 + type: Transform + - uid: 99 + components: + - pos: 17.5,18.5 + parent: 179 + type: Transform + - uid: 100 + components: + - pos: 19.5,15.5 + parent: 179 + type: Transform + - uid: 101 + components: + - pos: 4.5,27.5 + parent: 179 + type: Transform + - uid: 103 + components: + - pos: 14.5,17.5 + parent: 179 + type: Transform + - uid: 104 + components: + - pos: 14.5,16.5 + parent: 179 + type: Transform + - uid: 105 + components: + - pos: 15.5,15.5 + parent: 179 + type: Transform + - uid: 106 + components: + - pos: 14.5,15.5 + parent: 179 + type: Transform + - uid: 107 + components: + - pos: 13.5,15.5 + parent: 179 + type: Transform + - uid: 108 + components: + - pos: 12.5,15.5 + parent: 179 + type: Transform + - uid: 109 + components: + - pos: 11.5,15.5 + parent: 179 + type: Transform + - uid: 110 + components: + - pos: 10.5,15.5 + parent: 179 + type: Transform + - uid: 112 + components: + - pos: 7.5,19.5 + parent: 179 + type: Transform + - uid: 113 + components: + - pos: 7.5,18.5 + parent: 179 + type: Transform + - uid: 114 + components: + - pos: 7.5,17.5 + parent: 179 + type: Transform + - uid: 117 + components: + - pos: 5.5,18.5 + parent: 179 + type: Transform + - uid: 118 + components: + - pos: 5.5,19.5 + parent: 179 + type: Transform + - uid: 121 + components: + - pos: 4.5,19.5 + parent: 179 + type: Transform + - uid: 122 + components: + - pos: 4.5,20.5 + parent: 179 + type: Transform + - uid: 123 + components: + - pos: 4.5,21.5 + parent: 179 + type: Transform + - uid: 124 + components: + - pos: 4.5,22.5 + parent: 179 + type: Transform + - uid: 125 + components: + - pos: 4.5,23.5 + parent: 179 + type: Transform + - uid: 126 + components: + - pos: 4.5,24.5 + parent: 179 + type: Transform + - uid: 164 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,9.5 + parent: 179 + type: Transform + - uid: 165 + components: + - pos: 8.5,2.5 + parent: 179 + type: Transform + - uid: 169 + components: + - pos: 8.5,0.5 + parent: 179 + type: Transform + - uid: 173 + components: + - pos: 8.5,1.5 + parent: 179 + type: Transform + - uid: 189 + components: + - pos: -7.5,0.5 + parent: 179 + type: Transform + - uid: 190 + components: + - pos: -7.5,-0.5 + parent: 179 + type: Transform + - uid: 191 + components: + - pos: -7.5,-1.5 + parent: 179 + type: Transform + - uid: 192 + components: + - pos: -7.5,-2.5 + parent: 179 + type: Transform + - uid: 193 + components: + - pos: -7.5,-3.5 + parent: 179 + type: Transform + - uid: 196 + components: + - pos: 3.5,-14.5 + parent: 179 + type: Transform + - uid: 197 + components: + - pos: 4.5,-14.5 + parent: 179 + type: Transform + - uid: 198 + components: + - pos: -7.5,-10.5 + parent: 179 + type: Transform + - uid: 199 + components: + - pos: -7.5,-11.5 + parent: 179 + type: Transform + - uid: 200 + components: + - pos: -7.5,-12.5 + parent: 179 + type: Transform + - uid: 201 + components: + - pos: -7.5,-13.5 + parent: 179 + type: Transform + - uid: 208 + components: + - pos: -7.5,-9.5 + parent: 179 + type: Transform + - uid: 209 + components: + - pos: -10.5,-7.5 + parent: 179 + type: Transform + - uid: 211 + components: + - pos: -10.5,-5.5 + parent: 179 + type: Transform + - uid: 212 + components: + - pos: -10.5,-4.5 + parent: 179 + type: Transform + - uid: 213 + components: + - pos: -10.5,-3.5 + parent: 179 + type: Transform + - uid: 214 + components: + - pos: -10.5,-2.5 + parent: 179 + type: Transform + - uid: 215 + components: + - pos: -10.5,-1.5 + parent: 179 + type: Transform + - uid: 217 + components: + - pos: 1.5,-4.5 + parent: 179 + type: Transform + - uid: 218 + components: + - pos: 0.5,-4.5 + parent: 179 + type: Transform + - uid: 219 + components: + - pos: -0.5,-4.5 + parent: 179 + type: Transform + - uid: 220 + components: + - pos: -1.5,-4.5 + parent: 179 + type: Transform + - uid: 221 + components: + - pos: -2.5,-4.5 + parent: 179 + type: Transform + - uid: 222 + components: + - pos: -3.5,-4.5 + parent: 179 + type: Transform + - uid: 223 + components: + - pos: -4.5,-4.5 + parent: 179 + type: Transform + - uid: 224 + components: + - pos: -5.5,-4.5 + parent: 179 + type: Transform + - uid: 225 + components: + - pos: -6.5,-4.5 + parent: 179 + type: Transform + - uid: 226 + components: + - pos: 4.5,-4.5 + parent: 179 + type: Transform + - uid: 227 + components: + - pos: 5.5,-4.5 + parent: 179 + type: Transform + - uid: 228 + components: + - pos: 6.5,-4.5 + parent: 179 + type: Transform + - uid: 229 + components: + - pos: -7.5,-14.5 + parent: 179 + type: Transform + - uid: 231 + components: + - pos: -6.5,-14.5 + parent: 179 + type: Transform + - uid: 232 + components: + - pos: -5.5,-14.5 + parent: 179 + type: Transform + - uid: 233 + components: + - pos: -4.5,-14.5 + parent: 179 + type: Transform + - uid: 234 + components: + - pos: 6.5,-10.5 + parent: 179 + type: Transform + - uid: 235 + components: + - pos: 6.5,-11.5 + parent: 179 + type: Transform + - uid: 236 + components: + - pos: 6.5,-12.5 + parent: 179 + type: Transform + - uid: 237 + components: + - pos: 6.5,-13.5 + parent: 179 + type: Transform + - uid: 238 + components: + - pos: 6.5,-14.5 + parent: 179 + type: Transform + - uid: 239 + components: + - pos: 5.5,-14.5 + parent: 179 + type: Transform + - uid: 240 + components: + - pos: -7.5,-8.5 + parent: 179 + type: Transform + - uid: 241 + components: + - pos: -7.5,-7.5 + parent: 179 + type: Transform + - uid: 242 + components: + - pos: -8.5,-8.5 + parent: 179 + type: Transform + - uid: 243 + components: + - pos: -9.5,-8.5 + parent: 179 + type: Transform + - uid: 244 + components: + - pos: -10.5,-8.5 + parent: 179 + type: Transform + - uid: 245 + components: + - pos: -7.5,-5.5 + parent: 179 + type: Transform + - uid: 248 + components: + - pos: 5.5,-7.5 + parent: 179 + type: Transform + - uid: 249 + components: + - pos: 5.5,-9.5 + parent: 179 + type: Transform + - uid: 250 + components: + - pos: 6.5,-9.5 + parent: 179 + type: Transform + - uid: 251 + components: + - pos: 6.5,-7.5 + parent: 179 + type: Transform + - uid: 254 + components: + - pos: 7.5,-9.5 + parent: 179 + type: Transform + - uid: 260 + components: + - pos: 6.5,-6.5 + parent: 179 + type: Transform + - uid: 261 + components: + - pos: 6.5,-5.5 + parent: 179 + type: Transform + - uid: 271 + components: + - pos: 1.5,14.5 + parent: 179 + type: Transform + - uid: 272 + components: + - pos: 1.5,13.5 + parent: 179 + type: Transform + - uid: 273 + components: + - pos: 1.5,12.5 + parent: 179 + type: Transform + - uid: 274 + components: + - pos: -7.5,11.5 + parent: 179 + type: Transform + - uid: 275 + components: + - pos: -6.5,11.5 + parent: 179 + type: Transform + - uid: 276 + components: + - pos: -5.5,11.5 + parent: 179 + type: Transform + - uid: 277 + components: + - pos: -4.5,11.5 + parent: 179 + type: Transform + - uid: 278 + components: + - pos: -3.5,11.5 + parent: 179 + type: Transform + - uid: 279 + components: + - pos: -2.5,11.5 + parent: 179 + type: Transform + - uid: 282 + components: + - pos: -1.5,12.5 + parent: 179 + type: Transform + - uid: 283 + components: + - pos: -0.5,12.5 + parent: 179 + type: Transform + - uid: 284 + components: + - pos: 0.5,12.5 + parent: 179 + type: Transform + - uid: 288 + components: + - pos: 12.5,8.5 + parent: 179 + type: Transform + - uid: 289 + components: + - pos: 11.5,8.5 + parent: 179 + type: Transform + - uid: 290 + components: + - pos: 10.5,8.5 + parent: 179 + type: Transform + - uid: 291 + components: + - pos: 9.5,8.5 + parent: 179 + type: Transform + - uid: 292 + components: + - pos: 8.5,8.5 + parent: 179 + type: Transform + - uid: 293 + components: + - pos: 7.5,8.5 + parent: 179 + type: Transform + - uid: 294 + components: + - pos: 6.5,8.5 + parent: 179 + type: Transform + - uid: 295 + components: + - pos: 5.5,8.5 + parent: 179 + type: Transform + - uid: 301 + components: + - pos: 9.5,11.5 + parent: 179 + type: Transform + - uid: 302 + components: + - pos: 10.5,11.5 + parent: 179 + type: Transform + - uid: 303 + components: + - pos: 11.5,11.5 + parent: 179 + type: Transform + - uid: 304 + components: + - pos: 12.5,11.5 + parent: 179 + type: Transform + - uid: 310 + components: + - pos: 9.5,9.5 + parent: 179 + type: Transform + - uid: 316 + components: + - pos: -7.5,-4.5 + parent: 179 + type: Transform + - uid: 317 + components: + - pos: 26.5,14.5 + parent: 179 + type: Transform + - uid: 320 + components: + - pos: 24.5,14.5 + parent: 179 + type: Transform + - uid: 329 + components: + - pos: -11.5,5.5 + parent: 179 + type: Transform + - uid: 335 + components: + - pos: 13.5,11.5 + parent: 179 + type: Transform + - uid: 336 + components: + - pos: 14.5,11.5 + parent: 179 + type: Transform + - uid: 337 + components: + - pos: 13.5,9.5 + parent: 179 + type: Transform + - uid: 338 + components: + - pos: 13.5,8.5 + parent: 179 + type: Transform + - uid: 339 + components: + - pos: 13.5,7.5 + parent: 179 + type: Transform + - uid: 341 + components: + - pos: 24.5,12.5 + parent: 179 + type: Transform + - uid: 342 + components: + - pos: 26.5,12.5 + parent: 179 + type: Transform + - uid: 352 + components: + - pos: 13.5,6.5 + parent: 179 + type: Transform + - uid: 353 + components: + - pos: 13.5,5.5 + parent: 179 + type: Transform + - uid: 372 + components: + - pos: 13.5,4.5 + parent: 179 + type: Transform + - uid: 373 + components: + - pos: 25.5,4.5 + parent: 179 + type: Transform + - uid: 374 + components: + - pos: 23.5,4.5 + parent: 179 + type: Transform + - uid: 375 + components: + - pos: 17.5,3.5 + parent: 179 + type: Transform + - uid: 376 + components: + - pos: -10.5,-0.5 + parent: 179 + type: Transform + - uid: 377 + components: + - pos: -10.5,0.5 + parent: 179 + type: Transform + - uid: 379 + components: + - pos: -8.5,0.5 + parent: 179 + type: Transform + - uid: 390 + components: + - pos: 18.5,3.5 + parent: 179 + type: Transform + - uid: 391 + components: + - pos: 19.5,3.5 + parent: 179 + type: Transform + - uid: 392 + components: + - pos: 21.5,3.5 + parent: 179 + type: Transform + - uid: 393 + components: + - pos: 22.5,3.5 + parent: 179 + type: Transform + - uid: 394 + components: + - pos: 22.5,4.5 + parent: 179 + type: Transform + - uid: 395 + components: + - pos: 22.5,5.5 + parent: 179 + type: Transform + - uid: 396 + components: + - pos: 22.5,6.5 + parent: 179 + type: Transform + - uid: 397 + components: + - pos: 22.5,7.5 + parent: 179 + type: Transform + - uid: 399 + components: + - pos: 22.5,10.5 + parent: 179 + type: Transform + - uid: 400 + components: + - pos: 21.5,11.5 + parent: 179 + type: Transform + - uid: 401 + components: + - pos: 22.5,11.5 + parent: 179 + type: Transform + - uid: 418 + components: + - pos: 7.5,-7.5 + parent: 179 + type: Transform + - uid: 439 + components: + - pos: -13.5,5.5 + parent: 179 + type: Transform + - uid: 449 + components: + - pos: -16.5,2.5 + parent: 179 + type: Transform + - uid: 450 + components: + - pos: -16.5,3.5 + parent: 179 + type: Transform + - uid: 464 + components: + - pos: 4.5,8.5 + parent: 179 + type: Transform + - uid: 474 + components: + - pos: -7.5,8.5 + parent: 179 + type: Transform + - uid: 475 + components: + - pos: -7.5,7.5 + parent: 179 + type: Transform + - uid: 476 + components: + - pos: -7.5,6.5 + parent: 179 + type: Transform + - uid: 477 + components: + - pos: -7.5,5.5 + parent: 179 + type: Transform + - uid: 486 + components: + - pos: -15.5,5.5 + parent: 179 + type: Transform + - uid: 487 + components: + - pos: -16.5,4.5 + parent: 179 + type: Transform + - uid: 488 + components: + - pos: 5.5,17.5 + parent: 179 + type: Transform + - uid: 489 + components: + - pos: -11.5,0.5 + parent: 179 + type: Transform + - uid: 491 + components: + - pos: -16.5,5.5 + parent: 179 + type: Transform + - uid: 492 + components: + - pos: -14.5,5.5 + parent: 179 + type: Transform + - uid: 494 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,7.5 + parent: 179 + type: Transform + - uid: 495 + components: + - pos: -12.5,5.5 + parent: 179 + type: Transform + - uid: 496 + components: + - pos: -16.5,1.5 + parent: 179 + type: Transform + - uid: 497 + components: + - pos: -16.5,0.5 + parent: 179 + type: Transform + - uid: 498 + components: + - pos: -16.5,-0.5 + parent: 179 + type: Transform + - uid: 499 + components: + - pos: -16.5,-1.5 + parent: 179 + type: Transform + - uid: 500 + components: + - pos: -16.5,-2.5 + parent: 179 + type: Transform + - uid: 501 + components: + - pos: -16.5,-3.5 + parent: 179 + type: Transform + - uid: 502 + components: + - pos: -16.5,-4.5 + parent: 179 + type: Transform + - uid: 503 + components: + - pos: -16.5,-5.5 + parent: 179 + type: Transform + - uid: 504 + components: + - pos: -16.5,-6.5 + parent: 179 + type: Transform + - uid: 505 + components: + - pos: -16.5,-7.5 + parent: 179 + type: Transform + - uid: 506 + components: + - pos: -16.5,-8.5 + parent: 179 + type: Transform + - uid: 507 + components: + - pos: -15.5,-8.5 + parent: 179 + type: Transform + - uid: 508 + components: + - pos: -14.5,-8.5 + parent: 179 + type: Transform + - uid: 509 + components: + - pos: -13.5,-8.5 + parent: 179 + type: Transform + - uid: 510 + components: + - pos: -12.5,-8.5 + parent: 179 + type: Transform + - uid: 511 + components: + - pos: -11.5,-8.5 + parent: 179 + type: Transform + - uid: 517 + components: + - pos: 23.5,11.5 + parent: 179 + type: Transform + - uid: 518 + components: + - pos: 24.5,11.5 + parent: 179 + type: Transform + - uid: 519 + components: + - pos: 25.5,11.5 + parent: 179 + type: Transform + - uid: 535 + components: + - pos: -15.5,0.5 + parent: 179 + type: Transform + - uid: 539 + components: + - pos: 26.5,11.5 + parent: 179 + type: Transform + - uid: 540 + components: + - pos: 27.5,11.5 + parent: 179 + type: Transform + - uid: 545 + components: + - pos: 7.5,-4.5 + parent: 179 + type: Transform + - uid: 546 + components: + - pos: 8.5,-4.5 + parent: 179 + type: Transform + - uid: 547 + components: + - pos: 28.5,11.5 + parent: 179 + type: Transform + - uid: 548 + components: + - pos: 28.5,10.5 + parent: 179 + type: Transform + - uid: 549 + components: + - pos: 28.5,9.5 + parent: 179 + type: Transform + - uid: 550 + components: + - pos: 28.5,8.5 + parent: 179 + type: Transform + - uid: 551 + components: + - pos: 28.5,7.5 + parent: 179 + type: Transform + - uid: 552 + components: + - pos: 28.5,6.5 + parent: 179 + type: Transform + - uid: 553 + components: + - pos: 28.5,5.5 + parent: 179 + type: Transform + - uid: 554 + components: + - pos: 26.5,-2.5 + parent: 179 + type: Transform + - uid: 555 + components: + - pos: 26.5,-1.5 + parent: 179 + type: Transform + - uid: 556 + components: + - pos: 25.5,-0.5 + parent: 179 + type: Transform + - uid: 557 + components: + - pos: 26.5,-0.5 + parent: 179 + type: Transform + - uid: 558 + components: + - pos: 27.5,-0.5 + parent: 179 + type: Transform + - uid: 561 + components: + - pos: -14.5,0.5 + parent: 179 + type: Transform + - uid: 585 + components: + - pos: 9.5,10.5 + parent: 179 + type: Transform + - uid: 597 + components: + - pos: 22.5,-0.5 + parent: 179 + type: Transform + - uid: 598 + components: + - pos: 17.5,-0.5 + parent: 179 + type: Transform + - uid: 599 + components: + - pos: 18.5,-0.5 + parent: 179 + type: Transform + - uid: 600 + components: + - pos: 20.5,-0.5 + parent: 179 + type: Transform + - uid: 601 + components: + - pos: 21.5,-0.5 + parent: 179 + type: Transform + - uid: 602 + components: + - pos: 19.5,-0.5 + parent: 179 + type: Transform + - uid: 603 + components: + - pos: 14.5,3.5 + parent: 179 + type: Transform + - uid: 604 + components: + - pos: 13.5,3.5 + parent: 179 + type: Transform + - uid: 605 + components: + - pos: 12.5,3.5 + parent: 179 + type: Transform + - uid: 606 + components: + - pos: 12.5,2.5 + parent: 179 + type: Transform + - uid: 607 + components: + - pos: 12.5,1.5 + parent: 179 + type: Transform + - uid: 608 + components: + - pos: 12.5,0.5 + parent: 179 + type: Transform + - uid: 609 + components: + - pos: 12.5,-0.5 + parent: 179 + type: Transform + - uid: 610 + components: + - pos: 13.5,-0.5 + parent: 179 + type: Transform + - uid: 611 + components: + - pos: 14.5,-0.5 + parent: 179 + type: Transform + - uid: 612 + components: + - pos: 13.5,-1.5 + parent: 179 + type: Transform + - uid: 613 + components: + - pos: 13.5,-6.5 + parent: 179 + type: Transform + - uid: 614 + components: + - pos: 13.5,-5.5 + parent: 179 + type: Transform + - uid: 615 + components: + - pos: 13.5,-4.5 + parent: 179 + type: Transform + - uid: 616 + components: + - pos: 13.5,-3.5 + parent: 179 + type: Transform + - uid: 617 + components: + - pos: 13.5,-2.5 + parent: 179 + type: Transform + - uid: 618 + components: + - pos: 14.5,-6.5 + parent: 179 + type: Transform + - uid: 619 + components: + - pos: 15.5,-6.5 + parent: 179 + type: Transform + - uid: 620 + components: + - pos: 16.5,-6.5 + parent: 179 + type: Transform + - uid: 621 + components: + - pos: 17.5,-6.5 + parent: 179 + type: Transform + - uid: 622 + components: + - pos: 18.5,-6.5 + parent: 179 + type: Transform + - uid: 623 + components: + - pos: 19.5,-6.5 + parent: 179 + type: Transform + - uid: 624 + components: + - pos: 20.5,-6.5 + parent: 179 + type: Transform + - uid: 625 + components: + - pos: 21.5,-6.5 + parent: 179 + type: Transform + - uid: 626 + components: + - pos: 22.5,-6.5 + parent: 179 + type: Transform + - uid: 627 + components: + - pos: 23.5,-6.5 + parent: 179 + type: Transform + - uid: 628 + components: + - pos: 24.5,-6.5 + parent: 179 + type: Transform + - uid: 629 + components: + - pos: 25.5,-6.5 + parent: 179 + type: Transform + - uid: 630 + components: + - pos: 26.5,-6.5 + parent: 179 + type: Transform + - uid: 631 + components: + - pos: 26.5,-5.5 + parent: 179 + type: Transform + - uid: 632 + components: + - pos: 26.5,-4.5 + parent: 179 + type: Transform + - uid: 633 + components: + - pos: 27.5,-6.5 + parent: 179 + type: Transform + - uid: 634 + components: + - pos: 28.5,-6.5 + parent: 179 + type: Transform + - uid: 635 + components: + - pos: 29.5,-6.5 + parent: 179 + type: Transform + - uid: 636 + components: + - pos: 30.5,-6.5 + parent: 179 + type: Transform + - uid: 637 + components: + - pos: 31.5,-6.5 + parent: 179 + type: Transform + - uid: 638 + components: + - pos: 32.5,-6.5 + parent: 179 + type: Transform + - uid: 639 + components: + - pos: 33.5,-6.5 + parent: 179 + type: Transform + - uid: 640 + components: + - pos: 34.5,-6.5 + parent: 179 + type: Transform + - uid: 641 + components: + - pos: 34.5,-5.5 + parent: 179 + type: Transform + - uid: 642 + components: + - pos: 34.5,-4.5 + parent: 179 + type: Transform + - uid: 643 + components: + - pos: 34.5,-3.5 + parent: 179 + type: Transform + - uid: 644 + components: + - pos: 34.5,-2.5 + parent: 179 + type: Transform + - uid: 645 + components: + - pos: 34.5,-1.5 + parent: 179 + type: Transform + - uid: 646 + components: + - pos: 34.5,-0.5 + parent: 179 + type: Transform + - uid: 647 + components: + - pos: 33.5,-0.5 + parent: 179 + type: Transform + - uid: 648 + components: + - pos: 32.5,-0.5 + parent: 179 + type: Transform + - uid: 649 + components: + - pos: 31.5,-0.5 + parent: 179 + type: Transform + - uid: 650 + components: + - pos: 30.5,-0.5 + parent: 179 + type: Transform + - uid: 651 + components: + - pos: 29.5,-0.5 + parent: 179 + type: Transform + - uid: 652 + components: + - pos: 30.5,0.5 + parent: 179 + type: Transform + - uid: 653 + components: + - pos: 30.5,1.5 + parent: 179 + type: Transform + - uid: 654 + components: + - pos: 30.5,2.5 + parent: 179 + type: Transform + - uid: 655 + components: + - pos: 30.5,3.5 + parent: 179 + type: Transform + - uid: 656 + components: + - pos: 30.5,4.5 + parent: 179 + type: Transform + - uid: 657 + components: + - pos: 29.5,4.5 + parent: 179 + type: Transform + - uid: 658 + components: + - pos: 28.5,4.5 + parent: 179 + type: Transform + - uid: 659 + components: + - pos: 27.5,4.5 + parent: 179 + type: Transform + - uid: 702 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,6.5 + parent: 179 + type: Transform + - uid: 713 + components: + - pos: -7.5,9.5 + parent: 179 + type: Transform + - uid: 714 + components: + - pos: -7.5,10.5 + parent: 179 + type: Transform + - uid: 724 + components: + - pos: -2.5,12.5 + parent: 179 + type: Transform + - uid: 733 + components: + - pos: 4.5,5.5 + parent: 179 + type: Transform + - uid: 734 + components: + - pos: 4.5,4.5 + parent: 179 + type: Transform + - uid: 739 + components: + - pos: 8.5,7.5 + parent: 179 + type: Transform + - uid: 740 + components: + - pos: 8.5,6.5 + parent: 179 + type: Transform + - uid: 741 + components: + - pos: 8.5,5.5 + parent: 179 + type: Transform + - uid: 742 + components: + - pos: 8.5,4.5 + parent: 179 + type: Transform + - uid: 743 + components: + - pos: 8.5,3.5 + parent: 179 + type: Transform + - uid: 745 + components: + - pos: 4.5,7.5 + parent: 179 + type: Transform + - uid: 746 + components: + - pos: 4.5,6.5 + parent: 179 + type: Transform + - uid: 846 + components: + - pos: 2.5,19.5 + parent: 179 + type: Transform + - uid: 847 + components: + - pos: 3.5,19.5 + parent: 179 + type: Transform + - uid: 925 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,17.5 + parent: 179 + type: Transform + - uid: 958 + components: + - rot: 3.141592653589793 rad + pos: 15.5,18.5 + parent: 179 + type: Transform +- proto: WardrobeScience + entities: + - uid: 389 + components: + - pos: 12.5,21.5 + parent: 179 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 453 + components: + - pos: 13.5,21.5 + parent: 179 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: WaterTankFull + entities: + - uid: 115 + components: + - pos: 4.5,18.5 + parent: 179 + type: Transform + - uid: 694 + components: + - pos: -2.5,3.5 + parent: 179 + type: Transform +- proto: WeaponCapacitorRecharger + entities: + - uid: 708 + components: + - pos: -0.5,-3.5 + parent: 179 + type: Transform +- proto: WeaponLaserCarbine + entities: + - uid: 188 + components: + - pos: -3.5226438,-0.45543313 + parent: 179 + type: Transform +- proto: WeaponLauncherMultipleRocket + entities: + - uid: 671 + components: + - pos: -13.195735,9.730438 + parent: 179 + type: Transform +- proto: WeaponLauncherRocket + entities: + - uid: 436 + components: + - pos: -3.478273,-1.1611286 + parent: 179 + type: Transform +- proto: WeaponRifleAk + entities: + - uid: 437 + components: + - pos: -3.5018106,0.24183923 + parent: 179 + type: Transform + - uid: 949 + components: + - pos: -12.238617,9.081488 + parent: 179 + type: Transform +- proto: WelderExperimental + entities: + - uid: 343 + components: + - pos: 0.6895334,4.7183027 + parent: 179 + type: Transform +- proto: WeldingFuelTankFull + entities: + - uid: 693 + components: + - pos: -1.5,3.5 + parent: 179 + type: Transform +- proto: Window + entities: + - uid: 111 + components: + - pos: -0.5,-15.5 + parent: 179 + type: Transform + - uid: 194 + components: + - pos: -0.5,-16.5 + parent: 179 + type: Transform + - uid: 230 + components: + - pos: -0.5,-14.5 + parent: 179 + type: Transform + - uid: 1001 + components: + - pos: -3.5,-16.5 + parent: 179 + type: Transform + - uid: 1002 + components: + - pos: -3.5,-15.5 + parent: 179 + type: Transform + - uid: 1003 + components: + - pos: -3.5,-14.5 + parent: 179 + type: Transform + - uid: 1004 + components: + - pos: 2.5,-16.5 + parent: 179 + type: Transform + - uid: 1005 + components: + - pos: 2.5,-15.5 + parent: 179 + type: Transform + - uid: 1006 + components: + - pos: 2.5,-14.5 + parent: 179 + type: Transform +- proto: Wirecutter + entities: + - uid: 359 + components: + - pos: -1.6207478,4.3951616 + parent: 179 + type: Transform +- proto: Wrench + entities: + - uid: 327 + components: + - pos: -0.11783123,4.753312 + parent: 179 + type: Transform +... From ecffecec0a34161af71b362cefb6b8fb2baa4373 Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Thu, 15 Jun 2023 02:12:08 +0000 Subject: [PATCH 215/474] half bloodred slowdown (#17336) Co-authored-by: deltanedas <@deltanedas:kde.org> --- .../Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml index b0e4035785..4c3c126659 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml @@ -430,8 +430,8 @@ highPressureMultiplier: 0.05 lowPressureMultiplier: 1000 - type: ClothingSpeedModifier - walkModifier: 0.8 - sprintModifier: 0.8 + walkModifier: 0.9 + sprintModifier: 0.9 - type: Armor modifiers: coefficients: From bf3198c19e2669d3fb0025a0038135ffe6e87ef4 Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Thu, 15 Jun 2023 02:12:27 +0000 Subject: [PATCH 216/474] multitool in susbox (#17322) Co-authored-by: deltanedas <@deltanedas:kde.org> --- Resources/Prototypes/Catalog/Fills/Items/toolboxes.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/Catalog/Fills/Items/toolboxes.yml b/Resources/Prototypes/Catalog/Fills/Items/toolboxes.yml index 75344cbbca..4385222bc3 100644 --- a/Resources/Prototypes/Catalog/Fills/Items/toolboxes.yml +++ b/Resources/Prototypes/Catalog/Fills/Items/toolboxes.yml @@ -67,7 +67,7 @@ components: - type: StorageFill contents: - - id: ClothingBeltUtilityFilled + - id: ClothingBeltUtilityEngineering - id: ClothingHandsGlovesCombat - id: ClothingMaskGasSyndicate From 4359729387cf233d791b8c1e5498394a439a68fe Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Thu, 15 Jun 2023 02:13:05 +0000 Subject: [PATCH 217/474] robust harvest 1984 (#17331) Co-authored-by: deltanedas <@deltanedas:kde.org> --- Resources/Prototypes/Reagents/botany.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/Resources/Prototypes/Reagents/botany.yml b/Resources/Prototypes/Reagents/botany.yml index 60b3d0a316..0197054ae7 100644 --- a/Resources/Prototypes/Reagents/botany.yml +++ b/Resources/Prototypes/Reagents/botany.yml @@ -134,7 +134,17 @@ conditions: - !type:OrganType type: Plant - + - !type:HealthChange + conditions: + - !type:OrganType + type: Plant + - !type:ReagentThreshold + min: 30 + damage: + types: + Asphyxiation: 1 + Burn: 2 + Poison: 1 - type: reagent id: WeedKiller name: reagent-name-weed-killer From 93cbc78cab0fc71f14d126d6840a43a0ba81e63b Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Thu, 15 Jun 2023 05:13:25 +0300 Subject: [PATCH 218/474] Update departments.yml (#17272) --- Resources/Prototypes/Roles/Jobs/departments.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/Roles/Jobs/departments.yml b/Resources/Prototypes/Roles/Jobs/departments.yml index 29ca0c4743..522da2f467 100644 --- a/Resources/Prototypes/Roles/Jobs/departments.yml +++ b/Resources/Prototypes/Roles/Jobs/departments.yml @@ -82,7 +82,7 @@ - type: department id: Science - description: department-Command-description + description: department-Science-description color: "#D381C9" roles: - ResearchDirector From 1569daf3c7cbcd8ef0ca49d036bed996e6cda134 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 14 Jun 2023 22:14:09 -0400 Subject: [PATCH 219/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 7a800e515d..f45fde6669 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,16 +1,4 @@ Entries: -- author: GoodWheatley - changes: - - {message: 'Rigged Boxing Gloves are now available in the uplink for 5 TC, if you''re - a Passenger or Boxer.', type: Add} - id: 3492 - time: '2023-04-22T23:08:33.0000000+00:00' -- author: metalgearsloth - changes: - - {message: 'Health analyzer, handheld crew monitor, and handheld station maps require - power.', type: Tweak} - id: 3493 - time: '2023-04-23T02:25:13.0000000+00:00' - author: EmoGarbage404 changes: - {message: Removed the jackboot walking sound., type: Remove} @@ -2916,3 +2904,14 @@ Entries: output., type: Tweak} id: 3991 time: '2023-06-15T01:45:07.0000000+00:00' +- author: deltanedas + changes: + - {message: Blood-red hardsuits now slow you half as much as before., type: Tweak} + id: 3992 + time: '2023-06-15T02:12:09.0000000+00:00' +- author: deltanedas + changes: + - {message: 'Implemented a new robust harvest overdose threshold for Diona, preventing + them from achieving immortality.', type: Tweak} + id: 3993 + time: '2023-06-15T02:13:06.0000000+00:00' From 8dae049ed76acb1ada887c28be88815ffb431e6d Mon Sep 17 00:00:00 2001 From: Flareguy <78941145+Flareguy@users.noreply.github.com> Date: Wed, 14 Jun 2023 21:15:22 -0500 Subject: [PATCH 220/474] EVA suit resprite (+ new fluff hardsuit) (#17268) * eva suit resprite * speed bump * yaml linter fix --- .../Catalog/Fills/Lockers/suit_storage.yml | 53 +- .../Prototypes/Catalog/uplink_catalog.yml | 2 +- .../Clothing/Head/base_clothinghead.yml | 1 + .../Entities/Clothing/Head/eva-helmets.yml | 79 ++ .../Clothing/Head/hardsuit-helmets.yml | 467 +++++++----- .../Entities/Clothing/Head/helmets.yml | 175 ++--- .../Clothing/OuterClothing/hardsuits.yml | 717 +++++++++--------- .../Clothing/OuterClothing/softsuits.yml | 101 +++ .../Entities/Clothing/OuterClothing/suits.yml | 21 - .../Graphs/clothing/clown_hardsuit.yml | 2 +- .../Hardsuits/basic.rsi/equipped-HELMET.png | Bin 0 -> 1292 bytes .../Head/Hardsuits/basic.rsi/icon.png | Bin 0 -> 950 bytes .../Head/Hardsuits/basic.rsi/inhand-left.png | Bin 0 -> 1070 bytes .../Head/Hardsuits/basic.rsi/inhand-right.png | Bin 0 -> 1076 bytes .../Hardsuits/basic.rsi}/meta.json | 4 +- .../Head/Helmets/eva.rsi/equipped-HELMET.png | Bin 1292 -> 1417 bytes .../Clothing/Head/Helmets/eva.rsi/icon.png | Bin 950 -> 740 bytes .../Head/Helmets/eva.rsi/inhand-left.png | Bin 1070 -> 886 bytes .../Head/Helmets/eva.rsi/inhand-right.png | Bin 1076 -> 890 bytes .../Clothing/Head/Helmets/eva.rsi/meta.json | 2 +- .../Helmets/eva_large.rsi/equipped-HELMET.png | Bin 0 -> 1394 bytes .../Head/Helmets/eva_large.rsi/icon.png | Bin 0 -> 743 bytes .../Helmets/eva_large.rsi/inhand-left.png | Bin 0 -> 897 bytes .../Helmets/eva_large.rsi/inhand-right.png | Bin 0 -> 897 bytes .../Head/Helmets/eva_large.rsi/meta.json | 26 + .../eva_syndicate.rsi/equipped-HELMET.png | Bin 0 -> 1537 bytes .../Head/Helmets/eva_syndicate.rsi/icon.png | Bin 0 -> 729 bytes .../Helmets/eva_syndicate.rsi/inhand-left.png | Bin 0 -> 906 bytes .../eva_syndicate.rsi/inhand-right.png | Bin 0 -> 908 bytes .../Head/Helmets/eva_syndicate.rsi/meta.json | 26 + .../Helmets/syndicate.rsi/equipped-HELMET.png | Bin 1271 -> 0 bytes .../headlight-equipped-HELMET.png | Bin 1314 -> 0 bytes .../syndicate.rsi/headlight-inhand-left.png | Bin 1052 -> 0 bytes .../syndicate.rsi/headlight-inhand-right.png | Bin 1069 -> 0 bytes .../Head/Helmets/syndicate.rsi/headlight.png | Bin 290 -> 0 bytes .../Head/Helmets/syndicate.rsi/icon.png | Bin 278 -> 0 bytes .../Helmets/syndicate.rsi/inhand-left.png | Bin 1037 -> 0 bytes .../Helmets/syndicate.rsi/inhand-right.png | Bin 1037 -> 0 bytes .../Head/Helmets/syndicate.rsi/meta.json | 56 -- .../visorlit-equipped-HELMET.png | Bin 1284 -> 0 bytes .../syndicate.rsi/visorlit-inhand-left.png | Bin 1042 -> 0 bytes .../syndicate.rsi/visorlit-inhand-right.png | Bin 1045 -> 0 bytes .../Head/Helmets/syndicate.rsi/visorlit.png | Bin 282 -> 0 bytes .../equipped-OUTERCLOTHING-monkey.png | Bin .../equipped-OUTERCLOTHING.png | Bin .../Hardsuits/{eva.rsi => basic.rsi}/icon.png | Bin .../{eva.rsi => basic.rsi}/inhand-left.png | Bin .../{eva.rsi => basic.rsi}/inhand-right.png | Bin .../{eva.rsi => basic.rsi}/meta.json | 0 .../equipped-OUTERCLOTHING.png | Bin 2711 -> 0 bytes .../Hardsuits/evaprisoner.rsi/icon.png | Bin 971 -> 0 bytes .../Hardsuits/evaprisoner.rsi/inhand-left.png | Bin 765 -> 0 bytes .../evaprisoner.rsi/inhand-right.png | Bin 941 -> 0 bytes .../equipped-OUTERCLOTHING.png | Bin .../icon.png | Bin .../inhand-left.png | Bin .../inhand-right.png | Bin .../meta.json | 0 .../emergency.rsi/equipped-OUTERCLOTHING.png | Bin 2661 -> 0 bytes .../Suits/emergency.rsi/icon.png | Bin 945 -> 0 bytes .../Suits/emergency.rsi/inhand-left.png | Bin 835 -> 0 bytes .../Suits/emergency.rsi/inhand-right.png | Bin 847 -> 0 bytes .../Suits/eva.rsi/equipped-OUTERCLOTHING.png | Bin 0 -> 920 bytes .../OuterClothing/Suits/eva.rsi/icon.png | Bin 0 -> 464 bytes .../Suits/eva.rsi/inhand-left.png | Bin 0 -> 472 bytes .../Suits/eva.rsi/inhand-right.png | Bin 0 -> 447 bytes .../OuterClothing/Suits/eva.rsi/meta.json | 26 + .../equipped-OUTERCLOTHING.png | Bin 0 -> 961 bytes .../Suits/eva_emergency.rsi/icon.png | Bin 0 -> 473 bytes .../Suits/eva_emergency.rsi/inhand-left.png | Bin 0 -> 475 bytes .../Suits/eva_emergency.rsi/inhand-right.png | Bin 0 -> 449 bytes .../Suits/eva_emergency.rsi/meta.json | 26 + .../equipped-OUTERCLOTHING-monkey.png | Bin .../equipped-OUTERCLOTHING.png | Bin 0 -> 944 bytes .../Suits/eva_prisoner.rsi/icon.png | Bin 0 -> 476 bytes .../Suits/eva_prisoner.rsi/inhand-left.png | Bin 0 -> 479 bytes .../Suits/eva_prisoner.rsi/inhand-right.png | Bin 0 -> 443 bytes .../eva_prisoner.rsi}/meta.json | 2 +- .../equipped-OUTERCLOTHING-monkey.png | Bin .../equipped-OUTERCLOTHING.png | Bin 0 -> 935 bytes .../Suits/eva_syndicate.rsi/icon.png | Bin 0 -> 476 bytes .../Suits/eva_syndicate.rsi/inhand-left.png | Bin 0 -> 473 bytes .../Suits/eva_syndicate.rsi/inhand-right.png | Bin 0 -> 441 bytes .../meta.json | 2 +- .../syndicate.rsi/equipped-OUTERCLOTHING.png | Bin 2731 -> 0 bytes .../Suits/syndicate.rsi/icon.png | Bin 928 -> 0 bytes .../Suits/syndicate.rsi/inhand-left.png | Bin 890 -> 0 bytes .../Suits/syndicate.rsi/inhand-right.png | Bin 885 -> 0 bytes 88 files changed, 998 insertions(+), 790 deletions(-) create mode 100644 Resources/Prototypes/Entities/Clothing/Head/eva-helmets.yml create mode 100644 Resources/Prototypes/Entities/Clothing/OuterClothing/softsuits.yml create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/basic.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/basic.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/basic.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/basic.rsi/inhand-right.png rename Resources/Textures/Clothing/{OuterClothing/Suits/emergency.rsi => Head/Hardsuits/basic.rsi}/meta.json (76%) create mode 100644 Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/meta.json create mode 100644 Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/headlight-equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/headlight-inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/headlight-inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/headlight.png delete mode 100644 Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/visorlit-equipped-HELMET.png delete mode 100644 Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/visorlit-inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/visorlit-inhand-right.png delete mode 100644 Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/visorlit.png rename Resources/Textures/Clothing/OuterClothing/Hardsuits/{eva.rsi => basic.rsi}/equipped-OUTERCLOTHING-monkey.png (100%) rename Resources/Textures/Clothing/OuterClothing/Hardsuits/{eva.rsi => basic.rsi}/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/Hardsuits/{eva.rsi => basic.rsi}/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/Hardsuits/{eva.rsi => basic.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/Hardsuits/{eva.rsi => basic.rsi}/inhand-right.png (100%) rename Resources/Textures/Clothing/OuterClothing/Hardsuits/{eva.rsi => basic.rsi}/meta.json (100%) delete mode 100644 Resources/Textures/Clothing/OuterClothing/Hardsuits/evaprisoner.rsi/equipped-OUTERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/Hardsuits/evaprisoner.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/Hardsuits/evaprisoner.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/Hardsuits/evaprisoner.rsi/inhand-right.png rename Resources/Textures/Clothing/OuterClothing/Suits/{ancientvoidsuit.rsi => ancient_voidsuit.rsi}/equipped-OUTERCLOTHING.png (100%) rename Resources/Textures/Clothing/OuterClothing/Suits/{ancientvoidsuit.rsi => ancient_voidsuit.rsi}/icon.png (100%) rename Resources/Textures/Clothing/OuterClothing/Suits/{ancientvoidsuit.rsi => ancient_voidsuit.rsi}/inhand-left.png (100%) rename Resources/Textures/Clothing/OuterClothing/Suits/{ancientvoidsuit.rsi => ancient_voidsuit.rsi}/inhand-right.png (100%) rename Resources/Textures/Clothing/OuterClothing/Suits/{ancientvoidsuit.rsi => ancient_voidsuit.rsi}/meta.json (100%) delete mode 100644 Resources/Textures/Clothing/OuterClothing/Suits/emergency.rsi/equipped-OUTERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/Suits/emergency.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/Suits/emergency.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/Suits/emergency.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/icon.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/meta.json create mode 100644 Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/icon.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/meta.json rename Resources/Textures/Clothing/OuterClothing/{Hardsuits/evaprisoner.rsi => Suits/eva_prisoner.rsi}/equipped-OUTERCLOTHING-monkey.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/icon.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/inhand-right.png rename Resources/Textures/Clothing/OuterClothing/{Hardsuits/evaprisoner.rsi => Suits/eva_prisoner.rsi}/meta.json (63%) rename Resources/Textures/Clothing/OuterClothing/Suits/{syndicate.rsi => eva_syndicate.rsi}/equipped-OUTERCLOTHING-monkey.png (100%) create mode 100644 Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/icon.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/inhand-right.png rename Resources/Textures/Clothing/OuterClothing/Suits/{syndicate.rsi => eva_syndicate.rsi}/meta.json (63%) delete mode 100644 Resources/Textures/Clothing/OuterClothing/Suits/syndicate.rsi/equipped-OUTERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/Suits/syndicate.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/Suits/syndicate.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/OuterClothing/Suits/syndicate.rsi/inhand-right.png diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/suit_storage.yml b/Resources/Prototypes/Catalog/Fills/Lockers/suit_storage.yml index d5d96d75c7..09afc38349 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/suit_storage.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/suit_storage.yml @@ -12,7 +12,34 @@ - id: ClothingOuterHardsuitEVA - id: ClothingHeadHelmetEVA - id: ClothingMaskBreath - + +#Basic EVA (Big Ass Helmet) +- type: entity + id: SuitStorageEVAAlternate + parent: SuitStorageBase + suffix: EVA, Large Helmet + components: + - type: StorageFill + contents: + - id: NitrogenTankFilled + - id: OxygenTankFilled + - id: ClothingOuterHardsuitEVA + - id: ClothingHeadHelmetEVALarge + - id: ClothingMaskBreath + +#Emergency EVA +- type: entity + id: SuitStorageEVAEmergency + parent: SuitStorageBase + suffix: Emergency EVA + components: + - type: StorageFill + contents: + - id: NitrogenTankFilled + - id: OxygenTankFilled + - id: ClothingOuterSuitEmergency + - id: ClothingMaskBreath + #Prisoner EVA - type: entity id: SuitStorageEVAPrisoner @@ -21,10 +48,10 @@ components: - type: StorageFill contents: -# - id: NitrogenTankFilled #there's no emergency nitrogen tank to match yet so i have opted to remove it. call it cost cutting measures - - id: EmergencyOxygenTankFilled + - id: NitrogenTankFilled + - id: OxygenTankFilled - id: ClothingOuterHardsuitEVAPrisoner - - id: ClothingHeadHelmetEVA + - id: ClothingHeadHelmetEVALarge - id: ClothingMaskBreath #Syndicate EVA @@ -51,10 +78,9 @@ contents: - id: NitrogenTankFilled - id: OxygenTankFilled - - id: ClothingOuterHardsuitEVAPrisoner - - id: ClothingHeadHelmetEVA + - id: ClothingOuterHardsuitPirateEVA - id: ClothingMaskGas - + #NTSRA Voidsuit - type: entity id: SuitStorageNTSRA @@ -69,6 +95,19 @@ - id: ClothingMaskBreath #HARDSUITS +#Basic hardsuit +- type: entity + id: SuitStorageBasic + parent: SuitStorageBase + suffix: Basic Hardsuit + components: + - type: StorageFill + contents: + - id: NitrogenTankFilled + - id: OxygenTankFilled + - id: ClothingOuterHardsuitBasic + - id: ClothingMaskBreath + #Engineering hardsuit - type: entity id: SuitStorageEngi diff --git a/Resources/Prototypes/Catalog/uplink_catalog.yml b/Resources/Prototypes/Catalog/uplink_catalog.yml index 596f7ea97a..6774c444e2 100644 --- a/Resources/Prototypes/Catalog/uplink_catalog.yml +++ b/Resources/Prototypes/Catalog/uplink_catalog.yml @@ -779,7 +779,7 @@ id: UplinkEVASyndie name: uplink-eva-syndie-name description: uplink-eva-syndie-desc - icon: { sprite: /Textures/Clothing/OuterClothing/Suits/syndicate.rsi, state: icon } + icon: { sprite: /Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi, state: icon } productEntity: ClothingBackpackDuffelSyndicateEVABundle cost: Telecrystal: 2 diff --git a/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml b/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml index daf47b9707..1b9cc8ab4f 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml @@ -121,6 +121,7 @@ tags: - HidesHair - WhitelistChameleon + - HelmetEVA - type: IdentityBlocker - type: entity diff --git a/Resources/Prototypes/Entities/Clothing/Head/eva-helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/eva-helmets.yml new file mode 100644 index 0000000000..2fd17e31cf --- /dev/null +++ b/Resources/Prototypes/Entities/Clothing/Head/eva-helmets.yml @@ -0,0 +1,79 @@ +#EVA Helmet +- type: entity + parent: ClothingHeadEVAHelmetBase + id: ClothingHeadHelmetEVA + name: EVA helmet + description: An old-but-gold helmet designed for extravehicular activites. Infamous for making security officers paranoid. + components: + - type: Sprite + sprite: Clothing/Head/Helmets/eva.rsi + - type: Clothing + sprite: Clothing/Head/Helmets/eva.rsi + +#Large EVA Helmet +- type: entity + parent: ClothingHeadEVAHelmetBase + id: ClothingHeadHelmetEVALarge + name: EVA helmet + description: An old-but-gold helmet designed for extravehicular activites. + components: + - type: Sprite + sprite: Clothing/Head/Helmets/eva_large.rsi + - type: Clothing + sprite: Clothing/Head/Helmets/eva_large.rsi + +#Syndicate EVA Helmet +- type: entity + parent: ClothingHeadEVAHelmetBase + id: ClothingHeadHelmetSyndicate + name: syndicate EVA helmet + description: A simple, stylish EVA helmet. Designed for maximum humble space-badassery. + components: + - type: Sprite + sprite: Clothing/Head/Helmets/eva_syndicate.rsi + - type: Clothing + sprite: Clothing/Head/Helmets/eva_syndicate.rsi + +#Cosmonaut Helmet +- type: entity + parent: ClothingHeadEVAHelmetBase + id: ClothingHeadHelmetCosmonaut + name: cosmonaut helmet + description: Ancient design, but advanced manufacturing. #Description here originally started with " A deceptively well armored space helmet." Potentially had armor values in SS13 that weren't brought over? + components: + - type: Sprite + sprite: Clothing/Head/Helmets/cosmonaut.rsi + - type: Clothing + sprite: Clothing/Head/Helmets/cosmonaut.rsi + +#Paramedic Void Helmet +- type: entity + parent: ClothingHeadEVAHelmetBase + id: ClothingHeadHelmetVoidParamed + name: Paramedic Void Helmet + description: A void helmet made for paramedics. + components: + - type: Sprite + sprite: Clothing/Head/Helmets/paramedhelm.rsi + - type: Clothing + sprite: Clothing/Head/Helmets/paramedhelm.rsi + - type: TemperatureProtection + coefficient: 0.1 + - type: Armor + modifiers: + coefficients: + Slash: 0.95 + Heat: 0.90 + Radiation: 0.75 + +#Ancient Void Helmet +- type: entity + parent: ClothingHeadEVAHelmetBase + id: ClothingHeadHelmetAncient + name: NTSRA void helmet + description: An ancient space helmet, designed by the NTSRA branch of CentCom. + components: + - type: Sprite + sprite: Clothing/Head/Helmets/ancientvoidsuit.rsi + - type: Clothing + sprite: Clothing/Head/Helmets/ancientvoidsuit.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml index 15900fa61e..b283f665ef 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml @@ -1,3 +1,29 @@ +#When adding new hardsuits, please try to keep the organization consistent with hardsuit.yml (if possible.) + +#CREW HARDSUITS +#Standard Hardsuit +- type: entity + parent: ClothingHeadHardsuitBase + id: ClothingHeadHelmetHardsuitBasic + noSpawn: true + name: basic hardsuit helmet + description: A basic-looking hardsuit helmet that provides minor protection against most sources of damage. + components: + - type: Sprite + sprite: Clothing/Head/Hardsuits/basic.rsi + - type: Clothing + sprite: Clothing/Head/Hardsuits/basic.rsi + - type: Armor + modifiers: + coefficients: + Blunt: 0.9 + Slash: 0.9 + Piercing: 0.9 + Heat: 0.9 + Radiation: 0.9 + Caustic: 0.9 + +#Atmospherics Hardsuit - type: entity parent: ClothingHeadHardsuitWithLightBase id: ClothingHeadHelmetHardsuitAtmos @@ -45,36 +71,7 @@ - type: TemperatureProtection coefficient: 0.005 -- type: entity - parent: ClothingHeadHardsuitBase - id: ClothingHeadHelmetHardsuitCap - noSpawn: true - name: captain's hardsuit helmet - description: Special hardsuit helmet, made for the captain of the station. - components: - - type: Sprite - sprite: Clothing/Head/Hardsuits/capspace.rsi - - type: Clothing - sprite: Clothing/Head/Hardsuits/capspace.rsi - - type: PressureProtection - highPressureMultiplier: 0.3 - lowPressureMultiplier: 1000 - -- type: entity - parent: ClothingHeadHardsuitBase - id: ClothingHeadHelmetHardsuitDeathsquad - noSpawn: true - name: deathsquad hardsuit helmet - description: A robust helmet for special operations. - components: - - type: Sprite - sprite: Clothing/Head/Hardsuits/deathsquad.rsi - - type: Clothing - sprite: Clothing/Head/Hardsuits/deathsquad.rsi - - type: PressureProtection - highPressureMultiplier: 0.08 - lowPressureMultiplier: 1000 - +#Engineering Hardsuit - type: entity parent: ClothingHeadHardsuitWithLightBase id: ClothingHeadHelmetHardsuitEngineering @@ -92,57 +89,42 @@ highPressureMultiplier: 0.1 lowPressureMultiplier: 1000 +#Spationaut Hardsuit - type: entity parent: ClothingHeadHardsuitWithLightBase - id: ClothingHeadHelmetHardsuitEngineeringWhite - noSpawn: true - name: chief engineer's hardsuit helmet - description: Special hardsuit helmet, made for the chief engineer of the station. - components: - - type: Sprite - sprite: Clothing/Head/Hardsuits/engineering-white.rsi - - type: Clothing - sprite: Clothing/Head/Hardsuits/engineering-white.rsi - - type: PointLight - color: "#daffad" - - type: PressureProtection - highPressureMultiplier: 0.08 - lowPressureMultiplier: 1000 - -- type: entity - parent: ClothingHeadHardsuitWithLightBase - id: ClothingHeadHelmetHardsuitMedical - noSpawn: true - name: chief medical officer's hardsuit helmet - description: Lightweight medical hardsuit helmet that doesn't restrict your head movements. - components: - - type: Sprite - sprite: Clothing/Head/Hardsuits/medical.rsi - - type: Clothing - sprite: Clothing/Head/Hardsuits/medical.rsi - - type: PointLight - color: "#adf1ff" - - type: PressureProtection - highPressureMultiplier: 0.6 - lowPressureMultiplier: 5500 - -- type: entity - parent: ClothingHeadHardsuitWithLightBase - id: ClothingHeadHelmetHardsuitRd + id: ClothingHeadHelmetHardsuitSpatio noSpawn: true - name: experimental research hardsuit helmet - description: Lightweight hardsuit helmet that doesn't restrict your head movements. + name: spationaut hardsuit helmet + description: A sturdy helmet designed for complex industrial operations in space. components: - type: Sprite - sprite: Clothing/Head/Hardsuits/rd.rsi + sprite: Clothing/Head/Hardsuits/spatiohelm.rsi + layers: + - state: icon + - state: icon-unshaded + shader: unshaded + - state: light-overlay + visible: false + shader: unshaded + map: [ "light" ] + - type: HandheldLight + addPrefix: false + - type: ToggleableLightVisuals + clothingVisuals: + head: + - state: equipped-head-light + shader: unshaded - type: Clothing - sprite: Clothing/Head/Hardsuits/rd.rsi - - type: PointLight - color: "#d6adff" + clothingVisuals: + head: + - state: equipped-head + - state: equipped-head-unshaded + shader: unshaded - type: PressureProtection - highPressureMultiplier: 0.60 - lowPressureMultiplier: 5500 + highPressureMultiplier: 0.72 + lowPressureMultiplier: 10000 +#Salvage Hardsuit - type: entity parent: ClothingHeadHardsuitWithLightBase id: ClothingHeadHelmetHardsuitSalvage @@ -167,6 +149,7 @@ radius: 7 energy: 3 +#Security Hardsuit - type: entity parent: ClothingHeadHardsuitWithLightBase id: ClothingHeadHelmetHardsuitSecurity @@ -190,29 +173,7 @@ Slash: 0.8 Piercing: 0.8 -- type: entity - parent: ClothingHeadHardsuitWithLightBase - id: ClothingHeadHelmetHardsuitSecurityRed - noSpawn: true - name: head of security's hardsuit helmet - description: Security hardsuit helmet with the latest top secret NT-HUD software. Belongs to the HoS. - components: - - type: Sprite - sprite: Clothing/Head/Hardsuits/security-red.rsi - - type: Clothing - sprite: Clothing/Head/Hardsuits/security-red.rsi - - type: PointLight - color: "#ffeead" - - type: PressureProtection - highPressureMultiplier: 0.45 - lowPressureMultiplier: 10000 - - type: Armor - modifiers: - coefficients: - Blunt: 0.8 - Slash: 0.8 - Piercing: 0.8 - +#Brigmedic Hardsuit - type: entity parent: ClothingHeadHardsuitWithLightBase id: ClothingHeadHelmetHardsuitBrigmedic @@ -239,6 +200,7 @@ highPressureMultiplier: 0.6 lowPressureMultiplier: 5500 +#Warden's Hardsuit - type: entity parent: ClothingHeadHardsuitWithLightBase id: ClothingHeadHelmetHardsuitWarden @@ -262,123 +224,113 @@ Slash: 0.8 Piercing: 0.8 +#Captain's Hardsuit - type: entity - parent: ClothingHeadHardsuitWithLightBase - id: ClothingHeadHelmetHardsuitSyndie + parent: ClothingHeadHardsuitBase + id: ClothingHeadHelmetHardsuitCap noSpawn: true - name: blood-red hardsuit helmet - description: An advanced red hardsuit helmet designed for work in special operations. + name: captain's hardsuit helmet + description: Special hardsuit helmet, made for the captain of the station. components: - type: Sprite - sprite: Clothing/Head/Hardsuits/syndicate.rsi + sprite: Clothing/Head/Hardsuits/capspace.rsi - type: Clothing - sprite: Clothing/Head/Hardsuits/syndicate.rsi - - type: PointLight - color: green + sprite: Clothing/Head/Hardsuits/capspace.rsi - type: PressureProtection - highPressureMultiplier: 0.08 + highPressureMultiplier: 0.3 lowPressureMultiplier: 1000 - - type: Armor - modifiers: - coefficients: - Blunt: 0.8 - Slash: 0.8 - Piercing: 0.8 - Heat: 0.8 - Radiation: 0.5 +#Chief Engineer's Hardsuit - type: entity parent: ClothingHeadHardsuitWithLightBase - id: ClothingHeadHelmetHardsuitWizard + id: ClothingHeadHelmetHardsuitEngineeringWhite noSpawn: true - name: wizard hardsuit helmet - description: A bizarre gem-encrusted helmet that radiates magical energies. + name: chief engineer's hardsuit helmet + description: Special hardsuit helmet, made for the chief engineer of the station. components: - type: Sprite - sprite: Clothing/Head/Hardsuits/wizard.rsi + sprite: Clothing/Head/Hardsuits/engineering-white.rsi - type: Clothing - sprite: Clothing/Head/Hardsuits/wizard.rsi + sprite: Clothing/Head/Hardsuits/engineering-white.rsi - type: PointLight - color: "#ffadfb" + color: "#daffad" - type: PressureProtection - highPressureMultiplier: 0.27 + highPressureMultiplier: 0.08 lowPressureMultiplier: 1000 +#Chief Medical Officer's Hardsuit - type: entity - parent: ClothingHeadHardsuitBase - id: ClothingHeadHelmetHardsuitLing + parent: ClothingHeadHardsuitWithLightBase + id: ClothingHeadHelmetHardsuitMedical noSpawn: true - name: organic space helmet - description: A spaceworthy biomass of pressure and temperature resistant tissue. + name: chief medical officer's hardsuit helmet + description: Lightweight medical hardsuit helmet that doesn't restrict your head movements. components: - type: Sprite - sprite: Clothing/Head/Hardsuits/lingspacehelmet.rsi + sprite: Clothing/Head/Hardsuits/medical.rsi - type: Clothing - sprite: Clothing/Head/Hardsuits/lingspacehelmet.rsi + sprite: Clothing/Head/Hardsuits/medical.rsi + - type: PointLight + color: "#adf1ff" - type: PressureProtection - highPressureMultiplier: 0.225 - lowPressureMultiplier: 10000 + highPressureMultiplier: 0.6 + lowPressureMultiplier: 5500 +#Research Director's Hardsuit - type: entity parent: ClothingHeadHardsuitWithLightBase - id: ClothingHeadHelmetHardsuitSpatio + id: ClothingHeadHelmetHardsuitRd noSpawn: true - name: spationaut hardsuit helmet - description: A sturdy helmet designed for complex industrial operations in space. + name: experimental research hardsuit helmet + description: Lightweight hardsuit helmet that doesn't restrict your head movements. components: - type: Sprite - sprite: Clothing/Head/Hardsuits/spatiohelm.rsi - layers: - - state: icon - - state: icon-unshaded - shader: unshaded - - state: light-overlay - visible: false - shader: unshaded - map: [ "light" ] - - type: HandheldLight - addPrefix: false - - type: ToggleableLightVisuals - clothingVisuals: - head: - - state: equipped-head-light - shader: unshaded + sprite: Clothing/Head/Hardsuits/rd.rsi - type: Clothing - clothingVisuals: - head: - - state: equipped-head - - state: equipped-head-unshaded - shader: unshaded + sprite: Clothing/Head/Hardsuits/rd.rsi + - type: PointLight + color: "#d6adff" - type: PressureProtection - highPressureMultiplier: 0.72 - lowPressureMultiplier: 10000 + highPressureMultiplier: 0.60 + lowPressureMultiplier: 5500 +#Head of Security's hardsuit - type: entity - parent: ClothingHeadHardsuitBase - id: ClothingHeadHelmetHardsuitCybersun + parent: ClothingHeadHardsuitWithLightBase + id: ClothingHeadHelmetHardsuitSecurityRed noSpawn: true - name: cybersun juggernaut helmet - description: Made of compressed red matter, this helmet was designed in the Tau chromosphere facility. + name: head of security's hardsuit helmet + description: Security hardsuit helmet with the latest top secret NT-HUD software. Belongs to the HoS. components: - type: Sprite - sprite: Clothing/Head/Hardsuits/cybersun.rsi + sprite: Clothing/Head/Hardsuits/security-red.rsi - type: Clothing - sprite: Clothing/Head/Hardsuits/cybersun.rsi + sprite: Clothing/Head/Hardsuits/security-red.rsi + - type: PointLight + color: "#ffeead" - type: PressureProtection - highPressureMultiplier: 0.3 - lowPressureMultiplier: 1000 + highPressureMultiplier: 0.45 + lowPressureMultiplier: 10000 + - type: Armor + modifiers: + coefficients: + Blunt: 0.8 + Slash: 0.8 + Piercing: 0.8 +#ANTAG HARDSUITS +#Blood-red Hardsuit - type: entity parent: ClothingHeadHardsuitWithLightBase - id: ClothingHeadHelmetHardsuitSyndieCommander + id: ClothingHeadHelmetHardsuitSyndie noSpawn: true - name: syndicate commander helmet - description: A syndicate hardsuit helmet custom designed for commanders of syndicate operative squads. + name: blood-red hardsuit helmet + description: An advanced red hardsuit helmet designed for work in special operations. components: - type: Sprite - sprite: Clothing/Head/Hardsuits/syndiecommander.rsi + sprite: Clothing/Head/Hardsuits/syndicate.rsi - type: Clothing - sprite: Clothing/Head/Hardsuits/syndiecommander.rsi + sprite: Clothing/Head/Hardsuits/syndicate.rsi - type: PointLight color: green - type: PressureProtection @@ -387,12 +339,29 @@ - type: Armor modifiers: coefficients: - Blunt: 0.6 - Slash: 0.6 - Piercing: 0.6 + Blunt: 0.8 + Slash: 0.8 + Piercing: 0.8 Heat: 0.8 Radiation: 0.5 +#Cybersun Juggernaut Hardsuit +- type: entity + parent: ClothingHeadHardsuitBase + id: ClothingHeadHelmetHardsuitCybersun + noSpawn: true + name: cybersun juggernaut helmet + description: Made of compressed red matter, this helmet was designed in the Tau chromosphere facility. + components: + - type: Sprite + sprite: Clothing/Head/Hardsuits/cybersun.rsi + - type: Clothing + sprite: Clothing/Head/Hardsuits/cybersun.rsi + - type: PressureProtection + highPressureMultiplier: 0.3 + lowPressureMultiplier: 1000 + +#Syndicate Elite Hardsuit - type: entity parent: ClothingHeadHardsuitWithLightBase id: ClothingHeadHelmetHardsuitSyndieElite @@ -420,63 +389,67 @@ Heat: 0.2 Radiation: 0.5 +#Syndicate Commander Hardsuit - type: entity parent: ClothingHeadHardsuitWithLightBase - id: ClothingHeadHelmetCBURN + id: ClothingHeadHelmetHardsuitSyndieCommander noSpawn: true - name: CBURN exosuit helmet - description: A pressure resistant and fireproof hood worn by special cleanup units. + name: syndicate commander helmet + description: A syndicate hardsuit helmet custom designed for commanders of syndicate operative squads. components: - type: Sprite - sprite: Clothing/Head/Hardsuits/cburn.rsi - layers: - - state: icon - - state: icon-unshaded - shader: unshaded - - state: light-overlay - visible: false - shader: unshaded - map: [ "light" ] + sprite: Clothing/Head/Hardsuits/syndiecommander.rsi - type: Clothing - clothingVisuals: - head: - - state: equipped-head - - state: equipped-head-unshaded - shader: unshaded + sprite: Clothing/Head/Hardsuits/syndiecommander.rsi - type: PointLight - color: orange + color: green - type: PressureProtection highPressureMultiplier: 0.08 lowPressureMultiplier: 1000 - - type: TemperatureProtection - coefficient: 0.005 - type: Armor modifiers: coefficients: - Blunt: 0.9 - Slash: 0.9 - Piercing: 0.9 - Heat: 0.1 - Shock: 0.1 - Cold: 0.2 - Radiation: 0.2 + Blunt: 0.6 + Slash: 0.6 + Piercing: 0.6 + Heat: 0.8 + Radiation: 0.5 +#Wizard Hardsuit - type: entity - parent: ClothingHeadHardsuitBase - id: ClothingHeadHelmetHardsuitPirateCap + parent: ClothingHeadHardsuitWithLightBase + id: ClothingHeadHelmetHardsuitWizard noSpawn: true - name: ancient hardsuit helmet - suffix: Pirate - description: Special hardsuit helmet, made for the captain of a pirate ship. + name: wizard hardsuit helmet + description: A bizarre gem-encrusted helmet that radiates magical energies. components: - type: Sprite - sprite: Clothing/Head/Hardsuits/piratecaptainhelm.rsi + sprite: Clothing/Head/Hardsuits/wizard.rsi - type: Clothing - sprite: Clothing/Head/Hardsuits/piratecaptainhelm.rsi + sprite: Clothing/Head/Hardsuits/wizard.rsi + - type: PointLight + color: "#ffadfb" - type: PressureProtection - highPressureMultiplier: 0.3 + highPressureMultiplier: 0.27 lowPressureMultiplier: 1000 +#Organic Space Suit +- type: entity + parent: ClothingHeadHardsuitBase + id: ClothingHeadHelmetHardsuitLing + noSpawn: true + name: organic space helmet + description: A spaceworthy biomass of pressure and temperature resistant tissue. + components: + - type: Sprite + sprite: Clothing/Head/Hardsuits/lingspacehelmet.rsi + - type: Clothing + sprite: Clothing/Head/Hardsuits/lingspacehelmet.rsi + - type: PressureProtection + highPressureMultiplier: 0.225 + lowPressureMultiplier: 10000 + +#Pirate EVA Suit (Deep Space EVA Suit) - type: entity parent: ClothingHeadHardsuitBase id: ClothingHeadHelmetHardsuitPirateEVA @@ -493,7 +466,25 @@ highPressureMultiplier: 0.3 lowPressureMultiplier: 1000 -#ERT +#Pirate Captain Hardsuit +- type: entity + parent: ClothingHeadHardsuitBase + id: ClothingHeadHelmetHardsuitPirateCap + noSpawn: true + name: pirate captain's hardsuit helmet + suffix: Pirate + description: A special hardsuit helmet, made for the captain of a pirate ship. + components: + - type: Sprite + sprite: Clothing/Head/Hardsuits/piratecaptainhelm.rsi + - type: Clothing + sprite: Clothing/Head/Hardsuits/piratecaptainhelm.rsi + - type: PressureProtection + highPressureMultiplier: 0.3 + lowPressureMultiplier: 1000 + +#CENTCOMM / ERT HARDSUITS +#ERT Leader Hardsuit - type: entity parent: ClothingHeadHelmetHardsuitSyndieCommander id: ClothingHeadHelmetHardsuitERTLeader @@ -508,6 +499,7 @@ - type: PointLight color: "#addbff" +#ERT Engineer Hardsuit - type: entity parent: ClothingHeadHelmetHardsuitSyndie id: ClothingHeadHelmetHardsuitERTEngineer @@ -521,6 +513,7 @@ - type: PointLight color: "#f4ffad" +#ERT Medical Hardsuit - type: entity parent: ClothingHeadHelmetHardsuitSyndieElite id: ClothingHeadHelmetHardsuitERTMedical @@ -534,6 +527,7 @@ - type: PointLight color: "#adffec" +#ERT Security Hardsuit - type: entity parent: ClothingHeadHelmetHardsuitSyndie id: ClothingHeadHelmetHardsuitERTSecurity @@ -547,6 +541,7 @@ - type: PointLight color: "#ffadc6" +#ERT Janitor Hardsuit - type: entity parent: ClothingHeadHelmetHardsuitSyndie id: ClothingHeadHelmetHardsuitERTJanitor @@ -560,6 +555,66 @@ - type: PointLight color: "#cbadff" +#CBURN Hardsuit +- type: entity + parent: ClothingHeadHardsuitWithLightBase + id: ClothingHeadHelmetCBURN + noSpawn: true + name: CBURN exosuit helmet + description: A pressure resistant and fireproof hood worn by special cleanup units. + components: + - type: Sprite + sprite: Clothing/Head/Hardsuits/cburn.rsi + layers: + - state: icon + - state: icon-unshaded + shader: unshaded + - state: light-overlay + visible: false + shader: unshaded + map: [ "light" ] + - type: Clothing + clothingVisuals: + head: + - state: equipped-head + - state: equipped-head-unshaded + shader: unshaded + - type: PointLight + color: orange + - type: PressureProtection + highPressureMultiplier: 0.08 + lowPressureMultiplier: 1000 + - type: TemperatureProtection + coefficient: 0.005 + - type: Armor + modifiers: + coefficients: + Blunt: 0.9 + Slash: 0.9 + Piercing: 0.9 + Heat: 0.1 + Shock: 0.1 + Cold: 0.2 + Radiation: 0.2 + +#Deathsquad Hardsuit +- type: entity + parent: ClothingHeadHardsuitBase + id: ClothingHeadHelmetHardsuitDeathsquad + noSpawn: true + name: deathsquad hardsuit helmet + description: A robust helmet for special operations. + components: + - type: Sprite + sprite: Clothing/Head/Hardsuits/deathsquad.rsi + - type: Clothing + sprite: Clothing/Head/Hardsuits/deathsquad.rsi + - type: PressureProtection + highPressureMultiplier: 0.08 + lowPressureMultiplier: 1000 + +#MISC. HARDSUITS +#Clown Hardsuit - type: entity parent: ClothingHeadHelmetHardsuitSecurity id: ClothingHeadHelmetHardsuitClown diff --git a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml index cbd910ff8b..04aa5185a7 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml @@ -1,120 +1,95 @@ +#(Security) Helmet - type: entity parent: ClothingHeadBase - id: ClothingHeadHelmetBombSuit - name: bombsuit helmet - description: A heavy helmet designed to withstand the pressure generated by a bomb and any fragments the bomb may produce. + id: ClothingHeadHelmetHelmet + name: helmet + description: A usual helmet. components: - type: Sprite - sprite: Clothing/Head/Helmets/bombsuit.rsi + sprite: Clothing/Head/Helmets/security.rsi - type: Clothing - sprite: Clothing/Head/Helmets/bombsuit.rsi - - type: IngestionBlocker - - type: ExplosionResistance - damageCoefficient: 0.5 + sprite: Clothing/Head/Helmets/security.rsi - type: Armor modifiers: coefficients: - Blunt: 0.5 + Blunt: 0.8 Slash: 0.8 - Piercing: 0.8 - - type: IdentityBlocker + Piercing: 0.9 + Heat: 0.8 +#Old (Security) Helmet - type: entity - parent: ClothingHeadEVAHelmetBase - id: ClothingHeadHelmetCosmonaut - name: cosmonaut helmet - description: A deceptively well armored space helmet. Ancient design, but advanced manufacturing. + parent: ClothingHeadHelmetHelmet + id: ClothingHeadHelmetHelmetOld + name: helmet + description: An old usual helmet. components: - type: Sprite - sprite: Clothing/Head/Helmets/cosmonaut.rsi + sprite: Clothing/Head/Helmets/securityold.rsi - type: Clothing - sprite: Clothing/Head/Helmets/cosmonaut.rsi - - type: IngestionBlocker - - type: Tag - tags: - - HelmetEVA + sprite: Clothing/Head/Helmets/securityold.rsi +#Light Riot Helmet - type: entity parent: ClothingHeadBase - id: ClothingHeadHelmetCult - name: cult helmet - description: A robust, evil-looking cult helmet. + id: ClothingHeadHelmetRiot + name: light riot helmet + description: It's a helmet specifically designed to protect against close range attacks. components: - type: Sprite - sprite: Clothing/Head/Helmets/cult.rsi + sprite: Clothing/Head/Helmets/light_riot.rsi - type: Clothing - sprite: Clothing/Head/Helmets/cult.rsi + sprite: Clothing/Head/Helmets/light_riot.rsi - type: IngestionBlocker - type: Armor modifiers: coefficients: Blunt: 0.8 Slash: 0.8 - Piercing: 0.9 - Heat: 0.8 - -- type: entity - parent: ClothingHeadEVAHelmetBase - id: ClothingHeadHelmetEVA - name: EVA helmet - description: A basic helmet designed for extravehicular activities. - components: - - type: Sprite - sprite: Clothing/Head/Helmets/eva.rsi - - type: Clothing - sprite: Clothing/Head/Helmets/eva.rsi - - type: IngestionBlocker - - type: Tag - tags: - - HelmetEVA + Piercing: 0.8 +#Bombsuit Helmet - type: entity parent: ClothingHeadBase - id: ClothingHeadHelmetHelmet - name: helmet - description: A usual helmet. + id: ClothingHeadHelmetBombSuit + name: bombsuit helmet + description: A heavy helmet designed to withstand the pressure generated by a bomb and any fragments the bomb may produce. components: - type: Sprite - sprite: Clothing/Head/Helmets/security.rsi + sprite: Clothing/Head/Helmets/bombsuit.rsi - type: Clothing - sprite: Clothing/Head/Helmets/security.rsi + sprite: Clothing/Head/Helmets/bombsuit.rsi + - type: IngestionBlocker + - type: ExplosionResistance + damageCoefficient: 0.5 - type: Armor modifiers: coefficients: - Blunt: 0.8 + Blunt: 0.5 Slash: 0.8 - Piercing: 0.9 - Heat: 0.8 - -- type: entity - parent: ClothingHeadHelmetHelmet - id: ClothingHeadHelmetHelmetOld - name: helmet - description: An old usual helmet. - components: - - type: Sprite - sprite: Clothing/Head/Helmets/securityold.rsi - - type: Clothing - sprite: Clothing/Head/Helmets/securityold.rsi + Piercing: 0.8 +#Cult Helmet - type: entity parent: ClothingHeadBase - id: ClothingHeadHelmetRiot - name: light riot helmet - description: It's a helmet specifically designed to protect against close range attacks. + id: ClothingHeadHelmetCult + name: cult helmet + description: A robust, evil-looking cult helmet. components: - type: Sprite - sprite: Clothing/Head/Helmets/light_riot.rsi + sprite: Clothing/Head/Helmets/cult.rsi - type: Clothing - sprite: Clothing/Head/Helmets/light_riot.rsi + sprite: Clothing/Head/Helmets/cult.rsi - type: IngestionBlocker - type: Armor modifiers: coefficients: Blunt: 0.8 Slash: 0.8 - Piercing: 0.8 + Piercing: 0.9 + Heat: 0.8 +#SCAF Helmet - type: entity parent: ClothingHeadBase id: ClothingHeadHelmetScaf @@ -136,6 +111,7 @@ tags: - HidesHair +#Space Ninja Helmet - type: entity parent: ClothingHeadBase id: ClothingHeadHelmetSpaceNinja @@ -152,26 +128,12 @@ - HidesHair - type: IdentityBlocker -- type: entity - parent: ClothingHeadEVAHelmetBase - id: ClothingHeadHelmetSyndicate - name: syndicate EVA helmet - description: A stylish, robust syndicate helmet - components: - - type: Sprite - sprite: Clothing/Head/Helmets/syndicate.rsi - - type: Clothing - sprite: Clothing/Head/Helmets/syndicate.rsi - - type: IngestionBlocker - - type: Tag - tags: - - HelmetEVA - +#Templar Helmet - type: entity parent: ClothingHeadBase id: ClothingHeadHelmetTemplar name: templar helmet - description: DEUS VULT + description: DEUS VULT! components: - type: Sprite sprite: Clothing/Head/Helmets/templar.rsi @@ -180,6 +142,7 @@ - type: IngestionBlocker - type: IdentityBlocker +#Thunderdome Helmet - type: entity parent: ClothingHeadBase id: ClothingHeadHelmetThunderdome @@ -191,6 +154,7 @@ - type: Clothing sprite: Clothing/Head/Helmets/thunderdome.rsi +#Wizard Helmet - type: entity parent: ClothingHeadBase id: ClothingHeadHelmetWizardHelm @@ -204,6 +168,7 @@ - type: IngestionBlocker - type: IdentityBlocker +#Fire Helmet - type: entity parent: ClothingHeadLightBase id: ClothingHeadHelmetFire @@ -232,6 +197,7 @@ - HidesHair - WhitelistChameleon +#Atmos Fire Helmet - type: entity parent: ClothingHeadLightBase id: ClothingHeadHelmetAtmosFire @@ -263,11 +229,12 @@ - HidesHair - WhitelistChameleon +#Chitinous Helmet - type: entity parent: ClothingHeadBase id: ClothingHeadHelmetLing name: chitinous helmet - description: Inflates the changeling's body into an all-consuming chitinous mass of armor. + description: An all-consuming chitinous mass of armor. components: - type: Sprite sprite: Clothing/Head/Helmets/linghelmet.rsi @@ -279,40 +246,4 @@ Blunt: 0.5 Slash: 0.5 Piercing: 0.5 - Heat: 0.9 - - type: IdentityBlocker - -- type: entity - parent: ClothingHeadEVAHelmetBase - id: ClothingHeadHelmetVoidParamed - name: Paramedic Void Helmet - description: A void helmet made for paramedics. - components: - - type: Sprite - sprite: Clothing/Head/Helmets/paramedhelm.rsi - - type: Clothing - sprite: Clothing/Head/Helmets/paramedhelm.rsi - - type: IngestionBlocker - - type: TemperatureProtection - coefficient: 0.1 - - type: Armor - modifiers: - coefficients: - Slash: 0.95 - Heat: 0.90 - Radiation: 0.75 - -- type: entity - parent: ClothingHeadEVAHelmetBase - id: ClothingHeadHelmetAncient - name: NTSRA void helmet - description: An ancient space helmet, designed by the NTSRA branch of CentCom. - components: - - type: Sprite - sprite: Clothing/Head/Helmets/ancientvoidsuit.rsi - - type: Clothing - sprite: Clothing/Head/Helmets/ancientvoidsuit.rsi - - type: IngestionBlocker - - type: Tag - tags: - - HelmetEVA \ No newline at end of file + Heat: 0.9 \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml index 4c3c126659..80109e8f88 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml @@ -1,3 +1,35 @@ +#When adding new hardsuits, please try to keep the organization consistent with hardsuit-helmets.yml (if possible.) + +#CREW HARDSUITS +#Basic Hardsuit +- type: entity + parent: ClothingOuterHardsuitBase + id: ClothingOuterHardsuitBasic + name: basic hardsuit + description: A basic, universal hardsuit that protects the wearer against the horrors of life in space. Beats not having a hardsuit, at least. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Hardsuits/basic.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Hardsuits/basic.rsi + - type: Armor + modifiers: + coefficients: + Blunt: 0.9 + Slash: 0.9 + Piercing: 0.9 + Heat: 0.9 + Radiation: 0.9 + Caustic: 0.9 + - type: ExplosionResistance + damageCoefficient: 0.9 + - type: ClothingSpeedModifier + walkModifier: 0.80 + sprintModifier: 0.80 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetHardsuitBasic + +#Atmospherics Hardsuit - type: entity parent: ClothingOuterHardsuitBase id: ClothingOuterHardsuitAtmos @@ -30,66 +62,7 @@ - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitAtmos -- type: entity - parent: ClothingOuterHardsuitBase - id: ClothingOuterHardsuitCap - name: captain's armored spacesuit - description: A formal armored spacesuit, made for the station's captain. - components: - - type: Sprite - sprite: Clothing/OuterClothing/Hardsuits/capspace.rsi - - type: Clothing - sprite: Clothing/OuterClothing/Hardsuits/capspace.rsi - - type: PressureProtection - highPressureMultiplier: 0.02 - lowPressureMultiplier: 1000 - - type: ClothingSpeedModifier - walkModifier: 0.8 - sprintModifier: 0.8 - - type: Armor - modifiers: - coefficients: - Blunt: 0.8 - Slash: 0.8 - Piercing: 0.75 - Heat: 0.3 - Radiation: 0.1 - Caustic: 0.6 - - type: ExplosionResistance - damageCoefficient: 0.5 - - type: ToggleableClothing - clothingPrototype: ClothingHeadHelmetHardsuitCap - -- type: entity - parent: ClothingOuterHardsuitBase - id: ClothingOuterHardsuitDeathsquad - name: deathsquad hardsuit - description: An advanced hardsuit favored by commandos for use in special operations. - components: - - type: Sprite - sprite: Clothing/OuterClothing/Hardsuits/deathsquad.rsi - - type: Clothing - sprite: Clothing/OuterClothing/Hardsuits/deathsquad.rsi - - type: PressureProtection - highPressureMultiplier: 0.02 - lowPressureMultiplier: 1000 - - type: ClothingSpeedModifier - walkModifier: 1.0 - sprintModifier: 1.0 - - type: Armor - modifiers: - coefficients: - Blunt: 0.2 #best armor in the game - Slash: 0.2 - Piercing: 0.2 - Heat: 0.2 - Radiation: 0.2 - Caustic: 0.2 - - type: ExplosionResistance - damageCoefficient: 0.2 - - type: ToggleableClothing - clothingPrototype: ClothingHeadHelmetHardsuitDeathsquad - +#Engineering Hardsuit - type: entity parent: ClothingOuterHardsuitBase id: ClothingOuterHardsuitEngineering @@ -120,158 +93,36 @@ - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitEngineering +#Spationaut Hardsuit - type: entity parent: ClothingOuterHardsuitBase - id: ClothingOuterHardsuitEngineeringWhite - name: chief engineer's hardsuit - description: A special hardsuit that protects against hazardous, low pressure environments, made for the chief engineer of the station. - components: - - type: Sprite - sprite: Clothing/OuterClothing/Hardsuits/engineering-white.rsi - - type: Clothing - sprite: Clothing/OuterClothing/Hardsuits/engineering-white.rsi - - type: PressureProtection - highPressureMultiplier: 0.02 - lowPressureMultiplier: 1000 - - type: ClothingSpeedModifier - walkModifier: 0.75 - sprintModifier: 0.8 - - type: Armor - modifiers: - coefficients: - Blunt: 0.85 - Slash: 0.85 - Piercing: 0.8 - Heat: 0.4 - Radiation: 0.0 - Caustic: 0.85 - - type: ExplosionResistance - damageCoefficient: 0.2 - - type: ToggleableClothing - clothingPrototype: ClothingHeadHelmetHardsuitEngineeringWhite - -#The voidsuit and eva suit are not techically 'hardsuits' but this seems to be the place for all EVA-capable outer clothing. This may be worth reevaluating when we have a lot more items. -- type: entity - parent: ClothingOuterEVASuitBase - id: ClothingOuterHardsuitAncientEVA - name: NTSRA voidsuit #Nanotrasen Space Research Association - description: An ancient space suit, designed by the NTSRA branch of CentCom. It is very finely crafted, allowing for greater mobility than most modern space suits. - components: - - type: Sprite - sprite: Clothing/OuterClothing/Suits/ancientvoidsuit.rsi - - type: Clothing - sprite: Clothing/OuterClothing/Suits/ancientvoidsuit.rsi - - type: ClothingSpeedModifier - walkModifier: 0.85 - sprintModifier: 0.85 - -- type: entity - parent: ClothingOuterEVASuitBase - id: ClothingOuterHardsuitEVA - name: EVA suit - description: A lightweight space suit with the basic ability to protect the wearer from the vacuum of space during emergencies. - components: - - type: Sprite - sprite: Clothing/OuterClothing/Hardsuits/eva.rsi - - type: Clothing - sprite: Clothing/OuterClothing/Hardsuits/eva.rsi - - type: Tag - tags: - - HardsuitEVA - -# Moved to hardsuits because this is where EVA capable suits are apparently. -# Same stats as normal EVA suit. -- type: entity - parent: ClothingOuterEVASuitBase - id: ClothingOuterHardsuitSyndicate - name: syndicate EVA suit - description: "Has a tag on it 'Totally not property of an enemy corporation, honest!'" - components: - - type: Sprite - sprite: Clothing/OuterClothing/Suits/syndicate.rsi - - type: Clothing - sprite: Clothing/OuterClothing/Suits/syndicate.rsi - - type: Tag - tags: - - HardsuitEVA - -- type: entity - parent: ClothingOuterEVASuitBase - id: ClothingOuterHardsuitEVAPrisoner - name: prisoner EVA suit - description: A lightweight space suit for prisoners to protect them from the vacuum of space during emergencies. - components: - - type: Sprite - sprite: Clothing/OuterClothing/Hardsuits/evaprisoner.rsi - - type: Clothing - sprite: Clothing/OuterClothing/Hardsuits/evaprisoner.rsi - - type: Tag - tags: - - HardsuitEVA - -- type: entity - parent: ClothingOuterHardsuitBase - id: ClothingOuterHardsuitMedical - name: chief medical officer's hardsuit - description: A special suit that protects against hazardous, low pressure environments. Built with lightweight materials for easier movement. + id: ClothingOuterHardsuitSpatio + name: spationaut hardsuit + description: A lightweight hardsuit designed for industrial EVA in zero gravity. components: - type: Sprite - sprite: Clothing/OuterClothing/Hardsuits/medical.rsi + sprite: Clothing/OuterClothing/Hardsuits/spatio.rsi - type: Clothing - sprite: Clothing/OuterClothing/Hardsuits/medical.rsi + sprite: Clothing/OuterClothing/Hardsuits/spatio.rsi - type: PressureProtection - highPressureMultiplier: 0.3 - lowPressureMultiplier: 5500 + highPressureMultiplier: 0.72 + lowPressureMultiplier: 10000 - type: ClothingSpeedModifier walkModifier: 0.9 - sprintModifier: 0.95 - - type: Armor - modifiers: - coefficients: - Heat: 0.90 - Radiation: 0.25 - Caustic: 0.1 - - type: ToggleableClothing - clothingPrototype: ClothingHeadHelmetHardsuitMedical - -- type: entity - parent: ClothingOuterHardsuitBase - id: ClothingOuterHardsuitRd - name: experimental research hardsuit - description: A special suit that protects against hazardous, low pressure environments. Has an additional layer of armor. - components: - - type: Sprite - sprite: Clothing/OuterClothing/Hardsuits/rd.rsi - - type: Clothing - sprite: Clothing/OuterClothing/Hardsuits/rd.rsi - - type: PressureProtection - highPressureMultiplier: 0.02 - lowPressureMultiplier: 5500 + sprintModifier: 0.8 - type: Armor modifiers: coefficients: - Blunt: 0.6 - Slash: 0.8 + Blunt: 0.9 + Slash: 0.9 Piercing: 0.95 - Heat: 0.3 - Radiation: 0.1 - Caustic: 0.25 - - type: ClothingSpeedModifier - walkModifier: 0.75 - sprintModifier: 0.75 - - type: Item - size: 100 - - type: Tag - tags: - - WhitelistChameleon - - HighRiskItem - - type: ExplosionResistance - damageCoefficient: 0.1 + Heat: 0.9 + Radiation: 0.5 + Caustic: 0.9 - type: ToggleableClothing - clothingPrototype: ClothingHeadHelmetHardsuitRd - - type: StaticPrice - price: 750 + clothingPrototype: ClothingHeadHelmetHardsuitSpatio +#Salvage Hardsuit - type: entity parent: ClothingOuterHardsuitBase id: ClothingOuterHardsuitSalvage @@ -302,6 +153,7 @@ - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitSalvage +#Security Hardsuit - type: entity parent: ClothingOuterHardsuitBase id: ClothingOuterHardsuitSecurity @@ -332,36 +184,7 @@ - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitSecurity -- type: entity - parent: ClothingOuterHardsuitSecurity - id: ClothingOuterHardsuitSecurityRed - name: head of security's hardsuit - description: A special suit that protects against hazardous, low pressure environments. Has an additional layer of armor. - components: - - type: Sprite - sprite: Clothing/OuterClothing/Hardsuits/security-red.rsi - - type: Clothing - sprite: Clothing/OuterClothing/Hardsuits/security-red.rsi - - type: PressureProtection - highPressureMultiplier: 0.45 - lowPressureMultiplier: 10000 - - type: ClothingSpeedModifier - walkModifier: 0.75 - sprintModifier: 0.75 - - type: Armor - modifiers: - coefficients: - Blunt: 0.6 - Slash: 0.5 - Piercing: 0.5 - Heat: 0.8 - Radiation: 0.25 - Caustic: 0.6 - - type: ExplosionResistance - damageCoefficient: 0.6 - - type: ToggleableClothing - clothingPrototype: ClothingHeadHelmetHardsuitSecurityRed - +#Brigmedic Hardsuit - type: entity parent: ClothingOuterHardsuitBase id: ClothingOuterHardsuitBrigmedic @@ -390,6 +213,7 @@ - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitBrigmedic +#Warden's Hardsuit - type: entity parent: ClothingOuterHardsuitBase id: ClothingOuterHardsuitWarden @@ -415,151 +239,198 @@ damageCoefficient: 0.4 - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitWarden - + +#Captain's Hardsuit - type: entity parent: ClothingOuterHardsuitBase - id: ClothingOuterHardsuitSyndie - name: blood-red hardsuit - description: A heavily armored and agile advanced hardsuit designed for work in special operations. + id: ClothingOuterHardsuitCap + name: captain's armored spacesuit + description: A formal armored spacesuit, made for the station's captain. components: - type: Sprite - sprite: Clothing/OuterClothing/Hardsuits/syndicate.rsi + sprite: Clothing/OuterClothing/Hardsuits/capspace.rsi - type: Clothing - sprite: Clothing/OuterClothing/Hardsuits/syndicate.rsi + sprite: Clothing/OuterClothing/Hardsuits/capspace.rsi - type: PressureProtection - highPressureMultiplier: 0.05 + highPressureMultiplier: 0.02 lowPressureMultiplier: 1000 - type: ClothingSpeedModifier - walkModifier: 0.9 - sprintModifier: 0.9 + walkModifier: 0.8 + sprintModifier: 0.8 - type: Armor modifiers: coefficients: - Blunt: 0.65 - Slash: 0.6 - Piercing: 0.5 - Heat: 0.4 - Radiation: 0.20 - Caustic: 0.75 + Blunt: 0.8 + Slash: 0.8 + Piercing: 0.75 + Heat: 0.3 + Radiation: 0.1 + Caustic: 0.6 - type: ExplosionResistance damageCoefficient: 0.5 - type: ToggleableClothing - clothingPrototype: ClothingHeadHelmetHardsuitSyndie + clothingPrototype: ClothingHeadHelmetHardsuitCap +#Chief Engineer's Hardsuit - type: entity parent: ClothingOuterHardsuitBase - id: ClothingOuterHardsuitWizard - name: wizard hardsuit - description: A bizarre gem-encrusted suit that radiates magical energies. + id: ClothingOuterHardsuitEngineeringWhite + name: chief engineer's hardsuit + description: A special hardsuit that protects against hazardous, low pressure environments, made for the chief engineer of the station. components: - type: Sprite - sprite: Clothing/OuterClothing/Hardsuits/wizard.rsi + sprite: Clothing/OuterClothing/Hardsuits/engineering-white.rsi - type: Clothing - sprite: Clothing/OuterClothing/Hardsuits/wizard.rsi + sprite: Clothing/OuterClothing/Hardsuits/engineering-white.rsi - type: PressureProtection - highPressureMultiplier: 0.05 + highPressureMultiplier: 0.02 lowPressureMultiplier: 1000 - type: ClothingSpeedModifier - walkModifier: 0.8 + walkModifier: 0.75 sprintModifier: 0.8 - type: Armor modifiers: coefficients: - Blunt: 0.6 - Slash: 0.6 - Piercing: 0.4 - Heat: 0.25 - Radiation: 0.20 - Caustic: 0.75 + Blunt: 0.85 + Slash: 0.85 + Piercing: 0.8 + Heat: 0.4 + Radiation: 0.0 + Caustic: 0.85 - type: ExplosionResistance - damageCoefficient: 0.5 + damageCoefficient: 0.2 - type: ToggleableClothing - clothingPrototype: ClothingHeadHelmetHardsuitWizard + clothingPrototype: ClothingHeadHelmetHardsuitEngineeringWhite +#Chief Medical Officer's Hardsuit - type: entity parent: ClothingOuterHardsuitBase - id: ClothingOuterHardsuitLing - name: organic space suit - description: A spaceworthy biomass of pressure and temperature resistant tissue. + id: ClothingOuterHardsuitMedical + name: chief medical officer's hardsuit + description: A special suit that protects against hazardous, low pressure environments. Built with lightweight materials for easier movement. components: - type: Sprite - sprite: Clothing/OuterClothing/Hardsuits/lingspacesuit.rsi + sprite: Clothing/OuterClothing/Hardsuits/medical.rsi - type: Clothing - sprite: Clothing/OuterClothing/Hardsuits/lingspacesuit.rsi + sprite: Clothing/OuterClothing/Hardsuits/medical.rsi - type: PressureProtection - highPressureMultiplier: 0.225 - lowPressureMultiplier: 10000 + highPressureMultiplier: 0.3 + lowPressureMultiplier: 5500 - type: ClothingSpeedModifier - walkModifier: .8 - sprintModifier: .8 + walkModifier: 0.9 + sprintModifier: 0.95 - type: Armor modifiers: coefficients: - Blunt: 0.95 - Slash: 0.95 - Piercing: 1 - Heat: 0.5 - Radiation: 0.3 - - type: ExplosionResistance - damageCoefficient: 0.2 + Heat: 0.90 + Radiation: 0.25 + Caustic: 0.1 - type: ToggleableClothing - clothingPrototype: ClothingHeadHelmetHardsuitLing + clothingPrototype: ClothingHeadHelmetHardsuitMedical +#Research Director's Hardsuit - type: entity parent: ClothingOuterHardsuitBase - id: ClothingOuterHardsuitSpatio - name: spationaut hardsuit - description: A lightweight hardsuit designed for industrial EVA in zero gravity. + id: ClothingOuterHardsuitRd + name: experimental research hardsuit + description: A special suit that protects against hazardous, low pressure environments. Has an additional layer of armor. components: - type: Sprite - sprite: Clothing/OuterClothing/Hardsuits/spatio.rsi + sprite: Clothing/OuterClothing/Hardsuits/rd.rsi - type: Clothing - sprite: Clothing/OuterClothing/Hardsuits/spatio.rsi + sprite: Clothing/OuterClothing/Hardsuits/rd.rsi + - type: PressureProtection + highPressureMultiplier: 0.02 + lowPressureMultiplier: 5500 + - type: Armor + modifiers: + coefficients: + Blunt: 0.6 + Slash: 0.8 + Piercing: 0.95 + Heat: 0.3 + Radiation: 0.1 + Caustic: 0.25 + - type: ClothingSpeedModifier + walkModifier: 0.75 + sprintModifier: 0.75 + - type: Item + size: 100 + - type: Tag + tags: + - WhitelistChameleon + - HighRiskItem + - type: ExplosionResistance + damageCoefficient: 0.1 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetHardsuitRd + - type: StaticPrice + price: 750 + +#Head of Security's Hardsuit +- type: entity + parent: ClothingOuterHardsuitSecurity + id: ClothingOuterHardsuitSecurityRed + name: head of security's hardsuit + description: A special suit that protects against hazardous, low pressure environments. Has an additional layer of armor. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Hardsuits/security-red.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Hardsuits/security-red.rsi - type: PressureProtection - highPressureMultiplier: 0.72 + highPressureMultiplier: 0.45 lowPressureMultiplier: 10000 - type: ClothingSpeedModifier - walkModifier: 0.9 - sprintModifier: 0.8 + walkModifier: 0.75 + sprintModifier: 0.75 - type: Armor modifiers: coefficients: - Blunt: 0.9 - Slash: 0.9 - Piercing: 0.95 - Heat: 0.9 - Radiation: 0.5 - Caustic: 0.9 + Blunt: 0.6 + Slash: 0.5 + Piercing: 0.5 + Heat: 0.8 + Radiation: 0.25 + Caustic: 0.6 + - type: ExplosionResistance + damageCoefficient: 0.6 - type: ToggleableClothing - clothingPrototype: ClothingHeadHelmetHardsuitSpatio + clothingPrototype: ClothingHeadHelmetHardsuitSecurityRed +#ANTAG HARDSUITS +#Blood-red Hardsuit - type: entity - parent: ClothingOuterEVASuitBase - id: ClothingOuterHardsuitVoidParamed - name: Paramedic Void Suit - description: A void suit made for paramedics. + parent: ClothingOuterHardsuitBase + id: ClothingOuterHardsuitSyndie + name: blood-red hardsuit + description: A heavily armored and agile advanced hardsuit designed for work in special operations. components: - type: Sprite - sprite: Clothing/OuterClothing/Hardsuits/paramed.rsi + sprite: Clothing/OuterClothing/Hardsuits/syndicate.rsi - type: Clothing - sprite: Clothing/OuterClothing/Hardsuits/paramed.rsi + sprite: Clothing/OuterClothing/Hardsuits/syndicate.rsi - type: PressureProtection - highPressureMultiplier: 0.5 + highPressureMultiplier: 0.05 lowPressureMultiplier: 1000 - type: ClothingSpeedModifier walkModifier: 0.9 sprintModifier: 0.9 - - type: TemperatureProtection - coefficient: 0.1 - type: Armor modifiers: coefficients: - Slash: 0.95 - Heat: 0.90 - Radiation: 0.75 - Caustic: 0.5 - - type: GroupExamine + Blunt: 0.65 + Slash: 0.6 + Piercing: 0.5 + Heat: 0.4 + Radiation: 0.20 + Caustic: 0.75 + - type: ExplosionResistance + damageCoefficient: 0.5 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetHardsuitSyndie +#Cybersun Juggernaut Hardsuit - type: entity parent: ClothingOuterHardsuitBase id: ClothingOuterHardsuitJuggernaut @@ -590,6 +461,40 @@ - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitCybersun +#Syndicate Elite Hardsuit +- type: entity + parent: ClothingOuterHardsuitBase + id: ClothingOuterHardsuitSyndieElite + name: syndicate elite hardsuit + description: An upgraded version of the blood red hardsuit that features enhanced fireproofing, pressure resist, and superior armor. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Hardsuits/syndieelite.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Hardsuits/syndieelite.rsi + - type: PressureProtection + highPressureMultiplier: 0.02 + lowPressureMultiplier: 1000 + - type: ClothingSpeedModifier + walkModifier: 1.0 + sprintModifier: 1.0 + - type: TemperatureProtection + coefficient: 0.001 + - type: Armor + modifiers: + coefficients: + Blunt: 0.5 + Slash: 0.5 + Piercing: 0.4 + Heat: 0.2 + Radiation: 0.20 + Caustic: 0.5 + - type: ExplosionResistance + damageCoefficient: 0.3 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetHardsuitSyndieElite + +#Syndicate Commander Hardsuit - type: entity parent: ClothingOuterHardsuitBase id: ClothingOuterHardsuitSyndieCommander @@ -620,73 +525,129 @@ - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitSyndieCommander +#Wizard Hardsuit - type: entity parent: ClothingOuterHardsuitBase - id: ClothingOuterHardsuitSyndieElite - name: syndicate elite hardsuit - description: An upgraded version of the blood red hardsuit that features enhanced fireproofing, pressure resist, and superior armor. + id: ClothingOuterHardsuitWizard + name: wizard hardsuit + description: A bizarre gem-encrusted suit that radiates magical energies. components: - type: Sprite - sprite: Clothing/OuterClothing/Hardsuits/syndieelite.rsi + sprite: Clothing/OuterClothing/Hardsuits/wizard.rsi - type: Clothing - sprite: Clothing/OuterClothing/Hardsuits/syndieelite.rsi + sprite: Clothing/OuterClothing/Hardsuits/wizard.rsi - type: PressureProtection - highPressureMultiplier: 0.02 + highPressureMultiplier: 0.05 lowPressureMultiplier: 1000 - type: ClothingSpeedModifier - walkModifier: 1.0 - sprintModifier: 1.0 - - type: TemperatureProtection - coefficient: 0.001 + walkModifier: 0.8 + sprintModifier: 0.8 - type: Armor modifiers: coefficients: - Blunt: 0.5 - Slash: 0.5 + Blunt: 0.6 + Slash: 0.6 Piercing: 0.4 - Heat: 0.2 + Heat: 0.25 Radiation: 0.20 - Caustic: 0.5 + Caustic: 0.75 - type: ExplosionResistance - damageCoefficient: 0.3 + damageCoefficient: 0.5 - type: ToggleableClothing - clothingPrototype: ClothingHeadHelmetHardsuitSyndieElite + clothingPrototype: ClothingHeadHelmetHardsuitWizard +#Ling Space Suit - type: entity parent: ClothingOuterHardsuitBase - id: ClothingOuterHardsuitCBURN - name: CBURN exosuit - description: A lightweight yet strong exosuit used for special cleanup operations. + id: ClothingOuterHardsuitLing + name: organic space suit + description: A spaceworthy biomass of pressure and temperature resistant tissue. components: - type: Sprite - sprite: Clothing/OuterClothing/Hardsuits/cburn.rsi + sprite: Clothing/OuterClothing/Hardsuits/lingspacesuit.rsi - type: Clothing - sprite: Clothing/OuterClothing/Hardsuits/cburn.rsi + sprite: Clothing/OuterClothing/Hardsuits/lingspacesuit.rsi + - type: PressureProtection + highPressureMultiplier: 0.225 + lowPressureMultiplier: 10000 + - type: ClothingSpeedModifier + walkModifier: .8 + sprintModifier: .8 + - type: Armor + modifiers: + coefficients: + Blunt: 0.95 + Slash: 0.95 + Piercing: 1 + Heat: 0.5 + Radiation: 0.3 + - type: ExplosionResistance + damageCoefficient: 0.2 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetHardsuitLing + +#Pirate EVA Suit (Deep Space EVA Suit) +#Despite visually appearing like a softsuit, it functions exactly like a hardsuit would (parents off of base hardsuit, has resistances and toggleable clothing, etc.) so it goes here. +- type: entity + parent: ClothingOuterHardsuitBase + id: ClothingOuterHardsuitPirateEVA + name: deep space EVA suit + suffix: Pirate + description: A heavy space suit that provides some basic protection from the cold harsh realities of deep space. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Hardsuits/pirateeva.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Hardsuits/pirateeva.rsi + - type: ClothingSpeedModifier + walkModifier: 0.6 + sprintModifier: 0.6 + - type: Armor + modifiers: + coefficients: + Blunt: 0.8 + Slash: 0.8 + Piercing: 0.9 + Heat: 0.4 + Radiation: 0.2 + - type: ExplosionResistance + damageCoefficient: 0.7 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetHardsuitPirateEVA + +#Pirate Captain Hardsuit +- type: entity + parent: ClothingOuterHardsuitBase + id: ClothingOuterHardsuitPirateCap + name: pirate captain's hardsuit + description: An ancient armored hardsuit, perfect for defending against space scurvy and toolbox-wielding scallywags. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Hardsuits/piratecaptain.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Hardsuits/piratecaptain.rsi - type: PressureProtection highPressureMultiplier: 0.02 lowPressureMultiplier: 1000 - type: ClothingSpeedModifier - walkModifier: 1.0 - sprintModifier: 1.0 - - type: TemperatureProtection - coefficient: 0.001 + walkModifier: 0.8 + sprintModifier: 0.8 - type: Armor modifiers: coefficients: Blunt: 0.7 - Slash: 0.7 - Piercing: 0.6 - Heat: 0.05 - Cold: 0.1 - Shock: 0.1 - Radiation: 0.1 - Caustic: 0.1 + Slash: 0.8 + Piercing: 0.85 + Heat: 0.4 + Radiation: 0.2 - type: ExplosionResistance - damageCoefficient: 0.7 + damageCoefficient: 0.6 - type: ToggleableClothing - clothingPrototype: ClothingHeadHelmetCBURN + clothingPrototype: ClothingHeadHelmetHardsuitPirateCap -#ERT + +#CENTCOMM / ERT HARDSUITS +#ERT Leader Hardsuit - type: entity parent: ClothingOuterHardsuitSyndieCommander id: ClothingOuterHardsuitERTLeader @@ -700,6 +661,7 @@ - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitERTLeader +#ERT Engineer Hardsuit - type: entity parent: ClothingOuterHardsuitSyndie id: ClothingOuterHardsuitERTEngineer @@ -712,6 +674,7 @@ - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitERTEngineer +#ERT Medic Hardsuit - type: entity parent: ClothingOuterHardsuitSyndieElite id: ClothingOuterHardsuitERTMedical @@ -724,7 +687,7 @@ - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitERTMedical - +#ERT Security Hardsuit - type: entity parent: ClothingOuterHardsuitSyndie id: ClothingOuterHardsuitERTSecurity @@ -737,6 +700,7 @@ - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitERTSecurity +#ERT Janitor Hardsuit - type: entity parent: ClothingOuterHardsuitSyndie id: ClothingOuterHardsuitERTJanitor @@ -749,63 +713,74 @@ - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitERTJanitor +#Deathsquad - type: entity parent: ClothingOuterHardsuitBase - id: ClothingOuterHardsuitPirateCap - name: ancient armored hardsuit - suffix: Pirate - description: An ancient armored hardsuit. + id: ClothingOuterHardsuitDeathsquad + name: deathsquad hardsuit + description: An advanced hardsuit favored by commandos for use in special operations. components: - type: Sprite - sprite: Clothing/OuterClothing/Hardsuits/piratecaptain.rsi + sprite: Clothing/OuterClothing/Hardsuits/deathsquad.rsi - type: Clothing - sprite: Clothing/OuterClothing/Hardsuits/piratecaptain.rsi + sprite: Clothing/OuterClothing/Hardsuits/deathsquad.rsi - type: PressureProtection highPressureMultiplier: 0.02 lowPressureMultiplier: 1000 - type: ClothingSpeedModifier - walkModifier: 0.8 - sprintModifier: 0.8 + walkModifier: 1.0 + sprintModifier: 1.0 - type: Armor modifiers: coefficients: - Blunt: 0.7 - Slash: 0.8 - Piercing: 0.85 - Heat: 0.4 + Blunt: 0.2 #best armor in the game + Slash: 0.2 + Piercing: 0.2 + Heat: 0.2 Radiation: 0.2 + Caustic: 0.2 - type: ExplosionResistance - damageCoefficient: 0.6 + damageCoefficient: 0.2 - type: ToggleableClothing - clothingPrototype: ClothingHeadHelmetHardsuitPirateCap + clothingPrototype: ClothingHeadHelmetHardsuitDeathsquad +#CBURN Hardsuit - type: entity - parent: ClothingOuterHardsuitBase - id: ClothingOuterHardsuitPirateEVA - name: deep space EVA suit - suffix: Pirate - description: A heavy space suit that provides some basic protection from the cold harsh realities of deep space. + parent: ClothingOuterHardsuitBase + id: ClothingOuterHardsuitCBURN + name: CBURN exosuit + description: A lightweight yet strong exosuit used for special cleanup operations. components: - type: Sprite - sprite: Clothing/OuterClothing/Hardsuits/pirateeva.rsi + sprite: Clothing/OuterClothing/Hardsuits/cburn.rsi - type: Clothing - sprite: Clothing/OuterClothing/Hardsuits/pirateeva.rsi + sprite: Clothing/OuterClothing/Hardsuits/cburn.rsi + - type: PressureProtection + highPressureMultiplier: 0.02 + lowPressureMultiplier: 1000 - type: ClothingSpeedModifier - walkModifier: 0.6 - sprintModifier: 0.6 + walkModifier: 1.0 + sprintModifier: 1.0 + - type: TemperatureProtection + coefficient: 0.001 - type: Armor modifiers: coefficients: - Blunt: 0.8 - Slash: 0.8 - Piercing: 0.9 - Heat: 0.4 - Radiation: 0.2 + Blunt: 0.7 + Slash: 0.7 + Piercing: 0.6 + Heat: 0.05 + Cold: 0.1 + Shock: 0.1 + Radiation: 0.1 + Caustic: 0.1 - type: ExplosionResistance damageCoefficient: 0.7 - type: ToggleableClothing - clothingPrototype: ClothingHeadHelmetHardsuitPirateEVA + clothingPrototype: ClothingHeadHelmetCBURN +#MISC. HARDSUITS +#Clown Hardsuit - type: entity parent: ClothingOuterHardsuitBase id: ClothingOuterHardsuitClown @@ -834,4 +809,4 @@ clothingPrototype: ClothingHeadHelmetHardsuitClown - type: ClothingSpeedModifier walkModifier: 0.9 - sprintModifier: 0.9 + sprintModifier: 0.9 \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/softsuits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/softsuits.yml new file mode 100644 index 0000000000..8d8aa5eeb1 --- /dev/null +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/softsuits.yml @@ -0,0 +1,101 @@ +#Basic EVA +- type: entity + parent: ClothingOuterEVASuitBase + id: ClothingOuterHardsuitEVA + name: EVA suit + description: A lightweight space suit with the basic ability to protect the wearer from the vacuum of space during emergencies. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Suits/eva.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Suits/eva.rsi + +#Syndicate EVA +- type: entity + parent: ClothingOuterEVASuitBase + id: ClothingOuterHardsuitSyndicate + name: syndicate EVA suit + description: "Has a tag on the back that reads: 'Totally not property of an enemy corporation, honest!'" + components: + - type: Sprite + sprite: Clothing/OuterClothing/Suits/eva_syndicate.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Suits/eva_syndicate.rsi + +#Emergency EVA +- type: entity + parent: ClothingOuterEVASuitBase + id: ClothingOuterSuitEmergency + name: emergency EVA suit + description: An emergency EVA suit with a built-in helmet. It's horribly slow and lacking in temperature protection, but enough to bide you time from the harsh vaccuum of space. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Suits/eva_emergency.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Suits/eva_emergency.rsi + - type: ClothingSpeedModifier + walkModifier: 0.5 + sprintModifier: 0.5 + - type: TemperatureProtection + coefficient: 0.5 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetEVALarge + - type: ContainerContainer + containers: + toggleable-clothing: !type:ContainerSlot {} + +#Prisoner EVA +- type: entity + parent: ClothingOuterEVASuitBase + id: ClothingOuterHardsuitEVAPrisoner + name: prisoner EVA suit + description: A lightweight space suit for prisoners to protect them from the vacuum of space during emergencies. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Suits/eva_prisoner.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Suits/eva_prisoner.rsi + +#NTSRA Voidsuit / Ancient Voidsuit +- type: entity + parent: ClothingOuterEVASuitBase + id: ClothingOuterHardsuitAncientEVA + name: NTSRA voidsuit #Nanotrasen Space Research Association + description: An ancient space suit, designed by the NTSRA branch of CentCom. It is very finely crafted, allowing for greater mobility than most modern space suits. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Suits/ancient_voidsuit.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Suits/ancient_voidsuit.rsi + - type: ClothingSpeedModifier + walkModifier: 0.85 + sprintModifier: 0.85 + +#Paramedic Voidsuit +#Despite having resistances and looking like one, this is two-piece and parents off the EVA suit so it goes here. +- type: entity + parent: ClothingOuterEVASuitBase + id: ClothingOuterHardsuitVoidParamed + name: Paramedic Void Suit + description: A void suit made for paramedics. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Hardsuits/paramed.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Hardsuits/paramed.rsi + - type: PressureProtection + highPressureMultiplier: 0.5 + lowPressureMultiplier: 1000 + - type: ClothingSpeedModifier + walkModifier: 0.9 + sprintModifier: 0.9 + - type: TemperatureProtection + coefficient: 0.1 + - type: Armor + modifiers: + coefficients: + Slash: 0.95 + Heat: 0.90 + Radiation: 0.75 + Caustic: 0.5 + - type: GroupExamine \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml index 49edbfa493..5ade96364b 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml @@ -22,27 +22,6 @@ tags: - Hardsuit -- type: entity - parent: ClothingOuterEVASuitBase - id: ClothingOuterSuitEmergency - name: emergency suit - description: An emergency suit in cases of... emergencies. - components: - - type: Sprite - sprite: Clothing/OuterClothing/Suits/emergency.rsi - - type: Clothing - sprite: Clothing/OuterClothing/Suits/emergency.rsi - - type: ClothingSpeedModifier - walkModifier: 0.5 - sprintModifier: 0.5 - - type: TemperatureProtection - coefficient: 0.5 - - type: ToggleableClothing - clothingPrototype: ClothingHeadHelmetEVA - - type: ContainerContainer - containers: - toggleable-clothing: !type:ContainerSlot {} - - type: entity parent: ClothingOuterBaseLarge id: ClothingOuterSuitFire diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/clothing/clown_hardsuit.yml b/Resources/Prototypes/Recipes/Construction/Graphs/clothing/clown_hardsuit.yml index bd07b4c871..6719d14582 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/clothing/clown_hardsuit.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/clothing/clown_hardsuit.yml @@ -12,7 +12,7 @@ - tag: HardsuitEVA name: EVA suit icon: - sprite: Clothing/OuterClothing/Hardsuits/eva.rsi + sprite: Clothing/OuterClothing/Suits/eva.rsi state: icon doAfter: 1 - tag: HelmetEVA diff --git a/Resources/Textures/Clothing/Head/Hardsuits/basic.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/basic.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..53982cb3354b333409292d5ece8466c16c793070 GIT binary patch literal 1292 zcmV+n1@roeP)EX>4Tx04R}tkv&MmKpe$iQ>7vm1uKX;WT;LSL`5963Pq?8YK2xEOfLNpnlvOS zE{=k0!NHHks)LKOt`4q(Aou~|=H{g6A|?JWDYS_3;J6>}?mh0_0Ya_BG^=e4&~)2O zCE{WxyCQ~O5k?O}=)<7QEMr!ZlJFg0_XzOyF2=L`&;2>N)SShDfJi*U4AUlFC!X50 z4bJ<-5muB{;&b9rlP*a7$aTfzH_io@1)do()2TV)2(egbVWovx(bR}1iKD8fQ@)V# zSmnIMSu0goAMvPXS6bmWZkNfxsT)#vvg`Uwzx2Cnp`zgz>RKS{4P zwdfJhy$xJkH#KDsxZDBypA6ZQT`5RY$mfCgGy0}1(0dDXu6n&S_Hp_Eq^Yaq4RCM> zj1(w)&F9@6t-bwwrqSOIJTr2U{IKw800006VoOIv0RI600RN!9r;`8x010qNS#tmY z3ljhU3ljkVnw%H_000McNlirueSad^gZEa<4bO1wgWnpw> zWFU8GbZ8()Nlj2!fese{00QJmL_t(|+U=ULYui8+#y^?t$xXpSAOsp>QM@FR%|Vwy z7A+kzcB}Ibgv!vtT>^HO?)?vXYdjb-wF)5tAK4^Gi|7!zp_p^YoLq-SiX3c;41JhkCt^=b~P(lHgKG zBu7?ES;*LAV6u>q}hdYv(bIF8Zl^{iKd@B3y}{4fl0e0=O!s{q$^ z!5G8Am50HqkHM;sqdOl5R~{H+@O|IdPF`z`IF2W-$8ij;HC)%V`w9R+`_~)1dRfKZ z3qY#O^~+7`r5}bN7-P^{rxlQ#GsX~xVeV%x- z0MKkUA*Dq7auYWr1*w4Usj*fC-BV+v0&YeM?aNI_DbZ{;0U+&D=C#SpwGBRYY5>6C zyS)mS_UvgItPMb?(}7Ydbz~$*Yk2@%pO?3H-TM);8no6>N}w(2r+Yk$@&Fs!a1+Z ziY0__gb+puL4E~-AP9mW2!bF8f*=Tjn8Bj^1O5O4?174`ME^km0000EX>4Tx04R}tkv&MmKpe$iQ?()$1v`j1WN4i%h>AFB6^c+H)C#RSm|XfHG-*gu zTpR`0f`cE6RR;BL;+afkw@7zKZ37qAElt@2E_Z;zCqp)6R|?V;3I*W(jJ_!c4BP@et6p!-eVjf38R{x^0~{Oz zBSp$y^Lcl7dvE`qY4-O6ZWD5)cX)k&00006VoOIv0RI600RN!9r;`8x010qNS#tmY z3ljhU3ljkVnw%H_000McNlirueSad^gZEa<4bO1wgWnpw> zWFU8GbZ8()Nlj2!fese{00E9kL_t(o!|j$aYr;Sj$NyIxBju0|2OUbFf=$tK3uI^(p&$i2+x-4|-#mti!E)^Z%d!vz0i1O|F@Jv3 zYyE{ly}{tjn+Sp+AAt0WW&-d&^tx!XGw-mRD-h5BAbLWy5x+_wo5y|Nd#@Ord-;x` zZQDc$kw6@pciRm0220F^5D9qxOYv%oXa&@79ugRTA%NBNq`iP-Ih4Ats~BUTl;Y*{ zcJJQf)jOn=nZ7RtxEsak*Rq07jz`DXaoIkT|j${~4e<5mf*cz`p_b Y0yWsN;+zzgWB>pF07*qoM6N<$g7@f>@&Et; literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/basic.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/basic.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..a3df7c62558abd76e25a7f0f52f77f9472d1fc81 GIT binary patch literal 1070 zcmV+}1kwA6P)EX>4Tx04R}tkv&MmKpe$iQ>7vm1uKX;WT;LSL`5963Pq?8YK2xEOfLNpnlvOS zE{=k0!NHHks)LKOt`4q(Aou~|=H{g6A|?JWDYS_3;J6>}?mh0_0Ya_BG^=e4&~)2O zCE{WxyCQ~O5k?O}=)<7QEMr!ZlJFg0_XzOyF2=L`&;2>N)SShDfJi*U4AUlFC!X50 z4bJ<-5muB{;&b9rlP*a7$aTfzH_io@1)do()2TV)2(egbVWovx(bR}1iKD8fQ@)V# zSmnIMSu0goAMvPXS6bmWZkNfxsT)#vvg`Uwzx2Cnp`zgz>RKS{4P zwdfJhy$xJkH#KDsxZDBypA6ZQT`5RY$mfCgGy0}1(0dDXu6n&S_Hp_Eq^Yaq4RCM> zj1(w)&F9@6t-bwwrqSOIJTr2U{IKw800006VoOIv0RI600RN!9r;`8x010qNS#tmY z3ljhU3ljkVnw%H_000McNliru#QSvi*J_5YN7|-|6lwtOqd07-Nhv#u#IavF#G9s^c_GeSY5Uc7y-jzN%K8 zok=Nu{^hmS$d7U|Rg?cy`@H|g&HyQ;kK-8ab{o#QB2GlevJCxxf9dBbrTl&EjWHMu z20>$IKpe*)BAi@F4EGd^?vU;X9p9v7RTB$wER~aU&#zD0cj&CeIjSj4{R-V~jDz7-MYP ztj*umX_^KA=H*x&bpz`(0A6do5Ucvg{cm=fp14xa10a}}lTVTayXBs~M!;inm?pBa& z^d3;StuY{?BIKN_{MdbM2jJ87hexyP$&b9iVmuxL0KzcD-8zDeTmp~ZJoDnq1&F9z oXV5Agn@EX>4Tx04R}tkv&MmKpe$iQ>7vm1uKX;WT;LSL`5963Pq?8YK2xEOfLNpnlvOS zE{=k0!NHHks)LKOt`4q(Aou~|=H{g6A|?JWDYS_3;J6>}?mh0_0Ya_BG^=e4&~)2O zCE{WxyCQ~O5k?O}=)<7QEMr!ZlJFg0_XzOyF2=L`&;2>N)SShDfJi*U4AUlFC!X50 z4bJ<-5muB{;&b9rlP*a7$aTfzH_io@1)do()2TV)2(egbVWovx(bR}1iKD8fQ@)V# zSmnIMSu0goAMvPXS6bmWZkNfxsT)#vvg`Uwzx2Cnp`zgz>RKS{4P zwdfJhy$xJkH#KDsxZDBypA6ZQT`5RY$mfCgGy0}1(0dDXu6n&S_Hp_Eq^Yaq4RCM> zj1(w)&F9@6t-bwwrqSOIJTr2U{IKw800006VoOIv0RI600RN!9r;`8x010qNS#tmY z3ljhU3ljkVnw%H_000McNlirug9kblh!DC0~BPg4@7~-jWzd^OygXX$J1|IZ-hd$AA#cFR^)m*9)qZ{sT+0i1K=x-Rg20ruUrLGP za@i^!0j}$UF^02ij_5c*bR1xQAK>hogE5962u#(3*IFZv*4ebAXMi3)k)=tzLXM-F=(yR5n%TjV~|qju4zB501t7_zZL&LU1U4pklYBE z-hJA;^8kRGOH4aatpZm{K}rdw)WMF(O=_HT)9dx{<@WTkQ#uipQn?AFia6&cNfNBr z>$I)D@0)J7TiE`>fPCLKj^m`y({8uhtFWp(&%<`R{qJ&kp10Qtb}K3;gb+dqA%qY@ z2qAI%_Z()Min|(MwdKwZ>|-N{@vQl~1Kx?dRV8 zY%1Dz#{53O;4J_wnmYnG=f>vU0bo2HLkNNMs}tP)QV literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/emergency.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/basic.rsi/meta.json similarity index 76% rename from Resources/Textures/Clothing/OuterClothing/Suits/emergency.rsi/meta.json rename to Resources/Textures/Clothing/Head/Hardsuits/basic.rsi/meta.json index e482264df5..120d4d7723 100644 --- a/Resources/Textures/Clothing/OuterClothing/Suits/emergency.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/basic.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", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a", "size": { "x": 32, "y": 32 @@ -11,7 +11,7 @@ "name": "icon" }, { - "name": "equipped-OUTERCLOTHING", + "name": "equipped-HELMET", "directions": 4 }, { diff --git a/Resources/Textures/Clothing/Head/Helmets/eva.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Helmets/eva.rsi/equipped-HELMET.png index 53982cb3354b333409292d5ece8466c16c793070..785dfd5da3f851b4082f55cc36518a3c4e392b60 100644 GIT binary patch delta 1398 zcmV-+1&R8M3W*DlB!7ZwLqkwWLqi}?a&Km7Y-IodD9@FVO(;ZB9L0YIjWnW+5*BZP z6(uA~hLRdJ4a(QTdvDB8^WIGFjchEHt+Md3F<97Gv$e2QO8F?+*;x@A>G|I`Y9=+x zt=s)|?mee_&xJrfZCY+s4_J22iH}9Jnb|ol_)Lfff;7>pn}2S0I2Maic6{7Yq1Kyj zmBs%?U1G^Kp+XZLGP6!jcu{y@EtgfiD;zeL^@Q-LaF-(&6uwuwQQ#NFDW3x>Gwe*o zM})(|TB?MN5;m6|OSoUSJz?3BADAg{Lh-s{E4^y|+*7?Uv}8|DDqUt9V~jIF3=M-- zR!EbhTUJ{Xmw&kIN6PqHe1A+_hPYNR#W6|-3*Gml{@{1FZnCepkQ9nQ^^@nlbwF?% zzP3E?^U(9Yj-c`pF6^Q|lZU}~(YK0P`vKH%z}aO{Gj`y76Ph2gx}*D2rOZGw39l#e zO|#H=4Yl)y-hTEuzJn?0DtZNb`_P$^?1eJ#t|{&9&wn$1e?-0kJTr2UNSnqb00009 za7bBm000XU000XU0RWnu7ytkRtw}^dRCr$Pn$b%XK^(`Yz@Wm1I?5~%gUGJ9<6gYV zr+ci2hzP^-54h~5dhtoH&?o-^`x64Gh=?K(?lIKhI6*VWK*-BtNj&O7AFjUR?+N@b-<{bVcXpo$Q79CswD-y7a$-M~8#3~ExJpIIz`#J2H>$D< z8mm%IKitknL^dFKAtfV=o;-0}q*5t?SgRqnU@aH|eQc^ew=*h{4FC{9!Vtf9{f6l2 z>5&opYy|zO6>xqe488vTevwEdWW9PJWQ7J=27iFWu{QDPZ<)NIz*R$z)PqeXy{wAh$5+ z1!$)Z+CAXVgSqn8pBtjIa(JDpTGm&W#qX<6%d~HmAPA`RZ`l+r1A-qb0?Bgn+2XzS zzkmB1C|AnMOE_*5K0gu0vPK^9CzWhwKZABhWecX39B10y$Nd11aTGk@sm!cMX6MhWpqiKSD)ct zz#wt7$E5e62WT6hGBh+)9UUFDo^(Cp>VL;JV7Fs*57=vX11LI+H-MtEcmpUpi#LFx zvv>n2I*T`eqO*7dC_0NbfTFWFZ@{j3C8oZPk4mFl71|TAUWdmq0PBTRl+4f1+cyC3!0y;zB=P&I7V+$ECJ|>S7=O(JAc*c4{#F1>=eA)DXhIup;I&EJiursSPz(E@{xiLFu`QTSC6I|V1ljz%_i1UU@zbepy({#0E*7y4WQ^O-T;cu z;tinaEZzW$&a&;l!TnNgNw7S4z7YA_yOYP=A`H%CH^ld zw21NGxF7HCJ?`ECLaoF!t8EO>blXfN;$kMdB8FZOMh`;h!+)U6EMr!ZlJFg0_XzOy zF2=L`&;2>N)SShDfJi*U4AUlFC!X504bJ<-5muB{;&b9rlP*a7$aTfzH_io@1)do( z)2TV)2(egbVWovx(bR}1iKD8fQ@)V#SmnIMSu0goAMvPXS6n_gT+K>DA2VB2IE`?khVC0xb85(5Q5B>+gyS4HY<6crY4z#~G&c`qi z+6C%W$N4^Xocak6d@TsJjk54hX``kxHhlwB!EQ^@Cm z_cQvYEYN!kbgp{6HTH4(0Hmp_eSad^gZEa<4 zbO1wgWnpw>WFU8GbZ8()Nlj2!fese{00QJmL_t(|+U=ULYui8+#y^?t$xXpSAOsp> zQM@FR%|Vwy7A+kzcB}Ibgv!vtT>^HO?)?vXYdjb-wF)5tAK4^Gi|7!zf1#Lj$(&q= zMv5G4isYO^@%w>5mMy*S-96nI-iLaKUMrn zo*#RjXOiGjN+d^COj*fKi=XJTRso*p8P|2Ov9STIb$XpKhB%JV>-DTxg75ogR{Ssw zaeRF2SgQcnb-@_J!Ig)>f2xncs*j^P9|u<+7-R5#-`GxGYmGRLC$7hF46QX>*R}f! z06_cK8@zg1#oh}*s?7DvP3xr}h9MYZ&|0SzkeoBd5QbsyXD;Oxfcrd;zRmc)B(eiA z54kI#b@O3j<^cfL=V&btN=;lTg)j`El$vWGaxYq*=b37?iqF6Ie;x*9c>twU?ggj_ zp68kIc#I$j(pa2xv$C>MD1ITqoO4sF)zbGdilPZY3-L#YbDpmF|7-FDK@bE%5ClOG z1VIo4v4|{sd%Qv=u;4t2KL9A#BQP8e9RPPv5x>w)NsBtm_V#vZgOK9>1Qcr3GMNBe~$0_6Uq1c{ka;Xl_InMxJR$G#^I=ii>-0MKkUA*Dq7auYWr1*w4Usj*fC-BV+v0&YeM?aNI_DbZ{;0U+&D z=C#SpwGBRYY5>6CyS)mS_UvgItPMb?(}7Ydbz~$*Yk2@%f1j7PcisCDvKqA3P)ecG z>Dbu?gb-$bf8PNf`tjrO7ywYK)d1kHXW+|gYdgXE`>68sM|7K*F`_5}03=$1AaG7j zPAXdK+eGWXSSli9N;}*%8V&I169S79zxMU5S#un)^#;z)&JYBF!#SVOvb(!`Cxoyg zKnO8&fyw#>IBdc>ugr=igm8oqMhHQE1%e<5f*=TjAP9mW2!fcwqWc5>00QiRimXKc QK>z>%07*qoM6N<$f*|cnP5=M^ diff --git a/Resources/Textures/Clothing/Head/Helmets/eva.rsi/icon.png b/Resources/Textures/Clothing/Head/Helmets/eva.rsi/icon.png index 5751b4bea27512d1efe87a6b21c86a1d5ebd41aa..b3927b1cbab7d60a583ad33bdc7a18be8e5a0c75 100644 GIT binary patch delta 727 zcmV;|0x12q2jm5i8Gi!+002a!ipBr{0fK2mLr_UWLm*IcZ)Rz1WdHyu&y|rmNCQC_ zg}=lTi71#t#9|AzG9W5qsZkI?Aw-2lE!^FhC}cNbH)3Nc*a{XNjaOk~t*wQvAP62H zc6L^ZHX`dk8zDi6;J`2+Z{|H_-azmmYg%q~4_J1=iH}9KM1OKtt9vFyGqrT0>86_> zj>RUZI6iI(sP!hIviRR2uuPT$5m{|fT;j4Ht>AC-{V{PF;#$TO$0#{0bl;EqgWuh{>Av1# zQYZ>FPoDSI33XfWwdr}Eho1L!1XYi4VVC^50~mZ4eY2!>>_gK!oL!bQV;jylp!FfI zJGw7b$qc5`@OmQOl!TURXqYSZ_Os9N9ZXAC6IZai2Y+1|$)2z9?)viH{ygLNNAw$R z6LO^uzCNq~002BtOjJb-3=AF~9vB!Ha&mHjfPgEG%1FTO@kXAz7#; zhv*}G)+A`fUS3{%dwV}WKX`a}0001>=FDXP000zpQchF<|NsC0|NsC0|NsC0|NsC0 z|Nj6_Pk-kT00009a7bBm000XU000XU0RWnu7ytkOph-kQR5(xN&}$BaAPfZHrOI}A zC@S~A>sHp4VlaCE=SLHmFAd?9|Kw@lPM-H>A5>D#zi2=-jFO=t3XmP&C8JfM0-~cA zp>`->k6NNuRA3nNtqEM7TvCC94+IGX4|fU;qEMfLWb*M2oaupVcs}Yl_ue2YI7|VM z!F53kV2~CWeIUXit?L4(dJW_&Hcks~M)eKY3DDG6(8(h}&L2YjLa#y9Ar$}s002ov JPDHLkV1oKbI>Z0~ delta 939 zcmV;c162Iv1-1u}8Gi-<0047(dh`GQ0fcEoLr_UWLm+T+Z)Rz1WdHyuk$sUpNW(xJ z#a~mkA{7NYh&W_uoh*ooIBFG&P$AR`tvZ-o`XMxFNK#xJ1=oUuAB$B77iV1^Tm?b! z1H{eENzp}0{9jUN5#zyeKi=JY+`R*YdYNff#~7gLwwX>Q#D8pVMGU22o~~ zF)K+a_>Ql81o(Ov=UM*e{v5q(-eN#NB%Wc0X%nv#Pi@);=Y8S`E6FPHIq|4T7bJe< zy5jL0=c3C3&y1Lv^c-=7SS+@&(#EW0YQ&SoQB~6^U&wl_a^B*sm8-0IPyWJiUSD3~ zI?Z7uv4BNL5PzYdiVc)uBTlPMiiI@oCw%-vu3sXTLaq%ka?GOw4YKP8|AXJ%T7`*m zFDaY=I$s>;BL;+afkw@7zKZ37qAElt@2E_Z;z zCqp)6R|?V;3I*W(jJ_!c4BP@et6p!-eVjf38R{x^1AiPG0wYDrUh{c(cYAODo@w^? z18x&?rFVFJe*gdg24YJ`L;(K){{a7>y{D4^000SaNLh0L01FcU01FcV0GgZ_00007 zbV*G`2jvV92M-Q<+r2^n000?uMObu0Z*6U5Zgc=ca%Ew3Wn>_CX>@2HM@dakSAh-} z0004wNqKorOSR~#edkPZhON}z&4=-|+fj&UVHm1juSW{|1&8KRN=PY_+%!#a z&Q&1*oO4Af)f%UBN@*sD+A-x%=Tb^I>%LYy#-x}gv@8phQaJM_aCwJrn*ji3;z!eA zfV0?vjV~tPoFCN>*~akO{Qi31JcfzEa_s@jvJeCToOM4je}2RtxEsak*Rq07jz`DXaoIkR&*=8vhxfIuTU>6~Mm%_yRT9vErN*mSg|` N002ovPDHLkV1hj#mAL=_ diff --git a/Resources/Textures/Clothing/Head/Helmets/eva.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Helmets/eva.rsi/inhand-left.png index a3df7c62558abd76e25a7f0f52f77f9472d1fc81..3461b5504f55cfdf25508e9e1126b8841993e134 100644 GIT binary patch delta 874 zcmV-w1C{))2=)e$8Gi!+005o0f$RVP0fK2mLr_UWLm*IcZ)Rz1WdHyu&y|r)C`3^l z#eW8kG@^_W7H@$SB_vCRk{UG)%GbhsZ_H5h-c0X}Y%GO!J*Rumg+M-ST5eSjSa!~dk43bZ*?&1L_)Lfff;7>pn{IYE z7K>7LeB4r@)|+mX#s5ZKV#zh3LK7Y`vrbNUQFvf2msPwg95$Ergz%|wmm?PxzE`?Y z;1|Uyp93m0>`cW+gu}vGs)UUaHkTbsxL>$EVcC)&m?>~V@w#Fwy=wm4Q@t>>WKT~j zU1l3&j59$D4S$1GR!EbhTUJ{Xm$>Xl%J^G+e@tA4xK=R5F-ist-S?yZ;CHufvah$0 z6pBFgljps4KyVwrwmk3i(DS~Ipz;we?4m!DhrxHzw~AW(0n~56*=12PcHn#ynjf;d zqx({&%s?^;uP5?Nv(R`AweyAEe)c)OgDL4MdIfv?(0`ed?1eJ#t|{&9&oh31M7{w$ zGjfqgo5m#o002BtOjJcfK|d)eDQs+PX=!PYkdRhZR>Z`_dAaOhspvM6?lqI~F@)A6 zZ^R&2qM4bQJUl#$i;HS%YBn}D0002>G1R9HvtmfLQ_APhip9d}_Y zkTw7RuQS&`VsOOtmttydpk zrDISF@+KGNG<#>`y1it<807*qoM6N<$f(N#g AKL7v# delta 1060 zcmV+<1l#-e2CfK@8Gi-<0063Kaozv`0fcEoLr_UWLm+T+Z)Rz1WdHyuk$sUpNW(xJ z#a~mUA{7NIh&p7bP8LK(9JLBXs1Ry}Rvk<({ScZoBq=VAf@{ISkHxBki?gl{u7V)= z0pjN7r060g{x2!Ci1FaKAMfrx?%n}Ht;95|Z4A(K+e{_mVt*#PB8FZOMh`;h!=TJ8 zV^)%q@Eu?G2=MhT#R+LrZbK+5xE=c^y zb;aX1&IOkRo*6OIsX5{Zu~=wfrG;71)QBgEqpGG;zL4=)<-EmND^*zIp8SR3oW8uo zb(%v+U;&GeAb&zZ1sf>AMvPXS6bmWZkNfxsT)#vvg`Uwzx2Cnp`zgz>RKS{4PwdfJhy$xJkH#KDsxZDBy zpA6ZQT`5RY$mfCgGy0}1(0dDXu6n&S_Hp_Eq^Yaq4S#TO2#gdcd(G$F9j(3nd#2If z4?Ht+k^HdmX#fBK24YJ`L;(K){{a7>y{D4^000SaNLh0L01FcU01FcV0GgZ_00007 zbV*G`2jvV92Ov60b8(sg00JvXL_t(|+U?pgYui8+2k^h#?9rQohAxH%EHZjC2N|>6 zSLoK{8-MfyU9tq~DSMZG2y5`#x|j|+vYksBM2FHFN;wzL^>s+3%4t)pL@u)ZejpIf zzO&!y?kubaFvb{Tj4{R-V~nxw60EA@G);Ye-tBgS|J}Z-R-K(mDSiIswbsawaxztu z|5N+C|HjS$DW#9&80~f&&bcB^M98uX{eFMx=YJ`s{C(|>F&GR6L1Sk?9LFFcoLor^ z_Y{VE3g>f$lPd`#f>O#aOWrw$EXx++S(d>$hd7R#y#xT@^y^a`9z-~L0%%)`U+yn$ zYm5OA!8upVfc%_@V2r7K0Cwu^%oqdQ=6U}1p4TfX55OwbJ_C+tXA4&z0Py)ej(3Ou zlz+Ij7RDG@YgalDwg0?GDSZ@0c=i40*P!eUVXdvSfk`R-bUMXoG%DUJgz#Y)*1iF* z>^?vU;X9p9v7RTB$wER~aU&#zD0cj&CeIjSj4{R-V~jDz7-MYPtj*umX_^KA=H*x& zbpz`(0A6do5Ucvg{cm=fp14xa10a}}lYdW=1ifBwdzQfAYwxuMUbOlkA|y$ID2f2w z6i+;47POk4{L6PY$J$L>~;Z1f&bxUDfDq9Wv+ ztNhq~Z3p1f^@m5Z>&cJ2z+yZe0|3G>#N9fAja&kc-#qi;%LRz2TxZZK9h*-G(H$z+ e8!*OLU48;3y$c5JyigJ$)8Gi!+005o0f$RVP0fK2mLr_UWLm*IcZ)Rz1WdHyu&y|r)C`3^l z#eW8kG@^_W7H@$SB_vCRk{UG)%GbhsZ_H5h-c0X}Y%GO!J*Rumg+M-ST5eSjSa!~dk43bZ*?&1L_)Lfff;7>pn{IYE z7K>7LeB4r@)|+mX#s5ZKV#zh3LK7Y`vrbNUQFvf2msPwg95$Ergz%|wmm?PxzE`?Y z;1|Uyp93m0>`cW+gu}vGs)UUaHkTbsxL>$EVcC)&m?>~V@w#Fwy=wm4Q@t>>WKT~j zU1l3&j59$D4S$1GR!EbhTUJ{Xm$>Xl%J^G+e@tA4xK=R5F-ist-S?yZ;CHufvah$0 z6pBFgljps4KyVwrwmk3i(DS~Ipz;we?4m!DhrxHzw~AW(0n~56*=12PcHn#ynjf;d zqx({&%s?^;uP5?Nv(R`AweyAEe)c)OgDL4MdIfv?(0`ed?1eJ#t|{&9&oh31M7{w$ zGjfqgo5m#o002BtOjJcfK|gG4Y$+)zX=!OzR#uRZka@Z6V5#UflI}H=@iBzfByYqZ zSfZJknLIo^#Kgpli;HS%YBn}D0000LJoR1x000zpQchF<|NsC0|NsC0|NsC0|NsC0 z|Nj6_Pk-kT00009a7bBm000XU000XU0RWnu7ytkPHc3Q5R9HvtmcdfQAPhjWNmRsA z>-PWu)g;hDwT#(y4?4q}Dd_-tEj=`W^_L965GX@11j<7M_ev~Jhs%m6!3GbuPj+84 zngD?$5cmwpIx=7*V2}vx6ws68GgkpJKEH$zB!BAE4UegFUf07*qoM6N<$ Ef|dc1-2eap delta 1066 zcmV+_1l9Zc2DAu}8Gi-<0063Kaozv`0fcEoLr_UWLm+T+Z)Rz1WdHyuk$sUpNW(xJ z#a~mUA{7NIh&p7bP8LK(9JLBXs1Ry}Rvk<({ScZoBq=VAf@{ISkHxBki?gl{u7V)= z0pjN7r060g{x2!Ci1FaKAMfrx?%n}Ht;95|Z4A(K+e{_mVt*#PB8FZOMh`;h!=TJ8 zV^)%q@Eu?G2=MhT#R+LrZbK+5xE=c^y zb;aX1&IOkRo*6OIsX5{Zu~=wfrG;71)QBgEqpGG;zL4=)<-EmND^*zIp8SR3oW8uo zb(%v+U;&GeAb&zZ1sf>AMvPXS6bmWZkNfxsT)#vvg`Uwzx2Cnp`zgz>RKS{4PwdfJhy$xJkH#KDsxZDBy zpA6ZQT`5RY$mfCgGy0}1(0dDXu6n&S_Hp_Eq^Yaq4S#TO2#gdcd(G$F9j(3nd#2If z4?Ht+k^HdmX#fBK24YJ`L;(K){{a7>y{D4^000SaNLh0L01FcU01FcV0GgZ_00007 zbV*G`2jvV92PGMnWAv>600J>dL_t(|+U?pgYui8+2k^gxcl)N`)zDChqQ#zU1Rb;7 z(!pa#=YJz8o4Xj|se8Xcwc3N`x$I)D@0)J7TiE`> zfPCLKj^m`y({8uhtFWp(&%<`R{qJ&kp10Qtb}K3;gb+dqA%qY@2qAI%_Z()Min|(MwdKwSUHHwMvhL5S34*TkYrG{cI}QcEK=h-*bHHpiYbmAD)faY~ zb|T>Bve~b}Fbpx7OaMIQ-jgH&062~V0DsmOeEm@QH$nTk6%?!+Fr(23{_Zo@O(XsX k6^3DHS$0hUA%s-fZ^%gyYr|VE`v3p{07*qoM6N<$f~)oPRR910 diff --git a/Resources/Textures/Clothing/Head/Helmets/eva.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/eva.rsi/meta.json index 120d4d7723..2e66e1d835 100644 --- a/Resources/Textures/Clothing/Head/Helmets/eva.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Helmets/eva.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/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a", + "copyright": "Sprite edited by Flareguy for SS14, original unedited sprite can be found in https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..c64f69b0d8457dc228659dd3b5826fc59432d421 GIT binary patch literal 1394 zcmV-&1&#WNP)4Tx04UFukxeK>Q5?m828}eLj1m@affXerONNpfH4Vzw!h3JbQ1jkQ?~QCM zm94Vyu`yWKShKaTRZ96N+1XhU8|nGqH)Gwe*oM})(|TB?MN5;m6|OSoUSJz?3BADAg{ zLh-s{E4^y|+*7?Uv}8|DDqUt9V~jIF3=M--R!EbhTUJ{Xm$>Xl%J^G+e@tA4xK=R5 zF-ist-S?yZ;CHufvah$06pBFgljps4KyVwrwmk3i(DS~Ipz;we?4m!DhrxHzw~AW( z0n~56*=12PcHn#ynjf;dqx({&%s?^;uP5?Nv(R`AweyAEe)c)OgDL4MdIfv?(3z6# zg);B1DedjgGk$+Wz5zTla*;@z#w7p%010qNS#tmY3ljhU3ljkVnw%H_00WjuL_t(| zUhSH{Yg17a$FD*akt~hB>L9U#O_Y>~5Ft1Obg+YnLkGz!gt)k6Du|k?gKlz~URl)wT2I6=U0e)ryemC0nZ#XSo_KXn4$kAUGXm&>VWG^+Ex6`?Z> zFcJVnPoGtl)T`FkwL<$->|y)OiN~$?m!7qde-I$(nVA{2y1Gg^18n^V7GPy%MJxUJ z*4x%xynAeYdso#qPj>NaB63PKuD@(?bJTwrGl@h(*FI=AoBHyDR)BJvVB7*gKlmsI z-)ExxbAyuZX}8;y`ZH~dkpS%Ic7z^m?`S70+G5??>SN;B9>y ztpm`!z0*-Dl~UDemF@=rU0PcD>z(5Q{?W|+{hfo~`1ak%KVmWN0`+=b2aZvAXJ<#J zaUuVpK)~J$*baimD?!u(Pd~G>v#M6B=`@<8%i3qS6)*@K<*{jfXaU9ocv)Cj=#@$( z=Rpr+RR1Fj@V{d<1{^j-0J5P)1Rxt)L;$j(MFb!lT0{V{p+y8B8(KsFvY|x;ARAgl z0J5RQ>YHG(SnMq>E{^mu)Vseh4$|p#uTrTPm&sayPNze6%Ib6YI0V3cAtg19M#H@T z_%0ubL{uymqnyEJ2{7H2v4sQY%~A&CFcraQ4DfGCU{?m468U^y2ZZPJ$QcM8zTgwS zd1nZqZ2nfUAI5_qZ$ZKF<@gnSRsiP&U^i1QK90L@`+*PgsePjiqil}_7QkEk=>Hu2 zT)ca{pQZQ8E@tmsn0)Z=1JW+QyWxXwRp0j%i@=z+0;_4z+xOPDcPDwf{20EoaohGDu6Fcx4hAWqQ5knMB{5o}g`!x*aoCb(WN z1jTw5I4p<&WJ8MxKvob0K@bE%5ClOGLW5Gj0bcmZez4@Ep8x;=07*qoM6N<$g0Z84 A#Q*>R literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/icon.png b/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..25a7caf089199c27556f1e20db3aef609e6a8ecb GIT binary patch literal 743 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabRA=0U~I~Cb`J1#c2)=|%1_J8No8Qr zI6rlwr3bU4MC<+|!krp3oQ@=MZ#7cTN?I8x;Hc=*>Y{t+?hK6-^F;HcWX&5~VsgFV ziOFl%wyss+kW(lt3+pmddTlSQ=-Bb#fPsAeGuyO#4j&Y$99wPexDWwYh`j;gJ&u*>6I@l|cnrXTk+d~|oIv6wtmG=4AABHqFt#$9>T`cPuA zr$6U>u5#-l$A{HRrCsX+=X|tWVRZOhNsWtz&YILyH#CxqPi}1a-D({)P50+Pmx;k$ z*F~alihh1R?^WwU*XlH{mqxcGljnFQWk{^q;4_U$FfunV=FukkwGZ+?|1~U>d=zy| zqd#nYSvkLb-uF_L(EftN>3?=IOVo(h zZeCLQ#`&_`Va4ZeY*G0=J9v;FVcC!MN4`2*{uOaihY1jh${~dkDQ#GgoH#_c| zQb01AB5f*8frVXTJZWa{Z|breAAZnAWl%mb6l8*p|kU zZW7kPw#BUBF@xJ1fdhxE&lk!ixiWVdOuhG;Gh}|uWe1C2N{2L6Ze*W}SJ0mI{nq*N z{0E|2_J}vIZ)LS@aPqNv$JpJlV;!gC7oiW~IU>TjUSDK2SYEu+-f>dd;hg*~O*fD7 T&@KCbPG#_P^>bP0l+XkK9o{|J literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..3d32e4c7df837cc77b79ca5c485576bcdd268795 GIT binary patch literal 897 zcmV-{1AhF8P)4Tx04UFukxeK>Q5?m828}eLj1m@affXerONNpfH4Vzw!h3JbQ1jkQ?~QCM zm94Vyu`yWKShKaTRZ96N+1XhU8|nGqH)Gwe*oM})(|TB?MN5;m6|OSoUSJz?3BADAg{ zLh-s{E4^y|+*7?Uv}8|DDqUt9V~jIF3=M--R!EbhTUJ{Xm$>Xl%J^G+e@tA4xK=R5 zF-ist-S?yZ;CHufvah$06pBFgljps4KyVwrwmk3i(DS~Ipz;we?4m!DhrxHzw~AW( z0n~56*=12PcHn#ynjf;dqx({&%s?^;uP5?Nv(R`AweyAEe)c)OgDL4MdIfv?(3z6# zg);B1DedjgGk$+Wz5zTla*;@z#w7p%076hqR7FEUKPf3GY;0_4X=#vlhRBmfTb#Q=%CW)wlGL}UMtD!9VG7liN) Xf1f`&L^Hhl00000NkvXXu0mjfA&Z)> literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..4ae22a25613495ee319e4072279c408841c955fd GIT binary patch literal 897 zcmV-{1AhF8P)4Tx04UFukxeK>Q5?m828}eLj1m@affXerONNpfH4Vzw!h3JbQ1jkQ?~QCM zm94Vyu`yWKShKaTRZ96N+1XhU8|nGqH)Gwe*oM})(|TB?MN5;m6|OSoUSJz?3BADAg{ zLh-s{E4^y|+*7?Uv}8|DDqUt9V~jIF3=M--R!EbhTUJ{Xm$>Xl%J^G+e@tA4xK=R5 zF-ist-S?yZ;CHufvah$06pBFgljps4KyVwrwmk3i(DS~Ipz;we?4m!DhrxHzw~AW( z0n~56*=12PcHn#ynjf;dqx({&%s?^;uP5?Nv(R`AweyAEe)c)OgDL4MdIfv?(3z6# zg);B1DedjgGk$+Wz5zTla*;@z#w7p%076hqR7FEUKWuDlDJdywX=zqgRyLCEdAaN{ zhTM>lkYK6kF@)A(u=F*P@g#4=AXuWAnVCF1JjBGri;IhDYHBt%HUIzsv3%ed0000M zbW%=J|NsC0|NsC0|NsC0|NsC0|NsC0{{R8fz~le`010qNS#tmY3ljhU3ljkVnw%H_ z00A{gL_t(oNA1?zZo?o924HHN9oQCF8s7g^XB(0bElBR+Vw3o#LMq~~Nh$@q{9pz! z0LcIbAbARKFQRoaTrvPpI#{CT@!1!d6#$1kp|c4isIfLb@hneGzEA+yZb?olSxL$2Q>J3}66~0SrL$w}7S2H|3cCC}4fJuh{``3K+Mi zEe${l_({K=<#c5Oc*g^7GkBZs2~(&ChqM5pZ1bTHtU`O22Y>}1P&=5DEL4R<7tlUL z5fJCzzquflvk#BC1spkyGj{qEZEebtjx{^Ljhm+1=kUtOQUlcV>N_jHfgAJhft-H; XjRZeZR(QE=00000NkvXXu0mjfa8;E! literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/meta.json new file mode 100644 index 0000000000..2e66e1d835 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Sprite edited by Flareguy for SS14, original unedited sprite can be found in https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..f5054f7fd5acb87e556e94972e098580e647b628 GIT binary patch literal 1537 zcmai!do-}MIu4k1uu-{0Dt+J$Ma8eEN? zvM-~F)36Sw{VBc*n?%8 zZ5XbTlDfr1FRujegdk&%Z=<1_HRs#Kneu3k_BN#8V7<3wTPwO)#=vsIqZNO#`I&#k z#jA?eoE`3UN9*j54Pw^uSo?09F?Wx(L<3yrCU??htZRscvzu@cVn!^k5 z3qW$}Ch+Y`0ZDX^!p6{F& zWR%PyOeSvc%emYX-&M=>Uje<25)Pd3wv3Y`DHUiusOPQt+!xqZ~obT0H$ z)WMDJ9O6_h%fxWI+QFz)`65RWw=FeAnXu2y&Hc5oZTg!!EyL@q7*(9TcwQ1S)gVrk z4o%xH3ZxCy7Z>tyJGl`JM0a;s?l{%a)(xRt19fg-bLpH)xuf~`?o<-=*Tj9MmI791QeAtM<;(eg~DJkXjX`_ z(|Wm{WO>x=M{Hc2kLDKAWJd}K4#t5Q!WyNoQawddIK4`xo)i^W5XR<%fKpGZ0+WE0maRj~-RAS~r zwZ=SHn%&qn8EGfWdS#AazH8(}>(P7rx?k|ag&RZw&$N{clx|hiJWc7a7OAUch*VWo zp~|9@oYG>Xz~nB7(Vw^3Xm73iDys}|;eL1%%a;?2#Y#9~%^>o6>N)(I;=SixJU5bW z$x^nM`jOcQS{0R*yz+9iuPC@>TpQ()<*>VHA0_cgU7JG-T3JXS5{ZwitD|0E8j(VR z!}{HH$P6DZyObJ8pDpu1r9FV z44O)-Z)kY9y1KglqpFa>(o($|DiVoWW&GcNzM}&nlgXXHQaT0>Cb4(YI_5XJLB;8;OZcOg;4*x1T4ZLngd-bFS&6+SBIdnq)AJ%pq#>rkZ<^hgonxi>+)+$;7w;|NP2*HKEok z)5QQ#WDX6!!XPfW$fu{-W~v}6(a*t+CdPNTJiN69ps5ljrP1SC)Yq8LUlSCB{CCZ0 za34Y`*qNQ)gX{_fx+N}$wtE^GqxFiYK!t^=myKr7&eLeNx;bs0$z6$T zYDnUq;iHET!<$-In#eVhZ}~VB%-SMQz)CIi+4c6+Gd9BUjELrqzZL-DJkmXxl~N#Z z7;MVUmVyYfSja+_!q{0xrCw7KR?S8O?aF{sZY|B#@W6GB20}0G|Kl3`6bM+`G4h2@ ij7QPs{v|HgrI8qE=vuwt9rp7@0K$GR+ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/icon.png b/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..93a7db32e696a86293e82a8adf13429ec47e3f88 GIT binary patch literal 729 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabRA=0U~I~Cb`J1#c2)=|%1_J8No8Qr zI6rlwr3bU4MC<+|!krp3oQ@=MZ#7cTN?I8x;Hc=*>Y{t+?hK6-^F;HcWX&5~VsgFV ziOFl%wyss+kW(lt3+pmddTlSQ=-Bb#fPsAeGuyO#4j&Y$99wPexDWwYh`j;gJ&u*>6I@l|cnrXTk+d~|oIv6wtmG=4AABHqFt#$9>T`cPuA zr$6U>u5#-l$A{HRrCsX+=X|tWVRZOhNsWtz&YILyH#CxqPi}1a-D({)P50+Pmx;k$ z*F~alihh1R?^WwU*XlH{mqxcGljnFQWk{^q;4_U$FfunV=FukkwGZ+?|1~U>d=zy| zqd#nYSvkLb-uF_L(EftN>3?=IOVo(h zZeCLQ#`&_`Va4ZeY*G0=J9v;FVcC!MN4`2*{uOaidle9h${~dkDQ#GgoH#?+XcS@DWQ@ezu^Dq zfZ@^p{X#%l&H|6fVg?3oVGw3ym^DWNC^*;C#WBRf|LKKDzQYPUEEgU**v`ng^M6yR z2JbSZQ;bIP(-P+C9MQi2B=dpSyzlQMLW0iik8m)lJbOiuS>s1}C%>DCLrAq~T07&y zYf_sRF&lSyn!DuO0cSU!q~otfm7vX3d2><{9 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..eddab769564162066c4e7c1032095a3a49512a0f GIT binary patch literal 906 zcmV;519kj~P)4Tx04UFukxeK>Q5?m828}eLj1m@affXerONNpfH4Vzw!h3JbQ1jkQ?~QCM zm94Vyu`yWKShKaTRZ96N+1XhU8|nGqH)Gwe*oM})(|TB?MN5;m6|OSoUSJz?3BADAg{ zLh-s{E4^y|+*7?Uv}8|DDqUt9V~jIF3=M--R!EbhTUJ{Xm$>Xl%J^G+e@tA4xK=R5 zF-ist-S?yZ;CHufvah$06pBFgljps4KyVwrwmk3i(DS~Ipz;we?4m!DhrxHzw~AW( z0n~56*=12PcHn#ynjf;dqx({&%s?^;uP5?Nv(R`AweyAEe)c)OgDL4MdIfv?(3z6# zg);B1DedjgGk$+Wz5zTla*;@z#w7p%06b7kR7FEUKPf3GY;0_4X=#v5Lti6bRo2Tn*L1snfMhF}N+Loft^zYwGp z#d9G=+TE1gB@Q?AQV?-$FY(->2?)vSl}#~_@GZ871>y~mUBJ+JFGmF=^mVt^qRlY_ z5!shiqY7-8Z{04SX`bha4hsx9$Ig`rM1-vfMNY!_xXs!M^WEEM*!B`W~kD&^aO_)f*}YD!4L$7;JhIGoSRMZ zq#zXvwLum1ttMWocR6*eb-DA-!`gdTK(&NgP?Ff$bMKvpgTbV)v-4P^Ekm&P+0cA=c$3PL3m1ulk gQ3YrC_X6*K04K5_(&i9=(EtDd07*qoM6N<$g8tH*i~s-t literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..10ffa348115e969398ab87cb0a027945300d7ad8 GIT binary patch literal 908 zcmV;719SX|P)4Tx04UFukxeK>Q5?m828}eLj1m@affXerONNpfH4Vzw!h3JbQ1jkQ?~QCM zm94Vyu`yWKShKaTRZ96N+1XhU8|nGqH)Gwe*oM})(|TB?MN5;m6|OSoUSJz?3BADAg{ zLh-s{E4^y|+*7?Uv}8|DDqUt9V~jIF3=M--R!EbhTUJ{Xm$>Xl%J^G+e@tA4xK=R5 zF-ist-S?yZ;CHufvah$06pBFgljps4KyVwrwmk3i(DS~Ipz;we?4m!DhrxHzw~AW( z0n~56*=12PcHn#ynjf;dqx({&%s?^;uP5?Nv(R`AweyAEe)c)OgDL4MdIfv?(3z6# zg);B1DedjgGk$+Wz5zTla*;@z#w7p%06b7kR7FEUKWuDlDJdywX=zqgR*;a8$e3rt ze@nh&8mn0vVkak*FE5#ynLIo^#Kgpli;HS%YBn}DhesL!006ydp#%T`02FjmPE-H? z|NsC0|NsC0|NsC0|NsC0{{T-<=Mew^010qNS#tmY3ljhU3ljkVnw%H_00BrzL_t(o zN9~r~Zo?o9MqS(6AV15xy#KrIv!Myuib}g)Y!XK*P5__8xhSUfmvliF7+uf>##023 zN<7bo)5?tCLkqqSyH6Hfz$6GlZ3b2wmADWnA(A!<j&#F(dUz|43&Do7vQ1gMH+!mlOYUO`C+2ER*!d3s-_X>Jq@ zqp+X`zjFZ$^T*tnkKJVC-AMrE9Gl?%VVmGlx}Xb;F6aW|Zwbyh-o-No?1I++_6xg! z$pwwa(?%gs7uZ2x;p)mZ$!HJIIpCQ7%roDKAzvKW1j9%wcFf1R;9@ANJiLKmPfV3u z;jGzk=mPe-80Rfo9bKvd(X{*UnF|39T(k*`RQeQeZPJyGnO$J5hf(cwuySRo5M*lk im6e}@JNfs5b^QYROCdU8Jgc+-0000T2uhda;iZGI~xd zJ{}V@U!?E(Pc@Fy^^9?qrhY~K(eDv+iHyeA!Ny6>GUKUAWMYIZI`- zXIgst%zBICXU_1*fB(Yu^!pzEf)2OEZ*JE&ynB}il=M`a4CE|$6)uRvSHVb@(CoVbMcrh3JNy8s-%43BCCZIgFb=@=nloFx$ttiS@)W zbBApVH-E655L1x8&v26|XmXX3-KW|H+da>0Pm1|7cF5I|r;=qFmv%ehqm>l#^ zvdknWY+Hzo^N;w4jRzI0YtLFKP3*8XD=n9*sB_!FeSb@ZMDR+sg<=vCGMnZuxtSy8 zdzpi+*(CFJ#-(i&y_T-JC$%!ocVo?0e&$?C$>;Ss3u| z?bQ3Pntojm&1|)N?EL$$dD)s1KktR>U)}rFkDZ~_sd44*%k!cgS1>s(obdZ!#%I>q z)zV?oL3672uaU62^=Er+YafG!)ZXyM3Adg-O9KK13(H$l4IghU{akzf9uLEp*GhqV zi(h^6^NU@!uKfGc)Y`hDEv5@zcT3gpkNqHXc{8JWpFB4Y58uu8`=>1l&{*)=N}X5v z!I#>f|K{B8zUp$l^cN4)!(R#?o-E{zy{;+3l`-qscl$Zwzf=X*T`zuqZsBVyU0q#< zmcxk*QBhGls=jJ{te8_`mHYks_w_Gpfst_=$S>OILXtt=g*pdD?iVks(a{ngQ>0D`eReqm+}4oiHKs7 c(!)PirnBdIJN9~A1r}%wp00i_>zopr0712Bt^fc4 diff --git a/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/headlight-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/headlight-equipped-HELMET.png deleted file mode 100644 index 6c072b606992487c1c5542e191b73e430b1585eb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1314 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEV0r23;uumf=k2WcjNovYYr}h0Ly6gGpSY=MJ)7F1|zw+9T`$vAaep$2amf;556uvoojJnRR zo{@Vo;|fPEf5C?fiR~vIJPnvt5dHi2>3`N0FE%VrJRP>Mf^W6zg3MVHPp5grNv2+3 z7u({bxLJ3m&m<3(6G0n)plpnpvdHyGjO|wJj3?6aic>CY)Z0efdwybBAY1pTPi>+qlg~01 zR7SHuPoEd_QEDmMBu`^u*9|4&76lI)lI!xO`IsF~*x0*y`-3;S9pUb0-!~sM3rZ9pPIq5W$l8Que{s>rE|(6H8*B|GFwNGiTkS z?g!W7ze<#rmWHe^42q8KUiTU(y=?jNnbii~cJrTqUYEDKvZ|`pVySuYr zzI+*|1jy+>{#cM#^~|oVTYJ*qHGGtaz0TR{^kNs^vE*aMHYI59 z&Yd$SP83W?WULAN-LQOW)XvA;(iyDM;UDxXF}~EUggTkdwol!abokw;_jd(?+o3R7rvEqf2Bu?Yo~}O#WF> zV<>H&w`9G29$(d;8-besZQfF^rt+p97pT*^b6ws%EPU;vb?f-{-{(K@Ayu}b&~1ir z{QoBgX^-BeL`t=IEdXk~GyBx%6+a}VpFWyCf1jU<(89G}ZOgW`bh<4T)$h$P$ujw2 ze)+-up35(fy#H=&Vsc~}oBh|kgwmp#P>_eHkq2Z z)RVh8J9GF#Lob^2e*0FI5Tr5hsnCnp{n9{z zrS$24R+lQy@9+6+oRjJJ%>=Io2k82k`)wXT>TZf2zl2S@NbE?quc|43u RJ_5@=22WQ%mvv4FO#rPhd&>X- diff --git a/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/headlight-inhand-left.png b/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/headlight-inhand-left.png deleted file mode 100644 index cd150e3cdeed455959ee0211d5190ef0d03e0d0c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1052 zcmV+%1mpXOP){31C1_eCG|GM#uh50v0Rsed)bCY)`z|CQc8ur`H&*@VOyX?F0gWy5_%QjT-RnHE1`iE?TG4iO?3%6T z^ckyE1}xkHs;U~A^@^1qw6{VEiEl% zGifBZ2Srg#8TD=fOCn%rWnIZ||VBwbe9! zYio=GU zt(pYC|1M&5c6QR*X2+v_q4>zX_fG+7|-Ljg>0jA+6Tor9! zUH`JCXl|N2!C)|G^mtFv<2{AlZpZ8OGCx1h=^ig#CtRi@UYDkc0FPVR_02&nlSNS! zR8?hoco3F!N32kXd3VR z$M~H=8$f$|JGDeXQ#fF9;VhF2w1q!d*tO4Z-1XTMW#_rKx0k`m3a{78FTdWY=_EMv4hV%pMqghag+hUei3wI#Rsbjz3JeSk;BYul zRkh}tped4I$qDgze9tjm(#d^S|E)-Z(P-56DrIjiG)*DY2;-rN9MC9)0}fk(!{%Qp W&55(-3+FEY0000i*l)ojoL#G?WwCM3To5~svMz2Y7!&0NL5w0 z2V=JiLi_=haw5GKi8el@H$)efKoo%wAvmtnc8Oa;_%Pc;7k|d$3DvsJ0 zDK9TK>T|IItgf!=0NFPmi^aHed&&?>BvUlhIZT*)Ivj@lT2L}O#7Nb z>+Ch+@i+Ch!*Azo08~(5%56E2sUVGhx*Xu=56z<%fB9Tn7*-BuhJmA}J zLi+LJ$EkRslIrSe6h*=7^^#7fS$@2PrfGcsMQ@(|Wg9zmI2@clbC%A|PSWW#Uayza zXU^hqIQHI}5;;~=&3xiM=<6tof+R^OiURsN^NIT$tEnz%Q;-P`4)p8UP;Y5zVPawe z_-_K-Z1OWx1VFz2xooBXwyALLaOkZWFa=2lPdv zy0yHF+7k|%nwpFYEQ5)64f6rXsl({vDs{V_UT)+wYA}Ee}^|)y#xY*L-SWj z(Gjq+vckg!jW<600QuwZ^XfL9z?zv|JD@KT)oV{Uh|kVox7!&XA7|u~e+uM&y8e+~ zDgS8tPoby?u-R;MbaVjl{^}qs)I6)M_no4&Y;JBw(=-5juDi+mn*<1rp8_B(m!{l) zuOzpMSXlz}(y%vMkec)6LZxA6I95gvL)H%ZI@7Clnp0!^6YKvW&~+0>Ey! z1K@JG7#$tOkSHoD zYG`P%x3vxp4c)zacXV|0`zIS*ogH;_boPZZw3ssd?=Xyui>t1#wzs#hsHkA?I_3^E zhp{BcFPOpM*^M+HXNsqbV~9oX+rDVNW&<9U;MokvUVqs2KQ=okWM$Vv_6+w^|K4Og zp7O8e!wjywxBk);nRq{D{_@FJ}<~C8G?|B#2 lonB=f`z4ey?^XOWPLT&}C+GBZy#cz9!PC{xWt~$(69B#&Z@2&e diff --git a/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/icon.png b/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/icon.png deleted file mode 100644 index bae64850e3dd7f072572557ea0ed644459fd19ee..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 278 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyW&u7St_Kbr;NjtslarH>kSHoD zYG`P%x3vxp4Rv*P)X~w2j*i|J%FtrU@V~<_E-tRRy4v2}zM`UnyT|tr&;-VkAirP+ zhi5m^fSf*07sn8b-nSES`Ir=WTsFqu;Cq_<{onMh4~`v)_`>i@=-K%_K2lCUJ|B8J z+d;WvlgNzi89Do$8iVhs8&8jDi zT>@L;c5ole3)srb{he*Lz?7zsN2F&kEiC1ZH&9+I>+b&T_eas?TlCa*f30MYe-;0X Z@6kin)vw;(Wdpj5!PC{xWt~$(698cvY1aS% diff --git a/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/inhand-left.png deleted file mode 100644 index 15f837f58a95855d942217d68b4b6e35a63120cf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1037 zcmV+o1oHcdP)J{I1-kMFF1ne*`7NK<8Va;$Yw~Q@Op-2th0VN9xByHjp(!HN#$$9qs@_qmJ zz2{HQ27y2z5C{YUfj}S-2n7E(JoOq#CX+6>Q9F@Hq^|z2xZ?(V`pKkI`g>-2$|)SR z*xRfBmp533AKtpn`*J{HW_rrmEei^1p80cyi@p@cJ6ej@ zR&sf6t%r~U61HW!h%7e;?{bIp`jt>=H|HQ zOVRaoiysb!-ELUDvsHH;rl8RTsg}KZ`qEU0t-cdFkxzMAvn~ z;V{{3mdz&{tgWr_@%Y4!{s*QGDB$<|Id}d7V`F1vvsuF7Fz3!+s5zoo>79ekC|FJ>?YUawrrcl}Z612c&1N0}B01*{grO8PL#D zcw%D0iO1u0|3@Vb+!QFK(ZRbxLj`CCgaG^PfIuJ+2m}IwKp+qZ1OmZ}=D_dSRoZlo z#bQn(k*F9$wM|pkUyZ#8zPNGI0qB;F)orV(1Skf6)L+*2;q_}ZWpmT)2}Yw)rzd!V zp5O_*UN6C5kooy}PWA-pKI$(D@w_xm2FL+v$2SK_%SKgIG)-f4bQD;v$!=3Df*aZg z&Uh^hGUmt(m&pfy7rVs!?RaN2|o{n}eu>CQHs;Xo%8G^we z-+p(yrYFIH7a$gkIRgU&!#v5-?);hA|Ns2i z{hDtO2m}IwKp+qZ1OkCTaM+L%i9|yaghHVgqDZ|os((xA;`7fwwJHTulM`0y*U%FV zh-c~lReZea-ch<3IH8sY8n-hjUQfAGI2^Xr69b&Ta8cS@wHv2o@X)FEYue6VxG43# ze!Qx`qw=O?d?*w`Rn>C4VHhM538p3|EIT`4YI4HzcomApB1=n4sH%!#7|2IoqqViQ zEU%=>0i~5sBof@clP%q+C`0-TcTc|L00N%a92a4BY+bAf7`SR~8oO7q>X>TpdRvs0(z8XOBddOwX zs&NiBG18MU|6Z$oz(`NVoGyBlT8VuyvpE2Meq)%q$N#T*o2Ly7qa4YVI5tl(?HyA1 z?Ir+=Z-$k3e)-x2m@W<}W;TZ`%X@1@gS_`t=lHKFuCE3d92{hRex7sg6kSg@xaA1e z^smYTD!%}4z3nF$45I5gckiSzvpKf<64)sZ`0|UW)z#I7^A#5z9UbVpPB0jxP$;mz z_Jn*s&&QvPR_Wiec|uv1Ieq3V!^6WA3I&3}Ag9lqwf)Ki9O>*}#k>#J2D+}Jsw%p! zgSEkmd7mSl9W`TWGQp|I39Gc10)YUjR0;sa>)A37uu}v;wf>bnOaEL325xt~0^0@wino zJef?=+uMuF<)W|m7=69R2#3Q>^RJS+Bf#x;lT0SjG>w^=nX0Pm<_fHx*|h^ot1rtk znx^s7+%3`{x!2&Is(#WToj+g-jM>Az|5u=7Ptz3dpkm#^ct5+#g%Y z{C+>_bedQ!CcU(o;C9K*^Q6djVNZ&q&0;)=>acLYp?AQ)nICbL+P?2`00000NkvXX Hu0mjfcH#Uz diff --git a/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/meta.json deleted file mode 100644 index ae541b4e9e..0000000000 --- a/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/meta.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "visorlit" - }, - { - "name": "headlight" - }, - { - "name": "equipped-HELMET", - "directions": 4 - }, - { - "name": "visorlit-equipped-HELMET", - "directions": 4 - }, - { - "name": "headlight-equipped-HELMET", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "visorlit-inhand-left", - "directions": 4 - }, - { - "name": "visorlit-inhand-right", - "directions": 4 - }, - { - "name": "headlight-inhand-left", - "directions": 4 - }, - { - "name": "headlight-inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/visorlit-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/visorlit-equipped-HELMET.png deleted file mode 100644 index 8f32c13c20c6e58a132c633cc9ac50403161ec24..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1284 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEU^(sS;uumf=k2U`pWtwr~2*}We4FNXO?+RTgy?Z9rSVb+kq`X|1 zt98vb7bQm>vBj6vdSZ8FXxZ5xO%iMf&~Q zg^JN?H}o2>q%iIGSDbwIW3WHh4TGCyKOR{9sO3tYt~YDyiKd`g%j@SqoqUV)Th*#H z+ip5d%$F~F@LluCCdq|6w()A*efn>&=D(UPTld!IcYR#6X=|eN$&_M-KQ$ZrrM1t$ ztC$??0Qr`~q;c;2t(14<>$AZLN;JzA#@qh!eLy z++>Qu?((a~vnv^%1@jzM5aCLcV4LAT^Q=w6_jOedXE;eRyp9a;`r6mWr>3UX@RjvL z=v(G_;aN}n^m7ilxyYIS4~;w3aGmj?>4Vb4h7Q{pZd$ON5L1vo&Tx|{<*|f9bVH5| za|-u_-sFZH#!ZDh6LcNS`WQE{o;U_pJSEjZMQCD?%0HzzxBj<_H};yCn;RQRZDq49 z|JF05zRg=|))d>+;{yM}D^g6d-mSUi= zXd&0n-tc4jQQg1$_J5Vm`?|Yp%Ar;NHdcPQ%N))3-2T_I-dW%6->@jm^)oi#pRik` z#c08{ZQtalKYS6NykW=dROhbEKVDDs{=3%unXXmrhIN4|+$~qOZQC~K{QBkpEBDUz z&F^Gz-oJX$t9Igfa!(HVX0hGhw{zvW^Y=5#SH3dt{hoelTkkuCD~p+5=l8Byi3 ztor&YG$eHC+O@m~qWEv!y0xSBx7opj2_7m*eEj_RudM_+UCtyJcq|M^NJwZ{xl)sX ztCh*UPv+p`j|*P!`Y><7n%V;~@A{u_V{LYvbW-KE?N1?9;YlZ-6yKgb#rDwehFn{@ p^+)Ee{~~ejHzKAdfyP@Lt7PUfhkpcP~#qq zv9G0&llLd2jSlI-?xBkpOL1rfwQ5BuaotKJjv>nSV6?R>%SxnGY^C#oV0UNc>Ag4a z%{*oo1OkCTAP@)y0)apv5d7b8G%FyPOxmDElGUcFswoczxpMVd-H59gJQf+RdUoaNHAny1 zb9Si=*q8#ErkRC&4r4V27$lQP>N#P4Zq}51e#+%C0J1D&7zO|x9UT<% zIV7JSMNupn&8C1Y5umE7IX*s4W#*H~BzNzmtoB^KfZr!!tfuSA+I;u`m%9t6(`gyM zv$MnY<40DXSS)77FY5sgt-9FiuX0a?)H~dEiz^~^g zxc%tg8Sj$1z%Z=;uoGK$frW(yhddM{moKnb9^>XZ++2qlr)pg~zuH-Hop6ghC;T#UeXTw%OX+;)|)+zVXMV4yfSudbxP%G7}RM6pKYdp%51@UB>J6 z)*XBDL^m6``(Qpp*L7rBM%Q&PpRtj<&&dIal@4{e$n{=zRD6Q2?^pEDs)TR;9wLvk3n6Th*h>Ut|M$N&&K}w|(Q&Ur{t*rr2DwP-+8NuW6plMpeH9=b}f)yvE zQmF&`^h&2|&i*U02qqE<$MclEjnFoQP%DgwHgZ6#5DqwM1&*430O;t12RMEr5dZ)H M07*qoM6N<$f)y0&c>n+a diff --git a/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/visorlit-inhand-right.png b/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/visorlit-inhand-right.png deleted file mode 100644 index d37b67f757de1bd38635fb0586f9fc90eeb2c97d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1045 zcmV+w1nT>VP)V^e7iol0Z9M>c@aho3~W_zIC+L)hU2Uv&sq?Kl8-p;)D=I!j$ z%z{855C{YUfj}S-2n2%ThAAG8*VKW}=X)!PR72MmQpN z(*OHdwCvtoEV%k){XumuiNh}GLcw5Allxp;x_rfSuxi&%(O|ECprY>5=No+@^CGxf@e>cu~?gFYHC7NRRC63S9$gFg)TER zG^B;YVH1=@KypsSVV6i}vi#~#0wu<};FEjcuuF!Gf?}92{=UTL))~558uhlNzY6^D zvLAk4NU?vP5QkR*vzD#e+FJDgir zbeUrK!lV!Uvfsyin@4gLd?d|O}y=S4dwG~BC@OV7r z^LbWZzap2*@#U?dGW{F2c4)KNIDg?HgM)+Q^LacT59cpj#AdS{yfrm)qOFys^b^oF zP!t7OmQfT1v<;ThPdL%mTJcOpCO9@aq7_5EzrUZEnHgYn0o-o!Gg1UVx&Ec>r2np| zaOvk_CyeHR{ZjD?l(Luc?*h9z;5Z;0aMTJ21OkCTAP@)y0)apv5F9pp?)mMu=@<%y zv`8dk=uOkTFz+q0Go78C3`b-7dHap)*XnK)wQ2_pM`N0~v4M`0wz4{?FGp0hCpa99 zY0p=3tQR&|e)^2=?rtm=3q9SZ=;=O1Fc_?xze=i(fVH(Xp0DHpn4Fv}J9XW90&8UU z?SSEEOzSvlBegJ3OG^s?i7%|c-(_+?O@5|X0zVr5Rj4WgtX3<2zaM~4{~3dowzt*w zp;MKXy}iBUa+~3QbJ9iG-y}fz!C3$zf!dTi4EDVU-nf3v^z$$G09agHBoGL2^S+DQ z^ImSxdkH@{OCV4Omj6f9aXK|MMIaEs>2w0<>w(khWO{lUx7$r96w-KuWa}uYIujg@ z#kSHoD zYG`P%x3vxp4b{=nadmc#j*i|J%FtrU@V~<_E-tRRy4v2}zM`Tc?AH%Rpb3m6L4Lsu z4$p3+0XdUAT^vI!df!gC$k(jE;~J@5;qCb4e|=f&OjT~x-wkh7zCE2M)2sOB=Yx;F z3+gI1h|JiYk+aXKG58LJW b>wjj^Px76by90Bd}Jn1+=Qjf9G%ViSus(V33TqY~0d zaQP>xX-MK^%s5GHI&EjHZ8MlnCNar$lIdjPGqiC;BM^cb5Mf4nI6js|S6md7=K_2C z$Ju3fG2p!mglWrnX6NkroqK-Y-|x5Qocp`y+=XdOV;a+##x$lejcNRULNi)J=MI}s zy~r%dWEF@?xtTu|*fdJoCJH+~l4RCx6P3N&Fh+XX>aK%#+vaC{`NKC$qw1ZZguKWs z$!SqQS{g>95eCexKk$_N=A0wEacLzBfV{jsVaypbMP^B!$RHG%C3$rm%t%kiXfzVh zxsAUZ^|b%yC(x0fPhDLdgJr1VzheO0&YM;OCX)~zg1OFk0OlsfljeZn;9vkUVm$pO zA_#8&^o4-YNN8v%gHFhQ$aBr06GB5n$;`~8>tA4VDCgHIAvdjr$`*M3*=NYf&f@t? z8@bTZN?kKtXlbQ-{zl%}xr3g+rBl@=f)Jr|O^pd~-n0@zb;3zEt`vJd-U!vH;~zCb zuPjCe_`~DE`4?`)i=XfnT@9w?B}4_)Dr`Nwn`2@J5$IOo8w0ko$lyzxnLw zevX+3EPMB1S#}N)8WK!*Z$B$E4Lq8V3c&h@>Zxpj%tYApt&n|Xt*1;*A!OD}y1IMN zXahLD>1)651m66Q4xJ`K2OE}(0K^sEe*HgB3WvW6SnR_;t~?+#B$%k^yNCj?HUO|R zsh&OGrV^VV%B4y5oNN|BFeE0pdS0Wuw_mN#qw;fA)UAEclmk~9J=b(-AlU#tgQ6Z4 zeV1Z>MQcF2T`0Rp1F;G9*lnVO5p^qATC9Z3nyJc3CHw&Ax*-#I>^^9?>1kh~7xl~i z5FO~bUJ1s`1CDR{TGQRzKRo=?qJ+FBT$G=k@U5ps!3s?S?mpug{v-L_`n}P1$+zxq zSHnMM0Kzv*G&D45ycOw(Ah=WH0}iJsgFA)Xodq7>^tGm;p<&!vpf`V4KS(nwu^dgyQsV66AAYNS@>p&%rvk$;ndjy z_MeBpAA^_>QSLu40N7W=S>xdPI^GrP6>q z!EM9VT@r7s7PmWNhsgLgKV#GE_(+nCkq{XR8xrBL4XC~SX?8RyS_C_H*eEhfbpp0A%2A#tBl6o-}+FS`yTQ?9X~7doP~h1 zo>Vx>OFo<&RX~nnYIVqNhQVeJf3}xAt{IHLl?snsDHI1FHKOc+5!p)mEX>0SWcuSTnL9f?iFc>&;$j{HGva*uC zzCJ7#3$O%>#e%_LASft^%*;%7@7@h8QLI3K77a#k?Y`I4w!%HLq0%NkFu+7%BtL+?*Y}#L zcEN9R4cZf}%J~)V3ja4_tSO)<6Z~JsbO5H>fT_lG0H)f2sm62wrrLn1#&iIt+JLEs zUjZmGOLF}fL^ydF!iJJEVUs^WP_-lEjr~^z z+0kNnnLWeus4@DC7w-MX`}qcdqd@Zg!j@b=bt(@)Rskd@Qx_aerpW|06W^7Z$t#5C zLW_BM(Ix(Tb`JNQ_${mbH0Dk?ogK`EHNBi{l6n6d_}#{s@)lJx9deHmQN) z4Uz5dNpg$?ZC>IIubK9%qSx4Yu#vf~d)PXG`+?s0zWu+_MG)b|=C<+m=auaVDqaMg zVM6hKX9~6Pt2i?^m+GL!fEbF`KK+v7Sg{s7xGQ_Y7s3a3Wy>d*!TdtF{L@tC7YgUA zgBEjUZZ5U)tJv>Mq0J_2RSLxckV0VJ&_bW1Z*dL}<>yif)7MjeE)`u+Fmnuv$}Lcc zIfg`ZLBT#;-ZlV)%$mu*p@m2x%Jur43OgK*;dA%^eLWd*aABw(M_&(@EG_=39Tk@> zEjapmxG+>d%n9OM0EfddR@X71coDR@&f>ay`oQJ56D^O$!kT3oZdqhfoDg?+7+aq> zHsNc)3DYsn!LlSd{KhRZ;vmeRVMe>m$xiL?57E`r=VPl9C>{Y-fy-GN(a73}M!I_X z=r}NZ{_FBW`D)uW*6AupaYD=jNC|>BtDwoQBQSjpA7m9z${oPlhJl(dNse~# zMg}zWLEAZK(86BFa$;ldy3K|O+ZO*It5}oKSHWJ#a&%G9al_-hK1e(1&bw{U2We@t z>v*$D*r1CN&S&&hsJ20UA`}1%+A8?m^7r)iPJ>JUd@f#G zW5GZL%vP^UbpVzg7x}pR=5r0O;QuP@FP^^Wz;JP-9l#Un^r#L%X+Z%A2?<0;M-R*D z>gpyf{~rxUO(yZ*1sCjgJ65YzwH8a8gVkzPtw;6Ys5>7YIrNUDi~8FeC+9i9jV+&uXZ`G&@0*I^oq>^k#{HKW zZAPx&g-Jv~R9J=WmQhSoXB5YOw@!>LDRC|CCbV}#BvBT+y9FXHff!geA7%{M9(2nZ zT$XZu(8&X`7x%CSWAuS+FJ$*Y5{;1uH{$eRTSh~qgR&)BX);V;Oj|Iuf)Pd~6z$!^ zXIn72?Pc5BILXb)`G5C2=l^}@-Ydw!o45(QhZy7+J$dNUt0H8n+5RTY26XZRo; z89v+Qc%EcGLRx=7Sy_(N!MGH>1iWbcD3S23W zEcV=291;Hen_>?1aq~I_hj7m~`wS!Vj8cc4)Y39d(jDIQ)B@1DH_C7v-tt2Kh`@fF zj&j4;g=6a$7E@1S%6F@p^E% z%PDo(i=_rE&cNL4LsCo2?2zCUPn6k&@bE%B4YBw%j;&iP6^9}>FxoySrIwa+*RQ$+ z{-jL!zF*hIstcN=J7o8awhtB+qJjjjro_Cd+* zb{DG+SZKkw-}Ormk`IlV=ke1;2qz&jC*rJcK;Y}Of&{W(#Ig=qItGRUECcTVE?|Fm zLi(XYHWa{#5Gfb%$^lw zVqetSAahnB)IB0f4r)He#_D3kwS* zllh6OtEPx%w@E}nRCt{2+CfN@VI0Tt? z@7<4Q&-?H`F9;!o5JCtcgb+dqA%xIx-XCS&A0<$N3I>C!tgK80ucNfw#Icr(n)gSO zR&UfEGn=({x|Ame8tQKYFgOmYC$7Si5^m%|U5iU4vwlZunx^9Mxat7a`_HEXl%{Da z5D0Ae1GZXklxZU%y|)GKY~1eJN(&Q@YLZrO)IPHs)mKGrMQ!Jl-Rq#59{@PBhH$4s z>wB1poF%**0Y;NjZNBW)0!Y8sbGigqNVu4&liNpQ=CDl38zrsR4|R zj@keY%tKor{EjCkGGJ2|ztwspObuY|Hq|$iIBwFSHULk~_S73;+8nUP*VIio9LDE% z!#Hp`z#vetygl`LnI6Evz4PRy1ABopQ4V(35LS43-U51ZVfaV|Jt@b@ z)V~G-EEvG6is!bJl_4&8zu|Mj_vtAXe#M9`8tZ4d003IkE2(>_IGGQ3)4t+xIA}1q zacao`o|ZP-#%A}^_!+u>Lh(w_a4$>V1_2J0S8>$i0U#6#8SZ1r0P3H))ae0m0}j9r v;BPe4%aQ@)XTw}J%mK5D5SfH>gT4L$RuEw)el~V`00000NkvXXu0mjf*kx90 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/evaprisoner.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/evaprisoner.rsi/inhand-right.png deleted file mode 100644 index 073849abe8beb5ac54642d4c94443d4dd95d1946..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 941 zcmV;e15*5nP)Px&XGugsRCt{2+FwjtWf;ftZ*gqmmgrbVx#%iluqz4y!_+lsOl9-NkaWgqwm@VT zX9h0}7t6xMmIg1!LgvL`YqF5cn25=&RxXSJdeIE${6? zh|msG{;bvKlQiwy^Y-NTKBwNAl6}^*P;S}fO5H9 zD$s<|9LcukK*c(Y#~pK3ngiwc`&G0B<*7nNTas^2z_M32C{5FpuInkQm@RZ&SDL1+7{jCTFa84x2fX0%rrmjC+>8JG1|?r7;m&3n zYhWV9wsiRy3($JhFzvhew%T=IH^=w`0E=}5TLEDF+YB3h?kUH#nJWpVkZ$KxNs6W?ol;K)`gy;-j(C;z z|Icf$MkP)qAD(#kkXz}sxm$?5)w`r{q#Zm7?#x5{`Gb7FzjO89WT}i+dfHv6Nduw} zj{CI3&84q>S-)zON=BjWcDs7kwg+JGS%ULe_~FOioGU_RQvjHry2;I{X$~E@%C`7O zP7WSYEROygFTGgK{-}>PO5yldaNXtx(l0@0vy6}0hcBSE=7TY_7615rP9FU=>0a^# z*5l5y78#!d)cf$-XZieg5Sm}k-6CXk4gly6!nNCR%-g}d9T;B6RGa8N0!K;awG&88 P00000NkvXXu0mjfORd61 diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/ancientvoidsuit.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Suits/ancient_voidsuit.rsi/equipped-OUTERCLOTHING.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/Suits/ancientvoidsuit.rsi/equipped-OUTERCLOTHING.png rename to Resources/Textures/Clothing/OuterClothing/Suits/ancient_voidsuit.rsi/equipped-OUTERCLOTHING.png diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/ancientvoidsuit.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Suits/ancient_voidsuit.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/Suits/ancientvoidsuit.rsi/icon.png rename to Resources/Textures/Clothing/OuterClothing/Suits/ancient_voidsuit.rsi/icon.png diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/ancientvoidsuit.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Suits/ancient_voidsuit.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/Suits/ancientvoidsuit.rsi/inhand-left.png rename to Resources/Textures/Clothing/OuterClothing/Suits/ancient_voidsuit.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/ancientvoidsuit.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Suits/ancient_voidsuit.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/Suits/ancientvoidsuit.rsi/inhand-right.png rename to Resources/Textures/Clothing/OuterClothing/Suits/ancient_voidsuit.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/ancientvoidsuit.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/ancient_voidsuit.rsi/meta.json similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/Suits/ancientvoidsuit.rsi/meta.json rename to Resources/Textures/Clothing/OuterClothing/Suits/ancient_voidsuit.rsi/meta.json diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/emergency.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Suits/emergency.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index 29a20e4a41fef9ec3387729aba18d1113b7a3a71..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2661 zcmV-r3YztaP)fErYkM2jcsGv-DHbm%XS-UtsTy{2AtCi%Q zt^E0mK>4~y;YwK<&CSgWA3+oUEd@}5U;7xacCE<#3^Ke^0mw+7ip>M@@$mrUrUagg zga`_M_I-fWiqU9f*b8NOfjYxpFdB{I=jYS=4{&(Y^WSs~2oAo!9iI91YKrC;^327R zw6$NN`5d&hU*gogD=FKznX>J_bgE2vUL30D7Ic2E%C3#;+Ug zYjFD>@$es)iQs>C0Cp~c=5wPPv;J7rdpb*`FI*MZ&1KqK!btvu-+=WV(GrxP`-dPt zR^0b`ps`hq2PsDN{G+yjEAz^kzGfF}_3~b9IXRO>ep45Gnpa6vmk2mG4UjV#nr4@i zyR(t$Yj$yEUb)uTZ^++05Gd>Qh+lkc;9f!ZfHr>3uffksj?sO5FOJ2P05}#`hNSN_ z+u4wWlD*9NGnfp>%<-T~PcJ_57m>05I>(M`YQ19b-Z~eFN8cSa*gNQvvHI^iZ02 zn)-IgPlxK`bJ#I3k=b2!9Fem~m@uB+zJ7H27*4D?9QK4=4tUH79%qGupP3J0{oHz40>(+ zx10*UQ&_26^!F#^)LEr`4(z0w1}FaazH;4}Qpa{mF;N|EtT*Sszm&Z`{+e%rZy_ZC zUjNd^KSS`(>DI=7)3-n{9^Ed<%4Eo95`n)`?$9aIRYiyvQvs~_|~s>=ytp-$-y(kl2h9FHBE$8p0J{ZVX z3)KrEmghbOyBz=-01m{MljCgd>XV0EJK#pp=ss_Q= zJ{0rvG$SM#z@vjCJrou>bSLU0*);$L8QdP|=oQcW{#TJ(5mNYk{x#srAA1JTBq0MT|J+87fc z+73h;VF^%CCCNu4G}n&=j_#M_a5rK#3s6xd$(eC*rbiHOe@hVG?oO~)9{{$$CH{yr zJ&+j}o)4M?P=e33!G9STauh2fitN3m7t#XWW`2a z`?!^iOVwK>YsNS0Te2Us>w$I?{rqWAmL+dmlMs~V^lpdq$^CCRNUNp7XLe~`X`YiyhN4U39( zJkd}>-j!;4CMEKbZh_|D)Z!!E0(vGTl6R$=CmKpvRIFp$#Bb;uxJGaPpx?iS*aFoy zH7$!jb@W;Jva^#CLmgRONSO&6&J>V4SjSnHf!ORtcVuUHqz^-lpO9(x&=6O^pR($3 zo`*Af*yqu{HLrPJVB20vZip-JA4|!wS98{7ASq7IU)Ef>qrofq&70F@_n?w}~kW zp8~7Z??c){E;>3oG~3ZG05D_546?Jc86F;H-@bk5^>=?|O|RGEa=9oeDPi2WaWpnI z-X#H!Rxz%pido&_ocf$(*j6{hriNWIz)LId%y)o-P4A0ueaQ@4vSQ)zHUOHB4M8(7 z>jh2r!fF8>-SF3AL(KM_$5~edi4$UZ^YbA#y)VgkN`y`COR_Z`))d8Zbzq3o7sNJr z%O&AcI0#FCvmMZ{gR|d*IRWb00ER#xdUik3==FeC50zg8_WxbJSzj2fAAtV?OIl$f T8A`*v00000NkvXXu0mjfVqoZY4cZ|)rw_R=q04!_?y z=lA{I^ZT9Okv1;pd6uYqrtJFy_66(<*cSjiZ*}2N+@sMQ5ymfZMk9I2%G{m^7>au| zRR&a*&dyHQiW9otr+s`N$wzt#&SVJKkaD~|^7*?WTg%yk%h7Zx(c!8%_N>rNjO_MiWVak$@DgyAh% z?~2eGy#kjiOx8#6JB2@8fFF;=NEZa*P8-1Qgmg!Qz}RhCqgPn(iWn=dCBO(bPW;N> zvtN@x9s?kMJhsbzS{SC_(+QD+PeLLElXKO%B{@h(Aw@VK{JO0p91!F8x6SLIW)XIM z@rI^V9@E@pqqO;m9_bECa*)Bs4MN8jnaRQHK1j?S=JMu?bQDtD)DF_r_yP}0|02~r z$9#0UW)YgEpt;G0>~Ny^yZ{U~ZcywyPh$2kAjpe-=NW9=06_71ksVH&n`~yGtqA}q ztUVx`TLHlBU1WTG9JhDzf9-5;g~HkcOXQ{k=A+Y6Y4g$c@vE}%yItZ+O#QaoR%Pgs z?x626JAP9E0Izl&+7;+RCde=e7BWz-h`umPf(x18b{CwFPD>7l!z?slp%qVb$E0_@ zJ*l}5h4>j5Bf;D%+xK1{$6P5!2qBZOM69FcE!c@SM?9L|j8s_=k4Ey6-mY~aOL7pm z%gID{Y;PW;od^evTd^vO&Nw-jV)T9M&#~oBc>1+!GfEdgbw43?SO0!;uIjf6%O{|G z_yc6Kf)r2`1v19|Jr@Ab-``I*o26JRvbwsu?f3ir*zI-{MIo6?K21n#MfmxYco)3Q zU~ho31ok@Uek(7{r##x)CNyYJEW^q}vFGdu*6P5t2CiQ7Xcv3xId>F}IN^Rt_;2RK z_|si6-Y<#yb4TIg+x1+%CPbUTGzAqPc5AD;p$_gAcCSg_gVvW|CNDnN!Ycj)=muT% Te@COJ00000NkvXXu0mjf>)yjY diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/emergency.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Suits/emergency.rsi/inhand-left.png deleted file mode 100644 index 47564f71851cde2acc1c058402406f1370664133..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 835 zcmV-J1HAl+P)M)fT!KkCg zDBi4CmdZo07?r(XQd=#iVzSw)wNHm>4|T}dX|xvppUcBD!|&N=AO1XZcpeZ!2qA%hM{7Os8}OP_oHI5n9}_yyLr~wF2(Ul+%(p06Q{ksfk__<>@7*;K~!KJ?0f3KwqRaXXs!*J*>o{k#S1|OJj?B#Ri>Lv)FEr#@W zNQ_$j_V;X zmuYBy?(DzJ$-&56)BUJd+8!?KgYsn%sdj#MATJj{^Odlq`ZxgQCfz!D+N(Pn%k_hi z`7oWH1mNO*DD|{56oXQSW94N96c(3IzquHIXJxhY7Hz|~+Syonxd2;METp^3q;3^_ z{P3RCWSZoce?6;tR=2)Tg+d|Ky&n|{g&ZHB=j~?@;6fE@A_YsmaK+)tab9kMSsPAT z_XgteIP|st+sVwg=ItnTwLqz>1%GvkGA}D2Qh};i2iNY+F!Gn1-w)`xDDTMc^z#4! N002ovPDHLkV1i3&lwJS; diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/emergency.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Suits/emergency.rsi/inhand-right.png deleted file mode 100644 index 091f9c2e2207593af85da87c9ace4b2809c001a7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 847 zcmV-V1F-ywP)Xzd>aIaVTJ_*TOsy5F7Hc7D!Gi~{B01;eVQjq!iXwuI zj8eqyP=d=rkyN2B)S?k%($p#yHPJi|(-GSyC_@@E`2SsoH%Z`oGcOCgfDl3mA%qY@ z2qAfrYL2t@7mt2% z+b($c;2vkv`v|{)A8Yo}+WM43Zu9Z{Ov4_l-{bM{Jq-su@I7sgv-OX-0M$oy4n=)5 z7oQ{U@~~_n#9bcrl?Q3ld{iIN^EVqCtp2VBjiDq=DS@FRbTw#M`zQQ9czvpsrd4qE zJ`7Ah4+~-7-g(X@plRJ{jP|_E#TKhS29%YW=d5E>Ds%sc6>ue0i9fO#fR>h)5l4Sy zGsd^d@hQ&{tN-OExLSRNu5R-f9?0H5Vg>Z{^b`SVhX&WK8q9nK?>-vTPKT~H5$o}S zW%ZX0_wT_x)|SEREd9l!PiUIPZI_qYSde5IYGXleySxQId5hIw)f*%{09Cy<`a{hq zeS`Ulsc$g94#%x{9P}MVb<~*69W|)F!`b`CtN?)UY8@JfKQSA1bL=3URXWjnvpHI? z(^-|hf6TJ*uSLx&gGm#iv6G?;+fZM>L1YMyKN$P`LgQbH+CCq8V^DX8qK+C=xeJU} znfoV1r(Xymgb+dqA%qY@2q6kn zU^(jACTDG!<@)+lInK%-TRT00 z8dNL_gTwbd;r4R5BUtdeMw!@(uBfO`bLY$k;2`e-XlDjDZr*a-MX>i4022Li;{6Hg zwme~Cs@sv1hYWjze`D#A#jGC;vauYFU4mD0yg)F=Y58IMuI*ohDlLKN=TeNmq$BS> z*jxbs<$L{TnnpMrhPJj`HaWw^-6(akMESR(T30ytcYy5`a3>7UKcvv6f;JU+l*6h# Z`Uyg=Gm<~ujg|la002ovPDHLkV1iypiq`-D diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000000000000000000000000000000000..48787f238c4b5ac456e0073916db538cc6abf7fe GIT binary patch literal 920 zcmV;J184k+P)Px#1ZP1_K>z@;j|==^1poj5MNmvsMVXkG+1S{%v$M?1%zAoy<>locJzy|ch8ka) zAbG_!G&Dj&LRnc^vL7EGAhIYZC^9fGH8L?FA0HOGi5&X|NqoI(TG7|E_U~_r%!Fm39mt^$*}&TUVs-s zWB~(hAJl^mJQC5!m2ZAH=a@V(K6Rv4+dlzQ-~pa<1BXe+tU7)HOd)uPktBr%q30g} z7XporN4#(h;kt^hUjQEdh%UaUHNQxq^R0xrgu#TR3 zK8^n@^G`s;UfHi-#4d?CdaCCez=Q;`)sf`X1hoAESYwo1g&Q_^+!YE zUb=@0fJbh)MHmSmAywJ50GW^C+j*ivnD70CU;tm zDQ|#p9jf%b0dhiE2aw@pk0!zW=uo8}hu*23PZB1CpzY|4sLZO9tKMKy{C(0o-j4RMI2V|Mm(Xr9Cxz#3Gnm4`5USw%R{* u2}yd0OBY)K_R`;I4piDheCbbUUH>$^Tv&;s;aGBIO(tghbyay^p>~3{@d>kH|agOZ8QJxE!Q1+=P|0Zee3?GEO0{H z>P~vY%vL4NYcDOCJyjp{SavLX8Qr)S0HJc%)4s*(4x18b}{t#LR~>DJ=W67+&g zrFZ7bZFiSQr%QSAHLzA@ZuZ@^Q0}9EcEjsHlO+aks#NdpWmtOU6VnEL@dZ;)`IPTI zeON9dRQH`NqcKxu%X|mt0HcsqSxqg6cQUob_5R|C-Sp6gnUnKRdt?>6$>zGy7>n++ zpN${5GfULA={X#n@%aiLi(nx)gVX%waSlB<-#T|iY3~-bF{=+byq{Ur@b0&7GExUV p|NQfc?dSJJd)xYdXk44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`1E2l#}z%G)MXRaF^8v~AtI`RUWAXU?3Fil3=ad32M!yu89DCnu-K$Vi}C z4bv%SffR2^kYDhBB*0+%La7ZX!CBxDSRCmr$q3vGM-z9}j+&fAR8| z$(tF&>B%Og%CU0Ftticv@=Kg&_Lz7HcAxmN8=Uo?qCmBzcT*Rum z&O0uw%Bv{N$a#%$h*jZSzXLPR2zY;}c=Ehhs6frwg>&2VIS;maf)q?ykh?K#pWS=; znLYx#3xti0>BmU)YVZ~{&n5^o+j!F&wZ`U3k<|?SnSljpX zpwNZzH%7f3T~F__LS@J6$Y`G5w08^dl!2kzoZ1C|@S3{f*qGjn{?w*t!? vn{QFd>@c0(xge0GWv7iqQ}v(d3%8_ihiof1RXDx_7=jF*u6{1-oD!Mk44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`1E2l#}z%G)MXRaF^8v~AtI`RUWAXU?3Fil3=ad32M!yu89DCnu-K$Vi}C z4bv%SffR2^kYDhBB*0+%La7ZX!CBxDSE+kA%{ zI9zsb-*)Zq|M#M7W=jK4hxyjr>`dhJ@&Ay!?AKDZ1cnG^1BNy6j2~LGw>+C#-WB51 zCC+iSJH5;DdQ?##<6${deFjB!rj%8+3})u*nGWq)lDbUX+5eh$gTyq;v)p?nsy5v# zb6hyv>pknW+YGN~^~-=z>jT`JH@w?d-D1r1c(8Yy8=J#+OT~v*KQa7p`OkLc a7sKYPZH#o+1c=d#Wzp$P!ZDYX&+ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/meta.json new file mode 100644 index 0000000000..b2c50fc4c6 --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Sprites by Flareguy & cboyjet, heavily edited from space suit sprites found in https://github.com/tgstation/tgstation/commit/fb2d71495bfe81446159ef528534193d09dd8d34", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000000000000000000000000000000000..8b85a776354a9d4fe7a15a65bcc6db311c5ec2cd GIT binary patch literal 961 zcmV;y13vtTP)Px#1ZP1_K>z@;j|==^1poj5PEbr#MS6OA!BYU;X8^oQ0G2!e%*@RGegMo^0OjT7 z&RhT*Uzs3z#mr&=G&D3qLPA+tS+_|5nV6V_EC98$vobI+CnqOGL_`-C7und@0000; zPcK6N000_vQchF<|NsC0|NsC0|NsC0|NsC0|NsC0|NsC002Cqs+5i9m32;bRa{vGi z!vFvd!vV){sAK>D0@g`HK~z{r?Uvhit1t{ijqfQjltP>E|37-hMg|$|JhbOAlf_MA zHUeTKvHnqSz#9<70HTv=E4w;Xs7^+8iu=dDHd-rbrPA1=7+3T=_+9Dm04D^E!>>a#z}brz<1;;?h^nPkWM>X!NOGh z5=qRrrB481ywUQb|F~g64&Lk!Cu#GM#T`rG7l1zWH!QyaAS;Cd0VxLTDctF1kTxIL z-BX6l&wybVhaG_Z;RHy2Z~J>M`@+we45JY8Gko5#C?Upy;#tYZ1@00T;Qj%i4B~)z zK=G{XCjj>|U`0|g;1xL;6cVQBp_ab`!aDij{p7KpaCBD7X8;}Wg5rbfN7rRiPkmMeGc&6V1U7+rbsC`n~(LO z1E3(MRxA+3xE#I$$;ZY~4B7z-6CLM*<1p*41P9wC07&*A?11#S(|AaAn;8`m*Bl) zIdA}6BjU8Z&c&p7z7r-Ec#1#=AXb0W4OHJtcR@RggB0dDH=G z@Q(+|zbPsY(_{=f1dQRun*(&fUoEtXGlZ#tCdHvYIK%-UgjeTpgixG+0-$caI=?oe z1bpeT_+NA#Q2@jQ6_K;9Bg%t$em-9Vp3ix117c~fHwPq`sRv*x0jc&^ngdemA!3uj jQ~;>Cre>KL9reR?j2;YZH4qniY6j4eb?7x2)UqfA>4X1o2$!>W$&ma}-qOs~bqX z(*M=&Fyq916Wh<~4Xu%ylZ?`A&6#|Zgx}9{*&@t*KqR=!@SMvOp&T1)CJnBrGm()- z7eyNwQ_mH2XlRvo%PV*YExTPbTkwO&qpjK-ZWt-wV=M^WVz|ZNjEMEk%gh0%_S!I> zInBD_sT`B-8$)H2mgF8MV>a`>9hx}PJwl8iRcK<87;;Z!K6l;stGCvDoFfn+#`njxgN@xNAOFX=h literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..974a3be3a7f099e445b1e6b51ff5e1050c8b3b82 GIT binary patch literal 475 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`1E2l#}z&YUr0yC=ibr%%tEIWx_M;chy^zdD9Uy`@6+fKfd%UVOpxbt)Un9Jk#orZNF6Y3K$&(42d8!+C(aDlI@8&jWWqGzrG*#X`we3={Rk**_5uu#y z$nA~?Y*z}Xa%k$9e01`E83W{GH%WN+9A>#QnJcjAuj_wHUxWQ+U+RuY z)dlNs%w16Xps4GybQM_4l{G~F>Pi{XkkxgI>W}0+w+i-<+!*k wMC6*HG=r6mMAK{qg`S581#BMQZ;HBqZp-%5x{u4A00WW1)78&qol`;+0IT1=wEzGB literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..bd076ae1d7f7eb251327941f09ccc14ee75f5a11 GIT binary patch literal 449 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`1E2l#}z&YUr0yC=ibr%%tEIWx_M;chy^zdD9C60k|0|cPw@I00?cyzaoVen}&Gx0@rc?BvGO%xudBAXOJ%h(bzO|LveEeL6 zRd*Cj^n*@)j^S#Zb3rEXbJ&4B0tw43*b<6Ab1AI7y=m=~i(8iL<=wFM^sZi}E#eIZ ztv=SNr!t~0-P`8ak44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`291^9%xPP1V+7|d`tonenR!uP` zij0h`s;ZjCz%X;hjIEnDKYjZ2%$YMr1_tWt>aH#>;^N{rZ`=SHDSdtUX&@z4666>B z9~WQ{QDV3SRK;1~5n0T@z;_sg8IR|$NMT@LI_l}-7!u+BcG~Nr#RfdBz4|*0+uB;D zefX!p%iXPkr!1|kto~UE!{X$64Uq{~KK1`%uw$6Su)=Nm;=EHKsZzdKJzx4aZt{|R zyXD|Q7YC8)1qagq*@Z+!R|F*IHZE9`dn13z{@y8Np1G%lG7D;guij@g(5-Xg-nB6* zp22iJ`;LZfrygl} z_OY=1X@1elCF*eTKBG5B+dTc4LoKg=t*U33wAD|*ap5NYWA}CcRm5L<7|!s$Q0Dy} z{grRL4?O;Oq~-bJKt`LJ$NybmG?-w@ZPt+-Bo^QJo)Oyi&*^#9+FxyMy6I z6q^`>ih%mguKo$Lo@dSq{`>rd=Ss%~mc^1ASgg;#aLPJ5^;K3u)x5Pj_lnkWRa|-X z+PulNzCdI48mEfwb*e2ne>od=ea)-QbSrDR6`#!)aa~d}VTUvGe38<*6Pb^F{946d zvG>?Uz6F=!^7tYQg83DuFbBQWH(_6M#W`TI!W70G-_i{=x3%uqsb`25wEuKRS27xy P${9Re{an^LB{Ts5Nphw7 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3fbb026d65c9f2868cc08e7b2fd694984dc301a5 GIT binary patch literal 476 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyjKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCil=1AIbUr`a$Z3}(2S&TuAzVUIV%zdDBFKr<8+q~d2PR30@kG4b{Fb#iiw zjEtH)~%36>t`KL>4nJ z@ErzW#^d=bQh<(Q^>lFzvGBh->26Vr0#9qQP-5?ke^b8KUz1~c&5^fUeDAA5r5T?m z@^Czj|02&g>xTQhdv5#_1T@dDk(hOv@raJFsIOA51@n>3+8b62$ub0AP)gX!^_gP< z12?DE8H24;UobALh|Xga^mLe>W7^H2@iEEUVZlk!h{sZuW?Kxx&Rl2g(9G3z>t+-* z^cTD-JmK=T_i>GZiTAgMOtRgulvzVwwUVvKD`ZvhOXrh+L!t6{-`zZmd|1sk44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`1E2l#}zPP1Xy?#XaBo#9^{!?_p+srZ=+l}C>=FeoS}`1<-fIXOi}MgrBQ zbt--XQoJQWe!>5d0E6udr8b}hXMsm#F#`kNVGw3Kp1&dmXt{=`i(^QH``c+3^O_BK zT%C;+mj3zw{T$zP6Y<%Zp{8$-x`%f3T5hR5>HE9AMS;bO!)d{vRt4YO+~1Rbf4^a^ znQr>zqu;3;5j_e|gHmFqUDth?n7*;;Q)o)eHAjW1TLKLG6waRBb*9L5`S$?Bc?mPG zSMKE4(%xm*6!k=W{U`n@U4HKuCiOfB3|^Z(^=l)TlTiIg+Qz)3ieEID<+ob?<@2w9 zZf?{DRMLlH3?`aR>WU;w)~-He8K8m$HY^QFZO3I7N4TW_M~Cb zXHQ`l`422pcsW>F3l9hfm?;Q|9Ak7paI?W7K!QEvlZBn7w18iQ!oi6g77#|^qGB_J zIUgSUx#4Z5kW*2>V(!QgbNF!o;r$Qyv;O|aD_gv+;$D>4ZeTz%c)I$ztaD0e0swm2 B!p;By literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..666db5a89e15f39ecae41633a2240a6af13eeea0 GIT binary patch literal 443 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`1E2l#}zPP1Xy?#XaBo#9^{!?_p+srZ=+l}C>=FeoS}`1<-fIXOi}MgrBQ zbt--XQoJQWe!>5d0E6udr8b}hXMsm#F#`kNVGw3Kp1&dmXgQ0gi(^QH``c-E`I-$l zT364Fs=xQYlAT@3&}!w)Np}l21+X30zqWevHhs|sh7C*t4A<5(SnN{Y@@lH_*N|QN z>K#_Z$*ep-)6LReA!I$nr*4LsS<($>udZ$|>A7rip>v`7>$MGqGuk$aChT3IdO3W? zi?E#uFHTl5&hXYs)e1@Hv5nMcIK3)=gPugyrnsFaobnIs-}c=6wJ5_}owu=(`JbKV zi$LrRW9Vb}((lA{^2Xi?1-AE>$9XXP*I_PjYI@_psp0p81J$`}`5JCdXxLk_V%6V% zaiI;<`9ilc?|}%&K4@imv(!0s=I;u{#_zYJWbHeIh1N|g|EKm>dP8o$%EoPTO8;ND Q3JfF$Pgg&ebxsLQ08enU$^ZZW literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/evaprisoner.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/meta.json similarity index 63% rename from Resources/Textures/Clothing/OuterClothing/Hardsuits/evaprisoner.rsi/meta.json rename to Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/meta.json index 778deab349..e164425199 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/evaprisoner.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.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, edited by peptide, monkey derivative made by brainfood1183 (github) for ss14", + "copyright": "Sprites by Flareguy & cboyjet, heavily edited from space suit sprites found in https://github.com/tgstation/tgstation/commit/fb2d71495bfe81446159ef528534193d09dd8d34, monkey derivative made by brainfood1183 (github) for ss14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/syndicate.rsi/equipped-OUTERCLOTHING-monkey.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/equipped-OUTERCLOTHING-monkey.png similarity index 100% rename from Resources/Textures/Clothing/OuterClothing/Suits/syndicate.rsi/equipped-OUTERCLOTHING-monkey.png rename to Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/equipped-OUTERCLOTHING-monkey.png diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000000000000000000000000000000000..446f160a54681759ab6ed867c27cb80e4591da83 GIT binary patch literal 935 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O_~~1^9%xN=Qg(YHEgsg=J=DCNVQ_mE)Vnz);S|{Xl?8FI?o^8s7DNT_z?b zk*sVQ8X9VPALJ;^N{?PEOi^LU-r$0*#j{ zmudx4awS22!T<3AhBp#2aX^)v1s;*b3=DjSL74G){)!X^2BtNhE{-7)?r*1EoHbiP zpw*O7ku$ZlT)KJf`~S0SnK_!9#B=qFzj42s^RQeguPyJd`(DO;hEC>P_vC+xZF#SM z{q@&N?OQaa>A1A_c;Dv~R9?Dk-D^*aV;q|Exh*vugANBMb1W5kRwmnb#-BmaG;_kI zvgtO;TE7K8n={l{a;UP;=xUR=e`V_*7KQo)vRkH{m|X4ft@NdPLqL^4kj;^XexY`u zCjWTG`G?Lks6IJt!&VcJ!pdOJIAcBohiC4Dgo0%o6b^Q9)vfx#@gvdRZ8k&MpAFUw zHDQXMx3^~;&zw~L+49br<+GMuJoZD)x~`Q=HT1{SzdRkH0Zg$+eyFubH2joK*c#^1 ztm@PzRA#^bt$M@3-6Hekg$lNYf8sn)!)Fko@JHL@GDFB;mWbYu-Ok<_eV=FQbK5ij zxx%0^y&yQ^uR&Vj0rP*4B7*OxH_Tsh_1DH_584g88FlW-t32qn(o^cZ$M<9RbQNZu zP9YD&W33r1B6Um;{%JILE!nJm&~Hcaj)N9P_Kfq+r~m4+=)b7b<@|C-r)~58%hDg% zCj2vQsN1llOI&o~?%TE^472J^Bz*ewiG3x*0!F9ZEP7|IZ?~?CdTiRsc*5;6@CPjZyNzLkiCl`b!TvcHUcA?3 zn6+5!o#}RlS6k1VV~*hwEs}fi?CI62j(1yi{E{atJd@Be>5hN4z3g<8RWgSbgRz$b z>#ER3CsvJwJSLA@+uyHZm~cz|D&y+FbBW?XZ&G${xOr6Uu;tO&=Ik6MA142lc1*0F zaFkIYLHNQvd5&c>_A@6a*O~2~7Ra>E_2wUbt27aYFMF!e{hH27D~B+hIuFVdQ&MBb@00#<( AUH||9 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..8e6e1c37a5807875569edae704a403c03794ada8 GIT binary patch literal 476 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyjKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCikF1AIbUB_t#?H8qo%nZv@uGBY!`%JEHOU?}I~ejvc47cTN{4e$ECE)x@z zNLDrt4GlF_RU-ofR~MIx7zrmPCPjI9QzJv5Nx%Hm4ge|fk|4j}|5yRTGlyq!KqZ_7 z9+AZi419+{nDKc2iWH#WUr!gu5DWjSlP;Du8*sEu<=ddU_*Uk<|AF7zRaS3&d-LeJ zZ`B>_KU4&am&AXOZ%pjD{)6K?!$pI6c7Bf?LX>SCbi5+9E_K*C*ralP{&^^>Q?|i| zTa$aztmz%^8s~_I%$RZTqoBgvmKp0*43>s1VxICNE4(prvN(g2jpVisFCKB!{L1|% zf8hCS`GzN-H+?wzu4vnCz0+?5-!?=wEJ9x+$Y%ti`AFp87dYsCrF6y zZ+fdb;Y`vmn?+Y^_+3^pJe{+U`9tgSb)mcwv+sp|s4?2W^g{T7ueM%v%qpRLhJCS{ w&c2rV=f`?uTkcu5*8Rb+AFln!wd4!$mM*s@_o&Ybz<^-zboFyt=akR{08cik44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`1E2l#}zCNVQhNJwmz<9i^$q!%voZVm4=28Pa@to40e6)_ST8X86h20*p0 z#|!d-6mLn8U+{kS>O>_%)r2R7=#&*=dVZsTCU{j;usR){&w2Myk-L) zSLaJiOaJ`;{?2NK-gUFftFmr&_iJ^?7C%@Rly}o!g;i4^XadtieU{W$*Z0}&tn0t8 zxwUIypY_sLhaR&m-PZQ;cCEpJ<=Xw?TXrVOTz72X(p@{lAz)f*ocNuspI>Djb!jS{ zIsGcflI5bpoLc*KNHu=hlB9I-ui3|tk<&fqs*7x;IW@wrT%!po6!?wYNJI2(pMs%hk#Jk44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`1E2l#}zCNVQhNJwmz<9i^$q!%voZVm4=28Pa@to40e6)_ST8X86h20*p0 z#|!d-6mLn8U+{kS>O>_%)r2R2!t6$HM|;tmNR*}IEF;HznvD%e^`N| zb!}Oe{{R2q`2>P|to3hB+FNi*q4~1DoypC@=hKZE7z5Z07+!@lSWT0hRdM>I&6K0R zIh!h87TB>!tX&UeaVxkmu&hXCFzKGosP}Y+@Ensjp4F@qf_*AQ7VKsEP@rzlbs>&% z&$b=hwH03w6{_XF4DsrmZsNudmbvKF%G_!&WnyI5WNVcApx`I7_kd z+tS6SRxzBN;PCrWU}~&=6+|RxOPt36+wERoORW?iX5Re7|MGsr=Njg^=UX40SZ)Oj Pb_NDdS3j3^P6Q%gI~qC~!n$RX)=3ntv{Qx9VCn!Nq_LG1F_6$S zAyJ6{5_~|grA!k-TQ@?bZra8dMCeOIm#Qr(G-;criSyDnwp%;#OKjhJ_uh+ zoAL$!zxbYW&wc*SdCqgsea<yZvZzlw;4flwmGPnG`BnevXEf=0G zainoH=H;iZ&(B2C+P>}gYUbB#X|zWal@>_?pti;ez~zP(<+m4md845Py1Us~Wd>k) zBnYCYET<9nh@#S%myamuXtL{YB;x$(>TIWRV2K-AJAldmJ+~-cK zudS|zi@nrVSJNU%7i6RQc;XLjde>)uq~$dxj_n)&XZ-b?7D} z&HT4*Ft_uU#wYmb`#ZKAlbh_~qtRTpFL?<&hw-)L2y)Uj(%^ zR$d+n^2E*ZC7lj{*JU|lBh2UjWZFn$UOu}co>ZIp1~{1S;`~g6CcjrRzizP`enFsK zR)u$sh1e*H0Q8C?6>q*quP9PmV@)dqY!pR$MUlpm66$3czmS~+%;yir)j8;_tB&Jk zD>&<_!;G9(1_;KbjQAHdz+%|mv7a|SKFs!x{R@`wHi9z>t=BH6=7M#eAzH6pCOD%k z@#Ml-)Bt*05vNP+0I3*-SVZrS-xE&TrX5u&SSf!*(u>Pf%Z3!R}fg*0ClU zdwMv&Y83@06Vss(I#Hy*zd!3qa4!GmVGmZF$WJQG{Cdq4Z+%^uYL_hkXFNnumN-%C z(#*f4i7aL_c83F3bu|Eoe{+Vt+dB9|RS^KredFxi)-!P9q5W;9J!sqpBmVH|f=`&)kXo&*x9dpUXECx81@IWW>MZE3jtu>NG+7YnpkcyPM&WAYvrK z@JNtny1Ut5)2v2;Hx+lxaoamVl0TY|kt{N4J>d|WgR}f{g$tt~WW=v&gxcEL zl%$oP>F(yd-=F&KgKGK4k`mt8x|O2Chk0L;gtoRe<>=9)%d#Gr&wqGzsAf z@s&5h`I!iB`@O=mB@U%AFQ2szJ?lI}>{!>95x=HMFo~U2=0!u{7D=ME#!6RD&s|v# z$93xW|6Jb?RJia->im=ZJ=Zq`>+7iP`hHjDr7>zI#ml&8)@ApXw zUa*?8TbbO3->)bP$`T3ShQXS4|AxUz0vMDf{ECth|B@ciVJlP~FDqm!8e=3TaXcEQ zM5p6)Ufw3-Y&XcQ?dFyat&%JYG#JDv=a{HKHJ7MS;D=O?Gasb6zJ zFV z=w^>7Do&f7!T1cFPM7kOO-)?LR)K7gZr&I@K|FpZI)f zvY!h8JX&3@MDE?f&mY*5%1Z#yTZ&WHNge+f(3UEvc@78_>cJP`^9uE-+-Nj1F+R@5 zzCNCAbn(O&uhH3W;Vr=Jb}It|1Iuazx7)1{3h=xBQ#@fjLT96kch7q`y?#9vm6gO| zF+8KAd~d?5>Kf1{SMw|2FdFDCx2GL_C(rF0Uh%PaTL*8haUxo+)VN%k^-cq7TrNbb zl{eQo*}JWShF5%PIsg=yOmvsqaTpDn%f0h{r=&D2Ve^gacO(5FIrGVSHY1nh`REW)JYj)ScE)B!bWD#pm^+2m-B+N_Lh? zl$DmUJ_HSwRV=sr0}Kod2o050tPiRA06R-1S{;=rf{@ZD6p5tiss)-oV0c9XEtl0a zm|j2-1omAI@lZ{ar>om=o$19>TSi}14RA7}&S`}z8(e34d3r+|?{XAIyu4m)Mo|=6 zLV=X7j9$?sGoz7uc*hRq+TnPiAhY7M02r#7)x-Ed?Qm4%Z7X88;G$4&BX#H zNg{7za_NWWA*)o*N~;=&uXU>5+e()2EKsu!H#t)}ShLGZ$SMw4VHEg|Szrbo{|Y3~ z>Aq3#2SA5_FQM?DO-~*&rzC;#EaYTm08tQdm#B-5<`M(14o$PW+^zr|yyCm7)=2WK zl&5*AZZ;j~%c<{#*&%`p*$9_&)&ut!v335EB3Z002ovPDHLkV1iXxL4W`N diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/syndicate.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Suits/syndicate.rsi/icon.png deleted file mode 100644 index 1ee3f2e6e3337561409c688d56582283d3fb37cb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 928 zcmV;R17G}!P)ViLUt0-lK?0A8?T*g_&wzNvEVtLLOl6GPY0rEDsVgRb6z+o~!7-hFkFbbgaN*#e&g z+*OO)AQ*6SCtKk93!YZ1cm3418*+B#fT<`<*fs#sjS^>t03aa*$3L4VAq2sIyMY6o z6@r8i7`o1cZDT6U_wBj_tuVbX$AhI6rWfW~@@~*o3EtC(CBUrVA)VhOx>2e^lm; zvDx;_&NY%em}z=4=zn>8?)y@^z_LS%9RRZK>Vh{VqlREvp+)vFB1hG<#HSz z9PAjcYX_3aq*AU_YW6$RaK!5c;2YC!;33Q6!rB_nnO64qBmm&_sZ&HEks6;1oZ&_+ zMkZT8?Cz4u7Pt|MF&8*foq|9l62ar~w2j$Q36_?ZmB-uLa^&)5z6I{aVx&y7*7pe^ zz%;qLy2_UqFLHEcW#5>6ZNqaQonaKRED}QS(6SU~TswkN;V>g!FH6hI|IRY1$Ba*F zJBmY=MKItd8jtV0j{BN~SB6}*VdUJl9)_-W+!OWa=)mHrBDePbUSh8dC~WOXwzf;4 zsw9Nqr0WpB6nA^k-++A`czXyk&#E7XPmfF98nYO(ZI0{|o6e+6vugou9k`_L_ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/syndicate.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Suits/syndicate.rsi/inhand-left.png deleted file mode 100644 index f728793ecd44a307bc1b4e4572faecea81a28e9c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 890 zcmV-=1BLvFP)J(Qp* z-V_2hk%_%Xq5dL5+CvYDp;(FOCN(D6bla>++dTVth`Z8DGdrEOu6|#anf>wk&OFaN z^DOKMy+Y^%o2sKgz*go1x=J`C-iBvvQdMtv%%@qgiG< z4iTfuY{wxcqghXRKLYK5>#1~oxSyMH0XR41)^CGfLytdPEe~MtvmV)c$@>v##cw+@ zobS&8FgiN=$o71HjxYQBJ>?f4+-G6zER)eJ3u9-waevEG-j8sQ#pdVdEx-(G&5Y~P zR;qH(bs5x}**q=237xrh(m1BK@ z&;B)m-U2m0maEVnhw>)(+T**g8!)%HTHmkyxxw6G&}aCMz^B!5J7yvw3p>19+75?^ zge=DGn5U~aZpTb6(n72?2|%nhNiNdjIp3(jM?lK5*sdCu_3l-_xv@#6t(BDJ?G{d1 z7IWJVDVY)g3oA=h8psPFgb+dqA%qY@2qA=cjHdmowV;#<$CIR0h?VlX@3jNLKW=>n z3QC!qCr@&wJI>*jeVjfJ!|&RGrtE;7BZqnK%^?70*OvKh@viS$Pvz0r)28q4Hu!@Z zw+P3RT<7nGl-C-r)s!PZ**15Q832|}<+#?@Lo^-rRjVmGpfBFWjO+5s3*FpaUZ%3O z#oB|1&-=8Vty5jy#&I0;ac9;zj^q2mY194;0=(1HWy0$l?4*-?TKwHtTbgnbta-6| z2a*;)-Co`EyZz*eTd=rZgI=U%NJJ(P?*`F<;6}L0(!(EKt zC|(Ky*T|^@k-^kyg>DxLLW@obX82c33@b>(S;AY_4ROAXH8Q#sU3AG z=U)$@*F)%qkWsm>mEU-H{x^;)MpMAucp%WY)usAbxg0IIF9~6ru9H)7$sY5w` zt~1U|>&derd`E;L?;`Sq48DM%53rl5&0kt3&O(*2=%H z=8IUA%Y!2TjE#-$yIvj~;p4%<|0sH6l=CnCevgImi{v`vER0{|`+L9D%+-9q%Yp?7fvy1DM`_j%`W*2L}TeU4tSV8SK6qaxA zk>xY+8;S`l=!sb{VFmSwzl~s^7l2@(ml1zk&HPm}AgmO-u4dKQ8}%RWZWHYe5LTYp z0thR`?CyOEx&Xk!+6pBPo?sbe~8 zn);=5x^jx-MF%?X-gaF=w$0h$XruBpU0ofp6YAidxlOwMI&XiyKiSYw%~V$he9{)+ z=iwoiPM_xOT!40Cl^0SePcDN;9*+JKn;RQwrTF7bKdHr4URzu8H?|d9&mdDcE11y0jg3#Nk*l~9onWyRM z{tQ0ZVQ@a~=P9?uE00AyxdFlfX28w$`~2W)B0fcg61hgEYN9^@60<2Wk7LIG00000 LNkvXXu0mjfBPg-) From 3338a4bf5401dbc54e9d274c302908341c7860bd Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Thu, 15 Jun 2023 14:15:39 +1200 Subject: [PATCH 221/474] Change PvsOverrideSystem captialization (#17314) --- Content.Server/Explosion/EntitySystems/ExplosionSystem.cs | 2 +- Content.Server/Singularity/EntitySystems/SingularitySystem.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs index 1cc42ccf47..39214bbe06 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs @@ -42,7 +42,7 @@ public sealed partial class ExplosionSystem : EntitySystem [Dependency] private readonly IAdminLogManager _adminLogger = default!; [Dependency] private readonly IChatManager _chat = default!; [Dependency] private readonly ThrowingSystem _throwingSystem = default!; - [Dependency] private readonly PVSOverrideSystem _pvsSys = default!; + [Dependency] private readonly PvsOverrideSystem _pvsSys = default!; [Dependency] private readonly SharedTransformSystem _transformSystem = default!; /// diff --git a/Content.Server/Singularity/EntitySystems/SingularitySystem.cs b/Content.Server/Singularity/EntitySystems/SingularitySystem.cs index 2b6ae31c6c..a30d8bb02b 100644 --- a/Content.Server/Singularity/EntitySystems/SingularitySystem.cs +++ b/Content.Server/Singularity/EntitySystems/SingularitySystem.cs @@ -24,7 +24,7 @@ public sealed class SingularitySystem : SharedSingularitySystem #region Dependencies [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; - [Dependency] private readonly PVSOverrideSystem _pvs = default!; + [Dependency] private readonly PvsOverrideSystem _pvs = default!; #endregion Dependencies /// From f30e83849c54f685a202436cf9f07a034b840f28 Mon Sep 17 00:00:00 2001 From: 0x6273 <0x40@keemail.me> Date: Thu, 15 Jun 2023 04:16:11 +0200 Subject: [PATCH 222/474] Add network configurator to non-engi utility belt fill (#17250) * Add network configurator to utility belt fill * Empty commit to rerun tests --- Resources/Prototypes/Catalog/Fills/Items/belt.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/Resources/Prototypes/Catalog/Fills/Items/belt.yml b/Resources/Prototypes/Catalog/Fills/Items/belt.yml index ade417352b..f8b6664ae4 100644 --- a/Resources/Prototypes/Catalog/Fills/Items/belt.yml +++ b/Resources/Prototypes/Catalog/Fills/Items/belt.yml @@ -10,6 +10,7 @@ - id: Screwdriver - id: Wirecutter - id: Welder + - id: NetworkConfigurator - type: entity id: ClothingBeltUtilityEngineering From 7ec218e82fa8d30a4f6452ed9e00dd4e0c780d56 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Thu, 15 Jun 2023 12:16:52 +1000 Subject: [PATCH 223/474] Update submodule to 0.127.0.0 (#17343) --- RobustToolbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RobustToolbox b/RobustToolbox index 0ae409a795..e11cef3335 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit 0ae409a7956806d7ff8a50b9cabbb9e5cb091bef +Subproject commit e11cef333555821ac0e3ea7bed65f557e1fd5704 From a16fd491735a7507ab4f91ad747012ae76473873 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 14 Jun 2023 22:17:15 -0400 Subject: [PATCH 224/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 32 +++++++++++++++---------------- 1 file changed, 15 insertions(+), 17 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index f45fde6669..ee3fd6f234 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,21 +1,4 @@ Entries: -- author: EmoGarbage404 - changes: - - {message: Removed the jackboot walking sound., type: Remove} - id: 3494 - time: '2023-04-23T02:51:04.0000000+00:00' -- author: Menshin - changes: - - {message: Heaters/freezers aren't constantly updating UI/sprite when turned off - anymore. It should now be possible to set temperature in such cases., type: Fix} - - {message: 'Heaters/freezers now uses power only when actually running. That also - means, they have to be powered to run now.', type: Add} - - {message: Visual feedback for when heaters/freezers maintenance panel is open, - type: Add} - - {message: Heaters/freezers set temperature should now appear on detailed examined - (i.e when close enough), type: Add} - id: 3495 - time: '2023-04-23T03:05:33.0000000+00:00' - author: metalgearsloth changes: - {message: Remove lobby starting soon showing up 20 seconds before roundstart., @@ -2915,3 +2898,18 @@ Entries: them from achieving immortality.', type: Tweak} id: 3993 time: '2023-06-15T02:13:06.0000000+00:00' +- author: Flareguy + changes: + - {message: 'Added the basic hardsuit, a modest but lightweight hardsuit with minor + damage resistances in all categories.', type: Add} + - {message: Resprited all EVA suits., type: Tweak} + - {message: 'Changed a bunch of descriptions relating to hardsuits, softsuits, and + EVA helmets.', type: Tweak} + id: 3994 + time: '2023-06-15T02:15:22.0000000+00:00' +- author: 25203 + changes: + - {message: Pre-filled non-engineering utility belts now come with a network configurator., + type: Tweak} + id: 3995 + time: '2023-06-15T02:16:12.0000000+00:00' From 780d52514f9902d4ebfa8634a7198c00e516f15a Mon Sep 17 00:00:00 2001 From: OctoRocket <88291550+OctoRocket@users.noreply.github.com> Date: Wed, 14 Jun 2023 22:17:39 -0400 Subject: [PATCH 225/474] [Add] Adds pirate accent trait (#17258) --- Resources/Locale/en-US/traits/traits.ftl | 3 +++ Resources/Prototypes/Traits/neutral.yml | 6 ++++++ 2 files changed, 9 insertions(+) create mode 100644 Resources/Prototypes/Traits/neutral.yml diff --git a/Resources/Locale/en-US/traits/traits.ftl b/Resources/Locale/en-US/traits/traits.ftl index f81772d6a9..c4e8825e75 100644 --- a/Resources/Locale/en-US/traits/traits.ftl +++ b/Resources/Locale/en-US/traits/traits.ftl @@ -19,3 +19,6 @@ trait-paracusia-desc = You hear sounds that aren't really there trait-uncloneable-name = Uncloneable trait-uncloneable-desc = Cannot be cloned + +trait-pirate-accent-name = Pirate Accent +trait-pirate-accent-desc = You can't stop speaking like a pirate! diff --git a/Resources/Prototypes/Traits/neutral.yml b/Resources/Prototypes/Traits/neutral.yml new file mode 100644 index 0000000000..fd9ff85d96 --- /dev/null +++ b/Resources/Prototypes/Traits/neutral.yml @@ -0,0 +1,6 @@ +- type: trait + id: PirateAccent + name: trait-pirate-accent-name + description: trait-pirate-accent-desc + components: + - type: PirateAccent From c63ede2524bfcea675e3719cf5508a123fbbbf58 Mon Sep 17 00:00:00 2001 From: MisterMecky Date: Thu, 15 Jun 2023 10:18:38 +0800 Subject: [PATCH 226/474] Condiment bottle tweaks (#17132) * basefoodcondimentbottle tweaks * move to drinkscondiments, inherit from drinksbase * Revert "move to drinkscondiments, inherit from drinksbase" This reverts commit a54604de41d124e80238340e8296cc6960d8fbc0. * oh boy here I go overcomplicating stuff again --- .../Objects/Consumable/Food/Containers/condiments.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/condiments.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/condiments.yml index 04845e4446..fbbdcdf0d4 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/condiments.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/condiments.yml @@ -353,6 +353,10 @@ solutions: food: maxVol: 30 + - type: RefillableSolution + solution: food + - type: Spillable + solution: food - type: SolutionTransfer canChangeTransferAmount: true minTransferAmount: 5 From 93f8db58edee1f4e0484c832e98485665e22af5b Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 14 Jun 2023 22:19:41 -0400 Subject: [PATCH 227/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index ee3fd6f234..d68bd81da0 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,16 +1,4 @@ Entries: -- author: metalgearsloth - changes: - - {message: Remove lobby starting soon showing up 20 seconds before roundstart., - type: Fix} - id: 3496 - time: '2023-04-23T03:14:26.0000000+00:00' -- author: deltanedas - changes: - - {message: 'Remote signaller can now be used as a payload in grenades and mines, - have fun!', type: Tweak} - id: 3497 - time: '2023-04-23T03:17:59.0000000+00:00' - author: OctoRocket changes: - {message: Medipen prick popup is now centered on you, type: Tweak} @@ -2913,3 +2901,14 @@ Entries: type: Tweak} id: 3995 time: '2023-06-15T02:16:12.0000000+00:00' +- author: OctoRocket + changes: + - {message: Added a trait that gives you a pirate accent!, type: Add} + id: 3996 + time: '2023-06-15T02:17:40.0000000+00:00' +- author: MisterMecky + changes: + - {message: 'Condiment bottles and shakers are now refillable, and are spill-able + in-hand.', type: Tweak} + id: 3997 + time: '2023-06-15T02:18:38.0000000+00:00' From a83b03cfbe6be028dce7ee3caa270ca62e2bd866 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Thu, 15 Jun 2023 12:21:19 +1000 Subject: [PATCH 228/474] Fix cables getting 1 morbillion serializations (#17201) --- Resources/Prototypes/Entities/Structures/Power/cables.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Structures/Power/cables.yml b/Resources/Prototypes/Entities/Structures/Power/cables.yml index 055106cb63..a6c4901377 100644 --- a/Resources/Prototypes/Entities/Structures/Power/cables.yml +++ b/Resources/Prototypes/Entities/Structures/Power/cables.yml @@ -11,9 +11,11 @@ - type: Transform anchored: true noRot: true + # TODO: Remove both of these, same with CollideOnAnchor - type: Physics bodyType: Static canCollide: false + - type: Fixtures - type: Sprite drawdepth: ThinWire visible: false @@ -43,7 +45,7 @@ lowVoltageNode: power - type: CableVis node: power - + - type: entity parent: CableBase From 3af05a6606992cf9ac7cf119a731cdd8afc3e392 Mon Sep 17 00:00:00 2001 From: Slava0135 <40753025+Slava0135@users.noreply.github.com> Date: Thu, 15 Jun 2023 05:25:29 +0300 Subject: [PATCH 229/474] allow grilles to be placed on lattice (#17073) * allow grilles to be placed on lattice * Revert "allow grilles to be placed on lattice" This reverts commit 5c536686cdcd85d49681f934d9abaf69076e2bc2. * allow grilles to be placed on lattice (fixed) * file namespace --- .../Construction/Conditions/TileNotBlocked.cs | 46 ++++++++++++------- .../Recipes/Construction/structures.yml | 1 + .../Recipes/Construction/utilities.yml | 4 -- 3 files changed, 30 insertions(+), 21 deletions(-) diff --git a/Content.Shared/Construction/Conditions/TileNotBlocked.cs b/Content.Shared/Construction/Conditions/TileNotBlocked.cs index cf6d3435cd..c7baaa01c7 100644 --- a/Content.Shared/Construction/Conditions/TileNotBlocked.cs +++ b/Content.Shared/Construction/Conditions/TileNotBlocked.cs @@ -2,31 +2,43 @@ using JetBrains.Annotations; using Robust.Shared.Map; -namespace Content.Shared.Construction.Conditions +namespace Content.Shared.Construction.Conditions; + +[UsedImplicitly] +[DataDefinition] +public sealed class TileNotBlocked : IConstructionCondition { - [UsedImplicitly] - [DataDefinition] - public sealed class TileNotBlocked : IConstructionCondition + [DataField("filterMobs")] private bool _filterMobs = false; + [DataField("failIfSpace")] private bool _failIfSpace = true; + [DataField("failIfNotSturdy")] private bool _failIfNotSturdy = true; + + public bool Condition(EntityUid user, EntityCoordinates location, Direction direction) { - [DataField("filterMobs")] private bool _filterMobs = false; - [DataField("failIfSpace")] private bool _failIfSpace = true; + var tileRef = location.GetTileRef(); - public bool Condition(EntityUid user, EntityCoordinates location, Direction direction) + if (tileRef == null) { - var tileRef = location.GetTileRef(); - - if (tileRef == null || tileRef.Value.IsSpace()) - return !_failIfSpace; + return false; + } - return !tileRef.Value.IsBlockedTurf(_filterMobs); + if (tileRef.Value.IsSpace() && _failIfSpace) + { + return false; } - public ConstructionGuideEntry GenerateGuideEntry() + if (!tileRef.Value.GetContentTileDefinition().Sturdy && _failIfNotSturdy) { - return new ConstructionGuideEntry - { - Localization = "construction-step-condition-tile-not-blocked", - }; + return false; } + + return !tileRef.Value.IsBlockedTurf(_filterMobs); + } + + public ConstructionGuideEntry GenerateGuideEntry() + { + return new ConstructionGuideEntry + { + Localization = "construction-step-condition-tile-not-blocked", + }; } } diff --git a/Resources/Prototypes/Recipes/Construction/structures.yml b/Resources/Prototypes/Recipes/Construction/structures.yml index d44977ae37..595235e220 100644 --- a/Resources/Prototypes/Recipes/Construction/structures.yml +++ b/Resources/Prototypes/Recipes/Construction/structures.yml @@ -224,6 +224,7 @@ description: A flimsy framework of iron rods. conditions: - !type:TileNotBlocked + failIfSpace: false icon: sprite: Structures/Walls/grille.rsi state: grille diff --git a/Resources/Prototypes/Recipes/Construction/utilities.yml b/Resources/Prototypes/Recipes/Construction/utilities.yml index cd527858ae..f39b11b477 100644 --- a/Resources/Prototypes/Recipes/Construction/utilities.yml +++ b/Resources/Prototypes/Recipes/Construction/utilities.yml @@ -79,10 +79,6 @@ conditions: - !type:TileNotBlocked failIfSpace: false - - !type:TileType - targets: - - Lattice - - Plating - type: construction name: cable terminal From ec5ac5eac26bbe1cb06b5005e79b5adf52e81c98 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 14 Jun 2023 22:26:33 -0400 Subject: [PATCH 230/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index d68bd81da0..a2d0ef09c8 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: OctoRocket - changes: - - {message: Medipen prick popup is now centered on you, type: Tweak} - id: 3498 - time: '2023-04-23T03:43:47.0000000+00:00' - author: metalgearsloth changes: - {message: Fix medical PDA not working., type: Fix} @@ -2912,3 +2907,9 @@ Entries: in-hand.', type: Tweak} id: 3997 time: '2023-06-15T02:18:38.0000000+00:00' +- author: Slava0135 + changes: + - {message: grilles can now be constructed on lattice (easier to rebuild asteroid + defences), type: Tweak} + id: 3998 + time: '2023-06-15T02:25:29.0000000+00:00' From 0ee2a4eec48cc7d03a04ffc9738da2d00cff9ca9 Mon Sep 17 00:00:00 2001 From: OttoMaticode <124523848+OttoMaticode@users.noreply.github.com> Date: Wed, 14 Jun 2023 21:43:02 -0500 Subject: [PATCH 231/474] adds a link to the science entry from robotics (#17196) --- Resources/ServerInfo/Guidebook/Science/Robotics.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/ServerInfo/Guidebook/Science/Robotics.xml b/Resources/ServerInfo/Guidebook/Science/Robotics.xml index 8dfee65e4b..dc7e5e4973 100644 --- a/Resources/ServerInfo/Guidebook/Science/Robotics.xml +++ b/Resources/ServerInfo/Guidebook/Science/Robotics.xml @@ -38,7 +38,7 @@ [color=#a4885c]Mechs[/color] are giant behemoths of metal designed to carry out a variety of functions respective to their model. They are piloted by players and require power cells to function. - Each mech requires its own unique set of limbs and parts to create. These can be fabricated at the Exosuit Fabricator, the same as any other part, save for the required [color=#a4885c]circuit boards[/color], which are made at a [color=#a4885c]Circuit Board Imprinter[/color], which can normally be found in the science department. + Each mech requires its own unique set of limbs and parts to create. These can be fabricated at the Exosuit Fabricator, the same as any other part, save for the required [color=#a4885c]circuit boards[/color], which are made at a [color=#a4885c]Circuit Board Imprinter[/color], which can normally be found in the [textlink="science" link="Science"] department. From d026b032878e3a231b9770f379ba244e0cd0cfcd Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 14 Jun 2023 22:44:06 -0400 Subject: [PATCH 232/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index a2d0ef09c8..b54d219700 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: metalgearsloth - changes: - - {message: Fix medical PDA not working., type: Fix} - id: 3499 - time: '2023-04-23T03:46:48.0000000+00:00' - author: 778b changes: - {message: Stop Onestar mecha colliding with items and also use the mech footstep @@ -2913,3 +2908,8 @@ Entries: defences), type: Tweak} id: 3998 time: '2023-06-15T02:25:29.0000000+00:00' +- author: OttoMaticode + changes: + - {message: Linked the science entry in the robotics guidebook entry., type: Fix} + id: 3999 + time: '2023-06-15T02:43:02.0000000+00:00' From 7c609c913eb0486d3825b67ccb45eb6d71140e3b Mon Sep 17 00:00:00 2001 From: SonicHDC <100022571+SonicHDC@users.noreply.github.com> Date: Thu, 15 Jun 2023 14:45:30 +1200 Subject: [PATCH 233/474] Dumplings (#16966) --- .../Objects/Consumable/Food/Baked/misc.yml | 19 ++++++++++++++++++ .../Recipes/Cooking/meal_recipes.yml | 11 ++++++++++ .../Food/Baked/misc.rsi/dumplings.png | Bin 0 -> 527 bytes .../Consumable/Food/Baked/misc.rsi/meta.json | 3 +++ 4 files changed, 33 insertions(+) create mode 100644 Resources/Textures/Objects/Consumable/Food/Baked/misc.rsi/dumplings.png diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml index dbe9284f40..71ee17d616 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml @@ -424,3 +424,22 @@ Quantity: 5 - ReagentId: Vitamin Quantity: 1 + +- type: entity + name: dumplings + parent: FoodBakedBase + id: FoodBakedDumplings + description: Average recipe for meat in doughs. + components: + - type: Sprite + state: dumplings + - type: SolutionContainerManager + solutions: + food: + maxVol: 20 + reagents: + - ReagentId: Nutriment + Quantity: 8 + - ReagentId: Protein + Quantity: 2 + diff --git a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml index ee4224e97e..decd66a266 100644 --- a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml +++ b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml @@ -1214,6 +1214,17 @@ FoodDoughPie: 1 FoodGrape: 3 +- type: microwaveMealRecipe + id: RecipeDumplings + name: dumplings recipe + result: FoodBakedDumplings + time: 15 + reagents: + Water: 10 + UncookedAnimalProteins: 6 + solids: + FoodDoughSlice: 3 + #Donks i guess - type: microwaveMealRecipe id: RecipeWarmDonkpocket diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/misc.rsi/dumplings.png b/Resources/Textures/Objects/Consumable/Food/Baked/misc.rsi/dumplings.png new file mode 100644 index 0000000000000000000000000000000000000000..a9fc057ddfd1ae6c35afa657b4e780d6fde7db8b GIT binary patch literal 527 zcmV+q0`UEbP)wtCOKREFDc0FBokCl0i=HUGHc_tQ^ z+}b`(22b=GW*$f8P&CM3a!TAk32uK7FvdG3)Pl}4d0V?0vxs;M&J>`@nVNVzA?U6i zakelBE03n7)QIx2o zh69`?SHd6;t{`tZVm2oP_`bi;%M^y8Ib&{&_d^6?ewsrIKmnV5cxM#%nrv(T{gsEy z0Bj@&TbaL+$F}mf2u^OeI(fNb_e>Fa0pNCBmx3Um&^_UFu~(zMiqmNfl|X) zfNj&FWC<+QRdYSXVID1@-ELE*QX$XtSOh?5fCyhTI~#}G7x&cW?w+neAP(|Q>fQOy zH@VK_YPRDz)Mzv~hezTosMqV$LZLwAa+%^d)cDI=g_!we<1AvCl_@}qA_S`84D2({a5&7&3kEKxH Date: Wed, 14 Jun 2023 22:46:34 -0400 Subject: [PATCH 234/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index b54d219700..e8d68b0792 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,10 +1,4 @@ Entries: -- author: 778b - changes: - - {message: Stop Onestar mecha colliding with items and also use the mech footstep - sounds for it., type: Fix} - id: 3500 - time: '2023-04-23T03:55:44.0000000+00:00' - author: metalgearsloth changes: - {message: Fix monkeys standing up in crit., type: Fix} @@ -2913,3 +2907,8 @@ Entries: - {message: Linked the science entry in the robotics guidebook entry., type: Fix} id: 3999 time: '2023-06-15T02:43:02.0000000+00:00' +- author: SonicDC + changes: + - {message: Added dumplings!, type: Add} + id: 4000 + time: '2023-06-15T02:45:31.0000000+00:00' From 4322faf5c9efd48a52cb62ddd0aeeeae9819832b Mon Sep 17 00:00:00 2001 From: brainfood1183 <113240905+brainfood1183@users.noreply.github.com> Date: Thu, 15 Jun 2023 03:47:36 +0100 Subject: [PATCH 235/474] Behonker and Clown Spider (ready for merge) (#16678) --- .../Audio/Effects/Footsteps/attributions.yml | 7 + .../Effects/Footsteps/clownspiderstep1.ogg | Bin 0 -> 18729 bytes .../Effects/Footsteps/clownspiderstep2.ogg | Bin 0 -> 17627 bytes .../Weapons/Guns/Gunshots/attributions.yml | 7 +- .../Weapons/Guns/Gunshots/laser_clown.ogg | Bin 0 -> 42954 bytes .../ghost/roles/ghost-role-component.ftl | 3 + .../Prototypes/Body/Prototypes/behonker.yml | 11 ++ .../Entities/Markers/Spawners/mobs.yml | 17 ++ .../Prototypes/Entities/Mobs/NPCs/animals.yml | 58 +++++++ .../Entities/Mobs/NPCs/behonker.yml | 156 ++++++++++++++++++ .../Entities/Objects/Misc/spider_web.yml | 99 ++++++++++- .../Weapons/Guns/Battery/battery_guns.yml | 32 ++++ Resources/Prototypes/GameRules/events.yml | 16 ++ .../Prototypes/SoundCollections/footsteps.yml | 6 + .../Mobs/Animals/clownspider.rsi/clown.png | Bin 0 -> 26053 bytes .../Mobs/Animals/clownspider.rsi/dead.png | Bin 0 -> 20056 bytes .../Mobs/Animals/clownspider.rsi/meta.json | 23 +++ .../Mobs/Demons/behonker.rsi/alive.png | Bin 0 -> 37703 bytes .../Mobs/Demons/behonker.rsi/dead.png | Bin 0 -> 18654 bytes .../Mobs/Demons/behonker.rsi/meta.json | 48 ++++++ .../Objects/Misc/spiderweb.rsi/meta.json | 8 +- .../Misc/spiderweb.rsi/spider_web_clown_1.png | Bin 0 -> 15829 bytes .../Misc/spiderweb.rsi/spider_web_clown_2.png | Bin 0 -> 15556 bytes .../Guns/Battery/behonker_eye.rsi/base.png | Bin 0 -> 15580 bytes .../Guns/Battery/behonker_eye.rsi/meta.json | 14 ++ 25 files changed, 500 insertions(+), 5 deletions(-) create mode 100644 Resources/Audio/Effects/Footsteps/clownspiderstep1.ogg create mode 100644 Resources/Audio/Effects/Footsteps/clownspiderstep2.ogg create mode 100644 Resources/Audio/Weapons/Guns/Gunshots/laser_clown.ogg create mode 100644 Resources/Prototypes/Body/Prototypes/behonker.yml create mode 100644 Resources/Prototypes/Entities/Mobs/NPCs/behonker.yml create mode 100644 Resources/Textures/Mobs/Animals/clownspider.rsi/clown.png create mode 100644 Resources/Textures/Mobs/Animals/clownspider.rsi/dead.png create mode 100644 Resources/Textures/Mobs/Animals/clownspider.rsi/meta.json create mode 100644 Resources/Textures/Mobs/Demons/behonker.rsi/alive.png create mode 100644 Resources/Textures/Mobs/Demons/behonker.rsi/dead.png create mode 100644 Resources/Textures/Mobs/Demons/behonker.rsi/meta.json create mode 100644 Resources/Textures/Objects/Misc/spiderweb.rsi/spider_web_clown_1.png create mode 100644 Resources/Textures/Objects/Misc/spiderweb.rsi/spider_web_clown_2.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Battery/behonker_eye.rsi/base.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Battery/behonker_eye.rsi/meta.json diff --git a/Resources/Audio/Effects/Footsteps/attributions.yml b/Resources/Audio/Effects/Footsteps/attributions.yml index c86ce95de9..a6dea3f6ed 100644 --- a/Resources/Audio/Effects/Footsteps/attributions.yml +++ b/Resources/Audio/Effects/Footsteps/attributions.yml @@ -25,3 +25,10 @@ license: "CC-BY-SA-3.0" copyright: "Taken from https://github.com/tgstation/tgstation" source: "https://github.com/nero1024/tgstation/blob/83ccc939a20489de8ab81cb47e6f8e84c490adc2/sound/effects/footstep/slime1.ogg" + +- files: + - clownstepspider1.ogg + - clownstepspider2.ogg + license: "CC-BY-SA-3.0" + copyright: "Taken and modified from tgstation (clownstep 1 and 2) by brainfood1183 (github)" + source: "https://github.com/tgstation/tgstation/tree/f8ee37afc00bce1ad421615eaa0e4cbddd5eea90/sound/effects" diff --git a/Resources/Audio/Effects/Footsteps/clownspiderstep1.ogg b/Resources/Audio/Effects/Footsteps/clownspiderstep1.ogg new file mode 100644 index 0000000000000000000000000000000000000000..4ef8d8be8e2612c3e7d65f944fb76c3bb7df99f0 GIT binary patch literal 18729 zcmb@ubzD@>`!~Fbih*FDAdRAcfUtBUARtRgH%K>2cc_$fcMA(59ZQEwcPyQfOD(l@ z?R^$MpYQ#Be$Vr|?|+{2I-J+cTr=0qyszs$GiS~$awaBmYwrsFN?7u6t^(E95C?JE*mlk+lOowtWwPKP5>e zX)yru7Pd?Vz4w->!*PT+cy~?y`1J`AD;_Wk<{Mu6@r6<6Wn#7!bL~R51jR29Ky16gAw^_OS2c zL8kokxO3GHDxfVQx1Je35V?(2|CK%`!46RMw_8-8Pe3<85|MzA=Oo`2c)sEI`WIXW8Db%!x)b%BJ}OHx$Jo5cEVHWA!+r|NH&cwBt4CEr4aaEm^xQjhF&WyB#C$6~Y}Lz@~2%7+dYw zCG6ST?fHRQ!r@(KjCAk5G{L_{z?vNddJ86NwI%BW&`@AP*m0=Z3yj&zi~&$!5&1t~ zpRfD{=m>SHah&<5+iVefSFn5n)Dmaj7RCEp6OiF+<`PxXKoYu_2R~^!Babi{@hea% znYJb`A^FOJmVM6_0b9~{CAMZH4kX$4N#Z5J{)Sv1CF2(64FPG-kSX|W&-8$NWSzjwaQx^Da0h)hMQE5fB+uuA!ZTW!!@TALqf!}02;X{kMH2r6yDs`%fEE93xE-4Qhvb9*b@%U*$v=7t+=Hx4 zifjVPO3JEER_gJNQ&oQ2y=CjHHn&qmdb6?A>FRL$eP)7L#X}QGB93_{0(M)JTz28^K|OP&OKIGMcC~ z(ya1Sul$EFe`zx}=J;RC!BXToPuSx7s2l&AIT>_e3*2EZB%^55qh7hjnFJ=~C8n+A zeY^WVm}450n-G-yH3<1Nj4m+FEHLRu%{R-gqK(@B>-`_*NZ8Q;H^3Y*JDUGu&QCCz zD8QyNMj7_8~ld_V)|Cup>bc9_7!43c$ z3j#d@fmT}q)E`7;#c4cfRPExS<2cd*8xyw7y2BEL!|Zkv^&vcT@Z3Hy>}#Z!CPU=& z7Cn4kWm)>~!pKp{+f2B?uy+F_5715IE4YPNKSa2L>Rkx<_A}qF;9Jx_1H!jo`o*x` zrjCtJXdwooom9RtB9hNyA{5@kK%h?`T;T6s=0L=gYj0CPpf3^jU%|JZ7(C#;o#*gC z;Rmr#1P|>?dwdApOV|Sl1Q4(yX$<=$@4U<=gh=N3L@3a~U>_jn^e|#Y2$RzTg}X37 zU`7uo)Pyj#1%YoT+AFXkvwamb06`oNEet4un;8?OU;)b>1q2QQl512k3JPXPzRrNg$GdDhL15TZ z13K7MrzD^)<{qZ*-wa1uob&_Q$QJYXvAfy0UIffCp{ z;KYEcc47-A5a{F2YapthzN{ZiJ0KvcyTIgpi@Gg^?KXWYv2Pm{jM(P^eQSdKgXb_} zdwh{LAOz{ehUm$CA7SnC076d>Ov@ks0CV|ApPZHjke`3S4Uoun5V3EJeh&|l3b281 zghB`plFU~@A?SfZ5Ez-_^8o^hRgea+VAIU=6d>TXtF%0$5Nz55Kr!7D(cA$fnJF$#a9^e?eeYQQ>JsR%$jY!m9x+2BrxBIX?h! zSd5a!YZ#CjfJ)^ruI7ax(9R89P{wsq6$x&7l6#C-eY^(x32<5X7PSF(W#kJyfOZmN z+sTrNM@Ulk2=pFUmEi&X#|7ARVdb7CrEPq81QPa;`@|0d zy{ErgSOVckRkPXQ=2Osra>TadY}jR|5z&aFHQd%?lr*p zE0@4V4YB-n_$v_U_%DI)0G8NSf)66}FrWnPmC>nvKS2H!Jc7`{V*XVH!}9W09-jr>~za6oLn%)bH!$d%t>Rbll3&P)BT0I2Ay z@+*OY$nBT^5x@WiK&$==fQtSNVYPrj16THZ82eN|_n9ii=NEUMz52_qd0_hcH?KL( zzvW*5c4p!9Q69KU(TqZUs;XzIc)6v7n^+PzuG~Ds?DgXuWLoJJ5p0B_N4<044 z@8vj}mI5>LrrSTrfsLDoav)ROAMhRzYlPOUP&f<-BPkppg}^M>CxA=su~P$A zv*_hO&iWAW-kvkh2OQgCTi__o#~KWH^1v@_7U61Qi+-LXGGBb&V+uS_N2m?xtrkmE z1aEiA&{tBqpAS9*KXbGx{xEg z_l@9s`oP2FNa}b6aP(v0@Zk@^u^$6eY803!Bb4`N33Q8h{s9`jOU z4E2|kiWI3%JYiW43ns%3I$CfgA*(N8#iYg>Fr4e>mpX)iCG%S2AV^^S4*CKD;XGu0 ze4Fs?=g)W`?zitFu7mF0!y|7Nd;9hcb=J=e8)HP?)Z|XWGE`FW9z}bSN{P} zm;gQhmYBG>x^oP=^Y9rpJ(x#WQXUwNfr|=s3=D!QpT3$JuWYHf3h0(R|bX*FCuUI#7vOhKB%P+9;cyfzinYKe3~R0R~s6YMi-s3 z(m`2`xt-_;0xfmW(HofNl|5$4I-g5u+~x=}5~O@zmwW_u?w&;!6EqH2#S`c-Rl-DE zk!x=7;*;LC_Pv>Ceom&t-9>tV-wY}lsk z)H5#P_kQ#*a`GE7V^sf4Bh0 z5oMtzYtC|synad?(oDZl!N?7rCtEgHOU)ssi#lKH77Vu&r@vw7AQ5!micRv|>@G9f z0rdY&*v7BZt?MTcb>Nx?Iczb0Y}l>HKCaNXJl+X6QgfVMPl4!$#%O0Xk$2DPG$P?9 z^j+TG9hiv5UeyNa@Y>>KN3%xU#8`2ScwE+{DCy?!J~cCCh`vEgKg=^A?(#$;#6`b z|Dv+#C`>-8FsXGm*md>sXiuvtlyQG!oQ{ed7ajT#T+9rv)c9JETTkxY&6z&dZx&hm zIak0e-TLLOLw?9*SB3{EGiqWEntiAaIgpEI>GLrWN}sw+sC4k}ncxozI8Q{IDv&G6 zWbtqY7^0hl2P<5yHc3#Y^c0G}^c?WD>wry%> zjA79ky_zP7_V^>BO0*bp)bx`PN z3horHIPt{XiLG9Wl-m>?6|Px8k;u%6S+dED#Ve9W{l{I$`n!WP%=|sBM-!1!>FH{5 z8c>^&{$@2Z?!iY%p(FFjK?HMKxKKg{9*%Wt0!{f>T-mROpwiSB@7DMFgA}BMd+(PX znc@_SzL)PUdg8{#cvp_P@Q3E1;%7Xa>58`v6Tkf+fy2GBN_luyQNGuo+!N?xYs?Z7 zYr^pk&3_)kGn&d(!bn!IjR$tcn43wo=02P<>WD3zx1y;{~pfuiw|% zyQb+JdF5>RN;)(gmR%QfOe{5&!7eM!lr7NB3ixQ9?)0^_KkJ9ti4Cs{fPqT}-h@1uhD&b4;@@Ok@f{?3PQ0U`j` zCsA~4KWe}uVCiv+p}R-k#-p^x~nibh9Pt?Bsf_ z$0Tp(eA)iS1&Q?~=g_Ym(E?Vl>^Y;tyxv@JVY2NY0v$Fte&K2UC1xNaDaUssn?o5j zH+#?+SvBU_wy`LFcg`S;?NOj$sv?`DYg)eqrA6mOUn9i(%PX_u@H{Z*g6(?HZOsK` z!ErVxQW;p7f%i7`Y2DaH^k5E{`d<60^hah2uUGEh+?2M{-mt|TclSn4>=1Ljf}DJd z&ues3xUe})D&$i(bt}Vu-guu5$7j#eeSTmCAT zM;-%>T_+x-x7YJp!^BDA9T0lOFrPX-;u_3?rVJiKMf1GO%My!D-mF4-PHY&0bNW|= zAj5THI@%vB9*@E4bxVeop+p{_I1>)}P}$%!6Lg z<(iw$-`0fWhiDVUF?v$dAqOnARf17b9)>AQvWrcu_wu+d&2rzPG0fcwLtR8Ex2~IV zNiWO4QG12y(Qt%bwv%97PeloxsNjO`1-$r0+?ZWj6T13D?__9ZxVXD!E}`hx=2i*I zos_P?n7INw@Q9SI&k5fVR4(%cpNO#_`x)?7b#-x8m4E-l=q+DxKrDAUSL`xpqeyg? zkz25R(ahcJOtvyVe{Z`3I^s7)b_g%@N(`SdZcML=Z$P6Na(QV_&oy+9&vEA*PkL+5 zRH~$tx2v3a&NWtc$Bqx9V^cTk#uQX>!|TR)1b(3%rq?qCCG7J8$9SLiwl7nzZ#{)w z9PRBVv~Gp>>N|7Tu4Q?3UH34on8LH2U4gT|>dEVEzAd4;i(kztwkqjBD1$;Xjgwq!Ry#^uiI*=aGyDbmU^l82TMYe7?uUG*n% z>_ZF%)S*nNGz*k|R9sRb=|PmTj0P8x537F91R&}Y((p724>GxO9iLez4-2(ye!LCZ zIr4q%F!oqmeQU{MngiE^clpS-p0RQM8gge|fUUX?Cy;IMEZ8@;KoN`Md z>x~?w-DJH~pAcW9!pom#e}1N?tz2;NwYobuLtNhaMw8WMOFofFO76P#c;7SCN98*t zrYw7XCmnluwv)q*S;J>&&-=!1X5v*vyoYRG}SePd`*Z%d<2@ugo_v1;P+&+cH!I2K81XL>(_?ThOcdo;>jw@Idq zx^r`){6KGeH*TmQ8wT?Um5#nUWjh%aQhz6(WbhLnGBQ)QULaGXRDn+5Eh`I#OOKe= z4Pn@CwUaOF=Ov_KS1{OXv-A7`jef#=+_HV#Tp?AW<+$tyxA;^B&LQiXM%zz%kG-}D zl6m53$!FM))}~ow*WJ3@yjZ_%Z+p44eP+DN!`&cecrkU!|9N#-iaAKiS^F42Id)|! zobQkftKOm4iJF3)^Ua-(sku^#+=mA%d8@t0ibvGqy#07#FAsv3^X5G~PLTqxC9}8Y zYSS#QeIoLgqS(cBMl*a(l>mp@NtFxcfmc~By|+*P+&jA~CVeulQmVOmQ)G&O7O24R zH}`^g*@7SAepPE(Vb+cVm4M!Bq4bE0nO3=a?_(Lo#$?Lc<<@|ft%L1Wk2z*`TL~Y+ zqFh_h&qabTE1q$x8QfhzuEuGTl&3$A0(g58vMYOViLMcBo`)Wu>2gua7d--M>A6Kz zzMGzx8qHmaR*Z0YSkaT5GgR43 zAU!I&7GM=eklHcPtqtCNLa}c!XEuAjn7FeLINzz#^OBGk_p|Y<0#^YnSfD*F#9e=D zU79`36L;O+6(=dAy(R&X&Yn$mpBFm**s0S^?!_LBBD3_f1pkZ&c=NWn#L=2DX$5! zzcm7N@R+zKIlk^XT${8lG+17(S+gCUM45D(V8&D9-)p{-rJxfvG~fMx@_z1~8vn2a z5~(SK8Gx@Z_+`dDwVcx+97a>$I>yE`QV>F*gJ&jFNXP%Ptz1O+xeV^oH!KQem zFO^}p&hb9{7w>;Rb}Kh zv=oc%gE6+hvq=ryhtkk1T9Jph6go-ghDb-IODHwd+U}f~UlxTp>~I})PenCnvqnr> zxb60_l028TYatF>1c|^z``cOK0txAjevMeu>o}h+9xd6<4zOQ+@}ubsF`W5!?kA(+ z+>mi@xtNWfoyzl(9h0l9dzUMOERID&Je$mny%sV(N1nW(2cu4S-~Z-jq)b*l;1*DG z_iok|viYht1IJ^YDj@YyM>gwBI8H(A3G$HCgGIeL%;7Fc7cUXcFMUk6_ z*W3+g?!w)IV<%C@-|wF@3nMt9o}V@CB25~~iI-8ev#c`6jzdSTwkEmuu{@_{g)gDy z_WPp=6&!A>&R%V-j|<1m>7;aJCJ{yCFjcyc_waU;qbgQaRP)FviG`FwJXbrk<>|E~ z5MG(hA63=>Qm#GB!QAD*>dB++#x19A8xErMt#P^3U_j zNex!`W1;Tt@wzHY&@Ljs4obQrc}DEDsw=v3zX8dkf!s5ZIcN74<=F0=A2$eq{?(|H!oKJ23trU(Y1iM703(nM@Ep}GXKAn=7kwYa{)@6-J*o{^GBp4*BO+%FrpZYg|@c3I$_z8<>cKP zE*CpKGKi1nW9kkoa@NRMPTTtP>dLt>k^1 z9$2MW^bMy#&|ragNM+UB+Bw(;aroRjkyV>K0U_+(M^EYafFU*EcRk&U1DgQe1#347 z#Be+j8WH?KjCAI1s^uJ>Cfi_?y}N~b-Yx4pf}5|%43>#JpBR{@*)2GE<@G-8a~+X$ z_kxaGl5;CSb!I+trv%)+d0u!7l4O*~7;D(sIh-b|RpU7oc2v>~QH-f7S)x=OdZzV)Yz zIwN)2)0l^ULwQ8U)nu`nQ8e?{>#ee6OooD`%Y^)=(CV&RAi^K!6~39j?|rrKcAG$m z&;P(fmN&vty{OgcIId)4*-@LS@&r+BNn&k5gqY6@uP>Cpmp>&{4;v%jd0raRK}+2x zbw4IJ8J4%jXqK+`tlI<6djWsUQPo$un)@-lJ0xa zJF{^XUtFbd_HY(FmWr-hJsUj^JnwG8tQ@{XhK+3{i|qWKMHjsOo=fc{9Z#`k3NT=lkSYG|Bm5JIA$XsO*pBi4ZArq=>) z<%gBz($b!XHYkJHx$TO&Uup6auQ4f;2}7uaIpy(2?OsiNBvg>{(K-6NNpuBzMtP`d z-0Vo@5#XjhHHIpmA9GiFAGvw5v$mI??Vn}pIJX-(y(*g2CbtmUl3bg}?<|H2wK&xy zzhpnV!M*JFMCFJx>K3r3+JTgg)I=_8p$O* z@^mx$va!7%8#cP1kf*w5bX~J-D5&TVf5qj5Il!o1?m5J^&aRII<9JJ+p%>!1lN)$P zk3Lf($oNlP%~tb%(Q@DjwV&O?xJ(!O)2BMo6PP~p=9+|_az1A~Yl&1#~xV<6O5x2?&)bxt`SPpDcTzHK0z`6B`xhUcq5INVGjaq6J&ML1M(k-%tk6Hh>MFQje>yI1)K7BF{vyFkk-FY# z=bg!gJ+pM9kRSBj7$@fP-1T5?g)!x@k8=AKJ9*O+zC87K9TmUqQrAcywh?1uq7tV9@8iI< z$goQ+d0Y0uVvh;Dek*nFK%IFT>uoO^mbk~CzIeu?f9Ub^MRNlDd+s^Xp6uWuwj(Wr z9-rhnVt8&LN?e@wH44o=P>qenl;6C+&wd%y6!61QAW81m9P(J>^b{I(j2@~xoDd&z z2-4Rkk#zd5l7kOb^|CF7^i3Z9)DmXcPFI`|hiq}6Hx_D_QjsO%;?*S$SWoud$~OEK zQ7Bix(%W=#5&^3=venjjeNus!ZrFs0EON#bT1u5z)Dk2}^)8-m*C|G?C}Zk!bjEH9 z4Rl`WrXp8$DOcHGnNSMW#_fGYkZwbt?7>#5=%L)a*_*&j0+j~C-~dyg9uVkMbD@bY3aVVi>ao5l6c^zokM{_6VKu^jTVB&g2i#jdLd zpIY}=RZH`NZqm?^PI`U?tfnd1Nl{>y87g-wb+T+;v)`^lxY9r`)5O(Ju&tn>9)7WW zxW*r9UyLcMa5>_B_f%1b6ggSH@3tS@blHJ6HfSHmY&DgOE$EhGEO>Qd0d?dErsy^qnmKfzD4 z(okJ(!yfUWyoreW&HA!$1fN}qd%Ky*yBLQiU$}Uhy-76G7!g{>P?BF#6t7B}mBROj z`Wjm+Khg}Tv-{6BnbvYme`^}uMpg0`S`MB%HiqpOEQXObm~UaZ1_BAv6NbP?GYPFJ zFAC$+%HGWhOr|E}S`H_XS$CAQz0$n48@8)3tXhRuXjf%D&?(JH%ixpbN$FePCGrlx zdEKyTwS{}sJr9z-9=j6%HAirkjRG3E#A$X$h>QEec`n_6@lgh6Z1mkW4v9i_$K%6U zuE!SSJdhdN10H3|NyaqfMWKw9U`|3oCN;boPKORH06 zS%kedo4{O(?7f;onSc`W+Q8wKj58;<1)7(!xvx1mR~d%tXDioWwN zGjO4wm6G0I_%QVL(X9Js+aF_?Yt{F>o9`63lmccw0@{HX_btcqohP5s9p_eUooNuFl*WzqQQGtygi=0D87 z<=J~5wK%+Rf4`lgV%_CjjWQ4P--3@95YKnEuEF=!4@V>xo)enigc!hkd^(pm$Wd(! zQ_fY+{(3pI95%(>w0yB8QMHcO@4_pNH~hCTKP#_!*uI_yTTcI4`}*h%t*qkW;rxC# z(>*RIzb~ns+NSEJOxE3u2p`+6r?~`R0e7~PH2;wt#Cj*g<=U1WX0LNkl6R!}P!2a& zGmR`=LuIDS{AOX1a1>)@YCkzwlDP+)@-x%1YP*uNfZQaxfZo{s`2h-k#-@pM>NUR2 zBBv8o0uNT=R9VPCVQzFcpRsdPg%t^wW^cRB%B@Mdr}s5rC+?}C6H*3$Rw{nITi+sg z)eB?VK+;`y&6i4d{WNQyl%d2g`7nZD*=5-{{@m|ixcA&3H7MG>pVEH4huBbxG61^4 z{{ekq`jU+D3-n~+bi*D~z;yIk+2gz^IiNi`&Q8bHfHe0(a*?Y(j7 z2F?Q)RpM?RovZzJ2Me_kud{E9a14DW6kAhCdin@-DPUN*{cB_}BxX5?L*gWZm#-Q+ zT)$xfnKk?|37+uxa@h%%A{V3f;TD& zP$Rjx$P;4RsqWr}zJ<)=U<6FN5!~?gEmWv@j@-y_P<`jAj8h;o z@zH2iN})40E)@BYQ~UXFck?BzNnrO+)|&+U(v7gZi=M^sDjc~`Fv_iwg3|)#%BObD zBIME31*N-KCf_w}s*|$Kt$zJvFU}wuXP{)8&W3POmWQL&bBq8wYt<>8);uVnwME*b03FOsJb^;OeeR5&$|k(kt=C4;~gof(0}~SS`%P! z_cu%Y*Z1{_2#)nM_IdIP{;&JPorcDo^{#Va37!u?pT>lLjL&R_2Q=7RKqV}0toJ#i z@B3`|mM0~&ufipxy9CCD?=`eMlHkDXowl4-X0G8q;p+B23xl=%krmgL#2m^_T2-Yd zdCa(mkupXtP3|yh-CIkp!+1Gf>h+q(;QG(2IX6ng+<4XVk?peQo|1Y1cjA*+gKs^N zPH&6Kgde+$)Co)=i^Ph{xSJ);Tp&enBbwb^pal&ws`S#Qo|P(2Io5PSyKr}{R9jje z)`b=6N6p?r^L{dTCR3!(6%!tWSDGw6$UJq8e~R-HwKV{R#((qH9hLfV5q4%KewKN( zuw9@!Ct=NTyyF#FT~~m%F5(!XAa8T?yQbg4i)ul%;l;|1>Fiy%AqX_r`(Vqj%X6O- zKc6`7VfD6W`ju>6CMRXrkt03Y1m>I?wd1^=g~~f%t!aVr`a- z>)?Ox{<|qgPkY@>0}4;#Q;42REYNN=0fvM(hr01q!wIQzGUJnEjvIrM=aEbW9E>;T z=cjAZ>AKv7=kTd)_Y|{#R;;_@_wk|Q3NTMjxErxFXa8ODi`7jtrGgprT?i7V8%mm& zShp7O%BiYjS@X4qqT7+Vc^7r`?snhG^9-n86k?;iWTx_#0hfg6+`LX7D*z;#~`uWUb)%RxZzQX;(l3#->^>TuCV`QWkzwda4W_wYnt#n67BlSchgR1|& zeQonN4zPVw4U6=xf!$wg(&pVCT9D_L3#PAacZq?o@HZd^)Rs*YczH<@Jn@UG@Ph-z zbn7ZR+;H$}E>j#I6t7p8KCBAv1G|n%*ndA+wkXS*&BK4e_1++Dg5cjx2+6#by&l>9)3rZ2D8fM)b4~{Nf)jz$|3kP z%t~YdXO}S$1n;l1$ zwV_43I*&&UCK0toTy9g}d+jhVVGJn1K}j=QZb9fii^2;U8QqaWL$4ZBY1f~2Ie8i@ ztY|dbb&Knajqji53iFC@H(e~(jr7YWFkAN+SS!qy@>zNQB<9ynP+X4Y84O$uQyi;I zGRLv%^e;WR>Gi5+@KvUpdw!bXaL|}8nc3)wEyYG{e(|8pa-CD1i~d*XW_w}~W0B#2 ziJj9usqus68JMTb;-2WjTvfjPHXGmh%2sMtW3jP)`+^q5_>%H~CpRWu{qdxrsorGv zALKI=wUgnd~q>ZR?l}dKIiuX4){t}HJmtJ;HXVlo;#1ge%nI-2vP7Gf}|U@ z*mQ}wi_W|ocU`K^7Z<}DwO2^na|3!0cUmsetfeoYhXPaEn-jGVSxOmxi<7n7c?da5 zD5*AWA&tpGBV!pwNeiprV)l_xN?t(@*S{`PoexXXvB=RWMsRDrInL-=+uF@!xQ^F1 zRPeF4z@`AR6HahYR-H=W$y+wERk`KX-sict?8FDwD(q~0Ms7H^x8v7g zOnM14Zb<&SWW4w6)H#{|B&YI7h=Kh&I>h51wYIeoIbM@sWu@yUD&PxBVaE-!x7&`* zbJlKjlgLIL9z=tgcO2@8g}ePAxcI4HZK-70{(LJS;EEnI3D{w1!t82G27Pa zD67>q#I7HGbmTI`0Thql2;%O@7;9=-o1Yw86{7`qI69|m0&SghTq!m!${%m3mHu#` zSR>e|VJk`1DY82^yiDg(rRDba1OL7Zk?#>yFga5s*dF=4@aH&X9S>t|FJ{sW9IOO^ z&P&JNDZMOXa|%GA+6r^Z>l~Ns=eL?idUIboNL}B?bridg^T!e16tZqQD7=KZ!$pu+0^>i%Yjh#U#sx?e`PcA#T zB~>T(!@zT38;~>LA&{r7(D z+0xHrr_BpH%Tti!#YzW@Uj9&?Nn^XdvUzcgJKCh^yMK%1mU`3A1P56UvQP&7I94FJA#IX*?4#16kk~??l50)itmW5u4w@394noIf>--{h z2E@nt8eX&og8%BIo5wmMjhI1i3t`-4W7Pa}duhLPq}Y5@14ZFx|JJ;NQ#CFc<(ky? zd24%etY$7BAab#^d(dX{lg7QIgP?bO&x5%iC;pi}Z@6thXxRUqp=0TV{bKaU1(dSo z99~u(B1P5|CD2BIg)PaXoaweXexcqEV+;<+#>SZ9^gMWeFG`@BwiwlXm?VE>E$hB~ zvUhoiUhfsMO2@b!6z9L$wklpR(AuLD3VY>7YT(UIST>vbhAuqW3+1OtjIBl~Xsl5Sl5sw2c*uH0vdI(yt(OhwgQn8mgbK8=lP1J3LKS`-w3GoauiYRqw z=$*129kzbaoz_Z;@lu&ubjVSE&zq#q zj9c8Rff~oDBm`ZgxX@ui8^1>Jd?i8yI``zs+oCdLPmxI4bZ%6@-L4yadwaPQWY9a| zo6`Ye_(wOsopwm;AmTe3Sle~B6wD?EPe*)4HTbk_`#$P8W^XN)u%XUa7Q@eZ#%O7g zE_*WfnSPK*w!})1dLj~i&$P`1h`YIkc{ny?q_hJ=BOXrj9qSi;^sZSu6w8ZV3sGdS zU^JQ}fP$$EN}`4XU1r5yY|L&~Co#W!%*V-q*a;%l*Y{kiDG~FT?H{+4xfjaWATO>f zz-j%cEtMx`XQ{gDF~lpdh1p2<{-Yh4G4-S88eJUiZqcWMjl`q$V?)FfAChGGrmF6W z5mw(`rs-(7preXB^1Q&Lo~$wym8zRj@*S+NXzQW+ux<#PKRV*5n$J20KGhhg^(4Ew z*J;TGFS56x%yzG((KGsgSO1dWl`ny4Raw{`+&b+gEF9+bE{YTvsO*(So;B`|x`f&o zi)b^%4*e*7JR!4r;6`rWzrA`R$&dpacF>q}|Aarsu(yvvrk`KCw@DJ2RPptzVVa{X z*9+%HAq&Pw*V+8_R?D^vwr?n;zdDj@(ilq+glF%%exrfEjDQuIQK;vdCDl#pu3!GS z{P6GwpX6{oCeP?JLQvz4Da$CeQu9|hL6WVAjM=EB)qeb4=QXwX;`XPV!xG+hDP`9V z7k;HuJc|7;$PGErUYQ!vIQ2euE1KoR0ZtOj;m?x6%A7v#K4X%6wQbFV1>-snPY+ji zN>HD4VhFt8ody4MeWoeI&HFxtgUa{a#k`NpC{B>rBg;VmBSBm zPdJvWU#C(}WgT`<<`^8gWvNtk#z~y3lqehdzG=-opnX6hv;pEz=~YXc(aSUE*WW!l z+u6vMdcbNBpHg*0gY4E*wZ!Ewxw(vb1S#%E`v_gH;IYN^-G(WVb*aPCoTsw3WRmyn z+uEJn;zz3-%eUM2T{^PjkD!`MeU=WYw5`T>lyP?}K0~ZG>+p}{SF18*-+8l#WPPh! z_ozoFBjcd5iUYPA=ZP9)uRnj9ybn*HBVvr!bxhytJs^f{##_x)@FjlVEQO!Ev#yes zrLBWiAxA1ycp_xE(>G(}g+3}ff{kh?*X3%qBLu2Wp~*e8FlX!igSC(x!>PwtuJnh7 z?^3C7S@Ep*#53$@CQJ}lr+Tr}m;a2Vpxa5|QQcjN4Gw`dYqXJEmEl=)TPYG zsNF~9i{PZjXm|cFo46_h5AOT1qA=XSm|!twuddc2dMz8@t$z%mm)vcn>mUlEAgTA# z;;pLxao^?pQGZoIE7SDFAIZus zHOUcI7y1m%T%^O5ew1lH5kR@jb;cHTn10kcr&tg|BNa`IyYYDFDd z=uhLj&XW9v;M|R>^jx6>9|xOz9Ck(F(8ymAewUU{76#r*+!d3rozo}11ENzRS)Jo? zhdD|Z4tb$Oim$&>pluO@u|3^hB577H@UN=udV_mPj+Rnv^8Jm*$U zXWj6iAm7s_cOR^&WiXyOWJAp^B8Dc?!yHj7YHpo6sCdmO^6Ai=@$4AOu>-4vIwB6~ z&IkdN#mw9VX?%XOI3$~MBTdIeh4)FH1VqlWv*YW@l)E5*u(L!VXj^D|d51~+BDCtR z6;W}*)bP`$b2=&WB+8);*QH>7Lg2(VW#VstJ_XwY_ERomE)b--@!s3nqsIB_@(pNr zw-@|<1y?nRi7X=eYWGHE`v#Juaq!eyb(wU z+I-6-cT*^d4v}&z=i3YSTD-UEWVZ%3ctUm0sjU7WtUU}(+x))`v2Ra3EI%U!y~W{b z-xftbud&`K7#;N%8XD4(c|f|s7g0k}udCKGx;u3`irXRzv#Gv_#j9CVSw)a9#FQ7D z4JO9Rye`AS1@#>+xZ)?#SU7w-0?3<#+Ftb?m zZK)SZ7aal<60P==qOUfOSJFvHukAglv*OR6&Qkq>QSvy2czni$Wo=1c@bxOIjRdRB zY(Kg5n5awY7Jr~Nj-UH1`e0v4I`MT2D1!a?*UT32zVv;AWzcse91`OPN$GY^*yO7> z6Md+oqfXQIUG7~m5co$0zrPX+(3~+3HrTG+-InX`!OyiS@Uo&jrE%9qVR{b6nvqS` z_Z5lQ`_kh&FQTLM@Eh=E%99_}E%^n(%VdDV|K|#CQ#E*SJyVRG{9hN)HLfRgpJjP>YAGEoRFEJ z!?Vcy^J7Su5dO<{x0Tf`Q!N(Y2Wf4wMN~RHSzP_O)}jif_Cqh4n3KF+EA35n?^e7a zRh>qE-?IHiu{Z?KzfF3nol4uN^1&pA-*Y2%a`23|TP?ratQEVN&eQM^gND^QmS!G-`ynG9pGN-(_HS5?vn31= zC#1)>P9Y1CfUavDz)Xoa>I5-RGaw_SD)Qsw&tXg6ewJO_>fM zCPg(}kTy^1NB73b2Ne!H(6mH~T_g z1(~dEe`Jdj2E8kj9@#F)p+hHK&i87ypLi(7_eIssedrPt*gsL>6bKd2MFC#Buws0e ztHX3*GQ2g1Xj$7+Ii}0bja-aYmGNJ>sd!xcqg=I&7*S%ieIjrwFAGb}Zezzk{PlUN zvGa#;=9EU3_I@D0$Oxcw5L6`py168l`gUbx#OuWCCX7h*87Z_3>nkAB-_mqi-4QE}36b>2hA z`Hi8;#bo}RXPWt?+He3;Rc;OaIvi>)G^P99dZ}`DJZOw5+@#fW3*A0)C+i?C&uc}s zx4G1?RqXYMqF3P1R_^kQgv=!DaGX*`NLdKpgaIErPK}GrnoSa&ac@{G?*GW~L`RTO z$V`)k`-zN8`+TV4Ij(3ta7EUSw!nu-;L}Hv!KF?p*q7ZVyq@`LY2MeqzT}40Lg?;*Go^YR5#q+vc(t>@+!Qt3c|?Vs1KYrY z^t$l<97ffyT0+64m!yjwwFFgD4(x^cOBuhxPo!7}~{oxBl;q4S=oi(cq5NHBWl*FqA*`7RFH>5{|L z-AGEaxM`AV>C@!N&bR*+I0DE0##?dD+b=fYc<`0>`3l}g`B1lP;G?4H9poow6;-nT z4^{8I8I-x9AhNI`BoHdk%DpPtX}5ym_G}LTI;9V6`uX<#4M5^dcZE@-`0ej;zd9Sq z+x>0U*cck!u`lH$H#l6)of_ljI|SQ$)Y|A$tN*(X%HUDt zd_4|Ve-DcTyKU9vDyBbghyR57)nxy^;9l!jI?Mew@9enZ6!iyw8SA9wBAELspZ&GB z72k28@uo-s2msu%WCJR#;Clam`(?PDU)p+XN6&O@=6r4&cJ!-4!Diaq_~5K0B|S_R zBca(QPTGXcCW6L*tdH3o<7oXPcVkK>(vN{py6@jc(Il-opQEm5zmsmL9B0Gz$x#Mnv0X~(jBciG?YH{)UV z+dh4i?tFcU^`~*af7d+tSL<+Ac+e^1yjAg3R-g|EfLg*a= zgpjkr=XuY2fA@aQ`RDG>&SqxT%$k|+Dl>a!f}*jp3g{;2pX;6Q--Mj&gQgqgHyo^N z^-N(`MK@j-{H3txVqGU{ZYW;0{LgjO@&=H5^eAufp(*D7d5vTJ<-`qCcyDTL!m4O% zOlfYar*_SsQks&Jos*rNkDZ&60b*!iuWxE;O!>yr!PM5u(!$Wvj`3=I4}g!Vw5r@2 z5q)zjM@yKUp*83It1^g~gsj3ldGR+85zZU8|8~SAE}?b>etVT_XAg{z4s0jX58>$e_d&^R@Dv2P1@dCR4a;1WHX9HyCZrFu z{U%_lz@I~j9i;qA0QcuHoxWvuMK;uOfRPsGzQ%130OPB-RK8CjR}Z}aDnCNt;ZJJY zMU|6md-vt{Z(r_mc2RoEajs`YDG08A&kPgXV5k@pzsFKBA|uB!uBKnqct_g}HXwjV z{^x;vJr7D?EaG>F3?7K%T(J*e%#ODOSpA(ACCCeyCP*ssiFE0c-cr*3VH(8)X645` z!(4AvROR0Rm%X;SgW;ru{iK7tM!c_9jk`vTuhx{WHq!SKq2E9Esrw@G>b{;jw+!#P3ZMeF zu0{j;W}2A&|GJGdVh#WA_bZdGm!MYwmYp`Foi;RYAT*t}%-GimcYy$zzJf5f+j2|6 zxI1COz%6C>x;t8~|45GDUm;wH9RzyCLE3IZ+6|xqVHvgMQHP04!sI6bD6SCsKVP4( z^#zy+Rf6=OdLu)>=(dKT=|y!Bx$rIP&J9Z zHa9-$T7u>SM9Y9I8G91iza8+3k_Y(AE1Q;rF1~}jWksq{} zB44z9!WVp}!1!GZF(Hk^f(^L6TOeh?+{6Po+6eVR#JVV7hj8E!`2=v>q4FLQ!=d$! z=ER|jiGZ{b0@-d#pJ;JuqUZ?7TQ~^h1;PeC_tJ+Vp5Azs3<7kpT#t2pWR{XpJ>UjbOdqWB)}k?h%6t7CP0W4poar3u+yWzLZI-h34mZXB)v`<4S|^EMvrMS z&{hHj+L#GVC`a~$9^N&p!mKepGsdb3&4TOBv#vV7B1p5q6lAceVg|$*ffm463R2|c;oN@5vlfR(0nZsnL}VPPeq5Dug7)u<|BHG??d z&-5AK*PX+G&MT{~I=@GwVW}e3 zFW_;!p7}FiRFwdMr2~NEdQ>bx3%SB}Vwr1JK<5*hp@o&iDl)(X&E#@{rL?cIk`M;8 zxay;l5Mb3w2xS3*KK{4?qWs~*sbtb61ERbOEY5eRI+D3?7~2VbIw;|U-VYet<6#e8 zzzJda;vGOrru!MkWR#$FX`@B`|>;S+kB*Y#-OW17KKJ`fpcT6nBpFb9wV>P2e? zbHu7bWO9Le!KED#8NlyN0A(GCK)-;%LP|R{Rb;N<0?IU@z-|c}AJ{ZW4oOSKyqPlj z>5KjCT4kRANa5+>arh;}9&qAB!tlhgscZp7$TEP4n^M8$WZu$dJre-*48qBn4p)NE z(PpV?GJ-%`0K8j2#2L5^Xh9L!!0MIt1lZL0MFTK&kV?n^DC>s+It`Q|q9MSP<6*#q z6j(2SeGh;hseT^-7c30G0x0XeA|R6W|E?yuAka%|VDT+cHh_JJ{05lkO;9edN^r%X1wfNYxyq(TM~mYC%LIU& zF90|^T2=EU9H~hu>`E^3iK;!{JYQO$o^02f0tdSR{tUNT?r>dV3qW$Z8A&&Q2)D)v2AB_^pMVpb0;)_TN-$nk0VetZXa*4aD-lMsH4=-<>87Z7OZTAmMMp6TTfsgr-EzDq>+*S>xO z%iq6s&1n8@PYw8)e>nX+ivRz!|DRoezW3r`|5(E%F@7&C$V7Ud_1XrX0T$O9uOB8x z516qgH2#Z{_*z!hh>UqDkBrzASP;NWCOFr=M}L)(DQthHAClk=fxHAfDBuq#@Wo|V zDxYZum#%6;vD32v4|=6wMUCDOGSI>mLj4i}#EcjNW95`y2+yRZD}HVTz@YNv1GHZt z0Pye}6U4B79^{-Xz&R0G#Dkp%dyoyEG7IHFB)dKkJRQ>vtz9Lz8xlj1+sPCHtKfhL zHkI36ZRLAtKM!KTn?Mj}(JUWOZ0N2CGS%CX1JLB5ma8gaHH6SX0VJspzThc29;hqS z8uaP|`_~A;-jb0362%`6J_G*cE+_z4&_VzQyZ7+OTHm~S#Y&a=2qYHJ_aHE!osuJ+ znBiqMmRI|2KQ~a<(A3-d8ZTC?4@2$R*y1?i55Bx7eRTtupZ~WX{lcCPN%A)p)s3ru zuHLJE0Vqs^USuRBEU)dIf^Z)aQ897|h)F90?ijczL8pKdRPzcjF_ zjGTfJMD;&`2QM$L>$V2AP&a*4?>nJYdbD7J2qziwR z?TEUcQX3$9Pd-ZTKj5NvcdYrY)%kXopyhy_TTGx^xbBgm>4d)}{}ihqEF*6mB#hoj9J&6^pkUpnmjJt|er}(&%(q5xhK* zNgt0fpYAKYYDl%N zL^;Sf_om+;d-41^65@N8t6>U7zuMyD?B~LrUahI9RC9J{xv7l)z2a3vmuOQB*+yiu3Bt^`cZ!TYEb`#kWsf%34^tpK#@E=~J(jIX$N#{J@0Sc8q|l8uww~QT z@ofFslQvgFf{$rpGi3+DNej{GmW9SSkq__V?UmvqT7_11o1GCXRtrr6&8d@d%DYz0 zTMPdCc3Y0cX}t3qGQ-38ftNp$)LB3cftwDNO&0H5r!G`dc1_qZIf+_a+?fkYNoRcl ziW6$}V#6WccWCgdF}WArtdC#P-vq6Ji?xKfDbRSmiVH7kIMWR?B3r{BEtBBG*~ssv zzG;yc?WZ{N-1XS36}BN=J*B-o`yHnimlifeV!5keidddSB9bu_$i?<3>&*M|r+%7F zP4*6_j=d~cq4y6SR!VN}h!)D%i<-AD60H&+`d2qTmv{esgwz|`7hT`AcTfoY`4VtY z+~S{atk+SW-Y4+WALkP>^FP<>D247LKCi+I;M$%fR!c=go^gC=_Qr|NEcugX=~9y} z4k*<`&J}~jyB>J3x)7`KGxnDD zCFLa0!yZBbOq2Lz>=YIjr_Dk!42D<7B=Qs&9KVQYT_1 z+ECa;RDRYbagsi5L2>M&a-!jyzqvTMN>V*oO+j|VF1RdeJ^5in|Ey-%W0OsLMv8G` z{f|(6Dp-DvUcFU8Gl1%W9gQ|DN2r0!FP9+ftvcU^o3-V5gEKQ(@oL4Us4;b=7IvxC z@T`L7NYX+3Fd-kzS^g{=y?8nO?yat3rw(_q+Pu~2 z7@-;b2564N{4V5m{#$KpBbrImU40)ivog%LH2k!Es(dWio_mU1Jg>PNn|18Xgy8MN zQCSVvCHj(Km>Oa#I%fx3b^(7j{Y{fPQxq!Sum3%djXBpdyZe%pY@?I>o!W=$X*w%k zdEbSV*({73wEPI*2=NgyiG7wf6C^Pyakj8HZ(MHToP8KcMrP{kJ#>Nae{7@?c5Y5X zdbdT6nJ{8ZC!Rk#x3#ckjk0E|9^dF(LjUaSJTFRqL;bmX&3Ix;vg67}s@@g!gUqjg z#-v*{2jL1_pdXPnnCMyiT+5X-GgRUEHs2Hli-*cPP4cJZ#%nXTQyIwJ93u|B)Xs9u zE6g6>s`o?QSj-Q?oI8vOg9Z_9kffyha!02Oz*{Al51bg#M+%MITz^m{$Y+118oy9p zH0jwM$`|nM#V@|w9Jeqmih)zb+K5LRMqO5JZ)6V%5OZexX?kvP@3JBu?0kXuY>E2N(RWpxBJx^&)I9nh78RdG7O!{I7g5x& zuctTm-bspAg-MR)Zz!Vm7aD{dgw0z5ZV7o3e6do8cEH1VHG_TVB5N+j;-nHy3!pPG z8BV|UlhBgjlhLs!<-?4rob)HMN$s1DVPvKu>AG&h(&qTBZSCCW6$Cj}6!nK%=vp`& z zY@MR;%8Zr=sRx_Zh||7Nwe}B0Xtpum+U4o36hVu6Sw2bTn&cm z!JfZ<)9|G5p3@|_a22E1ft3%`_N}%!75QXFpUbGNs*OpVbs%71`%_?ey@(}lCeK1p z+BO@6DPVB!qYYOBB5zway~T39jCn6@~~-pF4;1%(PY z)Mz_FRhFxrUf{_Omqh4Wl8(iSr+dYsEST)d3i~-A-|lGZ7!$-B>diL%C|;{;tBOTn z9KEa!<^v>3i64PpKZSiuAQawtS>R&Z&i-yFU_i3;;X-$E>If%&c6^9?;C^g#=V*%~PNKHF%w{UW;)%LqBSrdbo3uIue5iN1veA1|5Tv zQu+iMf02_++q@L5_pa|m^iD0#pvM>8W}s$c+T~8?wB)IA1c%XJ6n?XfaD)2!JH9X? z3Rf_)bD#h2G1nRI89%twk(;_b+AmiZI(s=NRCb}S2(uO@>+IS%o1-|`Ogjw3Mix`d zxXn76pRi4bPUhDHRaroKTvDqV&vyzhLoajgXyr=}WT_{GUnyB86U|1@w}6(kJ3jB36FTX?dHKK~9aO}yP&VK(cONKCNYSwFd3 z5NN@)1it&Sj}@uZVr%1_yttRTgZ{1AgI3&Lhc6N_lbwp;OHc?Agifwi)c5xVjvxaM z$sFoBH%1R2jn;6}pr%IJ7994iYEB2;qD<75r#a4db2^;m`3B7M<8(#(Bumvx71xRA z?!rZkTPns;pRxG-c{9srG%tDE%S8F;+XQe*6s9b?8dzcm1^Qn+{vk!4_8rPUd^`_q*}gnAlzB5Tdx!S{aHZUBQw%t ztjP|E$Xg(}4(mzvhm#qHm*-ZxJ&SpplMWTr=e=37`uHn2^;NR6y-`nX@l)a+F?+|m zs4lFkr<*8ub|*<$#NG9kRNGl8cJs+5i?Yc&3QGUpe#fSOQo%i*$9tjsi7PWb5V9q0 zvNqgN{_`fso|>&@IqZ~aK6$};<@7kLlwm8!DIug8r$a~vIbAEcER9lBX)dMDUngsB z;coiQNkulOiS#WU)#;U&<9=O>akhmXi9mUj?#~7{A2;078wP=1|NOCJcTbH-lgn$x zxSA)fbu4-!K|8i+wYz4A3H_eSnx>+%INVA>olAoN!tK`JiAJl()fd!k5rm%SEa>xK z^gVHOkOm@7*_PpGQ@)V=-IK=_`a4lMhsbgO^A4xwPX@JSuaV7-<63YlO#Q-LFhi_| z`%^{F%Zow2a|^Rnw-1n6-VwWE_uW5EhDhkLo&CH{TH?LVIRn8K$Bs8Ouzi9R+#3gv zP|1b#iaqw^Z==qbZZ8&_+osg$%s6lH#9_mc;H6Fd?Oe4dMmH`B--B9KUk!8)(qqy| zw2I@tp0{;UfTxPUh}0?aX03s#ZUpMa8gB#4#$LpI5BRFQb><@rFIpZ4enaKh8TCj?skEL|gE zfKmqMm+wR)TH=`d3>L-JaFWIn3_feXGpa*kd& zcSrRg22KY@-3D3L#EBvUYHnGjJ}LdKoeq~M*W8RMYoR@Jur5J5+I;IJEG*liq;?hs z7VfC?QPLY;AmN294o-t=0`S7++F&U%akufT<*^9(#D}f=Trlav#T*W>m^#>GlcQw$Gc<1Aat8X_C)HM}G7f5~8vhRH@WN^d3vk{uAHy`2bUOx*j z`8^Dp_fCAgP(J>)xy^j z-0Xrm{$vK#g4rkZi#ir=n_&I8WbJPp=o^`M+bD57HP=AvU*qHN>YHIpLT8(uVVR2?Kk_4#_*Ldlop7>8zF zjMesTz4Oc6yJ1RYYqd76E1~n3)y;vIb7R1sE2Xx<@b$u0l_*iz0W%v9$SnUMF+<~} z$>9B@R)aT}VQ1KL_bK!OE5k#>GXHR;i8UoH7qFfl(I-ggY!J?R#vQu9N#+NrU(Vebw zOrzgS)jT`-Z(WLGG4i~qjS97j;E9shN}K56`U#%NUOQ}r?Cpp$lD*T_n!}0Kq*Ka- z(h*+AMV@>n1!+6F-kj8(B+yrIOul>D8Rp`GnQlRGlpT+`s)fHKl@zwZKU-Hm(Jrt{ z*@YvklWL{%&K6#}Y9#~@=<5b4Qh`~GM&s)(DHa<>j)VE=ifI=|d!%>ijELY= zQ4vPoxsGR;-r+c(t#mG7p#Y^DTbwaEz33TR981wurB&t7tmA3a?D`>+?4Xqvy)-^A zykZ5H5b?B6SZF#%jb9|kfxB1Eyv9e*W9bX+4~DX%XPCi8(U7GFwswLn@|o-nCv3HXXN?TJe+KLb=~r%xdm~jy<$rC z(R}^6NP)XT{X{lJdID=GA$zin=99SN>=_%r)UdNDq>KWzOQFV6lFxsIgOwQ-mO-E* z7RHmXd|@|d55=9cD$8}0@K_GaYv7LAHd5zK_1MW4a!ul?#pIgB;YIC!ZT-D&Ph-q7 zac9nki8@e0q;_g=e_zC7G|FpJk1?V&QD&Nq({d`^sb4UF-2BtoO_J@Hw94O>CV>ho z8+2uM!@kYC%{0rTF@Hi-c9m>a{hmV^GMZQhx5yN>_`aZ9dFjz>H5%U!hTY0?O!{oXu^rmr*?F`h z4OR8zywT8K@DQ({8k^YjIJKAz8~e`g1ewpUq2ceweTZ)c+6}K43vO6$FkxgFBrQT# zvrAY`KsUv}t@WXJTW8bNJkj0%dn5!yoUawoVwP{_?D?XAL@~U+9)lnKeE6QJjsrRPGf+Y&v047TWDpItdu-is3Y(f>0dA{( zyZn2qm@&3`VJ_!Rf+Sh;nGcP!j(iMxizA8J?!5BqyO}$NwhQZlFWG<6TnbEj;d|hA z!f`X<_g~}Wn42@RBafs0s;0xUc>#h zk)MSFc9ERP^(peOtH2Wd+zxOi|p*VcdAaR>DPDOh1q?b*?R0SL;A^GBcLw!4B3Z@hbL#|l^QTCw`utbgyW0c>T811-HJ7omo;^Fad8`F` zwYWF2p1pHsR!w~zZcmCZ(h5(}mK$7a~VsS!0J}vT)ko|U#bnPBYVNHZW#S`;T z$n<4PL4#6lT41O#XT&~_UT{lJ68E^?1N2yg7EeXI^0>&r8_7Tmm5>)ZAKh3Z0#>po zLQWEyB~~zGV|ZNMbn1U(t<%_U2O1ed=}4M0m*=4QvRd8pB;@HexQ%<#Aj-U4qzFk* zuX9bhn^%2!#~{nf)9CYUB>`*C4g?F$OG){54V{|WGNI|uWOF(;TO2fyTd&rEW1zeb z8F$34Ujn|}acVxHQ5HBfdB~h8F$+a)KF9p?w6jCntpW z*>|dkd9K=d1ZFabA+XF(Eoa{J+|(Cba2)MoC-ujDTz!o7G_0&NwXk$kzr}j8XDnXj zL;b8mLjTd{?1cD|k}%z2mz?3W?D{{+V{JC>QmrvNDz&DTbcXcqt3w0FrEM$?e$lLe|6qZ`1=3;A@ zE-HlPjx16nJ@kI%fx3t(%2an7qCmsWh7IWu_y5N|A)E2tJP+2gWJS<++cX^}wQXJy6S7v}d?VSsX1Cr-9x zF_0=sVDns=Op%9qqapdQqR@VKgEo|gG$=GYZZ~ml^N(;F%0p;RD0IwGU8rdJ+)Kkh zY`A;db&a%Xj@Saa|K_;dfZ5(SlE;mU$YV?B@c893$Wan!1BW&KE&reOV=v@3^6nyW zK|ez2Jx**e5u_C0)wd_Ak?##fpP!GW8Kz)dTYHo1b_qX7%{$pAg2^@8m40i7@;Kp% zgS_rA`R?Ka9zwEpiyrbEUvMTz<>Hs=&vNhEUw-@WHsv+X^A7EFa*GeEnv-P)Gio`&Guo0w=N81HRmEfo zEXP@Qns#n?Fp(g)BKByO{NbBMD|M$F0p&C~K7WE7C$80}Dy@HVKAV+(Q!ng8QoX?JG`(zaaj^@IPQg_=%Y>yMm;YQ&uKN?DngmGH?UeUQ08~y$&3?qjuEU}ZI z_^fVGT(U2dCc8!>+!ugog2DOY%&%CP@AkMzof(Zf32uN)+e&cfF;&h@FKgXO15wW~ z0uNv3jerF_LSu_37I(#x@l{%fZaF%n2{$7dH(B&~G@{!{IBg_kqs90-0S}>>yv9fI@6-ex9Q`$?qw5{hqakCI$40L0(n&?Ry3mKNUxDJ zy<4H2gIY5~u|DdxbWhYxBqF?cEKPC9sFGnhDY5y>|Q@S%xHa=pf-#;dD+ME4(lisZ<@m-p~ zqL#}RKeP3cXDyGeAPw81_`~emDY1q;cml6kT(lj{8bA2==)F3N89#0_Sn*wSxyO?6 zM6`*ZSui{7O0hs2?x=%wh$KKS^Xvm>OE1? zDCSVV!&h86EnMT8(rhcLHb9s5GBw45^7|eadw`dlIVBA@HRx7RR=Vh#$1|-qOh=Tq z@H|kdde7l!U2-s?|iJ5uiuDD*j8%frl+bn+RoNG=Th@i z`!04~a+^k(y=!x-ki|@0=jG~4$T5!o*t{9*TpgPKnQdxSAsfEqK#r>;#pH1K$*j$X z%GZ`Z5-mO-rVXvnAG@Edh3`{AQ)wEDFs{>8Sq^IT(PlzB6dg09R>q>djpI>{;X4!I zH$lXDm@#tf+qd(z1}M_{W-m4cd5NTBn2%YGK9y_MGlA1LI=AQd*xdL7p9CSu-koU% z3K(pB9U+Wb4rM~OS`jd6ZEOr5fSW_+n~@Hek`yUc;IzZ-Wp__k7|N(H;dIsfbn|{S zc^vmQMa@#QpWkHXoslwCcA3XTgcX9bO)IFanqvf2!*+tjh)8%H}+Jo(% zb@lwBq28u>g=3*Aa^TuVd%hOT*E;sY%4h@=^&)gIe4LNB>I_3YpbrIV<>XXa8kJ zMN{~e%;d7FnrG4_as}yeWTTrdt-a~;t4O%kDrj+4mUv@thMa^tubPaE;gf*23H)+- znOZB2{zJg`A$&6*&!%DD_S8BlgYSj`XE8fn0$;*_0MN- zkm#g#J}uhkZA!h{Zk(NGWodU=eyY{5>-IG@xSoC*Wr(cC3z3~LsMlgNtZYbVWK?mR zSS)lnTVQ!1yz=tRg0Rj9*dq)wmO)!tDRVkc^Oxx5N&yd@ZjX4*+u5?%jZzBsl|7O- z?0_2JWJcVY_i7($6uHsN3LHyV{r6acTMcHGEZ22#P?C(aLp09bPCeFTfn?Ks_^fwD zUeu9uQrWL@{v|dAQ~l}i=H*aNie@0IL#l$@C8k_|&}{p8`Ld`u$WRJ|Nk_``o zr+QjajALA3$GV{dQ4LM3&d~kNs<2k#jQLY%`A6YiK;p~ z#IO{1hGFVst3>~3`?ukghC({UJzP2N|Dwdsn#B^3v2wUS6B3I@vAUVdyJ?hRZ*!7I zanFi(!PpNOCC0ADE>Np$xUVR2MpumaHDSo7p2vUA(8#F?UgY-6RJEeZlc~MCzInJW zJ2PJ8)F;G@#h)?EC6Q12q~eI8Rj(c~-^TVPJfC-eraMr|v2YCb>(uc%Gba>jxw!S> z`=ZFmK|dMEd`oA)l@t4@S3!DnvL=%-e$h+IoAv`1iJ^*Y#Iq}pczI&sRow6CMR+eK zcePHm57=Ix7z~m)I(t4|4$yDFbTfCby4rW*jC9?P^Y~_iReqBN6_{~vFhMB$Bevxs zM&MQW@jP>b*{{9X0kg}13S_DOhkWpxL{pn^MaR@(P5U_`=$nsyQrd`dbCZV<&o_bC zC+HB;Pc;p)1X$RnKL;L5%e5)G#Wl*7@-ykgtNS91 zw0{zpDUym=GQC_9yZKbjAwJ9h*ki{vP$q4{+g>G;WdDOE6LC4bn*MPOv@;r&&AhL( z1XFQyE)e@9+C;&^2>ADM@$YA%3r7unnBKsB{5QS16neAc1QdC_c{q+ikD#dc8y=X( zi5~A2A&W9wGM|nn9(myH8v*R_tvj&}C@#M*hx!qFJP|U_adui%?~TDddpK-?;HdLk zZtfcyD?&X^ zyt{(Fa@{es7bD0K;dY#~iKR_Q{$~tTQN(S$Dm9xwpBUG^yt~#d8Lwyk+?PVMF@#(1 zg-POS5#yF{r*dbWFmo5ryga>&+_ZthY-W*j*3&H>5!o7cJKk?hjrFw*X|S52bDwVt zgQJ!y7S7!B@`)5BmM`dU0gaAiiZh&Y4E%#3rJ`N#1Iij4B zc(tbEQvJfv_EB)bps+R7-ubCgr_;JWoiqk%jj&9u>8Bwz%C`?Qtz0h6FS$RueX#Hf zb@yx#v3JUkvPt@k734BJPm_0=YgI^S=Po+&r$Lor=$_CyQN3=KEh2i$KD#SN8D2oJ z^NYnnmET)ye)C4JvGqX3vRO^qiVo`N)x-Lh4E15nZ#z{T@VG3ip8;Kkf|TY?rukfV z)=O60E;Wl8(mz|(54rDszIc`FA@K9!iT%WaL5@EB>7vnC1DU=iO1}A^;PIvD$3H}M zYMR_Ua(xaoG7r983eaztD%_*nm;SMshQQ3{M22F|>QpC!yIc7+N1Mp#gLDK6@RMg( zlKXGI-H-U0;%Phfq6CNlgC2M;E}kcV*ulPexY3Rk0f$lbwDWyQhUuO{o1h;`tKQ~4 zBrBhr2J37D3mrUrdXr=vQOniXKH4L!K7m)~6ZrAyW~c9y@Hg3JKXnWrkVO|3i4Uc) zPwm9ELmD`Aps=jM7Ss9aghTW3q2JRz@u@SGz$u2{NK288(_iHR?SHxwYGa?65oMDj z9Hk#u^oxD8g!}r>`U(AhxJk6`v88}7`OTQK;;Uw}48k4?tsVA&)URs|R&*UiC;2T; zI4tTa&Z;6uqsQ%v4o_-fOTOEGKH9G351|1j2a8e`JzEc{id22rXb*eP3;_z+6GHv}k z69d|07AciZvX395f83_0)G$*JNn}83(<|UVenPcP{Yl@kI&n>( zgV8*g@hgm0TGsYlFX!GB*sYik)1RN22&cT`B~mvIaTmRGR78Un?#<_q_JS|F2A2XW zE@zWrNP85!e{B@1JpDMjUD0r0`s3g#@vU3GYe@=t7m=UiZwI1RrbQ9YR`o_ylAHvO za!py3&oMo8_VVr-B)Y6yOQMC@n!fSahB>9=A)o0jZ$f*Y3sq4&8Kl1GI^cVDQS=$~ z%E?hiwJ5-xov^aeWpdbqGvlkAn!Jr!`6m>I8e!xgTl$85tmlIA6K1Hoq(^d$AmB6# zNR?GJLIU^;d-*{C)SjpAg;2c|5B-mG(wi(qW54yyq`G$}Sit*j z5_DQ0E*2OjqRy1PA73@q34EL-CF}8MDq_u2MN@;m^~nsvL$3Tci}r$NQ;CoM$)Dv< zlA4FzM!j2u$m5j-m0%(xNRI#b*O?i~uvlla``eBM$j-6O$Mw{q-$!xei@L)Vk&D_o zqJ-uSrmPj)XPB(f)>^*jVsN8Hdr^`3Y6@jbF0%s(71*L2s^6!1X5U(%f1qeI&{&`X zS@a1UThkmaU$Xi7jw^+z9cD45NhSvG$H`vJ5iTiNxA590`ZLy~8KT2=&qtE0qzhfG zStd^OC59UCJJkC0k|oiiO{Al9*hzbTrucuZPMP_at03QIPg18RuyIE?8xD18guJf{ z8FC2h+_PquTghBWruVGL?S~I8(m2PiKi|$~03g|(cz8GGCc4Gr#N{+L_h@nS_1?v{ zl%^KgTJ%L3$4YF!5D7iHj#R>V{AByxK-z+$;^v;kv-)p~xfZbwaE^79Zpv`$SPGlx zLBqrPs{46+KAo(6Vv2d^GvoXBW3}5c^N&{+4xoLLJo4%Zt|i6aJTEx>F=qE6J1gn4 zFBHD$a=DN7Z7xGnTdiXr2ZMH5!-2EHTDP+>qX}&3c^`O4 z?O@}9U}W-`6_D78#bW0X!W1TkY~TEN4Kw z6rhhdsq;^Cez_Dbf08@fP0Sxt*gP|A0E98%KQd9v$A+)7M}m1^kKwFeoasW(>Tj6* zMDJ9DvyL^@QQ%vwH3r5xhIB63?)@q~+u37_r3i25qM+;vFD17$O3Xh*x4fCo-_-xU zoJYPXKu(iAsU?6m<+S@AW$C_S>Xf!$i#U+B){gU|?oZiKtIExbV*Gk*UN82CNHw3L zN+1`CBz)z$mc3m!m&tbBg2AdV2a7^wMknDYx0by*-Lc`8Xv0$z%KJ$Yr~uwl_en4_ zQw|U{L{)()-t(USe#!+x(IZM`f8`JiE^1}Q$CPkBBMjla4c4oX@7utB3hH8v@sF-Y zZH{lczUGU5*L3zPsd%nH)@`h?(RZ_hp7wDM_!lZA&#n09OOLnEa>;g`=|ejW@&1eP z@i_JMbN7$!y`4?8>&&BCZ|a2;ohZt8igty6PX|8Z({Odm+SKd6L;aUT5kM{ZKwev7awuLkx#;h{+Q?S%P5;z_C!h8pRQVW z`97>z`;b4WzE_pSMlg+uAI%p&@ms*CnoVR8dQ^Dy?xI&kG4NphJSS4O*7pZRr83Lo z$Hr5UyOucN`GdXGvNqkvM(U`*t&1o3vpuv#FF)O7P}Fet+i?!hgSi{YnqtkrmutL* zmk*DYZaZGt59G=)!@WgJ`kb-ZglFrx@l-fplP>8d{Y9)eHFd>srD9i{|NiA~v;}u> zcyMZaNax2Lx9#jbmT~o<8~EtG{=vXitH(5p;?cE7In>>uRAEo7gs3~3{BLs0U->oE zrOULHye^ov-&Dly+4*eZJCD=erHYx3N6clXZIcRB&Ia(J%avchUr~Jxql+(oHp{_Q zWVI7kFE=$FsgpYDKDAV^wf;;p#K^|K*|w5OXIngeFqi9K$ke_0^XASwg;v7C+@}^{ zzN2>U8H|XSjMS zDrx+nYx(=X9d6ag0uuzTs~=zhKcoYlKF7a{t*!l0SI5}!sIcu#4QJm?Qg@89n7x8B z%D1*E;i;5!kjaVpM#KY|7_O6}aN$RGg_4SKvuF1AA|7sRnGTFP?()x|TcPCTV7`I= zDjmVO4wDc3Tg8R3vo?YEslCF}tY9q~_*=Pc1I%)+4~^FDrELn?av>qzE=8TSkHjDI zE{EjkL{AEjyU${C)Rxx0QG8CS?Es1z8%&+8{iOeOJTI2u?s6%^og=qx-#?UfWZlDg zYH9mbJNDVQzbZk0uzYUJ!R_+jL$beS)a7Fq!y77^v&{8sf)PK{!Nn^y`@&qNr#tLU zUHMwEOCIzhoF;mwN22LDh1%We9N*m8h6!X70zU;n5{YC_cYEc@yqF1)J7Hy7Wvw+lin)YeA{uPy*Egto)f;aK5aLrq&~}GAU4?>DNEp4gKZdWR^v(^mjidVMXmqz1b*e2 z>!Y$$V;;T2e!jBk;rfz1nc9=VRT){GWxighxI2KlBlbeFlWxnr7->4IR8nijb|$$l zV8SBP0LCem?Y1jpxBZH>oxX&7Qc_cFd>3D#NanSP#qtes6L3@+bWu5FiYw8``3dRY zeC(oru5-4u^3fEY-FgDPSUGoYnztVoT^lrI-abI)g2NTCiLC2H#-iS1hl0*q&2Oe7 z8^EbM3?HeR4kgt^@{S4$GK3Loo3@!H?K`9|wwzUFdAuJx@&On;NQWBl}|NwN-IyvncL!yBh} p8t^v3^=^(#>E%XnIZV&vSLigA8L^+egv2p-*bExlt?uH0{ue*dBJ=0%A zC*Xo4nxRx6E&p>tT0&~vZ@vG7_4JetsrO&k+>5`sxPU6!)=pL|DlV4fcGf1ZpL-ye zC+A?}U}NKD<07Y1H#c)PwRW&1mv->5c5!sDH+OKOM+Mpu0AC4X2Qy(wYX@^F7e^;@ zRV57>ZE^`m2X|Lo04T1mDX*a^tZHR#N3LXTYGrKaYHLkS20$bo9ozskI!F@_bATdy6CeqY2s|A<9n4)`0zF8HYf1}qu(9)D z0T~TP3pY<=7jt0^M|TG^dtgK^gg~*1i?yXS&>gvpxt+POt2w!wwY~XsBOVBij!s@c z1uM7b5^}o#6C>!!t=!z41Xx*}>|HJ1v6wpAL%NfdR#ul5mbZ5@Hg$6)e?_h+BhB{T z-5I;MS-ZN?xzhhn?)m=1WU*&-Xh0iPcN05nS1WUuzq~^MiZs>5B^8vllq96ph1nqd zma(=oCx0IJ|4~>UfGQg9CT`YlcKKih}2q!0c0rqS#J|31jM%y2*;7*HVH%h>#Fd7E*5 zOMKc`mpp!JWxir^_(-+y{4aYhUYR-+)fd@1jMLK~pyw&|5Jhp83nD{F-g`ujA@X2Fj=h3JWr4kt{8)i~y81~8BejYkG z6ey31KV^&lGbQ2YAN-$RgoITP-DE zT(YiQgRVlrE$b#VoTNB*u88)p5Fla)fyCH}`<;o00dA->&$w{EaTQ*0RayX80pZC1 z{R(>47hoV1*%m1_fe4)O#?NdC1kmDtLXbrM+Y?YB;?qy^jLD3%F@DsHUwNh2nKRuV zG&5;iO4Bl*C1^KJum#AHek8p=FMTq@bzB}fqwsIa3o{eGvUD0KBiPA89Uw3U>RC@` zz?Uv*18sFCGqy`wuz}Qvq)gg|7R|r-{!xok!>sXc{!O68hviJ$mX`)V>c%YVXzV4V z?0>3{7$7&}Mf`#6_vC)Da3tGT_o+RdoW|LbvzNBPR!e zLeQVJ_}|B~D*x5uf`mwh5xTljj&DqmM@8?rz(I8{x+F3?pv6qwfELFzZ0ERE@ypp3 zHq7fX7AC2K=?ni_6d+V`vv_ehf@dQMOLG~aF9xjQzXf+fJ%K?o^x1ZtgxS6(TWA2LeQ zbM{IEQ6|1AIzs4E^>;dvfWQ)ix2=blq%*3uOIzgr9do#RrP z;Q|<&{OsI!`vI<_C*-H-qIbL*;iu!iGGw>F?pyaMOcRfFIY~DG^V2mHkFys>eAL%t z{7Bhnj4Gg|OkX0tGcS+83=d3uFd#L++$18{`|wSo#fQkHqS+A$LL%7VD1s-&5okh_ zI1nh3Wt`Y1AIHu?V2&Hc5 z>Sg%B@%*$juBc!-nnH9i7yxkWP@9d*zoaR^2FsTQ$E(v77OH}6=nL^Rz|0=#>WGB^ zz?!}RTMx`U5Xp{^?yAnQQxKxA3jk91X$yfC@Sl$zz2tc0MRT&IVkvuL=53~SiF&~GZ znii)kEST1nFKkc+E6^0qOVC#~%$q2dHV}g40aUv3r46&Xm6Z+nf(Z1X5UT1^bR*dd zaZTw8pF1xEI&Wx%bY8EiZVhQ+Q#k;1UJ4A*mc4P_CWd{0*mR7)5Zly-eqdHNnz@nK zw1V67dE~eNRSf`uc>rL^GgZt$3&qNQLhv&xp!0d%n92r14KOf38^uzb^ZJ7c0+XV$8?+W2iwHgA0$PoeO3`a4L#fd=Qj~_BXUWgxzPT!yAicVRG z?}{oh0HnafkQ6;h2qr`>=wNz!z%8qO2Yk6va8ch6P-s{M3`hbRgddV*GRnV04#*%R zUOk$Bhd4xCJrZ3#l6@yDSQQLTR##--hLqWqs)N}Fp36$jqakJJ0Okh3^=Ad6OVHCd z%mZ!RfZhrV7X^T}K$if&bpd=py~4tIlY{4aG=;OeQ4}HSV0oIt6q6`+AO+M*(v4zI z(NqVQ0`;P52Gqg8yf+V&4P*fQ0s@P!8PL@LL)ZnB>DmG-YPkQK$%(qbb1U2lPyxgZ@*Ys`@LM z0!>|d5a>6+-rrpkbX;aMpm=z|dlg^cEiGT!9BM z;4gr655PTQ(@}t3uCV|wfU-ddU?M|4pl>t`0{>xXJN)YG-1|F0LP4rrpkDd^T>3NJ$pf13c#o;JSAuFR0-~rHy z522Io6EZeoEhb0~Sd}3IV>shzJ^7Ig`fM^Ot)gZ$ECuj>c0gJP(_z`c{qM5p)b>AsQHXG&`L~H7ZL?gJ0rd}h0TK(0q0GdJ zhQWc15djc&wDGh0$Aj~eo*A6{ny@e{7!#t=zyw882xvZY<0wBpeKIfQ8elwtegc!=B2Z;MLy{g+1sJG4&w$g z;-6Ilk~M?auiIaM#L#~MLM9=G{R~i*pf3bkz&{I}B19GZF8~uvSD5rKszQie{!;}L zqFCwzf7Rsgn&dC4XN^+_zx-S8d9jj&2_f=t3qS!O^*;RtsDq#N7J>?b4^Uo;e*r*8 z&z(O5)FlvT{sSlk5CByD1ppoWn}T2gfhM2jiII$JQcUoMG>8h3;MHII+63I+zjbY> z|7}kN%rpOB`j?9T|Fi$cENAh1`*?@cp}6{iKvSl2e~ zy{g1+LBTZGu7(>d4q=u$U?%e%yCq2pU~pwWu4#07u(~<}FoOc~;XJAYn7IL0FREr+ z*B1U$0WgC?6s)Q}I38?U`3v8)ntx|moQ}R>(IlFCLDvVhv>rgvaH(%Q#vcL9@a*%1 zu4CL+s|o<-4BIMh_*_@?qQXU+819`cA9R81S>2eHZBn;M@f}h(a3$ac$A#f3d{0^$ zv~9<@ch-Z^1Q0fC$^pf;Jr=&o33gxyGD>BSoq@dm@&2+^lL;vQhYJr(nFmXNLyta?m3Hj=096C(WB2wrGO+ZEALs zDBfq)XDJLLi!1BeGMf$2(XuyUbA({mFYE3B)454`jaxLkd})6Qcn4U&gWiKcFEBW; z5U|C9f{;OcVsi1&AVef&l3r;sF&2vat~@72KH6*`5Fs8hivA&@pPc;@Ass`}i@<)^ zFkjHnsNCu7OGLbzp>*#WtUSkcgOsl#Co$QCU@8^FP6= zz`(%gx?;dHFz|0UN{sut2m}d7K`PRAMfuW7h)aoyi;0PfiA(VE2nsz(J>df%!Y4%F zi}ytOMDs-UMEpc-ce#xIhvpY&*x=J`%6-j??Bmq4Kb;-sHBIlDT0M;%ss#Iibwl6} zG9S-}C=u|3R?FMa^&Duii&@WC)SE!402G2KYov>_f`xWWHn6o7F1WBpbeg(8-PYuR zl&u0@{<=U61W>MD1dn$FpscoK;~FPBY&HiyDAM0WzhZ|F9*v6@2Pa2pK|QQ@zQN+@ zNg-R7`z4^0=Ha>yl`q`!ji`SO1FRx+DB;P%hW_rvpwc+gUE@JTUIQG#aedl8RmnkeLaBfdt zMm_qdqip;MQSYs#$kIiH!VN0}>bGUdBW={HwzZtAaR6nx+LU3*`72YC2i z9Rx|n?%V-F=Hi69t7JxHLE?rHe)C#*{Bg@tr)_gB!I7wGn2v-Et6=g!FU zSEGNdy=d)+4K9^*XEk7uJ1^KoVto21BC%Jw0UF-VqX5Ngrl~p$+Q7BO0#Jb)=;{Y=)cN%vzmEN#G zyI1Eo+!dh>y>v04dqqTfqY&qr5%S=>N6J4;m+yNH3~mF`1leFWYqJ z7qjEOXY*F@*Acnd6f+VC)S|OWXQfuK;%6~@kTqfBtRku)*$p&{rd$%|&)P`{aU(QH z=55F>Diwamc?(XN*i&)M4;zvKf%v{)On`-ZBOkj15f-Y#S`TknK=qhoX1~hn4gw$V zwVgZ0T}3>6vElt4@8|+Zb_8;d0al+3I*m*3lWJ8+@&a4~>Gu-4@&Ezi)rFJ4+MBhlX$ z8iPOrx-bB@^EsV-o@L=N9oaJ8ZnM{oD**!M zeLI9I$GL0`_zf1;$gV5$)?7A%jP`|HBJjYmR*j4``AA+ z6uBF2DXv+))&Y0U&u1uG7bL}q0V2xdQ%WrKUoqEmrdTcO3&k#gGx*&5tKwd;{(%W^ z=U(Gi)A9Pgry*#KR~nxkNYr zOR5tO3zw*P#fm!8QxdBZI4iA>sTQT>slP4iTya@PYaxcCn(;(s)YE@d`5khtf51ThB^tzu(){<#DX6 zsdoQqgprRaJ}vy!{nc6UT8hGfc~uMH2v&gW<_}8@KP*j9oJi%(&NTCCkpDWK5<#mr z#c{#3uesrv>vhb7?xI4k@_)h{lOQS-#=plm_SB^u#297fn>(e-$OxPIn#$L25aYyYBl&bnnJ=d zeaw*C3`h3l>^gkVl@v&iSX=n)@ulnVw}UMjFrDpVka;vsAI z23nl*uP7F_^tkD|i3wX(x(_CoED3|(4K0VV;CiLJA6U|CujN-ma(uf&^TR~lORpc< zFvGWB#<)uSm{eY#uqpsxO6%6iAwu6H6iD?h)X0yxG*&H+bbQPr)LNY$1^a#FamjZV zB~!wAoyF^(#+GW236zdRnajl+;+g@n#4??NFrxjhun1Ni7Wo6{2R;6Lm>GF_5{dR# z`|c1vsj?b>3J6plGiet&!aP!Yp=ZSxvSH+S(W4p^R;M#6#8A9s6VMMrVINku*oq>> zps0BB=|v~SSfld}3`^YF&WaP9rhmIGPG)qn?MfutMT$eWsI!on_qr(I$X&uO!SFt7 zQ-SI`{#jW~BY6`1Ge#f3fW~_%#?KUg7Z~5^PyN{66YmGnsnOgaSM|?Zybf+z7pJ>j zdGOk$`Ce3x-6SJbH$l~@X;|iqkG2b&x%MRUkqP zm`mTZ=03#3ZYk+__2Z zu}-8itXk$A#DJh=N$*6EM*+Bf5Xe8HZ2?-w@V(=eV9;FPF~pbU2*hnzz|}QA-VcAR zG%nlsHFEf2%=Kfi`TjCTv9v=vTd%~zvT$O~uo@9de{g5_)myJ9jB^AfZ=slA?fT`NZ!5I#-^4!tPj^sDr{3UW-K{laoSff9xS4^=`X{8&Wti^zXGN z@2m{uuq{F0T*6D)JXY9U0Q<2UpgMW$apxB;&)%X+a?kT@q-#{zFjrd9;Ua%tuT(6c zLT==(8oDg*<8#qoEFlYhaPW1EEaBHQ>mo~77Jio?*rUhVd32{pkH3ek3E`61db=PK zzjn>+j`|>MR1EK7{~c#lnvJHi>l&7aqc(GAPK(l7B+^HO#;`M|X_Tsl4-&Z;rCGOC zOr<&&3jKT?dlf;mlhNLr`RsQ)?dG(~R|Od`iS{9}>#ZL_8{(~mt<@YW4!+ZKf|(Ps zNE06px#%#LYTXuUuPgGgI~8oRGciCoZ6=*1YB8uHvXVEl7(UlU=48lfmjc4&-7l16 zM}TFDVPsnYVgwS~103A7pW1gWV^)y$6&Z=6pFrQrH__iS+901DOcWG{f`|`eR`3T3 z!ST+r^$pgeJ7eh<>J$X^1wK2MfiN{h=Yk8rtr)u-dL-}aU&r1xxzArOkn$dHfHj5I zhP!C&CUp818y-rX{Dx+iFA1!};PLQmD@72AAV zkox5}KLTtZB!`)@-xmCtI_7R~#GUF5PQU28WWH#1gprn~*UpMsm<`1A7u<}mFU-yS zA{zJx^)s2NKr1h!+(VJ9ST9U_4fiLmZYYou2gpBCNCCbXH0JmU`TCCi&?%yWILzp{ zCnxpCSPfbZDH&&VuE}Czl2r?F*zK_Hz7Oh_eerA)clNQMP2xT~Iu)_Dx`zIJDi|Jj z=BuQuobC_3Em%26_8+#kPdw|Xaj64B<6KsFa^F*H69xYG{=T%i{Pw{xZ>B^JRt&NU z0OyX}-OMd?Fm5!o>|5N98036i6kutp8`sVM5oXEJQnMa4xy+qd-`O#@8dE`9_vT`H zc&!GvXVQsv>)wFV;Jvo{5kL3~Os~#efGCeAQf<@3rT#*=)}ET(Mtk-|@{7|q6h=H2 zA^v(;ObVQ5r&8gl{-FM=Q{vx{h0_7%To}as5WP z{&r01v8snHS>xXS=_aIdFf%uzej-(8GxOZb?9F1kR)B!-lVdyK`Omd{on#jy=}TSF zk@M!;J`3r&6THGMt#Pk~3iL?H*&Wqcdu0P|C=eou^sA5(>~9+UQ_nWIKWL!9jxUS! zWnDtsRKEfi&7$fHxy^3ug@ictc&LK3$B8p?>NYS1jbB2)DV{nZ@az;_85N&E;4Ota zmXy-tg5I(_7t)O|c0P8Gu~GR%fg{w;L_cKb(Y2XpJb{Sc zZ&pL!M#irtwo|G%_I;LTuAJgNYDF|(b%F-|@m+j&=1>e#-o$p!m1!#lvo{hHx8uz0 z97-Jxhe*sG4B|*x3HM`vyL9=xOEE^bKh+yVrl5^-%seqlT~NC>d6SJWDY#o? z+Q9>k>ML{v(&Rn#i^mthW*U(VZs8-^z2stwU#AJnR-$!n$9ln-_^!N2Vt958cmKRx zF8m8g@6LU)Cj4|(lni2M;b}5vFZ6H)%<)_t>UT|U4*Ep>_;&jr!N|Os2xqWVlk3!T z*%6WkccSVFCiQjFeAH z%Ap8WLvweW!zx-slGE_O4)}5{y~=(i1!=;jgJsb$OmLm$&-%ulpPOU&n3m-qtVC3= z-}=29pxi4S>@f22$NHx4@Yq)14f-|E3oazyCh7b(6I3SDyaqZ$&dn2Sz=uenW*iRTh z?1c1*9Qcp`@e|4?wC55s!;H3FXeX$mjV@59D2(9ygMe9i6cwzh6SV+~_6@TA2EAgV zhbuM?qcyDe$+6$5Nm%{mg~0{#97E=c#Y?m)`#(SaoVAJ6DqM+H3nO9BAY-*OB*#GE zUXu}bHz`1Efa?3>KB<|5vf%fMELRS>FNFc1OKc2I3r0IKwnMM(lH`ZRVc=O);i`6j z4=ZW@ZEE5rliUK&?KZ7cK$cod?@}~XXI$7Jm-~*4sqX8P3&Yf6y2lH*(lYkb7Vj%{ z2{W9s27Zs5Nu@qP z<8ACP>0O?kU}X{l9L*1uuIO_9?_YFdlbJ!J8LN?SX$nq%j`;|NL_uOk?=88{G?L%G zlb@{gmo>e&BxNt;@@SAxt(%=tKuRf&TahfB{WR{H%*(S~G2Q!-IC=U^-61bM%4U6< z31*Zca#S2Kxf;8UHj>v5B;X>VKxT?*Puo3x*&Bpt3lSBI>46i>yELoM9}%55V)Pod zahkqu_c)cRZZ3*=TX=_6rmm!^8e7Q? zISei^Jz?$6O}&D<{1>}U@M5pbV0W6(7e&ijKgI%jYuDQd4Zs);z1xPNW006~PVs`~ zK%IA}i5$pR&@2A38Too~pKKFn(r-Ca(W&~XUUc8r zv*cJ8C^xM3U#YY?+5Bjfqbf)4lkN%>dsB%TI?PacNmVExv~`x}F}8KFuR~;syeLf# zyvYFqO#%27()wldN;!uY^}{WfK27p-HWAsrJ5#B1?-*7WrdK}~v-BhwQV&fx5x>_Y zxa9VMefg66>@akI+bDf|IFA3rpH}<}U!1Xa?AP5*Hm`;?Ex{DrVOvaJzU|E`=(J4o zu}GIBHQ-}X%#1HqA?U|*OlW}4^kP5<+whrawXdZqeS6naCWRH#Euzd>tFd?PnNY1D z2Tn+de3M`bFoe#+KX(57;^58xP*hmx556sDB*`N4eg8NootT3s!Tfq46uNcUhB?KJ z&AWKmPH}IAsou0C%FpKLS}KoEpL*z9v<2UvhpuSn*TUMTWe5&B#ih71iA1$L{icF9 zS)acmmj*qxwA3w+a1m4a7c8gWV{2tv4gCrqoU6 zrs9$CUzy$MW9JwiUtMmn%&FaqT5LXku3bPlc7KDSbf~Shfn|7#J-;A!^pHc(n@My3 z6nl(ca4SMM!W2e!B_=9YYTcbcP>A67t5(obzkxrab!HcuVpLPqK=f_YkJBexxYwed zqS|w{`RQd6XrI95z&1N4vTX>?h6R80TF~&tW2}K%tUpG=*qFxjRXO(8lb}JQmGcQN z4R}*qN%fwRblHrUwP56o!}7zU{K8~duI^WJGvj}Hy+_AFF`OnOX9*8zY$~Z_nzG}_w&sxgs(5Da7b&}p)ZSAt?x~|t}|V0?X@FXT;btS5APM*6FP61 zpjDzw)QR)Xsbe|Pe%a(v1+CcLQBe1$B%P}Vb9{hP_!xGhD}=!GNK1Xp@oU2#YmQ!m zgOEVqD?i{E7Z6fB{Xm3rSj54%Z@nWvm~OjEm~c?@u=8pTv1-_@oq|}hZU&(QPR&XL73j%}3c5#^^uqm;ecapG2EYrAd5g5hQ6J@<4 z6K|P`RZw2p#Nu!i3v-MAMs*@snx_=v6$4GG8;rSB`Og_gSCDW z4B89hS|NJnmWSRR=HZ_3565Hu*T>kC{)Pj#gkmHLVIPVBW$2>tNwIFCCW<|laWb|1 z^j(ClG@)Ep(uNyab66a`Q zSZ~c=^0fb2T{xu;2_z=KrHrdUymX{^MqbkpR>Wb$Yv-+~NONb#=LY61(9M7S!|E)Q zHX%bc-xxWaeXzF4$Noc;1STr?mvezRZBIhGY~A9}cUZ`l;>J&cI1-r93!h4Lfg=|{ z#ObL!T=NTfI)tQ!C)vN-y(nK}K5iph*VTJ8=ql!60R;~v=W2DwRK{^BxKS(5=dbxY z+lxog%CfMahJ#+H8<+Q$Qxpnck0JQ%O_aCptby`(;v2QsH}rvb4f8nrmvItzI_5qO zScuI{{@H1>M^}g0o{7+&BO|^G53nAX(qK8*^i&VG7=UZ!j3!x851s3wBzs@Gxehs- zWC&YV%~KIX1Xj)Af8r+HB7ONI3IeTCKRA3`?+F)rAf(ma#ky@DWTDdxbx(s&i6aYta|}qa(KV1Dpn@uW6lEXZFb!CflRRF(;mG?H@iBF@J1M zIlPG=DTa?e{!{O%Pwv?#c-i3NcMP>L{yLopYYf)4Tu9U%_8sSJt5K`1PN@&VFPBc)5+#?9`Kdy!hqIVw5Pfs zKT&n1b9D5Z2G`0(D%$>hf%q?Kh~jjOUBqp9u$=~JVr`Sm6iyI!$b2L8&cDs(x?)?X zSM3br#ALmtH<%d27&RDYuTYnJdCgo;#nJ9|j)=^e7L}ocFblJ>}>8lvIjQsW3Czr^Qp& zla2CIe0y5Fdp8R+Y5VvZRPHfOPe#PNUm4ivI_gQn$8X&-ChL8@aaQy#dtHZ2VjGHj zu?=M_+kOi6Mat`^ui7I|^TydW(-^xEwX1TbsfI3`zOx{BP-lK$vv$8H*AM+Fv*J0* zo;SjRc)cL_wC*rm6?>r_f7@+ySB<*7G$Xxw=6B_Y-%6E#boE-2SwOM-P+I@P_Z-tv zO?Q}-anWTR#GhiE!j@y}eDFO2`|k$E?5_j9w$QY0?q?yV{De!_PI>K)SHi)apsOT_ zJ0dAkm1giXuQ-`oo}4qRykqXUTR6}b5OXH@3e_zkEExF(s6$8J`b8=pwekb^a6jBN zJg943t=0rI*gD6x&TbOTtkv57d9YiLw9lc*GO?pVb-x99FlsY`zyDP^ZdLEAG2+&% zPxZ5_W*S|VYiS+9vKuezczKee@jEI4(e`1k$vPXtM1Za18E|+WN45?7a<2ik zXj(EZfpd*@GBNwcId;v*-u}t(o@zbDpUmhKOF9{)pP`k_AbLgbtp?KO?A@hN#awhd zZ=WXA;0W;J4D3Vgm7-m4Shz8kZ_}O*BicVh`O7@#Lwef2ty$fXd*00mtu#Es!OL)8FV(PtE^~yygE|(`;zv;(PoRNxITF3n5<+c;9G&Yx z-BPofT>JYGZGQ*XWW^WDwi0a8I3dr3DWbQYE^@`DJdX|(1D_b@XU9y17t=K}CC0i8 zuWF)(+!->s%;W(Ib8Pe<5cgAelWsF37sWbwTj`;%R*P2fFT!0sjui;4S$uevW-2%a zl6axKrMCO7_dx;9=4JMl|>nM|r(O?kZlZ3Eb+pHDyvXuxZBAadYSN`33B`PQa`V zpBACxks4tgjKZ1zIX+z8)3N!TgMd2u=-VHkKL9^5`R8;8aHbD(LBbM{ z4b3l>0XR}12tf=4BZ!~>QUO5;Dj*<%2mFOV$a7vQy1}@?_y+b|jkQ&Lr);N?mFu*j zJyq>lBKBY4KXQaa)8jTVT(-jyS=*MJGi!trrW2;JNhBRJTrO*H` zf3p^ml~}t^i13Gw9R;XY2|ld#8iavQtiFvTw|(&^*3AIJ_j(uxIwxjcFs{*$FZ%u%CGyJ#WqIP|CGUjbrcq0_`=xG1( zzJep274zw5HuJaZ*k9h1spj1~lBCOFu~HuGk3LnSB!244n{0w59f%rVueLYN@8>u& z*aTOCbQeZ`EqT$uklw0N6Ybo_{Xr&qkYOPSMjqY|^%_%yhi&PFs~(r6_X|yzF~GBo zI-Mvq47Jmt_w7{Km(98GY!7Qy1Ly(b$^&o_3SGxWT^kQLz4MEMZhAoi9_zO0@xXZp zklC8R9-e$+CCtG5*w%a=yXmFZ14Z)EXBw>S1}dtki#+opm16%{D~_3&?oub_LM1Gw z5r-@Kd5d?YN8KjP<7a&uGd%8Y_=LiUtR{0s=Ep3S3auCi!mRR|F`)||VXXiXKzWk8 zMZ#~7C1Fl!zt_2W8K71za@vQtYp?iqw$KJtI~~i4G!v>p8#S@g6&zt~ zhwp>M_YZ>V%m??BzLyt0RFuNn;?{infU$LW-hDD{9B7RSy=LQQq8z^EYt?F_{PpfS zXiMhMur8GN6;q?ZZUNdWdEbtgF4f`N80UxLdesf?o^JIzg4vcvZk}$%A1?1p<9OnD z3Yi&J4i?@U+byAl7SDwGC5ez=3i&G|KwiJ)MYU@UbtZGRGql2b{*)$K9_bvkHJO-w z+r5z5*LeAct>LtGM3-1Et$id#dv!+W7h%cS&W4Tls?e5);Euh1DC!L6)nOQoXXb0} z3jU@iZ=)9*%c2Fti)31anIzk>0a2HT*jNcs_o*|lwKY1yjr&vp&`xG z`BkR(+P3pC>O>3n=gS{*@{rg2{sODF(7SNhxp~*vsAfwW0dZ!_KRz`Ia?fp~=KmiS}s!y`ZfkI=CbG`c{ye5ig~O?~5yJA4kjV$Ao^@ z6-pGO&Wom$!7o)?!WEka^&aDR*ya;mn4`f~Z#kzn2Hfa-|nT91B&iE(^ys!LYa z`RC_U4l!l{^eNwrgQC4~z~i1=`(zK?zk%w!+csmCljtv(6E6h9aF5tP^{85yYgDP6GkxSLI=O;IM%|48Ew|Ld~a<86SSah6ZD}Kh^%i$o+dl$V? zxlT783udM)*(muzMA-U%(&W#wbZE(9u1>~2p31;mv@=4-_QyF_TRV>d0vb;1ssw)1 zwE`zo_ILYLfhnZR5RCz?I&1t4M|Jkv@nwGSlUEG6XW5X5PFbfEd{zBbU+~jmjd)Y; z?1{-!mHelKp%$OIfy}w=HmhGIcO93zdofMt3h5aBw@IeQ$4QB&<0}Wucn8Y42=}Hs z{EzNk8oK4J%&WBrHab2cb8HXJC$y;v>)(&IXb+1tjYB3>J5QACqo%x*G8cT_s*%Rl z0SkHk8wgSB-fc-3A#I?0p68&LP^Gm2nSM02d zePwOEZhqROFBQAmV6kz9rx;Ib_xrzdcbhJ5cVA83R4Uk8oG(Rf=(6~wjqt}f_g>lY zu680j$KW;3#J(nL=#hyO6{ab1gxZS1?*S8IzZoB0N?i`6QHbOJ-g@4t!MZlI|C#A- z&#ENGjg@h&$Dj57fDxXEKk+F6gB!gm^DW2Y%YNF{`C`K2E;1oe$;=dtex%$-z!Vf7LCXk(IUY3;&f-&x-7xZC9Q}3Kr&lp-_bOF(Znn|7-u~- zF4mPOPR9|RA==`rGK~1<4==B2>aAbkbm@U9x)k6uSs=$MMQqy^VB=G{+6@%)`%!!ZD(-I`3=7SCXcUcDU}r^u}2Z?bSFma<>!`Bj=3^JMK{EMc_@iV zODp((&#YBPAf~d{ZMn8l={E=4xeJ4Yt$;zarciQJjewy&`Wuu=k;89nqq9Xiny{{v z`$}4j+t(A*nK)dWeO8cP(TbTH&~D3=Fs=`FzH{+h=$s!gOnj?kKG4l|*>14a;>@Vw zE}&AC*})(Gp}~*Nz;XJ(dk~LaV>joEc`Tjs7u!p|4;~20!It}-(2`%wn$3?2O_IJ6 z%qTODlND(AbU2P&@UJE2EK@$Vt2F2}IiLHJ_dAKel@BI^(RvLl>Se-yQ_>XpL*e=h zLxZ|JgHS=ppbl``0D-1qLfV?65qW2og9bqxi9ooFZ+r)SLfq|Z+x9tZZj0#RVUt*9 z34r)zNfx1@Zts(nut&s;=%7ZK0P|z#5u}G2Kw!D zG_m-OPHB#6q)R6D7E+9ve2+C9Vkr-7?}11|yF+rNzqXFD;e4V?KRU()MLmN;xBjNB4(4fi9K9mrEG!UtvZv(;*N}7oHY4Tu} zJ+H3mZ9w!CVylYuy#dC|HJT9WEJ8~X>UIbD|CLW+>l>&#F)Cn08ay>S&V7jt7%kvDlowU(y_HioAMLpWw#*8aR6- z@9EXW?T3|RNDn91Y0KJ{{e{=xO~Sm8RMZRl>S$K2g_2TukyJ{?0{lMQemv+WOXAU5 zxPV_K2@d``@#nV&8+Y-V`|VoqkwhJSIDlDeF&q#|Y2Z|Bv?=|Rpq;+!eFH*aphw-d zbl|Ny8**n5)V!ZPud`2b@r%xmWH~Yo@adOnHq<1ryrpxT&HYLodVT28d}X&}mdD^g zJqdq0DweWS(Ms@}6epNU>lH4Ys*h!*RCs+^%k{eD@kY1Hw~{f_*};dq*xAf7?Z<7e zl=OLJQIbzgjiMHe3h151_3iuMiG0pnT>TsaR;*0ELj6G3A|!$cY4?OKhjYfH&Vh?V z<(OJwV%fteXUYisE+NbRefW&Br=X#G>f6)+uf_$95ibw7ZD@>pH9<1xCqJ*@(_$9a zu^?P>JKo-E!g9XCA7oF5)MbFX@W z+HaUxM+d9wnP$93lQ?MURf#c0d6ZqTSG;}3JA8Q0xENJ85fyu&yAB{f@&{fN-+Xge zXz@J#-gx66Gzs2P;GRpc5!&h-SJr9L%py`OKXgpY6<(cXc0|oZlYPHENGrVVv_1I5 zGQ7%ZA(e$SrEe4UYit#wp+N}anhF*`LkH7nl$(?2+)DQtpSzs-(Puvi6-izrR&HD54L6~ zvt9+`Dw!V%V98UyzI>gB4KAJFoVEU`2)7snt3QA25(Yulmq4|OG- z8NHfF1DiY^$Wh{%FRHhUa)V6>T1iqk{vY0d#@~AY%Ln|X#FygxZj=-H0qdS%5-wo^ z-rvg>TvP6MFkVSUj>De&-MU?wduaamFM}G3!NT=i-5bu?Hhn#{or)>1i;hl_&h|OW z)^~)CJ7$c-9gfU~nAzNv8M{hp>GBS|Zxz4!Pbp0Y=jbd(ft$|G5S^4}%F0;e-%k)D zgYw8yp`f5h1>5Qgq&$KO3OAD2y2_dLGh8|QuL}sUChNU>b~@l^;@020joU9T5q`-< zm9Q1APV8vK_r5yK{~lh$$)34vM=i9J#$Ti3H99879~(2Gkzb_1Tj)C#OEj@|vlH$c zkYie~U16y>{lY>=0mbmXx#~Job(QI`p?clwgo)-vfV}|n&oQV^n_=OS>z2%l+c3$R zwKLWU)K^>zMH?JB`??iqADYWjxL%^M-^S*NPq4W5kgd(;Hlg~|yb6Et>AjmG@bWgr zR1tTo*sr_lyiDngAv-`r9GqSD7pTd-&#;)#hyA&Umw_S~W5~X6vmGK}{vxY5%RK4* z>OqgpuY*&2*F$@gx_vSFI0JGZ@~^%0Qi5Czc=fP)i$mF2pf&<{rZ1^ETrw}mJgEBS z39kds-n(mDe2~9$$0);YP#PoN;%nDbYwe#cI$BrLB|FX#=0>y2^uxkEOx~E7*hz6b ztUn^n6nM(26+mWM=rx9uj2kn{>((V|RraU(PLLszKz(S!b$E!)?zr-SBg=ugq>}K1 zFf3%^1<{>*q%;HF1vH?4nWVn<*D>GoG$HNd0QXLP(Y8>zw)0>k@nK z@|ty-yVE-6CL*lxVsIuu;`#Z{k@2n53ds$TbU%1XV3^i9enMM_KvMdG&U($?gMkV{uQpSC z(G~u0L}Tw+v!5dxz%m(BeCEzW`h@d@3&b!8fG7qQaOeUXIB)?ub^-ZdJ)s%u`8Ht8 z>XW1UCq_dB7|dwo`Jzr5;FYfTxNP_ryt_f~LA8#kZ_?52&Gx!9N z{oKbr!c0yS;74bmuGVly5A7|Q9y^-H3HLf@{%>tmW!bxCu77roV0=oCHPX)P-6br0 z{4hu#c*hhLmt~T-odTN2{7-&=-u~5Z_p$VYxJ^AZ7L{ozNHkGH;bOk#%Wfc}bg6w_ zc*8HfLrz-fl}ERZCPnWllBH*?HI5Rw>qzxyYt}mo@o9K6ZiG4<7n~kaOgguIl-&n{yWrQ6t z{X7_s8Y@d=H+6INXcozpKD;av%of4SH!ZK>iIRbjn)rnY!;gL8wAvu^W$Da$8OAP$ zN34``f9^$?@DH-c42|G;k@*(An8vEbm)+j5yp%^pG4947h^84`S$6y&#$eNvgSi>S z>GQ4G(hI8}TNoi7)~HwAxQZKwKPt&=yOGpUJ%)vqMjbD!ZkNSnTz#vBcSoI-YcE!P zOEoahWL*`T_%!u6_wYh{qIbRaZ$3B6j!p)M z(4D=ks|1Q7*aCX#BruKSqLX;9}U3&Gu7Js7F) zd)h7x4|y9ab2e$jqqZ7r=se1q7z!=NA$pV5+VwpltLNR<9jw7m6$b1qtwk+`JlsVY zynSQ8*F5blFWB5AHZ}Uql{uEAv>k?UmvI!K-ZzIrUWRr}_5UxTz5=L@u8DGRcL?sm z-91QxYjAgWcXx;25-hkA+}+*X2@u@f_T~F`Ywr}VUcD-+X8QK+X*;K7Fo>z1`C@7e z$kRP`4|y4ipI**iADjnQDY7fRe48{fvSW6-oVsg%p!6+q+g*>T^y6v{JkhRGQWz(0 z8>)Okw`6HrifcO=QA-j@8;_Kyu*b9S$oyEr%Ig_qLqGa-e$>Nfx}j$~D)+T4x$?z| zs(E_4nLw|mjrheDC4nr~=4VQU=ElQrKMWVAU4KiY$F~7XkazKshd~4$4-0aY*Pn4E zu!UX-%^*4_Gc{^4qo<-7WRw4jsih`Pg<;Hod26$6&iU-ZGy!8pa4ye9C!amT@L^}S zT+97sxS1zyokwDeHJvft$3Hqm{Ry3=nxxD7OW9t}Y1y~Qd|sxLCNFcc z@a#|{HsscSh%F@c-HL9Z;P4s-apPch;?I4~8qxO$=&X+M%?|^S=+feOy`--G`8cn4 z2~s`+aG<%ei68KX0N#1m7YT6~1FrFXp=&8^nK(|wSL)U2wc{s47SB0?RU?V=;6R>wy8Qd7iN9yq5 zRmc#?VNAy=D{(?tRhFs~)xHV&EI9%mK%#By*P*M->`|`*9!{Cx<$irUCwq)R-oy71VJRvmTK|NQ%>#e0o@s<{SP@w z9Lw!8jjWR z%u0NkdFC!|E!`t>ssG?Dj-`#s|LXbLFYnvIk+@natL~!9V$7n^lQ>2fr=K;75yVBR zGwE=0r#hO6D`?7Yo%cM~{f67TFB5k5jo|NB_-JsKdS>F7Ot+!a1;3nux1P)&LVtZY zLq+HS{X`H_7PJy#gJq7E8&NH((7N(>6pfDUjR*M@7hb)17-ysi-4^C~wv|{+SvYI; ze6J?-P7hv>Ar!rx-R233uch){(w>v*;umSeJmBf*)Fl(lOWt*};5MH53hx|dKME0% zKXDfb@;R1_I_~XM_(Oj#Y_V)TO0{}(F|?Y{DbVKEQuz+-7Awnx(xRIDyNJUGByX`f zU^!Y+-5;8)Ae#G|S z-X0wfA;;Z_#ex@6o*b%c<}_brNqIMskD1~G)v)h{s)(VEsOfD;t8zhI1^BOJY{M-! z8BK~!4TMv46!0pj{Oc+3_oQ^8=sW*q%xu2Y8<+JOS@RbhM%qehc0S%RVL znzAZqo*Q|%Ah>4o>)69Khz=KY@i&xr0##BM*My5d6~n^!3a(F+8>*qvM!xu~QyVjb%!Zxi4~a2nlZS&b`IKB7 zR6p-)b^ zdxkC8Kg6W2=MoF?FFd0hI~+^ft%-wIZ8r|1v>Noq%DpDJVr8kzV!&4kDRk&k$9YnI zT_5XOIt&~A?#OlzH(H|@DTQAu8OPoXQD%$mz~`Op%K)nyD!PY zM#VL@2f>T`aHlz&1>~b*E+nm-teWP|V|=QQm!nQbw15sfm@L8KFK_7ce^T+k)$o3v zU-)zQ(Dtg#cP!Qw{<7u0rHjz;C;ZYZ4r!BN)kSRK?;%1JwfoC&a3a-PfvqI-yH&q8 z=i@lWJzUwZg=0Y$oM9Kt5(jiqn|lZ?s*df*%=+7Pmsd8s&CW{@T}$Pj9CqIBPk^t` z23M;i&eyPyLw?R57tS`KMOmK6#f>*V~CYg?535QYDAP#gQoSbEs-DZ?I5xvV-bAG$aGR^+CtP7hO!0+KJSeH{-7kp`W*NvHp!sg zGOYCe;ekpKQBW(vkmu)&&-qX4;dksje|G-)-tX_B+MQXPIZtHZ+jiFfv;+Y9^u94Bd*x<>5l^}r$wec;*XzxTOaX4M0SKf_D?y@ z>UEJIUu%VU?UszGLU+MMuq^f82BGSmUgMQE@rm>l6o$lCjTA08Ttk{Dxfzk#tx*0x z%syoi0YdAi)TqEaeET!p^{S%87n&b+*E()D@l>-(cbo zfvmh+A`?q<=S)fYZBPY;rfurM(cyykSsr1d$h9fMXkLiq%sErASDV!t-{jR;>+ekN z1^mKq>tSz5Z;uYXB1yeIRX%6Fv#mi(iRYqm12uFfVzs7G&Ld+4=>hziulu> zlufJ0p}&-}o6?obwB|MBi5jf_!ur-8$|CLb^KFU0yxN3+2UB*YbpMBb861c-;EL#f zmSgz<>8LxNU+8e{1y?Uc3S+gpUiRG1SIL}LP~YJ$*}%y_tNI-Ba4EWf!Spy$O`4p{ zTuEk&ChMfiqeUJ{>EQ;Zicr3l_1&bwlc#`jf;zvG)9&*w=?j6DIX$hH!pdX0M3EfI zA;1WSaI?tq-7>4xe>wYl(YqWOPFInyN@VvLFkAs&e#C=(UM-n9$U{g3OWSoEt8Iuh0;y zUHjrrxx!ObhD)=N)^pn3ONwv}y-!%Z)PL%=n%P@EVyVDOUJwBE(A^UwsuNuPhs&P}eU z#?{>Va)_n%S~b7or&ijWO^Q!=6NksJ6nluWMbzcn^uH_5y>b|3B}#eH)!;ix5U81{){wp#sfP#E^#un7jP% zPS;?ZH9R~QAwPj|ry0_BIM@$b7O%NHgDqb!SX#dJE#UU z3p|}G*Bbl9y_cf4>l$^lrbeeh2(#%;8_xPU*y-BnAre@y&QUKhlr*r{7!;|4ap}1k zZB50up+Z%K;c%u8f|4;k3+%Ur`~=RT_jL+^8WWMIWv9O|C{+k);58=f?l=3#MZL+S z_LtBRFt|+S_T^s7uBuj$?Y{x8xeckS;bY#PO!XIwEBy}}J}o;&;5bW$NrC^Nf{YT) zSlX-_7b~D`?Q|X98hjkdy-kCsR$t@Fdf|2$b(^nlyht^t8 zc9FEj?AXiu+UyYAA+_jx#vY}w^owx&c)(a->>b~F>5{v6M7%olsC(oO$hsH3M6S{s zIKpK+=&`HcEpp!2?zin2C9I<~_4>Q&G?B;uRgTX;0V2slfUjlyGh_lo#NjKZavc2V zRAup=1RcIow5{D!2`R_P<@>!Kp39=oywS_YFFA`eE6ZwAw6%Vmr~Qd*i>xj_;RP@N zk91fzu!B~_4sD-|w9M{yPGfWi;K_JvIa!J@kGnkUHeCE z7R1t9#r^&5PJ&8Du!3EQppKGg1ct8;8Z2{-&%|iTF_XGGZY>zW3q7;cqk&I#bj5vp z6H!-8oq`8rdwOu{Z-;1NGe7!Y@fYd3yo>x$yC7~Qr$r=KuwX#fvi%W+5o3O^EBJ|Y z`7Br{r7dN`eR~rZYZ3bA_6Xwmxm3$ZqhoEpTe;lB)@+YH*{pQ2l}m8#B`F$!y>!Y} zsN3d-h+%y+hzK|qW(|FT0Q)ixJQvhGvFrwG38Cs>A^Y3o=rK<`dm`{Kp@Y5JA)hDO z5&n~dDZtVx{QIm{GA-e-Z9}LZcP8qv*(9$a=Pq?^D!HAw$=$&w;gL9+vqrQ z)Aolhi)7)cfRO3R)}I%|dY|+vz#aICU$5hcn`WrasjM`CWU<{v$7is<(d51bK`V%8 ztZSFR*UabTrk3#4sVw)pt?*EU)qBC<-6D;Q{=QP=QX~_7mtC z#_oH3&V*lJ*))~u9{2Fu60!f#`^(Mi zt28q0u%?gC>68K{XZ3hE7Vh>73qNTM2B*JQYuvKj+pB(`4-4b;4FxMdg2k;O@T6{B zEMPQ501W94hQ3Qtj_gtBnuR<5&9T$zxNT5FBxLLaIc}?JHLb#@+5qt1mb6L&1Hd4& zX}#0nAEDBGapiev1>H_WJSO5j{oKwEJW?GQ_F$x+N+tx&+yv^}y;(uv-r|{W<=B-1 zRGEW^kJj1K{2$)?76jBV>Nt<)9~FuC_A`v5SF)7M#8eQD*X$f5I1)b2;01*I?e#uD z?VZn0Rx_;Y4g#bW-mm+_?^gK7|3txw0p8W?P~3pu7W$oTnqLS8O16JN)0Dh3qo()uoDW$UjOJsTf;FrKsu5(Et z5_5?<35-Z-m>7D`>!e!8_wjiej7 zOv{yALq9*V&t@NJ=XrweIVQ~!orW-PA4;$lBab6qeDG=de)Z5GzWN zul%YkT$s1bz@xGJba!g8YgWI@3_+s6CV20Z`#O!=jLST#Iww(QppbV@TYQiFb=a{= zPYU;@6-Z90*y#@8`8;>D4%s6rhs5bb?E!RWBK{|ZFK2OuUtd0vD9BKlPW@e2B=d9N znfqxaff&b%6}QkqP^@-Z>jdx6ifQl=xpZ!WA=*@Xz18A+Fb{!5WpRnU6K7RybHL0I$?$r+6E&Fv?3pK&MttWE@wJCBVK``XpERCzw%@qfg=*AMzxL59K zGE0DiV?ouO)eFS=$~4^4Nj9`llr+X4hiCm0!Izs1D@z012wnua`d+ES1rL5^#tkt- z>S@{1ni<1>*^6r2ag)x0DO$yWPd=qY__T#Helo2hs~(QJyYIR8UN}|~NZdy2W<^l# zMCJ*2+T=c0rEX%M^&a*&*qRluMH6U_?I%dt@;p~tWITxC3C$!MLlk=QUXmU=`J=R#Ma(sW`z*}aq_)L#+mi-gz!vGf0q$04OhKG(d> z1k$m!wEoLG%K|a+-vSBS$(9pOi$7UyY;^dMCRAG22pQp5A;T8cSr}E@pwjvZ3qj!D zsqIvq+#Qa1Y++Q*TndsGJNd)!iBet>qHkP0b7e)9i0XM=A>;-vK#oe(=@IvB`uVm(4n8z@#=W)HZmhg|ij`9=fh*4Q z<3kzNM3^ZgE{|RPn9DQ$0=cCx3=(+q7?3%gQeVR`*#^z)XdC@z4m)yOCE}+3oDi-z zgo1yyzH$Oj9`TZ$I&~g=JK5`=D(Z0b1%!TTp$4NK96s%2K`|s;Jom!)9w)wBEZelI zTrl|ZXa~SJL*(5@=*TO)#`?+pz_`W?i6<@Xi7W`E_AT`J_Sg1w3+07n^1xt0AJ2|z zw@=LACV{!r8$6OPOe0W5~zodHCM6NdIol;(ZJb z)Giqg7YJ-Vdwl{6C+HmtIV((8(`=GmrEo54!oXaI9FhxI@*OP9wh>mjcxGvxn@T-5 zmla6dS*ymkN`FWEl?x!I#eC3jxA03Wtl{42(#(1Pyg&%4zg2$J*EL+8?v@{S&3b*_w- zaV~5x(CHj+a}v05HMg^27PLKcZ|YOEwMH5oadP1*%yz}U-<1wMTjRS`ZbNP^q0!@| zmajdG6UX5-zcO$_tf+NeE)W@?E zj0|@9YqJo~A0BvLX~Tnt?Vj@QKme8Bbk%I#K(@^1@o0AZg5Iq;K(TX%|uWK{ALr8gJ=V%JI~21 zoi@O>mJ^QtO9y(ZC$&dyjJ#%REj|os!z zURhe@71vEK$Gi|Il4`!FW#cbQY4w^EWO$Fnvvix{u802?)aPAUH7&*(69rF~x*~Oa zA60a~Blq2#bGbdEI#{C+tuc+y@%T}Y7QI5-)7UP^oN8;l>ud8BnV=G{aPwT)_jKa# zgsLQgpz`vtYW+Xk{?4<`3S%iQ;&_o-*I*1Yu(dW2KV116#Ky%7fgO=*)YJ8#zot5W zz-qJq?GsdnR}DCTRXd|6y;9Kp^IJ3AFI^vGS#!#_(;ZPv(Z+7GNfmr3m?=3WSq=-6 z%p(>-Q9p$*oi4roWo>~6QW8HWegWQfMgNuJy2~R`Dl*T^6KONcB2xc;G0XAlqJB^x zKV18E^khzhaFNQ7cQEk9s^FXrPMoKxp*N+PZ&VPjcV^_K*UXLP^r_h@z@#y!#2tPH z57M6ssA%o~-qwJltBW*PK&5c?!kmg`MWb0wF;DFDk_3|7Sh^#j&M1KJY}K?g(x-sQlZuIv^Mw^8NH#Vzk1D9f{xW>ubl|4l3i&5|nWy^=Tc& z%Teh@YRccUzW5gcoUjFuSzkB zH4T^Po*Y4znK!PKcp&&O{{FO2^aYAy(yDQulUj=J5A@FSndH zV;z(eS{?54hX@6;=bP$UN)SG}zw5%z#%CCsQLB#Sjfl~;^rnEO!IxaXCH_|1TkYBW zi{OcQ(!VFz&mLlGZ|K>E##xekEv~0_0albK2@aY&G0leJ+r~Dy!FvIGsb*|Pt-g8c zos&A6Ll`;>JiXE!^*nE8HHuHX(=T)x6Pm&pe<=UHtbfoQ5Rtow8if1)V7gzO`{^g$ zQqIcB7M~!5CEUG`>Z80$?!QT-T;Jlj`PQ4nmCc6{4JA{LJHiB!H@}C>r8dCdoe|&n zZ)#2$ijzz*o|En)_A9pW%|nIlR`<-G=8;rh*2f? z+oD7UQP&KWA>^^tp$K9D?raI)pc$3@JZckJmt~{Y$^cGBQLknT8fAsw(rQvqZ`iXK??2!A~aSZW3w3u_grqe>q4%}PAM2>KvM#8&DI-T>}@ zyi34(LRVp}O@>TK`pX|m*H~#ZJnU^hu?NDwwv%88eD7*h;Ms za<+H)ZF@3IY`;|G$fqr|R*^jyflH2S%8ES#H27%gqva6%`1ikAkp#2T&~E#YIVPX% zAL(R13R8AlDD~FDwAiK(#na{+GhGd@J)jVaLzATv!J%&7z(G&Ah8zn(`ul%!)fhHh ze78 z1t2f;Dj`=aaMmNQwMaG+AXr593vd3m_NGK0t_n0(fNCb7^4^!JvN~U>-?ZVJHw^uW ziV(X3YcWy1FfttVFJ>*$vqt=x>ETs93~BnW^h6)>92i1jWe%QE6=p4box#)Uq%X#B zQ3f^y+TKK{uSeuTZq#jX-0MI2OzDMCmL$B5$pq#nnyEYJ?Y0HhX=0imz_%=FJI*^! z_qb~W;03X2VWodNr`SH#(6kgiuUu#j4QhicLXd2GAwklDkbJN7(6u{(Ju6*^Ww=RQ z4-*E}*uw9R(1X*GgM8N|Xj>+NnO<>Z&ia1igHLI~ftd~{c+8Mr@wNB>AEim7&w*4D z^I+uq{JF7rYbg=e#Q@nc3EGH(ffm6+s5@k~k7AvegTLm{um8;6cAT2Z@02y)p7HSJ ztzT91PKFY$5?(y=%%R#JZpr({z ztM0#EP(pcTnd+HON)Iq2($;m*PJ`{=Ht%lY&g}kLKSJZeje3?jzx+-1dvVIS%@o{! zisq6qzA^XDRtI!=2DDi~BqAay{l>`t`&HpO#7bM#jE*bLbnJo|LRt>3{xpUk%Gq+o_HQn_6M!k%3EF z(~i5G@|T0VV6kC&B>PxGtwL}vEGaF~g?0+d7$2Crli7e7HMF?UVNBCrxkd zHDuLcA@!wUtH+2FR6>354om3SZr!ink1J)c$;fAxWTzg@^x4$ccr$N>n<7$F)hWKK zLgLSA#6_hu>%fef;n!mVW&c&NfNof4Fi(PSvYN?bn{qa78QUenUHh0l+2?_;_=J@W zP3E2SL46)uOP91U+_yqdPb%ry7ge((*j`apQffye5|WWnHcM&=!+JBDvyYoR8?V|s zkF>>&tK5k*0k&FE18#9Xr&FkJ{y#!-9yz`luo;{|-|X(SZqAo}qn?=<0Tfzu%>x(s%tWZehogfO0QXRZBmcyoVc~mt3 zse$0`@`-D}43p)wx*wYIlk!|a(Y=#Wd}#LRVFrH(h*(uI_6coT-n z=b9^wvKd5CVo%Nqj`9udcEwKf;Dlct|0%RVl7%=$u5pi*nZZ}n`xDG)isIWt1c(b8 z2H2)2j_`Y~%8YnEzm>}Oe$BtNj8-q``B43Vld+MlQA|VyiTM>Qqa@Ub<%h1)6m=^KT^6-b*bN(y0`JRcuiN#M4u#zY8? z^K0h|e%sW!jf6-3)bi<$j^xD?0&|~*S5A3YfDM3O6Zam^EVQrYuv921ZjkbgL%7t; zIYAEk;Y+mef_(A$Y4M#-w%Ho~1}rS_`(#}RbzAaM@XMY9!-b`RA&cDzdj8$%G$HZ` zg&o-Dv6nnvJOtzz!Wspc9;*?|w=INmBV$ROrv~CE&B0p1#V&B(9Y02RP6MIW^OsP@ z_V`s#J@{<=pR>_iF8m_73fuGvND+|tDi+_o!)XUd)NgRoVrQEL%i)8+r_#gv-)#No z^=|)bCMR1kAeZ?~f%kC2^0+zCg5ScTajDG2Fs9B3JyS^;vmFU<1>+{Y(D_GHCvVgp zMV9c0%eGNKTc_CtPiMMu|7+wo>q9usGG8eO1{FA+wfEm#>oSaPv<@ufzeF~(bT48% zyjVnuDb3D#Hq)RZ&NDO;sik;|91ae@^KaZ-aTAi`p}J~W96Nt~_pd+_5sO9;{K^LK zbQyu6lIZe!N29Y7e}BX8N=kkdh=TD6s<(q8l;bB@sVCkuD^>*~LihEM2NN}}?#NFk z4gi}3$YHD2Xh%EV0NcP^NXU5aM%3LqRLFuXG%6{-s?hQR!BM3<)+uzH9$ii0BiVeo zUuJ+`P5FPS(Jalh{Bbe&$zl9uSg>o0H&&1HUH&jj69=u+OX>Y=G2%LxiI}P3`9(|{ zU-bKiyITWnD)^AskPFUi!0GKLw>}uf3eSbxx`}GpDNTb{CyorDgy8)K|GgRAxoxA> z!$Cr9W)oj5!@mz1Uq^MH)oO2_c)9#xSGdZpS#FA@Ly9;30p_*kE!g8pU9T$Ugl&tN zq2aE&9}IY%2m`$eH);4I!A@a&ZUS)0KsL3}1J-7WH@J9U-}+?>oE;D7wz>ag-fiqT zc9{ziuPGZG7V+cU6gc3A+vCxna0SPvM9?2C zp%7DE0J&eo!ThZb;SJ~3{9M1o#~{`=8&Z?QMd8a*qZT~+wn8d}J$r$cJ_h7BUPTw; zB%+h(uCppx3po+raTfK4z#kgnpKe`M?M5S~^ZKSR%`rx9K4>avRk>Og8i$04BE?w2D)0P!zFHEand^+lH~?8^5Hd@v$rjj|DuRbWFPD#RgI_ zrqZ^!?Ct+PDh)SDMKa;0n9&3}@x0X_eu#-(*!dZTj=M3+RpxEI^Uk-eM3u-Nxc1#U zwGn8294c}fKmgkWR2RYZ1M_`A#n7=RW5P`6N@!>%?{tOenS4b2qIZx~#Z@;PdZixuBwZ&PF}z0CO(hzna7H z6maN`7P&{04$;=rA<-Sk4#NO+@3BOO%RqW9fX>Jy7NqEBvs7 z(r^R=cI7XG{YlPJeCtW4*b-h$PsFUV*4p`}hz3*GHZ5OI!6ope4h6pS!((D~-dV_X zEUyja;F$2=u-ge5Vn+|vnKs=nuJdyZQW zHh4Jg*Wx1k(Z_L4-iD4ie-Jkg-5TYDhn zB@D&XtHggxTNEQ;=et9LU1hrld%v585OIv7BI2rgZVN-CHE7t`iF*YssGJ25@wQVS z6`-{bh2@cv(!NGcp(y##j}XHsAXLR+HS>emz0diAzrYJPmESP{GWsbdl}W`X)KK>L z5}+P8B^BBV9Pn)VX|9ukm}zE1K#HCc`mltr#4hXfVPAYdzRNPuk-$Hz_`hS6>pR{H zYf{)zlmLZNA;;Mc<7m$^vsM!^2qj&{DjZcwa(4pxPsy6BM} zxKdnh>;6oCgeQbn^ci7|PS4_v-$^7@$g8W6`hks(9{9&e| zI}Rpm0Jkei@zXt{zzYWfhw4H@V}h&=R;7X9$!G9x#$7@HtohE9%{rr<=e#xz6>cEf zhc8Gb`u{Ot=KcSq!oPq+!I&?X=mQ@F!N38rU=o3n3fQ2e!oOq!2IxWur54bLG`;yy zT3d2&JCEE3WDB5QlXcXMhooNHQwN~=b?!MmG6l6>_Dt+E^4z1HTiI|1HbUbh0mRC9 zQuze?G~|FxXji+b{bnb&Uh^ZjDy zO_2BXEihZH%JQUrj-J?}aY`@^8a}ms)&-HT84iYi7w^r%l0-Nc+18u!bMe(zjb2UO zUom-=TI6+*mjMk3U^sxU=W7Y(FxU9z)GH>PF>l4A7khSltp3MKSSa82DGS`ge%#5e zG?cr%PtvY*d^3R#BzK zZlc5dS60#CqZ{Xhi`8V2m(oWxEST#*B#nOnbe%1iMe@MHcbB1B{8!YZAUZ*)BDlr0 zAbiBzwzw>@vgVc=k8KL}E3RsE4)@rjOjVn+^`AbvymWhWEv0yM*TPrd);tdd@zM{3 zML5wV6^lFYDZmXbq>o&c|HNi%FL5%myx-suaOAFfrF@k&m^BXCP4S+yoA%bksPJ}w zq!19`;PTXk&R3&y%OA?j1P!!N!ut#WL4dB5w>ZFx6n$#P-w!S0b_3!BA~mXMW6vlV zTba7|P0Aw%e}6#yB4+KVzjT({a->2j0I(GB_{iEfN!gdPsmH1ps9VQlehzzCux>uq|X|&|ddrHnF^NTgb{MTdRAFh8=(}0*Ddnc;l^l_10`Vp90 zuySzQ+y34w&-=PR5look_JGR67@}NuuOiKBhom!cW@0;qBB=iSeU%4QG&!pc_vy|S zGwRaV-wf{dAL89V zplsWM0=l@2r)b%_^U!g`WM{DAr(as!Qn#xTyXu!qFud1RD}2$Z$u{dq8jJL$zY+Pn zu$*ffPMZ+@8D*8p(zRtw8o%xM$tgiKT(-%i$Yxz0wUIY5(%B@Xsap(13}g;mrqPza zZKfq&7J4`EDQ$HlfmD&>*&b0zQUNld5I}##ohyV8fqxp8XZG5|CZeMQmKq+Lgags% zAL1||J)wjdNSS>)kaq(T189A!U8cpMb-NS|ALPzT{60#xnpidu$1GlQ;(9=>U;0Ra z+gYeY%w@nH#rHj5$^}p` zE{lT`_`za7NbJHsulEYbRQA?$wn5yt=^kqZt5^QG9b&-y)GK(X#^r`PlmlvEyUZpI zLj{MLv3y4HOAsMm7^}lIF3N*H_PATdF#?FB+Ogq#kqeH;QDBmoAH02bi;`BbbgYAVU$JTV0qX;?~nlgdr2U{fRsCrH2PO)pQ!Dm=`Gip?wOu+#0u!a~s zcWIbPcJ_JP4o@!)jAq%78q>%JqZc1Ou4^#_aCK|mHd@=_%EOh43cK_A;~%G;t(

zM7kFAcyvS{xDJ&v=td-7KQ_AevEC(-1ntiRaH9kc&QfBg<`SK}#yAN=H^?@%EN znSIp84Q2~7daUOe9)k$tV)kc*>U!^$Wh|yTG|4pt2lUU7XS=GuCBkx3)sKkh?wW$< zScog)ZzkYCm%xNvb5sJz;FN@$7;JyEUw$I;8Zji#tT=YWDaj2_Z_NzhwW-ULX?-^*4akO z9vvxsknefjC9&T-z=mA4h=AO`s}isz0C21(JrZebJz!vTAQogLk>%m27bf<3q%!hqMFh3CKy%u_o)PB}Em7F%)CPi% z3WMa3Q1D>p|4Xtk>x7auLyWH#>U6f0RE_t8Ysh4=p!oc%Ebt8+>fG`(5A>IHexsa2_(3gd=V$`7-hWwyqsvNeexWbPeEZRFZqTUkfrpQ_1vNvk^0lMuph z_B?)Ho}3MMZp@g#!sY;uxO>yxh78jK$pOJGq@+L3-|93q6D-4Ja{N3^x);H%4~)S8 zp*HgwFaQ(rbk}~y2c3h>OI=1)N1*&nlvA&b09XC#)jzjzo!#5(v+6^-a+aI}cbEWsONr($;D+gnm5Q0Q8TMJhf3t8Qs92Fu z-=7}D+}N09=8#a5G|=czQUW1JW*WoaY#CsUxd!L0eT*a#=4BdhRgxoyO>i>xnVEd{ zOp_DtAcgQOn%E7oaLo78T6GG&1omT-;#_ih=#o=c?g|!sUy^GAit{~~hd{3z$$26` zQMhxJX*V~T2ALiIk1gSXBc6;XpHPg3pD9t{!)U%l6D!M-u~VKYHwFvX7m!Jb#>>nk z_i7AV9=5+i0lFF1+rcg_9543+vmzk@|1bwsL}r*->h2eEQ)s^rgv^-m(FJ)$DfCqnBf{Edp0 zaqFA734A+JJPwFg@E;`C`h8|tb6v-?&v;BqrpM@iA>-X0WZ=h)|Y`++2L0R;1Z~I;}!bg^b39flx8=HaQ}k2Zs#!uaJb7Qc#dq_ zQgGT@CR*@%QzK1cD!1RUfR!MK8gSy{R4QBPAVslD@umANFO!MhG?4D%0rSLS|Jhvq zZ{X`)Vc(~M_&kq~QlC5IO~TfR4DJLRX^`jOa$26Pb!tWYKyv|9HvIEbrrix9hm^(l zVm)+&y4|d9wh(*vwlV+=fQ;+KsWC)6ngy%RNT7OA*j0`ugGa%V5^?dwZ8=Zl?v5Rc zoVk%Y5RlOnPVO-s?KemH@%(ODhp`aztK53WA8DUTq}29LDQGC&n-BoDY#X|Fu8sF# zsofac+?rYHUA)3wg!rxj@@C11WBPA=VQqkst*INbB{Ur0_-}p^k;L2Qwfpt%3__nk zr>~ufxsS^%8pD7tFP-ZUWvE3Y=8I5OrKvO1P<%enllGW=&`JllNA-iYN1;Yx&-)Ba^|Nu2sb5 zX9Xr951FV+%9EvCC!+*2DUsDxjI%#ek#V;<)SbrxW9@+S4VV$L(O#Yxj-!i1w)$JM zt`EE3+s#@cZ0Zo*BVUfrWw$m*0-wjSSwDkdJ_IZJTRRoIa;~s&b%S8>sGMjTERe|$ z29S6+-Zg>xYXfMv_(hzVDk2)ygHcM+-yiuX`qB)h;V)jk#tV>a69e74;4g1@*=MZt z@5`gW_n%;Zeg99reaFfWKs#;w;D=84hHlu}u*B-c5RO>6qj5ZmLKD251a=TO&cMqm z=88#8T>h>cw-OmEbTF{}o9#b=+`?KDx?*Z?5)zB0s&e}@T9tMObfLZtduot@7m-NH zDY0(dg!z^Mx#3FEaaZ$~L;$3+rO%N=pp^&O@M4#Ls8b7B(N-x0ouyCiLT_sl=u#ptWwB| zw28w8ofdbh6A;O2OlX0*>V#op;j&uH{6_p|515J z-8`)MdV$mb5ab>JK#5oZ(*osTu{Rlwe3Z)L;w2gQy*YqZN$-~4u~6|f%pjD37g248 zofkOncVMoGE5Zf33!SrYC$`HE!Cpz@$*iZ7Nh8vn-YQ_y=&nMQEsHFp%PVm=HA79W zt1kMuVh{zTL4z3-?v`TK=g;%=tMuxnKYypmjD@yaXK@gv1=$S*7EtDq8B&HiJ5Ee_ z!)E@GdF_UUxHVWf75fbDMUVgDxNHW~$PESMw-Gm%?bcz3r7Fb#ZCcp*@0kBb`~U}f zn7Xx?%YVcVh@cA<1kpeSK{LQVAVGhKAHX{ZwE^}_G|~nOZ48l^bBS*4ney;Y1WYKY zp55I}ED_I7zSH@Aq3JHMrU_Vc-!MtO>R<~;(dEV-SP(Z1kN$+Nj9@Z_!Y%!Tb0ggq z_uEZo&LFi0c9&VQqn8qJ`$v%tI$*r5fRjrvV%g{VMX4j>KOOWJojQYl-6?Lw-m+g! zFK-&1UxglsfBcG$e0??iL_`3Pd`ekmfj42-)r)ReqWD%dL%-Y51;I9D5xgXWdl~e2 zoVMYYT1RgOlXa;T<}W1rTjmgKL%m`LBe|zr$j9>$-4Pv*HDB}Li*l^uD~-IeJBSwh z_`5$~UtoQn9$!{G1rr#B@rjA&wc^LR0OXv2p{f*Wew5?7yp@Pmt0-byJiYEyn^oj* zi)qfSYtm&g{3jnqNg~R}i#E6g=8qwjzL6-!2K8KCBAIBb!krz6`HEOSA!EixEYO5C zC(Wen&raK>JPVe-bcMdM4Xwl~CHebF&?E_;z>}gVDh)f=z|++D%Zo)!DkKxYsQ*Pr z{wIqJhuX~tsqm3A1MZc`bSi~J5;kf1!|vyxQJh68H3IvX&*lY)u?M3Cu)Yj(X{Xa- z5ZD9RtsT5)gMWHvp4+T!UmE9=DoG3U0*RKb>TUDButr}RD3Yr>sCImd>J|T((sh5L zP`K&7t$kS(IzB@*Lw~iwrQV(q$c*IvQMrcZTa?Lq(K@tX7*kikMaqu|Oh5huPmsXA z54Z6^Kkaw_;rjx)G99?D%yVN8I|Um2&^-lWVE|i#7N7Y#fa|m00}m+Mr+^2nnHzXp z=8C0*;WOnG2=NfhDilI(gN5JIIP(tmRHmriv1EmMDYQA)dVa#gV zbx-MC5?Ppih%XQlhll)Ijh*HQcmj1NMygGxVt*@=Fq{JfIlG*2>pUDwS(rq5%)3&4 z{-2Vr!msJKi+(po*GTE^M!G|~ML-$^QBqnYgfWql5Tr|#5b3T7jFK)vYQ$)e5CncS zywmsj3!Xfm`<#34IrQ_4FaU-p&ItLbmDWRD^iYNaa;#hiLm<{?;8)GT9yx})%^vLc zY%I>%AAs<%INqa6t{q17xo1A0YX2-QUDtc&{0L1KENl~{>+s8mkJV~t2Y+>X~cs(J#usa+`z`Srev{$ri|U=cd)JS)ik zv4l57Yp+l;RcWuh*s64eXw;y6$6PR1ZUytT9O-3OH~ikZhCH{%=h7L1ips0n&GkJI z@#5c5a#7Q16kRo$F^xU3c{hs7m-n%PuT9>K$Mi$`GeL@&j-@{*n@5L=#m_!Sfq?vm zcorBkz9PyJLWK9M$#v7v(IY*Tb&qKXSi+P4jGPTI8C+eyVVzD;7C5W=?hk1XegXy# zovx&Cp@$#)RDHtSru@VjkL>0|AcRXC_x7d zn677XVMAGf_i8`O<+z_Uo19iIg_e`2+gMpE27?r7znKzeE@p9FxqN&9vZr@8xy0mE zUq~zDMfeWQePV6``(dI&g+d2q7;C9-h!CWoEnm7uBhyBSQ|gU*{aUd=9uP%SfPmBrw`ZRxmJJd^|QxwP$6tO z5`r1csoe6(Gvv-dJ#}ny*XVcrG7wZ-JJ6`&dv6Q3=KDqdQ)BDUWU;%lz-Q|n?29;a z&;8iJIA%2L)2=Mz{#I%Fr!s24yr@qM+o+xDF z<-N8IwM!Dj4+#?3qnBoG0v=<&hF`pKBISS=ye~LX2^tGs2~XMK)OCOqMPa}j$mzlh zY7t+0>%4x)|ap9*z^*IgGKU42nEw=?87srEK$g5WD$o*O^nQO%_(EG+w zMm*>r@QT9oTfobA6u>x&0U$#1q0SWd>I`e@OEqBUDJBJ_LIg|A2rdE_G3e*JD^{~+ zCj4`SMZ0lMFRLAOrKrm`ZtI)!n=y6i5w9npxYR7RfDiK@pKyqvzKX>08$H8n*2bvr z8;O~2GbR|RV8PEl9mz-zcL@vJ|7d=1+|S^~mZo`{gP#0i{1A4txv5tc?b#>P_=Hf5e}}k~9)@ zH*>wj11m#UQ3N-7OCgk*0N4-2;XVmorq<5qdazh!DtfHccV zShv4)|CDk!22ICeBT%q6M|H8TCp%7);RE)bw|BCb8QwM{?%~Xd7|V|R$EqBgv|Lb& zJ_Y0w+1L4r60^NNVsf^8U0->mN!d4_o_t^(Z1L7rh7}YM)%m-Y;n^aKgQ`XDKI?)i z#Ty)wYA0W&vJoj;AO|o?x%+#Bk;PCX1-rb5Y_RCxtx$5rr~j2u+Vf%fwRxFkQ&um! zA8#pbdn%rm7_PG9c8;~CWi>xms9&l{;Nh$ePJN<7i!S?_L-P$k^t*Fq_V`&>>%E^z zNgQE!w)7uQ~S7XIx*dnM&0SzZ&>i^l2I6%QG9j_{@^r z<7uN5!(jz--RogNi8J*5)k$WfDu6uk5eNq`jYNvkauQ%Q4NLj%Qcz|hvg$Tsh8=xr zjK(&4Ot2smDrs#*ViO^MACmt(;oV0=1%3i$y+c3AL=7NQI4VhhJfYH0N!~88=xv5f zfaz$9Uw_A?(rQzRs$G8uX!h4X1t1_ui7Xx+8q`{&Uo*9{E~2}*6M(ei^UWCAI(ll* z*1bVL#kPKyrl2A$C8nSu_==XdwN9j;#=%7UBnw9(_W@x5 zLwV^1pL$`n=~=+dXN9Hg?Bk>Veofx)S|v=ng;;!ib56zqp_weoZ6EKFJF55JDDW<^ z(^x?HMi1|Rs!f1BX@3;m4n|*{UJY|JwyzK_1kY%ka|2#QQ`asEUf=@NXKz;S<67ro zU?5m`dxC|GITzPfYk2Ig&bN&|7V|YDX9c0!K zF;mQkt&_}opXq*sG=zvp=2K^&x|A2ihI1$3d)5B?G3AU|@on$!t|{vW5rq9NP>$Ut z9Vui-CnSuDt_*AJw8YxbbaAc@sMm(W&7Iy1ZCr4l9!+f?V^U-WZ$h#evNWVS8gSw z@%BmW0U^iI*SP9z@h)dq&)Qgu|N~p9ola7CDL1293Rs}T}anL|}Gs+BKGJcp&Ubsg2l!&Ls+Kl#EK5DlH8$f@- zZE~tspXI{}Bq7LgaFc(pH4o`e`C_UU+sX{4_eAcTWh&&0{AQh zibF69hlxlgKZ}!H{K&0g!TWRcGR?aW=%zuM!8XWHsv!Qkk8{C_tVY-S&sNRjD$5FP zRR+zyJ6K+3D7E!@l4rrtgiCd3=mPbLut47xO=D>IyXA-;H!?qFWRu za9bs0O6?B~=;I#deRrRiX>_@gQIdE7+T`b7rnX#2?|4LPV%ya&Ag`%>3O<2yun`2m zP8S!J{ZSB+@zMCoQ;?l$Hv7?2k&84&)#G#~*ht1-9`FRDm*_b!euWEcd*h^x2XR#_ zSiE?NrE*vR60w32lSPa?9ucqwy=z0G%SBR-dFd6r!&!>qSaC|JYWA?kV!v9OmW|T#%bv`Co}<4bhvPU z@{nYUscEeQMHBny3fkqvo+T(AG;YbehF-vH_7Gs(@j9t-!310rU2 z8>FIJOEN}Oe2n1uiaWsuIQ>n-3`>fPY$%&I7<(k7WX7@>e^q+~b6U4PS!fVp>zH;) zK+gTh8Fd~yKoZRPKo0O#S%lOZ@@b{4(Bi{z0mGXa zhI{JUO_TQcMYsYkCKAcbRfbRk=oz~(SIVga<`qtz7sJ*Dg1>Ez;n~aj%U5ZQGIVm+ zC-(v?Y89L1%DAL1F#NTWxSC{aZP#zz-gUpH_I8kzt|hFHMY{?ilZdZ)VI8K7E7qB= z##Pc1>y<1AB*-)sc6)X(Rrotl8esDrX@Kh@&VtY9l5i&gn};g{l#97GDpi<$0JcNU z*gzpdkA%e2Zc4gjgz%OscT+zK2ftg}BJ}JHPVFyH`hg4Qxa}j-&dr;blMB%NIbw3l zU6G@phDiS@F)`E-m~+-R|7H@wKu&7#E2#L+}8<~di z=?S3@0KTbyFkPg;7Bq0CGC1!bq&1ueu=}ALC~4)?z;BIto?aXV4*<&lH&sB^SpOCC z{NpG70(eIjWB9$Bi>o`_I}nDA0AF6;0e5&e$GdCg9PQBv1MpKxk&7@Ua7y&&p5Ht2 z7cXV@Xu3k+yGIa`wJ)biiLi*MHT$uA@62+wQn3ujL+q8$a3__|Zbb9PVqkfVo$T1Y zQFahgIN|>RqatZ&v+3^_u8pSS4{It)g~WL;;zNRpNu+6R{C#J*%$~8E-M?wl47)la z3JiDN&QyJ>+qCd8(K3mxPmZ&UOlFAeiT8vL!oKz{?^B=-_*D|KA4gPSh_nH}^>P&t ztba9f6_<#(Xee2HNK@vf%OP;Shm+qd2rHQK;W@=DH_$C7bnf3^Gbl5J zv3Y*0mqIN=9@0ma;|(hNIG#d4s(g8RQ5Mn7@kkI*)n?+Y9&U{N%2`=GB%IR7Vi~6E)NcLyJ4*8Xm}2DQhKrwfc2O*&R z4Df%dJF#hix@FjEm3HShFmRg!0j+y1m`tmr{+o{c7KhWk%|1saTvp;*_~K8R+vjqK zs1(WiO)Ew5r|Lz^Tgmo)9HC6ACU4J)W22AHJDI_f=mNeIGM46tS{y)kw#@4vID=+{ zD@Jg{OC<^2n2l&3Mi@=xk5fnB6&8!F360HH{>85k;{Dn^|GQ&t3dct)?Qi@${}jgT z_sO1$;XV8-2-f{Ht}RD)dAj)LC1I^eVpNn0SI9)SxqAIwGHMkgab!zl(HWk`NjY zz5&FgRJ46Z{V(rX&G&xnDYfr57Gt}IKO}E!wP#hgJSup)+T-*EAE4xC#!SvuGy7W) z7mnlT;qmx~qziKLq1RuD47UzrPo2UrYg)2K zhQ@JE1hgtWd3Yux`ZGP0X<%RiF$ZIA-(w4xg@B?)_hkuMpwjRk6y&?-^h?Kesg&_I zp|8-mw?`SB52~k|p9}s1LCt>2-xXWtGgz3EO37E}(hJ9Z9zFKVubMEqkV->?)0b7uFzUft&ZU4r7L=Sr;v1f?M#2 zKidQdHUp*Yp}0mIfJGK#Z3SzX>7rM`cP&9(tOVRI;nmbRhzGZ8B2MwT|ATie-|Bnm zbOA$)OdK;4P$g@OVs@b&K|b&ZRB5V;D_3`+BnSprJbs^afv~>ego!JRVu(b7lqW@e z(qpv1Jz8bP$XD~nrxo3Nxn`G0{P3YA^%`eO{61C?jQKCbVB&_skGbx;N76~ZBI3Jl z+bv#v=_Iw+Ircwa~0f9uXAW$n5aeVgMA)LuH$F!K~eJ> zxz%Fag=DTK09%;CV*wVjcj~K?-ysSsX{}quG+14|uNldiG!f461Cmz0YIg^ApX1$e z2M2%uJ+@HEYa2M&Qaj&{!%r6eh{@B{Wd%3^tK1SHLH02bzgU#by+?jz%o&{LcNKbp zko08#);W3~3E{Kv)b%27S@iZB;A7jrBx=~Wf$#ezZg*eMQ@C`R9AtTUm>%nRxqjKS z^w01Cf!EK>&ipeEQ^#l3`8-6ktoi02VS3L-eZk zmN_)(kqZK2FP7};O=*es-Rjp?wf8924u%%N>#33uBcZDyR~Qt3RseFlGbQGyp^ z)KZ}!aj2D*dMRS^8&NM9`2*4vYIe8ugV29T1ECwmAS@hDewD*AdrgURDJMzy8c(T% zubJmOjJvtukW;=4j|6=!G+dKv`}PQ8%m}4a1bfk7rvW+;Rap{|l&TRf{kt;qdsS<6 zwU-vyf-ZUj=Sv_lp%h`Te{>{bSEij;T3S|G@@@>9UZ)P#K)uzN-&3W(Chdqx_4wHR*W1oseoqc-VLj1***u11))6@I zoz6rv!NB=Qe1Ruke!E6(lmt8Elsav?saF)f)AnLixN@MBe`cy!AoYv{dyQ#@LK>+F zUb^74x72CULBFbz^fx_4J$`W>9BZlCx$2#eu&_}}rEhUvy5BAlTwK4#x^($4f3)#dMTRlo*(;CQ!lnnv52p5e|3$F;{jGZKbvCnZnceD4C zrmO_ioi;qN?7iaZu(9}t=4zqEax~&ODnACE;{Q1|HvXe4t=h3wvKB~?f6t7x6tG{n z{r4!|8)z04mEmmJ!0(gDK03B4+N=m69Md0xv(iJ7TD43H>M}XcI^CK=Lqn)`OshsL z9*=9}m`q=AjM%8>Bcjg+WrO2nEi7R;08~PsBO*G}Hpkv$za=`YbWoF~2P>-&bUf_JdZ=f3_PEyl!%^(>e!W-IEo!usfI zl`MX*S4ivw0q8-y=%6!oZoPKdZz;%EUUZ(r0JX($$uC2nLY-FSb956YK5X8@>(cX( z8p$DsmHsR01kky5)D(7`DHO5yOQ)?>I)16#)J*Rv9IaE=KtCtSHlDCE`8#TKLuEcu z?cz0k=xiyw$Uq)VuE`vYS>Fim?w&-9fhi#{@D2{{*q2F2(Pg%%Sqrb;y=Z(B!G`FK_TQz(#-!QK^KvN(!ct9Py#I z6;c7Qcf8o+_#hENI7=H_KA!5FEF=e^r;Na|0aL^|d-jN+!FE+{bij=>0d9lt#Q! z32R)iPF*4(;vSr*xLtb$3iCPw?F&Q_ZL_QGrn_*Ejx~2C80{E&HZ07fO3HH|*-HQ} zi;V_o1V+g9oz_1g=63Zfo?;Ppn2hW4?-J7n5MKALT)Tq<@Y~{@dt|zyrJDbT&9P+| zZVX-dCi!Q(Ld`)DBCY2jQpmJEtb(`t2xf+P@Vy)xH{5FH2{> zp{iuS*Y!a(PdUP6>9TTO>?B*?xCk^Sg< zj)QIw7L;lzoS2!>zl-;M2sUsS<#eTK;ou=QNaeTG0(sqwdD8ZkwpmAG zHXjyrUyIsEe;H&*Q{lIA!Yo3#`M1Xz8BzZ|lS)|1zmt_RX?;Y>VErMrHMYmbp@`p= zo3Z6;;L-sW&SYogZW3Kj#JY-4nrZRi@27s`{vrhf0yX&85H zQKAe%ndsVW+pumO9+ke4mOH7PGl_#>zR>WsVnTLbUpY^;g5XzOavY?v_~}g%EwFBJ zAA|2|SC;r3{)^dJtOH{5RdyW_WRuR{GcFN@gO#5LbubeJ#PuCJQl`IqI=ysW4M5kg zB;V+H#`gJT6c#9*Ho0YO?ym6*)?V+|H5P{Pt2>xHEYX{{ENOgxl=8u7OPLb!I5GQd zDMQEPW7F$TkJTRh*q+Uqsug1n3MI`*+`oh-6r)zE8yHAhe4o9zeA3VdR-}ADja}3{YyH?ErPx2yB}`L7x?RZ5^DHrGKn5H1 EKgo1MH~;_u literal 0 HcmV?d00001 diff --git a/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl b/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl index 501ec4cf7e..5c417b0b48 100644 --- a/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl +++ b/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl @@ -142,3 +142,6 @@ ghost-role-information-cburn-agent-description = A highly trained CentCom agent, ghost-role-information-centcom-official-name = CentCom official ghost-role-information-centcom-official-description = Inspect the station, jot down performance reviews for heads of staff, bug the Captain. + +ghost-role-information-behonker-name = Behonker +ghost-role-information-behonker-description = You are an antagonist, bring death and honks to those who do not follow the honkmother. diff --git a/Resources/Prototypes/Body/Prototypes/behonker.yml b/Resources/Prototypes/Body/Prototypes/behonker.yml new file mode 100644 index 0000000000..26289d580d --- /dev/null +++ b/Resources/Prototypes/Body/Prototypes/behonker.yml @@ -0,0 +1,11 @@ +- type: body + id: Behonker + name: "behonker" + root: hand 1 + slots: + hand 1: + part: LeftArmBorg + connections: + - hand 2 + hand 2: + part: LeftArmBorg diff --git a/Resources/Prototypes/Entities/Markers/Spawners/mobs.yml b/Resources/Prototypes/Entities/Markers/Spawners/mobs.yml index b2bc34b2ed..b9a68ba556 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/mobs.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/mobs.yml @@ -493,6 +493,23 @@ prototypes: - MobMonkeyPunpun +- type: entity + name: behonker Spawner + id: SpawnMobBehonker + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - state: base + sprite: Objects/Weapons/Guns/Battery/behonker_eye.rsi + - type: ConditionalSpawner + prototypes: + - MobBehonkerIce + - MobBehonkerPyro + - MobBehonkerElectrical + - MobBehonkerGrav + - type: entity name: Monkey Spawner id: SpawnMobMonkey diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index 4e2405af7e..f8d12e98a4 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -1457,6 +1457,64 @@ description: ghost-role-information-giant-spider-description - type: GhostTakeoverAvailable +- type: entity + name: clown spider + parent: MobGiantSpider + id: MobClownSpider + description: Combines the two most terrifying things in existence, spiders and clowns. + components: + - type: Sprite + drawdepth: Mobs + layers: + - map: ["enum.DamageStateVisualLayers.Base"] + state: clown + sprite: Mobs/Animals/clownspider.rsi + - type: Faction + factions: + - Xeno + - type: InputMover + - type: MobMover + - type: HTN + rootTask: SimpleHostileCompound + - type: Butcherable + spawned: + - id: MaterialBananium1 + amount: 1 + - type: GhostRole + makeSentient: true + name: ghost-role-information-giant-spider-name + description: ghost-role-information-giant-spider-description + - type: GhostTakeoverAvailable + - type: DamageStateVisuals + states: + Alive: + Base: clown + Dead: + Base: dead + - type: MobThresholds + thresholds: + 0: Alive + 180: Dead + - type: Spider + webPrototype: SpiderWebClown + - type: Tag + tags: + - DoorBumpOpener + - FootstepSound + - type: MeleeWeapon + hidden: true + angle: 0 + animation: WeaponArcBite + soundHit: + path: /Audio/Effects/bite.ogg + damage: + types: + Piercing: 8 + Poison: 6 + - type: FootstepModifier + footstepSoundCollection: + collection: FootstepClownFast + - type: entity name: possum parent: SimpleMobBase diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/behonker.yml b/Resources/Prototypes/Entities/Mobs/NPCs/behonker.yml new file mode 100644 index 0000000000..a1a3284aae --- /dev/null +++ b/Resources/Prototypes/Entities/Mobs/NPCs/behonker.yml @@ -0,0 +1,156 @@ +- type: entity + name: behonker + parent: SimpleSpaceMobBase + id: BaseMobBehonker + abstract: true + description: A floating demon aspect of the honkmother. + components: + - type: GhostRole + allowMovement: true + makeSentient: true + name: ghost-role-information-behonker-name + description: ghost-role-information-behonker-description + - type: GhostTakeoverAvailable + - type: HTN + rootTask: SimpleHostileCompound + - type: Faction + factions: + - SimpleHostile + - type: Speech + - type: CombatMode + - type: MobMover + - type: InputMover + - type: MovementSpeedModifier + baseWalkSpeed: 3 + baseSprintSpeed: 5 + weightlessModifier: 1.5 + - type: Sprite + sprite: Mobs/Demons/behonker.rsi + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: alive + - type: Appearance + - type: DamageStateVisuals + states: + Alive: + Base: alive + Dead: + Base: dead + - type: Physics + bodyType: KinematicController + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeCircle + radius: 0.40 + density: 100 + mask: + - FlyingMobMask + layer: + - FlyingMobLayer + - type: MobState + - type: InnateTool + tools: + - id: WeaponBehonkerLaser + - id: BikeHorn + - type: UserInterface + interfaces: + - key: enum.StrippingUiKey.Key + type: StrippableBoundUserInterface + - type: MobThresholds + thresholds: + 0: Alive + 450: Critical + 500: Dead + - type: Metabolizer + solutionOnBody: false + updateFrequency: 0.25 + metabolizerTypes: [ Dragon ] + groups: + - id: Medicine + - id: Poison + - type: MovementAlwaysTouching + - type: NoSlip + - type: Butcherable + spawned: + - id: MaterialBananium1 + amount: 2 + - type: MeleeWeapon + hidden: true + soundHit: + path: /Audio/Weapons/Xeno/alien_claw_flesh3.ogg + damage: + types: + Piercing: 10 + Slash: 10 + - type: Anomaly + pulseSound: + collection: BananiumHorn + params: + volume: 5 + anomalyContactDamage: + types: + Radiation: 10 + - type: Input + context: "human" + - type: Hands + showInHands: false + - type: Body + prototype: Behonker + +- type: entity + name: behonker + parent: BaseMobBehonker + id: MobBehonkerElectrical + suffix: "Pyro" + components: + - type: PyroclasticAnomaly + - type: TempAffectingAnomaly + tempChangePerSecond: 25 + hotspotExposeTemperature: 1000 + - type: GasProducerAnomaly + releasedGas: 3 + releaseOnMaxSeverity: true + +- type: entity + name: behonker + parent: BaseMobBehonker + id: MobBehonkerPyro + suffix: "Electrical" + components: + - type: ElectricityAnomaly + - type: Electrified + +- type: entity + name: behonker + parent: BaseMobBehonker + id: MobBehonkerGrav + suffix: "Grav" + components: + - type: GravityAnomaly + +- type: entity + name: behonker + parent: BaseMobBehonker + id: MobBehonkerIce + suffix: "Ice" + components: + - type: Anomaly + anomalyContactDamage: + types: + Cold: 10 + - type: ExplosionAnomaly + supercriticalExplosion: Cryo + explosionTotalIntensity: 1000 + explosionDropoff: 1 + explosionMaxTileIntensity: 10 + - type: ProjectileAnomaly + projectilePrototype: ProjectileIcicle + targetNonSentientChance: 0.1 + - type: TempAffectingAnomaly + tempChangePerSecond: -25 + hotspotExposeTemperature: -1000 + - type: GasProducerAnomaly + releasedGas: 8 # Frezon. Please replace if there is a better way to specify this + releaseOnMaxSeverity: true diff --git a/Resources/Prototypes/Entities/Objects/Misc/spider_web.yml b/Resources/Prototypes/Entities/Objects/Misc/spider_web.yml index d7a05e874d..3f669bf2f2 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/spider_web.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/spider_web.yml @@ -22,9 +22,9 @@ - type: GenericVisualizer visuals: enum.SpiderWebVisuals.Variant: - spiderWebLayer: - 1: {state: spider_web_1} - 2: {state: spider_web_2} + spiderWebLayer: + 1: {state: spider_web_1} + 2: {state: spider_web_2} - type: Clickable - type: Transform anchored: true @@ -73,3 +73,96 @@ ignoreWhitelist: components: - IgnoreSpiderWeb + +- type: entity + id: SpiderWebClown + name: clown spider web + description: It's stringy and slippy. + placement: + mode: SnapgridCenter + snap: + - Wall + components: + - type: MeleeSound + soundGroups: + Brute: + path: + "/Audio/Weapons/slash.ogg" + - type: Sprite + sprite: Objects/Misc/spiderweb.rsi + layers: + - state: spider_web_clown_1 + map: ["spiderWebLayer"] + drawdepth: WallMountedItems + netsync: false + - type: Appearance + - type: GenericVisualizer + visuals: + enum.SpiderWebVisuals.Variant: + spiderWebLayer: + 1: {state: spider_web_clown_1} + 2: {state: spider_web_clown_2} + - type: Clickable + - type: Transform + anchored: true + - type: Slippery + paralyzeTime: 2 + launchForwardsMultiplier: 1.5 + - type: StepTrigger + intersectRatio: 0.2 + - type: Physics + - type: Fixtures + fixtures: + slips: + shape: + !type:PhysShapeAabb + bounds: "-0.4,-0.3,0.4,0.3" + hard: false + layer: + - SlipLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.4,-0.3,0.4,0.3" + density: 1000 + mask: + - ItemMask + - type: Damageable + damageModifierSet: Wood + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 10 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - type: Temperature + heatDamage: + types: + Heat: 5 + coldDamage: {} + ColdDamageThreshold: 0 + - type: Flammable + fireSpread: true + cold: + types: {} + damage: + types: + Heat: 1 + - type: Reactive + groups: + Flammable: [Touch] + Extinguish: [Touch] + - type: SpiderWebObject + - type: FlavorProfile + flavors: + - sweet + - type: Food + delay: 2 + - type: SolutionContainerManager + solutions: + food: + reagents: + - ReagentId: Sugar + Quantity: 2 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml index f995b90a13..00d7800bf7 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml @@ -427,3 +427,35 @@ - type: Appearance - type: StaticPrice price: 63 + + +- type: entity + name: Eye of a behonker + parent: BaseWeaponBatterySmall + id: WeaponBehonkerLaser + description: The eye of a behonker, it fires a laser when squeezed. + components: + - type: Item + size: 30 + - type: Sprite + sprite: Objects/Weapons/Guns/Battery/behonker_eye.rsi + layers: + - state: base + map: ["enum.GunVisualLayers.Base"] + - type: Gun + fireRate: 1 + soundGunshot: + path: /Audio/Weapons/Guns/Gunshots/laser_clown.ogg + - type: HitscanBatteryAmmoProvider + proto: RedMediumLaser + fireCost: 100 + - type: BatterySelfRecharger + autoRecharge: true + autoRechargeRate: 40 + - type: MagazineVisuals + magState: mag + steps: 5 + zeroVisible: true + - type: Appearance + - type: StaticPrice + price: 750 diff --git a/Resources/Prototypes/GameRules/events.yml b/Resources/Prototypes/GameRules/events.yml index 1336d42917..0df115ea3c 100644 --- a/Resources/Prototypes/GameRules/events.yml +++ b/Resources/Prototypes/GameRules/events.yml @@ -277,6 +277,22 @@ amount: 4 maxAmount: 8 +- type: entity + id: SpiderClownSpawn + parent: BaseGameRule + noSpawn: true + components: + - type: StationEvent + earliestStart: 20 + minimumPlayers: 15 + weight: 2 + duration: 60 + - type: VentCrittersRule + entries: + - id: MobClownSpider + amount: 4 + maxAmount: 8 + - type: entity id: ZombieOutbreak parent: BaseGameRule diff --git a/Resources/Prototypes/SoundCollections/footsteps.yml b/Resources/Prototypes/SoundCollections/footsteps.yml index f3275eb66e..00f723b054 100644 --- a/Resources/Prototypes/SoundCollections/footsteps.yml +++ b/Resources/Prototypes/SoundCollections/footsteps.yml @@ -147,3 +147,9 @@ id: FootstepBounce files: - /Audio/Effects/Footsteps/bounce.ogg + +- type: soundCollection + id: FootstepClownFast + files: + - /Audio/Effects/Footsteps/clownspiderstep1.ogg + - /Audio/Effects/Footsteps/clownspiderstep2.ogg diff --git a/Resources/Textures/Mobs/Animals/clownspider.rsi/clown.png b/Resources/Textures/Mobs/Animals/clownspider.rsi/clown.png new file mode 100644 index 0000000000000000000000000000000000000000..0fdf016494d69a7647cb068ec454ccb2a235460d GIT binary patch literal 26053 zcmeI52UHYE*RTf>Wig9lM!I1o>+S4(sZ>^RfKrJMVYKbAX!eTeqs7TXn1M?LK3S z>zLtf47wW#1cEjroE_Z2-(jjB{TAT&9@*@N;Li^M&Xbe^K`TSmkB(sDrmh0PgmE&D ziGdScMoSpEpC!%8rJQAmUjUF62&{&N1klVZF3?2EdCUB*&5BN*HZzg2)@Gg}7uY4h zo|`Fi4pVUMVPia)uvrYnnhmuvunLg?1%6y0Z4%<=>#vlASew=8m4LG9ve3+=MkH{S zwVAD|L6eCtt|sZQ3yyt%25A6It21p z_Ni4;ug8H?G74EhpiJ&>qS8xC;Oe!2pu3qEMeid zDzVI$Isrin-&PzA)lsVGp!e@Bn% z&UYbjA+qmOQ{AbpRx_t+O>G6BN$eFI9Vl0L$mPB^wbRwL-WDeI_BGSfWPqp4pOw#1 zT389cuA-heYHgeY9mv_BFqn%748f=eB9dSt2_hZ@BN7;HprlsvD;+L!R>p_c>%bsb z1fhrrLP!u;g5eEyG?4sS2Uv(K9Y|}WrJ-yCJuD;P%u4vJ%ipZ!AZLP9>%-Qc;grA_$_7RPrmFD(cC`0juh!r2mDwOp zq@5il!W?moBJJ!EThz{$5D_BS)|MhrC(=r&TI)bi-Fn>&sJmY4z*spWVOe0l; zUf~3aW1!bG+_b$$XqYB29Dz`tsZ&i!aS8&1p)s0c2nNL)*=tOUiD90iAdX=8+Fp~4 zNCYuB#gQn_5-2Kdq-vZ-S(v9eh{92>PBo9A5RXV{7KL#Rh8x>!oaJZ{N#cMtC2m^Q zI8PE74OD}{*8!nel7>hY!5I=}P%+Ln5{QVDA|!#r5GTg*re!T=F&2{|G*HcmYE?@) zU{yv;ifI((X$(Od*=thDU?L8a0@ftew5%zX;W(H;!Q|uW%-B?ukK$O2mjbN-gS3t{ zhaiwt%mPd(M)9J?&TE>cI1Xn?)#M|a7KjuhSO&&bo{wzedCefWNJJ70I0#~OGlWJ7 z9C%iiLd;*F@byZz_MyVlYeMViCk)2vKK7j3gk6#s~~$U{s1U z)`zedLrXE1fk>KX>dc5UV4;gJ6h#pR1{0^TKnRqg5snA*nyuSqnrdFNgos5528VdC z>unxqK=!bAiQ;ZhuUQkcXb5&;J) z2IWYc{Ace0LNQAg9M}O=F~N`=#86;1fYUFS2rxrJsOl6=h!BEDsDJbq^~$7DSjwQ#J_^ zD8aA*9wVkSXU5Ych;goBN0a569i)wO<8DI=X#DaYmEIJm$!4`{y zdBl()N<=W6qr`OmSiYg=Z%sMNQ~`GAUnAj~0Nb6L{nxAN0J|nt7CY9X-gl1GpHXBBjUg3bt{L58!x4zW0suhs^-JF^s_*?bww=riX=l`G5 zGqtK}q`t32Ddz*{&IXUbnw431IADUM}wUU6#;)J zCV>AT8CC=lV9ONYz@>>**^ow<0c5xkRhCSZ{>3NPtN7o*uL4~=0A?ob@6E9`!usyi zU-)mb7%3)U4C7Hqic&ZvhQWb}WI@nHaxf#tq&!3MeEs+uth=v=sHRfCaB3}vdBCtl zWi&)!Wmw_XDsUt910qf22qh3tRgR2uY>smEmUUpD4{?M6Y)jYS!Zhd`271c`VYq=s-r z41wU5ASn?A^DxN#HrkD97iGxTX--06SMnE&<4R6W|^c$$X9I4p)lFo^X?F#$4?Ag2r>d0fg!K_IJLnKfQf z{i`P8^OgOJ!0umLPO~We-&pReC+7bLd}^)t`D>(JAN~J5vae5L)E?8EREJAd5(ap; ze+cBk?g`$^kTi%1>QgJ4ZiHV||BDx`)6UjC^#6W#MWY8JwOwtX>|1Tg|80V$wv}(F zQMXoa2M0Co2Kf{#)r%_EUss*!{dHA!&GG)SKpT)%tm({GmmAblyW4dcql~j5L?R4iNx#1Q zbq!Zp2MGVQn+ETG)flGsDtNODywoQA z@>W{|o2lJplb6&ZYI4yDegxq_bFmLo)?=5GB3Nfnq?wA^Ye?mOB6n0(fBCd$p%0&bdQ~2II=k$XRlC*g z=NF+DihC^%H~5$~=uGAM%nf}<;6wa;q6|J(JCyG=9Z_}W@wK+^%5M!#d1l@!rRq~* z(Sr|vxTQ`k>yi@1?{Z0-KEhqAJpD;TfN5o9w;4 z^d40_&&L_VDE4Q;h}CbGoXreb>a?S?;n^W}`2F!OemRmHGDRk(ob9u#*F8n|>b176 z_Il@4eEh~jv&v&nn#DfqVLt!f@_cbcn!&|x#=p02Kk(@MaqR~x+rR%5y5BPDh)6h4|LXW3V!5Xw!jZ5CE zC{8Y$8Oj@i@x~d2it@~j71uk;$DNMp^f~Q96d0N!O|+umag^a8{ZdE$dB;pHg^vq6 zd1}gla|wmbCbrx8;oa(fg1H2GE@W!dvWy9nx8z=!pQF68d(X!Bb31+-Y;vR8$a>|O zU$XkHODtNqew%Y*>8F=-?!g9jQ`hfR1~1rLUcTp3)%(jGcKbvgbY0kz6~}Fg+F~l| zdh~*qV7rjm7t>}7H$<^yJcv7>+xt=C8yHGgXiPej*j?&xr zJXUX*(*z?yo6^!nzeI&fo-lv5K2iDe$dGxD$6mRdc`h(7V&Y(Fheczs=z4I^VLvqm} z0N11EffvIq9=#mY`{s1F%Nwj0#H9|t7iD=mH7@Z@3JVLDWJu5YE^>9Y>^FL+MSpXs z`2yR>qx(8$nq1Gj2&8{MWi>frqjSlzVmx5RqTHODo@YF|%;@P%ZZH;oS~USqPwr(n zth}9o-!8u+45c3WKeWsn#ZTLE;&3YY;KD?A!`^esRR##c3E?K+Q z!shMU9dAnBAV~>gu76a{o`-_9U6A-ANr|B3GIq3v`N3!sAE zR&`M5>VU3XzMQ#nUHT-`X}x{;57joA_X`TTKN&J`&<`!--Vtlo9DH=$$fPXdMtDL} zulV?$sXx2^6mqiXv%H_5{82PDDfg!o%Vmd>hE8~zQR3_t_&I4oaj!RVZC0$tM^)_6 z>$Fipn?5k>6Z`S;y~)N?PfaWhiaKk%AtYsa=nmr+Ef+Ko`l%S)nFc|(VV(Um>F&`j z;<6p8OY^F?05#Xk7aNBy+W+~L(Zh-)?@p3VyCQHpo-4 zf7|?CpFa1By0f!?u*Zb=BjiHAU1QfAe&T|5nf5He52}6|oT39=&*P8x%yOt+Jg*AP zA2M=R>AZ-ZA0NMak@_N`)MDT31>L&eY}eWAiqWIp^7CugFYcS66CRqsFHLv9VC8ml zbeSHo*s7_bD_hy<%DMB;Zk4nGrn%j+k6vO-diJlID_fd(&AXnp(zfl^Y`uUD-I*_2IT7578lY#M#d{imIO zmeTo8M_{_eD>_V5EJRybmCiCg-F&^ zdS$_H=at#NeAl|<>Z;FWyA5shOmrjmPA~7XbpO4e&R)lxU69>8+^+Hkaz6Ijp?CTu z-C;N$Ng75Bd;iO^rIr0gfliM}HOuLAbV6eINqXHZhdke>Yg)eUHcsS|;o$0XvHzGY z_?peu7M{}-nK7cut5?=MlZl7(32k4!^c>y1*eG;|KtIDkdUoQfF2g5=XwdE$<)PDLYAI#8+FQ& zGO$W15rtVz{2IV^mMM*m(Wb0HgEazLTr5_BQB#i{o)KuSTaQ zKk9Ym`9uHXOP>q~8Q#5@@n*w_5xtwcyZ;z^=~4W?Vm#q(2-XKZ|J#)|XAgwFD;+c? zR^KkVf2g;&Wyzp?=)yrkhQUCyqp$dFLPwvc2_N712FJf`9{0lYqL(ysdeZ%rO)=?# zMZWJIUcYOt_rU#(`q!M!Zwspg<@%$poEDC(?j4YKWVGu%%Xw+o%QU3I@5z?8?q#0pQ*m-E$=z919zuR9$ez*?(S~ZUVmoA+Ta~~b7h9& z$O98wR|h5?FJ78ac=PpP*}JO+;{pb*nD2FV_j6lWtLDwdy*co7>C#*G)>Ss!Gs`FW z@ColZyPpk6_4SPTIc@jtOzu!fxOyY4in)49hf@12tO9a>ZRQxE@~KQ?df=@&Rl|J2=wjyYV) zMbA0Py5(Cc7_T~G@%l%SQR+i~yAKfyp^9Ny3y165?;JoMX4f8UG56^A} zG!F<(?u9D#JA2(umKFTbQEqCEExuN+_*{Huc2?nrxP{3AT4!J0@yjRkPBu%!lLnm4 zAL%}4hY>W|zJray*krHq?~dqRDlgCJvjJ7k{IeR%eg0c=h{xNGud6==8VC92Z!98@ zO$+GS^6b@wX&uLB4MYS|fx}iylNQ64v^8D$hjHnIiavR(bOyX1*X+faGgaGiW$uZW zXY8`l)h)|ja%suY4lB0V&rI(j7*~+mF+u!mU)=Uu{z$_QW6Spsm0j}aVv^x+9y(re z3tH*y3KT8+Y273nICu5*VK)!#-Cz)&JY`tscX-{TZ?YDLS`>4 z^gLJ)pkrZS)Ze_o(0fFz`-;bXWc~6U$F2^!obk*|7+*C{Hx2KQ^Q=eyyXZ^KVSQyz zei!H4o=!}^bL!{dH7|+$B-fs!hJK9dGNk#=bJJX|eE=t_-TT*rkKpPs>)@Px*RA_R zD{N2C%bGiI-O3W@j*Ep>P6_hSZRcAA4@n)lsO))K0XXwiY$m`izrP|yVECZzl+4zd zWi5AZ@En+E%6pGhtiC@I?)>NK&DJr3XYpa}hn|k8o}q9{iFz|#bOwEKZjr35RsUC= ze*B~DdZ(vd;TL7tEo^(J`RQsV^A35d+nv+#MI|{;DyCg^kC@)};6V%B<}K%4iV5my zyndN$)yUD&zq&0i+tz8%^q5Or{sl?Qqen#^1r|H^J#q^ewEL*^2Lqwgsdam2udMvM zq7CO^Xj=7t)eX}DUimY?yv>|E3cjt^b&C0QkIAW@Z7PNzlYEE@OHz~`6qw)eOtBlz z`>uL?*5htU3tM-3-?L+Hz51I!cBt^NpIkMj$MEVG7d^UcO+B)3=M8C#oDqdZV2uIA zCOhoATCU>DE{xx861n^Cl&8^;$IUG^@{evg5SCbt43{CdMMo4Z?iTW(2cLJD2M@b{ z=;Yc{p37&TRV|aQ-BdV?DWCt@4oj+tH}g2{w(K(~>>1S8+^bv9Q;B13Yd$Sr5B(|#i zmbsfZtFCVe7~`i4yjQ`US(83KxL@4vxBujNO(#wVyQm?Tr8zo!!x=ajO?`Q$Aajp6I-N|N4Vd z58k$jUS_j-c_*9I=9lgr5&S;1Aiw+1lYD>^ylvg;?yElrWei>%?>o!KXQca|k$10~ zo-63u}|1aAUN`Fn5z7pR!r+YO1iv*~;LL2>ILf zaTVt#Bt18eO-sk`yw-Pom^}Tu^2c<~4--4I^&b~)-_`%uN008bYCG-WDT_On%aYFI zHIEBelyX;AK90TiTYv989Ty!tY-QOaB4tbbpTGVxea!(2zXO>QBdRz1v+Ldrq#d*M z&L6m0no;O^uVlTYB74rL*_nDV6|Pv0e9FQ_9vKT`JYv(Kj%z>XmRPKso@nsu{tR3mUBPv zbFIgUE`PN28!w+ZAiVj#S&BB&-eb>LB}%%*{z44#lVDDHmBbB=j7(WO@Ms46ZuPA*yR!P&WtSWaf)(P> iimd6Y%1`SE2JG0U^g<3zQvF9OBOJ##q}k1w|Nj7!l)DfB literal 0 HcmV?d00001 diff --git a/Resources/Textures/Mobs/Animals/clownspider.rsi/dead.png b/Resources/Textures/Mobs/Animals/clownspider.rsi/dead.png new file mode 100644 index 0000000000000000000000000000000000000000..17e84c0885cdc46b1376ba09567e66da2cc11b8f GIT binary patch literal 20056 zcmeI4dvFv*8o(F9LxL!Rhkyj)!Xb}LcBbdOmn?(?OppLV5aQ#Yr>7@bNp_d)hJ-+P zo{D-FiVq+ncS0eGD8A8C1O&nJf%rsG0Vz*KK`b92B6{EKZj#L;45_{S-CMP{j30YNm$cq#E|;rIVL|=`_@80^o%aWL4cFHG2>&{T3QEE*SLg2L zUprU*%APJ);TQhmDUm5fW4t6-k%jf3Mzd-vLeSdf${tn|!ely)WN5V1AINbZdtr+^ z!>{MKCyPaFQ7Dg=`3q_*>BQQx#iVvRQFZq)Us`sJ7Zg;`2+pXfC=Z0aH9796UN5{i zt3B?FXp_kF9CxlcV8)c9@fmr+N}3^NNep2nIYU;nI8l}bIWq&XoakYB56?1)_X@06 zKpF8Lw=WIeWmoEkcS8QC_;66lahF9RA+N_%U0t13&1VHGOFf*bsvZ`35MrPO6P^`_ z;2I_n?jKXqpeLV(Nu@s&@dpDLre3TCt0FmWw>ePbPkdb!p~is%;W#^>=&8XW50}My zTI-~f#y+8{%JS&cbmF1qw1NgAVd%%T+AmZVj0D4F!7~imC_dxBV3VSv#<5$SZ$(9` zLx&?HX99va(pGzhi)V$XX95iet11Z{ITM!BzqQpz{6>>;nrSj6XPi5&@t>iaDT#H9 zxJ| zCM}6=6ZGiBYXmDRaKz`Yz@^j^3Y2Dhnko}oHhPseFIXO|glSP9pY3U_y47C!K~iP9 zb#8#rFc>48U?ebA^uZm0OPkj=2+I9FZj>@&gevkQ1zuG~V+)dZD+#b6#& zA`v7cIcr|#W!6wthDyYU%~~O%$PhuL3NmyFAuUPO0!BJ(V9KZhqH)y*j~Ii~u#Q-P zvTU-m7Icb5MG=6tDyNpUU?>ugK{YHs4n)-z%qTi15QQa37W5>6h>FH35@H!D3qopH z%Q~;~8izqO5o4+~3RWeuB4dOM%yTHoSt}ahMapZyT2WKWTA`98@S4sTvZ%yo4Np3w zu{=mrjKIs2oVBVGN?8ekU(>jUq{^>Vs`G{hT7j?@HzVaZMw4~00OD0cO!kq%Sfy0Z z71OWdKvEU?G+xpPE0{r5N%12?I6)K@i9l+|$DI!&Nr0fO>y(#Np7JzFGwPfSN)ZRM zmf|raRX}u})fGV&8On1~+>E>;F)HRI9uXF4T(Zum^8{u<<1Y(HDBZN4@ zg5x9$L_#X&r~!Vh$2YK4`L&KA9Dz)tQ%CPXm6ytpd+jpriY{&2!-cG6M(hRm_1<` zF<7JmR&>SSxMUMEYEVg31&K58JMmylPF6dEN}FsoubVFk*SwWnk^`$fu?X2v#%=LwMpjgNp%Cc>@wNEFoEi zO@fur9z#m~aMFsU*U`7IIbj7$62ps^MT_PY#=SVHysY+svAZJ)vX^8+m<)R21-!YVxV!Aez-ToSlW_EaJ(136 zUfXoQj^1#EaAla9_cuB2h6|j=E3w#VI)0{(-UE3tG4IBF#Jpai5Hg$9HchLsXLhWC zzoj|bhM-0FGmlYSMgw-&Gci@sR%ccc4jPeaTuF0F;o_n#H%Bq8&AVCExBir*#1LUT z^S?6#%MpWRRf9oe=V@@@h6?M9{+BJ+ws;r=lZ543-c9}=ST1JI z<}tA$&bEx9+2*yh7ve9(0vwHdu)(ybYx0>``zdA|Ew75Umk|p;9?pD?cTE&qyO!8@ zO%z+ZHuano@JD=*Gejq9sZQu+-krxTb|=EeJk%$NA`dx`wc6TayuXH)Ps#Vg#ctT# z33wPO+Q%wrwPVSdIwlC>9b=|S_&_GQjm2u=;~w~=$o2C_|QmaLm zGl&IX&&MKla9M!Z7ad&od@NE2mj#G@(ZOZU$0BubS%BCV9bEQ&EK&!T1&Dpo z!DY|KB6Vh<(w)WzWYVb#PgL*cTmK_IxZ-2bTqiebK>X&&MKl za9M!Z7ad&od@NE2mj#G@(ZOZU$0BubS%BCV9bEQ&EK&!T1&Dpo!DY|KB6Vh<(w)WzWYVb#PgL*cTmK_IxZ-2bTqiebK>X&&MKla9M!Z7ad&od@NE2 zmj#G@(ZOZU$0BubS%BCVZE>YFeR&fNz&AEk!&fu4t9xQGe63RkDVR{?a@GFH<(j|9 zRmcVyYrf@>%D*)?qMlzrQ7 zo!xuN@q=CakLHzY|&(mJ}u%KV$!XDC`JGSn8 z=C#*)b{KJaT^TvL_`Gk1$nNgm`kP;7!))iB2l_6Z9X|Hvr0KoRThsA^&-Wit4;=XW z52x#n-Qsrl`LgWb@?GD!{?ajYq}`xeHZ-l@s2=?WZ``;3*43e&bK7r?l$1X5^q6lB zWt?7{`%882!%OZ?AHEU2`F6j-li4d5J)L#IlasD7{<&fA>OG6vaqCWIF6`6e^y}x# z_kKKiO^I=0=kvEMXrFuZ)F*Fs#Lw@oS^D@xH$7K-;<785`&aF*+dj1F7`&|da`Sud z{OkP}E*!l6vbXf!KTWH9@Rj!HM3;?SFF1zeE(6ssv*r$0UVQzWppPyUUT`R@o0+h^ES-gxvqQn4I4Mk?wfn4ELu?C_3*aEdpca2``pHx z%61=pXV~2xH+MTYRj&FXc=h7$g}>#`+VJU$y4Qwp*)w_eMUUP)chFla`~IWnoYCQl z_ikE_Km5Me)~BXkE*7n?Ah$oZ|LN@yd#G|G@bL`;uem(1Mh*<}oK~NG1dqFU!K$ye zFGHET{{6(vT|)Y)3HLmclfLtTA!T))zrJ|Lva0g>)5j~W_~_G*UU;NyVXrp^{&Mh| zH$PbU`UfX($@H!7aB$#fqe45of3oUy$)u_e_g1Pm-#@XUs^_D(ExMrFIl`?4KOO42 zZNLL{I}XhVw0r5P$I^cNt}wmR(c{DRzU1z)IplD+-!Hzq|Mk}`={EoLYIVl?H=md>r}X+62hxB0!S&m+d1HP{cL@*OR4Dct TJ|3Ch=lonegB$0?@88c%R+t@-W6rmE0Sx~l+Ju@mPD$*i_K}D-AC0Rz+ zHc2WXJ0aVk7#TDFGcEVJ_j5nr?(cr@@Be@NACEjP9q;!!uXE1xyw2;qUeEIy_k@j= zxzLi8OCSgm+GJt69fEia!8f#MA$U^pIHv~uv)I>Sr#}P02&TkNwfgqbF9(Ila zj$60r5PZBe@I)V1l18wXFQ^ScdbnU;JYhd6K;D()=HaccFjh=gkoO?!D>!Ixg>CgU zA-Q{4g!++eL#^xxq5BC~q5{rfiC(Y{5a2}$z{>}Fd3yWn1nVn&m8%2F+{c;<@?Wb2 z?AKQ?;&v$SxYb79#K(^$udRVnC%{l>c{El-OB;PQ->pTkT4x2 zT>kr)g256{((@ydb+((DeeVwZrmx^05a6q$sTmX$q!EPB@bPog)WTx1nlQK~9Ig&( zsQZU_2jGL%z5UmI6Y@ijDaoJU=iwXR;o~jOm5X=vIT)a?pup|ux3BN>^78$yBX9rj z*Z~wZgYmwaS{g9TziLDz{MN?zpr7a0p%Dq1Bu|nT$veOwwA1>_cE0XD0Y3ijKL4f5 z-(LUMj=`F2-TGVKe>q++ufOctKVV}ZfZ#i%f7#OCF2t9lxt-+ibI^}K+879?vi7fL z?;o(8^!w`k4N;)_UkVEFApaLR+&BLf1X8fae`&^j^R3xeo%*)adH^&X6F(9@z{k(d z$H&v)o4VTkSPOX*ldtM2uj1h0P4o%!U$3Y6=O(`^&hOGlruYDo0UQQLsKd0ue|B0Z z9XMhGOiKp_nO=G(hx|bR9A>A5)X_%hAhhPom{;@9GQch*;sfx1OUnGZ z^W+c-I%FR|FMNQ3hZo+Br0MJJrlxf3sdhAA$!_=l4;=Fs>*q1eU0dfN8_kwX{e?bv#^~ ztd1pV5eaxCN()9r|5MQf0-gki16zo~d>8Es1M&$d5=;w=Kw@B6!ao!ZMukMdkq9tq zJnY{cwH6+RMTojQyJ)N{5~~g-gGb;=1QY>|{D-4Ppb=;o8H-gXp$Oz}qs9=l zwbcnoEC~ZA6H#!u>pv8Y#KVa&GM=Q4MZ!tnMUxS5b+VQ#o(P8_Nif(y9W|0j!fRtN zNPsmK{qJIpBx6trJP-{g{~Zu45rbF95Vep542%FrBZ>bI5N(XB76t`}sgux1i zk))-i?usS?nBWL3S^J-E89W|KA|Z(wu3lsQT|itBC?WxddoA-oA!`1QHBqSa~#E`YL{;6X|B9ll zvylwff+H|MLy#x{_&1*qMh5thVI*w?0vx-p|6H^y28}>)jq1OB$^eAnFa$Vdz}&xE zKJ32*2p;3=iU;Nip+(mE1_%~G296mX1xI7SApt}G+=jS$fH3Qud;PTt4ktVYk3y*< zv{7Vrq$?7bI~WF`j?n@R6#-7dATd9;c_0qcAOeRSfQm*DFeG&X7H9+Tet{yu2pDxZ z*NaAJYoW+m*q_>qAHuK%vKAfzgR7(A+C+6Y5jeY83{Yb51A!r;w6JLS&(Dw_!dzWp zt^^{04NoRv)rs0j5IbO9!SGP7Fanq&38SU`w?{_cdOvV*L~t<&s{w>zuz0jO%2f+S zCSXv&mj8SqevFJn0$T*Dg-}Oh2?TYrHkc-`<}h_KQX5SG-VhN_{&{HgLl_x`0l|LJy8>@l8xK5G;QwRPQE(K2 z2$q$A#{T`)B;zqKI2^d6D9{Y70@oU$!Cc8;g+T}d2Pz2S)V~T2zdik9&^bS%{hvZs zE)B4CtIj5G{{TFQXg8S}a3|*hR8<=VCy~&=oFLICqB=LuQ+Gv@0bFQpf;I~5VBq9_ zr3e1l{P(c+yXYUi1JQpSy5e04z+VA#CZn}}ILrU(hkqOAJYoOQk+q)(;05uX^XmLq zsK2K|-@5nzmX+Hv6;qzuqGM&MNqL2a^2$Pu2mfHXe}7B)}4p z{d~OSe

l1AOH1zP_Fw1Uz?vH3Pkg-znSQD4idRJx|8}i*xnI2mbH$jR2ezH1L1b zwGd1!0n*UJbU=VkN&&n^iR$IaAJIyPW*oN^xaG629$r-t>a3c*Zi-f z`}}YH=Wh`Fg_z%a`+>aa?*Pwpm-V>Ur8>X?2mat!zsLZPXaDhRp0uy;9J!9P=fSUz zG8P2`Uz%FnpWmC#fBomCJOAgV^I!kD>F+IfczXmGfS~c~VE*)YUMudM?zcNfTad>< zGC*l-BS1v`=f{6;VdD`@@^m!y0C$f5+)w}k2NV0+=+AHdvgOX-TLLz6e#?1pzPJ3g zRp#X!d|jGvPeDclNT$&IEt_KAs?FbR|8n{FDgDcW=ZpK*$$T_^TK)ysPa&FL;TK%< z(fDck7hFGuXnuuXaLq^Kr{!O8{S>146@I}rAB~@uf5G)rh~`)L1=oBuep>zo*H0mu zU*Q*A^U?Te`4?P2g=l_-UvSMw#jh~i(!Sz#! z=2!Ry*L*a7TK)ysPa&FL;TK%<(fDck7hFGuXnuuXaLq^Kr{!O8{S>146@I}rAB~@u z|3|o%{Qma|N#5X(5(a_4K3KrePXvFtP@Z71eJccoDnStS2n5Y=z`uhKbPxtXANN9# z&P524^ht23HiIA|<|b1kyWp1LLlj@Trt=?~uBJ3g#6@6`k2e$E*;BWyzqQ)(ny8s` z?}9i-v!!-$HJt78)#By0iW_Q{?l#-GuF}j(=v>n!L2bUHQktYyw@C@S#~L!U)L{0D z(yv~^B~B68l~+J_?A#!^+61h>t#&%Ov6E$UAV z8!Jk6R9mRD`JBpuE6;6IZ8A(x_))=c+cH+AiE$qbTsJ)-ru39Yb=z;Rwwrb@fZ}Se zAn}pOl=~VBAL8IN@rArhFD~X58cK^${y#J(i_O2z9vZ$(WPNtu|a7Fqf|i83w!a z_S5dfV$;_=*6Fl*sd{E?Z29mfjVjA*CQbyC5Qct-8~fys*QGdcg2wvR>DuRg{inoRawVwsM19IVfv*vmAIALCtfDvY)|+f zWfr#ZJZ9<2(%YuSOuJHOva(cJ*`w}rE{zZgKh+?G|i;c9W}m?<-1Y%1h>&qOrde4~Wz5I5GB*vM? z#0o`|`{j3*OYh!ltG)|mPf&!PV7%lvQ#k7({b*d`o))|H!l^flnT-u@8spK?>uehB zV!x1fV8T2t6l)r*t?9a9o{K&|y9u7(8X8YI-0_$__eRN)9(JM=j7yo_H0GQT&j>m^ z=YwgZb@HELI50~*CSAHFS9T|+bR27(+c~)R*p8UaZ7+kFnZD4YR1358F9Um*gL(Ku z$VbL8FIGG_zrAbn<0@+M)qa|rpS7Xo7e9gcC;B6vi;#NKvL~0YBF$XhvIJHh;>A&p zon&7{fSV=L-+Nc=h@M2jInSqKF`n7}{3eJM&ey%nS9zy4u=!C*v3_$}GpqsihOAwEof zFU*V&M}=zJBX?qpjw-K;9m{@{e+}zy|M{g^ZrW_aDo>Mi`;Ii39&Yw1rB~ph+-gTmhYdPURRvH zt#5J2AKm`0-()&j*lE~l0klhmp(F&0 z+A56%r|ZN6_r8t9wz<=b*HRNMN3zk)kzve3(<>3 zS_@a2%Lxec)Z(U=EsXetI9ESSa62K=W@05Y*kFFUer zIn4J)2Lq9CxAvItNMscDQHSqX%-|)=D*-e#gJ?0UNii$+v_uA6cUC^nMH0zN`_rufjtS?d1D|&9JqhEsE zmr`GVxAfO7TP1LxqHy@>1YD3c;1-ET9)Y z&*iH8`N9i%7Yoo`9b|;7Dw`tZ<^;7}n5!7NLadKhT0XxRMXd_Xk_C^F8SLYn6|*gQ z*RZSM^cxh-(ECnGX75oS|kAEw66pNbB(ZJnyxPSM)-WpsAk4;5~N>%2F_e_Nk zN-Z%*X$UHySl8nQ%iRePWi!^t+Ky9-__mNac70WYQzGxT9B13+QP71P=_h3>E?N8i z2pPvPclWK(p?Op`KfG~I53F&QpMUYihID!yWq9qmE|sUg%YinY8AU9K)ukm}QkC1C z)fSuiw$C}b{RF)~;3APPt-fwz$*1VVzIt?oH^h>y^E=Y`=8RVfK5h7d=i>Sg6=AUlG6T;tIiuG5_FieK{Ho{J5MlqzL;S(Ks!KV; zW%GvJ1g?*`%@Ktn5L|oUjyH0ZG*^O;pu4A3_oQ4fX-pq+& zYX`$K$<&h_TOL_e_)JB>Bifm#R#KO-UAu8flm3_IWOf`mAj3YoO8ztS+IIW4?br-( zn0+jt{3zU7$lGS(b$v;IV##~v1$Bnp%x=(K#(RguelCkuEiJon6NOS8`AS{0J0gVx zMD7i~71r+9XWpNUVhxqAa|-r3P!ZNJd-hS|thIw_063N6^aK}8nN}SlR_iRL4>Ooy zjcyVKKCf!($0rw`HtwgjP6f0sZu8`LSLOIq!?k?V8lulUR^&ZpV8<-cQBt(bpx2No z7Ty8Vi{q@EJ7D}8>Jq!%2GIP$)!C@Zt&OWN0>E+l2#a595s2cewVp|EEw7giy2r<)FQhrZaydKr&f)=wf5mF zPkHI}Tqi{I{IzRRtL19Zg>#0jQbLeqWR4swgE>5P)64aKfAultmopci%*E~7xV%Fq zLPUFfN&Zzxb@h|VKm&1dfzO4WEN!!DDlI3mn|Uhmu#{5#4TOp!3z>w!@R)X*@{WB& zbp2rY4d$TiV9MEd^mkVBg$0y7!Zrpc>fG<)c09bMjYEE}JA0OQxqNx7Bxa(Jm&Ja# zhF^lxH&#cL)yzuBP`NFWIxyfyjXUCu2ZGJNB@}a|PgwnEe zuR-7kw7fw1vo==4$Ft0VHlMv1opqT-hvMwkOn6&7A08f_99(Xidg!z6hz@mjNWs_oD{4+P|^Zzl^GrW$Fi zW0O417A$*D<}}vv7W2@%)L_;zGV4D8hf2!vVXd!P+3eX%O*u0a{RK8N=D5q7F*R-x zY}dA1$MnlPC_ZN|E>k!&c4f%x;_Kwr*gg?w1pmIH>(48RPI&Wtc|ORjYu7!y5Vm8m zh{2dtt!_L>oynzOd7s~#0|P3)HYcM~ZYOx;W&~ur+ZpoeoBnuZL`So}2^t?9qdQLD z)DS3t)EI!dv!J`wq#x0O#6ZdIO&VfX?35HG%oA0uu0-WWQ9Fi95nfPr49>P#WyP#@ zzs*(GYTEb>UpuBK_2R<*R%iRFrUl!Aiz&uS_Y1uBK1%P6&>AusqC)a|<2?JURy9`i zFTY!^&Dx?ZO8P^fS2Qg z(NnIqXRM)@!srln0|~2Aqkclm%GHbuq zix6h*xkurMR9NW8vfjC%RWtkpGexL~D3>k=W-K3_)X!U({ch#{Mf=vMgaktmO7~r6 z7Gk7TPnhOJS3ehqz^1Ta>FSL~t~e~P;zQIY*GiwhqTCotHDyhAeG5-22(!&L^%v%} zS7+SZ+~#UtmK{yizOyqqS1vcdL@=@af&B97CZX}LJ;Fjg;|oMi^hRii=&7PuH&E0; z;o2w45qEP<*l^j_a;BQBB0%YP6ar~4g za}Tu)T;5yU)xFApbGfC$ku2EE$iN=fIOWoUnWP!N!%?Sk=NHO5SYC*=dRmR~KS9GK z9+kZL_?}n1c&<2o$El9Z0v1MwQT3O_*@HXZ`CUHGhit(bl}?CoJXDWfTOBEuf~-CS z+~w!OZ3Cm?Pm_S%JtMCaXKmccBQ@&z_l0%=f z)tT!jdKzd>NzpHi^PXv(Jl)d!>?jBx?|1jNzIw2B%k(0fTdUFTvoCX_rX}BgOLJ zv5Uh6nj3^V+#PtJ+a0C+RQro(LXB>XPaEY4Z6RU-PvfTGvg zg!%Hc1?PL*#k>F1@)<%3aQuMDu@@=wrLlXe zo+;NHNS^Q&gd!NYoTc5j%dHnOs_Dr&{$C~n(KBtCjpjF(L7L0=*->|7)6KR~&$DdD z>SwH`3>wvgUt~6-V~?H?D4s#z+?2Gb_p&#?d+(>kx|%wBgJzY@H)QF)l3hST@}qQ& zELZcMHeGiBc)iTm)pv~-cbyPn%wX^GKz#;1jfEM@PCb|FSSdjd(G8WPN8DTh0;qus z%8cG3-RKItwWs8?9!E`COms=3p-Yc8OXB8E_ZvKTY)+WCvMTG=p^M&p@j-l#!%h|n ztA;x#htMBwXD8xhB(eNSAwrBa?Z?pxd1^9mx5PQ=sYK{UZU)L~}!@ zG1e;Q3Ll5rtYzip*CHB?C2#0FDv(X{w7->c|Am{7@}ak9I}B9FvBB_E$>H7? z(e%r*6|uaJg~pgMEzK5+8MEHpI2d9MPliSD991^3XkMr&L-k}$O!oClZFDONSkeec z2liyw@b8Kg8nGa{g#}I%4FtNFnYDVIjHxY=)mq3$Fg|z9{c|I*AjT zkAjWW0AON^86*Fohs#%RlKmD%2~!<(~}#nTrZ z&z$b~(sI8bqF#uqAb+c);b~MZStmDvk`+-$I@OzvspU*TXTIh)M znw7^@_0)D8sD4bl*20{Wm|Omk?{O60^939$iE8@YnR<8Gy*k3{*xh+%YNCdVJNq2! ztqzTE7L7&SBMP=}va-GaXp>_L%Z1tp5FysYHJh`ULHR1|lsY=vVY8togIO7Oe8^?U zy^&`YC7W6jqa z0iM4em2K=`99G@LvUB&vK^MH^w#Ts%6*?;!xKtk~OCAT*SkUppP26njY z;N8wDP7T}ek!OPM?1;hn_NQ(;cZ$TxrKY}kcXe>@hv~xZ_M}eqexxL-sTSHhe#UwC zOkoc;hBAGhlCz_#u_2(p=lq^K_WV5k<~=FkbRrj4AR2gl`0Y=GQ?m9dXPK5X_bnPM zV_^ezcUM!!K}=+SSo1S31`v4{^>dv1Z`|1qPnlcl?iRUgF4?pFl<=(=QLmA2ba-`x zBC3{-TMIwC=_bl~|KfJ|vF?tPk&aiJL?iY-+_AaSBo4plx)0sLlrwoT0`>f^DI zC3r=661C%IQn@Dypc+XNOb9Sqc=?3*)ebI=n>^`;#fw$du_R4qY4|8H5a71myOg;L z5By?{xAjUsGETI1BD7m<levCRgKI>3zGdrqW4-d+yNMGn@EV9>Sb%X|APtZv8SV z((&=-8A~DRsK7y&6l?r2^I%094?4+swy7 zC4JieDbI8=g>vx3X%2`)x7S!tr>6n}JX(d_*2)IF;;!Q|5+QQ!i(UX~^%(5#z6*o; z$Ku9T)L3_Ee&#Q6^L@pL?g1;54n|deSv}$v&)kKR9Z#4Z1I8@>L!iUZ2tUu6_ z)of!=&IL&mz?iRjIbaf1zdvk|pI;I04r;jA|1CIJwY zJ?d0W?p>5$T`%jgM(vQFE+^_OTi^cJi&}@*H7enKl|1cI%-r(Z;|%Ac+1pkFMe)F} z>)+Ij5+CL-#mR{&R?;-$>_-=2GmPD^3+hfP$Duq1cST3_Nr-YSvL8SJ8Y zVcNz#_S}W7>o>Gm9G<7PII_QT^;(96K~C-PoQ7w1)19R~`|F1tH3Ql2bSkoov%5N0 zn$%0Qj!#bKnk1Zefo}-SW!t^<_ZmU%W}^Kfp2TQ2?@X`R%98Y-oxao-ANMGvZ^5OJ zjIB?4x-Mfxj^7l#v;Te#_mHkE%$7Q=lxBv9(fZah^twVm%pH?T)2|)SzixcI9Tb#zV4f0$sLB$2R&NGo6zthys#MX{mn^P7%_oeYS{Y-G#p+WN zCyqRvmQU@QPOFEH2(~?@%e2y^cxBFiTC*NlA#i{{9Kn3mrcip#mjzsU8LZuq@vgh3 z_g8&++UfDJBx_n#2Sf!}aH&DQuXvcOu>aCNA+!~^kk}Hm%y;AXn-3E@>voPGO_8Cd zFg>m}>;d{g7=uPOjp*K$Z2qx%!e!nbAF3d&JGZz~IoAllQkJX;bZH z`X4@)V1q4XaeT$|_GiZ_2;~7XyX`%@)X!%PWoLV=$LqDPGOR-fL6vgG?h|)){Vbl- z9!bXg?G0~x8SQg$FJiZpDt&3`T50Su9dHo_W~BlU9B0%WjgbiNxN(LDLT}8tFj_}T z3S$|_T1nIC4^7=ljtV?jAFx7hG?@9a_OWBaxb-a#2ombWE_GSg;L=7^x=hH0lUz#g z8h_7l$d|+f6A!k0s!Snghov@=1d-OsA^aczZum9Y=RAF78QddKv*R^p^&EX+CO z`y_UK76Q7P9wp9@!LEDJ7$6JPo?F7PDz6vsGZR8cbDl7Y&j2Qll5<<{;~+*AjIJo^9TQ01%#?|0ZoIQUUxxlJ zcT3rY+k9y|SdHV>nCD`xGrc(Jz_n}=%lkt|-AKpf;aIcwJtW)6Fx)OV_=ML!@T^jQ%Tvq|Sapmy7AKp!SPTO54Fmp1~z2OApn*r-oikSQw| zRfBWkO;F`PVxHwAtm1of%AQfWU`y0E?0t4V!uCm_uSk7ig|E-3T#+1Lby^$&an=I2 z?=pxwN}Dtr%Vt`qPym^fBbXXj^ko0UE0muz@gcvGi~Jy%zRDZDIlyQ^!K&UqK3F*jF1shr00TpuwRdjKkrduYx;bH<;aYZ7=l<0u2|1$30H zq$V$Cgrim~c}bi$er0r78>er~sT6*gICGhJw|x0Z8TF+2u#)o|Sf?u~9|IiSkmNDz zrn)KK$%W;g&6A^N$I4xF8_%#NgO*Nr7zLY#QR?LsU-YirNCn#oTeVi{!*&eu@Q$yRZ;nYhWWbu6Mx8Kqf4KixZ>ptp|3;cMdZ{N7 z^3xo$WBKtqM);KRS9q>y9w?p=OEP{$2S*a2$|Ha0Ui9Qx%@oaVqkHzn{UU0nm8BcH z5zcdwrW#QuMT@feQ~BZ_$q4PtZ1t;DYJB?W$+?X*tSsG0yXo=uMi0o0cHqFu2t@n# zyrsZw-Jhau+r*;H)rqYdoZWIeFCubO=lq@Yo3g+mlX~!4GxIK3(7mFJ#P>OuKTEG} zs_11@36$$eg;H8pZ8h#Y0But+r(S>edEKyBTy2j93&hUBsN_-WrIskA@f)KwTgIgE zjlh`J8BNerL*7NO8&-;rfBIznY00V2O9MJXx|1>=^PMu_U)GS2d_*lsT;Oy}RqtK3 z5)G+MU|y+v;~1>_XkO)R^V5BO;sW}*Z@vBb*-l`CQO56aZVPYx(lP7Y<&1gjJGS}o zH0p8)qIC(u{&OUS)55njZ^H7Keu<>xy~(8H`1*r=NY;$ra*x^;FKjh!e^wS#^TibH zJl{#V$6{Bm4z)Urb;nY$E=SAYX?9T@XN|c^iDlN$Lob9EYHDUxJOL!^WK>7?!g9&_ zm9lzg-Pr!2QWs=qG(Swy?(?0qN`IxEy2bvk+IiD;9F3fHkH)HRiQYY^pIU7m>fa6Z zMAu`)=(0kF1{;hubk!54;F_rCJ_3MtNW4HN5EkgM4#br&Wn>)gjdpCpXomAhKZ$iAYgdXdf#%NF`z zP*_8UahKr{oRyHOHf}?UB$fzIEn%KB-+f`;M7` zFJ_`cQ&&ms3Wz==d2Ra^@zU-j ze_=}_-xp`J4yi=f27U;Kym-{~t+S7MqV#kpBTQ;~{nvIf`|z0!T1WJJ6f}?5W%4Mt z3YA-bP8i?)1Xrs$7NmV^>Nc}bPr%V`1b62k6&_sFy+Il{yGu)OpLGrPq@3m^5uA6~ zb=tN=V5NdXz*YY%J<<22c6`Y-&Rp4CceFPw|H{f6%FpaD5i{6xvumt^N1yHM+TD#b zIXU2Wpv0GytIVsnSD#}RdLe}uvP_|M(;u`_o-XU0aT{`FsV%y4g?Gkg05I0^4l!

>ay?v2jlTH_8@06OYjuQ|(a7{JHxG+jM zTR-<@qi9hAV-;K2tZC!|QTXv@wnJA^GFBHHXf2doSi`&f){yxN00De?jPm|d1Uo53-ew@asR`U&lLus-cIRqpLU8|S6(aB zIT+ky^Qv8srfYPP2zKQK1}$fgTnwk%hdVdF)yJoioHSU-g6bT^#( zBCr48k;eO{^s}v;lTM;m(JRi1y?15Y_*il0bPfn5_a{dJgLialtghN*^ITlUYmt-D zJ`=gkJ(&yT+&`sf-ati=KC-qK3LOdIde%!i*B#bBlkqmPbtcGfmUc$>mG(w%U~ZKc zM4R-_T5TbzE^}*Jqn%7p#3gWtw^3KYcLOKtaO>MOxxn!bp5rDSj8(gM7)RC16z3MT zO9-VNgPa6P#*3fKoc|)H{rX5Zoq1KXh3+MsThT9pH`oL=gNiH24ue$oDPPPGcIsyV zHo;irD$O;3-}?jIriEffjszq?bv(!#Qw$ZzJeuKul*o-W2;-t$5_S&)cZR} z^gtj>@5}yoj(3<2OxY71_ZRsB>Sj-N78nA^UyFSS1{YI2S=eLia%jQVD{PGvPX2QG z!(su-!R|tpg7$dh(8BJHyuiyaFo0Qx+RbMyy{VZR3*C^_?LCfhxv}EeC2eO>>4wk*A=?8NTW2KP@v>TF{V&V_ym>$?-~uS@@dgk~&*)%z877ul~H~lKU~fj`qgW$*9i3 zE2+i`G#MkU9tYM2_R9R!$GZ9`GK!LTKKZu{FvE8)Btsa`rQSN^yZN zlVfnM!};a&=0+{5Yef#zfhDQHk;WQMe9C{kbWhRah4SSt{Mc)J(=GiuJk0y0?1KA{<^}&s73cO?3ghs%8KiafyG8k2U3Z zID%o;g^TQ9>!%HGO`FU^t#ZD%Jla8Bf_kLPo?k)sx|(L?`wu$9wBw5y=R_Vm)T4Ez z`dWh_dHh}6oYu#=B@*;*mvNUZtSnicr#<0TI*EI&OU^5#a-P8U7~ z$-N5(bt*7iE5$(|?Zqs4T-?%beBTGw-^*w51hR-({B_2Htljoe3Cf4hp5jD<6?Dmp zs&!pOx0>Bwz3Nb$Z|C}v(3x=h0}+~0hEt??mCBkIxDA0{=e1^nmdE!xwDfW}hg?od z_ZXWKUzWZo;X~PahGF;X2k+0e4~$ku=LDpsLxO3|j1Am7*K*3+W%4P*O8tBZ>#url z$en!onn5K8O*L&SaK_8#_PxLY-$GlRSzn)Y3M59PNi=@yJ;DkQOq2T7zJg+gHC!@% zqlN-!OnkyQ7=whK=CU0_5~lSwS)T>@+f}Nr?YA8Izze}A%Q8`BXRzp11uyY!tD zZ_b3FnO0k@Cl9mI=vPRt@c0VH<8DB6aEIAuX|_s^O59dw{wIM&tNFYvdeFlhb}2RZGW8&Qbq*4jT}})S4~?;D2yG0t&%mF3CF#yb6OHEKCpUUWpg9c&I76W zM7Ra(NOdo5i`y|pc3rfJeun44H*L7ia&r=l6n=PSqkTEOb@I@elK1cWEeG3okGkK* zH4Nb!$KEe)tC5>~HqGeSedRj18;`UQxOA)40m2~K=I#uvImKxF7*yE()k2)&+;)rf zkkH$d)}SnyP9D=bP?}$&hHq(gLNb5{wegLk!BWKyWH*{f@J(4TmQSp!uBGr6ER-gHF|)%Ur)keQ2)}e?-fu$?nMa$G%!0 zQ#PV~X$kurK<2;!+W;9{+y52W<(daGFBEOrR8Pa8__B-I8Frn z+bOi?aPwx9Qlq*P1TKC}yi2!DRHG8sF$Auafc74U}4Cl6GH@yrl?;`f30hpph z0nwh%iW8rYxGd+Cfh+>=B`m9fz>49QvBhOka%HniS>tPIbvrl7SCq2tY-(~W1tk$* zt%MY_@Y5F2%#%_|COP`KHsNKgNBg0I^`GK!?=CTBT}lcBVsEN$+qvuJ=hZzunVY3f zpYD3&GslN2Wh7^TGf8vw%L+d)Xko9il%ZCSb@%e+91U;*(n7yh>pGEpu^jzY(~vO7 zt43k01b6Y^E<)kuK&45ONN4(xfY|5(Eb?U6_yP6j>gv_E&kAg{?1l{GMMX;uvq`|! z8WpJ=gqsg+CIkK1%ju2>L(U^mg0tYf%vcWP7zTOGH;c2pXS8}`T@_eP#X7{T1}OM zy0u%j*MKuan7#DITx&N}1k|Ek3U+T-vRL&5>Jm7|31E3jKHu{?W@flXD{-SkPH3`4 z1W24(dx&O~9Gn;QS};tjTV%?VF|NEjZ(lzmzHn<14;{pF1yi)MM;aFEDLbXAXNdQZ zl;SV0uiRuN-+vUu2%^vAN>r!JR0D)GC;0t7B`BjztxI%M=no0nw7L>z)u(_q66pMd(kzSMQlD5YLt!>XMwrv z$7VYp4Cgl#=K4iY=Wt&7RW5W-C~NLhZpq3+RhhbqJ2m92HuQUtk8j|i+VF=^62Ov} z3-dh|#k>PPwnNCvg6sILnL{#%a4xe_xJgBtR-ZwAuJ1k7FS%6H~0kH#}O>} z2*W_6r`fnmGfQ&UY@wHI+BO3fX=II!AK^wCH?_?y29Isncdy7X{1Ao z8`*4yMi&x%*N%dlK%1`1n{l?4S?({l3U%BG99yp6+s5PE>=d_zhQ80-uoWt}OBiG| zgUG4!E+O_rfX1p~`ok)1;YeRwHYB( zSXA^ne(x`Zt;uPZy*d_yO9AUnBGlUlE`7j7_o{1b^NpG|&#Rs_nG0MQU$e$^xhN;X z6NC?OGP!)!&x*S{LO>HuMu0m?pq^7NvHf;ws?7MaX5g(npOK)e%m%GsCu7QG_ZQ}^ z&f$S_!@t^Bkn(AId^h-n(8;+?Yq+GNY>C~=s~cFMEO=nM6o@iiJGWD|X@^$R{l~-n zA%lg`W#?dF$Y!VWF-spODBFb(VjRT1pR^5j;;+eJ$aLnE^PDtYx5k{8FY!yPs)8L$ zSB9>1uBdp;pO?KV`mlaCro5_rcEHDEnuf+m83{ zKEVMrPj;2H$rYyP=JB!Ztibym=|CzaWYQ<^i@UCHP~o6KaYLIjdk>fa$c=yQl`Za! z16Qx$(_z4}00#_QX@@)#;#(fEe_UiZOeYgWYD+7468dov*)> zDcIW3nZ`%YEi$lI>1~aq%p7T29ud`Xk2wM^b^D;8+ifdk93KimFK4#M+(#A?hDCEh zM8d-^GcSv@$=%Vk^l`ct#QHMEe*Xz;wMXRIw}7du&|9px&dn9%p9?*z_sTZek!B*$ zzGX4LbE+)A`~>f5Bya4vvN*bvd#w9EqANYy8wh%u6$xr>D7__g%a*}HKb-XqK7V0V zo7^eIqt#}eJYHMl>0j0@oYI#)o4C2RQROx_DP2lv@i&*9wt;>3H01G~QdA@h`N|8Y zCR_$i*x@q!J-nY7H?IwZ-xj(Rcc0IiXI2@hB=s3`N>D#n=Rn*m0B(5F)Qt;V68bHF zlcb)+zw=OmY-~5eU{+bdwKPtU4P@|!zq?#MHOBK`(XiV13121%aH~II3-GCel`eY} z*uDPupYH?5ke#BT#)|T=&G3lgv(?;KM{9z1fZw8ZH~V9ikG4`t<7p5REbD&i7yM>B z_&7uQ^*84Ck}^P)dSI_CHH+FKH*1l&H0_=dB(|Ao>tlF1(?3NHT)$1fpFCEtGy%54 zvC1n>Lea~)PJ1VAXjLaSdMz`*>B}Ol5vISMo3=jtjDmBW?Rem9 z_sn@vTzcE$yQYD|zyHaL*cQ&ScK$NKPHo8D+uSWkrUqK|V8N;fZ%)sZ9lt1?wROU8 zb(MRH&FYEO_j?kBa7jG9EsIsSkxm80ep%1+Y&@rR({ae2$VrP z!{@XMja~>fJm!yJZH~5Dod5NcU=%;$Xg7^&p2d2R3#s{czIY+>6+akEByyezu!#%H zIWD)kUNl9QS?@0W9E4Mtrl2F|v?PROq8=Ym0+GxjhOT9J^Um(dsXH$-s|r6-lr;t7 zPh|B$X8SYz*36V!Tdsk;^rfVE>CVr8NK)Yq|4b_`sQOSwV(LwP$`>Qs*NHuODJhd` z2vTmBGpCptPb7*9;vXOkbnWg-H2V%1XvwDDMlTZiEYoM=m(Q;t$Gj0U127abKJ$H?p(aur}Opk z@|{JyIOly>`8@H$?+HKP!%Iu@X3RN6N8y8I6XJ!OfjLxT%x^ z0`B`fp&wqIbKXa3d%bXwQ#fsTcmUj`;x}UU6lMg3uIW_f^WDI8?>jcL51Mq2)^7g@ zy+B@(eXz(A4yh&{T)S)JTW@C49iq863L{Iu&G#+Hxbp#bWmEiC z%0oejo8c)0lCzmWW%tyVXO*5k(XdNiNA7SmM@{X8hs4S7u0%=tL!qx&Yjcub@P?u0 z2J@RiK+Fs6Yxb}%ke~Q}8aWrIB(pG#e;}rAq9Q7I!AquO7b`DOmX{i<%?fqO%GJQy z&21XX#4-moFz<@Go6YX#Vp=iP)@qlvvX+F9BC-;rQ7cLln@q>VWDNxQ_Wjy_VE=;e zoH=LC`#jJ4d%x%2l(xvYHrgDQ6o2M~=49hl+>ln#^>qA|hbQ9Q`=(sC*^n?8z8kn7 zVSIe{$tl-3lN=Df_l4=j*csezK!v@yUdc5I=81BLs6cav+a|6XE8O9CP}#5XI*gZs zVcVB|gD@6lum3E63`kRDzO%U)G{>q)0W48CaP;dnyJG6TS77@uU;ZH%dY zV`ixfgNvo)yEUnF=PHz+``Y=!RsqMe|F2}>Y>oU)dVN!(WkVE9v{Zn0;9R!D9)(@T z?slp?w$aGOv>8kLPfPy=%9(Hj%sJj@+deg-)9o_I@deYSdk$aB`W7chW{pSdtUfR1 z*bGhWF_<1g6m(~Wwcs<>kE~xRfxJEo@-G?Y*d*;^X%IB7)l5)}q&^9vOv=Sh#*88Y z8>KWvt(n{Wq3XP-iDo1va_o5X_RHK0EUFzvu>$tIe)8mS_$UzGhICSwj~n_x z#qW3}4Z0|Y40Oq@kEI_Jrx>M@{{}AX5CAp>K+0RJrs#89oXZ^>M*PrGv#=PfcZI-CAH8)B_4M+@5cn|%h~+s-}0c*kM~ zqpEB_MWcE=q`N!wwz2BV+g6vLf@o&m@s~pk4KAF3>E*0ea}d#HcQGH7Pq%7z}hf#jH9puti=-H;@G@Tzgh9rk*|nJq4R{rL%eh9^Hu< zUr4M>Ha1Q+y0?U!k(9Av^EeyB6hjdo8%vqwSk#wr6DKCESEAr$2s?j{@m!S{m369%}LABR9L(o;9TB5 ze0dmDdExkgtKCSRsu$6QUcKu0$lLn;;t3nXm%b51h}``vkvsI=>9gCL{|}!lt{6t0 Z5m%u@y!|+32L2a;Y+BEZZ(Wyh;$MBFQO^JX literal 0 HcmV?d00001 diff --git a/Resources/Textures/Mobs/Demons/behonker.rsi/dead.png b/Resources/Textures/Mobs/Demons/behonker.rsi/dead.png new file mode 100644 index 0000000000000000000000000000000000000000..b05539584e76c9ed65776efb0669a4044f5e30e2 GIT binary patch literal 18654 zcmeI4c{r5s*T5g7LY7Lj_(r6VF`I1$V@)U_V=s)E!3cwyY}ryuh>9#J(q`XFi!2pM zmO@#wr9`&0D9c!W4_Y+UT;J<`fA97FGjm~{bD#U1b3dPRpYz=RJWd+!-NnthkrMy_ zZe1O%ec-p+{O`);;NJ|Adl&e{;ih9j0RWzg`CpcEJ9st$0IH9KHK&^E??L0qE;2X* z*^VgV?cxT`1^{JMZ#NwNAdxC!M|2>$s)&vjmx+py2r8mxa{4fRH%+1=NypcNXzaTe zi}yW-k}*sK~+;>OmDz_4$Az=K6*r znq&{6h@6Z(1P_x}5K%zMz~vMaWEG@E5HPqL6o!N%VGsloEek`-B1FD@L@}J;m9huH z9=%UX`&&3rQW15eQr*x{sF#VeYv>(2;@rn#tx(i^~SkD;W9AjpNt6j zA2x1>Je(JnM!-Xf&O{fYE0qG;!T)II=18WJDURg7g#4lYYhW-Z`uaa&|8c!8E`JP7 zq3-kq5qv}XM@tIU$BhWxN2HJsdEkjVJ;7TM`_tW1N%lXJ^NXi>&0p6}^d|kqY+kcy zwy+fzGo%dOD_YZoh@+A{uw=3`W^tDpen%*xskyMLL?p~et^~3dMN%0`Z}KzWKfMvP za8x1&0Ye}mFgfrC3ztVDkUL;-Gz_-H!{RhL2l`|J$=>G|2XGV?0Yf7d&@j2BK93U0Y}CCD=$muF7ZRaqwUEaE;uTN)l%YQdm(2XJrO=vWXR-&lEFuP} z4E@va603!6hSqhZP;st!qOKMO9FQTA2xuZ)4k0UtLO>Ml6=4v0yetx8heCoF6%Ys% zLLQHkC(12A)Yo5X{+nwpGXBtfserB*y9$Af2i^Z%mb{`Y5s$;eA@=eLcnBO$BtYzN z2swxy3`vxiN8u1CJK67nmN@$@kbwsYYa%1EgBy9Ftr-*De;xgSY+a2%!f|P#6<^$vB<>5m=B$niHi;h zW08rAF&{cD6Biv2#v&6JV?K0RCN4T4j726c#(e0sOk8w87>i6?jQP-MnYieHFcz7( z81tdiGI7xXVJtFnG3G<3W#Xa(!dPVDV$6q5%fv+ogt5rP#h4GBmWhiF2xF0ni!mQM zEfW_V5XK@C7h^tjS|%g_fG`%BxES-H(=u_< z0bwjMaWUpYr)A=z1HxEjh>P>*%bP@3@QqC`@YT%B2FoGvwN4Sd&OUtr@D&GuprZgV zIR}0Z0Kg#_01Vm!06HE31j%P@Dz(AaL_Ku1)Un<#hZFq`V_Hh8RC%|YvL1NCT9cTW ziMVfm?_Q({KF9oqVj3K;XK1&rp&<=_@=ElB4)=uTzLnLLeS>NE7x9_Z6=7ClS4^{& z8Z52wX@a49953GqF85?t_>`A+i?q9wR#n*lVfdj&OJ#4eo4u!}zjgiOOld#uuu9s5 zAEvZUESNmGp4E0`&=%l0@aqM6AXL`ckYBtvZq8!M7Z@c3T@QI08(#05DwD-N=CMOt zTw^sl{&l}uZ)o_FEU&>}4065NvDYYed0@Z7-GSRV$JrlHsC?_>>%?M&ows^#^$BV{atwk!VfRucf$Ki-mOt`$uw39&qO# z4P!lC8Kbp(tJfnar?-9UQ-#+B3TFnwFQs3PjtcO%k`QRzs4sU>IwEq$L8QSPb@*Ae zsg~lC@KH|#-c#K(t97e&w~B9H?GWx@(;?I+{6x&fOyEtey?}O=o(LGzKXL6Y-rJA* zDjG0v>gR@TtU7x(+Hv}Qlw#lxgY(gDVcqc@>#I`O2mJaI4wXL03Kz;wR=)sAf{Yge z=CskK^$yJ!ObRm)_0HGt4(-+XEE5rV?d}jyLg`A+dp-%=VuOLK<|X?O0jd1;R*|L{Oj}rIyrDjuDCbWFY6-Al^ z)oJ5MALWA7?wfY1Q!(}?*S1_azI;yZ^Rmo)!Vcm6u`~f-LlcB0C9iDE3i?^IpJht7 zlKinG;G>hUT8ndeib|neyC&)4&eEo=48ofGb9;n#4)2nJs*cN+Wx6aEQE<4htv6J{ zZ+w)+(C1Ey4Xx~%#pBxeE3oX-Z>lWYOp8uLu0#39aDN@0ZTuK&%Q>W)f(=Mkll*anf9`8FyeN$^{wYmF5~&g9(_wS z;Z%$0L-$}&qqZW9;QP&QH5|4SMU42pmN>?dw@yON!Y!taBt3Agh&IXEakH-Wg2I7f z?^{;E2*2u8QZ-)e?`QXn?3m1VjOUZs4JH99*|X1udxERr-pozji=I1Dl(TjmBHmR3 ztLRJnY?P{3sk#|laaa4DXBKIdL+R1xpQ5T*T1{bb;F9YMtomQi-pA_a`ZS@6@9meG z>oo|Y!9>8_F)6vudE_f_$(nM;f{JBp8x_CY#%kF>M1r6pXZJqmycgiqupV>}^I~?BdFs{~i z;_L>Np~$KI;i5awt!upc{GbfU35ky^cpD(FA!$TQ`1q-^u(*);)B4ynu)$0m+q`9+ z=A#u)Ay2=a)V+zlkS$`R?}+LMnx{PZ z7}RL<=_DI#sdwMe6H+>>7Cvffb^%R5Cdv*+pyPXmalsdA^ z{M8C8?b8jOo=LuE4GAx3`2h!6lArFvzjfB7f&KDRk{fKQ;^BEaQRsm3t|2)kOi%ZQ zptB}+rF9X3W^}EZTOmlu}mkKsb^>vV-K9|Uly>DeD1`SDNTKee5LwLC0$co z4hI0XW1oQR&dyI_L43874=hgj)>XzEm%c;Y;**#ni|F{=<59oxS-_e_zXmG|HDRLO$B@91I`(^2>uVSKOD#v_2ueePayE)8$_{g3oX?^RG?qD&C@0zP%}K`Of_n zeK*ph3ELbAK>6!}uIZUqP>e_wIyT>k*HEPsE9ZCIrE#lvuJiyh%JI&IszUA+Ctc92 z<@e%@S%(kg`aOo^gU@U5#E@hC2{`Y6QsDVHt86U=r>7-XcN-PkH`N3OI*ywab@WyH z&28wZ@4Uo@>+ZW{VKFP^liv`3W%J{kf~f{qGkT2QyGl9KR2#pnthR7t5vm#13Jk4P z?iRe*8*kb;jR+5Y_I_Xs{w}+raE?&3@ZrhCNWJ3J6PaR2}&UIf;_q55-{CC!s;KnA~?)X7v zw7Fb5ZCKpI@f+KthD|h7?(`^@%EzjrF%9ovXJ-2}zC?msq6sm0HxTDqHsh?IUOOH;oo?r#@n?o~ zVGYfBpX<0!$;UT9`H|d;&w`>jHe0N9xWLPt&_Xpe#DkG9tRG%|Q6LN#>HCKjLizK- zL>&y{EuiHISY~d-H1&mTRHv2DJaSU|t7;UJ;hk&bSMvHJ_@C65-Nwb{ti6&Cys`^V z+#v7U_Mv$j#{;iDa}Uynr85QxCC6ndxS!vC3Fj4lbhTrDKwz_EKWU%ROx@mWOO?5= zqpVV8l$t{So_J03ReV6Gme}Zvjv)D%27XyS*=_NVZ5!uq)k!Q*zH#_At)(pgv4PLW z$TL$KB$bsKv4$+`V>sS<+1Pl$)4$Z&^zd9yQ)r2sUhu2I*|5>5W{>rGvW)5?W--azx>^VfldPPUvcwUH_a%Q4fdC8v1vbJ8rv3jAI6!psw-GqNUMo(T2r z8obD9&WW^;kGlBYFE`sqSi(j=%68 z%wd`N-S7SVese$f{_e~_^Lpm|Sy7QOkq`t$rO!@Xz?~)hFX9>QKT}rrPwq6#IXj<$ zAo*ne7v_0CxdeiAx2c>(>>}eljG*mu+)SHDxySD0dP9&t+2h2CB9fJuNGs(?lHNJ- zsZ>IllcafSBVu%>kcHIjG8dU$Ha~|bDhLc9O*<9=pxKV4ftYH!j9q z^UbhS;_bo~B}u3A2_=h+nUWORMM~6ijf_AvT8UOCSE#jGl{P_wA__H(C}AZcLzS2c z!BnWE=a3pAxhuWPY{3?!&g@CYSxM4DmUUt<>~_25Zl#=dSz(1vr-Km`Mo}5pL&lUk zSllCXFq3^jdgG*$4B?`jEJZscd|cc_7qdxHDWAxH^o+~y^e1vKJ?uD&um^X-3ONFY zaxxQsA7`=4=DjsD0h2b;PC8hI^HYTMa~9Gp%@ooDr1Z-JCg$eEX!Pd}dB1jh$kYs* zR>C3ZK^oGN$tiV`@B)&di(LenR>BQsa;VX>lqE1ZeIoJ7fcH*%r~%w~#pmW-3ceZA zb7RF)TqMrYt{j@S8GNfOvlpQxCB?g{B(Zsv!%VxGI6Vxy1m-&sjZDQ^(tskUQiiCx zzZ``INe^#o!VX)|Rh?GpnDlCPz(Jt<`NP|)jhiVS;@~$*2-NCT9gCNsW z4P1kqqRd#LN`sYg-)f3V!m3q z(7uhuOcPxAz-_5jDh;6}ahXM{*2xqK(#$17)iM*JBsCfxj_OSQL_xv&CCYG7+`fm~ zg8J}dG4o^5YBf64lqgHoS+p{XBeT1$gg zF}IezJ6krnqHk-jV57V{loNL`Bwv3?(%u5}Z)yG=i}&%?F@_WT-ew^9@*vH6xKC@~ zw)~zwZd8crd@2OK_(ARi=WrL24x#e$h4S_qI0!>qSU2t>r(3xd@-&t2i`v%>46ldz zXMv6SA4~*;m;9I0@KjaxpH4%F9qRu#4S`im6ygpmX*R&U3%Ix8>1NJ1pM5K2k4_Dg#+5(w<{TK1oXe;*iS0dg6R`91D-(Vf|&Hp#P!8+(0aLsj4 ztO4yw2Q&wH@y}4-2A|En?vVzKTCG&;VXztW$fP`^ZBZ)4?ZgbfqbRvdULQ~h>6kx| zW026}=$ovd7c*}a`dYcyKJJYZ_P=uWD^UMF_G4ZIM)YGw1!9Rw03gDqh)b9cpo+Kv zAi}1IOPCL!instE!lsBzm=B94{qTf4cR)}v0ztQyK@heLf?l9EFKw9# zL4)!1)af~%i?w;DsxKkY6ZT!5yQ1!RZS<%}UCWvF&Xy15AAHF2v(?7qht-E()%hK|U8f)})cjOzH(6s!$ zttX<=Xk-W!J*1^0BK(R@k1B7MU(CLrhn)V+iFApq^2*wGM}Pce)6ky7e|_WhTkt~7#C)1pSWF8JvI0I`o(Kjb!nnA9{&DU ztZwf1EwKv^eIpMbynMenwkxpnJ~X|;~ek`I$-pA_u+ zIP;UO^FI2Zd9U=WQWI7@<8XLp|7=#$iv=A+ zj()$g169}StC-`TD{qb8c=Ps8R*V?e)kKZIKI+@GU0BwJ_o9x;=X9TFK3}u$Sfys{ zv1bZia~}R#5%B@?O8w5&+B==AZ;seI^5v}hy0sgYFPJ%gx773S)#`_r-uvpi&21l^ zTT}12)b)$DO*d)_*fYDgJ-&}@&wVq!gKQjezZ_a6D{0*G%dg}453keH=BFN*v8?i6 DO%}f~ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Misc/spiderweb.rsi/spider_web_clown_2.png b/Resources/Textures/Objects/Misc/spiderweb.rsi/spider_web_clown_2.png new file mode 100644 index 0000000000000000000000000000000000000000..91931c7d8f6bdb7b9ca18b0be7f41cc3f49a5285 GIT binary patch literal 15556 zcmeI3Yj6|S700(WkH`bqC3f0@k|=UaO7Ut}E3IU0Wnm+O?SdR*+`*)i!fJJGFP5~5 zc8z4aO$eA|OcI8=;3hcZW}qbC#$kBWoz_lj7&3SulNNBo>jN3nmWH%39l|3+XnR+( zCHY#u^|a~q%kEfSo%_G%oZa6&=W4%fTV+M*?2LIC1VPL$FDt2nXTAD)Ux$5U@k$p=x5`_ITvARa7aj)bA$#3Mnk_Q+g{ve!95RN60ATKlkMehN1 zVxZ74()T-qUi20k*065c9dvkBt4(jS8%?auX0he#8QR2Bw3#x~ zBxB|*G-qM-qldwn0lzsy-de7zWcg@1XcZdj6(z_~R5%h2Y>HnBM4BB{!x*A61$ByOq_bBmTj zY=s=~UO86?@QM_wmL#7uR%MlA2=y*kw5s&qULyv)QdnN(piq~@dMBcR5?%pLhGxtp z&BDKGla+%dNwbS-6GziYL1HtJ7;ecc);5ic!O+zV!?8AwVUlAc%|v6s{_*k(Kcy(i zbCcqD1+G>K`FX`D`uRFQ1p{>sDlwQeGhS7kOY%t}cv-+{c2KE?lf0sp#+3(Tg%1dz zyu=9yjH2k}JRXaQHQNM|1}q>8>=qm8v9lJ^Twt@9Eq0dm2r-Cmce4A0&?S=4sCEks z9otyEk^sXeF3V!F0^UN~$yyt0Cru{cB|SXDk{;R&tX4bE*gcl$YQaQF!6qbnA|%3n zkM||bQSZeIlL6XNU}D$;lC`r|l4UF~1!FUjcHV9k3T!3|?*(HiQiPe1s!Wt&wKgSH zF|6h2&bAsnJ$`gd@QKkKD#(Xqp!Q#(VXOh;TUva_QhlO*%<+P{w>bs1J%HCijT=o| zR@`&cO`N!#Q$rAopX5Gyj&MB);Myw|DmrWOAhJ}eg!vFCu7edamClbv9q)#QcTnnY zflvG&EQHK&{O^`wYF+i8E<=hP>i@S4i7FQA`9K};I;pV&9vhh2%Ei`md}oby>%>lU zs6S2|>|$6^e6)K^4r;jD15PW;npp>h4x=8GVg&eVN<_F5%j%9|hMA&1sF2ce?PQKg z!l+|xv63FlqFoppg^zvkiIa*ya!zQ__&)Ykeo5TXR~Z$Fr6oat;7tt|o)4mGxDX(C zQ^SSlgQyxV1PI>LaN+qNs)h>zf;Tl>cs_`#;X;7mO$`^G529+g5FmI{!-eOAs2VN= z2;S6i;rSq{h6@3LH#J;%K8UK}LV(~+4HupdqH4GhAb3;5h3A8)8ZHC~-qdj6`5>x> z3ju;RHC%W;h^pa2fZ$CH7oHEIYPb*}cvHiL=YyykE(8eP)NtYXAgYE70fIL*TzEc+ zs^LO_;7tt|o)4mGxDX(CQ^SSlgQyxV1PI>LaN+qNs)h>zf;X|aG7>Lwf&hGTGYntR zyxpzT!`D0YLRpoYAe!?CV$&9a_~M`N{0Tuc(gbmRJwb4<5X3j6_I2+qCy2Dl@{;1} z$fdW|^aWarX1(^7aaFditz+Bvjt*&f%iY(8E}uQS?|V7AHshl9;TyxZF4m6h+?6%_ ztF8sVzi|58$h|cun9Ln}KfQVHsYed=3|u?;w?6m$bNAnPdH;1&;pLBXMCFIMy^W_n zAkvPWxpn59-p!|vrGdTO=Wf3E+b0Rz`ODk(JU#uvbKN%wayRLUJdf`Gyk)O=^^@-& zUHb6d-P_8IkNrZoqW;acPHSzErSj*Gr1v%+@2$A|Mc3`V6J=+Q=bc%+>SsO1u6I|= zl6Pbu>^`|ZqpZ{SgM%~OPkuN!M9q9+^}%r>phd34TFuKaM(_SfZF7o}gP z>#3?(Su}X1qce2q@%hg`yU01W_15fLZRvkaH#k=44la5q*!@!Gi#KMq?#g)kx$cJ> zXY{|}+Wq>x;umZ$ymx%gV~(9IKg_Ye(q8>Q>9k+JdSg>p)&a+ZS!B-K6VJ@qaP{Mk zBe!+TN%wrS{zuNzoyFw5yuvFh=Fc29{lrpvX&bnI=iR-}|7q8am93W^dg%y1{puai zaLu>l#|O5K*M{UW!H6sOy>R#t$V&~xwmA_=KQh+ z?VJ8!JG{ksGvJcy-f!ujwzw~E=CSm@H+-=Dz;mT7TNYYhE}n7y8RGDFHf%kWw&%-L zTYq}L^PS=|M}t(BZTjvvd%FKD4yLv58#vNAEjN7Z&V`Qji&w~dwxNa2{5vhV19SC# dzx>AxLSFFMMJj&?))+yQFRLhdd+GYk{{k5*JGTG; literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/behonker_eye.rsi/base.png b/Resources/Textures/Objects/Weapons/Guns/Battery/behonker_eye.rsi/base.png new file mode 100644 index 0000000000000000000000000000000000000000..8361c079aa15c29620e7ab0539f3e477febaa3cb GIT binary patch literal 15580 zcmeI3Yj6|S6~`9?A=q(4AyY_6Vj)8bEz+(YmaH9Fu90kP#xgDzevKWx+Fi?AOIoqJ zvScTn7{3~ajFZxU2~C;I5R-8!B8H_cQQmW~Jufc9Fv}&*RVh_Ei%FXIX(@(xv)ZsPAkW4yYi>9|(T%L6a+p)-Wjt@Uar53j4f%kqqak zBXLRjw=#^YRgo!DV~#pcNvNuHma6Q$z^byeCJjxP%qp`*tIIN*jpnr~J)z6O2?K5* zGwRo1V}c zG(?t0Pq=hhq|rzc<}VRCk{}X-L}vmqoIJzTH&2bBbLq^aA)C|@i7^spf-&U!VJL~3 zRg}cJ32_*jtmg$ECD}M1NV$sT6GcU;M`y*Sjm0xZ=T|D#=nY2ZoAreJ!gb2$ zglnPmtm6J^jf?z!2|NjAC7MHUJSCwM9UnbC$`Cg0w%Hd9uXAd8qS8+ca;At6C?s{Pn#nOim~f14RlXb9>K66fnnF`FpS)d zVN3ZPTTT~XSW39ak>?5zf7qMTc)s+3u8htPwWhZ+w*R8;J8O0{ywWp&sH$z;{*#yK zm%h1RW9N;ou`cG!bA4UXnLnw&<$mf5d8N!V>DL}Q@R`2_`(J*oU)!}~?ma8ET)cDa zrsYmeQCeH8{jJX~=vms@KKG&C2mkTI^P1`(3?K6?UB3Hp+S)TIzbQU@Uq`sVT4Nj$ z1}@qwclFKL#_j2wv-rL18&*|Z82#tGQ@Iw^dF}Rdy=P(T|NB0KJxo#%HG+3_U<2^7*9PtXBS`oMs<2+=N;=%`~3r+$Igv7_law+ zmjC|kTuad#<(p-3@7{8k;n(jRKPEg&UnG9!Yg+$N`yLQ8n~_nOYYRw^?;0Fu$PEu1{`1_vOAAar?fzxO`!l;b zPA^NXy?*;w4-=Vc?T_j%Ej)0o1M9wGzBGUHw@Ytyy&isIR9Ia+cd%pdwHMajs%cd( zs`^U7@xf2N{8HPai}O$2ewui$sbFMi^@_2vyVV03_qDx^uRI_<&kWWyQ?0%DzVSyc b4`KF4j^DUCbn1Ze{Bco!iR0k9y0(7-W5i7F literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/behonker_eye.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Battery/behonker_eye.rsi/meta.json new file mode 100644 index 0000000000..3abd022f8a --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Guns/Battery/behonker_eye.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by brainfood1183 (github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "base" + } + ] +} From 372735f9e092f0e8d885ce9598608569cd83eecf Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 14 Jun 2023 22:48:40 -0400 Subject: [PATCH 236/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index e8d68b0792..9ab7ac4779 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: metalgearsloth - changes: - - {message: Fix monkeys standing up in crit., type: Fix} - id: 3501 - time: '2023-04-23T04:29:56.0000000+00:00' - author: Interrobang01 changes: - {message: The Syndicate has elected to introduce a permanent two-for-the-price-of-one @@ -2912,3 +2907,10 @@ Entries: - {message: Added dumplings!, type: Add} id: 4000 time: '2023-06-15T02:45:31.0000000+00:00' +- author: brainfood1183 + changes: + - {message: Clown Spiders have been sighted in the maintenance corridors., type: Add} + - {message: Rumors of giant floating Behonkers have been circulating between salvage + crews., type: Add} + id: 4001 + time: '2023-06-15T02:47:37.0000000+00:00' From 78939b4c045364638fbd32bd875c2d8f39bd490f Mon Sep 17 00:00:00 2001 From: brainfood1183 <113240905+brainfood1183@users.noreply.github.com> Date: Thu, 15 Jun 2023 04:02:33 +0100 Subject: [PATCH 237/474] Crazy Glue Fix (#17262) --- Content.Server/Glue/GlueSystem.cs | 2 -- Content.Server/Glue/GluedSystem.cs | 16 ++++++---------- 2 files changed, 6 insertions(+), 12 deletions(-) diff --git a/Content.Server/Glue/GlueSystem.cs b/Content.Server/Glue/GlueSystem.cs index 91dc122daf..fbd2800704 100644 --- a/Content.Server/Glue/GlueSystem.cs +++ b/Content.Server/Glue/GlueSystem.cs @@ -39,11 +39,9 @@ private void OnInteract(EntityUid uid, GlueComponent component, AfterInteractEve return; } - if (HasComp(target)) { _audio.PlayPvs(component.Squeeze, uid); - EnsureComp(target); _popup.PopupEntity(Loc.GetString("glue-success", ("target", Identity.Entity(target, EntityManager))), args.User, args.User, PopupType.Medium); EnsureComp(target); diff --git a/Content.Server/Glue/GluedSystem.cs b/Content.Server/Glue/GluedSystem.cs index ea0ceff438..6a7516cd79 100644 --- a/Content.Server/Glue/GluedSystem.cs +++ b/Content.Server/Glue/GluedSystem.cs @@ -1,8 +1,7 @@ using Content.Shared.Interaction.Components; using Robust.Shared.Timing; -using Content.Shared.Interaction; using Content.Shared.Glue; -using Content.Shared.Hands.Components; +using Content.Shared.Hands; namespace Content.Server.Glue; @@ -16,7 +15,7 @@ public override void Initialize() base.Initialize(); SubscribeLocalEvent(OnGluedInit); - SubscribeLocalEvent(OnPickUp); + SubscribeLocalEvent(OnHandPickUp); } // Timing to remove glued and unremoveable. @@ -52,13 +51,10 @@ private void OnGluedInit(EntityUid uid, GluedComponent component, ComponentInit } // Timers start only when the glued item is picked up. - private void OnPickUp(EntityUid uid, GluedComponent component, InteractHandEvent args) + private void OnHandPickUp(EntityUid uid, GluedComponent component, GotEquippedHandEvent args) { - var userHands = Comp(args.User); - if (userHands.ActiveHandEntity == uid) - { - component.GlueBroken = true; - component.GlueTime = _timing.CurTime + component.GlueCooldown; - } + EnsureComp(uid); + component.GlueBroken = true; + component.GlueTime = _timing.CurTime + component.GlueCooldown; } } From fa23d57fd8708f0050ee9454db971d92a01fbe8f Mon Sep 17 00:00:00 2001 From: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> Date: Wed, 14 Jun 2023 23:11:11 -0400 Subject: [PATCH 238/474] Remove cloning tech, add bluespace chemistry tech (#17345) --- .../Locale/en-US/research/technologies.ftl | 1 + .../Entities/Objects/Specific/chemistry.yml | 27 +++++++++++++++ .../Entities/Structures/Machines/lathe.yml | 4 +++ .../Prototypes/Recipes/Lathes/chemistry.yml | 21 ++++++++++++ Resources/Prototypes/Research/biochemical.yml | 32 +++++++++++++----- .../Chemistry/syringe.rsi/bluespace_base0.png | Bin 0 -> 391 bytes .../Specific/Chemistry/syringe.rsi/meta.json | 11 +++++- 7 files changed, 86 insertions(+), 10 deletions(-) create mode 100644 Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/bluespace_base0.png diff --git a/Resources/Locale/en-US/research/technologies.ftl b/Resources/Locale/en-US/research/technologies.ftl index 65fde10511..9a6a6ddca1 100644 --- a/Resources/Locale/en-US/research/technologies.ftl +++ b/Resources/Locale/en-US/research/technologies.ftl @@ -25,6 +25,7 @@ research-technology-virology = Virology research-technology-cryogenics = Cryogenics research-technology-chemical-dispensary = Chemical Dispensary research-technology-crew-monitoring = Crew Monitoring +research-technology-bluespace-chemistry = Bluespace Chemistry research-technology-cloning = Cloning research-technology-basic-robotics = Basic Robotics diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml index 88fcfbce66..610c26eac4 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml @@ -271,6 +271,33 @@ - Syringe - Trash +- type: entity + id: SyringeBluespace + parent: BaseSyringe + name: bluespace syringe + description: Injecting with advanced bluespace technology. + components: + - type: Sprite + layers: + - state: syringe1 + map: ["enum.SolutionContainerLayers.Fill"] + visible: false + - state: bluespace_base0 + map: ["enum.SolutionContainerLayers.Base"] + - type: Icon + sprite: Objects/Specific/Chemistry/syringe.rsi + state: bluespace_base0 + - type: SolutionContainerManager + solutions: + injector: + maxVol: 100 + - type: Injector + delay: 2.5 + injectOnly: false + - type: SolutionContainerVisuals + maxFillLevels: 2 + fillBaseName: syringe + - type: entity name: pill parent: BaseItem diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index 2c54578e1b..639cabd5f1 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -242,6 +242,8 @@ - ClothingShoesBootsMag - NodeScanner - HolofanProjector + - BluespaceBeaker + - SyringeBluespace - WeaponForceGun - WeaponTetherGun - WeaponGrapplingGun @@ -521,6 +523,8 @@ - Drill - Saw - Hemostat + - BluespaceBeaker + - SyringeBluespace - type: Machine board: MedicalTechFabCircuitboard diff --git a/Resources/Prototypes/Recipes/Lathes/chemistry.yml b/Resources/Prototypes/Recipes/Lathes/chemistry.yml index 709447bd9b..e2285e9be8 100644 --- a/Resources/Prototypes/Recipes/Lathes/chemistry.yml +++ b/Resources/Prototypes/Recipes/Lathes/chemistry.yml @@ -36,6 +36,27 @@ Plastic: 100 Steel: 25 +- type: latheRecipe + id: BluespaceBeaker + result: BluespaceBeaker + completetime: 2 + materials: + Steel: 500 + Plastic: 500 + Plasma: 150 + Silver: 50 + +- type: latheRecipe + id: SyringeBluespace + result: SyringeBluespace + completetime: 2 + materials: + Steel: 100 + Plastic: 150 + Glass: 250 + Plasma: 100 + Silver: 50 + - type: latheRecipe id: PillCanister result: PillCanister diff --git a/Resources/Prototypes/Research/biochemical.yml b/Resources/Prototypes/Research/biochemical.yml index 938ed8b065..b0b1d1ddea 100644 --- a/Resources/Prototypes/Research/biochemical.yml +++ b/Resources/Prototypes/Research/biochemical.yml @@ -102,16 +102,30 @@ # Tier 3 - type: technology - id: Cloning - name: research-technology-cloning + id: BluespaceChemistry + name: research-technology-bluespace-chemistry icon: - sprite: Structures/Machines/cloning.rsi - state: pod_0 + sprite: Objects/Specific/Chemistry/beaker_bluespace.rsi + state: beakerbluespace discipline: Biochemical tier: 3 - cost: 15000 + cost: 10000 recipeUnlocks: - - CloningPodMachineCircuitboard - - MedicalScannerMachineCircuitboard - - CloningConsoleComputerCircuitboard - - BiomassReclaimerMachineCircuitboard + - BluespaceBeaker + - SyringeBluespace + +# look into revisiting this later once medical isn't a hellhole +#- type: technology +# id: Cloning +# name: research-technology-cloning +# icon: +# sprite: Structures/Machines/cloning.rsi +# state: pod_0 +# discipline: Biochemical +# tier: 3 +# cost: 15000 +# recipeUnlocks: +# - CloningPodMachineCircuitboard +# - MedicalScannerMachineCircuitboard +# - CloningConsoleComputerCircuitboard +# - BiomassReclaimerMachineCircuitboard diff --git a/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/bluespace_base0.png b/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/bluespace_base0.png new file mode 100644 index 0000000000000000000000000000000000000000..2339e6b288cc445cca40bd53d6d43ed03512c762 GIT binary patch literal 391 zcmV;20eJq2P)Px$K}keGRA_n%~Y+afwWT_Y;4iWVTEF6Fxm@-t^ zvv3TAS@J5E8WG8P??sCLDNNtRLHRE3`#l6dl`ChM z32uNfnU$W|KK)53PW#Gz27tUM?fY^L0Bn0u+kd#n@}ji6{egXDX#4+)pyeor_u%)k zBnVr5e&BTcK~qyJ?2tcOtW|u_`6_zH7V Date: Wed, 14 Jun 2023 23:12:15 -0400 Subject: [PATCH 239/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 9ab7ac4779..afc26111ea 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,10 +1,4 @@ Entries: -- author: Interrobang01 - changes: - - {message: The Syndicate has elected to introduce a permanent two-for-the-price-of-one - deal on Syndicate Encryption Keys. Give the spare to a friend (or enemy)!, type: Tweak} - id: 3502 - time: '2023-04-23T05:08:13.0000000+00:00' - author: metalgearsloth changes: - {message: Fix railing / windoor bounds., type: Fix} @@ -2914,3 +2908,11 @@ Entries: crews., type: Add} id: 4001 time: '2023-06-15T02:47:37.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: Added high-capacity bluespace beakers and large-volume quick-injecting + bluespace syringes., type: Add} + - {message: Replaced the tier 3 biochemical technology with Bluespace Chemistry., + type: Add} + id: 4002 + time: '2023-06-15T03:11:11.0000000+00:00' From de63c5230bcab10f5799b73907e0f5c68a9f689d Mon Sep 17 00:00:00 2001 From: Ahion <58528255+Ahion@users.noreply.github.com> Date: Thu, 15 Jun 2023 05:29:52 +0200 Subject: [PATCH 240/474] More user friendly crew monitor UI (#17328) --- .../CrewMonitoring/CrewMonitoringWindow.xaml | 10 ++- .../CrewMonitoringWindow.xaml.cs | 84 ++++++++++--------- Content.Client/Pinpointer/UI/NavMapControl.cs | 9 ++ Content.Client/Stylesheets/StyleNano.cs | 5 ++ .../Medical/SuitSensors/SuitSensorSystem.cs | 6 +- .../Medical/SuitSensor/SharedSuitSensor.cs | 7 +- .../components/crew-monitoring-component.ftl | 2 + 7 files changed, 77 insertions(+), 46 deletions(-) diff --git a/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml b/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml index 99224dbec6..559a12d63b 100644 --- a/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml +++ b/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml @@ -1,4 +1,4 @@ - + Margin="8, 8, 8, 8"> + diff --git a/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs b/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs index 96a029603c..95a56f5692 100644 --- a/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs +++ b/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs @@ -21,6 +21,7 @@ public sealed partial class CrewMonitoringWindow : FancyWindow private readonly IEntityManager _entManager; private readonly IEyeManager _eye; private EntityUid? _stationUid; + private CrewMonitoringButton? _trackedButton; public static int IconSize = 16; // XAML has a `VSeparationOverride` of 20 for each row. @@ -52,27 +53,28 @@ public void ShowSensors(List stSensors, EntityCoordinates? mon // TODO scroll container // TODO filter by name & occupation // TODO make each row a xaml-control. Get rid of some of this c# control creation. + if (stSensors.Count == 0) + { + NoServerLabel.Visible = true; + return; + } + NoServerLabel.Visible = false; // add a row for each sensor foreach (var sensor in stSensors.OrderBy(a => a.Name)) { - // add users name - // format: UserName - var nameLabel = new PanelContainer() + // add button with username + var nameButton = new CrewMonitoringButton() { - PanelOverride = new StyleBoxFlat() - { - BackgroundColor = StyleNano.ButtonColorDisabled, - }, - Children = - { - new Label() - { - Text = sensor.Name, - Margin = new Thickness(5f, 5f), - } - } + SuitSensorUid = sensor.SuitSensorUid, + Coordinates = sensor.Coordinates, + Text = sensor.Name, + Margin = new Thickness(5f, 5f), }; + if (sensor.SuitSensorUid == _trackedButton?.SuitSensorUid) + nameButton.AddStyleClass(StyleNano.StyleClassButtonColorGreen); + SensorsTable.AddChild(nameButton); + _rowsContent.Add(nameButton); // add users job // format: JobName @@ -81,9 +83,6 @@ public void ShowSensors(List stSensors, EntityCoordinates? mon Text = sensor.Job, HorizontalExpand = true }; - - SensorsTable.AddChild(nameLabel); - _rowsContent.Add(nameLabel); SensorsTable.AddChild(jobLabel); _rowsContent.Add(jobLabel); @@ -112,33 +111,32 @@ public void ShowSensors(List stSensors, EntityCoordinates? mon if (sensor.Coordinates != null && NavMap.Visible) { - NavMap.TrackedCoordinates.TryAdd(sensor.Coordinates.Value, (true, Color.FromHex("#B02E26"))); - nameLabel.MouseFilter = MouseFilterMode.Stop; + NavMap.TrackedCoordinates.TryAdd(sensor.Coordinates.Value, + (true, sensor.SuitSensorUid == _trackedButton?.SuitSensorUid ? StyleNano.PointGreen : StyleNano.PointRed)); - // Hide all others upon mouseover. - nameLabel.OnMouseEntered += args => + nameButton.OnButtonUp += args => { - foreach (var (coord, value) in NavMap.TrackedCoordinates) - { - if (coord == sensor.Coordinates) - continue; - - NavMap.TrackedCoordinates[coord] = (false, value.Color); - } - }; - - nameLabel.OnMouseExited += args => - { - foreach (var (coord, value) in NavMap.TrackedCoordinates) - { - NavMap.TrackedCoordinates[coord] = (true, value.Color); + if (_trackedButton != null && _trackedButton?.Coordinates != null) + //Make previous point red + NavMap.TrackedCoordinates[_trackedButton.Coordinates.Value] = (true, StyleNano.PointRed); + + NavMap.TrackedCoordinates[sensor.Coordinates.Value] = (true, StyleNano.PointGreen); + NavMap.CenterToCoordinates(sensor.Coordinates.Value); + + nameButton.AddStyleClass(StyleNano.StyleClassButtonColorGreen); + if (_trackedButton != null) + { //Make previous button default + var previosButton = SensorsTable.GetChild(_trackedButton.IndexInTable); + previosButton.RemoveStyleClass(StyleNano.StyleClassButtonColorGreen); } + _trackedButton = nameButton; + _trackedButton.IndexInTable = nameButton.GetPositionInParent(); }; } } - // For debugging. - //if (monitorCoords != null) - // NavMap.TrackedCoordinates.Add(monitorCoords.Value, (true, Color.FromHex("#FF00FF"))); + // Show monitor point + if (monitorCoords != null) + NavMap.TrackedCoordinates.Add(monitorCoords.Value, (true, StyleNano.PointMagenta)); } private BoxContainer GetPositionBox(EntityCoordinates? coordinates, Vector2 monitorCoordsInStationSpace, bool snap, float precision) @@ -203,10 +201,16 @@ private void ClearAllSensors() { SensorsTable.RemoveChild(child); } - _rowsContent.Clear(); _directionIcons.Clear(); NavMap.TrackedCoordinates.Clear(); } } + + public sealed class CrewMonitoringButton : Button + { + public int IndexInTable; + public EntityUid? SuitSensorUid; + public EntityCoordinates? Coordinates; + } } diff --git a/Content.Client/Pinpointer/UI/NavMapControl.cs b/Content.Client/Pinpointer/UI/NavMapControl.cs index 723030b768..2e63ef0ece 100644 --- a/Content.Client/Pinpointer/UI/NavMapControl.cs +++ b/Content.Client/Pinpointer/UI/NavMapControl.cs @@ -95,6 +95,15 @@ public NavMapControl() : base(8f, 128f, 48f) }; } + public void CenterToCoordinates(EntityCoordinates coordinates) + { + if (_entManager.TryGetComponent(MapUid, out var physics)) + { + _offset = new Vector2(coordinates.X, coordinates.Y) - physics.LocalCenter; + } + _recenter.Disabled = false; + } + protected override void KeyBindDown(GUIBoundKeyEventArgs args) { base.KeyBindDown(args); diff --git a/Content.Client/Stylesheets/StyleNano.cs b/Content.Client/Stylesheets/StyleNano.cs index e0f0a45224..351b6cf548 100644 --- a/Content.Client/Stylesheets/StyleNano.cs +++ b/Content.Client/Stylesheets/StyleNano.cs @@ -104,6 +104,11 @@ public sealed class StyleNano : StyleBase public static readonly Color ButtonColorGoodDefault = Color.FromHex("#3E6C45"); public static readonly Color ButtonColorGoodHovered = Color.FromHex("#31843E"); + //NavMap + public static readonly Color PointRed = Color.FromHex("#B02E26"); + public static readonly Color PointGreen = Color.FromHex("#38b026"); + public static readonly Color PointMagenta = Color.FromHex("#FF00FF"); + // Context menu button colors public static readonly Color ButtonColorContext = Color.FromHex("#1119"); public static readonly Color ButtonColorContextHover = Color.DarkSlateGray; diff --git a/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs b/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs index 5f8b5954b2..597b647646 100644 --- a/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs +++ b/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs @@ -321,7 +321,7 @@ public void SetSensor(EntityUid uid, SuitSensorMode mode, EntityUid? userUid = n totalDamage = damageable.TotalDamage.Int(); // finally, form suit sensor status - var status = new SuitSensorStatus(userName, userJob); + var status = new SuitSensorStatus(uid, userName, userJob); switch (sensor.Mode) { case SuitSensorMode.SensorBinary: @@ -371,6 +371,7 @@ public NetworkPayload SuitSensorToPacket(SuitSensorStatus status) [SuitSensorConstants.NET_NAME] = status.Name, [SuitSensorConstants.NET_JOB] = status.Job, [SuitSensorConstants.NET_IS_ALIVE] = status.IsAlive, + [SuitSensorConstants.NET_SUIT_SENSOR_UID] = status.SuitSensorUid, }; if (status.TotalDamage != null) @@ -397,12 +398,13 @@ public NetworkPayload SuitSensorToPacket(SuitSensorStatus status) if (!payload.TryGetValue(SuitSensorConstants.NET_NAME, out string? name)) return null; if (!payload.TryGetValue(SuitSensorConstants.NET_JOB, out string? job)) return null; if (!payload.TryGetValue(SuitSensorConstants.NET_IS_ALIVE, out bool? isAlive)) return null; + if (!payload.TryGetValue(SuitSensorConstants.NET_SUIT_SENSOR_UID, out EntityUid suitSensorUid)) return null; // try get total damage and cords (optionals) payload.TryGetValue(SuitSensorConstants.NET_TOTAL_DAMAGE, out int? totalDamage); payload.TryGetValue(SuitSensorConstants.NET_COORDINATES, out EntityCoordinates? cords); - var status = new SuitSensorStatus(name, job) + var status = new SuitSensorStatus(suitSensorUid, name, job) { IsAlive = isAlive.Value, TotalDamage = totalDamage, diff --git a/Content.Shared/Medical/SuitSensor/SharedSuitSensor.cs b/Content.Shared/Medical/SuitSensor/SharedSuitSensor.cs index 5f59836182..8d2d7e230a 100644 --- a/Content.Shared/Medical/SuitSensor/SharedSuitSensor.cs +++ b/Content.Shared/Medical/SuitSensor/SharedSuitSensor.cs @@ -1,4 +1,4 @@ -using Robust.Shared.Map; +using Robust.Shared.Map; using Robust.Shared.Serialization; namespace Content.Shared.Medical.SuitSensor @@ -6,13 +6,15 @@ namespace Content.Shared.Medical.SuitSensor [Serializable, NetSerializable] public sealed class SuitSensorStatus { - public SuitSensorStatus(string name, string job) + public SuitSensorStatus(EntityUid suitSensorUid, string name, string job) { + SuitSensorUid = suitSensorUid; Name = name; Job = job; } public TimeSpan Timestamp; + public EntityUid SuitSensorUid; public string Name; public string Job; public bool IsAlive; @@ -51,6 +53,7 @@ public static class SuitSensorConstants public const string NET_IS_ALIVE = "alive"; public const string NET_TOTAL_DAMAGE = "vitals"; public const string NET_COORDINATES = "coords"; + public const string NET_SUIT_SENSOR_UID = "uid"; ///Used by the CrewMonitoringServerSystem to send the status of all connected suit sensors to each crew monitor public const string NET_STATUS_COLLECTION = "suit-status-collection"; diff --git a/Resources/Locale/en-US/medical/components/crew-monitoring-component.ftl b/Resources/Locale/en-US/medical/components/crew-monitoring-component.ftl index 0914415619..e089b09234 100644 --- a/Resources/Locale/en-US/medical/components/crew-monitoring-component.ftl +++ b/Resources/Locale/en-US/medical/components/crew-monitoring-component.ftl @@ -10,3 +10,5 @@ crew-monitoring-user-interface-location = Location crew-monitoring-user-interface-alive = Alive crew-monitoring-user-interface-dead = Dead crew-monitoring-user-interface-no-info = N/A + +crew-monitoring-user-interface-no-server = Server not found From 60d06a20ab9cae5a60c965b5ec7cb7201f590519 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 14 Jun 2023 23:30:56 -0400 Subject: [PATCH 241/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index afc26111ea..f48c1689ad 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: metalgearsloth - changes: - - {message: Fix railing / windoor bounds., type: Fix} - id: 3503 - time: '2023-04-23T05:23:03.0000000+00:00' - author: ElectroJr changes: - {message: Eating and drinking interactions can once again be cancelled by using @@ -2916,3 +2911,9 @@ Entries: type: Add} id: 4002 time: '2023-06-15T03:11:11.0000000+00:00' +- author: Ahion + changes: + - {message: 'Using the crew monitoring console, it has become more convenient to + track the position of the crew on the map.', type: Tweak} + id: 4003 + time: '2023-06-15T03:29:53.0000000+00:00' From a27bd8d6b20ce66b6b53bf82b6e3089828d59a65 Mon Sep 17 00:00:00 2001 From: end <72604018+laok233@users.noreply.github.com> Date: Thu, 15 Jun 2023 05:36:15 +0200 Subject: [PATCH 242/474] In game guide books (#17304) --- .../catalog/cargo/cargo-service.ftl | 3 + .../catalog/fills/crates/service-crates.ftl | 3 + .../Catalog/Cargo/cargo_service.yml | 10 + .../Catalog/Fills/Books/bookshelf.yml | 2 - .../Catalog/Fills/Crates/service.yml | 20 ++ .../Entities/Objects/Misc/books.yml | 220 ++++++++++++++++++ Resources/Prototypes/Guidebook/botany.yml | 2 +- .../Prototypes/Guidebook/engineering.yml | 20 +- Resources/Prototypes/Guidebook/medical.yml | 2 +- Resources/Prototypes/Guidebook/salvage.yml | 2 +- .../Prototypes/Guidebook/shiftandcrew.yml | 9 +- Resources/Prototypes/Guidebook/ss14.yml | 2 +- .../Guidebook/{ => Cargo}/Salvage.xml | 0 .../Guidebook/{ => Engineering}/AME.xml | 0 .../{ => Engineering}/Atmospherics.xml | 0 .../{ => Engineering}/Construction.xml | 0 .../{ => Engineering}/Engineering.xml | 0 .../Guidebook/{ => Engineering}/Fires.xml | 0 .../NetworkConfigurator.xml} | 0 .../{ => Engineering}/Networking.xml | 0 .../Guidebook/{ => Engineering}/Power.xml | 0 .../{ => Engineering}/Shuttlecraft.xml | 0 .../{ => Engineering}/Singularity.xml | 0 .../{Medical Doctor.xml => MedicalDoctor.xml} | 0 .../Guidebook/{ => Service}/Bartender.xml | 0 .../Guidebook/{ => Service}/Botany.xml | 0 .../Guidebook/{ => Service}/Chef.xml | 0 .../FoodRecipes.xml} | 0 .../Guidebook/{ => Service}/Janitorial.xml | 0 ...pace Station 14.xml => SpaceStation14.xml} | 0 30 files changed, 275 insertions(+), 20 deletions(-) rename Resources/ServerInfo/Guidebook/{ => Cargo}/Salvage.xml (100%) rename Resources/ServerInfo/Guidebook/{ => Engineering}/AME.xml (100%) rename Resources/ServerInfo/Guidebook/{ => Engineering}/Atmospherics.xml (100%) rename Resources/ServerInfo/Guidebook/{ => Engineering}/Construction.xml (100%) rename Resources/ServerInfo/Guidebook/{ => Engineering}/Engineering.xml (100%) rename Resources/ServerInfo/Guidebook/{ => Engineering}/Fires.xml (100%) rename Resources/ServerInfo/Guidebook/{Network_Configurator.xml => Engineering/NetworkConfigurator.xml} (100%) rename Resources/ServerInfo/Guidebook/{ => Engineering}/Networking.xml (100%) rename Resources/ServerInfo/Guidebook/{ => Engineering}/Power.xml (100%) rename Resources/ServerInfo/Guidebook/{ => Engineering}/Shuttlecraft.xml (100%) rename Resources/ServerInfo/Guidebook/{ => Engineering}/Singularity.xml (100%) rename Resources/ServerInfo/Guidebook/Medical/{Medical Doctor.xml => MedicalDoctor.xml} (100%) rename Resources/ServerInfo/Guidebook/{ => Service}/Bartender.xml (100%) rename Resources/ServerInfo/Guidebook/{ => Service}/Botany.xml (100%) rename Resources/ServerInfo/Guidebook/{ => Service}/Chef.xml (100%) rename Resources/ServerInfo/Guidebook/{Food Recipes.xml => Service/FoodRecipes.xml} (100%) rename Resources/ServerInfo/Guidebook/{ => Service}/Janitorial.xml (100%) rename Resources/ServerInfo/Guidebook/{Space Station 14.xml => SpaceStation14.xml} (100%) diff --git a/Resources/Locale/en-US/prototypes/catalog/cargo/cargo-service.ftl b/Resources/Locale/en-US/prototypes/catalog/cargo/cargo-service.ftl index 3657bb0a75..1d36fcec71 100644 --- a/Resources/Locale/en-US/prototypes/catalog/cargo/cargo-service.ftl +++ b/Resources/Locale/en-US/prototypes/catalog/cargo/cargo-service.ftl @@ -21,3 +21,6 @@ ent-ServicePersonnel = { ent-CrateServicePersonnel } ent-ServiceBooks = { ent-CrateServiceBooks } .desc = { ent-CrateServiceBooks.desc } + +ent-ServiceGuidebooks = { ent-CrateServiceGuidebooks } + .desc = { ent-CrateServiceGuidebooks.desc } diff --git a/Resources/Locale/en-US/prototypes/catalog/fills/crates/service-crates.ftl b/Resources/Locale/en-US/prototypes/catalog/fills/crates/service-crates.ftl index 5c8cd86b03..4eba21b79b 100644 --- a/Resources/Locale/en-US/prototypes/catalog/fills/crates/service-crates.ftl +++ b/Resources/Locale/en-US/prototypes/catalog/fills/crates/service-crates.ftl @@ -22,6 +22,9 @@ ent-CrateServicePersonnel = Personnel crate ent-CrateServiceBooks = Books crate .desc = Contains 10 empty books of random appearance +ent-CrateServiceGuidebooks = Guidebooks crate + .desc = Contains guidebooks. + ent-CrateServiceBox = Boxes crate .desc = Contains 6 empty multipurpose boxes. diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_service.yml b/Resources/Prototypes/Catalog/Cargo/cargo_service.yml index 5e8d3efc05..c3674f5a27 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_service.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_service.yml @@ -88,6 +88,16 @@ category: Service group: market +- type: cargoProduct + id: ServiceGuidebooks + icon: + sprite: Objects/Misc/books.rsi + state: book_engineering2 + product: CrateServiceGuidebooks + cost: 1300 + category: Service + group: market + - type: cargoProduct id: ServiceBoxes icon: diff --git a/Resources/Prototypes/Catalog/Fills/Books/bookshelf.yml b/Resources/Prototypes/Catalog/Fills/Books/bookshelf.yml index fc876f6791..af363cf374 100644 --- a/Resources/Prototypes/Catalog/Fills/Books/bookshelf.yml +++ b/Resources/Prototypes/Catalog/Fills/Books/bookshelf.yml @@ -9,8 +9,6 @@ prob: 0.4 amount: 1 maxAmount: 4 - - id: BookChemicalCompendium - prob: 0.2 - id: BookNarsieLegend prob: 0.1 - id: BookTruth diff --git a/Resources/Prototypes/Catalog/Fills/Crates/service.yml b/Resources/Prototypes/Catalog/Fills/Crates/service.yml index d4d0206c36..87323512a8 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/service.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/service.yml @@ -121,6 +121,26 @@ - id: BookRandom amount: 10 +- type: entity + id: CrateServiceGuidebooks + parent: CrateGenericSteel + components: + - type: StorageFill + contents: + - id: BookSpaceEncyclopedia + - id: BookTheBookOfControl + - id: BookBartendersManual + - id: BookChefGaming + - id: BookLeafLoversSecret + - id: BookEngineersHandbook + - id: BookScientistsGuidebook + - id: BookSecurity + - id: BookHowToKeepStationClean + - id: BookHowToRockAndStone + - id: BookMedicalReferenceBook + - id: BookHowToSurvive + - id: BookChemicalCompendium + - type: entity id: CrateServiceBox parent: CratePlastic diff --git a/Resources/Prototypes/Entities/Objects/Misc/books.yml b/Resources/Prototypes/Entities/Objects/Misc/books.yml index 19a1a28e36..4a11186e61 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/books.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/books.yml @@ -26,6 +26,226 @@ backgroundPatchMargin: 23.0, 16.0, 14.0, 15.0 contentMargin: 20.0, 20.0, 20.0, 20.0 +- type: entity + id: BookSpaceEncyclopedia + parent: BaseItem + name: space encyclopedia + description: An encyclopedia containing all the knowledge. The author of this encyclopedia is unknown. + components: + - type: Sprite + sprite: Objects/Misc/books.rsi + layers: + - state: book0 # placeholder(?). if only we have a better sprite that fits this. + - type: Tag + tags: + - Book + - type: GuideHelp + openOnActivation: true + guides: + - SS14 + +- type: entity + id: BookTheBookOfControl + parent: BaseItem + name: the book of control + description: Essential to become robust. + components: + - type: Sprite + sprite: Objects/Misc/books.rsi + layers: + - state: book7 + - type: Tag + tags: + - Book + - type: GuideHelp + openOnActivation: true + guides: + - Controls + +- type: entity + id: BookBartendersManual + parent: BaseItem + name: bartender's manual + description: This manual is stained with beer. + components: + - type: Sprite + sprite: Objects/Misc/books.rsi + layers: + - state: book_bar + - type: Tag + tags: + - Book + - type: GuideHelp + openOnActivation: true + guides: + - Bartender + +- type: entity + id: BookChefGaming + parent: BaseItem + name: chef gaming + description: A book about cooking written by a gamer chef. + components: + - type: Sprite + sprite: Objects/Misc/books.rsi + layers: + - state: book_cooking + - type: Tag + tags: + - Book + - type: GuideHelp + openOnActivation: true + guides: + - Chef + +- type: entity + id: BookLeafLoversSecret + parent: BaseItem + name: leaf lover's secret + description: It has a strong weed smell. It motivates you to feed and seed. + components: + - type: Sprite + sprite: Objects/Misc/books.rsi + layers: + - state: book_hydroponics_pod_people + - type: Tag + tags: + - Book + - type: GuideHelp + openOnActivation: true + guides: + - Botany + +- type: entity + id: BookEngineersHandbook + parent: BaseItem + name: engineer's handbook + description: A handbook about engineering written by Nanotrasen. + components: + - type: Sprite + sprite: Objects/Misc/books.rsi + layers: + - state: book_engineering + - type: Tag + tags: + - Book + - type: GuideHelp + openOnActivation: true + guides: + - Engineering + +- type: entity + id: BookScientistsGuidebook + parent: BaseItem + name: scientist's guidebook + description: A guidebook about science written by Nanotrasen. + components: + - type: Sprite + sprite: Objects/Misc/books.rsi + layers: + - state: book0 # no science book sprite so this is a placeholder + - type: Tag + tags: + - Book + - type: GuideHelp + openOnActivation: true + guides: + - Science + +- type: entity + id: BookSecurity + parent: BaseItem + name: security 101 + description: A book about security written by Nanotrasen. The book is stained with blood. It seems to have been used more as a weapon than reading material. + components: + - type: Sprite + sprite: Objects/Misc/books.rsi + layers: + - state: book_detective # maybe a proper sprite is needed + - type: Tag + tags: + - Book + - type: MeleeWeapon + damage: + types: + Blunt: 6 + - type: GuideHelp + openOnActivation: true + guides: + - Security + +- type: entity + id: BookHowToKeepStationClean + parent: BaseItem + name: how to keep station clean + description: This book is very clean. + components: + - type: Sprite + sprite: Objects/Misc/books.rsi + layers: + - state: book0 # no janitorial book sprite so this is a placeholder + - type: Tag + tags: + - Book + - type: GuideHelp + openOnActivation: true + guides: + - Janitorial + +- type: entity + id: BookHowToRockAndStone + parent: BaseItem + name: how to rock and stone + description: A very detailed guide about salvage written by Karl, a legendary space miner, however he's missing. It motivates you to rock and stone. + components: + - type: Sprite + sprite: Objects/Misc/books.rsi + layers: + - state: book0 # no salvage book sprite so this is a placeholder + - type: Tag + tags: + - Book + - type: GuideHelp + openOnActivation: true + guides: + - Salvage + +- type: entity + id: BookMedicalReferenceBook + parent: BaseItem + name: medical reference book + description: A reference book about medical written by an old doctor. The handwriting is barely comprehensible. + components: + - type: Sprite + sprite: Objects/Misc/books.rsi + layers: + - state: book0 # no medical book sprite so this is a placeholder + - type: Tag + tags: + - Book + - type: GuideHelp + openOnActivation: true + guides: + - Medical + +- type: entity + id: BookHowToSurvive + parent: BaseItem + name: how to survive + description: Ironically the author of this book is dead. + components: + - type: Sprite + sprite: Objects/Misc/books.rsi + layers: + - state: book_engineering + - type: Tag + tags: + - Book + - type: GuideHelp + openOnActivation: true + guides: + - Survival + - type: entity id: BookChemicalCompendium parent: BaseItem diff --git a/Resources/Prototypes/Guidebook/botany.yml b/Resources/Prototypes/Guidebook/botany.yml index 2f654a81df..4e0e4e9956 100644 --- a/Resources/Prototypes/Guidebook/botany.yml +++ b/Resources/Prototypes/Guidebook/botany.yml @@ -1,4 +1,4 @@ - type: guideEntry id: Botany name: guide-entry-botany - text: "/ServerInfo/Guidebook/Botany.xml" + text: "/ServerInfo/Guidebook/Service/Botany.xml" diff --git a/Resources/Prototypes/Guidebook/engineering.yml b/Resources/Prototypes/Guidebook/engineering.yml index 69a9c60e2e..afa89c8e9e 100644 --- a/Resources/Prototypes/Guidebook/engineering.yml +++ b/Resources/Prototypes/Guidebook/engineering.yml @@ -1,7 +1,7 @@ - type: guideEntry id: Engineering name: guide-entry-engineering - text: "/ServerInfo/Guidebook/Engineering.xml" + text: "/ServerInfo/Guidebook/Engineering/Engineering.xml" children: - Atmospherics - Construction @@ -12,42 +12,42 @@ - type: guideEntry id: Construction name: guide-entry-construction - text: "/ServerInfo/Guidebook/Construction.xml" + text: "/ServerInfo/Guidebook/Engineering/Construction.xml" - type: guideEntry id: Atmospherics name: guide-entry-atmospherics - text: "/ServerInfo/Guidebook/Atmospherics.xml" + text: "/ServerInfo/Guidebook/Engineering/Atmospherics.xml" children: - Fires - type: guideEntry id: Fires name: guide-entry-fires - text: "/ServerInfo/Guidebook/Fires.xml" + text: "/ServerInfo/Guidebook/Engineering/Fires.xml" - type: guideEntry id: ShuttleCraft name: guide-entry-shuttle-craft - text: "/ServerInfo/Guidebook/Shuttlecraft.xml" + text: "/ServerInfo/Guidebook/Engineering/Shuttlecraft.xml" - type: guideEntry id: Networking name: guide-entry-networking - text: "/ServerInfo/Guidebook/Networking.xml" + text: "/ServerInfo/Guidebook/Engineering/Networking.xml" children: - NetworkConfigurator - type: guideEntry id: NetworkConfigurator name: guide-entry-network-configurator - text: "/ServerInfo/Guidebook/Network_Configurator.xml" + text: "/ServerInfo/Guidebook/Engineering/NetworkConfigurator.xml" - type: guideEntry id: Power name: guide-entry-power - text: "/ServerInfo/Guidebook/Power.xml" + text: "/ServerInfo/Guidebook/Engineering/Power.xml" children: - AME - Singularity @@ -55,9 +55,9 @@ - type: guideEntry id: AME name: guide-entry-ame - text: "/ServerInfo/Guidebook/AME.xml" + text: "/ServerInfo/Guidebook/Engineering/AME.xml" - type: guideEntry id: Singularity name: guide-entry-singularity - text: "/ServerInfo/Guidebook/Singularity.xml" + text: "/ServerInfo/Guidebook/Engineering/Singularity.xml" diff --git a/Resources/Prototypes/Guidebook/medical.yml b/Resources/Prototypes/Guidebook/medical.yml index a03b39c6b7..4215ba2ee4 100644 --- a/Resources/Prototypes/Guidebook/medical.yml +++ b/Resources/Prototypes/Guidebook/medical.yml @@ -11,7 +11,7 @@ - type: guideEntry id: Medical Doctor name: guide-entry-medicaldoctor - text: "/ServerInfo/Guidebook/Medical/Medical Doctor.xml" + text: "/ServerInfo/Guidebook/Medical/MedicalDoctor.xml" - type: guideEntry id: Cloning diff --git a/Resources/Prototypes/Guidebook/salvage.yml b/Resources/Prototypes/Guidebook/salvage.yml index 9fc00c47e4..a628ccf447 100644 --- a/Resources/Prototypes/Guidebook/salvage.yml +++ b/Resources/Prototypes/Guidebook/salvage.yml @@ -1,4 +1,4 @@ - type: guideEntry id: Salvage name: guide-entry-salvage - text: "/ServerInfo/Guidebook/Salvage.xml" + text: "/ServerInfo/Guidebook/Cargo/Salvage.xml" diff --git a/Resources/Prototypes/Guidebook/shiftandcrew.yml b/Resources/Prototypes/Guidebook/shiftandcrew.yml index 8a0a0763b4..e68f970346 100644 --- a/Resources/Prototypes/Guidebook/shiftandcrew.yml +++ b/Resources/Prototypes/Guidebook/shiftandcrew.yml @@ -26,21 +26,22 @@ - type: guideEntry id: Janitorial name: guide-entry-janitorial - text: "/ServerInfo/Guidebook/Janitorial.xml" + text: "/ServerInfo/Guidebook/Service/Janitorial.xml" - type: guideEntry id: Bartender name: guide-entry-bartender - text: "/ServerInfo/Guidebook/Bartender.xml" + text: "/ServerInfo/Guidebook/Service/Bartender.xml" - type: guideEntry id: Chef name: guide-entry-chef - text: "/ServerInfo/Guidebook/Chef.xml" + text: "/ServerInfo/Guidebook/Service/Chef.xml" children: - Food Recipes - type: guideEntry id: Food Recipes name: guide-entry-foodrecipes - text: "/ServerInfo/Guidebook/Food Recipes.xml" + text: "/ServerInfo/Guidebook/Service/FoodRecipes.xml" + diff --git a/Resources/Prototypes/Guidebook/ss14.yml b/Resources/Prototypes/Guidebook/ss14.yml index bcf474b773..55f597c584 100644 --- a/Resources/Prototypes/Guidebook/ss14.yml +++ b/Resources/Prototypes/Guidebook/ss14.yml @@ -1,7 +1,7 @@ - type: guideEntry id: SS14 name: guide-entry-ss14 - text: "/ServerInfo/Guidebook/Space Station 14.xml" + text: "/ServerInfo/Guidebook/SpaceStation14.xml" children: - Controls - Jobs diff --git a/Resources/ServerInfo/Guidebook/Salvage.xml b/Resources/ServerInfo/Guidebook/Cargo/Salvage.xml similarity index 100% rename from Resources/ServerInfo/Guidebook/Salvage.xml rename to Resources/ServerInfo/Guidebook/Cargo/Salvage.xml diff --git a/Resources/ServerInfo/Guidebook/AME.xml b/Resources/ServerInfo/Guidebook/Engineering/AME.xml similarity index 100% rename from Resources/ServerInfo/Guidebook/AME.xml rename to Resources/ServerInfo/Guidebook/Engineering/AME.xml diff --git a/Resources/ServerInfo/Guidebook/Atmospherics.xml b/Resources/ServerInfo/Guidebook/Engineering/Atmospherics.xml similarity index 100% rename from Resources/ServerInfo/Guidebook/Atmospherics.xml rename to Resources/ServerInfo/Guidebook/Engineering/Atmospherics.xml diff --git a/Resources/ServerInfo/Guidebook/Construction.xml b/Resources/ServerInfo/Guidebook/Engineering/Construction.xml similarity index 100% rename from Resources/ServerInfo/Guidebook/Construction.xml rename to Resources/ServerInfo/Guidebook/Engineering/Construction.xml diff --git a/Resources/ServerInfo/Guidebook/Engineering.xml b/Resources/ServerInfo/Guidebook/Engineering/Engineering.xml similarity index 100% rename from Resources/ServerInfo/Guidebook/Engineering.xml rename to Resources/ServerInfo/Guidebook/Engineering/Engineering.xml diff --git a/Resources/ServerInfo/Guidebook/Fires.xml b/Resources/ServerInfo/Guidebook/Engineering/Fires.xml similarity index 100% rename from Resources/ServerInfo/Guidebook/Fires.xml rename to Resources/ServerInfo/Guidebook/Engineering/Fires.xml diff --git a/Resources/ServerInfo/Guidebook/Network_Configurator.xml b/Resources/ServerInfo/Guidebook/Engineering/NetworkConfigurator.xml similarity index 100% rename from Resources/ServerInfo/Guidebook/Network_Configurator.xml rename to Resources/ServerInfo/Guidebook/Engineering/NetworkConfigurator.xml diff --git a/Resources/ServerInfo/Guidebook/Networking.xml b/Resources/ServerInfo/Guidebook/Engineering/Networking.xml similarity index 100% rename from Resources/ServerInfo/Guidebook/Networking.xml rename to Resources/ServerInfo/Guidebook/Engineering/Networking.xml diff --git a/Resources/ServerInfo/Guidebook/Power.xml b/Resources/ServerInfo/Guidebook/Engineering/Power.xml similarity index 100% rename from Resources/ServerInfo/Guidebook/Power.xml rename to Resources/ServerInfo/Guidebook/Engineering/Power.xml diff --git a/Resources/ServerInfo/Guidebook/Shuttlecraft.xml b/Resources/ServerInfo/Guidebook/Engineering/Shuttlecraft.xml similarity index 100% rename from Resources/ServerInfo/Guidebook/Shuttlecraft.xml rename to Resources/ServerInfo/Guidebook/Engineering/Shuttlecraft.xml diff --git a/Resources/ServerInfo/Guidebook/Singularity.xml b/Resources/ServerInfo/Guidebook/Engineering/Singularity.xml similarity index 100% rename from Resources/ServerInfo/Guidebook/Singularity.xml rename to Resources/ServerInfo/Guidebook/Engineering/Singularity.xml diff --git a/Resources/ServerInfo/Guidebook/Medical/Medical Doctor.xml b/Resources/ServerInfo/Guidebook/Medical/MedicalDoctor.xml similarity index 100% rename from Resources/ServerInfo/Guidebook/Medical/Medical Doctor.xml rename to Resources/ServerInfo/Guidebook/Medical/MedicalDoctor.xml diff --git a/Resources/ServerInfo/Guidebook/Bartender.xml b/Resources/ServerInfo/Guidebook/Service/Bartender.xml similarity index 100% rename from Resources/ServerInfo/Guidebook/Bartender.xml rename to Resources/ServerInfo/Guidebook/Service/Bartender.xml diff --git a/Resources/ServerInfo/Guidebook/Botany.xml b/Resources/ServerInfo/Guidebook/Service/Botany.xml similarity index 100% rename from Resources/ServerInfo/Guidebook/Botany.xml rename to Resources/ServerInfo/Guidebook/Service/Botany.xml diff --git a/Resources/ServerInfo/Guidebook/Chef.xml b/Resources/ServerInfo/Guidebook/Service/Chef.xml similarity index 100% rename from Resources/ServerInfo/Guidebook/Chef.xml rename to Resources/ServerInfo/Guidebook/Service/Chef.xml diff --git a/Resources/ServerInfo/Guidebook/Food Recipes.xml b/Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml similarity index 100% rename from Resources/ServerInfo/Guidebook/Food Recipes.xml rename to Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml diff --git a/Resources/ServerInfo/Guidebook/Janitorial.xml b/Resources/ServerInfo/Guidebook/Service/Janitorial.xml similarity index 100% rename from Resources/ServerInfo/Guidebook/Janitorial.xml rename to Resources/ServerInfo/Guidebook/Service/Janitorial.xml diff --git a/Resources/ServerInfo/Guidebook/Space Station 14.xml b/Resources/ServerInfo/Guidebook/SpaceStation14.xml similarity index 100% rename from Resources/ServerInfo/Guidebook/Space Station 14.xml rename to Resources/ServerInfo/Guidebook/SpaceStation14.xml From 59457faef4f335aa632c97325ff5d5de117a4865 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 14 Jun 2023 23:37:19 -0400 Subject: [PATCH 243/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index f48c1689ad..7efc38e274 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,10 +1,4 @@ Entries: -- author: ElectroJr - changes: - - {message: Eating and drinking interactions can once again be cancelled by using - the item a second time., type: Tweak} - id: 3504 - time: '2023-04-23T05:35:58.0000000+00:00' - author: EmoGarbage404 changes: - {message: 'Added the anomaly locator. When powered with a battery, it will beep @@ -2917,3 +2911,9 @@ Entries: track the position of the crew on the map.', type: Tweak} id: 4003 time: '2023-06-15T03:29:53.0000000+00:00' +- author: end + changes: + - {message: 'Librarians now can ask cargo to order guidebooks, in order to increase + the IQ of spessman.', type: Add} + id: 4004 + time: '2023-06-15T03:36:16.0000000+00:00' From f5837f36cf2407220af50b93f6c89d30a9d817a0 Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Thu, 15 Jun 2023 03:37:58 +0000 Subject: [PATCH 244/474] give shuttle airlocks a wire layout (#17318) Co-authored-by: deltanedas <@deltanedas:kde.org> --- .../Entities/Structures/Doors/Airlocks/external.yml | 2 -- .../Entities/Structures/Doors/Airlocks/shuttle.yml | 4 ++-- Resources/Prototypes/Wires/layouts.yml | 12 ++++++++++++ 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/external.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/external.yml index c6f39c1f63..233e020193 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/external.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/external.yml @@ -17,8 +17,6 @@ path: /Audio/Machines/airlock_deny.ogg - type: Sprite sprite: Structures/Doors/Airlocks/Standard/external.rsi - - type: Appearance - - type: WiresVisuals - type: PaintableAirlock group: External diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml index f5229c7bba..e6459f484a 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml @@ -1,8 +1,8 @@ - type: entity - id: AirlockShuttle parent: Airlock - name: external airlock + id: AirlockShuttle suffix: Docking + name: external airlock description: Necessary for connecting two space craft together. components: - type: Docking diff --git a/Resources/Prototypes/Wires/layouts.yml b/Resources/Prototypes/Wires/layouts.yml index be0bb14b93..a0e9fee955 100644 --- a/Resources/Prototypes/Wires/layouts.yml +++ b/Resources/Prototypes/Wires/layouts.yml @@ -84,3 +84,15 @@ - !type:ParticleAcceleratorLimiterWireAction - !type:ParticleAcceleratorPowerWireAction - !type:ParticleAcceleratorStrengthWireAction + +- type: wireLayout + id: Docking + dummyWires: 2 + wires: + - !type:PowerWireAction + - !type:PowerWireAction + pulseTimeout: 15 + - !type:DoorBoltWireAction + - !type:DoorBoltLightWireAction + - !type:DoorTimingWireAction + - !type:DoorSafetyWireAction From d1587e68e22e4ae580c8c878b81f2d6dafbb2bc7 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 14 Jun 2023 23:39:02 -0400 Subject: [PATCH 245/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 7efc38e274..cb3b656e6c 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,10 +1,4 @@ Entries: -- author: EmoGarbage404 - changes: - - {message: 'Added the anomaly locator. When powered with a battery, it will beep - as you approach anomalies. Happy hunting!', type: Add} - id: 3505 - time: '2023-04-23T05:39:33.0000000+00:00' - author: Nimfar changes: - {message: Adds 7 new animal masks., type: Add} @@ -2917,3 +2911,8 @@ Entries: the IQ of spessman.', type: Add} id: 4004 time: '2023-06-15T03:36:16.0000000+00:00' +- author: deltanedas + changes: + - {message: Shuttle airlocks now have wires and can be hacked., type: Tweak} + id: 4005 + time: '2023-06-15T03:37:58.0000000+00:00' From d0195fe2b565a31547eaff270484aaeb5003766b Mon Sep 17 00:00:00 2001 From: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> Date: Thu, 15 Jun 2023 01:16:00 -0400 Subject: [PATCH 246/474] fix bluespace syringe test fails (#17347) --- Resources/Prototypes/Entities/Objects/Specific/chemistry.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml index 610c26eac4..6c444fc459 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml @@ -297,6 +297,10 @@ - type: SolutionContainerVisuals maxFillLevels: 2 fillBaseName: syringe + - type: Tag + tags: + - Syringe + - Trash - type: entity name: pill From 34bdb773f9ee3c8117a3719fc6001f8b174206c1 Mon Sep 17 00:00:00 2001 From: Slava0135 <40753025+Slava0135@users.noreply.github.com> Date: Thu, 15 Jun 2023 09:45:50 +0300 Subject: [PATCH 247/474] Mass hallucinations event (#17321) * paracusia component auto comp state * it works * rule component config --- .../Components/MassHallucinationsComponent.cs | 11 ++++++ .../MassHallucinationsRuleComponent.cs | 26 +++++++++++++ .../Events/MassHallucinationsRule.cs | 39 +++++++++++++++++++ .../Traits/Assorted/ParacusiaSystem.cs | 30 ++++++++++++++ .../Traits/Assorted/ParacusiaComponent.cs | 30 ++++---------- .../Traits/Assorted/SharedParacusiaSystem.cs | 25 ------------ Resources/Prototypes/GameRules/events.yml | 16 ++++++++ 7 files changed, 130 insertions(+), 47 deletions(-) create mode 100644 Content.Server/StationEvents/Components/MassHallucinationsComponent.cs create mode 100644 Content.Server/StationEvents/Components/MassHallucinationsRuleComponent.cs create mode 100644 Content.Server/StationEvents/Events/MassHallucinationsRule.cs diff --git a/Content.Server/StationEvents/Components/MassHallucinationsComponent.cs b/Content.Server/StationEvents/Components/MassHallucinationsComponent.cs new file mode 100644 index 0000000000..d5522df80d --- /dev/null +++ b/Content.Server/StationEvents/Components/MassHallucinationsComponent.cs @@ -0,0 +1,11 @@ +using Content.Server.StationEvents.Events; + +namespace Content.Server.StationEvents.Components; + +///

+/// This is used to keep track of hallucinated entities to remove effects when event ends +/// +[RegisterComponent, Access(typeof(MassHallucinationsRule))] +public sealed class MassHallucinationsComponent : Component +{ +} diff --git a/Content.Server/StationEvents/Components/MassHallucinationsRuleComponent.cs b/Content.Server/StationEvents/Components/MassHallucinationsRuleComponent.cs new file mode 100644 index 0000000000..e16eb39d76 --- /dev/null +++ b/Content.Server/StationEvents/Components/MassHallucinationsRuleComponent.cs @@ -0,0 +1,26 @@ +using Content.Server.StationEvents.Events; +using Robust.Shared.Audio; + +namespace Content.Server.StationEvents.Components; + +[RegisterComponent, Access(typeof(MassHallucinationsRule))] +public sealed class MassHallucinationsRuleComponent : Component +{ + /// + /// The maximum time between incidents in seconds + /// + [DataField("maxTimeBetweenIncidents", required: true), ViewVariables(VVAccess.ReadWrite)] + public float MaxTimeBetweenIncidents; + + /// + /// The minimum time between incidents in seconds + /// + [DataField("minTimeBetweenIncidents", required: true), ViewVariables(VVAccess.ReadWrite)] + public float MinTimeBetweenIncidents; + + [DataField("maxSoundDistance", required: true), ViewVariables(VVAccess.ReadWrite)] + public float MaxSoundDistance; + + [DataField("sounds", required: true)] + public SoundSpecifier Sounds = default!; +} diff --git a/Content.Server/StationEvents/Events/MassHallucinationsRule.cs b/Content.Server/StationEvents/Events/MassHallucinationsRule.cs new file mode 100644 index 0000000000..1e561a3606 --- /dev/null +++ b/Content.Server/StationEvents/Events/MassHallucinationsRule.cs @@ -0,0 +1,39 @@ +using Content.Server.GameTicking.Rules.Components; +using Content.Server.Mind.Components; +using Content.Server.StationEvents.Components; +using Content.Server.Traits.Assorted; +using Content.Shared.Traits.Assorted; + +namespace Content.Server.StationEvents.Events; + +public sealed class MassHallucinationsRule : StationEventSystem +{ + [Dependency] private readonly ParacusiaSystem _paracusia = default!; + + protected override void Started(EntityUid uid, MassHallucinationsRuleComponent component, GameRuleComponent gameRule, GameRuleStartedEvent args) + { + base.Started(uid, component, gameRule, args); + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var ent, out _)) + { + if (!HasComp(ent)) + { + EnsureComp(ent); + var paracusia = EnsureComp(ent); + _paracusia.SetSounds(ent, component.Sounds, paracusia); + _paracusia.SetTime(ent, component.MinTimeBetweenIncidents, component.MaxTimeBetweenIncidents, paracusia); + _paracusia.SetDistance(ent, component.MaxSoundDistance); + } + } + } + + protected override void Ended(EntityUid uid, MassHallucinationsRuleComponent component, GameRuleComponent gameRule, GameRuleEndedEvent args) + { + base.Ended(uid, component, gameRule, args); + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var ent, out _)) + { + RemComp(ent); + } + } +} diff --git a/Content.Server/Traits/Assorted/ParacusiaSystem.cs b/Content.Server/Traits/Assorted/ParacusiaSystem.cs index 2008d170ab..4b0205ff53 100644 --- a/Content.Server/Traits/Assorted/ParacusiaSystem.cs +++ b/Content.Server/Traits/Assorted/ParacusiaSystem.cs @@ -1,8 +1,38 @@ using Content.Shared.Traits.Assorted; +using Robust.Shared.Audio; namespace Content.Server.Traits.Assorted; public sealed class ParacusiaSystem : SharedParacusiaSystem { + public void SetSounds(EntityUid uid, SoundSpecifier sounds, ParacusiaComponent? component = null) + { + if (!Resolve(uid, ref component)) + { + return; + } + component.Sounds = sounds; + Dirty(component); + } + public void SetTime(EntityUid uid, float minTime, float maxTime, ParacusiaComponent? component = null) + { + if (!Resolve(uid, ref component)) + { + return; + } + component.MinTimeBetweenIncidents = minTime; + component.MaxTimeBetweenIncidents = maxTime; + Dirty(component); + } + + public void SetDistance(EntityUid uid, float maxSoundDistance, ParacusiaComponent? component = null) + { + if (!Resolve(uid, ref component)) + { + return; + } + component.MaxSoundDistance = maxSoundDistance; + Dirty(component); + } } diff --git a/Content.Shared/Traits/Assorted/ParacusiaComponent.cs b/Content.Shared/Traits/Assorted/ParacusiaComponent.cs index ef86169a69..51a7471f1e 100644 --- a/Content.Shared/Traits/Assorted/ParacusiaComponent.cs +++ b/Content.Shared/Traits/Assorted/ParacusiaComponent.cs @@ -1,7 +1,5 @@ using Robust.Shared.Audio; using Robust.Shared.GameStates; -using System; -using Robust.Shared.Serialization; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; namespace Content.Shared.Traits.Assorted; @@ -10,31 +8,36 @@ namespace Content.Shared.Traits.Assorted; /// This component is used for paracusia, which causes auditory hallucinations. ///
[RegisterComponent, NetworkedComponent] +[AutoGenerateComponentState] [Access(typeof(SharedParacusiaSystem))] -public sealed class ParacusiaComponent : Component +public sealed partial class ParacusiaComponent : Component { /// /// The maximum time between incidents in seconds /// [DataField("maxTimeBetweenIncidents", required: true), ViewVariables(VVAccess.ReadWrite)] - public float MaxTimeBetweenIncidents = 30f; + [AutoNetworkedField] + public float MaxTimeBetweenIncidents = 60f; /// /// The minimum time between incidents in seconds /// [DataField("minTimeBetweenIncidents", required: true), ViewVariables(VVAccess.ReadWrite)] - public float MinTimeBetweenIncidents = 60f; + [AutoNetworkedField] + public float MinTimeBetweenIncidents = 30f; /// /// How far away at most can the sound be? /// [DataField("maxSoundDistance", required: true), ViewVariables(VVAccess.ReadWrite)] + [AutoNetworkedField] public float MaxSoundDistance; /// /// The sounds to choose from /// [DataField("sounds", required: true)] + [AutoNetworkedField] public SoundSpecifier Sounds = default!; [DataField("timeBetweenIncidents", customTypeSerializer: typeof(TimeOffsetSerializer)), ViewVariables(VVAccess.ReadWrite)] @@ -42,20 +45,3 @@ public sealed class ParacusiaComponent : Component public IPlayingAudioStream? Stream; } - -[Serializable, NetSerializable] -public sealed class ParacusiaComponentState : ComponentState -{ - public readonly float MaxTimeBetweenIncidents; - public readonly float MinTimeBetweenIncidents; - public readonly float MaxSoundDistance; - public readonly SoundSpecifier Sounds = default!; - - public ParacusiaComponentState(float maxTimeBetweenIncidents, float minTimeBetweenIncidents, float maxSoundDistance, SoundSpecifier sounds) - { - MaxTimeBetweenIncidents = maxTimeBetweenIncidents; - MinTimeBetweenIncidents = minTimeBetweenIncidents; - MaxSoundDistance = maxSoundDistance; - Sounds = sounds; - } -} diff --git a/Content.Shared/Traits/Assorted/SharedParacusiaSystem.cs b/Content.Shared/Traits/Assorted/SharedParacusiaSystem.cs index 6eb0f6b223..2bfb0da1f5 100644 --- a/Content.Shared/Traits/Assorted/SharedParacusiaSystem.cs +++ b/Content.Shared/Traits/Assorted/SharedParacusiaSystem.cs @@ -1,30 +1,5 @@ -using Content.Shared.GameTicking; -using Robust.Shared.GameStates; - namespace Content.Shared.Traits.Assorted; public abstract class SharedParacusiaSystem : EntitySystem { - public override void Initialize() - { - base.Initialize(); - SubscribeLocalEvent(GetCompState); - SubscribeLocalEvent(HandleCompState); - } - - private void GetCompState(EntityUid uid, ParacusiaComponent component, ref ComponentGetState args) - { - args.State = new ParacusiaComponentState(component.MaxTimeBetweenIncidents, component.MinTimeBetweenIncidents, component.MaxSoundDistance, component.Sounds); - } - - private void HandleCompState(EntityUid uid, ParacusiaComponent component, ref ComponentHandleState args) - { - if (args.Current is not ParacusiaComponentState state) - return; - - component.MaxTimeBetweenIncidents = state.MaxTimeBetweenIncidents; - component.MinTimeBetweenIncidents = state.MinTimeBetweenIncidents; - component.MaxSoundDistance = state.MaxSoundDistance; - component.Sounds = state.Sounds; - } } diff --git a/Resources/Prototypes/GameRules/events.yml b/Resources/Prototypes/GameRules/events.yml index 0df115ea3c..b781e8753a 100644 --- a/Resources/Prototypes/GameRules/events.yml +++ b/Resources/Prototypes/GameRules/events.yml @@ -316,3 +316,19 @@ reoccurrenceDelay: 25 duration: 1 - type: LoneOpsSpawnRule + +- type: entity + id: MassHallucinations + parent: BaseGameRule + noSpawn: true + components: + - type: StationEvent + weight: 10 + duration: 150 + maxDuration: 300 + - type: MassHallucinationsRule + minTimeBetweenIncidents: 0.1 + maxTimeBetweenIncidents: 300 + maxSoundDistance: 7 + sounds: + collection: Paracusia From b72ab3b00c9bf2a4d928a052914a4dd20804eee6 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 15 Jun 2023 02:46:54 -0400 Subject: [PATCH 248/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index cb3b656e6c..089335e346 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: Nimfar - changes: - - {message: Adds 7 new animal masks., type: Add} - id: 3506 - time: '2023-04-23T06:56:23.0000000+00:00' - author: Jackal298 changes: - {message: add salvage rig, type: Add} @@ -2916,3 +2911,9 @@ Entries: - {message: Shuttle airlocks now have wires and can be hacked., type: Tweak} id: 4005 time: '2023-06-15T03:37:58.0000000+00:00' +- author: Slava0135 + changes: + - {message: added mass hallucinations event that temporarily makes everyone on station + hear random sounds (paracusia), type: Add} + id: 4006 + time: '2023-06-15T06:45:51.0000000+00:00' From bc3f42d82249cc47d49bec97a23cade279ab5636 Mon Sep 17 00:00:00 2001 From: TemporalOroboros Date: Thu, 15 Jun 2023 04:25:25 -0700 Subject: [PATCH 249/474] ECS Arcade Machines (#16791) --- Content.Client/Arcade/BlockGameMenu.cs | 126 ++- .../Arcade/SpaceVillainArcadeMenu.cs | 43 +- .../Arcade/UI/BlockGameBoundUserInterface.cs | 124 ++- .../SpaceVillainArcadeBoundUserInterface.cs | 66 +- .../Arcade/ArcadeSystem.BlockGame.cs | 17 - .../Arcade/ArcadeSystem.SpaceVillain.cs | 17 - Content.Server/Arcade/ArcadeSystem.cs | 28 - .../Arcade/BlockGame/BlockGame.GameState.cs | 256 ++++++ .../Arcade/BlockGame/BlockGame.Pieces.cs | 238 +++++ .../Arcade/BlockGame/BlockGame.Ui.cs | 364 ++++++++ Content.Server/Arcade/BlockGame/BlockGame.cs | 303 ++++++ .../BlockGame/BlockGameArcadeComponent.cs | 22 + .../Arcade/BlockGame/BlockGameArcadeSystem.cs | 123 +++ .../Components/BlockGameArcadeComponent.cs | 867 ------------------ .../Components/SpaceVillainArcadeComponent.cs | 389 -------- .../SpaceVillainArcadeComponent.cs | 124 +++ .../SpaceVillainArcadeSystem.cs | 109 +++ .../SpaceVillainGame.Fighter.cs | 68 ++ .../SpaceVillainGame/SpaceVillainGame.Ui.cs | 53 ++ .../SpaceVillainGame/SpaceVillainGame.cs | 252 +++++ .../ArcadeInvincibilityWireActions.cs | 28 +- .../WireActions/ArcadeOverflowWireAction.cs | 4 +- Content.Shared/Arcade/BlockGameBlock.cs | 4 +- 23 files changed, 2110 insertions(+), 1515 deletions(-) delete mode 100644 Content.Server/Arcade/ArcadeSystem.BlockGame.cs delete mode 100644 Content.Server/Arcade/ArcadeSystem.SpaceVillain.cs create mode 100644 Content.Server/Arcade/BlockGame/BlockGame.GameState.cs create mode 100644 Content.Server/Arcade/BlockGame/BlockGame.Pieces.cs create mode 100644 Content.Server/Arcade/BlockGame/BlockGame.Ui.cs create mode 100644 Content.Server/Arcade/BlockGame/BlockGame.cs create mode 100644 Content.Server/Arcade/BlockGame/BlockGameArcadeComponent.cs create mode 100644 Content.Server/Arcade/BlockGame/BlockGameArcadeSystem.cs delete mode 100644 Content.Server/Arcade/Components/BlockGameArcadeComponent.cs delete mode 100644 Content.Server/Arcade/Components/SpaceVillainArcadeComponent.cs create mode 100644 Content.Server/Arcade/SpaceVillainGame/SpaceVillainArcadeComponent.cs create mode 100644 Content.Server/Arcade/SpaceVillainGame/SpaceVillainArcadeSystem.cs create mode 100644 Content.Server/Arcade/SpaceVillainGame/SpaceVillainGame.Fighter.cs create mode 100644 Content.Server/Arcade/SpaceVillainGame/SpaceVillainGame.Ui.cs create mode 100644 Content.Server/Arcade/SpaceVillainGame/SpaceVillainGame.cs diff --git a/Content.Client/Arcade/BlockGameMenu.cs b/Content.Client/Arcade/BlockGameMenu.cs index 5452d7c5d0..17f150c756 100644 --- a/Content.Client/Arcade/BlockGameMenu.cs +++ b/Content.Client/Arcade/BlockGameMenu.cs @@ -1,3 +1,4 @@ +using System; using System.Collections.Generic; using System.Linq; using System.Text; @@ -20,16 +21,16 @@ namespace Content.Client.Arcade { public sealed class BlockGameMenu : DefaultWindow { - private static readonly Color OverlayBackgroundColor = new(74,74,81,180); - private static readonly Color OverlayShadowColor = new(0,0,0,83); + private static readonly Color OverlayBackgroundColor = new(74, 74, 81, 180); + private static readonly Color OverlayShadowColor = new(0, 0, 0, 83); - private static readonly Vector2 BlockSize = new(15,15); + private static readonly Vector2 BlockSize = new(15, 15); private readonly BlockGameBoundUserInterface _owner; private readonly PanelContainer _mainPanel; - private BoxContainer _gameRootContainer; + private readonly BoxContainer _gameRootContainer; private GridContainer _gameGrid = default!; private GridContainer _nextBlockGrid = default!; private GridContainer _holdBlockGrid = default!; @@ -82,7 +83,7 @@ public BlockGameMenu(BlockGameBoundUserInterface owner) _gameRootContainer.AddChild(_levelLabel); _gameRootContainer.AddChild(new Control { - MinSize = new Vector2(1,5) + MinSize = new Vector2(1, 5) }); _pointsLabel = new Label @@ -93,7 +94,7 @@ public BlockGameMenu(BlockGameBoundUserInterface owner) _gameRootContainer.AddChild(_pointsLabel); _gameRootContainer.AddChild(new Control { - MinSize = new Vector2(1,10) + MinSize = new Vector2(1, 10) }); var gameBox = new BoxContainer @@ -103,12 +104,12 @@ public BlockGameMenu(BlockGameBoundUserInterface owner) gameBox.AddChild(SetupHoldBox(backgroundTexture)); gameBox.AddChild(new Control { - MinSize = new Vector2(10,1) + MinSize = new Vector2(10, 1) }); gameBox.AddChild(SetupGameGrid(backgroundTexture)); gameBox.AddChild(new Control { - MinSize = new Vector2(10,1) + MinSize = new Vector2(10, 1) }); gameBox.AddChild(SetupNextBox(backgroundTexture)); @@ -116,7 +117,7 @@ public BlockGameMenu(BlockGameBoundUserInterface owner) _gameRootContainer.AddChild(new Control { - MinSize = new Vector2(1,10) + MinSize = new Vector2(1, 10) }); _pauseButton = new Button @@ -176,7 +177,7 @@ public BlockGameMenu(BlockGameBoundUserInterface owner) _owner.SendAction(BlockGamePlayerAction.NewGame); }; pauseMenuContainer.AddChild(_newGameButton); - pauseMenuContainer.AddChild(new Control{MinSize = new Vector2(1,10)}); + pauseMenuContainer.AddChild(new Control { MinSize = new Vector2(1, 10) }); _scoreBoardButton = new Button { @@ -185,7 +186,7 @@ public BlockGameMenu(BlockGameBoundUserInterface owner) }; _scoreBoardButton.OnPressed += (e) => _owner.SendAction(BlockGamePlayerAction.ShowHighscores); pauseMenuContainer.AddChild(_scoreBoardButton); - _unpauseButtonMargin = new Control {MinSize = new Vector2(1, 10), Visible = false}; + _unpauseButtonMargin = new Control { MinSize = new Vector2(1, 10), Visible = false }; pauseMenuContainer.AddChild(_unpauseButtonMargin); _unpauseButton = new Button @@ -239,13 +240,13 @@ public BlockGameMenu(BlockGameBoundUserInterface owner) VerticalAlignment = VAlignment.Center }; - gameOverMenuContainer.AddChild(new Label{Text = Loc.GetString("blockgame-menu-msg-game-over"),Align = Label.AlignMode.Center}); - gameOverMenuContainer.AddChild(new Control{MinSize = new Vector2(1,10)}); + gameOverMenuContainer.AddChild(new Label { Text = Loc.GetString("blockgame-menu-msg-game-over"), Align = Label.AlignMode.Center }); + gameOverMenuContainer.AddChild(new Control { MinSize = new Vector2(1, 10) }); - _finalScoreLabel = new Label{Align = Label.AlignMode.Center}; + _finalScoreLabel = new Label { Align = Label.AlignMode.Center }; gameOverMenuContainer.AddChild(_finalScoreLabel); - gameOverMenuContainer.AddChild(new Control{MinSize = new Vector2(1,10)}); + gameOverMenuContainer.AddChild(new Control { MinSize = new Vector2(1, 10) }); _finalNewGameButton = new Button { @@ -275,7 +276,7 @@ public BlockGameMenu(BlockGameBoundUserInterface owner) HorizontalAlignment = HAlignment.Center }; - var c = new Color(OverlayBackgroundColor.R,OverlayBackgroundColor.G,OverlayBackgroundColor.B,220); + var c = new Color(OverlayBackgroundColor.R, OverlayBackgroundColor.G, OverlayBackgroundColor.B, 220); var innerBack = new StyleBoxTexture { Texture = backgroundTexture, @@ -298,8 +299,8 @@ public BlockGameMenu(BlockGameBoundUserInterface owner) VerticalAlignment = VAlignment.Center }; - menuContainer.AddChild(new Label{Text = Loc.GetString("blockgame-menu-label-highscores")}); - menuContainer.AddChild(new Control{MinSize = new Vector2(1,10)}); + menuContainer.AddChild(new Label { Text = Loc.GetString("blockgame-menu-label-highscores") }); + menuContainer.AddChild(new Control { MinSize = new Vector2(1, 10) }); var highScoreBox = new BoxContainer { @@ -311,14 +312,14 @@ public BlockGameMenu(BlockGameBoundUserInterface owner) Align = Label.AlignMode.Center }; highScoreBox.AddChild(_localHighscoresLabel); - highScoreBox.AddChild(new Control{MinSize = new Vector2(40,1)}); + highScoreBox.AddChild(new Control { MinSize = new Vector2(40, 1) }); _globalHighscoresLabel = new Label { Align = Label.AlignMode.Center }; highScoreBox.AddChild(_globalHighscoresLabel); menuContainer.AddChild(highScoreBox); - menuContainer.AddChild(new Control{MinSize = new Vector2(1,10)}); + menuContainer.AddChild(new Control { MinSize = new Vector2(1, 10) }); _highscoreBackButton = new Button { Text = Loc.GetString("blockgame-menu-button-back"), @@ -359,7 +360,7 @@ private Control SetupGameGrid(Texture panelTex) HSeparationOverride = 1, VSeparationOverride = 1 }; - UpdateBlocks(new BlockGameBlock[0]); + UpdateBlocks(Array.Empty()); var back = new StyleBoxTexture { @@ -376,7 +377,7 @@ private Control SetupGameGrid(Texture panelTex) }; var backgroundPanel = new PanelContainer { - PanelOverride = new StyleBoxFlat{BackgroundColor = Color.FromHex("#86868d")} + PanelOverride = new StyleBoxFlat { BackgroundColor = Color.FromHex("#86868d") } }; backgroundPanel.AddChild(_gameGrid); gamePanel.AddChild(backgroundPanel); @@ -416,7 +417,7 @@ private Control SetupNextBox(Texture panelTex) nextBlockPanel.AddChild(nextCenterContainer); grid.AddChild(nextBlockPanel); - grid.AddChild(new Label{Text = Loc.GetString("blockgame-menu-label-next"), Align = Label.AlignMode.Center}); + grid.AddChild(new Label { Text = Loc.GetString("blockgame-menu-label-next"), Align = Label.AlignMode.Center }); return grid; } @@ -454,15 +455,17 @@ private Control SetupHoldBox(Texture panelTex) holdBlockPanel.AddChild(holdCenterContainer); grid.AddChild(holdBlockPanel); - grid.AddChild(new Label{Text = Loc.GetString("blockgame-menu-label-hold"), Align = Label.AlignMode.Center}); + grid.AddChild(new Label { Text = Loc.GetString("blockgame-menu-label-hold"), Align = Label.AlignMode.Center }); return grid; } protected override void KeyboardFocusExited() { - if (!IsOpen) return; - if(_gameOver) return; + if (!IsOpen) + return; + if (_gameOver) + return; TryPause(); } @@ -480,7 +483,8 @@ public void SetStarted() public void SetScreen(BlockGameMessages.BlockGameScreen screen) { - if (_gameOver) return; + if (_gameOver) + return; switch (screen) { @@ -512,9 +516,12 @@ public void SetScreen(BlockGameMessages.BlockGameScreen screen) private void CloseMenus() { - if(_mainPanel.Children.Contains(_menuRootContainer)) _mainPanel.RemoveChild(_menuRootContainer); - if(_mainPanel.Children.Contains(_gameOverRootContainer)) _mainPanel.RemoveChild(_gameOverRootContainer); - if(_mainPanel.Children.Contains(_highscoresRootContainer)) _mainPanel.RemoveChild(_highscoresRootContainer); + if (_mainPanel.Children.Contains(_menuRootContainer)) + _mainPanel.RemoveChild(_menuRootContainer); + if (_mainPanel.Children.Contains(_gameOverRootContainer)) + _mainPanel.RemoveChild(_gameOverRootContainer); + if (_mainPanel.Children.Contains(_highscoresRootContainer)) + _mainPanel.RemoveChild(_highscoresRootContainer); } public void SetGameoverInfo(int amount, int? localPlacement, int? globalPlacement) @@ -563,72 +570,56 @@ protected override void KeyBindDown(GUIBoundKeyEventArgs args) { base.KeyBindDown(args); - if(!_isPlayer || args.Handled) return; + if (!_isPlayer || args.Handled) + return; - if (args.Function == ContentKeyFunctions.ArcadeLeft) - { + else if (args.Function == ContentKeyFunctions.ArcadeLeft) _owner.SendAction(BlockGamePlayerAction.StartLeft); - } else if (args.Function == ContentKeyFunctions.ArcadeRight) - { _owner.SendAction(BlockGamePlayerAction.StartRight); - } else if (args.Function == ContentKeyFunctions.ArcadeUp) - { _owner.SendAction(BlockGamePlayerAction.Rotate); - } else if (args.Function == ContentKeyFunctions.Arcade3) - { _owner.SendAction(BlockGamePlayerAction.CounterRotate); - } else if (args.Function == ContentKeyFunctions.ArcadeDown) - { _owner.SendAction(BlockGamePlayerAction.SoftdropStart); - } else if (args.Function == ContentKeyFunctions.Arcade2) - { _owner.SendAction(BlockGamePlayerAction.Hold); - } else if (args.Function == ContentKeyFunctions.Arcade1) - { _owner.SendAction(BlockGamePlayerAction.Harddrop); - } } protected override void KeyBindUp(GUIBoundKeyEventArgs args) { base.KeyBindUp(args); - if(!_isPlayer || args.Handled) return; + if (!_isPlayer || args.Handled) + return; - if (args.Function == ContentKeyFunctions.ArcadeLeft) - { + else if (args.Function == ContentKeyFunctions.ArcadeLeft) _owner.SendAction(BlockGamePlayerAction.EndLeft); - } else if (args.Function == ContentKeyFunctions.ArcadeRight) - { _owner.SendAction(BlockGamePlayerAction.EndRight); - }else if (args.Function == ContentKeyFunctions.ArcadeDown) - { + else if (args.Function == ContentKeyFunctions.ArcadeDown) _owner.SendAction(BlockGamePlayerAction.SoftdropEnd); - } } public void UpdateNextBlock(BlockGameBlock[] blocks) { _nextBlockGrid.RemoveAllChildren(); - if (blocks.Length == 0) return; + if (blocks.Length == 0) + return; var columnCount = blocks.Max(b => b.Position.X) + 1; var rowCount = blocks.Max(b => b.Position.Y) + 1; _nextBlockGrid.Columns = columnCount; - for (int y = 0; y < rowCount; y++) + for (var y = 0; y < rowCount; y++) { - for (int x = 0; x < columnCount; x++) + for (var x = 0; x < columnCount; x++) { var c = GetColorForPosition(blocks, x, y); _nextBlockGrid.AddChild(new PanelContainer { - PanelOverride = new StyleBoxFlat {BackgroundColor = c}, + PanelOverride = new StyleBoxFlat { BackgroundColor = c }, MinSize = BlockSize, RectDrawClipMargin = 0 }); @@ -639,18 +630,19 @@ public void UpdateNextBlock(BlockGameBlock[] blocks) public void UpdateHeldBlock(BlockGameBlock[] blocks) { _holdBlockGrid.RemoveAllChildren(); - if (blocks.Length == 0) return; + if (blocks.Length == 0) + return; var columnCount = blocks.Max(b => b.Position.X) + 1; var rowCount = blocks.Max(b => b.Position.Y) + 1; _holdBlockGrid.Columns = columnCount; - for (int y = 0; y < rowCount; y++) + for (var y = 0; y < rowCount; y++) { - for (int x = 0; x < columnCount; x++) + for (var x = 0; x < columnCount; x++) { var c = GetColorForPosition(blocks, x, y); _holdBlockGrid.AddChild(new PanelContainer { - PanelOverride = new StyleBoxFlat {BackgroundColor = c}, + PanelOverride = new StyleBoxFlat { BackgroundColor = c }, MinSize = BlockSize, RectDrawClipMargin = 0 }); @@ -661,14 +653,14 @@ public void UpdateHeldBlock(BlockGameBlock[] blocks) public void UpdateBlocks(BlockGameBlock[] blocks) { _gameGrid.RemoveAllChildren(); - for (int y = 0; y < 20; y++) + for (var y = 0; y < 20; y++) { - for (int x = 0; x < 10; x++) + for (var x = 0; x < 10; x++) { var c = GetColorForPosition(blocks, x, y); _gameGrid.AddChild(new PanelContainer { - PanelOverride = new StyleBoxFlat {BackgroundColor = c}, + PanelOverride = new StyleBoxFlat { BackgroundColor = c }, MinSize = BlockSize, RectDrawClipMargin = 0 }); @@ -676,9 +668,9 @@ public void UpdateBlocks(BlockGameBlock[] blocks) } } - private Color GetColorForPosition(BlockGameBlock[] blocks, int x, int y) + private static Color GetColorForPosition(BlockGameBlock[] blocks, int x, int y) { - Color c = Color.Transparent; + var c = Color.Transparent; var matchingBlock = blocks.FirstOrNull(b => b.Position.X == x && b.Position.Y == y); if (matchingBlock.HasValue) { diff --git a/Content.Client/Arcade/SpaceVillainArcadeMenu.cs b/Content.Client/Arcade/SpaceVillainArcadeMenu.cs index bbd7635459..4f07593b0e 100644 --- a/Content.Client/Arcade/SpaceVillainArcadeMenu.cs +++ b/Content.Client/Arcade/SpaceVillainArcadeMenu.cs @@ -24,40 +24,46 @@ public SpaceVillainArcadeMenu(SpaceVillainArcadeBoundUserInterface owner) Title = Loc.GetString("spacevillain-menu-title"); Owner = owner; - var grid = new GridContainer {Columns = 1}; + var grid = new GridContainer { Columns = 1 }; - var infoGrid = new GridContainer {Columns = 3}; - infoGrid.AddChild(new Label{ Text = Loc.GetString("spacevillain-menu-label-player"), Align = Label.AlignMode.Center }); - infoGrid.AddChild(new Label{ Text = "|", Align = Label.AlignMode.Center }); - _enemyNameLabel = new Label{ Align = Label.AlignMode.Center}; + var infoGrid = new GridContainer { Columns = 3 }; + infoGrid.AddChild(new Label { Text = Loc.GetString("spacevillain-menu-label-player"), Align = Label.AlignMode.Center }); + infoGrid.AddChild(new Label { Text = "|", Align = Label.AlignMode.Center }); + _enemyNameLabel = new Label { Align = Label.AlignMode.Center }; infoGrid.AddChild(_enemyNameLabel); - _playerInfoLabel = new Label {Align = Label.AlignMode.Center}; + _playerInfoLabel = new Label { Align = Label.AlignMode.Center }; infoGrid.AddChild(_playerInfoLabel); - infoGrid.AddChild(new Label{ Text = "|", Align = Label.AlignMode.Center }); - _enemyInfoLabel = new Label {Align = Label.AlignMode.Center}; + infoGrid.AddChild(new Label { Text = "|", Align = Label.AlignMode.Center }); + _enemyInfoLabel = new Label { Align = Label.AlignMode.Center }; infoGrid.AddChild(_enemyInfoLabel); var centerContainer = new CenterContainer(); centerContainer.AddChild(infoGrid); grid.AddChild(centerContainer); - _playerActionLabel = new Label {Align = Label.AlignMode.Center}; + _playerActionLabel = new Label { Align = Label.AlignMode.Center }; grid.AddChild(_playerActionLabel); - _enemyActionLabel = new Label {Align = Label.AlignMode.Center}; + _enemyActionLabel = new Label { Align = Label.AlignMode.Center }; grid.AddChild(_enemyActionLabel); - var buttonGrid = new GridContainer {Columns = 3}; + var buttonGrid = new GridContainer { Columns = 3 }; _gameButtons[0] = new ActionButton(Owner, SharedSpaceVillainArcadeComponent.PlayerAction.Attack) - {Text = Loc.GetString("spacevillain-menu-button-attack")}; + { + Text = Loc.GetString("spacevillain-menu-button-attack") + }; buttonGrid.AddChild(_gameButtons[0]); _gameButtons[1] = new ActionButton(Owner, SharedSpaceVillainArcadeComponent.PlayerAction.Heal) - {Text = Loc.GetString("spacevillain-menu-button-heal")}; + { + Text = Loc.GetString("spacevillain-menu-button-heal") + }; buttonGrid.AddChild(_gameButtons[1]); _gameButtons[2] = new ActionButton(Owner, SharedSpaceVillainArcadeComponent.PlayerAction.Recharge) - {Text = Loc.GetString("spacevillain-menu-button-recharge")}; + { + Text = Loc.GetString("spacevillain-menu-button-recharge") + }; buttonGrid.AddChild(_gameButtons[2]); centerContainer = new CenterContainer(); @@ -65,7 +71,9 @@ public SpaceVillainArcadeMenu(SpaceVillainArcadeBoundUserInterface owner) grid.AddChild(centerContainer); var newGame = new ActionButton(Owner, SharedSpaceVillainArcadeComponent.PlayerAction.NewGame) - {Text = Loc.GetString("spacevillain-menu-button-new-game")}; + { + Text = Loc.GetString("spacevillain-menu-button-new-game") + }; grid.AddChild(newGame); Contents.AddChild(grid); @@ -84,7 +92,8 @@ private void UpdateMetadata(SharedSpaceVillainArcadeComponent.SpaceVillainArcade public void UpdateInfo(SharedSpaceVillainArcadeComponent.SpaceVillainArcadeDataUpdateMessage message) { - if(message is SharedSpaceVillainArcadeComponent.SpaceVillainArcadeMetaDataUpdateMessage metaMessage) UpdateMetadata(metaMessage); + if (message is SharedSpaceVillainArcadeComponent.SpaceVillainArcadeMetaDataUpdateMessage metaMessage) + UpdateMetadata(metaMessage); _playerInfoLabel.Text = $"HP: {message.PlayerHP} MP: {message.PlayerMP}"; _enemyInfoLabel.Text = $"HP: {message.EnemyHP} MP: {message.EnemyMP}"; @@ -97,7 +106,7 @@ private sealed class ActionButton : Button private readonly SpaceVillainArcadeBoundUserInterface _owner; private readonly SharedSpaceVillainArcadeComponent.PlayerAction _playerAction; - public ActionButton(SpaceVillainArcadeBoundUserInterface owner,SharedSpaceVillainArcadeComponent.PlayerAction playerAction) + public ActionButton(SpaceVillainArcadeBoundUserInterface owner, SharedSpaceVillainArcadeComponent.PlayerAction playerAction) { _owner = owner; _playerAction = playerAction; diff --git a/Content.Client/Arcade/UI/BlockGameBoundUserInterface.cs b/Content.Client/Arcade/UI/BlockGameBoundUserInterface.cs index cd74077c12..2abe9311fb 100644 --- a/Content.Client/Arcade/UI/BlockGameBoundUserInterface.cs +++ b/Content.Client/Arcade/UI/BlockGameBoundUserInterface.cs @@ -1,78 +1,76 @@ using Content.Shared.Arcade; using Robust.Client.GameObjects; -using Robust.Shared.GameObjects; -namespace Content.Client.Arcade.UI +namespace Content.Client.Arcade.UI; + +public sealed class BlockGameBoundUserInterface : BoundUserInterface { - public sealed class BlockGameBoundUserInterface : BoundUserInterface - { - private BlockGameMenu? _menu; + private BlockGameMenu? _menu; - public BlockGameBoundUserInterface(ClientUserInterfaceComponent owner, Enum uiKey) : base(owner, uiKey) - { - } + public BlockGameBoundUserInterface(ClientUserInterfaceComponent owner, Enum uiKey) : base(owner, uiKey) + { + } - protected override void Open() - { - base.Open(); + protected override void Open() + { + base.Open(); - _menu = new BlockGameMenu(this); - _menu.OnClose += Close; - _menu.OpenCentered(); - } + _menu = new BlockGameMenu(this); + _menu.OnClose += Close; + _menu.OpenCentered(); + } - protected override void ReceiveMessage(BoundUserInterfaceMessage message) + protected override void ReceiveMessage(BoundUserInterfaceMessage message) + { + switch (message) { - switch (message) - { - case BlockGameMessages.BlockGameVisualUpdateMessage updateMessage: - switch (updateMessage.GameVisualType) - { - case BlockGameMessages.BlockGameVisualType.GameField: - _menu?.UpdateBlocks(updateMessage.Blocks); - break; - case BlockGameMessages.BlockGameVisualType.HoldBlock: - _menu?.UpdateHeldBlock(updateMessage.Blocks); - break; - case BlockGameMessages.BlockGameVisualType.NextBlock: - _menu?.UpdateNextBlock(updateMessage.Blocks); - break; - } - break; - case BlockGameMessages.BlockGameScoreUpdateMessage scoreUpdate: - _menu?.UpdatePoints(scoreUpdate.Points); - break; - case BlockGameMessages.BlockGameUserStatusMessage userMessage: - _menu?.SetUsability(userMessage.IsPlayer); - break; - case BlockGameMessages.BlockGameSetScreenMessage statusMessage: - if (statusMessage.IsStarted) _menu?.SetStarted(); - _menu?.SetScreen(statusMessage.Screen); - if (statusMessage is BlockGameMessages.BlockGameGameOverScreenMessage gameOverScreenMessage) - _menu?.SetGameoverInfo(gameOverScreenMessage.FinalScore, gameOverScreenMessage.LocalPlacement, gameOverScreenMessage.GlobalPlacement); - break; - case BlockGameMessages.BlockGameHighScoreUpdateMessage highScoreUpdateMessage: - _menu?.UpdateHighscores(highScoreUpdateMessage.LocalHighscores, - highScoreUpdateMessage.GlobalHighscores); - break; - case BlockGameMessages.BlockGameLevelUpdateMessage levelUpdateMessage: - _menu?.UpdateLevel(levelUpdateMessage.Level); - break; - } + case BlockGameMessages.BlockGameVisualUpdateMessage updateMessage: + switch (updateMessage.GameVisualType) + { + case BlockGameMessages.BlockGameVisualType.GameField: + _menu?.UpdateBlocks(updateMessage.Blocks); + break; + case BlockGameMessages.BlockGameVisualType.HoldBlock: + _menu?.UpdateHeldBlock(updateMessage.Blocks); + break; + case BlockGameMessages.BlockGameVisualType.NextBlock: + _menu?.UpdateNextBlock(updateMessage.Blocks); + break; + } + break; + case BlockGameMessages.BlockGameScoreUpdateMessage scoreUpdate: + _menu?.UpdatePoints(scoreUpdate.Points); + break; + case BlockGameMessages.BlockGameUserStatusMessage userMessage: + _menu?.SetUsability(userMessage.IsPlayer); + break; + case BlockGameMessages.BlockGameSetScreenMessage statusMessage: + if (statusMessage.IsStarted) _menu?.SetStarted(); + _menu?.SetScreen(statusMessage.Screen); + if (statusMessage is BlockGameMessages.BlockGameGameOverScreenMessage gameOverScreenMessage) + _menu?.SetGameoverInfo(gameOverScreenMessage.FinalScore, gameOverScreenMessage.LocalPlacement, gameOverScreenMessage.GlobalPlacement); + break; + case BlockGameMessages.BlockGameHighScoreUpdateMessage highScoreUpdateMessage: + _menu?.UpdateHighscores(highScoreUpdateMessage.LocalHighscores, + highScoreUpdateMessage.GlobalHighscores); + break; + case BlockGameMessages.BlockGameLevelUpdateMessage levelUpdateMessage: + _menu?.UpdateLevel(levelUpdateMessage.Level); + break; } + } - public void SendAction(BlockGamePlayerAction action) - { - SendMessage(new BlockGameMessages.BlockGamePlayerActionMessage(action)); - } + public void SendAction(BlockGamePlayerAction action) + { + SendMessage(new BlockGameMessages.BlockGamePlayerActionMessage(action)); + } - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) - return; + protected override void Dispose(bool disposing) + { + base.Dispose(disposing); + if (!disposing) + return; - _menu?.Dispose(); - } + _menu?.Dispose(); } } diff --git a/Content.Client/Arcade/UI/SpaceVillainArcadeBoundUserInterface.cs b/Content.Client/Arcade/UI/SpaceVillainArcadeBoundUserInterface.cs index bb1582d127..2ecc8b46a8 100644 --- a/Content.Client/Arcade/UI/SpaceVillainArcadeBoundUserInterface.cs +++ b/Content.Client/Arcade/UI/SpaceVillainArcadeBoundUserInterface.cs @@ -3,51 +3,45 @@ using Robust.Shared.ViewVariables; using static Content.Shared.Arcade.SharedSpaceVillainArcadeComponent; -namespace Content.Client.Arcade.UI -{ - public sealed class SpaceVillainArcadeBoundUserInterface : BoundUserInterface - { - [ViewVariables] private SpaceVillainArcadeMenu? _menu; +namespace Content.Client.Arcade.UI; - //public SharedSpaceVillainArcadeComponent SpaceVillainArcade; - - public SpaceVillainArcadeBoundUserInterface(ClientUserInterfaceComponent owner, Enum uiKey) : base(owner, uiKey) - { - SendAction(PlayerAction.RequestData); - } +public sealed class SpaceVillainArcadeBoundUserInterface : BoundUserInterface +{ + [ViewVariables] private SpaceVillainArcadeMenu? _menu; - public void SendAction(PlayerAction action) - { - SendMessage(new SpaceVillainArcadePlayerActionMessage(action)); - } + //public SharedSpaceVillainArcadeComponent SpaceVillainArcade; - protected override void Open() - { - base.Open(); + public SpaceVillainArcadeBoundUserInterface(ClientUserInterfaceComponent owner, Enum uiKey) : base(owner, uiKey) + { + SendAction(PlayerAction.RequestData); + } - /*if(!Owner.Owner.TryGetComponent(out SharedSpaceVillainArcadeComponent spaceVillainArcade)) - { - return; - } + public void SendAction(PlayerAction action) + { + SendMessage(new SpaceVillainArcadePlayerActionMessage(action)); + } - SpaceVillainArcade = spaceVillainArcade;*/ + protected override void Open() + { + base.Open(); - _menu = new SpaceVillainArcadeMenu(this); + _menu = new SpaceVillainArcadeMenu(this); - _menu.OnClose += Close; - _menu.OpenCentered(); - } + _menu.OnClose += Close; + _menu.OpenCentered(); + } - protected override void ReceiveMessage(BoundUserInterfaceMessage message) - { - if (message is SpaceVillainArcadeDataUpdateMessage msg) _menu?.UpdateInfo(msg); - } + protected override void ReceiveMessage(BoundUserInterfaceMessage message) + { + if (message is SpaceVillainArcadeDataUpdateMessage msg) + _menu?.UpdateInfo(msg); + } - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); + protected override void Dispose(bool disposing) + { + base.Dispose(disposing); - if (disposing) _menu?.Dispose(); - } + if (disposing) + _menu?.Dispose(); } } diff --git a/Content.Server/Arcade/ArcadeSystem.BlockGame.cs b/Content.Server/Arcade/ArcadeSystem.BlockGame.cs deleted file mode 100644 index 72f416df69..0000000000 --- a/Content.Server/Arcade/ArcadeSystem.BlockGame.cs +++ /dev/null @@ -1,17 +0,0 @@ -using Content.Server.Arcade.Components; -using Content.Server.Power.Components; - -namespace Content.Server.Arcade; - -public sealed partial class ArcadeSystem -{ - private void InitializeBlockGame() - { - SubscribeLocalEvent(OnBlockPowerChanged); - } - - private static void OnBlockPowerChanged(EntityUid uid, BlockGameArcadeComponent component, ref PowerChangedEvent args) - { - component.OnPowerStateChanged(args); - } -} diff --git a/Content.Server/Arcade/ArcadeSystem.SpaceVillain.cs b/Content.Server/Arcade/ArcadeSystem.SpaceVillain.cs deleted file mode 100644 index a223d24655..0000000000 --- a/Content.Server/Arcade/ArcadeSystem.SpaceVillain.cs +++ /dev/null @@ -1,17 +0,0 @@ -using Content.Server.Arcade.Components; -using Content.Server.Power.Components; - -namespace Content.Server.Arcade; - -public sealed partial class ArcadeSystem -{ - private void InitializeSpaceVillain() - { - SubscribeLocalEvent(OnSVillainPower); - } - - private void OnSVillainPower(EntityUid uid, SpaceVillainArcadeComponent component, ref PowerChangedEvent args) - { - component.OnPowerStateChanged(args); - } -} diff --git a/Content.Server/Arcade/ArcadeSystem.cs b/Content.Server/Arcade/ArcadeSystem.cs index 679f35bdfb..d5013c9966 100644 --- a/Content.Server/Arcade/ArcadeSystem.cs +++ b/Content.Server/Arcade/ArcadeSystem.cs @@ -1,5 +1,4 @@ using System.Linq; -using Content.Server.Arcade.Components; using Content.Server.UserInterface; using Content.Shared.Arcade; using Robust.Shared.Utility; @@ -17,25 +16,6 @@ public sealed partial class ArcadeSystem : EntitySystem public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnAfterUIOpen); - SubscribeLocalEvent(OnAfterUIOpenSV); - SubscribeLocalEvent((_,c,args) => c.UnRegisterPlayerSession((IPlayerSession)args.Session)); - InitializeBlockGame(); - InitializeSpaceVillain(); - } - - private void OnAfterUIOpen(EntityUid uid, BlockGameArcadeComponent component, AfterActivatableUIOpenEvent args) - { - var actor = Comp(args.User); - if (component.UserInterface?.SessionHasOpen(actor.PlayerSession) == true) - { - component.RegisterPlayerSession(actor.PlayerSession); - } - } - - private void OnAfterUIOpenSV(EntityUid uid, SpaceVillainArcadeComponent component, AfterActivatableUIOpenEvent args) - { - component.Game ??= new SpaceVillainArcadeComponent.SpaceVillainGame(component); } public HighScorePlacement RegisterHighScore(string name, int score) @@ -87,14 +67,6 @@ public HighScorePlacement RegisterHighScore(string name, int score) return placement; } - public override void Update(float frameTime) - { - foreach (var comp in EntityManager.EntityQuery()) - { - comp.DoGameTick(frameTime); - } - } - public readonly struct HighScorePlacement { public readonly int? GlobalPlacement; diff --git a/Content.Server/Arcade/BlockGame/BlockGame.GameState.cs b/Content.Server/Arcade/BlockGame/BlockGame.GameState.cs new file mode 100644 index 0000000000..f99d0cd685 --- /dev/null +++ b/Content.Server/Arcade/BlockGame/BlockGame.GameState.cs @@ -0,0 +1,256 @@ +using Content.Shared.Arcade; +using Robust.Shared.Random; +using System.Linq; + +namespace Content.Server.Arcade.BlockGame; + +public sealed partial class BlockGame +{ + // note: field is 10(0 -> 9) wide and 20(0 -> 19) high + + /// + /// Whether the given position is above the bottom of the playfield. + /// + private bool LowerBoundCheck(Vector2i position) + { + return position.Y < 20; + } + + /// + /// Whether the given position is horizontally positioned within the playfield. + /// + private bool BorderCheck(Vector2i position) + { + return position.X >= 0 && position.X < 10; + } + + /// + /// Whether the given position is currently occupied by a piece. + /// Yes this is on O(n) collision check, it works well enough. + /// + private bool ClearCheck(Vector2i position) + { + return _field.All(block => !position.Equals(block.Position)); + } + + /// + /// Whether a block can be dropped into the given position. + /// + private bool DropCheck(Vector2i position) + { + return LowerBoundCheck(position) && ClearCheck(position); + } + + /// + /// Whether a block can be moved horizontally into the given position. + /// + private bool MoveCheck(Vector2i position) + { + return BorderCheck(position) && ClearCheck(position); + } + + /// + /// Whether a block can be rotated into the given position. + /// + private bool RotateCheck(Vector2i position) + { + return BorderCheck(position) && LowerBoundCheck(position) && ClearCheck(position); + } + + /// + /// The set of blocks that have landed in the field. + /// + private readonly List _field = new(); + + /// + /// The current pool of pickable pieces. + /// Refreshed when a piece is requested while empty. + /// Ensures that the player is given an even spread of pieces by making picked pieces unpickable until the rest are picked. + /// + private List _blockGamePiecesBuffer = new(); + + /// + /// Gets a random piece from the pool of pickable pieces. () + /// + private BlockGamePiece GetRandomBlockGamePiece(IRobustRandom random) + { + if (_blockGamePiecesBuffer.Count == 0) + { + _blockGamePiecesBuffer = _allBlockGamePieces.ToList(); + } + + var chosenPiece = random.Pick(_blockGamePiecesBuffer); + _blockGamePiecesBuffer.Remove(chosenPiece); + return BlockGamePiece.GetPiece(chosenPiece); + } + + /// + /// The piece that is currently falling and controllable by the player. + /// + private BlockGamePiece CurrentPiece + { + get => _internalCurrentPiece; + set + { + _internalCurrentPiece = value; + UpdateFieldUI(); + } + } + private BlockGamePiece _internalCurrentPiece = default!; + + + /// + /// The position of the falling piece. + /// + private Vector2i _currentPiecePosition; + + /// + /// The rotation of the falling piece. + /// + private BlockGamePieceRotation _currentRotation; + + /// + /// The amount of time (in seconds) between piece steps. + /// Decreased by a constant amount per level. + /// Decreased heavily by soft dropping the current piece (holding down). + /// + private float Speed => Math.Max(0.03f, (_softDropPressed ? SoftDropModifier : 1f) - 0.03f * Level); + + /// + /// The base amount of time between piece steps while softdropping. + /// + private const float SoftDropModifier = 0.1f; + + + /// + /// Attempts to rotate the falling piece to a new rotation. + /// + private void TrySetRotation(BlockGamePieceRotation rotation) + { + if (!_running) + return; + + if (!CurrentPiece.CanSpin) + return; + + if (!CurrentPiece.Positions(_currentPiecePosition, rotation) + .All(RotateCheck)) + return; + + _currentRotation = rotation; + UpdateFieldUI(); + } + + + /// + /// The next piece that will be dispensed. + /// + private BlockGamePiece NextPiece + { + get => _internalNextPiece; + set + { + _internalNextPiece = value; + SendNextPieceUpdate(); + } + } + private BlockGamePiece _internalNextPiece = default!; + + + /// + /// The piece the player has chosen to hold in reserve. + /// + private BlockGamePiece? HeldPiece + { + get => _internalHeldPiece; + set + { + _internalHeldPiece = value; + SendHoldPieceUpdate(); + } + } + private BlockGamePiece? _internalHeldPiece = null; + + /// + /// Prevents the player from holding the currently falling piece if true. + /// Set true when a piece is held and set false when a new piece is created. + /// Exists to prevent the player from swapping between two pieces forever and never actually letting the block fall. + /// + private bool _holdBlock = false; + + /// + /// The number of lines that have been cleared in the current level. + /// Automatically advances the game to the next level if enough lines are cleared. + /// + private int ClearedLines + { + get => _clearedLines; + set + { + _clearedLines = value; + + if (_clearedLines < LevelRequirement) + return; + + _clearedLines -= LevelRequirement; + Level++; + } + } + private int _clearedLines = 0; + + /// + /// The number of lines that must be cleared to advance to the next level. + /// + private int LevelRequirement => Math.Min(100, Math.Max(Level * 10 - 50, 10)); + + + /// + /// The current level of the game. + /// Effects the movement speed of the active piece. + /// + private int Level + { + get => _internalLevel; + set + { + if (_internalLevel == value) + return; + _internalLevel = value; + SendLevelUpdate(); + } + } + private int _internalLevel = 0; + + + /// + /// The total number of points accumulated in the current game. + /// + private int Points + { + get => _internalPoints; + set + { + if (_internalPoints == value) + return; + _internalPoints = value; + SendPointsUpdate(); + } + } + private int _internalPoints = 0; + + /// + /// Setter for the setter for the number of points accumulated in the current game. + /// + private void AddPoints(int amount) + { + if (amount == 0) + return; + + Points += amount; + } + + /// + /// Where the current game has placed amongst the leaderboard. + /// + private ArcadeSystem.HighScorePlacement? _highScorePlacement = null; +} diff --git a/Content.Server/Arcade/BlockGame/BlockGame.Pieces.cs b/Content.Server/Arcade/BlockGame/BlockGame.Pieces.cs new file mode 100644 index 0000000000..bf42fa34a4 --- /dev/null +++ b/Content.Server/Arcade/BlockGame/BlockGame.Pieces.cs @@ -0,0 +1,238 @@ +using Content.Shared.Arcade; +using System.Linq; + +namespace Content.Server.Arcade.BlockGame; + +public sealed partial class BlockGame +{ + /// + /// The set of types of game pieces that exist. + /// Used as templates when creating pieces for the game. + /// + private readonly BlockGamePieceType[] _allBlockGamePieces; + + /// + /// The set of types of game pieces that exist. + /// Used to generate the templates used when creating pieces for the game. + /// + private enum BlockGamePieceType + { + I, + L, + LInverted, + S, + SInverted, + T, + O + } + + /// + /// The set of possible rotations for the game pieces. + /// + private enum BlockGamePieceRotation + { + North, + East, + South, + West + } + + /// + /// A static extension for the rotations that allows rotating through the possible rotations. + /// + private static BlockGamePieceRotation Next(BlockGamePieceRotation rotation, bool inverted) + { + return rotation switch + { + BlockGamePieceRotation.North => inverted ? BlockGamePieceRotation.West : BlockGamePieceRotation.East, + BlockGamePieceRotation.East => inverted ? BlockGamePieceRotation.North : BlockGamePieceRotation.South, + BlockGamePieceRotation.South => inverted ? BlockGamePieceRotation.East : BlockGamePieceRotation.West, + BlockGamePieceRotation.West => inverted ? BlockGamePieceRotation.South : BlockGamePieceRotation.North, + _ => throw new ArgumentOutOfRangeException(nameof(rotation), rotation, null) + }; + } + + /// + /// A static extension for the rotations that allows rotating through the possible rotations. + /// + private struct BlockGamePiece + { + /// + /// Where all of the blocks that make up this piece are located relative to the origin of the piece. + /// + public Vector2i[] Offsets; + + /// + /// The color of all of the blocks that make up this piece. + /// + private BlockGameBlock.BlockGameBlockColor _gameBlockColor; + + /// + /// Whether or not the block should be able to rotate about its origin. + /// + public bool CanSpin; + + /// + /// Generates a list of the positions of each block comprising this game piece in worldspace. + /// + /// The position of the game piece in worldspace. + /// The rotation of the game piece in worldspace. + public readonly Vector2i[] Positions(Vector2i center, BlockGamePieceRotation rotation) + { + return RotatedOffsets(rotation).Select(v => center + v).ToArray(); + } + + /// + /// Gets the relative position of each block comprising this piece given a rotation. + /// + /// The rotation to be applied to the local position of the blocks in this piece. + private readonly Vector2i[] RotatedOffsets(BlockGamePieceRotation rotation) + { + var rotatedOffsets = (Vector2i[]) Offsets.Clone(); + //until i find a better algo + var amount = rotation switch + { + BlockGamePieceRotation.North => 0, + BlockGamePieceRotation.East => 1, + BlockGamePieceRotation.South => 2, + BlockGamePieceRotation.West => 3, + _ => 0 + }; + + for (var i = 0; i < amount; i++) + { + for (var j = 0; j < rotatedOffsets.Length; j++) + { + rotatedOffsets[j] = rotatedOffsets[j].Rotate90DegreesAsOffset(); + } + } + + return rotatedOffsets; + } + + /// + /// Gets a list of all of the blocks comprising this piece in worldspace. + /// + /// The position of the game piece in worldspace. + /// The rotation of the game piece in worldspace. + public readonly BlockGameBlock[] Blocks(Vector2i center, BlockGamePieceRotation rotation) + { + var positions = Positions(center, rotation); + var result = new BlockGameBlock[positions.Length]; + var i = 0; + foreach (var position in positions) + { + result[i++] = position.ToBlockGameBlock(_gameBlockColor); + } + + return result; + } + + /// + /// Gets a list of all of the blocks comprising this piece in worldspace. + /// Used to generate the held piece/next piece preview images. + /// + public readonly BlockGameBlock[] BlocksForPreview() + { + var xOffset = 0; + var yOffset = 0; + foreach (var offset in Offsets) + { + if (offset.X < xOffset) + xOffset = offset.X; + if (offset.Y < yOffset) + yOffset = offset.Y; + } + + return Blocks(new Vector2i(-xOffset, -yOffset), BlockGamePieceRotation.North); + } + + /// + /// Generates a game piece for a given type of game piece. + /// See for the available options. + /// + /// The type of game piece to generate. + public static BlockGamePiece GetPiece(BlockGamePieceType type) + { + //switch statement, hardcoded offsets + return type switch + { + BlockGamePieceType.I => new BlockGamePiece + { + Offsets = new[] + { + new Vector2i(0, -1), new Vector2i(0, 0), new Vector2i(0, 1), new Vector2i(0, 2), + }, + _gameBlockColor = BlockGameBlock.BlockGameBlockColor.LightBlue, + CanSpin = true + }, + BlockGamePieceType.L => new BlockGamePiece + { + Offsets = new[] + { + new Vector2i(0, -1), new Vector2i(0, 0), new Vector2i(0, 1), new Vector2i(1, 1), + }, + _gameBlockColor = BlockGameBlock.BlockGameBlockColor.Orange, + CanSpin = true + }, + BlockGamePieceType.LInverted => new BlockGamePiece + { + Offsets = new[] + { + new Vector2i(0, -1), new Vector2i(0, 0), new Vector2i(-1, 1), + new Vector2i(0, 1), + }, + _gameBlockColor = BlockGameBlock.BlockGameBlockColor.Blue, + CanSpin = true + }, + BlockGamePieceType.S => new BlockGamePiece + { + Offsets = new[] + { + new Vector2i(0, -1), new Vector2i(1, -1), new Vector2i(-1, 0), + new Vector2i(0, 0), + }, + _gameBlockColor = BlockGameBlock.BlockGameBlockColor.Green, + CanSpin = true + }, + BlockGamePieceType.SInverted => new BlockGamePiece + { + Offsets = new[] + { + new Vector2i(-1, -1), new Vector2i(0, -1), new Vector2i(0, 0), + new Vector2i(1, 0), + }, + _gameBlockColor = BlockGameBlock.BlockGameBlockColor.Red, + CanSpin = true + }, + BlockGamePieceType.T => new BlockGamePiece + { + Offsets = new[] + { + new Vector2i(0, -1), + new Vector2i(-1, 0), new Vector2i(0, 0), new Vector2i(1, 0), + }, + _gameBlockColor = BlockGameBlock.BlockGameBlockColor.Purple, + CanSpin = true + }, + BlockGamePieceType.O => new BlockGamePiece + { + Offsets = new[] + { + new Vector2i(0, -1), new Vector2i(1, -1), new Vector2i(0, 0), + new Vector2i(1, 0), + }, + _gameBlockColor = BlockGameBlock.BlockGameBlockColor.Yellow, + CanSpin = false + }, + _ => new BlockGamePiece + { + Offsets = new[] + { + new Vector2i(0, 0) + } + }, + }; + } + } +} diff --git a/Content.Server/Arcade/BlockGame/BlockGame.Ui.cs b/Content.Server/Arcade/BlockGame/BlockGame.Ui.cs new file mode 100644 index 0000000000..92a96ea226 --- /dev/null +++ b/Content.Server/Arcade/BlockGame/BlockGame.Ui.cs @@ -0,0 +1,364 @@ +using Content.Shared.Arcade; +using Robust.Server.Player; +using System.Linq; + +namespace Content.Server.Arcade.BlockGame; + +public sealed partial class BlockGame +{ + /// + /// How often to check the currently pressed inputs for whether to move the active piece horizontally. + /// + private const float PressCheckSpeed = 0.08f; + + /// + /// Whether the left button is pressed. + /// Moves the active piece left if true. + /// + private bool _leftPressed = false; + + /// + /// How long the left button has been pressed. + /// + private float _accumulatedLeftPressTime = 0f; + + /// + /// Whether the right button is pressed. + /// Moves the active piece right if true. + /// + private bool _rightPressed = false; + + /// + /// How long the right button has been pressed. + /// + private float _accumulatedRightPressTime = 0f; + + /// + /// Whether the down button is pressed. + /// Speeds up how quickly the active piece falls if true. + /// + private bool _softDropPressed = false; + + + /// + /// Handles user input. + /// + /// The action to current player has prompted. + public void ProcessInput(BlockGamePlayerAction action) + { + if (_running) + { + switch (action) + { + case BlockGamePlayerAction.StartLeft: + _leftPressed = true; + break; + case BlockGamePlayerAction.StartRight: + _rightPressed = true; + break; + case BlockGamePlayerAction.Rotate: + TrySetRotation(Next(_currentRotation, false)); + break; + case BlockGamePlayerAction.CounterRotate: + TrySetRotation(Next(_currentRotation, true)); + break; + case BlockGamePlayerAction.SoftdropStart: + _softDropPressed = true; + if (_accumulatedFieldFrameTime > Speed) + _accumulatedFieldFrameTime = Speed; //to prevent jumps + break; + case BlockGamePlayerAction.Harddrop: + PerformHarddrop(); + break; + case BlockGamePlayerAction.Hold: + HoldPiece(); + break; + } + } + + switch (action) + { + case BlockGamePlayerAction.EndLeft: + _leftPressed = false; + break; + case BlockGamePlayerAction.EndRight: + _rightPressed = false; + break; + case BlockGamePlayerAction.SoftdropEnd: + _softDropPressed = false; + break; + case BlockGamePlayerAction.Pause: + _running = false; + SendMessage(new BlockGameMessages.BlockGameSetScreenMessage(BlockGameMessages.BlockGameScreen.Pause, Started)); + break; + case BlockGamePlayerAction.Unpause: + if (!_gameOver && Started) + { + _running = true; + SendMessage(new BlockGameMessages.BlockGameSetScreenMessage(BlockGameMessages.BlockGameScreen.Game)); + } + break; + case BlockGamePlayerAction.ShowHighscores: + _running = false; + SendMessage(new BlockGameMessages.BlockGameSetScreenMessage(BlockGameMessages.BlockGameScreen.Highscores, Started)); + break; + } + } + + /// + /// Handle moving the active game piece in response to user input. + /// + /// The amount of time the current game tick covers. + private void InputTick(float frameTime) + { + var anythingChanged = false; + if (_leftPressed) + { + _accumulatedLeftPressTime += frameTime; + + while (_accumulatedLeftPressTime >= PressCheckSpeed) + { + + if (CurrentPiece.Positions(_currentPiecePosition.AddToX(-1), _currentRotation) + .All(MoveCheck)) + { + _currentPiecePosition = _currentPiecePosition.AddToX(-1); + anythingChanged = true; + } + + _accumulatedLeftPressTime -= PressCheckSpeed; + } + } + + if (_rightPressed) + { + _accumulatedRightPressTime += frameTime; + + while (_accumulatedRightPressTime >= PressCheckSpeed) + { + if (CurrentPiece.Positions(_currentPiecePosition.AddToX(1), _currentRotation) + .All(MoveCheck)) + { + _currentPiecePosition = _currentPiecePosition.AddToX(1); + anythingChanged = true; + } + + _accumulatedRightPressTime -= PressCheckSpeed; + } + } + + if (anythingChanged) + UpdateFieldUI(); + } + + /// + /// Handles sending a message to all players/spectators. + /// + /// The message to broadcase to all players/spectators. + private void SendMessage(BoundUserInterfaceMessage message) + { + if (_uiSystem.TryGetUi(_owner, BlockGameUiKey.Key, out var bui)) + _uiSystem.SendUiMessage(bui, message); + } + + /// + /// Handles sending a message to a specific player/spectator. + /// + /// The message to send to a specific player/spectator. + /// The target recipient. + private void SendMessage(BoundUserInterfaceMessage message, IPlayerSession session) + { + if (_uiSystem.TryGetUi(_owner, BlockGameUiKey.Key, out var bui)) + _uiSystem.TrySendUiMessage(bui, message, session); + } + + /// + /// Handles sending the current state of the game to a player that has just opened the UI. + /// + /// The target recipient. + public void UpdateNewPlayerUI(IPlayerSession session) + { + if (_gameOver) + { + SendMessage(new BlockGameMessages.BlockGameGameOverScreenMessage(Points, _highScorePlacement?.LocalPlacement, _highScorePlacement?.GlobalPlacement), session); + return; + } + + if (Paused) + SendMessage(new BlockGameMessages.BlockGameSetScreenMessage(BlockGameMessages.BlockGameScreen.Pause, Started), session); + else + SendMessage(new BlockGameMessages.BlockGameSetScreenMessage(BlockGameMessages.BlockGameScreen.Game, Started), session); + + FullUpdate(session); + } + + /// + /// Handles broadcasting the full player-visible game state to everyone who can see the game. + /// + private void FullUpdate() + { + UpdateFieldUI(); + SendHoldPieceUpdate(); + SendNextPieceUpdate(); + SendLevelUpdate(); + SendPointsUpdate(); + SendHighscoreUpdate(); + } + + /// + /// Handles broadcasting the full player-visible game state to a specific player/spectator. + /// + /// The target recipient. + private void FullUpdate(IPlayerSession session) + { + UpdateFieldUI(session); + SendNextPieceUpdate(session); + SendHoldPieceUpdate(session); + SendLevelUpdate(session); + SendPointsUpdate(session); + SendHighscoreUpdate(session); + } + + /// + /// Handles broadcasting the current location of all of the blocks in the playfield + the active piece to all spectators. + /// + public void UpdateFieldUI() + { + if (!Started) + return; + + var computedField = ComputeField(); + SendMessage(new BlockGameMessages.BlockGameVisualUpdateMessage(computedField.ToArray(), BlockGameMessages.BlockGameVisualType.GameField)); + } + + /// + /// Handles broadcasting the current location of all of the blocks in the playfield + the active piece to a specific player/spectator. + /// + /// The target recipient. + public void UpdateFieldUI(IPlayerSession session) + { + if (!Started) + return; + + var computedField = ComputeField(); + SendMessage(new BlockGameMessages.BlockGameVisualUpdateMessage(computedField.ToArray(), BlockGameMessages.BlockGameVisualType.GameField), session); + } + + /// + /// Generates the set of blocks to send to viewers. + /// + public List ComputeField() + { + var result = new List(); + result.AddRange(_field); + result.AddRange(CurrentPiece.Blocks(_currentPiecePosition, _currentRotation)); + + var dropGhostPosition = _currentPiecePosition; + while (CurrentPiece.Positions(dropGhostPosition.AddToY(1), _currentRotation) + .All(DropCheck)) + { + dropGhostPosition = dropGhostPosition.AddToY(1); + } + + if (dropGhostPosition != _currentPiecePosition) + { + var blox = CurrentPiece.Blocks(dropGhostPosition, _currentRotation); + for (var i = 0; i < blox.Length; i++) + { + result.Add(new BlockGameBlock(blox[i].Position, BlockGameBlock.ToGhostBlockColor(blox[i].GameBlockColor))); + } + } + return result; + } + + /// + /// Broadcasts the state of the next queued piece to all viewers. + /// + private void SendNextPieceUpdate() + { + SendMessage(new BlockGameMessages.BlockGameVisualUpdateMessage(NextPiece.BlocksForPreview(), BlockGameMessages.BlockGameVisualType.NextBlock)); + } + + /// + /// Broadcasts the state of the next queued piece to a specific viewer. + /// + /// The target recipient. + private void SendNextPieceUpdate(IPlayerSession session) + { + SendMessage(new BlockGameMessages.BlockGameVisualUpdateMessage(NextPiece.BlocksForPreview(), BlockGameMessages.BlockGameVisualType.NextBlock), session); + } + + /// + /// Broadcasts the state of the currently held piece to all viewers. + /// + private void SendHoldPieceUpdate() + { + if (HeldPiece.HasValue) + SendMessage(new BlockGameMessages.BlockGameVisualUpdateMessage(HeldPiece.Value.BlocksForPreview(), BlockGameMessages.BlockGameVisualType.HoldBlock)); + else + SendMessage(new BlockGameMessages.BlockGameVisualUpdateMessage(Array.Empty(), BlockGameMessages.BlockGameVisualType.HoldBlock)); + } + + /// + /// Broadcasts the state of the currently held piece to a specific viewer. + /// + /// The target recipient. + private void SendHoldPieceUpdate(IPlayerSession session) + { + if (HeldPiece.HasValue) + SendMessage(new BlockGameMessages.BlockGameVisualUpdateMessage(HeldPiece.Value.BlocksForPreview(), BlockGameMessages.BlockGameVisualType.HoldBlock), session); + else + SendMessage(new BlockGameMessages.BlockGameVisualUpdateMessage(Array.Empty(), BlockGameMessages.BlockGameVisualType.HoldBlock), session); + } + + /// + /// Broadcasts the current game level to all viewers. + /// + private void SendLevelUpdate() + { + SendMessage(new BlockGameMessages.BlockGameLevelUpdateMessage(Level)); + } + + /// + /// Broadcasts the current game level to a specific viewer. + /// + /// The target recipient. + private void SendLevelUpdate(IPlayerSession session) + { + SendMessage(new BlockGameMessages.BlockGameLevelUpdateMessage(Level), session); + } + + /// + /// Broadcasts the current game score to all viewers. + /// + private void SendPointsUpdate() + { + SendMessage(new BlockGameMessages.BlockGameScoreUpdateMessage(Points)); + } + + /// + /// Broadcasts the current game score to a specific viewer. + /// + /// The target recipient. + private void SendPointsUpdate(IPlayerSession session) + { + SendMessage(new BlockGameMessages.BlockGameScoreUpdateMessage(Points), session); + } + + /// + /// Broadcasts the current game high score positions to all viewers. + /// + private void SendHighscoreUpdate() + { + SendMessage(new BlockGameMessages.BlockGameHighScoreUpdateMessage(_arcadeSystem.GetLocalHighscores(), _arcadeSystem.GetGlobalHighscores())); + } + + /// + /// Broadcasts the current game high score positions to a specific viewer. + /// + /// The target recipient. + private void SendHighscoreUpdate(IPlayerSession session) + { + SendMessage(new BlockGameMessages.BlockGameHighScoreUpdateMessage(_arcadeSystem.GetLocalHighscores(), _arcadeSystem.GetGlobalHighscores()), session); + } +} diff --git a/Content.Server/Arcade/BlockGame/BlockGame.cs b/Content.Server/Arcade/BlockGame/BlockGame.cs new file mode 100644 index 0000000000..3af1828d56 --- /dev/null +++ b/Content.Server/Arcade/BlockGame/BlockGame.cs @@ -0,0 +1,303 @@ +using Content.Shared.Arcade; +using Robust.Server.GameObjects; +using Robust.Shared.Random; +using System.Linq; + +namespace Content.Server.Arcade.BlockGame; + +public sealed partial class BlockGame +{ + [Dependency] private readonly IEntityManager _entityManager = default!; + [Dependency] private readonly IRobustRandom _random = default!; + private readonly ArcadeSystem _arcadeSystem = default!; + private readonly UserInterfaceSystem _uiSystem = default!; + + /// + /// What entity is currently hosting this game of NT-BG. + /// + private readonly EntityUid _owner = default!; + + /// + /// Whether the game has been started. + /// + public bool Started { get; private set; } = false; + + /// + /// Whether the game is currently running (not paused). + /// + private bool _running = false; + + /// + /// Whether the game should not currently be running. + /// + private bool Paused => !(Started && _running); + + /// + /// Whether the game has finished. + /// + private bool _gameOver = false; + + /// + /// Whether the game should have finished given the current game state. + /// + private bool IsGameOver => _field.Any(block => block.Position.Y == 0); + + + public BlockGame(EntityUid owner) + { + IoCManager.InjectDependencies(this); + _arcadeSystem = _entityManager.System(); + _uiSystem = _entityManager.System(); + + _owner = owner; + _allBlockGamePieces = (BlockGamePieceType[]) Enum.GetValues(typeof(BlockGamePieceType)); + _internalNextPiece = GetRandomBlockGamePiece(_random); + InitializeNewBlock(); + } + + /// + /// Starts the game. Including relaying this info to everyone watching. + /// + public void StartGame() + { + SendMessage(new BlockGameMessages.BlockGameSetScreenMessage(BlockGameMessages.BlockGameScreen.Game)); + + FullUpdate(); + + Started = true; + _running = true; + _gameOver = false; + } + + /// + /// Handles ending the game and updating the high scores. + /// + private void InvokeGameover() + { + _running = false; + _gameOver = true; + + if (_entityManager.TryGetComponent(_owner, out var cabinet) + && _entityManager.TryGetComponent(cabinet.Player?.AttachedEntity, out var meta)) + { + _highScorePlacement = _arcadeSystem.RegisterHighScore(meta.EntityName, Points); + SendHighscoreUpdate(); + } + SendMessage(new BlockGameMessages.BlockGameGameOverScreenMessage(Points, _highScorePlacement?.LocalPlacement, _highScorePlacement?.GlobalPlacement)); + } + + /// + /// Handle the game simulation and user input. + /// + /// The amount of time the current game tick covers. + public void GameTick(float frameTime) + { + if (!_running) + return; + + InputTick(frameTime); + + FieldTick(frameTime); + } + + /// + /// The amount of time that has passed since the active piece last moved vertically, + /// + private float _accumulatedFieldFrameTime; + + /// + /// Handles timing the movements of the active game piece. + /// + /// The amount of time the current game tick covers. + private void FieldTick(float frameTime) + { + _accumulatedFieldFrameTime += frameTime; + + // Speed goes negative sometimes. uhhhh max() it I guess!!! + var checkTime = Math.Max(0.03f, Speed); + + while (_accumulatedFieldFrameTime >= checkTime) + { + if (_softDropPressed) + AddPoints(1); + + InternalFieldTick(); + + _accumulatedFieldFrameTime -= checkTime; + } + } + + /// + /// Handles the active game piece moving down. + /// Also triggers scanning for cleared lines. + /// + private void InternalFieldTick() + { + if (CurrentPiece.Positions(_currentPiecePosition.AddToY(1), _currentRotation) + .All(DropCheck)) + { + _currentPiecePosition = _currentPiecePosition.AddToY(1); + } + else + { + var blocks = CurrentPiece.Blocks(_currentPiecePosition, _currentRotation); + _field.AddRange(blocks); + + //check loose conditions + if (IsGameOver) + { + InvokeGameover(); + return; + } + + InitializeNewBlock(); + } + + CheckField(); + + UpdateFieldUI(); + } + + /// + /// Handles scanning for cleared lines and accumulating points. + /// + private void CheckField() + { + var pointsToAdd = 0; + var consecutiveLines = 0; + var clearedLines = 0; + for (var y = 0; y < 20; y++) + { + if (CheckLine(y)) + { + //line was cleared + y--; + consecutiveLines++; + clearedLines++; + } + else if (consecutiveLines != 0) + { + var mod = consecutiveLines switch + { + 1 => 40, + 2 => 100, + 3 => 300, + 4 => 1200, + _ => 0 + }; + pointsToAdd += mod * (Level + 1); + } + } + + ClearedLines += clearedLines; + AddPoints(pointsToAdd); + } + + /// + /// Returns whether the line at the given position is full. + /// Clears the line if it was full and moves the above lines down. + /// + /// The position of the line to check. + private bool CheckLine(int y) + { + for (var x = 0; x < 10; x++) + { + if (!_field.Any(b => b.Position.X == x && b.Position.Y == y)) + return false; + } + + //clear line + _field.RemoveAll(b => b.Position.Y == y); + //move everything down + FillLine(y); + + return true; + } + + /// + /// Moves all of the lines above the given line down by one. + /// Used to fill in cleared lines. + /// + /// The position of the line above which to drop the lines. + private void FillLine(int y) + { + for (var c_y = y; c_y > 0; c_y--) + { + for (var j = 0; j < _field.Count; j++) + { + if (_field[j].Position.Y != c_y - 1) + continue; + + _field[j] = new BlockGameBlock(_field[j].Position.AddToY(1), _field[j].GameBlockColor); + } + } + } + + /// + /// Generates a new active piece from the previewed next piece. + /// Repopulates the previewed next piece with a piece from the pool of possible next pieces. + /// + private void InitializeNewBlock() + { + InitializeNewBlock(NextPiece); + NextPiece = GetRandomBlockGamePiece(_random); + _holdBlock = false; + + SendMessage(new BlockGameMessages.BlockGameVisualUpdateMessage(NextPiece.BlocksForPreview(), BlockGameMessages.BlockGameVisualType.NextBlock)); + } + + /// + /// Generates a new active piece from the previewed next piece. + /// + /// The piece to set as the active piece. + private void InitializeNewBlock(BlockGamePiece piece) + { + _currentPiecePosition = new Vector2i(5, 0); + + _currentRotation = BlockGamePieceRotation.North; + + CurrentPiece = piece; + UpdateFieldUI(); + } + + /// + /// Buffers the currently active piece. + /// Replaces the active piece with either the previously held piece or the previewed next piece as necessary. + /// + private void HoldPiece() + { + if (!_running) + return; + if (_holdBlock) + return; + + var tempHeld = HeldPiece; + HeldPiece = CurrentPiece; + _holdBlock = true; + + if (!tempHeld.HasValue) + { + InitializeNewBlock(); + return; + } + + InitializeNewBlock(tempHeld.Value); + } + + /// + /// Immediately drops the currently active piece the remaining distance. + /// + private void PerformHarddrop() + { + var spacesDropped = 0; + while (CurrentPiece.Positions(_currentPiecePosition.AddToY(1), _currentRotation) + .All(DropCheck)) + { + _currentPiecePosition = _currentPiecePosition.AddToY(1); + spacesDropped++; + } + AddPoints(spacesDropped * 2); + + InternalFieldTick(); + } +} diff --git a/Content.Server/Arcade/BlockGame/BlockGameArcadeComponent.cs b/Content.Server/Arcade/BlockGame/BlockGameArcadeComponent.cs new file mode 100644 index 0000000000..8f168dd8d5 --- /dev/null +++ b/Content.Server/Arcade/BlockGame/BlockGameArcadeComponent.cs @@ -0,0 +1,22 @@ +using Robust.Server.Player; + +namespace Content.Server.Arcade.BlockGame; + +[RegisterComponent] +public sealed class BlockGameArcadeComponent : Component +{ + /// + /// The currently active session of NT-BG. + /// + public BlockGame? Game = null; + + /// + /// The player currently playing the active session of NT-BG. + /// + public IPlayerSession? Player = null; + + /// + /// The players currently viewing (but not playing) the active session of NT-BG. + /// + public readonly List Spectators = new(); +} diff --git a/Content.Server/Arcade/BlockGame/BlockGameArcadeSystem.cs b/Content.Server/Arcade/BlockGame/BlockGameArcadeSystem.cs new file mode 100644 index 0000000000..06390a4245 --- /dev/null +++ b/Content.Server/Arcade/BlockGame/BlockGameArcadeSystem.cs @@ -0,0 +1,123 @@ +using Content.Server.Power.Components; +using Content.Server.UserInterface; +using Content.Shared.Arcade; +using Robust.Server.GameObjects; +using Robust.Server.Player; + +namespace Content.Server.Arcade.BlockGame; + +public sealed class BlockGameArcadeSystem : EntitySystem +{ + [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnComponentInit); + SubscribeLocalEvent(OnAfterUIOpen); + SubscribeLocalEvent(OnAfterUiClose); + SubscribeLocalEvent(OnBlockPowerChanged); + SubscribeLocalEvent(OnPlayerAction); + } + + public override void Update(float frameTime) + { + var query = EntityManager.EntityQueryEnumerator(); + while (query.MoveNext(out var _, out var blockGame)) + { + blockGame.Game?.GameTick(frameTime); + } + } + + private void UpdatePlayerStatus(EntityUid uid, IPlayerSession session, BoundUserInterface? bui = null, BlockGameArcadeComponent? blockGame = null) + { + if (!Resolve(uid, ref blockGame)) + return; + if (bui == null && !_uiSystem.TryGetUi(uid, BlockGameUiKey.Key, out bui)) + return; + + _uiSystem.TrySendUiMessage(bui, new BlockGameMessages.BlockGameUserStatusMessage(blockGame.Player == session), session); + } + + private void OnComponentInit(EntityUid uid, BlockGameArcadeComponent component, ComponentInit args) + { + component.Game = new(uid); + } + + private void OnAfterUIOpen(EntityUid uid, BlockGameArcadeComponent component, AfterActivatableUIOpenEvent args) + { + if (!TryComp(args.User, out var actor)) + return; + if (!_uiSystem.TryGetUi(uid, BlockGameUiKey.Key, out var bui)) + return; + + var session = actor.PlayerSession; + if (!bui.SubscribedSessions.Contains(session)) + return; + + if (component.Player == null) + component.Player = session; + else + component.Spectators.Add(session); + + UpdatePlayerStatus(uid, session, bui, component); + component.Game?.UpdateNewPlayerUI(session); + } + + private void OnAfterUiClose(EntityUid uid, BlockGameArcadeComponent component, BoundUIClosedEvent args) + { + if (args.Session is not IPlayerSession session) + return; + + if (component.Player != session) + { + component.Spectators.Remove(session); + UpdatePlayerStatus(uid, session, blockGame: component); + return; + } + + var temp = component.Player; + if (component.Spectators.Count > 0) + { + component.Player = component.Spectators[0]; + component.Spectators.Remove(component.Player); + UpdatePlayerStatus(uid, component.Player, blockGame: component); + } + else + component.Player = null; + + UpdatePlayerStatus(uid, temp, blockGame: component); + } + + private void OnBlockPowerChanged(EntityUid uid, BlockGameArcadeComponent component, ref PowerChangedEvent args) + { + if (args.Powered) + return; + + if (_uiSystem.TryGetUi(uid, BlockGameUiKey.Key, out var bui)) + _uiSystem.CloseAll(bui); + component.Player = null; + component.Spectators.Clear(); + } + + private void OnPlayerAction(EntityUid uid, BlockGameArcadeComponent component, BlockGameMessages.BlockGamePlayerActionMessage msg) + { + if (component.Game == null) + return; + if (!BlockGameUiKey.Key.Equals(msg.UiKey)) + return; + if (msg.Session != component.Player) + return; + + if (msg.PlayerAction == BlockGamePlayerAction.NewGame) + { + if (component.Game.Started == true) + component.Game = new(uid); + component.Game.StartGame(); + return; + } + + component.Game.ProcessInput(msg.PlayerAction); + } +} diff --git a/Content.Server/Arcade/Components/BlockGameArcadeComponent.cs b/Content.Server/Arcade/Components/BlockGameArcadeComponent.cs deleted file mode 100644 index 924b5709ca..0000000000 --- a/Content.Server/Arcade/Components/BlockGameArcadeComponent.cs +++ /dev/null @@ -1,867 +0,0 @@ -using System.Linq; -using Content.Server.Power.Components; -using Content.Server.UserInterface; -using Content.Shared.Arcade; -using Robust.Server.GameObjects; -using Robust.Server.Player; -using Robust.Shared.Random; - -namespace Content.Server.Arcade.Components -{ - [RegisterComponent] - public sealed class BlockGameArcadeComponent : Component - { - [Dependency] private readonly IRobustRandom _random = default!; - [Dependency] private readonly IEntityManager _entityManager = default!; - - public bool Powered => _entityManager.TryGetComponent(Owner, out var powerReceiverComponent) && powerReceiverComponent.Powered; - public BoundUserInterface? UserInterface => Owner.GetUIOrNull(BlockGameUiKey.Key); - - private BlockGame? _game; - - private IPlayerSession? _player; - private readonly List _spectators = new(); - - public void RegisterPlayerSession(IPlayerSession session) - { - if (_player == null) _player = session; - else _spectators.Add(session); - - UpdatePlayerStatus(session); - _game?.UpdateNewPlayerUI(session); - } - - private void DeactivePlayer(IPlayerSession session) - { - if (_player != session) return; - - var temp = _player; - _player = null; - if (_spectators.Count != 0) - { - _player = _spectators[0]; - _spectators.Remove(_player); - UpdatePlayerStatus(_player); - } - _spectators.Add(temp); - - UpdatePlayerStatus(temp); - } - - public void UnRegisterPlayerSession(IPlayerSession session) - { - if (_player == session) - { - DeactivePlayer(_player); - } - else - { - _spectators.Remove(session); - UpdatePlayerStatus(session); - } - } - - private void UpdatePlayerStatus(IPlayerSession session) - { - UserInterface?.SendMessage(new BlockGameMessages.BlockGameUserStatusMessage(_player == session), session); - } - - protected override void Initialize() - { - base.Initialize(); - if (UserInterface != null) - { - UserInterface.OnReceiveMessage += UserInterfaceOnOnReceiveMessage; - } - _game = new BlockGame(this); - } - - public void OnPowerStateChanged(PowerChangedEvent e) - { - if (e.Powered) return; - - UserInterface?.CloseAll(); - _player = null; - _spectators.Clear(); - } - - private void UserInterfaceOnOnReceiveMessage(ServerBoundUserInterfaceMessage obj) - { - switch (obj.Message) - { - case BlockGameMessages.BlockGamePlayerActionMessage playerActionMessage: - if (obj.Session != _player) break; - - if (playerActionMessage.PlayerAction == BlockGamePlayerAction.NewGame) - { - if(_game?.Started == true) _game = new BlockGame(this); - _game?.StartGame(); - } - else - { - _game?.ProcessInput(playerActionMessage.PlayerAction); - } - - break; - } - } - - public void DoGameTick(float frameTime) - { - _game?.GameTick(frameTime); - } - - private sealed class BlockGame - { - //note: field is 10(0 -> 9) wide and 20(0 -> 19) high - - private readonly BlockGameArcadeComponent _component; - - private readonly List _field = new(); - - private BlockGamePiece _currentPiece; - - private BlockGamePiece _nextPiece - { - get => _internalNextPiece; - set - { - _internalNextPiece = value; - SendNextPieceUpdate(); - } - } - private BlockGamePiece _internalNextPiece; - - private void SendNextPieceUpdate() - { - _component.UserInterface?.SendMessage(new BlockGameMessages.BlockGameVisualUpdateMessage(_nextPiece.BlocksForPreview(), BlockGameMessages.BlockGameVisualType.NextBlock)); - } - - private void SendNextPieceUpdate(IPlayerSession session) - { - _component.UserInterface?.SendMessage(new BlockGameMessages.BlockGameVisualUpdateMessage(_nextPiece.BlocksForPreview(), BlockGameMessages.BlockGameVisualType.NextBlock), session); - } - - private bool _holdBlock = false; - private BlockGamePiece? _heldPiece - { - get => _internalHeldPiece; - set - { - _internalHeldPiece = value; - SendHoldPieceUpdate(); - } - } - - private BlockGamePiece? _internalHeldPiece = null; - - private void SendHoldPieceUpdate() - { - if(_heldPiece.HasValue) _component.UserInterface?.SendMessage(new BlockGameMessages.BlockGameVisualUpdateMessage(_heldPiece.Value.BlocksForPreview(), BlockGameMessages.BlockGameVisualType.HoldBlock)); - else _component.UserInterface?.SendMessage(new BlockGameMessages.BlockGameVisualUpdateMessage(new BlockGameBlock[0], BlockGameMessages.BlockGameVisualType.HoldBlock)); - } - - private void SendHoldPieceUpdate(IPlayerSession session) - { - if(_heldPiece.HasValue) _component.UserInterface?.SendMessage(new BlockGameMessages.BlockGameVisualUpdateMessage(_heldPiece.Value.BlocksForPreview(), BlockGameMessages.BlockGameVisualType.HoldBlock), session); - else _component.UserInterface?.SendMessage(new BlockGameMessages.BlockGameVisualUpdateMessage(new BlockGameBlock[0], BlockGameMessages.BlockGameVisualType.HoldBlock), session); - } - - private Vector2i _currentPiecePosition; - private BlockGamePieceRotation _currentRotation; - private float _softDropModifier = 0.1f; - - private float Speed => - -0.03f * Level + 1 * (!_softDropPressed ? 1 : _softDropModifier); - - private const float _pressCheckSpeed = 0.08f; - - private bool _running; - public bool Paused => !(_running && _started); - private bool _started; - public bool Started => _started; - private bool _gameOver; - - private bool _leftPressed; - private bool _rightPressed; - private bool _softDropPressed; - - private int Points - { - get => _internalPoints; - set - { - if (_internalPoints == value) return; - _internalPoints = value; - SendPointsUpdate(); - } - } - private int _internalPoints; - - private ArcadeSystem.HighScorePlacement? _highScorePlacement = null; - - private void SendPointsUpdate() - { - _component.UserInterface?.SendMessage(new BlockGameMessages.BlockGameScoreUpdateMessage(Points)); - } - - private void SendPointsUpdate(IPlayerSession session) - { - _component.UserInterface?.SendMessage(new BlockGameMessages.BlockGameScoreUpdateMessage(Points)); - } - - public int Level - { - get => _level; - set - { - _level = value; - SendLevelUpdate(); - } - } - private int _level = 0; - private void SendLevelUpdate() - { - _component.UserInterface?.SendMessage(new BlockGameMessages.BlockGameLevelUpdateMessage(Level)); - } - - private void SendLevelUpdate(IPlayerSession session) - { - _component.UserInterface?.SendMessage(new BlockGameMessages.BlockGameLevelUpdateMessage(Level)); - } - - private int ClearedLines - { - get => _clearedLines; - set - { - _clearedLines = value; - - if (_clearedLines < LevelRequirement) return; - - _clearedLines -= LevelRequirement; - Level++; - } - } - - private int _clearedLines = 0; - private int LevelRequirement => Math.Min(100, Math.Max(Level * 10 - 50, 10)); - - public BlockGame(BlockGameArcadeComponent component) - { - _component = component; - _allBlockGamePieces = (BlockGamePieceType[]) Enum.GetValues(typeof(BlockGamePieceType)); - _internalNextPiece = GetRandomBlockGamePiece(_component._random); - InitializeNewBlock(); - } - - private void SendHighscoreUpdate() - { - var entitySystem = EntitySystem.Get(); - _component.UserInterface?.SendMessage(new BlockGameMessages.BlockGameHighScoreUpdateMessage(entitySystem.GetLocalHighscores(), entitySystem.GetGlobalHighscores())); - } - - private void SendHighscoreUpdate(IPlayerSession session) - { - var entitySystem = EntitySystem.Get(); - _component.UserInterface?.SendMessage(new BlockGameMessages.BlockGameHighScoreUpdateMessage(entitySystem.GetLocalHighscores(), entitySystem.GetGlobalHighscores()), session); - } - - public void StartGame() - { - _component.UserInterface?.SendMessage(new BlockGameMessages.BlockGameSetScreenMessage(BlockGameMessages.BlockGameScreen.Game)); - - FullUpdate(); - - _running = true; - _started = true; - } - - private void FullUpdate() - { - UpdateAllFieldUI(); - SendHoldPieceUpdate(); - SendNextPieceUpdate(); - SendPointsUpdate(); - SendHighscoreUpdate(); - SendLevelUpdate(); - } - - private void FullUpdate(IPlayerSession session) - { - UpdateFieldUI(session); - SendPointsUpdate(session); - SendNextPieceUpdate(session); - SendHoldPieceUpdate(session); - SendHighscoreUpdate(session); - SendLevelUpdate(session); - } - - public void GameTick(float frameTime) - { - if (!_running) return; - - InputTick(frameTime); - - FieldTick(frameTime); - } - - private float _accumulatedLeftPressTime; - private float _accumulatedRightPressTime; - private void InputTick(float frameTime) - { - bool anythingChanged = false; - if (_leftPressed) - { - _accumulatedLeftPressTime += frameTime; - - while (_accumulatedLeftPressTime >= _pressCheckSpeed) - { - - if (_currentPiece.Positions(_currentPiecePosition.AddToX(-1), _currentRotation) - .All(MoveCheck)) - { - _currentPiecePosition = _currentPiecePosition.AddToX(-1); - anythingChanged = true; - } - - _accumulatedLeftPressTime -= _pressCheckSpeed; - } - } - - if (_rightPressed) - { - _accumulatedRightPressTime += frameTime; - - while (_accumulatedRightPressTime >= _pressCheckSpeed) - { - if (_currentPiece.Positions(_currentPiecePosition.AddToX(1), _currentRotation) - .All(MoveCheck)) - { - _currentPiecePosition = _currentPiecePosition.AddToX(1); - anythingChanged = true; - } - - _accumulatedRightPressTime -= _pressCheckSpeed; - } - } - - if(anythingChanged) UpdateAllFieldUI(); - } - - private float _accumulatedFieldFrameTime; - private void FieldTick(float frameTime) - { - _accumulatedFieldFrameTime += frameTime; - - // Speed goes negative sometimes. uhhhh max() it I guess!!! - var checkTime = Math.Max(0.03f, Speed); - - while (_accumulatedFieldFrameTime >= checkTime) - { - if (_softDropPressed) AddPoints(1); - - InternalFieldTick(); - - _accumulatedFieldFrameTime -= checkTime; - } - } - - private void InternalFieldTick() - { - if (_currentPiece.Positions(_currentPiecePosition.AddToY(1), _currentRotation) - .All(DropCheck)) - { - _currentPiecePosition = _currentPiecePosition.AddToY(1); - } - else - { - var blocks = _currentPiece.Blocks(_currentPiecePosition, _currentRotation); - _field.AddRange(blocks); - - //check loose conditions - if (IsGameOver) - { - InvokeGameover(); - return; - } - - InitializeNewBlock(); - } - - CheckField(); - - UpdateAllFieldUI(); - } - - private void CheckField() - { - int pointsToAdd = 0; - int consecutiveLines = 0; - int clearedLines = 0; - for (int y = 0; y < 20; y++) - { - if (CheckLine(y)) - { - //line was cleared - y--; - consecutiveLines++; - clearedLines++; - } - else if(consecutiveLines != 0) - { - var mod = consecutiveLines switch - { - 1 => 40, - 2 => 100, - 3 => 300, - 4 => 1200, - _ => 0 - }; - pointsToAdd += mod * (_level + 1); - } - } - - ClearedLines += clearedLines; - AddPoints(pointsToAdd); - } - - private bool CheckLine(int y) - { - for (var x = 0; x < 10; x++) - { - if (!_field.Any(b => b.Position.X == x && b.Position.Y == y)) return false; - } - - //clear line - _field.RemoveAll(b => b.Position.Y == y); - //move everything down - FillLine(y); - - return true; - } - - private void AddPoints(int amount) - { - if (amount == 0) return; - - Points += amount; - } - - private void FillLine(int y) - { - for (int c_y = y; c_y > 0; c_y--) - { - for (int j = 0; j < _field.Count; j++) - { - if(_field[j].Position.Y != c_y-1) continue; - - _field[j] = new BlockGameBlock(_field[j].Position.AddToY(1), _field[j].GameBlockColor); - } - } - } - - private void InitializeNewBlock() - { - InitializeNewBlock(_nextPiece); - _nextPiece = GetRandomBlockGamePiece(_component._random); - _holdBlock = false; - - _component.UserInterface?.SendMessage(new BlockGameMessages.BlockGameVisualUpdateMessage(_nextPiece.BlocksForPreview(), BlockGameMessages.BlockGameVisualType.NextBlock)); - } - - private void InitializeNewBlock(BlockGamePiece piece) - { - _currentPiecePosition = new Vector2i(5,0); - - _currentRotation = BlockGamePieceRotation.North; - - _currentPiece = piece; - UpdateAllFieldUI(); - } - - private bool LowerBoundCheck(Vector2i position) => position.Y < 20; - private bool BorderCheck(Vector2i position) => position.X >= 0 && position.X < 10; - private bool ClearCheck(Vector2i position) => _field.All(block => !position.Equals(block.Position)); - - private bool DropCheck(Vector2i position) => LowerBoundCheck(position) && ClearCheck(position); - private bool MoveCheck(Vector2i position) => BorderCheck(position) && ClearCheck(position); - private bool RotateCheck(Vector2i position) => BorderCheck(position) && LowerBoundCheck(position) && ClearCheck(position); - - public void ProcessInput(BlockGamePlayerAction action) - { - if (_running) - { - switch (action) - { - case BlockGamePlayerAction.StartLeft: - _leftPressed = true; - break; - case BlockGamePlayerAction.StartRight: - _rightPressed = true; - break; - case BlockGamePlayerAction.Rotate: - TrySetRotation(Next(_currentRotation, false)); - break; - case BlockGamePlayerAction.CounterRotate: - TrySetRotation(Next(_currentRotation, true)); - break; - case BlockGamePlayerAction.SoftdropStart: - _softDropPressed = true; - if (_accumulatedFieldFrameTime > Speed) _accumulatedFieldFrameTime = Speed; //to prevent jumps - break; - case BlockGamePlayerAction.Harddrop: - PerformHarddrop(); - break; - case BlockGamePlayerAction.Hold: - HoldPiece(); - break; - } - } - - switch (action) - { - case BlockGamePlayerAction.EndLeft: - _leftPressed = false; - break; - case BlockGamePlayerAction.EndRight: - _rightPressed = false; - break; - case BlockGamePlayerAction.SoftdropEnd: - _softDropPressed = false; - break; - case BlockGamePlayerAction.Pause: - _running = false; - _component.UserInterface?.SendMessage(new BlockGameMessages.BlockGameSetScreenMessage(BlockGameMessages.BlockGameScreen.Pause, _started)); - break; - case BlockGamePlayerAction.Unpause: - if (!_gameOver && _started) - { - _running = true; - _component.UserInterface?.SendMessage(new BlockGameMessages.BlockGameSetScreenMessage(BlockGameMessages.BlockGameScreen.Game)); - } - break; - case BlockGamePlayerAction.ShowHighscores: - _running = false; - _component.UserInterface?.SendMessage(new BlockGameMessages.BlockGameSetScreenMessage(BlockGameMessages.BlockGameScreen.Highscores, _started)); - break; - } - } - - private void TrySetRotation(BlockGamePieceRotation rotation) - { - if(!_running) return; - - if (!_currentPiece.CanSpin) return; - - if (!_currentPiece.Positions(_currentPiecePosition, rotation) - .All(RotateCheck)) - { - return; - } - - _currentRotation = rotation; - UpdateAllFieldUI(); - } - - private void HoldPiece() - { - if (!_running) return; - - if (_holdBlock) return; - - var tempHeld = _heldPiece; - _heldPiece = _currentPiece; - _holdBlock = true; - - if (!tempHeld.HasValue) - { - InitializeNewBlock(); - return; - } - - InitializeNewBlock(tempHeld.Value); - } - - private void PerformHarddrop() - { - int spacesDropped = 0; - while (_currentPiece.Positions(_currentPiecePosition.AddToY(1), _currentRotation) - .All(DropCheck)) - { - _currentPiecePosition = _currentPiecePosition.AddToY(1); - spacesDropped++; - } - AddPoints(spacesDropped * 2); - - InternalFieldTick(); - } - - public void UpdateAllFieldUI() - { - if (!_started) return; - - var computedField = ComputeField(); - _component.UserInterface?.SendMessage(new BlockGameMessages.BlockGameVisualUpdateMessage(computedField.ToArray(), BlockGameMessages.BlockGameVisualType.GameField)); - } - - public void UpdateFieldUI(IPlayerSession session) - { - if (!_started) return; - - var computedField = ComputeField(); - _component.UserInterface?.SendMessage(new BlockGameMessages.BlockGameVisualUpdateMessage(computedField.ToArray(), BlockGameMessages.BlockGameVisualType.GameField), session); - } - - private bool IsGameOver => _field.Any(block => block.Position.Y == 0); - - private void InvokeGameover() - { - _running = false; - _gameOver = true; - - if (_component._player?.AttachedEntity is {Valid: true} playerEntity) - { - var blockGameSystem = EntitySystem.Get(); - - _highScorePlacement = blockGameSystem.RegisterHighScore(IoCManager.Resolve().GetComponent(playerEntity).EntityName, Points); - SendHighscoreUpdate(); - } - _component.UserInterface?.SendMessage(new BlockGameMessages.BlockGameGameOverScreenMessage(Points, _highScorePlacement?.LocalPlacement, _highScorePlacement?.GlobalPlacement)); - } - - public void UpdateNewPlayerUI(IPlayerSession session) - { - if (_gameOver) - { - _component.UserInterface?.SendMessage(new BlockGameMessages.BlockGameGameOverScreenMessage(Points, _highScorePlacement?.LocalPlacement, _highScorePlacement?.GlobalPlacement), session); - } - else - { - if (Paused) - { - _component.UserInterface?.SendMessage(new BlockGameMessages.BlockGameSetScreenMessage(BlockGameMessages.BlockGameScreen.Pause, Started), session); - } - else - { - _component.UserInterface?.SendMessage(new BlockGameMessages.BlockGameSetScreenMessage(BlockGameMessages.BlockGameScreen.Game, Started), session); - } - } - - FullUpdate(session); - } - - public List ComputeField() - { - var result = new List(); - result.AddRange(_field); - result.AddRange(_currentPiece.Blocks(_currentPiecePosition, _currentRotation)); - - var dropGhostPosition = _currentPiecePosition; - while (_currentPiece.Positions(dropGhostPosition.AddToY(1), _currentRotation) - .All(DropCheck)) - { - dropGhostPosition = dropGhostPosition.AddToY(1); - } - - if (dropGhostPosition != _currentPiecePosition) - { - var blox = _currentPiece.Blocks(dropGhostPosition, _currentRotation); - for (var i = 0; i < blox.Length; i++) - { - result.Add(new BlockGameBlock(blox[i].Position, BlockGameBlock.ToGhostBlockColor(blox[i].GameBlockColor))); - } - } - return result; - } - - private enum BlockGamePieceType - { - I, - L, - LInverted, - S, - SInverted, - T, - O - } - - private enum BlockGamePieceRotation - { - North, - East, - South, - West - } - - private static BlockGamePieceRotation Next(BlockGamePieceRotation rotation, bool inverted) - { - return rotation switch - { - BlockGamePieceRotation.North => inverted ? BlockGamePieceRotation.West : BlockGamePieceRotation.East, - BlockGamePieceRotation.East => inverted ? BlockGamePieceRotation.North : BlockGamePieceRotation.South, - BlockGamePieceRotation.South => inverted ? BlockGamePieceRotation.East : BlockGamePieceRotation.West, - BlockGamePieceRotation.West => inverted ? BlockGamePieceRotation.South : BlockGamePieceRotation.North, - _ => throw new ArgumentOutOfRangeException(nameof(rotation), rotation, null) - }; - } - - private readonly BlockGamePieceType[] _allBlockGamePieces; - - private List _blockGamePiecesBuffer = new(); - - private BlockGamePiece GetRandomBlockGamePiece(IRobustRandom random) - { - if (_blockGamePiecesBuffer.Count == 0) - { - _blockGamePiecesBuffer = _allBlockGamePieces.ToList(); - } - - var chosenPiece = random.Pick(_blockGamePiecesBuffer); - _blockGamePiecesBuffer.Remove(chosenPiece); - return BlockGamePiece.GetPiece(chosenPiece); - } - - private struct BlockGamePiece - { - public Vector2i[] Offsets; - private BlockGameBlock.BlockGameBlockColor _gameBlockColor; - public bool CanSpin; - - public Vector2i[] Positions(Vector2i center, - BlockGamePieceRotation rotation) - { - return RotatedOffsets(rotation).Select(v => center + v).ToArray(); - } - - private Vector2i[] RotatedOffsets(BlockGamePieceRotation rotation) - { - Vector2i[] rotatedOffsets = (Vector2i[])Offsets.Clone(); - //until i find a better algo - var amount = rotation switch - { - BlockGamePieceRotation.North => 0, - BlockGamePieceRotation.East => 1, - BlockGamePieceRotation.South => 2, - BlockGamePieceRotation.West => 3, - _ => 0 - }; - - for (var i = 0; i < amount; i++) - { - for (var j = 0; j < rotatedOffsets.Length; j++) - { - rotatedOffsets[j] = rotatedOffsets[j].Rotate90DegreesAsOffset(); - } - } - - return rotatedOffsets; - } - - public BlockGameBlock[] Blocks(Vector2i center, - BlockGamePieceRotation rotation) - { - var positions = Positions(center, rotation); - var result = new BlockGameBlock[positions.Length]; - var i = 0; - foreach (var position in positions) - { - result[i++] = position.ToBlockGameBlock(_gameBlockColor); - } - - return result; - } - - public BlockGameBlock[] BlocksForPreview() - { - var xOffset = 0; - var yOffset = 0; - foreach (var offset in Offsets) - { - if (offset.X < xOffset) xOffset = offset.X; - if (offset.Y < yOffset) yOffset = offset.Y; - } - - return Blocks(new Vector2i(-xOffset, -yOffset), BlockGamePieceRotation.North); - } - - public static BlockGamePiece GetPiece(BlockGamePieceType type) - { - //switch statement, hardcoded offsets - return type switch - { - BlockGamePieceType.I => new BlockGamePiece - { - Offsets = new[] - { - new Vector2i(0, -1), new Vector2i(0, 0), new Vector2i(0, 1), new Vector2i(0, 2), - }, - _gameBlockColor = BlockGameBlock.BlockGameBlockColor.LightBlue, - CanSpin = true - }, - BlockGamePieceType.L => new BlockGamePiece - { - Offsets = new[] - { - new Vector2i(0, -1), new Vector2i(0, 0), new Vector2i(0, 1), new Vector2i(1, 1), - }, - _gameBlockColor = BlockGameBlock.BlockGameBlockColor.Orange, - CanSpin = true - }, - BlockGamePieceType.LInverted => new BlockGamePiece - { - Offsets = new[] - { - new Vector2i(0, -1), new Vector2i(0, 0), new Vector2i(-1, 1), - new Vector2i(0, 1), - }, - _gameBlockColor = BlockGameBlock.BlockGameBlockColor.Blue, - CanSpin = true - }, - BlockGamePieceType.S => new BlockGamePiece - { - Offsets = new[] - { - new Vector2i(0, -1), new Vector2i(1, -1), new Vector2i(-1, 0), - new Vector2i(0, 0), - }, - _gameBlockColor = BlockGameBlock.BlockGameBlockColor.Green, - CanSpin = true - }, - BlockGamePieceType.SInverted => new BlockGamePiece - { - Offsets = new[] - { - new Vector2i(-1, -1), new Vector2i(0, -1), new Vector2i(0, 0), - new Vector2i(1, 0), - }, - _gameBlockColor = BlockGameBlock.BlockGameBlockColor.Red, - CanSpin = true - }, - BlockGamePieceType.T => new BlockGamePiece - { - Offsets = new[] - { - new Vector2i(0, -1), - new Vector2i(-1, 0), new Vector2i(0, 0), new Vector2i(1, 0), - }, - _gameBlockColor = BlockGameBlock.BlockGameBlockColor.Purple, - CanSpin = true - }, - BlockGamePieceType.O => new BlockGamePiece - { - Offsets = new[] - { - new Vector2i(0, -1), new Vector2i(1, -1), new Vector2i(0, 0), - new Vector2i(1, 0), - }, - _gameBlockColor = BlockGameBlock.BlockGameBlockColor.Yellow, - CanSpin = false - }, - _ => new BlockGamePiece {Offsets = new[] {new Vector2i(0, 0)}} - }; - } - } - } - } -} diff --git a/Content.Server/Arcade/Components/SpaceVillainArcadeComponent.cs b/Content.Server/Arcade/Components/SpaceVillainArcadeComponent.cs deleted file mode 100644 index 262fe2343b..0000000000 --- a/Content.Server/Arcade/Components/SpaceVillainArcadeComponent.cs +++ /dev/null @@ -1,389 +0,0 @@ -using Content.Server.Power.Components; -using Content.Server.UserInterface; -using Content.Shared.Arcade; -using Robust.Server.GameObjects; -using Robust.Shared.Audio; -using Robust.Shared.Player; -using Robust.Shared.Prototypes; -using Robust.Shared.Random; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; - -// TODO: ECS. - -namespace Content.Server.Arcade.Components -{ - [RegisterComponent] - public sealed class SpaceVillainArcadeComponent : SharedSpaceVillainArcadeComponent - { - [Dependency] private readonly IRobustRandom _random = null!; - - [Dependency] private readonly IEntityManager _entityManager = default!; - private bool Powered => _entityManager.TryGetComponent(Owner, out var powerReceiverComponent) && powerReceiverComponent.Powered; - - [ViewVariables] private BoundUserInterface? UserInterface => Owner.GetUIOrNull(SpaceVillainArcadeUiKey.Key); - [ViewVariables] public bool OverflowFlag; - [ViewVariables] public bool PlayerInvincibilityFlag; - [ViewVariables] public bool EnemyInvincibilityFlag; - [ViewVariables] public SpaceVillainGame Game = null!; - - [DataField("newGameSound")] private SoundSpecifier _newGameSound = new SoundPathSpecifier("/Audio/Effects/Arcade/newgame.ogg"); - [DataField("playerAttackSound")] private SoundSpecifier _playerAttackSound = new SoundPathSpecifier("/Audio/Effects/Arcade/player_attack.ogg"); - [DataField("playerHealSound")] private SoundSpecifier _playerHealSound = new SoundPathSpecifier("/Audio/Effects/Arcade/player_heal.ogg"); - [DataField("playerChargeSound")] private SoundSpecifier _playerChargeSound = new SoundPathSpecifier("/Audio/Effects/Arcade/player_charge.ogg"); - [DataField("winSound")] private SoundSpecifier _winSound = new SoundPathSpecifier("/Audio/Effects/Arcade/win.ogg"); - [DataField("gameOverSound")] private SoundSpecifier _gameOverSound = new SoundPathSpecifier("/Audio/Effects/Arcade/gameover.ogg"); - - [ViewVariables(VVAccess.ReadWrite)] - [DataField("possibleFightVerbs")] - private List _possibleFightVerbs = new List() - {"Defeat", "Annihilate", "Save", "Strike", "Stop", "Destroy", "Robust", "Romance", "Pwn", "Own"}; - [ViewVariables(VVAccess.ReadWrite)] - [DataField("possibleFirstEnemyNames")] - private List _possibleFirstEnemyNames = new List(){ - "the Automatic", "Farmer", "Lord", "Professor", "the Cuban", "the Evil", "the Dread King", - "the Space", "Lord", "the Great", "Duke", "General" - }; - [ViewVariables(VVAccess.ReadWrite)] - [DataField("possibleLastEnemyNames")] - private List _possibleLastEnemyNames = new List() - { - "Melonoid", "Murdertron", "Sorcerer", "Ruin", "Jeff", "Ectoplasm", "Crushulon", "Uhangoid", - "Vhakoid", "Peteoid", "slime", "Griefer", "ERPer", "Lizard Man", "Unicorn" - }; - [ViewVariables(VVAccess.ReadWrite)] - [DataField("possibleRewards", customTypeSerializer:typeof(PrototypeIdListSerializer))] - private List _possibleRewards = new List() - { - "ToyMouse", "ToyAi", "ToyNuke", "ToyAssistant", "ToyGriffin", "ToyHonk", "ToyIan", - "ToyMarauder", "ToyMauler", "ToyGygax", "ToyOdysseus", "ToyOwlman", "ToyDeathRipley", - "ToyPhazon", "ToyFireRipley", "ToyReticence", "ToyRipley", "ToySeraph", "ToyDurand", "ToySkeleton", - "FoamCrossbow", "RevolverCapGun", "PlushieHampter", "PlushieLizard", "PlushieAtmosian", "PlushieSpaceLizard", - "PlushieNuke", "PlushieCarp", "PlushieRatvar", "PlushieNar", "PlushieSnake", "Basketball", "Football", - "PlushieRouny", "PlushieBee", "PlushieSlime", "BalloonCorgi", "ToySword", "CrayonBox", "BoxDonkSoftBox", "BoxCartridgeCap", - "HarmonicaInstrument", "OcarinaInstrument", "RecorderInstrument", "GunpetInstrument", "BirdToyInstrument", "PlushieXeno" - }; - - [DataField("rewardMinAmount")] - public int _rewardMinAmount; - - [DataField("rewardMaxAmount")] - public int _rewardMaxAmount; - - [ViewVariables(VVAccess.ReadWrite)] - public int _rewardAmount = 0; - - protected override void Initialize() - { - base.Initialize(); - - if (UserInterface != null) - { - UserInterface.OnReceiveMessage += UserInterfaceOnOnReceiveMessage; - } - - // Random amount of prizes - _rewardAmount = new Random().Next(_rewardMinAmount, _rewardMaxAmount + 1); - - } - - public void OnPowerStateChanged(PowerChangedEvent e) - { - if (e.Powered) return; - - UserInterface?.CloseAll(); - } - - private void UserInterfaceOnOnReceiveMessage(ServerBoundUserInterfaceMessage serverMsg) - { - if (!Powered) - return; - - if (serverMsg.Message is not SpaceVillainArcadePlayerActionMessage msg) return; - - switch (msg.PlayerAction) - { - case PlayerAction.Attack: - Game?.ExecutePlayerAction(msg.PlayerAction); - break; - case PlayerAction.Heal: - Game?.ExecutePlayerAction(msg.PlayerAction); - break; - case PlayerAction.Recharge: - Game?.ExecutePlayerAction(msg.PlayerAction); - break; - case PlayerAction.NewGame: - SoundSystem.Play(_newGameSound.GetSound(), Filter.Pvs(Owner), Owner, AudioParams.Default.WithVolume(-4f)); - - Game = new SpaceVillainGame(this); - UserInterface?.SendMessage(Game.GenerateMetaDataMessage()); - break; - case PlayerAction.RequestData: - UserInterface?.SendMessage(Game.GenerateMetaDataMessage()); - break; - } - } - - /// - /// Called when the user wins the game. - /// - public void ProcessWin() - { - if (_rewardAmount > 0) - { - _entityManager.SpawnEntity(_random.Pick(_possibleRewards), _entityManager.GetComponent(Owner).Coordinates); - _rewardAmount--; - } - } - - /// - /// Picks a fight-verb from the list of possible Verbs. - /// - /// A fight-verb. - public string GenerateFightVerb() - { - return _random.Pick(_possibleFightVerbs); - } - - /// - /// Generates an enemy-name comprised of a first- and last-name. - /// - /// An enemy-name. - public string GenerateEnemyName() - { - return $"{_random.Pick(_possibleFirstEnemyNames)} {_random.Pick(_possibleLastEnemyNames)}"; - } - - /// - /// A Class to handle all the game-logic of the SpaceVillain-game. - /// - public sealed class SpaceVillainGame - { - [Dependency] private readonly IRobustRandom _random = default!; - - [ViewVariables] private readonly SpaceVillainArcadeComponent _owner; - - [ViewVariables] public string Name => $"{_fightVerb} {_enemyName}"; - [ViewVariables(VVAccess.ReadWrite)] private int _playerHp = 30; - [ViewVariables(VVAccess.ReadWrite)] private int _playerHpMax = 30; - [ViewVariables(VVAccess.ReadWrite)] private int _playerMp = 10; - [ViewVariables(VVAccess.ReadWrite)] private int _playerMpMax = 10; - [ViewVariables(VVAccess.ReadWrite)] private int _enemyHp = 45; - [ViewVariables(VVAccess.ReadWrite)] private int _enemyHpMax = 45; - [ViewVariables(VVAccess.ReadWrite)] private int _enemyMp = 20; - [ViewVariables(VVAccess.ReadWrite)] private int _enemyMpMax = 20; - [ViewVariables(VVAccess.ReadWrite)] private int _turtleTracker; - - [ViewVariables(VVAccess.ReadWrite)] private readonly string _fightVerb; - [ViewVariables(VVAccess.ReadWrite)] private readonly string _enemyName; - - [ViewVariables] private bool _running = true; - - private string _latestPlayerActionMessage = ""; - private string _latestEnemyActionMessage = ""; - - public SpaceVillainGame(SpaceVillainArcadeComponent owner) : this(owner, owner.GenerateFightVerb(), owner.GenerateEnemyName()) { } - - public SpaceVillainGame(SpaceVillainArcadeComponent owner, string fightVerb, string enemyName) - { - IoCManager.InjectDependencies(this); - _owner = owner; - //todo defeat the curse secret game mode - _fightVerb = fightVerb; - _enemyName = enemyName; - } - - /// - /// Validates all vars incase they overshoot their max-values. - /// Does not check if vars surpass 0. - /// - private void ValidateVars() - { - if (_owner.OverflowFlag) return; - - if (_playerHp > _playerHpMax) _playerHp = _playerHpMax; - if (_playerMp > _playerMpMax) _playerMp = _playerMpMax; - if (_enemyHp > _enemyHpMax) _enemyHp = _enemyHpMax; - if (_enemyMp > _enemyMpMax) _enemyMp = _enemyMpMax; - } - - /// - /// Called by the SpaceVillainArcadeComponent when Userinput is received. - /// - /// The action the user picked. - public void ExecutePlayerAction(PlayerAction action) - { - if (!_running) return; - - switch (action) - { - case PlayerAction.Attack: - var attackAmount = _random.Next(2, 6); - _latestPlayerActionMessage = Loc.GetString("space-villain-game-player-attack-message", - ("enemyName", _enemyName), - ("attackAmount", attackAmount)); - SoundSystem.Play(_owner._playerAttackSound.GetSound(), Filter.Pvs(_owner.Owner), _owner.Owner, AudioParams.Default.WithVolume(-4f)); - if (!_owner.EnemyInvincibilityFlag) - _enemyHp -= attackAmount; - _turtleTracker -= _turtleTracker > 0 ? 1 : 0; - break; - case PlayerAction.Heal: - var pointAmount = _random.Next(1, 3); - var healAmount = _random.Next(6, 8); - _latestPlayerActionMessage = Loc.GetString("space-villain-game-player-heal-message", - ("magicPointAmount", pointAmount), - ("healAmount", healAmount)); - SoundSystem.Play(_owner._playerHealSound.GetSound(), Filter.Pvs(_owner.Owner), _owner.Owner, AudioParams.Default.WithVolume(-4f)); - if (!_owner.PlayerInvincibilityFlag) - _playerMp -= pointAmount; - _playerHp += healAmount; - _turtleTracker++; - break; - case PlayerAction.Recharge: - var chargeAmount = _random.Next(4, 7); - _latestPlayerActionMessage = Loc.GetString("space-villain-game-player-recharge-message", ("regainedPoints", chargeAmount)); - SoundSystem.Play(_owner._playerChargeSound.GetSound(), Filter.Pvs(_owner.Owner), _owner.Owner, AudioParams.Default.WithVolume(-4f)); - _playerMp += chargeAmount; - _turtleTracker -= _turtleTracker > 0 ? 1 : 0; - break; - } - - if (!CheckGameConditions()) - { - return; - } - - ValidateVars(); - ExecuteAiAction(); - - if (!CheckGameConditions()) - { - return; - } - ValidateVars(); - UpdateUi(); - } - - /// - /// Checks the Game conditions and Updates the Ui & Plays a sound accordingly. - /// - /// A bool indicating if the game should continue. - private bool CheckGameConditions() - { - if ((_playerHp > 0 && _playerMp > 0) && (_enemyHp <= 0 || _enemyMp <= 0)) - { - _running = false; - UpdateUi(Loc.GetString("space-villain-game-player-wins-message"), - Loc.GetString("space-villain-game-enemy-dies-message", ("enemyName", _enemyName)), - true); - SoundSystem.Play(_owner._winSound.GetSound(), Filter.Pvs(_owner.Owner), _owner.Owner, AudioParams.Default.WithVolume(-4f)); - _owner.ProcessWin(); - return false; - } - - if (_playerHp > 0 && _playerMp > 0) return true; - - if ((_enemyHp > 0 && _enemyMp > 0)) - { - _running = false; - UpdateUi(Loc.GetString("space-villain-game-player-loses-message"), - Loc.GetString("space-villain-game-enemy-cheers-message", ("enemyName", _enemyName)), - true); - SoundSystem.Play(_owner._gameOverSound.GetSound(), Filter.Pvs(_owner.Owner), _owner.Owner, AudioParams.Default.WithVolume(-4f)); - return false; - } - if (_enemyHp <= 0 || _enemyMp <= 0) - { - _running = false; - UpdateUi(Loc.GetString("space-villain-game-player-loses-message"), - Loc.GetString("space-villain-game-enemy-dies-with-player-message ", ("enemyName", _enemyName)), - true); - SoundSystem.Play(_owner._gameOverSound.GetSound(), Filter.Pvs(_owner.Owner), _owner.Owner, AudioParams.Default.WithVolume(-4f)); - return false; - } - - return true; - } - - /// - /// Updates the UI. - /// - private void UpdateUi(bool metadata = false) - { - _owner.UserInterface?.SendMessage(metadata ? GenerateMetaDataMessage() : GenerateUpdateMessage()); - } - - private void UpdateUi(string message1, string message2, bool metadata = false) - { - _latestPlayerActionMessage = message1; - _latestEnemyActionMessage = message2; - UpdateUi(metadata); - } - - /// - /// Handles the logic of the AI - /// - /// An Enemyaction-message. - private void ExecuteAiAction() - { - if (_turtleTracker >= 4) - { - var boomAmount = _random.Next(5, 10); - _latestEnemyActionMessage = Loc.GetString("space-villain-game-enemy-throws-bomb-message", - ("enemyName", _enemyName), - ("damageReceived", boomAmount)); - if (_owner.PlayerInvincibilityFlag) return; - _playerHp -= boomAmount; - _turtleTracker--; - } - else if (_enemyMp <= 5 && _random.Prob(0.7f)) - { - var stealAmount = _random.Next(2, 3); - _latestEnemyActionMessage = Loc.GetString("space-villain-game-enemy-steals-player-power-message", - ("enemyName", _enemyName), - ("stolenAmount", stealAmount)); - if (_owner.PlayerInvincibilityFlag) return; - _playerMp -= stealAmount; - _enemyMp += stealAmount; - } - else if (_enemyHp <= 10 && _enemyMp > 4) - { - _enemyHp += 4; - _enemyMp -= 4; - _latestEnemyActionMessage = Loc.GetString("space-villain-game-enemy-heals-message", - ("enemyName", _enemyName), - ("healedAmount", 4)); - } - else - { - var attackAmount = _random.Next(3, 6); - _latestEnemyActionMessage = - Loc.GetString("space-villain-game-enemy-attacks-message", - ("enemyName", _enemyName), - ("damageDealt", attackAmount)); - if (_owner.PlayerInvincibilityFlag) return; - _playerHp -= attackAmount; - } - } - - /// - /// Generates a Metadata-message based on the objects values. - /// - /// A Metadata-message. - public SpaceVillainArcadeMetaDataUpdateMessage GenerateMetaDataMessage() - { - return new(_playerHp, _playerMp, _enemyHp, _enemyMp, _latestPlayerActionMessage, _latestEnemyActionMessage, Name, _enemyName, !_running); - } - - /// - /// Creates an Update-message based on the objects values. - /// - /// An Update-Message. - public SpaceVillainArcadeDataUpdateMessage - GenerateUpdateMessage() - { - return new(_playerHp, _playerMp, _enemyHp, _enemyMp, _latestPlayerActionMessage, - _latestEnemyActionMessage); - } - } - } -} diff --git a/Content.Server/Arcade/SpaceVillainGame/SpaceVillainArcadeComponent.cs b/Content.Server/Arcade/SpaceVillainGame/SpaceVillainArcadeComponent.cs new file mode 100644 index 0000000000..c11851af57 --- /dev/null +++ b/Content.Server/Arcade/SpaceVillainGame/SpaceVillainArcadeComponent.cs @@ -0,0 +1,124 @@ +using Content.Shared.Arcade; +using Robust.Shared.Audio; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; + +// TODO: ECS. + +namespace Content.Server.Arcade.SpaceVillain; + +[RegisterComponent] +public sealed class SpaceVillainArcadeComponent : SharedSpaceVillainArcadeComponent +{ + /// + /// Unused flag that can be hacked via wires. + /// Name suggests that it was intended to either make the health/mana values underflow while playing the game or turn the arcade machine into an infinite prize fountain. + /// + [ViewVariables] + public bool OverflowFlag; + + /// + /// The current session of the SpaceVillain game for this arcade machine. + /// + [ViewVariables] + public SpaceVillainGame? Game = null; + + /// + /// The sound played when a new session of the SpaceVillain game is begun. + /// + [DataField("newGameSound")] + public SoundSpecifier NewGameSound = new SoundPathSpecifier("/Audio/Effects/Arcade/newgame.ogg"); + + /// + /// The sound played when the player chooses to attack. + /// + [DataField("playerAttackSound")] + public SoundSpecifier PlayerAttackSound = new SoundPathSpecifier("/Audio/Effects/Arcade/player_attack.ogg"); + + /// + /// The sound played when the player chooses to heal. + /// + [DataField("playerHealSound")] + public SoundSpecifier PlayerHealSound = new SoundPathSpecifier("/Audio/Effects/Arcade/player_heal.ogg"); + + /// + /// The sound played when the player chooses to regain mana. + /// + [DataField("playerChargeSound")] + public SoundSpecifier PlayerChargeSound = new SoundPathSpecifier("/Audio/Effects/Arcade/player_charge.ogg"); + + /// + /// The sound played when the player wins. + /// + [DataField("winSound")] + public SoundSpecifier WinSound = new SoundPathSpecifier("/Audio/Effects/Arcade/win.ogg"); + + /// + /// The sound played when the player loses. + /// + [DataField("gameOverSound")] + public SoundSpecifier GameOverSound = new SoundPathSpecifier("/Audio/Effects/Arcade/gameover.ogg"); + + /// + /// The prefixes that can be used to create the game name. + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField("possibleFightVerbs")] + public List PossibleFightVerbs = new() + {"Defeat", "Annihilate", "Save", "Strike", "Stop", "Destroy", "Robust", "Romance", "Pwn", "Own"}; + + /// + /// The first names/titles that can be used to construct the name of the villain. + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField("possibleFirstEnemyNames")] + public List PossibleFirstEnemyNames = new(){ + "the Automatic", "Farmer", "Lord", "Professor", "the Cuban", "the Evil", "the Dread King", + "the Space", "Lord", "the Great", "Duke", "General" + }; + + /// + /// The last names that can be used to construct the name of the villain. + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField("possibleLastEnemyNames")] + public List PossibleLastEnemyNames = new() + { + "Melonoid", "Murdertron", "Sorcerer", "Ruin", "Jeff", "Ectoplasm", "Crushulon", "Uhangoid", + "Vhakoid", "Peteoid", "slime", "Griefer", "ERPer", "Lizard Man", "Unicorn" + }; + + /// + /// The prototypes that can be dispensed as a reward for winning the game. + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField("possibleRewards", customTypeSerializer: typeof(PrototypeIdListSerializer))] + public List PossibleRewards = new() + { + "ToyMouse", "ToyAi", "ToyNuke", "ToyAssistant", "ToyGriffin", "ToyHonk", "ToyIan", + "ToyMarauder", "ToyMauler", "ToyGygax", "ToyOdysseus", "ToyOwlman", "ToyDeathRipley", + "ToyPhazon", "ToyFireRipley", "ToyReticence", "ToyRipley", "ToySeraph", "ToyDurand", "ToySkeleton", + "FoamCrossbow", "RevolverCapGun", "PlushieHampter", "PlushieLizard", "PlushieAtmosian", "PlushieSpaceLizard", + "PlushieNuke", "PlushieCarp", "PlushieRatvar", "PlushieNar", "PlushieSnake", "Basketball", "Football", + "PlushieRouny", "PlushieBee", "PlushieSlime", "BalloonCorgi", "ToySword", "CrayonBox", "BoxDonkSoftBox", "BoxCartridgeCap", + "HarmonicaInstrument", "OcarinaInstrument", "RecorderInstrument", "GunpetInstrument", "BirdToyInstrument", "PlushieXeno" + }; + + /// + /// The minimum number of prizes the arcade machine can have. + /// + [DataField("rewardMinAmount")] + public int RewardMinAmount; + + /// + /// The maximum number of prizes the arcade machine can have. + /// + [DataField("rewardMaxAmount")] + public int RewardMaxAmount; + + /// + /// The remaining number of prizes the arcade machine can dispense. + /// + [ViewVariables(VVAccess.ReadWrite)] + public int RewardAmount = 0; +} diff --git a/Content.Server/Arcade/SpaceVillainGame/SpaceVillainArcadeSystem.cs b/Content.Server/Arcade/SpaceVillainGame/SpaceVillainArcadeSystem.cs new file mode 100644 index 0000000000..5e4d7d5ec6 --- /dev/null +++ b/Content.Server/Arcade/SpaceVillainGame/SpaceVillainArcadeSystem.cs @@ -0,0 +1,109 @@ +using Content.Server.Power.Components; +using Content.Server.UserInterface; +using static Content.Shared.Arcade.SharedSpaceVillainArcadeComponent; +using Robust.Server.GameObjects; +using Robust.Shared.Audio; +using Robust.Shared.Random; + +namespace Content.Server.Arcade.SpaceVillain; + +public sealed partial class SpaceVillainArcadeSystem : EntitySystem +{ + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly SharedAudioSystem _audioSystem = default!; + [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnComponentInit); + SubscribeLocalEvent(OnAfterUIOpenSV); + SubscribeLocalEvent(OnSVPlayerAction); + SubscribeLocalEvent(OnSVillainPower); + } + + /// + /// Called when the user wins the game. + /// Dispenses a prize if the arcade machine has any left. + /// + /// + /// + /// + public void ProcessWin(EntityUid uid, SpaceVillainArcadeComponent? arcade = null, TransformComponent? xform = null) + { + if (!Resolve(uid, ref arcade, ref xform)) + return; + if (arcade.RewardAmount <= 0) + return; + + EntityManager.SpawnEntity(_random.Pick(arcade.PossibleRewards), xform.Coordinates); + arcade.RewardAmount--; + } + + /// + /// Picks a fight-verb from the list of possible Verbs. + /// + /// A fight-verb. + public string GenerateFightVerb(SpaceVillainArcadeComponent arcade) + { + return _random.Pick(arcade.PossibleFightVerbs); + } + + /// + /// Generates an enemy-name comprised of a first- and last-name. + /// + /// An enemy-name. + public string GenerateEnemyName(SpaceVillainArcadeComponent arcade) + { + return $"{_random.Pick(arcade.PossibleFirstEnemyNames)} {_random.Pick(arcade.PossibleLastEnemyNames)}"; + } + + private void OnComponentInit(EntityUid uid, SpaceVillainArcadeComponent component, ComponentInit args) + { + // Random amount of prizes + component.RewardAmount = new Random().Next(component.RewardMinAmount, component.RewardMaxAmount + 1); + } + + private void OnSVPlayerAction(EntityUid uid, SpaceVillainArcadeComponent component, SpaceVillainArcadePlayerActionMessage msg) + { + if (component.Game == null) + return; + if (!TryComp(uid, out var power) || !power.Powered) + return; + + switch (msg.PlayerAction) + { + case PlayerAction.Attack: + case PlayerAction.Heal: + case PlayerAction.Recharge: + component.Game.ExecutePlayerAction(uid, msg.PlayerAction, component); + break; + case PlayerAction.NewGame: + _audioSystem.PlayPvs(component.NewGameSound, uid, AudioParams.Default.WithVolume(-4f)); + + component.Game = new SpaceVillainGame(uid, component, this); + if (_uiSystem.TryGetUi(uid, SpaceVillainArcadeUiKey.Key, out var bui)) + _uiSystem.SendUiMessage(bui, component.Game.GenerateMetaDataMessage()); + break; + case PlayerAction.RequestData: + if (_uiSystem.TryGetUi(uid, SpaceVillainArcadeUiKey.Key, out bui)) + _uiSystem.SendUiMessage(bui, component.Game.GenerateMetaDataMessage()); + break; + } + } + + private void OnAfterUIOpenSV(EntityUid uid, SpaceVillainArcadeComponent component, AfterActivatableUIOpenEvent args) + { + component.Game ??= new(uid, component, this); + } + + private void OnSVillainPower(EntityUid uid, SpaceVillainArcadeComponent component, ref PowerChangedEvent args) + { + if (TryComp(uid, out var power) && power.Powered) + return; + + if (_uiSystem.TryGetUi(uid, SpaceVillainArcadeUiKey.Key, out var bui)) + _uiSystem.CloseAll(bui); + } +} diff --git a/Content.Server/Arcade/SpaceVillainGame/SpaceVillainGame.Fighter.cs b/Content.Server/Arcade/SpaceVillainGame/SpaceVillainGame.Fighter.cs new file mode 100644 index 0000000000..50d4c4efe5 --- /dev/null +++ b/Content.Server/Arcade/SpaceVillainGame/SpaceVillainGame.Fighter.cs @@ -0,0 +1,68 @@ +namespace Content.Server.Arcade.SpaceVillain; + +public sealed partial class SpaceVillainGame +{ + /// + /// A state holder for the fighters in the SpaceVillain game. + /// + public sealed class Fighter + { + /// + /// The current hit point total of the fighter. + /// + [ViewVariables(VVAccess.ReadWrite)] + public int Hp + { + get => _hp; + set => _hp = MathHelper.Clamp(value, 0, HpMax); + } + private int _hp; + + /// + /// The maximum hit point total of the fighter. + /// + [ViewVariables(VVAccess.ReadWrite)] + public int HpMax + { + get => _hpMax; + set + { + _hpMax = Math.Max(value, 0); + Hp = MathHelper.Clamp(Hp, 0, HpMax); + } + } + private int _hpMax; + + /// + /// The current mana total of the fighter. + /// + [ViewVariables(VVAccess.ReadWrite)] + public int Mp + { + get => _mp; + set => _mp = MathHelper.Clamp(value, 0, MpMax); + } + private int _mp; + + /// + /// The maximum mana total of the fighter. + /// + [ViewVariables(VVAccess.ReadWrite)] + public int MpMax + { + get => _mpMax; + set + { + _mpMax = Math.Max(value, 0); + Mp = MathHelper.Clamp(Mp, 0, MpMax); + } + } + private int _mpMax; + + /// + /// Whether the given fighter can take damage/lose mana. + /// + [ViewVariables(VVAccess.ReadWrite)] + public bool Invincible = false; + } +} diff --git a/Content.Server/Arcade/SpaceVillainGame/SpaceVillainGame.Ui.cs b/Content.Server/Arcade/SpaceVillainGame/SpaceVillainGame.Ui.cs new file mode 100644 index 0000000000..890e9888a7 --- /dev/null +++ b/Content.Server/Arcade/SpaceVillainGame/SpaceVillainGame.Ui.cs @@ -0,0 +1,53 @@ +using static Content.Shared.Arcade.SharedSpaceVillainArcadeComponent; + +namespace Content.Server.Arcade.SpaceVillain; + +public sealed partial class SpaceVillainGame +{ + /// + /// Updates the UI. + /// + private void UpdateUi(EntityUid uid, bool metadata = false) + { + if (_uiSystem.TryGetUi(uid, SpaceVillainArcadeUiKey.Key, out var bui)) + _uiSystem.SendUiMessage(bui, metadata ? GenerateMetaDataMessage() : GenerateUpdateMessage()); + } + + private void UpdateUi(EntityUid uid, string message1, string message2, bool metadata = false) + { + _latestPlayerActionMessage = message1; + _latestEnemyActionMessage = message2; + UpdateUi(uid, metadata); + } + + /// + /// Generates a Metadata-message based on the objects values. + /// + /// A Metadata-message. + public SpaceVillainArcadeMetaDataUpdateMessage GenerateMetaDataMessage() + { + return new( + PlayerChar.Hp, PlayerChar.Mp, + VillainChar.Hp, VillainChar.Mp, + _latestPlayerActionMessage, + _latestEnemyActionMessage, + Name, + _villainName, + !_running + ); + } + + /// + /// Creates an Update-message based on the objects values. + /// + /// An Update-Message. + public SpaceVillainArcadeDataUpdateMessage GenerateUpdateMessage() + { + return new( + PlayerChar.Hp, PlayerChar.Mp, + VillainChar.Hp, VillainChar.Mp, + _latestPlayerActionMessage, + _latestEnemyActionMessage + ); + } +} diff --git a/Content.Server/Arcade/SpaceVillainGame/SpaceVillainGame.cs b/Content.Server/Arcade/SpaceVillainGame/SpaceVillainGame.cs new file mode 100644 index 0000000000..18dc32282b --- /dev/null +++ b/Content.Server/Arcade/SpaceVillainGame/SpaceVillainGame.cs @@ -0,0 +1,252 @@ +using static Content.Shared.Arcade.SharedSpaceVillainArcadeComponent; +using Robust.Server.GameObjects; +using Robust.Shared.Audio; +using Robust.Shared.Random; + +namespace Content.Server.Arcade.SpaceVillain; + + +/// +/// A Class to handle all the game-logic of the SpaceVillain-game. +/// +public sealed partial class SpaceVillainGame +{ + [Dependency] private readonly IEntityManager _entityManager = default!; + [Dependency] private readonly IRobustRandom _random = default!; + private readonly SharedAudioSystem _audioSystem = default!; + private readonly UserInterfaceSystem _uiSystem = default!; + private readonly SpaceVillainArcadeSystem _svArcade = default!; + + + [ViewVariables] + private readonly EntityUid _owner = default!; + + [ViewVariables] + private bool _running = true; + + [ViewVariables] + public string Name => $"{_fightVerb} {_villainName}"; + + [ViewVariables] + private readonly string _fightVerb; + + [ViewVariables] + public readonly Fighter PlayerChar; + + [ViewVariables] + private readonly string _villainName; + + [ViewVariables] + public readonly Fighter VillainChar; + + [ViewVariables] + private int _turtleTracker = 0; + + [ViewVariables] + private string _latestPlayerActionMessage = ""; + + [ViewVariables] + private string _latestEnemyActionMessage = ""; + + public SpaceVillainGame(EntityUid owner, SpaceVillainArcadeComponent arcade, SpaceVillainArcadeSystem arcadeSystem) + : this(owner, arcade, arcadeSystem, arcadeSystem.GenerateFightVerb(arcade), arcadeSystem.GenerateEnemyName(arcade)) + { + } + + public SpaceVillainGame(EntityUid owner, SpaceVillainArcadeComponent arcade, SpaceVillainArcadeSystem arcadeSystem, string fightVerb, string enemyName) + { + IoCManager.InjectDependencies(this); + _audioSystem = _entityManager.System(); + _uiSystem = _entityManager.System(); + _svArcade = _entityManager.System(); + + _owner = owner; + //todo defeat the curse secret game mode + _fightVerb = fightVerb; + _villainName = enemyName; + + PlayerChar = new() + { + HpMax = 30, + Hp = 30, + MpMax = 10, + Mp = 10 + }; + + VillainChar = new() + { + HpMax = 45, + Hp = 45, + MpMax = 20, + Mp = 20 + }; + } + + /// + /// Called by the SpaceVillainArcadeComponent when Userinput is received. + /// + /// The action the user picked. + /// The action the user picked. + /// The action the user picked. + public void ExecutePlayerAction(EntityUid uid, PlayerAction action, SpaceVillainArcadeComponent arcade) + { + if (!_running) + return; + + switch (action) + { + case PlayerAction.Attack: + var attackAmount = _random.Next(2, 6); + _latestPlayerActionMessage = Loc.GetString( + "space-villain-game-player-attack-message", + ("enemyName", _villainName), + ("attackAmount", attackAmount) + ); + _audioSystem.PlayPvs(arcade.PlayerAttackSound, uid, AudioParams.Default.WithVolume(-4f)); + if (!VillainChar.Invincible) + VillainChar.Hp -= attackAmount; + _turtleTracker -= _turtleTracker > 0 ? 1 : 0; + break; + case PlayerAction.Heal: + var pointAmount = _random.Next(1, 3); + var healAmount = _random.Next(6, 8); + _latestPlayerActionMessage = Loc.GetString( + "space-villain-game-player-heal-message", + ("magicPointAmount", pointAmount), + ("healAmount", healAmount) + ); + _audioSystem.PlayPvs(arcade.PlayerHealSound, uid, AudioParams.Default.WithVolume(-4f)); + if (!PlayerChar.Invincible) + PlayerChar.Mp -= pointAmount; + PlayerChar.Hp += healAmount; + _turtleTracker++; + break; + case PlayerAction.Recharge: + var chargeAmount = _random.Next(4, 7); + _latestPlayerActionMessage = Loc.GetString( + "space-villain-game-player-recharge-message", + ("regainedPoints", chargeAmount) + ); + _audioSystem.PlayPvs(arcade.PlayerChargeSound, uid, AudioParams.Default.WithVolume(-4f)); + PlayerChar.Mp += chargeAmount; + _turtleTracker -= _turtleTracker > 0 ? 1 : 0; + break; + } + + if (!CheckGameConditions(uid, arcade)) + return; + + ExecuteAiAction(); + + if (!CheckGameConditions(uid, arcade)) + return; + + UpdateUi(uid); + } + + /// + /// Handles the logic of the AI + /// + private void ExecuteAiAction() + { + if (_turtleTracker >= 4) + { + var boomAmount = _random.Next(5, 10); + _latestEnemyActionMessage = Loc.GetString( + "space-villain-game-enemy-throws-bomb-message", + ("enemyName", _villainName), + ("damageReceived", boomAmount) + ); + if (PlayerChar.Invincible) + return; + PlayerChar.Hp -= boomAmount; + _turtleTracker--; + return; + } + + if (VillainChar.Mp <= 5 && _random.Prob(0.7f)) + { + var stealAmount = _random.Next(2, 3); + _latestEnemyActionMessage = Loc.GetString( + "space-villain-game-enemy-steals-player-power-message", + ("enemyName", _villainName), + ("stolenAmount", stealAmount) + ); + if (PlayerChar.Invincible) + return; + PlayerChar.Mp -= stealAmount; + VillainChar.Mp += stealAmount; + return; + } + + if (VillainChar.Hp <= 10 && VillainChar.Mp > 4) + { + VillainChar.Hp += 4; + VillainChar.Mp -= 4; + _latestEnemyActionMessage = Loc.GetString( + "space-villain-game-enemy-heals-message", + ("enemyName", _villainName), + ("healedAmount", 4) + ); + return; + } + + var attackAmount = _random.Next(3, 6); + _latestEnemyActionMessage = + Loc.GetString( + "space-villain-game-enemy-attacks-message", + ("enemyName", _villainName), + ("damageDealt", attackAmount) + ); + if (PlayerChar.Invincible) + return; + PlayerChar.Hp -= attackAmount; + } + + /// + /// Checks the Game conditions and Updates the Ui & Plays a sound accordingly. + /// + /// A bool indicating if the game should continue. + private bool CheckGameConditions(EntityUid uid, SpaceVillainArcadeComponent arcade) + { + switch ( + PlayerChar.Hp > 0 && PlayerChar.Mp > 0, + VillainChar.Hp > 0 && VillainChar.Mp > 0 + ) + { + case (true, true): + return true; + case (true, false): + _running = false; + UpdateUi( + uid, + Loc.GetString("space-villain-game-player-wins-message"), + Loc.GetString("space-villain-game-enemy-dies-message", ("enemyName", _villainName)), + true + ); + _audioSystem.PlayPvs(arcade.WinSound, uid, AudioParams.Default.WithVolume(-4f)); + _svArcade.ProcessWin(uid, arcade); + return false; + case (false, true): + _running = false; + UpdateUi( + uid, + Loc.GetString("space-villain-game-player-loses-message"), + Loc.GetString("space-villain-game-enemy-cheers-message", ("enemyName", _villainName)), + true + ); + _audioSystem.PlayPvs(arcade.GameOverSound, uid, AudioParams.Default.WithVolume(-4f)); + return false; + case (false, false): + _running = false; + UpdateUi( + uid, + Loc.GetString("space-villain-game-player-loses-message"), + Loc.GetString("space-villain-game-enemy-dies-with-player-message ", ("enemyName", _villainName)), + true + ); + _audioSystem.PlayPvs(arcade.GameOverSound, uid, AudioParams.Default.WithVolume(-4f)); + return false; + } + } +} diff --git a/Content.Server/Arcade/WireActions/ArcadeInvincibilityWireActions.cs b/Content.Server/Arcade/WireActions/ArcadeInvincibilityWireActions.cs index 72ae200620..84d7a15480 100644 --- a/Content.Server/Arcade/WireActions/ArcadeInvincibilityWireActions.cs +++ b/Content.Server/Arcade/WireActions/ArcadeInvincibilityWireActions.cs @@ -1,4 +1,4 @@ -using Content.Server.Arcade.Components; +using Content.Server.Arcade.SpaceVillain; using Content.Server.Wires; using Content.Shared.Arcade; using Content.Shared.Wires; @@ -15,23 +15,26 @@ public sealed class ArcadePlayerInvincibleWireAction : BaseToggleWireAction public override void ToggleValue(EntityUid owner, bool setting) { - if (EntityManager.TryGetComponent(owner, out var arcade)) + if (EntityManager.TryGetComponent(owner, out var arcade) + && arcade.Game != null) { - arcade.PlayerInvincibilityFlag = !setting; + arcade.Game.PlayerChar.Invincible = !setting; } } public override bool GetValue(EntityUid owner) { return EntityManager.TryGetComponent(owner, out var arcade) - && !arcade.PlayerInvincibilityFlag; + && arcade.Game != null + && !arcade.Game.PlayerChar.Invincible; } public override StatusLightState? GetLightState(Wire wire) { - if (EntityManager.TryGetComponent(wire.Owner, out var arcade)) + if (EntityManager.TryGetComponent(wire.Owner, out var arcade) + && arcade.Game != null) { - return arcade.PlayerInvincibilityFlag || arcade.EnemyInvincibilityFlag + return arcade.Game.PlayerChar.Invincible || arcade.Game.VillainChar.Invincible ? StatusLightState.BlinkingSlow : StatusLightState.On; } @@ -49,19 +52,24 @@ public sealed class ArcadeEnemyInvincibleWireAction : BaseToggleWireAction public override void ToggleValue(EntityUid owner, bool setting) { - if (EntityManager.TryGetComponent(owner, out var arcade)) + if (EntityManager.TryGetComponent(owner, out var arcade) + && arcade.Game != null) { - arcade.PlayerInvincibilityFlag = !setting; + arcade.Game.VillainChar.Invincible = !setting; } } public override bool GetValue(EntityUid owner) { return EntityManager.TryGetComponent(owner, out var arcade) - && !arcade.PlayerInvincibilityFlag; + && arcade.Game != null + && !arcade.Game.VillainChar.Invincible; } - public override StatusLightData? GetStatusLightData(Wire wire) => null; + public override StatusLightData? GetStatusLightData(Wire wire) + { + return null; + } } public enum ArcadeInvincibilityWireActionKeys : short diff --git a/Content.Server/Arcade/WireActions/ArcadeOverflowWireAction.cs b/Content.Server/Arcade/WireActions/ArcadeOverflowWireAction.cs index 2b672824cf..1d15e03e64 100644 --- a/Content.Server/Arcade/WireActions/ArcadeOverflowWireAction.cs +++ b/Content.Server/Arcade/WireActions/ArcadeOverflowWireAction.cs @@ -1,4 +1,4 @@ -using Content.Server.Arcade.Components; +using Content.Server.Arcade.SpaceVillain; using Content.Server.Wires; using Content.Shared.Arcade; using Content.Shared.Wires; @@ -9,7 +9,7 @@ public sealed class ArcadeOverflowWireAction : BaseToggleWireAction { public override Color Color { get; set; } = Color.Red; public override string Name { get; set; } = "wire-name-arcade-overflow"; - + public override object? StatusKey { get; } = SharedSpaceVillainArcadeComponent.Indicators.HealthLimiter; public override void ToggleValue(EntityUid owner, bool setting) diff --git a/Content.Shared/Arcade/BlockGameBlock.cs b/Content.Shared/Arcade/BlockGameBlock.cs index b47f5224ad..012950cda7 100644 --- a/Content.Shared/Arcade/BlockGameBlock.cs +++ b/Content.Shared/Arcade/BlockGameBlock.cs @@ -71,7 +71,8 @@ public static Color ToColor(BlockGameBlockColor inColor) } } - public static class BlockGameVector2Extensions{ + public static class BlockGameVector2Extensions + { public static BlockGameBlock ToBlockGameBlock(this Vector2i vector2, BlockGameBlock.BlockGameBlockColor gameBlockColor) { return new(vector2, gameBlockColor); @@ -90,6 +91,5 @@ public static Vector2i Rotate90DegreesAsOffset(this Vector2i vector) { return new(-vector.Y, vector.X); } - } } From d86effe63069d75d8e1ca579bddeb15bfce75acb Mon Sep 17 00:00:00 2001 From: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> Date: Thu, 15 Jun 2023 07:26:10 -0400 Subject: [PATCH 250/474] Fix foam artifacts (#17332) --- .../Components/FoamArtifactComponent.cs | 27 ++++++++----------- .../Effects/Systems/FoamArtifactSystem.cs | 12 ++++----- .../XenoArch/Effects/normal_effects.yml | 6 ++--- 3 files changed, 18 insertions(+), 27 deletions(-) diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/FoamArtifactComponent.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/FoamArtifactComponent.cs index 7dfec6db86..ec4e491f1a 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/FoamArtifactComponent.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/FoamArtifactComponent.cs @@ -1,4 +1,5 @@ -using Content.Shared.Chemistry.Reagent; +using Content.Server.Xenoarchaeology.XenoArtifacts.Effects.Systems; +using Content.Shared.Chemistry.Reagent; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; namespace Content.Server.Xenoarchaeology.XenoArtifacts.Effects.Components; @@ -6,7 +7,7 @@ namespace Content.Server.Xenoarchaeology.XenoArtifacts.Effects.Components; /// /// Generates foam from the artifact when activated /// -[RegisterComponent] +[RegisterComponent, Access(typeof(FoamArtifactSystem))] public sealed class FoamArtifactComponent : Component { /// @@ -19,36 +20,30 @@ public sealed class FoamArtifactComponent : Component /// /// The foam reagent /// - [ViewVariables(VVAccess.ReadWrite)] + [DataField("selectedReagent"), ViewVariables(VVAccess.ReadWrite)] public string? SelectedReagent; /// /// How long does the foam last? /// - [DataField("duration")] + [DataField("duration"), ViewVariables(VVAccess.ReadWrite)] public float Duration = 10; /// /// How much reagent is in the foam? /// - [DataField("reagentAmount")] - public float ReagentAmount = 100; + [DataField("reagentAmount"), ViewVariables(VVAccess.ReadWrite)] + public float ReagentAmount = 200; /// /// Minimum radius of foam spawned /// - [DataField("minFoamAmount")] - public int MinFoamAmount = 2; + [DataField("minFoamAmount"), ViewVariables(VVAccess.ReadWrite)] + public int MinFoamAmount = 15; /// /// Maximum radius of foam spawned /// - [DataField("maxFoamAmount")] - public int MaxFoamAmount = 6; - - /// - /// How long it takes for each tile of foam to spawn - /// - [DataField("spreadDuration")] - public float SpreadDuration = 1; + [DataField("maxFoamAmount"), ViewVariables(VVAccess.ReadWrite)] + public int MaxFoamAmount = 20; } diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/FoamArtifactSystem.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/FoamArtifactSystem.cs index 667d1363d9..93d9d5a01b 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/FoamArtifactSystem.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/FoamArtifactSystem.cs @@ -1,11 +1,9 @@ using System.Linq; using Content.Server.Chemistry.Components; -using Content.Server.Chemistry.ReactionEffects; using Content.Server.Fluids.EntitySystems; using Content.Server.Xenoarchaeology.XenoArtifacts.Effects.Components; using Content.Server.Xenoarchaeology.XenoArtifacts.Events; using Content.Shared.Chemistry.Components; -using Robust.Server.GameObjects; using Robust.Shared.Random; namespace Content.Server.Xenoarchaeology.XenoArtifacts.Effects.Systems; @@ -13,6 +11,7 @@ namespace Content.Server.Xenoarchaeology.XenoArtifacts.Effects.Systems; public sealed class FoamArtifactSystem : EntitySystem { [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly SmokeSystem _smoke = default!; /// public override void Initialize() @@ -36,12 +35,11 @@ private void OnActivated(EntityUid uid, FoamArtifactComponent component, Artifac var sol = new Solution(); var xform = Transform(uid); - sol.AddReagent(component.SelectedReagent, component.ReagentAmount * - (component.MinFoamAmount + - (component.MaxFoamAmount - component.MinFoamAmount) * _random.NextFloat())); - + var range = (int) MathF.Round(MathHelper.Lerp(component.MinFoamAmount, component.MaxFoamAmount, _random.NextFloat(0, 1f))); + sol.AddReagent(component.SelectedReagent, component.ReagentAmount); var foamEnt = Spawn("Foam", xform.Coordinates); var smoke = EnsureComp(foamEnt); - EntityManager.System().Start(foamEnt, smoke, sol, 20f); + smoke.SpreadAmount = range * 4; + _smoke.Start(foamEnt, smoke, sol, component.Duration); } } diff --git a/Resources/Prototypes/XenoArch/Effects/normal_effects.yml b/Resources/Prototypes/XenoArch/Effects/normal_effects.yml index 2c016148d8..72aa1974cd 100644 --- a/Resources/Prototypes/XenoArch/Effects/normal_effects.yml +++ b/Resources/Prototypes/XenoArch/Effects/normal_effects.yml @@ -302,8 +302,6 @@ effectHint: artifact-effect-hint-biochemical components: - type: FoamArtifact - spreadDuration: 0.5 - duration: 5 reagents: - Dermaline - Arithrazine @@ -433,8 +431,8 @@ effectHint: artifact-effect-hint-biochemical components: - type: FoamArtifact - spreadDuration: 0.5 - duration: 5 + minFoamAmount: 20 + maxFoamAmount: 30 reagents: - Tritium - Plasma From c6a189514c5c451bfc34842c14c358d8f4a61c86 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 15 Jun 2023 07:27:14 -0400 Subject: [PATCH 251/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 089335e346..54b3ef03b2 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: Jackal298 - changes: - - {message: add salvage rig, type: Add} - id: 3507 - time: '2023-04-23T07:36:01.0000000+00:00' - author: metalgearsloth changes: - {message: Puddles now only overflow when they can fully occupy a tile., type: Tweak} @@ -2917,3 +2912,10 @@ Entries: hear random sounds (paracusia), type: Add} id: 4006 time: '2023-06-15T06:45:51.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: Our top scientists have injected our artifacts with foaming agents to + greatly increase their foam output. Let's just hope that there's nothing dangerous + inside of it., type: Fix} + id: 4007 + time: '2023-06-15T11:26:10.0000000+00:00' From b31c8484180324f983d9af091b96595440c6a71b Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Thu, 15 Jun 2023 14:55:06 +0300 Subject: [PATCH 252/474] [Sprites] guitar back and some resprites (#16611) --- .../blue_flame_welding_mask.rsi/icon.png | Bin 424 -> 1041 bytes .../blue_flame_welding_mask.rsi/meta.json | 2 +- .../Welding/flame_welding_mask.rsi/icon.png | Bin 371 -> 1022 bytes .../Welding/flame_welding_mask.rsi/meta.json | 2 +- .../Head/Welding/paintedwelding.rsi/icon.png | Bin 305 -> 958 bytes .../Head/Welding/paintedwelding.rsi/meta.json | 2 +- .../guitar.rsi/equipped-BACKPACK.png | Bin 0 -> 1515 bytes .../Instruments/guitar.rsi/inhand-left.png | Bin 1096 -> 1580 bytes .../Instruments/guitar.rsi/inhand-right.png | Bin 1225 -> 1602 bytes .../Fun/Instruments/guitar.rsi/meta.json | 6 +++++- .../Medical/healthanalyzer.rsi/icon.png | Bin 1936 -> 770 bytes 11 files changed, 8 insertions(+), 4 deletions(-) create mode 100644 Resources/Textures/Objects/Fun/Instruments/guitar.rsi/equipped-BACKPACK.png diff --git a/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/icon.png b/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/icon.png index 8f912794966c2109f6ef1756a541ac1dd7331fad..3898eb5211c3f6b71d06bd8fbdad5d29b0d315af 100644 GIT binary patch delta 1019 zcmV_bS~kfca)6%!T&&4!Bs&J6hXwz-Pa-#&$We$=nXgL$9L~{ zIQatpm}%slh6%_QTssksX!FShE%-zu9fTO5Ib}H3WIP_@-+%RfgHP4#A=T^udw;Ih z<+NjfuSs~!uxwXYrXjZKT8cM?JB?gwS$JP~(3Sy(FO;rV`B8DU%CCy;*~Aq1RZlJZ zgY_S5EjmWPy`*{N?SAlskG!1FPLlF)GlEsNEx zYUdo?!t9#-qD$D>g+968zVrq1Y-j@vyw2JH000SaNPk�XT000XT0n*)m`~Uy~ zNl8ROR9HvtR6R>0VGy1eD+%_JHI+y_2?P^_RF;Z(Vv{2_Da7Q`nbzVUaDTun{itjV z+K3*J6bg6EHYx!T)0#^laK!})*PLOUncX+H#w0tj)E%;UKW656o_F340N30KxD{|K z@ZKxnd4Ej-g2ABCEw5ZI4~#cZf+9{N5|GP{wKW6+VOU!`gM2>EbAt#G3m|eLCacwI zaPhba|IUB&xKb%WDs>5dzn{k>L@HufvIT18^?Dsztrn*c`TYDI_lw1K{J&&jUayzu zC`TehDH(cz;YW6e~5cfDxb1B>#*=5$w>XERCHj zQy7_wm52}tz)~_6mmi6k99vo~SA}?K4uz;KQaMf{L}x&e>$(n_J`O&s8uz24j32z2 z0{98gY&Jp1aV!>d;%)my0`Ne!6BfT5!@=!7k82$?tJ6s+d|l~Do}3F9`#&nrZr%$4 znSV^i_7U~C&fL_K&Rq({1Y6d58s^;#{XdK zkrTD)cT{M>7_f~MuwB8FL6`r(@%y0sbaXAPEpU<{dIuPUzzLXIH1+6kpI$-bi{ga+ zk#bTX^=q1DK-!?QfFG3uTN6mp}}gkB9%&!NF-<$8W^pjvUnf^{f8bn z@P7FQz)R{Gob7l3lu}?>R-{(G@{`FV{eF)pZUHciB8&0@%d(U|qd>KwR;zt`@4LkJ s)q+4@agdwt;^f8X_bS~kfca)6%!T&&4!Bs&J6hXwz-Pa-#&$We$=nXgL$9L~{ zIQatpm}%slh6%_QTssksX!FShE%-zu9fTO5Ib}H3WIP_@-+%RfgHP4#A=T^udw;Ih z<+NjfuSs~!uxwXYrXjZKT8cM?JB?gwS$JP~(3Sy(FO;rV`B8DU%CCy;*~Aq1RZlJZ zgY_S5EjmWPy`*{N?SAlskG!1FPLlF)GlEsNEx zYUdo?!t9#-qD$D>g+968zVrq1Y-j@vyw2JH000SaNPk�XT000XT0n*)m`~Uy~ zHc3Q5R9HvtR6R=rK@c4^h{TX|+5{zj5wWmHA!)Q11e-_%u?zvRwX?GGCs^88qzMSA zwF-g?7LtHyzz+ykNr;~q&v|>d$wlvSd!mJS17UY>XWo1JvO7dxcn)|DcnA{Y?1XQEJmrjyGhz!$Q=Exc+ z4N9-zY9pvsw|i+J+$Zn?h8w|PP^@dUni%W#x)}FwpDDEQN+a7fM|_`?LhMII$LX2w zMC$xzmiEqf#a#c=ish+Q%55!Dlzh}TI?Nj;mw2^0H>B+zUbl(*A|RbkYmbE-nG;Kw z7k^ZxUWV{djQ@Uyveb>e9PbqAjY3>wCbS|4h^Y=Vfl&o8$G7tjfD$;74LIbrvKW1gcsx(KB{0KAu{r&i~K5J}Y54;A|FvQHEl+@TLSu$j1l^qZXp^? zKO;j*A&V<8`GU?`OB*s6cW_Dw4GmHnGSml*pZ#p#>nr>WEiEno9dYb}#bR-ifY$og z{?$oO{{ya5ZnD+d7dn1DS7xzcI=BaR!`oB80F#@O%3Z0?xVUVH77hF3LjcD`91ughQBOQbopgCnY)?_>$mk+a|9gL~ z*5$NgfUik-%&=@%Sf(Mi>RO67g*%O0YFT(+c+i#sg)fw@SNTzKw#u)H?b*Z>_*G9W z`-Al#Y~<{`aKCUkZHGLaSH=ygzO4+GzDInXQ$-wh5gp$y41ucu! ztZL^R-NNje{GvMI~eeZkU-F*pwKYRsz1$+fYU4g(~ z1jqnrc7J(S0G{#2JQCoA*ON&|#A1*L26?*F>w(m61BfDD_d>)AV=XyffbIGbNV06p zI}wfY|BpqHOhRwLeeljc)s|y%t^^|{bvhi)X`2R1kq9s_fXOw`zGT>)$quF4VB3*$ zZ>S$ZB7o7Gtur$0cqBrOB^|=L0VgY6_VfYIhJVaXRgi$0<2{>O?1XyLkH$+|W7M!!+1H;FBOdIUn zgnt^k1ty6(!+M3~9iF#eI~+=-EC~H|r^2oT>=NH!ZXq0-f=A=f*|885g{YGrMmmHT zxW|kLjaF5LyCDR;xH|yZh>%3#^%S;hC094}A_0j29;VEj?g5m6hZS=uvE(hlS8QEX zHS~l)Plg7QdP37b3-B4og<(Md^*Zi1WFp>*!49ciQBYyz+NklL7{J#Ut00x8M-?7FH2q7j35YgB8YEt$eu;x5O zM6LI>mk2Rh%^|caKtwHq6d|Cjn5doIz-7PdZ(d1Dj_VrGdVd8)-M|BYJW_-!0A3eA z%xRz(D@&jgeHy8JUpE!cz{a(4uU=;4{i1H>HvjvZLIq_P)v!)ivXSuoUeK8cUb0@gRcZM#D(K8zMO dU@#aA4={~G=@9O){@VZm002ovPDHLkV1mf{dr1HQ diff --git a/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/meta.json b/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/meta.json index 954d46b9e9..e52e61ea70 100644 --- a/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Welding/paintedwelding.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", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, icon by лазік#7305", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Fun/Instruments/guitar.rsi/equipped-BACKPACK.png b/Resources/Textures/Objects/Fun/Instruments/guitar.rsi/equipped-BACKPACK.png new file mode 100644 index 0000000000000000000000000000000000000000..71667f4e21cef619cd105ef332058d670f6adebd GIT binary patch literal 1515 zcmV~osik1& z3tj^F3E@v`mN65L$M|=B-r-X9c2xEH|K6XgXH~Z}aCHe!YKB=6mT8EsR}975!hKpk zy()Yt95!V@;VY$Q9DY`ubNF4cnM}-rTlEa)esJaoYk9LMJR%$_7OGln9`z+Yy|ged zbwKtY773z62$G@78U-qhN-ardfBVLozB$U`(d2DV!xTr3ym-T+R;8;hH7mLPIo>uoJ`0KJ=VcG=c4 zyKue*{SQXkOgANuYLLgPBfId*E(^kfqN^w>EHCn+3oDG07F$-! zoYU#%w$pi5Co(_w?3{N;7w-c@(D(eG|MPpF_dWBx2aq8NNCJ{T1_;!aLdk%vaLHWZ zimD(L?#V0XaoI?t38 zWo2a^jzl&Ns~eP3Un zu637=+ehbW6>B7lYmYym@mMpQy*ClF<{5xyg7;rSxPGM>0nZ*pVhIGsM-3NG0_;722Ai?dPuCrx;SgH3xe;|ZaQ6IZ zv^Q2FcToLrOAWm0A+BfEBQbi@Bin-OnFYXBoNeU;LOs*zYqlZadS*Qnr1f;E-h-wW3B==ZSk&kA z6v1F{&K{L(6GG<{4)t+4h32ijDi_TUd&Rw|@$|6g&w2d6ouKzzUPMRDl$(yz$g_wX zNsa9uhtjd5bVfn#s7zQwhR|#|$t!tg$bhv8Hk3I~l=rLcrwckJGZO;kn(b(gypm^5 zu#U#u?&ZI=`Z=0&KBi>lQj{cJc*S^Gv&5!6J5`mkrOfC8P7d-)p2bwJs*qrP#ln<= zW^9O@9ORWVVFZY^2L#sa!_ke-lt9fmJ?7*fujH8%tUVy{par8b_4SM_iP7N*id4^> zU;()CdXS?vZ^m@?1=(I$0Q~AnY&J!<`OPM_(yJsO2}lBxfFvLZNCN*4fuCb0go|%H R58(g+002ovPDHLkV1g2w*Hi!i literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Fun/Instruments/guitar.rsi/inhand-left.png b/Resources/Textures/Objects/Fun/Instruments/guitar.rsi/inhand-left.png index 3a9b9be48a7b599fc825340c1f419366f03a776c..2da0a7ba1da34f4f662f677f68cd03e22c667330 100644 GIT binary patch delta 1564 zcmV+%2IKk22&@c{BYy#JX+uL$X=7sm04R}lk-bYoQ5eR5YEqODkwZj~gGEC@6hv)h zgNuZiK~{_2{0RKG+^dAN1}zOjL)6mO(0@>C&{_}#MG(=}-q#XxdyfiA=((Kx{&>!L zUf%m$um{pw#%!B|Og3+X{65c0WYyFDj*}sJnZ+H|Onp8W41dsa{XAk*^e`5#8rV97r#0Qk3(GVFw(`2-Jz=+&if#y>2#*;upzy8IV^w}roUHPfVj~<{0K4kx zNj7k-fwh#85grxxX3_<%HjnxeS3JACBy~XcASNOF`0x;;z$R((j7!Z*X3c#Q72hH` z@o4haDPo8tNqk34d@%S#tmY3labT3lag+-G2N4 z00d)6L_t(|UhSGsNK{c2#?LsJrQ)DHO|zy@s6ipZB7$-e2_}goQB=55gxX0IQH#n& zQ41l8Alx)9+C>N!w5gRvgNs@jX$UnYN>1sR+Efm&_r3Afo5zgr-aG#`_rmye=DvH* z_dEBTH-C68ks6ACBA^H;0*Zhlpa>`eihv`5#!Au~HjwT(F$WXi7yJ`7y+-7Q0=LNQ z?9MI9C(5XQtzJ38*}#Cv%S0c(<%u|$QNkjQSmq)ysrV(70+K#v>^6uG|Bfv`G)*oU zLqa=1#z3a-f%r%?HSt0z@GMBKbw&}C&9!ubV1MF&831G>&-_W60&Uyf<|AcrEE>19 zSiYUvuf;ub`d^2nwxB2&1OSoe6%QSD4OW{80pO+*(Oz2($_BUeN?as!LbI+{~_|<>>*qS{P*|9^PsgK%mzRmZ;8BH|e5+Z*WU{kOvYI>DCu z9xyu{BCXhKuD!6ffJ&>YhynSr<0PHf^HJ~GRY42kCBj_Ux&ZMIp2;B$z!YOX0fIKa zG%C$ort4QP(v9X?isa{;;salor2IDuE$yo)G}kDt)TGwnxk-9U*()@hwK~eg%YR0n z6+*1bM(02<&fnWceK}{VIXt4RbEE;-4FQPNSwub+@eBa2Y+XA5QL%~U3#ULbqyJMQ zHX~K>ackJVbfrVMT0;>~1QY>9KoL*`6ahs*5l{pa0YyL&Py`eKZUV9g5x5OVPRz>T zja-W7u`L6^u`?tYkeuA+Su1Xq8-D;IfMY1Bc4Ng|`g`d^D#4R{}dH7>pa`q zhGX4b9{AQanzI#wBQm*&e&=PQJH67~g?*=y(GzSqlwfrLeE@57g#B)Bm^eA@^m#{( zOGj54_OUDc?OyYh=so}tg}~Jq>8N+>I2*u>LS+3`jq1D_q49}<);Md5;(zmW^aYr` zl@2c%!vA%j(0RgO%@Wxfpk%d^p6>T_cD-J1=k*5F-M&O0PuHWXO6b^+!-@ImHpdP^fPXhq#vK_!|A3EDh z-ABYb$y_O5KV)$Cv`@zlfPZ+8=Akc(F+xZQ44Lx)JP?su2WvDF0*k)Bx6ABEUupH3 zP(=HOT#rHfA)}GcM*bN!fYujM;QbVj?`fH{Qdi8BY^kJJDhxj`#mf$^9gt{oR_$4_ zvsV9f7Qke}n7!57=R8oP0q`uIjXBu{pAAjQh9aN{C<2OrB9J8le-#0#CBqUaE$9>g O0000Px(0!c(cRCt{2nonpOR}jWOdAo5f84JZ5 zMJCB6)ZhvWOi_C<$T~IPm0z_7v{s{itM#9R`JHxGtA95$-hBjUcjA@XvkB)a_e5sx{MwcFqU0RiR;@VzOS_2$-?S6IQXRoe?5 zcu5J24@d+67k}?m8w^&a5mzOXO(--r zq+)DH#o~gFd-ru1&%8ogNSmzEugha%^l!MR(8-09bxlg7NS%g8TNOXI}^aY9d&>|MRs!g-he; z0khezy?^NRpQqzE@#Alv_Ze4z2b79Blx`IOP~Ovt(1E_1ApgGoAwGETE}eQOjIvQd zsi?c|3u{#~@U28xfZ2K7hlD~v!S;!QP{(t8{pA<%4_6|K9_BS|c1>erELN=k$aDUieyPwPz8rJ%LdW1f6(O>HE^e3y{ z*>;1s)&xv(fz1MVfoJ~;ZI{|rfmO8=F0g2`HjelzZc=V(SLpLy)E5OhVajOE@?LRG7FqyLt zW`XxVIg8WB#V5&*(#3wr;D?W+bTA;p&LWxb>F~99DoXKk|P(5V7Y9%YJ^Tg5ej>@=KLk!!2!A u5>9D*JZ|lD*5kqGZnMiU48t(Y>&JgfB&~+UEHm){0000}&3BnAJBYy#JX+uL$X=7sm04R}lk-bYoQ5eR5YEqODkwZj~gGEC@6hv)h zgNuZiK~{_2{0RKG+^dAN1}zOjL)6mO(0@>C&{_}#MG(=}-q#XxdyfiA=((Kx{&>!L zUf%m$um{pw#%!B|Og3+X{65c0WYyFDj*}sJnZ+H|Onp8W41dsa{XAk*^e`5#8rV97r#0Qk3(GVFw(`2-Jz=+&if#y>2#*;upzy8IV^w}roUHPfVj~<{0K4kx zNj7k-fwh#85grxxX3_<%HjnxeS3JACBy~XcASNOF`0x;;z$R((j7!Z*X3c#Q72hH` z@o4haDPo8tNqk34d@%S#tmY3labT3lag+-G2N4 z00enSL_t(|UhSG)NEA^N$IrT^rr~0(saXaQB`x(J5kdN7P@xDCMS&24QN1Kl4@C-_ z5k>St(2FnGL-Z1{VS)uk4;D#~L7=RHQEQUu=(>KjCN|A~Y_8cNUH~~(86W|0m0ZxDu-~>2bSLjYLdC#v?);zUUHGoOyw{9<8PperBA zQRi`rhcDctr?(o3o%IBxoHVY_l^&~l27|yh#^O!xh})2ycy?kgfmavHSG;f>sVJob zrGEv~-~EYNJG)8n9H)oR-_yYcFAavB_x*)@#yXXaeDhP*(id}D=wn6j7-Xs9z!^SBZ6J=>GE^F zwv2G#eE}m@@c1p}5`YT!uFs~tLN{eCEYRhbgLJ26D+Pb2uL!t%bS@>bkAR>6oPSwT zwB{Cfhg3pf=wTQ}l|yT%)s;3A7u}Wiq;sl$s;#zUdGpo^9xmfP2Iat@1o|s+Jw{E$ zV(J!k@Jb`R>6+HFy=O7EL!drjoo>g3h0DnqgdjYG& zpoE5j%2B;900meodj!e;>qnvXNta*thazrYK%m}lLPU8EeF~3ywHq@GEde-0*%=aN z1A*f};Nh7$dOa{~dGOJcD)%bvC?XVbH%b$loeawT2?!i#+=I_rDmM(Ep{k53PkSTm zvaJ7<0H86#u5}+0LbBR$9)F))Dh0E~44m~eX&7DtkUTPewZl(MEjP*W;lZ->SFg#Y zH(w&9sFeY|zbktdAbAXA9>KfZF8VI5%d?OD%kk)K%Q5{JY_66XD5T(#eE^Yba!D?e zv%s<5F?yxLv)N74Qt<3M22}53*RTTMKwW~ycXkvbmAgIj$G$V`-zyY=XcN&ZWqute kzzJ{yoB$`l38V~xKlZ8g6efcH0{{R307*qoM6N<$f>bQ+zyJUM delta 1206 zcmV;n1WEhC49N+QBYyw^b5ch_0Itp)=>Px(gGod|RCt{2no($5RT#(rr%AeQk%s8a z%%$7%pwM7PA6k^ba`Q4_j=7a}1ofe~!iGVR3EN9iX%J*DDh{mFr{={+O=pEMq%XB# z9-M;Uv_fG?H&dGHvfCwDYmCQ->?AkI&3f<6&2HD7-%H5Jy?^KX&i{Pp+>`r#0Effj za5x+e=gEXUIGO8LHW*6@*1X3nk#XY}^JR+P65{_UZv{7qH7=Rd3pK zqW>qQ(aHC>Dl;Dzt+Qd706^y>KyAk=p)D2QQNSWi`NtX&9yaQfn9eEsoxU4v0G((k0bE`8TB5!lAqw_m9HeSdl}`%t?rm%#jl)D%_`DTt%N zXR(z01z%oGLLPVn@wp%I%Gnr}HyoIaPto-fFmvfV)=T;ZUJ*5)f zyS9u^Pd<;_f6k@>C)bMGV)lVb1OT;3VZIq!0_@+QS_DRJRYr2HSa-c$ga2$oqVG2B zQ}NM2bstbqj41(tnh08*Zbz5^Y?9g*0H{CsZ0ErPHD4S3Y)gQhKq~q+D^>uEYncYsn zqChW}ML>KsK-oKamYB2}_R3rRnm!ux(SODauo3%)1ei;;USnRr0Iy#_d^AA6O9Nxi zby>PsL_EZ>>JJu#YY2_B}+%XxK3Cb0PKEh5ANrSIP*=4 zm??007%bcY;6}QV`Q7JsL6H@B1P^W%N_gk1-|LDq)b=ecm1U`C^}0K>w=($TS`lYp zt}0|J*uZ~FJ@^DL5D;*$P^z{u^e@^sl^fJbmbOYtT1h*0TSWke!{Kl^oF|w60eZ>z Uy7)y6)c^nh07*qoM6N<$f{=4X$p8QV diff --git a/Resources/Textures/Objects/Fun/Instruments/guitar.rsi/meta.json b/Resources/Textures/Objects/Fun/Instruments/guitar.rsi/meta.json index 96e5157f93..8b247337ae 100644 --- a/Resources/Textures/Objects/Fun/Instruments/guitar.rsi/meta.json +++ b/Resources/Textures/Objects/Fun/Instruments/guitar.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/vgstation-coders/vgstation13 at 8d9c91e19cb52713c7f7f1804c2b6f7203f8d331", + "copyright": "https://github.com/vgstation-coders/vgstation13 at 8d9c91e19cb52713c7f7f1804c2b6f7203f8d331, equipped backpack by ;3#1161", "states": [ { "name": "icon" @@ -17,6 +17,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-BACKPACK", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Specific/Medical/healthanalyzer.rsi/icon.png b/Resources/Textures/Objects/Specific/Medical/healthanalyzer.rsi/icon.png index 776c3f4f6b72bfc0f454825345317c0a26e068c3..39298cf9f038aeecb26373a84b80aeecae3beb7c 100644 GIT binary patch delta 757 zcmV3_h7GpU*SOf(vy?fSaM zrt00O>ec>U%hkP_HZ`zy3QuafQ4*GEh-{Q}#XG`%S}wUNd?Xw+WI*9-rKf8AqBvXQ z55-12HVbyu)1PhPR1<4CqaZvY94O?=T74e%C7yI~VP5Kh>_JRogbCp%MVU47lo*v- zl+0TD#{PVBtbdC~lebOfw0A%@-=db=x6X65X3noEmjs^=b4U#9y zKqN&3U4INS6y#eF$jlDLX~*=bYr!Fd4)BEx-Y5WBUYZdNHm`feQU(|smkUg%m*bN9 zkINBw9RTw+$W$0x!$Fm#P`+{CHe4?@jd&e!>&aOL8{aU7{`NKo5E}$|_;?t!^tFg` z#I=jp2&%)I4b^0f2^v7D0;0+RN-e>se{eeh7H;pf3<11}5R?YyL9-StJ$(7}g#lOM z0?C0ADGY%4gaE;!`1F-KU^76W0b(znvYn8bDDogZ_(GCkNvL4rKyvYl?!pIW4iL15 nBwvjx9u0xf5Eu=CVHE-Z=Ky)kyNKY800000NkvXXu0mjfv>8$j literal 1936 zcmZux3vd%v6kVVwEtU~Kh(LAO@+rtBn@u*!E)Bn=pGeb&5}*}9UUpy7rAc<(-L`=N zTKUw{!6FK%6r`gCK^)~HOob_o9jwwpihv4?41zEMGknWO7%IL^(^_WOnf<)C=bn4- zdH3Gs-rTI@q(Mm-h9$eRUHRyZ>vx}C=;^AjZpN@4i$$l?>vlSEuObD+5X7*w)-|gp zr@5vKX)ag$i}fE9g@5#(zWV(!jH~+C;Vm}{8t&D+Jog%NX6()#zCA5X{9n7b?+6rw zZL4pk6~0l}fAHl88^_Ka!L)2We*eyfwuKwoQjYf9x%TR`(j`|foH<$K%gb%O^lNL; zw?|#ZwUcL- z)T|I%*UT&Ph*J5di4RgAB=2)62R*(oZlgmP>CN$Fc&7;zlPQ(2%=D^wDtY1WD{Eiq zSNB1`J{9(F_MtPwaLWYr{PD&5r_n1}%g>$qsN01(E)kXJN1~ivsA5>(=k>b>wr>4E z3`@8o`UR`;5sevOC_3vKyh>g7?wSrF7}8T*8wSFi~`wc zGEl~FSdTh}R<(>$WE_v>iD=a~Plm>Ps7fUY4>L+(L`&^77x*q)xkL%YvJiM948bsh zsmPnD%T<=!X#iRd;h2QBMnRW3!hV0B!2O=>zm&BLo z@wi=W>2o7HS$N!HHVNQ+6JNxNMzlf0iYTTM0qftl*$aYs}QM0lw4 zAZCMzNCIZoY_0)wOitd=}=KoZRunt%0Sx* zTvwh$!6ONQUUtYdmJ;VwAkZYmCrKd(p}WO(o6c%Q_1d9-wx}Z1yjUmTu`AXOQ{mg) zw&K+t67g6~a)9q}rGio@5b;gE2th6kuQgpaeSXRVkpA0R>JBqU=x-s61jx;AwH)Ms*^~il8nEg}RfXN!sc&**J#g zD5RUQTOR2~y(zormTr8K3>~;`&D=34V%BIM9F@44vJ6_0>cExY~qgyj*} mv-^J$+7jlsPZ*3{&-*ZCOlD*D?}PNo>dwe@eLZQ;;{O1e0k*OL From 416faa4ee6554a3e9b1473ca1ca1d9c9421e4a4d Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 15 Jun 2023 07:56:10 -0400 Subject: [PATCH 253/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 54b3ef03b2..a391fa05e7 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: metalgearsloth - changes: - - {message: Puddles now only overflow when they can fully occupy a tile., type: Tweak} - - {message: Puddles will now never overflow to a water puddle., type: Tweak} - - {message: Bumped mop volume from 60 to 100 and reduced cooldown from 1.5s to 1s., - type: Tweak} - id: 3508 - time: '2023-04-23T08:20:04.0000000+00:00' - author: Slava0135 changes: - {message: APCs now show correct charge and state, type: Fix} @@ -2919,3 +2911,8 @@ Entries: inside of it., type: Fix} id: 4007 time: '2023-06-15T11:26:10.0000000+00:00' +- author: lzk + changes: + - {message: Changed sprites, type: Tweak} + id: 4008 + time: '2023-06-15T11:55:07.0000000+00:00' From dbc180b0082fe51cc0c4c1f47affb68124fdd08d Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Thu, 15 Jun 2023 12:03:20 +0000 Subject: [PATCH 254/474] canister refactor + fixes (#17317) Co-authored-by: deltanedas <@deltanedas:kde.org> --- .../Unary/EntitySystems/GasCanisterSystem.cs | 496 +++++++++--------- 1 file changed, 258 insertions(+), 238 deletions(-) diff --git a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCanisterSystem.cs b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCanisterSystem.cs index 9a1bf537f5..4da6cb6b7d 100644 --- a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCanisterSystem.cs +++ b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCanisterSystem.cs @@ -14,317 +14,337 @@ using Content.Shared.Hands.EntitySystems; using Content.Shared.Interaction; using Content.Shared.Lock; -using JetBrains.Annotations; using Robust.Server.GameObjects; using Robust.Shared.Containers; -namespace Content.Server.Atmos.Piping.Unary.EntitySystems +namespace Content.Server.Atmos.Piping.Unary.EntitySystems; + +public sealed class GasCanisterSystem : EntitySystem { - [UsedImplicitly] - public sealed class GasCanisterSystem : EntitySystem + [Dependency] private readonly AtmosphereSystem _atmos = default!; + [Dependency] private readonly IAdminLogManager _adminLogger = default!; + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedContainerSystem _container = default!; + [Dependency] private readonly SharedHandsSystem _hands = default!; + [Dependency] private readonly PopupSystem _popup = default!; + [Dependency] private readonly UserInterfaceSystem _ui = default!; + + public override void Initialize() { - [Dependency] private readonly UserInterfaceSystem _userInterfaceSystem = default!; - [Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; - [Dependency] private readonly IAdminLogManager _adminLogger = default!; - [Dependency] private readonly SharedContainerSystem _containerSystem = default!; - [Dependency] private readonly SharedHandsSystem _handsSystem = default!; - [Dependency] private readonly PopupSystem _popupSystem = default!; - [Dependency] private readonly SharedAppearanceSystem _appearanceSystem = default!; - [Dependency] private readonly SharedAudioSystem _audioSys = default!; - - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnCanisterStartup); - SubscribeLocalEvent(OnCanisterUpdated); - SubscribeLocalEvent(OnCanisterActivate); - SubscribeLocalEvent(OnCanisterInteractHand); - SubscribeLocalEvent(OnCanisterInteractUsing); - SubscribeLocalEvent(OnCanisterContainerInserted); - SubscribeLocalEvent(OnCanisterContainerRemoved); - SubscribeLocalEvent(CalculateCanisterPrice); - SubscribeLocalEvent(OnAnalyzed); - // Bound UI subscriptions - SubscribeLocalEvent(OnHoldingTankEjectMessage); - SubscribeLocalEvent(OnCanisterChangeReleasePressure); - SubscribeLocalEvent(OnCanisterChangeReleaseValve); - SubscribeLocalEvent(OnLockToggled); + base.Initialize(); + + SubscribeLocalEvent(OnCanisterStartup); + SubscribeLocalEvent(OnCanisterUpdated); + SubscribeLocalEvent(OnCanisterActivate); + SubscribeLocalEvent(OnCanisterInteractHand); + SubscribeLocalEvent(OnCanisterInteractUsing); + SubscribeLocalEvent(OnCanisterContainerInserted); + SubscribeLocalEvent(OnCanisterContainerRemoved); + SubscribeLocalEvent(CalculateCanisterPrice); + SubscribeLocalEvent(OnAnalyzed); + // Bound UI subscriptions + SubscribeLocalEvent(OnHoldingTankEjectMessage); + SubscribeLocalEvent(OnCanisterChangeReleasePressure); + SubscribeLocalEvent(OnCanisterChangeReleaseValve); + SubscribeLocalEvent(OnLockToggled); + } - } + /// + /// Completely dumps the content of the canister into the world. + /// + public void PurgeContents(EntityUid uid, GasCanisterComponent? canister = null, TransformComponent? transform = null) + { + if (!Resolve(uid, ref canister, ref transform)) + return; - /// - /// Completely dumps the content of the canister into the world. - /// - public void PurgeContents(EntityUid uid, GasCanisterComponent? canister = null, TransformComponent? transform = null) - { - if (!Resolve(uid, ref canister, ref transform)) - return; + var environment = _atmos.GetContainingMixture(uid, false, true); + + if (environment is not null) + _atmos.Merge(environment, canister.Air); - var environment = _atmosphereSystem.GetContainingMixture(uid, false, true); + _adminLogger.Add(LogType.CanisterPurged, LogImpact.Medium, $"Canister {ToPrettyString(uid):canister} purged its contents of {canister.Air:gas} into the environment."); + canister.Air.Clear(); + } - if (environment is not null) - _atmosphereSystem.Merge(environment, canister.Air); + private void OnCanisterStartup(EntityUid uid, GasCanisterComponent comp, ComponentStartup args) + { + // Ensure container manager. + var containerManager = EnsureComp(uid); - _adminLogger.Add(LogType.CanisterPurged, LogImpact.Medium, $"Canister {ToPrettyString(uid):canister} purged its contents of {canister.Air:gas} into the environment."); - canister.Air.Clear(); - } + // Ensure container. + _container.EnsureContainer(uid, comp.ContainerName, containerManager); - private void OnCanisterStartup(EntityUid uid, GasCanisterComponent canister, ComponentStartup args) + if (TryComp(uid, out var lockComp)) { - // Ensure container manager. - var containerManager = EntityManager.EnsureComponent(uid); + _appearance.SetData(uid, GasCanisterVisuals.Locked, lockComp.Locked); + } + } - // Ensure container. - if (!containerManager.TryGetContainer(canister.ContainerName, out _)) - { - containerManager.MakeContainer(canister.ContainerName); - } + private void DirtyUI(EntityUid uid, + GasCanisterComponent? canister = null, NodeContainerComponent? nodeContainer = null, + ContainerManagerComponent? containerManager = null) + { + if (!Resolve(uid, ref canister, ref nodeContainer, ref containerManager)) + return; - if (TryComp(uid, out var lockComponent)) - _appearanceSystem.SetData(uid, GasCanisterVisuals.Locked, lockComponent.Locked); - } + var portStatus = false; + string? tankLabel = null; + var tankPressure = 0f; + + if (nodeContainer.TryGetNode(canister.PortName, out PipeNode? portNode) && portNode.NodeGroup?.Nodes.Count > 1) + portStatus = true; - private void DirtyUI(EntityUid uid, - GasCanisterComponent? canister = null, NodeContainerComponent? nodeContainer = null, - ContainerManagerComponent? containerManager = null) + if (containerManager.TryGetContainer(canister.ContainerName, out var tankContainer) + && tankContainer.ContainedEntities.Count > 0) { - if (!Resolve(uid, ref canister, ref nodeContainer, ref containerManager)) - return; + var tank = tankContainer.ContainedEntities[0]; + var tankComponent = Comp(tank); + tankLabel = Name(tank); + tankPressure = tankComponent.Air.Pressure; + } - var portStatus = false; - string? tankLabel = null; - var tankPressure = 0f; + _ui.TrySetUiState(uid, GasCanisterUiKey.Key, + new GasCanisterBoundUserInterfaceState(Name(uid), + canister.Air.Pressure, portStatus, tankLabel, tankPressure, canister.ReleasePressure, + canister.ReleaseValve, canister.MinReleasePressure, canister.MaxReleasePressure)); + } - if (nodeContainer.TryGetNode(canister.PortName, out PipeNode? portNode) && portNode.NodeGroup?.Nodes.Count > 1) - portStatus = true; + private void OnHoldingTankEjectMessage(EntityUid uid, GasCanisterComponent canister, GasCanisterHoldingTankEjectMessage args) + { + if (!TryComp(uid, out var containerManager) + || !containerManager.TryGetContainer(canister.ContainerName, out var container)) + return; - if (containerManager.TryGetContainer(canister.ContainerName, out var tankContainer) - && tankContainer.ContainedEntities.Count > 0) - { - var tank = tankContainer.ContainedEntities[0]; - var tankComponent = EntityManager.GetComponent(tank); - tankLabel = EntityManager.GetComponent(tank).EntityName; - tankPressure = tankComponent.Air.Pressure; - } + if (container.ContainedEntities.Count == 0) + return; - _userInterfaceSystem.TrySetUiState(uid, GasCanisterUiKey.Key, - new GasCanisterBoundUserInterfaceState(EntityManager.GetComponent(canister.Owner).EntityName, - canister.Air.Pressure, portStatus, tankLabel, tankPressure, canister.ReleasePressure, - canister.ReleaseValve, canister.MinReleasePressure, canister.MaxReleasePressure)); - } + _adminLogger.Add(LogType.CanisterTankEjected, LogImpact.Medium, $"Player {ToPrettyString(args.Session.AttachedEntity.GetValueOrDefault()):player} ejected tank {ToPrettyString(container.ContainedEntities[0]):tank} from {ToPrettyString(uid):canister}"); + container.Remove(container.ContainedEntities[0]); + } - private void OnHoldingTankEjectMessage(EntityUid uid, GasCanisterComponent canister, GasCanisterHoldingTankEjectMessage args) - { - if (!EntityManager.TryGetComponent(uid, out ContainerManagerComponent? containerManager) - || !containerManager.TryGetContainer(canister.ContainerName, out var container)) - return; + private void OnCanisterChangeReleasePressure(EntityUid uid, GasCanisterComponent canister, GasCanisterChangeReleasePressureMessage args) + { + var pressure = Math.Clamp(args.Pressure, canister.MinReleasePressure, canister.MaxReleasePressure); - if (container.ContainedEntities.Count == 0) - return; + _adminLogger.Add(LogType.CanisterPressure, LogImpact.Medium, $"{ToPrettyString(args.Session.AttachedEntity.GetValueOrDefault()):player} set the release pressure on {ToPrettyString(uid):canister} to {args.Pressure}"); - _adminLogger.Add(LogType.CanisterTankEjected, LogImpact.Medium, $"Player {ToPrettyString(args.Session.AttachedEntity.GetValueOrDefault()):player} ejected tank {ToPrettyString(container.ContainedEntities[0]):tank} from {ToPrettyString(uid):canister}"); - container.Remove(container.ContainedEntities[0]); - } + canister.ReleasePressure = pressure; + DirtyUI(uid, canister); + } - private void OnCanisterChangeReleasePressure(EntityUid uid, GasCanisterComponent canister, GasCanisterChangeReleasePressureMessage args) + private void OnCanisterChangeReleaseValve(EntityUid uid, GasCanisterComponent canister, GasCanisterChangeReleaseValveMessage args) + { + var impact = LogImpact.High; + if (TryComp(uid, out var containerManager) + && containerManager.TryGetContainer(canister.ContainerName, out var container)) { - var pressure = Math.Clamp(args.Pressure, canister.MinReleasePressure, canister.MaxReleasePressure); + // filling a jetpack with plasma is less important than filling a room with it + impact = container.ContainedEntities.Count != 0 ? LogImpact.Medium : LogImpact.High; + } - _adminLogger.Add(LogType.CanisterPressure, LogImpact.Medium, $"{ToPrettyString(args.Session.AttachedEntity.GetValueOrDefault()):player} set the release pressure on {ToPrettyString(uid):canister} to {args.Pressure}"); + var containedGasDict = new Dictionary(); + var containedGasArray = Gas.GetValues(typeof(Gas)); - canister.ReleasePressure = pressure; - DirtyUI(uid, canister); + for (int i = 0; i < containedGasArray.Length; i++) + { + containedGasDict.Add((Gas)i, canister.Air.Moles[i]); } - private void OnCanisterChangeReleaseValve(EntityUid uid, GasCanisterComponent canister, GasCanisterChangeReleaseValveMessage args) - { - var impact = LogImpact.High; - if (EntityManager.TryGetComponent(uid, out ContainerManagerComponent? containerManager) - && containerManager.TryGetContainer(canister.ContainerName, out var container)) - impact = container.ContainedEntities.Count != 0 ? LogImpact.Medium : LogImpact.High; + _adminLogger.Add(LogType.CanisterValve, impact, $"{ToPrettyString(args.Session.AttachedEntity.GetValueOrDefault()):player} set the valve on {ToPrettyString(uid):canister} to {args.Valve:valveState} while it contained [{string.Join(", ", containedGasDict)}]"); - var containedGasDict = new Dictionary(); - var containedGasArray = Gas.GetValues(typeof(Gas)); + canister.ReleaseValve = args.Valve; + DirtyUI(uid, canister); + } - for (int i = 0; i < containedGasArray.Length; i++) - { - containedGasDict.Add((Gas)i, canister.Air.Moles[i]); - } + private void OnCanisterUpdated(EntityUid uid, GasCanisterComponent canister, AtmosDeviceUpdateEvent args) + { + _atmos.React(canister.Air, canister); - _adminLogger.Add(LogType.CanisterValve, impact, $"{ToPrettyString(args.Session.AttachedEntity.GetValueOrDefault()):player} set the valve on {ToPrettyString(uid):canister} to {args.Valve:valveState} while it contained [{string.Join(", ", containedGasDict)}]"); + if (!TryComp(uid, out var nodeContainer) + || !TryComp(uid, out var appearance)) + return; - canister.ReleaseValve = args.Valve; - DirtyUI(uid, canister); - } + if (!nodeContainer.TryGetNode(canister.PortName, out PortablePipeNode? portNode)) + return; - private void OnCanisterUpdated(EntityUid uid, GasCanisterComponent canister, AtmosDeviceUpdateEvent args) + if (portNode.NodeGroup is PipeNet {NodeCount: > 1} net) { - _atmosphereSystem.React(canister.Air, canister); + MixContainerWithPipeNet(canister.Air, net.Air); + } - if (!EntityManager.TryGetComponent(uid, out NodeContainerComponent? nodeContainer) - || !EntityManager.TryGetComponent(uid, out AppearanceComponent? appearance)) - return; + ContainerManagerComponent? containerManager = null; - if (!nodeContainer.TryGetNode(canister.PortName, out PortablePipeNode? portNode)) + // Release valve is open, release gas. + if (canister.ReleaseValve) + { + if (!TryComp(uid, out containerManager) + || !containerManager.TryGetContainer(canister.ContainerName, out var container)) return; - if (portNode.NodeGroup is PipeNet {NodeCount: > 1} net) + if (container.ContainedEntities.Count > 0) { - MixContainerWithPipeNet(canister.Air, net.Air); + var gasTank = Comp(container.ContainedEntities[0]); + _atmos.ReleaseGasTo(canister.Air, gasTank.Air, canister.ReleasePressure); } - - ContainerManagerComponent? containerManager = null; - - // Release valve is open, release gas. - if (canister.ReleaseValve) + else { - if (!EntityManager.TryGetComponent(uid, out containerManager) - || !containerManager.TryGetContainer(canister.ContainerName, out var container)) - return; - - if (container.ContainedEntities.Count > 0) - { - var gasTank = EntityManager.GetComponent(container.ContainedEntities[0]); - _atmosphereSystem.ReleaseGasTo(canister.Air, gasTank.Air, canister.ReleasePressure); - } - else - { - var environment = _atmosphereSystem.GetContainingMixture(uid, false, true); - _atmosphereSystem.ReleaseGasTo(canister.Air, environment, canister.ReleasePressure); - } + var environment = _atmos.GetContainingMixture(uid, false, true); + _atmos.ReleaseGasTo(canister.Air, environment, canister.ReleasePressure); } + } - // If last pressure is very close to the current pressure, do nothing. - if (MathHelper.CloseToPercent(canister.Air.Pressure, canister.LastPressure)) - return; + // If last pressure is very close to the current pressure, do nothing. + if (MathHelper.CloseToPercent(canister.Air.Pressure, canister.LastPressure)) + return; - DirtyUI(uid, canister, nodeContainer, containerManager); + DirtyUI(uid, canister, nodeContainer, containerManager); - canister.LastPressure = canister.Air.Pressure; + canister.LastPressure = canister.Air.Pressure; - if (canister.Air.Pressure < 10) - { - _appearanceSystem.SetData(uid, GasCanisterVisuals.PressureState, 0, appearance); - } - else if (canister.Air.Pressure < Atmospherics.OneAtmosphere) - { - _appearanceSystem.SetData(uid, GasCanisterVisuals.PressureState, 1, appearance); - } - else if (canister.Air.Pressure < (15 * Atmospherics.OneAtmosphere)) - { - _appearanceSystem.SetData(uid, GasCanisterVisuals.PressureState, 2, appearance); - } - else - { - _appearanceSystem.SetData(uid, GasCanisterVisuals.PressureState, 3, appearance); - } + if (canister.Air.Pressure < 10) + { + _appearance.SetData(uid, GasCanisterVisuals.PressureState, 0, appearance); } - - private void OnCanisterActivate(EntityUid uid, GasCanisterComponent component, ActivateInWorldEvent args) + else if (canister.Air.Pressure < Atmospherics.OneAtmosphere) { - if (!EntityManager.TryGetComponent(args.User, out ActorComponent? actor)) - return; - if (TryComp(uid, out var lockComponent) && lockComponent.Locked) - { - _popupSystem.PopupEntity(Loc.GetString("gas-canister-popup-denied"), uid, args.User); - if (component.AccessDeniedSound != null) - _audioSys.PlayPvs(component.AccessDeniedSound, uid); - return; - } - - _userInterfaceSystem.TryOpen(uid, GasCanisterUiKey.Key, actor.PlayerSession); - args.Handled = true; + _appearance.SetData(uid, GasCanisterVisuals.PressureState, 1, appearance); + } + else if (canister.Air.Pressure < (15 * Atmospherics.OneAtmosphere)) + { + _appearance.SetData(uid, GasCanisterVisuals.PressureState, 2, appearance); } + else + { + _appearance.SetData(uid, GasCanisterVisuals.PressureState, 3, appearance); + } + } + private void OnCanisterActivate(EntityUid uid, GasCanisterComponent component, ActivateInWorldEvent args) + { + if (!TryComp(args.User, out var actor)) + return; - private void OnCanisterInteractHand(EntityUid uid, GasCanisterComponent component, InteractHandEvent args) - { - if (!EntityManager.TryGetComponent(args.User, out ActorComponent? actor)) - return; - if (TryComp(uid, out var lockComponent) && lockComponent.Locked) - return; + if (CheckLocked(uid, component, args.User)) + return; - _userInterfaceSystem.TryOpen(uid, GasCanisterUiKey.Key, actor.PlayerSession); - args.Handled = true; - } + _ui.TryOpen(uid, GasCanisterUiKey.Key, actor.PlayerSession); + args.Handled = true; + } - private void OnCanisterInteractUsing(EntityUid canister, GasCanisterComponent component, InteractUsingEvent args) - { - var container = _containerSystem.EnsureContainer(canister, component.ContainerName); + private void OnCanisterInteractHand(EntityUid uid, GasCanisterComponent component, InteractHandEvent args) + { + if (!TryComp(args.User, out var actor)) + return; - // Container full. - if (container.ContainedEntity != null) - return; + if (CheckLocked(uid, component, args.User)) + return; - // Check the used item is valid... - if (!EntityManager.TryGetComponent(args.Used, out GasTankComponent? _)) - return; + _ui.TryOpen(uid, GasCanisterUiKey.Key, actor.PlayerSession); + args.Handled = true; + } - if (!_handsSystem.TryDropIntoContainer(args.User, args.Used, container)) - return; + private void OnCanisterInteractUsing(EntityUid uid, GasCanisterComponent component, InteractUsingEvent args) + { + var container = _container.EnsureContainer(uid, component.ContainerName); - _adminLogger.Add(LogType.CanisterTankInserted, LogImpact.Medium, $"Player {ToPrettyString(args.User):player} inserted tank {ToPrettyString(container.ContainedEntities[0]):tank} into {ToPrettyString(canister):canister}"); + // Container full. + if (container.ContainedEntity != null) + return; - args.Handled = true; - } + // Check the used item is valid... + if (!HasComp(args.Used)) + return; - private void OnCanisterContainerInserted(EntityUid uid, GasCanisterComponent component, EntInsertedIntoContainerMessage args) - { - if (args.Container.ID != component.ContainerName) - return; + // Preventing inserting a tank since if its locked you cant remove it. + if (CheckLocked(uid, component, args.User)) + return; - DirtyUI(uid, component); + if (!_hands.TryDropIntoContainer(args.User, args.Used, container)) + return; - _appearanceSystem.SetData(uid, GasCanisterVisuals.TankInserted, true); - } + _adminLogger.Add(LogType.CanisterTankInserted, LogImpact.Medium, $"Player {ToPrettyString(args.User):player} inserted tank {ToPrettyString(container.ContainedEntities[0]):tank} into {ToPrettyString(uid):canister}"); - private void OnCanisterContainerRemoved(EntityUid uid, GasCanisterComponent component, EntRemovedFromContainerMessage args) - { - if (args.Container.ID != component.ContainerName) - return; + args.Handled = true; + } - DirtyUI(uid, component); + private void OnCanisterContainerInserted(EntityUid uid, GasCanisterComponent component, EntInsertedIntoContainerMessage args) + { + if (args.Container.ID != component.ContainerName) + return; - _appearanceSystem.SetData(uid, GasCanisterVisuals.TankInserted, false); - } + DirtyUI(uid, component); - /// - /// Mix air from a gas container into a pipe net. - /// Useful for anything that uses connector ports. - /// - public void MixContainerWithPipeNet(GasMixture containerAir, GasMixture pipeNetAir) - { - var buffer = new GasMixture(pipeNetAir.Volume + containerAir.Volume); + _appearance.SetData(uid, GasCanisterVisuals.TankInserted, true); + } - _atmosphereSystem.Merge(buffer, pipeNetAir); - _atmosphereSystem.Merge(buffer, containerAir); + private void OnCanisterContainerRemoved(EntityUid uid, GasCanisterComponent component, EntRemovedFromContainerMessage args) + { + if (args.Container.ID != component.ContainerName) + return; - pipeNetAir.Clear(); - _atmosphereSystem.Merge(pipeNetAir, buffer); - pipeNetAir.Multiply(pipeNetAir.Volume / buffer.Volume); + DirtyUI(uid, component); - containerAir.Clear(); - _atmosphereSystem.Merge(containerAir, buffer); - containerAir.Multiply(containerAir.Volume / buffer.Volume); - } + _appearance.SetData(uid, GasCanisterVisuals.TankInserted, false); + } - private void CalculateCanisterPrice(EntityUid uid, GasCanisterComponent component, ref PriceCalculationEvent args) - { - args.Price += _atmosphereSystem.GetPrice(component.Air); - } + /// + /// Mix air from a gas container into a pipe net. + /// Useful for anything that uses connector ports. + /// + public void MixContainerWithPipeNet(GasMixture containerAir, GasMixture pipeNetAir) + { + var buffer = new GasMixture(pipeNetAir.Volume + containerAir.Volume); - /// - /// Returns the gas mixture for the gas analyzer - /// - private void OnAnalyzed(EntityUid uid, GasCanisterComponent component, GasAnalyzerScanEvent args) - { - args.GasMixtures = new Dictionary { {Name(uid), component.Air} }; - } + _atmos.Merge(buffer, pipeNetAir); + _atmos.Merge(buffer, containerAir); + + pipeNetAir.Clear(); + _atmos.Merge(pipeNetAir, buffer); + pipeNetAir.Multiply(pipeNetAir.Volume / buffer.Volume); + + containerAir.Clear(); + _atmos.Merge(containerAir, buffer); + containerAir.Multiply(containerAir.Volume / buffer.Volume); + } + + private void CalculateCanisterPrice(EntityUid uid, GasCanisterComponent component, ref PriceCalculationEvent args) + { + args.Price += _atmos.GetPrice(component.Air); + } - private void OnLockToggled(EntityUid uid, GasCanisterComponent component, ref LockToggledEvent args) + /// + /// Returns the gas mixture for the gas analyzer + /// + private void OnAnalyzed(EntityUid uid, GasCanisterComponent component, GasAnalyzerScanEvent args) + { + args.GasMixtures = new Dictionary { {Name(uid), component.Air} }; + } + + private void OnLockToggled(EntityUid uid, GasCanisterComponent component, ref LockToggledEvent args) + { + _appearance.SetData(uid, GasCanisterVisuals.Locked, args.Locked); + } + + /// + /// Check if the canister is locked, playing its sound and popup if so. + /// + /// + /// True if locked, false otherwise. + /// + private bool CheckLocked(EntityUid uid, GasCanisterComponent comp, EntityUid user) + { + if (TryComp(uid, out var lockComp) && lockComp.Locked) { - _appearanceSystem.SetData(uid, GasCanisterVisuals.Locked, args.Locked); + _popup.PopupEntity(Loc.GetString("gas-canister-popup-denied"), uid, user); + if (comp.AccessDeniedSound != null) + { + _audio.PlayPvs(comp.AccessDeniedSound, uid); + } + + return true; } + + return false; } } From f513cc9ba5dc2cfcf003556ed0610f357615e20c Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 15 Jun 2023 08:04:23 -0400 Subject: [PATCH 255/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index a391fa05e7..0e6a928a8c 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: Slava0135 - changes: - - {message: APCs now show correct charge and state, type: Fix} - id: 3509 - time: '2023-04-23T08:22:09.0000000+00:00' - author: metalgearsloth changes: - {message: Update the salvage expedition song to the final version., type: Tweak} @@ -2916,3 +2911,9 @@ Entries: - {message: Changed sprites, type: Tweak} id: 4008 time: '2023-06-15T11:55:07.0000000+00:00' +- author: deltanedas + changes: + - {message: Fixed being able to insert tanks/jetpacks into locked gas canisters., + type: Fix} + id: 4009 + time: '2023-06-15T12:03:20.0000000+00:00' From 6ce6aa117f489221b4a9f63419f39632df1c36fc Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Thu, 15 Jun 2023 12:35:11 +0000 Subject: [PATCH 256/474] make mice not eat uranium bananium and pills (#17110) Co-authored-by: deltanedas <@deltanedas:kde.org> Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> --- Content.Server/NPC/Systems/NPCUtilitySystem.cs | 11 ++++++----- .../Nutrition/Components/BadFoodComponent.cs | 12 ++++++++++++ .../Nutrition/Components/IgnoreBadFoodComponent.cs | 12 ++++++++++++ Resources/Prototypes/Entities/Mobs/NPCs/animals.yml | 11 +++++++++++ .../Entities/Objects/Materials/Sheets/other.yml | 1 + .../Entities/Objects/Materials/materials.yml | 1 + .../Entities/Objects/Specific/chemistry.yml | 1 + 7 files changed, 44 insertions(+), 5 deletions(-) create mode 100644 Content.Server/Nutrition/Components/BadFoodComponent.cs create mode 100644 Content.Server/Nutrition/Components/IgnoreBadFoodComponent.cs diff --git a/Content.Server/NPC/Systems/NPCUtilitySystem.cs b/Content.Server/NPC/Systems/NPCUtilitySystem.cs index a9e93062e8..8f681b5d8a 100644 --- a/Content.Server/NPC/Systems/NPCUtilitySystem.cs +++ b/Content.Server/NPC/Systems/NPCUtilitySystem.cs @@ -121,6 +121,7 @@ private float GetScore(IUtilityCurve curve, float conScore) private float GetScore(NPCBlackboard blackboard, EntityUid targetUid, UtilityConsideration consideration) { + var owner = blackboard.GetValue(NPCBlackboard.Owner); switch (consideration) { case FoodValueCon: @@ -128,11 +129,14 @@ private float GetScore(NPCBlackboard blackboard, EntityUid targetUid, UtilityCon if (!TryComp(targetUid, out var food)) return 0f; - var owner = blackboard.GetValue(NPCBlackboard.Owner); - if (!_food.IsDigestibleBy(owner, targetUid, food)) return 0f; + // no mouse don't eat the uranium-235 + var avoidBadFood = !HasComp(owner); + if (avoidBadFood && HasComp(targetUid)) + return 0f; + return 1f; } case TargetAccessibleCon: @@ -160,7 +164,6 @@ private float GetScore(NPCBlackboard blackboard, EntityUid targetUid, UtilityCon } case TargetDistanceCon: { - var owner = blackboard.GetValue(NPCBlackboard.Owner); var radius = blackboard.GetValueOrDefault(NPCBlackboard.VisionRadius, EntityManager); if (!TryComp(targetUid, out var targetXform) || @@ -183,14 +186,12 @@ private float GetScore(NPCBlackboard blackboard, EntityUid targetUid, UtilityCon } case TargetInLOSCon: { - var owner = blackboard.GetValue(NPCBlackboard.Owner); var radius = blackboard.GetValueOrDefault(NPCBlackboard.VisionRadius, EntityManager); return ExamineSystemShared.InRangeUnOccluded(owner, targetUid, radius + 0.5f, null) ? 1f : 0f; } case TargetInLOSOrCurrentCon: { - var owner = blackboard.GetValue(NPCBlackboard.Owner); var radius = blackboard.GetValueOrDefault(NPCBlackboard.VisionRadius, EntityManager); const float bufferRange = 0.5f; diff --git a/Content.Server/Nutrition/Components/BadFoodComponent.cs b/Content.Server/Nutrition/Components/BadFoodComponent.cs new file mode 100644 index 0000000000..901575e01c --- /dev/null +++ b/Content.Server/Nutrition/Components/BadFoodComponent.cs @@ -0,0 +1,12 @@ +using Content.Server.Nutrition.EntitySystems; + +namespace Content.Server.Nutrition.Components; + +/// +/// This component prevents NPC mobs like mice from wanting to eat something that is edible but is not exactly food. +/// Including but not limited to: uranium, death pills, insulation +/// +[RegisterComponent, Access(typeof(FoodSystem))] +public sealed class BadFoodComponent : Component +{ +} diff --git a/Content.Server/Nutrition/Components/IgnoreBadFoodComponent.cs b/Content.Server/Nutrition/Components/IgnoreBadFoodComponent.cs new file mode 100644 index 0000000000..734af7000f --- /dev/null +++ b/Content.Server/Nutrition/Components/IgnoreBadFoodComponent.cs @@ -0,0 +1,12 @@ +using Content.Server.Nutrition.EntitySystems; + +namespace Content.Server.Nutrition.Components; + +/// +/// This component allows NPC mobs to eat food with BadFoodComponent. +/// See MobMouseAdmeme for usage. +/// +[RegisterComponent, Access(typeof(FoodSystem))] +public sealed class IgnoreBadFoodComponent : Component +{ +} diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index f8d12e98a4..5991705bf2 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -945,6 +945,17 @@ - type: Puller needsHands: true +- type: entity + parent: MobMouse + id: MobMouseAdmeme + suffix: Admeme + components: + # allow admeme mouse to eat pills + - type: IgnoreBadFood + # intended for swarms that eat pills so only temporary + - type: TimedDespawn + lifetime: 60 + - type: entity parent: MobMouse id: MobMouse1 diff --git a/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml b/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml index b2168a7d45..a1985928e0 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml @@ -156,6 +156,7 @@ - type: Material - type: Food transferAmount: 10 + - type: BadFood - type: PhysicalComposition materialComposition: Uranium: 100 diff --git a/Resources/Prototypes/Entities/Objects/Materials/materials.yml b/Resources/Prototypes/Entities/Objects/Materials/materials.yml index 52934a0e8e..84ef08037a 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/materials.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/materials.yml @@ -323,6 +323,7 @@ - banana - type: Food trash: TrashBananiumPeel + - type: BadFood - type: SolutionContainerManager solutions: food: diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml index 6c444fc459..cea368e988 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml @@ -320,6 +320,7 @@ transferAmount: null eatMessage: food-swallow useSound: /Audio/Items/pill.ogg + - type: BadFood - type: FlavorProfile ignoreReagents: [] - type: SolutionContainerManager From 652a2e22f3c177704903f0ce9cf493646404ba24 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 15 Jun 2023 08:36:15 -0400 Subject: [PATCH 257/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 0e6a928a8c..9d4d056bfc 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: metalgearsloth - changes: - - {message: Update the salvage expedition song to the final version., type: Tweak} - id: 3510 - time: '2023-04-23T09:13:38.0000000+00:00' - author: vulppine changes: - {message: 'We have restricted the access to skin color dyes to our fellow undead @@ -2917,3 +2912,9 @@ Entries: type: Fix} id: 4009 time: '2023-06-15T12:03:20.0000000+00:00' +- author: deltanedas + changes: + - {message: CentCom's Ministry Of Truth has trained station mice to stop eating + uranium., type: Fix} + id: 4010 + time: '2023-06-15T12:35:11.0000000+00:00' From 23b6d87a7927e6876d749d65f199c3b98859754c Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Fri, 16 Jun 2023 01:01:26 +1000 Subject: [PATCH 258/474] Hotfix NPC pathfinding (#17360) --- Content.Server/NPC/Pathfinding/PathfindingSystem.Grid.cs | 9 +++++---- Resources/Maps/Dungeon/Templates/17x17.yml | 2 -- Resources/Maps/Dungeon/Templates/17x5.yml | 2 -- Resources/Maps/Dungeon/Templates/3x5.yml | 2 -- Resources/Maps/Dungeon/Templates/3x7.yml | 2 -- Resources/Maps/Dungeon/Templates/5x11.yml | 2 -- Resources/Maps/Dungeon/Templates/5x17.yml | 2 -- Resources/Maps/Dungeon/Templates/5x5.yml | 2 -- Resources/Maps/Dungeon/Templates/LargeArea2.yml | 2 -- Resources/Maps/Dungeon/Templates/LargeArea3.yml | 2 -- Resources/Maps/Dungeon/Templates/LargeArea4.yml | 2 -- Resources/Maps/Dungeon/Templates/MediumArea2.yml | 2 -- Resources/Maps/Dungeon/Templates/MediumArea3.yml | 2 -- Resources/Maps/Dungeon/Templates/MediumArea4.yml | 2 -- Resources/Maps/Dungeon/experiment.yml | 2 -- Resources/Maps/Dungeon/lava_brig.yml | 2 -- Resources/Maps/Dungeon/template.yml | 2 -- Resources/Maps/Misc/terminal.yml | 2 -- Resources/Maps/Salvage/asteroid-base.yml | 2 -- Resources/Maps/Salvage/cargo-1.yml | 2 -- Resources/Maps/Salvage/medium-1.yml | 2 -- Resources/Maps/Salvage/medium-crashed-shuttle.yml | 2 -- Resources/Maps/Salvage/medium-dock.yml | 2 -- Resources/Maps/Salvage/medium-library.yml | 2 -- Resources/Maps/Salvage/medium-pet-hospital.yml | 2 -- .../Maps/Salvage/medium-ruined-emergency-shuttle.yml | 2 -- Resources/Maps/Salvage/medium-silent-orchestra.yml | 2 -- Resources/Maps/Salvage/medium-vault-1.yml | 2 -- Resources/Maps/Salvage/ruin-cargo-salvage.yml | 2 -- Resources/Maps/Salvage/small-1.yml | 2 -- Resources/Maps/Salvage/small-2.yml | 2 -- Resources/Maps/Salvage/small-3.yml | 2 -- Resources/Maps/Salvage/small-a-1.yml | 2 -- Resources/Maps/Salvage/small-ship-1.yml | 2 -- Resources/Maps/Salvage/tick-colony.yml | 2 -- Resources/Maps/Salvage/wh-salvage.yml | 2 -- Resources/Maps/Shuttles/arrivals.yml | 2 -- Resources/Maps/Shuttles/emergency.yml | 2 -- Resources/Maps/Shuttles/emergency_box.yml | 2 -- Resources/Maps/Shuttles/emergency_courser.yml | 2 -- Resources/Maps/Shuttles/emergency_lox.yml | 2 -- Resources/Maps/Shuttles/emergency_raven.yml | 2 -- Resources/Maps/Shuttles/emergency_transit.yml | 2 -- Resources/Maps/Shuttles/escape_pod_small.yml | 2 -- Resources/Maps/Shuttles/mining.yml | 2 -- Resources/Maps/Shuttles/pirate.yml | 2 -- Resources/Maps/Shuttles/striker.yml | 2 -- Resources/Maps/Shuttles/wizard.yml | 2 -- Resources/Maps/Test/dev_map.yml | 2 -- Resources/Maps/aspid.yml | 4 ---- Resources/Maps/bagel.yml | 4 ---- Resources/Maps/barratry.yml | 4 ---- Resources/Maps/box.yml | 4 ---- Resources/Maps/centcomm.yml | 2 -- Resources/Maps/cluster.yml | 2 -- Resources/Maps/fland.yml | 2 -- Resources/Maps/infiltrator.yml | 2 -- Resources/Maps/marathon.yml | 2 -- Resources/Maps/meta.yml | 2 -- Resources/Maps/moose.yml | 6 ------ Resources/Maps/nukieplanet.yml | 2 -- Resources/Maps/omega.yml | 2 -- Resources/Maps/origin.yml | 2 -- 63 files changed, 5 insertions(+), 140 deletions(-) diff --git a/Content.Server/NPC/Pathfinding/PathfindingSystem.Grid.cs b/Content.Server/NPC/Pathfinding/PathfindingSystem.Grid.cs index 323bb4ea6b..b80513fd78 100644 --- a/Content.Server/NPC/Pathfinding/PathfindingSystem.Grid.cs +++ b/Content.Server/NPC/Pathfinding/PathfindingSystem.Grid.cs @@ -100,11 +100,12 @@ private void UpdateGrid() // Still run even when paused. var query = AllEntityQuery(); - while (query.MoveNext(out var comp)) + while (query.MoveNext(out var uid, out var comp)) { + // TODO: Dump all this shit and just do it live it's probably fast enough. if (comp.DirtyChunks.Count == 0 || curTime < comp.NextUpdate || - !TryComp(comp.Owner, out var mapGridComp)) + !TryComp(uid, out var mapGridComp)) { continue; } @@ -119,7 +120,7 @@ private void UpdateGrid() foreach (var origin in comp.DirtyChunks) { - var chunk = GetChunk(origin, comp.Owner, comp); + var chunk = GetChunk(origin, uid, comp); dirt[idx] = chunk; idx++; } @@ -352,7 +353,7 @@ private void DirtyChunk(EntityUid gridUid, EntityCoordinates coordinates) var currentTime = _timing.CurTime; - if (comp.NextUpdate < currentTime) + if (comp.NextUpdate < currentTime && !MetaData(gridUid).EntityPaused) comp.NextUpdate = currentTime + UpdateCooldown; var chunks = comp.DirtyChunks; diff --git a/Resources/Maps/Dungeon/Templates/17x17.yml b/Resources/Maps/Dungeon/Templates/17x17.yml index 8d639ce09d..aa7dad94b3 100644 --- a/Resources/Maps/Dungeon/Templates/17x17.yml +++ b/Resources/Maps/Dungeon/Templates/17x17.yml @@ -36,8 +36,6 @@ entities: - type: OccluderTree - type: Shuttle - - nextUpdate: 56.3512981 - type: GridPathfinding - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity diff --git a/Resources/Maps/Dungeon/Templates/17x5.yml b/Resources/Maps/Dungeon/Templates/17x5.yml index fb6733edb5..a04325c4d0 100644 --- a/Resources/Maps/Dungeon/Templates/17x5.yml +++ b/Resources/Maps/Dungeon/Templates/17x5.yml @@ -30,8 +30,6 @@ entities: - type: OccluderTree - type: Shuttle - - nextUpdate: 56.3512981 - type: GridPathfinding - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity diff --git a/Resources/Maps/Dungeon/Templates/3x5.yml b/Resources/Maps/Dungeon/Templates/3x5.yml index 8326898f9d..b5df97b6db 100644 --- a/Resources/Maps/Dungeon/Templates/3x5.yml +++ b/Resources/Maps/Dungeon/Templates/3x5.yml @@ -27,8 +27,6 @@ entities: - type: OccluderTree - type: Shuttle - - nextUpdate: 0.45 - type: GridPathfinding - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity diff --git a/Resources/Maps/Dungeon/Templates/3x7.yml b/Resources/Maps/Dungeon/Templates/3x7.yml index 8326898f9d..b5df97b6db 100644 --- a/Resources/Maps/Dungeon/Templates/3x7.yml +++ b/Resources/Maps/Dungeon/Templates/3x7.yml @@ -27,8 +27,6 @@ entities: - type: OccluderTree - type: Shuttle - - nextUpdate: 0.45 - type: GridPathfinding - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity diff --git a/Resources/Maps/Dungeon/Templates/5x11.yml b/Resources/Maps/Dungeon/Templates/5x11.yml index 18e8cf12c0..efc2c53f6b 100644 --- a/Resources/Maps/Dungeon/Templates/5x11.yml +++ b/Resources/Maps/Dungeon/Templates/5x11.yml @@ -36,8 +36,6 @@ entities: - type: OccluderTree - type: Shuttle - - nextUpdate: 27.154826 - type: GridPathfinding - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity diff --git a/Resources/Maps/Dungeon/Templates/5x17.yml b/Resources/Maps/Dungeon/Templates/5x17.yml index 3dc1f2db23..8e70eed026 100644 --- a/Resources/Maps/Dungeon/Templates/5x17.yml +++ b/Resources/Maps/Dungeon/Templates/5x17.yml @@ -30,8 +30,6 @@ entities: - type: OccluderTree - type: Shuttle - - nextUpdate: 78.7387785 - type: GridPathfinding - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity diff --git a/Resources/Maps/Dungeon/Templates/5x5.yml b/Resources/Maps/Dungeon/Templates/5x5.yml index 7cad818426..fbd8511ecc 100644 --- a/Resources/Maps/Dungeon/Templates/5x5.yml +++ b/Resources/Maps/Dungeon/Templates/5x5.yml @@ -27,8 +27,6 @@ entities: - type: OccluderTree - type: Shuttle - - nextUpdate: 207.9113983 - type: GridPathfinding - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity diff --git a/Resources/Maps/Dungeon/Templates/LargeArea2.yml b/Resources/Maps/Dungeon/Templates/LargeArea2.yml index 57d60d5b06..314b3e6f96 100644 --- a/Resources/Maps/Dungeon/Templates/LargeArea2.yml +++ b/Resources/Maps/Dungeon/Templates/LargeArea2.yml @@ -37,8 +37,6 @@ entities: - type: OccluderTree - type: Shuttle - - nextUpdate: 56.3512981 - type: GridPathfinding - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity diff --git a/Resources/Maps/Dungeon/Templates/LargeArea3.yml b/Resources/Maps/Dungeon/Templates/LargeArea3.yml index 26ceff0593..f214f02d95 100644 --- a/Resources/Maps/Dungeon/Templates/LargeArea3.yml +++ b/Resources/Maps/Dungeon/Templates/LargeArea3.yml @@ -37,8 +37,6 @@ entities: - type: OccluderTree - type: Shuttle - - nextUpdate: 56.3512981 - type: GridPathfinding - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity diff --git a/Resources/Maps/Dungeon/Templates/LargeArea4.yml b/Resources/Maps/Dungeon/Templates/LargeArea4.yml index 6ac31c42bd..b45f3e5725 100644 --- a/Resources/Maps/Dungeon/Templates/LargeArea4.yml +++ b/Resources/Maps/Dungeon/Templates/LargeArea4.yml @@ -37,8 +37,6 @@ entities: - type: OccluderTree - type: Shuttle - - nextUpdate: 56.3512981 - type: GridPathfinding - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity diff --git a/Resources/Maps/Dungeon/Templates/MediumArea2.yml b/Resources/Maps/Dungeon/Templates/MediumArea2.yml index a7a0fe39a5..281e8d8fd7 100644 --- a/Resources/Maps/Dungeon/Templates/MediumArea2.yml +++ b/Resources/Maps/Dungeon/Templates/MediumArea2.yml @@ -31,8 +31,6 @@ entities: - type: OccluderTree - type: Shuttle - - nextUpdate: 78.7387785 - type: GridPathfinding - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity diff --git a/Resources/Maps/Dungeon/Templates/MediumArea3.yml b/Resources/Maps/Dungeon/Templates/MediumArea3.yml index 6d3aa7fc57..213910fd9f 100644 --- a/Resources/Maps/Dungeon/Templates/MediumArea3.yml +++ b/Resources/Maps/Dungeon/Templates/MediumArea3.yml @@ -31,8 +31,6 @@ entities: - type: OccluderTree - type: Shuttle - - nextUpdate: 78.7387785 - type: GridPathfinding - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity diff --git a/Resources/Maps/Dungeon/Templates/MediumArea4.yml b/Resources/Maps/Dungeon/Templates/MediumArea4.yml index 2ef980d5c9..e447e156d8 100644 --- a/Resources/Maps/Dungeon/Templates/MediumArea4.yml +++ b/Resources/Maps/Dungeon/Templates/MediumArea4.yml @@ -31,8 +31,6 @@ entities: - type: OccluderTree - type: Shuttle - - nextUpdate: 78.7387785 - type: GridPathfinding - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity diff --git a/Resources/Maps/Dungeon/experiment.yml b/Resources/Maps/Dungeon/experiment.yml index b1b6daf69c..7e9d8f9b4a 100644 --- a/Resources/Maps/Dungeon/experiment.yml +++ b/Resources/Maps/Dungeon/experiment.yml @@ -116,8 +116,6 @@ entities: ind: 2,1 tiles: FgAAABYAAABeAAAARAAAAUQAAAFRAAAAUQAAAD4AAABEAAADRAAAAl4AAABEAAABXgAAAEQAAAFEAAACPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAABRAAACUQAAAFEAAAM+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAUQAAAFEAAAJRAAACPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAFEAAANRAAACUQAAAz4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAABRAAACOgAAADoAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAUQAAADoAAAA6AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAWAAADFgAAABYAAAAWAAACFgAAABYAAAIWAAADFgAAAxYAAAE+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAFgAAAxYAAAEWAAABFgAAAxYAAAEWAAABFgAAARYAAAAWAAABPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAA== type: MapGrid - - nextUpdate: 14529.6397815 - type: GridPathfinding - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity diff --git a/Resources/Maps/Dungeon/lava_brig.yml b/Resources/Maps/Dungeon/lava_brig.yml index b767df5ae1..5b4c409dec 100644 --- a/Resources/Maps/Dungeon/lava_brig.yml +++ b/Resources/Maps/Dungeon/lava_brig.yml @@ -93,8 +93,6 @@ entities: ind: 2,3 tiles: PgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - - nextUpdate: 45513.2014368 - type: GridPathfinding - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity diff --git a/Resources/Maps/Dungeon/template.yml b/Resources/Maps/Dungeon/template.yml index 358b3a4048..6f7bb6ee45 100644 --- a/Resources/Maps/Dungeon/template.yml +++ b/Resources/Maps/Dungeon/template.yml @@ -63,8 +63,6 @@ entities: ind: 1,3 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - - nextUpdate: 171.4322096 - type: GridPathfinding - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity diff --git a/Resources/Maps/Misc/terminal.yml b/Resources/Maps/Misc/terminal.yml index 637d63aade..6c2ccb5d3e 100644 --- a/Resources/Maps/Misc/terminal.yml +++ b/Resources/Maps/Misc/terminal.yml @@ -61,8 +61,6 @@ entities: type: BecomesStation - type: OccluderTree - type: Shuttle - - nextUpdate: 5103.5217478 - type: GridPathfinding - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity diff --git a/Resources/Maps/Salvage/asteroid-base.yml b/Resources/Maps/Salvage/asteroid-base.yml index 1677520882..c2b83a97ce 100644 --- a/Resources/Maps/Salvage/asteroid-base.yml +++ b/Resources/Maps/Salvage/asteroid-base.yml @@ -370,8 +370,6 @@ entities: type: GridAtmosphere - type: OccluderTree - type: Shuttle - - nextUpdate: 964.6959636 - type: GridPathfinding - type: RadiationGridResistance - type: GasTileOverlay - type: SpreaderGrid diff --git a/Resources/Maps/Salvage/cargo-1.yml b/Resources/Maps/Salvage/cargo-1.yml index b72f5c8af0..b39209669f 100644 --- a/Resources/Maps/Salvage/cargo-1.yml +++ b/Resources/Maps/Salvage/cargo-1.yml @@ -173,8 +173,6 @@ entities: type: GridAtmosphere - type: OccluderTree - type: Shuttle - - nextUpdate: 473.3523396 - type: GridPathfinding - type: RadiationGridResistance - type: GasTileOverlay - type: SpreaderGrid diff --git a/Resources/Maps/Salvage/medium-1.yml b/Resources/Maps/Salvage/medium-1.yml index 6b5be65908..2512a5c841 100644 --- a/Resources/Maps/Salvage/medium-1.yml +++ b/Resources/Maps/Salvage/medium-1.yml @@ -134,8 +134,6 @@ entities: type: GridAtmosphere - type: OccluderTree - type: Shuttle - - nextUpdate: 737.3128624 - type: GridPathfinding - chunkCollection: version: 2 nodes: diff --git a/Resources/Maps/Salvage/medium-crashed-shuttle.yml b/Resources/Maps/Salvage/medium-crashed-shuttle.yml index b65f3b0d96..992be3e4d7 100644 --- a/Resources/Maps/Salvage/medium-crashed-shuttle.yml +++ b/Resources/Maps/Salvage/medium-crashed-shuttle.yml @@ -268,8 +268,6 @@ entities: type: GridAtmosphere - type: OccluderTree - type: Shuttle - - nextUpdate: 746.2662117 - type: GridPathfinding - type: RadiationGridResistance - type: GasTileOverlay - type: SpreaderGrid diff --git a/Resources/Maps/Salvage/medium-dock.yml b/Resources/Maps/Salvage/medium-dock.yml index 07ba2c4949..7900df87e6 100644 --- a/Resources/Maps/Salvage/medium-dock.yml +++ b/Resources/Maps/Salvage/medium-dock.yml @@ -159,8 +159,6 @@ entities: type: GridAtmosphere - type: OccluderTree - type: Shuttle - - nextUpdate: 606.4818471 - type: GridPathfinding - type: RadiationGridResistance - type: GasTileOverlay - type: SpreaderGrid diff --git a/Resources/Maps/Salvage/medium-library.yml b/Resources/Maps/Salvage/medium-library.yml index 09bd0518d9..6c4bdeddb1 100644 --- a/Resources/Maps/Salvage/medium-library.yml +++ b/Resources/Maps/Salvage/medium-library.yml @@ -165,8 +165,6 @@ entities: type: DecalGrid - type: OccluderTree - type: Shuttle - - nextUpdate: 3237.1863067 - type: GridPathfinding - type: RadiationGridResistance - type: SpreaderGrid - proto: AlwaysPoweredLightLED diff --git a/Resources/Maps/Salvage/medium-pet-hospital.yml b/Resources/Maps/Salvage/medium-pet-hospital.yml index 01ee156237..406cd8b49f 100644 --- a/Resources/Maps/Salvage/medium-pet-hospital.yml +++ b/Resources/Maps/Salvage/medium-pet-hospital.yml @@ -349,8 +349,6 @@ entities: type: GridAtmosphere - type: OccluderTree - type: Shuttle - - nextUpdate: 1079.6224832 - type: GridPathfinding - type: RadiationGridResistance - type: GasTileOverlay - type: SpreaderGrid diff --git a/Resources/Maps/Salvage/medium-ruined-emergency-shuttle.yml b/Resources/Maps/Salvage/medium-ruined-emergency-shuttle.yml index c45bbe050c..dc79316307 100644 --- a/Resources/Maps/Salvage/medium-ruined-emergency-shuttle.yml +++ b/Resources/Maps/Salvage/medium-ruined-emergency-shuttle.yml @@ -48,8 +48,6 @@ entities: type: DecalGrid - type: OccluderTree - type: Shuttle - - nextUpdate: 332.1826128 - type: GridPathfinding - type: RadiationGridResistance - type: SpreaderGrid - proto: AirlockGlass diff --git a/Resources/Maps/Salvage/medium-silent-orchestra.yml b/Resources/Maps/Salvage/medium-silent-orchestra.yml index 299b878151..f7136472e9 100644 --- a/Resources/Maps/Salvage/medium-silent-orchestra.yml +++ b/Resources/Maps/Salvage/medium-silent-orchestra.yml @@ -104,8 +104,6 @@ entities: type: DecalGrid - type: OccluderTree - type: Shuttle - - nextUpdate: 688.3296285 - type: GridPathfinding - type: RadiationGridResistance - type: SpreaderGrid - proto: AccordionInstrument diff --git a/Resources/Maps/Salvage/medium-vault-1.yml b/Resources/Maps/Salvage/medium-vault-1.yml index f0671a43ab..fa3a37713d 100644 --- a/Resources/Maps/Salvage/medium-vault-1.yml +++ b/Resources/Maps/Salvage/medium-vault-1.yml @@ -179,8 +179,6 @@ entities: type: DecalGrid - type: OccluderTree - type: Shuttle - - nextUpdate: 1384.2053934 - type: GridPathfinding - type: RadiationGridResistance - version: 2 data: diff --git a/Resources/Maps/Salvage/ruin-cargo-salvage.yml b/Resources/Maps/Salvage/ruin-cargo-salvage.yml index 637912ccdb..bff445bff9 100644 --- a/Resources/Maps/Salvage/ruin-cargo-salvage.yml +++ b/Resources/Maps/Salvage/ruin-cargo-salvage.yml @@ -632,8 +632,6 @@ entities: type: GridAtmosphere - type: OccluderTree - type: Shuttle - - nextUpdate: 3546.4070314 - type: GridPathfinding - type: RadiationGridResistance - type: GasTileOverlay - type: SpreaderGrid diff --git a/Resources/Maps/Salvage/small-1.yml b/Resources/Maps/Salvage/small-1.yml index 8e27aed5b3..d84f6ef2be 100644 --- a/Resources/Maps/Salvage/small-1.yml +++ b/Resources/Maps/Salvage/small-1.yml @@ -41,8 +41,6 @@ entities: type: Gravity - type: OccluderTree - type: Shuttle - - nextUpdate: 600.983382 - type: GridPathfinding - chunkCollection: version: 2 nodes: diff --git a/Resources/Maps/Salvage/small-2.yml b/Resources/Maps/Salvage/small-2.yml index fcb5fd20d3..a7463d8165 100644 --- a/Resources/Maps/Salvage/small-2.yml +++ b/Resources/Maps/Salvage/small-2.yml @@ -42,8 +42,6 @@ entities: type: Gravity - type: OccluderTree - type: Shuttle - - nextUpdate: 298.7280431 - type: GridPathfinding - chunkCollection: version: 2 nodes: [] diff --git a/Resources/Maps/Salvage/small-3.yml b/Resources/Maps/Salvage/small-3.yml index c6fecd3b77..014c8e625b 100644 --- a/Resources/Maps/Salvage/small-3.yml +++ b/Resources/Maps/Salvage/small-3.yml @@ -45,8 +45,6 @@ entities: type: DecalGrid - type: OccluderTree - type: Shuttle - - nextUpdate: 74.0335825 - type: GridPathfinding - type: RadiationGridResistance - version: 2 data: diff --git a/Resources/Maps/Salvage/small-a-1.yml b/Resources/Maps/Salvage/small-a-1.yml index ddc3ac187a..02602f67bf 100644 --- a/Resources/Maps/Salvage/small-a-1.yml +++ b/Resources/Maps/Salvage/small-a-1.yml @@ -109,8 +109,6 @@ entities: type: DecalGrid - type: OccluderTree - type: Shuttle - - nextUpdate: 141.4743149 - type: GridPathfinding - type: GasTileOverlay - type: SpreaderGrid - proto: AsteroidRockMining diff --git a/Resources/Maps/Salvage/small-ship-1.yml b/Resources/Maps/Salvage/small-ship-1.yml index e140b0793d..58dace1542 100644 --- a/Resources/Maps/Salvage/small-ship-1.yml +++ b/Resources/Maps/Salvage/small-ship-1.yml @@ -72,8 +72,6 @@ entities: type: GridAtmosphere - type: OccluderTree - type: Shuttle - - nextUpdate: 119.6593293 - type: GridPathfinding - type: GasTileOverlay - type: SpreaderGrid - proto: CapacitorStockPart diff --git a/Resources/Maps/Salvage/tick-colony.yml b/Resources/Maps/Salvage/tick-colony.yml index 37d66bb84b..3e1285a024 100644 --- a/Resources/Maps/Salvage/tick-colony.yml +++ b/Resources/Maps/Salvage/tick-colony.yml @@ -296,8 +296,6 @@ entities: type: GridAtmosphere - type: OccluderTree - type: Shuttle - - nextUpdate: 739.7009161 - type: GridPathfinding - type: GasTileOverlay - type: RadiationGridResistance - type: SpreaderGrid diff --git a/Resources/Maps/Salvage/wh-salvage.yml b/Resources/Maps/Salvage/wh-salvage.yml index 2eaedfa3b1..845f1c46ed 100644 --- a/Resources/Maps/Salvage/wh-salvage.yml +++ b/Resources/Maps/Salvage/wh-salvage.yml @@ -392,8 +392,6 @@ entities: type: GridAtmosphere - type: OccluderTree - type: Shuttle - - nextUpdate: 1345.3379186 - type: GridPathfinding - type: RadiationGridResistance - type: GasTileOverlay - type: SpreaderGrid diff --git a/Resources/Maps/Shuttles/arrivals.yml b/Resources/Maps/Shuttles/arrivals.yml index 77fd551b69..8fde7db9e8 100644 --- a/Resources/Maps/Shuttles/arrivals.yml +++ b/Resources/Maps/Shuttles/arrivals.yml @@ -42,8 +42,6 @@ entities: type: BecomesStation - type: OccluderTree - type: Shuttle - - nextUpdate: 763.4245734 - type: GridPathfinding - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity diff --git a/Resources/Maps/Shuttles/emergency.yml b/Resources/Maps/Shuttles/emergency.yml index 9a0784a052..86feeef51d 100644 --- a/Resources/Maps/Shuttles/emergency.yml +++ b/Resources/Maps/Shuttles/emergency.yml @@ -520,8 +520,6 @@ entities: type: GridAtmosphere - type: OccluderTree - type: Shuttle - - nextUpdate: 255.7997092 - type: GridPathfinding - type: RadiationGridResistance - shakeTimes: 10 type: GravityShake diff --git a/Resources/Maps/Shuttles/emergency_box.yml b/Resources/Maps/Shuttles/emergency_box.yml index 2ef77e3e71..2a7e68bffc 100644 --- a/Resources/Maps/Shuttles/emergency_box.yml +++ b/Resources/Maps/Shuttles/emergency_box.yml @@ -652,8 +652,6 @@ entities: type: GridAtmosphere - type: OccluderTree - type: Shuttle - - nextUpdate: 4601.3489489 - type: GridPathfinding - type: RadiationGridResistance - shakeTimes: 10 type: GravityShake diff --git a/Resources/Maps/Shuttles/emergency_courser.yml b/Resources/Maps/Shuttles/emergency_courser.yml index e011a50e65..515083128b 100644 --- a/Resources/Maps/Shuttles/emergency_courser.yml +++ b/Resources/Maps/Shuttles/emergency_courser.yml @@ -49,8 +49,6 @@ entities: - type: OccluderTree - type: Shuttle - - nextUpdate: 68.8656601 - type: GridPathfinding - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity diff --git a/Resources/Maps/Shuttles/emergency_lox.yml b/Resources/Maps/Shuttles/emergency_lox.yml index ae83bb90e0..4a78b5d98d 100644 --- a/Resources/Maps/Shuttles/emergency_lox.yml +++ b/Resources/Maps/Shuttles/emergency_lox.yml @@ -669,8 +669,6 @@ entities: type: GridAtmosphere - type: OccluderTree - type: Shuttle - - nextUpdate: 6334.3237167 - type: GridPathfinding - type: RadiationGridResistance - shakeTimes: 10 type: GravityShake diff --git a/Resources/Maps/Shuttles/emergency_raven.yml b/Resources/Maps/Shuttles/emergency_raven.yml index 8c06735b63..fa24dfb066 100644 --- a/Resources/Maps/Shuttles/emergency_raven.yml +++ b/Resources/Maps/Shuttles/emergency_raven.yml @@ -57,8 +57,6 @@ entities: type: Fixtures - type: OccluderTree - type: Shuttle - - nextUpdate: 4321.2844759 - type: GridPathfinding - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity diff --git a/Resources/Maps/Shuttles/emergency_transit.yml b/Resources/Maps/Shuttles/emergency_transit.yml index 3a8b0cbd57..93feb563c9 100644 --- a/Resources/Maps/Shuttles/emergency_transit.yml +++ b/Resources/Maps/Shuttles/emergency_transit.yml @@ -49,8 +49,6 @@ entities: - nextUpdate: -307.6002253 type: SpreaderGrid - type: Shuttle - - nextUpdate: 6051.0947718 - type: GridPathfinding - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity diff --git a/Resources/Maps/Shuttles/escape_pod_small.yml b/Resources/Maps/Shuttles/escape_pod_small.yml index 9113378034..d6d9fbdae6 100644 --- a/Resources/Maps/Shuttles/escape_pod_small.yml +++ b/Resources/Maps/Shuttles/escape_pod_small.yml @@ -42,8 +42,6 @@ entities: type: BecomesStation - type: OccluderTree - type: Shuttle - - nextUpdate: 88.8784752 - type: GridPathfinding - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity diff --git a/Resources/Maps/Shuttles/mining.yml b/Resources/Maps/Shuttles/mining.yml index 135e138cb4..9e24956fe0 100644 --- a/Resources/Maps/Shuttles/mining.yml +++ b/Resources/Maps/Shuttles/mining.yml @@ -512,8 +512,6 @@ entities: type: GridAtmosphere - type: OccluderTree - type: Shuttle - - nextUpdate: 2733.1896172 - type: GridPathfinding - type: RadiationGridResistance - type: SpreaderGrid - shakeTimes: 10 diff --git a/Resources/Maps/Shuttles/pirate.yml b/Resources/Maps/Shuttles/pirate.yml index 4c9f374579..3f7882feeb 100644 --- a/Resources/Maps/Shuttles/pirate.yml +++ b/Resources/Maps/Shuttles/pirate.yml @@ -340,8 +340,6 @@ entities: type: GridAtmosphere - type: OccluderTree - type: Shuttle - - nextUpdate: 1678.8452663 - type: GridPathfinding - type: RadiationGridResistance - nextShake: -4201.5220081 shakeTimes: 10 diff --git a/Resources/Maps/Shuttles/striker.yml b/Resources/Maps/Shuttles/striker.yml index 38b8cf7441..e603abeb35 100644 --- a/Resources/Maps/Shuttles/striker.yml +++ b/Resources/Maps/Shuttles/striker.yml @@ -43,8 +43,6 @@ entities: type: Fixtures - type: OccluderTree - type: Shuttle - - nextUpdate: 4665.7478885 - type: GridPathfinding - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity diff --git a/Resources/Maps/Shuttles/wizard.yml b/Resources/Maps/Shuttles/wizard.yml index 43e4bc4972..1db92011d1 100644 --- a/Resources/Maps/Shuttles/wizard.yml +++ b/Resources/Maps/Shuttles/wizard.yml @@ -59,8 +59,6 @@ entities: type: Fixtures - type: OccluderTree - type: Shuttle - - nextUpdate: 8309.0552128 - type: GridPathfinding - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity diff --git a/Resources/Maps/Test/dev_map.yml b/Resources/Maps/Test/dev_map.yml index 75eaa906fe..8c2bb6bfb9 100644 --- a/Resources/Maps/Test/dev_map.yml +++ b/Resources/Maps/Test/dev_map.yml @@ -77,8 +77,6 @@ entities: type: DecalGrid - type: OccluderTree - type: Shuttle - - nextUpdate: 3888.4058032 - type: GridPathfinding - type: RadiationGridResistance - nextShake: 0 shakeTimes: 10 diff --git a/Resources/Maps/aspid.yml b/Resources/Maps/aspid.yml index 4286fa64b8..07a35467eb 100644 --- a/Resources/Maps/aspid.yml +++ b/Resources/Maps/aspid.yml @@ -260,8 +260,6 @@ entities: type: Fixtures - type: OccluderTree - type: Shuttle - - nextUpdate: 132705.6201203 - type: GridPathfinding - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity @@ -8638,8 +8636,6 @@ entities: type: Fixtures - type: OccluderTree - type: Shuttle - - nextUpdate: 97465.7475215 - type: GridPathfinding - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity diff --git a/Resources/Maps/bagel.yml b/Resources/Maps/bagel.yml index a48b18272b..b2a2ae46da 100644 --- a/Resources/Maps/bagel.yml +++ b/Resources/Maps/bagel.yml @@ -8771,8 +8771,6 @@ entities: type: GridAtmosphere - type: OccluderTree - type: Shuttle - - nextUpdate: 2145.1086759 - type: GridPathfinding - nextUpdate: 1 type: SpreaderGrid - type: RadiationGridResistance @@ -8819,8 +8817,6 @@ entities: type: Fixtures - type: OccluderTree - type: Shuttle - - nextUpdate: 0.45 - type: GridPathfinding - nextUpdate: 1 type: SpreaderGrid - gravityShakeSound: !type:SoundPathSpecifier diff --git a/Resources/Maps/barratry.yml b/Resources/Maps/barratry.yml index 571a89d3b2..2ac564284e 100644 --- a/Resources/Maps/barratry.yml +++ b/Resources/Maps/barratry.yml @@ -238,8 +238,6 @@ entities: type: Fixtures - type: OccluderTree - type: Shuttle - - nextUpdate: 15801.3235625 - type: GridPathfinding - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity @@ -10649,8 +10647,6 @@ entities: - nextUpdate: 0 type: SpreaderGrid - type: Shuttle - - nextUpdate: 1770.7593829 - type: GridPathfinding - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity diff --git a/Resources/Maps/box.yml b/Resources/Maps/box.yml index 581a3077f1..d09b974e35 100644 --- a/Resources/Maps/box.yml +++ b/Resources/Maps/box.yml @@ -7529,8 +7529,6 @@ entities: type: Joint - type: OccluderTree - type: Shuttle - - nextUpdate: 5417.8279988 - type: GridPathfinding - type: RadiationGridResistance - nextShake: 0 shakeTimes: 10 @@ -7583,8 +7581,6 @@ entities: type: Joint - type: OccluderTree - type: Shuttle - - nextUpdate: 47.0665638 - type: GridPathfinding - type: RadiationGridResistance - nextUpdate: 0 type: SpreaderGrid diff --git a/Resources/Maps/centcomm.yml b/Resources/Maps/centcomm.yml index a1826e5364..169ea5f0ad 100644 --- a/Resources/Maps/centcomm.yml +++ b/Resources/Maps/centcomm.yml @@ -2619,8 +2619,6 @@ entities: type: GridAtmosphere - type: OccluderTree - type: Shuttle - - nextUpdate: 539.6480757 - type: GridPathfinding - type: RadiationGridResistance - nextShake: 0 shakeTimes: 10 diff --git a/Resources/Maps/cluster.yml b/Resources/Maps/cluster.yml index 9f82ab6a60..dbe683207a 100644 --- a/Resources/Maps/cluster.yml +++ b/Resources/Maps/cluster.yml @@ -193,8 +193,6 @@ entities: type: Fixtures - type: OccluderTree - type: Shuttle - - nextUpdate: 15845.118538 - type: GridPathfinding - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity diff --git a/Resources/Maps/fland.yml b/Resources/Maps/fland.yml index 3cae154c01..82ccec973f 100644 --- a/Resources/Maps/fland.yml +++ b/Resources/Maps/fland.yml @@ -465,8 +465,6 @@ entities: type: BecomesStation - type: OccluderTree - type: Shuttle - - nextUpdate: 27256.4729399 - type: GridPathfinding - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity diff --git a/Resources/Maps/infiltrator.yml b/Resources/Maps/infiltrator.yml index 9344a6d77d..aaf706212a 100644 --- a/Resources/Maps/infiltrator.yml +++ b/Resources/Maps/infiltrator.yml @@ -446,8 +446,6 @@ entities: type: IFF - type: OccluderTree - type: Shuttle - - nextUpdate: 2319.9379624 - type: GridPathfinding - type: RadiationGridResistance - nextShake: 0 shakeTimes: 10 diff --git a/Resources/Maps/marathon.yml b/Resources/Maps/marathon.yml index 06377c177f..af96358760 100644 --- a/Resources/Maps/marathon.yml +++ b/Resources/Maps/marathon.yml @@ -7673,8 +7673,6 @@ entities: type: BecomesStation - type: OccluderTree - type: Shuttle - - nextUpdate: 4567.2250735 - type: GridPathfinding - type: RadiationGridResistance - nextShake: 0 shakeTimes: 10 diff --git a/Resources/Maps/meta.yml b/Resources/Maps/meta.yml index d8be98d67c..c678a618ac 100644 --- a/Resources/Maps/meta.yml +++ b/Resources/Maps/meta.yml @@ -7642,8 +7642,6 @@ entities: type: BecomesStation - type: OccluderTree - type: Shuttle - - nextUpdate: 7724.1283525 - type: GridPathfinding - type: GasTileOverlay - type: RadiationGridResistance - nextUpdate: 0 diff --git a/Resources/Maps/moose.yml b/Resources/Maps/moose.yml index 0bed731589..6afbc5de0e 100644 --- a/Resources/Maps/moose.yml +++ b/Resources/Maps/moose.yml @@ -266,8 +266,6 @@ entities: - type: OccluderTree - type: Shuttle - - nextUpdate: 3754.1875118 - type: GridPathfinding - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity @@ -5579,8 +5577,6 @@ entities: - type: OccluderTree - type: Shuttle - - nextUpdate: 0.45 - type: GridPathfinding - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity @@ -5687,8 +5683,6 @@ entities: - type: OccluderTree - type: Shuttle - - nextUpdate: 0.45 - type: GridPathfinding - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity diff --git a/Resources/Maps/nukieplanet.yml b/Resources/Maps/nukieplanet.yml index 3da0686768..7d13aa0966 100644 --- a/Resources/Maps/nukieplanet.yml +++ b/Resources/Maps/nukieplanet.yml @@ -1530,8 +1530,6 @@ entities: - type: RadiationGridResistance - type: OccluderTree - type: Shuttle - - nextUpdate: 4156.5052092 - type: GridPathfinding - shakeTimes: 10 type: GravityShake - type: GasTileOverlay diff --git a/Resources/Maps/omega.yml b/Resources/Maps/omega.yml index 28147477fa..e52625f867 100644 --- a/Resources/Maps/omega.yml +++ b/Resources/Maps/omega.yml @@ -4018,8 +4018,6 @@ entities: type: BecomesStation - type: OccluderTree - type: Shuttle - - nextUpdate: 7616.8355992 - type: GridPathfinding - type: RadiationGridResistance - nextShake: 0 shakeTimes: 10 diff --git a/Resources/Maps/origin.yml b/Resources/Maps/origin.yml index d4202c1cfa..929537e46f 100644 --- a/Resources/Maps/origin.yml +++ b/Resources/Maps/origin.yml @@ -9504,8 +9504,6 @@ entities: type: BecomesStation - type: OccluderTree - type: Shuttle - - nextUpdate: 6223.0410787 - type: GridPathfinding - type: RadiationGridResistance - nextShake: 0 shakeTimes: 10 From f8888b09608811c1f3378a88de2837b57bf25d2c Mon Sep 17 00:00:00 2001 From: Vordenburg <114301317+Vordenburg@users.noreply.github.com> Date: Thu, 15 Jun 2023 15:18:38 -0400 Subject: [PATCH 259/474] Allow specific entities to bypass DoAfter delays (#17349) * Allow specific entities to bypass DoAfter delays This adds the InstantDoAfters tag to the admin ghost for mappers. * Add specific player prototype for InteractionTest --- .../Tests/Interaction/InteractionTest.cs | 33 +++++++++++++++++-- Content.Shared/DoAfter/SharedDoAfterSystem.cs | 5 ++- .../Entities/Mobs/Player/admin_ghost.yml | 1 + Resources/Prototypes/tags.yml | 3 ++ 4 files changed, 39 insertions(+), 3 deletions(-) diff --git a/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs b/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs index decaacbeea..6b8760bf59 100644 --- a/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs +++ b/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs @@ -38,7 +38,7 @@ namespace Content.IntegrationTests.Tests.Interaction; [FixtureLifeCycle(LifeCycle.InstancePerTestCase)] public abstract partial class InteractionTest { - protected virtual string PlayerPrototype => "AdminObserver"; + protected virtual string PlayerPrototype => "MobInteractionTestObserver"; protected PairTracker PairTracker = default!; protected TestMapData MapData = default!; @@ -118,7 +118,36 @@ public abstract partial class InteractionTest [SetUp] public virtual async Task Setup() { - PairTracker = await PoolManager.GetServerClient(new PoolSettings()); + const string TestPrototypes = @" +- type: entity + id: MobInteractionTestObserver + name: observer + noSpawn: true + save: false + description: Boo! + components: + - type: Access + groups: + - AllAccess + - type: Body + prototype: Aghost + - type: DoAfter + - type: Ghost + canInteract: true + - type: Hands + - type: Mind + - type: Stripping + - type: Tag + tags: + - CanPilot + - BypassInteractionRangeChecks + - type: Thieving + stripTimeReduction: 9999 + stealthy: true + - type: UserInterface +"; + + PairTracker = await PoolManager.GetServerClient(new PoolSettings{ExtraPrototypes = TestPrototypes}); // server dependencies SEntMan = Server.ResolveDependency(); diff --git a/Content.Shared/DoAfter/SharedDoAfterSystem.cs b/Content.Shared/DoAfter/SharedDoAfterSystem.cs index 2a045ffb0d..a6e5ceb7f2 100644 --- a/Content.Shared/DoAfter/SharedDoAfterSystem.cs +++ b/Content.Shared/DoAfter/SharedDoAfterSystem.cs @@ -4,6 +4,7 @@ using Content.Shared.Damage; using Content.Shared.Hands.Components; using Content.Shared.Mobs; +using Content.Shared.Tag; using Robust.Shared.GameStates; using Robust.Shared.Serialization; using Robust.Shared.Timing; @@ -16,6 +17,7 @@ public abstract partial class SharedDoAfterSystem : EntitySystem [Dependency] protected readonly IGameTiming GameTiming = default!; [Dependency] private readonly ActionBlockerSystem _actionBlocker = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; + [Dependency] private readonly TagSystem _tag = default!; /// /// We'll use an excess time so stuff like finishing effects can show. @@ -221,7 +223,8 @@ public bool TryStartDoAfter(DoAfterArgs args, [NotNullWhen(true)] out DoAfterId? if (args.AttemptFrequency == AttemptFrequency.StartAndEnd && !TryAttemptEvent(doAfter)) return false; - if (args.Delay <= TimeSpan.Zero) + if (args.Delay <= TimeSpan.Zero || + _tag.HasTag(args.User, "InstantDoAfters")) { RaiseDoAfterEvents(doAfter, comp); // We don't store instant do-afters. This is just a lazy way of hiding them from client-side visuals. diff --git a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml index ba06c90a7c..adde069c85 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml @@ -9,6 +9,7 @@ maxZoom: 8.916104, 8.916104 - type: Tag tags: + - InstantDoAfters - CanPilot - BypassInteractionRangeChecks - type: Input diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index 87a6d1e7a1..1c255b80a0 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -409,6 +409,9 @@ - type: Tag id: Ingot +- type: Tag + id: InstantDoAfters + - type: Tag id: IntercomElectronics From 704b908f738508db612efd221648d6cd6cc39bdd Mon Sep 17 00:00:00 2001 From: Kevin Zheng Date: Thu, 15 Jun 2023 12:19:25 -0700 Subject: [PATCH 260/474] Give female dwarves female laughs (#17362) --- .../Prototypes/Entities/Mobs/Species/dwarf.yml | 2 +- .../Prototypes/Voice/speech_emote_sounds.yml | 17 +++++++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml b/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml index af55f07f18..9a7b4deadf 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml @@ -45,7 +45,7 @@ - type: Vocal sounds: Male: UnisexDwarf - Female: UnisexDwarf + Female: FemaleDwarf Unsexed: UnisexDwarf - type: ReplacementAccent accent: dwarf diff --git a/Resources/Prototypes/Voice/speech_emote_sounds.yml b/Resources/Prototypes/Voice/speech_emote_sounds.yml index 8ed1d72847..38fe905174 100644 --- a/Resources/Prototypes/Voice/speech_emote_sounds.yml +++ b/Resources/Prototypes/Voice/speech_emote_sounds.yml @@ -138,6 +138,23 @@ variation: 0.125 pitchscale: 0.75 +- type: emoteSounds + id: FemaleDwarf + sounds: + Scream: + collection: FemaleScreams + Laugh: + collection: FemaleLaugh + Honk: + collection: BikeHorn + Crying: + collection: FemaleCry + Whistle: + collection: Whistles + params: + variation: 0.125 + pitchscale: 0.75 + # body emotes - type: emoteSounds id: GeneralBodyEmotes From db1e9ed8d70e28843a3ecbefd3afd451d3a699e1 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 15 Jun 2023 15:20:31 -0400 Subject: [PATCH 261/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 9d4d056bfc..3bda439df2 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: vulppine - changes: - - {message: 'We have restricted the access to skin color dyes to our fellow undead - crewmembers. Now their cracked, broken skin will show that flourishing rot that - screams ''kill me, now''!', type: Fix} - id: 3511 - time: '2023-04-23T09:16:59.0000000+00:00' - author: metalgearsloth changes: - {message: Fix follower eye rotation not being reset on map changes., type: Fix} @@ -2918,3 +2911,8 @@ Entries: uranium., type: Fix} id: 4010 time: '2023-06-15T12:35:11.0000000+00:00' +- author: notafet + changes: + - {message: Female dwarves now have female laughs., type: Tweak} + id: 4011 + time: '2023-06-15T19:19:26.0000000+00:00' From 18837c305d9b4e78dd0e561e9fecfe60a3cf7d34 Mon Sep 17 00:00:00 2001 From: Vordenburg <114301317+Vordenburg@users.noreply.github.com> Date: Thu, 15 Jun 2023 15:21:52 -0400 Subject: [PATCH 262/474] Fix action bar not filling with mappables (#17218) * Fix action bar not filling with mappables * Update Content.Client/UserInterface/Systems/Actions/ActionUIController.cs --------- Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> --- Content.Client/Decals/DecalPlacementSystem.cs | 1 + Content.Client/Mapping/MappingSystem.cs | 3 +++ .../Systems/Actions/ActionUIController.cs | 13 ++++++++++++- 3 files changed, 16 insertions(+), 1 deletion(-) diff --git a/Content.Client/Decals/DecalPlacementSystem.cs b/Content.Client/Decals/DecalPlacementSystem.cs index 7673378595..09f9718338 100644 --- a/Content.Client/Decals/DecalPlacementSystem.cs +++ b/Content.Client/Decals/DecalPlacementSystem.cs @@ -157,6 +157,7 @@ private void OnFillSlot(FillActionSlotEvent ev) DisplayName = $"{_decalId} ({_decalColor.ToHex()}, {(int) _decalAngle.Degrees})", // non-unique actions may be considered duplicates when saving/loading. Icon = decalProto.Sprite, Repeat = true, + ClientExclusive = true, CheckCanAccess = false, CheckCanInteract = false, Range = -1, diff --git a/Content.Client/Mapping/MappingSystem.cs b/Content.Client/Mapping/MappingSystem.cs index 8a5100925d..7f29f4e784 100644 --- a/Content.Client/Mapping/MappingSystem.cs +++ b/Content.Client/Mapping/MappingSystem.cs @@ -84,6 +84,7 @@ private void OnFillActionSlot(FillActionSlotEvent ev) ev.Action = new InstantAction() { + ClientExclusive = true, CheckCanInteract = false, Event = actionEvent, DisplayName = Loc.GetString(tileDef.Name), @@ -97,6 +98,7 @@ private void OnFillActionSlot(FillActionSlotEvent ev) { ev.Action = new InstantAction() { + ClientExclusive = true, CheckCanInteract = false, Event = actionEvent, DisplayName = "action-name-mapping-erase", @@ -111,6 +113,7 @@ private void OnFillActionSlot(FillActionSlotEvent ev) ev.Action = new InstantAction() { + ClientExclusive = true, CheckCanInteract = false, Event = actionEvent, DisplayName = actionEvent.EntityType, diff --git a/Content.Client/UserInterface/Systems/Actions/ActionUIController.cs b/Content.Client/UserInterface/Systems/Actions/ActionUIController.cs index d325009912..d89b834033 100644 --- a/Content.Client/UserInterface/Systems/Actions/ActionUIController.cs +++ b/Content.Client/UserInterface/Systems/Actions/ActionUIController.cs @@ -668,7 +668,18 @@ private void OnActionPressed(GUIBoundKeyEventArgs args, ActionButton button) { if (args.Function == EngineKeyFunctions.UIClick) { - _menuDragHelper.MouseDown(button); + if (button.Action == null) + { + var ev = new FillActionSlotEvent(); + EntityManager.EventBus.RaiseEvent(EventSource.Local, ev); + if (ev.Action != null) + SetAction(button, ev.Action); + } + else + { + _menuDragHelper.MouseDown(button); + } + args.Handle(); } else if (args.Function == EngineKeyFunctions.UIRightClick) From 39a42559ac7364ac519312505b4135f8cc053923 Mon Sep 17 00:00:00 2001 From: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> Date: Thu, 15 Jun 2023 20:52:49 -0400 Subject: [PATCH 263/474] Ice anomaly buff (anti-box maneuvers) (#17293) --- .../Components/ProjectileAnomalyComponent.cs | 28 +++++------ .../Effects/ProjectileAnomalySystem.cs | 46 +++++++++++-------- .../Weapons/Guns/Projectiles/magic.yml | 2 +- .../Structures/Specific/anomalies.yml | 6 +-- 4 files changed, 45 insertions(+), 37 deletions(-) diff --git a/Content.Server/Anomaly/Components/ProjectileAnomalyComponent.cs b/Content.Server/Anomaly/Components/ProjectileAnomalyComponent.cs index 60354e6915..af395fd817 100644 --- a/Content.Server/Anomaly/Components/ProjectileAnomalyComponent.cs +++ b/Content.Server/Anomaly/Components/ProjectileAnomalyComponent.cs @@ -6,33 +6,33 @@ namespace Content.Server.Anomaly.Components; [RegisterComponent] public sealed class ProjectileAnomalyComponent : Component { - /// + /// /// The prototype of the projectile that will be shot when the anomaly pulses /// - [DataField("projectilePrototype", required: true, customTypeSerializer: typeof(PrototypeIdSerializer))] + [DataField("projectilePrototype", required: true, customTypeSerializer: typeof(PrototypeIdSerializer)), ViewVariables(VVAccess.ReadWrite)] public string ProjectilePrototype = default!; /// - /// The MAXIMUM speed can travel + /// The speed can travel /// - [DataField("maxProjectileSpeed")] - public float MaxProjectileSpeed = 30f; + [DataField("projectileSpeed"), ViewVariables(VVAccess.ReadWrite)] + public float ProjectileSpeed = 30f; /// - /// The MAXIMUM number of projectiles shot per pulse + /// The minimum number of projectiles shot per pulse /// - [DataField("maxProjectiles")] - public int MaxProjectiles = 5; + [DataField("minProjectiles"), ViewVariables(VVAccess.ReadWrite)] + public int MinProjectiles = 2; /// - /// The MAXIMUM range for targeting entities + /// The MAXIMUM number of projectiles shot per pulse /// - [DataField("projectileRange")] - public float ProjectileRange = 50f; + [DataField("maxProjectiles"), ViewVariables(VVAccess.ReadWrite)] + public int MaxProjectiles = 9; /// - /// Chance that a non sentient entity will be targeted, value must be between 0.0-1.0 + /// The MAXIMUM range for targeting entities /// - [DataField("targetNonSentientChance")] - public float TargetNonSentientChance = 0.5f; + [DataField("projectileRange"), ViewVariables(VVAccess.ReadWrite)] + public float ProjectileRange = 50f; } diff --git a/Content.Server/Anomaly/Effects/ProjectileAnomalySystem.cs b/Content.Server/Anomaly/Effects/ProjectileAnomalySystem.cs index 18454dfde9..8b03c425b8 100644 --- a/Content.Server/Anomaly/Effects/ProjectileAnomalySystem.cs +++ b/Content.Server/Anomaly/Effects/ProjectileAnomalySystem.cs @@ -1,10 +1,12 @@ +using System.Linq; using Content.Server.Anomaly.Components; -using Content.Server.Mind.Components; using Content.Server.Weapons.Ranged.Systems; using Content.Shared.Anomaly.Components; +using Content.Shared.Mobs.Components; using Content.Shared.Projectiles; using Robust.Server.GameObjects; using Robust.Shared.Map; +using Robust.Shared.Physics; using Robust.Shared.Random; namespace Content.Server.Anomaly.Effects; @@ -38,29 +40,36 @@ private void OnSupercritical(EntityUid uid, ProjectileAnomalyComponent component private void ShootProjectilesAtEntities(EntityUid uid, ProjectileAnomalyComponent component, float severity) { - var xform = Transform(uid); - var projectilesShot = 0; - var range = component.ProjectileRange * severity; - var mobQuery = GetEntityQuery(); - - foreach (var entity in _lookup.GetEntitiesInRange(uid, range, LookupFlags.Dynamic)) + var projectileCount = (int) MathF.Round(MathHelper.Lerp(component.MinProjectiles, component.MaxProjectiles, severity)); + var xformQuery = GetEntityQuery(); + var mobQuery = GetEntityQuery(); + var xform = xformQuery.GetComponent(uid); + + var inRange = _lookup.GetEntitiesInRange(uid, component.ProjectileRange * severity, LookupFlags.Dynamic).ToList(); + _random.Shuffle(inRange); + var priority = new List(); + foreach (var entity in inRange) { - if (projectilesShot >= component.MaxProjectiles * severity) - return; + if (mobQuery.HasComponent(entity)) + priority.Add(entity); + } - // Sentient entities are more likely to be shot at than non sentient - if (!mobQuery.HasComponent(entity) && !_random.Prob(component.TargetNonSentientChance)) - continue; + Logger.Debug($"shots: {projectileCount}"); + while (projectileCount > 0) + { + Logger.Debug($"{projectileCount}"); + var target = priority.Any() + ? _random.PickAndTake(priority) + : _random.Pick(inRange); - var targetCoords = Transform(entity).Coordinates.Offset(_random.NextVector2(-1, 1)); + var targetCoords = xformQuery.GetComponent(target).Coordinates.Offset(_random.NextVector2(0.5f)); ShootProjectile( uid, component, xform.Coordinates, targetCoords, - severity - ); - projectilesShot++; + severity); + projectileCount--; } } @@ -69,8 +78,7 @@ private void ShootProjectile( ProjectileAnomalyComponent component, EntityCoordinates coords, EntityCoordinates targetCoords, - float severity - ) + float severity) { var mapPos = coords.ToMap(EntityManager, _xform); @@ -86,6 +94,6 @@ float severity comp.Damage *= severity; - _gunSystem.ShootProjectile(ent, direction, Vector2.Zero, uid, uid, component.MaxProjectileSpeed * severity); + _gunSystem.ShootProjectile(ent, direction, Vector2.Zero, uid, uid, component.ProjectileSpeed); } } diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/magic.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/magic.yml index e1628c3a36..06479d26ae 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/magic.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/magic.yml @@ -139,7 +139,7 @@ types: Piercing: 20 Cold: 20 - Structural: 40 + Structural: 50 - type: entity parent: ProjectilePolyboltBase diff --git a/Resources/Prototypes/Entities/Structures/Specific/anomalies.yml b/Resources/Prototypes/Entities/Structures/Specific/anomalies.yml index 6c0e780757..93b65691d7 100644 --- a/Resources/Prototypes/Entities/Structures/Specific/anomalies.yml +++ b/Resources/Prototypes/Entities/Structures/Specific/anomalies.yml @@ -215,9 +215,9 @@ Cold: 10 - type: ExplosionAnomaly supercriticalExplosion: Cryo - explosionTotalIntensity: 1000 - explosionDropoff: 1 - explosionMaxTileIntensity: 10 + explosionTotalIntensity: 300 + explosionDropoff: 2 + explosionMaxTileIntensity: 20 - type: ProjectileAnomaly projectilePrototype: ProjectileIcicle targetNonSentientChance: 0.1 From e22607a5875415e8027f89caf04b3f65b40da789 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 15 Jun 2023 20:53:54 -0400 Subject: [PATCH 264/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 3bda439df2..17303b8bbc 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: metalgearsloth - changes: - - {message: Fix follower eye rotation not being reset on map changes., type: Fix} - id: 3512 - time: '2023-04-23T10:01:16.0000000+00:00' - author: Endecc changes: - {message: 'Centcomm has actually TURNED ON the motors of the Advanced Mop, allowing @@ -2916,3 +2911,12 @@ Entries: - {message: Female dwarves now have female laughs., type: Tweak} id: 4011 time: '2023-06-15T19:19:26.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: Ice anomaly projectiles do increased structural damage., type: Tweak} + - {message: Ice anomalies now shoot more projectiles with increased accuracy on + living targets., type: Tweak} + - {message: Decreased explosive power from the ice anomaly supercritical event., + type: Tweak} + id: 4012 + time: '2023-06-16T00:52:49.0000000+00:00' From 553ac1434451b22d9ed0f474512478bd160cc68a Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Fri, 16 Jun 2023 12:42:09 +1000 Subject: [PATCH 265/474] Update submodule to 0.127.1.0 (#17365) --- RobustToolbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RobustToolbox b/RobustToolbox index e11cef3335..05e38e0880 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit e11cef333555821ac0e3ea7bed65f557e1fd5704 +Subproject commit 05e38e0880942bf035ccff0211a41ed7477a101b From bec641515daa50c8f24d2157c627e05cdffd41b6 Mon Sep 17 00:00:00 2001 From: Nairod <110078045+Nairodian@users.noreply.github.com> Date: Thu, 15 Jun 2023 21:46:38 -0500 Subject: [PATCH 266/474] Color Coded Anchor Examine Text (#17363) --- Resources/Locale/en-US/examine/examine-system.ftl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Resources/Locale/en-US/examine/examine-system.ftl b/Resources/Locale/en-US/examine/examine-system.ftl index 96a904dbfd..243ba57257 100644 --- a/Resources/Locale/en-US/examine/examine-system.ftl +++ b/Resources/Locale/en-US/examine/examine-system.ftl @@ -6,6 +6,6 @@ examine-system-cant-see-entity = You can't make out whatever that is. examine-verb-name = Basic -examinable-anchored = It is anchored to the floor +examinable-anchored = It is [color=darkgreen]anchored[/color] to the floor -examinable-unanchored = It is unanchored from the floor +examinable-unanchored = It is [color=darkred]unanchored[/color] from the floor From 0e06e01abd1d204fcb1ba24418128da6d116167a Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 15 Jun 2023 22:47:42 -0400 Subject: [PATCH 267/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 17303b8bbc..54c738be13 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,13 +1,4 @@ Entries: -- author: Endecc - changes: - - {message: 'Centcomm has actually TURNED ON the motors of the Advanced Mop, allowing - it to actually be an upgrade Janitors will want!', type: Tweak} - - {message: 'To accommodate for this actual running motor, the plastic cost for - the Advanced Mop at the lathe has been increased from 100 > 400 to reinforce - the structure', type: Tweak} - id: 3513 - time: '2023-04-23T10:17:21.0000000+00:00' - author: deltanedas changes: - {message: Space Gru has returned the stars he stole and is very sorry., type: Fix} @@ -2920,3 +2911,9 @@ Entries: type: Tweak} id: 4012 time: '2023-06-16T00:52:49.0000000+00:00' +- author: Nairodian + changes: + - {message: Changed anchored and unanchored examine text to be green and red respectfully., + type: Tweak} + id: 4013 + time: '2023-06-16T02:46:39.0000000+00:00' From f7e4a69b65b30572018891ac1c393054998d5a7c Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Fri, 16 Jun 2023 13:56:59 +1000 Subject: [PATCH 268/474] Move PKA to a tech (#17043) --- .../Locale/en-US/research/technologies.ftl | 1 + Resources/Maps/origin.yml | 14 ---------- .../Catalog/Fills/Lockers/cargo.yml | 2 -- .../VendingMachines/Inventories/salvage.yml | 1 - .../Entities/Structures/Machines/lathe.yml | 3 +++ .../Prototypes/Recipes/Lathes/devices.yml | 27 +++++++++++++++++++ Resources/Prototypes/Research/industrial.yml | 15 +++++++++++ 7 files changed, 46 insertions(+), 17 deletions(-) diff --git a/Resources/Locale/en-US/research/technologies.ftl b/Resources/Locale/en-US/research/technologies.ftl index 9a6a6ddca1..f44c240795 100644 --- a/Resources/Locale/en-US/research/technologies.ftl +++ b/Resources/Locale/en-US/research/technologies.ftl @@ -4,6 +4,7 @@ research-discipline-biochemical = Biochemical research-discipline-experimental = Experimental research-discipline-civilian-services = Civilian Services +research-technology-salvage-weapons = Salvage weapons research-technology-salvage-equipment = Salvage Equipment research-technology-advanced-powercells = Advanced Powercells research-technology-compact-power = Compact Power diff --git a/Resources/Maps/origin.yml b/Resources/Maps/origin.yml index 929537e46f..e993b2e29c 100644 --- a/Resources/Maps/origin.yml +++ b/Resources/Maps/origin.yml @@ -217575,20 +217575,6 @@ entities: - pos: 31.586092,32.47933 parent: 2 type: Transform -- proto: WeaponProtoKineticAccelerator - entities: - - uid: 30107 - components: - - pos: -36.73277,27.512495 - parent: 2 - type: Transform - - uid: 30108 - components: - - pos: -47.53973,38.643734 - parent: 2 - type: Transform - - nextFire: 1226.6534384 - type: Gun - proto: WeaponRevolverDeckard entities: - uid: 30109 diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/cargo.yml b/Resources/Prototypes/Catalog/Fills/Lockers/cargo.yml index 434894366c..3c37d416d8 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/cargo.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/cargo.yml @@ -14,7 +14,6 @@ # - id: ClothingEyesGlassesMeson - id: ClothingBeltUtilityFilled - id: SurvivalKnife - - id: WeaponProtoKineticAccelerator - type: entity id: LockerSalvageSpecialistFilled @@ -27,4 +26,3 @@ # - id: ClothingEyesGlassesMeson - id: ClothingBeltUtilityFilled - id: SurvivalKnife - - id: WeaponProtoKineticAccelerator diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/salvage.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/salvage.yml index 960a6a78f9..51700a9015 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/salvage.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/salvage.yml @@ -9,6 +9,5 @@ Floodlight: 2 HandheldGPSBasic: 2 RadioHandheld: 2 - WeaponProtoKineticAccelerator: 2 WeaponCrusher: 2 WeaponCrusherDagger: 2 diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index 639cabd5f1..e6210a75c7 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -244,7 +244,10 @@ - HolofanProjector - BluespaceBeaker - SyringeBluespace + - WeaponCrusher + - WeaponCrusherDagger - WeaponForceGun + - WeaponProtoKineticAccelerator - WeaponTetherGun - WeaponGrapplingGun - ClothingBackpackHolding diff --git a/Resources/Prototypes/Recipes/Lathes/devices.yml b/Resources/Prototypes/Recipes/Lathes/devices.yml index 95d0e3086a..1be735a391 100644 --- a/Resources/Prototypes/Recipes/Lathes/devices.yml +++ b/Resources/Prototypes/Recipes/Lathes/devices.yml @@ -103,6 +103,24 @@ Plasma: 1500 Uranium: 1500 +- type: latheRecipe + id: WeaponCrusher + result: WeaponCrusher + completetime: 5 + materials: + Steel: 1000 + Glass: 250 + Plastic: 100 + +- type: latheRecipe + id: WeaponCrusherDagger + result: WeaponCrusherDagger + completetime: 5 + materials: + Steel: 500 + Glass: 250 + Plastic: 50 + - type: latheRecipe id: WeaponForceGun result: WeaponForceGun @@ -112,6 +130,15 @@ Glass: 400 Silver: 200 +- type: latheRecipe + id: WeaponProtoKineticAccelerator + result: WeaponProtoKineticAccelerator + completetime: 5 + materials: + Steel: 1000 + Glass: 500 + Silver: 100 + - type: latheRecipe id: WeaponTetherGun result: WeaponTetherGun diff --git a/Resources/Prototypes/Research/industrial.yml b/Resources/Prototypes/Research/industrial.yml index 0061d78c3d..21192133c8 100644 --- a/Resources/Prototypes/Research/industrial.yml +++ b/Resources/Prototypes/Research/industrial.yml @@ -1,5 +1,20 @@ # Tier 1 +- type: technology + id: SalvageWeapons + name: research-technology-salvage-weapons + icon: + sprite: Objects/Weapons/Guns/Basic/kinetic_accelerator.rsi + state: gun + discipline: Industrial + tier: 1 + cost: 10000 + recipeUnlocks: + - WeaponProtoKineticAccelerator + # These are roundstart but not replenishable for salvage + - WeaponCrusher + - WeaponCrusherDagger + - type: technology id: SalvageEquipment name: research-technology-salvage-equipment From b9f24b26818c5ef5831b426864c5fe76a1e37d8c Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Fri, 16 Jun 2023 05:19:02 +0000 Subject: [PATCH 269/474] expedition rewards (#16972) Co-authored-by: deltanedas <@deltanedas:kde.org> Co-authored-by: metalgearsloth --- .../Cargo/UI/CargoConsoleMenu.xaml.cs | 4 +- .../Cargo/UI/CargoShuttleMenu.xaml.cs | 4 +- .../Cargo/Systems/CargoSystem.Orders.cs | 53 +- .../Cargo/Systems/CargoSystem.Shuttle.cs | 13 +- .../Cargo/Systems/CargoSystem.Telepad.cs | 3 - Content.Server/Cargo/Systems/CargoSystem.cs | 29 + .../Expeditions/SalvageExpeditionComponent.cs | 10 +- .../Salvage/SalvageSystem.Expeditions.cs | 74 +- .../Salvage/SalvageSystem.Runner.cs | 5 +- .../Salvage/SpawnSalvageMissionJob.cs | 1 + .../StationEvents/Events/CargoGiftsRule.cs | 11 +- Content.Shared/Cargo/CargoOrderData.cs | 22 +- .../Events/CargoConsoleAddOrderMessage.cs | 8 +- .../Locale/en-US/procedural/expeditions.ftl | 1 + Resources/Maps/Dungeon/experiment.yml | 968 ++++-------- Resources/Maps/Dungeon/lava_brig.yml | 1343 +++++------------ .../Markers/Spawners/Random/salvage.yml | 69 +- .../Objects/Specific/chemistry-bottles.yml | 16 + .../Prototypes/Procedural/salvage_rewards.yml | 61 + 19 files changed, 979 insertions(+), 1716 deletions(-) create mode 100644 Resources/Prototypes/Procedural/salvage_rewards.yml diff --git a/Content.Client/Cargo/UI/CargoConsoleMenu.xaml.cs b/Content.Client/Cargo/UI/CargoConsoleMenu.xaml.cs index 79397e15e0..0cc17a6246 100644 --- a/Content.Client/Cargo/UI/CargoConsoleMenu.xaml.cs +++ b/Content.Client/Cargo/UI/CargoConsoleMenu.xaml.cs @@ -129,13 +129,13 @@ public void PopulateOrders(IEnumerable orders) foreach (var order in orders) { - var product = _protoManager.Index(order.ProductId); + var product = _protoManager.Index(order.ProductId); var productName = product.Name; var row = new CargoOrderRow { Order = order, - Icon = { Texture = _spriteSystem.Frame0(product.Icon) }, + Icon = { Texture = _spriteSystem.Frame0(product) }, ProductName = { Text = Loc.GetString( diff --git a/Content.Client/Cargo/UI/CargoShuttleMenu.xaml.cs b/Content.Client/Cargo/UI/CargoShuttleMenu.xaml.cs index 64d1e383b2..c591f917da 100644 --- a/Content.Client/Cargo/UI/CargoShuttleMenu.xaml.cs +++ b/Content.Client/Cargo/UI/CargoShuttleMenu.xaml.cs @@ -39,13 +39,13 @@ public void SetOrders(List orders) foreach (var order in orders) { - var product = _protoManager.Index(order.ProductId); + var product = _protoManager.Index(order.ProductId); var productName = product.Name; var row = new CargoOrderRow { Order = order, - Icon = { Texture = _spriteSystem.Frame0(product.Icon) }, + Icon = { Texture = _spriteSystem.Frame0(product) }, ProductName = { Text = Loc.GetString( diff --git a/Content.Server/Cargo/Systems/CargoSystem.Orders.cs b/Content.Server/Cargo/Systems/CargoSystem.Orders.cs index 9160eb44ca..339cec06da 100644 --- a/Content.Server/Cargo/Systems/CargoSystem.Orders.cs +++ b/Content.Server/Cargo/Systems/CargoSystem.Orders.cs @@ -18,6 +18,8 @@ using Robust.Server.GameObjects; using Robust.Shared.Map; using Robust.Shared.Players; +using Robust.Shared.Prototypes; +using Robust.Shared.Utility; namespace Content.Server.Cargo.Systems { @@ -33,14 +35,6 @@ public sealed partial class CargoSystem /// private float _timer; - [Dependency] private readonly IdCardSystem _idCardSystem = default!; - [Dependency] private readonly AccessReaderSystem _accessReaderSystem = default!; - [Dependency] private readonly DeviceLinkSystem _linker = default!; - [Dependency] private readonly PopupSystem _popup = default!; - [Dependency] private readonly StationSystem _station = default!; - [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; - [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; - private void InitializeConsole() { SubscribeLocalEvent(OnAddOrderMessage); @@ -72,6 +66,8 @@ private void UpdateConsole(float frameTime) { _timer += frameTime; + // TODO: Doesn't work with serialization and shouldn't just be updating every delay + // client can just interp this just fine on its own. while (_timer > Delay) { _timer -= Delay; @@ -124,7 +120,7 @@ private void OnApproveOrderMessage(EntityUid uid, CargoOrderConsoleComponent com } // Invalid order - if (!_protoMan.TryIndex(order.ProductId, out var product)) + if (!_protoMan.HasIndex(order.ProductId)) { ConsolePopup(args.Session, Loc.GetString("cargo-console-invalid-product")); PlayDenySound(uid, component); @@ -152,7 +148,7 @@ private void OnApproveOrderMessage(EntityUid uid, CargoOrderConsoleComponent com PlayDenySound(uid, component); } - var cost = product.PointCost * order.OrderQuantity; + var cost = order.Price * order.OrderQuantity; // Not enough balance if (cost > bankAccount.Balance) @@ -163,7 +159,7 @@ private void OnApproveOrderMessage(EntityUid uid, CargoOrderConsoleComponent com } _idCardSystem.TryFindIdCard(player, out var idCard); - order.SetApproverData(idCard); + order.SetApproverData(idCard?.FullName, idCard?.JobTitle); _audio.PlayPvs(_audio.GetSound(component.ConfirmSound), uid); // Log order approval @@ -190,11 +186,20 @@ private void OnAddOrderMessage(EntityUid uid, CargoOrderConsoleComponent compone return; var bank = GetBankAccount(component); - if (bank == null) return; + if (bank == null) + return; + var orderDatabase = GetOrderDatabase(component); - if (orderDatabase == null) return; + if (orderDatabase == null) + return; - var data = GetOrderData(args, GenerateOrderId(orderDatabase)); + if (!_protoMan.TryIndex(args.CargoProductId, out var product)) + { + _sawmill.Error($"Tried to add invalid cargo product {args.CargoProductId} as order!"); + return; + } + + var data = GetOrderData(args, product, GenerateOrderId(orderDatabase)); if (!TryAddOrder(orderDatabase, data)) { @@ -239,9 +244,9 @@ private void PlayDenySound(EntityUid uid, CargoOrderConsoleComponent component) _audio.PlayPvs(_audio.GetSound(component.ErrorSound), uid); } - private CargoOrderData GetOrderData(CargoConsoleAddOrderMessage args, int id) + private CargoOrderData GetOrderData(CargoConsoleAddOrderMessage args, CargoProductPrototype cargoProduct, int id) { - return new CargoOrderData(id, args.ProductId, args.Amount, args.Requester, args.Reason); + return new CargoOrderData(id, cargoProduct.Product, cargoProduct.PointCost, args.Amount, args.Requester, args.Reason); } public int GetOutstandingOrderCount(StationCargoOrderDatabaseComponent component) @@ -286,21 +291,15 @@ private void UpdateOrders(StationCargoOrderDatabaseComponent component) } } - public bool AddAndApproveOrder(StationCargoOrderDatabaseComponent component, string productId, int qty, string sender, string description, string dest) + public bool AddAndApproveOrder(StationCargoOrderDatabaseComponent component, string spawnId, int cost, int qty, string sender, string description, string dest) { - if (!_prototypeManager.HasIndex(productId)) - { - _sawmill.Warning($"CargoSystem.Orders could not find CargoProductPrototype for '{productId}' in {description}."); - // Pretend that it worked OK, since we don't want the caller to try again. - return true; - } - + DebugTools.Assert(_protoMan.HasIndex(spawnId)); // Make an order var id = GenerateOrderId(component); - var order = new CargoOrderData(id, productId, qty, sender, description); + var order = new CargoOrderData(id, spawnId, cost, qty, sender, description); // Approve it now - order.SetApproverData(new IdCardComponent(){FullName = dest, JobTitle = sender}); + order.SetApproverData(dest, sender); // Log order addition _adminLogger.Add(LogType.Action, LogImpact.Low, @@ -368,7 +367,7 @@ private bool FulfillOrder(StationCargoOrderDatabaseComponent orderDB, EntityCoor if (PopFrontOrder(orderDB, out var order)) { // Create the item itself - var item = Spawn(_protoMan.Index(order.ProductId).Product, whereToPutIt); + var item = Spawn(order.ProductId, whereToPutIt); // Create a sheet of paper to write the order details on var printed = EntityManager.SpawnEntity(paperPrototypeToPrint, whereToPutIt); diff --git a/Content.Server/Cargo/Systems/CargoSystem.Shuttle.cs b/Content.Server/Cargo/Systems/CargoSystem.Shuttle.cs index 3c272b4990..99dfcbb166 100644 --- a/Content.Server/Cargo/Systems/CargoSystem.Shuttle.cs +++ b/Content.Server/Cargo/Systems/CargoSystem.Shuttle.cs @@ -29,15 +29,6 @@ public sealed partial class CargoSystem * Handles cargo shuttle mechanics. */ - [Dependency] private readonly IComponentFactory _factory = default!; - [Dependency] private readonly IConfigurationManager _cfgManager = default!; - [Dependency] private readonly IMapManager _mapManager = default!; - [Dependency] private readonly IRobustRandom _random = default!; - [Dependency] private readonly IPrototypeManager _prototypeManager = default!; - [Dependency] private readonly EntityLookupSystem _lookup = default!; - [Dependency] private readonly PricingSystem _pricing = default!; - [Dependency] private readonly ShuttleConsoleSystem _console = default!; - [Dependency] private readonly StackSystem _stack = default!; public MapId? CargoMap { get; private set; } private void InitializeShuttle() @@ -191,7 +182,7 @@ private List GetProjectedOrders( // We won't be able to fit the whole order on, so make one // which represents the space we do have left: var reducedOrder = new CargoOrderData(order.OrderId, - order.ProductId, spaceRemaining, order.Requester, order.Reason); + order.ProductId, order.Price, spaceRemaining, order.Requester, order.Reason); orders.Add(reducedOrder); } else @@ -335,7 +326,7 @@ private void OnPalletSale(EntityUid uid, CargoPalletConsoleComponent component, } SellPallets(gridUid, out var price); - var stackPrototype = _prototypeManager.Index(component.CashType); + var stackPrototype = _protoMan.Index(component.CashType); _stack.Spawn((int)price, stackPrototype, uid.ToCoordinates()); UpdatePalletConsoleInterface(uid); } diff --git a/Content.Server/Cargo/Systems/CargoSystem.Telepad.cs b/Content.Server/Cargo/Systems/CargoSystem.Telepad.cs index 8b30ee4583..29cab7877b 100644 --- a/Content.Server/Cargo/Systems/CargoSystem.Telepad.cs +++ b/Content.Server/Cargo/Systems/CargoSystem.Telepad.cs @@ -12,9 +12,6 @@ namespace Content.Server.Cargo.Systems; public sealed partial class CargoSystem { - [Dependency] private readonly PaperSystem _paperSystem = default!; - [Dependency] private readonly SharedAppearanceSystem _appearance = default!; - private void InitializeTelepad() { SubscribeLocalEvent(OnInit); diff --git a/Content.Server/Cargo/Systems/CargoSystem.cs b/Content.Server/Cargo/Systems/CargoSystem.cs index 244e1ac1b5..b1fe4bc2ae 100644 --- a/Content.Server/Cargo/Systems/CargoSystem.cs +++ b/Content.Server/Cargo/Systems/CargoSystem.cs @@ -1,17 +1,46 @@ +using Content.Server.Access.Systems; using Content.Server.Cargo.Components; +using Content.Server.DeviceLinking.Systems; +using Content.Server.Paper; +using Content.Server.Popups; +using Content.Server.Shuttles.Systems; +using Content.Server.Stack; using Content.Server.Station.Systems; +using Content.Shared.Access.Systems; +using Content.Shared.Administration.Logs; using Content.Shared.Cargo; using Content.Shared.Containers.ItemSlots; using JetBrains.Annotations; +using Robust.Server.GameObjects; +using Robust.Shared.Configuration; +using Robust.Shared.Map; using Robust.Shared.Prototypes; +using Robust.Shared.Random; namespace Content.Server.Cargo.Systems; public sealed partial class CargoSystem : SharedCargoSystem { + [Dependency] private readonly IComponentFactory _factory = default!; + [Dependency] private readonly IConfigurationManager _cfgManager = default!; + [Dependency] private readonly IMapManager _mapManager = default!; [Dependency] private readonly IPrototypeManager _protoMan = default!; + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; + [Dependency] private readonly AccessReaderSystem _accessReaderSystem = default!; + [Dependency] private readonly DeviceLinkSystem _linker = default!; + [Dependency] private readonly EntityLookupSystem _lookup = default!; + [Dependency] private readonly IdCardSystem _idCardSystem = default!; [Dependency] private readonly ItemSlotsSystem _slots = default!; + [Dependency] private readonly PaperSystem _paperSystem = default!; + [Dependency] private readonly PopupSystem _popup = default!; + [Dependency] private readonly PricingSystem _pricing = default!; + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly ShuttleConsoleSystem _console = default!; + [Dependency] private readonly StackSystem _stack = default!; + [Dependency] private readonly StationSystem _station = default!; + [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; private ISawmill _sawmill = default!; diff --git a/Content.Server/Salvage/Expeditions/SalvageExpeditionComponent.cs b/Content.Server/Salvage/Expeditions/SalvageExpeditionComponent.cs index 4f29d7e3f3..9c4fd05a20 100644 --- a/Content.Server/Salvage/Expeditions/SalvageExpeditionComponent.cs +++ b/Content.Server/Salvage/Expeditions/SalvageExpeditionComponent.cs @@ -1,6 +1,8 @@ +using Content.Shared.Random; using Content.Shared.Salvage; using Robust.Shared.Audio; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Server.Salvage.Expeditions; @@ -27,7 +29,7 @@ public sealed class SalvageExpeditionComponent : Component /// /// Station whose mission this is. /// - [ViewVariables, DataField("station")] + [DataField("station")] public EntityUid Station; [ViewVariables] public bool Completed = false; @@ -48,6 +50,12 @@ public sealed class SalvageExpeditionComponent : Component { Params = AudioParams.Default.WithVolume(-15), }; + + /// + /// The difficulty this mission had or, in the future, was selected. + /// + [ViewVariables(VVAccess.ReadWrite), DataField("difficulty")] + public DifficultyRating Difficulty; } public enum ExpeditionStage : byte diff --git a/Content.Server/Salvage/SalvageSystem.Expeditions.cs b/Content.Server/Salvage/SalvageSystem.Expeditions.cs index 0987dfe258..6fb8897a0a 100644 --- a/Content.Server/Salvage/SalvageSystem.Expeditions.cs +++ b/Content.Server/Salvage/SalvageSystem.Expeditions.cs @@ -1,13 +1,17 @@ -using System.Linq; -using System.Threading; -using Robust.Shared.CPUJob.JobQueues; -using Robust.Shared.CPUJob.JobQueues.Queues; +using Content.Server.Cargo.Components; +using Content.Server.Cargo.Systems; using Content.Server.Salvage.Expeditions; using Content.Server.Salvage.Expeditions.Structure; using Content.Server.Station.Systems; using Content.Shared.CCVar; +using Content.Shared.Random; +using Content.Shared.Random.Helpers; using Content.Shared.Examine; using Content.Shared.Salvage; +using Robust.Shared.CPUJob.JobQueues; +using Robust.Shared.CPUJob.JobQueues.Queues; +using System.Linq; +using System.Threading; namespace Content.Server.Salvage; @@ -17,6 +21,8 @@ public sealed partial class SalvageSystem * Handles setup / teardown of salvage expeditions. */ + [Dependency] private readonly CargoSystem _cargo = default!; + private const int MissionLimit = 5; private readonly JobQueue _salvageQueue = new(); @@ -99,7 +105,7 @@ private void OnExpeditionShutdown(EntityUid uid, SalvageExpeditionComponent comp // Finish mission if (TryComp(component.Station, out var data)) { - FinishExpedition(data, component, null); + FinishExpedition(data, uid, component, null); } } @@ -141,7 +147,7 @@ private void UpdateExpeditions() } } - private void FinishExpedition(SalvageExpeditionDataComponent component, SalvageExpeditionComponent expedition, EntityUid? shuttle) + private void FinishExpedition(SalvageExpeditionDataComponent component, EntityUid uid, SalvageExpeditionComponent expedition, EntityUid? shuttle) { // Finish mission cleanup. switch (expedition.MissionParams.MissionType) @@ -150,7 +156,7 @@ private void FinishExpedition(SalvageExpeditionDataComponent component, SalvageE case SalvageMissionType.Mining: expedition.Completed = true; - if (shuttle != null && TryComp(expedition.Owner, out var mining)) + if (shuttle != null && TryComp(uid, out var mining)) { var xformQuery = GetEntityQuery(); var entities = new List(); @@ -169,18 +175,19 @@ private void FinishExpedition(SalvageExpeditionDataComponent component, SalvageE break; } - // Payout already handled elsewhere. + // Handle payout after expedition has finished if (expedition.Completed) { _sawmill.Debug($"Completed mission {expedition.MissionParams.MissionType} with seed {expedition.MissionParams.Seed}"); component.NextOffer = _timing.CurTime + TimeSpan.FromSeconds(_cooldown); - Announce(expedition.Owner, Loc.GetString("salvage-expedition-mission-completed")); + Announce(uid, Loc.GetString("salvage-expedition-mission-completed")); + GiveRewards(expedition); } else { _sawmill.Debug($"Failed mission {expedition.MissionParams.MissionType} with seed {expedition.MissionParams.Seed}"); component.NextOffer = _timing.CurTime + TimeSpan.FromSeconds(_failedCooldown); - Announce(expedition.Owner, Loc.GetString("salvage-expedition-mission-failed")); + Announce(uid, Loc.GetString("salvage-expedition-mission-failed")); } component.ActiveMission = 0; @@ -270,4 +277,51 @@ private void OnStructureExamine(EntityUid uid, SalvageStructureComponent compone { args.PushMarkup(Loc.GetString("salvage-expedition-structure-examine")); } + + private void GiveRewards(SalvageExpeditionComponent comp) + { + // send it to cargo, no rewards otherwise. + if (!TryComp(comp.Station, out var cargoDb)) + { + return; + } + + var ids = RewardsForDifficulty(comp.Difficulty); + foreach (var id in ids) + { + // pick a random reward to give + var rewards = _prototypeManager.Index(id); + var reward = rewards.Pick(_random); + + var sender = Loc.GetString("cargo-gift-default-sender"); + var desc = Loc.GetString("salvage-expedition-reward-description"); + var dest = Loc.GetString("cargo-gift-default-dest"); + _cargo.AddAndApproveOrder(cargoDb, reward, 0, 1, sender, desc, dest); + } + } + + /// + /// Get a list of WeightedRandomPrototype IDs with the rewards for a certain difficulty. + /// + private string[] RewardsForDifficulty(DifficultyRating rating) + { + var common = "SalvageRewardCommon"; + var rare = "SalvageRewardRare"; + var epic = "SalvageRewardEpic"; + switch (rating) + { + case DifficultyRating.Minimal: + return new string[] { common, common, common }; + case DifficultyRating.Minor: + return new string[] { common, common, rare }; + case DifficultyRating.Moderate: + return new string[] { common, rare, rare }; + case DifficultyRating.Hazardous: + return new string[] { rare, rare, epic }; + case DifficultyRating.Extreme: + return new string[] { rare, epic, epic }; + default: + throw new NotImplementedException(); + } + } } diff --git a/Content.Server/Salvage/SalvageSystem.Runner.cs b/Content.Server/Salvage/SalvageSystem.Runner.cs index bc3e527fe1..a52649ada0 100644 --- a/Content.Server/Salvage/SalvageSystem.Runner.cs +++ b/Content.Server/Salvage/SalvageSystem.Runner.cs @@ -163,8 +163,7 @@ private void UpdateRunner() else if (comp.Stage < ExpeditionStage.MusicCountdown && remaining < TimeSpan.FromMinutes(2)) { // TODO: Some way to play audio attached to a map for players. - comp.Stream = _audio.PlayGlobal(comp.Sound, - Filter.BroadcastMap(Comp(uid).MapId), true); + comp.Stream = _audio.PlayGlobal(comp.Sound, Filter.BroadcastMap(Comp(uid).MapId), true); comp.Stage = ExpeditionStage.MusicCountdown; Announce(uid, Loc.GetString("salvage-expedition-announcement-countdown-minutes", ("duration", TimeSpan.FromMinutes(2).Minutes))); } @@ -209,7 +208,7 @@ private void UpdateRunner() } } - // Mining missions: NOOP + // Mining missions: NOOP since it's handled after ftling // Structure missions var structureQuery = EntityQueryEnumerator(); diff --git a/Content.Server/Salvage/SpawnSalvageMissionJob.cs b/Content.Server/Salvage/SpawnSalvageMissionJob.cs index aba46e08dd..60e73a5b5a 100644 --- a/Content.Server/Salvage/SpawnSalvageMissionJob.cs +++ b/Content.Server/Salvage/SpawnSalvageMissionJob.cs @@ -133,6 +133,7 @@ protected override async Task Process() expedition.Station = Station; expedition.EndTime = _timing.CurTime + mission.Duration; expedition.MissionParams = _missionParams; + expedition.Difficulty = _missionParams.Difficulty; // Don't want consoles to have the incorrect name until refreshed. var ftlUid = _entManager.CreateEntityUninitialized("FTLPoint", new EntityCoordinates(mapUid, Vector2.Zero)); diff --git a/Content.Server/StationEvents/Events/CargoGiftsRule.cs b/Content.Server/StationEvents/Events/CargoGiftsRule.cs index 496355fd22..5ee9f63fbd 100644 --- a/Content.Server/StationEvents/Events/CargoGiftsRule.cs +++ b/Content.Server/StationEvents/Events/CargoGiftsRule.cs @@ -68,7 +68,16 @@ protected override void ActiveTick(EntityUid uid, CargoGiftsRuleComponent compon var (productId, qty) = component.Gifts.First(); component.Gifts.Remove(productId); - if (!_cargoSystem.AddAndApproveOrder(cargoDb, productId, qty, Loc.GetString(component.Sender), Loc.GetString(component.Description), Loc.GetString(component.Dest))) + var product = _prototypeManager.Index(productId); + + if (!_cargoSystem.AddAndApproveOrder( + cargoDb, + product.Product, + product.PointCost, + qty, + Loc.GetString(component.Sender), + Loc.GetString(component.Description), + Loc.GetString(component.Dest))) { break; } diff --git a/Content.Shared/Cargo/CargoOrderData.cs b/Content.Shared/Cargo/CargoOrderData.cs index 3bfc456ec5..a6d5fb0a18 100644 --- a/Content.Shared/Cargo/CargoOrderData.cs +++ b/Content.Shared/Cargo/CargoOrderData.cs @@ -6,13 +6,18 @@ namespace Content.Shared.Cargo [NetSerializable, Serializable] public sealed class CargoOrderData { + /// + /// Price when the order was added. + /// + public int Price; + /// /// A unique (arbitrary) ID which identifies this order. /// public readonly int OrderId; /// - /// Prototype id for the item to create + /// Prototype Id for the item to be created /// public readonly string ProductId; @@ -24,7 +29,7 @@ public sealed class CargoOrderData /// /// How many instances of this order that we've already dispatched - /// + /// public int NumDispatched = 0; public readonly string Requester; @@ -34,25 +39,26 @@ public sealed class CargoOrderData public bool Approved => Approver is not null; public string? Approver; - public CargoOrderData(int orderId, string productId, int amount, string requester, string reason) + public CargoOrderData(int orderId, string productId, int price, int amount, string requester, string reason) { OrderId = orderId; ProductId = productId; + Price = price; OrderQuantity = amount; Requester = requester; Reason = reason; } - public void SetApproverData(IdCardComponent? idCard) + public void SetApproverData(string? fullName, string? jobTitle) { var sb = new StringBuilder(); - if (!string.IsNullOrWhiteSpace(idCard?.FullName)) + if (!string.IsNullOrWhiteSpace(fullName)) { - sb.Append($"{idCard.FullName} "); + sb.Append($"{fullName} "); } - if (!string.IsNullOrWhiteSpace(idCard?.JobTitle)) + if (!string.IsNullOrWhiteSpace(jobTitle)) { - sb.Append($"({idCard.JobTitle})"); + sb.Append($"({jobTitle})"); } Approver = sb.ToString(); } diff --git a/Content.Shared/Cargo/Events/CargoConsoleAddOrderMessage.cs b/Content.Shared/Cargo/Events/CargoConsoleAddOrderMessage.cs index 5044ef121c..9146b97b10 100644 --- a/Content.Shared/Cargo/Events/CargoConsoleAddOrderMessage.cs +++ b/Content.Shared/Cargo/Events/CargoConsoleAddOrderMessage.cs @@ -10,14 +10,14 @@ public sealed class CargoConsoleAddOrderMessage : BoundUserInterfaceMessage { public string Requester; public string Reason; - public string ProductId; + public string CargoProductId; public int Amount; - public CargoConsoleAddOrderMessage(string requester, string reason, string productId, int amount) + public CargoConsoleAddOrderMessage(string requester, string reason, string cargoProductId, int amount) { Requester = requester; Reason = reason; - ProductId = productId; + CargoProductId = cargoProductId; Amount = amount; } -} \ No newline at end of file +} diff --git a/Resources/Locale/en-US/procedural/expeditions.ftl b/Resources/Locale/en-US/procedural/expeditions.ftl index 81888a3511..cb29c5ab8c 100644 --- a/Resources/Locale/en-US/procedural/expeditions.ftl +++ b/Resources/Locale/en-US/procedural/expeditions.ftl @@ -46,3 +46,4 @@ salvage-expedition-announcement-countdown-minutes = {$duration} minutes remainin salvage-expedition-announcement-countdown-seconds = {$duration} seconds remaining to complete the expedition. salvage-expedition-announcement-dungeon = Dungeon is located {$direction}. salvage-expedition-completed = Expedition is completed. +salvage-expedition-reward-description = Mission completion reward diff --git a/Resources/Maps/Dungeon/experiment.yml b/Resources/Maps/Dungeon/experiment.yml index 7e9d8f9b4a..2d34639ca0 100644 --- a/Resources/Maps/Dungeon/experiment.yml +++ b/Resources/Maps/Dungeon/experiment.yml @@ -1,39 +1,39 @@ meta: - format: 4 + format: 5 postmapinit: false tilemap: 0: Space 15: FloorBlueCircuit - 22: FloorDark - 25: FloorDarkHerringbone - 29: FloorDarkPavement - 30: FloorDarkPavementVertical - 31: FloorDarkPlastic - 37: FloorFreezer - 40: FloorGrass - 42: FloorGrassJungle - 44: FloorGreenCircuit - 46: FloorHydro - 48: FloorLaundry - 49: FloorLino - 55: FloorPlanetGrass - 56: FloorPlastic - 58: FloorReinforced - 60: FloorShowroom - 62: FloorShuttleOrange - 68: FloorSteel - 69: FloorSteelDiagonal - 73: FloorSteelMini - 74: FloorSteelMono - 77: FloorSteelPavementVertical - 78: FloorTechMaint - 79: FloorTechMaint2 - 80: FloorTechMaint3 - 81: FloorWhite - 86: FloorWhiteMono - 90: FloorWhitePlastic - 91: FloorWood - 94: Plating + 23: FloorDark + 26: FloorDarkHerringbone + 30: FloorDarkPavement + 31: FloorDarkPavementVertical + 32: FloorDarkPlastic + 38: FloorFreezer + 41: FloorGrass + 43: FloorGrassJungle + 45: FloorGreenCircuit + 47: FloorHydro + 49: FloorLaundry + 50: FloorLino + 56: FloorPlanetGrass + 57: FloorPlastic + 59: FloorReinforced + 61: FloorShowroom + 63: FloorShuttleOrange + 69: FloorSteel + 70: FloorSteelDiagonal + 74: FloorSteelMini + 75: FloorSteelMono + 78: FloorSteelPavementVertical + 79: FloorTechMaint + 80: FloorTechMaint2 + 81: FloorTechMaint3 + 82: FloorWhite + 87: FloorWhiteMono + 91: FloorWhitePlastic + 92: FloorWood + 95: Plating entities: - proto: "" entities: @@ -48,73 +48,73 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAA== 0,0: ind: 0,0 - tiles: VgAAAEQAAAJEAAAARAAAA0QAAAFEAAAARAAAA0QAAABEAAADRAAAAUQAAANEAAACRAAAAkQAAAFEAAAARAAAA1EAAABEAAAARAAAA0QAAANEAAABRAAAAEQAAANEAAACRAAAAEQAAAFEAAAARAAAAEQAAANEAAACRAAAAEQAAABRAAAARAAAAUQAAANeAAAAKgAAACoAAAAqAAAAKgAAACoAAAAqAAAAKgAAACoAAAAqAAAAXgAAAEQAAAFEAAABUQAAAEQAAANEAAABRAAAAEQAAAJEAAACRAAAAkQAAABEAAABRAAAAUQAAABEAAAARAAAAkQAAAJEAAACRAAAAVYAAABEAAAARAAAAkQAAABEAAAARAAAA0QAAABEAAADRAAAAEQAAANEAAABRAAAAUQAAANEAAADRAAAAUQAAAM+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAOAAAAFoAAAE4AAAAOAAAAVoAAAE4AAAARAAAAEQAAANEAAAARAAAA0QAAAE+AAAAGQAAAB0AAAAdAAAAHQAAADgAAANaAAABOAAAADgAAAJaAAAAOAAAAkQAAANEAAAARAAAAUQAAABEAAADPgAAAB4AAAAuAAAATQAAAC4AAABEAAAAWwAAAVsAAABbAAABWwAAAFsAAANbAAACWwAAAVsAAABbAAABWwAAAz4AAAAeAAAALgAAAE0AAAAuAAAAOAAAAlsAAAFbAAABWwAAAFsAAAJbAAABWwAAAVsAAABbAAACWwAAAFsAAAI+AAAAHgAAAC4AAABNAAAALgAAADgAAAE4AAACOAAAADgAAAI4AAABOAAAATgAAAE4AAAAOAAAAjgAAAE4AAABPgAAABkAAAAdAAAAHQAAAB0AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAXgAAABYAAAFEAAADRAAAAkQAAAMWAAACXgAAAD4AAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAPgAAAF4AAAAWAAACRAAAAUQAAAFEAAABFgAAA14AAAA+AAAAFgAAAF4AAABeAAAATwAAAF4AAABeAAAAFgAAAD4AAABEAAACRAAAAkQAAABeAAAARAAAAkQAAAFEAAAAPgAAABYAAABeAAAAOgAAADoAAAA6AAAAXgAAABYAAAA+AAAARAAAAkQAAANEAAABRAAAAUQAAANEAAACRAAAAz4AAAAWAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAPgAAAA== + tiles: VwAAAEUAAAJFAAAARQAAA0UAAAFFAAAARQAAA0UAAABFAAADRQAAAUUAAANFAAACRQAAAkUAAAFFAAAARQAAA1IAAABFAAAARQAAA0UAAANFAAABRQAAAEUAAANFAAACRQAAAEUAAAFFAAAARQAAAEUAAANFAAACRQAAAEUAAABSAAAARQAAAUUAAANfAAAAKwAAACsAAAArAAAAKwAAACsAAAArAAAAKwAAACsAAAArAAAAXwAAAEUAAAFFAAABUgAAAEUAAANFAAABRQAAAEUAAAJFAAACRQAAAkUAAABFAAABRQAAAUUAAABFAAAARQAAAkUAAAJFAAACRQAAAVcAAABFAAAARQAAAkUAAABFAAAARQAAA0UAAABFAAADRQAAAEUAAANFAAABRQAAAUUAAANFAAADRQAAAUUAAAM/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAOQAAAFsAAAE5AAAAOQAAAVsAAAE5AAAARQAAAEUAAANFAAAARQAAA0UAAAE/AAAAGgAAAB4AAAAeAAAAHgAAADkAAANbAAABOQAAADkAAAJbAAAAOQAAAkUAAANFAAAARQAAAUUAAABFAAADPwAAAB8AAAAvAAAATgAAAC8AAABFAAAAXAAAAVwAAABcAAABXAAAAFwAAANcAAACXAAAAVwAAABcAAABXAAAAz8AAAAfAAAALwAAAE4AAAAvAAAAOQAAAlwAAAFcAAABXAAAAFwAAAJcAAABXAAAAVwAAABcAAACXAAAAFwAAAI/AAAAHwAAAC8AAABOAAAALwAAADkAAAE5AAACOQAAADkAAAI5AAABOQAAATkAAAE5AAAAOQAAAjkAAAE5AAABPwAAABoAAAAeAAAAHgAAAB4AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAXwAAABcAAAFFAAADRQAAAkUAAAMXAAACXwAAAD8AAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAPwAAAF8AAAAXAAACRQAAAUUAAAFFAAABFwAAA18AAAA/AAAAFwAAAF8AAABfAAAAUAAAAF8AAABfAAAAFwAAAD8AAABFAAACRQAAAkUAAABfAAAARQAAAkUAAAFFAAAAPwAAABcAAABfAAAAOwAAADsAAAA7AAAAXwAAABcAAAA/AAAARQAAAkUAAANFAAABRQAAAUUAAANFAAACRQAAAz8AAAAXAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAPwAAAA== 0,1: ind: 0,1 - tiles: RAAAAEQAAANEAAACRAAAAkQAAAFEAAACRAAAAT4AAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAlAAAAJQAAACUAAAAlAAAAJQAAAD4AAABEAAABUQAAAlEAAAJRAAADRAAAAT4AAAAqAAAAUQAAA1EAAANRAAAAJQAAACUAAAAlAAAAXgAAAF4AAAA+AAAAUQAAAVEAAAMqAAAAUQAAA1EAAAM+AAAAUQAAAlEAAANRAAADUQAAAiUAAAAlAAAAWgAAA1oAAANaAAADPgAAAFEAAAMqAAAAKgAAACoAAABRAAABPgAAAFEAAAFRAAADRAAAAVEAAAMlAAAAXgAAAFoAAANRAAACUQAAAj4AAABRAAABUQAAAioAAABRAAABUQAAAD4AAABRAAACUQAAAFEAAANRAAABJQAAAF4AAABaAAADUQAAAFEAAAM+AAAARAAAAFEAAANRAAAAUQAAAUQAAAE+AAAAUQAAAVEAAANRAAABUQAAAj4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA6AAAAOgAAADoAAAA+AAAARAAAAEQAAAFEAAADPgAAADwAAAA8AAAAJQAAAD4AAABJAAACSQAAAkoAAAA+AAAAOgAAAA8AAAA6AAAAPgAAAE4AAABEAAAARAAAAz4AAAAlAAAAPAAAACUAAAA+AAAASQAAAkkAAAJKAAACPgAAADoAAAAPAAAAOgAAAD4AAABEAAADRAAAAkQAAAM+AAAAJQAAACUAAAAlAAAAPgAAAEkAAANJAAACSgAAAj4AAAA6AAAADwAAADoAAAA+AAAARAAAA0QAAAFEAAABPgAAACUAAAA8AAAAJQAAAD4AAABJAAACSQAAA0oAAAE+AAAAOgAAADoAAAA6AAAAPgAAAEQAAAFEAAAARAAAAj4AAAAlAAAAJQAAADwAAAA+AAAASQAAA0kAAABKAAABPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAABEAAAARAAAAkQAAABEAAADRAAAAVEAAAFEAAACUQAAAFEAAANeAAAAFgAAABYAAAAWAAACPgAAAFEAAABRAAACRAAAABYAAAEWAAABFgAAAEQAAAFEAAAARAAAA0QAAAFEAAADFgAAARYAAAEWAAADRAAAAz4AAABRAAACUQAAAg== + tiles: RQAAAEUAAANFAAACRQAAAkUAAAFFAAACRQAAAT8AAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAAmAAAAJgAAACYAAAAmAAAAJgAAAD8AAABFAAABUgAAAlIAAAJSAAADRQAAAT8AAAArAAAAUgAAA1IAAANSAAAAJgAAACYAAAAmAAAAXwAAAF8AAAA/AAAAUgAAAVIAAAMrAAAAUgAAA1IAAAM/AAAAUgAAAlIAAANSAAADUgAAAiYAAAAmAAAAWwAAA1sAAANbAAADPwAAAFIAAAMrAAAAKwAAACsAAABSAAABPwAAAFIAAAFSAAADRQAAAVIAAAMmAAAAXwAAAFsAAANSAAACUgAAAj8AAABSAAABUgAAAisAAABSAAABUgAAAD8AAABSAAACUgAAAFIAAANSAAABJgAAAF8AAABbAAADUgAAAFIAAAM/AAAARQAAAFIAAANSAAAAUgAAAUUAAAE/AAAAUgAAAVIAAANSAAABUgAAAj8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA7AAAAOwAAADsAAAA/AAAARQAAAEUAAAFFAAADPwAAAD0AAAA9AAAAJgAAAD8AAABKAAACSgAAAksAAAA/AAAAOwAAAA8AAAA7AAAAPwAAAE8AAABFAAAARQAAAz8AAAAmAAAAPQAAACYAAAA/AAAASgAAAkoAAAJLAAACPwAAADsAAAAPAAAAOwAAAD8AAABFAAADRQAAAkUAAAM/AAAAJgAAACYAAAAmAAAAPwAAAEoAAANKAAACSwAAAj8AAAA7AAAADwAAADsAAAA/AAAARQAAA0UAAAFFAAABPwAAACYAAAA9AAAAJgAAAD8AAABKAAACSgAAA0sAAAE/AAAAOwAAADsAAAA7AAAAPwAAAEUAAAFFAAAARQAAAj8AAAAmAAAAJgAAAD0AAAA/AAAASgAAA0oAAABLAAABPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAABFAAAARQAAAkUAAABFAAADRQAAAVIAAAFFAAACUgAAAFIAAANfAAAAFwAAABcAAAAXAAACPwAAAFIAAABSAAACRQAAABcAAAEXAAABFwAAAEUAAAFFAAAARQAAA0UAAAFFAAADFwAAARcAAAEXAAADRQAAAz8AAABSAAACUgAAAg== 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAA== -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAA== -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAA== 1,-1: ind: 1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAA== 1,0: ind: 1,0 - tiles: VgAAAD4AAABEAAAAOgAAADoAAAA6AAAARAAAADoAAAA6AAAAOgAAAEQAAAA6AAAAOgAAADoAAABEAAAAOgAAAFEAAAA+AAAARAAAADoAAAA6AAAAOgAAAEQAAAA6AAAAOgAAADoAAABEAAAAOgAAADoAAAA6AAAARAAAADoAAABRAAAAPgAAAEQAAABEAAAAOgAAAEQAAABEAAAARAAAADoAAABEAAAARAAAAEQAAAA6AAAARAAAAEQAAABEAAAAUQAAAD4AAABEAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFYAAAA+AAAARAAAAF4AAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAHQAAAB0AAAAdAAAAHQAAAB0AAAAdAAAAGQAAAD4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAEQAAABNAAAARAAAAC4AAABNAAAALgAAAB4AAAA+AAAATgAAAEQAAAAWAAAAFgAAAF4AAABeAAAAXgAAABYAAABEAAAATQAAAEQAAAAuAAAATQAAAC4AAAAeAAAAPgAAAE4AAABEAAAAFgAAABYAAABeAAAAXgAAAF4AAAAWAAAARAAAAE0AAABEAAAALgAAAE0AAAAuAAAAHgAAAD4AAABOAAAARAAAABYAAAAWAAAAXgAAAF4AAABeAAAAFgAAAB0AAAAdAAAAHQAAAB0AAAAdAAAAHQAAABkAAAA+AAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAARAAAAUQAAANEAAAARAAAAUQAAAJEAAABRAAAAz4AAAA6AAAAOgAAADoAAABRAAAAFgAAABYAAAAWAAAAPgAAAEQAAAI3AAAANwAAADcAAAA3AAAANwAAAEQAAAE+AAAAOgAAADoAAAA6AAAAUQAAAFEAAABRAAAAFgAAAD4AAABEAAABNwAAADcAAAA3AAAANwAAADcAAABEAAADPgAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAAA+AAAARAAAATcAAAA3AAAANwAAADcAAAA3AAAARAAAAD4AAAAWAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAPgAAAA== + tiles: VwAAAD8AAABFAAAAOwAAADsAAAA7AAAARQAAADsAAAA7AAAAOwAAAEUAAAA7AAAAOwAAADsAAABFAAAAOwAAAFIAAAA/AAAARQAAADsAAAA7AAAAOwAAAEUAAAA7AAAAOwAAADsAAABFAAAAOwAAADsAAAA7AAAARQAAADsAAABSAAAAPwAAAEUAAABFAAAAOwAAAEUAAABFAAAARQAAADsAAABFAAAARQAAAEUAAAA7AAAARQAAAEUAAABFAAAAUgAAAD8AAABFAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFcAAAA/AAAARQAAAF8AAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAHgAAAB4AAAAeAAAAHgAAAB4AAAAeAAAAGgAAAD8AAABPAAAATwAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAEUAAABOAAAARQAAAC8AAABOAAAALwAAAB8AAAA/AAAATwAAAEUAAAAXAAAAFwAAAF8AAABfAAAAXwAAABcAAABFAAAATgAAAEUAAAAvAAAATgAAAC8AAAAfAAAAPwAAAE8AAABFAAAAFwAAABcAAABfAAAAXwAAAF8AAAAXAAAARQAAAE4AAABFAAAALwAAAE4AAAAvAAAAHwAAAD8AAABPAAAARQAAABcAAAAXAAAAXwAAAF8AAABfAAAAFwAAAB4AAAAeAAAAHgAAAB4AAAAeAAAAHgAAABoAAAA/AAAATwAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAE8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAARQAAAUUAAANFAAAARQAAAUUAAAJFAAABRQAAAz8AAAA7AAAAOwAAADsAAABSAAAAFwAAABcAAAAXAAAAPwAAAEUAAAI4AAAAOAAAADgAAAA4AAAAOAAAAEUAAAE/AAAAOwAAADsAAAA7AAAAUgAAAFIAAABSAAAAFwAAAD8AAABFAAABOAAAADgAAAA4AAAAOAAAADgAAABFAAADPwAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAAA/AAAARQAAATgAAAA4AAAAOAAAADgAAAA4AAAARQAAAD8AAAAXAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAPwAAAA== 1,1: ind: 1,1 - tiles: RAAAAEQAAANEAAADRAAAA0QAAAJEAAADRAAAAj4AAAAWAAAAFgAAABYAAABRAAAAUQAAAFEAAABRAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAABRAAADPgAAACoAAABEAAABRAAAAUQAAAEqAAAAPgAAAEQAAABEAAADRAAAA0QAAABEAAADPgAAAFEAAABRAAABUQAAAD4AAABEAAAARAAAAEQAAABEAAADRAAAAz4AAABEAAACXgAAAF4AAABeAAAARAAAAz4AAABRAAABUQAAA1EAAAE+AAAARAAAAUQAAAJEAAABRAAAAkQAAAE+AAAARAAAA14AAABeAAAAXgAAAEQAAAI+AAAARAAAAkQAAABRAAABPgAAAEQAAANEAAABRAAAA0QAAAFEAAADPgAAAEQAAAJeAAAAXgAAAF4AAABEAAACPgAAAEQAAANEAAACUQAAAz4AAAAqAAAARAAAAkQAAABEAAABKgAAAD4AAABEAAABRAAAAUQAAAFEAAADXgAAAD4AAABEAAACRAAAAT4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAWAAADFgAAAhYAAAA+AAAARQAAAEUAAANFAAABPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAFgAAAxYAAAAWAAADPgAAAEUAAABFAAAATwAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAABYAAAEWAAAAFgAAAz4AAABFAAADRQAAAk8AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAWAAAAFgAAABYAAAI+AAAARQAAAEUAAAFPAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAFgAAABYAAAAWAAACPgAAAEUAAABFAAABRQAAAz4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAABRAAADXgAAAEQAAAFEAAACRAAAAkQAAAFEAAADRAAAAkQAAABEAAABRAAAAT4AAAAWAAADFgAAABYAAAIWAAABUQAAA04AAABEAAADRAAAAUQAAABEAAACRAAAAEQAAABEAAADRAAAA0QAAAA+AAAAFgAAABYAAAAWAAACFgAAAw== + tiles: RQAAAEUAAANFAAADRQAAA0UAAAJFAAADRQAAAj8AAAAXAAAAFwAAABcAAABSAAAAUgAAAFIAAABSAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAABSAAADPwAAACsAAABFAAABRQAAAUUAAAErAAAAPwAAAEUAAABFAAADRQAAA0UAAABFAAADPwAAAFIAAABSAAABUgAAAD8AAABFAAAARQAAAEUAAABFAAADRQAAAz8AAABFAAACXwAAAF8AAABfAAAARQAAAz8AAABSAAABUgAAA1IAAAE/AAAARQAAAUUAAAJFAAABRQAAAkUAAAE/AAAARQAAA18AAABfAAAAXwAAAEUAAAI/AAAARQAAAkUAAABSAAABPwAAAEUAAANFAAABRQAAA0UAAAFFAAADPwAAAEUAAAJfAAAAXwAAAF8AAABFAAACPwAAAEUAAANFAAACUgAAAz8AAAArAAAARQAAAkUAAABFAAABKwAAAD8AAABFAAABRQAAAUUAAAFFAAADXwAAAD8AAABFAAACRQAAAT8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAAXAAADFwAAAhcAAAA/AAAARgAAAEYAAANGAAABPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAFwAAAxcAAAAXAAADPwAAAEYAAABGAAAAUAAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAABcAAAEXAAAAFwAAAz8AAABGAAADRgAAAlAAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAAXAAAAFwAAABcAAAI/AAAARgAAAEYAAAFQAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAFwAAABcAAAAXAAACPwAAAEYAAABGAAABRgAAAz8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAABSAAADXwAAAEUAAAFFAAACRQAAAkUAAAFFAAADRQAAAkUAAABFAAABRQAAAT8AAAAXAAADFwAAABcAAAIXAAABUgAAA08AAABFAAADRQAAAUUAAABFAAACRQAAAEUAAABFAAADRQAAA0UAAAA/AAAAFwAAABcAAAAXAAACFwAAAw== -1,2: ind: -1,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAA== -1,3: ind: -1,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,2: ind: 0,2 - tiles: FgAAAxYAAAIWAAAAXgAAAFEAAABRAAAARAAAAVEAAAFEAAAARAAAAEQAAAJEAAACRAAAAz4AAABRAAADUQAAAj4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAABEAAACRAAAAkQAAABEAAADVgAAAFYAAABWAAADRAAAA0QAAAJEAAACRAAAAT4AAABEAAADRAAAAV4AAABeAAAARAAAAkQAAANEAAACRAAAAEoAAANKAAAASgAAAUQAAAJEAAABRAAAAEQAAAE+AAAARAAAAlYAAAFWAAABXgAAAEQAAABEAAAARAAAAkQAAAFWAAABVgAAAFYAAAJEAAABRAAAAEQAAAJEAAABPgAAAEQAAANEAAADRAAAAkQAAAE+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAARAAAAkQAAAFEAAAARAAAAEQAAABEAAADRAAAAz4AAABEAAACRAAAA0QAAAFEAAADRAAAA0QAAABEAAAAPgAAAEQAAABEAAABRAAAAUQAAANEAAADRAAAAEQAAAE+AAAARAAAA0QAAAEsAAAALAAAACwAAABEAAABRAAAAz4AAABEAAAARAAAAkQAAANEAAABRAAAAUQAAAFEAAAAPgAAAEQAAABEAAABRAAAAEQAAAJEAAAARAAAAkQAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAEQAAANEAAABRAAAAVEAAAM6AAAAOgAAADoAAAA+AAAAXgAAABYAAAEWAAACFgAAAxYAAAIWAAABFgAAAT4AAABEAAABRAAAAUQAAANRAAAAOgAAADoAAAA6AAAAPgAAAF4AAABeAAAAFgAAARYAAAAWAAACXgAAAF4AAAA+AAAARAAAAUQAAABEAAADUQAAAjoAAAA6AAAAOgAAAD4AAABEAAACTwAAAE8AAABPAAAATwAAAE8AAABEAAAAPgAAAEQAAAJEAAAARAAAA14AAABRAAACUQAAAFEAAAM+AAAARAAAA08AAABeAAAAXgAAAF4AAABPAAAARAAAAT4AAABEAAADRAAAAUQAAANRAAABUQAAA14AAABRAAACPgAAAEQAAAJPAAAAXgAAAF4AAABeAAAATwAAAEQAAAE+AAAAWgAAAFoAAAFaAAAAUQAAAV4AAABRAAABUQAAAz4AAABEAAADUAAAAk8AAABQAAAATwAAAFAAAABEAAABPgAAAA== + tiles: FwAAAxcAAAIXAAAAXwAAAFIAAABSAAAARQAAAVIAAAFFAAAARQAAAEUAAAJFAAACRQAAAz8AAABSAAADUgAAAj8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAABFAAACRQAAAkUAAABFAAADVwAAAFcAAABXAAADRQAAA0UAAAJFAAACRQAAAT8AAABFAAADRQAAAV8AAABfAAAARQAAAkUAAANFAAACRQAAAEsAAANLAAAASwAAAUUAAAJFAAABRQAAAEUAAAE/AAAARQAAAlcAAAFXAAABXwAAAEUAAABFAAAARQAAAkUAAAFXAAABVwAAAFcAAAJFAAABRQAAAEUAAAJFAAABPwAAAEUAAANFAAADRQAAAkUAAAE/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAARQAAAkUAAAFFAAAARQAAAEUAAABFAAADRQAAAz8AAABFAAACRQAAA0UAAAFFAAADRQAAA0UAAABFAAAAPwAAAEUAAABFAAABRQAAAUUAAANFAAADRQAAAEUAAAE/AAAARQAAA0UAAAEtAAAALQAAAC0AAABFAAABRQAAAz8AAABFAAAARQAAAkUAAANFAAABRQAAAUUAAAFFAAAAPwAAAEUAAABFAAABRQAAAEUAAAJFAAAARQAAAkUAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAEUAAANFAAABRQAAAVIAAAM7AAAAOwAAADsAAAA/AAAAXwAAABcAAAEXAAACFwAAAxcAAAIXAAABFwAAAT8AAABFAAABRQAAAUUAAANSAAAAOwAAADsAAAA7AAAAPwAAAF8AAABfAAAAFwAAARcAAAAXAAACXwAAAF8AAAA/AAAARQAAAUUAAABFAAADUgAAAjsAAAA7AAAAOwAAAD8AAABFAAACUAAAAFAAAABQAAAAUAAAAFAAAABFAAAAPwAAAEUAAAJFAAAARQAAA18AAABSAAACUgAAAFIAAAM/AAAARQAAA1AAAABfAAAAXwAAAF8AAABQAAAARQAAAT8AAABFAAADRQAAAUUAAANSAAABUgAAA18AAABSAAACPwAAAEUAAAJQAAAAXwAAAF8AAABfAAAAUAAAAEUAAAE/AAAAWwAAAFsAAAFbAAAAUgAAAV8AAABSAAABUgAAAz8AAABFAAADUQAAAlAAAABRAAAAUAAAAFEAAABFAAABPwAAAA== 0,3: ind: 0,3 - tiles: WgAAAloAAAFaAAABXgAAAF4AAABRAAADXgAAAD4AAABEAAABRAAAAkQAAABEAAABRAAAAEQAAABEAAACPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: WwAAAlsAAAFbAAABXwAAAF8AAABSAAADXwAAAD8AAABFAAABRQAAAkUAAABFAAABRQAAAEUAAABFAAACPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,2: ind: 1,2 - tiles: UQAAAV4AAABEAAACRAAAAUQAAAFEAAABRAAAA0QAAAJEAAACRAAAAUQAAAI+AAAAFgAAARYAAAEWAAABFgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAABeAAAAXgAAAF4AAABEAAABRAAAA0QAAANEAAACPgAAACgAAABEAAADRAAAAkQAAAFEAAADRAAAAUQAAABEAAABVgAAAV4AAABeAAAAXgAAAFYAAABeAAAARAAAAz4AAABRAAAARAAAA0QAAANEAAACRAAAAUQAAANEAAACRAAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAEQAAAI+AAAAKAAAAEQAAAJEAAACRAAAAkQAAANEAAACRAAAAEQAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAARAAAAUQAAAJEAAADRAAAA0QAAABEAAABRAAAAT4AAABEAAABRAAAA14AAABEAAAAXgAAAEQAAAJEAAADPgAAAEQAAAJEAAAARAAAA0QAAABEAAAARAAAA0QAAAA+AAAARAAAAkQAAABEAAADRAAAAEQAAANEAAACRAAAAz4AAABEAAACRAAAAEQAAAFEAAAARAAAAEQAAAFEAAACPgAAAEQAAAJEAAADXgAAAEQAAANeAAAARAAAAkQAAAI+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAB8AAAMWAAACFgAAAR8AAAMWAAACFgAAAh8AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAABXgAAACwAAABeAAAALAAAAF4AAAAWAAACPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAywAAAAsAAAAXgAAACwAAAAsAAAAFgAAAz4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAFeAAAAXgAAAF4AAABeAAAAXgAAAB8AAAI+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAADLAAAACwAAABeAAAALAAAACwAAAAWAAABPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAV4AAAAsAAAAXgAAACwAAABeAAAAFgAAAz4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: UgAAAV8AAABFAAACRQAAAUUAAAFFAAABRQAAA0UAAAJFAAACRQAAAUUAAAI/AAAAFwAAARcAAAEXAAABFwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAABfAAAAXwAAAF8AAABFAAABRQAAA0UAAANFAAACPwAAACkAAABFAAADRQAAAkUAAAFFAAADRQAAAUUAAABFAAABVwAAAV8AAABfAAAAXwAAAFcAAABfAAAARQAAAz8AAABSAAAARQAAA0UAAANFAAACRQAAAUUAAANFAAACRQAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAEUAAAI/AAAAKQAAAEUAAAJFAAACRQAAAkUAAANFAAACRQAAAEUAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAARQAAAUUAAAJFAAADRQAAA0UAAABFAAABRQAAAT8AAABFAAABRQAAA18AAABFAAAAXwAAAEUAAAJFAAADPwAAAEUAAAJFAAAARQAAA0UAAABFAAAARQAAA0UAAAA/AAAARQAAAkUAAABFAAADRQAAAEUAAANFAAACRQAAAz8AAABFAAACRQAAAEUAAAFFAAAARQAAAEUAAAFFAAACPwAAAEUAAAJFAAADXwAAAEUAAANfAAAARQAAAkUAAAI/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAACAAAAMXAAACFwAAASAAAAMXAAACFwAAAiAAAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAABXwAAAC0AAABfAAAALQAAAF8AAAAXAAACPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAy0AAAAtAAAAXwAAAC0AAAAtAAAAFwAAAz8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAFfAAAAXwAAAF8AAABfAAAAXwAAACAAAAI/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAADLQAAAC0AAABfAAAALQAAAC0AAAAXAAABPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAV8AAAAtAAAAXwAAAC0AAABfAAAAFwAAAz8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,3: ind: 1,3 - tiles: HwAAAxYAAAAWAAAAHwAAABYAAAAWAAADHwAAAz4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: IAAAAxcAAAAXAAAAIAAAABcAAAAXAAADIAAAAz8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,0: ind: 2,0 - tiles: OgAAADoAAABEAAAAPgAAAEQAAANEAAACRAAAAl4AAAAxAAAAMQAAADEAAABeAAAARAAAAEQAAABEAAAAXgAAADoAAAA6AAAARAAAAD4AAABEAAACRAAAAkQAAAFeAAAAXgAAAE8AAABeAAAAXgAAAEQAAABEAAAARAAAAF4AAAA6AAAARAAAAEQAAAA+AAAARAAAA0QAAANEAAACRAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAUQAAAFEAAABEAAAAPgAAAEQAAABEAAABRAAAAV4AAABeAAAATwAAAF4AAABeAAAAMAAAADAAAAAwAAAAXgAAAFEAAABeAAAARAAAAD4AAABEAAAARAAAAUQAAAJeAAAAWwAAAFsAAABbAAAAXgAAADAAAAAwAAAAMAAAAF4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAATgAAAE4AAABOAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAABYAAABEAAAATgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAWAAAARAAAAE4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAFgAAAEQAAABOAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAE4AAABOAAAATgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAARAAAA0QAAAJEAAADUQAAAFEAAABRAAAAUQAAAD4AAAAfAAAAHwAAAB8AAAAfAAAAXgAAAB8AAAAfAAAAPgAAAEQAAAFEAAACRAAAA1EAAABRAAAAUQAAAFEAAAA+AAAAHwAAAB8AAAAfAAAAHwAAAB8AAAAfAAAAHwAAAD4AAAAWAAAAFgAAAEQAAAFEAAACRAAAA1EAAABRAAAAPgAAAEQAAABEAAADRAAAAF4AAABEAAAAXgAAAF4AAAA+AAAAXgAAABYAAABEAAACRAAAAkQAAAJRAAAAUQAAAD4AAABEAAAARAAAAF4AAABeAAAAXgAAAF4AAABEAAADPgAAAA== + tiles: OwAAADsAAABFAAAAPwAAAEUAAANFAAACRQAAAl8AAAAyAAAAMgAAADIAAABfAAAARQAAAEUAAABFAAAAXwAAADsAAAA7AAAARQAAAD8AAABFAAACRQAAAkUAAAFfAAAAXwAAAFAAAABfAAAAXwAAAEUAAABFAAAARQAAAF8AAAA7AAAARQAAAEUAAAA/AAAARQAAA0UAAANFAAACRQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAUgAAAFIAAABFAAAAPwAAAEUAAABFAAABRQAAAV8AAABfAAAAUAAAAF8AAABfAAAAMQAAADEAAAAxAAAAXwAAAFIAAABfAAAARQAAAD8AAABFAAAARQAAAUUAAAJfAAAAXAAAAFwAAABcAAAAXwAAADEAAAAxAAAAMQAAAF8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAATwAAAE8AAABPAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAABcAAABFAAAATwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAAXAAAARQAAAE8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAFwAAAEUAAABPAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAE8AAABPAAAATwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAARQAAA0UAAAJFAAADUgAAAFIAAABSAAAAUgAAAD8AAAAgAAAAIAAAACAAAAAgAAAAXwAAACAAAAAgAAAAPwAAAEUAAAFFAAACRQAAA1IAAABSAAAAUgAAAFIAAAA/AAAAIAAAACAAAAAgAAAAIAAAACAAAAAgAAAAIAAAAD8AAAAXAAAAFwAAAEUAAAFFAAACRQAAA1IAAABSAAAAPwAAAEUAAABFAAADRQAAAF8AAABFAAAAXwAAAF8AAAA/AAAAXwAAABcAAABFAAACRQAAAkUAAAJSAAAAUgAAAD8AAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABFAAADPwAAAA== 3,0: ind: 3,0 - tiles: WwAAAFsAAABbAAAAXgAAAEQAAAFEAAACRAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABPAAAAXgAAAF4AAABEAAABRAAAA0QAAAM+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAEQAAABEAAAARAAAAkQAAABEAAADPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAE8AAABeAAAAXgAAAEQAAAJEAAAARAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFsAAABbAAAAWwAAAF4AAABEAAABRAAAA0QAAAM+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: XAAAAFwAAABcAAAAXwAAAEUAAAFFAAACRQAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABQAAAAXwAAAF8AAABFAAABRQAAA0UAAAM/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAEUAAABFAAAARQAAAkUAAABFAAADPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFAAAABfAAAAXwAAAEUAAAJFAAAARQAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAABcAAAAXAAAAF8AAABFAAABRQAAA0UAAAM/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,-1: ind: 2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAA== 3,-1: ind: 3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,1: ind: 3,1 - tiles: PgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: PwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,2: ind: 3,2 - tiles: PgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: PwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,2: ind: 2,2 - tiles: FgAAARYAAAMWAAACFgAAARYAAAMWAAABFgAAAxYAAAEWAAABPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAABEAAACRAAAAigAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAARAAAAkQAAANRAAACPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAEQAAABEAAAAKAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAARAAAAEQAAAJEAAAARAAAAl4AAABEAAADXgAAAD4AAABEAAADRAAAAUQAAAFEAAABRAAAAEQAAANEAAACPgAAAEQAAABEAAACRAAAAV4AAABEAAACRAAAAEQAAAI+AAAARAAAA0QAAANEAAABRAAAA0QAAANEAAABRAAAAD4AAABEAAAAXgAAAF4AAABEAAACRAAAAF4AAABeAAAAPgAAAEQAAAJEAAACRAAAAUQAAANEAAACRAAAAUQAAAE+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: FwAAARcAAAMXAAACFwAAARcAAAMXAAABFwAAAxcAAAEXAAABPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAABFAAACRQAAAikAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAARQAAAkUAAANSAAACPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAEUAAABFAAAAKQAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAARQAAAEUAAAJFAAAARQAAAl8AAABFAAADXwAAAD8AAABFAAADRQAAAUUAAAFFAAABRQAAAEUAAANFAAACPwAAAEUAAABFAAACRQAAAV8AAABFAAACRQAAAEUAAAI/AAAARQAAA0UAAANFAAABRQAAA0UAAANFAAABRQAAAD8AAABFAAAAXwAAAF8AAABFAAACRQAAAF8AAABfAAAAPwAAAEUAAAJFAAACRQAAAUUAAANFAAACRQAAAUUAAAE/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,1: ind: 2,1 - tiles: FgAAABYAAABeAAAARAAAAUQAAAFRAAAAUQAAAD4AAABEAAADRAAAAl4AAABEAAABXgAAAEQAAAFEAAACPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAABRAAACUQAAAFEAAAM+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAUQAAAFEAAAJRAAACPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAFEAAANRAAACUQAAAz4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAABRAAACOgAAADoAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAUQAAADoAAAA6AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAWAAADFgAAABYAAAAWAAACFgAAABYAAAIWAAADFgAAAxYAAAE+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAFgAAAxYAAAEWAAABFgAAAxYAAAEWAAABFgAAARYAAAAWAAABPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAA== + tiles: FwAAABcAAABfAAAARQAAAUUAAAFSAAAAUgAAAD8AAABFAAADRQAAAl8AAABFAAABXwAAAEUAAAFFAAACPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAABSAAACUgAAAFIAAAM/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAUgAAAFIAAAJSAAACPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAFIAAANSAAACUgAAAz8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAABSAAACOwAAADsAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAUgAAADsAAAA7AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAAXAAADFwAAABcAAAAXAAACFwAAABcAAAIXAAADFwAAAxcAAAE/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAFwAAAxcAAAEXAAABFwAAAxcAAAEXAAABFwAAARcAAAAXAAABPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAA== type: MapGrid - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg @@ -123,27 +123,27 @@ entities: version: 2 nodes: - node: + angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: - 1331: 41,14 + 258: 40,39 + 377: 10,35 + 641: 17,25 + 642: 17,26 + 643: 17,27 - node: - angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: - 259: 46,39 - 378: 0,35 + 1331: 41,14 - node: - angle: -1.5707963267948966 rad + angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: - 258: 40,39 - 377: 10,35 - 641: 17,25 - 642: 17,26 - 643: 17,27 + 259: 46,39 + 378: 0,35 - node: color: '#FFFFFFFF' id: Bot @@ -193,6 +193,12 @@ entities: id: Box decals: 5: 5,43 + - node: + color: '#D381C996' + id: BrickTileSteelCornerNe + decals: + 963: 14,16 + 1152: 22,10 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNe @@ -203,10 +209,10 @@ entities: 1299: 38,16 - node: color: '#D381C996' - id: BrickTileSteelCornerNe + id: BrickTileSteelCornerNw decals: - 963: 14,16 - 1152: 22,10 + 964: 8,16 + 1153: 12,10 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNw @@ -216,12 +222,6 @@ entities: 759: 7,22 1297: 35,13 1298: 37,16 - - node: - color: '#D381C996' - id: BrickTileSteelCornerNw - decals: - 964: 8,16 - 1153: 12,10 - node: color: '#D381C996' id: BrickTileSteelCornerSe @@ -236,6 +236,12 @@ entities: 762: 10,19 763: 9,18 1300: 38,12 + - node: + color: '#D381C996' + id: BrickTileSteelCornerSw + decals: + 962: 8,12 + 1150: 12,6 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSw @@ -244,12 +250,6 @@ entities: 764: 7,18 765: 6,19 1301: 35,12 - - node: - color: '#D381C996' - id: BrickTileSteelCornerSw - decals: - 962: 8,12 - 1150: 12,6 - node: color: '#FFFFFFFF' id: BrickTileSteelEndN @@ -383,6 +383,16 @@ entities: 1171: 13,10 1309: 37,12 1310: 36,12 + - node: + color: '#D381C996' + id: BrickTileSteelLineW + decals: + 948: 8,13 + 949: 8,14 + 950: 8,15 + 1147: 12,7 + 1148: 12,8 + 1149: 12,9 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW @@ -393,16 +403,18 @@ entities: 840: 1,6 1304: 37,14 1305: 37,15 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerNe + decals: + 524: 6,28 - node: color: '#D381C996' - id: BrickTileSteelLineW + id: BrickTileWhiteCornerNe decals: - 948: 8,13 - 949: 8,14 - 950: 8,15 - 1147: 12,7 - 1148: 12,8 - 1149: 12,9 + 501: 11,31 + 748: 7,19 + 785: 15,21 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNe @@ -421,18 +433,11 @@ entities: 995: 38,4 998: 54,4 1072: 15,4 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerNe - decals: - 501: 11,31 - 748: 7,19 - 785: 15,21 - node: color: '#9FED5896' - id: BrickTileWhiteCornerNe + id: BrickTileWhiteCornerNw decals: - 524: 6,28 + 525: 4,28 - node: color: '#D381C996' id: BrickTileWhiteCornerNw @@ -445,11 +450,6 @@ entities: id: BrickTileWhiteCornerNw decals: 870: 24,22 - - node: - color: '#9FED5896' - id: BrickTileWhiteCornerNw - decals: - 525: 4,28 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNw @@ -499,10 +499,10 @@ entities: 1043: 46,0 1073: 15,0 - node: - color: '#EFB34196' + color: '#9FED5896' id: BrickTileWhiteCornerSw decals: - 874: 24,18 + 528: 4,24 - node: color: '#D381C996' id: BrickTileWhiteCornerSw @@ -511,10 +511,10 @@ entities: 749: 9,21 787: 13,19 - node: - color: '#9FED5896' + color: '#EFB34196' id: BrickTileWhiteCornerSw decals: - 528: 4,24 + 874: 24,18 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSw @@ -546,11 +546,6 @@ entities: decals: 116: 13,39 202: 28,39 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteInnerNe - decals: - 1042: 38,2 - node: color: '#334E6DC8' id: BrickTileWhiteInnerNe @@ -570,9 +565,14 @@ entities: 861: 21,21 - node: color: '#FFFFFFFF' + id: BrickTileWhiteInnerNe + decals: + 1042: 38,2 + - node: + color: '#334E6DC8' id: BrickTileWhiteInnerNw decals: - 1041: 52,2 + 336: 22,42 - node: color: '#D381C996' id: BrickTileWhiteInnerNw @@ -585,10 +585,15 @@ entities: 757: 9,18 860: 19,21 - node: - color: '#334E6DC8' + color: '#FFFFFFFF' id: BrickTileWhiteInnerNw decals: - 336: 22,42 + 1041: 52,2 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerSe + decals: + 334: 16,48 - node: color: '#D381C996' id: BrickTileWhiteInnerSe @@ -602,9 +607,9 @@ entities: 862: 21,19 - node: color: '#334E6DC8' - id: BrickTileWhiteInnerSe + id: BrickTileWhiteInnerSw decals: - 334: 16,48 + 333: 22,48 - node: color: '#D381C996' id: BrickTileWhiteInnerSw @@ -617,11 +622,6 @@ entities: 750: 10,21 751: 9,22 863: 19,19 - - node: - color: '#334E6DC8' - id: BrickTileWhiteInnerSw - decals: - 333: 22,48 - node: color: '#334E6DC8' id: BrickTileWhiteLineE @@ -630,6 +630,13 @@ entities: 318: 16,44 319: 16,46 320: 16,47 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineE + decals: + 521: 6,25 + 522: 6,26 + 523: 6,27 - node: color: '#D381C996' id: BrickTileWhiteLineE @@ -653,13 +660,6 @@ entities: 864: 28,19 865: 28,20 866: 28,21 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineE - decals: - 521: 6,25 - 522: 6,26 - 523: 6,27 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineE @@ -688,6 +688,14 @@ entities: 1075: 15,1 1076: 15,2 1077: 15,3 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineN + decals: + 313: 21,42 + 314: 20,42 + 315: 18,42 + 316: 17,42 - node: color: '#9FED5896' id: BrickTileWhiteLineN @@ -697,6 +705,37 @@ entities: 1189: 19,6 1190: 13,6 1191: 15,6 + - node: + color: '#D381C996' + id: BrickTileWhiteLineN + decals: + 110: 12,38 + 111: 11,38 + 112: 10,38 + 400: 21,34 + 401: 20,34 + 402: 19,34 + 403: 13,34 + 496: 8,30 + 497: 7,30 + 499: 9,31 + 500: 10,31 + 502: 12,30 + 693: 38,30 + 694: 37,30 + 695: 36,30 + 696: 35,30 + 697: 34,30 + 698: 33,30 + 699: 32,30 + 700: 31,30 + 701: 30,30 + 742: 8,18 + 789: 14,21 + 852: 18,21 + 853: 22,21 + 1311: 33,16 + 1312: 32,16 - node: color: '#EFB34196' id: BrickTileWhiteLineN @@ -799,56 +838,6 @@ entities: 1078: 2,4 1098: 12,4 1099: 4,4 - - node: - color: '#D381C996' - id: BrickTileWhiteLineN - decals: - 110: 12,38 - 111: 11,38 - 112: 10,38 - 400: 21,34 - 401: 20,34 - 402: 19,34 - 403: 13,34 - 496: 8,30 - 497: 7,30 - 499: 9,31 - 500: 10,31 - 502: 12,30 - 693: 38,30 - 694: 37,30 - 695: 36,30 - 696: 35,30 - 697: 34,30 - 698: 33,30 - 699: 32,30 - 700: 31,30 - 701: 30,30 - 742: 8,18 - 789: 14,21 - 852: 18,21 - 853: 22,21 - 1311: 33,16 - 1312: 32,16 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineN - decals: - 313: 21,42 - 314: 20,42 - 315: 18,42 - 316: 17,42 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineS - decals: - 875: 25,18 - 876: 26,18 - 877: 27,18 - 1254: 32,7 - 1255: 31,7 - 1256: 27,7 - 1257: 26,7 - node: color: '#334E6DC8' id: BrickTileWhiteLineS @@ -900,6 +889,17 @@ entities: 857: 18,19 1313: 32,14 1314: 33,14 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineS + decals: + 875: 25,18 + 876: 26,18 + 877: 27,18 + 1254: 32,7 + 1255: 31,7 + 1256: 27,7 + 1257: 26,7 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineS @@ -981,6 +981,14 @@ entities: 1068: 12,0 1069: 13,0 1070: 14,0 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineW + decals: + 325: 22,43 + 326: 22,44 + 327: 22,46 + 328: 22,47 - node: color: '#9FED5896' id: BrickTileWhiteLineW @@ -1005,6 +1013,13 @@ entities: 1230: 34,1 1231: 34,2 1232: 34,4 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineW + decals: + 871: 24,21 + 872: 24,20 + 873: 24,19 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineW @@ -1029,21 +1044,6 @@ entities: 1079: 1,1 1080: 1,2 1081: 1,3 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineW - decals: - 871: 24,21 - 872: 24,20 - 873: 24,19 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineW - decals: - 325: 22,43 - 326: 22,44 - 327: 22,46 - 328: 22,47 - node: color: '#FFFFFFFF' id: BushAOne @@ -1104,11 +1104,6 @@ entities: id: Caution decals: 618: 11,42 - - node: - color: '#EFB34196' - id: CheckerNESW - decals: - 264: 8,48 - node: color: '#D381C996' id: CheckerNESW @@ -1130,9 +1125,9 @@ entities: 849: 20,19 - node: color: '#EFB34196' - id: CheckerNWSE + id: CheckerNESW decals: - 265: 14,48 + 264: 8,48 - node: color: '#D381C996' id: CheckerNWSE @@ -1171,6 +1166,11 @@ entities: 1016: 53,1 1017: 53,2 1018: 53,3 + - node: + color: '#EFB34196' + id: CheckerNWSE + decals: + 265: 14,48 - node: color: '#FFFFFFFF' id: Delivery @@ -1560,13 +1560,6 @@ entities: 1271: 26,15 1272: 28,16 1273: 29,16 - - node: - color: '#FFFFFFFF' - id: HalfTileOverlayGreyscale - decals: - 1192: 26,2 - 1193: 30,2 - 1194: 22,2 - node: color: '#D381C996' id: HalfTileOverlayGreyscale @@ -1595,6 +1588,18 @@ entities: 1244: 22,4 1245: 21,4 1246: 20,4 + - node: + color: '#FFFFFFFF' + id: HalfTileOverlayGreyscale + decals: + 1192: 26,2 + 1193: 30,2 + 1194: 22,2 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + decals: + 1275: 28,13 - node: color: '#D381C996' id: HalfTileOverlayGreyscale180 @@ -1619,11 +1624,6 @@ entities: 1210: 31,3 1211: 32,3 1212: 33,3 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale180 - decals: - 1275: 28,13 - node: color: '#D381C996' id: HalfTileOverlayGreyscale270 @@ -1702,11 +1702,11 @@ entities: 634: 14,25 635: 14,27 - node: - color: '#EFB34196' + color: '#52B4E996' id: QuarterTileOverlayGreyscale decals: - 272: 13,48 - 273: 12,48 + 1269: 25,14 + 1270: 27,15 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale @@ -1753,11 +1753,11 @@ entities: 1028: 54,3 1029: 38,2 - node: - color: '#52B4E996' + color: '#EFB34196' id: QuarterTileOverlayGreyscale decals: - 1269: 25,14 - 1270: 27,15 + 272: 13,48 + 273: 12,48 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 @@ -1950,11 +1950,6 @@ entities: id: ThreeQuarterTileOverlayGreyscale decals: 805: 12,22 - - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 803: 16,18 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 @@ -1964,14 +1959,19 @@ entities: 1266: 30,14 - node: color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale90 + id: ThreeQuarterTileOverlayGreyscale180 decals: - 804: 16,22 + 803: 16,18 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale90 decals: 1263: 30,16 + - node: + color: '#D381C996' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 804: 16,22 - node: color: '#FFFFFFFF' id: WarnBox @@ -2199,6 +2199,9 @@ entities: - type: RadiationGridResistance - type: LoadedMap - type: SpreaderGrid + - type: GridTree + - type: MovedGrids + - type: GridPathfinding - proto: Airlock entities: - uid: 1221 @@ -2249,6 +2252,23 @@ entities: - pos: 16.688623,9.410957 parent: 1653 type: Transform +- proto: AnomalyScanner + entities: + - uid: 658 + components: + - pos: 22.399458,27.421732 + parent: 1653 + type: Transform + - uid: 670 + components: + - pos: 22.461958,26.374857 + parent: 1653 + type: Transform + - uid: 712 + components: + - pos: 22.461958,25.452982 + parent: 1653 + type: Transform - proto: AnomalyVesselCircuitboard entities: - uid: 883 @@ -5847,362 +5867,268 @@ entities: - pos: 2.5,40.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 497 components: - pos: 4.5,40.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 502 components: - pos: 17.5,40.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 504 components: - rot: -1.5707963267948966 rad pos: 9.5,39.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 505 components: - rot: 1.5707963267948966 rad pos: 13.5,39.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 511 components: - pos: 18.5,40.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 518 components: - pos: 25.5,40.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 519 components: - rot: 3.141592653589793 rad pos: 30.5,38.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 538 components: - pos: 44.5,40.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 630 components: - rot: -1.5707963267948966 rad pos: 3.5,35.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 638 components: - rot: 1.5707963267948966 rad pos: 1.5,35.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 682 components: - rot: 3.141592653589793 rad pos: 26.5,34.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 683 components: - rot: 3.141592653589793 rad pos: 25.5,34.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 684 components: - pos: 32.5,36.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 696 components: - pos: 0.5,32.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 705 components: - rot: -1.5707963267948966 rad pos: 12.5,30.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 706 components: - rot: 1.5707963267948966 rad pos: 10.5,30.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 779 components: - rot: 1.5707963267948966 rad pos: 21.5,32.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 780 components: - rot: 1.5707963267948966 rad pos: 21.5,30.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 783 components: - rot: 1.5707963267948966 rad pos: 18.5,32.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 784 components: - rot: 1.5707963267948966 rad pos: 18.5,30.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 1004 components: - rot: -1.5707963267948966 rad pos: 22.5,21.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 1005 components: - rot: -1.5707963267948966 rad pos: 22.5,19.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 1008 components: - rot: 1.5707963267948966 rad pos: 18.5,19.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 1009 components: - rot: 1.5707963267948966 rad pos: 18.5,21.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 1264 components: - rot: -1.5707963267948966 rad pos: 38.5,0.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 1265 components: - rot: 1.5707963267948966 rad pos: 36.5,0.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 1266 components: - pos: 37.5,1.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 1267 components: - rot: 1.5707963267948966 rad pos: 52.5,4.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 1268 components: - rot: -1.5707963267948966 rad pos: 54.5,4.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 1324 components: - pos: 4.5,1.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 1325 components: - pos: 5.5,1.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 1326 components: - pos: 6.5,1.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 1327 components: - pos: 12.5,1.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 1328 components: - pos: 11.5,1.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 1329 components: - pos: 10.5,1.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 1330 components: - rot: 3.141592653589793 rad pos: 12.5,3.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 1331 components: - rot: 3.141592653589793 rad pos: 11.5,3.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 1332 components: - rot: 3.141592653589793 rad pos: 10.5,3.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 1333 components: - rot: 3.141592653589793 rad pos: 6.5,3.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 1334 components: - rot: 3.141592653589793 rad pos: 5.5,3.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 1335 components: - rot: 3.141592653589793 rad pos: 4.5,3.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 1347 components: - rot: -1.5707963267948966 rad pos: 16.5,0.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 1348 components: - rot: -1.5707963267948966 rad pos: 16.5,1.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 1349 components: - rot: -1.5707963267948966 rad pos: 16.5,4.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 1587 components: - rot: -1.5707963267948966 rad pos: 37.5,15.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 1588 components: - rot: -1.5707963267948966 rad pos: 37.5,14.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - proto: ChairFolding entities: - uid: 929 @@ -6545,79 +6471,59 @@ entities: pos: 25.5,31.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 935 components: - rot: 3.141592653589793 rad pos: 15.5,18.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 937 components: - rot: 1.5707963267948966 rad pos: 12.5,21.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 938 components: - pos: 13.5,22.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 939 components: - rot: -1.5707963267948966 rad pos: 16.5,19.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 986 components: - rot: 3.141592653589793 rad pos: 10.5,6.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 987 components: - rot: 1.5707963267948966 rad pos: 9.5,7.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 988 components: - rot: -1.5707963267948966 rad pos: 8.5,6.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 989 components: - rot: 1.5707963267948966 rad pos: 6.5,6.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 1247 components: - rot: 1.5707963267948966 rad pos: 48.5,0.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - proto: ComputerAnalysisConsole entities: - uid: 461 @@ -6707,8 +6613,6 @@ entities: - pos: 2.5208104,12.456571 parent: 1653 type: Transform - - nextAttack: 10380.4568435 - type: MeleeWeapon - proto: CryostasisBeaker entities: - uid: 1340 @@ -7042,25 +6946,29 @@ entities: - pos: 0.5,47.5 parent: 1653 type: Transform - + - fixtures: {} + type: Fixtures - uid: 718 components: - pos: 4.5,25.5 parent: 1653 type: Transform - + - fixtures: {} + type: Fixtures - uid: 796 components: - pos: 8.5,24.5 parent: 1653 type: Transform - + - fixtures: {} + type: Fixtures - uid: 896 components: - pos: 0.5,22.5 parent: 1653 type: Transform - + - fixtures: {} + type: Fixtures - proto: FoamedAluminiumMetal entities: - uid: 646 @@ -7196,8 +7104,6 @@ entities: pos: 42.5,16.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - proto: GasMixer entities: - uid: 1613 @@ -7206,8 +7112,6 @@ entities: pos: 41.5,16.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - proto: GasPassiveVent entities: - uid: 480 @@ -7216,30 +7120,22 @@ entities: pos: 4.5,44.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 481 components: - rot: 3.141592653589793 rad pos: 6.5,44.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 1068 components: - pos: 33.5,21.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 1069 components: - pos: 34.5,21.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - proto: GasPipeBend entities: - uid: 490 @@ -7248,8 +7144,6 @@ entities: pos: 5.5,46.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - proto: GasPipeStraight @@ -7260,37 +7154,27 @@ entities: pos: 4.5,45.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 483 components: - rot: 3.141592653589793 rad pos: 6.5,45.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 484 components: - pos: 6.5,46.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 1070 components: - pos: 33.5,20.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 1071 components: - pos: 34.5,20.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - proto: GasPipeTJunction entities: - uid: 488 @@ -7299,8 +7183,6 @@ entities: pos: 4.5,46.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - proto: GasPort entities: - uid: 486 @@ -7308,71 +7190,53 @@ entities: - pos: 4.5,48.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 487 components: - pos: 6.5,48.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 1074 components: - rot: 3.141592653589793 rad pos: 33.5,18.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 1075 components: - rot: 3.141592653589793 rad pos: 34.5,18.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 1614 components: - rot: -1.5707963267948966 rad pos: 43.5,16.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 1615 components: - rot: 3.141592653589793 rad pos: 42.5,15.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 1616 components: - rot: 3.141592653589793 rad pos: 41.5,15.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 1617 components: - rot: 1.5707963267948966 rad pos: 40.5,16.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 1651 components: - rot: 3.141592653589793 rad pos: 45.5,15.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - proto: GasPressurePump entities: - uid: 485 @@ -7380,31 +7244,23 @@ entities: - pos: 4.5,47.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 489 components: - rot: 3.141592653589793 rad pos: 6.5,47.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 1072 components: - rot: 3.141592653589793 rad pos: 33.5,19.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 1073 components: - pos: 34.5,19.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - proto: GasRecycler entities: - uid: 1649 @@ -7592,13 +7448,6 @@ entities: - pos: 21.5,9.5 parent: 1653 type: Transform -- proto: IngotGold - entities: - - uid: 712 - components: - - pos: 1.5054436,26.820345 - parent: 1653 - type: Transform - proto: KitchenMicrowave entities: - uid: 961 @@ -7698,26 +7547,6 @@ entities: - pos: 31.5,9.5 parent: 1653 type: Transform -- proto: MachineAPE - entities: - - uid: 838 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,25.5 - parent: 1653 - type: Transform - - uid: 839 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,26.5 - parent: 1653 - type: Transform - - uid: 840 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,27.5 - parent: 1653 - type: Transform - proto: MachineFrame entities: - uid: 617 @@ -8030,6 +7859,18 @@ entities: - pos: 28.542555,0.5099404 parent: 1653 type: Transform +- proto: PlushieSpaceLizard + entities: + - uid: 713 + components: + - pos: 10.508222,14.448289 + parent: 1653 + type: Transform + - uid: 820 + components: + - pos: 12.476972,14.557664 + parent: 1653 + type: Transform - proto: PortableScrubber entities: - uid: 836 @@ -8156,8 +7997,6 @@ entities: pos: 18.5,38.5 parent: 1653 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 506 @@ -8166,8 +8005,6 @@ entities: pos: 10.5,38.5 parent: 1653 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 513 @@ -8176,8 +8013,6 @@ entities: pos: 2.5,38.5 parent: 1653 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 537 @@ -8185,8 +8020,6 @@ entities: - pos: 42.5,40.5 parent: 1653 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 634 @@ -8194,8 +8027,6 @@ entities: - pos: 2.5,36.5 parent: 1653 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 635 @@ -8204,8 +8035,6 @@ entities: pos: 8.5,34.5 parent: 1653 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 657 @@ -8213,8 +8042,6 @@ entities: - pos: 14.5,36.5 parent: 1653 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 676 @@ -8223,8 +8050,6 @@ entities: pos: 31.5,34.5 parent: 1653 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 680 @@ -8232,8 +8057,6 @@ entities: - pos: 27.5,36.5 parent: 1653 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 704 @@ -8241,8 +8064,6 @@ entities: - pos: 11.5,32.5 parent: 1653 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 770 @@ -8250,8 +8071,6 @@ entities: - pos: 15.5,32.5 parent: 1653 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 771 @@ -8259,8 +8078,6 @@ entities: - pos: 24.5,32.5 parent: 1653 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 870 @@ -8268,8 +8085,6 @@ entities: - pos: 30.5,32.5 parent: 1653 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 872 @@ -8277,8 +8092,6 @@ entities: - pos: 38.5,32.5 parent: 1653 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 932 @@ -8287,8 +8100,6 @@ entities: pos: 10.5,19.5 parent: 1653 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 933 @@ -8297,8 +8108,6 @@ entities: pos: 6.5,21.5 parent: 1653 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 944 @@ -8306,8 +8115,6 @@ entities: - pos: 15.5,22.5 parent: 1653 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 945 @@ -8316,8 +8123,6 @@ entities: pos: 13.5,18.5 parent: 1653 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 1011 @@ -8325,8 +8130,6 @@ entities: - pos: 18.5,22.5 parent: 1653 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 1012 @@ -8335,8 +8138,6 @@ entities: pos: 22.5,18.5 parent: 1653 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 1052 @@ -8345,8 +8146,6 @@ entities: pos: 25.5,18.5 parent: 1653 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 1109 @@ -8355,8 +8154,6 @@ entities: pos: 2.5,14.5 parent: 1653 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 1110 @@ -8365,8 +8162,6 @@ entities: pos: 4.5,14.5 parent: 1653 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 1280 @@ -8375,8 +8170,6 @@ entities: pos: 36.5,3.5 parent: 1653 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 1281 @@ -8385,8 +8178,6 @@ entities: pos: 54.5,1.5 parent: 1653 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 1282 @@ -8394,8 +8185,6 @@ entities: - pos: 43.5,2.5 parent: 1653 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 1344 @@ -8404,8 +8193,6 @@ entities: pos: 2.5,2.5 parent: 1653 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 1345 @@ -8414,8 +8201,6 @@ entities: pos: 14.5,2.5 parent: 1653 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 1385 @@ -8424,8 +8209,6 @@ entities: pos: 15.5,8.5 parent: 1653 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 1386 @@ -8434,8 +8217,6 @@ entities: pos: 19.5,8.5 parent: 1653 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 1590 @@ -8443,8 +8224,6 @@ entities: - pos: 27.5,4.5 parent: 1653 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 1591 @@ -8453,8 +8232,6 @@ entities: pos: 30.5,15.5 parent: 1653 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 1592 @@ -8463,8 +8240,6 @@ entities: pos: 24.5,13.5 parent: 1653 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 1593 @@ -8473,8 +8248,6 @@ entities: pos: 34.5,19.5 parent: 1653 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - proto: PoweredlightEmpty @@ -8510,8 +8283,6 @@ entities: pos: 18.5,43.5 parent: 1653 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 1342 @@ -8520,8 +8291,6 @@ entities: pos: 12.5,2.5 parent: 1653 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 1343 @@ -8530,8 +8299,6 @@ entities: pos: 4.5,2.5 parent: 1653 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - proto: PoweredSmallLight @@ -9028,7 +8795,6 @@ entities: pos: 6.5,24.5 parent: 1653 type: Transform - - proto: ReinforcedWindow entities: - uid: 739 @@ -9125,55 +8891,6 @@ entities: - pos: 1.5,13.5 parent: 1653 type: Transform -- proto: SalvagePartsT2Spawner - entities: - - uid: 1637 - components: - - pos: 41.5,12.5 - parent: 1653 - type: Transform - - uid: 1639 - components: - - pos: 35.5,14.5 - parent: 1653 - type: Transform - - uid: 1640 - components: - - pos: 10.5,7.5 - parent: 1653 - type: Transform - - uid: 1641 - components: - - pos: 23.5,2.5 - parent: 1653 - type: Transform - - uid: 1643 - components: - - pos: 37.5,0.5 - parent: 1653 - type: Transform - - uid: 1644 - components: - - pos: 2.5,31.5 - parent: 1653 - type: Transform - - uid: 1645 - components: - - pos: 1.5,46.5 - parent: 1653 - type: Transform -- proto: SalvagePartsT3Spawner - entities: - - uid: 1638 - components: - - pos: 42.5,13.5 - parent: 1653 - type: Transform - - uid: 1642 - components: - - pos: 31.5,2.5 - parent: 1653 - type: Transform - proto: Screwdriver entities: - uid: 1111 @@ -9212,99 +8929,6 @@ entities: - pos: 25.506968,14.578961 parent: 1653 type: Transform -- proto: SheetGlass - entities: - - uid: 1112 - components: - - pos: 0.5572295,16.464039 - parent: 1653 - type: Transform - - uid: 1535 - components: - - pos: 27.48748,8.492639 - parent: 1653 - type: Transform -- proto: SheetPGlass - entities: - - uid: 820 - components: - - pos: 14.534195,24.571789 - parent: 1653 - type: Transform -- proto: SheetPlasma - entities: - - uid: 1472 - components: - - pos: 32.4712,4.556815 - parent: 1653 - type: Transform -- proto: SheetPlasteel - entities: - - uid: 658 - components: - - pos: 15.499195,34.56076 - parent: 1653 - type: Transform - - uid: 1536 - components: - - pos: 31.534355,8.523889 - parent: 1653 - type: Transform -- proto: SheetPlastic - entities: - - uid: 1114 - components: - - pos: 0.5416045,16.026539 - parent: 1653 - type: Transform - - uid: 1537 - components: - - pos: 7.5163627,6.5836935 - parent: 1653 - type: Transform -- proto: SheetRGlass - entities: - - uid: 1538 - components: - - pos: 6.5744953,22.554136 - parent: 1653 - type: Transform -- proto: SheetRPGlass - entities: - - uid: 841 - components: - - pos: 16.508902,24.578423 - parent: 1653 - type: Transform - - uid: 1474 - components: - - pos: 20.5658,4.54119 - parent: 1653 - type: Transform -- proto: SheetSteel - entities: - - uid: 670 - components: - - pos: 21.511246,34.536728 - parent: 1653 - type: Transform - - uid: 1113 - components: - - pos: 0.5103545,15.635914 - parent: 1653 - type: Transform - - uid: 1539 - components: - - pos: 4.6210227,35.514687 - parent: 1653 - type: Transform -- proto: SheetSteel1 - entities: - - uid: 536 - components: - - pos: 32.52815,38.437122 - parent: 1653 - type: Transform - proto: ShuttersWindow entities: - uid: 580 @@ -9454,13 +9078,6 @@ entities: - pos: 33.5,4.5 parent: 1653 type: Transform -- proto: SilverOre - entities: - - uid: 822 - components: - - pos: 1.5210686,26.30472 - parent: 1653 - type: Transform - proto: SinkWide entities: - uid: 471 @@ -9509,6 +9126,13 @@ entities: - pos: 3.5,10.5 parent: 1653 type: Transform +- proto: Skub + entities: + - uid: 536 + components: + - pos: 1.560874,26.710463 + parent: 1653 + type: Transform - proto: SMESBasic entities: - uid: 262 @@ -9536,13 +9160,6 @@ entities: - pos: 30.5,8.5 parent: 1653 type: Transform -- proto: SpawnVehicleATV - entities: - - uid: 844 - components: - - pos: 20.5,25.5 - parent: 1653 - type: Transform - proto: SprayBottleSpaceCleaner entities: - uid: 720 @@ -10303,39 +9920,24 @@ entities: pos: 10.5,25.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 801 components: - rot: 1.5707963267948966 rad pos: 8.5,27.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 802 components: - rot: -1.5707963267948966 rad pos: 10.5,27.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics - uid: 889 components: - rot: -1.5707963267948966 rad pos: 4.5,18.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics -- proto: ToolboxGoldFilled - entities: - - uid: 713 - components: - - pos: 1.492549,27.312542 - parent: 1653 - type: Transform - proto: ToolboxMechanicalFilled entities: - uid: 1108 @@ -10343,8 +9945,6 @@ entities: - pos: 4.523156,12.6515875 parent: 1653 type: Transform - - nextAttack: 10488.7397437 - type: MeleeWeapon - uid: 1586 components: - pos: 36.51179,16.622833 @@ -10407,15 +10007,6 @@ entities: - pos: 6.5,25.5 parent: 1653 type: Transform - - bodyType: Static - type: Physics -- proto: VehicleKeyATV - entities: - - uid: 846 - components: - - pos: 20.483374,24.635374 - parent: 1653 - type: Transform - proto: VendingMachineCigs entities: - uid: 928 @@ -10896,25 +10487,6 @@ entities: - pos: 7.5,3.5 parent: 1653 type: Transform -- proto: WeaponLaserGun - entities: - - uid: 1150 - components: - - pos: 12.468685,14.590134 - parent: 1653 - type: Transform - - uid: 1151 - components: - - pos: 12.593685,14.371384 - parent: 1653 - type: Transform -- proto: WeaponXrayCannon - entities: - - uid: 1152 - components: - - pos: 10.48431,14.543259 - parent: 1653 - type: Transform - proto: Welder entities: - uid: 663 diff --git a/Resources/Maps/Dungeon/lava_brig.yml b/Resources/Maps/Dungeon/lava_brig.yml index 5b4c409dec..cc432b3f73 100644 --- a/Resources/Maps/Dungeon/lava_brig.yml +++ b/Resources/Maps/Dungeon/lava_brig.yml @@ -1,25 +1,25 @@ meta: - format: 4 + format: 5 postmapinit: false tilemap: 0: Space 13: FloorBasalt - 22: FloorDark - 26: FloorDarkMini - 27: FloorDarkMono - 35: FloorElevatorShaft - 44: FloorGreenCircuit - 49: FloorLino - 58: FloorReinforced - 62: FloorShuttleOrange - 68: FloorSteel - 73: FloorSteelMini - 74: FloorSteelMono - 78: FloorTechMaint - 81: FloorWhite - 85: FloorWhiteMini - 91: FloorWood - 94: Plating + 23: FloorDark + 27: FloorDarkMini + 28: FloorDarkMono + 36: FloorElevatorShaft + 45: FloorGreenCircuit + 50: FloorLino + 59: FloorReinforced + 63: FloorShuttleOrange + 69: FloorSteel + 74: FloorSteelMini + 75: FloorSteelMono + 79: FloorTechMaint + 82: FloorWhite + 86: FloorWhiteMini + 92: FloorWood + 95: Plating entities: - proto: "" entities: @@ -34,64 +34,64 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAA== 0,0: ind: 0,0 - tiles: RAAAA0QAAAFEAAACRAAAA0QAAAJEAAABXgAAAA0AAAAWAAABDQAAAF4AAABEAAACRAAAAkQAAAJEAAACRAAAAkQAAAJEAAABRAAAAUQAAABEAAADRAAAA14AAAANAAAADQAAAA0AAABeAAAARAAAAUQAAAJEAAABRAAAAkQAAABEAAADRAAAA0QAAAFEAAADRAAAAkQAAAEbAAABFgAAAQ0AAAAWAAACGwAAAEQAAAFEAAACRAAAAUQAAANEAAADTgAAAE4AAABOAAAATgAAAE4AAABOAAAAXgAAAA0AAAANAAAADQAAAF4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAF4AAAANAAAAFgAAAg0AAABeAAAATgAAAE4AAABOAAAATgAAAE4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAFgAAARYAAAEWAAACDQAAAA0AAAANAAAADQAAAA0AAAAWAAABFgAAAxYAAAE+AAAASgAAAkQAAABKAAACXgAAABYAAAAbAAADXgAAAA0AAAANAAAADQAAAA0AAAANAAAAXgAAABsAAAIWAAACPgAAAEkAAAJJAAAASQAAAF4AAAAWAAABGwAAAl4AAAANAAAADQAAAA0AAAANAAAADQAAAF4AAAAbAAABFgAAAz4AAABJAAACSQAAAEkAAABEAAACFgAAABsAAANeAAAADQAAAA0AAAANAAAADQAAAA0AAABeAAAAGwAAABYAAAE+AAAASQAAA0kAAAFJAAABXgAAABYAAAMWAAADFgAAAg0AAAANAAAADQAAAA0AAAANAAAAFgAAARYAAAEWAAAAPgAAAEoAAAFEAAABSgAAAl4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAFgAAABYAAAFeAAAAFgAAA14AAAAWAAADFgAAAz4AAABOAAAAXgAAAFsAAANbAAABWwAAA1sAAABbAAADPgAAABYAAAEWAAACFgAAAhYAAAMWAAADFgAAAxYAAAA+AAAATgAAAF4AAABbAAABWwAAAlsAAABbAAACWwAAAj4AAAAWAAADFgAAAg0AAAANAAAADQAAABYAAAIWAAACPgAAAE4AAABeAAAAWwAAAlsAAANbAAADWwAAAlsAAAM+AAAAFgAAAxYAAAIWAAABFgAAAhYAAAIWAAADFgAAAT4AAABOAAAAXgAAAF4AAABOAAAAXgAAAF4AAABbAAABPgAAAA== + tiles: RQAAA0UAAAFFAAACRQAAA0UAAAJFAAABXwAAAA0AAAAXAAABDQAAAF8AAABFAAACRQAAAkUAAAJFAAACRQAAAkUAAAJFAAABRQAAAUUAAABFAAADRQAAA18AAAANAAAADQAAAA0AAABfAAAARQAAAUUAAAJFAAABRQAAAkUAAABFAAADRQAAA0UAAAFFAAADRQAAAkUAAAEcAAABFwAAAQ0AAAAXAAACHAAAAEUAAAFFAAACRQAAAUUAAANFAAADTwAAAE8AAABPAAAATwAAAE8AAABPAAAAXwAAAA0AAAANAAAADQAAAF8AAABPAAAATwAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAF8AAAANAAAAFwAAAg0AAABfAAAATwAAAE8AAABPAAAATwAAAE8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAFwAAARcAAAEXAAACDQAAAA0AAAANAAAADQAAAA0AAAAXAAABFwAAAxcAAAE/AAAASwAAAkUAAABLAAACXwAAABcAAAAcAAADXwAAAA0AAAANAAAADQAAAA0AAAANAAAAXwAAABwAAAIXAAACPwAAAEoAAAJKAAAASgAAAF8AAAAXAAABHAAAAl8AAAANAAAADQAAAA0AAAANAAAADQAAAF8AAAAcAAABFwAAAz8AAABKAAACSgAAAEoAAABFAAACFwAAABwAAANfAAAADQAAAA0AAAANAAAADQAAAA0AAABfAAAAHAAAABcAAAE/AAAASgAAA0oAAAFKAAABXwAAABcAAAMXAAADFwAAAg0AAAANAAAADQAAAA0AAAANAAAAFwAAARcAAAEXAAAAPwAAAEsAAAFFAAABSwAAAl8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAFwAAABcAAAFfAAAAFwAAA18AAAAXAAADFwAAAz8AAABPAAAAXwAAAFwAAANcAAABXAAAA1wAAABcAAADPwAAABcAAAEXAAACFwAAAhcAAAMXAAADFwAAAxcAAAA/AAAATwAAAF8AAABcAAABXAAAAlwAAABcAAACXAAAAj8AAAAXAAADFwAAAg0AAAANAAAADQAAABcAAAIXAAACPwAAAE8AAABfAAAAXAAAAlwAAANcAAADXAAAAlwAAAM/AAAAFwAAAxcAAAIXAAABFwAAAhcAAAIXAAADFwAAAT8AAABPAAAAXwAAAF8AAABPAAAAXwAAAF8AAABcAAABPwAAAA== 0,1: ind: 0,1 - tiles: FgAAABYAAANeAAAAFgAAAl4AAAAWAAADFgAAAD4AAABOAAAATgAAAE4AAABOAAAATgAAAF4AAABbAAACPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAWAAADFgAAABYAAAMWAAADFgAAAT4AAABEAAAARAAAAUQAAAJEAAAARAAAAD4AAABOAAAAXgAAAEQAAAFOAAAAFgAAAl4AAAANAAAAXgAAABYAAAI+AAAARAAAA0kAAABJAAABSQAAA0QAAAE+AAAATgAAAE4AAABEAAAAXgAAABYAAAENAAAADQAAAA0AAAAWAAAAPgAAAEQAAABJAAABSQAAAkkAAAJEAAADPgAAAEQAAAJEAAADRAAAAUQAAAAWAAAAXgAAAA0AAABeAAAAFgAAAD4AAABEAAABSQAAAUkAAAFJAAABRAAAAz4AAABOAAAATgAAAEQAAABEAAABFgAAAxYAAAEWAAACFgAAABYAAAE+AAAARAAAAEQAAAFEAAAARAAAAkQAAAE+AAAATgAAAE4AAABEAAABRAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAWAAAAFgAAAxYAAAA+AAAATgAAAE4AAABeAAAAPgAAAFUAAAJVAAACVQAAAT4AAABEAAADRAAAA0oAAAA+AAAAFgAAAA0AAAAWAAACPgAAAF4AAABeAAAAXgAAAD4AAABVAAADVQAAAlUAAAM+AAAARAAAAEQAAAFKAAABPgAAABYAAAINAAAAFgAAAD4AAABeAAAAXgAAAF4AAAA+AAAAVQAAA1UAAABVAAAAPgAAAEQAAAFEAAABRAAAAT4AAAAWAAACDQAAABYAAAE+AAAAXgAAAF4AAABeAAAAPgAAAFUAAANVAAADVQAAAT4AAABKAAACRAAAAUQAAAI+AAAAFgAAAxYAAAIWAAADPgAAAF4AAABOAAAAXgAAAD4AAABVAAACVQAAAlUAAAM+AAAASgAAAkQAAABEAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAWAAAAFgAAAQ0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAABYAAAMWAAACPgAAAEQAAAFEAAACFgAAAhYAAAEWAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAABYAAAMWAAADFgAAAD4AAABOAAAAXgAAAA== + tiles: FwAAABcAAANfAAAAFwAAAl8AAAAXAAADFwAAAD8AAABPAAAATwAAAE8AAABPAAAATwAAAF8AAABcAAACPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAAXAAADFwAAABcAAAMXAAADFwAAAT8AAABFAAAARQAAAUUAAAJFAAAARQAAAD8AAABPAAAAXwAAAEUAAAFPAAAAFwAAAl8AAAANAAAAXwAAABcAAAI/AAAARQAAA0oAAABKAAABSgAAA0UAAAE/AAAATwAAAE8AAABFAAAAXwAAABcAAAENAAAADQAAAA0AAAAXAAAAPwAAAEUAAABKAAABSgAAAkoAAAJFAAADPwAAAEUAAAJFAAADRQAAAUUAAAAXAAAAXwAAAA0AAABfAAAAFwAAAD8AAABFAAABSgAAAUoAAAFKAAABRQAAAz8AAABPAAAATwAAAEUAAABFAAABFwAAAxcAAAEXAAACFwAAABcAAAE/AAAARQAAAEUAAAFFAAAARQAAAkUAAAE/AAAATwAAAE8AAABFAAABRQAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAAXAAAAFwAAAxcAAAA/AAAATwAAAE8AAABfAAAAPwAAAFYAAAJWAAACVgAAAT8AAABFAAADRQAAA0sAAAA/AAAAFwAAAA0AAAAXAAACPwAAAF8AAABfAAAAXwAAAD8AAABWAAADVgAAAlYAAAM/AAAARQAAAEUAAAFLAAABPwAAABcAAAINAAAAFwAAAD8AAABfAAAAXwAAAF8AAAA/AAAAVgAAA1YAAABWAAAAPwAAAEUAAAFFAAABRQAAAT8AAAAXAAACDQAAABcAAAE/AAAAXwAAAF8AAABfAAAAPwAAAFYAAANWAAADVgAAAT8AAABLAAACRQAAAUUAAAI/AAAAFwAAAxcAAAIXAAADPwAAAF8AAABPAAAAXwAAAD8AAABWAAACVgAAAlYAAAM/AAAASwAAAkUAAABFAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAAXAAAAFwAAAQ0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAABcAAAMXAAACPwAAAEUAAAFFAAACFwAAAhcAAAEXAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAABcAAAMXAAADFwAAAD8AAABPAAAAXwAAAA== 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAA== -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAA== -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAA== 1,-1: ind: 1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAA== 1,0: ind: 1,0 - tiles: RAAAAT4AAAAxAAAAMQAAADEAAAAxAAAAXgAAABYAAAIWAAAAFgAAARYAAAMWAAABFgAAAxYAAAMWAAACFgAAA0QAAAM+AAAAMQAAADEAAAAxAAAAMQAAAF4AAAAWAAAAFgAAAxYAAAEWAAACFgAAARYAAAMWAAACFgAAARYAAAFEAAAAPgAAADEAAAAxAAAAMQAAADEAAAAbAAACFgAAAhYAAAIWAAACFgAAARYAAAIWAAACFgAAABYAAAAWAAABTgAAAD4AAAAxAAAAMQAAADEAAAAxAAAAXgAAABYAAAMWAAAAFgAAAhYAAAAWAAADFgAAAxYAAAMWAAAAFgAAAU4AAAA+AAAAMQAAADEAAAAxAAAAMQAAAF4AAAAWAAABFgAAARYAAAIWAAAAFgAAARYAAAIWAAAAFgAAAhYAAAM+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAARAAAAUQAAAJEAAACXgAAAEoAAABEAAABSgAAAD4AAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAEQAAABEAAABRAAAAF4AAABJAAAASQAAAEkAAAE+AAAAOgAAAF4AAAAbAAACXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAkQAAABEAAADSQAAA0kAAABJAAADPgAAADoAAABeAAAAIwAAAF4AAAAjAAAAIwAAACMAAABeAAAARAAAAEQAAABEAAABXgAAAEkAAAJJAAABSQAAAz4AAAA6AAAAXgAAAF4AAABeAAAAXgAAABsAAAFeAAAAXgAAAEQAAANEAAAARAAAAF4AAABKAAADRAAAAUoAAAI+AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAARAAAAUQAAABEAAAARAAAA0QAAAJEAAACRAAAAz4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAPgAAAEQAAAFJAAACSQAAAkkAAABJAAADSQAAAkQAAAA+AAAATgAAAF4AAABOAAAATgAAAE4AAABEAAAAXgAAAD4AAABEAAAASQAAAUkAAANJAAABSQAAAkkAAABEAAACPgAAAE4AAABeAAAAXgAAAF4AAABeAAAARAAAA04AAAA+AAAARAAAAkkAAAFJAAABSQAAA0kAAABJAAABRAAAAD4AAABOAAAAXgAAAE4AAABOAAAATgAAAEQAAABeAAAAPgAAAA== + tiles: RQAAAT8AAAAyAAAAMgAAADIAAAAyAAAAXwAAABcAAAIXAAAAFwAAARcAAAMXAAABFwAAAxcAAAMXAAACFwAAA0UAAAM/AAAAMgAAADIAAAAyAAAAMgAAAF8AAAAXAAAAFwAAAxcAAAEXAAACFwAAARcAAAMXAAACFwAAARcAAAFFAAAAPwAAADIAAAAyAAAAMgAAADIAAAAcAAACFwAAAhcAAAIXAAACFwAAARcAAAIXAAACFwAAABcAAAAXAAABTwAAAD8AAAAyAAAAMgAAADIAAAAyAAAAXwAAABcAAAMXAAAAFwAAAhcAAAAXAAADFwAAAxcAAAMXAAAAFwAAAU8AAAA/AAAAMgAAADIAAAAyAAAAMgAAAF8AAAAXAAABFwAAARcAAAIXAAAAFwAAARcAAAIXAAAAFwAAAhcAAAM/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAARQAAAUUAAAJFAAACXwAAAEsAAABFAAABSwAAAD8AAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAEUAAABFAAABRQAAAF8AAABKAAAASgAAAEoAAAE/AAAAOwAAAF8AAAAcAAACXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAkUAAABFAAADSgAAA0oAAABKAAADPwAAADsAAABfAAAAJAAAAF8AAAAkAAAAJAAAACQAAABfAAAARQAAAEUAAABFAAABXwAAAEoAAAJKAAABSgAAAz8AAAA7AAAAXwAAAF8AAABfAAAAXwAAABwAAAFfAAAAXwAAAEUAAANFAAAARQAAAF8AAABLAAADRQAAAUsAAAI/AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAARQAAAUUAAABFAAAARQAAA0UAAAJFAAACRQAAAz8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAPwAAAEUAAAFKAAACSgAAAkoAAABKAAADSgAAAkUAAAA/AAAATwAAAF8AAABPAAAATwAAAE8AAABFAAAAXwAAAD8AAABFAAAASgAAAUoAAANKAAABSgAAAkoAAABFAAACPwAAAE8AAABfAAAAXwAAAF8AAABfAAAARQAAA08AAAA/AAAARQAAAkoAAAFKAAABSgAAA0oAAABKAAABRQAAAD8AAABPAAAAXwAAAE8AAABPAAAATwAAAEUAAABfAAAAPwAAAA== 1,1: ind: 1,1 - tiles: RAAAAUQAAAJEAAACRAAAAEQAAAFEAAAARAAAAj4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAABOAAAAPgAAAEQAAAJEAAABRAAAAUQAAABEAAADPgAAAF4AAABOAAAATgAAAE4AAABeAAAAPgAAAEQAAAJEAAACTgAAAD4AAABEAAADSQAAAkkAAAFJAAAARAAAAT4AAABeAAAAXgAAAE4AAABeAAAAXgAAAD4AAABEAAADSQAAA0QAAAI+AAAARAAAA0kAAANJAAADSQAAA0QAAAE+AAAAXgAAAEQAAAFeAAAARAAAAV4AAAA+AAAARAAAAEkAAAFEAAADPgAAAEQAAABJAAAASQAAAkkAAAJEAAADPgAAAF4AAABOAAAATgAAAE4AAABeAAAAPgAAAEQAAANJAAADRAAAAj4AAABEAAACRAAAAkQAAANEAAADRAAAAj4AAABeAAAATgAAAE4AAABOAAAAXgAAAD4AAABEAAACRAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAABEAAADRAAAAUQAAAA+AAAATgAAAE4AAABOAAAAPgAAAE4AAABOAAAAXgAAAD4AAABEAAABRAAAAkoAAAI+AAAARAAAAUQAAABEAAAAPgAAAE4AAABOAAAATgAAAD4AAABeAAAATgAAAE4AAAA+AAAARAAAAkQAAANKAAABPgAAAEQAAAJEAAAARAAAAj4AAABEAAACRAAAAEQAAAI+AAAARAAAA0QAAABEAAADPgAAAEQAAANEAAACRAAAAz4AAABKAAADRAAAAkoAAAM+AAAATgAAAE4AAABOAAAAPgAAAE4AAABOAAAAXgAAAD4AAABKAAAARAAAA0QAAAI+AAAASgAAAUQAAAFKAAABPgAAAE4AAABOAAAATgAAAD4AAABOAAAAXgAAAE4AAAA+AAAASgAAA0QAAANEAAABPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAABEAAAARAAAAkQAAAFEAAADRAAAAkQAAABEAAACRAAAAEQAAAJEAAACRAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAA== + tiles: RQAAAUUAAAJFAAACRQAAAEUAAAFFAAAARQAAAj8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAABPAAAAPwAAAEUAAAJFAAABRQAAAUUAAABFAAADPwAAAF8AAABPAAAATwAAAE8AAABfAAAAPwAAAEUAAAJFAAACTwAAAD8AAABFAAADSgAAAkoAAAFKAAAARQAAAT8AAABfAAAAXwAAAE8AAABfAAAAXwAAAD8AAABFAAADSgAAA0UAAAI/AAAARQAAA0oAAANKAAADSgAAA0UAAAE/AAAAXwAAAEUAAAFfAAAARQAAAV8AAAA/AAAARQAAAEoAAAFFAAADPwAAAEUAAABKAAAASgAAAkoAAAJFAAADPwAAAF8AAABPAAAATwAAAE8AAABfAAAAPwAAAEUAAANKAAADRQAAAj8AAABFAAACRQAAAkUAAANFAAADRQAAAj8AAABfAAAATwAAAE8AAABPAAAAXwAAAD8AAABFAAACRQAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAABFAAADRQAAAUUAAAA/AAAATwAAAE8AAABPAAAAPwAAAE8AAABPAAAAXwAAAD8AAABFAAABRQAAAksAAAI/AAAARQAAAUUAAABFAAAAPwAAAE8AAABPAAAATwAAAD8AAABfAAAATwAAAE8AAAA/AAAARQAAAkUAAANLAAABPwAAAEUAAAJFAAAARQAAAj8AAABFAAACRQAAAEUAAAI/AAAARQAAA0UAAABFAAADPwAAAEUAAANFAAACRQAAAz8AAABLAAADRQAAAksAAAM/AAAATwAAAE8AAABPAAAAPwAAAE8AAABPAAAAXwAAAD8AAABLAAAARQAAA0UAAAI/AAAASwAAAUUAAAFLAAABPwAAAE8AAABPAAAATwAAAD8AAABPAAAAXwAAAE8AAAA/AAAASwAAA0UAAANFAAABPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAABFAAAARQAAAkUAAAFFAAADRQAAAkUAAABFAAACRQAAAEUAAAJFAAACRQAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAA== -1,2: ind: -1,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAA== -1,3: ind: -1,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,2: ind: 0,2 - tiles: FgAAAhYAAAINAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAAWAAADFgAAAD4AAABOAAAATgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAABOAAAAXgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAD4AAABOAAAATgAAAE4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAATgAAAE4AAAA+AAAATgAAAE4AAABOAAAARAAAA04AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAAXgAAAE4AAABOAAAAPgAAAE4AAABOAAAATgAAAF4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAFgAAAA0AAAANAAAADQAAAA0AAAANAAAAFgAAAD4AAAAWAAABOgAAADoAAAA6AAAAOgAAADoAAAAWAAABPgAAABYAAAANAAAADQAAAA0AAAANAAAADQAAABYAAAA+AAAAFgAAADoAAAAsAAAALAAAACwAAAA6AAAAFgAAAD4AAAAWAAACDQAAAA0AAAANAAAADQAAAA0AAAAWAAACPgAAABYAAAA6AAAAOgAAADoAAAA6AAAAOgAAABYAAAI+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAA0AAAANAAAAXgAAABsAAAFeAAAADQAAAA0AAAA+AAAAUQAAAlEAAABRAAAAUQAAAFEAAANRAAABUQAAAT4AAAANAAAADQAAAA0AAAAWAAAADQAAAA0AAAANAAAAPgAAAFEAAAFRAAABXgAAAFEAAABeAAAAUQAAAVEAAAM+AAAAXgAAAA0AAAANAAAADQAAAA0AAAANAAAAXgAAAD4AAAAbAAABGwAAARsAAAJOAAAAGwAAAxsAAAIbAAABPgAAABsAAAAWAAACDQAAAA0AAAANAAAAFgAAABsAAAE+AAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAD4AAABeAAAADQAAAA0AAAANAAAADQAAAA0AAABeAAAAPgAAABsAAAIbAAAAGwAAAU4AAAAbAAABGwAAAhsAAAA+AAAADQAAAA0AAAANAAAAFgAAAw0AAAANAAAADQAAAD4AAAAbAAAAGwAAABsAAAJOAAAAGwAAABsAAAIbAAADPgAAAA== + tiles: FwAAAhcAAAINAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAAXAAADFwAAAD8AAABPAAAATwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAABPAAAAXwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAD8AAABPAAAATwAAAE8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAATwAAAE8AAAA/AAAATwAAAE8AAABPAAAARQAAA08AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABPAAAAXwAAAE8AAABPAAAAPwAAAE8AAABPAAAATwAAAF8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAFwAAAA0AAAANAAAADQAAAA0AAAANAAAAFwAAAD8AAAAXAAABOwAAADsAAAA7AAAAOwAAADsAAAAXAAABPwAAABcAAAANAAAADQAAAA0AAAANAAAADQAAABcAAAA/AAAAFwAAADsAAAAtAAAALQAAAC0AAAA7AAAAFwAAAD8AAAAXAAACDQAAAA0AAAANAAAADQAAAA0AAAAXAAACPwAAABcAAAA7AAAAOwAAADsAAAA7AAAAOwAAABcAAAI/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAA0AAAANAAAAXwAAABwAAAFfAAAADQAAAA0AAAA/AAAAUgAAAlIAAABSAAAAUgAAAFIAAANSAAABUgAAAT8AAAANAAAADQAAAA0AAAAXAAAADQAAAA0AAAANAAAAPwAAAFIAAAFSAAABXwAAAFIAAABfAAAAUgAAAVIAAAM/AAAAXwAAAA0AAAANAAAADQAAAA0AAAANAAAAXwAAAD8AAAAcAAABHAAAARwAAAJPAAAAHAAAAxwAAAIcAAABPwAAABwAAAAXAAACDQAAAA0AAAANAAAAFwAAABwAAAE/AAAATwAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAD8AAABfAAAADQAAAA0AAAANAAAADQAAAA0AAABfAAAAPwAAABwAAAIcAAAAHAAAAU8AAAAcAAABHAAAAhwAAAA/AAAADQAAAA0AAAANAAAAFwAAAw0AAAANAAAADQAAAD8AAAAcAAAAHAAAABwAAAJPAAAAHAAAABwAAAIcAAADPwAAAA== 0,3: ind: 0,3 - tiles: DQAAAA0AAABeAAAAGwAAAF4AAAANAAAADQAAAD4AAAAbAAACGwAAABsAAABOAAAAGwAAARsAAAIbAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: DQAAAA0AAABfAAAAHAAAAF8AAAANAAAADQAAAD8AAAAcAAACHAAAABwAAABPAAAAHAAAARwAAAIcAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,2: ind: 1,2 - tiles: TgAAAE4AAABOAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAATgAAAE4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAABJAAACSQAAA0kAAAFeAAAATgAAAE4AAABOAAAAPgAAABYAAAIWAAADFgAAAjoAAAA6AAAAOgAAADoAAAA6AAAASQAAAkkAAABJAAABRAAAAk4AAABOAAAATgAAAD4AAAAWAAACFgAAARYAAAE6AAAAOgAAADoAAAA6AAAAOgAAAEkAAANJAAADSQAAA14AAABOAAAATgAAAE4AAAA+AAAAFgAAAxYAAAEWAAABOgAAADoAAAA6AAAAOgAAADoAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAARAAAAkQAAABEAAAARAAAAUQAAANEAAADRAAAAD4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAPgAAAEQAAAJJAAABSQAAAkkAAAFJAAADSQAAAEQAAAA+AAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAD4AAABEAAAARAAAAUQAAAFEAAACRAAAAEQAAABEAAADPgAAAE4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAAA+AAAATgAAAE4AAABOAAAARAAAAkkAAABJAAADSQAAAz4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAPgAAAE4AAABOAAAATgAAAEQAAANJAAABSQAAAUkAAAI+AAAATgAAAF4AAABOAAAAXgAAAE4AAABeAAAATgAAAD4AAABEAAACRAAAA0QAAAFEAAACSQAAA0kAAAFJAAACPgAAAE4AAABEAAADXgAAAF4AAABeAAAARAAAAk4AAAA+AAAARAAAA0QAAANEAAACRAAAA0QAAAJEAAADRAAAAz4AAABOAAAARAAAAU4AAABOAAAATgAAAEQAAABOAAAAPgAAAEQAAABEAAAARAAAAEQAAAIaAAABGgAAA0QAAAI+AAAATgAAAEQAAANeAAAAXgAAAF4AAABEAAAATgAAAD4AAABOAAAATgAAAE4AAABEAAABGgAAABoAAAFEAAABPgAAAA== + tiles: TwAAAE8AAABPAAAAXwAAAF8AAABfAAAATwAAAE8AAABPAAAATwAAAE8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAABKAAACSgAAA0oAAAFfAAAATwAAAE8AAABPAAAAPwAAABcAAAIXAAADFwAAAjsAAAA7AAAAOwAAADsAAAA7AAAASgAAAkoAAABKAAABRQAAAk8AAABPAAAATwAAAD8AAAAXAAACFwAAARcAAAE7AAAAOwAAADsAAAA7AAAAOwAAAEoAAANKAAADSgAAA18AAABPAAAATwAAAE8AAAA/AAAAFwAAAxcAAAEXAAABOwAAADsAAAA7AAAAOwAAADsAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAARQAAAkUAAABFAAAARQAAAUUAAANFAAADRQAAAD8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAPwAAAEUAAAJKAAABSgAAAkoAAAFKAAADSgAAAEUAAAA/AAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAD8AAABFAAAARQAAAUUAAAFFAAACRQAAAEUAAABFAAADPwAAAE8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAAA/AAAATwAAAE8AAABPAAAARQAAAkoAAABKAAADSgAAAz8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAPwAAAE8AAABPAAAATwAAAEUAAANKAAABSgAAAUoAAAI/AAAATwAAAF8AAABPAAAAXwAAAE8AAABfAAAATwAAAD8AAABFAAACRQAAA0UAAAFFAAACSgAAA0oAAAFKAAACPwAAAE8AAABFAAADXwAAAF8AAABfAAAARQAAAk8AAAA/AAAARQAAA0UAAANFAAACRQAAA0UAAAJFAAADRQAAAz8AAABPAAAARQAAAU8AAABPAAAATwAAAEUAAABPAAAAPwAAAEUAAABFAAAARQAAAEUAAAIbAAABGwAAA0UAAAI/AAAATwAAAEUAAANfAAAAXwAAAF8AAABFAAAATwAAAD8AAABPAAAATwAAAE8AAABFAAABGwAAABsAAAFFAAABPwAAAA== 1,3: ind: 1,3 - tiles: TgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAD4AAABOAAAATgAAAE4AAABEAAABRAAAAEQAAABEAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: TwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAD8AAABPAAAATwAAAE8AAABFAAABRQAAAEUAAABFAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,-1: ind: 2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAD8AAAA/AAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,0: ind: 2,0 - tiles: FgAAABYAAAFEAAACPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAEWAAACRAAAAT4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAACFgAAAkQAAAE+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAABYAAANEAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAIWAAAARAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAADoAAAA6AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsAAANeAAAAOgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAXgAAADoAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAA6AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADoAAAA6AAAAOgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: FwAAABcAAAFFAAACPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAEXAAACRQAAAT8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAACFwAAAkUAAAE/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAABcAAANFAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAIXAAAARQAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAPwAAAD8AAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAADsAAAA7AAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAANfAAAAOwAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkAAAAXwAAADsAAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAA7AAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADsAAAA7AAAAOwAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAPwAAAD8AAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAD8AAAA/AAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAA/AAAAPwAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAPwAAAD8AAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAD8AAAA/AAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,1: ind: 2,1 - tiles: PgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAABRAAAAkQAAAM+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAEkAAAFEAAADPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEkAAANJAAABRAAAAT4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABJAAABSQAAAEQAAAE+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAkQAAAFEAAACPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAACFgAAABsAAAM+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAhYAAAIbAAADPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAEWAAADFgAAAz4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAABGwAAAhsAAAM+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAABYAAAMWAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: PwAAAD8AAAA/AAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAA/AAAAPwAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAABRQAAAkUAAAM/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAEoAAAFFAAADPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEoAAANKAAABRQAAAT8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABKAAABSgAAAEUAAAE/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAkUAAAFFAAACPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAA/AAAAPwAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAACFwAAABwAAAM/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAhcAAAIcAAADPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAEXAAADFwAAAz8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAABHAAAAhwAAAM/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAABcAAAMXAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAA/AAAAPwAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAPwAAAD8AAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAD8AAAA/AAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,2: ind: 2,2 - tiles: PgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6AAAAFgAAAxYAAAE+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAV4AAAAWAAADPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADoAAAAWAAAAFgAAAz4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: PwAAAD8AAAA/AAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAA/AAAAPwAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7AAAAFwAAAxcAAAE/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAV8AAAAXAAADPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADsAAAAXAAAAFwAAAz8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAPwAAAD8AAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAD8AAAA/AAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAA/AAAAPwAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAPwAAAD8AAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAD8AAAA/AAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAA/AAAAPwAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAPwAAAD8AAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAD8AAAA/AAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAA/AAAAPwAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAPwAAAD8AAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAD8AAAA/AAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,3: ind: 2,3 - tiles: PgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: PwAAAD8AAAA/AAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAA/AAAAPwAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg @@ -99,6 +99,18 @@ entities: - chunkCollection: version: 2 nodes: + - node: + color: '#52B4E996' + id: BotGreyscale + decals: + 680: 30,25 + 681: 30,24 + 682: 28,27 + 683: 28,27 + 684: 28,28 + 685: 28,28 + 686: 30,25 + 687: 30,24 - node: color: '#DE3A3A96' id: BotGreyscale @@ -134,18 +146,6 @@ entities: 951: 22,10 952: 12,10 953: 12,6 - - node: - color: '#52B4E996' - id: BotGreyscale - decals: - 680: 30,25 - 681: 30,24 - 682: 28,27 - 683: 28,27 - 684: 28,28 - 685: 28,28 - 686: 30,25 - 687: 30,24 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe @@ -416,6 +416,12 @@ entities: id: BrickTileSteelEndW decals: 74: 17,39 + - node: + color: '#D4D4D496' + id: BrickTileSteelLineE + decals: + 1330: 32,2 + 1332: 31,2 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE @@ -455,12 +461,6 @@ entities: 2023: 30,46 2024: 30,47 2041: 30,43 - - node: - color: '#D4D4D496' - id: BrickTileSteelLineE - decals: - 1330: 32,2 - 1332: 31,2 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN @@ -604,10 +604,11 @@ entities: 2022: 24,46 2042: 28,43 - node: - color: '#FFFFFFFF' + color: '#52B4E996' id: BrickTileWhiteCornerNe decals: - 689: 10,28 + 264: 10,44 + 679: 30,28 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNe @@ -628,21 +629,15 @@ entities: 777: 10,10 2045: 30,48 - node: - color: '#52B4E996' + color: '#FFFFFFFF' id: BrickTileWhiteCornerNe decals: - 264: 10,44 - 679: 30,28 + 689: 10,28 - node: color: '#52B4E996' id: BrickTileWhiteCornerNw decals: 265: 12,44 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerNw - decals: - 688: 8,28 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNw @@ -661,10 +656,16 @@ entities: 772: 0,10 858: 23,4 - node: - color: '#EFB34196' + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNw + decals: + 688: 8,28 + - node: + color: '#52B4E996' id: BrickTileWhiteCornerSe decals: - 311: 26,30 + 263: 10,46 + 279: 14,42 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSe @@ -683,21 +684,22 @@ entities: 809: 5,0 810: 16,0 - node: - color: '#52B4E996' + color: '#EFB34196' id: BrickTileWhiteCornerSe decals: - 263: 10,46 - 279: 14,42 + 311: 26,30 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSe decals: 690: 10,24 - node: - color: '#EFB34196' + color: '#52B4E996' id: BrickTileWhiteCornerSw decals: - 310: 14,30 + 262: 12,46 + 278: 8,42 + 676: 28,24 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSw @@ -718,25 +720,33 @@ entities: 808: 11,0 859: 23,0 - node: - color: '#52B4E996' + color: '#EFB34196' id: BrickTileWhiteCornerSw decals: - 262: 12,46 - 278: 8,42 - 676: 28,24 + 310: 14,30 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSw decals: 691: 8,24 - node: - color: '#EFB34196' + color: '#52B4E996' id: BrickTileWhiteLineE decals: - 292: 17,45 - 293: 17,46 - 294: 17,47 - 324: 27,20 + 258: 10,47 + 259: 10,48 + 280: 14,43 + 678: 30,27 + - node: + color: '#D4D4D419' + id: BrickTileWhiteLineE + decals: + 895: 2,6 + 896: 2,10 + 900: 9,2 + 901: 30,2 + 906: 1,45 + 908: 2,31 - node: color: '#DE3A3A96' id: BrickTileWhiteLineE @@ -775,15 +785,13 @@ entities: 2048: 30,47 2049: 30,46 - node: - color: '#D4D4D419' + color: '#EFB34196' id: BrickTileWhiteLineE decals: - 895: 2,6 - 896: 2,10 - 900: 9,2 - 901: 30,2 - 906: 1,45 - 908: 2,31 + 292: 17,45 + 293: 17,46 + 294: 17,47 + 324: 27,20 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineE @@ -791,24 +799,6 @@ entities: 693: 10,27 694: 10,26 695: 10,25 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineE - decals: - 258: 10,47 - 259: 10,48 - 280: 14,43 - 678: 30,27 - - node: - color: '#D4D4D419' - id: BrickTileWhiteLineN - decals: - 907: 3,43 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineN - decals: - 692: 9,28 - node: color: '#52B4E996' id: BrickTileWhiteLineN @@ -817,6 +807,11 @@ entities: 267: 8,44 268: 13,44 269: 14,44 + - node: + color: '#D4D4D419' + id: BrickTileWhiteLineN + decals: + 907: 3,43 - node: color: '#DE3A3A96' id: BrickTileWhiteLineN @@ -859,24 +854,27 @@ entities: 2046: 28,48 2047: 29,48 - node: - color: '#EFB34196' + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + decals: + 692: 9,28 + - node: + color: '#52B4E996' id: BrickTileWhiteLineS decals: - 312: 15,30 - 313: 16,30 - 314: 17,30 - 315: 18,30 - 316: 19,30 - 317: 21,30 - 318: 22,30 - 319: 23,30 - 320: 24,30 - 321: 25,30 + 254: 8,46 + 255: 9,46 + 256: 13,46 + 257: 14,46 + 282: 9,42 + 283: 10,42 + 284: 12,42 + 285: 13,42 - node: - color: '#FFFFFFFF' + color: '#D4D4D419' id: BrickTileWhiteLineS decals: - 696: 9,24 + 905: 3,47 - node: color: '#DE3A3A96' id: BrickTileWhiteLineS @@ -936,33 +934,43 @@ entities: 864: 29,0 865: 30,0 - node: - color: '#D4D4D419' + color: '#EFB34196' id: BrickTileWhiteLineS decals: - 905: 3,47 + 312: 15,30 + 313: 16,30 + 314: 17,30 + 315: 18,30 + 316: 19,30 + 317: 21,30 + 318: 22,30 + 319: 23,30 + 320: 24,30 + 321: 25,30 - node: - color: '#52B4E996' + color: '#FFFFFFFF' id: BrickTileWhiteLineS decals: - 254: 8,46 - 255: 9,46 - 256: 13,46 - 257: 14,46 - 282: 9,42 - 283: 10,42 - 284: 12,42 - 285: 13,42 + 696: 9,24 - node: - color: '#EFB34196' + color: '#52B4E996' id: BrickTileWhiteLineW decals: - 295: 21,45 - 296: 21,46 - 297: 21,47 - 325: 25,20 - 329: 29,13 - 330: 29,14 - 331: 29,15 + 260: 12,47 + 261: 12,48 + 281: 8,43 + 677: 28,25 + - node: + color: '#D4D4D419' + id: BrickTileWhiteLineW + decals: + 897: 8,10 + 898: 8,6 + 899: 7,2 + 902: 33,36 + 903: 33,34 + 904: 5,45 + 909: 10,31 - node: color: '#DE3A3A96' id: BrickTileWhiteLineW @@ -998,16 +1006,16 @@ entities: 2050: 24,44 2051: 24,46 - node: - color: '#D4D4D419' + color: '#EFB34196' id: BrickTileWhiteLineW decals: - 897: 8,10 - 898: 8,6 - 899: 7,2 - 902: 33,36 - 903: 33,34 - 904: 5,45 - 909: 10,31 + 295: 21,45 + 296: 21,46 + 297: 21,47 + 325: 25,20 + 329: 29,13 + 330: 29,14 + 331: 29,15 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineW @@ -1015,14 +1023,6 @@ entities: 697: 8,25 698: 8,26 699: 8,27 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineW - decals: - 260: 12,47 - 261: 12,48 - 281: 8,43 - 677: 28,25 - node: cleanable: True angle: 1.5707963267948966 rad @@ -2194,15 +2194,15 @@ entities: 1326: 33,3 1327: 33,4 - node: - color: '#D4D4D419' + color: '#D4D4D40C' id: HalfTileOverlayGreyscale decals: - 893: 3,43 + 923: 3,47 - node: - color: '#D4D4D40C' + color: '#D4D4D419' id: HalfTileOverlayGreyscale decals: - 923: 3,47 + 893: 3,43 - node: color: '#D4D4D40C' id: HalfTileOverlayGreyscale180 @@ -2255,6 +2255,19 @@ entities: 886: 2,10 887: 2,31 892: 1,45 + - node: + color: '#9FED5896' + id: MiniTileCheckerAOverlay + decals: + 2028: 28,42 + 2029: 29,42 + 2030: 30,42 + 2031: 28,43 + 2032: 29,43 + 2033: 30,43 + 2034: 28,44 + 2035: 29,44 + 2036: 30,44 - node: color: '#DE3A3A96' id: MiniTileCheckerAOverlay @@ -2331,26 +2344,6 @@ entities: 2053: 28,47 2054: 29,47 2055: 29,46 - - node: - color: '#9FED5896' - id: MiniTileCheckerAOverlay - decals: - 2028: 28,42 - 2029: 29,42 - 2030: 30,42 - 2031: 28,43 - 2032: 29,43 - 2033: 30,43 - 2034: 28,44 - 2035: 29,44 - 2036: 30,44 - - node: - color: '#DE3A3A96' - id: MiniTileCheckerBOverlay - decals: - 56: 32,21 - 57: 32,20 - 58: 32,19 - node: color: '#9FED5896' id: MiniTileCheckerBOverlay @@ -2361,6 +2354,13 @@ entities: 53: 33,21 54: 33,20 55: 33,19 + - node: + color: '#DE3A3A96' + id: MiniTileCheckerBOverlay + decals: + 56: 32,21 + 57: 32,20 + 58: 32,19 - node: color: '#DE3A3A96' id: StandClearGreyscale @@ -2610,17 +2610,17 @@ entities: 731: 33,10 - node: cleanable: True - color: '#B02E60A3' + color: '#80C71F7F' id: revolution decals: - 2137: 25.02975,25.438416 + 2138: 14.060958,20.754644 + 2139: 13.607299,19.803425 - node: cleanable: True - color: '#80C71F7F' + color: '#B02E60A3' id: revolution decals: - 2138: 14.060958,20.754644 - 2139: 13.607299,19.803425 + 2137: 25.02975,25.438416 - node: cleanable: True angle: -1.5707963267948966 rad @@ -2628,6 +2628,12 @@ entities: id: splatter decals: 2131: 27.967218,24.104916 + - node: + cleanable: True + color: '#B02E2666' + id: splatter + decals: + 2126: 8.891183,43.065514 - node: cleanable: True angle: -1.5707963267948966 rad @@ -2640,10 +2646,13 @@ entities: 2135: 24.497486,47.84553 - node: cleanable: True - color: '#B02E2666' + angle: -4.71238898038469 rad + color: '#B02E26B4' id: splatter decals: - 2126: 8.891183,43.065514 + 2128: 8.788744,42.524048 + 2129: 15.538555,20.953827 + 2130: 24.864944,27.488853 - node: cleanable: True angle: -3.141592653589793 rad @@ -2651,19 +2660,13 @@ entities: id: splatter decals: 2127: 9.110695,42.81673 - - node: - cleanable: True - angle: -4.71238898038469 rad - color: '#B02E26B4' - id: splatter - decals: - 2128: 8.788744,42.524048 - 2129: 15.538555,20.953827 - 2130: 24.864944,27.488853 type: DecalGrid - type: RadiationGridResistance - type: LoadedMap - type: SpreaderGrid + - type: GridTree + - type: MovedGrids + - type: GridPathfinding - proto: AirlockBrigGlassLocked entities: - uid: 1245 @@ -2740,6 +2743,11 @@ entities: type: Transform - proto: BannerSecurity entities: + - uid: 553 + components: + - pos: 30.5,8.5 + parent: 588 + type: Transform - uid: 1619 components: - pos: 18.5,10.5 @@ -3136,6 +3144,11 @@ entities: - pos: 19.42657,0.6288943 parent: 588 type: Transform + - uid: 398 + components: + - pos: 28.387192,8.540832 + parent: 588 + type: Transform - proto: BookRandom entities: - uid: 1835 @@ -3143,6 +3156,13 @@ entities: - pos: 24.420084,44.539436 parent: 588 type: Transform +- proto: BookSecurity + entities: + - uid: 522 + components: + - pos: 32.41844,8.400207 + parent: 588 + type: Transform - proto: BoxFolderBlack entities: - uid: 365 @@ -7103,130 +7123,96 @@ entities: - pos: 23.5,4.5 parent: 588 type: Transform - - bodyType: Static - type: Physics - uid: 421 components: - rot: -1.5707963267948966 rad pos: 14.5,9.5 parent: 588 type: Transform - - bodyType: Static - type: Physics - uid: 422 components: - rot: 1.5707963267948966 rad pos: 20.5,9.5 parent: 588 type: Transform - - bodyType: Static - type: Physics - uid: 423 components: - rot: 1.5707963267948966 rad pos: 20.5,7.5 parent: 588 type: Transform - - bodyType: Static - type: Physics - uid: 533 components: - rot: 1.5707963267948966 rad pos: 19.5,14.5 parent: 588 type: Transform - - bodyType: Static - type: Physics - uid: 534 components: - rot: 1.5707963267948966 rad pos: 19.5,15.5 parent: 588 type: Transform - - bodyType: Static - type: Physics - uid: 537 components: - rot: -1.5707963267948966 rad pos: 21.5,14.5 parent: 588 type: Transform - - bodyType: Static - type: Physics - uid: 569 components: - rot: 1.5707963267948966 rad pos: 11.5,13.5 parent: 588 type: Transform - - bodyType: Static - type: Physics - uid: 716 components: - pos: 18.5,19.5 parent: 588 type: Transform - - bodyType: Static - type: Physics - uid: 717 components: - pos: 19.5,19.5 parent: 588 type: Transform - - bodyType: Static - type: Physics - uid: 718 components: - pos: 22.5,19.5 parent: 588 type: Transform - - bodyType: Static - type: Physics - uid: 719 components: - pos: 21.5,19.5 parent: 588 type: Transform - - bodyType: Static - type: Physics - uid: 1280 components: - rot: 3.141592653589793 rad pos: 17.5,38.5 parent: 588 type: Transform - - bodyType: Static - type: Physics - uid: 1281 components: - rot: 3.141592653589793 rad pos: 18.5,38.5 parent: 588 type: Transform - - bodyType: Static - type: Physics - uid: 1282 components: - pos: 20.5,40.5 parent: 588 type: Transform - - bodyType: Static - type: Physics - uid: 1283 components: - pos: 21.5,40.5 parent: 588 type: Transform - - bodyType: Static - type: Physics - uid: 1865 components: - rot: -1.5707963267948966 rad pos: 14.5,7.5 parent: 588 type: Transform - - bodyType: Static - type: Physics - proto: ChairFolding entities: - uid: 344 @@ -7379,8 +7365,6 @@ entities: - pos: 26.5,4.5 parent: 588 type: Transform - - bodyType: Static - type: Physics - proto: ChairWood entities: - uid: 1049 @@ -7531,6 +7515,13 @@ entities: - pos: 10.581136,39.53631 parent: 588 type: Transform +- proto: ClothingBeltSecurity + entities: + - uid: 511 + components: + - pos: 1.537538,12.488802 + parent: 588 + type: Transform - proto: ClothingBeltSecurityWebbing entities: - uid: 1030 @@ -7628,6 +7619,13 @@ entities: - pos: 22.338257,10.489087 parent: 588 type: Transform +- proto: ClothingMaskGasSwat + entities: + - uid: 265 + components: + - pos: 5.3304586,0.49946034 + parent: 588 + type: Transform - proto: ClothingNeckLawyerbadge entities: - uid: 326 @@ -7826,13 +7824,6 @@ entities: - pos: 31.5,22.5 parent: 588 type: Transform -- proto: CrateSecurityRiot - entities: - - uid: 265 - components: - - pos: 5.5,0.5 - parent: 588 - type: Transform - proto: CrayonBox entities: - uid: 1057 @@ -8524,14 +8515,16 @@ entities: pos: 8.5,28.5 parent: 588 type: Transform - + - fixtures: {} + type: Fixtures - uid: 945 components: - rot: 1.5707963267948966 rad pos: 10.5,28.5 parent: 588 type: Transform - + - fixtures: {} + type: Fixtures - proto: FloorLavaEntity entities: - uid: 47 @@ -8877,6 +8870,13 @@ entities: - pos: 30.547388,48.16116 parent: 588 type: Transform +- proto: FoodBurgerMime + entities: + - uid: 399 + components: + - pos: 10.958169,39.64943 + parent: 588 + type: Transform - proto: FoodPlateSmallPlastic entities: - uid: 529 @@ -8913,8 +8913,6 @@ entities: pos: 12.5,47.5 parent: 588 type: Transform - - bodyType: Static - type: Physics - proto: GasPipeBend entities: - uid: 1412 @@ -8923,31 +8921,23 @@ entities: pos: 8.5,46.5 parent: 588 type: Transform - - bodyType: Static - type: Physics - uid: 1414 components: - rot: -1.5707963267948966 rad pos: 14.5,46.5 parent: 588 type: Transform - - bodyType: Static - type: Physics - uid: 1416 components: - rot: 1.5707963267948966 rad pos: 11.5,47.5 parent: 588 type: Transform - - bodyType: Static - type: Physics - uid: 1421 components: - pos: 13.5,47.5 parent: 588 type: Transform - - bodyType: Static - type: Physics - proto: GasPipeStraight entities: - uid: 1418 @@ -8956,16 +8946,12 @@ entities: pos: 10.5,47.5 parent: 588 type: Transform - - bodyType: Static - type: Physics - uid: 1420 components: - rot: 1.5707963267948966 rad pos: 12.5,46.5 parent: 588 type: Transform - - bodyType: Static - type: Physics - proto: GasPipeTJunction entities: - uid: 1410 @@ -8974,32 +8960,24 @@ entities: pos: 9.5,46.5 parent: 588 type: Transform - - bodyType: Static - type: Physics - uid: 1411 components: - rot: 3.141592653589793 rad pos: 13.5,46.5 parent: 588 type: Transform - - bodyType: Static - type: Physics - uid: 1417 components: - rot: 3.141592653589793 rad pos: 10.5,46.5 parent: 588 type: Transform - - bodyType: Static - type: Physics - uid: 1419 components: - rot: 3.141592653589793 rad pos: 11.5,46.5 parent: 588 type: Transform - - bodyType: Static - type: Physics - proto: GasPort entities: - uid: 1404 @@ -9007,15 +8985,11 @@ entities: - pos: 9.5,48.5 parent: 588 type: Transform - - bodyType: Static - type: Physics - uid: 1422 components: - pos: 12.5,48.5 parent: 588 type: Transform - - bodyType: Static - type: Physics - proto: GasPressurePump entities: - uid: 1409 @@ -9023,8 +8997,6 @@ entities: - pos: 9.5,47.5 parent: 588 type: Transform - - bodyType: Static - type: Physics - proto: GasThermoMachineFreezer entities: - uid: 1403 @@ -9032,13 +9004,6 @@ entities: - pos: 10.5,48.5 parent: 588 type: Transform -- proto: GatfruitSeeds - entities: - - uid: 954 - components: - - pos: 8.523222,24.511005 - parent: 588 - type: Transform - proto: Gauze entities: - uid: 1482 @@ -9467,14 +9432,6 @@ entities: - pos: 14.5,16.5 parent: 588 type: Transform - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 561 - - 562 - type: ContainerContainer - proto: LockerEvidence entities: - uid: 254 @@ -9545,43 +9502,13 @@ entities: - pos: 26.5,8.5 parent: 588 type: Transform -- proto: MagazineBoxAntiMateriel - entities: - - uid: 1160 - components: - - pos: 30.58447,8.638441 - parent: 588 - type: Transform -- proto: MagazineLightRifleHighVelocity - entities: - - uid: 1267 - components: - - pos: 11.123507,39.594776 - parent: 588 - type: Transform -- proto: MagazineLightRifleRubber - entities: - - uid: 1119 - components: - - pos: 11.293891,39.53801 - parent: 588 - type: Transform -- proto: MagazineMagnumSubMachineGunHighVelocity - entities: - - uid: 1110 - components: - - pos: 26.532125,35.46567 - parent: 588 - type: Transform -- proto: MagazineMagnumSubMachineGunPractice +- proto: MaintenanceFluffSpawner entities: - - uid: 1109 + - uid: 414 components: - - pos: 26.362133,35.610477 + - pos: 25.5,32.5 parent: 588 type: Transform -- proto: MaintenanceFluffSpawner - entities: - uid: 1289 components: - pos: 17.5,38.5 @@ -9679,6 +9606,13 @@ entities: - pos: 30.614443,28.392822 parent: 588 type: Transform +- proto: MedkitBruteFilled + entities: + - uid: 402 + components: + - pos: 30.512049,27.511803 + parent: 588 + type: Transform - proto: MedkitCombatFilled entities: - uid: 1154 @@ -9896,16 +9830,14 @@ entities: type: Transform - proto: PowerCellHigh entities: - - uid: 590 + - uid: 469 components: - - pos: 5.381793,16.642464 + - pos: 12.355853,25.41643 parent: 588 type: Transform -- proto: PowerCellHyper - entities: - - uid: 1035 + - uid: 590 components: - - pos: 12.383391,25.508808 + - pos: 5.381793,16.642464 parent: 588 type: Transform - proto: PowerCellRecharger @@ -9928,8 +9860,6 @@ entities: pos: 2.5,0.5 parent: 588 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 1642 @@ -9938,8 +9868,6 @@ entities: pos: 14.5,0.5 parent: 588 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 1646 @@ -9948,8 +9876,6 @@ entities: pos: 24.5,0.5 parent: 588 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 1647 @@ -9958,8 +9884,6 @@ entities: pos: 28.5,0.5 parent: 588 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 1648 @@ -9968,8 +9892,6 @@ entities: pos: 21.5,6.5 parent: 588 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 1649 @@ -9977,8 +9899,6 @@ entities: - pos: 13.5,10.5 parent: 588 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 1650 @@ -9987,8 +9907,6 @@ entities: pos: 16.5,6.5 parent: 588 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 1651 @@ -9996,8 +9914,6 @@ entities: - pos: 18.5,10.5 parent: 588 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 1693 @@ -10006,8 +9922,6 @@ entities: pos: 32.5,25.5 parent: 588 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 1701 @@ -10016,8 +9930,6 @@ entities: pos: 18.5,12.5 parent: 588 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 1702 @@ -10025,8 +9937,6 @@ entities: - pos: 20.5,16.5 parent: 588 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 1703 @@ -10035,8 +9945,6 @@ entities: pos: 34.5,20.5 parent: 588 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 1704 @@ -10045,8 +9953,6 @@ entities: pos: 16.5,25.5 parent: 588 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 1705 @@ -10055,8 +9961,6 @@ entities: pos: 14.5,27.5 parent: 588 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 1706 @@ -10064,8 +9968,6 @@ entities: - pos: 18.5,40.5 parent: 588 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 1741 @@ -10074,8 +9976,6 @@ entities: pos: 10.5,21.5 parent: 588 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 1743 @@ -10083,8 +9983,6 @@ entities: - pos: 21.5,22.5 parent: 588 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 1830 @@ -10093,8 +9991,6 @@ entities: pos: 30.5,43.5 parent: 588 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 1831 @@ -10103,8 +9999,6 @@ entities: pos: 30.5,47.5 parent: 588 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - proto: PoweredlightLED @@ -10115,8 +10009,6 @@ entities: pos: 8.5,42.5 parent: 588 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 1708 @@ -10125,8 +10017,6 @@ entities: pos: 14.5,42.5 parent: 588 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 1709 @@ -10135,8 +10025,6 @@ entities: pos: 14.5,46.5 parent: 588 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 1710 @@ -10145,8 +10033,6 @@ entities: pos: 8.5,46.5 parent: 588 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 1725 @@ -10155,8 +10041,6 @@ entities: pos: 28.5,27.5 parent: 588 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - proto: PoweredSmallLight @@ -10667,11 +10551,6 @@ entities: - pos: 28.5,8.5 parent: 588 type: Transform - - uid: 397 - components: - - pos: 30.5,8.5 - parent: 588 - type: Transform - uid: 401 components: - pos: 32.5,8.5 @@ -11069,642 +10948,344 @@ entities: - uid: 1351 components: - rot: 1.5707963267948966 rad - pos: 1.5,44.5 - parent: 588 - type: Transform - - uid: 1352 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,43.5 - parent: 588 - type: Transform - - uid: 1353 - components: - - rot: 3.141592653589793 rad - pos: 4.5,43.5 - parent: 588 - type: Transform - - uid: 1354 - components: - - rot: 3.141592653589793 rad - pos: 5.5,44.5 - parent: 588 - type: Transform - - uid: 1355 - components: - - pos: 1.5,46.5 - parent: 588 - type: Transform - - uid: 1356 - components: - - pos: 2.5,47.5 - parent: 588 - type: Transform - - uid: 1357 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,47.5 - parent: 588 - type: Transform - - uid: 1358 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,46.5 - parent: 588 - type: Transform -- proto: RailingCornerSmall - entities: - - uid: 337 - components: - - rot: 3.141592653589793 rad - pos: 29.5,3.5 - parent: 588 - type: Transform - - uid: 338 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,1.5 - parent: 588 - type: Transform - - uid: 1376 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,43.5 - parent: 588 - type: Transform - - uid: 1377 - components: - - rot: 3.141592653589793 rad - pos: 1.5,47.5 - parent: 588 - type: Transform - - uid: 1378 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,47.5 - parent: 588 - type: Transform - - uid: 1379 - components: - - pos: 5.5,43.5 - parent: 588 - type: Transform -- proto: RandomDrinkBottle - entities: - - uid: 580 - components: - - pos: 12.5,12.5 - parent: 588 - type: Transform -- proto: RandomFoodSingle - entities: - - uid: 764 - components: - - pos: 6.5,19.5 - parent: 588 - type: Transform -- proto: RandomInstruments - entities: - - uid: 546 - components: - - pos: 1.5,4.5 - parent: 588 - type: Transform - - uid: 1159 - components: - - pos: 21.5,18.5 - parent: 588 - type: Transform - - uid: 1833 - components: - - pos: 24.5,42.5 - parent: 588 - type: Transform -- proto: RandomPosterContraband - entities: - - uid: 1571 - components: - - pos: 25.5,39.5 - parent: 588 - type: Transform - - uid: 1572 - components: - - pos: 3.5,35.5 - parent: 588 - type: Transform - - uid: 1573 - components: - - pos: 7.5,35.5 - parent: 588 - type: Transform - - uid: 1574 - components: - - pos: 5.5,25.5 - parent: 588 - type: Transform - - uid: 1575 - components: - - pos: 30.5,15.5 - parent: 588 - type: Transform - - uid: 1805 - components: - - pos: 18.5,43.5 - parent: 588 - type: Transform - - uid: 1806 - components: - - pos: 20.5,47.5 - parent: 588 - type: Transform -- proto: RandomVending - entities: - - uid: 539 - components: - - pos: 17.5,16.5 - parent: 588 - type: Transform -- proto: ReinforcedWindow - entities: - - uid: 214 - components: - - pos: 19.5,34.5 - parent: 588 - type: Transform - - uid: 409 - components: - - pos: 15.5,7.5 - parent: 588 - type: Transform - - uid: 410 - components: - - pos: 15.5,9.5 - parent: 588 - type: Transform - - uid: 411 - components: - - pos: 19.5,7.5 - parent: 588 - type: Transform - - uid: 412 - components: - - pos: 19.5,9.5 - parent: 588 - type: Transform - - uid: 591 - components: - - pos: 2.5,12.5 - parent: 588 - type: Transform - - uid: 592 - components: - - pos: 4.5,12.5 - parent: 588 - type: Transform - - uid: 594 - components: - - pos: 4.5,16.5 - parent: 588 - type: Transform - - uid: 595 - components: - - pos: 2.5,16.5 - parent: 588 - type: Transform - - uid: 1166 - components: - - pos: 19.5,36.5 - parent: 588 - type: Transform - - uid: 1168 - components: - - pos: 15.5,36.5 - parent: 588 - type: Transform - - uid: 1169 - components: - - pos: 15.5,34.5 - parent: 588 - type: Transform -- proto: RemoteSignaller - entities: - - uid: 1104 - components: - - pos: 25.24476,30.698978 - parent: 588 - type: Transform - - uid: 1105 - components: - - pos: 25.443544,30.613832 - parent: 588 - type: Transform - - uid: 1106 - components: - - pos: 5.677143,16.762346 - parent: 588 - type: Transform -- proto: RiotLaserShield - entities: - - uid: 1618 - components: - - pos: 12.616156,10.534842 - parent: 588 - type: Transform -- proto: RiotShield - entities: - - uid: 600 - components: - - pos: 1.3209407,16.656654 - parent: 588 - type: Transform - - uid: 601 - components: - - pos: 1.5481212,16.543125 - parent: 588 - type: Transform - - uid: 1615 - components: - - pos: 12.363155,6.657488 - parent: 588 - type: Transform -- proto: SalvageCanisterSpawner - entities: - - uid: 998 - components: - - pos: 22.5,30.5 - parent: 588 - type: Transform - - uid: 1009 - components: - - pos: 19.5,30.5 - parent: 588 - type: Transform - - uid: 1025 - components: - - pos: 21.5,30.5 - parent: 588 - type: Transform - - uid: 1190 - components: - - pos: 9.5,36.5 - parent: 588 - type: Transform - - uid: 1210 - components: - - pos: 9.5,48.5 - parent: 588 - type: Transform - - uid: 1413 - components: - - pos: 13.5,48.5 - parent: 588 - type: Transform - - uid: 1470 - components: - - pos: 12.5,48.5 - parent: 588 - type: Transform -- proto: SalvageMaterialCrateSpawner - entities: - - uid: 414 - components: - - pos: 14.5,10.5 - parent: 588 - type: Transform - - uid: 424 - components: - - pos: 21.5,6.5 + pos: 1.5,44.5 parent: 588 type: Transform - - uid: 511 + - uid: 1352 components: - - pos: 30.5,16.5 + - rot: 1.5707963267948966 rad + pos: 2.5,43.5 parent: 588 type: Transform - - uid: 522 + - uid: 1353 components: - - pos: 30.5,12.5 + - rot: 3.141592653589793 rad + pos: 4.5,43.5 parent: 588 type: Transform - - uid: 553 + - uid: 1354 components: - - pos: 8.5,12.5 + - rot: 3.141592653589793 rad + pos: 5.5,44.5 parent: 588 type: Transform - - uid: 583 + - uid: 1355 components: - - pos: 12.5,16.5 + - pos: 1.5,46.5 parent: 588 type: Transform - - uid: 599 + - uid: 1356 components: - - pos: 6.5,16.5 + - pos: 2.5,47.5 parent: 588 type: Transform - - uid: 866 + - uid: 1357 components: - - pos: 4.5,24.5 + - rot: -1.5707963267948966 rad + pos: 4.5,47.5 parent: 588 type: Transform - - uid: 988 + - uid: 1358 components: - - pos: 17.5,32.5 + - rot: -1.5707963267948966 rad + pos: 5.5,46.5 parent: 588 type: Transform - - uid: 1010 +- proto: RailingCornerSmall + entities: + - uid: 337 components: - - pos: 18.5,27.5 + - rot: 3.141592653589793 rad + pos: 29.5,3.5 parent: 588 type: Transform - - uid: 1155 + - uid: 338 components: - - pos: 10.5,36.5 + - rot: -1.5707963267948966 rad + pos: 29.5,1.5 parent: 588 type: Transform - - uid: 1191 + - uid: 1376 components: - - pos: 12.5,32.5 + - rot: -1.5707963267948966 rad + pos: 1.5,43.5 parent: 588 type: Transform - - uid: 1192 + - uid: 1377 components: - - pos: 0.5,30.5 + - rot: 3.141592653589793 rad + pos: 1.5,47.5 parent: 588 type: Transform - - uid: 1478 + - uid: 1378 components: - - pos: 0.5,34.5 + - rot: 1.5707963267948966 rad + pos: 5.5,47.5 parent: 588 type: Transform - - uid: 1846 + - uid: 1379 components: - - pos: 27.5,39.5 + - pos: 5.5,43.5 parent: 588 type: Transform - - uid: 1847 +- proto: RandomDrinkBottle + entities: + - uid: 580 components: - - pos: 21.5,38.5 + - pos: 12.5,12.5 parent: 588 type: Transform - - uid: 1848 +- proto: RandomFoodSingle + entities: + - uid: 764 components: - - pos: 16.5,40.5 + - pos: 6.5,19.5 parent: 588 type: Transform - - uid: 1849 +- proto: RandomInstruments + entities: + - uid: 546 components: - - pos: 18.5,34.5 + - pos: 1.5,4.5 parent: 588 type: Transform - - uid: 1852 + - uid: 1159 components: - - pos: 26.5,27.5 + - pos: 21.5,18.5 parent: 588 type: Transform - - uid: 1853 + - uid: 1833 components: - - pos: 26.5,25.5 + - pos: 24.5,42.5 parent: 588 type: Transform - - uid: 1854 +- proto: RandomPosterContraband + entities: + - uid: 1571 components: - - pos: 34.5,28.5 + - pos: 25.5,39.5 parent: 588 type: Transform - - uid: 1855 + - uid: 1572 components: - - pos: 32.5,28.5 + - pos: 3.5,35.5 parent: 588 type: Transform - - uid: 1861 + - uid: 1573 components: - - pos: 19.5,21.5 + - pos: 7.5,35.5 parent: 588 type: Transform - - uid: 1862 + - uid: 1574 components: - - pos: 22.5,21.5 + - pos: 5.5,25.5 parent: 588 type: Transform - - uid: 1863 + - uid: 1575 components: - - pos: 15.5,18.5 + - pos: 30.5,15.5 parent: 588 type: Transform - - uid: 1864 + - uid: 1805 components: - - pos: 13.5,22.5 + - pos: 18.5,43.5 parent: 588 type: Transform - - uid: 1866 + - uid: 1806 components: - - pos: 21.5,10.5 + - pos: 20.5,47.5 parent: 588 type: Transform - - uid: 1867 +- proto: RandomSoap + entities: + - uid: 397 components: - - pos: 13.5,10.5 + - pos: 8.5,24.5 parent: 588 type: Transform - - uid: 1868 +- proto: RandomVending + entities: + - uid: 539 components: - - pos: 13.5,6.5 + - pos: 17.5,16.5 parent: 588 type: Transform - - uid: 1869 +- proto: ReinforcedWindow + entities: + - uid: 214 components: - - pos: 21.5,15.5 + - pos: 19.5,34.5 parent: 588 type: Transform - - uid: 1870 + - uid: 409 components: - - pos: 17.5,13.5 + - pos: 15.5,7.5 parent: 588 type: Transform - - uid: 1873 + - uid: 410 components: - - pos: 0.5,12.5 + - pos: 15.5,9.5 parent: 588 type: Transform - - uid: 1875 + - uid: 411 components: - - pos: 23.5,32.5 + - pos: 19.5,7.5 parent: 588 type: Transform - - uid: 1877 + - uid: 412 components: - - pos: 6.5,38.5 + - pos: 19.5,9.5 parent: 588 type: Transform - - uid: 1878 + - uid: 591 components: - - pos: 0.5,40.5 + - pos: 2.5,12.5 parent: 588 type: Transform -- proto: SalvagePartsT2Spawner - entities: - - uid: 952 + - uid: 592 components: - - pos: 25.5,32.5 + - pos: 4.5,12.5 parent: 588 type: Transform - - uid: 1218 + - uid: 594 components: - - pos: 26.5,32.5 + - pos: 4.5,16.5 parent: 588 type: Transform -- proto: SalvagePartsT3Spawner - entities: - - uid: 1216 + - uid: 595 components: - - pos: 14.5,32.5 + - pos: 2.5,16.5 parent: 588 type: Transform - - uid: 1217 + - uid: 1166 components: - - pos: 2.5,34.5 + - pos: 19.5,36.5 parent: 588 type: Transform - - uid: 1329 + - uid: 1168 components: - - pos: 29.5,40.5 + - pos: 15.5,36.5 parent: 588 type: Transform - - uid: 1563 + - uid: 1169 components: - - pos: 17.5,47.5 + - pos: 15.5,34.5 parent: 588 type: Transform - - uid: 1860 +- proto: RemoteSignaller + entities: + - uid: 1104 components: - - pos: 26.5,21.5 + - pos: 25.24476,30.698978 parent: 588 type: Transform - - uid: 1872 + - uid: 1105 components: - - pos: 27.5,15.5 + - pos: 25.443544,30.613832 parent: 588 type: Transform -- proto: SawAdvanced - entities: - - uid: 1468 + - uid: 1106 components: - - pos: 8.527969,43.529327 + - pos: 5.677143,16.762346 parent: 588 type: Transform -- proto: ScalpelLaser +- proto: RiotLaserShield entities: - - uid: 1472 + - uid: 1618 components: - - pos: 8.485372,43.131977 + - pos: 12.616156,10.534842 parent: 588 type: Transform -- proto: ScalpelShiv +- proto: RiotShield entities: - - uid: 708 + - uid: 600 components: - - pos: 16.074419,18.727995 + - pos: 1.3209407,16.656654 parent: 588 type: Transform - - uid: 1592 + - uid: 601 components: - - pos: 10.50393,24.491432 + - pos: 1.5481212,16.543125 parent: 588 type: Transform -- proto: SecurityTechFabCircuitboard - entities: - - uid: 402 + - uid: 1615 components: - - pos: 32.446938,8.649163 + - pos: 12.363155,6.657488 parent: 588 type: Transform -- proto: SeedExtractor +- proto: SalvageCanisterSpawner entities: - - uid: 802 - components: - - pos: 33.5,21.5 - parent: 588 - type: Transform - - uid: 1776 + - uid: 998 components: - - pos: 28.5,42.5 + - pos: 22.5,30.5 parent: 588 type: Transform -- proto: ShardGlassReinforced - entities: - - uid: 649 + - uid: 1009 components: - - pos: 13.825684,19.324022 + - pos: 19.5,30.5 parent: 588 type: Transform - - uid: 656 + - uid: 1025 components: - - rot: -1.5707963267948966 rad - pos: 15.103575,22.360918 + - pos: 21.5,30.5 parent: 588 type: Transform - - uid: 699 + - uid: 1190 components: - - rot: -1.5707963267948966 rad - pos: 14.285374,19.551079 + - pos: 9.5,36.5 parent: 588 type: Transform - - uid: 1068 + - uid: 1210 components: - - rot: -1.5707963267948966 rad - pos: 26.505554,26.907837 + - pos: 9.5,48.5 parent: 588 type: Transform - - uid: 1069 + - uid: 1413 components: - - rot: 3.141592653589793 rad - pos: 25.767216,27.021364 + - pos: 13.5,48.5 parent: 588 type: Transform - - uid: 1070 + - uid: 1470 components: - - rot: 1.5707963267948966 rad - pos: 25.525837,28.185036 + - pos: 12.5,48.5 parent: 588 type: Transform -- proto: SheetPlasma +- proto: SawAdvanced entities: - - uid: 1843 + - uid: 1468 components: - - pos: 17.326448,47.431633 + - pos: 8.527969,43.529327 parent: 588 type: Transform -- proto: SheetPlasteel +- proto: ScalpelLaser entities: - - uid: 997 + - uid: 1472 components: - - pos: 15.345556,32.614613 + - pos: 8.485372,43.131977 parent: 588 type: Transform - - uid: 1859 +- proto: ScalpelShiv + entities: + - uid: 708 components: - - pos: 26.80349,21.508806 + - pos: 16.074419,18.727995 parent: 588 type: Transform -- proto: SheetRGlass - entities: - - uid: 1871 + - uid: 1592 components: - - pos: 27.606375,15.5036335 + - pos: 10.50393,24.491432 parent: 588 type: Transform -- proto: SheetRPGlass +- proto: SeedExtractor entities: - - uid: 968 + - uid: 802 components: - - pos: 15.5943365,32.482906 + - pos: 33.5,21.5 parent: 588 type: Transform -- proto: SheetSteel - entities: - - uid: 469 + - uid: 1776 components: - - pos: 27.474274,15.53461 + - pos: 28.5,42.5 parent: 588 type: Transform - proto: ShowcaseRobot @@ -11886,13 +11467,6 @@ entities: - pos: 11.4330635,39.57888 parent: 588 type: Transform -- proto: SpawnVehicleSecway - entities: - - uid: 1241 - components: - - pos: 34.5,25.5 - parent: 588 - type: Transform - proto: Spear entities: - uid: 1834 @@ -11900,29 +11474,6 @@ entities: - pos: 24.466219,48.441994 parent: 588 type: Transform -- proto: SpeedLoaderMagnumHighVelocity - entities: - - uid: 398 - components: - - pos: 28.401592,8.479309 - parent: 588 - type: Transform - - uid: 562 - components: - - flags: InContainer - type: MetaData - - parent: 560 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: SpeedLoaderMagnumRubber - entities: - - uid: 1162 - components: - - pos: 28.609924,8.604309 - parent: 588 - type: Transform - proto: StasisBed entities: - uid: 1425 @@ -11930,18 +11481,6 @@ entities: - pos: 13.5,43.5 parent: 588 type: Transform -- proto: StimkitFilled - entities: - - uid: 1102 - components: - - pos: 30.619856,27.750769 - parent: 588 - type: Transform - - uid: 1473 - components: - - pos: 14.516232,43.590866 - parent: 588 - type: Transform - proto: StimpackMini entities: - uid: 1879 @@ -12447,24 +11986,18 @@ entities: pos: 8.5,24.5 parent: 588 type: Transform - - bodyType: Static - type: Physics - uid: 933 components: - rot: -1.5707963267948966 rad pos: 10.5,24.5 parent: 588 type: Transform - - bodyType: Static - type: Physics - uid: 934 components: - rot: 1.5707963267948966 rad pos: 8.5,25.5 parent: 588 type: Transform - - bodyType: Static - type: Physics - proto: UniformScrubsColorPurple entities: - uid: 1712 @@ -12472,13 +12005,6 @@ entities: - pos: 10.503376,44.53288 parent: 588 type: Transform -- proto: VehicleKeySecway - entities: - - uid: 1242 - components: - - pos: 34.38259,24.488825 - parent: 588 - type: Transform - proto: VendingMachineChefvend entities: - uid: 532 @@ -13225,13 +12751,6 @@ entities: - pos: 12.371853,10.605072 parent: 588 type: Transform -- proto: WeaponLaserCannon - entities: - - uid: 593 - components: - - pos: 1.4909813,12.723643 - parent: 588 - type: Transform - proto: WeaponLaserCarbinePractice entities: - uid: 931 @@ -13244,45 +12763,6 @@ entities: - pos: 22.543945,6.5464144 parent: 588 type: Transform -- proto: WeaponRevolverDeckard - entities: - - uid: 561 - components: - - flags: InContainer - type: MetaData - - parent: 560 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: WeaponRevolverMateba - entities: - - uid: 1161 - components: - - pos: 28.505758,8.625143 - parent: 588 - type: Transform -- proto: WeaponRifleAk - entities: - - uid: 1120 - components: - - pos: 11.295292,39.495438 - parent: 588 - type: Transform -- proto: WeaponSniperHristov - entities: - - uid: 399 - components: - - pos: 30.483688,8.564017 - parent: 588 - type: Transform -- proto: WeaponSubMachineGunVectorRubber - entities: - - uid: 1107 - components: - - pos: 26.446724,35.519707 - parent: 588 - type: Transform - proto: WindoorAssemblySecure entities: - uid: 696 @@ -13899,6 +13379,13 @@ entities: - pos: 24.5,47.5 parent: 588 type: Transform +- proto: Wrench + entities: + - uid: 424 + components: + - pos: 15.156982,32.526764 + parent: 588 + type: Transform - proto: Zipties entities: - uid: 1156 diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/salvage.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/salvage.yml index 2a9b200365..e98004bfc8 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/salvage.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/salvage.yml @@ -67,27 +67,60 @@ offset: 0.0 - type: entity - name: Salvage T3/4 Machine Parts Spawner + parent: MarkerBase + id: SalvagePartsT3T4Spawner + name: tier 3/4 machine part + components: + - type: Sprite + layers: + - sprite: Objects/Misc/stock_parts.rsi + state: super_matter_bin + - type: RandomSpawner + rarePrototypes: + - QuadraticCapacitorStockPart + - FemtoManipulatorStockPart + - BluespaceMatterBinStockPart + rareChance: 0.05 + prototypes: + - SuperCapacitorStockPart + - PicoManipulatorStockPart + - SuperMatterBinStockPart + chance: 0.95 + offset: 0.0 + +- type: entity + parent: MarkerBase id: SalvagePartsT3Spawner + name: tier 3 machine part + suffix: Spawner + components: + - type: Sprite + layers: + - sprite: Objects/Misc/stock_parts.rsi + state: super_matter_bin + - type: RandomSpawner + prototypes: + - SuperCapacitorStockPart + - PicoManipulatorStockPart + - SuperMatterBinStockPart + offset: 0.0 + +- type: entity parent: MarkerBase + id: SalvagePartsT4Spawner + name: tier 4 machine part + suffix: Spawner components: - - type: Sprite - layers: - - state: red - - sprite: Objects/Misc/stock_parts.rsi - state: super_matter_bin - - type: RandomSpawner - rarePrototypes: - - QuadraticCapacitorStockPart - - FemtoManipulatorStockPart - - BluespaceMatterBinStockPart - rareChance: 0.05 - prototypes: - - SuperCapacitorStockPart - - PicoManipulatorStockPart - - SuperMatterBinStockPart - chance: 0.95 - offset: 0.0 + - type: Sprite + layers: + - sprite: Objects/Misc/stock_parts.rsi + state: bluespace_matter_bin + - type: RandomSpawner + prototypes: + - QuadraticCapacitorStockPart + - PicoManipulatorStockPart + - BluespaceMatterBinStockPart + offset: 0.0 - type: entity name: Salvage Mob Spawner diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemistry-bottles.yml b/Resources/Prototypes/Entities/Objects/Specific/chemistry-bottles.yml index eede274411..016733d8db 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemistry-bottles.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemistry-bottles.yml @@ -238,3 +238,19 @@ - type: Tag tags: - Bottle + +- type: entity + parent: BaseChemistryEmptyBottle + id: CognizineChemistryBottle + name: cognizine bottle + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Cognizine + Quantity: 30 + - type: Tag + tags: + - Bottle diff --git a/Resources/Prototypes/Procedural/salvage_rewards.yml b/Resources/Prototypes/Procedural/salvage_rewards.yml new file mode 100644 index 0000000000..3739e16b86 --- /dev/null +++ b/Resources/Prototypes/Procedural/salvage_rewards.yml @@ -0,0 +1,61 @@ +- type: weightedRandom + id: SalvageRewardCommon + weights: + # basic materials + CrateMaterialGlass: 1.0 + CrateMaterialPlasteel: 1.0 + CrateMaterialPlastic: 1.0 + CrateMaterialSteel: 1.0 + # things the station might want + CrateEngineeringAMEJar: 0.25 + CrateFoodPizzaLarge: 0.25 + CrateFoodSoftdrinks: 0.25 + CrateFunATV: 0.25 + CrateFunInstrumentsVariety: 0.25 + CrateSalvageEquipment: 0.25 + RandomArtifactSpawner: 0.25 + # weighted down since it sells for a lot + NuclearBombKeg: 0.1 + +- type: weightedRandom + id: SalvageRewardRare + weights: + # rare materials + IngotGold: 1.0 + IngotSilver: 1.0 + SheetPlasma: 1.0 + SheetUranium: 1.0 + SalvagePartsT3Spawner: 1.0 + SalvagePartsT3T4Spawner: 1.0 + # things the expedition team might want + CrateEmergencyBruteKit: 0.5 + CrateMedicalSupplies: 0.5 + CrateSecurityRiot: 0.5 + # cloning boards + CloningPodMachineCircuitboard: 0.5 + MedicalScannerMachineCircuitboard: 0.5 + CloningConsoleComputerCircuitboard: 0.5 + # basic weapons + CrateArmorySMG: 0.25 + CrateArmoryLaser: 0.25 + WeaponMakeshiftLaser: 0.25 + # rare weapons + WeaponSubMachineGunC20r: 0.1 + +- type: weightedRandom + id: SalvageRewardEpic + weights: + # rare machinery + SecurityTechFabCircuitboard: 1.0 + ResearchAndDevelopmentServerMachineCircuitboard: 1.0 + SalvagePartsT4Spawner: 1.0 + # rare weapons + WeaponAdvancedLaser: 1.0 + WeaponLaserCannon: 1.0 + WeaponXrayCannon: 1.0 + WeaponSniperHristov: 1.0 + # extremely rare weapons + WeaponLauncherRocket: 0.1 + # rare chemicals + CognizineChemistryBottle: 1.0 + OmnizineChemistryBottle: 1.0 From f0896685ff94028a0408c1c16d84d6cb5e4c4c68 Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 16 Jun 2023 01:20:06 -0400 Subject: [PATCH 270/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 54c738be13..e70aa117a6 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: deltanedas - changes: - - {message: Space Gru has returned the stars he stole and is very sorry., type: Fix} - id: 3514 - time: '2023-04-23T10:28:41.0000000+00:00' - author: PuroSlavKing changes: - {message: 'Added Disease protection for CBURN, ERT, and Syndie Elite (hardsuits @@ -2917,3 +2912,11 @@ Entries: type: Tweak} id: 4013 time: '2023-06-16T02:46:39.0000000+00:00' +- author: deltanedas + changes: + - {message: 'NanoTrasen has finally started rewarding salvagers for actually completing + their missions. Rewards can range from materials, to cloning parts, to advanced + weaponry.', type: Add} + - {message: todo..., type: Remove} + id: 4014 + time: '2023-06-16T05:19:03.0000000+00:00' From 41fae6e9cd9b09abee9d100e21b05416059b0328 Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Fri, 16 Jun 2023 05:25:25 +0000 Subject: [PATCH 271/474] expedition air mod (#17369) Co-authored-by: deltanedas <@deltanedas:kde.org> --- .../Salvage/SpawnSalvageMissionJob.cs | 11 ++- .../Expeditions/Modifiers/SalvageAirMod.cs | 43 +++++++++ Content.Shared/Salvage/SalvageExpeditions.cs | 6 ++ Content.Shared/Salvage/SharedSalvageSystem.cs | 34 ++++++- .../Prototypes/Procedural/salvage_mods.yml | 95 +++++++++++++++++++ .../Prototypes/Procedural/salvage_rewards.yml | 1 + 6 files changed, 180 insertions(+), 10 deletions(-) create mode 100644 Content.Shared/Salvage/Expeditions/Modifiers/SalvageAirMod.cs diff --git a/Content.Server/Salvage/SpawnSalvageMissionJob.cs b/Content.Server/Salvage/SpawnSalvageMissionJob.cs index 60e73a5b5a..caeaf6c7bc 100644 --- a/Content.Server/Salvage/SpawnSalvageMissionJob.cs +++ b/Content.Server/Salvage/SpawnSalvageMissionJob.cs @@ -105,14 +105,15 @@ protected override async Task Process() _entManager.Dirty(gravity, metadata); // Atmos - var atmos = _entManager.EnsureComponent(mapUid); - atmos.Space = false; + var air = _prototypeManager.Index(mission.Air); + // copy into a new array since the yml deserialization discards the fixed length var moles = new float[Atmospherics.AdjustedNumberOfGases]; - moles[(int) Gas.Oxygen] = 21.824779f; - moles[(int) Gas.Nitrogen] = 82.10312f; - + air.Gases.CopyTo(moles, 0); + var atmos = _entManager.EnsureComponent(mapUid); + atmos.Space = air.Space; atmos.Mixture = new GasMixture(2500) { + // TODO: temperature mods Temperature = 293.15f, Moles = moles, }; diff --git a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageAirMod.cs b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageAirMod.cs new file mode 100644 index 0000000000..167c140b4b --- /dev/null +++ b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageAirMod.cs @@ -0,0 +1,43 @@ +using Content.Shared.Atmos; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; + +namespace Content.Shared.Salvage.Expeditions.Modifiers; + +/// +/// Prototype for a planet's air gas mixture. +/// Used when creating the planet for a salvage expedition. +/// Which one is selected depends on the mission difficulty, different weightedRandoms are picked from. +/// +[Prototype("salvageAirMod")] +public sealed class SalvageAirMod : IPrototype, ISalvageMod +{ + [IdDataField] + public string ID { get; } = default!; + + /// + [DataField("desc")] + public string Description { get; } = string.Empty; + + /// + [DataField("cost")] + public float Cost { get; } = 0f; + + /// + /// Set to true if this planet will have no atmosphere. + /// + [DataField("space")] + public bool Space; + + /// + /// Number of moles of each gas in the mixture. + /// + [DataField("gases")] + public float[] Gases = new float[Atmospherics.AdjustedNumberOfGases]; + + /// + /// Biomes this air mixture is allowed to occur in. + /// + [DataField("biomes", customTypeSerializer: typeof(PrototypeIdListSerializer))] + public List? Biomes; +} diff --git a/Content.Shared/Salvage/SalvageExpeditions.cs b/Content.Shared/Salvage/SalvageExpeditions.cs index 18247470ff..18a41eb30a 100644 --- a/Content.Shared/Salvage/SalvageExpeditions.cs +++ b/Content.Shared/Salvage/SalvageExpeditions.cs @@ -100,6 +100,7 @@ public sealed record SalvageMission( string Faction, SalvageMissionType Mission, string Biome, + string Air, Color? Color, TimeSpan Duration, Dictionary Loot, @@ -135,6 +136,11 @@ public sealed record SalvageMission( /// public readonly string Biome = Biome; + /// + /// Air mixture to be used for the mission's planet. + /// + public readonly string Air = Air; + /// /// Lighting color to be used (AKA outdoor lighting). /// diff --git a/Content.Shared/Salvage/SharedSalvageSystem.cs b/Content.Shared/Salvage/SharedSalvageSystem.cs index 0eae88598a..50c8af9771 100644 --- a/Content.Shared/Salvage/SharedSalvageSystem.cs +++ b/Content.Shared/Salvage/SharedSalvageSystem.cs @@ -101,11 +101,15 @@ public SalvageMission GetMission(SalvageMissionType config, DifficultyRating dif var dungeon = GetDungeon(biome.ID, rand, ref rating); var mods = new List(); - SalvageLightMod? light = null; + var air = GetAir(biome.ID, rand, ref rating); + if (air.Description != string.Empty) + { + mods.Add(air.Description); + } - if (biome.BiomePrototype != null) + var light = GetLight(biome.ID, rand, ref rating); + if (light.Description != string.Empty) { - light = GetLight(biome.ID, rand, ref rating); mods.Add(light.Description); } @@ -115,15 +119,16 @@ public SalvageMission GetMission(SalvageMissionType config, DifficultyRating dif exactDuration = MathF.Round(exactDuration / 15f) * 15f; var duration = TimeSpan.FromSeconds(exactDuration); - if (time.ID != "StandardTime") + if (time.Description != string.Empty) { mods.Add(time.Description); } var loots = GetLoot(config, _proto.EnumeratePrototypes().Where(o => !o.Guaranteed).ToList(), GetDifficulty(difficulty), seed); - return new SalvageMission(seed, difficulty, dungeon.ID, faction.ID, config, biome.ID, light?.Color, duration, loots, mods); + return new SalvageMission(seed, difficulty, dungeon.ID, faction.ID, config, biome.ID, air.ID, light.Color, duration, loots, mods); } + // TODO: probably worth putting the biome whitelist thing in a common thing then having a getmod overload for it public SalvageDungeonMod GetDungeon(string biome, System.Random rand, ref float rating) { var mods = _proto.EnumeratePrototypes().ToList(); @@ -146,6 +151,25 @@ public SalvageDungeonMod GetDungeon(string biome, System.Random rand, ref float throw new InvalidOperationException(); } + public SalvageAirMod GetAir(string biome, System.Random rand, ref float rating) + { + var mods = _proto.EnumeratePrototypes().ToList(); + mods.Sort((x, y) => string.Compare(x.ID, y.ID, StringComparison.Ordinal)); + rand.Shuffle(mods); + + foreach (var mod in mods) + { + if (mod.Biomes?.Contains(biome) == false || mod.Cost > rating) + continue; + + rating -= mod.Cost; + + return mod; + } + + throw new InvalidOperationException(); + } + public SalvageLightMod GetLight(string biome, System.Random rand, ref float rating) { var mods = _proto.EnumeratePrototypes().ToList(); diff --git a/Resources/Prototypes/Procedural/salvage_mods.yml b/Resources/Prototypes/Procedural/salvage_mods.yml index 09dcd26567..77c58c4cac 100644 --- a/Resources/Prototypes/Procedural/salvage_mods.yml +++ b/Resources/Prototypes/Procedural/salvage_mods.yml @@ -100,3 +100,98 @@ proto: LavaBrig biomeMods: - Lava + +# Air mixtures +- type: salvageAirMod + id: Space + desc: No atmosphere + space: true + cost: 1 + biomes: + - Caves + - Lava + +- type: salvageAirMod + id: Breathable + gases: + - 21.824779 # oxygen + - 82.10312 # nitrogen + biomes: + - Caves + #- LowDesert + - Snow + - Grasslands + +- type: salvageAirMod + id: Sleepy + cost: 1 + desc: Dangerous atmosphere + gases: + - 21.824779 # oxygen + - 72.10312 # nitrogen + - 0 + - 0 + - 0 + - 0 + - 0 + - 10 # nitrous oxide + biomes: + - Caves + #- LowDesert + - Snow + - Grasslands + - Lava + +- type: salvageAirMod + id: Poisoned + cost: 2 + desc: Dangerous atmosphere + gases: + - 21.824779 # oxygen + - 77.10312 # nitrogen + - 10 # carbon dioxide + biomes: + - Caves + #- LowDesert + - Snow + - Grasslands + - Lava + +- type: salvageAirMod + id: Poison + cost: 3 + desc: Toxic atmosphere + gases: + - 21.824779 # oxygen + - 0 + - 82.10312 # carbon dioxide + biomes: + - Caves + - Snow + - Lava + +- type: salvageAirMod + id: Plasma + cost: 4 + desc: Toxic atmosphere + gases: + - 0 + - 0 + - 0 + - 103.927899 # plasma + biomes: + - Caves + - Lava + +- type: salvageAirMod + id: Burnable + cost: 5 + desc: Volatile atmosphere + gases: + - 21.824779 # oxygen + - 0 + - 0 + - 82.10312 # plasma + biomes: + - Caves + - Lava diff --git a/Resources/Prototypes/Procedural/salvage_rewards.yml b/Resources/Prototypes/Procedural/salvage_rewards.yml index 3739e16b86..9d5ea6cc96 100644 --- a/Resources/Prototypes/Procedural/salvage_rewards.yml +++ b/Resources/Prototypes/Procedural/salvage_rewards.yml @@ -55,6 +55,7 @@ WeaponXrayCannon: 1.0 WeaponSniperHristov: 1.0 # extremely rare weapons + GatfruitSeeds: 0.25 WeaponLauncherRocket: 0.1 # rare chemicals CognizineChemistryBottle: 1.0 From 2ae76f70ff72f21cf572f4681cb5217e15a2bb93 Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 16 Jun 2023 01:26:29 -0400 Subject: [PATCH 272/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index e70aa117a6..0b1e603b6b 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,10 +1,4 @@ Entries: -- author: PuroSlavKing - changes: - - {message: 'Added Disease protection for CBURN, ERT, and Syndie Elite (hardsuits - and their helmets)', type: Add} - id: 3515 - time: '2023-04-23T17:22:08.0000000+00:00' - author: metalgearsloth changes: - {message: Reduced water tank price from 2k -> 1k and fuel tank from 2k -> 1.5k., @@ -2920,3 +2914,9 @@ Entries: - {message: todo..., type: Remove} id: 4014 time: '2023-06-16T05:19:03.0000000+00:00' +- author: deltanedas + changes: + - {message: 'NanoTrasen has discovered new planets with dangerous atmospheres, or + none at all, to send salvagers to.', type: Add} + id: 4015 + time: '2023-06-16T05:25:26.0000000+00:00' From 626b2750c20f74e16575a48f1b18808c30929211 Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Fri, 16 Jun 2023 05:51:37 +0000 Subject: [PATCH 273/474] fix transit power (#17200) Co-authored-by: deltanedas <@deltanedas:kde.org> --- Resources/Maps/Shuttles/emergency_transit.yml | 20 +++++-------------- 1 file changed, 5 insertions(+), 15 deletions(-) diff --git a/Resources/Maps/Shuttles/emergency_transit.yml b/Resources/Maps/Shuttles/emergency_transit.yml index 93feb563c9..2aa8867139 100644 --- a/Resources/Maps/Shuttles/emergency_transit.yml +++ b/Resources/Maps/Shuttles/emergency_transit.yml @@ -1742,14 +1742,6 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures -- proto: CableTerminal - entities: - - uid: 575 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-19.5 - parent: 2 - type: Transform - proto: ChairOfficeLight entities: - uid: 161 @@ -2752,6 +2744,11 @@ entities: type: AmbientSound - proto: GeneratorUranium entities: + - uid: 138 + components: + - pos: 15.5,-18.5 + parent: 2 + type: Transform - uid: 300 components: - pos: 15.5,-19.5 @@ -3603,13 +3600,6 @@ entities: pos: 13.5,-13.5 parent: 2 type: Transform -- proto: SMESBasic - entities: - - uid: 138 - components: - - pos: 15.5,-18.5 - parent: 2 - type: Transform - proto: StasisBed entities: - uid: 430 From 548d2ca477a7a92c5d048902bf0eefcdf6cc29c9 Mon Sep 17 00:00:00 2001 From: Emisse <99158783+Emisse@users.noreply.github.com> Date: Fri, 16 Jun 2023 01:20:56 -0600 Subject: [PATCH 274/474] arrivals (#17373) --- Resources/Maps/Shuttles/arrivals.yml | 4082 +++++++++++++------------- 1 file changed, 1977 insertions(+), 2105 deletions(-) diff --git a/Resources/Maps/Shuttles/arrivals.yml b/Resources/Maps/Shuttles/arrivals.yml index 8fde7db9e8..86903df251 100644 --- a/Resources/Maps/Shuttles/arrivals.yml +++ b/Resources/Maps/Shuttles/arrivals.yml @@ -1,2105 +1,1977 @@ -meta: - format: 4 - postmapinit: false -tilemap: - 0: Space - 40: FloorGrass - 61: FloorShuttleBlue - 62: FloorShuttleOrange - 65: FloorShuttleWhite - 93: Lattice - 94: Plating -entities: -- proto: "" - entities: - - uid: 292 - components: - - type: MetaData - - parent: invalid - type: Transform - - chunks: - -1,-1: - ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAQQAAAEEAAABBAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD0AAAA9AAAAPQAAAD0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABBAAAAPQAAAEEAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAQQAAAD0AAABBAAAAKAAAAA== - 0,0: - ind: 0,0 - tiles: QQAAAD0AAABBAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAAAA9AAAAQQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBAAAAPQAAAEEAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAD0AAABBAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD0AAAA9AAAAPQAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBAAAAQQAAAEEAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -1,0: - ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAQQAAAD0AAABBAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEEAAAA9AAAAQQAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABBAAAAPQAAAEEAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAQQAAAD0AAABBAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD0AAAA9AAAAPQAAAD0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABBAAAAQQAAAEEAAAA9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAQQAAAD0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEEAAAA9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,-1: - ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAEEAAABBAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD0AAAA9AAAAPQAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBAAAAPQAAAEEAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAD0AAABBAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - type: MapGrid - - type: Broadphase - - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - type: Physics - - - id: Empty - type: BecomesStation - - type: OccluderTree - - type: Shuttle - - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - type: Gravity - - chunkCollection: - version: 2 - nodes: - - node: - color: '#FFFFFFFF' - id: BushCThree - decals: - 9: -1,-1 - - node: - color: '#FFFFFFFF' - id: Bushe3 - decals: - 11: -1,1 - - node: - color: '#FFFFFFFF' - id: Bushi3 - decals: - 10: -1,0 - - node: - color: '#FFFFFFFF' - id: Flowersbr3 - decals: - 6: -1,1 - - node: - color: '#FFFFFFFF' - id: Flowerspv3 - decals: - 7: -1,-1 - - node: - color: '#FFFFFFFF' - id: Flowersy3 - decals: - 4: -1,2 - - node: - color: '#FFFFFFFF' - id: Flowersy4 - decals: - 5: -1,0 - - node: - color: '#FFFFFFFF' - id: Grassb5 - decals: - 8: -1,2 - - node: - color: '#FFFFFFFF' - id: Grassd3 - decals: - 3: -1,2 - - node: - color: '#FFFFFFFF' - id: Grasse1 - decals: - 2: -1,1 - - node: - color: '#FFFFFFFF' - id: Grasse2 - decals: - 1: -1,0 - - node: - color: '#FFFFFFFF' - id: Grasse3 - decals: - 0: -1,-1 - type: DecalGrid - - version: 2 - data: - tiles: - -1,-1: - 0: 3 - 1: 65532 - -1,0: - 1: 65535 - -2,-2: - 1: 34816 - -2,-1: - 1: 34952 - -1,-2: - 1: 65520 - 0,0: - 1: 65535 - 0,1: - 1: 32687 - 0: 80 - 0,2: - 1: 307 - -2,0: - 1: 34952 - -2,1: - 1: 2184 - -1,1: - 1: 65455 - 0: 80 - -1,2: - 1: 3310 - 0,-2: - 1: 65392 - 0,-1: - 1: 65531 - 0: 4 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 - type: GridAtmosphere - - type: GasTileOverlay - - type: RadiationGridResistance - - type: SpreaderGrid -- proto: AirCanister - entities: - - uid: 214 - components: - - pos: -1.5,7.5 - parent: 292 - type: Transform -- proto: AirlockCommandGlassLocked - entities: - - uid: 278 - components: - - name: Cockpit - type: MetaData - - pos: -0.5,6.5 - parent: 292 - type: Transform -- proto: AirlockGlassShuttle - entities: - - uid: 177 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-2.5 - parent: 292 - type: Transform - - - uid: 178 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,4.5 - parent: 292 - type: Transform - - - uid: 179 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,4.5 - parent: 292 - type: Transform - - - uid: 180 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-2.5 - parent: 292 - type: Transform - -- proto: APCBasic - entities: - - uid: 116 - components: - - rot: 3.141592653589793 rad - pos: -0.5,3.5 - parent: 292 - type: Transform -- proto: AtmosDeviceFanTiny - entities: - - uid: 164 - components: - - pos: 3.5,-2.5 - parent: 292 - type: Transform - - uid: 165 - components: - - pos: 3.5,4.5 - parent: 292 - type: Transform - - uid: 166 - components: - - pos: -4.5,4.5 - parent: 292 - type: Transform - - uid: 167 - components: - - pos: -4.5,-2.5 - parent: 292 - type: Transform -- proto: BlockGameArcade - entities: - - uid: 258 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-1.5 - parent: 292 - type: Transform -- proto: CableApcExtension - entities: - - uid: 123 - components: - - pos: -0.5,3.5 - parent: 292 - type: Transform - - enabled: True - type: AmbientSound - - uid: 124 - components: - - pos: -0.5,4.5 - parent: 292 - type: Transform - - uid: 125 - components: - - pos: -1.5,4.5 - parent: 292 - type: Transform - - uid: 126 - components: - - pos: -2.5,4.5 - parent: 292 - type: Transform - - uid: 127 - components: - - pos: -2.5,3.5 - parent: 292 - type: Transform - - uid: 128 - components: - - pos: -2.5,2.5 - parent: 292 - type: Transform - - uid: 129 - components: - - pos: -2.5,1.5 - parent: 292 - type: Transform - - uid: 130 - components: - - pos: -2.5,0.5 - parent: 292 - type: Transform - - uid: 131 - components: - - pos: -2.5,-0.5 - parent: 292 - type: Transform - - uid: 132 - components: - - pos: -2.5,-1.5 - parent: 292 - type: Transform - - uid: 133 - components: - - pos: -2.5,-2.5 - parent: 292 - type: Transform - - uid: 134 - components: - - pos: -1.5,-2.5 - parent: 292 - type: Transform - - uid: 135 - components: - - pos: -0.5,-2.5 - parent: 292 - type: Transform - - uid: 136 - components: - - pos: 0.5,-2.5 - parent: 292 - type: Transform - - uid: 137 - components: - - pos: 1.5,-2.5 - parent: 292 - type: Transform - - uid: 138 - components: - - pos: 1.5,-1.5 - parent: 292 - type: Transform - - uid: 139 - components: - - pos: 1.5,-0.5 - parent: 292 - type: Transform - - uid: 140 - components: - - pos: 1.5,0.5 - parent: 292 - type: Transform - - uid: 141 - components: - - pos: 1.5,1.5 - parent: 292 - type: Transform - - uid: 142 - components: - - pos: 1.5,2.5 - parent: 292 - type: Transform - - uid: 143 - components: - - pos: 1.5,3.5 - parent: 292 - type: Transform - - uid: 144 - components: - - pos: 1.5,4.5 - parent: 292 - type: Transform - - uid: 145 - components: - - pos: 0.5,4.5 - parent: 292 - type: Transform - - uid: 146 - components: - - pos: -0.5,5.5 - parent: 292 - type: Transform - - uid: 147 - components: - - pos: -0.5,6.5 - parent: 292 - type: Transform - - uid: 148 - components: - - pos: -0.5,7.5 - parent: 292 - type: Transform - - uid: 149 - components: - - pos: -0.5,8.5 - parent: 292 - type: Transform - - uid: 150 - components: - - pos: -1.5,-3.5 - parent: 292 - type: Transform - - uid: 151 - components: - - pos: 0.5,-3.5 - parent: 292 - type: Transform - - uid: 152 - components: - - pos: 0.5,-4.5 - parent: 292 - type: Transform - - enabled: True - type: AmbientSound - - uid: 153 - components: - - pos: 1.5,-4.5 - parent: 292 - type: Transform - - enabled: True - type: AmbientSound - - uid: 154 - components: - - pos: -1.5,-4.5 - parent: 292 - type: Transform - - enabled: True - type: AmbientSound - - uid: 155 - components: - - pos: -2.5,-4.5 - parent: 292 - type: Transform - - enabled: True - type: AmbientSound - - uid: 156 - components: - - pos: -2.5,-5.5 - parent: 292 - type: Transform - - enabled: True - type: AmbientSound - - uid: 157 - components: - - pos: 1.5,-5.5 - parent: 292 - type: Transform - - enabled: True - type: AmbientSound - - uid: 158 - components: - - pos: -1.5,8.5 - parent: 292 - type: Transform - - uid: 159 - components: - - pos: 0.5,8.5 - parent: 292 - type: Transform - - uid: 160 - components: - - pos: -3.5,4.5 - parent: 292 - type: Transform - - uid: 161 - components: - - pos: 2.5,4.5 - parent: 292 - type: Transform - - uid: 162 - components: - - pos: 2.5,-2.5 - parent: 292 - type: Transform - - uid: 163 - components: - - pos: -3.5,-2.5 - parent: 292 - type: Transform -- proto: CableHV - entities: - - uid: 79 - components: - - pos: 0.5,7.5 - parent: 292 - type: Transform - - uid: 80 - components: - - pos: 1.5,7.5 - parent: 292 - type: Transform - - enabled: True - type: AmbientSound - - uid: 81 - components: - - pos: 1.5,6.5 - parent: 292 - type: Transform - - enabled: True - type: AmbientSound - - uid: 82 - components: - - pos: -0.5,7.5 - parent: 292 - type: Transform - - uid: 83 - components: - - pos: -0.5,6.5 - parent: 292 - type: Transform - - uid: 85 - components: - - pos: -0.5,5.5 - parent: 292 - type: Transform - - uid: 86 - components: - - pos: -0.5,4.5 - parent: 292 - type: Transform - - uid: 87 - components: - - pos: -1.5,4.5 - parent: 292 - type: Transform - - uid: 88 - components: - - pos: -2.5,4.5 - parent: 292 - type: Transform - - uid: 89 - components: - - pos: -2.5,3.5 - parent: 292 - type: Transform - - uid: 90 - components: - - pos: -2.5,2.5 - parent: 292 - type: Transform - - uid: 91 - components: - - pos: -2.5,1.5 - parent: 292 - type: Transform - - uid: 92 - components: - - pos: -2.5,0.5 - parent: 292 - type: Transform - - uid: 93 - components: - - pos: -2.5,-0.5 - parent: 292 - type: Transform - - uid: 94 - components: - - pos: -2.5,-1.5 - parent: 292 - type: Transform - - uid: 95 - components: - - pos: -2.5,-2.5 - parent: 292 - type: Transform - - uid: 96 - components: - - pos: -1.5,-2.5 - parent: 292 - type: Transform - - uid: 97 - components: - - pos: -0.5,-2.5 - parent: 292 - type: Transform - - uid: 98 - components: - - pos: 0.5,-2.5 - parent: 292 - type: Transform - - uid: 99 - components: - - pos: 1.5,-2.5 - parent: 292 - type: Transform - - uid: 100 - components: - - pos: 1.5,-1.5 - parent: 292 - type: Transform - - uid: 101 - components: - - pos: 1.5,-0.5 - parent: 292 - type: Transform - - uid: 102 - components: - - pos: 1.5,0.5 - parent: 292 - type: Transform - - uid: 103 - components: - - pos: 1.5,1.5 - parent: 292 - type: Transform - - uid: 104 - components: - - pos: 1.5,2.5 - parent: 292 - type: Transform - - uid: 105 - components: - - pos: 1.5,3.5 - parent: 292 - type: Transform - - uid: 106 - components: - - pos: 1.5,4.5 - parent: 292 - type: Transform - - uid: 107 - components: - - pos: 0.5,4.5 - parent: 292 - type: Transform - - uid: 108 - components: - - pos: -1.5,-3.5 - parent: 292 - type: Transform - - uid: 109 - components: - - pos: -1.5,-4.5 - parent: 292 - type: Transform - - enabled: True - type: AmbientSound - - uid: 110 - components: - - pos: -1.5,-5.5 - parent: 292 - type: Transform - - enabled: True - type: AmbientSound - - uid: 111 - components: - - pos: 0.5,-5.5 - parent: 292 - type: Transform - - enabled: True - type: AmbientSound - - uid: 112 - components: - - pos: 0.5,-4.5 - parent: 292 - type: Transform - - enabled: True - type: AmbientSound - - uid: 113 - components: - - pos: 0.5,-3.5 - parent: 292 - type: Transform -- proto: CableMV - entities: - - uid: 117 - components: - - pos: 1.5,6.5 - parent: 292 - type: Transform - - enabled: True - type: AmbientSound - - uid: 118 - components: - - pos: 1.5,5.5 - parent: 292 - type: Transform - - uid: 119 - components: - - pos: 1.5,4.5 - parent: 292 - type: Transform - - uid: 120 - components: - - pos: 0.5,4.5 - parent: 292 - type: Transform - - uid: 121 - components: - - pos: -0.5,4.5 - parent: 292 - type: Transform - - uid: 122 - components: - - pos: -0.5,3.5 - parent: 292 - type: Transform - - enabled: True - type: AmbientSound -- proto: CableTerminal - entities: - - uid: 84 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,7.5 - parent: 292 - type: Transform -- proto: ChairPilotSeat - entities: - - uid: 223 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-0.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 224 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,0.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 225 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,1.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 226 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,2.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 227 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-0.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 228 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,0.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 229 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,1.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 230 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,2.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 231 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-0.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 232 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,0.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 233 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,1.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 234 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,2.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 235 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-0.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 236 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,0.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 237 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,1.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 238 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,2.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 239 - components: - - pos: 1.5,5.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 240 - components: - - pos: -2.5,5.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 241 - components: - - rot: 3.141592653589793 rad - pos: -0.5,8.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 252 - components: - - pos: 0.5,5.5 - parent: 292 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 260 - components: - - pos: -2.5,-3.5 - parent: 292 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: ClosetFireFilled - entities: - - uid: 253 - components: - - pos: -1.5,5.5 - parent: 292 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: ClosetWallEmergencyFilledRandom - entities: - - uid: 288 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-4.5 - parent: 292 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 289 - components: - - pos: -3.5,6.5 - parent: 292 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: ClosetWallFireFilledRandom - entities: - - uid: 286 - components: - - pos: 2.5,6.5 - parent: 292 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 287 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-4.5 - parent: 292 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: ClothingBackpack - entities: - - uid: 275 - components: - - pos: 2.5,5.5 - parent: 292 - type: Transform -- proto: ClothingMaskBreath - entities: - - uid: 272 - components: - - pos: 2.5,-3.5 - parent: 292 - type: Transform - - uid: 273 - components: - - pos: -3.5,-3.5 - parent: 292 - type: Transform -- proto: ComputerShuttle - entities: - - uid: 242 - components: - - pos: -0.5,9.5 - parent: 292 - type: Transform -- proto: CrowbarRed - entities: - - uid: 274 - components: - - pos: 0.5,-3.5 - parent: 292 - type: Transform -- proto: EmergencyOxygenTankFilled - entities: - - uid: 270 - components: - - pos: 2.5708976,-3.5851696 - parent: 292 - type: Transform - - uid: 271 - components: - - pos: -3.4291024,-3.5851696 - parent: 292 - type: Transform -- proto: ExtinguisherCabinetFilled - entities: - - uid: 277 - components: - - pos: -0.5,-4.5 - parent: 292 - type: Transform -- proto: GasPassiveGate - entities: - - uid: 184 - components: - - pos: -0.5,7.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics -- proto: GasPipeBend - entities: - - uid: 182 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,8.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 183 - components: - - pos: -0.5,8.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 187 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,5.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 188 - components: - - pos: 1.5,5.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 189 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-3.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 190 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-3.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics -- proto: GasPipeFourway - entities: - - uid: 186 - components: - - pos: -0.5,5.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics -- proto: GasPipeStraight - entities: - - uid: 185 - components: - - pos: -0.5,6.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 192 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,5.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 193 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,5.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 194 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-3.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 195 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-3.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 196 - components: - - pos: 1.5,-2.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 197 - components: - - pos: 1.5,-1.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 198 - components: - - pos: 1.5,-0.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 199 - components: - - pos: 1.5,0.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 200 - components: - - pos: 1.5,1.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 201 - components: - - pos: 1.5,2.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 202 - components: - - pos: 1.5,3.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 203 - components: - - pos: 1.5,4.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 204 - components: - - pos: -2.5,-2.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 205 - components: - - pos: -2.5,-1.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 206 - components: - - pos: -2.5,-0.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 207 - components: - - pos: -2.5,0.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 208 - components: - - pos: -2.5,1.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 209 - components: - - pos: -2.5,2.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 210 - components: - - pos: -2.5,3.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 211 - components: - - pos: -2.5,4.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics -- proto: GasPipeTJunction - entities: - - uid: 191 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-3.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics -- proto: GasPort - entities: - - uid: 181 - components: - - rot: 3.141592653589793 rad - pos: -1.5,7.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics -- proto: GasVentPump - entities: - - uid: 212 - components: - - pos: -0.5,-2.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 213 - components: - - rot: 3.141592653589793 rad - pos: -0.5,4.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics -- proto: GeneratorUranium - entities: - - uid: 114 - components: - - pos: -1.5,-5.5 - parent: 292 - type: Transform - - uid: 115 - components: - - pos: 0.5,-5.5 - parent: 292 - type: Transform -- proto: GeneratorWallmountAPU - entities: - - uid: 78 - components: - - pos: 1.5,7.5 - parent: 292 - type: Transform -- proto: GravityGeneratorMini - entities: - - uid: 291 - components: - - pos: -2.5,-5.5 - parent: 292 - type: Transform -- proto: Grille - entities: - - uid: 44 - components: - - pos: 3.5,-0.5 - parent: 292 - type: Transform - - uid: 52 - components: - - pos: 3.5,0.5 - parent: 292 - type: Transform - - uid: 53 - components: - - pos: 3.5,1.5 - parent: 292 - type: Transform - - uid: 54 - components: - - pos: 3.5,2.5 - parent: 292 - type: Transform - - uid: 55 - components: - - pos: -4.5,-0.5 - parent: 292 - type: Transform - - uid: 56 - components: - - pos: -4.5,0.5 - parent: 292 - type: Transform - - uid: 57 - components: - - pos: -4.5,1.5 - parent: 292 - type: Transform - - uid: 58 - components: - - pos: -4.5,2.5 - parent: 292 - type: Transform - - uid: 59 - components: - - pos: -1.5,-4.5 - parent: 292 - type: Transform - - uid: 60 - components: - - pos: -2.5,-4.5 - parent: 292 - type: Transform - - uid: 61 - components: - - pos: 1.5,-4.5 - parent: 292 - type: Transform - - uid: 62 - components: - - pos: 0.5,-4.5 - parent: 292 - type: Transform - - uid: 63 - components: - - pos: 0.5,6.5 - parent: 292 - type: Transform - - uid: 64 - components: - - pos: -1.5,6.5 - parent: 292 - type: Transform - - uid: 65 - components: - - pos: -2.5,8.5 - parent: 292 - type: Transform - - uid: 66 - components: - - pos: -2.5,9.5 - parent: 292 - type: Transform - - uid: 67 - components: - - pos: -1.5,9.5 - parent: 292 - type: Transform - - uid: 68 - components: - - pos: -1.5,10.5 - parent: 292 - type: Transform - - uid: 69 - components: - - pos: -0.5,10.5 - parent: 292 - type: Transform - - uid: 70 - components: - - pos: 0.5,10.5 - parent: 292 - type: Transform - - uid: 71 - components: - - pos: 0.5,9.5 - parent: 292 - type: Transform - - uid: 72 - components: - - pos: 1.5,9.5 - parent: 292 - type: Transform - - uid: 73 - components: - - pos: 1.5,8.5 - parent: 292 - type: Transform -- proto: Gyroscope - entities: - - uid: 168 - components: - - pos: 1.5,-5.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics -- proto: Intercom - entities: - - uid: 264 - components: - - pos: -0.5,-1.5 - parent: 292 - type: Transform -- proto: MaintenanceFluffSpawner - entities: - - uid: 284 - components: - - pos: 0.5,3.5 - parent: 292 - type: Transform - - uid: 285 - components: - - pos: -1.5,3.5 - parent: 292 - type: Transform -- proto: MedkitFilled - entities: - - uid: 266 - components: - - pos: -0.5,-3.5 - parent: 292 - type: Transform -- proto: NitrogenTankFilled - entities: - - uid: 268 - components: - - pos: -3.5,-3.5 - parent: 292 - type: Transform - - uid: 269 - components: - - pos: 2.5,-3.5 - parent: 292 - type: Transform -- proto: PosterLegitNanotrasenLogo - entities: - - uid: 290 - components: - - pos: -2.5,6.5 - parent: 292 - type: Transform -- proto: PottedPlantRandom - entities: - - uid: 254 - components: - - pos: 2.5,-1.5 - parent: 292 - type: Transform - - uid: 255 - components: - - pos: 2.5,3.5 - parent: 292 - type: Transform - - uid: 256 - components: - - pos: -3.5,3.5 - parent: 292 - type: Transform - - uid: 257 - components: - - pos: -3.5,-1.5 - parent: 292 - type: Transform -- proto: PowerCellRecharger - entities: - - uid: 265 - components: - - pos: 0.5,-3.5 - parent: 292 - type: Transform -- proto: Poweredlight - entities: - - uid: 279 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,5.5 - parent: 292 - type: Transform - - enabled: False - type: AmbientSound - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 280 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,3.5 - parent: 292 - type: Transform - - enabled: False - type: AmbientSound - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 281 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-1.5 - parent: 292 - type: Transform - - enabled: False - type: AmbientSound - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 282 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-3.5 - parent: 292 - type: Transform - - enabled: False - type: AmbientSound - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 283 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,7.5 - parent: 292 - type: Transform - - enabled: False - type: AmbientSound - - powerLoad: 0 - type: ApcPowerReceiver -- proto: Rack - entities: - - uid: 262 - components: - - pos: 2.5,-3.5 - parent: 292 - type: Transform - - uid: 263 - components: - - pos: -3.5,-3.5 - parent: 292 - type: Transform -- proto: ShuttleWindow - entities: - - uid: 28 - components: - - pos: 3.5,-0.5 - parent: 292 - type: Transform - - uid: 29 - components: - - pos: 3.5,0.5 - parent: 292 - type: Transform - - uid: 30 - components: - - pos: 3.5,1.5 - parent: 292 - type: Transform - - uid: 31 - components: - - pos: 3.5,2.5 - parent: 292 - type: Transform - - uid: 32 - components: - - pos: -4.5,-0.5 - parent: 292 - type: Transform - - uid: 33 - components: - - pos: -4.5,0.5 - parent: 292 - type: Transform - - uid: 34 - components: - - pos: -4.5,1.5 - parent: 292 - type: Transform - - uid: 35 - components: - - pos: -4.5,2.5 - parent: 292 - type: Transform - - uid: 36 - components: - - pos: -1.5,-4.5 - parent: 292 - type: Transform - - uid: 37 - components: - - pos: -2.5,-4.5 - parent: 292 - type: Transform - - uid: 38 - components: - - pos: 0.5,-4.5 - parent: 292 - type: Transform - - uid: 39 - components: - - pos: 1.5,-4.5 - parent: 292 - type: Transform - - uid: 40 - components: - - pos: 0.5,6.5 - parent: 292 - type: Transform - - uid: 41 - components: - - pos: -1.5,6.5 - parent: 292 - type: Transform - - uid: 42 - components: - - pos: -2.5,8.5 - parent: 292 - type: Transform - - uid: 43 - components: - - pos: -1.5,9.5 - parent: 292 - type: Transform - - uid: 45 - components: - - pos: -2.5,9.5 - parent: 292 - type: Transform - - uid: 46 - components: - - pos: -1.5,10.5 - parent: 292 - type: Transform - - uid: 47 - components: - - pos: -0.5,10.5 - parent: 292 - type: Transform - - uid: 48 - components: - - pos: 0.5,10.5 - parent: 292 - type: Transform - - uid: 49 - components: - - pos: 0.5,9.5 - parent: 292 - type: Transform - - uid: 50 - components: - - pos: 1.5,9.5 - parent: 292 - type: Transform - - uid: 51 - components: - - pos: 1.5,8.5 - parent: 292 - type: Transform -- proto: SMESBasic - entities: - - uid: 76 - components: - - pos: 0.5,7.5 - parent: 292 - type: Transform -- proto: SpaceVillainArcadeFilled - entities: - - uid: 259 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-1.5 - parent: 292 - type: Transform -- proto: SubstationWallBasic - entities: - - uid: 77 - components: - - pos: 1.5,6.5 - parent: 292 - type: Transform -- proto: TableReinforced - entities: - - uid: 243 - components: - - pos: 0.5,-3.5 - parent: 292 - type: Transform - - uid: 244 - components: - - pos: -1.5,8.5 - parent: 292 - type: Transform - - uid: 245 - components: - - pos: 0.5,8.5 - parent: 292 - type: Transform - - uid: 246 - components: - - pos: -0.5,-3.5 - parent: 292 - type: Transform - - uid: 247 - components: - - pos: -1.5,-3.5 - parent: 292 - type: Transform - - uid: 248 - components: - - pos: 0.5,3.5 - parent: 292 - type: Transform - - uid: 249 - components: - - pos: -1.5,3.5 - parent: 292 - type: Transform - - uid: 250 - components: - - pos: 2.5,5.5 - parent: 292 - type: Transform - - uid: 251 - components: - - pos: -3.5,5.5 - parent: 292 - type: Transform -- proto: Thruster - entities: - - uid: 169 - components: - - pos: 2.5,7.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 170 - components: - - pos: -3.5,7.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 171 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-6.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 172 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-6.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 173 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-6.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 174 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-6.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 175 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-6.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics - - uid: 176 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-6.5 - parent: 292 - type: Transform - - bodyType: Static - type: Physics -- proto: ToolboxEmergencyFilled - entities: - - uid: 267 - components: - - pos: -1.5,-3.5 - parent: 292 - type: Transform - - uid: 276 - components: - - pos: -3.5,5.5 - parent: 292 - type: Transform -- proto: VendingMachineClothing - entities: - - uid: 261 - components: - - flags: SessionSpecific - type: MetaData - - pos: 1.5,-3.5 - parent: 292 - type: Transform -- proto: WallShuttle - entities: - - uid: 1 - components: - - pos: 3.5,-3.5 - parent: 292 - type: Transform - - uid: 2 - components: - - pos: 3.5,-1.5 - parent: 292 - type: Transform - - uid: 3 - components: - - pos: -4.5,-3.5 - parent: 292 - type: Transform - - uid: 4 - components: - - pos: -4.5,-1.5 - parent: 292 - type: Transform - - uid: 5 - components: - - pos: -4.5,3.5 - parent: 292 - type: Transform - - uid: 6 - components: - - pos: -4.5,5.5 - parent: 292 - type: Transform - - uid: 7 - components: - - pos: 3.5,3.5 - parent: 292 - type: Transform - - uid: 8 - components: - - pos: 3.5,5.5 - parent: 292 - type: Transform - - uid: 9 - components: - - pos: 3.5,6.5 - parent: 292 - type: Transform - - uid: 10 - components: - - pos: 2.5,6.5 - parent: 292 - type: Transform - - uid: 11 - components: - - pos: -4.5,6.5 - parent: 292 - type: Transform - - uid: 12 - components: - - pos: -3.5,6.5 - parent: 292 - type: Transform - - uid: 13 - components: - - pos: -2.5,6.5 - parent: 292 - type: Transform - - uid: 14 - components: - - pos: -2.5,7.5 - parent: 292 - type: Transform - - uid: 15 - components: - - pos: 1.5,6.5 - parent: 292 - type: Transform - - uid: 16 - components: - - pos: 1.5,7.5 - parent: 292 - type: Transform - - uid: 17 - components: - - pos: 3.5,-4.5 - parent: 292 - type: Transform - - uid: 18 - components: - - pos: 2.5,-4.5 - parent: 292 - type: Transform - - uid: 19 - components: - - pos: -4.5,-4.5 - parent: 292 - type: Transform - - uid: 20 - components: - - pos: -3.5,-4.5 - parent: 292 - type: Transform - - uid: 21 - components: - - pos: -0.5,-4.5 - parent: 292 - type: Transform - - uid: 22 - components: - - pos: 2.5,-5.5 - parent: 292 - type: Transform - - uid: 23 - components: - - pos: 3.5,-5.5 - parent: 292 - type: Transform - - uid: 24 - components: - - pos: -3.5,-5.5 - parent: 292 - type: Transform - - uid: 25 - components: - - pos: -4.5,-5.5 - parent: 292 - type: Transform - - uid: 26 - components: - - pos: -0.5,-6.5 - parent: 292 - type: Transform - - uid: 27 - components: - - pos: -0.5,-5.5 - parent: 292 - type: Transform - - uid: 74 - components: - - pos: -0.5,-1.5 - parent: 292 - type: Transform - - uid: 75 - components: - - pos: -0.5,3.5 - parent: 292 - type: Transform -- proto: WindowReinforcedDirectional - entities: - - uid: 215 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-0.5 - parent: 292 - type: Transform - - uid: 216 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,0.5 - parent: 292 - type: Transform - - uid: 217 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,1.5 - parent: 292 - type: Transform - - uid: 218 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,2.5 - parent: 292 - type: Transform - - uid: 219 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,2.5 - parent: 292 - type: Transform - - uid: 220 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,1.5 - parent: 292 - type: Transform - - uid: 221 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,0.5 - parent: 292 - type: Transform - - uid: 222 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-0.5 - parent: 292 - type: Transform -... +meta: + format: 5 + postmapinit: false +tilemap: + 0: Space + 41: FloorGrass + 62: FloorShuttleBlue + 63: FloorShuttleOrange + 66: FloorShuttleWhite + 94: Lattice + 95: Plating +entities: +- proto: "" + entities: + - uid: 292 + components: + - name: NT-Arrivals 1101 + type: MetaData + - parent: invalid + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAQgAAAEIAAABCAAAAQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABCAAAAPgAAAEIAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAQgAAAD4AAABCAAAAKQAAAA== + 0,0: + ind: 0,0 + tiles: QgAAAD4AAABCAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEIAAAA+AAAAQgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABCAAAAPgAAAEIAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQgAAAD4AAABCAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAPgAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABCAAAAQgAAAEIAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEIAAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABCAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAQgAAAD4AAABCAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEIAAAA+AAAAQgAAACkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABCAAAAPgAAAEIAAAApAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAQgAAAD4AAABCAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABCAAAAQgAAAEIAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAQgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEIAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQgAAAEIAAABCAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAPgAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABCAAAAPgAAAEIAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQgAAAD4AAABCAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + type: MapGrid + - type: Broadphase + - angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - id: Empty + type: BecomesStation + - type: OccluderTree + - type: Shuttle + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: BushCThree + decals: + 9: -1,-1 + - node: + color: '#FFFFFFFF' + id: Bushe3 + decals: + 11: -1,1 + - node: + color: '#FFFFFFFF' + id: Bushi3 + decals: + 10: -1,0 + - node: + color: '#FFFFFFFF' + id: Flowersbr3 + decals: + 6: -1,1 + - node: + color: '#FFFFFFFF' + id: Flowerspv3 + decals: + 7: -1,-1 + - node: + color: '#FFFFFFFF' + id: Flowersy3 + decals: + 4: -1,2 + - node: + color: '#FFFFFFFF' + id: Flowersy4 + decals: + 5: -1,0 + - node: + color: '#FFFFFFFF' + id: Grassb5 + decals: + 8: -1,2 + - node: + color: '#FFFFFFFF' + id: Grassd3 + decals: + 3: -1,2 + - node: + color: '#FFFFFFFF' + id: Grasse1 + decals: + 2: -1,1 + - node: + color: '#FFFFFFFF' + id: Grasse2 + decals: + 1: -1,0 + - node: + color: '#FFFFFFFF' + id: Grasse3 + decals: + 0: -1,-1 + type: DecalGrid + - version: 2 + data: + tiles: + -1,-1: + 0: 3 + 1: 65532 + -1,0: + 1: 65535 + -2,-2: + 1: 34816 + -2,-1: + 1: 34952 + -1,-2: + 1: 65520 + 0,0: + 1: 65535 + 0,1: + 1: 32687 + 0: 80 + 0,2: + 1: 307 + -2,0: + 1: 34952 + -2,1: + 1: 2184 + -1,1: + 1: 65455 + 0: 80 + -1,2: + 1: 3310 + 0,-2: + 1: 65392 + 0,-1: + 1: 65531 + 0: 4 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - nextUpdate: 0 + type: SpreaderGrid + - type: GridPathfinding +- proto: AirCanister + entities: + - uid: 214 + components: + - pos: -1.5,7.5 + parent: 292 + type: Transform +- proto: AirlockCommandGlassLocked + entities: + - uid: 278 + components: + - name: Cockpit + type: MetaData + - pos: -0.5,6.5 + parent: 292 + type: Transform +- proto: AirlockGlassShuttle + entities: + - uid: 177 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 292 + type: Transform + - uid: 178 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,4.5 + parent: 292 + type: Transform + - uid: 179 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,4.5 + parent: 292 + type: Transform + - uid: 180 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 292 + type: Transform +- proto: APCBasic + entities: + - uid: 116 + components: + - rot: 3.141592653589793 rad + pos: -0.5,3.5 + parent: 292 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 164 + components: + - pos: 3.5,-2.5 + parent: 292 + type: Transform + - uid: 165 + components: + - pos: 3.5,4.5 + parent: 292 + type: Transform + - uid: 166 + components: + - pos: -4.5,4.5 + parent: 292 + type: Transform + - uid: 167 + components: + - pos: -4.5,-2.5 + parent: 292 + type: Transform +- proto: BlockGameArcade + entities: + - uid: 258 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 292 + type: Transform +- proto: CableApcExtension + entities: + - uid: 123 + components: + - pos: -0.5,3.5 + parent: 292 + type: Transform + - enabled: True + type: AmbientSound + - uid: 124 + components: + - pos: -0.5,4.5 + parent: 292 + type: Transform + - uid: 125 + components: + - pos: -1.5,4.5 + parent: 292 + type: Transform + - uid: 126 + components: + - pos: -2.5,4.5 + parent: 292 + type: Transform + - uid: 127 + components: + - pos: -2.5,3.5 + parent: 292 + type: Transform + - uid: 128 + components: + - pos: -2.5,2.5 + parent: 292 + type: Transform + - uid: 129 + components: + - pos: -2.5,1.5 + parent: 292 + type: Transform + - uid: 130 + components: + - pos: -2.5,0.5 + parent: 292 + type: Transform + - uid: 131 + components: + - pos: -2.5,-0.5 + parent: 292 + type: Transform + - uid: 132 + components: + - pos: -2.5,-1.5 + parent: 292 + type: Transform + - uid: 133 + components: + - pos: -2.5,-2.5 + parent: 292 + type: Transform + - uid: 134 + components: + - pos: -1.5,-2.5 + parent: 292 + type: Transform + - uid: 135 + components: + - pos: -0.5,-2.5 + parent: 292 + type: Transform + - uid: 136 + components: + - pos: 0.5,-2.5 + parent: 292 + type: Transform + - uid: 137 + components: + - pos: 1.5,-2.5 + parent: 292 + type: Transform + - uid: 138 + components: + - pos: 1.5,-1.5 + parent: 292 + type: Transform + - uid: 139 + components: + - pos: 1.5,-0.5 + parent: 292 + type: Transform + - uid: 140 + components: + - pos: 1.5,0.5 + parent: 292 + type: Transform + - uid: 141 + components: + - pos: 1.5,1.5 + parent: 292 + type: Transform + - uid: 142 + components: + - pos: 1.5,2.5 + parent: 292 + type: Transform + - uid: 143 + components: + - pos: 1.5,3.5 + parent: 292 + type: Transform + - uid: 144 + components: + - pos: 1.5,4.5 + parent: 292 + type: Transform + - uid: 145 + components: + - pos: 0.5,4.5 + parent: 292 + type: Transform + - uid: 146 + components: + - pos: -0.5,5.5 + parent: 292 + type: Transform + - uid: 147 + components: + - pos: -0.5,6.5 + parent: 292 + type: Transform + - uid: 148 + components: + - pos: -0.5,7.5 + parent: 292 + type: Transform + - uid: 149 + components: + - pos: -0.5,8.5 + parent: 292 + type: Transform + - uid: 150 + components: + - pos: -1.5,-3.5 + parent: 292 + type: Transform + - uid: 151 + components: + - pos: 0.5,-3.5 + parent: 292 + type: Transform + - uid: 152 + components: + - pos: 0.5,-4.5 + parent: 292 + type: Transform + - enabled: True + type: AmbientSound + - uid: 153 + components: + - pos: 1.5,-4.5 + parent: 292 + type: Transform + - enabled: True + type: AmbientSound + - uid: 154 + components: + - pos: -1.5,-4.5 + parent: 292 + type: Transform + - enabled: True + type: AmbientSound + - uid: 155 + components: + - pos: -2.5,-4.5 + parent: 292 + type: Transform + - enabled: True + type: AmbientSound + - uid: 156 + components: + - pos: -2.5,-5.5 + parent: 292 + type: Transform + - enabled: True + type: AmbientSound + - uid: 157 + components: + - pos: 1.5,-5.5 + parent: 292 + type: Transform + - enabled: True + type: AmbientSound + - uid: 158 + components: + - pos: -1.5,8.5 + parent: 292 + type: Transform + - uid: 159 + components: + - pos: 0.5,8.5 + parent: 292 + type: Transform + - uid: 160 + components: + - pos: -3.5,4.5 + parent: 292 + type: Transform + - uid: 161 + components: + - pos: 2.5,4.5 + parent: 292 + type: Transform + - uid: 162 + components: + - pos: 2.5,-2.5 + parent: 292 + type: Transform + - uid: 163 + components: + - pos: -3.5,-2.5 + parent: 292 + type: Transform +- proto: CableHV + entities: + - uid: 79 + components: + - pos: 0.5,7.5 + parent: 292 + type: Transform + - uid: 80 + components: + - pos: 1.5,7.5 + parent: 292 + type: Transform + - enabled: True + type: AmbientSound + - uid: 81 + components: + - pos: 1.5,6.5 + parent: 292 + type: Transform + - enabled: True + type: AmbientSound + - uid: 82 + components: + - pos: -0.5,7.5 + parent: 292 + type: Transform + - uid: 83 + components: + - pos: -0.5,6.5 + parent: 292 + type: Transform + - uid: 85 + components: + - pos: -0.5,5.5 + parent: 292 + type: Transform + - uid: 86 + components: + - pos: -0.5,4.5 + parent: 292 + type: Transform + - uid: 87 + components: + - pos: -1.5,4.5 + parent: 292 + type: Transform + - uid: 88 + components: + - pos: -2.5,4.5 + parent: 292 + type: Transform + - uid: 89 + components: + - pos: -2.5,3.5 + parent: 292 + type: Transform + - uid: 90 + components: + - pos: -2.5,2.5 + parent: 292 + type: Transform + - uid: 91 + components: + - pos: -2.5,1.5 + parent: 292 + type: Transform + - uid: 92 + components: + - pos: -2.5,0.5 + parent: 292 + type: Transform + - uid: 93 + components: + - pos: -2.5,-0.5 + parent: 292 + type: Transform + - uid: 94 + components: + - pos: -2.5,-1.5 + parent: 292 + type: Transform + - uid: 95 + components: + - pos: -2.5,-2.5 + parent: 292 + type: Transform + - uid: 96 + components: + - pos: -1.5,-2.5 + parent: 292 + type: Transform + - uid: 97 + components: + - pos: -0.5,-2.5 + parent: 292 + type: Transform + - uid: 98 + components: + - pos: 0.5,-2.5 + parent: 292 + type: Transform + - uid: 99 + components: + - pos: 1.5,-2.5 + parent: 292 + type: Transform + - uid: 100 + components: + - pos: 1.5,-1.5 + parent: 292 + type: Transform + - uid: 101 + components: + - pos: 1.5,-0.5 + parent: 292 + type: Transform + - uid: 102 + components: + - pos: 1.5,0.5 + parent: 292 + type: Transform + - uid: 103 + components: + - pos: 1.5,1.5 + parent: 292 + type: Transform + - uid: 104 + components: + - pos: 1.5,2.5 + parent: 292 + type: Transform + - uid: 105 + components: + - pos: 1.5,3.5 + parent: 292 + type: Transform + - uid: 106 + components: + - pos: 1.5,4.5 + parent: 292 + type: Transform + - uid: 107 + components: + - pos: 0.5,4.5 + parent: 292 + type: Transform + - uid: 108 + components: + - pos: -1.5,-3.5 + parent: 292 + type: Transform + - uid: 109 + components: + - pos: -1.5,-4.5 + parent: 292 + type: Transform + - enabled: True + type: AmbientSound + - uid: 110 + components: + - pos: -1.5,-5.5 + parent: 292 + type: Transform + - enabled: True + type: AmbientSound + - uid: 111 + components: + - pos: 0.5,-5.5 + parent: 292 + type: Transform + - enabled: True + type: AmbientSound + - uid: 112 + components: + - pos: 0.5,-4.5 + parent: 292 + type: Transform + - enabled: True + type: AmbientSound + - uid: 113 + components: + - pos: 0.5,-3.5 + parent: 292 + type: Transform +- proto: CableMV + entities: + - uid: 117 + components: + - pos: 1.5,6.5 + parent: 292 + type: Transform + - enabled: True + type: AmbientSound + - uid: 118 + components: + - pos: 1.5,5.5 + parent: 292 + type: Transform + - uid: 119 + components: + - pos: 1.5,4.5 + parent: 292 + type: Transform + - uid: 120 + components: + - pos: 0.5,4.5 + parent: 292 + type: Transform + - uid: 121 + components: + - pos: -0.5,4.5 + parent: 292 + type: Transform + - uid: 122 + components: + - pos: -0.5,3.5 + parent: 292 + type: Transform + - enabled: True + type: AmbientSound +- proto: CableTerminal + entities: + - uid: 84 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,7.5 + parent: 292 + type: Transform +- proto: ChairPilotSeat + entities: + - uid: 223 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 292 + type: Transform + - uid: 224 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 292 + type: Transform + - uid: 225 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 292 + type: Transform + - uid: 226 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 292 + type: Transform + - uid: 227 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 292 + type: Transform + - uid: 228 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 292 + type: Transform + - uid: 229 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 292 + type: Transform + - uid: 230 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 292 + type: Transform + - uid: 231 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 292 + type: Transform + - uid: 232 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,0.5 + parent: 292 + type: Transform + - uid: 233 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 292 + type: Transform + - uid: 234 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,2.5 + parent: 292 + type: Transform + - uid: 235 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 292 + type: Transform + - uid: 236 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 292 + type: Transform + - uid: 237 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,1.5 + parent: 292 + type: Transform + - uid: 238 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 292 + type: Transform + - uid: 239 + components: + - pos: 1.5,5.5 + parent: 292 + type: Transform + - uid: 240 + components: + - pos: -2.5,5.5 + parent: 292 + type: Transform + - uid: 241 + components: + - rot: 3.141592653589793 rad + pos: -0.5,8.5 + parent: 292 + type: Transform +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 252 + components: + - pos: 0.5,5.5 + parent: 292 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 260 + components: + - pos: -2.5,-3.5 + parent: 292 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: ClosetFireFilled + entities: + - uid: 253 + components: + - pos: -1.5,5.5 + parent: 292 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 288 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-4.5 + parent: 292 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 289 + components: + - pos: -3.5,6.5 + parent: 292 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: ClosetWallFireFilledRandom + entities: + - uid: 286 + components: + - pos: 2.5,6.5 + parent: 292 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 287 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-4.5 + parent: 292 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: ClothingBackpack + entities: + - uid: 275 + components: + - pos: 2.5,5.5 + parent: 292 + type: Transform +- proto: ClothingMaskBreath + entities: + - uid: 272 + components: + - pos: 2.5,-3.5 + parent: 292 + type: Transform + - uid: 273 + components: + - pos: -3.5,-3.5 + parent: 292 + type: Transform +- proto: ComputerShuttle + entities: + - uid: 242 + components: + - pos: -0.5,9.5 + parent: 292 + type: Transform +- proto: CrowbarRed + entities: + - uid: 274 + components: + - pos: 0.5,-3.5 + parent: 292 + type: Transform +- proto: EmergencyOxygenTankFilled + entities: + - uid: 270 + components: + - pos: 2.5708976,-3.5851696 + parent: 292 + type: Transform + - uid: 271 + components: + - pos: -3.4291024,-3.5851696 + parent: 292 + type: Transform +- proto: ExtinguisherCabinetFilled + entities: + - uid: 277 + components: + - pos: -0.5,-4.5 + parent: 292 + type: Transform +- proto: GasPassiveGate + entities: + - uid: 184 + components: + - pos: -0.5,7.5 + parent: 292 + type: Transform +- proto: GasPipeBend + entities: + - uid: 182 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,8.5 + parent: 292 + type: Transform + - uid: 183 + components: + - pos: -0.5,8.5 + parent: 292 + type: Transform + - uid: 187 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,5.5 + parent: 292 + type: Transform + - uid: 188 + components: + - pos: 1.5,5.5 + parent: 292 + type: Transform + - uid: 189 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 292 + type: Transform + - uid: 190 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 292 + type: Transform +- proto: GasPipeFourway + entities: + - uid: 186 + components: + - pos: -0.5,5.5 + parent: 292 + type: Transform +- proto: GasPipeStraight + entities: + - uid: 185 + components: + - pos: -0.5,6.5 + parent: 292 + type: Transform + - uid: 192 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,5.5 + parent: 292 + type: Transform + - uid: 193 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,5.5 + parent: 292 + type: Transform + - uid: 194 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 292 + type: Transform + - uid: 195 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 292 + type: Transform + - uid: 196 + components: + - pos: 1.5,-2.5 + parent: 292 + type: Transform + - uid: 197 + components: + - pos: 1.5,-1.5 + parent: 292 + type: Transform + - uid: 198 + components: + - pos: 1.5,-0.5 + parent: 292 + type: Transform + - uid: 199 + components: + - pos: 1.5,0.5 + parent: 292 + type: Transform + - uid: 200 + components: + - pos: 1.5,1.5 + parent: 292 + type: Transform + - uid: 201 + components: + - pos: 1.5,2.5 + parent: 292 + type: Transform + - uid: 202 + components: + - pos: 1.5,3.5 + parent: 292 + type: Transform + - uid: 203 + components: + - pos: 1.5,4.5 + parent: 292 + type: Transform + - uid: 204 + components: + - pos: -2.5,-2.5 + parent: 292 + type: Transform + - uid: 205 + components: + - pos: -2.5,-1.5 + parent: 292 + type: Transform + - uid: 206 + components: + - pos: -2.5,-0.5 + parent: 292 + type: Transform + - uid: 207 + components: + - pos: -2.5,0.5 + parent: 292 + type: Transform + - uid: 208 + components: + - pos: -2.5,1.5 + parent: 292 + type: Transform + - uid: 209 + components: + - pos: -2.5,2.5 + parent: 292 + type: Transform + - uid: 210 + components: + - pos: -2.5,3.5 + parent: 292 + type: Transform + - uid: 211 + components: + - pos: -2.5,4.5 + parent: 292 + type: Transform +- proto: GasPipeTJunction + entities: + - uid: 191 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 292 + type: Transform +- proto: GasPort + entities: + - uid: 181 + components: + - rot: 3.141592653589793 rad + pos: -1.5,7.5 + parent: 292 + type: Transform +- proto: GasVentPump + entities: + - uid: 212 + components: + - pos: -0.5,-2.5 + parent: 292 + type: Transform + - enabled: False + type: AmbientSound + - uid: 213 + components: + - rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 292 + type: Transform + - enabled: False + type: AmbientSound +- proto: GeneratorUranium + entities: + - uid: 114 + components: + - pos: -1.5,-5.5 + parent: 292 + type: Transform + - uid: 115 + components: + - pos: 0.5,-5.5 + parent: 292 + type: Transform +- proto: GeneratorWallmountAPU + entities: + - uid: 78 + components: + - pos: 1.5,7.5 + parent: 292 + type: Transform +- proto: GravityGeneratorMini + entities: + - uid: 291 + components: + - pos: -2.5,-5.5 + parent: 292 + type: Transform +- proto: Grille + entities: + - uid: 44 + components: + - pos: 3.5,-0.5 + parent: 292 + type: Transform + - uid: 52 + components: + - pos: 3.5,0.5 + parent: 292 + type: Transform + - uid: 53 + components: + - pos: 3.5,1.5 + parent: 292 + type: Transform + - uid: 54 + components: + - pos: 3.5,2.5 + parent: 292 + type: Transform + - uid: 55 + components: + - pos: -4.5,-0.5 + parent: 292 + type: Transform + - uid: 56 + components: + - pos: -4.5,0.5 + parent: 292 + type: Transform + - uid: 57 + components: + - pos: -4.5,1.5 + parent: 292 + type: Transform + - uid: 58 + components: + - pos: -4.5,2.5 + parent: 292 + type: Transform + - uid: 59 + components: + - pos: -1.5,-4.5 + parent: 292 + type: Transform + - uid: 60 + components: + - pos: -2.5,-4.5 + parent: 292 + type: Transform + - uid: 61 + components: + - pos: 1.5,-4.5 + parent: 292 + type: Transform + - uid: 62 + components: + - pos: 0.5,-4.5 + parent: 292 + type: Transform + - uid: 63 + components: + - pos: 0.5,6.5 + parent: 292 + type: Transform + - uid: 64 + components: + - pos: -1.5,6.5 + parent: 292 + type: Transform + - uid: 65 + components: + - pos: -2.5,8.5 + parent: 292 + type: Transform + - uid: 66 + components: + - pos: -2.5,9.5 + parent: 292 + type: Transform + - uid: 67 + components: + - pos: -1.5,9.5 + parent: 292 + type: Transform + - uid: 68 + components: + - pos: -1.5,10.5 + parent: 292 + type: Transform + - uid: 69 + components: + - pos: -0.5,10.5 + parent: 292 + type: Transform + - uid: 70 + components: + - pos: 0.5,10.5 + parent: 292 + type: Transform + - uid: 71 + components: + - pos: 0.5,9.5 + parent: 292 + type: Transform + - uid: 72 + components: + - pos: 1.5,9.5 + parent: 292 + type: Transform + - uid: 73 + components: + - pos: 1.5,8.5 + parent: 292 + type: Transform +- proto: Gyroscope + entities: + - uid: 168 + components: + - pos: 1.5,-5.5 + parent: 292 + type: Transform +- proto: Intercom + entities: + - uid: 264 + components: + - pos: -0.5,-1.5 + parent: 292 + type: Transform +- proto: MaintenanceFluffSpawner + entities: + - uid: 284 + components: + - pos: 0.5,3.5 + parent: 292 + type: Transform + - uid: 285 + components: + - pos: -1.5,3.5 + parent: 292 + type: Transform +- proto: MedkitFilled + entities: + - uid: 266 + components: + - pos: -0.5,-3.5 + parent: 292 + type: Transform +- proto: NitrogenTankFilled + entities: + - uid: 268 + components: + - pos: -3.5,-3.5 + parent: 292 + type: Transform + - uid: 269 + components: + - pos: 2.5,-3.5 + parent: 292 + type: Transform +- proto: PosterLegitNanotrasenLogo + entities: + - uid: 290 + components: + - pos: -2.5,6.5 + parent: 292 + type: Transform +- proto: PottedPlantRandom + entities: + - uid: 254 + components: + - pos: 2.5,-1.5 + parent: 292 + type: Transform + - uid: 255 + components: + - pos: 2.5,3.5 + parent: 292 + type: Transform + - uid: 256 + components: + - pos: -3.5,3.5 + parent: 292 + type: Transform + - uid: 257 + components: + - pos: -3.5,-1.5 + parent: 292 + type: Transform +- proto: PowerCellRecharger + entities: + - uid: 265 + components: + - pos: 0.5,-3.5 + parent: 292 + type: Transform +- proto: Poweredlight + entities: + - uid: 279 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,5.5 + parent: 292 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 280 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,3.5 + parent: 292 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 281 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 292 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 282 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 292 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 283 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,7.5 + parent: 292 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: Rack + entities: + - uid: 262 + components: + - pos: 2.5,-3.5 + parent: 292 + type: Transform + - uid: 263 + components: + - pos: -3.5,-3.5 + parent: 292 + type: Transform +- proto: ShuttleWindow + entities: + - uid: 28 + components: + - pos: 3.5,-0.5 + parent: 292 + type: Transform + - uid: 29 + components: + - pos: 3.5,0.5 + parent: 292 + type: Transform + - uid: 30 + components: + - pos: 3.5,1.5 + parent: 292 + type: Transform + - uid: 31 + components: + - pos: 3.5,2.5 + parent: 292 + type: Transform + - uid: 32 + components: + - pos: -4.5,-0.5 + parent: 292 + type: Transform + - uid: 33 + components: + - pos: -4.5,0.5 + parent: 292 + type: Transform + - uid: 34 + components: + - pos: -4.5,1.5 + parent: 292 + type: Transform + - uid: 35 + components: + - pos: -4.5,2.5 + parent: 292 + type: Transform + - uid: 36 + components: + - pos: -1.5,-4.5 + parent: 292 + type: Transform + - uid: 37 + components: + - pos: -2.5,-4.5 + parent: 292 + type: Transform + - uid: 38 + components: + - pos: 0.5,-4.5 + parent: 292 + type: Transform + - uid: 39 + components: + - pos: 1.5,-4.5 + parent: 292 + type: Transform + - uid: 40 + components: + - pos: 0.5,6.5 + parent: 292 + type: Transform + - uid: 41 + components: + - pos: -1.5,6.5 + parent: 292 + type: Transform + - uid: 42 + components: + - pos: -2.5,8.5 + parent: 292 + type: Transform + - uid: 43 + components: + - pos: -1.5,9.5 + parent: 292 + type: Transform + - uid: 45 + components: + - pos: -2.5,9.5 + parent: 292 + type: Transform + - uid: 46 + components: + - pos: -1.5,10.5 + parent: 292 + type: Transform + - uid: 47 + components: + - pos: -0.5,10.5 + parent: 292 + type: Transform + - uid: 48 + components: + - pos: 0.5,10.5 + parent: 292 + type: Transform + - uid: 49 + components: + - pos: 0.5,9.5 + parent: 292 + type: Transform + - uid: 50 + components: + - pos: 1.5,9.5 + parent: 292 + type: Transform + - uid: 51 + components: + - pos: 1.5,8.5 + parent: 292 + type: Transform +- proto: SMESBasic + entities: + - uid: 76 + components: + - pos: 0.5,7.5 + parent: 292 + type: Transform +- proto: SpaceVillainArcadeFilled + entities: + - uid: 259 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 292 + type: Transform +- proto: SubstationWallBasic + entities: + - uid: 77 + components: + - pos: 1.5,6.5 + parent: 292 + type: Transform +- proto: TableReinforced + entities: + - uid: 243 + components: + - pos: 0.5,-3.5 + parent: 292 + type: Transform + - uid: 244 + components: + - pos: -1.5,8.5 + parent: 292 + type: Transform + - uid: 245 + components: + - pos: 0.5,8.5 + parent: 292 + type: Transform + - uid: 246 + components: + - pos: -0.5,-3.5 + parent: 292 + type: Transform + - uid: 247 + components: + - pos: -1.5,-3.5 + parent: 292 + type: Transform + - uid: 248 + components: + - pos: 0.5,3.5 + parent: 292 + type: Transform + - uid: 249 + components: + - pos: -1.5,3.5 + parent: 292 + type: Transform + - uid: 250 + components: + - pos: 2.5,5.5 + parent: 292 + type: Transform + - uid: 251 + components: + - pos: -3.5,5.5 + parent: 292 + type: Transform +- proto: Thruster + entities: + - uid: 169 + components: + - pos: 2.5,7.5 + parent: 292 + type: Transform + - uid: 170 + components: + - pos: -3.5,7.5 + parent: 292 + type: Transform + - uid: 171 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-6.5 + parent: 292 + type: Transform + - uid: 172 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-6.5 + parent: 292 + type: Transform + - uid: 173 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-6.5 + parent: 292 + type: Transform + - uid: 174 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 292 + type: Transform + - uid: 175 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 292 + type: Transform + - uid: 176 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 292 + type: Transform +- proto: ToolboxEmergencyFilled + entities: + - uid: 267 + components: + - pos: -1.5,-3.5 + parent: 292 + type: Transform + - uid: 276 + components: + - pos: -3.5,5.5 + parent: 292 + type: Transform +- proto: VendingMachineClothing + entities: + - uid: 261 + components: + - flags: SessionSpecific + type: MetaData + - pos: 1.5,-3.5 + parent: 292 + type: Transform +- proto: WallShuttle + entities: + - uid: 1 + components: + - pos: 3.5,-3.5 + parent: 292 + type: Transform + - uid: 2 + components: + - pos: 3.5,-1.5 + parent: 292 + type: Transform + - uid: 3 + components: + - pos: -4.5,-3.5 + parent: 292 + type: Transform + - uid: 4 + components: + - pos: -4.5,-1.5 + parent: 292 + type: Transform + - uid: 5 + components: + - pos: -4.5,3.5 + parent: 292 + type: Transform + - uid: 6 + components: + - pos: -4.5,5.5 + parent: 292 + type: Transform + - uid: 7 + components: + - pos: 3.5,3.5 + parent: 292 + type: Transform + - uid: 8 + components: + - pos: 3.5,5.5 + parent: 292 + type: Transform + - uid: 9 + components: + - pos: 3.5,6.5 + parent: 292 + type: Transform + - uid: 10 + components: + - pos: 2.5,6.5 + parent: 292 + type: Transform + - uid: 11 + components: + - pos: -4.5,6.5 + parent: 292 + type: Transform + - uid: 12 + components: + - pos: -3.5,6.5 + parent: 292 + type: Transform + - uid: 13 + components: + - pos: -2.5,6.5 + parent: 292 + type: Transform + - uid: 14 + components: + - pos: -2.5,7.5 + parent: 292 + type: Transform + - uid: 15 + components: + - pos: 1.5,6.5 + parent: 292 + type: Transform + - uid: 16 + components: + - pos: 1.5,7.5 + parent: 292 + type: Transform + - uid: 17 + components: + - pos: 3.5,-4.5 + parent: 292 + type: Transform + - uid: 18 + components: + - pos: 2.5,-4.5 + parent: 292 + type: Transform + - uid: 19 + components: + - pos: -4.5,-4.5 + parent: 292 + type: Transform + - uid: 20 + components: + - pos: -3.5,-4.5 + parent: 292 + type: Transform + - uid: 21 + components: + - pos: -0.5,-4.5 + parent: 292 + type: Transform + - uid: 22 + components: + - pos: 2.5,-5.5 + parent: 292 + type: Transform + - uid: 23 + components: + - pos: 3.5,-5.5 + parent: 292 + type: Transform + - uid: 24 + components: + - pos: -3.5,-5.5 + parent: 292 + type: Transform + - uid: 25 + components: + - pos: -4.5,-5.5 + parent: 292 + type: Transform + - uid: 26 + components: + - pos: -0.5,-6.5 + parent: 292 + type: Transform + - uid: 27 + components: + - pos: -0.5,-5.5 + parent: 292 + type: Transform + - uid: 74 + components: + - pos: -0.5,-1.5 + parent: 292 + type: Transform + - uid: 75 + components: + - pos: -0.5,3.5 + parent: 292 + type: Transform +- proto: WindowReinforcedDirectional + entities: + - uid: 215 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 292 + type: Transform + - uid: 216 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 292 + type: Transform + - uid: 217 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 292 + type: Transform + - uid: 218 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 292 + type: Transform + - uid: 219 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 292 + type: Transform + - uid: 220 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 292 + type: Transform + - uid: 221 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,0.5 + parent: 292 + type: Transform + - uid: 222 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 292 + type: Transform +... From d6043499931fa753069eab400f86f2be5faa7512 Mon Sep 17 00:00:00 2001 From: Emisse <99158783+Emisse@users.noreply.github.com> Date: Fri, 16 Jun 2023 02:27:59 -0600 Subject: [PATCH 275/474] bagel silly update (#17375) --- Resources/Maps/bagel.yml | 12787 ++----------------------------------- 1 file changed, 449 insertions(+), 12338 deletions(-) diff --git a/Resources/Maps/bagel.yml b/Resources/Maps/bagel.yml index b2a2ae46da..2d168e635e 100644 --- a/Resources/Maps/bagel.yml +++ b/Resources/Maps/bagel.yml @@ -124,7 +124,7 @@ entities: tiles: XwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABPAAAAXwAAAE8AAABfAAAAXwAAAFwAAAJcAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABcAAADXAAAAFwAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAE8AAABfAAAATwAAAF8AAABfAAAAXwAAAFwAAANcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABPAAAAXwAAAE8AAABfAAAAXAAAA1wAAABcAAACXAAAAQAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAATwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAC8AAAAvAAAALwAAAC8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAEgAAABNAAACTQAAAE0AAAIvAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAALwAAAC8AAABNAAADLwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUAAAAF8AAABfAAAASAAAAF8AAABfAAAATQAAAV8AAABfAAAATwAAAF8AAAA5AAAAOQAAADkAAAFfAAAAUgAAAlIAAAFSAAABXwAAAF8AAAAvAAAATQAAAU0AAAFNAAABXwAAAF8AAABfAAAAXwAAAFAAAABfAAAAXwAAAFIAAANbAAAAUgAAAF8AAABfAAAATQAAAE0AAAEvAAAALwAAAF8AAABSAAAAUgAAA1IAAAJSAAABUgAAAF8AAABSAAADWwAAAFIAAABSAAACUgAAAg== 2,-2: ind: 2,-2 - tiles: LwAAAE0AAAMvAAAALwAAAF8AAABSAAADVQAAAVoAAANVAAABUgAAAlIAAABSAAACWwAAAVIAAABSAAAAUgAAAy8AAABNAAACLwAAAC8AAABfAAAAUgAAAVUAAAFaAAADVQAAAlIAAANfAAAAUgAAA1sAAANSAAADUgAAA1IAAAEvAAAATQAAAU0AAANNAAAARQAAAlIAAABZAAADVQAAA1kAAABSAAADUgAAA1IAAABbAAABUgAAAFIAAANXAAAATQAAA00AAAIvAAAALwAAAF8AAABSAAACVQAAAVoAAAJVAAABUgAAA18AAABSAAABWwAAAlIAAANSAAACVwAAAE0AAAFNAAAALwAAAC8AAABfAAAAUgAAAFUAAABaAAADVQAAAFIAAAJSAAAAUgAAAFsAAABSAAAAUgAAA1cAAAFNAAAALwAAAC8AAAAvAAAAXwAAAFIAAANSAAAAUgAAAVIAAAJSAAACXwAAAFIAAAJSAAAAUgAAAFIAAAFSAAABLwAAACkAAAApAAAAKQAAAF8AAABfAAAAUgAAAlIAAAJfAAAAXwAAAF8AAABfAAAAUgAAAF8AAABSAAADUgAAAUUAAABFAAADRQAAAEUAAAJfAAAAUgAAA1IAAAJSAAAAUgAAAlIAAABSAAAAUgAAAlIAAAFSAAACXwAAAF8AAABFAAADRQAAA0UAAABFAAAAUgAAAFIAAANbAAADWwAAA1sAAAFSAAABUgAAAFIAAANbAAACUgAAAF8AAABSAAADRQAAAUUAAABFAAABRQAAAV8AAABSAAACUgAAA1IAAAJSAAABUgAAAF8AAABSAAACWwAAAFIAAAJfAAAAUgAAA18AAABSAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAA1sAAAFSAAAAUgAAAFIAAAFSAAABUgAAA1IAAAJSAAABUgAAA1IAAANSAAADWwAAA1IAAAJSAAAAUgAAAFIAAANbAAAAUgAAAF8AAABSAAADUgAAAVcAAAFXAAACUgAAAF8AAABSAAACUgAAAFsAAAFSAAABUgAAAl8AAABSAAAAWwAAAFIAAAJfAAAAXwAAAFIAAANXAAAAVwAAAlIAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAAVsAAAJSAAABUgAAAlIAAABSAAADVwAAAlcAAANSAAACWwAAAVIAAABSAAAAUgAAAlIAAANSAAADWwAAAVIAAAJbAAACUgAAAFIAAAJSAAADUgAAAVIAAABSAAAAUgAAAFsAAANSAAABUgAAA1IAAABSAAABUgAAAFsAAAJSAAACUgAAAVIAAAFSAAABUgAAAA== + tiles: LwAAAE0AAAMvAAAALwAAAF8AAABSAAADVQAAAVoAAANVAAABUgAAAlIAAABSAAACWwAAAVIAAABSAAAAUgAAAy8AAABNAAACLwAAAC8AAABfAAAAUgAAAVUAAAFaAAADVQAAAlIAAANfAAAAUgAAA1sAAANSAAADUgAAA1IAAAEvAAAATQAAAU0AAANNAAAARQAAAlIAAABZAAADVQAAA1kAAABSAAADUgAAA1IAAABbAAABUgAAAFIAAANXAAAATQAAA00AAAIvAAAALwAAAF8AAABSAAACVQAAAVoAAAJVAAABUgAAA18AAABSAAABWwAAAlIAAANSAAACVwAAAE0AAAFNAAAALwAAAC8AAABfAAAAUgAAAFUAAABaAAADVQAAAFIAAAJSAAAAUgAAAFsAAABSAAAAUgAAA1cAAAFNAAAALwAAAC8AAAAvAAAAXwAAAFIAAANSAAAAUgAAAVIAAAJSAAACXwAAAFIAAAJSAAAAUgAAAFIAAAFSAAABLwAAACkAAAApAAAAKQAAAF8AAABfAAAAUgAAAlIAAAJfAAAAXwAAAF8AAABfAAAAUgAAAF8AAABSAAADUgAAAUUAAABFAAADRQAAAEUAAAJfAAAAUgAAA1IAAAJSAAAAUgAAAlIAAABfAAAAUgAAAlIAAAFSAAACXwAAAF8AAABFAAADRQAAA0UAAABFAAAAUgAAAFIAAANbAAADWwAAA1sAAAFSAAABUgAAAFIAAANbAAACUgAAAF8AAABSAAADRQAAAUUAAABFAAABRQAAAV8AAABSAAACUgAAA1IAAAJSAAABUgAAAF8AAABSAAACWwAAAFIAAAJfAAAAUgAAA18AAABSAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAA1sAAAFSAAAAUgAAAFIAAAFSAAABUgAAA1IAAAJSAAABUgAAA1IAAANSAAADWwAAA1IAAAJSAAAAUgAAAFIAAANbAAAAUgAAAF8AAABSAAADUgAAAVcAAAFXAAACUgAAAF8AAABSAAACUgAAAFsAAAFSAAABUgAAAl8AAABSAAAAWwAAAFIAAAJfAAAAXwAAAFIAAANXAAAAVwAAAlIAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAAVsAAAJSAAABUgAAAlIAAABSAAADVwAAAlcAAANSAAACWwAAAVIAAABSAAAAUgAAAlIAAANSAAADWwAAAVIAAAJbAAACUgAAAFIAAAJSAAADUgAAAVIAAABSAAAAUgAAAFsAAANSAAABUgAAA1IAAABSAAABUgAAAFsAAAJSAAACUgAAAVIAAAFSAAABUgAAAA== 3,-3: ind: 3,-3 tiles: XwAAAFwAAAJcAAADXAAAA1wAAABcAAABXwAAAFwAAABfAAAASAAAAF8AAABfAAAAXwAAAAAAAABeAAAAXgAAAFwAAANcAAAAXwAAAFwAAAFcAAAAXAAAATIAAABcAAACXAAAAVwAAAJIAAAASAAAAF8AAAAAAAAAXgAAAAAAAABcAAAAXAAAAl8AAABcAAABXAAAAF8AAAAyAAAAMgAAADIAAABcAAADSAAAAF8AAABfAAAAAAAAAF4AAABeAAAAXAAAAlwAAANcAAABXAAAAFwAAAFfAAAAMgAAADIAAABfAAAAXAAAAkgAAABfAAAAXwAAAAAAAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAATwAAAE8AAABPAAAAXwAAAEUAAANIAAAAXwAAAEUAAANIAAAASAAAAEgAAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkgAAABIAAAARQAAAF8AAABFAAACXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABIAAAARQAAA0gAAABIAAAARQAAAkgAAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAARQAAAl8AAABfAAAASAAAAEUAAABIAAAASAAAAF8AAABIAAAAXwAAAF8AAABPAAAAXwAAAAAAAABeAAAAXgAAAF8AAABfAAAASAAAAEgAAABIAAAARQAAAF8AAABfAAAASAAAAF8AAABfAAAATwAAAF8AAAAAAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF4AAABeAAAAUgAAAVIAAABSAAAAUgAAAVIAAAJfAAAAXgAAAF4AAABfAAAATwAAAF8AAABPAAAAXwAAAAAAAABeAAAAXgAAAA== @@ -543,7 +543,7 @@ entities: color: '#52B4E996' id: BotGreyscale decals: - 3515: 49,-15 + 3513: 49,-15 - node: color: '#DE3A3AFF' id: BotLeft @@ -570,7 +570,7 @@ entities: color: '#52B4E996' id: BotLeftGreyscale decals: - 3517: 49,-13 + 3515: 49,-13 - node: color: '#FFFFFFFF' id: BotLeftGreyscale @@ -602,7 +602,7 @@ entities: color: '#52B4E996' id: BotRightGreyscale decals: - 3516: 47,-13 + 3514: 47,-13 - node: color: '#FF8FC9FF' id: BotRightGreyscale @@ -651,17 +651,17 @@ entities: 1390: -53,-2 1391: -55,-2 1392: -57,-2 - 3518: -49,-7 - 3519: -49,-5 - 3520: -49,-3 - 3521: -49,-1 - 3522: -49,3 - 3523: -51,3 - 3524: -53,3 - 3525: -55,3 - 3526: -47,12 - 3527: -49,12 - 3528: -51,12 + 3516: -49,-7 + 3517: -49,-5 + 3518: -49,-3 + 3519: -49,-1 + 3520: -49,3 + 3521: -51,3 + 3522: -53,3 + 3523: -55,3 + 3524: -47,12 + 3525: -49,12 + 3526: -51,12 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe @@ -796,7 +796,7 @@ entities: 2042: -34,-10 2201: -20,-5 2202: -20,-5 - 3508: 49,-13 + 3506: 49,-13 - node: color: '#9FED5896' id: BrickTileSteelCornerNe @@ -828,7 +828,7 @@ entities: 2041: -35,-10 2203: -19,-5 2204: -19,-5 - 3507: 47,-13 + 3505: 47,-13 - node: color: '#9FED5896' id: BrickTileSteelCornerNw @@ -859,7 +859,7 @@ entities: 2044: -34,-11 2207: -20,-4 2208: -20,-4 - 3509: 49,-15 + 3507: 49,-15 - node: color: '#9FED5896' id: BrickTileSteelCornerSe @@ -890,7 +890,7 @@ entities: 2043: -35,-11 2205: -19,-4 2206: -19,-4 - 3506: 47,-15 + 3504: 47,-15 - node: color: '#9FED5896' id: BrickTileSteelCornerSw @@ -948,7 +948,7 @@ entities: color: '#52B4E996' id: BrickTileSteelLineE decals: - 3510: 49,-14 + 3508: 49,-14 - node: color: '#9FED5896' id: BrickTileSteelLineE @@ -983,7 +983,7 @@ entities: color: '#52B4E996' id: BrickTileSteelLineN decals: - 3511: 48,-13 + 3509: 48,-13 - node: color: '#9FED5896' id: BrickTileSteelLineN @@ -1026,7 +1026,7 @@ entities: color: '#52B4E996' id: BrickTileSteelLineS decals: - 3512: 48,-15 + 3510: 48,-15 - node: color: '#D381C996' id: BrickTileSteelLineS @@ -1174,10 +1174,10 @@ entities: decals: 2045: -34,-13 - node: - color: '#EFB34196' + color: '#EFD54193' id: BrickTileWhiteCornerNe decals: - 2701: 24,21 + 3538: 24,21 - node: color: '#EFD54196' id: BrickTileWhiteCornerNe @@ -1228,15 +1228,15 @@ entities: decals: 2046: -35,-13 - node: - color: '#EFB34196' + color: '#EFCC4196' id: BrickTileWhiteCornerNw decals: - 2700: 19,21 + 2310: -13,32 - node: - color: '#EFCC4196' + color: '#EFD54193' id: BrickTileWhiteCornerNw decals: - 2310: -13,32 + 3537: 19,21 - node: color: '#EFD54196' id: BrickTileWhiteCornerNw @@ -1278,10 +1278,10 @@ entities: decals: 2047: -34,-14 - node: - color: '#EFB34196' + color: '#EFD54193' id: BrickTileWhiteCornerSe decals: - 2702: 24,17 + 3539: 24,17 - node: color: '#EFD54196' id: BrickTileWhiteCornerSe @@ -1319,17 +1319,17 @@ entities: id: BrickTileWhiteCornerSw decals: 2048: -35,-14 - - node: - color: '#EFB34196' - id: BrickTileWhiteCornerSw - decals: - 2703: 19,17 - node: color: '#EFCC4196' id: BrickTileWhiteCornerSw decals: 2306: -13,27 2326: -5,23 + - node: + color: '#EFD54193' + id: BrickTileWhiteCornerSw + decals: + 3540: 19,17 - node: color: '#EFD54196' id: BrickTileWhiteCornerSw @@ -1455,19 +1455,19 @@ entities: 1833: -22,-6 1834: -22,-5 1873: -24,-20 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineE - decals: - 2713: 24,20 - 2714: 24,19 - 2715: 24,18 - node: color: '#EFCC4196' id: BrickTileWhiteLineE decals: 2302: -3,24 2303: -3,25 + - node: + color: '#EFD54193' + id: BrickTileWhiteLineE + decals: + 3541: 24,18 + 3542: 24,19 + 3543: 24,20 - node: color: '#EFD54196' id: BrickTileWhiteLineE @@ -1563,14 +1563,6 @@ entities: decals: 3286: 22,5 3287: 24,5 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineN - decals: - 2709: 20,21 - 2710: 21,21 - 2711: 22,21 - 2712: 23,21 - node: color: '#EFCC4196' id: BrickTileWhiteLineN @@ -1581,6 +1573,14 @@ entities: 2300: -1,23 2301: -2,23 2311: -11,32 + - node: + color: '#EFD54193' + id: BrickTileWhiteLineN + decals: + 3549: 20,21 + 3550: 21,21 + 3551: 22,21 + 3552: 23,21 - node: color: '#EFD54196' id: BrickTileWhiteLineN @@ -1683,13 +1683,6 @@ entities: 2023: -27,-17 2024: -29,-17 2025: -30,-17 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineS - decals: - 2704: 21,17 - 2705: 20,17 - 2706: 22,17 - node: color: '#EFCC4196' id: BrickTileWhiteLineS @@ -1709,6 +1702,13 @@ entities: 2425: 0,27 2426: -1,27 2427: -2,27 + - node: + color: '#EFD54193' + id: BrickTileWhiteLineS + decals: + 3544: 22,17 + 3545: 21,17 + 3546: 20,17 - node: color: '#EFD54196' id: BrickTileWhiteLineS @@ -1740,6 +1740,7 @@ entities: 3047: 43,-20 3048: 43,-22 3049: 43,-23 + 3527: 43,-25 - node: color: '#9FED5896' id: BrickTileWhiteLineW @@ -1772,12 +1773,6 @@ entities: 1897: -17,-19 2017: -21,-20 2018: -21,-22 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineW - decals: - 2707: 19,19 - 2708: 19,20 - node: color: '#EFCC4196' id: BrickTileWhiteLineW @@ -1789,6 +1784,12 @@ entities: 2324: -5,25 2325: -5,24 2327: -4,22 + - node: + color: '#EFD54193' + id: BrickTileWhiteLineW + decals: + 3547: 19,19 + 3548: 19,20 - node: color: '#EFD54196' id: BrickTileWhiteLineW @@ -3040,7 +3041,6 @@ entities: 3055: 46,-17 3056: 46,-19 3066: 46,-18 - 3503: 42,-25 - node: color: '#A4610696' id: FullTileOverlayGreyscale @@ -3119,11 +3119,6 @@ entities: 344: -28,-18 358: -22,-21 359: -22,-19 - - node: - color: '#EFB34196' - id: FullTileOverlayGreyscale - decals: - 157: 5,16 - node: color: '#EFCC4196' id: FullTileOverlayGreyscale @@ -3140,6 +3135,13 @@ entities: 2380: 0,15 2381: -1,15 2382: 0,12 + - node: + color: '#EFD54193' + id: FullTileOverlayGreyscale + decals: + 3531: 8,14 + 3532: 5,16 + 3553: -14,28 - node: color: '#EFD84196' id: FullTileOverlayGreyscale @@ -4522,7 +4524,11 @@ entities: id: QuarterTileOverlayGreyscale270 decals: 2362: 9,15 - 2370: 6,13 + - node: + color: '#EFD54193' + id: QuarterTileOverlayGreyscale270 + decals: + 3530: 6,13 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale90 @@ -5220,7 +5226,7 @@ entities: color: '#52B4E996' id: WarnFullGreyscale decals: - 3514: 46,-14 + 3512: 46,-14 - node: color: '#D381C996' id: WarnFullGreyscale @@ -5231,6 +5237,16 @@ entities: id: WarnFullGreyscale decals: 3284: 23,6 + 3533: 5,16 + 3535: 18,18 + 3554: -14,28 + 3555: -24,30 + 3556: -24,31 + 3557: -22,27 + 3558: -32,30 + 3559: -32,31 + 3560: -22,33 + 3561: -12,33 - node: color: '#FFFFFFFF' id: WarnLineE @@ -5322,6 +5338,7 @@ entities: 1970: -25,31 2443: 6,19 2524: 3,-6 + 3534: 17,18 - node: color: '#D381C996' id: WarnLineGreyscaleN @@ -5402,8 +5419,7 @@ entities: decals: 3060: 43,-24 3061: 43,-21 - 3502: 43,-25 - 3513: 47,-14 + 3511: 47,-14 - node: color: '#9FED5896' id: WarnLineGreyscaleW @@ -6866,7 +6882,8 @@ entities: -9,3: 0: 65535 14,-5: - 0: 65535 + 0: 65279 + 2: 256 4,-13: 0: 65535 -8,-10: @@ -7179,7 +7196,7 @@ entities: 0: 65535 -8,11: 0: 64719 - 2: 816 + 3: 816 -7,8: 0: 65535 -7,9: @@ -7212,15 +7229,15 @@ entities: 0: 65535 -12,10: 0: 62451 - 2: 3072 - 3: 12 + 3: 3072 + 4: 12 -11,10: - 2: 256 + 3: 256 0: 65278 - 3: 1 + 4: 1 -11,11: 0: 52478 - 2: 1 + 3: 1 -10,10: 0: 65535 -10,8: @@ -7237,7 +7254,7 @@ entities: 0: 65535 -9,11: 0: 63359 - 2: 2176 + 3: 2176 -8,12: 0: 48063 -7,12: @@ -7494,9 +7511,9 @@ entities: 0: 65535 -7,14: 0: 8191 - 2: 57344 + 3: 57344 -7,15: - 2: 238 + 3: 238 0: 65297 -6,12: 0: 65535 @@ -7811,7 +7828,7 @@ entities: 17,-8: 0: 29457 17,-7: - 3: 1 + 4: 1 0: 4990 17,-6: 0: 4593 @@ -7939,14 +7956,14 @@ entities: 0: 35771 -12,8: 0: 62451 - 4: 12 - 5: 3072 + 5: 12 + 6: 3072 -12,9: 0: 62451 - 2: 3084 + 3: 3084 -12,11: 0: 8947 - 2: 12 + 3: 12 -12,12: 0: 8751 -12,13: @@ -8140,11 +8157,11 @@ entities: -13,7: 0: 39327 -11,8: - 4: 1 + 5: 1 0: 65278 - 5: 256 + 6: 256 -11,9: - 2: 257 + 3: 257 0: 65278 1,12: 0: 63897 @@ -8166,8 +8183,8 @@ entities: 0: 65497 -13,12: 0: 53199 - 5: 48 - 4: 12288 + 6: 48 + 5: 12288 -13,13: 0: 61727 -18,4: @@ -8660,8 +8677,8 @@ entities: 0: 255 -14,12: 0: 32639 - 5: 128 - 4: 32768 + 6: 128 + 5: 32768 -14,13: 0: 31 -17,12: @@ -8707,6 +8724,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14993 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -8775,6 +8807,7 @@ entities: type: SpreaderGrid - type: RadiationGridResistance - type: GasTileOverlay + - type: GridPathfinding - uid: 943 components: - type: MetaData @@ -8786,6 +8819,8 @@ entities: - parallax: BagelStation type: Parallax - type: LoadedMap + - type: GridTree + - type: MovedGrids - uid: 7536 components: - name: Syndi Puddle CS108 @@ -9031,6 +9066,7 @@ entities: type: GridAtmosphere - type: GasTileOverlay - type: RadiationGridResistance + - type: GridPathfinding - proto: AcousticGuitarInstrument entities: - uid: 2133 @@ -12265,11 +12301,6 @@ entities: - pos: 46.5,-13.5 parent: 60 type: Transform - - uid: 944 - components: - - pos: 42.5,-24.5 - parent: 60 - type: Transform - uid: 3088 components: - name: cloning @@ -15655,8 +15686,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27 components: - pos: -66.5,12.5 @@ -15664,92 +15693,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28 components: - pos: -65.5,7.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 70 components: - pos: 1.5,-77.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 497 components: - pos: -65.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 500 components: - pos: -11.5,2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 551 components: - pos: -10.5,2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 557 components: - pos: -7.5,5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 561 components: - pos: -8.5,2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 570 components: - pos: -10.5,5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 630 components: - pos: -33.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 643 components: - pos: -9.5,5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 644 components: - pos: -11.5,5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 778 components: - pos: -32.5,-15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 781 components: - pos: -32.5,-14.5 @@ -15757,8 +15760,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 873 components: - pos: -60.5,12.5 @@ -15766,8 +15767,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 940 components: - pos: -65.5,12.5 @@ -15775,8 +15774,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1167 components: - pos: -65.5,10.5 @@ -15784,8 +15781,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1200 components: - pos: -63.5,12.5 @@ -15793,8 +15788,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1230 components: - pos: -59.5,-20.5 @@ -15802,8 +15795,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1252 components: - pos: -56.5,-13.5 @@ -15811,8 +15802,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1342 components: - pos: -61.5,-22.5 @@ -15820,8 +15809,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1344 components: - pos: -58.5,-18.5 @@ -15829,8 +15816,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1356 components: - pos: -56.5,-18.5 @@ -15838,8 +15823,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1358 components: - pos: -55.5,-18.5 @@ -15847,8 +15830,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1360 components: - pos: -57.5,-18.5 @@ -15856,8 +15837,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1365 components: - pos: -58.5,-13.5 @@ -15865,8 +15844,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1375 components: - pos: -54.5,-18.5 @@ -15874,15 +15851,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1555 components: - pos: -25.5,-20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1560 components: - pos: -27.5,-21.5 @@ -15890,8 +15863,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1628 components: - pos: -65.5,-18.5 @@ -15899,15 +15870,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1654 components: - pos: -2.5,-70.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1671 components: - pos: -22.5,-33.5 @@ -15915,8 +15882,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1675 components: - pos: -20.5,-33.5 @@ -15924,29 +15889,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1716 components: - pos: 1.5,-6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1762 components: - pos: -33.5,-15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1763 components: - pos: 51.5,-25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1807 components: - pos: -57.5,-22.5 @@ -15954,15 +15911,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1862 components: - pos: -33.5,-18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1891 components: - pos: 52.5,-24.5 @@ -15970,8 +15923,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2019 components: - pos: -21.5,-33.5 @@ -15979,15 +15930,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2035 components: - pos: -23.5,-29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 2119 components: - pos: -25.5,-21.5 @@ -15995,8 +15942,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2572 components: - pos: -61.5,-18.5 @@ -16004,8 +15949,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2602 components: - pos: -33.5,-21.5 @@ -16013,8 +15956,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2606 components: - pos: -60.5,-16.5 @@ -16022,8 +15963,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2731 components: - pos: 39.5,-44.5 @@ -16031,8 +15970,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3133 components: - pos: -62.5,-13.5 @@ -16040,8 +15977,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3139 components: - pos: -58.5,-22.5 @@ -16049,8 +15984,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3246 components: - pos: -60.5,-22.5 @@ -16058,8 +15991,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3348 components: - pos: -64.5,7.5 @@ -16067,8 +15998,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3349 components: - pos: -65.5,11.5 @@ -16076,8 +16005,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3350 components: - pos: -62.5,12.5 @@ -16085,8 +16012,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3357 components: - pos: -64.5,12.5 @@ -16094,8 +16019,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3358 components: - pos: -65.5,9.5 @@ -16103,8 +16026,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3377 components: - pos: -66.5,-18.5 @@ -16112,8 +16033,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3384 components: - pos: -63.5,-18.5 @@ -16121,8 +16040,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3397 components: - pos: -68.5,-18.5 @@ -16130,8 +16047,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3403 components: - pos: -59.5,-18.5 @@ -16139,8 +16054,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3405 components: - pos: -59.5,-23.5 @@ -16148,8 +16061,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3416 components: - pos: -59.5,-19.5 @@ -16157,8 +16068,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3419 components: - pos: -65.5,6.5 @@ -16166,29 +16075,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3468 components: - pos: 52.5,-36.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 3506 components: - pos: 55.5,-36.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 3534 components: - pos: 52.5,-35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 3539 components: - pos: 49.5,-37.5 @@ -16196,15 +16097,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3547 components: - pos: 50.5,-37.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 3663 components: - pos: 9.5,-46.5 @@ -16212,8 +16109,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3686 components: - pos: 4.5,-33.5 @@ -16221,8 +16116,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3721 components: - pos: 45.5,-41.5 @@ -16230,22 +16123,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3747 components: - pos: 38.5,-7.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 3774 components: - pos: 5.5,-37.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 3865 components: - pos: -18.5,-37.5 @@ -16253,8 +16140,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4221 components: - pos: -65.5,-0.5 @@ -16262,8 +16147,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4267 components: - pos: -52.5,-14.5 @@ -16271,8 +16154,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4275 components: - pos: -52.5,-13.5 @@ -16280,8 +16161,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4327 components: - pos: -52.5,-22.5 @@ -16289,8 +16168,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4374 components: - pos: -66.5,0.5 @@ -16298,8 +16175,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4381 components: - pos: -66.5,-0.5 @@ -16307,8 +16182,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4445 components: - pos: -66.5,1.5 @@ -16316,8 +16189,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4528 components: - pos: 55.5,-35.5 @@ -16325,127 +16196,91 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4632 components: - pos: 6.5,-37.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4665 components: - pos: 4.5,-35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4792 components: - pos: -0.5,-77.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4846 components: - pos: 2.5,-63.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4847 components: - pos: 3.5,-63.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4848 components: - pos: 3.5,-64.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4849 components: - pos: 0.5,-62.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4850 components: - pos: 1.5,-62.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4851 components: - pos: 2.5,-62.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4852 components: - pos: 3.5,-68.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4853 components: - pos: 3.5,-69.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4854 components: - pos: 3.5,-70.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4855 components: - pos: 3.5,-65.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4856 components: - pos: 3.5,-66.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4857 components: - pos: 3.5,-67.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4858 components: - pos: 3.5,-71.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4859 components: - pos: 3.5,-72.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4887 components: - pos: -4.5,-63.5 @@ -16453,22 +16288,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4888 components: - pos: 2.5,-72.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4891 components: - pos: -2.5,-72.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4892 components: - pos: 0.5,-78.5 @@ -16476,57 +16305,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4894 components: - pos: 9.5,-54.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4895 components: - pos: -2.5,-68.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4896 components: - pos: 8.5,-54.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4904 components: - pos: 7.5,-54.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4905 components: - pos: 5.5,-54.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4906 components: - pos: -1.5,-60.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4907 components: - pos: 6.5,-53.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4940 components: - pos: 4.5,-70.5 @@ -16534,8 +16347,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4941 components: - pos: -4.5,-70.5 @@ -16543,8 +16354,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4942 components: - pos: -3.5,-70.5 @@ -16552,127 +16361,91 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4950 components: - pos: -1.5,-61.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4951 components: - pos: 6.5,-54.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4962 components: - pos: 0.5,-55.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4963 components: - pos: 0.5,-56.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4964 components: - pos: 0.5,-57.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5004 components: - pos: -2.5,-66.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5005 components: - pos: -8.5,-54.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5006 components: - pos: -0.5,-58.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5007 components: - pos: 1.5,-58.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5011 components: - pos: 4.5,-34.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5015 components: - pos: -1.5,-62.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5016 components: - pos: -2.5,-63.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5017 components: - pos: -1.5,-63.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5023 components: - pos: 4.5,-36.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5033 components: - pos: -61.5,40.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5034 components: - pos: -60.5,40.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5067 components: - pos: 0.5,-77.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5068 components: - pos: 4.5,-63.5 @@ -16680,8 +16453,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5069 components: - pos: 5.5,-63.5 @@ -16689,15 +16460,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5070 components: - pos: 2.5,-61.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5071 components: - pos: -1.5,-74.5 @@ -16705,8 +16472,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5072 components: - pos: -3.5,-63.5 @@ -16714,22 +16479,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5074 components: - pos: 1.5,-76.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5075 components: - pos: 2.5,-76.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5078 components: - pos: -59.5,40.5 @@ -16737,22 +16496,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5082 components: - pos: -2.5,-64.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5083 components: - pos: 0.5,-58.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5084 components: - pos: 5.5,-70.5 @@ -16760,15 +16513,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5094 components: - pos: -1.5,-72.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5097 components: - pos: 10.5,-52.5 @@ -16776,29 +16525,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5100 components: - pos: -1.5,-75.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5101 components: - pos: -1.5,-76.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5102 components: - pos: -0.5,-76.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5194 components: - pos: -15.5,-28.5 @@ -16806,8 +16547,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5195 components: - pos: 0.5,-79.5 @@ -16815,8 +16554,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5214 components: - pos: -15.5,-30.5 @@ -16824,8 +16561,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5218 components: - pos: -15.5,-31.5 @@ -16833,92 +16568,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5219 components: - pos: -27.5,-20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5233 components: - pos: 33.5,-10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5278 components: - pos: 40.5,-7.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5325 components: - pos: -71.5,18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5327 components: - pos: -23.5,-30.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5328 components: - pos: -26.5,-28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5382 components: - pos: 10.5,6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5395 components: - pos: 9.5,5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5397 components: - pos: 9.5,6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5398 components: - pos: 8.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5399 components: - pos: 8.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5400 components: - pos: 8.5,5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5495 components: - pos: -69.5,-18.5 @@ -16926,8 +16635,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5665 components: - pos: -22.5,-54.5 @@ -16935,8 +16642,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5667 components: - pos: -21.5,-54.5 @@ -16944,8 +16649,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5668 components: - pos: -20.5,-54.5 @@ -16953,50 +16656,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5838 components: - pos: -15.5,-29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5873 components: - pos: -7.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 6086 components: - pos: 52.5,-25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 6216 components: - pos: -16.5,-54.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 6428 components: - pos: -25.5,-30.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 6430 components: - pos: -24.5,-30.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 6591 components: - pos: -57.5,-13.5 @@ -17004,8 +16693,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6669 components: - pos: -59.5,-21.5 @@ -17013,29 +16700,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6741 components: - pos: -2.5,-53.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 6742 components: - pos: -6.5,-54.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 6743 components: - pos: -5.5,-54.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 6744 components: - pos: -2.5,-52.5 @@ -17043,43 +16722,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6745 components: - pos: -9.5,-54.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 6747 components: - pos: 10.5,-53.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 6748 components: - pos: 10.5,-54.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 6749 components: - pos: 10.5,-55.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 6750 components: - pos: -7.5,-54.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 6858 components: - pos: -52.5,-17.5 @@ -17087,8 +16754,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6880 components: - pos: -52.5,-16.5 @@ -17096,15 +16761,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6921 components: - pos: 14.5,5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 6947 components: - pos: 41.5,-41.5 @@ -17112,8 +16773,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6948 components: - pos: 42.5,-46.5 @@ -17121,8 +16780,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6949 components: - pos: 41.5,-47.5 @@ -17130,8 +16787,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6952 components: - pos: -64.5,-0.5 @@ -17139,8 +16794,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6963 components: - pos: -63.5,-0.5 @@ -17148,8 +16801,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6964 components: - pos: -62.5,-0.5 @@ -17157,8 +16808,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7010 components: - pos: -34.5,-32.5 @@ -17166,15 +16815,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7062 components: - pos: 14.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 7117 components: - pos: -56.5,-17.5 @@ -17182,85 +16827,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7366 components: - pos: -14.5,-54.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 7369 components: - pos: -18.5,-54.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 7370 components: - pos: -19.5,-54.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 7371 components: - pos: -17.5,-54.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 7372 components: - pos: -15.5,-53.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 7373 components: - pos: -15.5,-54.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 7374 components: - pos: -15.5,-55.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 7378 components: - pos: -13.5,-54.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 7379 components: - pos: -12.5,-54.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 7380 components: - pos: -11.5,-54.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 7381 components: - pos: -10.5,-54.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 7388 components: - pos: -15.5,-52.5 @@ -17268,71 +16889,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7401 components: - pos: -2.5,-54.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 7402 components: - pos: -2.5,-55.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 7403 components: - pos: -1.5,-54.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 7404 components: - pos: -0.5,-54.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 7405 components: - pos: 2.5,-54.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 7406 components: - pos: 3.5,-54.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 7407 components: - pos: 0.5,-54.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 7408 components: - pos: 1.5,-54.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 7502 components: - pos: -2.5,-69.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 7503 components: - pos: -1.5,-59.5 @@ -17340,36 +16941,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7515 components: - pos: -2.5,-65.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 7516 components: - pos: -2.5,-67.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 7517 components: - pos: -0.5,-62.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 7518 components: - pos: -2.5,-71.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 7595 components: - pos: -60.5,-13.5 @@ -17377,8 +16968,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7597 components: - pos: -56.5,-14.5 @@ -17386,8 +16975,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7634 components: - pos: -63.5,7.5 @@ -17395,15 +16982,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7907 components: - pos: -33.5,-19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8190 components: - pos: 9.5,-1.5 @@ -17411,36 +16994,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8191 components: - pos: 9.5,-2.5 parent: 7536 type: Transform - - fixtures: {} - type: Fixtures - uid: 8209 components: - pos: 10.5,-2.5 parent: 7536 type: Transform - - fixtures: {} - type: Fixtures - uid: 8275 components: - pos: 11.5,-2.5 parent: 7536 type: Transform - - fixtures: {} - type: Fixtures - uid: 8276 components: - pos: 12.5,-2.5 parent: 7536 type: Transform - - fixtures: {} - type: Fixtures - uid: 8277 components: - pos: -18.5,4.5 @@ -17448,8 +17021,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8278 components: - pos: -19.5,4.5 @@ -17457,8 +17028,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8279 components: - pos: -20.5,4.5 @@ -17466,8 +17035,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8280 components: - pos: -21.5,4.5 @@ -17475,8 +17042,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8281 components: - pos: -21.5,5.5 @@ -17484,8 +17049,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8282 components: - pos: -22.5,5.5 @@ -17493,8 +17056,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8283 components: - pos: -23.5,5.5 @@ -17502,8 +17063,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8284 components: - pos: -24.5,5.5 @@ -17511,8 +17070,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8285 components: - pos: -25.5,5.5 @@ -17520,8 +17077,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8286 components: - pos: -26.5,5.5 @@ -17529,8 +17084,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8287 components: - pos: -27.5,5.5 @@ -17538,8 +17091,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8288 components: - pos: -28.5,5.5 @@ -17547,71 +17098,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8289 components: - pos: -29.5,5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8290 components: - pos: -34.5,5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8291 components: - pos: -33.5,5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8292 components: - pos: -30.5,5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8293 components: - pos: -31.5,5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8294 components: - pos: -32.5,5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8295 components: - pos: -32.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8296 components: - pos: -32.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8297 components: - pos: -32.5,2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8315 components: - pos: -56.5,-12.5 @@ -17619,8 +17150,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8318 components: - pos: -61.5,-13.5 @@ -17628,8 +17157,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8319 components: - pos: -52.5,-18.5 @@ -17637,8 +17164,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8321 components: - pos: -60.5,-18.5 @@ -17646,8 +17171,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8322 components: - pos: -59.5,-22.5 @@ -17655,8 +17178,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8325 components: - pos: -59.5,-13.5 @@ -17664,204 +17185,146 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8326 components: - pos: -32.5,1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8327 components: - pos: -32.5,0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8328 components: - pos: -34.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8329 components: - pos: -33.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8330 components: - pos: -32.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8331 components: - pos: -31.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8332 components: - pos: -30.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8333 components: - pos: -30.5,-1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8334 components: - pos: -30.5,-2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8335 components: - pos: -34.5,-3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8336 components: - pos: -33.5,-3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8337 components: - pos: -32.5,-3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8338 components: - pos: -31.5,-3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8339 components: - pos: -30.5,-3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8340 components: - pos: -24.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8341 components: - pos: -28.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8342 components: - pos: -27.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8343 components: - pos: -25.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8344 components: - pos: -26.5,-11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8345 components: - pos: -26.5,-10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8346 components: - pos: -26.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8347 components: - pos: -26.5,-8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8348 components: - pos: -26.5,-7.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8349 components: - pos: -26.5,-6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8350 components: - pos: -26.5,-5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8351 components: - pos: -25.5,1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8352 components: - pos: -27.5,1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8353 components: - pos: -26.5,2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8356 components: - pos: -60.5,-17.5 @@ -17869,8 +17332,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8357 components: - pos: -53.5,-18.5 @@ -17878,15 +17339,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8378 components: - pos: 8.5,-2.5 parent: 7536 type: Transform - - fixtures: {} - type: Fixtures - uid: 8391 components: - pos: 5.5,-0.5 @@ -17894,687 +17351,491 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8392 components: - pos: -26.5,1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8405 components: - pos: 5.5,-1.5 parent: 7536 type: Transform - - fixtures: {} - type: Fixtures - uid: 8406 components: - pos: 5.5,-2.5 parent: 7536 type: Transform - - fixtures: {} - type: Fixtures - uid: 8407 components: - pos: 5.5,-3.5 parent: 7536 type: Transform - - fixtures: {} - type: Fixtures - uid: 8416 components: - pos: -26.5,0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8417 components: - pos: -26.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8418 components: - pos: -26.5,-1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8419 components: - pos: -26.5,-2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8420 components: - pos: -26.5,-3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8421 components: - pos: -21.5,1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8424 components: - pos: -20.5,1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8425 components: - pos: -19.5,1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8428 components: - pos: -19.5,0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8429 components: - pos: -19.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8430 components: - pos: -20.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8431 components: - pos: -21.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8433 components: - pos: -21.5,-1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8434 components: - pos: -21.5,-2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8436 components: - pos: -18.5,-3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8437 components: - pos: -19.5,-3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8438 components: - pos: -20.5,-3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8439 components: - pos: -21.5,-3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8440 components: - pos: -21.5,-4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8441 components: - pos: -22.5,-4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8442 components: - pos: -23.5,-4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8443 components: - pos: -24.5,-4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8444 components: - pos: -25.5,-4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8445 components: - pos: -26.5,-4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8446 components: - pos: -27.5,-4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8447 components: - pos: -28.5,-4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8448 components: - pos: -29.5,-4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8449 components: - pos: -29.5,-3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8450 components: - pos: -29.5,-2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8451 components: - pos: -29.5,-1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8452 components: - pos: -34.5,-6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8453 components: - pos: -33.5,-6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8454 components: - pos: -32.5,-6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8455 components: - pos: -31.5,-6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8456 components: - pos: -34.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8457 components: - pos: -33.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8458 components: - pos: -32.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8462 components: - pos: -31.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8463 components: - pos: -34.5,-12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8464 components: - pos: -33.5,-12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8465 components: - pos: -32.5,-12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8467 components: - pos: -31.5,-12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8468 components: - pos: -30.5,-6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8469 components: - pos: -30.5,-7.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8470 components: - pos: -30.5,-8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8471 components: - pos: -30.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8472 components: - pos: -30.5,-10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8473 components: - pos: -30.5,-11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8474 components: - pos: -30.5,-12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8475 components: - pos: -30.5,-13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8476 components: - pos: -30.5,-14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8477 components: - pos: -18.5,-12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8478 components: - pos: -19.5,-12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8479 components: - pos: -20.5,-12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8480 components: - pos: -21.5,-12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8481 components: - pos: -18.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8482 components: - pos: -19.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8483 components: - pos: -20.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8484 components: - pos: -21.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8503 components: - pos: -19.5,-6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8504 components: - pos: -18.5,-6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8505 components: - pos: -21.5,-6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8506 components: - pos: -20.5,-6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8507 components: - pos: -22.5,-6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8508 components: - pos: -22.5,-7.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8509 components: - pos: -22.5,-8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8510 components: - pos: -22.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8511 components: - pos: -22.5,-10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8512 components: - pos: -22.5,-11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8513 components: - pos: -22.5,-12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8514 components: - pos: -22.5,-13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8515 components: - pos: -22.5,-14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8516 components: - pos: -19.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8517 components: - pos: -20.5,-15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8518 components: - pos: -19.5,-15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8519 components: - pos: -21.5,-15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8520 components: - pos: -22.5,-15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8523 components: - pos: -23.5,-15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8531 components: - pos: 4.5,-1.5 parent: 7536 type: Transform - - fixtures: {} - type: Fixtures - uid: 8562 components: - pos: 3.5,-1.5 parent: 7536 type: Transform - - fixtures: {} - type: Fixtures - uid: 8569 components: - pos: -30.5,-15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8570 components: - pos: -29.5,-15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8571 components: - pos: -28.5,-15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8572 components: - pos: -27.5,-15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8573 components: - pos: -26.5,-15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8574 components: - pos: -25.5,-15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8575 components: - pos: -24.5,-15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8576 components: - pos: -24.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8582 components: - pos: -19.5,-18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8590 components: - pos: -19.5,-20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8595 components: - pos: -18.5,-19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8596 components: - pos: -19.5,-19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8597 components: - pos: -20.5,-19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8598 components: - pos: -21.5,-19.5 @@ -18582,71 +17843,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8601 components: - pos: -22.5,-19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8606 components: - pos: -23.5,-19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8609 components: - pos: -29.5,-19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8610 components: - pos: -28.5,-19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8654 components: - pos: -27.5,-19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8655 components: - pos: -26.5,-19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8656 components: - pos: -25.5,-19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8662 components: - pos: -24.5,-19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8664 components: - pos: -24.5,-18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8665 components: - pos: -24.5,-17.5 @@ -18654,8 +17895,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8739 components: - pos: -61.5,-0.5 @@ -18663,8 +17902,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8741 components: - pos: -65.5,3.5 @@ -18672,8 +17909,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8742 components: - pos: -65.5,2.5 @@ -18681,15 +17916,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8757 components: - pos: 2.5,-1.5 parent: 7536 type: Transform - - fixtures: {} - type: Fixtures - uid: 8758 components: - pos: -66.5,2.5 @@ -18697,15 +17928,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8770 components: - pos: -33.5,-17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8786 components: - pos: 1.5,-1.5 @@ -18713,8 +17940,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8787 components: - pos: 0.5,-1.5 @@ -18722,8 +17947,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8788 components: - pos: -0.5,-1.5 @@ -18731,50 +17954,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8789 components: - pos: -0.5,-2.5 parent: 7536 type: Transform - - fixtures: {} - type: Fixtures - uid: 8893 components: - pos: -0.5,-3.5 parent: 7536 type: Transform - - fixtures: {} - type: Fixtures - uid: 8900 components: - pos: 0.5,-3.5 parent: 7536 type: Transform - - fixtures: {} - type: Fixtures - uid: 8901 components: - pos: 1.5,-3.5 parent: 7536 type: Transform - - fixtures: {} - type: Fixtures - uid: 8902 components: - pos: 2.5,-3.5 parent: 7536 type: Transform - - fixtures: {} - type: Fixtures - uid: 8903 components: - pos: 3.5,-3.5 parent: 7536 type: Transform - - fixtures: {} - type: Fixtures - uid: 8904 components: - pos: -4.5,-1.5 @@ -18782,50 +17991,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8905 components: - pos: -4.5,-2.5 parent: 7536 type: Transform - - fixtures: {} - type: Fixtures - uid: 8906 components: - pos: -4.5,-3.5 parent: 7536 type: Transform - - fixtures: {} - type: Fixtures - uid: 8907 components: - pos: -3.5,-3.5 parent: 7536 type: Transform - - fixtures: {} - type: Fixtures - uid: 8912 components: - pos: -5.5,-2.5 parent: 7536 type: Transform - - fixtures: {} - type: Fixtures - uid: 8924 components: - pos: -6.5,-2.5 parent: 7536 type: Transform - - fixtures: {} - type: Fixtures - uid: 8925 components: - pos: -7.5,-2.5 parent: 7536 type: Transform - - fixtures: {} - type: Fixtures - uid: 8926 components: - pos: -8.5,-2.5 @@ -18833,8 +18028,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8927 components: - pos: -9.5,-2.5 @@ -18842,8 +18035,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8958 components: - pos: -11.5,-2.5 @@ -18851,8 +18042,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8978 components: - pos: -11.5,-1.5 @@ -18860,8 +18049,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8980 components: - pos: -12.5,-1.5 @@ -18869,8 +18056,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9002 components: - pos: -11.5,-3.5 @@ -18878,8 +18063,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9007 components: - pos: -12.5,-3.5 @@ -18887,8 +18070,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9008 components: - pos: -9.5,-1.5 @@ -18896,8 +18077,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9049 components: - pos: -9.5,-3.5 @@ -18905,85 +18084,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9172 components: - pos: 40.5,-5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9175 components: - pos: 33.5,-11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9198 components: - pos: 40.5,-6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9207 components: - pos: 38.5,-8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9213 components: - pos: 40.5,-6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9217 components: - pos: 33.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9218 components: - pos: 33.5,-12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9219 components: - pos: 40.5,-8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9438 components: - pos: -46.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9454 components: - pos: -46.5,15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9459 components: - pos: -46.5,16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9866 components: - pos: -35.5,-32.5 @@ -18991,8 +18146,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9867 components: - pos: -32.5,-31.5 @@ -19000,8 +18153,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9881 components: - pos: -25.5,-33.5 @@ -19009,8 +18160,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9984 components: - pos: -23.5,-33.5 @@ -19018,8 +18167,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10001 components: - pos: -28.5,-25.5 @@ -19027,253 +18174,181 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10002 components: - pos: -28.5,-24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10003 components: - pos: -28.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10004 components: - pos: -29.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10005 components: - pos: -30.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10006 components: - pos: -31.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10007 components: - pos: -32.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10008 components: - pos: -33.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10009 components: - pos: -34.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10010 components: - pos: -35.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10011 components: - pos: -36.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10012 components: - pos: -37.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10013 components: - pos: -37.5,-22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10014 components: - pos: -37.5,-21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10015 components: - pos: -37.5,-20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10016 components: - pos: -37.5,-19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10017 components: - pos: -37.5,-18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10018 components: - pos: -27.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10019 components: - pos: -26.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10020 components: - pos: -25.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10021 components: - pos: -24.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10022 components: - pos: -23.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10023 components: - pos: -22.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10024 components: - pos: -21.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10025 components: - pos: -20.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10026 components: - pos: -19.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10027 components: - pos: -18.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10028 components: - pos: -17.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10029 components: - pos: -16.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10030 components: - pos: -15.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10031 components: - pos: -15.5,-22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10032 components: - pos: -15.5,-21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10033 components: - pos: -15.5,-20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10034 components: - pos: -15.5,-19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10035 components: - pos: -15.5,-18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10036 components: - pos: -28.5,-26.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10037 components: - pos: -29.5,-26.5 @@ -19281,8 +18356,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10038 components: - pos: -29.5,-27.5 @@ -19290,8 +18363,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10039 components: - pos: -29.5,-28.5 @@ -19299,8 +18370,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10040 components: - pos: -29.5,-29.5 @@ -19308,8 +18377,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10041 components: - pos: -29.5,-30.5 @@ -19317,15 +18384,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10042 components: - pos: -23.5,-24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10043 components: - pos: -23.5,-25.5 @@ -19333,43 +18396,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10044 components: - pos: -23.5,-26.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10045 components: - pos: -23.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10046 components: - pos: -23.5,-28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10047 components: - pos: -25.5,-28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10048 components: - pos: -24.5,-28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10057 components: - pos: -24.5,-33.5 @@ -19377,8 +18428,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10058 components: - pos: -30.5,-30.5 @@ -19386,8 +18435,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10059 components: - pos: -31.5,-30.5 @@ -19395,8 +18442,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10060 components: - pos: -32.5,-30.5 @@ -19404,8 +18449,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10063 components: - pos: -33.5,-32.5 @@ -19413,8 +18456,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10064 components: - pos: -32.5,-32.5 @@ -19422,8 +18463,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10065 components: - pos: -31.5,-32.5 @@ -19431,8 +18470,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10066 components: - pos: -30.5,-32.5 @@ -19440,8 +18477,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10067 components: - pos: -29.5,-32.5 @@ -19449,8 +18484,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10068 components: - pos: -28.5,-32.5 @@ -19458,8 +18491,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10069 components: - pos: -27.5,-32.5 @@ -19467,8 +18498,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10070 components: - pos: -31.5,-33.5 @@ -19476,22 +18505,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10071 components: - pos: -31.5,-35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10072 components: - pos: -31.5,-34.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10073 components: - pos: -31.5,-36.5 @@ -19499,8 +18522,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10074 components: - pos: -31.5,-37.5 @@ -19508,8 +18529,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10075 components: - pos: -31.5,-38.5 @@ -19517,8 +18536,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10076 components: - pos: -26.5,-32.5 @@ -19526,8 +18543,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10077 components: - pos: -26.5,-33.5 @@ -19535,8 +18550,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10081 components: - pos: -36.5,-32.5 @@ -19544,8 +18557,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10082 components: - pos: -37.5,-32.5 @@ -19553,8 +18564,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10083 components: - pos: -38.5,-32.5 @@ -19562,8 +18571,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10084 components: - pos: -40.5,-32.5 @@ -19571,8 +18578,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10085 components: - pos: -41.5,-32.5 @@ -19580,8 +18585,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10086 components: - pos: -42.5,-29.5 @@ -19589,8 +18592,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10087 components: - pos: -43.5,-29.5 @@ -19598,29 +18599,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10088 components: - pos: -44.5,-29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10089 components: - pos: -45.5,-29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10090 components: - pos: -46.5,-29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10091 components: - pos: -47.5,-29.5 @@ -19628,8 +18621,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10092 components: - pos: -47.5,-30.5 @@ -19637,15 +18628,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10093 components: - pos: -47.5,-31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10094 components: - pos: -47.5,-32.5 @@ -19653,8 +18640,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10095 components: - pos: -47.5,-33.5 @@ -19662,8 +18647,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10096 components: - pos: -47.5,-34.5 @@ -19671,8 +18654,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10097 components: - pos: -47.5,-35.5 @@ -19680,8 +18661,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10098 components: - pos: -47.5,-36.5 @@ -19689,8 +18668,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10099 components: - pos: -47.5,-37.5 @@ -19698,8 +18675,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10100 components: - pos: -47.5,-38.5 @@ -19707,8 +18682,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10101 components: - pos: -46.5,-33.5 @@ -19716,15 +18689,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10102 components: - pos: -45.5,-33.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10103 components: - pos: -44.5,-33.5 @@ -19732,8 +18701,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10104 components: - pos: -43.5,-33.5 @@ -19741,8 +18708,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10105 components: - pos: -48.5,-33.5 @@ -19750,8 +18715,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10106 components: - pos: -49.5,-33.5 @@ -19759,8 +18722,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10107 components: - pos: -50.5,-33.5 @@ -19768,22 +18729,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10108 components: - pos: -51.5,-33.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10109 components: - pos: -48.5,-30.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10110 components: - pos: -49.5,-30.5 @@ -19791,15 +18746,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10111 components: - pos: -50.5,-30.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10112 components: - pos: -51.5,-30.5 @@ -19807,8 +18758,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10113 components: - pos: -41.5,-29.5 @@ -19816,8 +18765,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10114 components: - pos: -41.5,-28.5 @@ -19825,8 +18772,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10115 components: - pos: -41.5,-27.5 @@ -19834,8 +18779,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10116 components: - pos: -41.5,-26.5 @@ -19843,8 +18786,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10117 components: - pos: -41.5,-25.5 @@ -19852,8 +18793,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10118 components: - pos: -41.5,-24.5 @@ -19861,8 +18800,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10119 components: - pos: -41.5,-23.5 @@ -19870,8 +18807,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10120 components: - pos: -42.5,-23.5 @@ -19879,8 +18814,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10121 components: - pos: -43.5,-23.5 @@ -19888,8 +18821,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10122 components: - pos: -44.5,-23.5 @@ -19897,8 +18828,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10123 components: - pos: -45.5,-23.5 @@ -19906,8 +18835,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10124 components: - pos: -46.5,-23.5 @@ -19915,8 +18842,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10125 components: - pos: -47.5,-23.5 @@ -19924,8 +18849,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10126 components: - pos: -47.5,-22.5 @@ -19933,8 +18856,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10131 components: - pos: -52.5,-23.5 @@ -19942,8 +18863,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10135 components: - pos: -51.5,-23.5 @@ -19951,22 +18870,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10137 components: - pos: -47.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10138 components: - pos: -35.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10139 components: - pos: -51.5,-13.5 @@ -19974,8 +18887,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10140 components: - pos: -51.5,-12.5 @@ -19983,8 +18894,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10143 components: - pos: -46.5,-14.5 @@ -19992,225 +18901,161 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10144 components: - pos: -46.5,-15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10145 components: - pos: -46.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10146 components: - pos: -45.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10147 components: - pos: -44.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10148 components: - pos: -43.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10149 components: - pos: -43.5,-17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10150 components: - pos: -43.5,-18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10151 components: - pos: -43.5,-19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10152 components: - pos: -44.5,-18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10153 components: - pos: -45.5,-18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10154 components: - pos: -46.5,-18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10156 components: - pos: -48.5,-18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10157 components: - pos: -48.5,-17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10158 components: - pos: -48.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10159 components: - pos: -48.5,-15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10160 components: - pos: -48.5,-19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10161 components: - pos: -48.5,-20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10162 components: - pos: -48.5,-21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10163 components: - pos: -43.5,-20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10164 components: - pos: -44.5,-21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10165 components: - pos: -45.5,-21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10166 components: - pos: -43.5,-20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10167 components: - pos: -43.5,-21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10168 components: - pos: -45.5,-21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10169 components: - pos: -46.5,-21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10170 components: - pos: -42.5,-21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10171 components: - pos: -41.5,-21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10172 components: - pos: -40.5,-21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10173 components: - pos: -41.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10174 components: - pos: -40.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10175 components: - pos: -42.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10176 components: - pos: -42.5,-11.5 @@ -20218,8 +19063,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10177 components: - pos: -42.5,-12.5 @@ -20227,8 +19070,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10178 components: - pos: -43.5,-12.5 @@ -20236,8 +19077,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10179 components: - pos: -44.5,-12.5 @@ -20245,8 +19084,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10180 components: - pos: -45.5,-12.5 @@ -20254,8 +19091,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10181 components: - pos: -46.5,-12.5 @@ -20263,8 +19098,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10182 components: - pos: -47.5,-12.5 @@ -20272,8 +19105,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10183 components: - pos: -47.5,-12.5 @@ -20281,8 +19112,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10184 components: - pos: -48.5,-12.5 @@ -20290,8 +19119,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10185 components: - pos: -49.5,-12.5 @@ -20299,8 +19126,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10186 components: - pos: -41.5,-12.5 @@ -20308,8 +19133,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10187 components: - pos: -40.5,-12.5 @@ -20317,218 +19140,156 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10188 components: - pos: -42.5,-10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10189 components: - pos: -42.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10190 components: - pos: -42.5,-8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10191 components: - pos: -42.5,-7.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10192 components: - pos: -42.5,-6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10193 components: - pos: -42.5,-5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10194 components: - pos: -42.5,-4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10195 components: - pos: -43.5,-4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10196 components: - pos: -44.5,-4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10197 components: - pos: -45.5,-4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10198 components: - pos: -43.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10199 components: - pos: -44.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10200 components: - pos: -45.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10201 components: - pos: -41.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10202 components: - pos: -40.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10203 components: - pos: -45.5,-5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10204 components: - pos: -46.5,-5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10205 components: - pos: -47.5,-5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10206 components: - pos: -48.5,-5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10207 components: - pos: -48.5,-6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10208 components: - pos: -48.5,-7.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10209 components: - pos: -48.5,-8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10210 components: - pos: -48.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10211 components: - pos: -48.5,-10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10212 components: - pos: -48.5,-4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10213 components: - pos: -48.5,-3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10214 components: - pos: -48.5,-2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10215 components: - pos: -48.5,-1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10216 components: - pos: -48.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10217 components: - pos: -48.5,0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10219 components: - pos: -52.5,5.5 @@ -20536,288 +19297,206 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10220 components: - pos: -52.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10221 components: - pos: -52.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10222 components: - pos: -52.5,2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10223 components: - pos: -52.5,1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10224 components: - pos: -52.5,0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10225 components: - pos: -52.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10226 components: - pos: -52.5,-1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10227 components: - pos: -52.5,-2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10228 components: - pos: -52.5,-3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10229 components: - pos: -51.5,-3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10230 components: - pos: -51.5,-4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10231 components: - pos: -51.5,-5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10232 components: - pos: -51.5,-6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10233 components: - pos: -52.5,-6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10234 components: - pos: -53.5,-6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10235 components: - pos: -54.5,-6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10236 components: - pos: -53.5,-1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10237 components: - pos: -54.5,-1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10238 components: - pos: -55.5,-1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10239 components: - pos: -56.5,-1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10240 components: - pos: -57.5,-1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10241 components: - pos: -57.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10242 components: - pos: -57.5,0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10243 components: - pos: -57.5,1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10244 components: - pos: -57.5,2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10245 components: - pos: -57.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10246 components: - pos: -57.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10247 components: - pos: -57.5,5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10248 components: - pos: -53.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10249 components: - pos: -54.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10250 components: - pos: -55.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10252 components: - pos: -51.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10253 components: - pos: -50.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10254 components: - pos: -49.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10255 components: - pos: -50.5,5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10256 components: - pos: -50.5,6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10257 components: - pos: -50.5,7.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10258 components: - pos: -50.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10259 components: - pos: -50.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10260 components: - pos: -50.5,10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10277 components: - pos: -41.5,6.5 @@ -20825,232 +19504,166 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10278 components: - pos: -41.5,5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10279 components: - pos: -41.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10280 components: - pos: -41.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10281 components: - pos: -42.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10282 components: - pos: -43.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10283 components: - pos: -44.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10284 components: - pos: -45.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10285 components: - pos: -46.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10286 components: - pos: -48.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10287 components: - pos: -47.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10288 components: - pos: -42.5,5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10289 components: - pos: -43.5,5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10290 components: - pos: -43.5,6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10291 components: - pos: -43.5,7.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10292 components: - pos: -43.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10293 components: - pos: -42.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10294 components: - pos: -41.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10295 components: - pos: -40.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10296 components: - pos: -40.5,7.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10297 components: - pos: -44.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10298 components: - pos: -54.5,5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10299 components: - pos: -54.5,6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10300 components: - pos: -54.5,7.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10301 components: - pos: -54.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10302 components: - pos: -54.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10303 components: - pos: -54.5,10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10304 components: - pos: -54.5,11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10305 components: - pos: -54.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10306 components: - pos: -54.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10307 components: - pos: -55.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10311 components: - pos: -50.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10312 components: - pos: -49.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10315 components: - pos: -31.5,16.5 @@ -21058,477 +19671,341 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10316 components: - pos: -31.5,15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10317 components: - pos: -31.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10318 components: - pos: -31.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10319 components: - pos: -31.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10320 components: - pos: -31.5,11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10321 components: - pos: -32.5,11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10322 components: - pos: -32.5,10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10323 components: - pos: -32.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10324 components: - pos: -32.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10325 components: - pos: -33.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10326 components: - pos: -34.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10327 components: - pos: -35.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10328 components: - pos: -36.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10329 components: - pos: -37.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10330 components: - pos: -37.5,7.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10331 components: - pos: -37.5,6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10332 components: - pos: -37.5,5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10333 components: - pos: -37.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10334 components: - pos: -37.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10335 components: - pos: -47.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10336 components: - pos: -46.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10337 components: - pos: -45.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10338 components: - pos: -44.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10339 components: - pos: -43.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10340 components: - pos: -42.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10341 components: - pos: -41.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10342 components: - pos: -40.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10343 components: - pos: -39.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10344 components: - pos: -38.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10345 components: - pos: -37.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10346 components: - pos: -37.5,0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10347 components: - pos: -37.5,1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10348 components: - pos: -37.5,-1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10349 components: - pos: -37.5,-2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10350 components: - pos: -37.5,-3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10351 components: - pos: -37.5,-4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10352 components: - pos: -37.5,-5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10353 components: - pos: -37.5,-6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10354 components: - pos: -37.5,-7.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10355 components: - pos: -37.5,-8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10356 components: - pos: -37.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10357 components: - pos: -37.5,-10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10358 components: - pos: -37.5,-17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10359 components: - pos: -37.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10360 components: - pos: -37.5,-14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10361 components: - pos: -37.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10362 components: - pos: -37.5,-15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10363 components: - pos: -37.5,-11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10364 components: - pos: -32.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10365 components: - pos: -33.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10366 components: - pos: -34.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10370 components: - pos: -36.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10371 components: - pos: -36.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10372 components: - pos: -36.5,11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10373 components: - pos: -37.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10374 components: - pos: -38.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10375 components: - pos: -39.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10376 components: - pos: -40.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10377 components: - pos: -41.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10378 components: - pos: -41.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10379 components: - pos: -41.5,11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10381 components: - pos: -43.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10382 components: - pos: -44.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10383 components: - pos: -45.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10384 components: - pos: -46.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10385 components: - pos: -56.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10386 components: - pos: -57.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10387 components: - pos: -58.5,13.5 @@ -21536,8 +20013,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10388 components: - pos: -59.5,13.5 @@ -21545,8 +20020,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10389 components: - pos: -59.5,12.5 @@ -21554,8 +20027,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10390 components: - pos: -59.5,11.5 @@ -21563,8 +20034,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10391 components: - pos: -59.5,10.5 @@ -21572,8 +20041,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10392 components: - pos: -59.5,9.5 @@ -21581,8 +20048,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10393 components: - pos: -59.5,8.5 @@ -21590,8 +20055,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10394 components: - pos: -59.5,7.5 @@ -21599,8 +20062,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10395 components: - pos: -51.5,-11.5 @@ -21608,22 +20069,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10396 components: - pos: -52.5,-11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10397 components: - pos: -53.5,-11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10398 components: - pos: -54.5,-11.5 @@ -21631,8 +20086,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10399 components: - pos: -55.5,-11.5 @@ -21640,8 +20093,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10400 components: - pos: -56.5,-11.5 @@ -21649,8 +20100,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10401 components: - pos: -57.5,-11.5 @@ -21658,8 +20107,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10402 components: - pos: -57.5,-10.5 @@ -21667,8 +20114,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10403 components: - pos: -57.5,-9.5 @@ -21676,8 +20121,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10404 components: - pos: -57.5,-8.5 @@ -21685,8 +20128,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10405 components: - pos: -57.5,-7.5 @@ -21694,8 +20135,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10406 components: - pos: -57.5,-6.5 @@ -21703,8 +20142,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10407 components: - pos: -58.5,-6.5 @@ -21712,8 +20149,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10408 components: - pos: -59.5,-6.5 @@ -21721,8 +20156,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10409 components: - pos: -60.5,-6.5 @@ -21730,8 +20163,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10410 components: - pos: -60.5,-5.5 @@ -21739,8 +20170,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10411 components: - pos: -60.5,-4.5 @@ -21748,8 +20177,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10412 components: - pos: -60.5,-3.5 @@ -21757,8 +20184,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10413 components: - pos: -60.5,-2.5 @@ -21766,8 +20191,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10414 components: - pos: -60.5,-1.5 @@ -21775,8 +20198,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10415 components: - pos: -60.5,-0.5 @@ -21784,8 +20205,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10432 components: - pos: -6.5,-29.5 @@ -21793,8 +20212,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10433 components: - pos: -6.5,-30.5 @@ -21802,8 +20219,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10434 components: - pos: -7.5,-30.5 @@ -21811,8 +20226,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10435 components: - pos: -8.5,-30.5 @@ -21820,8 +20233,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10436 components: - pos: -9.5,-30.5 @@ -21829,8 +20240,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10437 components: - pos: -10.5,-30.5 @@ -21838,8 +20247,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10438 components: - pos: -11.5,-30.5 @@ -21847,8 +20254,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10439 components: - pos: -12.5,-30.5 @@ -21856,8 +20261,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10440 components: - pos: -13.5,-30.5 @@ -21865,8 +20268,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10441 components: - pos: -13.5,-29.5 @@ -21874,8 +20275,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10442 components: - pos: -13.5,-28.5 @@ -21883,8 +20282,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10443 components: - pos: -13.5,-27.5 @@ -21892,8 +20289,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10444 components: - pos: -13.5,-26.5 @@ -21901,8 +20296,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10445 components: - pos: -19.5,-30.5 @@ -21910,8 +20303,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10446 components: - pos: -19.5,-29.5 @@ -21919,8 +20310,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10447 components: - pos: -19.5,-28.5 @@ -21928,8 +20317,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10448 components: - pos: -19.5,-27.5 @@ -21937,8 +20324,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10449 components: - pos: -19.5,-26.5 @@ -21946,8 +20331,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10450 components: - pos: -19.5,-31.5 @@ -21955,8 +20338,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10451 components: - pos: -19.5,-32.5 @@ -21964,8 +20345,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10452 components: - pos: -19.5,-33.5 @@ -21973,8 +20352,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10453 components: - pos: -18.5,-33.5 @@ -21982,15 +20359,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10454 components: - pos: -18.5,-34.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10455 components: - pos: -18.5,-35.5 @@ -21998,8 +20371,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10456 components: - pos: -18.5,-36.5 @@ -22007,8 +20378,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10457 components: - pos: -5.5,-30.5 @@ -22016,8 +20385,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10458 components: - pos: -4.5,-30.5 @@ -22025,8 +20392,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10459 components: - pos: -3.5,-30.5 @@ -22034,8 +20399,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10460 components: - pos: -2.5,-30.5 @@ -22043,204 +20406,146 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10461 components: - pos: -6.5,-28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10462 components: - pos: -6.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10463 components: - pos: -5.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10464 components: - pos: -4.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10465 components: - pos: -3.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10466 components: - pos: -2.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10467 components: - pos: -7.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10468 components: - pos: -8.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10469 components: - pos: -9.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10470 components: - pos: -10.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10471 components: - pos: -11.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10472 components: - pos: -9.5,-26.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10473 components: - pos: -9.5,-25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10474 components: - pos: -9.5,-24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10475 components: - pos: -9.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10476 components: - pos: -4.5,-26.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10477 components: - pos: -4.5,-25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10478 components: - pos: -4.5,-24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10479 components: - pos: -4.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10480 components: - pos: -5.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10481 components: - pos: -6.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10482 components: - pos: -7.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10483 components: - pos: -8.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10484 components: - pos: -10.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10485 components: - pos: -11.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10486 components: - pos: -12.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10487 components: - pos: -3.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10488 components: - pos: -2.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10489 components: - pos: -1.5,-42.5 @@ -22248,64 +20553,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10490 components: - pos: -2.5,-42.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10491 components: - pos: -3.5,-42.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10492 components: - pos: -4.5,-42.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10493 components: - pos: -5.5,-42.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10494 components: - pos: -6.5,-42.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10495 components: - pos: -7.5,-42.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10496 components: - pos: -8.5,-42.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10497 components: - pos: -9.5,-42.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10498 components: - pos: -10.5,-42.5 @@ -22313,8 +20600,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10499 components: - pos: -11.5,-42.5 @@ -22322,8 +20607,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10500 components: - pos: -12.5,-42.5 @@ -22331,8 +20614,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10501 components: - pos: -13.5,-42.5 @@ -22340,8 +20621,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10502 components: - pos: -14.5,-42.5 @@ -22349,8 +20628,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10503 components: - pos: -15.5,-42.5 @@ -22358,8 +20635,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10504 components: - pos: -14.5,-41.5 @@ -22367,8 +20642,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10505 components: - pos: -14.5,-40.5 @@ -22376,8 +20649,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10506 components: - pos: -14.5,-39.5 @@ -22385,8 +20656,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10507 components: - pos: -14.5,-38.5 @@ -22394,8 +20663,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10508 components: - pos: -14.5,-37.5 @@ -22403,8 +20670,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10509 components: - pos: -11.5,-43.5 @@ -22412,8 +20677,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10510 components: - pos: -11.5,-44.5 @@ -22421,8 +20684,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10511 components: - pos: -11.5,-45.5 @@ -22430,8 +20691,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10512 components: - pos: -11.5,-46.5 @@ -22439,8 +20698,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10513 components: - pos: -12.5,-46.5 @@ -22448,8 +20705,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10514 components: - pos: -13.5,-46.5 @@ -22457,8 +20712,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10515 components: - pos: -14.5,-46.5 @@ -22466,8 +20719,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10516 components: - pos: -15.5,-43.5 @@ -22475,8 +20726,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10517 components: - pos: -16.5,-43.5 @@ -22484,8 +20733,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10518 components: - pos: -17.5,-43.5 @@ -22493,8 +20740,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10519 components: - pos: -18.5,-43.5 @@ -22502,8 +20747,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10520 components: - pos: -19.5,-43.5 @@ -22511,169 +20754,121 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10521 components: - pos: -0.5,-42.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10522 components: - pos: 0.5,-42.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10523 components: - pos: 0.5,-43.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10524 components: - pos: 0.5,-44.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10525 components: - pos: 0.5,-45.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10526 components: - pos: 0.5,-46.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10527 components: - pos: 0.5,-47.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10528 components: - pos: 0.5,-48.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10529 components: - pos: 1.5,-45.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10530 components: - pos: 2.5,-45.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10531 components: - pos: 3.5,-45.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10532 components: - pos: 4.5,-45.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10533 components: - pos: 5.5,-45.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10534 components: - pos: 6.5,-45.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10535 components: - pos: -0.5,-46.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10536 components: - pos: -1.5,-46.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10537 components: - pos: -2.5,-46.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10538 components: - pos: -3.5,-46.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10539 components: - pos: -4.5,-46.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10540 components: - pos: -5.5,-46.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10541 components: - pos: -6.5,-46.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10542 components: - pos: -7.5,-46.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10543 components: - pos: -8.5,-46.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10544 components: - pos: -7.5,-41.5 @@ -22681,8 +20876,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10545 components: - pos: -7.5,-40.5 @@ -22690,8 +20883,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10546 components: - pos: -7.5,-39.5 @@ -22699,29 +20890,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10547 components: - pos: 0.5,-41.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10548 components: - pos: 0.5,-40.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10549 components: - pos: 0.5,-39.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10592 components: - pos: 22.5,3.5 @@ -22729,78 +20912,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10593 components: - pos: 3.5,-32.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10594 components: - pos: 4.5,-32.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10595 components: - pos: 5.5,-32.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10596 components: - pos: 5.5,-31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10597 components: - pos: 5.5,-30.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10598 components: - pos: 5.5,-29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10599 components: - pos: 5.5,-28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10600 components: - pos: 5.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10601 components: - pos: 6.5,-31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10602 components: - pos: 7.5,-31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10605 components: - pos: 24.5,3.5 @@ -22808,8 +20969,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10606 components: - pos: 26.5,1.5 @@ -22817,8 +20976,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10607 components: - pos: 26.5,0.5 @@ -22826,8 +20983,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10608 components: - pos: 26.5,2.5 @@ -22835,22 +20990,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10609 components: - pos: 1.5,-34.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10610 components: - pos: 0.5,-34.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10611 components: - pos: 20.5,1.5 @@ -22858,78 +21007,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10612 components: - pos: 0.5,-35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10613 components: - pos: 0.5,-36.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10614 components: - pos: 0.5,-37.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10615 components: - pos: 2.5,-37.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10616 components: - pos: 3.5,-37.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10617 components: - pos: 4.5,-37.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10618 components: - pos: 4.5,-38.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10619 components: - pos: 1.5,-37.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10623 components: - pos: 7.5,-37.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10624 components: - pos: 7.5,-38.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10625 components: - pos: 7.5,-39.5 @@ -22937,8 +21064,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10626 components: - pos: 8.5,-39.5 @@ -22946,8 +21071,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10627 components: - pos: 8.5,-40.5 @@ -22955,8 +21078,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10628 components: - pos: 8.5,-41.5 @@ -22964,8 +21085,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10629 components: - pos: 7.5,-41.5 @@ -22973,8 +21092,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10630 components: - pos: 6.5,-41.5 @@ -22982,8 +21099,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10631 components: - pos: 5.5,-41.5 @@ -22991,8 +21106,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10632 components: - pos: 4.5,-41.5 @@ -23000,8 +21113,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10633 components: - pos: 3.5,-41.5 @@ -23009,183 +21120,131 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10634 components: - pos: 0.5,-33.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10635 components: - pos: 0.5,-32.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10636 components: - pos: 0.5,-31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10637 components: - pos: 0.5,-30.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10638 components: - pos: 0.5,-29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10639 components: - pos: 0.5,-28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10640 components: - pos: 0.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10641 components: - pos: 0.5,-26.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10642 components: - pos: 0.5,-25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10643 components: - pos: 4.5,-29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10644 components: - pos: 3.5,-29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10645 components: - pos: 2.5,-29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10646 components: - pos: 1.5,-29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10647 components: - pos: 0.5,-24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10648 components: - pos: 1.5,-24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10649 components: - pos: 2.5,-24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10650 components: - pos: 3.5,-24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10651 components: - pos: 4.5,-24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10652 components: - pos: 5.5,-24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10653 components: - pos: 6.5,-24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10654 components: - pos: 7.5,-24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10655 components: - pos: 8.5,-24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10657 components: - pos: -33.5,-24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10658 components: - pos: -37.5,-24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10683 components: - pos: 51.5,-37.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10703 components: - pos: 20.5,0.5 @@ -23193,8 +21252,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10712 components: - pos: 20.5,2.5 @@ -23202,8 +21259,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10780 components: - pos: 41.5,-46.5 @@ -23211,8 +21266,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10781 components: - pos: 41.5,-49.5 @@ -23220,8 +21273,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10782 components: - pos: 41.5,-42.5 @@ -23229,8 +21280,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10837 components: - pos: 22.5,-1.5 @@ -23238,8 +21287,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10838 components: - pos: 23.5,-1.5 @@ -23247,8 +21294,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10839 components: - pos: 24.5,-1.5 @@ -23256,8 +21301,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10858 components: - pos: -39.5,-32.5 @@ -23265,8 +21308,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10859 components: - pos: -17.5,-33.5 @@ -23274,8 +21315,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10860 components: - pos: -16.5,-33.5 @@ -23283,8 +21322,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10861 components: - pos: -16.5,-32.5 @@ -23292,15 +21329,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10862 components: - pos: -16.5,-31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10900 components: - pos: 41.5,-43.5 @@ -23308,8 +21341,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10901 components: - pos: 41.5,-48.5 @@ -23317,8 +21348,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10902 components: - pos: 41.5,-45.5 @@ -23326,8 +21355,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10923 components: - pos: 30.5,-51.5 @@ -23335,8 +21362,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10924 components: - pos: 30.5,-50.5 @@ -23344,8 +21369,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10925 components: - pos: 31.5,-50.5 @@ -23353,8 +21376,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10926 components: - pos: 31.5,-49.5 @@ -23362,8 +21383,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10927 components: - pos: 31.5,-48.5 @@ -23371,8 +21390,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10928 components: - pos: 32.5,-50.5 @@ -23380,8 +21397,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10929 components: - pos: 33.5,-50.5 @@ -23389,8 +21404,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10930 components: - pos: 34.5,-50.5 @@ -23398,8 +21411,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10931 components: - pos: 35.5,-50.5 @@ -23407,8 +21418,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10932 components: - pos: 36.5,-50.5 @@ -23416,8 +21425,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10933 components: - pos: 37.5,-50.5 @@ -23425,8 +21432,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10934 components: - pos: 38.5,-50.5 @@ -23434,8 +21439,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10935 components: - pos: 39.5,-50.5 @@ -23443,8 +21446,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10947 components: - pos: 29.5,-50.5 @@ -23452,8 +21453,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10948 components: - pos: 28.5,-50.5 @@ -23461,8 +21460,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10949 components: - pos: 27.5,-50.5 @@ -23470,8 +21467,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10950 components: - pos: 26.5,-50.5 @@ -23479,8 +21474,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10951 components: - pos: 25.5,-50.5 @@ -23488,8 +21481,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10952 components: - pos: 24.5,-50.5 @@ -23497,8 +21488,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10953 components: - pos: 23.5,-50.5 @@ -23506,8 +21495,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10954 components: - pos: 22.5,-50.5 @@ -23515,8 +21502,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10955 components: - pos: 21.5,-50.5 @@ -23524,8 +21509,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10956 components: - pos: 21.5,-49.5 @@ -23533,8 +21516,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10957 components: - pos: 21.5,-48.5 @@ -23542,8 +21523,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10958 components: - pos: 20.5,-48.5 @@ -23551,36 +21530,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10959 components: - pos: 19.5,-48.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10960 components: - pos: 18.5,-48.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10961 components: - pos: 17.5,-48.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10962 components: - pos: 18.5,-49.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10963 components: - pos: 21.5,-47.5 @@ -23588,8 +21557,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10964 components: - pos: 21.5,-46.5 @@ -23597,8 +21564,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10965 components: - pos: 21.5,-45.5 @@ -23606,8 +21571,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10966 components: - pos: 21.5,-44.5 @@ -23615,8 +21578,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10967 components: - pos: 21.5,-43.5 @@ -23624,8 +21585,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10968 components: - pos: 21.5,-42.5 @@ -23633,8 +21592,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10969 components: - pos: 21.5,-41.5 @@ -23642,8 +21599,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10970 components: - pos: 22.5,-41.5 @@ -23651,8 +21606,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10971 components: - pos: 23.5,-41.5 @@ -23660,8 +21613,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10972 components: - pos: 24.5,-41.5 @@ -23669,8 +21620,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10973 components: - pos: 25.5,-41.5 @@ -23678,8 +21627,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10974 components: - pos: 26.5,-41.5 @@ -23687,8 +21634,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10975 components: - pos: 27.5,-41.5 @@ -23696,8 +21641,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10976 components: - pos: 28.5,-41.5 @@ -23705,8 +21648,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10977 components: - pos: 28.5,-40.5 @@ -23714,8 +21655,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10978 components: - pos: 29.5,-40.5 @@ -23723,8 +21662,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10979 components: - pos: 30.5,-40.5 @@ -23732,8 +21669,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10980 components: - pos: 31.5,-40.5 @@ -23741,8 +21676,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10981 components: - pos: 32.5,-40.5 @@ -23750,8 +21683,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10982 components: - pos: 33.5,-40.5 @@ -23759,8 +21690,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10983 components: - pos: 34.5,-40.5 @@ -23768,8 +21697,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10984 components: - pos: 34.5,-41.5 @@ -23777,8 +21704,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10985 components: - pos: 35.5,-41.5 @@ -23786,8 +21711,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10986 components: - pos: 36.5,-41.5 @@ -23795,8 +21718,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10987 components: - pos: 37.5,-41.5 @@ -23804,8 +21725,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10988 components: - pos: 38.5,-41.5 @@ -23813,8 +21732,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10989 components: - pos: 20.5,-41.5 @@ -23822,8 +21739,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10990 components: - pos: 19.5,-41.5 @@ -23831,8 +21746,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10991 components: - pos: 18.5,-41.5 @@ -23840,8 +21753,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10992 components: - pos: 17.5,-41.5 @@ -23849,8 +21760,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10993 components: - pos: 16.5,-41.5 @@ -23858,8 +21767,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10994 components: - pos: 15.5,-41.5 @@ -23867,8 +21774,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10995 components: - pos: 14.5,-41.5 @@ -23876,8 +21781,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10996 components: - pos: 13.5,-41.5 @@ -23885,8 +21788,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10997 components: - pos: 12.5,-41.5 @@ -23894,8 +21795,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10998 components: - pos: 11.5,-41.5 @@ -23903,8 +21802,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10999 components: - pos: 10.5,-41.5 @@ -23912,8 +21809,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11000 components: - pos: 41.5,-44.5 @@ -23921,15 +21816,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11001 components: - pos: 40.5,-44.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11003 components: - pos: 42.5,-40.5 @@ -23937,8 +21828,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11004 components: - pos: 41.5,-40.5 @@ -23946,8 +21835,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11005 components: - pos: 43.5,-40.5 @@ -23955,15 +21842,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11006 components: - pos: 52.5,-37.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11007 components: - pos: 44.5,-40.5 @@ -23971,15 +21854,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11008 components: - pos: 53.5,-37.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11009 components: - pos: 54.5,-37.5 @@ -23987,15 +21866,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11010 components: - pos: 55.5,-37.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11011 components: - pos: 56.5,-37.5 @@ -24003,8 +21878,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11013 components: - pos: 57.5,-37.5 @@ -24012,15 +21885,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11014 components: - pos: 48.5,-35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11015 components: - pos: 48.5,-36.5 @@ -24028,8 +21897,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11016 components: - pos: 48.5,-37.5 @@ -24037,8 +21904,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11020 components: - pos: 44.5,-41.5 @@ -24046,8 +21911,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11021 components: - pos: 58.5,-39.5 @@ -24055,8 +21918,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11022 components: - pos: 58.5,-38.5 @@ -24064,8 +21925,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11023 components: - pos: 58.5,-37.5 @@ -24073,8 +21932,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11024 components: - pos: 58.5,-36.5 @@ -24082,8 +21939,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11025 components: - pos: 58.5,-35.5 @@ -24091,8 +21946,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11026 components: - pos: 58.5,-34.5 @@ -24100,8 +21953,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11027 components: - pos: 47.5,-41.5 @@ -24109,8 +21960,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11028 components: - pos: 49.5,-41.5 @@ -24118,8 +21967,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11029 components: - pos: 51.5,-41.5 @@ -24127,8 +21974,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11030 components: - pos: 53.5,-41.5 @@ -24136,8 +21981,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11031 components: - pos: 55.5,-41.5 @@ -24145,8 +21988,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11032 components: - pos: 58.5,-41.5 @@ -24154,8 +21995,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11033 components: - pos: 57.5,-41.5 @@ -24163,8 +22002,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11038 components: - pos: 44.5,-39.5 @@ -24172,8 +22009,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11039 components: - pos: 44.5,-38.5 @@ -24181,8 +22016,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11040 components: - pos: 44.5,-37.5 @@ -24190,8 +22023,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11041 components: - pos: 40.5,-40.5 @@ -24199,8 +22030,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11042 components: - pos: 39.5,-40.5 @@ -24208,8 +22037,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11043 components: - pos: 39.5,-39.5 @@ -24217,8 +22044,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11044 components: - pos: 39.5,-38.5 @@ -24226,8 +22051,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11045 components: - pos: 39.5,-36.5 @@ -24235,8 +22058,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11046 components: - pos: 39.5,-35.5 @@ -24244,8 +22065,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11047 components: - pos: 39.5,-37.5 @@ -24253,8 +22072,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11048 components: - pos: 39.5,-33.5 @@ -24262,22 +22079,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11049 components: - pos: 39.5,-32.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11050 components: - pos: 38.5,-36.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11051 components: - pos: 37.5,-36.5 @@ -24285,8 +22096,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11052 components: - pos: 37.5,-35.5 @@ -24294,8 +22103,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11054 components: - pos: -52.5,-19.5 @@ -24303,8 +22110,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11055 components: - pos: -52.5,-20.5 @@ -24312,15 +22117,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11163 components: - pos: 14.5,-35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11183 components: - pos: 11.5,-29.5 @@ -24328,232 +22129,166 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11184 components: - pos: 11.5,-28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11185 components: - pos: 11.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11186 components: - pos: 12.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11187 components: - pos: 13.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11188 components: - pos: 14.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11189 components: - pos: 15.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11190 components: - pos: 16.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11191 components: - pos: 17.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11192 components: - pos: 18.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11193 components: - pos: 19.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11194 components: - pos: 20.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11195 components: - pos: 20.5,-28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11196 components: - pos: 20.5,-29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11197 components: - pos: 20.5,-30.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11198 components: - pos: 20.5,-31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11199 components: - pos: 20.5,-32.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11200 components: - pos: 20.5,-33.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11201 components: - pos: 20.5,-34.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11202 components: - pos: 20.5,-35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11203 components: - pos: 20.5,-36.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11204 components: - pos: 11.5,-30.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11205 components: - pos: 11.5,-30.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11206 components: - pos: 11.5,-31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11207 components: - pos: 12.5,-31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11208 components: - pos: 13.5,-31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11209 components: - pos: 14.5,-31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11210 components: - pos: 14.5,-32.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11211 components: - pos: 14.5,-33.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11212 components: - pos: 14.5,-34.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11214 components: - pos: 14.5,-36.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11215 components: - pos: 14.5,-37.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11216 components: - pos: 14.5,-38.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11217 components: - pos: 14.5,-39.5 @@ -24561,8 +22296,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11218 components: - pos: 10.5,-39.5 @@ -24570,155 +22303,111 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11219 components: - pos: 10.5,-38.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11220 components: - pos: 10.5,-37.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11221 components: - pos: 10.5,-36.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11222 components: - pos: 10.5,-35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11223 components: - pos: 10.5,-34.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11224 components: - pos: 10.5,-33.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11225 components: - pos: 10.5,-32.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11226 components: - pos: 10.5,-31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11227 components: - pos: 16.5,-28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11228 components: - pos: 16.5,-29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11229 components: - pos: 16.5,-30.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11230 components: - pos: 16.5,-31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11231 components: - pos: 16.5,-32.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11232 components: - pos: 16.5,-33.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11233 components: - pos: 16.5,-34.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11234 components: - pos: 16.5,-35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11235 components: - pos: 16.5,-36.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11236 components: - pos: 20.5,-37.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11237 components: - pos: 18.5,-37.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11238 components: - pos: 17.5,-37.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11239 components: - pos: 16.5,-37.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11253 components: - pos: 29.5,-38.5 @@ -24726,344 +22415,246 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11254 components: - pos: 29.5,-37.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11255 components: - pos: 29.5,-36.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11256 components: - pos: 30.5,-36.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11257 components: - pos: 31.5,-36.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11258 components: - pos: 32.5,-36.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11259 components: - pos: 33.5,-36.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11260 components: - pos: 34.5,-36.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11261 components: - pos: 34.5,-35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11262 components: - pos: 34.5,-34.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11263 components: - pos: 34.5,-33.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11264 components: - pos: 34.5,-32.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11265 components: - pos: 34.5,-31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11266 components: - pos: 34.5,-30.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11267 components: - pos: 34.5,-29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11268 components: - pos: 34.5,-28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11269 components: - pos: 34.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11270 components: - pos: 33.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11271 components: - pos: 32.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11272 components: - pos: 31.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11273 components: - pos: 30.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11274 components: - pos: 29.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11275 components: - pos: 29.5,-28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11276 components: - pos: 29.5,-29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11277 components: - pos: 29.5,-30.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11278 components: - pos: 29.5,-31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11279 components: - pos: 29.5,-32.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11280 components: - pos: 29.5,-33.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11281 components: - pos: 29.5,-34.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11282 components: - pos: 29.5,-35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11285 components: - pos: 26.5,-36.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11286 components: - pos: 25.5,-36.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11287 components: - pos: 24.5,-36.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11288 components: - pos: 24.5,-35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11289 components: - pos: 24.5,-34.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11290 components: - pos: 24.5,-33.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11291 components: - pos: 24.5,-32.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11292 components: - pos: 24.5,-31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11293 components: - pos: 23.5,-31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11294 components: - pos: 23.5,-30.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11295 components: - pos: 23.5,-29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11296 components: - pos: 23.5,-28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11297 components: - pos: 23.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11298 components: - pos: 24.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11299 components: - pos: 25.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11300 components: - pos: 26.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11301 components: - pos: 25.5,-26.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11302 components: - pos: 25.5,-32.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11304 components: - pos: 24.5,-37.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11380 components: - pos: -10.5,-3.5 @@ -25071,8 +22662,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11381 components: - pos: -10.5,-1.5 @@ -25080,8 +22669,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11398 components: - pos: -52.5,-21.5 @@ -25089,8 +22676,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11400 components: - pos: -52.5,-15.5 @@ -25098,15 +22683,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11475 components: - pos: -50.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11500 components: - pos: -12.5,-4.5 @@ -25114,8 +22695,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11501 components: - pos: -12.5,-5.5 @@ -25123,8 +22702,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11502 components: - pos: -13.5,-5.5 @@ -25132,8 +22709,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11503 components: - pos: -14.5,-5.5 @@ -25141,8 +22716,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11504 components: - pos: -14.5,-4.5 @@ -25150,8 +22723,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11505 components: - pos: -15.5,-4.5 @@ -25159,43 +22730,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11512 components: - pos: 0.5,-52.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11513 components: - pos: 0.5,-51.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11514 components: - pos: 0.5,-50.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11536 components: - pos: -13.5,-52.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11538 components: - pos: -6.5,-52.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11539 components: - pos: -6.5,-51.5 @@ -25203,8 +22762,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11540 components: - pos: -6.5,-50.5 @@ -25212,8 +22769,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11541 components: - pos: -6.5,-49.5 @@ -25221,8 +22776,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11542 components: - pos: -6.5,-48.5 @@ -25230,8 +22783,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11543 components: - pos: -7.5,-48.5 @@ -25239,8 +22790,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11544 components: - pos: -8.5,-48.5 @@ -25248,8 +22797,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11545 components: - pos: -9.5,-48.5 @@ -25257,8 +22804,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11546 components: - pos: -10.5,-48.5 @@ -25266,8 +22811,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11547 components: - pos: -11.5,-48.5 @@ -25275,8 +22818,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11548 components: - pos: -12.5,-48.5 @@ -25284,22 +22825,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11632 components: - pos: 6.5,-52.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11633 components: - pos: 6.5,-51.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11634 components: - pos: 6.5,-50.5 @@ -25307,8 +22842,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11635 components: - pos: 6.5,-49.5 @@ -25316,8 +22849,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11636 components: - pos: 7.5,-49.5 @@ -25325,8 +22856,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11637 components: - pos: 8.5,-49.5 @@ -25334,8 +22863,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11638 components: - pos: 9.5,-49.5 @@ -25343,8 +22870,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11639 components: - pos: 10.5,-49.5 @@ -25352,8 +22877,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11640 components: - pos: 5.5,-49.5 @@ -25361,8 +22884,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11641 components: - pos: 4.5,-49.5 @@ -25370,8 +22891,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11642 components: - pos: 9.5,-48.5 @@ -25379,8 +22898,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11643 components: - pos: 9.5,-47.5 @@ -25388,8 +22905,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11645 components: - pos: 11.5,-49.5 @@ -25397,8 +22912,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11646 components: - pos: 12.5,-49.5 @@ -25406,8 +22919,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11647 components: - pos: 13.5,-49.5 @@ -25415,8 +22926,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11648 components: - pos: -5.5,-49.5 @@ -25424,8 +22933,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11649 components: - pos: -4.5,-49.5 @@ -25433,8 +22940,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11650 components: - pos: -3.5,-49.5 @@ -25442,8 +22947,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11666 components: - pos: -57.5,27.5 @@ -25451,8 +22954,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11667 components: - pos: -56.5,27.5 @@ -25460,8 +22961,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11668 components: - pos: -55.5,27.5 @@ -25469,8 +22968,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11669 components: - pos: -54.5,27.5 @@ -25478,8 +22975,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11670 components: - pos: -53.5,27.5 @@ -25487,8 +22982,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11671 components: - pos: -52.5,27.5 @@ -25496,8 +22989,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11672 components: - pos: -51.5,27.5 @@ -25505,8 +22996,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11673 components: - pos: -50.5,27.5 @@ -25514,8 +23003,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11674 components: - pos: -49.5,27.5 @@ -25523,8 +23010,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11675 components: - pos: -48.5,27.5 @@ -25532,8 +23017,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11676 components: - pos: -47.5,27.5 @@ -25541,8 +23024,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11702 components: - pos: -46.5,27.5 @@ -25550,8 +23031,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11707 components: - pos: -45.5,27.5 @@ -25559,22 +23038,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11758 components: - pos: 12.5,6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11888 components: - pos: 38.5,-5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11953 components: - pos: 58.5,-40.5 @@ -25582,8 +23055,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11954 components: - pos: 56.5,-41.5 @@ -25591,8 +23062,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11955 components: - pos: 54.5,-41.5 @@ -25600,8 +23069,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11956 components: - pos: 52.5,-41.5 @@ -25609,8 +23076,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11957 components: - pos: 50.5,-41.5 @@ -25618,8 +23083,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11958 components: - pos: 48.5,-41.5 @@ -25627,15 +23090,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11959 components: - pos: 38.5,-6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12026 components: - pos: -58.5,29.5 @@ -25643,120 +23102,86 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12054 components: - pos: 16.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12055 components: - pos: 16.5,-1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12056 components: - pos: 16.5,-2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12057 components: - pos: 16.5,-3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12058 components: - pos: 16.5,-4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12059 components: - pos: 16.5,-5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12060 components: - pos: 16.5,-6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12061 components: - pos: 16.5,-7.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12062 components: - pos: 16.5,-8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12063 components: - pos: 16.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12064 components: - pos: 16.5,0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12065 components: - pos: 16.5,1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12066 components: - pos: 16.5,2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12067 components: - pos: 16.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12068 components: - pos: 16.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12069 components: - pos: 16.5,5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12076 components: - pos: 23.5,-14.5 @@ -25764,71 +23189,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12077 components: - pos: 23.5,-13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12078 components: - pos: 23.5,-12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12079 components: - pos: 22.5,-12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12080 components: - pos: 21.5,-12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12081 components: - pos: 20.5,-12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12082 components: - pos: 24.5,-12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12083 components: - pos: 25.5,-12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12084 components: - pos: 26.5,-12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12085 components: - pos: 27.5,-12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12086 components: - pos: 23.5,-14.5 @@ -25836,281 +23241,201 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12087 components: - pos: 23.5,-15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12088 components: - pos: 23.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12089 components: - pos: 23.5,-17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12090 components: - pos: 23.5,-18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12091 components: - pos: 23.5,-19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12092 components: - pos: 23.5,-20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12093 components: - pos: 22.5,-20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12094 components: - pos: 21.5,-20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12095 components: - pos: 22.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12096 components: - pos: 21.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12097 components: - pos: 20.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12098 components: - pos: 24.5,-18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12099 components: - pos: 25.5,-18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12100 components: - pos: 26.5,-18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12101 components: - pos: 27.5,-18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12102 components: - pos: 21.5,-21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12103 components: - pos: 21.5,-22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12104 components: - pos: 21.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12105 components: - pos: 20.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12106 components: - pos: 19.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12107 components: - pos: 18.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12108 components: - pos: 17.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12109 components: - pos: 16.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12110 components: - pos: 16.5,-22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12111 components: - pos: 16.5,-21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12112 components: - pos: 16.5,-20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12113 components: - pos: 16.5,-19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12114 components: - pos: 16.5,-18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12115 components: - pos: 16.5,-17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12116 components: - pos: 16.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12117 components: - pos: 16.5,-15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12118 components: - pos: 16.5,-14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12119 components: - pos: 16.5,-13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12120 components: - pos: 16.5,-12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12121 components: - pos: 16.5,-11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12122 components: - pos: 15.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12123 components: - pos: 14.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12124 components: - pos: 13.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12125 components: - pos: 12.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12126 components: - pos: 11.5,-16.5 @@ -26118,8 +23443,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12127 components: - pos: 10.5,-16.5 @@ -26127,8 +23450,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12128 components: - pos: 10.5,-15.5 @@ -26136,78 +23457,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12129 components: - pos: 12.5,-17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12130 components: - pos: 12.5,-18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12131 components: - pos: 12.5,-19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12132 components: - pos: 12.5,-20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12133 components: - pos: 11.5,-20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12134 components: - pos: 10.5,-20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12135 components: - pos: 9.5,-20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12136 components: - pos: 8.5,-20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12137 components: - pos: 7.5,-20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12278 components: - pos: 17.5,-2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12317 components: - pos: 43.5,-7.5 @@ -26215,540 +23514,386 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12318 components: - pos: 43.5,-8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12319 components: - pos: 43.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12320 components: - pos: 42.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12321 components: - pos: 41.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12322 components: - pos: 40.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12323 components: - pos: 39.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12324 components: - pos: 38.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12325 components: - pos: 37.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12330 components: - pos: 44.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12331 components: - pos: 45.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12332 components: - pos: 46.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12333 components: - pos: 47.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12334 components: - pos: 48.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12335 components: - pos: 49.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12336 components: - pos: 44.5,-10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12337 components: - pos: 44.5,-11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12338 components: - pos: 44.5,-12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12339 components: - pos: 44.5,-13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12340 components: - pos: 44.5,-14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12341 components: - pos: 44.5,-15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12342 components: - pos: 43.5,-13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12343 components: - pos: 42.5,-13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12344 components: - pos: 41.5,-13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12345 components: - pos: 40.5,-13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12346 components: - pos: 39.5,-13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12347 components: - pos: 38.5,-13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12348 components: - pos: 45.5,-13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12349 components: - pos: 46.5,-13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12350 components: - pos: 47.5,-13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12351 components: - pos: 48.5,-13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12352 components: - pos: 49.5,-13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12353 components: - pos: 44.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12354 components: - pos: 43.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12355 components: - pos: 42.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12356 components: - pos: 41.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12357 components: - pos: 40.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12358 components: - pos: 39.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12359 components: - pos: 38.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12360 components: - pos: 37.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12361 components: - pos: 36.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12362 components: - pos: 35.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12363 components: - pos: 34.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12364 components: - pos: 33.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12365 components: - pos: 32.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12366 components: - pos: 33.5,-15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12367 components: - pos: 33.5,-14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12368 components: - pos: 33.5,-13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12369 components: - pos: 34.5,-13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12370 components: - pos: 35.5,-13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12371 components: - pos: 36.5,-13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12372 components: - pos: 32.5,-13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12373 components: - pos: 31.5,-13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12374 components: - pos: 30.5,-13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12375 components: - pos: 29.5,-13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12376 components: - pos: 31.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12377 components: - pos: 30.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12378 components: - pos: 33.5,-17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12379 components: - pos: 33.5,-18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12380 components: - pos: 33.5,-19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12381 components: - pos: 33.5,-20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12382 components: - pos: 32.5,-19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12383 components: - pos: 31.5,-19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12384 components: - pos: 30.5,-19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12385 components: - pos: 29.5,-19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12386 components: - pos: 33.5,-21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12387 components: - pos: 33.5,-22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12388 components: - pos: 33.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12389 components: - pos: 32.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12390 components: - pos: 31.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12391 components: - pos: 30.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12392 components: - pos: 29.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12393 components: - pos: 28.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12394 components: - pos: 27.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12395 components: - pos: 26.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12396 components: - pos: 25.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12397 components: - pos: 24.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12398 components: - pos: 43.5,-6.5 @@ -26756,8 +23901,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12420 components: - pos: 44.5,-6.5 @@ -26765,8 +23908,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12421 components: - pos: 45.5,-6.5 @@ -26774,8 +23915,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12422 components: - pos: 46.5,-6.5 @@ -26783,8 +23922,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12423 components: - pos: 47.5,-6.5 @@ -26792,8 +23929,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12424 components: - pos: 48.5,-6.5 @@ -26801,8 +23936,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12425 components: - pos: 49.5,-6.5 @@ -26810,8 +23943,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12426 components: - pos: 50.5,-6.5 @@ -26819,8 +23950,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12427 components: - pos: 51.5,-6.5 @@ -26828,8 +23957,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12428 components: - pos: 52.5,-6.5 @@ -26837,8 +23964,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12429 components: - pos: 53.5,-6.5 @@ -26846,8 +23971,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12430 components: - pos: 53.5,-7.5 @@ -26855,8 +23978,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12431 components: - pos: 53.5,-8.5 @@ -26864,8 +23985,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12432 components: - pos: 53.5,-9.5 @@ -26873,8 +23992,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12433 components: - pos: 53.5,-10.5 @@ -26882,8 +23999,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12434 components: - pos: 54.5,-10.5 @@ -26891,8 +24006,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12435 components: - pos: 54.5,-11.5 @@ -26900,8 +24013,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12436 components: - pos: 54.5,-12.5 @@ -26909,8 +24020,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12437 components: - pos: 54.5,-13.5 @@ -26918,8 +24027,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12438 components: - pos: 54.5,-14.5 @@ -26927,8 +24034,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12439 components: - pos: 54.5,-15.5 @@ -26936,8 +24041,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12440 components: - pos: 54.5,-15.5 @@ -26945,8 +24048,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12441 components: - pos: 54.5,-16.5 @@ -26954,8 +24055,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12442 components: - pos: 54.5,-17.5 @@ -26963,575 +24062,411 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12447 components: - pos: 39.5,-31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12448 components: - pos: 39.5,-30.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12449 components: - pos: 39.5,-29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12450 components: - pos: 39.5,-28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12451 components: - pos: 39.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12452 components: - pos: 39.5,-26.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12453 components: - pos: 38.5,-28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12454 components: - pos: 37.5,-28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12455 components: - pos: 40.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12456 components: - pos: 41.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12457 components: - pos: 38.5,-31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12458 components: - pos: 37.5,-31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12459 components: - pos: 40.5,-31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12460 components: - pos: 41.5,-31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12461 components: - pos: 42.5,-31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12462 components: - pos: 44.5,-31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12463 components: - pos: 43.5,-31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12464 components: - pos: 44.5,-32.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12465 components: - pos: 44.5,-33.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12466 components: - pos: 44.5,-34.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12468 components: - pos: 46.5,-32.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12469 components: - pos: 47.5,-32.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12470 components: - pos: 48.5,-32.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12471 components: - pos: 49.5,-32.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12472 components: - pos: 50.5,-32.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12473 components: - pos: 51.5,-32.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12474 components: - pos: 51.5,-31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12475 components: - pos: 51.5,-30.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12476 components: - pos: 51.5,-29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12477 components: - pos: 51.5,-28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12478 components: - pos: 51.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12479 components: - pos: 51.5,-26.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12480 components: - pos: 50.5,-26.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12481 components: - pos: 49.5,-26.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12482 components: - pos: 48.5,-26.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12483 components: - pos: 47.5,-26.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12484 components: - pos: 47.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12485 components: - pos: 47.5,-28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12486 components: - pos: 47.5,-29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12487 components: - pos: 48.5,-29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12488 components: - pos: 44.5,-30.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12489 components: - pos: 44.5,-29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12490 components: - pos: 44.5,-28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12491 components: - pos: 44.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12492 components: - pos: 44.5,-26.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12493 components: - pos: 44.5,-25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12494 components: - pos: 44.5,-24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12495 components: - pos: 44.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12496 components: - pos: 43.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12497 components: - pos: 42.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12498 components: - pos: 41.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12499 components: - pos: 40.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12500 components: - pos: 39.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12501 components: - pos: 38.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12502 components: - pos: 37.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12503 components: - pos: 44.5,-22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12504 components: - pos: 44.5,-21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12505 components: - pos: 44.5,-20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12506 components: - pos: 43.5,-20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12507 components: - pos: 42.5,-20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12508 components: - pos: 41.5,-20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12509 components: - pos: 40.5,-20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12510 components: - pos: 39.5,-20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12511 components: - pos: 38.5,-20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12512 components: - pos: 37.5,-20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12514 components: - pos: 46.5,-21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12515 components: - pos: 47.5,-21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12516 components: - pos: 48.5,-21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12517 components: - pos: 49.5,-21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12518 components: - pos: 50.5,-21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12519 components: - pos: 51.5,-21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12520 components: - pos: 49.5,-22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12521 components: - pos: 49.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12522 components: - pos: 49.5,-20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12523 components: - pos: 44.5,-19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12524 components: - pos: 44.5,-18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12525 components: - pos: 45.5,-18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12526 components: - pos: 47.5,-18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12527 components: - pos: 46.5,-18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12528 components: - pos: 48.5,-18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12529 components: - pos: 49.5,-18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12530 components: - pos: 52.5,-21.5 @@ -27539,15 +24474,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12531 components: - pos: 53.5,-21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12532 components: - pos: 54.5,-21.5 @@ -27555,8 +24486,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12533 components: - pos: 54.5,-22.5 @@ -27564,8 +24493,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12534 components: - pos: 54.5,-23.5 @@ -27573,8 +24500,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12535 components: - pos: 55.5,-23.5 @@ -27582,8 +24507,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12536 components: - pos: 56.5,-23.5 @@ -27591,8 +24514,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12537 components: - pos: 57.5,-23.5 @@ -27600,8 +24521,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12538 components: - pos: 58.5,-23.5 @@ -27609,8 +24528,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12539 components: - pos: 58.5,-24.5 @@ -27618,8 +24535,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12540 components: - pos: 58.5,-25.5 @@ -27627,8 +24542,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12541 components: - pos: 58.5,-26.5 @@ -27636,8 +24549,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12542 components: - pos: 54.5,-20.5 @@ -27645,8 +24556,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12543 components: - pos: 54.5,-19.5 @@ -27654,36 +24563,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12544 components: - pos: 55.5,-21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12545 components: - pos: 56.5,-21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12546 components: - pos: 57.5,-21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12547 components: - pos: 58.5,-21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12548 components: - pos: 58.5,-20.5 @@ -27691,8 +24590,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12549 components: - pos: 58.5,-19.5 @@ -27700,8 +24597,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12550 components: - pos: 58.5,-18.5 @@ -27709,8 +24604,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12551 components: - pos: 58.5,-17.5 @@ -27718,8 +24611,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12820 components: - pos: -53.5,-31.5 @@ -27727,8 +24618,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12821 components: - pos: -54.5,-31.5 @@ -27736,8 +24625,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12822 components: - pos: -55.5,-31.5 @@ -27745,8 +24632,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12845 components: - pos: -52.5,-31.5 @@ -27754,15 +24639,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12846 components: - pos: -51.5,-31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12852 components: - pos: 46.5,-41.5 @@ -27770,8 +24651,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12856 components: - pos: -56.5,-16.5 @@ -27779,8 +24658,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12857 components: - pos: -56.5,-15.5 @@ -27788,15 +24665,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12901 components: - pos: -56.5,-22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12904 components: - pos: -62.5,-18.5 @@ -27804,8 +24677,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12915 components: - pos: -64.5,-18.5 @@ -27813,8 +24684,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12926 components: - pos: -67.5,-18.5 @@ -27822,36 +24691,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13036 components: - pos: -49.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13072 components: - pos: 13.5,5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13203 components: - pos: 51.5,16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13205 components: - pos: 51.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13212 components: - pos: 51.5,15.5 @@ -27859,337 +24718,241 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13293 components: - pos: 17.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13294 components: - pos: 16.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13295 components: - pos: 16.5,23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13298 components: - pos: 16.5,20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13299 components: - pos: 16.5,19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13300 components: - pos: 16.5,18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13301 components: - pos: 16.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13303 components: - pos: 51.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13304 components: - pos: 50.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13305 components: - pos: 49.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13306 components: - pos: 48.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13308 components: - pos: 52.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13309 components: - pos: 52.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13310 components: - pos: 52.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13311 components: - pos: 52.5,11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13312 components: - pos: 52.5,10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13313 components: - pos: 52.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13314 components: - pos: 52.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13315 components: - pos: 52.5,7.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13316 components: - pos: 52.5,6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13317 components: - pos: 51.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13318 components: - pos: 50.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13319 components: - pos: 49.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13320 components: - pos: 48.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13321 components: - pos: 17.5,20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13322 components: - pos: 47.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13323 components: - pos: 46.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13324 components: - pos: 45.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13325 components: - pos: 44.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13326 components: - pos: 43.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13327 components: - pos: 44.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13328 components: - pos: 44.5,10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13329 components: - pos: 44.5,11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13330 components: - pos: 44.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13331 components: - pos: 44.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13332 components: - pos: 44.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13333 components: - pos: 45.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13334 components: - pos: 46.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13335 components: - pos: 47.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13336 components: - pos: 48.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13337 components: - pos: 49.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13338 components: - pos: 50.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13339 components: - pos: 51.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13340 components: - pos: 53.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13341 components: - pos: 54.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13342 components: - pos: 55.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13343 components: - pos: 56.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13344 components: - pos: 57.5,14.5 @@ -28197,8 +24960,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13345 components: - pos: 58.5,14.5 @@ -28206,36 +24967,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13346 components: - pos: 53.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13347 components: - pos: 54.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13348 components: - pos: 55.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13349 components: - pos: 56.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13350 components: - pos: 57.5,12.5 @@ -28243,8 +24994,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13351 components: - pos: 58.5,12.5 @@ -28252,85 +25001,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13352 components: - pos: 53.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13353 components: - pos: 54.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13354 components: - pos: 55.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13355 components: - pos: 56.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13356 components: - pos: 49.5,7.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13357 components: - pos: 49.5,6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13358 components: - pos: 44.5,7.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13359 components: - pos: 44.5,6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13360 components: - pos: 44.5,5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13361 components: - pos: 43.5,5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13362 components: - pos: 46.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13363 components: - pos: 46.5,4.5 @@ -28338,57 +25063,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13364 components: - pos: 46.5,2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13365 components: - pos: 46.5,1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13366 components: - pos: 46.5,0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13367 components: - pos: 46.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13368 components: - pos: 46.5,-1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13369 components: - pos: 45.5,-1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13370 components: - pos: 44.5,-1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13371 components: - pos: 44.5,-3.5 @@ -28396,15 +25105,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13372 components: - pos: 44.5,-2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13373 components: - pos: 45.5,-3.5 @@ -28412,8 +25117,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13374 components: - pos: 46.5,-3.5 @@ -28421,8 +25124,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13375 components: - pos: 47.5,-3.5 @@ -28430,8 +25131,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13376 components: - pos: 48.5,-3.5 @@ -28439,8 +25138,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13377 components: - pos: 49.5,-3.5 @@ -28448,8 +25145,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13378 components: - pos: 50.5,-3.5 @@ -28457,8 +25152,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13379 components: - pos: 51.5,-3.5 @@ -28466,8 +25159,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13380 components: - pos: 52.5,-3.5 @@ -28475,8 +25166,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13381 components: - pos: 53.5,-3.5 @@ -28484,43 +25173,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13382 components: - pos: 47.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13383 components: - pos: 48.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13384 components: - pos: 49.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13385 components: - pos: 50.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13386 components: - pos: 51.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13387 components: - pos: 52.5,3.5 @@ -28528,8 +25205,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13388 components: - pos: 53.5,3.5 @@ -28537,8 +25212,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13389 components: - pos: 54.5,3.5 @@ -28546,15 +25219,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13390 components: - pos: 47.5,0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13404 components: - pos: 13.5,16.5 @@ -28562,330 +25231,236 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13405 components: - pos: 13.5,15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13406 components: - pos: 13.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13407 components: - pos: 13.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13408 components: - pos: 13.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13409 components: - pos: 13.5,11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13410 components: - pos: 12.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13411 components: - pos: 11.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13412 components: - pos: 10.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13413 components: - pos: 14.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13414 components: - pos: 15.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13415 components: - pos: 16.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13416 components: - pos: 16.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13417 components: - pos: 16.5,11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13418 components: - pos: 16.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13419 components: - pos: 16.5,15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13420 components: - pos: 17.5,15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13421 components: - pos: 48.5,0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13422 components: - pos: 49.5,0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13423 components: - pos: 50.5,0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13424 components: - pos: 51.5,0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13425 components: - pos: 16.5,10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13426 components: - pos: 16.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13427 components: - pos: 16.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13428 components: - pos: 16.5,7.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13429 components: - pos: 15.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13430 components: - pos: 14.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13431 components: - pos: 13.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13432 components: - pos: 12.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13433 components: - pos: 11.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13434 components: - pos: 10.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13435 components: - pos: 9.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13436 components: - pos: 8.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13437 components: - pos: 7.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13438 components: - pos: 6.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13439 components: - pos: 11.5,7.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13440 components: - pos: 11.5,6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13441 components: - pos: 13.5,6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13442 components: - pos: 14.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13449 components: - pos: 6.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13450 components: - pos: 5.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13451 components: - pos: 4.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13452 components: - pos: 3.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13453 components: - pos: 2.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13454 components: - pos: 1.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13455 components: - pos: 0.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13456 components: - pos: 0.5,10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13457 components: - pos: 52.5,0.5 @@ -28893,8 +25468,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13458 components: - pos: 53.5,0.5 @@ -28902,8 +25475,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13459 components: - pos: 54.5,0.5 @@ -28911,148 +25482,106 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13460 components: - pos: 45.5,2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13461 components: - pos: 44.5,2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13462 components: - pos: 43.5,2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13463 components: - pos: 42.5,2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13464 components: - pos: 41.5,2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13465 components: - pos: 40.5,2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13466 components: - pos: 41.5,1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13467 components: - pos: 41.5,0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13468 components: - pos: 41.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13470 components: - pos: 40.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13471 components: - pos: 39.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13472 components: - pos: 38.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13473 components: - pos: 37.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13474 components: - pos: 37.5,0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13475 components: - pos: 37.5,1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13476 components: - pos: 37.5,2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13523 components: - pos: 6.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13524 components: - pos: 7.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13525 components: - pos: 8.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13528 components: - pos: -0.5,-35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13552 components: - pos: 31.5,-52.5 @@ -29060,8 +25589,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13553 components: - pos: 31.5,-53.5 @@ -29069,8 +25596,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13554 components: - pos: 31.5,-54.5 @@ -29078,8 +25603,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13555 components: - pos: 31.5,-54.5 @@ -29087,8 +25610,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13556 components: - pos: 31.5,-55.5 @@ -29096,8 +25617,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13557 components: - pos: 31.5,-56.5 @@ -29105,8 +25624,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13558 components: - pos: 31.5,-57.5 @@ -29114,8 +25631,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13559 components: - pos: 31.5,-58.5 @@ -29123,8 +25638,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13560 components: - pos: 31.5,-51.5 @@ -29132,71 +25645,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13695 components: - pos: -7.5,-18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13697 components: - pos: -8.5,-18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13722 components: - pos: -8.5,-19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13723 components: - pos: -8.5,-20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13729 components: - pos: -9.5,-14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13730 components: - pos: -9.5,-13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13731 components: - pos: -9.5,-12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13732 components: - pos: -9.5,-11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13736 components: - pos: -9.5,-15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13747 components: - pos: -5.5,-16.5 @@ -29204,57 +25697,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13778 components: - pos: -6.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13779 components: - pos: -6.5,-15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13780 components: - pos: -7.5,-15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13781 components: - pos: -8.5,-15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13782 components: - pos: -6.5,-17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13783 components: - pos: -6.5,-18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13892 components: - pos: -50.5,15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14345 components: - pos: -13.5,14.5 @@ -29262,309 +25739,221 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14346 components: - pos: -14.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14347 components: - pos: -15.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14348 components: - pos: -15.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14349 components: - pos: -15.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14350 components: - pos: -15.5,11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14351 components: - pos: -15.5,10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14352 components: - pos: -15.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14353 components: - pos: -15.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14354 components: - pos: -15.5,7.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14355 components: - pos: -15.5,6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14356 components: - pos: -15.5,5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14357 components: - pos: -15.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14358 components: - pos: -15.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14359 components: - pos: -15.5,-17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14360 components: - pos: -15.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14361 components: - pos: -15.5,-15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14362 components: - pos: -15.5,-14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14363 components: - pos: -15.5,-13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14364 components: - pos: -15.5,-12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14365 components: - pos: -15.5,-11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14366 components: - pos: -15.5,-10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14367 components: - pos: -15.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14368 components: - pos: -15.5,-8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14369 components: - pos: -15.5,-7.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14370 components: - pos: -15.5,-6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14371 components: - pos: -15.5,-5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14372 components: - pos: -15.5,2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14373 components: - pos: -15.5,1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14374 components: - pos: -15.5,0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14375 components: - pos: -15.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14376 components: - pos: -15.5,-1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14377 components: - pos: -15.5,-2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14378 components: - pos: -15.5,15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14379 components: - pos: -15.5,16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14380 components: - pos: -15.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14381 components: - pos: -15.5,18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14382 components: - pos: -15.5,19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14383 components: - pos: -15.5,20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14384 components: - pos: -15.5,21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14385 components: - pos: -15.5,22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14386 components: - pos: -15.5,23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14387 components: - pos: -15.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14388 components: - pos: -14.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14389 components: - pos: -13.5,24.5 @@ -29572,8 +25961,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14390 components: - pos: -12.5,24.5 @@ -29581,302 +25968,216 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14391 components: - pos: -11.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14392 components: - pos: -10.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14393 components: - pos: -14.5,16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14394 components: - pos: -13.5,16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14395 components: - pos: -12.5,16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14396 components: - pos: -11.5,16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14397 components: - pos: -10.5,16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14398 components: - pos: -9.5,16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14399 components: - pos: -8.5,16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14400 components: - pos: -7.5,16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14401 components: - pos: -7.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14402 components: - pos: -7.5,18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14403 components: - pos: -7.5,19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14404 components: - pos: -7.5,20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14405 components: - pos: -7.5,21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14406 components: - pos: -7.5,22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14407 components: - pos: -7.5,23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14408 components: - pos: -7.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14409 components: - pos: -7.5,25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14410 components: - pos: -9.5,15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14411 components: - pos: -9.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14412 components: - pos: -9.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14413 components: - pos: -9.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14414 components: - pos: -9.5,11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14415 components: - pos: -9.5,10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14416 components: - pos: -9.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14417 components: - pos: -9.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14418 components: - pos: -10.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14419 components: - pos: -11.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14420 components: - pos: -12.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14421 components: - pos: -13.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14422 components: - pos: -14.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14423 components: - pos: -8.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14424 components: - pos: -7.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14425 components: - pos: -6.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14426 components: - pos: -5.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14427 components: - pos: -4.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14428 components: - pos: -4.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14429 components: - pos: -3.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14430 components: - pos: -2.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14431 components: - pos: -1.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14453 components: - pos: -21.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14563 components: - pos: -23.5,22.5 @@ -29884,386 +26185,276 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14564 components: - pos: -23.5,21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14565 components: - pos: -23.5,20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14566 components: - pos: -23.5,19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14567 components: - pos: -23.5,18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14568 components: - pos: -23.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14569 components: - pos: -23.5,16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14570 components: - pos: -23.5,15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14571 components: - pos: -23.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14572 components: - pos: -23.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14573 components: - pos: -23.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14574 components: - pos: -23.5,11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14575 components: - pos: -24.5,11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14576 components: - pos: -25.5,11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14577 components: - pos: -25.5,10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14578 components: - pos: -25.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14579 components: - pos: -25.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14580 components: - pos: -26.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14581 components: - pos: -27.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14582 components: - pos: -28.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14583 components: - pos: -29.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14584 components: - pos: -30.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14585 components: - pos: -24.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14586 components: - pos: -23.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14587 components: - pos: -22.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14588 components: - pos: -21.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14589 components: - pos: -20.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14590 components: - pos: -19.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14591 components: - pos: -18.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14592 components: - pos: -26.5,11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14593 components: - pos: -27.5,11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14594 components: - pos: -27.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14595 components: - pos: -27.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14596 components: - pos: -27.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14597 components: - pos: -27.5,15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14598 components: - pos: -27.5,16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14599 components: - pos: -27.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14600 components: - pos: -27.5,18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14601 components: - pos: -27.5,19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14602 components: - pos: -27.5,20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14603 components: - pos: -27.5,21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14604 components: - pos: -26.5,20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14605 components: - pos: -25.5,20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14606 components: - pos: -24.5,20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14607 components: - pos: -22.5,20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14608 components: - pos: -21.5,20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14609 components: - pos: -19.5,20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14610 components: - pos: -19.5,20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14612 components: - pos: -19.5,18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14613 components: - pos: -19.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14614 components: - pos: -19.5,16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14615 components: - pos: -19.5,15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14616 components: - pos: -20.5,20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14617 components: - pos: -22.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14626 components: - pos: -20.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15032 components: - pos: -25.5,46.5 @@ -30271,8 +26462,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15420 components: - pos: -25.5,48.5 @@ -30280,204 +26469,146 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15665 components: - pos: -23.5,23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15666 components: - pos: -23.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15667 components: - pos: -22.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15668 components: - pos: -21.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15669 components: - pos: -20.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15670 components: - pos: -19.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15671 components: - pos: -18.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15672 components: - pos: -24.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15673 components: - pos: -25.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15674 components: - pos: -26.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15675 components: - pos: -27.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15676 components: - pos: -28.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15677 components: - pos: -29.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15678 components: - pos: -30.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15679 components: - pos: -31.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15680 components: - pos: -32.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15681 components: - pos: -33.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15682 components: - pos: -34.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15683 components: - pos: -35.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15684 components: - pos: -36.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15685 components: - pos: -37.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15686 components: - pos: -36.5,25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15687 components: - pos: -36.5,26.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15688 components: - pos: -31.5,25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15689 components: - pos: -31.5,26.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15690 components: - pos: -27.5,25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15691 components: - pos: -27.5,26.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15840 components: - pos: -50.5,16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16361 components: - pos: -3.5,35.5 @@ -30485,15 +26616,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16407 components: - pos: -2.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16506 components: - pos: 5.5,37.5 @@ -30501,148 +26628,106 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16507 components: - pos: 5.5,36.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16508 components: - pos: 5.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16509 components: - pos: 5.5,34.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16510 components: - pos: 4.5,36.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16511 components: - pos: 3.5,36.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16512 components: - pos: 2.5,36.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16513 components: - pos: 1.5,36.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16514 components: - pos: 0.5,36.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16515 components: - pos: -0.5,36.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16516 components: - pos: -1.5,36.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16517 components: - pos: -1.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16518 components: - pos: -1.5,34.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16519 components: - pos: -1.5,33.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16520 components: - pos: -1.5,32.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16521 components: - pos: -1.5,31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16522 components: - pos: 2.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16523 components: - pos: 2.5,34.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16524 components: - pos: 2.5,33.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16525 components: - pos: 2.5,32.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16526 components: - pos: 2.5,31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16531 components: - pos: -5.5,35.5 @@ -30650,8 +26735,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16532 components: - pos: -5.5,36.5 @@ -30659,8 +26742,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16533 components: - pos: -5.5,38.5 @@ -30668,8 +26749,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16534 components: - pos: -5.5,39.5 @@ -30677,8 +26756,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16535 components: - pos: -5.5,37.5 @@ -30686,8 +26763,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16721 components: - pos: 2.5,22.5 @@ -30695,85 +26770,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16722 components: - pos: 2.5,23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16723 components: - pos: 2.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16724 components: - pos: 1.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16725 components: - pos: 0.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16726 components: - pos: -0.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16727 components: - pos: -1.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16728 components: - pos: -2.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16729 components: - pos: -3.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16730 components: - pos: 3.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16731 components: - pos: 4.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16732 components: - pos: 5.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16733 components: - pos: 6.5,24.5 @@ -30781,8 +26832,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16734 components: - pos: 6.5,25.5 @@ -30790,8 +26839,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16735 components: - pos: 6.5,26.5 @@ -30799,8 +26846,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16736 components: - pos: 6.5,27.5 @@ -30808,8 +26853,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16737 components: - pos: 6.5,28.5 @@ -30817,8 +26860,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16738 components: - pos: 6.5,29.5 @@ -30826,8 +26867,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16739 components: - pos: 6.5,30.5 @@ -30835,8 +26874,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16740 components: - pos: 6.5,31.5 @@ -30844,295 +26881,211 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16741 components: - pos: -3.5,25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16742 components: - pos: -3.5,26.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16743 components: - pos: -3.5,27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16744 components: - pos: -3.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16745 components: - pos: -2.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16746 components: - pos: -1.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16747 components: - pos: -0.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16748 components: - pos: 0.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16749 components: - pos: 1.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16750 components: - pos: -4.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16751 components: - pos: -5.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16752 components: - pos: -6.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16753 components: - pos: -7.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16754 components: - pos: -8.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16755 components: - pos: -9.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16756 components: - pos: -10.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16757 components: - pos: -11.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16758 components: - pos: -12.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16759 components: - pos: -11.5,29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16760 components: - pos: -11.5,30.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16761 components: - pos: -11.5,31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16762 components: - pos: -11.5,32.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16763 components: - pos: -6.5,29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16764 components: - pos: -6.5,30.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16765 components: - pos: -6.5,31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16766 components: - pos: -6.5,32.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16767 components: - pos: -3.5,23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16768 components: - pos: -3.5,22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16769 components: - pos: -3.5,21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16770 components: - pos: -3.5,20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16771 components: - pos: -3.5,19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16772 components: - pos: -3.5,18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16773 components: - pos: -3.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16774 components: - pos: -3.5,16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16775 components: - pos: -3.5,15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16776 components: - pos: -3.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16777 components: - pos: -2.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16778 components: - pos: -1.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16779 components: - pos: -0.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16780 components: - pos: 0.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16781 components: - pos: 0.5,15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16782 components: - pos: 0.5,16.5 @@ -31140,197 +27093,141 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16783 components: - pos: 0.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16784 components: - pos: 0.5,18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16785 components: - pos: -0.5,18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16786 components: - pos: -1.5,18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16787 components: - pos: -2.5,18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16788 components: - pos: 1.5,18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16789 components: - pos: 2.5,18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16790 components: - pos: 3.5,18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16791 components: - pos: 4.5,18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16792 components: - pos: 5.5,18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16793 components: - pos: 6.5,18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16794 components: - pos: 6.5,19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16795 components: - pos: 7.5,19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16796 components: - pos: 8.5,19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16797 components: - pos: 9.5,19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16798 components: - pos: 10.5,19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16799 components: - pos: 11.5,19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16800 components: - pos: 12.5,19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16801 components: - pos: 13.5,19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16802 components: - pos: 3.5,19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16803 components: - pos: 3.5,20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16804 components: - pos: 3.5,20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16805 components: - pos: 5.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16806 components: - pos: 5.5,16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16807 components: - pos: 5.5,15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16808 components: - pos: 5.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16809 components: - pos: 5.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16810 components: - pos: -18.5,31.5 @@ -31338,190 +27235,136 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16811 components: - pos: -18.5,30.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16812 components: - pos: -18.5,29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16813 components: - pos: -18.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16814 components: - pos: -18.5,27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16815 components: - pos: -17.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16816 components: - pos: -16.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16817 components: - pos: -15.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16818 components: - pos: -19.5,29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16819 components: - pos: -21.5,29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16820 components: - pos: -22.5,29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16821 components: - pos: -20.5,29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16822 components: - pos: -21.5,30.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16823 components: - pos: -21.5,31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16824 components: - pos: -21.5,32.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16825 components: - pos: -22.5,31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16826 components: - pos: -23.5,31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16827 components: - pos: -24.5,31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16828 components: - pos: -25.5,31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16829 components: - pos: -26.5,31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16830 components: - pos: -27.5,31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16831 components: - pos: -28.5,31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16832 components: - pos: -29.5,31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16833 components: - pos: -30.5,31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16834 components: - pos: -31.5,31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16835 components: - pos: -32.5,31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16836 components: - pos: -32.5,30.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16837 components: - pos: -40.5,29.5 @@ -31529,8 +27372,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16838 components: - pos: -38.5,47.5 @@ -31538,8 +27379,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16839 components: - pos: -36.5,47.5 @@ -31547,8 +27386,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16840 components: - pos: -37.5,47.5 @@ -31556,8 +27393,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16841 components: - pos: -35.5,47.5 @@ -31565,8 +27400,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16842 components: - pos: -35.5,46.5 @@ -31574,8 +27407,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16843 components: - pos: -35.5,45.5 @@ -31583,8 +27414,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16844 components: - pos: -40.5,30.5 @@ -31592,8 +27421,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16845 components: - pos: -39.5,47.5 @@ -31601,8 +27428,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16846 components: - pos: -41.5,31.5 @@ -31610,8 +27435,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16847 components: - pos: -42.5,31.5 @@ -31619,8 +27442,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16848 components: - pos: -43.5,31.5 @@ -31628,8 +27449,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16849 components: - pos: -44.5,31.5 @@ -31637,8 +27456,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16850 components: - pos: -45.5,31.5 @@ -31646,8 +27463,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16851 components: - pos: -46.5,31.5 @@ -31655,8 +27470,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16852 components: - pos: -46.5,32.5 @@ -31664,8 +27477,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16853 components: - pos: -46.5,33.5 @@ -31673,8 +27484,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16854 components: - pos: -46.5,34.5 @@ -31682,8 +27491,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16855 components: - pos: -46.5,35.5 @@ -31691,8 +27498,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16856 components: - pos: -46.5,36.5 @@ -31700,8 +27505,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16857 components: - pos: -46.5,37.5 @@ -31709,8 +27512,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16858 components: - pos: -46.5,38.5 @@ -31718,8 +27519,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16859 components: - pos: -46.5,39.5 @@ -31727,8 +27526,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16860 components: - pos: -46.5,40.5 @@ -31736,8 +27533,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16861 components: - pos: -46.5,41.5 @@ -31745,8 +27540,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16862 components: - pos: -46.5,42.5 @@ -31754,8 +27547,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16863 components: - pos: -46.5,43.5 @@ -31763,8 +27554,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16864 components: - pos: -46.5,44.5 @@ -31772,8 +27561,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16865 components: - pos: -46.5,45.5 @@ -31781,8 +27568,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16866 components: - pos: -45.5,45.5 @@ -31790,8 +27575,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16867 components: - pos: -44.5,45.5 @@ -31799,8 +27582,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16868 components: - pos: -43.5,45.5 @@ -31808,8 +27589,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16869 components: - pos: -42.5,45.5 @@ -31817,8 +27596,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16870 components: - pos: -41.5,45.5 @@ -31826,8 +27603,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16871 components: - pos: -40.5,47.5 @@ -31835,8 +27610,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16872 components: - pos: -40.5,46.5 @@ -31844,8 +27617,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16873 components: - pos: -40.5,45.5 @@ -31853,8 +27624,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16874 components: - pos: -40.5,44.5 @@ -31862,8 +27631,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16875 components: - pos: -40.5,43.5 @@ -31871,8 +27638,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16876 components: - pos: -40.5,42.5 @@ -31880,8 +27645,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16877 components: - pos: -40.5,41.5 @@ -31889,8 +27652,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16878 components: - pos: -40.5,40.5 @@ -31898,8 +27659,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16879 components: - pos: -40.5,39.5 @@ -31907,8 +27666,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16880 components: - pos: -40.5,38.5 @@ -31916,8 +27673,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16881 components: - pos: -40.5,37.5 @@ -31925,8 +27680,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16882 components: - pos: -40.5,36.5 @@ -31934,8 +27687,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16883 components: - pos: -40.5,35.5 @@ -31943,8 +27694,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16884 components: - pos: -40.5,34.5 @@ -31952,8 +27701,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16885 components: - pos: -40.5,33.5 @@ -31961,8 +27708,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16886 components: - pos: -40.5,32.5 @@ -31970,8 +27715,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16887 components: - pos: -40.5,31.5 @@ -31979,8 +27722,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16888 components: - pos: -39.5,29.5 @@ -31988,8 +27729,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16889 components: - pos: -38.5,29.5 @@ -31997,8 +27736,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16890 components: - pos: -37.5,29.5 @@ -32006,8 +27743,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16891 components: - pos: -36.5,29.5 @@ -32015,8 +27750,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16892 components: - pos: -35.5,29.5 @@ -32024,8 +27757,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16893 components: - pos: -34.5,29.5 @@ -32033,8 +27764,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16894 components: - pos: -33.5,29.5 @@ -32042,8 +27771,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16895 components: - pos: -32.5,29.5 @@ -32051,8 +27778,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16896 components: - pos: -35.5,44.5 @@ -32060,8 +27785,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16897 components: - pos: -35.5,43.5 @@ -32069,8 +27792,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16898 components: - pos: -35.5,42.5 @@ -32078,8 +27799,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16899 components: - pos: -34.5,42.5 @@ -32087,8 +27806,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16900 components: - pos: -33.5,42.5 @@ -32096,8 +27813,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16901 components: - pos: -32.5,42.5 @@ -32105,8 +27820,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16902 components: - pos: -31.5,42.5 @@ -32114,8 +27827,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16903 components: - pos: -30.5,42.5 @@ -32123,8 +27834,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16904 components: - pos: -29.5,42.5 @@ -32132,8 +27841,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16905 components: - pos: -28.5,42.5 @@ -32141,8 +27848,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16906 components: - pos: -27.5,42.5 @@ -32150,8 +27855,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16907 components: - pos: -27.5,43.5 @@ -32159,8 +27862,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16908 components: - pos: -27.5,44.5 @@ -32168,8 +27869,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16909 components: - pos: -27.5,45.5 @@ -32177,8 +27876,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16910 components: - pos: -27.5,46.5 @@ -32186,8 +27883,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16911 components: - pos: -27.5,47.5 @@ -32195,8 +27890,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16912 components: - pos: -26.5,47.5 @@ -32204,8 +27897,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16913 components: - pos: -25.5,47.5 @@ -32213,8 +27904,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16914 components: - pos: -24.5,47.5 @@ -32222,15 +27911,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16915 components: - pos: -32.5,32.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16916 components: - pos: -33.5,32.5 @@ -32238,8 +27923,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16917 components: - pos: -34.5,32.5 @@ -32247,8 +27930,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16918 components: - pos: -34.5,33.5 @@ -32256,8 +27937,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16919 components: - pos: -34.5,34.5 @@ -32265,8 +27944,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16920 components: - pos: -34.5,35.5 @@ -32274,8 +27951,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16921 components: - pos: -34.5,36.5 @@ -32283,8 +27958,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16922 components: - pos: -34.5,37.5 @@ -32292,8 +27965,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16923 components: - pos: -34.5,38.5 @@ -32301,8 +27972,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16924 components: - pos: -34.5,39.5 @@ -32310,8 +27979,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16925 components: - pos: -34.5,40.5 @@ -32319,8 +27986,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16926 components: - pos: -34.5,41.5 @@ -32328,134 +27993,96 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16927 components: - pos: -21.5,33.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16928 components: - pos: -21.5,34.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16929 components: - pos: -21.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16930 components: - pos: -20.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16931 components: - pos: -19.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16932 components: - pos: -18.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16933 components: - pos: -17.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16934 components: - pos: -16.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16935 components: - pos: -15.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16936 components: - pos: -14.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16937 components: - pos: -13.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16938 components: - pos: -12.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16939 components: - pos: -11.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16940 components: - pos: -11.5,34.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16941 components: - pos: -16.5,34.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16942 components: - pos: -16.5,33.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16943 components: - pos: -16.5,32.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16944 components: - pos: -21.5,36.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16945 components: - pos: -21.5,37.5 @@ -32463,8 +28090,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16946 components: - pos: -21.5,38.5 @@ -32472,8 +28097,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16947 components: - pos: -21.5,39.5 @@ -32481,8 +28104,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16948 components: - pos: -21.5,40.5 @@ -32490,8 +28111,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16949 components: - pos: -21.5,41.5 @@ -32499,8 +28118,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16950 components: - pos: -21.5,42.5 @@ -32508,8 +28125,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16951 components: - pos: -21.5,43.5 @@ -32517,8 +28132,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16952 components: - pos: -21.5,44.5 @@ -32526,8 +28139,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16953 components: - pos: -21.5,45.5 @@ -32535,8 +28146,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16954 components: - pos: -21.5,46.5 @@ -32544,8 +28153,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16955 components: - pos: -21.5,47.5 @@ -32553,8 +28160,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16956 components: - pos: -21.5,48.5 @@ -32562,8 +28167,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16957 components: - pos: -21.5,49.5 @@ -32571,8 +28174,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16958 components: - pos: -21.5,50.5 @@ -32580,15 +28181,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16959 components: - pos: -11.5,36.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16960 components: - pos: -11.5,37.5 @@ -32596,8 +28193,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16961 components: - pos: -11.5,38.5 @@ -32605,8 +28200,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16962 components: - pos: -11.5,39.5 @@ -32614,8 +28207,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16963 components: - pos: -11.5,40.5 @@ -32623,8 +28214,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16964 components: - pos: -11.5,41.5 @@ -32632,8 +28221,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16965 components: - pos: -11.5,42.5 @@ -32641,8 +28228,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16966 components: - pos: -11.5,43.5 @@ -32650,8 +28235,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16967 components: - pos: -11.5,44.5 @@ -32659,8 +28242,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16968 components: - pos: -11.5,45.5 @@ -32668,8 +28249,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16969 components: - pos: -11.5,46.5 @@ -32677,8 +28256,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16970 components: - pos: -11.5,47.5 @@ -32686,8 +28263,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16971 components: - pos: -11.5,48.5 @@ -32695,8 +28270,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16972 components: - pos: -11.5,49.5 @@ -32704,8 +28277,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16973 components: - pos: -11.5,50.5 @@ -32713,15 +28284,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16974 components: - pos: -16.5,36.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16975 components: - pos: -16.5,37.5 @@ -32729,92 +28296,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16976 components: - pos: -16.5,38.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16977 components: - pos: -16.5,39.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16978 components: - pos: -16.5,40.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16979 components: - pos: -16.5,41.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16980 components: - pos: -16.5,42.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16981 components: - pos: -16.5,43.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16982 components: - pos: -17.5,42.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16983 components: - pos: -18.5,42.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16984 components: - pos: -15.5,42.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16985 components: - pos: -14.5,42.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16986 components: - pos: -13.5,42.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16987 components: - pos: -19.5,42.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16988 components: - pos: -20.5,45.5 @@ -32822,8 +28363,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16989 components: - pos: -19.5,45.5 @@ -32831,8 +28370,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16990 components: - pos: -18.5,45.5 @@ -32840,8 +28377,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16991 components: - pos: -17.5,45.5 @@ -32849,8 +28384,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16992 components: - pos: -16.5,45.5 @@ -32858,8 +28391,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16993 components: - pos: -15.5,45.5 @@ -32867,8 +28398,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16994 components: - pos: -14.5,45.5 @@ -32876,8 +28405,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16995 components: - pos: -13.5,45.5 @@ -32885,8 +28412,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16996 components: - pos: -12.5,45.5 @@ -32894,8 +28419,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16997 components: - pos: -20.5,49.5 @@ -32903,29 +28426,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16998 components: - pos: -19.5,49.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16999 components: - pos: -18.5,49.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17000 components: - pos: -17.5,49.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17001 components: - pos: -16.5,49.5 @@ -32933,29 +28448,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17002 components: - pos: -15.5,49.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17003 components: - pos: -14.5,49.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17004 components: - pos: -13.5,49.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17005 components: - pos: -12.5,49.5 @@ -32963,50 +28470,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17006 components: - pos: -22.5,42.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17007 components: - pos: -23.5,42.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17008 components: - pos: -25.5,42.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17009 components: - pos: -26.5,42.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17010 components: - pos: -24.5,42.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17011 components: - pos: -25.5,41.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17012 components: - pos: -25.5,40.5 @@ -33014,8 +28507,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17013 components: - pos: -25.5,39.5 @@ -33023,22 +28514,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17014 components: - pos: -25.5,38.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17015 components: - pos: -25.5,43.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17016 components: - pos: -25.5,44.5 @@ -33046,8 +28531,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17017 components: - pos: -25.5,45.5 @@ -33055,8 +28538,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17224 components: - pos: -34.5,47.5 @@ -33064,8 +28545,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17225 components: - pos: -33.5,47.5 @@ -33073,8 +28552,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17226 components: - pos: -32.5,47.5 @@ -33082,8 +28559,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17227 components: - pos: -31.5,47.5 @@ -33091,8 +28566,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17228 components: - pos: -30.5,47.5 @@ -33100,8 +28573,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17229 components: - pos: -29.5,47.5 @@ -33109,8 +28580,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17258 components: - pos: -4.5,35.5 @@ -33118,43 +28587,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17394 components: - pos: -63.5,23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17395 components: - pos: -62.5,23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17396 components: - pos: -61.5,23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17397 components: - pos: -60.5,23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17398 components: - pos: -59.5,23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17399 components: - pos: -59.5,21.5 @@ -33162,15 +28619,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17400 components: - pos: -59.5,22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17401 components: - pos: -59.5,20.5 @@ -33178,15 +28631,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17402 components: - pos: -58.5,20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17403 components: - pos: -58.5,19.5 @@ -33194,8 +28643,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17404 components: - pos: -58.5,14.5 @@ -33203,8 +28650,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17405 components: - pos: -58.5,15.5 @@ -33212,43 +28657,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17406 components: - pos: -57.5,20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17407 components: - pos: -56.5,20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17408 components: - pos: -55.5,20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17409 components: - pos: -54.5,20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17410 components: - pos: -58.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17411 components: - pos: -57.5,24.5 @@ -33256,274 +28689,196 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17412 components: - pos: -56.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17413 components: - pos: -55.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17414 components: - pos: -54.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17415 components: - pos: -46.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17416 components: - pos: -45.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17417 components: - pos: -44.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17418 components: - pos: -43.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17419 components: - pos: -42.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17420 components: - pos: -41.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17421 components: - pos: -40.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17422 components: - pos: -39.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17423 components: - pos: -38.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17424 components: - pos: -38.5,23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17425 components: - pos: -38.5,22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17426 components: - pos: -38.5,21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17427 components: - pos: -38.5,20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17428 components: - pos: -38.5,19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17429 components: - pos: -35.5,23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17430 components: - pos: -35.5,22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17431 components: - pos: -35.5,21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17432 components: - pos: -35.5,20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17433 components: - pos: -35.5,19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17434 components: - pos: -31.5,23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17435 components: - pos: -31.5,22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17436 components: - pos: -31.5,21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17437 components: - pos: -31.5,20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17438 components: - pos: -31.5,19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17439 components: - pos: -42.5,23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17440 components: - pos: -42.5,19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17441 components: - pos: -42.5,20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17442 components: - pos: -42.5,21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17443 components: - pos: -42.5,22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17444 components: - pos: -43.5,20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17445 components: - pos: -44.5,20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17446 components: - pos: -45.5,20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17447 components: - pos: -46.5,20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17482 components: - pos: -58.5,25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17483 components: - pos: -58.5,26.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17484 components: - pos: -58.5,27.5 @@ -33531,8 +28886,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17485 components: - pos: -58.5,28.5 @@ -33540,15 +28893,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17486 components: - pos: -42.5,18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17487 components: - pos: -42.5,17.5 @@ -33556,8 +28905,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17488 components: - pos: -43.5,17.5 @@ -33565,15 +28912,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17489 components: - pos: -44.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17495 components: - pos: -41.5,17.5 @@ -33581,8 +28924,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17496 components: - pos: -40.5,17.5 @@ -33590,8 +28931,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17497 components: - pos: -39.5,17.5 @@ -33599,8 +28938,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17498 components: - pos: -38.5,17.5 @@ -33608,8 +28945,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17499 components: - pos: -37.5,17.5 @@ -33617,8 +28952,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17500 components: - pos: -36.5,17.5 @@ -33626,36 +28959,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17501 components: - pos: -28.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17502 components: - pos: -29.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17558 components: - pos: -44.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17698 components: - pos: -48.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17911 components: - pos: -25.5,49.5 @@ -33663,36 +28986,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17973 components: - pos: -9.5,2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17980 components: - pos: -11.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17982 components: - pos: -11.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17983 components: - pos: -12.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17989 components: - pos: -9.5,6.5 @@ -33700,8 +29013,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17990 components: - pos: -7.5,6.5 @@ -33709,8 +29020,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18015 components: - pos: -44.5,15.5 @@ -33718,15 +29027,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18213 components: - pos: -2.5,-10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18294 components: - pos: -2.5,-1.5 @@ -33734,85 +29039,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18295 components: - pos: -2.5,-2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18296 components: - pos: -2.5,-3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18297 components: - pos: -3.5,-3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18298 components: - pos: -3.5,-4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18299 components: - pos: -3.5,-5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18300 components: - pos: -3.5,-6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18301 components: - pos: -2.5,-6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18302 components: - pos: -2.5,-7.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18303 components: - pos: -2.5,-8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18304 components: - pos: -2.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18305 components: - pos: -4.5,-3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18306 components: - pos: -5.5,-3.5 @@ -33820,358 +29101,256 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18307 components: - pos: -6.5,-3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18308 components: - pos: -7.5,-3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18309 components: - pos: -7.5,-4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18310 components: - pos: -7.5,-5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18311 components: - pos: -7.5,-6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18312 components: - pos: -2.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18313 components: - pos: -2.5,0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18314 components: - pos: -2.5,0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18315 components: - pos: -2.5,1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18316 components: - pos: -1.5,1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18317 components: - pos: -0.5,1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18318 components: - pos: 0.5,1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18319 components: - pos: 1.5,1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18320 components: - pos: 2.5,1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18321 components: - pos: 3.5,1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18322 components: - pos: 0.5,2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18323 components: - pos: 0.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18324 components: - pos: 0.5,0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18325 components: - pos: 0.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18326 components: - pos: 0.5,-1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18328 components: - pos: 0.5,-3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18329 components: - pos: 0.5,-4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18330 components: - pos: 0.5,-5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18331 components: - pos: 0.5,-6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18332 components: - pos: 0.5,-7.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18333 components: - pos: 0.5,-8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18334 components: - pos: 0.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18335 components: - pos: 0.5,-10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18336 components: - pos: 0.5,-11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18337 components: - pos: 0.5,-12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18338 components: - pos: 0.5,-13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18339 components: - pos: 0.5,-14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18340 components: - pos: 0.5,-15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18341 components: - pos: 0.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18342 components: - pos: 0.5,-17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18343 components: - pos: 0.5,-18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18344 components: - pos: 0.5,-19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18345 components: - pos: 0.5,-20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18346 components: - pos: 2.5,-6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18347 components: - pos: 3.5,-6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18348 components: - pos: 4.5,-6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18349 components: - pos: 5.5,-6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18350 components: - pos: 6.5,-6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18351 components: - pos: 4.5,1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18352 components: - pos: 4.5,0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18353 components: - pos: 4.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18354 components: - pos: 4.5,-1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18355 components: - pos: 4.5,-2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18356 components: - pos: 4.5,-3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18357 components: - pos: 5.5,-3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18358 components: - pos: 6.5,-3.5 @@ -34179,8 +29358,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18359 components: - pos: 7.5,-3.5 @@ -34188,8 +29365,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18360 components: - pos: 8.5,-3.5 @@ -34197,8 +29372,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18361 components: - pos: 9.5,-3.5 @@ -34206,50 +29379,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18362 components: - pos: 3.5,2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18363 components: - pos: 3.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18364 components: - pos: -2.5,2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18365 components: - pos: -2.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18479 components: - pos: 1.5,-11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18480 components: - pos: 2.5,-11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18481 components: - pos: 3.5,-11.5 @@ -34257,8 +29416,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18482 components: - pos: 3.5,-10.5 @@ -34266,64 +29423,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18631 components: - pos: -22.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18632 components: - pos: -23.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18633 components: - pos: -24.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18634 components: - pos: -25.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18635 components: - pos: -26.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18636 components: - pos: -27.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18637 components: - pos: -28.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18638 components: - pos: -29.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18794 components: - pos: 48.5,-38.5 @@ -34331,8 +29470,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18795 components: - pos: 48.5,-39.5 @@ -34340,8 +29477,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18796 components: - pos: 48.5,-40.5 @@ -34349,120 +29484,86 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18876 components: - pos: 22.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18877 components: - pos: 21.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19268 components: - pos: 17.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19269 components: - pos: 18.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19270 components: - pos: 19.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19271 components: - pos: 18.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19272 components: - pos: 19.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19273 components: - pos: 20.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19274 components: - pos: 21.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19275 components: - pos: 22.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19276 components: - pos: 23.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19277 components: - pos: 24.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19278 components: - pos: 25.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19279 components: - pos: 26.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19280 components: - pos: 27.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19281 components: - pos: 27.5,23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19282 components: - pos: 27.5,22.5 @@ -34470,141 +29571,101 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19283 components: - pos: 17.5,18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19284 components: - pos: 18.5,18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19285 components: - pos: 19.5,18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19286 components: - pos: 20.5,18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19287 components: - pos: 21.5,18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19288 components: - pos: 22.5,18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19289 components: - pos: 23.5,18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19290 components: - pos: 23.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19291 components: - pos: 23.5,16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19292 components: - pos: 23.5,15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19293 components: - pos: 21.5,19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19294 components: - pos: 21.5,20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19295 components: - pos: 21.5,21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19296 components: - pos: 24.5,18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19297 components: - pos: 24.5,19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19298 components: - pos: 24.5,20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19299 components: - pos: 24.5,21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19300 components: - pos: 19.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19301 components: - pos: 19.5,16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19302 components: - pos: 27.5,21.5 @@ -34612,8 +29673,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19303 components: - pos: 26.5,21.5 @@ -34621,8 +29680,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19304 components: - pos: 26.5,20.5 @@ -34630,8 +29687,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19305 components: - pos: 26.5,19.5 @@ -34639,8 +29694,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19306 components: - pos: 26.5,18.5 @@ -34648,8 +29701,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19307 components: - pos: 26.5,17.5 @@ -34657,8 +29708,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19308 components: - pos: 26.5,16.5 @@ -34666,8 +29715,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19309 components: - pos: 26.5,15.5 @@ -34675,36 +29722,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19315 components: - pos: 16.5,25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19316 components: - pos: 16.5,26.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19317 components: - pos: 16.5,27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19318 components: - pos: 16.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19319 components: - pos: 16.5,29.5 @@ -34712,8 +29749,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19320 components: - pos: 16.5,30.5 @@ -34721,85 +29756,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19321 components: - pos: 28.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19322 components: - pos: 29.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19323 components: - pos: 30.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19324 components: - pos: 31.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19325 components: - pos: 32.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19326 components: - pos: 33.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19327 components: - pos: 34.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19328 components: - pos: 35.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19329 components: - pos: 36.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19330 components: - pos: 37.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19331 components: - pos: 38.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19361 components: - pos: 37.5,12.5 @@ -34807,330 +29818,236 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19362 components: - pos: 37.5,11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19363 components: - pos: 37.5,10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19364 components: - pos: 37.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19365 components: - pos: 37.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19366 components: - pos: 38.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19367 components: - pos: 39.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19368 components: - pos: 40.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19369 components: - pos: 41.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19370 components: - pos: 37.5,7.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19371 components: - pos: 37.5,6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19372 components: - pos: 37.5,5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19373 components: - pos: 36.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19374 components: - pos: 35.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19375 components: - pos: 34.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19376 components: - pos: 33.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19377 components: - pos: 32.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19378 components: - pos: 31.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19379 components: - pos: 30.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19380 components: - pos: 29.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19381 components: - pos: 28.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19382 components: - pos: 27.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19383 components: - pos: 26.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19384 components: - pos: 25.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19385 components: - pos: 24.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19386 components: - pos: 23.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19387 components: - pos: 22.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19388 components: - pos: 21.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19389 components: - pos: 20.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19390 components: - pos: 40.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19391 components: - pos: 40.5,10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19392 components: - pos: 40.5,11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19393 components: - pos: 40.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19394 components: - pos: 40.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19395 components: - pos: 40.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19396 components: - pos: 40.5,15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19397 components: - pos: 40.5,16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19398 components: - pos: 40.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19399 components: - pos: 40.5,18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19400 components: - pos: 40.5,19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19401 components: - pos: 40.5,20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19402 components: - pos: 40.5,21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19523 components: - pos: 35.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19524 components: - pos: 35.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19525 components: - pos: 35.5,15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19526 components: - pos: 36.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19527 components: - pos: 37.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19572 components: - pos: 42.5,26.5 @@ -35138,141 +30055,101 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19573 components: - pos: 42.5,25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19574 components: - pos: 42.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19575 components: - pos: 41.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19576 components: - pos: 40.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19577 components: - pos: 43.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19578 components: - pos: 44.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19579 components: - pos: 45.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19580 components: - pos: 46.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19581 components: - pos: 47.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19582 components: - pos: 48.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19583 components: - pos: 49.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19584 components: - pos: 50.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19585 components: - pos: 51.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19586 components: - pos: 52.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19587 components: - pos: 53.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19588 components: - pos: 54.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19589 components: - pos: 55.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19590 components: - pos: 54.5,25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19591 components: - pos: 54.5,26.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19592 components: - pos: 54.5,27.5 @@ -35280,8 +30157,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19593 components: - pos: 54.5,28.5 @@ -35289,8 +30164,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19594 components: - pos: 54.5,29.5 @@ -35298,22 +30171,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19595 components: - pos: 52.5,25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19596 components: - pos: 52.5,26.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19597 components: - pos: 52.5,27.5 @@ -35321,8 +30188,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19598 components: - pos: 52.5,28.5 @@ -35330,8 +30195,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19599 components: - pos: 52.5,29.5 @@ -35339,22 +30202,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19600 components: - pos: 46.5,25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19601 components: - pos: 46.5,26.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19602 components: - pos: 46.5,27.5 @@ -35362,8 +30219,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19603 components: - pos: 46.5,28.5 @@ -35371,8 +30226,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19604 components: - pos: 46.5,29.5 @@ -35380,22 +30233,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19605 components: - pos: 44.5,25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19606 components: - pos: 44.5,26.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19607 components: - pos: 44.5,27.5 @@ -35403,8 +30250,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19608 components: - pos: 44.5,28.5 @@ -35412,8 +30257,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19609 components: - pos: 44.5,29.5 @@ -35421,113 +30264,81 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19610 components: - pos: 44.5,23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19611 components: - pos: 44.5,22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19612 components: - pos: 45.5,22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19613 components: - pos: 46.5,22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19614 components: - pos: 47.5,22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19615 components: - pos: 48.5,22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19616 components: - pos: 49.5,22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19617 components: - pos: 50.5,22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19618 components: - pos: 51.5,22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19619 components: - pos: 52.5,22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19620 components: - pos: 53.5,22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19621 components: - pos: 54.5,22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19622 components: - pos: 54.5,23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19623 components: - pos: 55.5,22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19624 components: - pos: 43.5,22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19625 components: - pos: 46.5,30.5 @@ -35535,8 +30346,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19626 components: - pos: 44.5,30.5 @@ -35544,8 +30353,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19627 components: - pos: 52.5,30.5 @@ -35553,8 +30360,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19628 components: - pos: 54.5,30.5 @@ -35562,8 +30367,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19629 components: - pos: 51.5,30.5 @@ -35571,8 +30374,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19630 components: - pos: 47.5,30.5 @@ -35580,8 +30381,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19631 components: - pos: 48.5,30.5 @@ -35589,8 +30388,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19632 components: - pos: 49.5,30.5 @@ -35598,8 +30395,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19633 components: - pos: 50.5,30.5 @@ -35607,22 +30402,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19645 components: - pos: 35.5,16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19646 components: - pos: 35.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19647 components: - pos: 27.5,18.5 @@ -35630,8 +30419,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19648 components: - pos: 28.5,18.5 @@ -35639,8 +30426,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19649 components: - pos: 29.5,18.5 @@ -35648,8 +30433,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19650 components: - pos: 29.5,17.5 @@ -35657,8 +30440,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19651 components: - pos: 29.5,16.5 @@ -35666,8 +30447,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19652 components: - pos: 29.5,15.5 @@ -35675,8 +30454,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19653 components: - pos: 29.5,14.5 @@ -35684,8 +30461,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19654 components: - pos: 29.5,13.5 @@ -35693,8 +30468,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19655 components: - pos: 29.5,12.5 @@ -35702,8 +30475,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19656 components: - pos: 28.5,12.5 @@ -35711,8 +30482,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19657 components: - pos: 28.5,11.5 @@ -35720,22 +30489,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19658 components: - pos: 39.5,21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19659 components: - pos: 38.5,21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19660 components: - pos: 37.5,21.5 @@ -35743,8 +30506,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19661 components: - pos: 36.5,21.5 @@ -35752,8 +30513,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19662 components: - pos: 35.5,21.5 @@ -35761,8 +30520,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19663 components: - pos: 35.5,20.5 @@ -35770,8 +30527,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19664 components: - pos: 34.5,20.5 @@ -35779,8 +30534,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19665 components: - pos: 33.5,20.5 @@ -35788,8 +30541,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19680 components: - pos: 21.5,5.5 @@ -35797,36 +30548,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19683 components: - pos: 36.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19767 components: - pos: 40.5,-46.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19784 components: - pos: 17.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19791 components: - pos: 20.5,7.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19799 components: - pos: -24.5,-34.5 @@ -35834,15 +30575,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19801 components: - pos: 22.5,-46.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19802 components: - pos: 23.5,-46.5 @@ -35850,8 +30587,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19814 components: - pos: 39.5,-46.5 @@ -35859,22 +30594,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19821 components: - pos: 20.5,25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19823 components: - pos: 20.5,26.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19826 components: - pos: 20.5,27.5 @@ -35882,8 +30611,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19827 components: - pos: 20.5,28.5 @@ -35891,22 +30618,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19844 components: - pos: 20.5,6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19845 components: - pos: 20.5,6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19847 components: - pos: 27.5,5.5 @@ -35914,134 +30635,96 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19848 components: - pos: 27.5,6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19849 components: - pos: 27.5,7.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19853 components: - pos: 23.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19854 components: - pos: 23.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19855 components: - pos: 23.5,2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19856 components: - pos: 23.5,1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19857 components: - pos: 23.5,0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19858 components: - pos: 23.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19859 components: - pos: 22.5,1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19860 components: - pos: 21.5,1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19864 components: - pos: 24.5,1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19865 components: - pos: 25.5,1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19926 components: - pos: 20.5,-5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19927 components: - pos: 21.5,-5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19928 components: - pos: 22.5,-5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19929 components: - pos: 23.5,-5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19930 components: - pos: 24.5,-5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19931 components: - pos: 25.5,-5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19932 components: - pos: 26.5,-5.5 @@ -36049,8 +30732,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19933 components: - pos: 27.5,-5.5 @@ -36058,15 +30739,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19934 components: - pos: 28.5,-5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19935 components: - pos: 29.5,-5.5 @@ -36074,22 +30751,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19936 components: - pos: 17.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19937 components: - pos: 18.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19938 components: - pos: 19.5,-9.5 @@ -36097,8 +30768,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19939 components: - pos: 20.5,-9.5 @@ -36106,8 +30775,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19940 components: - pos: 21.5,-9.5 @@ -36115,8 +30782,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19941 components: - pos: 22.5,-9.5 @@ -36124,8 +30789,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19942 components: - pos: 23.5,-9.5 @@ -36133,8 +30796,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19943 components: - pos: 24.5,-9.5 @@ -36142,8 +30803,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19944 components: - pos: 25.5,-9.5 @@ -36151,8 +30810,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19945 components: - pos: 26.5,-9.5 @@ -36160,8 +30817,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19946 components: - pos: 27.5,-9.5 @@ -36169,8 +30824,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19947 components: - pos: 28.5,-9.5 @@ -36178,8 +30831,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19948 components: - pos: 29.5,-9.5 @@ -36187,8 +30838,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19949 components: - pos: 30.5,-9.5 @@ -36196,8 +30845,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19950 components: - pos: 30.5,-8.5 @@ -36205,8 +30852,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19951 components: - pos: 30.5,-7.5 @@ -36214,8 +30859,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19952 components: - pos: 30.5,-6.5 @@ -36223,8 +30866,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19953 components: - pos: 30.5,-5.5 @@ -36232,8 +30873,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20045 components: - pos: 43.5,-3.5 @@ -36241,8 +30880,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20046 components: - pos: 42.5,-3.5 @@ -36250,8 +30887,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20047 components: - pos: 41.5,-3.5 @@ -36259,8 +30894,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20048 components: - pos: 40.5,-3.5 @@ -36268,8 +30901,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20049 components: - pos: 39.5,-3.5 @@ -36277,8 +30908,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20050 components: - pos: 38.5,-3.5 @@ -36286,8 +30915,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20051 components: - pos: 37.5,-3.5 @@ -36295,8 +30922,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20052 components: - pos: 36.5,-3.5 @@ -36304,15 +30929,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20053 components: - pos: 36.5,5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 20054 components: - pos: 35.5,5.5 @@ -36320,8 +30941,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20055 components: - pos: 34.5,5.5 @@ -36329,8 +30948,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20056 components: - pos: 34.5,4.5 @@ -36338,8 +30955,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20057 components: - pos: 34.5,3.5 @@ -36347,8 +30962,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20058 components: - pos: 34.5,2.5 @@ -36356,8 +30969,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20059 components: - pos: 34.5,1.5 @@ -36365,8 +30976,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20060 components: - pos: 34.5,0.5 @@ -36374,8 +30983,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20061 components: - pos: 34.5,-0.5 @@ -36383,8 +30990,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20091 components: - pos: 62.5,-36.5 @@ -36392,8 +30997,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20092 components: - pos: 62.5,-37.5 @@ -36401,8 +31004,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20093 components: - pos: 62.5,-38.5 @@ -36410,8 +31011,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20094 components: - pos: 61.5,-38.5 @@ -36419,8 +31018,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20095 components: - pos: 63.5,-38.5 @@ -36428,8 +31025,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20096 components: - pos: 64.5,-38.5 @@ -36437,8 +31032,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20097 components: - pos: 65.5,-38.5 @@ -36446,8 +31039,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20098 components: - pos: 66.5,-38.5 @@ -36455,8 +31046,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20561 components: - pos: -24.5,62.5 @@ -36464,8 +31053,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20562 components: - pos: -24.5,61.5 @@ -36473,8 +31060,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20563 components: - pos: -24.5,60.5 @@ -36482,8 +31067,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20564 components: - pos: -24.5,59.5 @@ -36491,8 +31074,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20565 components: - pos: -25.5,60.5 @@ -36500,64 +31081,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20980 components: - pos: 16.5,-10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21032 components: - pos: 8.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21093 components: - pos: 36.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21094 components: - pos: 36.5,-8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21095 components: - pos: 36.5,-7.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21096 components: - pos: 36.5,-6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21110 components: - pos: 46.5,-46.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21111 components: - pos: 46.5,-47.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21112 components: - pos: 47.5,-47.5 @@ -36565,8 +31128,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21113 components: - pos: 48.5,-47.5 @@ -36574,43 +31135,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21114 components: - pos: 49.5,-47.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21115 components: - pos: 50.5,-47.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21116 components: - pos: 51.5,-47.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21117 components: - pos: 52.5,-47.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21118 components: - pos: 53.5,-47.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21119 components: - pos: 54.5,-47.5 @@ -36618,15 +31167,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21120 components: - pos: 55.5,-47.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21121 components: - pos: 56.5,-47.5 @@ -36634,15 +31179,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21122 components: - pos: 57.5,-47.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21123 components: - pos: 58.5,-47.5 @@ -36650,36 +31191,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21124 components: - pos: 58.5,-46.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21125 components: - pos: 58.5,-45.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21126 components: - pos: 54.5,-46.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21127 components: - pos: 54.5,-45.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21128 components: - pos: 50.5,-46.5 @@ -36687,8 +31218,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21129 components: - pos: 50.5,-45.5 @@ -36696,22 +31225,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21158 components: - pos: -33.5,-20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21171 components: - pos: 45.5,-46.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21172 components: - pos: 44.5,-46.5 @@ -36719,15 +31242,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21199 components: - pos: 9.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21248 components: - pos: -58.5,16.5 @@ -36735,8 +31254,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21249 components: - pos: -58.5,17.5 @@ -36744,127 +31261,91 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21250 components: - pos: -59.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21251 components: - pos: -60.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21252 components: - pos: -61.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21253 components: - pos: -62.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21254 components: - pos: -63.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21255 components: - pos: -64.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21256 components: - pos: -65.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21257 components: - pos: -66.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21258 components: - pos: -67.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21259 components: - pos: -68.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21260 components: - pos: -69.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21261 components: - pos: -70.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21262 components: - pos: -71.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21263 components: - pos: -72.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21265 components: - pos: -71.5,19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21266 components: - pos: -71.5,20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21267 components: - pos: -72.5,20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21268 components: - pos: -73.5,20.5 @@ -36872,15 +31353,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21269 components: - pos: 10.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21466 components: - pos: -13.5,-32.5 @@ -36888,8 +31365,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21467 components: - pos: -13.5,-31.5 @@ -36897,8 +31372,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21468 components: - pos: -13.5,-33.5 @@ -36906,8 +31379,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21469 components: - pos: -12.5,-33.5 @@ -36915,8 +31386,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21470 components: - pos: -11.5,-33.5 @@ -36924,15 +31393,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21472 components: - pos: -58.5,23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21516 components: - pos: 8.5,2.5 @@ -36940,15 +31405,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21517 components: - pos: 9.5,2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21518 components: - pos: 9.5,1.5 @@ -36956,29 +31417,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21519 components: - pos: 10.5,1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21520 components: - pos: 11.5,1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21521 components: - pos: 12.5,1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21522 components: - pos: 13.5,1.5 @@ -36986,15 +31439,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21523 components: - pos: 13.5,2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22548 components: - pos: -94.5,15.5 @@ -37002,57 +31451,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22549 components: - pos: -94.5,16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22550 components: - pos: -94.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22551 components: - pos: -95.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22552 components: - pos: -96.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22553 components: - pos: -97.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22554 components: - pos: -98.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22555 components: - pos: -99.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22556 components: - pos: -104.5,14.5 @@ -37060,50 +31493,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22557 components: - pos: -104.5,15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22558 components: - pos: -104.5,16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22559 components: - pos: -104.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22560 components: - pos: -103.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22561 components: - pos: -105.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22562 components: - pos: -104.5,18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22563 components: - pos: -110.5,20.5 @@ -37111,120 +31530,86 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22564 components: - pos: -110.5,19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22565 components: - pos: -110.5,18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22566 components: - pos: -110.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22567 components: - pos: -111.5,16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22568 components: - pos: -111.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22569 components: - pos: -112.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22570 components: - pos: -113.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22571 components: - pos: -109.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22572 components: - pos: -108.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22573 components: - pos: -108.5,16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22574 components: - pos: -114.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22575 components: - pos: -114.5,16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22576 components: - pos: -113.5,18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22577 components: - pos: -113.5,19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22578 components: - pos: -111.5,15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22579 components: - pos: -110.5,23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22580 components: - pos: -110.5,24.5 @@ -37232,267 +31617,191 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22581 components: - pos: -110.5,22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22582 components: - pos: -111.5,22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22583 components: - pos: -112.5,22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22584 components: - pos: -113.5,22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22585 components: - pos: -114.5,22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22586 components: - pos: -115.5,22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22587 components: - pos: -109.5,22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22588 components: - pos: -108.5,22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22589 components: - pos: -107.5,22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22590 components: - pos: -108.5,23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22591 components: - pos: -108.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22592 components: - pos: -108.5,25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22593 components: - pos: -108.5,26.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22594 components: - pos: -108.5,27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22595 components: - pos: -108.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22596 components: - pos: -108.5,29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22597 components: - pos: -114.5,23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22598 components: - pos: -114.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22599 components: - pos: -114.5,25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22600 components: - pos: -114.5,26.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22601 components: - pos: -114.5,27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22602 components: - pos: -114.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22603 components: - pos: -114.5,29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22604 components: - pos: -113.5,29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22605 components: - pos: -115.5,29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22606 components: - pos: -109.5,29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22607 components: - pos: -107.5,29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22608 components: - pos: -109.5,26.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22609 components: - pos: -110.5,26.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22610 components: - pos: -111.5,26.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22611 components: - pos: -112.5,26.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22612 components: - pos: -113.5,26.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22613 components: - pos: -113.5,29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22614 components: - pos: -112.5,29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22615 components: - pos: -111.5,29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22616 components: - pos: -110.5,29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22617 components: - pos: -111.5,30.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22618 components: - pos: -113.5,7.5 @@ -37500,106 +31809,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22619 components: - pos: -113.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22620 components: - pos: -113.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22621 components: - pos: -113.5,10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22622 components: - pos: -113.5,11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22623 components: - pos: -113.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22624 components: - pos: -113.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22625 components: - pos: -112.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22626 components: - pos: -111.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22627 components: - pos: -110.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22628 components: - pos: -109.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22629 components: - pos: -112.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22630 components: - pos: -111.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22631 components: - pos: -110.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22632 components: - pos: -109.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22633 components: - pos: -120.5,14.5 @@ -37607,8 +31886,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22634 components: - pos: -120.5,15.5 @@ -37616,50 +31893,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22635 components: - pos: -120.5,16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22636 components: - pos: -120.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22637 components: - pos: -119.5,16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22638 components: - pos: -118.5,16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22639 components: - pos: -117.5,16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22640 components: - pos: -116.5,16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22641 components: - pos: -120.5,18.5 @@ -37667,8 +31930,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22642 components: - pos: -119.5,18.5 @@ -37676,8 +31937,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22643 components: - pos: -118.5,18.5 @@ -37685,8 +31944,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22644 components: - pos: -117.5,18.5 @@ -37694,8 +31951,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22645 components: - pos: -116.5,18.5 @@ -37703,43 +31958,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22675 components: - pos: -99.5,18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22676 components: - pos: -99.5,19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22677 components: - pos: -99.5,20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22678 components: - pos: -99.5,21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22679 components: - pos: -99.5,22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22680 components: - pos: -98.5,21.5 @@ -37747,8 +31990,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22681 components: - pos: -97.5,21.5 @@ -37756,8 +31997,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22682 components: - pos: -96.5,21.5 @@ -37765,757 +32004,541 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22683 components: - pos: -99.5,16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22684 components: - pos: -99.5,15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22685 components: - pos: -99.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22686 components: - pos: -99.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22687 components: - pos: -99.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22688 components: - pos: -100.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22689 components: - pos: -101.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22690 components: - pos: -102.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22691 components: - pos: -103.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22692 components: - pos: -104.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22693 components: - pos: -104.5,11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22694 components: - pos: -104.5,10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22695 components: - pos: -104.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22696 components: - pos: -104.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22697 components: - pos: -100.5,22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22698 components: - pos: -101.5,22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22699 components: - pos: -102.5,22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22700 components: - pos: -102.5,23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22701 components: - pos: -102.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22702 components: - pos: -102.5,25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22703 components: - pos: -102.5,26.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22704 components: - pos: -102.5,27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22705 components: - pos: -102.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22706 components: - pos: -102.5,29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22707 components: - pos: -102.5,30.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22708 components: - pos: -102.5,31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22709 components: - pos: -102.5,32.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22710 components: - pos: -102.5,33.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22711 components: - pos: -102.5,34.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22712 components: - pos: -102.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22713 components: - pos: -103.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22714 components: - pos: -104.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22715 components: - pos: -105.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22716 components: - pos: -106.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22717 components: - pos: -107.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22718 components: - pos: -108.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22719 components: - pos: -109.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22720 components: - pos: -113.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22721 components: - pos: -114.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22722 components: - pos: -115.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22723 components: - pos: -116.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22724 components: - pos: -117.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22725 components: - pos: -118.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22726 components: - pos: -119.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22727 components: - pos: -120.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22728 components: - pos: -120.5,34.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22729 components: - pos: -120.5,33.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22730 components: - pos: -120.5,32.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22731 components: - pos: -120.5,31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22732 components: - pos: -120.5,30.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22733 components: - pos: -120.5,29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22734 components: - pos: -120.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22735 components: - pos: -120.5,27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22736 components: - pos: -120.5,26.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22737 components: - pos: -120.5,25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22738 components: - pos: -120.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22739 components: - pos: -120.5,23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22740 components: - pos: -120.5,22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22741 components: - pos: -121.5,22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22742 components: - pos: -122.5,22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22743 components: - pos: -123.5,22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22744 components: - pos: -123.5,21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22745 components: - pos: -123.5,20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22746 components: - pos: -123.5,19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22747 components: - pos: -123.5,18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22748 components: - pos: -123.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22749 components: - pos: -122.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22750 components: - pos: -121.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22751 components: - pos: -123.5,16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22752 components: - pos: -123.5,15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22753 components: - pos: -123.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22754 components: - pos: -123.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22755 components: - pos: -123.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22756 components: - pos: -122.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22757 components: - pos: -121.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22758 components: - pos: -120.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22759 components: - pos: -119.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22760 components: - pos: -118.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22761 components: - pos: -118.5,11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22762 components: - pos: -118.5,10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22763 components: - pos: -118.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22764 components: - pos: -118.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22765 components: - pos: -118.5,7.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22766 components: - pos: -111.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22767 components: - pos: -111.5,7.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22768 components: - pos: -111.5,6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22769 components: - pos: -111.5,5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22770 components: - pos: -111.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22771 components: - pos: -111.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22772 components: - pos: -111.5,2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22773 components: - pos: -110.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22774 components: - pos: -109.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22775 components: - pos: -108.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22776 components: - pos: -107.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22777 components: - pos: -106.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22778 components: - pos: -105.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22779 components: - pos: -104.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22780 components: - pos: -112.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22781 components: - pos: -113.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22782 components: - pos: -114.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22783 components: - pos: -115.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22784 components: - pos: -116.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22785 components: - pos: -117.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22786 components: - pos: -118.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22787 components: - pos: -104.5,7.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22788 components: - pos: -109.5,36.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22789 components: - pos: -113.5,36.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23403 components: - pos: -58.5,37.5 @@ -38523,8 +32546,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23428 components: - pos: -58.5,36.5 @@ -38532,8 +32553,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23571 components: - pos: -58.5,38.5 @@ -38541,8 +32560,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23572 components: - pos: -58.5,39.5 @@ -38550,8 +32567,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23574 components: - pos: -58.5,41.5 @@ -38559,8 +32574,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23575 components: - pos: -58.5,42.5 @@ -38568,8 +32581,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23576 components: - pos: -58.5,43.5 @@ -38577,8 +32588,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23577 components: - pos: -57.5,41.5 @@ -38586,8 +32595,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23578 components: - pos: -62.5,48.5 @@ -38595,8 +32602,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23579 components: - pos: -62.5,47.5 @@ -38604,8 +32609,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23580 components: - pos: -62.5,46.5 @@ -38613,8 +32616,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23581 components: - pos: -62.5,45.5 @@ -38622,8 +32623,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23582 components: - pos: -62.5,44.5 @@ -38631,8 +32630,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23583 components: - pos: -61.5,44.5 @@ -38640,8 +32637,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23584 components: - pos: -60.5,44.5 @@ -38649,8 +32644,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23585 components: - pos: -64.5,44.5 @@ -38658,8 +32651,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23586 components: - pos: -64.5,45.5 @@ -38667,8 +32658,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23587 components: - pos: -64.5,46.5 @@ -38676,8 +32665,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23588 components: - pos: -64.5,47.5 @@ -38685,8 +32672,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23589 components: - pos: -63.5,47.5 @@ -38694,8 +32679,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23590 components: - pos: -61.5,48.5 @@ -38703,8 +32686,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23591 components: - pos: -56.5,52.5 @@ -38712,8 +32693,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23592 components: - pos: -57.5,52.5 @@ -38721,8 +32700,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23593 components: - pos: -58.5,52.5 @@ -38730,8 +32707,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23594 components: - pos: -59.5,52.5 @@ -38739,8 +32714,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23595 components: - pos: -59.5,51.5 @@ -38748,8 +32721,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23596 components: - pos: -59.5,50.5 @@ -38757,8 +32728,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23597 components: - pos: -60.5,50.5 @@ -38766,8 +32735,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23598 components: - pos: -61.5,50.5 @@ -38775,8 +32742,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23606 components: - pos: -64.5,40.5 @@ -38784,43 +32749,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23607 components: - pos: -63.5,40.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23608 components: - pos: -62.5,40.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23726 components: - pos: -7.5,2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23728 components: - pos: -7.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23758 components: - pos: 50.5,-20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23759 components: - pos: 50.5,-19.5 @@ -38828,8 +32781,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23771 components: - pos: -1.5,-11.5 @@ -38837,36 +32788,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23772 components: - pos: -0.5,-11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23773 components: - pos: 0.5,-11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23795 components: - pos: 27.5,-36.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23796 components: - pos: 27.5,-35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23797 components: - pos: 27.5,-34.5 @@ -38874,36 +32815,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23798 components: - pos: 26.5,-32.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23824 components: - pos: -48.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23826 components: - pos: -48.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23828 components: - pos: -47.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23829 components: - pos: 18.5,20.5 @@ -38911,8 +32842,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23927 components: - pos: 11.5,-69.5 @@ -38920,162 +32849,116 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23928 components: - pos: 11.5,-70.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23929 components: - pos: 10.5,-70.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23930 components: - pos: 9.5,-70.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23931 components: - pos: 9.5,-69.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23932 components: - pos: 9.5,-68.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23933 components: - pos: 9.5,-67.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23934 components: - pos: 9.5,-66.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23935 components: - pos: 9.5,-65.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23936 components: - pos: 9.5,-64.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23937 components: - pos: 9.5,-63.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23938 components: - pos: 10.5,-63.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23939 components: - pos: 11.5,-63.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23940 components: - pos: 12.5,-63.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23941 components: - pos: 13.5,-63.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23942 components: - pos: 13.5,-64.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23943 components: - pos: 13.5,-65.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23944 components: - pos: 13.5,-66.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23945 components: - pos: 13.5,-67.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23946 components: - pos: 13.5,-68.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23947 components: - pos: 13.5,-69.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23948 components: - pos: 13.5,-70.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23949 components: - pos: 12.5,-70.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - proto: CableApcStack entities: - uid: 662 @@ -39139,8 +33022,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 35 components: - pos: -65.5,-17.5 @@ -39148,15 +33029,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 277 components: - pos: 4.5,-34.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 289 components: - pos: 28.5,-76.5 @@ -39164,8 +33041,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 321 components: - pos: 49.5,-3.5 @@ -39173,8 +33048,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 344 components: - pos: 30.5,-76.5 @@ -39182,8 +33055,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 354 components: - pos: 51.5,-3.5 @@ -39191,8 +33062,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 368 components: - pos: 54.5,-3.5 @@ -39200,15 +33069,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 441 components: - pos: 1.5,-37.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 514 components: - pos: 31.5,-60.5 @@ -39216,15 +33081,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 807 components: - pos: -10.5,27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1118 components: - pos: 43.5,-3.5 @@ -39232,8 +33093,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1203 components: - pos: -78.5,-21.5 @@ -39241,8 +33100,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1204 components: - pos: -76.5,-23.5 @@ -39250,8 +33107,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1258 components: - pos: 30.5,-55.5 @@ -39259,8 +33114,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1371 components: - pos: -72.5,-24.5 @@ -39268,8 +33121,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1381 components: - pos: -88.5,-18.5 @@ -39277,8 +33128,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1383 components: - pos: -86.5,-23.5 @@ -39286,15 +33135,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1411 components: - pos: 1.5,-38.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1507 components: - pos: 31.5,-55.5 @@ -39302,8 +33147,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1508 components: - pos: 31.5,-56.5 @@ -39311,8 +33154,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1509 components: - pos: 31.5,-58.5 @@ -39320,8 +33161,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1626 components: - pos: 31.5,-57.5 @@ -39329,43 +33168,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1792 components: - pos: 4.5,-36.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1865 components: - pos: 5.5,-34.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1949 components: - pos: 5.5,-32.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 2073 components: - pos: 4.5,-35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 2080 components: - pos: 5.5,-33.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 2599 components: - pos: -80.5,-17.5 @@ -39373,8 +33200,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2600 components: - pos: -80.5,-15.5 @@ -39382,8 +33207,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2688 components: - pos: 30.5,-53.5 @@ -39391,8 +33214,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2689 components: - pos: 30.5,-54.5 @@ -39400,8 +33221,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2765 components: - pos: 33.5,-70.5 @@ -39409,8 +33228,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2822 components: - pos: 30.5,-52.5 @@ -39418,8 +33235,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2823 components: - pos: 32.5,-76.5 @@ -39427,8 +33242,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2824 components: - pos: 30.5,-70.5 @@ -39436,8 +33249,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2825 components: - pos: 31.5,-77.5 @@ -39445,8 +33256,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2829 components: - pos: 26.5,-76.5 @@ -39454,8 +33263,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2830 components: - pos: 33.5,-76.5 @@ -39463,8 +33270,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2831 components: - pos: 35.5,-76.5 @@ -39472,8 +33277,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2927 components: - pos: 34.5,-76.5 @@ -39481,8 +33284,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2928 components: - pos: 26.5,-70.5 @@ -39490,8 +33291,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2935 components: - pos: 28.5,-70.5 @@ -39499,8 +33298,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2939 components: - pos: 29.5,-70.5 @@ -39508,15 +33305,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3160 components: - pos: 6.5,-37.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 3378 components: - pos: -65.5,-18.5 @@ -39524,8 +33317,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3383 components: - pos: -63.5,-17.5 @@ -39533,8 +33324,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3395 components: - pos: -52.5,-18.5 @@ -39542,8 +33331,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3396 components: - pos: -62.5,-18.5 @@ -39551,8 +33338,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3469 components: - pos: 31.5,-7.5 @@ -39560,8 +33345,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3471 components: - pos: 62.5,-37.5 @@ -39569,8 +33352,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3474 components: - pos: 64.5,-38.5 @@ -39578,8 +33359,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3498 components: - pos: 46.5,-3.5 @@ -39587,8 +33366,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3499 components: - pos: 52.5,-3.5 @@ -39596,8 +33373,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3544 components: - pos: 52.5,-41.5 @@ -39605,8 +33380,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3556 components: - pos: -84.5,-23.5 @@ -39614,8 +33387,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3584 components: - pos: 63.5,-37.5 @@ -39623,15 +33394,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3685 components: - pos: 0.5,-36.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 3723 components: - pos: 63.5,-38.5 @@ -39639,8 +33406,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3730 components: - pos: 46.5,-41.5 @@ -39648,8 +33413,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3731 components: - pos: 64.5,-38.5 @@ -39657,8 +33420,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3776 components: - pos: 2.5,-36.5 @@ -39666,43 +33427,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3777 components: - pos: -0.5,-40.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 3779 components: - pos: 0.5,-35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 3782 components: - pos: 1.5,-36.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 3783 components: - pos: -0.5,-38.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 3784 components: - pos: 1.5,-39.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4031 components: - pos: -89.5,-18.5 @@ -39710,8 +33459,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4180 components: - pos: -86.5,-16.5 @@ -39719,8 +33466,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4240 components: - pos: -54.5,-18.5 @@ -39728,8 +33473,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4306 components: - pos: -61.5,-18.5 @@ -39737,8 +33480,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4309 components: - pos: -59.5,-18.5 @@ -39746,8 +33487,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4319 components: - pos: -87.5,-18.5 @@ -39755,8 +33494,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4380 components: - pos: -84.5,-24.5 @@ -39764,8 +33501,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4408 components: - pos: -70.5,-18.5 @@ -39773,8 +33508,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4409 components: - pos: -72.5,-20.5 @@ -39782,8 +33515,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4410 components: - pos: -72.5,-22.5 @@ -39791,8 +33522,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4411 components: - pos: -74.5,-19.5 @@ -39800,8 +33529,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4412 components: - pos: -74.5,-20.5 @@ -39809,8 +33536,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4413 components: - pos: -74.5,-23.5 @@ -39818,8 +33543,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4414 components: - pos: -76.5,-19.5 @@ -39827,8 +33550,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4415 components: - pos: -76.5,-21.5 @@ -39836,8 +33557,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4416 components: - pos: -76.5,-24.5 @@ -39845,8 +33564,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4417 components: - pos: -78.5,-19.5 @@ -39854,8 +33571,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4418 components: - pos: -78.5,-22.5 @@ -39863,8 +33578,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4425 components: - pos: -72.5,-12.5 @@ -39872,8 +33585,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4426 components: - pos: -72.5,-14.5 @@ -39881,8 +33592,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4427 components: - pos: -72.5,-16.5 @@ -39890,8 +33599,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4428 components: - pos: -74.5,-12.5 @@ -39899,8 +33606,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4429 components: - pos: -74.5,-14.5 @@ -39908,8 +33613,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4430 components: - pos: -84.5,-14.5 @@ -39917,8 +33620,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4431 components: - pos: -84.5,-16.5 @@ -39926,8 +33627,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4432 components: - pos: -84.5,-19.5 @@ -39935,8 +33634,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4433 components: - pos: -84.5,-21.5 @@ -39944,8 +33641,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4434 components: - pos: -86.5,-19.5 @@ -39953,8 +33648,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4435 components: - pos: -82.5,-12.5 @@ -39962,8 +33655,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4436 components: - pos: -82.5,-14.5 @@ -39971,8 +33662,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4437 components: - pos: -82.5,-16.5 @@ -39980,8 +33669,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4438 components: - pos: -82.5,-17.5 @@ -39989,8 +33676,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4439 components: - pos: -80.5,-16.5 @@ -39998,8 +33683,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4440 components: - pos: -80.5,-20.5 @@ -40007,8 +33690,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4441 components: - pos: -80.5,-22.5 @@ -40016,8 +33697,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4442 components: - pos: -80.5,-24.5 @@ -40025,8 +33704,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4443 components: - pos: -82.5,-20.5 @@ -40034,8 +33711,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4444 components: - pos: -82.5,-22.5 @@ -40043,8 +33718,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4450 components: - pos: -84.5,-12.5 @@ -40052,8 +33725,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4451 components: - pos: -82.5,-15.5 @@ -40061,8 +33732,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4458 components: - pos: 24.5,-70.5 @@ -40070,71 +33739,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4631 components: - pos: 4.5,-37.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4637 components: - pos: 3.5,-37.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4642 components: - pos: 2.5,-37.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4663 components: - pos: 1.5,-40.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4664 components: - pos: -0.5,-39.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4700 components: - pos: 5.5,-37.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4943 components: - pos: -1.5,-53.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4945 components: - pos: -4.5,-53.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4946 components: - pos: -2.5,-53.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4976 components: - pos: 2.5,-35.5 @@ -40142,50 +33791,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5022 components: - pos: 0.5,-38.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5037 components: - pos: -5.5,-53.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5054 components: - pos: -3.5,-53.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5057 components: - pos: -6.5,-53.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5058 components: - pos: 0.5,-53.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5060 components: - pos: -0.5,-53.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5453 components: - pos: 34.5,-2.5 @@ -40193,8 +33828,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5491 components: - pos: 38.5,-70.5 @@ -40202,8 +33835,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5494 components: - pos: 24.5,-68.5 @@ -40211,8 +33842,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5496 components: - pos: -67.5,-18.5 @@ -40220,8 +33849,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5510 components: - pos: 44.5,-3.5 @@ -40229,8 +33856,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5514 components: - pos: -82.5,-13.5 @@ -40238,8 +33863,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5526 components: - pos: 30.5,-64.5 @@ -40247,8 +33870,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5533 components: - pos: -86.5,-17.5 @@ -40256,8 +33877,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5683 components: - pos: 53.5,-3.5 @@ -40265,8 +33884,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5768 components: - pos: 32.5,-70.5 @@ -40274,8 +33891,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5776 components: - pos: 27.5,-70.5 @@ -40283,8 +33898,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5781 components: - pos: 27.5,-76.5 @@ -40292,8 +33905,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5784 components: - pos: 31.5,-78.5 @@ -40301,8 +33912,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5801 components: - pos: 34.5,-66.5 @@ -40310,8 +33919,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5839 components: - pos: 32.5,-66.5 @@ -40319,8 +33926,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5885 components: - pos: -80.5,-13.5 @@ -40328,8 +33933,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5908 components: - pos: 26.5,-66.5 @@ -40337,15 +33940,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6014 components: - pos: 16.5,15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 6050 components: - pos: 37.5,-68.5 @@ -40353,8 +33952,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6051 components: - pos: 25.5,-76.5 @@ -40362,8 +33959,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6052 components: - pos: 37.5,-66.5 @@ -40371,8 +33966,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6053 components: - pos: -84.5,-22.5 @@ -40380,8 +33973,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6054 components: - pos: -84.5,-20.5 @@ -40389,8 +33980,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6068 components: - pos: -84.5,-15.5 @@ -40398,8 +33987,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6069 components: - pos: -76.5,-20.5 @@ -40407,8 +33994,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6070 components: - pos: -76.5,-22.5 @@ -40416,8 +34001,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6071 components: - pos: -86.5,-20.5 @@ -40425,8 +34008,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6088 components: - pos: -82.5,-19.5 @@ -40434,8 +34015,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6089 components: - pos: -78.5,-24.5 @@ -40443,8 +34022,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6092 components: - pos: -80.5,-21.5 @@ -40452,8 +34029,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6119 components: - pos: -80.5,-23.5 @@ -40461,8 +34036,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6131 components: - pos: -74.5,-24.5 @@ -40470,8 +34043,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6132 components: - pos: -84.5,-17.5 @@ -40479,8 +34050,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6195 components: - pos: -82.5,-23.5 @@ -40488,8 +34057,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6204 components: - pos: -72.5,-13.5 @@ -40497,8 +34064,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6205 components: - pos: -72.5,-15.5 @@ -40506,8 +34071,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6243 components: - pos: -72.5,-17.5 @@ -40515,8 +34078,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6265 components: - pos: -74.5,-13.5 @@ -40524,8 +34085,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6273 components: - pos: -74.5,-15.5 @@ -40533,8 +34092,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6274 components: - pos: -74.5,-16.5 @@ -40542,8 +34099,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6276 components: - pos: -82.5,-21.5 @@ -40551,8 +34106,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6334 components: - pos: -78.5,-20.5 @@ -40560,8 +34113,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6337 components: - pos: -50.5,-12.5 @@ -40569,8 +34120,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6356 components: - pos: -55.5,-18.5 @@ -40578,8 +34127,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6359 components: - pos: -57.5,-18.5 @@ -40587,8 +34134,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6670 components: - pos: 30.5,-62.5 @@ -40596,8 +34141,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6671 components: - pos: 29.5,-68.5 @@ -40605,8 +34148,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6672 components: - pos: 30.5,-68.5 @@ -40614,8 +34155,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6676 components: - pos: 25.5,-64.5 @@ -40623,8 +34162,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6679 components: - pos: 26.5,-62.5 @@ -40632,8 +34169,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6685 components: - pos: 26.5,-64.5 @@ -40641,8 +34176,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6687 components: - pos: 28.5,-62.5 @@ -40650,8 +34183,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6689 components: - pos: 28.5,-64.5 @@ -40659,8 +34190,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6690 components: - pos: 25.5,-62.5 @@ -40668,8 +34197,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6691 components: - pos: 29.5,-64.5 @@ -40677,8 +34204,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6692 components: - pos: 29.5,-62.5 @@ -40686,8 +34211,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6724 components: - pos: 31.5,-61.5 @@ -40695,8 +34218,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6725 components: - pos: 27.5,-62.5 @@ -40704,15 +34225,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6779 components: - pos: -33.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 6829 components: - pos: 36.5,-62.5 @@ -40720,8 +34237,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6925 components: - pos: 27.5,-64.5 @@ -40729,8 +34244,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6928 components: - pos: 60.5,-38.5 @@ -40738,8 +34251,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6929 components: - pos: 61.5,-38.5 @@ -40747,8 +34258,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6930 components: - pos: -60.5,-18.5 @@ -40756,8 +34265,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6945 components: - pos: 41.5,-48.5 @@ -40765,8 +34272,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6980 components: - pos: 35.5,-72.5 @@ -40774,8 +34279,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7011 components: - pos: 36.5,-72.5 @@ -40783,8 +34286,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7155 components: - pos: -80.5,-19.5 @@ -40792,8 +34293,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7163 components: - pos: -80.5,-14.5 @@ -40801,8 +34300,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7275 components: - pos: -74.5,-17.5 @@ -40810,8 +34307,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7277 components: - pos: -86.5,-21.5 @@ -40819,8 +34314,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7659 components: - pos: -68.5,-18.5 @@ -40828,8 +34321,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7814 components: - pos: 58.5,-41.5 @@ -40837,8 +34328,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7815 components: - pos: 57.5,-41.5 @@ -40846,8 +34335,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7818 components: - pos: 56.5,-41.5 @@ -40855,8 +34342,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7845 components: - pos: 55.5,-41.5 @@ -40864,15 +34349,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7909 components: - pos: -35.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 7910 components: - pos: 54.5,-41.5 @@ -40880,8 +34361,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7911 components: - pos: 53.5,-41.5 @@ -40889,8 +34368,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7912 components: - pos: 51.5,-41.5 @@ -40898,8 +34375,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7913 components: - pos: 50.5,-41.5 @@ -40907,8 +34382,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7914 components: - pos: 49.5,-41.5 @@ -40916,8 +34389,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7915 components: - pos: 48.5,-41.5 @@ -40925,8 +34396,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7982 components: - pos: -14.5,-9.5 @@ -40934,8 +34403,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7983 components: - pos: -14.5,-8.5 @@ -40943,8 +34410,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7984 components: - pos: -14.5,-7.5 @@ -40952,8 +34417,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7985 components: - pos: -14.5,-6.5 @@ -40961,8 +34424,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7986 components: - pos: -14.5,-5.5 @@ -40970,8 +34431,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7987 components: - pos: -14.5,4.5 @@ -40979,8 +34438,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7988 components: - pos: -14.5,3.5 @@ -40988,8 +34445,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7994 components: - pos: -14.5,2.5 @@ -40997,8 +34452,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7995 components: - pos: -14.5,1.5 @@ -41006,8 +34459,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7996 components: - pos: -14.5,0.5 @@ -41015,8 +34466,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7998 components: - pos: -56.5,-18.5 @@ -41024,8 +34473,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7999 components: - pos: -53.5,-18.5 @@ -41033,8 +34480,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8000 components: - pos: -58.5,-18.5 @@ -41042,8 +34487,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8003 components: - pos: 36.5,-66.5 @@ -41051,8 +34494,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8004 components: - pos: 34.5,-72.5 @@ -41060,8 +34501,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8005 components: - pos: 33.5,-72.5 @@ -41069,8 +34508,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8006 components: - pos: -13.5,0.5 @@ -41078,8 +34515,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8007 components: - pos: -12.5,0.5 @@ -41087,8 +34522,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8008 components: - pos: -11.5,0.5 @@ -41096,8 +34529,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8009 components: - pos: -11.5,-0.5 @@ -41105,8 +34536,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8010 components: - pos: -11.5,-1.5 @@ -41114,8 +34543,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8011 components: - pos: -11.5,-2.5 @@ -41123,8 +34550,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8012 components: - pos: 32.5,-72.5 @@ -41132,8 +34557,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8013 components: - pos: 32.5,-68.5 @@ -41141,8 +34564,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8014 components: - pos: 33.5,-68.5 @@ -41150,8 +34571,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8018 components: - pos: 35.5,-66.5 @@ -41159,8 +34578,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8023 components: - pos: 47.5,-41.5 @@ -41168,8 +34585,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8024 components: - pos: 33.5,-66.5 @@ -41177,8 +34592,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8032 components: - pos: -11.5,-3.5 @@ -41186,8 +34599,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8035 components: - pos: -11.5,-4.5 @@ -41195,8 +34606,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8036 components: - pos: -11.5,-5.5 @@ -41204,8 +34613,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8051 components: - pos: -12.5,-5.5 @@ -41213,8 +34620,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8052 components: - pos: -13.5,-5.5 @@ -41222,8 +34627,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8053 components: - pos: -10.5,-2.5 @@ -41231,8 +34634,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8054 components: - pos: -12.5,-2.5 @@ -41240,8 +34641,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8055 components: - pos: -5.5,-1.5 @@ -41249,29 +34648,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8056 components: - pos: -5.5,-2.5 parent: 7536 type: Transform - - fixtures: {} - type: Fixtures - uid: 8057 components: - pos: -6.5,-2.5 parent: 7536 type: Transform - - fixtures: {} - type: Fixtures - uid: 8058 components: - pos: -7.5,-2.5 parent: 7536 type: Transform - - fixtures: {} - type: Fixtures - uid: 8059 components: - pos: -8.5,-2.5 @@ -41279,8 +34670,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8060 components: - pos: -9.5,-2.5 @@ -41288,22 +34677,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8221 components: - pos: -36.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8240 components: - pos: -34.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8306 components: - pos: -72.5,-23.5 @@ -41311,8 +34694,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8308 components: - pos: -74.5,-21.5 @@ -41320,8 +34701,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8312 components: - pos: 39.5,-3.5 @@ -41329,8 +34708,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8313 components: - pos: -72.5,-19.5 @@ -41338,8 +34715,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8314 components: - pos: -72.5,-21.5 @@ -41347,8 +34722,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8628 components: - pos: -76.5,-12.5 @@ -41356,8 +34729,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8629 components: - pos: -76.5,-13.5 @@ -41365,8 +34736,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8630 components: - pos: -76.5,-14.5 @@ -41374,8 +34743,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8631 components: - pos: -76.5,-15.5 @@ -41383,8 +34750,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8632 components: - pos: -76.5,-16.5 @@ -41392,8 +34757,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8633 components: - pos: -76.5,-17.5 @@ -41401,8 +34764,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8634 components: - pos: -78.5,-13.5 @@ -41410,8 +34771,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8635 components: - pos: -78.5,-14.5 @@ -41419,8 +34778,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8636 components: - pos: -78.5,-15.5 @@ -41428,8 +34785,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8637 components: - pos: -78.5,-16.5 @@ -41437,8 +34792,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8638 components: - pos: -78.5,-17.5 @@ -41446,8 +34799,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8639 components: - pos: -80.5,-12.5 @@ -41455,8 +34806,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8727 components: - pos: -74.5,-22.5 @@ -41464,8 +34813,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8728 components: - pos: -78.5,-23.5 @@ -41473,8 +34820,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8729 components: - pos: -82.5,-24.5 @@ -41482,8 +34827,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8730 components: - pos: -78.5,-12.5 @@ -41491,8 +34834,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8731 components: - pos: -84.5,-13.5 @@ -41500,8 +34841,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8732 components: - pos: -86.5,-22.5 @@ -41509,8 +34848,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8733 components: - pos: -86.5,-24.5 @@ -41518,8 +34855,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8767 components: - pos: 41.5,-45.5 @@ -41527,8 +34862,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8768 components: - pos: 41.5,-49.5 @@ -41536,8 +34869,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8769 components: - pos: 41.5,-44.5 @@ -41545,8 +34876,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8772 components: - pos: 31.5,-59.5 @@ -41554,8 +34883,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8914 components: - pos: 45.5,-41.5 @@ -41563,8 +34890,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8976 components: - pos: 37.5,-70.5 @@ -41572,8 +34897,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8991 components: - pos: 25.5,-70.5 @@ -41581,8 +34904,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8992 components: - pos: 25.5,-72.5 @@ -41590,8 +34911,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8993 components: - pos: 26.5,-72.5 @@ -41599,8 +34918,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8994 components: - pos: 27.5,-72.5 @@ -41608,8 +34925,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8995 components: - pos: 28.5,-72.5 @@ -41617,8 +34932,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8996 components: - pos: 37.5,-72.5 @@ -41626,8 +34939,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9025 components: - pos: 29.5,-74.5 @@ -41635,8 +34946,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9026 components: - pos: 32.5,-74.5 @@ -41644,8 +34953,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9027 components: - pos: 35.5,-74.5 @@ -41653,8 +34960,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9028 components: - pos: 36.5,-74.5 @@ -41662,8 +34967,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9029 components: - pos: 34.5,-70.5 @@ -41671,8 +34974,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9055 components: - pos: 44.5,-41.5 @@ -41680,8 +34981,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9056 components: - pos: 43.5,-41.5 @@ -41689,8 +34988,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9060 components: - pos: 34.5,-5.5 @@ -41698,8 +34995,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9169 components: - pos: 48.5,-3.5 @@ -41707,8 +35002,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9174 components: - pos: 43.5,-4.5 @@ -41716,8 +35009,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9179 components: - pos: 30.5,-74.5 @@ -41725,8 +35016,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9180 components: - pos: 34.5,-74.5 @@ -41734,8 +35023,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9181 components: - pos: 37.5,-76.5 @@ -41743,8 +35030,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9182 components: - pos: 35.5,-70.5 @@ -41752,8 +35037,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9185 components: - pos: 28.5,-74.5 @@ -41761,8 +35044,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9186 components: - pos: 29.5,-72.5 @@ -41770,8 +35051,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9187 components: - pos: 26.5,-74.5 @@ -41779,8 +35058,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9188 components: - pos: 25.5,-74.5 @@ -41788,8 +35065,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9189 components: - pos: 27.5,-74.5 @@ -41797,8 +35072,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9190 components: - pos: 36.5,-76.5 @@ -41806,8 +35079,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9191 components: - pos: 45.5,-3.5 @@ -41815,8 +35086,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9192 components: - pos: 32.5,-7.5 @@ -41824,8 +35093,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9193 components: - pos: 34.5,-3.5 @@ -41833,8 +35100,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9194 components: - pos: 34.5,-6.5 @@ -41842,8 +35107,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9195 components: - pos: 30.5,-8.5 @@ -41851,8 +35114,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9200 components: - pos: 43.5,-5.5 @@ -41860,8 +35121,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9205 components: - pos: 40.5,-3.5 @@ -41869,8 +35128,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9206 components: - pos: 37.5,-3.5 @@ -41878,8 +35135,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9215 components: - pos: 41.5,-3.5 @@ -41887,8 +35142,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9221 components: - pos: 42.5,-3.5 @@ -41896,8 +35149,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9224 components: - pos: 50.5,-3.5 @@ -41905,8 +35156,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9225 components: - pos: 30.5,-7.5 @@ -41914,8 +35163,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9226 components: - pos: 33.5,-7.5 @@ -41923,8 +35170,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9227 components: - pos: 34.5,-7.5 @@ -41932,8 +35177,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9228 components: - pos: 36.5,-70.5 @@ -41941,8 +35184,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9229 components: - pos: 37.5,-74.5 @@ -41950,8 +35191,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9230 components: - pos: 33.5,-74.5 @@ -41959,8 +35198,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9236 components: - pos: 34.5,-4.5 @@ -41968,8 +35205,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9262 components: - pos: 24.5,-76.5 @@ -41977,8 +35212,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9296 components: - pos: 34.5,-62.5 @@ -41986,8 +35219,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9308 components: - pos: 33.5,-62.5 @@ -41995,29 +35226,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9439 components: - pos: -45.5,15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9443 components: - pos: -45.5,16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9444 components: - pos: -45.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9728 components: - pos: -52.5,-17.5 @@ -42025,8 +35248,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9729 components: - pos: -52.5,-20.5 @@ -42034,8 +35255,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9749 components: - pos: -52.5,-19.5 @@ -42043,8 +35262,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9751 components: - pos: -52.5,-21.5 @@ -42052,8 +35269,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9754 components: - pos: -52.5,-16.5 @@ -42061,8 +35276,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9773 components: - pos: -52.5,-14.5 @@ -42070,8 +35283,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9776 components: - pos: -52.5,-15.5 @@ -42079,8 +35290,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9777 components: - pos: -47.5,-29.5 @@ -42088,8 +35297,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9778 components: - pos: -47.5,-30.5 @@ -42097,15 +35304,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9779 components: - pos: -47.5,-31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9780 components: - pos: -46.5,-31.5 @@ -42113,22 +35316,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9781 components: - pos: -45.5,-31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9782 components: - pos: -44.5,-31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9783 components: - pos: -43.5,-31.5 @@ -42136,8 +35333,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9784 components: - pos: -42.5,-31.5 @@ -42145,8 +35340,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9785 components: - pos: -41.5,-31.5 @@ -42154,8 +35347,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9786 components: - pos: -41.5,-30.5 @@ -42163,8 +35354,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9787 components: - pos: -41.5,-29.5 @@ -42172,8 +35361,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9788 components: - pos: -41.5,-28.5 @@ -42181,8 +35368,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9789 components: - pos: -41.5,-27.5 @@ -42190,8 +35375,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9790 components: - pos: -41.5,-26.5 @@ -42199,8 +35382,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9791 components: - pos: -41.5,-25.5 @@ -42208,8 +35389,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9792 components: - pos: -41.5,-24.5 @@ -42217,8 +35396,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9793 components: - pos: -41.5,-23.5 @@ -42226,8 +35403,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9794 components: - pos: -42.5,-23.5 @@ -42235,8 +35410,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9795 components: - pos: -43.5,-23.5 @@ -42244,8 +35417,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9796 components: - pos: -44.5,-23.5 @@ -42253,8 +35424,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9797 components: - pos: -45.5,-23.5 @@ -42262,8 +35431,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9798 components: - pos: -46.5,-23.5 @@ -42271,8 +35438,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9799 components: - pos: -47.5,-23.5 @@ -42280,8 +35445,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9800 components: - pos: -48.5,-23.5 @@ -42289,8 +35452,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9801 components: - pos: -49.5,-23.5 @@ -42298,8 +35459,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9802 components: - pos: -50.5,-23.5 @@ -42307,8 +35466,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9803 components: - pos: -51.5,-23.5 @@ -42316,8 +35473,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9804 components: - pos: -52.5,-13.5 @@ -42325,8 +35480,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9811 components: - pos: -52.5,-22.5 @@ -42334,8 +35487,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9815 components: - pos: -51.5,-13.5 @@ -42343,8 +35494,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9816 components: - pos: -51.5,-12.5 @@ -42352,8 +35501,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9817 components: - pos: -51.5,-11.5 @@ -42361,8 +35508,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9818 components: - pos: -51.5,-10.5 @@ -42370,8 +35515,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9819 components: - pos: -52.5,-10.5 @@ -42379,8 +35522,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9820 components: - pos: -53.5,-10.5 @@ -42388,8 +35529,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9821 components: - pos: -54.5,-10.5 @@ -42397,8 +35536,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9822 components: - pos: -55.5,-10.5 @@ -42406,8 +35543,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9823 components: - pos: -56.5,-10.5 @@ -42415,8 +35550,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9824 components: - pos: -56.5,-9.5 @@ -42424,8 +35557,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9825 components: - pos: -56.5,-8.5 @@ -42433,8 +35564,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9826 components: - pos: -56.5,-7.5 @@ -42442,8 +35571,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9827 components: - pos: -56.5,-6.5 @@ -42451,8 +35578,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9828 components: - pos: -56.5,-5.5 @@ -42460,8 +35585,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9829 components: - pos: -57.5,-5.5 @@ -42469,8 +35592,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9830 components: - pos: -58.5,-5.5 @@ -42478,8 +35599,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9831 components: - pos: -59.5,-5.5 @@ -42487,8 +35606,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9832 components: - pos: -60.5,-5.5 @@ -42496,8 +35613,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9833 components: - pos: -61.5,4.5 @@ -42505,8 +35620,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9834 components: - pos: -61.5,3.5 @@ -42514,8 +35627,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9835 components: - pos: -61.5,2.5 @@ -42523,8 +35634,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9836 components: - pos: -61.5,1.5 @@ -42532,8 +35641,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9837 components: - pos: -61.5,0.5 @@ -42541,8 +35648,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9838 components: - pos: -61.5,-0.5 @@ -42550,8 +35655,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9839 components: - pos: -61.5,-1.5 @@ -42559,8 +35662,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9840 components: - pos: -61.5,-2.5 @@ -42568,8 +35669,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9841 components: - pos: -61.5,-3.5 @@ -42577,8 +35676,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9842 components: - pos: -61.5,-4.5 @@ -42586,8 +35683,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9843 components: - pos: -61.5,-5.5 @@ -42595,8 +35690,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9844 components: - pos: -61.5,5.5 @@ -42604,8 +35697,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9845 components: - pos: -61.5,6.5 @@ -42613,8 +35704,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9846 components: - pos: -61.5,7.5 @@ -42622,8 +35711,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9847 components: - pos: -61.5,8.5 @@ -42631,8 +35718,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9848 components: - pos: -61.5,9.5 @@ -42640,8 +35725,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9849 components: - pos: -61.5,10.5 @@ -42649,8 +35732,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9850 components: - pos: -61.5,11.5 @@ -42658,8 +35739,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9851 components: - pos: -60.5,11.5 @@ -42667,8 +35746,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9852 components: - pos: -59.5,11.5 @@ -42676,8 +35753,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9853 components: - pos: -59.5,10.5 @@ -42685,8 +35760,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9854 components: - pos: -59.5,9.5 @@ -42694,8 +35767,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9855 components: - pos: -59.5,8.5 @@ -42703,8 +35774,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9856 components: - pos: -59.5,7.5 @@ -42712,8 +35781,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9857 components: - pos: -58.5,7.5 @@ -42721,8 +35788,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9858 components: - pos: -41.5,-32.5 @@ -42730,8 +35795,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9859 components: - pos: -40.5,-32.5 @@ -42739,8 +35802,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9860 components: - pos: -39.5,-32.5 @@ -42748,8 +35809,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9861 components: - pos: -38.5,-32.5 @@ -42757,8 +35816,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9862 components: - pos: -37.5,-32.5 @@ -42766,8 +35823,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9863 components: - pos: -36.5,-32.5 @@ -42775,8 +35830,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9868 components: - pos: -33.5,-32.5 @@ -42784,8 +35837,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9882 components: - pos: -19.5,-30.5 @@ -42793,8 +35844,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9883 components: - pos: -19.5,-29.5 @@ -42802,8 +35851,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9884 components: - pos: -19.5,-28.5 @@ -42811,8 +35858,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9885 components: - pos: -19.5,-27.5 @@ -42820,8 +35865,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9886 components: - pos: -19.5,-26.5 @@ -42829,8 +35872,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9887 components: - pos: -18.5,-26.5 @@ -42838,8 +35879,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9888 components: - pos: -17.5,-26.5 @@ -42847,8 +35886,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9889 components: - pos: -16.5,-26.5 @@ -42856,8 +35893,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9890 components: - pos: -15.5,-26.5 @@ -42865,8 +35900,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9891 components: - pos: -14.5,-26.5 @@ -42874,8 +35907,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9892 components: - pos: -13.5,-26.5 @@ -42883,8 +35914,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9893 components: - pos: -13.5,-27.5 @@ -42892,8 +35921,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9894 components: - pos: -13.5,-28.5 @@ -42901,8 +35928,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9895 components: - pos: -13.5,-29.5 @@ -42910,8 +35935,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9896 components: - pos: -13.5,-30.5 @@ -42919,8 +35942,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9897 components: - pos: -13.5,-31.5 @@ -42928,8 +35949,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9898 components: - pos: -13.5,-32.5 @@ -42937,8 +35956,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9899 components: - pos: -7.5,-38.5 @@ -42946,8 +35963,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9900 components: - pos: -7.5,-39.5 @@ -42955,8 +35970,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9901 components: - pos: -7.5,-40.5 @@ -42964,8 +35977,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9902 components: - pos: -7.5,-41.5 @@ -42973,8 +35984,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9903 components: - pos: -8.5,-41.5 @@ -42982,8 +35991,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9904 components: - pos: -9.5,-41.5 @@ -42991,8 +35998,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9905 components: - pos: -10.5,-41.5 @@ -43000,8 +36005,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9906 components: - pos: -11.5,-41.5 @@ -43009,8 +36012,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9907 components: - pos: -12.5,-41.5 @@ -43018,8 +36019,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9908 components: - pos: -13.5,-41.5 @@ -43027,8 +36026,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9909 components: - pos: -14.5,-41.5 @@ -43036,8 +36033,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9910 components: - pos: -14.5,-40.5 @@ -43045,8 +36040,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9911 components: - pos: -14.5,-39.5 @@ -43054,8 +36047,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9912 components: - pos: -14.5,-38.5 @@ -43063,8 +36054,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9913 components: - pos: -14.5,-37.5 @@ -43072,8 +36061,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9914 components: - pos: -15.5,-37.5 @@ -43081,8 +36068,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9915 components: - pos: -15.5,-36.5 @@ -43090,8 +36075,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9916 components: - pos: -15.5,-35.5 @@ -43099,8 +36082,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9917 components: - pos: -15.5,-34.5 @@ -43108,8 +36089,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9918 components: - pos: -15.5,-33.5 @@ -43117,8 +36096,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9919 components: - pos: -16.5,-33.5 @@ -43126,8 +36103,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9920 components: - pos: -17.5,-33.5 @@ -43135,8 +36110,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9921 components: - pos: -18.5,-33.5 @@ -43144,8 +36117,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9922 components: - pos: -19.5,-33.5 @@ -43153,8 +36124,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9923 components: - pos: -20.5,-33.5 @@ -43162,8 +36131,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9924 components: - pos: -21.5,-33.5 @@ -43171,8 +36138,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9925 components: - pos: -22.5,-33.5 @@ -43180,8 +36145,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9926 components: - pos: -23.5,-33.5 @@ -43189,8 +36152,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9927 components: - pos: -24.5,-33.5 @@ -43198,8 +36159,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9928 components: - pos: -25.5,-33.5 @@ -43207,8 +36166,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9929 components: - pos: -26.5,-33.5 @@ -43216,8 +36173,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9930 components: - pos: -26.5,-32.5 @@ -43225,8 +36180,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9931 components: - pos: -27.5,-32.5 @@ -43234,8 +36187,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9932 components: - pos: -28.5,-32.5 @@ -43243,8 +36194,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9933 components: - pos: -29.5,-32.5 @@ -43252,8 +36201,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9934 components: - pos: -30.5,-32.5 @@ -43261,8 +36208,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9935 components: - pos: -31.5,-32.5 @@ -43270,8 +36215,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9936 components: - pos: -32.5,-32.5 @@ -43279,8 +36222,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9937 components: - pos: -19.5,-32.5 @@ -43288,8 +36229,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9938 components: - pos: -19.5,-31.5 @@ -43297,8 +36236,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9939 components: - pos: -47.5,-28.5 @@ -43306,8 +36243,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10061 components: - pos: -35.5,-32.5 @@ -43315,8 +36250,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10062 components: - pos: -34.5,-32.5 @@ -43324,8 +36257,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10134 components: - pos: -52.5,-23.5 @@ -43333,15 +36264,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10313 components: - pos: -57.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10705 components: - pos: -6.5,-41.5 @@ -43349,8 +36276,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10706 components: - pos: -5.5,-41.5 @@ -43358,8 +36283,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10707 components: - pos: -4.5,-41.5 @@ -43367,8 +36290,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10708 components: - pos: -3.5,-41.5 @@ -43376,8 +36297,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10709 components: - pos: -2.5,-41.5 @@ -43385,36 +36304,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10710 components: - pos: -1.5,-41.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10711 components: - pos: -0.5,-41.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10713 components: - pos: 1.5,-41.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10714 components: - pos: 2.5,-41.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10715 components: - pos: 3.5,-41.5 @@ -43422,8 +36331,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10716 components: - pos: 4.5,-41.5 @@ -43431,8 +36338,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10717 components: - pos: 5.5,-41.5 @@ -43440,8 +36345,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10718 components: - pos: 6.5,-41.5 @@ -43449,8 +36352,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10719 components: - pos: 7.5,-41.5 @@ -43458,8 +36359,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10720 components: - pos: 8.5,-41.5 @@ -43467,8 +36366,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10721 components: - pos: 9.5,-41.5 @@ -43476,8 +36373,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10722 components: - pos: 10.5,-41.5 @@ -43485,8 +36380,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10723 components: - pos: 11.5,-41.5 @@ -43494,8 +36387,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10724 components: - pos: 12.5,-41.5 @@ -43503,8 +36394,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10725 components: - pos: 13.5,-41.5 @@ -43512,8 +36401,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10726 components: - pos: 14.5,-41.5 @@ -43521,8 +36408,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10727 components: - pos: 15.5,-41.5 @@ -43530,8 +36415,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10728 components: - pos: 16.5,-41.5 @@ -43539,8 +36422,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10729 components: - pos: 17.5,-41.5 @@ -43548,8 +36429,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10730 components: - pos: 18.5,-41.5 @@ -43557,8 +36436,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10731 components: - pos: 19.5,-41.5 @@ -43566,8 +36443,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10732 components: - pos: 20.5,-41.5 @@ -43575,8 +36450,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10733 components: - pos: 21.5,-41.5 @@ -43584,8 +36457,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10734 components: - pos: 22.5,-41.5 @@ -43593,8 +36464,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10735 components: - pos: 23.5,-41.5 @@ -43602,8 +36471,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10736 components: - pos: 24.5,-41.5 @@ -43611,8 +36478,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10737 components: - pos: 25.5,-41.5 @@ -43620,8 +36485,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10738 components: - pos: 26.5,-41.5 @@ -43629,8 +36492,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10739 components: - pos: 27.5,-41.5 @@ -43638,8 +36499,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10740 components: - pos: 28.5,-41.5 @@ -43647,8 +36506,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10741 components: - pos: 28.5,-40.5 @@ -43656,8 +36513,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10742 components: - pos: 29.5,-40.5 @@ -43665,8 +36520,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10743 components: - pos: 30.5,-40.5 @@ -43674,8 +36527,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10744 components: - pos: 31.5,-40.5 @@ -43683,8 +36534,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10745 components: - pos: 32.5,-40.5 @@ -43692,8 +36541,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10746 components: - pos: 33.5,-40.5 @@ -43701,8 +36548,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10747 components: - pos: 34.5,-40.5 @@ -43710,8 +36555,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10748 components: - pos: 34.5,-41.5 @@ -43719,8 +36562,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10749 components: - pos: 35.5,-41.5 @@ -43728,8 +36569,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10750 components: - pos: 36.5,-41.5 @@ -43737,8 +36576,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10751 components: - pos: 37.5,-41.5 @@ -43746,8 +36583,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10752 components: - pos: 38.5,-41.5 @@ -43755,8 +36590,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10753 components: - pos: 39.5,-41.5 @@ -43764,8 +36597,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10754 components: - pos: 39.5,-40.5 @@ -43773,8 +36604,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10755 components: - pos: 39.5,-39.5 @@ -43782,8 +36611,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10756 components: - pos: 39.5,-38.5 @@ -43791,8 +36618,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10757 components: - pos: 39.5,-37.5 @@ -43800,8 +36625,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10758 components: - pos: 39.5,-36.5 @@ -43809,15 +36632,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10759 components: - pos: 38.5,-36.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10760 components: - pos: 37.5,-36.5 @@ -43825,8 +36644,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10761 components: - pos: 37.5,-35.5 @@ -43834,15 +36651,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10762 components: - pos: 37.5,-34.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10763 components: - pos: 30.5,-50.5 @@ -43850,8 +36663,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10764 components: - pos: 31.5,-50.5 @@ -43859,8 +36670,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10765 components: - pos: 32.5,-50.5 @@ -43868,8 +36677,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10766 components: - pos: 33.5,-50.5 @@ -43877,8 +36684,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10767 components: - pos: 34.5,-50.5 @@ -43886,8 +36691,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10768 components: - pos: 35.5,-50.5 @@ -43895,8 +36698,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10769 components: - pos: 36.5,-50.5 @@ -43904,8 +36705,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10770 components: - pos: 31.5,-52.5 @@ -43913,8 +36712,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10771 components: - pos: 31.5,-51.5 @@ -43922,8 +36719,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10772 components: - pos: 37.5,-50.5 @@ -43931,8 +36726,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10773 components: - pos: 38.5,-50.5 @@ -43940,8 +36733,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10774 components: - pos: 39.5,-50.5 @@ -43949,8 +36740,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10775 components: - pos: 40.5,-50.5 @@ -43958,8 +36747,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10776 components: - pos: 41.5,-50.5 @@ -43967,8 +36754,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10784 components: - pos: 41.5,-47.5 @@ -43976,8 +36761,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10785 components: - pos: 41.5,-46.5 @@ -43985,8 +36768,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10786 components: - pos: 42.5,-41.5 @@ -43994,8 +36775,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10787 components: - pos: 41.5,-41.5 @@ -44003,8 +36782,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10788 components: - pos: 40.5,-41.5 @@ -44012,8 +36789,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10789 components: - pos: 29.5,-50.5 @@ -44021,8 +36796,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10790 components: - pos: 28.5,-50.5 @@ -44030,8 +36803,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10791 components: - pos: 27.5,-50.5 @@ -44039,8 +36810,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10792 components: - pos: 26.5,-50.5 @@ -44048,8 +36817,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10793 components: - pos: 25.5,-50.5 @@ -44057,8 +36824,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10794 components: - pos: 24.5,-50.5 @@ -44066,8 +36831,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10795 components: - pos: 23.5,-50.5 @@ -44075,8 +36838,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10796 components: - pos: 22.5,-50.5 @@ -44084,8 +36845,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10797 components: - pos: 21.5,-50.5 @@ -44093,8 +36852,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10798 components: - pos: 21.5,-49.5 @@ -44102,8 +36859,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10799 components: - pos: 21.5,-48.5 @@ -44111,8 +36866,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10800 components: - pos: 21.5,-47.5 @@ -44120,8 +36873,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10801 components: - pos: 21.5,-46.5 @@ -44129,8 +36880,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10802 components: - pos: 21.5,-45.5 @@ -44138,8 +36887,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10803 components: - pos: 21.5,-44.5 @@ -44147,8 +36894,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10804 components: - pos: 21.5,-43.5 @@ -44156,8 +36901,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10805 components: - pos: 21.5,-42.5 @@ -44165,29 +36908,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10841 components: - pos: 23.5,7.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10863 components: - pos: 23.5,6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10864 components: - pos: 23.5,5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10905 components: - pos: 41.5,-42.5 @@ -44195,8 +36930,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10906 components: - pos: 41.5,-43.5 @@ -44204,8 +36937,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11019 components: - pos: 58.5,-40.5 @@ -44213,8 +36944,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11061 components: - pos: 14.5,-49.5 @@ -44222,8 +36951,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11062 components: - pos: 13.5,-49.5 @@ -44231,8 +36958,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11063 components: - pos: 12.5,-49.5 @@ -44240,8 +36965,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11064 components: - pos: 11.5,-49.5 @@ -44249,8 +36972,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11065 components: - pos: 10.5,-49.5 @@ -44258,8 +36979,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11066 components: - pos: 9.5,-49.5 @@ -44267,8 +36986,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11067 components: - pos: 9.5,-48.5 @@ -44276,8 +36993,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11068 components: - pos: 9.5,-47.5 @@ -44285,8 +37000,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11069 components: - pos: 9.5,-46.5 @@ -44294,8 +37007,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11070 components: - pos: 9.5,-45.5 @@ -44303,8 +37014,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11071 components: - pos: 9.5,-44.5 @@ -44312,8 +37021,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11072 components: - pos: 9.5,-43.5 @@ -44321,8 +37028,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11073 components: - pos: 9.5,-42.5 @@ -44330,8 +37035,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11074 components: - pos: -11.5,-42.5 @@ -44339,8 +37042,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11075 components: - pos: -11.5,-43.5 @@ -44348,8 +37049,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11076 components: - pos: -11.5,-44.5 @@ -44357,8 +37056,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11077 components: - pos: -11.5,-45.5 @@ -44366,8 +37063,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11078 components: - pos: -11.5,-46.5 @@ -44375,8 +37070,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11079 components: - pos: -12.5,-46.5 @@ -44384,8 +37077,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11080 components: - pos: -13.5,-46.5 @@ -44393,8 +37084,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11081 components: - pos: -14.5,-46.5 @@ -44402,8 +37091,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11082 components: - pos: -14.5,-47.5 @@ -44411,8 +37098,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11083 components: - pos: -14.5,-48.5 @@ -44420,8 +37105,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11084 components: - pos: -13.5,-48.5 @@ -44429,8 +37112,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11085 components: - pos: -12.5,-48.5 @@ -44438,8 +37119,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11086 components: - pos: -11.5,-48.5 @@ -44447,8 +37126,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11087 components: - pos: -10.5,-48.5 @@ -44456,8 +37133,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11088 components: - pos: -9.5,-48.5 @@ -44465,8 +37140,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11089 components: - pos: -8.5,-48.5 @@ -44474,8 +37147,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11090 components: - pos: -7.5,-48.5 @@ -44483,8 +37154,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11091 components: - pos: -6.5,-48.5 @@ -44492,8 +37161,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11092 components: - pos: -6.5,-49.5 @@ -44501,8 +37168,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11093 components: - pos: -6.5,-50.5 @@ -44510,8 +37175,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11094 components: - pos: -6.5,-51.5 @@ -44519,64 +37182,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11095 components: - pos: -6.5,-52.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11106 components: - pos: 0.5,-52.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11107 components: - pos: 0.5,-51.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11108 components: - pos: 0.5,-50.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11109 components: - pos: 0.5,-49.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11110 components: - pos: 1.5,-49.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11111 components: - pos: 2.5,-49.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11112 components: - pos: 3.5,-49.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11113 components: - pos: 4.5,-49.5 @@ -44584,8 +37229,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11114 components: - pos: 5.5,-49.5 @@ -44593,8 +37236,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11115 components: - pos: 6.5,-49.5 @@ -44602,8 +37243,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11116 components: - pos: 7.5,-49.5 @@ -44611,8 +37250,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11117 components: - pos: 8.5,-49.5 @@ -44620,15 +37257,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11306 components: - pos: -56.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11348 components: - pos: -49.5,-12.5 @@ -44636,8 +37269,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11349 components: - pos: -48.5,-12.5 @@ -44645,8 +37276,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11350 components: - pos: -47.5,-12.5 @@ -44654,8 +37283,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11351 components: - pos: -46.5,-12.5 @@ -44663,8 +37290,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11352 components: - pos: -45.5,-12.5 @@ -44672,8 +37297,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11353 components: - pos: -44.5,-12.5 @@ -44681,8 +37304,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11354 components: - pos: -43.5,-12.5 @@ -44690,8 +37311,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11355 components: - pos: -42.5,-12.5 @@ -44699,8 +37318,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11356 components: - pos: -41.5,-12.5 @@ -44708,8 +37325,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11357 components: - pos: -40.5,-12.5 @@ -44717,267 +37332,191 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11358 components: - pos: -39.5,-12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11359 components: - pos: -38.5,-12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11360 components: - pos: -37.5,-12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11361 components: - pos: -37.5,-11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11362 components: - pos: -37.5,-10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11363 components: - pos: -37.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11364 components: - pos: -37.5,-8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11365 components: - pos: -37.5,-7.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11366 components: - pos: -37.5,-6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11367 components: - pos: -37.5,-5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11368 components: - pos: -37.5,-4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11369 components: - pos: -37.5,-3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11370 components: - pos: -37.5,-2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11371 components: - pos: -37.5,-1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11372 components: - pos: -37.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11373 components: - pos: -37.5,0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11374 components: - pos: -37.5,1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11375 components: - pos: -37.5,2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11376 components: - pos: -37.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11377 components: - pos: -37.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11382 components: - pos: -33.5,5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11383 components: - pos: -32.5,5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11384 components: - pos: -31.5,5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11385 components: - pos: -30.5,5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11386 components: - pos: -30.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11451 components: - pos: -55.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11452 components: - pos: -54.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11453 components: - pos: -53.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11454 components: - pos: -53.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11455 components: - pos: -52.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11457 components: - pos: -51.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11458 components: - pos: -50.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11459 components: - pos: -49.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11460 components: - pos: -48.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11461 components: - pos: -47.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11462 components: - pos: -46.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11463 components: - pos: -45.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11496 components: - pos: -3.5,-50.5 @@ -44985,8 +37524,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11497 components: - pos: -4.5,-50.5 @@ -44994,8 +37531,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11498 components: - pos: -4.5,-49.5 @@ -45003,8 +37538,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11499 components: - pos: -5.5,-49.5 @@ -45012,8 +37545,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11515 components: - pos: -58.5,18.5 @@ -45021,8 +37552,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11517 components: - pos: -58.5,14.5 @@ -45030,8 +37559,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11518 components: - pos: -58.5,17.5 @@ -45039,8 +37566,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11519 components: - pos: -58.5,16.5 @@ -45048,8 +37573,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11523 components: - pos: 7.5,36.5 @@ -45057,8 +37580,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11525 components: - pos: 8.5,36.5 @@ -45066,8 +37587,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11528 components: - pos: 10.5,36.5 @@ -45075,8 +37594,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11529 components: - pos: 9.5,36.5 @@ -45084,8 +37601,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11533 components: - pos: -58.5,15.5 @@ -45093,8 +37608,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11584 components: - pos: -58.5,19.5 @@ -45102,57 +37615,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11585 components: - pos: -58.5,20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11586 components: - pos: -58.5,21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11587 components: - pos: -58.5,22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11588 components: - pos: -58.5,23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11589 components: - pos: -58.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11590 components: - pos: -58.5,25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11591 components: - pos: -58.5,26.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11592 components: - pos: -58.5,27.5 @@ -45160,8 +37657,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11593 components: - pos: -57.5,27.5 @@ -45169,8 +37664,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11594 components: - pos: -56.5,27.5 @@ -45178,8 +37671,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11595 components: - pos: -55.5,27.5 @@ -45187,8 +37678,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11596 components: - pos: -54.5,27.5 @@ -45196,8 +37685,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11597 components: - pos: -53.5,27.5 @@ -45205,8 +37692,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11598 components: - pos: -52.5,27.5 @@ -45214,8 +37699,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11599 components: - pos: -51.5,27.5 @@ -45223,8 +37706,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11600 components: - pos: -50.5,27.5 @@ -45232,8 +37713,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11601 components: - pos: -49.5,27.5 @@ -45241,8 +37720,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11602 components: - pos: -48.5,27.5 @@ -45250,8 +37727,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11603 components: - pos: -47.5,27.5 @@ -45259,8 +37734,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11604 components: - pos: -46.5,27.5 @@ -45268,8 +37741,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11605 components: - pos: -45.5,27.5 @@ -45277,8 +37748,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11606 components: - pos: -44.5,27.5 @@ -45286,8 +37755,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11607 components: - pos: -43.5,27.5 @@ -45295,8 +37762,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11608 components: - pos: -43.5,26.5 @@ -45304,141 +37769,101 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11609 components: - pos: -25.5,25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11610 components: - pos: -26.5,25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11611 components: - pos: -27.5,25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11612 components: - pos: -28.5,25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11613 components: - pos: -29.5,25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11614 components: - pos: -30.5,25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11615 components: - pos: -31.5,25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11616 components: - pos: -32.5,25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11617 components: - pos: -33.5,25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11618 components: - pos: -34.5,25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11619 components: - pos: -35.5,25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11620 components: - pos: -36.5,25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11621 components: - pos: -37.5,25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11622 components: - pos: -38.5,25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11623 components: - pos: -39.5,25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11624 components: - pos: -40.5,25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11625 components: - pos: -41.5,25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11626 components: - pos: -42.5,25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11627 components: - pos: -43.5,25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11755 components: - pos: 38.5,-76.5 @@ -45446,8 +37871,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11786 components: - pos: 24.5,-64.5 @@ -45455,8 +37878,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11787 components: - pos: 24.5,-62.5 @@ -45464,8 +37885,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11788 components: - pos: 38.5,-62.5 @@ -45473,8 +37892,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11805 components: - pos: 34.5,2.5 @@ -45482,8 +37899,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11860 components: - pos: 24.5,-72.5 @@ -45491,8 +37906,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11866 components: - pos: 47.5,-3.5 @@ -45500,8 +37913,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11875 components: - pos: 28.5,-9.5 @@ -45509,8 +37920,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11876 components: - pos: 29.5,-9.5 @@ -45518,8 +37927,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11877 components: - pos: 30.5,-9.5 @@ -45527,8 +37934,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11893 components: - pos: 43.5,-6.5 @@ -45536,8 +37941,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11894 components: - pos: 44.5,-6.5 @@ -45545,8 +37948,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11895 components: - pos: 45.5,-6.5 @@ -45554,8 +37955,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11896 components: - pos: 46.5,-6.5 @@ -45563,8 +37962,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11897 components: - pos: 47.5,-6.5 @@ -45572,8 +37969,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11898 components: - pos: 48.5,-6.5 @@ -45581,8 +37976,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11899 components: - pos: 49.5,-6.5 @@ -45590,8 +37983,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11900 components: - pos: 50.5,-6.5 @@ -45599,8 +37990,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11901 components: - pos: 51.5,-6.5 @@ -45608,8 +37997,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11902 components: - pos: 52.5,-6.5 @@ -45617,8 +38004,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11903 components: - pos: 53.5,-6.5 @@ -45626,8 +38011,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11904 components: - pos: 53.5,-7.5 @@ -45635,8 +38018,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11905 components: - pos: 53.5,-8.5 @@ -45644,8 +38025,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11906 components: - pos: 53.5,-9.5 @@ -45653,8 +38032,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11907 components: - pos: 53.5,-10.5 @@ -45662,8 +38039,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11908 components: - pos: 54.5,-10.5 @@ -45671,8 +38046,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11909 components: - pos: 54.5,-11.5 @@ -45680,8 +38053,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11910 components: - pos: 54.5,-12.5 @@ -45689,8 +38060,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11911 components: - pos: 54.5,-13.5 @@ -45698,8 +38067,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11912 components: - pos: 54.5,-14.5 @@ -45707,8 +38074,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11913 components: - pos: 54.5,-15.5 @@ -45716,8 +38081,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11914 components: - pos: 54.5,-16.5 @@ -45725,8 +38088,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11915 components: - pos: 54.5,-17.5 @@ -45734,8 +38095,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11916 components: - pos: 54.5,-18.5 @@ -45743,8 +38102,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11917 components: - pos: 54.5,-19.5 @@ -45752,8 +38109,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11918 components: - pos: 54.5,-20.5 @@ -45761,8 +38116,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11919 components: - pos: 54.5,-21.5 @@ -45770,8 +38123,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11920 components: - pos: 54.5,-22.5 @@ -45779,8 +38130,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11921 components: - pos: 54.5,-23.5 @@ -45788,8 +38137,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11922 components: - pos: 55.5,-23.5 @@ -45797,8 +38144,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11923 components: - pos: 56.5,-23.5 @@ -45806,8 +38151,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11924 components: - pos: 57.5,-23.5 @@ -45815,8 +38158,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11925 components: - pos: 58.5,-23.5 @@ -45824,8 +38165,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11926 components: - pos: 58.5,-24.5 @@ -45833,8 +38172,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11927 components: - pos: 58.5,-25.5 @@ -45842,8 +38179,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11928 components: - pos: 58.5,-26.5 @@ -45851,8 +38186,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11929 components: - pos: 58.5,-27.5 @@ -45860,8 +38193,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11930 components: - pos: 58.5,-28.5 @@ -45869,8 +38200,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11931 components: - pos: 58.5,-29.5 @@ -45878,8 +38207,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11932 components: - pos: 58.5,-30.5 @@ -45887,8 +38214,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11933 components: - pos: 58.5,-31.5 @@ -45896,8 +38221,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11934 components: - pos: 58.5,-32.5 @@ -45905,8 +38228,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11935 components: - pos: 58.5,-33.5 @@ -45914,8 +38235,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11936 components: - pos: 58.5,-34.5 @@ -45923,8 +38242,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11937 components: - pos: 58.5,-35.5 @@ -45932,8 +38249,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11938 components: - pos: 58.5,-36.5 @@ -45941,8 +38256,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11939 components: - pos: 58.5,-37.5 @@ -45950,8 +38263,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11940 components: - pos: 58.5,-38.5 @@ -45959,8 +38270,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11941 components: - pos: 58.5,-39.5 @@ -45968,8 +38277,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11960 components: - pos: 29.5,-76.5 @@ -45977,8 +38284,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11965 components: - pos: 35.5,-3.5 @@ -45986,8 +38291,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11983 components: - pos: 36.5,-3.5 @@ -45995,57 +38298,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11986 components: - pos: 16.5,23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11995 components: - pos: 16.5,22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11996 components: - pos: 16.5,21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11997 components: - pos: 16.5,20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11998 components: - pos: 16.5,19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11999 components: - pos: 16.5,18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12000 components: - pos: 16.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12020 components: - pos: 34.5,-1.5 @@ -46053,8 +38340,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12153 components: - pos: 27.5,-9.5 @@ -46062,8 +38347,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12154 components: - pos: 26.5,-9.5 @@ -46071,8 +38354,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12155 components: - pos: 25.5,-9.5 @@ -46080,8 +38361,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12156 components: - pos: 24.5,-9.5 @@ -46089,8 +38368,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12157 components: - pos: 23.5,-9.5 @@ -46098,8 +38375,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12158 components: - pos: 22.5,-9.5 @@ -46107,8 +38382,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12159 components: - pos: 21.5,-9.5 @@ -46116,8 +38389,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12160 components: - pos: 20.5,-9.5 @@ -46125,8 +38396,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12161 components: - pos: 19.5,-9.5 @@ -46134,155 +38403,111 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12162 components: - pos: 18.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12163 components: - pos: 17.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12164 components: - pos: 16.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12165 components: - pos: 16.5,-10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12166 components: - pos: 16.5,-11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12167 components: - pos: 16.5,-12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12168 components: - pos: 16.5,-13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12169 components: - pos: 16.5,-14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12170 components: - pos: 16.5,-15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12171 components: - pos: 16.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12172 components: - pos: 15.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12173 components: - pos: 14.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12174 components: - pos: 13.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12175 components: - pos: 12.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12176 components: - pos: 12.5,-17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12177 components: - pos: 12.5,-18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12178 components: - pos: 12.5,-19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12179 components: - pos: 13.5,-19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12180 components: - pos: 12.5,-20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12181 components: - pos: 11.5,-20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12182 components: - pos: 10.5,-20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12183 components: - pos: 8.5,-40.5 @@ -46290,8 +38515,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12184 components: - pos: 8.5,-39.5 @@ -46299,8 +38522,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12185 components: - pos: 7.5,-39.5 @@ -46308,225 +38529,161 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12186 components: - pos: 7.5,-38.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12187 components: - pos: 7.5,-37.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12198 components: - pos: 0.5,-34.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12199 components: - pos: 0.5,-33.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12200 components: - pos: 0.5,-32.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12201 components: - pos: 0.5,-31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12202 components: - pos: 0.5,-30.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12203 components: - pos: 0.5,-29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12204 components: - pos: 0.5,-28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12205 components: - pos: 0.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12206 components: - pos: 0.5,-26.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12207 components: - pos: 0.5,-25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12208 components: - pos: 0.5,-24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12209 components: - pos: 1.5,-24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12210 components: - pos: 2.5,-24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12211 components: - pos: 3.5,-24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12212 components: - pos: 4.5,-24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12213 components: - pos: 5.5,-24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12214 components: - pos: 7.5,-24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12215 components: - pos: 6.5,-24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12216 components: - pos: 8.5,-24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12217 components: - pos: 9.5,-24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12218 components: - pos: 9.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12219 components: - pos: 9.5,-22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12220 components: - pos: 9.5,-21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12222 components: - pos: 9.5,-20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12226 components: - pos: 5.5,-31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12227 components: - pos: 5.5,-30.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12228 components: - pos: 5.5,-29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12229 components: - pos: 5.5,-28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12230 components: - pos: 5.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12231 components: - pos: 5.5,-26.5 @@ -46534,8 +38691,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12232 components: - pos: 4.5,-26.5 @@ -46543,8 +38698,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12233 components: - pos: 6.5,-26.5 @@ -46552,8 +38705,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12234 components: - pos: -12.5,-30.5 @@ -46561,8 +38712,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12235 components: - pos: -11.5,-30.5 @@ -46570,8 +38719,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12236 components: - pos: -10.5,-30.5 @@ -46579,8 +38726,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12237 components: - pos: -9.5,-30.5 @@ -46588,8 +38733,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12238 components: - pos: -8.5,-30.5 @@ -46597,8 +38740,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12239 components: - pos: -7.5,-30.5 @@ -46606,8 +38747,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12240 components: - pos: -6.5,-30.5 @@ -46615,8 +38754,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12241 components: - pos: -5.5,-30.5 @@ -46624,8 +38761,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12242 components: - pos: -4.5,-30.5 @@ -46633,8 +38768,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12243 components: - pos: -3.5,-30.5 @@ -46642,8 +38775,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12244 components: - pos: -2.5,-30.5 @@ -46651,22 +38782,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12245 components: - pos: -1.5,-30.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12246 components: - pos: -0.5,-30.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12264 components: - pos: 24.5,-74.5 @@ -46674,8 +38799,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12293 components: - pos: 32.5,-62.5 @@ -46683,8 +38806,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12649 components: - pos: 38.5,-64.5 @@ -46692,15 +38813,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12673 components: - pos: 16.5,16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12676 components: - pos: 38.5,-74.5 @@ -46708,8 +38825,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12677 components: - pos: 38.5,-72.5 @@ -46717,8 +38832,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12678 components: - pos: 38.5,-68.5 @@ -46726,8 +38839,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12679 components: - pos: 38.5,-66.5 @@ -46735,15 +38846,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12696 components: - pos: 16.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12711 components: - pos: 34.5,0.5 @@ -46751,8 +38858,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12738 components: - pos: 34.5,-0.5 @@ -46760,8 +38865,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12741 components: - pos: 34.5,1.5 @@ -46769,8 +38872,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12745 components: - pos: 27.5,-66.5 @@ -46778,8 +38879,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12759 components: - pos: 36.5,-68.5 @@ -46787,8 +38886,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12760 components: - pos: 34.5,-68.5 @@ -46796,8 +38893,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12761 components: - pos: 35.5,-68.5 @@ -46805,8 +38900,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12772 components: - pos: 37.5,-62.5 @@ -46814,8 +38907,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12773 components: - pos: 33.5,-64.5 @@ -46823,8 +38914,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12774 components: - pos: 35.5,-64.5 @@ -46832,8 +38921,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12782 components: - pos: 59.5,-38.5 @@ -46841,8 +38928,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12784 components: - pos: 32.5,-64.5 @@ -46850,8 +38935,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12785 components: - pos: 37.5,-64.5 @@ -46859,8 +38942,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12786 components: - pos: 36.5,-64.5 @@ -46868,8 +38949,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12788 components: - pos: 34.5,-64.5 @@ -46877,8 +38956,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12791 components: - pos: 35.5,-62.5 @@ -46886,8 +38963,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12797 components: - pos: 27.5,-68.5 @@ -46895,8 +38970,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12798 components: - pos: 26.5,-68.5 @@ -46904,8 +38977,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12799 components: - pos: 25.5,-68.5 @@ -46913,8 +38984,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12800 components: - pos: 25.5,-66.5 @@ -46922,8 +38991,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12801 components: - pos: 28.5,-68.5 @@ -46931,8 +38998,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12867 components: - pos: 38.5,-3.5 @@ -46940,8 +39005,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12871 components: - pos: 30.5,-66.5 @@ -46949,8 +39012,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12872 components: - pos: 28.5,-66.5 @@ -46958,8 +39019,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12873 components: - pos: 29.5,-66.5 @@ -46967,8 +39026,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12876 components: - pos: -63.5,-18.5 @@ -46976,8 +39033,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12884 components: - pos: 24.5,-66.5 @@ -46985,8 +39040,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12885 components: - pos: 30.5,-72.5 @@ -46994,15 +39047,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12898 components: - pos: 21.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12916 components: - pos: -64.5,-17.5 @@ -47010,8 +39059,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12925 components: - pos: -66.5,-18.5 @@ -47019,8 +39066,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12932 components: - pos: -86.5,-12.5 @@ -47028,8 +39073,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12933 components: - pos: -86.5,-13.5 @@ -47037,8 +39080,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12934 components: - pos: -86.5,-14.5 @@ -47046,8 +39087,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12935 components: - pos: -86.5,-15.5 @@ -47055,162 +39094,116 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13044 components: - pos: 15.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13045 components: - pos: 15.5,-8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13046 components: - pos: 15.5,-7.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13047 components: - pos: 15.5,-6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13048 components: - pos: 15.5,-5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13049 components: - pos: 15.5,-4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13050 components: - pos: 15.5,-3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13051 components: - pos: 15.5,-2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13052 components: - pos: 15.5,-1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13053 components: - pos: 15.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13054 components: - pos: 15.5,0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13055 components: - pos: 15.5,1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13056 components: - pos: 15.5,2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13057 components: - pos: 15.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13058 components: - pos: 15.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13059 components: - pos: 15.5,5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13060 components: - pos: 16.5,5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13061 components: - pos: 19.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13062 components: - pos: 20.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13063 components: - pos: 18.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13064 components: - pos: 17.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13065 components: - pos: 16.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13532 components: - pos: -58.5,9.5 @@ -47218,57 +39211,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15442 components: - pos: -19.5,41.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15443 components: - pos: -19.5,42.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15444 components: - pos: -19.5,43.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15445 components: - pos: -13.5,41.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15446 components: - pos: -13.5,42.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15447 components: - pos: -13.5,43.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15448 components: - pos: -12.5,42.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15449 components: - pos: -11.5,42.5 @@ -47276,29 +39253,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15450 components: - pos: -10.5,42.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15451 components: - pos: -19.5,42.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15452 components: - pos: -20.5,42.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15453 components: - pos: -21.5,42.5 @@ -47306,22 +39275,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15454 components: - pos: -22.5,42.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15455 components: - pos: -22.5,41.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15456 components: - pos: -22.5,40.5 @@ -47329,8 +39292,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15457 components: - pos: -22.5,39.5 @@ -47338,8 +39299,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15458 components: - pos: -22.5,38.5 @@ -47347,8 +39306,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15459 components: - pos: -22.5,37.5 @@ -47356,148 +39313,106 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15460 components: - pos: -22.5,36.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15461 components: - pos: -22.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15462 components: - pos: -10.5,41.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15463 components: - pos: -10.5,40.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15464 components: - pos: -10.5,39.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15465 components: - pos: -10.5,38.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15466 components: - pos: -10.5,37.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15467 components: - pos: -10.5,36.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15468 components: - pos: -10.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15469 components: - pos: -11.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15470 components: - pos: -12.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15471 components: - pos: -13.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15472 components: - pos: -14.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15473 components: - pos: -15.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15474 components: - pos: -16.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15475 components: - pos: -17.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15476 components: - pos: -18.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15477 components: - pos: -19.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15478 components: - pos: -20.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15479 components: - pos: -21.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15706 components: - pos: -10.5,25.5 @@ -47505,8 +39420,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15707 components: - pos: -10.5,26.5 @@ -47514,29 +39427,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15726 components: - pos: -0.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15727 components: - pos: 0.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15729 components: - pos: 1.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15735 components: - pos: 1.5,26.5 @@ -47544,8 +39449,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15736 components: - pos: 0.5,26.5 @@ -47553,8 +39456,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15737 components: - pos: -0.5,26.5 @@ -47562,15 +39463,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15738 components: - pos: -0.5,27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15739 components: - pos: -0.5,25.5 @@ -47578,8 +39475,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15740 components: - pos: 0.5,25.5 @@ -47587,8 +39482,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15741 components: - pos: 1.5,25.5 @@ -47596,113 +39489,81 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15747 components: - pos: -1.5,27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15748 components: - pos: -2.5,27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15749 components: - pos: -2.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15750 components: - pos: -2.5,29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15751 components: - pos: -3.5,29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15752 components: - pos: -4.5,29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15753 components: - pos: -5.5,29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15754 components: - pos: -6.5,29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15755 components: - pos: -7.5,29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15756 components: - pos: -8.5,29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15757 components: - pos: -9.5,29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15758 components: - pos: -10.5,29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15759 components: - pos: -10.5,30.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15760 components: - pos: -10.5,31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15761 components: - pos: -10.5,32.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15762 components: - pos: -10.5,33.5 @@ -47710,120 +39571,86 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15763 components: - pos: -10.5,34.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15764 components: - pos: -1.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15765 components: - pos: -2.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15766 components: - pos: -3.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15767 components: - pos: -4.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15768 components: - pos: -4.5,25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15769 components: - pos: -4.5,26.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15770 components: - pos: -4.5,27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15771 components: - pos: -5.5,27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15772 components: - pos: -6.5,27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15773 components: - pos: -7.5,27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15774 components: - pos: -8.5,27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15775 components: - pos: -9.5,27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15776 components: - pos: -10.5,27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15777 components: - pos: -11.5,27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15778 components: - pos: -12.5,27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15779 components: - pos: -13.5,27.5 @@ -47831,148 +39658,106 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15780 components: - pos: -14.5,27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15781 components: - pos: -15.5,27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15782 components: - pos: -16.5,27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15783 components: - pos: -17.5,27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15784 components: - pos: -18.5,27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15785 components: - pos: -18.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15786 components: - pos: -19.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15787 components: - pos: -20.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15788 components: - pos: -21.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15789 components: - pos: -21.5,27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15790 components: - pos: -21.5,26.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15791 components: - pos: -21.5,25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15792 components: - pos: -21.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15809 components: - pos: -20.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15810 components: - pos: -19.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15811 components: - pos: -18.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15812 components: - pos: -17.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15813 components: - pos: -16.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15814 components: - pos: -15.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15815 components: - pos: -14.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15816 components: - pos: -13.5,24.5 @@ -47980,8 +39765,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15817 components: - pos: -12.5,24.5 @@ -47989,8 +39772,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15819 components: - pos: -12.5,25.5 @@ -47998,8 +39779,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15820 components: - pos: -30.5,17.5 @@ -48007,8 +39786,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15821 components: - pos: -31.5,17.5 @@ -48016,8 +39793,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15822 components: - pos: -32.5,17.5 @@ -48025,8 +39800,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15823 components: - pos: -33.5,17.5 @@ -48034,8 +39807,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15824 components: - pos: -34.5,17.5 @@ -48043,8 +39814,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15825 components: - pos: -35.5,17.5 @@ -48052,8 +39821,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15826 components: - pos: -36.5,17.5 @@ -48061,8 +39828,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15827 components: - pos: -37.5,17.5 @@ -48070,8 +39835,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15828 components: - pos: -38.5,17.5 @@ -48079,8 +39842,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15829 components: - pos: -39.5,17.5 @@ -48088,8 +39849,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15830 components: - pos: -40.5,17.5 @@ -48097,8 +39856,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15831 components: - pos: -41.5,17.5 @@ -48106,8 +39863,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15832 components: - pos: -42.5,17.5 @@ -48115,8 +39870,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15833 components: - pos: -43.5,17.5 @@ -48124,29 +39877,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15834 components: - pos: -44.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15835 components: - pos: -45.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15841 components: - pos: -45.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15851 components: - pos: -58.5,14.5 @@ -48154,8 +39899,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15852 components: - pos: -58.5,13.5 @@ -48163,8 +39906,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15853 components: - pos: -58.5,12.5 @@ -48172,8 +39913,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15854 components: - pos: -58.5,11.5 @@ -48181,309 +39920,221 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15855 components: - pos: -29.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15856 components: - pos: -28.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15857 components: - pos: -27.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15858 components: - pos: -26.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15859 components: - pos: -25.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15860 components: - pos: -25.5,18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15861 components: - pos: -25.5,19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15862 components: - pos: -25.5,20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15863 components: - pos: -25.5,21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15864 components: - pos: -25.5,22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15865 components: - pos: -25.5,23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15866 components: - pos: -25.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15867 components: - pos: -24.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15868 components: - pos: -23.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15869 components: - pos: -22.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15870 components: - pos: -16.5,23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15871 components: - pos: -16.5,22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15872 components: - pos: -16.5,21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15873 components: - pos: -16.5,20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15874 components: - pos: -16.5,19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15875 components: - pos: -16.5,18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15876 components: - pos: -16.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15877 components: - pos: -16.5,16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15878 components: - pos: -16.5,15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15879 components: - pos: -16.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15880 components: - pos: -16.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15881 components: - pos: -16.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15882 components: - pos: -16.5,11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15883 components: - pos: -16.5,10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15884 components: - pos: -16.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15885 components: - pos: -17.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15886 components: - pos: -18.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15887 components: - pos: -19.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15888 components: - pos: -20.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15889 components: - pos: -21.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15890 components: - pos: -22.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15891 components: - pos: -23.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15892 components: - pos: -24.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15893 components: - pos: -25.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15894 components: - pos: -26.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15895 components: - pos: -26.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15896 components: - pos: -26.5,7.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15897 components: - pos: -26.5,6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15898 components: - pos: -26.5,5.5 @@ -48491,8 +40142,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15899 components: - pos: -27.5,5.5 @@ -48500,8 +40149,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15900 components: - pos: -28.5,5.5 @@ -48509,638 +40156,456 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15901 components: - pos: -29.5,5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15902 components: - pos: -25.5,10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15903 components: - pos: -25.5,10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15904 components: - pos: -25.5,11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15905 components: - pos: -25.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15906 components: - pos: -25.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15907 components: - pos: -25.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15908 components: - pos: -25.5,15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15909 components: - pos: -25.5,16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15910 components: - pos: -3.5,23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15911 components: - pos: -3.5,22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15912 components: - pos: -3.5,21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15913 components: - pos: -3.5,20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15914 components: - pos: -3.5,19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15915 components: - pos: -3.5,18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15916 components: - pos: -3.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15917 components: - pos: -3.5,16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15918 components: - pos: -3.5,15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15919 components: - pos: -3.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15920 components: - pos: -2.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15921 components: - pos: -1.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15922 components: - pos: -0.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15923 components: - pos: 0.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15924 components: - pos: 0.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15925 components: - pos: 0.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15926 components: - pos: 0.5,11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15927 components: - pos: 0.5,10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15928 components: - pos: 0.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15929 components: - pos: -0.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15930 components: - pos: -1.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15931 components: - pos: -2.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15932 components: - pos: -3.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15933 components: - pos: -4.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15934 components: - pos: -5.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15935 components: - pos: -6.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15936 components: - pos: -7.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15937 components: - pos: -8.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15938 components: - pos: -9.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15939 components: - pos: -10.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15940 components: - pos: -11.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15941 components: - pos: -12.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15942 components: - pos: -13.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15943 components: - pos: -14.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15944 components: - pos: -15.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15945 components: - pos: 1.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15946 components: - pos: 2.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15947 components: - pos: 3.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15948 components: - pos: 4.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15949 components: - pos: 5.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15950 components: - pos: 6.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15951 components: - pos: 7.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15952 components: - pos: 8.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15953 components: - pos: 9.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15954 components: - pos: 10.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15955 components: - pos: 11.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15956 components: - pos: 12.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15957 components: - pos: 13.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15958 components: - pos: 14.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15959 components: - pos: 15.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15960 components: - pos: 16.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15961 components: - pos: 16.5,6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15962 components: - pos: 16.5,7.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15963 components: - pos: 16.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15964 components: - pos: 16.5,10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15965 components: - pos: 16.5,11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15966 components: - pos: 16.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15967 components: - pos: 16.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15968 components: - pos: 15.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15969 components: - pos: 14.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15970 components: - pos: 13.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15971 components: - pos: 12.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15972 components: - pos: 11.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15973 components: - pos: 10.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15974 components: - pos: 10.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15975 components: - pos: 9.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15976 components: - pos: 8.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15977 components: - pos: 7.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15978 components: - pos: 6.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15979 components: - pos: 5.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15980 components: - pos: 5.5,15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15981 components: - pos: 5.5,16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15982 components: - pos: 5.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15983 components: - pos: 4.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15984 components: - pos: 3.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15985 components: - pos: 2.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15986 components: - pos: 1.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15987 components: - pos: 0.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15988 components: - pos: -0.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15989 components: - pos: -1.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15990 components: - pos: -2.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15991 components: - pos: 0.5,16.5 @@ -49148,36 +40613,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15992 components: - pos: 0.5,15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15999 components: - pos: 0.5,27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16000 components: - pos: 1.5,27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16031 components: - pos: 2.5,27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16032 components: - pos: 3.5,27.5 @@ -49185,22 +40640,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16033 components: - pos: 4.5,27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16034 components: - pos: 5.5,27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16035 components: - pos: 6.5,27.5 @@ -49208,8 +40657,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16036 components: - pos: 6.5,24.5 @@ -49217,8 +40664,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16037 components: - pos: 6.5,25.5 @@ -49226,8 +40671,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16038 components: - pos: 6.5,26.5 @@ -49235,8 +40678,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16039 components: - pos: 6.5,27.5 @@ -49244,8 +40685,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16040 components: - pos: 6.5,28.5 @@ -49253,8 +40692,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16041 components: - pos: 6.5,29.5 @@ -49262,8 +40699,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16042 components: - pos: 6.5,30.5 @@ -49271,8 +40706,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16043 components: - pos: 6.5,31.5 @@ -49280,22 +40713,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16051 components: - pos: 7.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16052 components: - pos: 8.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16053 components: - pos: 9.5,28.5 @@ -49303,8 +40730,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16054 components: - pos: 9.5,27.5 @@ -49312,8 +40737,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16055 components: - pos: 9.5,29.5 @@ -49321,8 +40744,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16056 components: - pos: 3.5,28.5 @@ -49330,8 +40751,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16057 components: - pos: 3.5,29.5 @@ -49339,8 +40758,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16231 components: - pos: -6.5,40.5 @@ -49348,8 +40765,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16232 components: - pos: -6.5,41.5 @@ -49357,8 +40772,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16233 components: - pos: -6.5,42.5 @@ -49366,8 +40779,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16234 components: - pos: -6.5,43.5 @@ -49375,8 +40786,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16235 components: - pos: -6.5,44.5 @@ -49384,8 +40793,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16236 components: - pos: -6.5,45.5 @@ -49393,8 +40800,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16237 components: - pos: -6.5,46.5 @@ -49402,8 +40807,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16238 components: - pos: -6.5,47.5 @@ -49411,8 +40814,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16239 components: - pos: -6.5,48.5 @@ -49420,8 +40821,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16240 components: - pos: -6.5,49.5 @@ -49429,8 +40828,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16241 components: - pos: -6.5,50.5 @@ -49438,8 +40835,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16242 components: - pos: -6.5,51.5 @@ -49447,8 +40842,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16243 components: - pos: -6.5,52.5 @@ -49456,8 +40849,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16244 components: - pos: -6.5,53.5 @@ -49465,8 +40856,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16245 components: - pos: -6.5,54.5 @@ -49474,8 +40863,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16246 components: - pos: -5.5,54.5 @@ -49483,8 +40870,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16247 components: - pos: -4.5,54.5 @@ -49492,8 +40877,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16248 components: - pos: -3.5,54.5 @@ -49501,8 +40884,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16249 components: - pos: -2.5,54.5 @@ -49510,8 +40891,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16250 components: - pos: -1.5,54.5 @@ -49519,8 +40898,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16251 components: - pos: -0.5,54.5 @@ -49528,8 +40905,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16252 components: - pos: 0.5,54.5 @@ -49537,8 +40912,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16253 components: - pos: 1.5,54.5 @@ -49546,8 +40919,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16254 components: - pos: 2.5,54.5 @@ -49555,8 +40926,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16255 components: - pos: 3.5,54.5 @@ -49564,8 +40933,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16256 components: - pos: 4.5,54.5 @@ -49573,8 +40940,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16257 components: - pos: 5.5,54.5 @@ -49582,8 +40947,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16258 components: - pos: 6.5,54.5 @@ -49591,8 +40954,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16259 components: - pos: 7.5,54.5 @@ -49600,8 +40961,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16260 components: - pos: 7.5,53.5 @@ -49609,8 +40968,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16261 components: - pos: 7.5,52.5 @@ -49618,8 +40975,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16262 components: - pos: 7.5,51.5 @@ -49627,8 +40982,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16263 components: - pos: 7.5,50.5 @@ -49636,8 +40989,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16264 components: - pos: 7.5,49.5 @@ -49645,8 +40996,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16265 components: - pos: 7.5,48.5 @@ -49654,8 +41003,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16266 components: - pos: 7.5,47.5 @@ -49663,8 +41010,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16267 components: - pos: 7.5,46.5 @@ -49672,8 +41017,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16268 components: - pos: 7.5,45.5 @@ -49681,8 +41024,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16269 components: - pos: 7.5,44.5 @@ -49690,8 +41031,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16270 components: - pos: 7.5,43.5 @@ -49699,8 +41038,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16271 components: - pos: 7.5,42.5 @@ -49708,8 +41045,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16272 components: - pos: 7.5,41.5 @@ -49717,8 +41052,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16273 components: - pos: 7.5,40.5 @@ -49726,8 +41059,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16274 components: - pos: 6.5,40.5 @@ -49735,8 +41066,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16275 components: - pos: 5.5,40.5 @@ -49744,8 +41073,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16276 components: - pos: 4.5,40.5 @@ -49753,8 +41080,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16277 components: - pos: 3.5,40.5 @@ -49762,8 +41087,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16278 components: - pos: 2.5,40.5 @@ -49771,8 +41094,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16279 components: - pos: 1.5,40.5 @@ -49780,8 +41101,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16280 components: - pos: 0.5,40.5 @@ -49789,8 +41108,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16281 components: - pos: -0.5,40.5 @@ -49798,8 +41115,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16282 components: - pos: -1.5,40.5 @@ -49807,8 +41122,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16283 components: - pos: -2.5,40.5 @@ -49816,8 +41129,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16284 components: - pos: -3.5,40.5 @@ -49825,8 +41136,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16285 components: - pos: -4.5,40.5 @@ -49834,8 +41143,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16286 components: - pos: -5.5,40.5 @@ -49843,8 +41150,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16343 components: - pos: 4.5,34.5 @@ -49852,8 +41157,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16344 components: - pos: 4.5,35.5 @@ -49861,29 +41164,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16346 components: - pos: 3.5,34.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16347 components: - pos: 2.5,34.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16348 components: - pos: 1.5,34.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16350 components: - pos: 0.5,33.5 @@ -49891,64 +41186,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16351 components: - pos: 0.5,32.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16352 components: - pos: 0.5,31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16353 components: - pos: 0.5,30.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16354 components: - pos: 0.5,29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16355 components: - pos: 0.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16356 components: - pos: -0.5,34.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16357 components: - pos: -1.5,34.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16359 components: - pos: -1.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16360 components: - pos: -3.5,35.5 @@ -49956,8 +41233,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16363 components: - pos: -5.5,39.5 @@ -49965,8 +41240,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16364 components: - pos: -5.5,37.5 @@ -49974,8 +41247,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16365 components: - pos: -5.5,35.5 @@ -49983,8 +41254,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16394 components: - pos: -4.5,35.5 @@ -49992,8 +41261,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16397 components: - pos: -5.5,38.5 @@ -50001,8 +41268,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16398 components: - pos: -5.5,36.5 @@ -50010,15 +41275,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16528 components: - pos: -2.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17085 components: - pos: 0.5,55.5 @@ -50026,8 +41287,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17086 components: - pos: 0.5,56.5 @@ -50035,8 +41294,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17087 components: - pos: -9.5,57.5 @@ -50044,8 +41301,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17088 components: - pos: -8.5,57.5 @@ -50053,8 +41308,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17089 components: - pos: -7.5,57.5 @@ -50062,8 +41315,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17090 components: - pos: -6.5,57.5 @@ -50071,8 +41322,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17091 components: - pos: -5.5,57.5 @@ -50080,8 +41329,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17092 components: - pos: -4.5,57.5 @@ -50089,8 +41336,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17093 components: - pos: -3.5,57.5 @@ -50098,8 +41343,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17094 components: - pos: -2.5,57.5 @@ -50107,8 +41350,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17095 components: - pos: -1.5,57.5 @@ -50116,8 +41357,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17096 components: - pos: -0.5,57.5 @@ -50125,8 +41364,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17097 components: - pos: 0.5,57.5 @@ -50134,8 +41371,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17098 components: - pos: 1.5,57.5 @@ -50143,8 +41378,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17099 components: - pos: 2.5,57.5 @@ -50152,8 +41385,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17100 components: - pos: 3.5,57.5 @@ -50161,8 +41392,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17101 components: - pos: 4.5,57.5 @@ -50170,8 +41399,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17102 components: - pos: 5.5,57.5 @@ -50179,8 +41406,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17103 components: - pos: 6.5,57.5 @@ -50188,8 +41413,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17104 components: - pos: 7.5,57.5 @@ -50197,8 +41420,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17105 components: - pos: 8.5,57.5 @@ -50206,8 +41427,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17106 components: - pos: 9.5,57.5 @@ -50215,8 +41434,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17107 components: - pos: 10.5,57.5 @@ -50224,8 +41441,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17108 components: - pos: 8.5,47.5 @@ -50233,8 +41448,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17109 components: - pos: 9.5,47.5 @@ -50242,8 +41455,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17110 components: - pos: 10.5,47.5 @@ -50251,8 +41462,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17111 components: - pos: 11.5,56.5 @@ -50260,8 +41469,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17112 components: - pos: 11.5,55.5 @@ -50269,8 +41476,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17113 components: - pos: 11.5,54.5 @@ -50278,8 +41483,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17114 components: - pos: 11.5,53.5 @@ -50287,8 +41490,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17115 components: - pos: 11.5,52.5 @@ -50296,8 +41497,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17116 components: - pos: 11.5,51.5 @@ -50305,8 +41504,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17117 components: - pos: 11.5,50.5 @@ -50314,8 +41511,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17118 components: - pos: 11.5,49.5 @@ -50323,8 +41518,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17119 components: - pos: 11.5,48.5 @@ -50332,8 +41525,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17120 components: - pos: 11.5,47.5 @@ -50341,8 +41532,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17121 components: - pos: 11.5,46.5 @@ -50350,8 +41539,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17122 components: - pos: 11.5,45.5 @@ -50359,8 +41546,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17123 components: - pos: 11.5,44.5 @@ -50368,8 +41553,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17124 components: - pos: 11.5,43.5 @@ -50377,8 +41560,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17125 components: - pos: 11.5,42.5 @@ -50386,8 +41567,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17126 components: - pos: 11.5,41.5 @@ -50395,8 +41574,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17127 components: - pos: 11.5,40.5 @@ -50404,8 +41581,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17128 components: - pos: 11.5,39.5 @@ -50413,8 +41588,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17129 components: - pos: 11.5,38.5 @@ -50422,8 +41595,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17130 components: - pos: 11.5,37.5 @@ -50431,8 +41602,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17131 components: - pos: -10.5,53.5 @@ -50440,8 +41609,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17132 components: - pos: -10.5,54.5 @@ -50449,8 +41616,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17133 components: - pos: -10.5,55.5 @@ -50458,8 +41623,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17134 components: - pos: -10.5,56.5 @@ -50467,8 +41630,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17135 components: - pos: -9.5,56.5 @@ -50476,8 +41637,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17153 components: - pos: 10.5,37.5 @@ -50485,8 +41644,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17928 components: - pos: 6.5,-3.5 @@ -50494,8 +41651,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17931 components: - pos: 13.5,-3.5 @@ -50503,8 +41658,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17932 components: - pos: 8.5,-3.5 @@ -50512,8 +41665,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17933 components: - pos: 12.5,-3.5 @@ -50521,8 +41672,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17934 components: - pos: 14.5,-3.5 @@ -50530,78 +41679,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17944 components: - pos: 4.5,-3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17945 components: - pos: -11.5,5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17947 components: - pos: -12.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17948 components: - pos: -13.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17949 components: - pos: -14.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17950 components: - pos: -15.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17951 components: - pos: -16.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17952 components: - pos: -16.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17953 components: - pos: -16.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17954 components: - pos: -17.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17955 components: - pos: -18.5,4.5 @@ -50609,8 +41736,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17956 components: - pos: -19.5,4.5 @@ -50618,8 +41743,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17957 components: - pos: -20.5,4.5 @@ -50627,8 +41750,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17958 components: - pos: -21.5,4.5 @@ -50636,8 +41757,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17959 components: - pos: -22.5,4.5 @@ -50645,8 +41764,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17960 components: - pos: -22.5,5.5 @@ -50654,8 +41771,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17961 components: - pos: -23.5,5.5 @@ -50663,8 +41778,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17962 components: - pos: -24.5,5.5 @@ -50672,8 +41785,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17963 components: - pos: -25.5,5.5 @@ -50681,64 +41792,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17964 components: - pos: -14.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17965 components: - pos: -14.5,5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17966 components: - pos: -14.5,6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17967 components: - pos: -14.5,7.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17968 components: - pos: -14.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17969 components: - pos: -12.5,5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17970 components: - pos: -12.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17974 components: - pos: 4.5,-1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17985 components: - pos: 9.5,-3.5 @@ -50746,8 +41839,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17986 components: - pos: 11.5,-3.5 @@ -50755,15 +41846,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18001 components: - pos: 5.5,-3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18002 components: - pos: 10.5,-3.5 @@ -50771,8 +41858,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18108 components: - pos: 7.5,-3.5 @@ -50780,8 +41865,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18148 components: - pos: 3.5,-2.5 @@ -50789,8 +41872,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18149 components: - pos: 14.5,-4.5 @@ -50798,8 +41879,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18150 components: - pos: 14.5,-2.5 @@ -50807,92 +41886,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18151 components: - pos: 4.5,-2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18152 components: - pos: 4.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18153 components: - pos: 4.5,0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18154 components: - pos: 4.5,1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18155 components: - pos: 3.5,1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18156 components: - pos: 2.5,1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18157 components: - pos: 1.5,1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18158 components: - pos: 0.5,1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18159 components: - pos: -0.5,1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18160 components: - pos: -1.5,1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18161 components: - pos: -2.5,1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18162 components: - pos: -3.5,1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18163 components: - pos: -4.5,1.5 @@ -50900,8 +41953,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18164 components: - pos: -4.5,0.5 @@ -50909,22 +41960,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18165 components: - pos: 1.5,0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18166 components: - pos: 1.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18167 components: - pos: 1.5,-1.5 @@ -50932,50 +41977,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18168 components: - pos: 1.5,-2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18169 components: - pos: 1.5,-3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18170 components: - pos: 1.5,-4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18171 components: - pos: 1.5,-5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18172 components: - pos: 1.5,-6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18173 components: - pos: 1.5,-7.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18174 components: - pos: 1.5,-8.5 @@ -50983,113 +42014,81 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18175 components: - pos: 1.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18176 components: - pos: 1.5,-10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18177 components: - pos: 1.5,-11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18178 components: - pos: 1.5,-12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18179 components: - pos: 1.5,-13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18180 components: - pos: 1.5,-14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18181 components: - pos: 1.5,-15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18182 components: - pos: 1.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18183 components: - pos: 1.5,-17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18184 components: - pos: 1.5,-18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18185 components: - pos: 1.5,-19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18186 components: - pos: 1.5,-20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18187 components: - pos: 1.5,-21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18188 components: - pos: 1.5,-22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18189 components: - pos: 1.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18190 components: - pos: -4.5,0.5 @@ -51097,8 +42096,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18191 components: - pos: 5.5,1.5 @@ -51106,8 +42103,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18192 components: - pos: 5.5,0.5 @@ -51115,22 +42110,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18193 components: - pos: 0.5,2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18194 components: - pos: 0.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18195 components: - pos: 0.5,4.5 @@ -51138,8 +42127,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18196 components: - pos: -0.5,4.5 @@ -51147,8 +42134,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18197 components: - pos: -1.5,4.5 @@ -51156,8 +42141,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18198 components: - pos: -2.5,4.5 @@ -51165,8 +42148,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18199 components: - pos: -3.5,4.5 @@ -51174,8 +42155,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18200 components: - pos: -3.5,3.5 @@ -51183,8 +42162,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18201 components: - pos: 1.5,4.5 @@ -51192,8 +42169,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18202 components: - pos: 2.5,4.5 @@ -51201,8 +42176,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18203 components: - pos: 3.5,4.5 @@ -51210,8 +42183,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18204 components: - pos: 4.5,4.5 @@ -51219,8 +42190,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18205 components: - pos: 4.5,3.5 @@ -51228,15 +42197,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18405 components: - pos: 0.5,-1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18406 components: - pos: -0.5,-1.5 @@ -51244,15 +42209,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18407 components: - pos: 0.5,-8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18408 components: - pos: -0.5,-8.5 @@ -51260,85 +42221,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18613 components: - pos: -3.5,0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18614 components: - pos: -3.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18615 components: - pos: -3.5,-1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18616 components: - pos: -3.5,-2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18617 components: - pos: -3.5,-3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18618 components: - pos: -3.5,-4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18619 components: - pos: -4.5,-4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18620 components: - pos: -5.5,-4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18621 components: - pos: -6.5,-4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18622 components: - pos: -7.5,-4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18623 components: - pos: -8.5,-4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18624 components: - pos: -9.5,-4.5 @@ -51346,8 +42283,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18625 components: - pos: -9.5,-5.5 @@ -51355,8 +42290,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18626 components: - pos: -9.5,-3.5 @@ -51364,22 +42297,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18775 components: - pos: 3.5,2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18776 components: - pos: 12.5,-48.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18830 components: - pos: 61.5,-37.5 @@ -51387,22 +42314,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18855 components: - pos: 24.5,5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18865 components: - pos: 24.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18867 components: - pos: 25.5,4.5 @@ -51410,57 +42331,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19205 components: - pos: 22.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19206 components: - pos: 23.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19207 components: - pos: 24.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19208 components: - pos: 25.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19209 components: - pos: 26.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19210 components: - pos: 26.5,23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19211 components: - pos: 26.5,22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19212 components: - pos: 26.5,21.5 @@ -51468,8 +42373,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19213 components: - pos: 26.5,20.5 @@ -51477,8 +42380,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19214 components: - pos: 26.5,19.5 @@ -51486,8 +42387,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19215 components: - pos: 26.5,18.5 @@ -51495,8 +42394,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19216 components: - pos: 26.5,17.5 @@ -51504,8 +42401,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19217 components: - pos: 26.5,16.5 @@ -51513,8 +42408,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19218 components: - pos: 26.5,15.5 @@ -51522,8 +42415,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19219 components: - pos: 26.5,14.5 @@ -51531,106 +42422,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19220 components: - pos: 17.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19221 components: - pos: 18.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19222 components: - pos: 19.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19223 components: - pos: 20.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19224 components: - pos: 21.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19225 components: - pos: 22.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19226 components: - pos: 23.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19227 components: - pos: 24.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19228 components: - pos: 25.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19229 components: - pos: 26.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19230 components: - pos: 27.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19231 components: - pos: 28.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19232 components: - pos: 28.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19233 components: - pos: 28.5,10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19234 components: - pos: 28.5,11.5 @@ -51638,8 +42499,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19235 components: - pos: 28.5,12.5 @@ -51647,15 +42506,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19311 components: - pos: 27.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19535 components: - pos: 29.5,12.5 @@ -51663,8 +42518,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19536 components: - pos: 29.5,13.5 @@ -51672,8 +42525,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19537 components: - pos: 29.5,14.5 @@ -51681,8 +42532,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19538 components: - pos: 29.5,15.5 @@ -51690,8 +42539,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19539 components: - pos: 29.5,16.5 @@ -51699,8 +42546,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19540 components: - pos: 29.5,17.5 @@ -51708,8 +42553,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19542 components: - pos: 28.5,18.5 @@ -51717,8 +42560,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19543 components: - pos: 27.5,18.5 @@ -51726,8 +42567,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19638 components: - pos: 29.5,18.5 @@ -51735,8 +42574,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19748 components: - pos: 34.5,3.5 @@ -51744,8 +42581,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19749 components: - pos: 34.5,4.5 @@ -51753,8 +42588,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19750 components: - pos: 34.5,5.5 @@ -51762,8 +42595,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19751 components: - pos: 35.5,5.5 @@ -51771,85 +42602,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19752 components: - pos: 36.5,5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19753 components: - pos: 36.5,6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19754 components: - pos: 36.5,7.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19755 components: - pos: 36.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19756 components: - pos: 35.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19757 components: - pos: 34.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19758 components: - pos: 33.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19759 components: - pos: 32.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19760 components: - pos: 31.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19761 components: - pos: 30.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19762 components: - pos: 29.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 20036 components: - pos: 31.5,5.5 @@ -51857,29 +42664,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20037 components: - pos: 30.5,5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 20038 components: - pos: 30.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 20039 components: - pos: 30.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 20040 components: - pos: 30.5,2.5 @@ -51887,8 +42686,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20041 components: - pos: 30.5,1.5 @@ -51896,8 +42693,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20042 components: - pos: 30.5,0.5 @@ -51905,8 +42700,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20043 components: - pos: 32.5,5.5 @@ -51914,8 +42707,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20044 components: - pos: 32.5,4.5 @@ -51923,8 +42714,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20083 components: - pos: 66.5,-38.5 @@ -51932,8 +42721,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20084 components: - pos: 65.5,-38.5 @@ -51941,8 +42728,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20227 components: - pos: 75.5,-46.5 @@ -51950,8 +42735,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20228 components: - pos: 76.5,-46.5 @@ -51959,8 +42742,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20229 components: - pos: 77.5,-46.5 @@ -51968,8 +42749,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20230 components: - pos: 78.5,-46.5 @@ -51977,8 +42756,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20231 components: - pos: 80.5,-46.5 @@ -51986,8 +42763,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20232 components: - pos: 81.5,-46.5 @@ -51995,8 +42770,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20233 components: - pos: 82.5,-46.5 @@ -52004,8 +42777,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20234 components: - pos: 83.5,-46.5 @@ -52013,8 +42784,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20235 components: - pos: 83.5,-44.5 @@ -52022,8 +42791,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20236 components: - pos: 82.5,-44.5 @@ -52031,8 +42798,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20237 components: - pos: 81.5,-44.5 @@ -52040,8 +42805,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20238 components: - pos: 80.5,-44.5 @@ -52049,8 +42812,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20239 components: - pos: 78.5,-44.5 @@ -52058,8 +42819,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20240 components: - pos: 77.5,-44.5 @@ -52067,8 +42826,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20241 components: - pos: 76.5,-44.5 @@ -52076,8 +42833,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20242 components: - pos: 75.5,-44.5 @@ -52085,8 +42840,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20243 components: - pos: 75.5,-42.5 @@ -52094,8 +42847,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20244 components: - pos: 76.5,-42.5 @@ -52103,8 +42854,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20245 components: - pos: 77.5,-42.5 @@ -52112,8 +42861,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20246 components: - pos: 78.5,-42.5 @@ -52121,8 +42868,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20247 components: - pos: 75.5,-40.5 @@ -52130,8 +42875,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20248 components: - pos: 76.5,-40.5 @@ -52139,8 +42882,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20249 components: - pos: 77.5,-40.5 @@ -52148,8 +42889,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20250 components: - pos: 78.5,-40.5 @@ -52157,8 +42896,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20251 components: - pos: 80.5,-42.5 @@ -52166,8 +42903,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20252 components: - pos: 81.5,-42.5 @@ -52175,8 +42910,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20253 components: - pos: 82.5,-42.5 @@ -52184,8 +42917,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20254 components: - pos: 83.5,-42.5 @@ -52193,8 +42924,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20255 components: - pos: 83.5,-40.5 @@ -52202,8 +42931,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20256 components: - pos: 82.5,-40.5 @@ -52211,8 +42938,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20257 components: - pos: 81.5,-40.5 @@ -52220,8 +42945,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20258 components: - pos: 80.5,-40.5 @@ -52229,8 +42952,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20259 components: - pos: 67.5,-38.5 @@ -52238,8 +42959,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20260 components: - pos: 68.5,-38.5 @@ -52247,8 +42966,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20261 components: - pos: 69.5,-38.5 @@ -52256,8 +42973,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20262 components: - pos: 70.5,-38.5 @@ -52265,8 +42980,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20263 components: - pos: 72.5,-38.5 @@ -52274,8 +42987,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20264 components: - pos: 73.5,-38.5 @@ -52283,8 +42994,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20265 components: - pos: 76.5,-38.5 @@ -52292,8 +43001,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20266 components: - pos: 77.5,-38.5 @@ -52301,8 +43008,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20267 components: - pos: 78.5,-38.5 @@ -52310,8 +43015,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20268 components: - pos: 79.5,-38.5 @@ -52319,8 +43022,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20269 components: - pos: 83.5,-36.5 @@ -52328,8 +43029,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20270 components: - pos: 82.5,-36.5 @@ -52337,8 +43036,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20271 components: - pos: 81.5,-36.5 @@ -52346,8 +43043,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20272 components: - pos: 80.5,-36.5 @@ -52355,8 +43050,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20273 components: - pos: 78.5,-36.5 @@ -52364,8 +43057,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20274 components: - pos: 77.5,-36.5 @@ -52373,8 +43064,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20275 components: - pos: 76.5,-36.5 @@ -52382,8 +43071,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20276 components: - pos: 75.5,-36.5 @@ -52391,8 +43078,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20277 components: - pos: 75.5,-34.5 @@ -52400,8 +43085,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20278 components: - pos: 76.5,-34.5 @@ -52409,8 +43092,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20279 components: - pos: 77.5,-34.5 @@ -52418,8 +43099,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20280 components: - pos: 78.5,-34.5 @@ -52427,8 +43106,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20281 components: - pos: 80.5,-34.5 @@ -52436,8 +43113,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20282 components: - pos: 81.5,-34.5 @@ -52445,8 +43120,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20283 components: - pos: 82.5,-34.5 @@ -52454,8 +43127,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20284 components: - pos: 83.5,-34.5 @@ -52463,8 +43134,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20285 components: - pos: 79.5,-33.5 @@ -52472,8 +43141,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20286 components: - pos: 79.5,-32.5 @@ -52481,8 +43148,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20287 components: - pos: 79.5,-34.5 @@ -52490,8 +43155,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20288 components: - pos: 79.5,-27.5 @@ -52499,8 +43162,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20289 components: - pos: 79.5,-26.5 @@ -52508,8 +43169,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20290 components: - pos: 79.5,-25.5 @@ -52517,8 +43176,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20291 components: - pos: 79.5,-24.5 @@ -52526,8 +43183,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20292 components: - pos: 78.5,-24.5 @@ -52535,8 +43190,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20293 components: - pos: 77.5,-24.5 @@ -52544,8 +43197,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20294 components: - pos: 76.5,-24.5 @@ -52553,8 +43204,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20295 components: - pos: 75.5,-24.5 @@ -52562,8 +43211,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20296 components: - pos: 80.5,-24.5 @@ -52571,8 +43218,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20297 components: - pos: 81.5,-24.5 @@ -52580,8 +43225,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20298 components: - pos: 82.5,-24.5 @@ -52589,8 +43232,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20299 components: - pos: 83.5,-24.5 @@ -52598,8 +43239,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20300 components: - pos: 83.5,-22.5 @@ -52607,8 +43246,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20301 components: - pos: 82.5,-22.5 @@ -52616,8 +43253,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20302 components: - pos: 81.5,-22.5 @@ -52625,8 +43260,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20303 components: - pos: 80.5,-22.5 @@ -52634,8 +43267,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20304 components: - pos: 78.5,-22.5 @@ -52643,8 +43274,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20305 components: - pos: 77.5,-22.5 @@ -52652,8 +43281,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20306 components: - pos: 76.5,-22.5 @@ -52661,8 +43288,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20307 components: - pos: 75.5,-22.5 @@ -52670,8 +43295,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20308 components: - pos: 78.5,-20.5 @@ -52679,8 +43302,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20309 components: - pos: 77.5,-20.5 @@ -52688,8 +43309,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20310 components: - pos: 76.5,-20.5 @@ -52697,8 +43316,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20311 components: - pos: 75.5,-20.5 @@ -52706,8 +43323,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20312 components: - pos: 75.5,-18.5 @@ -52715,8 +43330,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20313 components: - pos: 76.5,-18.5 @@ -52724,8 +43337,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20314 components: - pos: 77.5,-18.5 @@ -52733,8 +43344,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20315 components: - pos: 78.5,-18.5 @@ -52742,8 +43351,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20316 components: - pos: 80.5,-18.5 @@ -52751,8 +43358,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20317 components: - pos: 81.5,-18.5 @@ -52760,8 +43365,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20318 components: - pos: 82.5,-18.5 @@ -52769,8 +43372,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20319 components: - pos: 83.5,-18.5 @@ -52778,8 +43379,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20320 components: - pos: 83.5,-20.5 @@ -52787,8 +43386,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20321 components: - pos: 82.5,-20.5 @@ -52796,8 +43393,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20322 components: - pos: 81.5,-20.5 @@ -52805,8 +43400,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20323 components: - pos: 80.5,-20.5 @@ -52814,8 +43407,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20324 components: - pos: 80.5,-14.5 @@ -52823,8 +43414,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20325 components: - pos: 81.5,-14.5 @@ -52832,8 +43421,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20326 components: - pos: 82.5,-14.5 @@ -52841,8 +43428,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20327 components: - pos: 83.5,-14.5 @@ -52850,8 +43435,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20328 components: - pos: 83.5,-12.5 @@ -52859,8 +43442,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20329 components: - pos: 82.5,-12.5 @@ -52868,8 +43449,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20330 components: - pos: 81.5,-12.5 @@ -52877,8 +43456,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20331 components: - pos: 80.5,-12.5 @@ -52886,8 +43463,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20332 components: - pos: 78.5,-12.5 @@ -52895,8 +43470,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20333 components: - pos: 77.5,-12.5 @@ -52904,8 +43477,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20334 components: - pos: 76.5,-12.5 @@ -52913,8 +43484,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20335 components: - pos: 75.5,-12.5 @@ -52922,8 +43491,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20336 components: - pos: 75.5,-14.5 @@ -52931,8 +43498,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20337 components: - pos: 76.5,-14.5 @@ -52940,8 +43505,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20338 components: - pos: 77.5,-14.5 @@ -52949,8 +43512,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20339 components: - pos: 78.5,-14.5 @@ -52958,8 +43519,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20418 components: - pos: 80.5,-38.5 @@ -52967,8 +43526,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20419 components: - pos: 81.5,-38.5 @@ -52976,8 +43533,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20519 components: - pos: -25.5,61.5 @@ -52985,8 +43540,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20520 components: - pos: -25.5,62.5 @@ -52994,8 +43547,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20521 components: - pos: -26.5,61.5 @@ -53003,8 +43554,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20522 components: - pos: -26.5,60.5 @@ -53012,8 +43561,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20523 components: - pos: -26.5,59.5 @@ -53021,8 +43568,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20524 components: - pos: -25.5,59.5 @@ -53030,8 +43575,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20525 components: - pos: -25.5,58.5 @@ -53039,8 +43582,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20526 components: - pos: -25.5,57.5 @@ -53048,8 +43589,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20527 components: - pos: -25.5,56.5 @@ -53057,8 +43596,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20528 components: - pos: -25.5,55.5 @@ -53066,8 +43603,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20529 components: - pos: -25.5,54.5 @@ -53075,8 +43610,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20530 components: - pos: -25.5,53.5 @@ -53084,8 +43617,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20531 components: - pos: -25.5,52.5 @@ -53093,8 +43624,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20532 components: - pos: -25.5,51.5 @@ -53102,8 +43631,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20533 components: - pos: -25.5,50.5 @@ -53111,8 +43638,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20534 components: - pos: -25.5,49.5 @@ -53120,8 +43645,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20535 components: - pos: -25.5,48.5 @@ -53129,8 +43652,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20536 components: - pos: -25.5,47.5 @@ -53138,8 +43659,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20537 components: - pos: -25.5,46.5 @@ -53147,8 +43666,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20538 components: - pos: -25.5,45.5 @@ -53156,8 +43673,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20539 components: - pos: -25.5,44.5 @@ -53165,36 +43680,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20540 components: - pos: -25.5,43.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 20541 components: - pos: -25.5,42.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 20542 components: - pos: -24.5,42.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 20543 components: - pos: -23.5,42.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 20729 components: - pos: -31.5,79.5 @@ -53202,8 +43707,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20730 components: - pos: -30.5,79.5 @@ -53211,8 +43714,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20731 components: - pos: -29.5,79.5 @@ -53220,8 +43721,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20732 components: - pos: -28.5,79.5 @@ -53229,8 +43728,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20733 components: - pos: -27.5,79.5 @@ -53238,8 +43735,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20734 components: - pos: -26.5,79.5 @@ -53247,8 +43742,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20737 components: - pos: -25.5,81.5 @@ -53256,8 +43749,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20738 components: - pos: -25.5,80.5 @@ -53265,8 +43756,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20739 components: - pos: -24.5,79.5 @@ -53274,8 +43763,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20740 components: - pos: -23.5,79.5 @@ -53283,8 +43770,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20741 components: - pos: -22.5,79.5 @@ -53292,8 +43777,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20742 components: - pos: -21.5,79.5 @@ -53301,8 +43784,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20743 components: - pos: -20.5,79.5 @@ -53310,8 +43791,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20744 components: - pos: -19.5,79.5 @@ -53319,8 +43798,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20745 components: - pos: -19.5,77.5 @@ -53328,8 +43805,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20746 components: - pos: -20.5,77.5 @@ -53337,8 +43812,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20747 components: - pos: -21.5,77.5 @@ -53346,8 +43819,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20748 components: - pos: -22.5,77.5 @@ -53355,8 +43826,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20749 components: - pos: -23.5,77.5 @@ -53364,8 +43833,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20750 components: - pos: -24.5,77.5 @@ -53373,8 +43840,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20751 components: - pos: -26.5,77.5 @@ -53382,8 +43847,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20752 components: - pos: -27.5,77.5 @@ -53391,8 +43854,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20753 components: - pos: -28.5,77.5 @@ -53400,8 +43861,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20754 components: - pos: -29.5,77.5 @@ -53409,8 +43868,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20755 components: - pos: -30.5,77.5 @@ -53418,8 +43875,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20756 components: - pos: -31.5,77.5 @@ -53427,8 +43882,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20757 components: - pos: -31.5,75.5 @@ -53436,8 +43889,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20758 components: - pos: -30.5,75.5 @@ -53445,8 +43896,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20759 components: - pos: -29.5,75.5 @@ -53454,8 +43903,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20760 components: - pos: -28.5,75.5 @@ -53463,8 +43910,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20761 components: - pos: -27.5,75.5 @@ -53472,8 +43917,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20762 components: - pos: -26.5,75.5 @@ -53481,8 +43924,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20763 components: - pos: -24.5,75.5 @@ -53490,8 +43931,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20764 components: - pos: -23.5,75.5 @@ -53499,8 +43938,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20765 components: - pos: -22.5,75.5 @@ -53508,8 +43945,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20766 components: - pos: -21.5,75.5 @@ -53517,8 +43952,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20767 components: - pos: -20.5,75.5 @@ -53526,8 +43959,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20768 components: - pos: -19.5,75.5 @@ -53535,8 +43966,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20769 components: - pos: -19.5,73.5 @@ -53544,8 +43973,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20770 components: - pos: -20.5,73.5 @@ -53553,8 +43980,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20771 components: - pos: -21.5,73.5 @@ -53562,8 +43987,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20772 components: - pos: -22.5,73.5 @@ -53571,8 +43994,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20773 components: - pos: -23.5,73.5 @@ -53580,8 +44001,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20774 components: - pos: -24.5,73.5 @@ -53589,8 +44008,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20775 components: - pos: -26.5,73.5 @@ -53598,8 +44015,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20776 components: - pos: -27.5,73.5 @@ -53607,8 +44022,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20777 components: - pos: -28.5,73.5 @@ -53616,8 +44029,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20778 components: - pos: -29.5,73.5 @@ -53625,8 +44036,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20779 components: - pos: -30.5,73.5 @@ -53634,8 +44043,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20780 components: - pos: -31.5,73.5 @@ -53643,8 +44050,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20781 components: - pos: -26.5,71.5 @@ -53652,8 +44057,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20782 components: - pos: -27.5,71.5 @@ -53661,8 +44064,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20783 components: - pos: -28.5,71.5 @@ -53670,8 +44071,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20784 components: - pos: -29.5,71.5 @@ -53679,8 +44078,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20785 components: - pos: -30.5,71.5 @@ -53688,8 +44085,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20786 components: - pos: -31.5,71.5 @@ -53697,8 +44092,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20787 components: - pos: -31.5,69.5 @@ -53706,8 +44099,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20788 components: - pos: -30.5,69.5 @@ -53715,8 +44106,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20789 components: - pos: -29.5,69.5 @@ -53724,8 +44113,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20790 components: - pos: -28.5,69.5 @@ -53733,8 +44120,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20791 components: - pos: -27.5,69.5 @@ -53742,8 +44127,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20792 components: - pos: -26.5,69.5 @@ -53751,8 +44134,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20793 components: - pos: -24.5,71.5 @@ -53760,8 +44141,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20794 components: - pos: -23.5,71.5 @@ -53769,8 +44148,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20795 components: - pos: -22.5,71.5 @@ -53778,8 +44155,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20796 components: - pos: -21.5,71.5 @@ -53787,8 +44162,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20797 components: - pos: -20.5,71.5 @@ -53796,8 +44169,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20798 components: - pos: -19.5,71.5 @@ -53805,8 +44176,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20799 components: - pos: -19.5,69.5 @@ -53814,8 +44183,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20800 components: - pos: -20.5,69.5 @@ -53823,8 +44190,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20801 components: - pos: -21.5,69.5 @@ -53832,8 +44197,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20802 components: - pos: -22.5,69.5 @@ -53841,8 +44204,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20803 components: - pos: -23.5,69.5 @@ -53850,8 +44211,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20804 components: - pos: -24.5,69.5 @@ -53859,8 +44218,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20805 components: - pos: -24.5,67.5 @@ -53868,8 +44225,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20806 components: - pos: -23.5,67.5 @@ -53877,8 +44232,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20807 components: - pos: -22.5,67.5 @@ -53886,8 +44239,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20808 components: - pos: -21.5,67.5 @@ -53895,8 +44246,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20809 components: - pos: -20.5,67.5 @@ -53904,8 +44253,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20810 components: - pos: -19.5,67.5 @@ -53913,8 +44260,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20811 components: - pos: -19.5,65.5 @@ -53922,8 +44267,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20812 components: - pos: -20.5,65.5 @@ -53931,8 +44274,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20813 components: - pos: -21.5,65.5 @@ -53940,8 +44281,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20814 components: - pos: -22.5,65.5 @@ -53949,8 +44288,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20815 components: - pos: -23.5,65.5 @@ -53958,8 +44295,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20816 components: - pos: -24.5,65.5 @@ -53967,8 +44302,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20817 components: - pos: -26.5,65.5 @@ -53976,8 +44309,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20818 components: - pos: -27.5,65.5 @@ -53985,8 +44316,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20819 components: - pos: -28.5,65.5 @@ -53994,8 +44323,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20820 components: - pos: -29.5,65.5 @@ -54003,8 +44330,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20821 components: - pos: -30.5,65.5 @@ -54012,8 +44337,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20822 components: - pos: -31.5,65.5 @@ -54021,8 +44344,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20823 components: - pos: -31.5,67.5 @@ -54030,8 +44351,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20824 components: - pos: -30.5,67.5 @@ -54039,8 +44358,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20825 components: - pos: -29.5,67.5 @@ -54048,8 +44365,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20826 components: - pos: -28.5,67.5 @@ -54057,8 +44372,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20827 components: - pos: -27.5,67.5 @@ -54066,8 +44379,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20828 components: - pos: -26.5,67.5 @@ -54075,8 +44386,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20829 components: - pos: -25.5,63.5 @@ -54084,8 +44393,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20830 components: - pos: -25.5,64.5 @@ -54093,8 +44400,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20931 components: - pos: -25.5,82.5 @@ -54102,8 +44407,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21429 components: - pos: -7.5,-37.5 @@ -54111,8 +44414,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21448 components: - pos: -13.5,-33.5 @@ -54120,8 +44421,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21449 components: - pos: -12.5,-33.5 @@ -54129,8 +44428,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21450 components: - pos: -11.5,-33.5 @@ -54138,8 +44435,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21451 components: - pos: -11.5,-34.5 @@ -54147,8 +44442,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22475 components: - pos: -120.5,18.5 @@ -54156,8 +44449,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22478 components: - pos: -119.5,18.5 @@ -54165,8 +44456,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22479 components: - pos: -118.5,18.5 @@ -54174,8 +44463,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22480 components: - pos: -117.5,18.5 @@ -54183,8 +44470,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22481 components: - pos: -117.5,19.5 @@ -54192,8 +44477,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22483 components: - pos: -120.5,19.5 @@ -54201,8 +44484,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22484 components: - pos: -116.5,19.5 @@ -54210,22 +44491,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23103 components: - pos: -118.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23104 components: - pos: -118.5,16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23105 components: - pos: -118.5,15.5 @@ -54233,8 +44508,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23890 components: - pos: 10.5,-60.5 @@ -54242,8 +44515,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23891 components: - pos: 10.5,-61.5 @@ -54251,8 +44522,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23892 components: - pos: 12.5,-60.5 @@ -54260,8 +44529,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23893 components: - pos: 12.5,-61.5 @@ -54269,134 +44536,96 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23894 components: - pos: 12.5,-62.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23895 components: - pos: 11.5,-62.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23896 components: - pos: 10.5,-62.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23897 components: - pos: 13.5,-62.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23898 components: - pos: 13.5,-63.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23899 components: - pos: 13.5,-64.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23900 components: - pos: 13.5,-65.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23901 components: - pos: 13.5,-66.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23902 components: - pos: 13.5,-67.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23903 components: - pos: 13.5,-68.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23904 components: - pos: 13.5,-69.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23905 components: - pos: 13.5,-70.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23906 components: - pos: 11.5,-70.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23907 components: - pos: 12.5,-70.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23908 components: - pos: 11.5,-71.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23909 components: - pos: 11.5,-72.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23910 components: - pos: 11.5,-73.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23911 components: - pos: 10.5,-73.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23912 components: - pos: 9.5,-73.5 @@ -54404,8 +44633,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23913 components: - pos: 9.5,-72.5 @@ -54413,8 +44640,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - proto: CableHVStack entities: - uid: 7192 @@ -54456,22 +44681,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 56 components: - pos: -11.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 120 components: - pos: 4.5,-32.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 281 components: - pos: 43.5,-5.5 @@ -54479,8 +44698,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 350 components: - pos: 45.5,-3.5 @@ -54488,8 +44705,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 564 components: - pos: -17.5,-13.5 @@ -54497,15 +44712,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 628 components: - pos: -28.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 634 components: - pos: -35.5,-7.5 @@ -54513,8 +44724,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 635 components: - pos: -29.5,-17.5 @@ -54522,8 +44731,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 718 components: - pos: -56.5,-18.5 @@ -54531,43 +44738,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 766 components: - pos: -31.5,-5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 774 components: - pos: -34.5,-6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 776 components: - pos: -29.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 777 components: - pos: -22.5,-14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 779 components: - pos: -27.5,-5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 782 components: - pos: -35.5,-9.5 @@ -54575,15 +44770,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 783 components: - pos: -34.5,-12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 793 components: - pos: -35.5,-6.5 @@ -54591,15 +44782,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 813 components: - pos: -22.5,-5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 814 components: - pos: -58.5,-18.5 @@ -54607,99 +44794,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 895 components: - pos: -9.5,-15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 994 components: - pos: 5.5,-37.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1256 components: - pos: 4.5,-34.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1329 components: - pos: 4.5,-37.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1499 components: - pos: 52.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1501 components: - pos: 4.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1504 components: - pos: -26.5,-15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1527 components: - pos: -21.5,-6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1541 components: - pos: -29.5,-14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1542 components: - pos: -21.5,-11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1551 components: - pos: -21.5,-7.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1552 components: - pos: -21.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1553 components: - pos: -31.5,-6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1554 components: - pos: 34.5,-15.5 @@ -54707,15 +44866,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1557 components: - pos: -21.5,-10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1558 components: - pos: -20.5,-7.5 @@ -54723,22 +44878,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1561 components: - pos: -22.5,-13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1565 components: - pos: 34.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1566 components: - pos: 32.5,-15.5 @@ -54746,15 +44895,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1567 components: - pos: 35.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1568 components: - pos: -20.5,-10.5 @@ -54762,8 +44907,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1569 components: - pos: -23.5,-17.5 @@ -54771,50 +44914,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1570 components: - pos: -31.5,-10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1571 components: - pos: -31.5,-11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1572 components: - pos: -32.5,-6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1573 components: - pos: -33.5,-6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1574 components: - pos: -31.5,-7.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1575 components: - pos: -31.5,-8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1576 components: - pos: -26.5,-17.5 @@ -54822,22 +44951,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1577 components: - pos: -23.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1578 components: - pos: -29.5,-5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1579 components: - pos: -20.5,-13.5 @@ -54845,8 +44968,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1580 components: - pos: -32.5,-7.5 @@ -54854,15 +44975,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1581 components: - pos: -21.5,-8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1582 components: - pos: -32.5,-10.5 @@ -54870,15 +44987,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1583 components: - pos: -23.5,-18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1584 components: - pos: -32.5,-13.5 @@ -54886,29 +44999,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1585 components: - pos: -28.5,-14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1586 components: - pos: -21.5,-13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1589 components: - pos: -28.5,-5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1590 components: - pos: 35.5,-15.5 @@ -54916,71 +45021,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1591 components: - pos: 4.5,-28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1597 components: - pos: -31.5,-13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1598 components: - pos: 32.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1599 components: - pos: -22.5,-19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1617 components: - pos: -21.5,-12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1618 components: - pos: -30.5,-14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1623 components: - pos: -26.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1659 components: - pos: -21.5,0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1695 components: - pos: 52.5,-30.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1703 components: - pos: 36.5,-15.5 @@ -54988,15 +45073,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1704 components: - pos: 4.5,-29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1728 components: - pos: -18.5,0.5 @@ -55004,15 +45085,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1738 components: - pos: 4.5,-36.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1742 components: - pos: 4.5,-26.5 @@ -55020,8 +45097,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1743 components: - pos: 6.5,-26.5 @@ -55029,8 +45104,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1746 components: - pos: 5.5,-26.5 @@ -55038,15 +45111,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1759 components: - pos: 52.5,-25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1760 components: - pos: 52.5,-24.5 @@ -55054,15 +45123,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1761 components: - pos: 52.5,-28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1843 components: - pos: -18.5,1.5 @@ -55070,29 +45135,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1860 components: - pos: 36.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1971 components: - pos: -21.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 1979 components: - pos: -23.5,-15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 2058 components: - pos: -28.5,-25.5 @@ -55100,50 +45157,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2070 components: - pos: 4.5,-35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 2072 components: - pos: 6.5,-37.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 2081 components: - pos: 11.5,-20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 2105 components: - pos: -21.5,-1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 2160 components: - pos: -23.5,-19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 2171 components: - pos: 9.5,-20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 2302 components: - pos: -54.5,-18.5 @@ -55151,8 +45194,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2598 components: - pos: 49.5,-3.5 @@ -55160,8 +45201,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2607 components: - pos: -60.5,-18.5 @@ -55169,8 +45208,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2630 components: - pos: -60.5,-16.5 @@ -55178,8 +45215,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2644 components: - pos: -61.5,-18.5 @@ -55187,8 +45222,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2645 components: - pos: -60.5,-17.5 @@ -55196,8 +45229,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2648 components: - pos: -59.5,-18.5 @@ -55205,8 +45236,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3185 components: - pos: -55.5,-18.5 @@ -55214,8 +45243,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3203 components: - pos: -52.5,-18.5 @@ -55223,8 +45250,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3232 components: - pos: 39.5,-44.5 @@ -55232,8 +45257,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3382 components: - pos: -63.5,-17.5 @@ -55241,8 +45264,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3418 components: - pos: -57.5,-18.5 @@ -55250,8 +45271,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4504 components: - pos: -35.5,-10.5 @@ -55259,22 +45278,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4505 components: - pos: -32.5,-12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4506 components: - pos: -33.5,-12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4508 components: - pos: -1.5,-74.5 @@ -55282,78 +45295,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4561 components: - pos: -24.5,-5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4562 components: - pos: -33.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4563 components: - pos: -26.5,-5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4564 components: - pos: -32.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4565 components: - pos: -34.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4566 components: - pos: -23.5,-5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4567 components: - pos: -25.5,-5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4619 components: - pos: -1.5,-68.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4620 components: - pos: -1.5,-55.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4701 components: - pos: 5.5,-32.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4721 components: - pos: 4.5,-33.5 @@ -55361,43 +45352,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4737 components: - pos: 6.5,-52.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4738 components: - pos: 6.5,-53.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4758 components: - pos: 7.5,-53.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4759 components: - pos: 8.5,-53.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4760 components: - pos: -2.5,-53.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4761 components: - pos: -2.5,-52.5 @@ -55405,8 +45384,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4762 components: - pos: 6.5,-50.5 @@ -55414,57 +45391,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4763 components: - pos: 6.5,-51.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4764 components: - pos: -0.5,-53.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4765 components: - pos: -1.5,-53.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4910 components: - pos: -1.5,-56.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4922 components: - pos: -1.5,-67.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4923 components: - pos: -1.5,-63.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4924 components: - pos: -1.5,-58.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4925 components: - pos: -1.5,-59.5 @@ -55472,141 +45433,101 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4926 components: - pos: -1.5,-64.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4929 components: - pos: -1.5,-69.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4966 components: - pos: -1.5,-70.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4973 components: - pos: -1.5,-71.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4977 components: - pos: -1.5,-60.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4978 components: - pos: -1.5,-61.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4979 components: - pos: -1.5,-72.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4980 components: - pos: -1.5,-65.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4992 components: - pos: -1.5,-73.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4993 components: - pos: -1.5,-62.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4997 components: - pos: -1.5,-66.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 4999 components: - pos: -1.5,-57.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5226 components: - pos: -6.5,-54.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5231 components: - pos: -6.5,-55.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5236 components: - pos: -5.5,-55.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5237 components: - pos: -4.5,-55.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5423 components: - pos: -21.5,-5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5427 components: - pos: -30.5,-5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5428 components: - pos: -27.5,-14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5429 components: - pos: -20.5,-17.5 @@ -55614,8 +45535,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5430 components: - pos: -18.5,-17.5 @@ -55623,8 +45542,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5431 components: - pos: -21.5,-16.5 @@ -55632,64 +45549,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5436 components: - pos: -20.5,-6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5455 components: - pos: 52.5,-29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5682 components: - pos: -23.5,-14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5689 components: - pos: -25.5,-14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 5909 components: - pos: -30.5,-13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 6066 components: - pos: 52.5,-26.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 6161 components: - pos: -3.5,-55.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 6170 components: - pos: -2.5,-55.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 6177 components: - pos: -4.5,-18.5 @@ -55697,8 +45596,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6196 components: - pos: 10.5,-52.5 @@ -55706,29 +45603,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6215 components: - pos: 9.5,-53.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 6412 components: - pos: -6.5,-53.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 6413 components: - pos: -7.5,-54.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 6431 components: - pos: -29.5,-31.5 @@ -55736,57 +45625,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6471 components: - pos: 10.5,-53.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 6483 components: - pos: -8.5,-54.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 6484 components: - pos: -9.5,-54.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 6643 components: - pos: -15.5,-54.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 6644 components: - pos: -15.5,-53.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 6645 components: - pos: -10.5,-54.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 6666 components: - pos: -11.5,-54.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 6702 components: - pos: -35.5,-13.5 @@ -55794,8 +45667,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6703 components: - pos: -35.5,-12.5 @@ -55803,8 +45674,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6704 components: - pos: -17.5,-6.5 @@ -55812,8 +45681,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6705 components: - pos: -17.5,-7.5 @@ -55821,36 +45688,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6706 components: - pos: -20.5,-12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 6707 components: - pos: -18.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 6708 components: - pos: -20.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 6709 components: - pos: -18.5,-6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 6710 components: - pos: -17.5,-12.5 @@ -55858,43 +45715,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6713 components: - pos: -12.5,-54.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 6794 components: - pos: -21.5,-2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 6818 components: - pos: -19.5,-6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 6819 components: - pos: -19.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 6828 components: - pos: -21.5,-3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 6884 components: - pos: -21.5,-19.5 @@ -55902,50 +45747,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6885 components: - pos: -22.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 6886 components: - pos: -20.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 6887 components: - pos: -19.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 6888 components: - pos: -18.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 6889 components: - pos: -24.5,-14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 6890 components: - pos: -26.5,-14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 6992 components: - pos: -17.5,-9.5 @@ -55953,29 +45784,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7031 components: - pos: -18.5,-12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 7359 components: - pos: -13.5,-54.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 7360 components: - pos: -14.5,-54.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 7363 components: - pos: -15.5,-52.5 @@ -55983,15 +45806,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7510 components: - pos: 0.5,-53.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 7592 components: - pos: 41.5,-42.5 @@ -55999,15 +45818,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7612 components: - pos: -19.5,-12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 7694 components: - pos: -62.5,-18.5 @@ -56015,22 +45830,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7701 components: - pos: 46.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 7813 components: - pos: -21.5,-4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8030 components: - pos: -17.5,-10.5 @@ -56038,8 +45847,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8114 components: - pos: -5.5,-1.5 @@ -56047,22 +45854,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8115 components: - pos: -5.5,-2.5 parent: 7536 type: Transform - - fixtures: {} - type: Fixtures - uid: 8116 components: - pos: -4.5,-2.5 parent: 7536 type: Transform - - fixtures: {} - type: Fixtures - uid: 8117 components: - pos: -4.5,-1.5 @@ -56070,50 +45871,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8118 components: - pos: -4.5,-3.5 parent: 7536 type: Transform - - fixtures: {} - type: Fixtures - uid: 8119 components: - pos: -3.5,-3.5 parent: 7536 type: Transform - - fixtures: {} - type: Fixtures - uid: 8120 components: - pos: -2.5,-3.5 parent: 7536 type: Transform - - fixtures: {} - type: Fixtures - uid: 8121 components: - pos: -1.5,-3.5 parent: 7536 type: Transform - - fixtures: {} - type: Fixtures - uid: 8122 components: - pos: -0.5,-3.5 parent: 7536 type: Transform - - fixtures: {} - type: Fixtures - uid: 8124 components: - pos: -0.5,-2.5 parent: 7536 type: Transform - - fixtures: {} - type: Fixtures - uid: 8125 components: - pos: -0.5,-1.5 @@ -56121,8 +45908,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8126 components: - pos: 0.5,-1.5 @@ -56130,8 +45915,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8143 components: - pos: 1.5,-1.5 @@ -56139,36 +45922,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8173 components: - pos: 2.5,-1.5 parent: 7536 type: Transform - - fixtures: {} - type: Fixtures - uid: 8178 components: - pos: 3.5,-1.5 parent: 7536 type: Transform - - fixtures: {} - type: Fixtures - uid: 8179 components: - pos: 4.5,-1.5 parent: 7536 type: Transform - - fixtures: {} - type: Fixtures - uid: 8180 components: - pos: 5.5,-1.5 parent: 7536 type: Transform - - fixtures: {} - type: Fixtures - uid: 8181 components: - pos: 5.5,-0.5 @@ -56176,43 +45949,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8182 components: - pos: 5.5,-2.5 parent: 7536 type: Transform - - fixtures: {} - type: Fixtures - uid: 8185 components: - pos: 6.5,-2.5 parent: 7536 type: Transform - - fixtures: {} - type: Fixtures - uid: 8186 components: - pos: 7.5,-2.5 parent: 7536 type: Transform - - fixtures: {} - type: Fixtures - uid: 8187 components: - pos: 8.5,-2.5 parent: 7536 type: Transform - - fixtures: {} - type: Fixtures - uid: 8188 components: - pos: 9.5,-2.5 parent: 7536 type: Transform - - fixtures: {} - type: Fixtures - uid: 8189 components: - pos: 9.5,-1.5 @@ -56220,8 +45981,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8199 components: - pos: 41.5,-45.5 @@ -56229,8 +45988,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8202 components: - pos: 41.5,-48.5 @@ -56238,29 +45995,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8231 components: - pos: -31.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8232 components: - pos: -31.5,-12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8245 components: - pos: -30.5,-15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8246 components: - pos: -31.5,-15.5 @@ -56268,15 +46017,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8581 components: - pos: -28.5,-15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8666 components: - pos: -24.5,-17.5 @@ -56284,204 +46029,146 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8667 components: - pos: -31.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8668 components: - pos: -30.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8669 components: - pos: -30.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8670 components: - pos: -32.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8671 components: - pos: -32.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8672 components: - pos: -32.5,2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8673 components: - pos: -32.5,1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8674 components: - pos: -32.5,0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8675 components: - pos: -32.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8676 components: - pos: -31.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8677 components: - pos: -30.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8678 components: - pos: -29.5,-1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8679 components: - pos: -30.5,-1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8680 components: - pos: -30.5,-2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8681 components: - pos: -30.5,-2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8682 components: - pos: -30.5,-3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8683 components: - pos: -30.5,-4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 8913 components: - pos: 33.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9495 components: - pos: -45.5,11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9498 components: - pos: -44.5,11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9500 components: - pos: -46.5,11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9579 components: - pos: -48.5,11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9580 components: - pos: -49.5,11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9623 components: - pos: -34.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9626 components: - pos: 51.5,-32.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9628 components: - pos: 52.5,-31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9675 components: - pos: 52.5,-32.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9693 components: - pos: 17.5,20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9695 components: - pos: -58.5,7.5 @@ -56489,8 +46176,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9696 components: - pos: -59.5,7.5 @@ -56498,8 +46183,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9697 components: - pos: -59.5,8.5 @@ -56507,8 +46190,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9698 components: - pos: -59.5,9.5 @@ -56516,8 +46197,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9699 components: - pos: -59.5,10.5 @@ -56525,8 +46204,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9700 components: - pos: -59.5,11.5 @@ -56534,8 +46211,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9701 components: - pos: -59.5,12.5 @@ -56543,8 +46218,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9702 components: - pos: -59.5,13.5 @@ -56552,8 +46225,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9703 components: - pos: -58.5,13.5 @@ -56561,176 +46232,126 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9704 components: - pos: -57.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9705 components: - pos: -56.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9706 components: - pos: -55.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9707 components: - pos: -54.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9708 components: - pos: -50.5,11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9709 components: - pos: -53.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9710 components: - pos: -52.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9711 components: - pos: -51.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9712 components: - pos: -50.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9718 components: - pos: -44.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9719 components: - pos: -44.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9720 components: - pos: -43.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9721 components: - pos: -42.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9722 components: - pos: -41.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9723 components: - pos: -40.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9724 components: - pos: -39.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9725 components: - pos: -38.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9726 components: - pos: -37.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9727 components: - pos: -36.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9730 components: - pos: -34.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9731 components: - pos: -33.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9732 components: - pos: -32.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9733 components: - pos: -31.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9734 components: - pos: -31.5,15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9735 components: - pos: -31.5,16.5 @@ -56738,71 +46359,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9736 components: - pos: -54.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9737 components: - pos: -54.5,11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9738 components: - pos: -54.5,10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9739 components: - pos: -54.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9740 components: - pos: -54.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9741 components: - pos: -54.5,7.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9742 components: - pos: -54.5,6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9743 components: - pos: -54.5,5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9744 components: - pos: -53.5,5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9745 components: - pos: -52.5,5.5 @@ -56810,8 +46411,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9755 components: - pos: -51.5,-13.5 @@ -56819,8 +46418,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9756 components: - pos: -51.5,-12.5 @@ -56828,8 +46425,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9757 components: - pos: -50.5,-12.5 @@ -56837,8 +46432,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9758 components: - pos: -49.5,-12.5 @@ -56846,8 +46439,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9759 components: - pos: -48.5,-12.5 @@ -56855,8 +46446,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9760 components: - pos: -47.5,-12.5 @@ -56864,8 +46453,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9761 components: - pos: -46.5,-12.5 @@ -56873,8 +46460,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9762 components: - pos: -45.5,-12.5 @@ -56882,8 +46467,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9763 components: - pos: -44.5,-12.5 @@ -56891,8 +46474,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9764 components: - pos: -43.5,-12.5 @@ -56900,8 +46481,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9765 components: - pos: -42.5,-12.5 @@ -56909,8 +46488,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9766 components: - pos: -42.5,-11.5 @@ -56918,8 +46495,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9767 components: - pos: -47.5,-22.5 @@ -56927,8 +46502,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9768 components: - pos: -47.5,-23.5 @@ -56936,8 +46509,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9769 components: - pos: -48.5,-23.5 @@ -56945,8 +46516,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9770 components: - pos: -49.5,-23.5 @@ -56954,8 +46523,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9771 components: - pos: -50.5,-23.5 @@ -56963,8 +46530,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9772 components: - pos: -51.5,-23.5 @@ -56972,8 +46537,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9774 components: - pos: -52.5,-17.5 @@ -56981,8 +46544,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9805 components: - pos: -52.5,-16.5 @@ -56990,8 +46551,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9806 components: - pos: -52.5,-15.5 @@ -56999,8 +46558,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9807 components: - pos: -52.5,-14.5 @@ -57008,8 +46565,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9808 components: - pos: -52.5,-13.5 @@ -57017,8 +46572,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9813 components: - pos: -52.5,-22.5 @@ -57026,8 +46579,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9814 components: - pos: -52.5,-21.5 @@ -57035,8 +46586,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9869 components: - pos: -26.5,-32.5 @@ -57044,8 +46593,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9870 components: - pos: -27.5,-32.5 @@ -57053,8 +46600,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9871 components: - pos: -28.5,-32.5 @@ -57062,8 +46607,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9872 components: - pos: -29.5,-32.5 @@ -57071,8 +46614,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9878 components: - pos: -25.5,-33.5 @@ -57080,8 +46621,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9879 components: - pos: -20.5,-33.5 @@ -57089,8 +46628,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9880 components: - pos: -19.5,-33.5 @@ -57098,8 +46635,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9940 components: - pos: -47.5,-28.5 @@ -57107,8 +46642,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9941 components: - pos: -47.5,-29.5 @@ -57116,29 +46649,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9942 components: - pos: -46.5,-29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9943 components: - pos: -45.5,-29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9944 components: - pos: -44.5,-29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 9945 components: - pos: -43.5,-29.5 @@ -57146,8 +46671,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9946 components: - pos: -42.5,-29.5 @@ -57155,8 +46678,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9947 components: - pos: -41.5,-29.5 @@ -57164,8 +46685,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9948 components: - pos: -41.5,-28.5 @@ -57173,8 +46692,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9949 components: - pos: -41.5,-27.5 @@ -57182,8 +46699,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9950 components: - pos: -41.5,-26.5 @@ -57191,8 +46706,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9951 components: - pos: -41.5,-25.5 @@ -57200,8 +46713,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9952 components: - pos: -41.5,-24.5 @@ -57209,8 +46720,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9953 components: - pos: -41.5,-23.5 @@ -57218,8 +46727,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9954 components: - pos: -42.5,-23.5 @@ -57227,8 +46734,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9955 components: - pos: -43.5,-23.5 @@ -57236,8 +46741,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9956 components: - pos: -44.5,-23.5 @@ -57245,8 +46748,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9957 components: - pos: -45.5,-23.5 @@ -57254,8 +46755,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9958 components: - pos: -46.5,-23.5 @@ -57263,8 +46762,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9959 components: - pos: -13.5,-32.5 @@ -57272,8 +46769,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9960 components: - pos: -13.5,-31.5 @@ -57281,8 +46776,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9961 components: - pos: -13.5,-30.5 @@ -57290,8 +46783,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9962 components: - pos: -12.5,-30.5 @@ -57299,8 +46790,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9963 components: - pos: -11.5,-30.5 @@ -57308,8 +46797,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9964 components: - pos: -10.5,-30.5 @@ -57317,8 +46804,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9965 components: - pos: -9.5,-30.5 @@ -57326,8 +46811,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9966 components: - pos: -8.5,-30.5 @@ -57335,8 +46818,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9967 components: - pos: -7.5,-30.5 @@ -57344,8 +46825,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9968 components: - pos: -6.5,-30.5 @@ -57353,8 +46832,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9969 components: - pos: -6.5,-29.5 @@ -57362,8 +46839,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9970 components: - pos: -13.5,-29.5 @@ -57371,8 +46846,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9971 components: - pos: -13.5,-28.5 @@ -57380,8 +46853,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9972 components: - pos: -13.5,-27.5 @@ -57389,8 +46860,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9973 components: - pos: -13.5,-26.5 @@ -57398,8 +46867,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9974 components: - pos: -14.5,-26.5 @@ -57407,8 +46874,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9975 components: - pos: -15.5,-26.5 @@ -57416,8 +46881,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9976 components: - pos: -16.5,-26.5 @@ -57425,8 +46888,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9977 components: - pos: -17.5,-26.5 @@ -57434,8 +46895,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9978 components: - pos: -18.5,-26.5 @@ -57443,8 +46902,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9979 components: - pos: -19.5,-26.5 @@ -57452,8 +46909,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9980 components: - pos: -19.5,-27.5 @@ -57461,8 +46916,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9981 components: - pos: -19.5,-28.5 @@ -57470,8 +46923,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9982 components: - pos: -19.5,-29.5 @@ -57479,8 +46930,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9983 components: - pos: -19.5,-30.5 @@ -57488,8 +46937,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9985 components: - pos: -19.5,-31.5 @@ -57497,8 +46944,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9986 components: - pos: -23.5,-33.5 @@ -57506,8 +46951,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9987 components: - pos: -24.5,-33.5 @@ -57515,8 +46958,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9988 components: - pos: -26.5,-33.5 @@ -57524,8 +46965,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9993 components: - pos: -29.5,-30.5 @@ -57533,8 +46972,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9994 components: - pos: -29.5,-29.5 @@ -57542,8 +46979,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9995 components: - pos: -29.5,-28.5 @@ -57551,8 +46986,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9996 components: - pos: -29.5,-27.5 @@ -57560,8 +46993,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9997 components: - pos: -29.5,-26.5 @@ -57569,15 +47000,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9998 components: - pos: -28.5,-26.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10000 components: - pos: -27.5,-25.5 @@ -57585,8 +47012,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10054 components: - pos: -21.5,-33.5 @@ -57594,8 +47019,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10055 components: - pos: -22.5,-33.5 @@ -57603,8 +47026,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10056 components: - pos: -19.5,-32.5 @@ -57612,8 +47033,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10129 components: - pos: -52.5,-20.5 @@ -57621,8 +47040,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10130 components: - pos: -52.5,-19.5 @@ -57630,8 +47047,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10133 components: - pos: -52.5,-23.5 @@ -57639,8 +47054,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10141 components: - pos: -46.5,-14.5 @@ -57648,8 +47061,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10142 components: - pos: -46.5,-13.5 @@ -57657,106 +47068,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10261 components: - pos: -52.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10262 components: - pos: -52.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10263 components: - pos: -51.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10264 components: - pos: -50.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10265 components: - pos: -49.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10266 components: - pos: -48.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10267 components: - pos: -47.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10268 components: - pos: -46.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10269 components: - pos: -45.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10270 components: - pos: -44.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10271 components: - pos: -43.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10272 components: - pos: -42.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10273 components: - pos: -41.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10274 components: - pos: -41.5,5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10275 components: - pos: -41.5,6.5 @@ -57764,15 +47145,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10276 components: - pos: -41.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10308 components: - pos: 18.5,20.5 @@ -57780,15 +47157,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10367 components: - pos: -35.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10550 components: - pos: -1.5,-42.5 @@ -57796,50 +47169,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10551 components: - pos: -2.5,-42.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10552 components: - pos: -3.5,-42.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10553 components: - pos: -4.5,-42.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10554 components: - pos: -5.5,-42.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10555 components: - pos: -6.5,-42.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10556 components: - pos: -7.5,-42.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10557 components: - pos: -7.5,-41.5 @@ -57847,8 +47206,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10558 components: - pos: -7.5,-40.5 @@ -57856,8 +47213,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10559 components: - pos: -7.5,-39.5 @@ -57865,8 +47220,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10560 components: - pos: -7.5,-38.5 @@ -57874,43 +47227,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10561 components: - pos: -0.5,-42.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10562 components: - pos: 0.5,-42.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10563 components: - pos: 1.5,-42.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10564 components: - pos: 1.5,-41.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10565 components: - pos: 2.5,-41.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10566 components: - pos: 3.5,-41.5 @@ -57918,8 +47259,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10567 components: - pos: 4.5,-41.5 @@ -57927,8 +47266,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10568 components: - pos: 5.5,-41.5 @@ -57936,8 +47273,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10569 components: - pos: 6.5,-41.5 @@ -57945,8 +47280,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10570 components: - pos: 7.5,-41.5 @@ -57954,22 +47287,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10571 components: - pos: 45.5,0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10573 components: - pos: 7.5,-40.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10574 components: - pos: 7.5,-39.5 @@ -57977,43 +47304,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10575 components: - pos: 7.5,-38.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10576 components: - pos: 7.5,-37.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10589 components: - pos: 5.5,-31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10590 components: - pos: 5.5,-30.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10591 components: - pos: 4.5,-30.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10777 components: - pos: 41.5,-49.5 @@ -58021,8 +47336,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10778 components: - pos: 41.5,-46.5 @@ -58030,8 +47343,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10779 components: - pos: 41.5,-43.5 @@ -58039,8 +47350,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10885 components: - pos: 30.5,-52.5 @@ -58048,8 +47357,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10886 components: - pos: 30.5,-51.5 @@ -58057,15 +47364,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10887 components: - pos: 37.5,-34.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10888 components: - pos: 37.5,-35.5 @@ -58073,8 +47376,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10889 components: - pos: 37.5,-36.5 @@ -58082,15 +47383,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10890 components: - pos: 38.5,-36.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10891 components: - pos: 39.5,-36.5 @@ -58098,8 +47395,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10892 components: - pos: 39.5,-37.5 @@ -58107,8 +47402,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10893 components: - pos: 39.5,-38.5 @@ -58116,8 +47409,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10894 components: - pos: 39.5,-39.5 @@ -58125,8 +47416,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10895 components: - pos: 39.5,-40.5 @@ -58134,8 +47423,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10896 components: - pos: 39.5,-41.5 @@ -58143,8 +47430,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10897 components: - pos: 40.5,-41.5 @@ -58152,8 +47437,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10898 components: - pos: 41.5,-41.5 @@ -58161,8 +47444,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10903 components: - pos: 41.5,-44.5 @@ -58170,8 +47451,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10904 components: - pos: 41.5,-47.5 @@ -58179,8 +47458,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10909 components: - pos: 41.5,-50.5 @@ -58188,8 +47465,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10910 components: - pos: 40.5,-50.5 @@ -58197,8 +47472,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10911 components: - pos: 39.5,-50.5 @@ -58206,8 +47479,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10912 components: - pos: 38.5,-50.5 @@ -58215,8 +47486,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10913 components: - pos: 37.5,-50.5 @@ -58224,8 +47493,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10914 components: - pos: 36.5,-50.5 @@ -58233,8 +47500,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10915 components: - pos: 35.5,-50.5 @@ -58242,8 +47507,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10916 components: - pos: 34.5,-50.5 @@ -58251,8 +47514,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10917 components: - pos: 33.5,-50.5 @@ -58260,8 +47521,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10918 components: - pos: 32.5,-50.5 @@ -58269,8 +47528,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10919 components: - pos: 31.5,-50.5 @@ -58278,8 +47535,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10920 components: - pos: 30.5,-50.5 @@ -58287,8 +47542,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10921 components: - pos: 31.5,-51.5 @@ -58296,8 +47549,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10922 components: - pos: 31.5,-52.5 @@ -58305,15 +47556,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10936 components: - pos: 40.5,-44.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 10937 components: - pos: 41.5,-44.5 @@ -58321,8 +47568,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11118 components: - pos: 14.5,-49.5 @@ -58330,8 +47575,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11119 components: - pos: 13.5,-49.5 @@ -58339,8 +47582,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11120 components: - pos: 12.5,-49.5 @@ -58348,8 +47589,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11121 components: - pos: 11.5,-49.5 @@ -58357,8 +47596,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11122 components: - pos: 10.5,-49.5 @@ -58366,8 +47603,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11123 components: - pos: 9.5,-49.5 @@ -58375,57 +47610,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11136 components: - pos: 0.5,-52.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11137 components: - pos: 0.5,-51.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11138 components: - pos: 0.5,-50.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11139 components: - pos: 0.5,-49.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11140 components: - pos: 1.5,-49.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11141 components: - pos: 2.5,-49.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11142 components: - pos: 3.5,-49.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11143 components: - pos: 4.5,-49.5 @@ -58433,8 +47652,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11144 components: - pos: 5.5,-49.5 @@ -58442,8 +47659,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11145 components: - pos: 6.5,-49.5 @@ -58451,8 +47666,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11146 components: - pos: 7.5,-49.5 @@ -58460,8 +47673,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11147 components: - pos: 8.5,-49.5 @@ -58469,8 +47680,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11152 components: - pos: 46.5,4.5 @@ -58478,120 +47687,86 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11153 components: - pos: 45.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11155 components: - pos: 44.5,0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11156 components: - pos: 44.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11159 components: - pos: 44.5,-2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11160 components: - pos: 44.5,-1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11161 components: - pos: 9.5,-21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11162 components: - pos: 9.5,-22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11164 components: - pos: 11.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11165 components: - pos: 12.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11166 components: - pos: 11.5,-28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11167 components: - pos: 13.5,-24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11168 components: - pos: 13.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11169 components: - pos: 12.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11170 components: - pos: 11.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11171 components: - pos: 9.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11172 components: - pos: 11.5,-30.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11173 components: - pos: 11.5,-29.5 @@ -58599,50 +47774,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11178 components: - pos: 12.5,-20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11179 components: - pos: 10.5,-20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11180 components: - pos: 13.5,-25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11181 components: - pos: 13.5,-26.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11182 components: - pos: 13.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11213 components: - pos: 10.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11241 components: - pos: 29.5,-38.5 @@ -58650,15 +47811,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11242 components: - pos: 29.5,-39.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11243 components: - pos: 29.5,-40.5 @@ -58666,8 +47823,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11244 components: - pos: 30.5,-40.5 @@ -58675,8 +47830,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11245 components: - pos: 31.5,-40.5 @@ -58684,8 +47837,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11246 components: - pos: 32.5,-40.5 @@ -58693,8 +47844,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11247 components: - pos: 33.5,-40.5 @@ -58702,8 +47851,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11248 components: - pos: 34.5,-40.5 @@ -58711,8 +47858,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11249 components: - pos: 35.5,-40.5 @@ -58720,8 +47865,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11250 components: - pos: 36.5,-40.5 @@ -58729,8 +47872,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11251 components: - pos: 37.5,-40.5 @@ -58738,8 +47879,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11252 components: - pos: 38.5,-40.5 @@ -58747,8 +47886,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11283 components: - pos: 28.5,-40.5 @@ -58756,8 +47893,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11284 components: - pos: 27.5,-40.5 @@ -58765,8 +47900,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11303 components: - pos: 26.5,-40.5 @@ -58774,29 +47907,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11305 components: - pos: 26.5,-39.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11467 components: - pos: -47.5,11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11470 components: - pos: 50.5,-32.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11651 components: - pos: -3.5,-50.5 @@ -58804,8 +47929,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11652 components: - pos: -4.5,-50.5 @@ -58813,8 +47936,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11653 components: - pos: -4.5,-49.5 @@ -58822,8 +47943,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11654 components: - pos: -5.5,-49.5 @@ -58831,8 +47950,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11655 components: - pos: -6.5,-49.5 @@ -58840,8 +47957,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11656 components: - pos: -6.5,-50.5 @@ -58849,8 +47964,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11657 components: - pos: -6.5,-51.5 @@ -58858,15 +47971,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11658 components: - pos: -6.5,-52.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11733 components: - pos: 29.5,18.5 @@ -58874,8 +47983,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11890 components: - pos: 52.5,-3.5 @@ -58883,8 +47990,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11963 components: - pos: 53.5,-3.5 @@ -58892,8 +47997,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11964 components: - pos: 54.5,-3.5 @@ -58901,8 +48004,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11987 components: - pos: 23.5,-9.5 @@ -58910,8 +48011,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11988 components: - pos: 22.5,-9.5 @@ -58919,8 +48018,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11989 components: - pos: 21.5,-9.5 @@ -58928,8 +48025,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11990 components: - pos: 20.5,-9.5 @@ -58937,8 +48032,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11991 components: - pos: 19.5,-9.5 @@ -58946,29 +48039,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11992 components: - pos: 18.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11993 components: - pos: 17.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 11994 components: - pos: 16.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12042 components: - pos: -6.5,3.5 @@ -58976,8 +48061,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12047 components: - pos: -6.5,4.5 @@ -58985,8 +48068,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12050 components: - pos: -13.5,-4.5 @@ -58994,8 +48075,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12071 components: - pos: 23.5,-14.5 @@ -59003,141 +48082,101 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12072 components: - pos: 23.5,-13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12073 components: - pos: 23.5,-12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12074 components: - pos: 23.5,-11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12075 components: - pos: 23.5,-10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12138 components: - pos: 13.5,-19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12139 components: - pos: 12.5,-19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12140 components: - pos: 12.5,-18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12141 components: - pos: 12.5,-17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12142 components: - pos: 12.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12143 components: - pos: 13.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12144 components: - pos: 14.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12145 components: - pos: 15.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12146 components: - pos: 16.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12147 components: - pos: 16.5,-15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12148 components: - pos: 16.5,-14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12149 components: - pos: 16.5,-13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12150 components: - pos: 16.5,-12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12151 components: - pos: 16.5,-11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12152 components: - pos: 16.5,-10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12275 components: - pos: 51.5,-3.5 @@ -59145,8 +48184,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12276 components: - pos: -13.5,-5.5 @@ -59154,8 +48191,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12280 components: - pos: 50.5,-3.5 @@ -59163,8 +48198,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12297 components: - pos: 43.5,-6.5 @@ -59172,8 +48205,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12298 components: - pos: 43.5,-7.5 @@ -59181,127 +48212,91 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12299 components: - pos: 37.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12300 components: - pos: 38.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12301 components: - pos: 39.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12302 components: - pos: 40.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12303 components: - pos: 41.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12304 components: - pos: 42.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12305 components: - pos: 43.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12306 components: - pos: 43.5,-15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12307 components: - pos: 43.5,-14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12308 components: - pos: 43.5,-13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12309 components: - pos: 43.5,-12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12310 components: - pos: 43.5,-11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12311 components: - pos: 43.5,-10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12312 components: - pos: 43.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12313 components: - pos: 43.5,-8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12314 components: - pos: 44.5,-8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12315 components: - pos: 44.5,-7.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12316 components: - pos: 44.5,-6.5 @@ -59309,8 +48304,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12411 components: - pos: 48.5,-3.5 @@ -59318,8 +48311,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12414 components: - pos: 47.5,-3.5 @@ -59327,8 +48318,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12415 components: - pos: 46.5,-3.5 @@ -59336,8 +48325,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12444 components: - pos: 39.5,-35.5 @@ -59345,15 +48332,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12445 components: - pos: 39.5,-34.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 12446 components: - pos: 39.5,-33.5 @@ -59361,8 +48344,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12558 components: - pos: -13.5,-3.5 @@ -59370,8 +48351,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12559 components: - pos: -13.5,-12.5 @@ -59379,8 +48358,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12560 components: - pos: -13.5,-13.5 @@ -59388,8 +48365,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12561 components: - pos: -13.5,-14.5 @@ -59397,8 +48372,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12641 components: - pos: 44.5,-3.5 @@ -59406,8 +48379,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12720 components: - pos: 43.5,-4.5 @@ -59415,8 +48386,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12880 components: - pos: -63.5,-18.5 @@ -59424,8 +48393,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12903 components: - pos: -53.5,-18.5 @@ -59433,8 +48400,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13216 components: - pos: 51.5,15.5 @@ -59442,50 +48407,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13217 components: - pos: 51.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13274 components: - pos: 46.5,5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13275 components: - pos: 46.5,6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13276 components: - pos: 46.5,7.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13277 components: - pos: 46.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13278 components: - pos: 46.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13279 components: - pos: 47.5,9.5 @@ -59493,162 +48444,116 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13280 components: - pos: 48.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13281 components: - pos: 49.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13282 components: - pos: 50.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13283 components: - pos: 51.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13284 components: - pos: 52.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13285 components: - pos: 52.5,10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13286 components: - pos: 52.5,11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13287 components: - pos: 52.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13288 components: - pos: 52.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13289 components: - pos: 52.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13391 components: - pos: 17.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13392 components: - pos: 17.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13393 components: - pos: 17.5,10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13394 components: - pos: 17.5,11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13395 components: - pos: 17.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13396 components: - pos: 17.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13397 components: - pos: 16.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13398 components: - pos: 15.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13399 components: - pos: 14.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13400 components: - pos: 13.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13401 components: - pos: 13.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13402 components: - pos: 13.5,15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13403 components: - pos: 13.5,16.5 @@ -59656,8 +48561,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13533 components: - pos: -58.5,9.5 @@ -59665,8 +48568,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13620 components: - pos: -4.5,-17.5 @@ -59674,15 +48575,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13621 components: - pos: -5.5,-17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13641 components: - pos: -7.5,-20.5 @@ -59690,8 +48587,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13658 components: - pos: -5.5,-19.5 @@ -59699,8 +48594,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13671 components: - pos: -4.5,-17.5 @@ -59708,8 +48601,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13677 components: - pos: -7.5,-16.5 @@ -59717,8 +48608,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13678 components: - pos: -7.5,-10.5 @@ -59726,29 +48615,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13679 components: - pos: -10.5,-18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13680 components: - pos: -8.5,-17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13682 components: - pos: -7.5,-17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13683 components: - pos: -11.5,-18.5 @@ -59756,8 +48637,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13684 components: - pos: -8.5,-16.5 @@ -59765,148 +48644,106 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13686 components: - pos: -10.5,-17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13702 components: - pos: -15.5,-25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13703 components: - pos: -15.5,-24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13704 components: - pos: -15.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13705 components: - pos: -15.5,-22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13706 components: - pos: -14.5,-22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13707 components: - pos: -13.5,-22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13708 components: - pos: -12.5,-22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13709 components: - pos: -11.5,-22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13710 components: - pos: -10.5,-22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13711 components: - pos: -9.5,-22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13712 components: - pos: -8.5,-22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13713 components: - pos: -8.5,-21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13714 components: - pos: -8.5,-20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13715 components: - pos: -8.5,-19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13716 components: - pos: -10.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13718 components: - pos: -7.5,-15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13720 components: - pos: -8.5,-15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13721 components: - pos: -10.5,-15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13725 components: - pos: -6.5,-16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13735 components: - pos: -9.5,-20.5 @@ -59914,43 +48751,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13746 components: - pos: -8.5,-18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13752 components: - pos: -9.5,-13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13753 components: - pos: -9.5,-14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13755 components: - pos: -9.5,-12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13756 components: - pos: -9.5,-11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13757 components: - pos: -9.5,-10.5 @@ -59958,8 +48783,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13758 components: - pos: -10.5,-10.5 @@ -59967,8 +48790,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13759 components: - pos: -8.5,-10.5 @@ -59976,22 +48797,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13760 components: - pos: -8.5,-13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13764 components: - pos: -10.5,-13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 13765 components: - pos: -11.5,-13.5 @@ -59999,8 +48814,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13766 components: - pos: -11.5,-14.5 @@ -60008,8 +48821,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13767 components: - pos: -11.5,-12.5 @@ -60017,8 +48828,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14329 components: - pos: -13.5,14.5 @@ -60026,85 +48835,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14330 components: - pos: -14.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14331 components: - pos: -14.5,15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14332 components: - pos: -14.5,16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14333 components: - pos: -14.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14334 components: - pos: -14.5,18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14335 components: - pos: -14.5,19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14336 components: - pos: -14.5,20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14337 components: - pos: -14.5,21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14338 components: - pos: -14.5,22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14339 components: - pos: -14.5,23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14340 components: - pos: -14.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14341 components: - pos: -13.5,24.5 @@ -60112,8 +48897,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14342 components: - pos: -12.5,24.5 @@ -60121,8 +48904,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14344 components: - pos: -12.5,25.5 @@ -60130,71 +48911,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14553 components: - pos: -15.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14554 components: - pos: -16.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14555 components: - pos: -17.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14556 components: - pos: -18.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14557 components: - pos: -19.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14558 components: - pos: -20.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14559 components: - pos: -21.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14560 components: - pos: -22.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14561 components: - pos: -23.5,23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 14562 components: - pos: -23.5,22.5 @@ -60202,15 +48963,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15808 components: - pos: -23.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 15838 components: - pos: -44.5,15.5 @@ -60218,8 +48975,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16175 components: - pos: -6.5,40.5 @@ -60227,8 +48982,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16176 components: - pos: -5.5,40.5 @@ -60236,8 +48989,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16177 components: - pos: -4.5,40.5 @@ -60245,8 +48996,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16178 components: - pos: -3.5,40.5 @@ -60254,8 +49003,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16179 components: - pos: -2.5,40.5 @@ -60263,8 +49010,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16180 components: - pos: -1.5,40.5 @@ -60272,8 +49017,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16181 components: - pos: -0.5,40.5 @@ -60281,8 +49024,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16182 components: - pos: 0.5,40.5 @@ -60290,8 +49031,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16183 components: - pos: 1.5,40.5 @@ -60299,8 +49038,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16184 components: - pos: 2.5,40.5 @@ -60308,8 +49045,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16185 components: - pos: 3.5,40.5 @@ -60317,8 +49052,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16186 components: - pos: 4.5,40.5 @@ -60326,8 +49059,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16187 components: - pos: 5.5,40.5 @@ -60335,8 +49066,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16188 components: - pos: 6.5,40.5 @@ -60344,8 +49073,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16189 components: - pos: 7.5,40.5 @@ -60353,8 +49080,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16190 components: - pos: 7.5,41.5 @@ -60362,8 +49087,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16191 components: - pos: 7.5,42.5 @@ -60371,8 +49094,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16192 components: - pos: 7.5,43.5 @@ -60380,8 +49101,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16193 components: - pos: 7.5,44.5 @@ -60389,8 +49108,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16194 components: - pos: 7.5,45.5 @@ -60398,8 +49115,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16195 components: - pos: 7.5,46.5 @@ -60407,8 +49122,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16196 components: - pos: 7.5,47.5 @@ -60416,8 +49129,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16197 components: - pos: 7.5,48.5 @@ -60425,8 +49136,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16198 components: - pos: 7.5,49.5 @@ -60434,8 +49143,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16199 components: - pos: 7.5,50.5 @@ -60443,8 +49150,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16200 components: - pos: 7.5,51.5 @@ -60452,8 +49157,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16201 components: - pos: 7.5,52.5 @@ -60461,8 +49164,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16202 components: - pos: 7.5,53.5 @@ -60470,8 +49171,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16203 components: - pos: 7.5,54.5 @@ -60479,8 +49178,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16204 components: - pos: 6.5,54.5 @@ -60488,8 +49185,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16205 components: - pos: 5.5,54.5 @@ -60497,8 +49192,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16206 components: - pos: 4.5,54.5 @@ -60506,8 +49199,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16207 components: - pos: 3.5,54.5 @@ -60515,8 +49206,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16208 components: - pos: 2.5,54.5 @@ -60524,8 +49213,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16209 components: - pos: 1.5,54.5 @@ -60533,8 +49220,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16210 components: - pos: 0.5,54.5 @@ -60542,8 +49227,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16211 components: - pos: -0.5,54.5 @@ -60551,8 +49234,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16212 components: - pos: -1.5,54.5 @@ -60560,8 +49241,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16213 components: - pos: -2.5,54.5 @@ -60569,8 +49248,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16214 components: - pos: -3.5,54.5 @@ -60578,8 +49255,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16215 components: - pos: -4.5,54.5 @@ -60587,8 +49262,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16216 components: - pos: -5.5,54.5 @@ -60596,8 +49269,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16217 components: - pos: -6.5,54.5 @@ -60605,8 +49276,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16218 components: - pos: -6.5,53.5 @@ -60614,8 +49283,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16219 components: - pos: -6.5,52.5 @@ -60623,8 +49290,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16220 components: - pos: -6.5,51.5 @@ -60632,8 +49297,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16221 components: - pos: -6.5,50.5 @@ -60641,8 +49304,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16222 components: - pos: -6.5,49.5 @@ -60650,8 +49311,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16223 components: - pos: -6.5,48.5 @@ -60659,8 +49318,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16224 components: - pos: -6.5,47.5 @@ -60668,8 +49325,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16225 components: - pos: -6.5,46.5 @@ -60677,8 +49332,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16226 components: - pos: -6.5,45.5 @@ -60686,8 +49339,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16227 components: - pos: -6.5,44.5 @@ -60695,8 +49346,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16228 components: - pos: -6.5,43.5 @@ -60704,8 +49353,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16229 components: - pos: -6.5,42.5 @@ -60713,8 +49360,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16230 components: - pos: -6.5,41.5 @@ -60722,8 +49367,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16362 components: - pos: -3.5,35.5 @@ -60731,8 +49374,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16366 components: - pos: -5.5,38.5 @@ -60740,8 +49381,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16367 components: - pos: -5.5,36.5 @@ -60749,15 +49388,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16368 components: - pos: 4.5,36.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16369 components: - pos: 4.5,37.5 @@ -60765,8 +49400,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16370 components: - pos: 4.5,38.5 @@ -60774,8 +49407,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16371 components: - pos: 4.5,39.5 @@ -60783,8 +49414,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16372 components: - pos: 4.5,35.5 @@ -60792,36 +49421,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16385 components: - pos: 3.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16386 components: - pos: 2.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16387 components: - pos: 2.5,34.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16388 components: - pos: 1.5,34.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16389 components: - pos: 0.5,34.5 @@ -60829,22 +49448,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16390 components: - pos: -0.5,34.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16391 components: - pos: -1.5,34.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16395 components: - pos: -4.5,35.5 @@ -60852,8 +49465,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16399 components: - pos: -5.5,39.5 @@ -60861,8 +49472,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16400 components: - pos: -5.5,37.5 @@ -60870,8 +49479,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16401 components: - pos: -5.5,35.5 @@ -60879,22 +49486,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16449 components: - pos: -2.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16504 components: - pos: 5.5,36.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16505 components: - pos: 5.5,37.5 @@ -60902,15 +49503,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16529 components: - pos: -1.5,35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16686 components: - pos: -10.5,25.5 @@ -60918,8 +49515,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16687 components: - pos: -10.5,26.5 @@ -60927,92 +49522,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16688 components: - pos: -10.5,27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16689 components: - pos: -10.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16690 components: - pos: -11.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16691 components: - pos: -12.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16692 components: - pos: -13.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16693 components: - pos: -14.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16694 components: - pos: -15.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16695 components: - pos: -16.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16696 components: - pos: -17.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16697 components: - pos: -18.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16698 components: - pos: -18.5,29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16699 components: - pos: -18.5,30.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16700 components: - pos: -18.5,31.5 @@ -61020,134 +49589,96 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16702 components: - pos: -9.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16703 components: - pos: -8.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16704 components: - pos: -7.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16705 components: - pos: -6.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16706 components: - pos: -5.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16707 components: - pos: -4.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16708 components: - pos: -3.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16709 components: - pos: -2.5,28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16710 components: - pos: -2.5,27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16711 components: - pos: -2.5,26.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16712 components: - pos: -2.5,25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16713 components: - pos: -2.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16714 components: - pos: -2.5,23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16715 components: - pos: -1.5,23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16716 components: - pos: -0.5,23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16717 components: - pos: 0.5,23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16718 components: - pos: 1.5,23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16719 components: - pos: 2.5,23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 16720 components: - pos: 2.5,22.5 @@ -61155,36 +49686,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17494 components: - pos: -44.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17972 components: - pos: -11.5,5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17975 components: - pos: -11.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 17979 components: - pos: -8.5,2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18096 components: - pos: -32.5,-14.5 @@ -61192,8 +49713,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18282 components: - pos: 3.5,-2.5 @@ -61201,78 +49720,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18283 components: - pos: 4.5,-2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18284 components: - pos: 4.5,-1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18285 components: - pos: 4.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18286 components: - pos: 3.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18287 components: - pos: 2.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18288 components: - pos: 1.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18289 components: - pos: 0.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18290 components: - pos: -1.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18291 components: - pos: -2.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18292 components: - pos: -0.5,-0.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18293 components: - pos: -2.5,-1.5 @@ -61280,92 +49777,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18521 components: - pos: -32.5,-15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18547 components: - pos: -20.5,1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18575 components: - pos: -7.5,2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18752 components: - pos: -2.5,-2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18753 components: - pos: -2.5,-3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18754 components: - pos: -2.5,-4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18755 components: - pos: -3.5,-4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18756 components: - pos: -4.5,-4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18757 components: - pos: -5.5,-4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18758 components: - pos: -6.5,-4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18759 components: - pos: -8.5,-4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18760 components: - pos: -7.5,-4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18761 components: - pos: -9.5,-4.5 @@ -61373,8 +49844,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18762 components: - pos: -9.5,-3.5 @@ -61382,8 +49851,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18763 components: - pos: -10.5,-3.5 @@ -61391,8 +49858,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18764 components: - pos: -11.5,-3.5 @@ -61400,8 +49865,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18765 components: - pos: -12.5,-3.5 @@ -61409,8 +49872,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18766 components: - pos: -12.5,-12.5 @@ -61418,8 +49879,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18768 components: - pos: -5.5,-14.5 @@ -61427,15 +49886,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18769 components: - pos: -5.5,-15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18770 components: - pos: -5.5,-16.5 @@ -61443,8 +49898,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18773 components: - pos: -12.5,-5.5 @@ -61452,8 +49905,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18774 components: - pos: -12.5,-4.5 @@ -61461,29 +49912,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18790 components: - pos: -21.5,1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18791 components: - pos: -19.5,1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18842 components: - pos: -40.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18843 components: - pos: -39.5,3.5 @@ -61491,8 +49934,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18844 components: - pos: -39.5,4.5 @@ -61500,22 +49941,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18861 components: - pos: 24.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18864 components: - pos: 49.5,-32.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18866 components: - pos: 25.5,4.5 @@ -61523,29 +49958,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18868 components: - pos: 23.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18869 components: - pos: 22.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18874 components: - pos: 21.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 18875 components: - pos: 21.5,5.5 @@ -61553,8 +49980,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19236 components: - pos: 26.5,14.5 @@ -61562,8 +49987,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19237 components: - pos: 26.5,15.5 @@ -61571,8 +49994,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19238 components: - pos: 26.5,16.5 @@ -61580,8 +50001,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19239 components: - pos: 26.5,17.5 @@ -61589,8 +50008,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19240 components: - pos: 26.5,18.5 @@ -61598,8 +50015,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19241 components: - pos: 26.5,19.5 @@ -61607,8 +50022,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19242 components: - pos: 26.5,20.5 @@ -61616,8 +50029,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19243 components: - pos: 26.5,21.5 @@ -61625,29 +50036,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19244 components: - pos: 26.5,22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19245 components: - pos: 26.5,23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19246 components: - pos: 26.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19247 components: - pos: 27.5,22.5 @@ -61655,309 +50058,221 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19248 components: - pos: 25.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19249 components: - pos: 24.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19250 components: - pos: 23.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19251 components: - pos: 22.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19252 components: - pos: 21.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19253 components: - pos: 20.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19254 components: - pos: 19.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19255 components: - pos: 18.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19256 components: - pos: 17.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19257 components: - pos: 16.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19258 components: - pos: 16.5,23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19259 components: - pos: 16.5,22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19260 components: - pos: 16.5,21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19261 components: - pos: 16.5,20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19262 components: - pos: 16.5,19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19263 components: - pos: 16.5,18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19264 components: - pos: 16.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19265 components: - pos: 16.5,16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19266 components: - pos: 16.5,15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19267 components: - pos: 16.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19333 components: - pos: 18.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19334 components: - pos: 19.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19335 components: - pos: 20.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19336 components: - pos: 21.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19337 components: - pos: 22.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19338 components: - pos: 23.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19339 components: - pos: 24.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19340 components: - pos: 25.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19341 components: - pos: 26.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19342 components: - pos: 27.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19343 components: - pos: 28.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19344 components: - pos: 29.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19345 components: - pos: 30.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19346 components: - pos: 31.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19347 components: - pos: 32.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19348 components: - pos: 33.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19349 components: - pos: 34.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19350 components: - pos: 35.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19351 components: - pos: 36.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19352 components: - pos: 37.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19353 components: - pos: 37.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19354 components: - pos: 37.5,10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19355 components: - pos: 37.5,11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19356 components: - pos: 37.5,12.5 @@ -61965,22 +50280,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19357 components: - pos: 28.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19358 components: - pos: 28.5,10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19359 components: - pos: 28.5,11.5 @@ -61988,8 +50297,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19360 components: - pos: 28.5,12.5 @@ -61997,8 +50304,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19544 components: - pos: 29.5,12.5 @@ -62006,8 +50311,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19545 components: - pos: 29.5,13.5 @@ -62015,8 +50318,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19546 components: - pos: 29.5,14.5 @@ -62024,8 +50325,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19547 components: - pos: 29.5,15.5 @@ -62033,8 +50332,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19548 components: - pos: 29.5,16.5 @@ -62042,8 +50339,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19549 components: - pos: 29.5,17.5 @@ -62051,8 +50346,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19551 components: - pos: 28.5,18.5 @@ -62060,8 +50353,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19552 components: - pos: 27.5,18.5 @@ -62069,127 +50360,91 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19554 components: - pos: 27.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19555 components: - pos: 28.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19556 components: - pos: 29.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19557 components: - pos: 30.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19558 components: - pos: 31.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19559 components: - pos: 32.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19560 components: - pos: 33.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19561 components: - pos: 34.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19562 components: - pos: 35.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19563 components: - pos: 36.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19564 components: - pos: 37.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19565 components: - pos: 38.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19566 components: - pos: 39.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19567 components: - pos: 40.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19568 components: - pos: 41.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19569 components: - pos: 42.5,24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19570 components: - pos: 42.5,25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19571 components: - pos: 42.5,26.5 @@ -62197,29 +50452,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19745 components: - pos: 48.5,-32.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19810 components: - pos: -7.5,3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 19824 components: - pos: -9.5,2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 20088 components: - pos: 61.5,-37.5 @@ -62227,8 +50474,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20089 components: - pos: 62.5,-37.5 @@ -62236,8 +50481,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20090 components: - pos: 62.5,-36.5 @@ -62245,8 +50488,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20555 components: - pos: -26.5,59.5 @@ -62254,8 +50495,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20556 components: - pos: -25.5,59.5 @@ -62263,8 +50502,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20557 components: - pos: -24.5,59.5 @@ -62272,8 +50509,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20558 components: - pos: -24.5,60.5 @@ -62281,8 +50516,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20559 components: - pos: -24.5,61.5 @@ -62290,8 +50523,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20560 components: - pos: -24.5,62.5 @@ -62299,36 +50530,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21014 components: - pos: 47.5,-32.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21041 components: - pos: -5.5,-18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21139 components: - pos: -11.5,2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21140 components: - pos: -10.5,2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 21142 components: - pos: -9.5,1.5 @@ -62336,8 +50557,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21430 components: - pos: -7.5,-37.5 @@ -62345,8 +50564,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21452 components: - pos: -13.5,-33.5 @@ -62354,8 +50571,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21453 components: - pos: -12.5,-33.5 @@ -62363,8 +50578,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21454 components: - pos: -11.5,-33.5 @@ -62372,8 +50585,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21455 components: - pos: -11.5,-34.5 @@ -62381,15 +50592,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21510 components: - pos: 46.5,-32.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22492 components: - pos: -116.5,19.5 @@ -62397,8 +50604,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22493 components: - pos: -116.5,18.5 @@ -62406,50 +50611,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22494 components: - pos: -116.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22495 components: - pos: -117.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22496 components: - pos: -118.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22497 components: - pos: -119.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22498 components: - pos: -120.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22499 components: - pos: -120.5,16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22500 components: - pos: -120.5,15.5 @@ -62457,8 +50648,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22501 components: - pos: -120.5,14.5 @@ -62466,64 +50655,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22502 components: - pos: -115.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22503 components: - pos: -114.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22504 components: - pos: -113.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22505 components: - pos: -112.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22506 components: - pos: -111.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22507 components: - pos: -110.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22508 components: - pos: -110.5,18.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22509 components: - pos: -110.5,19.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22510 components: - pos: -110.5,20.5 @@ -62531,29 +50702,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22511 components: - pos: -110.5,21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22512 components: - pos: -110.5,22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22513 components: - pos: -110.5,23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22514 components: - pos: -110.5,24.5 @@ -62561,64 +50724,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22515 components: - pos: -109.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22516 components: - pos: -108.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22517 components: - pos: -107.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22518 components: - pos: -106.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22519 components: - pos: -105.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22520 components: - pos: -104.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22521 components: - pos: -104.5,16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22522 components: - pos: -104.5,15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22523 components: - pos: -104.5,14.5 @@ -62626,85 +50771,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22524 components: - pos: -111.5,16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22525 components: - pos: -111.5,15.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22526 components: - pos: -111.5,14.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22527 components: - pos: -111.5,13.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22528 components: - pos: -111.5,12.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22529 components: - pos: -111.5,11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22530 components: - pos: -111.5,10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22531 components: - pos: -111.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22532 components: - pos: -112.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22533 components: - pos: -113.5,9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22534 components: - pos: -113.5,8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22535 components: - pos: -113.5,7.5 @@ -62712,85 +50833,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22536 components: - pos: -103.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22537 components: - pos: -102.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22538 components: - pos: -101.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22539 components: - pos: -100.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22540 components: - pos: -99.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22541 components: - pos: -98.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22542 components: - pos: -97.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22543 components: - pos: -96.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22544 components: - pos: -95.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22545 components: - pos: -94.5,17.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22546 components: - pos: -94.5,16.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 22547 components: - pos: -94.5,15.5 @@ -62798,22 +50895,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23169 components: - pos: -113.5,10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23170 components: - pos: -114.5,10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23171 components: - pos: -115.5,10.5 @@ -62821,8 +50912,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23172 components: - pos: -115.5,9.5 @@ -62830,8 +50919,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23173 components: - pos: -115.5,11.5 @@ -62839,29 +50926,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23174 components: - pos: -110.5,10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23175 components: - pos: -109.5,10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23176 components: - pos: -108.5,10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23177 components: - pos: -107.5,10.5 @@ -62869,8 +50948,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23178 components: - pos: -107.5,9.5 @@ -62878,8 +50955,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23179 components: - pos: -107.5,11.5 @@ -62887,8 +50962,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23600 components: - pos: -64.5,40.5 @@ -62896,36 +50969,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23601 components: - pos: -63.5,40.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23602 components: - pos: -62.5,40.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23603 components: - pos: -61.5,40.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23604 components: - pos: -60.5,40.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23605 components: - pos: -59.5,40.5 @@ -62933,22 +50996,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23698 components: - pos: 45.5,-32.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23722 components: - pos: -7.5,4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23723 components: - pos: -7.5,6.5 @@ -62956,197 +51013,141 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23724 components: - pos: -7.5,5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23727 components: - pos: 44.5,-32.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23732 components: - pos: 44.5,-31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23733 components: - pos: 43.5,-31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23734 components: - pos: 42.5,-31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23735 components: - pos: 41.5,-31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23736 components: - pos: 40.5,-31.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23737 components: - pos: 40.5,-32.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23738 components: - pos: 40.5,-33.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23739 components: - pos: 40.5,-34.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23740 components: - pos: 44.5,-30.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23741 components: - pos: 44.5,-29.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23742 components: - pos: 44.5,-28.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23743 components: - pos: 44.5,-27.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23744 components: - pos: 44.5,-26.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23745 components: - pos: 44.5,-25.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23746 components: - pos: 44.5,-24.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23747 components: - pos: 44.5,-23.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23748 components: - pos: 44.5,-22.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23749 components: - pos: 44.5,-21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23750 components: - pos: 45.5,-21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23751 components: - pos: 46.5,-21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23752 components: - pos: 47.5,-21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23753 components: - pos: 48.5,-21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23754 components: - pos: 49.5,-21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23755 components: - pos: 50.5,-21.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23756 components: - pos: 50.5,-20.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23757 components: - pos: 50.5,-19.5 @@ -63154,8 +51155,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23774 components: - pos: -1.5,-11.5 @@ -63163,127 +51162,91 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23775 components: - pos: -0.5,-11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23776 components: - pos: 0.5,-11.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23777 components: - pos: 0.5,-10.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23778 components: - pos: 0.5,-9.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23779 components: - pos: 0.5,-8.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23780 components: - pos: 0.5,-7.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23781 components: - pos: 0.5,-6.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23782 components: - pos: 0.5,-5.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23783 components: - pos: 0.5,-4.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23784 components: - pos: 0.5,-3.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23785 components: - pos: 0.5,-2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23786 components: - pos: 0.5,-1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23789 components: - pos: 26.5,-38.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23790 components: - pos: 26.5,-37.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23791 components: - pos: 26.5,-36.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23792 components: - pos: 26.5,-35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23793 components: - pos: 27.5,-35.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23794 components: - pos: 27.5,-34.5 @@ -63291,8 +51254,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23921 components: - pos: 9.5,-72.5 @@ -63300,36 +51261,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23922 components: - pos: 9.5,-71.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23923 components: - pos: 9.5,-70.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23924 components: - pos: 10.5,-70.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23925 components: - pos: 11.5,-70.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 23926 components: - pos: 11.5,-69.5 @@ -63337,22 +51288,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24125 components: - pos: 45.5,1.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - uid: 24126 components: - pos: 45.5,2.5 parent: 60 type: Transform - - fixtures: {} - type: Fixtures - proto: CableMVStack entities: - uid: 655 @@ -74329,6 +62274,26 @@ entities: - pos: 38.489937,-12.380952 parent: 60 type: Transform +- proto: ClothingBackpackMerc + entities: + - uid: 15191 + components: + - pos: 31.52947,14.40356 + parent: 60 + type: Transform + - nextSound: 223.9654771 + type: EmitSoundOnCollide + - uid: 17299 + components: + - flags: InContainer + type: MetaData + - parent: 16058 + type: Transform + - nextSound: 1332.9551461 + type: EmitSoundOnCollide + - canCollide: False + type: Physics + - type: InsideEntityStorage - proto: ClothingBackpackSatchelLeather entities: - uid: 4702 @@ -74359,6 +62324,19 @@ entities: - pos: 19.497345,-45.396423 parent: 60 type: Transform +- proto: ClothingBeltMercWebbing + entities: + - uid: 18546 + components: + - flags: InContainer + type: MetaData + - parent: 16058 + type: Transform + - nextSound: 1336.9231484 + type: EmitSoundOnCollide + - canCollide: False + type: Physics + - type: InsideEntityStorage - proto: ClothingBeltMilitaryWebbing entities: - uid: 9121 @@ -74441,6 +62419,19 @@ entities: - pos: 14.470102,-43.56056 parent: 60 type: Transform +- proto: ClothingEyesGlassesMercenary + entities: + - uid: 17676 + components: + - flags: InContainer + type: MetaData + - parent: 16058 + type: Transform + - nextSound: 1344.6943063 + type: EmitSoundOnCollide + - canCollide: False + type: Physics + - type: InsideEntityStorage - proto: ClothingEyesGlassesMeson entities: - uid: 17244 @@ -74515,11 +62506,6 @@ entities: - pos: -17.534693,-31.58648 parent: 60 type: Transform - - uid: 19420 - components: - - pos: -53.495247,21.009853 - parent: 60 - type: Transform - uid: 19713 components: - pos: 35.466896,21.520084 @@ -74599,6 +62585,19 @@ entities: - pos: 35.520084,-27.379148 parent: 60 type: Transform +- proto: ClothingHandsGlovesMercFingerless + entities: + - uid: 17674 + components: + - flags: InContainer + type: MetaData + - parent: 16058 + type: Transform + - nextSound: 1342.5612744 + type: EmitSoundOnCollide + - canCollide: False + type: Physics + - type: InsideEntityStorage - proto: ClothingHandsGlovesNitrile entities: - uid: 4119 @@ -74643,7 +62642,7 @@ entities: entities: - uid: 8020 components: - - pos: 50.500725,-44.523643 + - pos: -66.588104,6.5911975 parent: 60 type: Transform - proto: ClothingHeadHatCardborg @@ -74841,13 +62840,6 @@ entities: - pos: -39.62937,16.44374 parent: 60 type: Transform -- proto: ClothingHeadHatVioletwizard - entities: - - uid: 8999 - components: - - pos: 51.46583,-44.13332 - parent: 60 - type: Transform - proto: ClothingHeadHatWelding entities: - uid: 9612 @@ -74941,6 +62933,15 @@ entities: - pos: 22.494247,-51.263294 parent: 60 type: Transform +- proto: ClothingHeadHelmetAncient + entities: + - uid: 944 + components: + - pos: 50.5,-44.5 + parent: 60 + type: Transform + - nextSound: 702.0977996 + type: EmitSoundOnCollide - proto: ClothingHeadHelmetCosmonaut entities: - uid: 4357 @@ -74955,21 +62956,11 @@ entities: type: Transform - proto: ClothingHeadHelmetEVA entities: - - uid: 3367 - components: - - pos: -63.563213,-8.4334 - parent: 60 - type: Transform - uid: 5208 components: - pos: 13.548823,-17.550291 parent: 60 type: Transform - - uid: 9603 - components: - - pos: -40.65451,3.6319861 - parent: 60 - type: Transform - proto: ClothingHeadHelmetFire entities: - uid: 20065 @@ -75019,6 +63010,15 @@ entities: - pos: 25.16276,-43.104046 parent: 60 type: Transform +- proto: ClothingHeadSafari + entities: + - uid: 18676 + components: + - pos: -53.482998,21.673847 + parent: 60 + type: Transform + - nextSound: 1250.3538049 + type: EmitSoundOnCollide - proto: ClothingHeadsetEngineering entities: - uid: 16082 @@ -75089,6 +63089,15 @@ entities: - pos: 52.5063,-29.369915 parent: 60 type: Transform +- proto: ClothingMaskBreathMedicalSecurity + entities: + - uid: 1741 + components: + - pos: -45.5,-32.5 + parent: 60 + type: Transform + - nextSound: 1177.1111392 + type: EmitSoundOnCollide - proto: ClothingMaskClown entities: - uid: 6684 @@ -75190,7 +63199,7 @@ entities: entities: - uid: 7861 components: - - pos: 50.559456,-44.391296 + - pos: 54.640587,-35.651684 parent: 60 type: Transform - uid: 17780 @@ -75399,21 +63408,29 @@ entities: - pos: -32.489902,20.522858 parent: 60 type: Transform -- proto: ClothingOuterHardsuitEVA +- proto: ClothingOuterHardsuitAncientEVA entities: - - uid: 5207 + - uid: 3367 components: - - pos: 13.564448,-17.456541 + - pos: 50.5,-44.5 parent: 60 type: Transform - - uid: 5761 + - nextSound: 700.2180887 + type: EmitSoundOnCollide +- proto: ClothingOuterHardsuitBasic + entities: + - uid: 5542 components: - - pos: -63.469463,-8.40215 + - pos: -40.51241,3.5016193 parent: 60 type: Transform - - uid: 9602 + - nextSound: 790.312397 + type: EmitSoundOnCollide +- proto: ClothingOuterHardsuitEVA + entities: + - uid: 5207 components: - - pos: -40.482635,3.7726111 + - pos: 13.564448,-17.456541 parent: 60 type: Transform - proto: ClothingOuterHardsuitSyndicate @@ -75498,6 +63515,17 @@ entities: - pos: -53.41401,20.42319 parent: 60 type: Transform + - uid: 17672 + components: + - flags: InContainer + type: MetaData + - parent: 16058 + type: Transform + - nextSound: 1334.594179 + type: EmitSoundOnCollide + - canCollide: False + type: Physics + - type: InsideEntityStorage - proto: ClothingOuterWizard entities: - uid: 5306 @@ -75512,13 +63540,15 @@ entities: - pos: -36.972637,-35.41713 parent: 60 type: Transform -- proto: ClothingOuterWizardViolet +- proto: ClothingShoesBootsJack entities: - - uid: 8197 + - uid: 846 components: - - pos: 51.49708,-44.367695 + - pos: -54.5,21.5 parent: 60 type: Transform + - nextSound: 1220.576973 + type: EmitSoundOnCollide - proto: ClothingShoesBootsLaceup entities: - uid: 7523 @@ -75548,6 +63578,19 @@ entities: - pos: -22.454462,29.447395 parent: 60 type: Transform +- proto: ClothingShoesBootsMercFilled + entities: + - uid: 17673 + components: + - flags: InContainer + type: MetaData + - parent: 16058 + type: Transform + - nextSound: 1340.1781086 + type: EmitSoundOnCollide + - canCollide: False + type: Physics + - type: InsideEntityStorage - proto: ClothingShoesBootsWork entities: - uid: 23663 @@ -75625,13 +63668,6 @@ entities: - pos: 51.40455,-45.767857 parent: 60 type: Transform -- proto: ClothingShoesSwat - entities: - - uid: 17674 - components: - - pos: -54.44779,21.345064 - parent: 60 - type: Transform - proto: ClothingShoesTourist entities: - uid: 4540 @@ -75664,11 +63700,6 @@ entities: - pos: -36.972637,-35.964005 parent: 60 type: Transform - - uid: 9000 - components: - - pos: 51.49708,-44.930195 - parent: 60 - type: Transform - proto: ClothingUnderSocksCoder entities: - uid: 6780 @@ -75727,11 +63758,6 @@ entities: - canCollide: False type: Physics - type: InsideEntityStorage - - uid: 17672 - components: - - pos: -53.465393,20.511484 - parent: 60 - type: Transform - proto: ClothingUniformJumpsuitClown entities: - uid: 6680 @@ -75767,6 +63793,19 @@ entities: - pos: 37.53859,15.558934 parent: 60 type: Transform +- proto: ClothingUniformJumpsuitMercenary + entities: + - uid: 16678 + components: + - flags: InContainer + type: MetaData + - parent: 16058 + type: Transform + - nextSound: 1346.2511638 + type: EmitSoundOnCollide + - canCollide: False + type: Physics + - type: InsideEntityStorage - proto: ClothingUniformJumpsuitOperative entities: - uid: 8069 @@ -75778,11 +63817,6 @@ entities: - canCollide: False type: Physics - type: InsideEntityStorage - - uid: 17673 - components: - - pos: -53.481018,20.542734 - parent: 60 - type: Transform - proto: ClothingUniformJumpsuitReporter entities: - uid: 16446 @@ -75790,6 +63824,17 @@ entities: - pos: 37.44484,15.621434 parent: 60 type: Transform +- proto: ClothingUniformJumpsuitSafari + entities: + - uid: 5761 + components: + - pos: -53.451748,20.486347 + parent: 60 + type: Transform + - nextUpdate: 1242.3615122 + type: SuitSensor + - nextSound: 1242.5615122 + type: EmitSoundOnCollide - proto: ClothingUniformOveralls entities: - uid: 941 @@ -77893,6 +65938,51 @@ entities: - 0 - 0 type: EntityStorage +- proto: CrateWeaponSecure + entities: + - uid: 16058 + components: + - name: mercenary's stash + type: MetaData + - pos: 56.5,-17.5 + parent: 60 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 16678 + - 17299 + - 17463 + - 17672 + - 17673 + - 17674 + - 17676 + - 18546 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer - proto: CrayonBox entities: - uid: 6700 @@ -78039,7 +66129,7 @@ entities: components: - name: Antique Cryostasis Beaker type: MetaData - - pos: -40.49813,5.006082 + - pos: -40.49957,9.528755 parent: 60 type: Transform - proto: CyberPen @@ -95153,6 +83243,8 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor + - enabled: True + type: AmbientSound - uid: 2868 components: - rot: -1.5707963267948966 rad @@ -111409,8 +99501,6 @@ entities: pos: 46.5,-13.5 parent: 60 type: Transform - - enabled: True - type: GasPressurePump - color: '#0035FCFF' type: AtmosPipeColor - uid: 8074 @@ -115862,6 +103952,11 @@ entities: - pos: 40.5,-21.5 parent: 60 type: Transform + - uid: 464 + components: + - pos: 42.5,-24.5 + parent: 60 + type: Transform - uid: 534 components: - pos: 40.5,-15.5 @@ -123961,6 +112056,19 @@ entities: - pos: -56.55667,-23.491457 parent: 60 type: Transform +- proto: HatBandMerc + entities: + - uid: 17463 + components: + - flags: InContainer + type: MetaData + - parent: 16058 + type: Transform + - nextSound: 1338.543622 + type: EmitSoundOnCollide + - canCollide: False + type: Physics + - type: InsideEntityStorage - proto: HatBandRed entities: - uid: 1405 @@ -125748,26 +113856,36 @@ entities: - 0 - 0 type: EntityStorage -- proto: LockerEngineerFilled +- proto: LockerEngineerFilledHardsuit entities: - - uid: 5610 + - uid: 6543 + components: + - pos: -4.5,13.5 + parent: 60 + type: Transform + - uid: 6912 components: - pos: -4.5,16.5 parent: 60 type: Transform - - uid: 5917 + - uid: 6913 components: - - pos: -4.5,13.5 + - pos: -4.5,18.5 parent: 60 type: Transform - - uid: 6543 + - uid: 6914 components: - pos: -4.5,19.5 parent: 60 type: Transform - - uid: 6913 + - uid: 12190 components: - - pos: -4.5,18.5 + - pos: -4.5,14.5 + parent: 60 + type: Transform + - uid: 13799 + components: + - pos: -4.5,15.5 parent: 60 type: Transform - proto: LockerEvidence @@ -126187,31 +114305,13 @@ entities: - 0 - 0 type: EntityStorage -- proto: LockerResearchDirectorFilled +- proto: LockerResearchDirectorFilledHardsuit entities: - - uid: 5542 + - uid: 8197 components: - pos: -44.5,7.5 parent: 60 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - proto: LockerSalvageSpecialistFilled entities: - uid: 215 @@ -126500,6 +114600,16 @@ entities: - 0 - 0 type: EntityStorage + - uid: 3524 + components: + - pos: 14.5,-50.5 + parent: 60 + type: Transform + - uid: 5917 + components: + - pos: -64.5,-19.5 + parent: 60 + type: Transform - uid: 7796 components: - pos: 11.5,15.5 @@ -126715,11 +114825,6 @@ entities: type: Transform - proto: MaintenanceFluffSpawner entities: - - uid: 846 - components: - - pos: 55.5,-15.5 - parent: 60 - type: Transform - uid: 1463 components: - pos: 32.5,14.5 @@ -126750,6 +114855,16 @@ entities: - pos: -64.5,2.5 parent: 60 type: Transform + - uid: 8999 + components: + - pos: 55.5,-15.5 + parent: 60 + type: Transform + - uid: 9000 + components: + - pos: 29.5,-1.5 + parent: 60 + type: Transform - uid: 10884 components: - pos: 55.5,-44.5 @@ -126770,11 +114885,6 @@ entities: - pos: -20.5,5.5 parent: 60 type: Transform - - uid: 19886 - components: - - pos: 29.5,-1.5 - parent: 60 - type: Transform - uid: 20076 components: - pos: 30.5,-5.5 @@ -126792,11 +114902,6 @@ entities: type: Transform - proto: MaintenanceToolSpawner entities: - - uid: 3524 - components: - - pos: 54.5,-36.5 - parent: 60 - type: Transform - uid: 4328 components: - pos: -40.5,-30.5 @@ -126829,11 +114934,6 @@ entities: type: Transform - proto: MaintenanceWeaponSpawner entities: - - uid: 1741 - components: - - pos: 56.5,-15.5 - parent: 60 - type: Transform - uid: 3622 components: - pos: -50.5,-34.5 @@ -126854,12 +114954,17 @@ entities: - pos: 46.5,-47.5 parent: 60 type: Transform - - uid: 10882 + - uid: 9592 + components: + - pos: 56.5,-15.5 + parent: 60 + type: Transform + - uid: 9602 components: - pos: 54.5,-44.5 parent: 60 type: Transform - - uid: 17676 + - uid: 9603 components: - pos: -54.5,19.5 parent: 60 @@ -126894,7 +114999,7 @@ entities: entities: - uid: 7003 components: - - pos: 56.496033,-17.389072 + - pos: 44.487556,-48.458042 parent: 60 type: Transform - proto: MaterialReclaimer @@ -128266,7 +116371,7 @@ entities: - pos: 2.5,27.5 parent: 60 type: Transform -- proto: ParticleAcceleratorEmitterCenterUnfinished +- proto: ParticleAcceleratorEmitterForeUnfinished entities: - uid: 16403 components: @@ -128274,20 +116379,20 @@ entities: pos: 0.5,35.5 parent: 60 type: Transform -- proto: ParticleAcceleratorEmitterLeftUnfinished +- proto: ParticleAcceleratorEmitterPortUnfinished entities: - - uid: 16402 + - uid: 16349 components: - rot: 3.141592653589793 rad - pos: 1.5,35.5 + pos: -0.5,35.5 parent: 60 type: Transform -- proto: ParticleAcceleratorEmitterRightUnfinished +- proto: ParticleAcceleratorEmitterStarboardUnfinished entities: - - uid: 16349 + - uid: 16402 components: - rot: 3.141592653589793 rad - pos: -0.5,35.5 + pos: 1.5,35.5 parent: 60 type: Transform - proto: ParticleAcceleratorEndCapUnfinished @@ -130154,7 +118259,7 @@ entities: entities: - uid: 9599 components: - - pos: -40.552372,4.5735826 + - pos: -40.465534,4.7516193 parent: 60 type: Transform - proto: Poweredlight @@ -130507,6 +118612,13 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver + - uid: 2777 + components: + - pos: -10.5,-20.5 + parent: 60 + type: Transform + - enabled: False + type: AmbientSound - uid: 2779 components: - rot: 3.141592653589793 rad @@ -130712,6 +118824,13 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver + - uid: 5610 + components: + - pos: -6.5,-20.5 + parent: 60 + type: Transform + - enabled: False + type: AmbientSound - uid: 5748 components: - pos: 11.5,9.5 @@ -134050,11 +122169,6 @@ entities: type: Transform - proto: Rack entities: - - uid: 464 - components: - - pos: -63.5,-8.5 - parent: 60 - type: Transform - uid: 958 components: - pos: 29.5,-10.5 @@ -134346,6 +122460,11 @@ entities: - pos: -18.5,16.5 parent: 60 type: Transform + - uid: 15183 + components: + - pos: -40.5,3.5 + parent: 60 + type: Transform - uid: 16065 components: - pos: 4.5,23.5 @@ -139441,6 +127560,11 @@ entities: - pos: -39.5,29.5 parent: 60 type: Transform + - uid: 15190 + components: + - pos: 42.5,-24.5 + parent: 60 + type: Transform - uid: 15577 components: - pos: -27.5,40.5 @@ -147683,6 +135807,13 @@ entities: - pos: -27.5,32.5 parent: 60 type: Transform +- proto: SuitStorageBasic + entities: + - uid: 10882 + components: + - pos: -63.5,-8.5 + parent: 60 + type: Transform - proto: SuitStorageCaptain entities: - uid: 11129 @@ -147704,18 +135835,6 @@ entities: - pos: 32.5,-14.5 parent: 60 type: Transform -- proto: SuitStorageEngi - entities: - - uid: 6912 - components: - - pos: -4.5,15.5 - parent: 60 - type: Transform - - uid: 6914 - components: - - pos: -4.5,14.5 - parent: 60 - type: Transform - proto: SuitStorageEVA entities: - uid: 1885 @@ -147762,13 +135881,6 @@ entities: - pos: -21.5,2.5 parent: 60 type: Transform -- proto: SuitStorageRD - entities: - - uid: 12190 - components: - - pos: -40.5,9.5 - parent: 60 - type: Transform - proto: SuitStorageSalv entities: - uid: 7792 @@ -151121,11 +139233,6 @@ entities: - pos: -54.5,14.5 parent: 60 type: Transform - - uid: 9592 - components: - - pos: -40.5,3.5 - parent: 60 - type: Transform - uid: 9593 components: - pos: -40.5,4.5 @@ -151715,6 +139822,11 @@ entities: - pos: -62.5,46.5 parent: 60 type: Transform + - uid: 13800 + components: + - pos: -40.5,9.5 + parent: 60 + type: Transform - uid: 14108 components: - pos: -6.5,20.5 @@ -160926,6 +149038,11 @@ entities: - pos: -28.5,37.5 parent: 60 type: Transform + - uid: 15186 + components: + - pos: 28.5,-21.5 + parent: 60 + type: Transform - uid: 15260 components: - pos: -27.5,41.5 @@ -164870,12 +152987,6 @@ entities: pos: 27.5,-21.5 parent: 60 type: Transform - - uid: 2777 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-21.5 - parent: 60 - type: Transform - uid: 2778 components: - rot: -1.5707963267948966 rad From 0eea58e4b254d5c2324e51d138ac8ba8a439bfd4 Mon Sep 17 00:00:00 2001 From: Chief-Engineer <119664036+Chief-Engineer@users.noreply.github.com> Date: Fri, 16 Jun 2023 05:58:17 -0500 Subject: [PATCH 276/474] add strip attempt logs (#17376) --- Content.Server/Strip/StrippableSystem.cs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Content.Server/Strip/StrippableSystem.cs b/Content.Server/Strip/StrippableSystem.cs index dc0816a87e..d050755560 100644 --- a/Content.Server/Strip/StrippableSystem.cs +++ b/Content.Server/Strip/StrippableSystem.cs @@ -235,6 +235,8 @@ bool Check() _popup.PopupEntity(message, target, target, PopupType.Large); } + _adminLogger.Add(LogType.Stripping, LogImpact.Low, $"{ToPrettyString(user):user} is trying to place the item {ToPrettyString(held):item} in {ToPrettyString(target):target}'s {slot} slot"); + var result = await _doAfter.WaitDoAfter(doAfterArgs); if (result != DoAfterStatus.Finished) return; @@ -298,6 +300,8 @@ bool Check() DuplicateCondition = DuplicateConditions.SameTool }; + _adminLogger.Add(LogType.Stripping, LogImpact.Low, $"{ToPrettyString(user):user} is trying to place the item {ToPrettyString(held):item} in {ToPrettyString(target):target}'s hands"); + var result = await _doAfter.WaitDoAfter(doAfterArgs); if (result != DoAfterStatus.Finished) return; @@ -371,6 +375,8 @@ bool Check() } } + _adminLogger.Add(LogType.Stripping, LogImpact.Low, $"{ToPrettyString(user):user} is trying to strip the item {ToPrettyString(item):item} from {ToPrettyString(target):target}"); + var result = await _doAfter.WaitDoAfter(doAfterArgs); if (result != DoAfterStatus.Finished) return; @@ -439,6 +445,9 @@ bool Check() component.Owner); } + _adminLogger.Add(LogType.Stripping, LogImpact.Low, + $"{ToPrettyString(user):user} is trying to strip the item {ToPrettyString(item):item} from {ToPrettyString(target):target}"); + var result = await _doAfter.WaitDoAfter(doAfterArgs); if (result != DoAfterStatus.Finished) return; From bfa5ce44d4586adeff06320347431070795eec7a Mon Sep 17 00:00:00 2001 From: Chief-Engineer <119664036+Chief-Engineer@users.noreply.github.com> Date: Fri, 16 Jun 2023 05:58:29 -0500 Subject: [PATCH 277/474] add airlock pry logs (#17377) --- Content.Server/Doors/Systems/DoorSystem.cs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Content.Server/Doors/Systems/DoorSystem.cs b/Content.Server/Doors/Systems/DoorSystem.cs index 687fc98dd7..c93fbc334b 100644 --- a/Content.Server/Doors/Systems/DoorSystem.cs +++ b/Content.Server/Doors/Systems/DoorSystem.cs @@ -17,6 +17,7 @@ using Robust.Shared.Audio; using Robust.Shared.Containers; using System.Linq; +using Content.Server.Administration.Logs; using Content.Server.Power.EntitySystems; using Content.Shared.Tools; using Robust.Shared.Physics.Components; @@ -27,6 +28,7 @@ namespace Content.Server.Doors.Systems; public sealed class DoorSystem : SharedDoorSystem { + [Dependency] private readonly IAdminLogManager _adminLog = default!; [Dependency] private readonly DoorBoltSystem _bolts = default!; [Dependency] private readonly AirtightSystem _airtightSystem = default!; [Dependency] private readonly SharedToolSystem _toolSystem = default!; @@ -181,6 +183,7 @@ public bool TryPryDoor(EntityUid target, EntityUid tool, EntityUid user, DoorCom var modEv = new DoorGetPryTimeModifierEvent(user); RaiseLocalEvent(target, modEv, false); + _adminLog.Add(LogType.Action, LogImpact.Low, $"{ToPrettyString(user)} is using {ToPrettyString(tool)} to pry {ToPrettyString(target)} while it is {door.State}"); // TODO move to generic tool use logging in a way that includes door state _toolSystem.UseTool(tool, user, target, TimeSpan.FromSeconds(modEv.PryTimeModifier * door.PryTime), new[] {door.PryingQuality}, new DoorPryDoAfterEvent(), out id); return true; // we might not actually succeeded, but a do-after has started } @@ -191,9 +194,15 @@ private void OnPryFinished(EntityUid uid, DoorComponent door, DoAfterEvent args) return; if (door.State == DoorState.Closed) + { + _adminLog.Add(LogType.Action, LogImpact.Medium, $"{ToPrettyString(args.User)} pried {ToPrettyString(uid)} open"); // TODO move to generic tool use logging in a way that includes door state StartOpening(uid, door); + } else if (door.State == DoorState.Open) + { + _adminLog.Add(LogType.Action, LogImpact.Medium, $"{ToPrettyString(args.User)} pried {ToPrettyString(uid)} closed"); // TODO move to generic tool use logging in a way that includes door state StartClosing(uid, door); + } } #endregion From 9bdaca579e9dbebb7a790177013ceb74adc49dc2 Mon Sep 17 00:00:00 2001 From: brainfood1183 <113240905+brainfood1183@users.noreply.github.com> Date: Fri, 16 Jun 2023 19:45:28 +0100 Subject: [PATCH 278/474] ClownHardsuit Fix (#17386) * ClownHardsuit Fix * fix for monkey template --- Resources/Prototypes/Entities/Clothing/Head/eva-helmets.yml | 3 +++ .../Entities/Clothing/OuterClothing/softsuits.yml | 3 +++ .../InventoryTemplates/monkey_inventory_template.yml | 2 +- .../Recipes/Construction/Graphs/clothing/clown_hardsuit.yml | 6 +++--- Resources/Prototypes/tags.yml | 6 +++--- 5 files changed, 13 insertions(+), 7 deletions(-) diff --git a/Resources/Prototypes/Entities/Clothing/Head/eva-helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/eva-helmets.yml index 2fd17e31cf..0b79409ecd 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/eva-helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/eva-helmets.yml @@ -9,6 +9,9 @@ sprite: Clothing/Head/Helmets/eva.rsi - type: Clothing sprite: Clothing/Head/Helmets/eva.rsi + - type: Tag + tags: + - HelmetEVA #Large EVA Helmet - type: entity diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/softsuits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/softsuits.yml index 8d8aa5eeb1..c04d8d1dc9 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/softsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/softsuits.yml @@ -9,6 +9,9 @@ sprite: Clothing/OuterClothing/Suits/eva.rsi - type: Clothing sprite: Clothing/OuterClothing/Suits/eva.rsi + - type: Tag + tags: + - SuitEVA #Syndicate EVA - type: entity diff --git a/Resources/Prototypes/InventoryTemplates/monkey_inventory_template.yml b/Resources/Prototypes/InventoryTemplates/monkey_inventory_template.yml index 48dd9fc038..7764b7af7f 100644 --- a/Resources/Prototypes/InventoryTemplates/monkey_inventory_template.yml +++ b/Resources/Prototypes/InventoryTemplates/monkey_inventory_template.yml @@ -53,5 +53,5 @@ displayName: Suit whitelist: tags: - - HardsuitEVA + - SuitEVA diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/clothing/clown_hardsuit.yml b/Resources/Prototypes/Recipes/Construction/Graphs/clothing/clown_hardsuit.yml index 6719d14582..da5ea21edf 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/clothing/clown_hardsuit.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/clothing/clown_hardsuit.yml @@ -9,14 +9,14 @@ - material: Cloth amount: 5 doAfter: 1 - - tag: HardsuitEVA - name: EVA suit + - tag: SuitEVA + name: An EVA suit icon: sprite: Clothing/OuterClothing/Suits/eva.rsi state: icon doAfter: 1 - tag: HelmetEVA - name: EVA helmet + name: An EVA helmet icon: sprite: Clothing/Head/Helmets/eva.rsi state: icon diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index 1c255b80a0..02f47070c4 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -355,9 +355,6 @@ - type: Tag id: Hardsuit # Prevent melee injectors that can't penetrate hardsuits from injecting the wearer (nettles) -- type: Tag - id: HardsuitEVA - - type: Tag id: Head @@ -710,6 +707,9 @@ - type: Tag id: SubdermalImplant +- type: Tag + id: SuitEVA + - type: Tag id: SurveillanceCameraMonitorCircuitboard From cae037d8a898492c9f88677deae7dc38cce7dfc8 Mon Sep 17 00:00:00 2001 From: Artjom Date: Sat, 17 Jun 2023 02:22:21 +0300 Subject: [PATCH 279/474] Zooming for everyone with keyboard keys (#16605) --- .../Systems/AdminVerbSystem.Smites.cs | 15 +- .../Shuttles/Systems/ShuttleConsoleSystem.cs | 24 ++- .../Systems/SharedContentEyeSystem.cs | 167 ++++++------------ .../Entities/Mobs/NPCs/revenant.yml | 2 + .../Prototypes/Entities/Mobs/Species/base.yml | 1 + 5 files changed, 74 insertions(+), 135 deletions(-) diff --git a/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs b/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs index df476b2874..e83a42a2fb 100644 --- a/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs +++ b/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs @@ -75,6 +75,7 @@ public sealed partial class AdminVerbSystem [Dependency] private readonly TabletopSystem _tabletopSystem = default!; [Dependency] private readonly VomitSystem _vomitSystem = default!; [Dependency] private readonly WeldableSystem _weldableSystem = default!; + [Dependency] private readonly SharedContentEyeSystem _eyeSystem = default!; // All smite verbs have names so invokeverb works. private void AddSmiteVerbs(GetVerbsEvent args) @@ -704,11 +705,8 @@ private void AddSmiteVerbs(GetVerbsEvent args) Icon = new SpriteSpecifier.Texture(new ("/Textures/Interface/AdminActions/zoom.png")), Act = () => { - var eye = EnsureComp(args.Target); - - eye.Zoom *= Vector2.One * 0.2f; - - Dirty(eye); + var eye = EnsureComp(args.Target); + _eyeSystem.SetZoom(args.Target, eye.TargetZoom * 0.2f, ignoreLimits: true); }, Impact = LogImpact.Extreme, Message = Loc.GetString("admin-smite-zoom-in-description"), @@ -722,11 +720,8 @@ private void AddSmiteVerbs(GetVerbsEvent args) Icon = new SpriteSpecifier.Texture(new ("/Textures/Interface/AdminActions/flip.png")), Act = () => { - var eye = EnsureComp(args.Target); - - eye.Zoom *= -1; - - Dirty(eye); + var eye = EnsureComp(args.Target); + _eyeSystem.SetZoom(args.Target, eye.TargetZoom * -1, ignoreLimits: true); }, Impact = LogImpact.Extreme, Message = Loc.GetString("admin-smite-flip-eye-description"), diff --git a/Content.Server/Shuttles/Systems/ShuttleConsoleSystem.cs b/Content.Server/Shuttles/Systems/ShuttleConsoleSystem.cs index c3c49018de..16b55e70e5 100644 --- a/Content.Server/Shuttles/Systems/ShuttleConsoleSystem.cs +++ b/Content.Server/Shuttles/Systems/ShuttleConsoleSystem.cs @@ -13,6 +13,7 @@ using Content.Shared.Shuttles.Events; using Content.Shared.Shuttles.Systems; using Content.Shared.Tag; +using Content.Shared.Movement.Systems; using Robust.Server.GameObjects; using Robust.Shared.Collections; using Robust.Shared.GameStates; @@ -33,6 +34,7 @@ public sealed partial class ShuttleConsoleSystem : SharedShuttleConsoleSystem [Dependency] private readonly StationSystem _station = default!; [Dependency] private readonly TagSystem _tags = default!; [Dependency] private readonly UserInterfaceSystem _ui = default!; + [Dependency] private readonly SharedContentEyeSystem _eyeSystem = default!; public override void Initialize() { @@ -69,7 +71,8 @@ private void OnFtlDestShutdown(EntityUid uid, FTLDestinationComponent component, RefreshShuttleConsoles(); } - private void OnDestinationMessage(EntityUid uid, ShuttleConsoleComponent component, ShuttleConsoleFTLRequestMessage args) + private void OnDestinationMessage(EntityUid uid, ShuttleConsoleComponent component, + ShuttleConsoleFTLRequestMessage args) { if (!TryComp(args.Destination, out var dest)) { @@ -157,7 +160,7 @@ public void RefreshShuttleConsoles() /// private void OnConsoleUIClose(EntityUid uid, ShuttleConsoleComponent component, BoundUIClosedEvent args) { - if ((ShuttleConsoleUiKey) args.UiKey != ShuttleConsoleUiKey.Key || + if ((ShuttleConsoleUiKey)args.UiKey != ShuttleConsoleUiKey.Key || args.Session.AttachedEntity is not { } user) { return; @@ -172,13 +175,15 @@ private void OnConsoleUIClose(EntityUid uid, ShuttleConsoleComponent component, RemovePilot(user); } - private void OnConsoleUIOpenAttempt(EntityUid uid, ShuttleConsoleComponent component, ActivatableUIOpenAttemptEvent args) + private void OnConsoleUIOpenAttempt(EntityUid uid, ShuttleConsoleComponent component, + ActivatableUIOpenAttemptEvent args) { if (!TryPilot(args.User, uid)) args.Cancel(); } - private void OnConsoleAnchorChange(EntityUid uid, ShuttleConsoleComponent component, ref AnchorStateChangedEvent args) + private void OnConsoleAnchorChange(EntityUid uid, ShuttleConsoleComponent component, + ref AnchorStateChangedEvent args) { UpdateState(uid); } @@ -398,10 +403,7 @@ public void AddPilot(EntityUid entity, ShuttleConsoleComponent component) return; } - if (TryComp(entity, out var eye)) - { - eye.Zoom = component.Zoom; - } + _eyeSystem.SetZoom(entity, component.Zoom, ignoreLimits:true); component.SubscribedPilots.Add(pilotComponent); @@ -422,11 +424,7 @@ public void RemovePilot(EntityUid pilotUid, PilotComponent pilotComponent) pilotComponent.Console = null; pilotComponent.Position = null; - - if (TryComp(pilotUid, out var eye)) - { - eye.Zoom = new(1.0f, 1.0f); - } + _eyeSystem.ResetZoom(pilotUid); if (!helmsman.SubscribedPilots.Remove(pilotComponent)) return; diff --git a/Content.Shared/Movement/Systems/SharedContentEyeSystem.cs b/Content.Shared/Movement/Systems/SharedContentEyeSystem.cs index 9c749695a9..ab3a1e79a9 100644 --- a/Content.Shared/Movement/Systems/SharedContentEyeSystem.cs +++ b/Content.Shared/Movement/Systems/SharedContentEyeSystem.cs @@ -6,6 +6,7 @@ using Robust.Shared.Input.Binding; using Robust.Shared.Players; using Robust.Shared.Serialization; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Generic; namespace Content.Shared.Movement.Systems; @@ -16,12 +17,9 @@ public abstract class SharedContentEyeSystem : EntitySystem { [Dependency] private readonly ISharedAdminManager _admin = default!; - private const float ZoomMod = 1.2f; - private const byte ZoomMultiple = 10; - - protected static readonly Vector2 MinZoom = new(MathF.Pow(ZoomMod, -ZoomMultiple), MathF.Pow(ZoomMod, -ZoomMultiple)); - - protected ISawmill Sawmill = Logger.GetSawmill("ceye"); + public const float ZoomMod = 1.5f; + public static readonly Vector2 DefaultZoom = Vector2.One; + public static readonly Vector2 MinZoom = DefaultZoom * (float)Math.Pow(ZoomMod, -3); public override void Initialize() { @@ -31,22 +29,60 @@ public override void Initialize() SubscribeAllEvent(OnRequestFov); CommandBinds.Builder - .Bind(ContentKeyFunctions.ZoomIn, new ScrollInputCmdHandler(true, this)) - .Bind(ContentKeyFunctions.ZoomOut, new ScrollInputCmdHandler(false, this)) - .Bind(ContentKeyFunctions.ResetZoom, new ResetZoomInputCmdHandler(this)) + .Bind(ContentKeyFunctions.ZoomIn, InputCmdHandler.FromDelegate(ZoomIn, handle:false)) + .Bind(ContentKeyFunctions.ZoomOut, InputCmdHandler.FromDelegate(ZoomOut, handle:false)) + .Bind(ContentKeyFunctions.ResetZoom, InputCmdHandler.FromDelegate(ResetZoom, handle:false)) .Register(); - Sawmill.Level = LogLevel.Info; + Log.Level = LogLevel.Info; UpdatesOutsidePrediction = true; } - private void OnContentZoomRequest(RequestTargetZoomEvent msg, EntitySessionEventArgs args) + public override void Shutdown() + { + base.Shutdown(); + CommandBinds.Unregister(); + } + + private void ResetZoom(ICommonSession? session) + { + if (TryComp(session?.AttachedEntity, out ContentEyeComponent? eye)) + ResetZoom(session.AttachedEntity.Value, eye); + } + + private void ZoomOut(ICommonSession? session) + { + if (TryComp(session?.AttachedEntity, out ContentEyeComponent? eye)) + SetZoom(session.AttachedEntity.Value, eye.TargetZoom * ZoomMod, eye: eye); + } + + private void ZoomIn(ICommonSession? session) { - if (!TryComp(args.SenderSession.AttachedEntity, out var content)) + if (TryComp(session?.AttachedEntity, out ContentEyeComponent? eye)) + SetZoom(session.AttachedEntity.Value, eye.TargetZoom / ZoomMod, eye: eye); + } + + private Vector2 Clamp(Vector2 zoom, ContentEyeComponent component) + { + return Vector2.Clamp(zoom, MinZoom, component.MaxZoom); + } + + /// + /// Sets the target zoom, optionally ignoring normal zoom limits. + /// + public void SetZoom(EntityUid uid, Vector2 zoom, bool ignoreLimits = false, ContentEyeComponent? eye = null) + { + if (!Resolve(uid, ref eye, false)) return; - content.TargetZoom = msg.TargetZoom; - Dirty(content); + eye.TargetZoom = ignoreLimits ? zoom : Clamp(zoom, eye); + Dirty(eye); + } + + private void OnContentZoomRequest(RequestTargetZoomEvent msg, EntitySessionEventArgs args) + { + if (TryComp(args.SenderSession.AttachedEntity, out var content)) + SetZoom(args.SenderSession.AttachedEntity.Value, msg.TargetZoom, eye: content); } private void OnRequestFov(RequestFovEvent msg, EntitySessionEventArgs args) @@ -64,12 +100,6 @@ private void OnRequestFov(RequestFovEvent msg, EntitySessionEventArgs args) } } - public override void Shutdown() - { - base.Shutdown(); - CommandBinds.Unregister(); - } - private void OnContentEyeStartup(EntityUid uid, ContentEyeComponent component, ComponentStartup args) { if (!TryComp(uid, out var eyeComp)) @@ -83,7 +113,7 @@ protected void UpdateEye(EntityUid uid, ContentEyeComponent content, SharedEyeCo { var diff = content.TargetZoom - eye.Zoom; - if (diff.LengthSquared < 0.0000001f) + if (diff.LengthSquared < 0.00001f) { eye.Zoom = content.TargetZoom; Dirty(eye); @@ -96,106 +126,19 @@ protected void UpdateEye(EntityUid uid, ContentEyeComponent content, SharedEyeCo Dirty(eye); } - private bool CanZoom(EntityUid uid, ContentEyeComponent? component = null) + public void ResetZoom(EntityUid uid, ContentEyeComponent? component = null) { - return Resolve(uid, ref component, false); - } - - private void ResetZoom(EntityUid uid, ContentEyeComponent? component = null) - { - if (!Resolve(uid, ref component)) - return; - - if (component.TargetZoom.Equals(Vector2.One)) - return; - - component.TargetZoom = Vector2.One; - Dirty(component); + SetZoom(uid, DefaultZoom, eye: component); } public void SetMaxZoom(EntityUid uid, Vector2 value, ContentEyeComponent? component = null) - { - if (Resolve(uid, ref component)) - component.MaxZoom = value; - } - - private void Zoom(EntityUid uid, bool zoomIn, ContentEyeComponent? component = null) { if (!Resolve(uid, ref component)) return; - var actual = component.TargetZoom; - - if (zoomIn) - { - actual /= ZoomMod; - } - else - { - actual *= ZoomMod; - } - - actual = Vector2.ComponentMax(MinZoom, actual); - actual = Vector2.ComponentMin(component.MaxZoom, actual); - - if (actual.Equals(component.TargetZoom)) - return; - - component.TargetZoom = actual; + component.MaxZoom = value; + component.TargetZoom = Clamp(component.TargetZoom, component); Dirty(component); - Sawmill.Debug($"Set target zoom to {actual}"); - } - - private sealed class ResetZoomInputCmdHandler : InputCmdHandler - { - private readonly SharedContentEyeSystem _system; - - public ResetZoomInputCmdHandler(SharedContentEyeSystem system) - { - _system = system; - } - - public override bool HandleCmdMessage(ICommonSession? session, InputCmdMessage message) - { - ContentEyeComponent? component = null; - - if (message is not FullInputCmdMessage full || session?.AttachedEntity == null || - full.State != BoundKeyState.Down || - !_system.CanZoom(session.AttachedEntity.Value, component)) - { - return false; - } - - _system.ResetZoom(session.AttachedEntity.Value, component); - return false; - } - } - - private sealed class ScrollInputCmdHandler : InputCmdHandler - { - private readonly bool _zoomIn; - private readonly SharedContentEyeSystem _system; - - public ScrollInputCmdHandler(bool zoomIn, SharedContentEyeSystem system) - { - _zoomIn = zoomIn; - _system = system; - } - - public override bool HandleCmdMessage(ICommonSession? session, InputCmdMessage message) - { - ContentEyeComponent? component = null; - - if (message is not FullInputCmdMessage full || session?.AttachedEntity == null || - full.State != BoundKeyState.Down || - !_system.CanZoom(session.AttachedEntity.Value, component)) - { - return false; - } - - _system.Zoom(session.AttachedEntity.Value, _zoomIn, component); - return false; - } } /// diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml b/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml index 1d8ba8dc8c..ead6519761 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml @@ -44,6 +44,8 @@ - type: Actions - type: Eye drawFov: false + - type: ContentEye + maxZoom: 1.2, 1.2 - type: DoAfter - type: Alerts - type: NameIdentifier diff --git a/Resources/Prototypes/Entities/Mobs/Species/base.yml b/Resources/Prototypes/Entities/Mobs/Species/base.yml index 7392202ae6..e55c7ba5eb 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/base.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/base.yml @@ -300,6 +300,7 @@ - type: MobPrice price: 1500 # Kidnapping a living person and selling them for cred is a good move. deathPenalty: 0.01 # However they really ought to be living and intact, otherwise they're worth 100x less. + - type: ContentEye - type: entity save: false From 78043682b9e79718316e42fa62f9a21a90846f16 Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 16 Jun 2023 19:23:25 -0400 Subject: [PATCH 280/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 0b1e603b6b..d465cb1c57 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,10 +1,4 @@ Entries: -- author: metalgearsloth - changes: - - {message: Reduced water tank price from 2k -> 1k and fuel tank from 2k -> 1.5k., - type: Tweak} - id: 3516 - time: '2023-04-23T17:29:22.0000000+00:00' - author: metalgearsloth changes: - {message: Added a generic bonk sound to items that collide with stuff., type: Add} @@ -2920,3 +2914,9 @@ Entries: none at all, to send salvagers to.', type: Add} id: 4015 time: '2023-06-16T05:25:26.0000000+00:00' +- author: Arteben + changes: + - {message: Most entities can now zoom in their view via the zoom key bindings. + Zooming out is still restricted., type: Tweak} + id: 4016 + time: '2023-06-16T23:22:21.0000000+00:00' From ef0248cd78bc6183f361ad13bf4b83a9cb04b447 Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Sat, 17 Jun 2023 13:57:32 +1200 Subject: [PATCH 281/474] Remove static ILocalizationManager resolves. (#17392) --- Content.Client/Crayon/CrayonSystem.cs | 2 +- .../Systems/NetworkConfiguratorSystem.cs | 4 ++-- Content.Server/Armor/ArmorSystem.cs | 2 +- Content.Server/Chat/SuicideSystem.cs | 2 +- Content.Server/Examine/ExamineSystem.cs | 15 ++++----------- 5 files changed, 9 insertions(+), 16 deletions(-) diff --git a/Content.Client/Crayon/CrayonSystem.cs b/Content.Client/Crayon/CrayonSystem.cs index 89726a30ff..e6da15c3bc 100644 --- a/Content.Client/Crayon/CrayonSystem.cs +++ b/Content.Client/Crayon/CrayonSystem.cs @@ -62,7 +62,7 @@ protected override void FrameUpdate(FrameEventArgs args) } _parent.UIUpdateNeeded = false; - _label.SetMarkup(Loc.GetString("crayon-drawing-label", + _label.SetMarkup(Robust.Shared.Localization.Loc.GetString("crayon-drawing-label", ("color",_parent.Color), ("state",_parent.SelectedState), ("charges", _parent.Charges), diff --git a/Content.Client/NetworkConfigurator/Systems/NetworkConfiguratorSystem.cs b/Content.Client/NetworkConfigurator/Systems/NetworkConfiguratorSystem.cs index 80d7b9381c..d56296cae9 100644 --- a/Content.Client/NetworkConfigurator/Systems/NetworkConfiguratorSystem.cs +++ b/Content.Client/NetworkConfigurator/Systems/NetworkConfiguratorSystem.cs @@ -147,8 +147,8 @@ protected override void FrameUpdate(FrameEventArgs args) ? "network-configurator-examine-mode-link" : "network-configurator-examine-mode-list"; - _label.SetMarkup(Loc.GetString("network-configurator-item-status-label", - ("mode", Loc.GetString(modeLocString)), + _label.SetMarkup(Robust.Shared.Localization.Loc.GetString("network-configurator-item-status-label", + ("mode", Robust.Shared.Localization.Loc.GetString(modeLocString)), ("keybinding", _keyBindingName))); } } diff --git a/Content.Server/Armor/ArmorSystem.cs b/Content.Server/Armor/ArmorSystem.cs index a03b29fb9a..931ca0c25b 100644 --- a/Content.Server/Armor/ArmorSystem.cs +++ b/Content.Server/Armor/ArmorSystem.cs @@ -85,7 +85,7 @@ private void OnArmorVerbExamine(EntityUid uid, ArmorComponent component, GetVerb _examine.AddDetailedExamineVerb(args, component, examineMarkup, Loc.GetString("armor-examinable-verb-text"), "/Textures/Interface/VerbIcons/dot.svg.192dpi.png", Loc.GetString("armor-examinable-verb-message")); } - private static FormattedMessage GetArmorExamine(DamageModifierSet armorModifiers) + private FormattedMessage GetArmorExamine(DamageModifierSet armorModifiers) { var msg = new FormattedMessage(); diff --git a/Content.Server/Chat/SuicideSystem.cs b/Content.Server/Chat/SuicideSystem.cs index e5f3d3b5c3..25819082ff 100644 --- a/Content.Server/Chat/SuicideSystem.cs +++ b/Content.Server/Chat/SuicideSystem.cs @@ -61,7 +61,7 @@ public bool Suicide(EntityUid victim) /// /// If not handled, does the default suicide, which is biting your own tongue /// - private static void DefaultSuicideHandler(EntityUid victim, SuicideEvent suicideEvent) + private void DefaultSuicideHandler(EntityUid victim, SuicideEvent suicideEvent) { if (suicideEvent.Handled) return; diff --git a/Content.Server/Examine/ExamineSystem.cs b/Content.Server/Examine/ExamineSystem.cs index 96442bd390..d50f0cafdc 100644 --- a/Content.Server/Examine/ExamineSystem.cs +++ b/Content.Server/Examine/ExamineSystem.cs @@ -14,21 +14,14 @@ public sealed class ExamineSystem : ExamineSystemShared { [Dependency] private readonly VerbSystem _verbSystem = default!; - private static readonly FormattedMessage _entityNotFoundMessage; - - private static readonly FormattedMessage _entityOutOfRangeMessage; - - static ExamineSystem() - { - _entityNotFoundMessage = new FormattedMessage(); - _entityNotFoundMessage.AddText(Loc.GetString("examine-system-entity-does-not-exist")); - _entityOutOfRangeMessage = new FormattedMessage(); - _entityOutOfRangeMessage.AddText(Loc.GetString("examine-system-cant-see-entity")); - } + private readonly FormattedMessage _entityNotFoundMessage = new(); + private readonly FormattedMessage _entityOutOfRangeMessage = new(); public override void Initialize() { base.Initialize(); + _entityNotFoundMessage.AddText(Loc.GetString("examine-system-entity-does-not-exist")); + _entityOutOfRangeMessage.AddText(Loc.GetString("examine-system-cant-see-entity")); SubscribeNetworkEvent(ExamineInfoRequest); } From eb114677adc31e486083d95bc8c497bbf4c02b7a Mon Sep 17 00:00:00 2001 From: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> Date: Fri, 16 Jun 2023 21:59:53 -0400 Subject: [PATCH 282/474] move hamtr to civilian services tech (#17393) --- .../Locale/en-US/research/technologies.ftl | 2 +- .../Prototypes/Research/civilianservices.yml | 19 ++++++++++++++++++ .../Prototypes/Research/experimental.yml | 20 ------------------- 3 files changed, 20 insertions(+), 21 deletions(-) diff --git a/Resources/Locale/en-US/research/technologies.ftl b/Resources/Locale/en-US/research/technologies.ftl index f44c240795..5733b7e908 100644 --- a/Resources/Locale/en-US/research/technologies.ftl +++ b/Resources/Locale/en-US/research/technologies.ftl @@ -40,13 +40,13 @@ research-technology-grappling = Grappling research-technology-abnormal-artifact-manipulation = Abnormal Artifact Manipulation research-technology-gravity-manipulation = Gravity Manipulation research-technology-mobile-anomaly-tech = Mobile Anomaly Tech -research-technology-hamtr = HAMTR Mech research-technology-rped = Rapid Part Exchange research-technology-super-parts = Super Parts research-technology-janitorial-equipment = Janitorial Equipment research-technology-laundry-tech = Laundry Tech research-technology-basic-hydroponics = Basic Hydroponics +research-technology-hamtr = HAMTR Mech research-technology-food-service = Food Service research-technology-advanced-entertainment = Advanced Entertainment research-technology-audio-visual-communication = A/V Communication diff --git a/Resources/Prototypes/Research/civilianservices.yml b/Resources/Prototypes/Research/civilianservices.yml index 7bad53a08d..46b0598731 100644 --- a/Resources/Prototypes/Research/civilianservices.yml +++ b/Resources/Prototypes/Research/civilianservices.yml @@ -41,6 +41,25 @@ - SeedExtractorMachineCircuitboard - HydroponicsTrayMachineCircuitboard +- type: technology + id: HamtrMechTech + name: research-technology-hamtr + icon: + sprite: Objects/Specific/Mech/mecha.rsi + state: hamtr + discipline: CivilianServices + tier: 1 + cost: 10000 + recipeUnlocks: + - HamtrHarness + - HamtrLArm + - HamtrRArm + - HamtrLLeg + - HamtrRLeg + - HamtrCentralElectronics + - HamtrPeripheralsElectronics + - MechEquipmentGrabberSmall + - type: technology id: FoodService name: research-technology-food-service diff --git a/Resources/Prototypes/Research/experimental.yml b/Resources/Prototypes/Research/experimental.yml index a309ed6670..c2e96fd0a7 100644 --- a/Resources/Prototypes/Research/experimental.yml +++ b/Resources/Prototypes/Research/experimental.yml @@ -145,26 +145,6 @@ recipeUnlocks: - RPED - -- type: technology - id: HamtrMechTech - name: research-technology-hamtr - icon: - sprite: Objects/Specific/Mech/mecha.rsi - state: hamtr - discipline: Experimental - tier: 2 - cost: 8000 - recipeUnlocks: - - HamtrHarness - - HamtrLArm - - HamtrRArm - - HamtrLLeg - - HamtrRLeg - - HamtrCentralElectronics - - HamtrPeripheralsElectronics - - MechEquipmentGrabberSmall - # Tier 3 - type: technology From a3c37edd69a3347982cceb85b7ffa66fa4c45927 Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Sat, 17 Jun 2023 02:00:54 +0000 Subject: [PATCH 283/474] use parts crates for rewards, show rewards in ui (#17374) Co-authored-by: deltanedas <@deltanedas:kde.org> --- .../UI/SalvageExpeditionWindow.xaml.cs | 29 +++------ .../Expeditions/SalvageExpeditionComponent.cs | 8 +++ .../Salvage/SalvageSystem.Expeditions.cs | 32 +--------- .../Salvage/SpawnSalvageMissionJob.cs | 61 +------------------ .../Procedural/Loot/DungeonClusterLoot.cs | 24 -------- Content.Shared/Salvage/SalvageExpeditions.cs | 7 ++- Content.Shared/Salvage/SharedSalvageSystem.cs | 54 ++++++++++------ .../Locale/en-US/procedural/expeditions.ftl | 3 +- .../Catalog/Fills/Crates/salvage.yml | 32 ++++++++++ .../Prototypes/Procedural/salvage_loot.yml | 52 ---------------- .../Prototypes/Procedural/salvage_rewards.yml | 6 +- 11 files changed, 93 insertions(+), 215 deletions(-) delete mode 100644 Content.Shared/Procedural/Loot/DungeonClusterLoot.cs diff --git a/Content.Client/Salvage/UI/SalvageExpeditionWindow.xaml.cs b/Content.Client/Salvage/UI/SalvageExpeditionWindow.xaml.cs index 03184ae715..fcc8f7af0d 100644 --- a/Content.Client/Salvage/UI/SalvageExpeditionWindow.xaml.cs +++ b/Content.Client/Salvage/UI/SalvageExpeditionWindow.xaml.cs @@ -4,7 +4,6 @@ using Content.Client.UserInterface.Controls; using Content.Shared.CCVar; using Content.Shared.Parallax.Biomes; -using Content.Shared.Procedural.Loot; using Content.Shared.Salvage; using Content.Shared.Salvage.Expeditions.Modifiers; using Content.Shared.Shuttles.BUIStates; @@ -191,29 +190,17 @@ public void UpdateState(SalvageExpeditionConsoleState state) lBox.AddChild(new Label() { - Text = Loc.GetString("salvage-expedition-window-loot") + Text = Loc.GetString("salvage-expedition-window-rewards") }); - if (mission.Loot.Count == 0) - { - lBox.AddChild(new Label() - { - Text = Loc.GetString("salvage-expedition-window-none"), - FontColorOverride = StyleNano.ConcerningOrangeFore, - HorizontalAlignment = HAlignment.Left, - Margin = new Thickness(0f, 0f, 0f, 5f), - }); - } - else + // there will always be 3 rewards so no need for 0 check + lBox.AddChild(new Label() { - lBox.AddChild(new Label() - { - Text = string.Join("\n", mission.Loot.Select(o => "- " + _prototype.Index(o.Key).Description + (o.Value > 1 ? $" x {o.Value}" : ""))).TrimEnd(), - FontColorOverride = StyleNano.ConcerningOrangeFore, - HorizontalAlignment = HAlignment.Left, - Margin = new Thickness(0f, 0f, 0f, 5f), - }); - } + Text = string.Join("\n", mission.Rewards.Select(id => "- " + _prototype.Index(id).Name)), + FontColorOverride = StyleNano.ConcerningOrangeFore, + HorizontalAlignment = HAlignment.Left, + Margin = new Thickness(0f, 0f, 0f, 5f) + }); // Claim var claimButton = new Button() diff --git a/Content.Server/Salvage/Expeditions/SalvageExpeditionComponent.cs b/Content.Server/Salvage/Expeditions/SalvageExpeditionComponent.cs index 9c4fd05a20..1fcc4c3003 100644 --- a/Content.Server/Salvage/Expeditions/SalvageExpeditionComponent.cs +++ b/Content.Server/Salvage/Expeditions/SalvageExpeditionComponent.cs @@ -1,8 +1,10 @@ using Content.Shared.Random; using Content.Shared.Salvage; using Robust.Shared.Audio; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; namespace Content.Server.Salvage.Expeditions; @@ -56,6 +58,12 @@ public sealed class SalvageExpeditionComponent : Component /// [ViewVariables(VVAccess.ReadWrite), DataField("difficulty")] public DifficultyRating Difficulty; + + /// + /// List of items to order on mission completion + /// + [ViewVariables(VVAccess.ReadWrite), DataField("rewards", customTypeSerializer: typeof(PrototypeIdListSerializer))] + public List Rewards = default!; } public enum ExpeditionStage : byte diff --git a/Content.Server/Salvage/SalvageSystem.Expeditions.cs b/Content.Server/Salvage/SalvageSystem.Expeditions.cs index 6fb8897a0a..7269c571e6 100644 --- a/Content.Server/Salvage/SalvageSystem.Expeditions.cs +++ b/Content.Server/Salvage/SalvageSystem.Expeditions.cs @@ -286,42 +286,12 @@ private void GiveRewards(SalvageExpeditionComponent comp) return; } - var ids = RewardsForDifficulty(comp.Difficulty); - foreach (var id in ids) + foreach (var reward in comp.Rewards) { - // pick a random reward to give - var rewards = _prototypeManager.Index(id); - var reward = rewards.Pick(_random); - var sender = Loc.GetString("cargo-gift-default-sender"); var desc = Loc.GetString("salvage-expedition-reward-description"); var dest = Loc.GetString("cargo-gift-default-dest"); _cargo.AddAndApproveOrder(cargoDb, reward, 0, 1, sender, desc, dest); } } - - /// - /// Get a list of WeightedRandomPrototype IDs with the rewards for a certain difficulty. - /// - private string[] RewardsForDifficulty(DifficultyRating rating) - { - var common = "SalvageRewardCommon"; - var rare = "SalvageRewardRare"; - var epic = "SalvageRewardEpic"; - switch (rating) - { - case DifficultyRating.Minimal: - return new string[] { common, common, common }; - case DifficultyRating.Minor: - return new string[] { common, common, rare }; - case DifficultyRating.Moderate: - return new string[] { common, rare, rare }; - case DifficultyRating.Hazardous: - return new string[] { rare, rare, epic }; - case DifficultyRating.Extreme: - return new string[] { rare, epic, epic }; - default: - throw new NotImplementedException(); - } - } } diff --git a/Content.Server/Salvage/SpawnSalvageMissionJob.cs b/Content.Server/Salvage/SpawnSalvageMissionJob.cs index caeaf6c7bc..533e1db61a 100644 --- a/Content.Server/Salvage/SpawnSalvageMissionJob.cs +++ b/Content.Server/Salvage/SpawnSalvageMissionJob.cs @@ -135,6 +135,7 @@ protected override async Task Process() expedition.EndTime = _timing.CurTime + mission.Duration; expedition.MissionParams = _missionParams; expedition.Difficulty = _missionParams.Difficulty; + expedition.Rewards = mission.Rewards; // Don't want consoles to have the incorrect name until refreshed. var ftlUid = _entManager.CreateEntityUninitialized("FTLPoint", new EntityCoordinates(mapUid, Vector2.Zero)); @@ -216,14 +217,6 @@ await WaitAsyncTask(_dungeon.GenerateDungeonAsync(dungeonConfig, mapUid, grid, ( await SpawnDungeonLoot(dungeon, lootProto, mapUid, grid, random, reservedTiles); } - foreach (var (loot, count) in mission.Loot) - { - for (var i = 0; i < count; i++) - { - var lootProto = _prototypeManager.Index(loot); - await SpawnDungeonLoot(dungeon, lootProto, mapUid, grid, random, reservedTiles); - } - } return true; } @@ -251,62 +244,10 @@ private async Task SpawnDungeonLoot(Dungeon? dungeon, SalvageLootPrototype loot, } } break; - // Spawns a cluster (like an ore vein) nearby. - case DungeonClusterLoot clusterLoot: - await SpawnDungeonClusterLoot(dungeon!, clusterLoot, grid, random, reservedTiles); - break; } } } - #region Loot - - private async Task SpawnDungeonClusterLoot( - Dungeon dungeon, - DungeonClusterLoot loot, - MapGridComponent grid, - Random random, - List reservedTiles) - { - var spawnTiles = new HashSet(); - - for (var i = 0; i < loot.Points; i++) - { - var room = dungeon.Rooms[random.Next(dungeon.Rooms.Count)]; - var clusterAmount = loot.ClusterAmount; - var spots = room.Tiles.ToList(); - random.Shuffle(spots); - - foreach (var spot in spots) - { - if (reservedTiles.Contains(spot)) - continue; - - var anchored = grid.GetAnchoredEntitiesEnumerator(spot); - - if (anchored.MoveNext(out _)) - { - continue; - } - - clusterAmount--; - spawnTiles.Add(spot); - - if (clusterAmount == 0) - break; - } - } - - foreach (var tile in spawnTiles) - { - await SuspendIfOutOfTime(); - var proto = _prototypeManager.Index(loot.Prototype).Pick(random); - _entManager.SpawnEntity(proto, grid.GridTileToLocal(tile)); - } - } - - #endregion - #region Mission Specific private async Task SetupMining( diff --git a/Content.Shared/Procedural/Loot/DungeonClusterLoot.cs b/Content.Shared/Procedural/Loot/DungeonClusterLoot.cs deleted file mode 100644 index f1f46079c2..0000000000 --- a/Content.Shared/Procedural/Loot/DungeonClusterLoot.cs +++ /dev/null @@ -1,24 +0,0 @@ -using Content.Shared.Random; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; - -namespace Content.Shared.Procedural.Loot; - -/// -/// Spawns loot at points in the specified area inside of a dungeon room. -/// -public sealed class DungeonClusterLoot : IDungeonLoot -{ - /// - /// Spawns in a cluster. - /// - [DataField("clusterAmount")] - public int ClusterAmount = 1; - - /// - /// Number of clusters to spawn. - /// - [DataField("clusters")] public int Points = 1; - - [DataField("lootTable", required: true, customTypeSerializer: typeof(PrototypeIdSerializer))] - public string Prototype { get; } = string.Empty; -} diff --git a/Content.Shared/Salvage/SalvageExpeditions.cs b/Content.Shared/Salvage/SalvageExpeditions.cs index 18a41eb30a..bac0819d57 100644 --- a/Content.Shared/Salvage/SalvageExpeditions.cs +++ b/Content.Shared/Salvage/SalvageExpeditions.cs @@ -103,7 +103,7 @@ public sealed record SalvageMission( string Air, Color? Color, TimeSpan Duration, - Dictionary Loot, + List Rewards, List Modifiers) { /// @@ -151,7 +151,10 @@ public sealed record SalvageMission( /// public TimeSpan Duration = Duration; - public Dictionary Loot = Loot; + /// + /// The list of items to order on mission completion. + /// + public List Rewards = Rewards; /// /// Modifiers (outside of the above) applied to the mission. diff --git a/Content.Shared/Salvage/SharedSalvageSystem.cs b/Content.Shared/Salvage/SharedSalvageSystem.cs index 50c8af9771..7a5a7c32e9 100644 --- a/Content.Shared/Salvage/SharedSalvageSystem.cs +++ b/Content.Shared/Salvage/SharedSalvageSystem.cs @@ -1,6 +1,5 @@ using System.Linq; using Content.Shared.Dataset; -using Content.Shared.Procedural.Loot; using Content.Shared.Random; using Content.Shared.Random.Helpers; using Content.Shared.Salvage.Expeditions; @@ -124,8 +123,8 @@ public SalvageMission GetMission(SalvageMissionType config, DifficultyRating dif mods.Add(time.Description); } - var loots = GetLoot(config, _proto.EnumeratePrototypes().Where(o => !o.Guaranteed).ToList(), GetDifficulty(difficulty), seed); - return new SalvageMission(seed, difficulty, dungeon.ID, faction.ID, config, biome.ID, air.ID, light.Color, duration, loots, mods); + var rewards = GetRewards(difficulty, rand); + return new SalvageMission(seed, difficulty, dungeon.ID, faction.ID, config, biome.ID, air.ID, light.Color, duration, rewards, mods); } // TODO: probably worth putting the biome whitelist thing in a common thing then having a getmod overload for it @@ -208,28 +207,43 @@ public T GetMod(System.Random rand, ref float rating) where T : class, IProto throw new InvalidOperationException(); } - private Dictionary GetLoot(SalvageMissionType mission, List loots, int count, int seed) + private List GetRewards(DifficultyRating difficulty, System.Random rand) { - var results = new Dictionary(); - var adjustedSeed = new System.Random(seed + 2); - - for (var i = 0; i < count; i++) + var rewards = new List(3); + var ids = RewardsForDifficulty(difficulty); + foreach (var id in ids) { - adjustedSeed.Shuffle(loots); + // pick a random reward to give + var weights = _proto.Index(id); + rewards.Add(weights.Pick(rand)); + } - foreach (var loot in loots) - { - if (loot.Blacklist.Contains(mission)) - continue; + return rewards; + } - var weh = results.GetOrNew(loot.ID); - weh++; - results[loot.ID] = weh; - break; - } + /// + /// Get a list of WeightedRandomPrototype IDs with the rewards for a certain difficulty. + /// + private string[] RewardsForDifficulty(DifficultyRating rating) + { + var common = "SalvageRewardCommon"; + var rare = "SalvageRewardRare"; + var epic = "SalvageRewardEpic"; + switch (rating) + { + case DifficultyRating.Minimal: + return new string[] { common, common, common }; + case DifficultyRating.Minor: + return new string[] { common, common, rare }; + case DifficultyRating.Moderate: + return new string[] { common, rare, rare }; + case DifficultyRating.Hazardous: + return new string[] { rare, rare, epic }; + case DifficultyRating.Extreme: + return new string[] { rare, epic, epic }; + default: + throw new NotImplementedException(); } - - return results; } } diff --git a/Resources/Locale/en-US/procedural/expeditions.ftl b/Resources/Locale/en-US/procedural/expeditions.ftl index cb29c5ab8c..a0192fabd3 100644 --- a/Resources/Locale/en-US/procedural/expeditions.ftl +++ b/Resources/Locale/en-US/procedural/expeditions.ftl @@ -13,8 +13,7 @@ salvage-expedition-window-hostiles = Hostiles: salvage-expedition-window-duration = Duration: salvage-expedition-window-biome = Biome: salvage-expedition-window-modifiers = Modifiers: -salvage-expedition-window-loot = Loot: -salvage-expedition-window-none = N/A +salvage-expedition-window-rewards = Rewards: salvage-expedition-window-claimed = Claimed salvage-expedition-window-claim = Claim diff --git a/Resources/Prototypes/Catalog/Fills/Crates/salvage.yml b/Resources/Prototypes/Catalog/Fills/Crates/salvage.yml index 2b33df0427..9e83e1eec0 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/salvage.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/salvage.yml @@ -114,3 +114,35 @@ - id: WeaponRevolverMateba prob: 0.0001 +- type: entity + parent: CrateGenericSteel + id: CratePartsT3 + name: tier 3 parts crate + description: Contains 5 random tier 3 parts for upgrading machines. + components: + - type: StorageFill + contents: + - id: SalvagePartsT3Spawner + amount: 5 + +- type: entity + parent: CrateGenericSteel + id: CratePartsT3T4 + name: tier 3/4 parts crate + description: Contains 5 random tier 3 or 4 parts for upgrading machines. + components: + - type: StorageFill + contents: + - id: SalvagePartsT3T4Spawner + amount: 5 + +- type: entity + parent: CrateGenericSteel + id: CratePartsT4 + name: tier 4 parts crate + description: Contains 5 random tier 4 parts for upgrading machines. + components: + - type: StorageFill + contents: + - id: SalvagePartsT4Spawner + amount: 5 diff --git a/Resources/Prototypes/Procedural/salvage_loot.yml b/Resources/Prototypes/Procedural/salvage_loot.yml index 3b2519b63b..9d46018de5 100644 --- a/Resources/Prototypes/Procedural/salvage_loot.yml +++ b/Resources/Prototypes/Procedural/salvage_loot.yml @@ -1,55 +1,3 @@ -# Loot tables -#- type: weightedRandom -# id: SalvageLowValue -# weights: - # Common -# CrateSalvageAssortedGoodies: 1.0 - # Uncommon - # TODO: - # Rare - -- type: weightedRandom - id: SalvageHighValue - weights: - # Common - CrateMaterialPlasteel: 1.0 - CrateMaterialWood: 1.0 - CrateMaterialPlastic: 1.0 - CrateSalvageEquipment: 1.0 - CrateMaterialSteel: 1.0 - CrateMaterialGlass: 1.0 - # Uncommon - SuperCapacitorStockPart: 0.25 - PicoManipulatorStockPart: 0.25 - SuperMatterBinStockPart: 0.25 - # Rare - QuadraticCapacitorStockPart: 0.10 - FemtoManipulatorStockPart: 0.10 - BluespaceMatterBinStockPart: 0.10 - -# Crates -#- type: salvageLoot -# id: LowValue -# desc: Commodities -# blacklist: -# - Mining -# loots: -# - !type:DungeonClusterLoot -# lootTable: SalvageLowValue -# clusters: 3 -# clusterAmount: 3 - -- type: salvageLoot - id: HighValue - desc: High-value commodities - blacklist: - - Mining - loots: - - !type:DungeonClusterLoot - lootTable: SalvageHighValue - clusters: 5 - clusterAmount: 1 - # Ores # - Low value - type: salvageLoot diff --git a/Resources/Prototypes/Procedural/salvage_rewards.yml b/Resources/Prototypes/Procedural/salvage_rewards.yml index 9d5ea6cc96..d0b27167ac 100644 --- a/Resources/Prototypes/Procedural/salvage_rewards.yml +++ b/Resources/Prototypes/Procedural/salvage_rewards.yml @@ -25,8 +25,8 @@ IngotSilver: 1.0 SheetPlasma: 1.0 SheetUranium: 1.0 - SalvagePartsT3Spawner: 1.0 - SalvagePartsT3T4Spawner: 1.0 + CratePartsT3: 1.0 + CratePartsT3T4: 0.5 # things the expedition team might want CrateEmergencyBruteKit: 0.5 CrateMedicalSupplies: 0.5 @@ -48,7 +48,7 @@ # rare machinery SecurityTechFabCircuitboard: 1.0 ResearchAndDevelopmentServerMachineCircuitboard: 1.0 - SalvagePartsT4Spawner: 1.0 + CratePartsT4: 1.0 # rare weapons WeaponAdvancedLaser: 1.0 WeaponLaserCannon: 1.0 From 596216cbfc436f0dc8f14ec465e9f20fee085392 Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 16 Jun 2023 22:00:57 -0400 Subject: [PATCH 284/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index d465cb1c57..354c224e09 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: metalgearsloth - changes: - - {message: Added a generic bonk sound to items that collide with stuff., type: Add} - id: 3517 - time: '2023-04-23T17:42:09.0000000+00:00' - author: PuroSlavKing changes: - {message: Fixed theatrical performances crate now have name and desc., type: Fix} @@ -2920,3 +2915,8 @@ Entries: Zooming out is still restricted., type: Tweak} id: 4016 time: '2023-06-16T23:22:21.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: HAMTR Mech is now a tier 1 civilian service technology., type: Tweak} + id: 4017 + time: '2023-06-17T01:59:54.0000000+00:00' From 00cdac340f4586c8eb7e595ab2b12affe581dba8 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Sat, 17 Jun 2023 12:01:46 +1000 Subject: [PATCH 285/474] Update submodule to 0.128.0.0 (#17394) --- RobustToolbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RobustToolbox b/RobustToolbox index 05e38e0880..3bd7309536 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit 05e38e0880942bf035ccff0211a41ed7477a101b +Subproject commit 3bd7309536f066ec835ca1856b4821c4036ddd2b From 99cfe77557d4d1670692b5dddc68b614d7629531 Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 16 Jun 2023 22:02:04 -0400 Subject: [PATCH 286/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 354c224e09..ab49bbfe08 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: PuroSlavKing - changes: - - {message: Fixed theatrical performances crate now have name and desc., type: Fix} - id: 3518 - time: '2023-04-23T20:45:16.0000000+00:00' - author: deltanedas changes: - {message: The Syndicate has added a ringtone code lock to uplinks. Operatives @@ -2920,3 +2915,8 @@ Entries: - {message: HAMTR Mech is now a tier 1 civilian service technology., type: Tweak} id: 4017 time: '2023-06-17T01:59:54.0000000+00:00' +- author: deltanedas + changes: + - {message: When taking a mission you can now see what its rewards will be., type: Tweak} + id: 4018 + time: '2023-06-17T02:00:54.0000000+00:00' From 8ed4dcf0fb7f357e9bd7f5439da91b83ab3edabb Mon Sep 17 00:00:00 2001 From: Slava0135 <40753025+Slava0135@users.noreply.github.com> Date: Sat, 17 Jun 2023 05:07:58 +0300 Subject: [PATCH 287/474] shield values examine (#17245) --- .../Blocking/BlockingSystem.User.cs | 5 +- Content.Shared/Blocking/BlockingSystem.cs | 59 +++++++- .../Blocking/Components/BlockingComponent.cs | 15 +- .../Components/BlockingUserComponent.cs | 7 +- .../en-US/blocking/blocking-examine.ftl | 6 + Resources/Prototypes/Damage/modifier_sets.yml | 136 ------------------ .../Entities/Objects/Shields/shields.yml | 115 +++++++++++++-- 7 files changed, 172 insertions(+), 171 deletions(-) create mode 100644 Resources/Locale/en-US/blocking/blocking-examine.ftl diff --git a/Content.Shared/Blocking/BlockingSystem.User.cs b/Content.Shared/Blocking/BlockingSystem.User.cs index 8967b91fd4..bfefaf2b92 100644 --- a/Content.Shared/Blocking/BlockingSystem.User.cs +++ b/Content.Shared/Blocking/BlockingSystem.User.cs @@ -58,10 +58,7 @@ private void OnUserDamageModified(EntityUid uid, BlockingUserComponent component private void OnDamageModified(EntityUid uid, BlockingComponent component, DamageModifyEvent args) { - _proto.TryIndex(component.PassiveBlockDamageModifer, out var passiveblockModifier); - _proto.TryIndex(component.ActiveBlockDamageModifier, out var activeBlockModifier); - - var modifier = component.IsBlocking ? activeBlockModifier : passiveblockModifier; + var modifier = component.IsBlocking ? component.ActiveBlockDamageModifier : component.PassiveBlockDamageModifer; if (modifier == null) { return; diff --git a/Content.Shared/Blocking/BlockingSystem.cs b/Content.Shared/Blocking/BlockingSystem.cs index d74e934680..3b4da9d69b 100644 --- a/Content.Shared/Blocking/BlockingSystem.cs +++ b/Content.Shared/Blocking/BlockingSystem.cs @@ -1,7 +1,9 @@ using System.Linq; using Content.Shared.Actions; using Content.Shared.Actions.ActionTypes; -using Content.Shared.Doors.Components; +using Content.Shared.Damage; +using Content.Shared.Damage.Prototypes; +using Content.Shared.Examine; using Content.Shared.Hands; using Content.Shared.Hands.Components; using Content.Shared.Hands.EntitySystems; @@ -12,11 +14,14 @@ using Content.Shared.Physics; using Content.Shared.Popups; using Content.Shared.Toggleable; +using Content.Shared.Verbs; +using Robust.Shared.Network; using Robust.Shared.Physics; using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Systems; using Robust.Shared.Player; using Robust.Shared.Prototypes; +using Robust.Shared.Utility; namespace Content.Shared.Blocking; @@ -30,6 +35,8 @@ public sealed partial class BlockingSystem : EntitySystem [Dependency] private readonly SharedPopupSystem _popupSystem = default!; [Dependency] private readonly EntityLookupSystem _lookup = default!; [Dependency] private readonly SharedPhysicsSystem _physics = default!; + [Dependency] private readonly ExamineSystemShared _examine = default!; + [Dependency] private readonly INetManager _net = default!; public override void Initialize() { @@ -44,6 +51,8 @@ public override void Initialize() SubscribeLocalEvent(OnToggleAction); SubscribeLocalEvent(OnShutdown); + + SubscribeLocalEvent>(OnVerbExamine); } private void OnEquip(EntityUid uid, BlockingComponent component, GotEquippedHandEvent args) @@ -80,7 +89,7 @@ private void OnGetActions(EntityUid uid, BlockingComponent component, GetItemAct private void OnToggleAction(EntityUid uid, BlockingComponent component, ToggleActionEvent args) { - if(args.Handled) + if (args.Handled) return; var blockQuery = GetEntityQuery(); @@ -281,4 +290,50 @@ private void StopBlockingHelper(EntityUid uid, BlockingComponent component, Enti component.User = null; } + private void OnVerbExamine(EntityUid uid, BlockingComponent component, GetVerbsEvent args) + { + if (!args.CanInteract || !args.CanAccess || !_net.IsServer) + return; + + var fraction = component.IsBlocking ? component.ActiveBlockFraction : component.PassiveBlockFraction; + var modifier = component.IsBlocking ? component.ActiveBlockDamageModifier : component.PassiveBlockDamageModifer; + + var msg = new FormattedMessage(); + + msg.AddMarkup(Loc.GetString("blocking-fraction", ("value", MathF.Round(fraction * 100, 1)))); + + if (modifier != null) + { + AppendCoefficients(modifier, msg); + } + + _examine.AddDetailedExamineVerb(args, component, msg, + Loc.GetString("blocking-examinable-verb-text"), + "/Textures/Interface/VerbIcons/dot.svg.192dpi.png", + Loc.GetString("blocking-examinable-verb-message") + ); + } + + private static FormattedMessage AppendCoefficients(DamageModifierSet modifiers, FormattedMessage msg) + { + foreach (var coefficient in modifiers.Coefficients) + { + msg.PushNewline(); + msg.AddMarkup(Loc.GetString("blocking-coefficient-value", + ("type", coefficient.Key), + ("value", MathF.Round(coefficient.Value * 100, 1)) + )); + } + + foreach (var flat in modifiers.FlatReduction) + { + msg.PushNewline(); + msg.AddMarkup(Loc.GetString("blocking-reduction-value", + ("type", flat.Key), + ("value", flat.Value) + )); + } + + return msg; + } } diff --git a/Content.Shared/Blocking/Components/BlockingComponent.cs b/Content.Shared/Blocking/Components/BlockingComponent.cs index dfa22d323e..b9d2e33657 100644 --- a/Content.Shared/Blocking/Components/BlockingComponent.cs +++ b/Content.Shared/Blocking/Components/BlockingComponent.cs @@ -1,4 +1,5 @@ using Content.Shared.Actions.ActionTypes; +using Content.Shared.Damage; using Robust.Shared.Audio; using Robust.Shared.Physics.Collision.Shapes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; @@ -31,24 +32,22 @@ public sealed class BlockingComponent : Component /// /// The shape of the blocking fixture that will be dynamically spawned /// - [ViewVariables(VVAccess.ReadWrite)] [DataField("shape")] + [DataField("shape"), ViewVariables(VVAccess.ReadWrite)] public IPhysShape Shape = new PhysShapeCircle(0.5f); /// /// The damage modifer to use while passively blocking /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("passiveBlockModifier")] - public string PassiveBlockDamageModifer = "Metallic"; + [DataField("passiveBlockModifier", required: true)] + public DamageModifierSet PassiveBlockDamageModifer = default!; /// /// The damage modifier to use while actively blocking. /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("activeBlockModifier")] - public string ActiveBlockDamageModifier = "Metallic"; + [DataField("activeBlockModifier", required: true)] + public DamageModifierSet ActiveBlockDamageModifier = default!; - [DataField("blockingToggleActionId", customTypeSerializer:typeof(PrototypeIdSerializer))] + [DataField("blockingToggleActionId", customTypeSerializer: typeof(PrototypeIdSerializer))] public string BlockingToggleActionId = "ToggleBlock"; [DataField("blockingToggleAction")] diff --git a/Content.Shared/Blocking/Components/BlockingUserComponent.cs b/Content.Shared/Blocking/Components/BlockingUserComponent.cs index 6e53d8a6bc..7f71cefd43 100644 --- a/Content.Shared/Blocking/Components/BlockingUserComponent.cs +++ b/Content.Shared/Blocking/Components/BlockingUserComponent.cs @@ -1,5 +1,4 @@ -using Content.Shared.Damage; -using Robust.Shared.Physics; +using Robust.Shared.Physics; namespace Content.Shared.Blocking; @@ -15,14 +14,10 @@ public sealed class BlockingUserComponent : Component [DataField("blockingItem")] public EntityUid? BlockingItem; - [DataField("modifiers")] - public DamageModifierSet Modifiers = default!; - /// /// Stores the entities original bodytype /// Used so that it can be put back to what it was after anchoring /// [DataField("originalBodyType")] public BodyType OriginalBodyType; - } diff --git a/Resources/Locale/en-US/blocking/blocking-examine.ftl b/Resources/Locale/en-US/blocking/blocking-examine.ftl new file mode 100644 index 0000000000..8afc0ef08f --- /dev/null +++ b/Resources/Locale/en-US/blocking/blocking-examine.ftl @@ -0,0 +1,6 @@ +# Blocking examines +blocking-examinable-verb-text = Protection +blocking-examinable-verb-message = Examine the protection values. +blocking-fraction = It blocks [color=lightblue]{$value}%[/color] of incoming damage and: +blocking-coefficient-value = - It takes [color=lightblue]{$value}%[/color] of [color=yellow]{$type}[/color] damage. +blocking-reduction-value = - It takes [color=lightblue]{$value}[/color] less [color=yellow]{$type}[/color] damage. diff --git a/Resources/Prototypes/Damage/modifier_sets.yml b/Resources/Prototypes/Damage/modifier_sets.yml index 694191b403..6e8a8b848f 100644 --- a/Resources/Prototypes/Damage/modifier_sets.yml +++ b/Resources/Prototypes/Damage/modifier_sets.yml @@ -184,139 +184,3 @@ Cellular: 0.0 Radiation: 0.2 Caustic: 0.0 - -# Represents what a riot shield should block passively -# Each shield will probably have their own passive and active modifier sets -# Honestly it should not be too high -- type: damageModifierSet - id: PassiveRiotShieldBlock - coefficients: - Blunt: 0.9 - Slash: 0.9 - Piercing: 0.9 - Heat: 0.9 - -# Represents what a riot shield should block while active -# Should be a higher reduction because you're anchored -- type: damageModifierSet - id: ActiveRiotShieldBlock - coefficients: - Blunt: 0.8 - Slash: 0.8 - Piercing: 0.8 - Heat: 0.8 - flatReductions: - Blunt: 1 - Slash: 1 - Piercing: 1 - Heat: 1 - -- type: damageModifierSet - id: PassiveRiotLaserShieldBlock - coefficients: - Heat: 0.8 - -- type: damageModifierSet - id: ActiveRiotLaserShieldBlock - coefficients: - Heat: 0.7 - flatReductions: - Heat: 2 - -- type: damageModifierSet - id: PassiveRiotBulletShieldBlock - coefficients: - Blunt: 0.8 - Piercing: 0.8 - -- type: damageModifierSet - id: ActiveRiotBulletShieldBlock - coefficients: - Blunt: 0.7 - Piercing: 0.7 - flatReductions: - Blunt: 1.5 - Piercing: 1.5 - -#It's made from wood, so it should probably take more heat/laser damage -- type: damageModifierSet - id: PassiveBucklerBlock - coefficients: - Blunt: 0.95 - Slash: 0.95 - Piercing: 0.95 - Heat: 2 - -- type: damageModifierSet - id: ActiveBucklerBlock - coefficients: - Blunt: 0.85 - Slash: 0.85 - Piercing: 0.85 - Heat: 2 - flatReductions: - Blunt: 1 - Slash: 1 - Piercing: 1 - -#It's a really crummy shield -- type: damageModifierSet - id: PassiveMakeshiftBlock - coefficients: - Blunt: 0.95 - Slash: 0.95 - Piercing: 0.95 - Heat: 0.9 - -- type: damageModifierSet - id: ActiveMakeshiftBlock - coefficients: - Blunt: 0.85 - Slash: 0.85 - Piercing: 0.85 - Heat: 0.8 - flatReductions: - Blunt: 0.5 - Slash: 0.5 - Piercing: 0.5 - Heat: 1 - -#Clockwork generally takes more laser/heat damage -- type: damageModifierSet - id: PassiveClockworkShieldBlock - coefficients: - Blunt: 0.8 - Slash: 0.8 - Piercing: 0.8 - Heat: 1.5 - -- type: damageModifierSet - id: ActiveClockworkShieldBlock - coefficients: - Blunt: 0.7 - Slash: 0.7 - Piercing: 0.7 - Heat: 1.5 - flatReductions: - Blunt: 1 - Slash: 1 - Piercing: 1 - -#Mirror shield should reflect heat/laser eventually, but be relatively weak to everything else. -- type: damageModifierSet - id: PassiveMirrorShieldBlock - coefficients: - Blunt: 1.2 - Slash: 1.2 - Piercing: 1.2 - Heat: .7 - -- type: damageModifierSet - id: ActiveMirrorShieldBlock - coefficients: - Blunt: 1.2 - Slash: 1.2 - Piercing: 1.2 - Heat: .6 - flatReductions: - Heat: 1 diff --git a/Resources/Prototypes/Entities/Objects/Shields/shields.yml b/Resources/Prototypes/Entities/Objects/Shields/shields.yml index f6bc0d5015..4f493f4832 100644 --- a/Resources/Prototypes/Entities/Objects/Shields/shields.yml +++ b/Resources/Prototypes/Entities/Objects/Shields/shields.yml @@ -13,8 +13,23 @@ size: 100 heldPrefix: riot - type: Blocking - passiveBlockModifier: PassiveRiotShieldBlock - activeBlockModifier: ActiveRiotShieldBlock + passiveBlockModifier: + coefficients: + Blunt: 0.9 + Slash: 0.9 + Piercing: 0.9 + Heat: 0.9 + activeBlockModifier: + coefficients: + Blunt: 0.8 + Slash: 0.8 + Piercing: 0.8 + Heat: 0.8 + flatReductions: + Blunt: 1 + Slash: 1 + Piercing: 1 + Heat: 1 blockingToggleAction: name: action-name-blocking description: action-description-blocking @@ -72,8 +87,14 @@ - type: Item heldPrefix: riot_laser - type: Blocking - passiveBlockModifier: PassiveRiotLaserShieldBlock - activeBlockModifier: ActiveRiotLaserShieldBlock + passiveBlockModifier: + coefficients: + Heat: 0.8 + activeBlockModifier: + coefficients: + Heat: 0.7 + flatReductions: + Heat: 2 - type: entity name: riot bullet shield @@ -86,8 +107,17 @@ - type: Item heldPrefix: riot_bullet - type: Blocking - passiveBlockModifier: PassiveRiotBulletShieldBlock - activeBlockModifier: ActiveRiotBulletShieldBlock + passiveBlockModifier: + coefficients: + Blunt: 0.8 + Piercing: 0.8 + activeBlockModifier: + coefficients: + Blunt: 0.7 + Piercing: 0.7 + flatReductions: + Blunt: 1.5 + Piercing: 1.5 #Craftable shields @@ -102,8 +132,22 @@ - type: Item heldPrefix: buckler - type: Blocking - passiveBlockModifier: PassiveBucklerBlock - activeBlockModifier: ActiveBucklerBlock + passiveBlockModifier: + coefficients: + Blunt: 0.95 + Slash: 0.95 + Piercing: 0.95 + Heat: 2 + activeBlockModifier: + coefficients: + Blunt: 0.85 + Slash: 0.85 + Piercing: 0.85 + Heat: 2 + flatReductions: + Blunt: 1 + Slash: 1 + Piercing: 1 - type: Construction graph: WoodenBuckler node: woodenBuckler @@ -142,8 +186,23 @@ - type: Item heldPrefix: metal - type: Blocking - passiveBlockModifier: PassiveMakeshiftBlock - activeBlockModifier: ActiveMakeshiftBlock + passiveBlockModifier: + coefficients: + Blunt: 0.95 + Slash: 0.95 + Piercing: 0.95 + Heat: 0.9 + activeBlockModifier: + coefficients: + Blunt: 0.85 + Slash: 0.85 + Piercing: 0.85 + Heat: 0.8 + flatReductions: + Blunt: 0.5 + Slash: 0.5 + Piercing: 0.5 + Heat: 1 - type: Construction graph: MakeshiftShield node: makeshiftShield @@ -182,8 +241,22 @@ - type: Item heldPrefix: ratvarian - type: Blocking - passiveBlockModifier: PassiveClockworkShieldBlock - activeBlockModifier: ActiveClockworkShieldBlock + passiveBlockModifier: + coefficients: + Blunt: 0.8 + Slash: 0.8 + Piercing: 0.8 + Heat: 1.5 + activeBlockModifier: + coefficients: + Blunt: 0.7 + Slash: 0.7 + Piercing: 0.7 + Heat: 1.5 + flatReductions: + Blunt: 1 + Slash: 1 + Piercing: 1 #Have it break into brass when clock cult is in - type: entity @@ -196,9 +269,21 @@ state: mirror-icon - type: Item heldPrefix: mirror - - type: Blocking - passiveBlockModifier: PassiveMirrorShieldBlock - activeBlockModifier: ActiveMirrorShieldBlock + - type: Blocking #Mirror shield should reflect heat/laser eventually, but be relatively weak to everything else. + passiveBlockModifier: + coefficients: + Blunt: 1.2 + Slash: 1.2 + Piercing: 1.2 + Heat: .7 + activeBlockModifier: + coefficients: + Blunt: 1.2 + Slash: 1.2 + Piercing: 1.2 + Heat: .6 + flatReductions: + Heat: 1 blockSound: !type:SoundPathSpecifier path: /Audio/Effects/glass_step.ogg - type: Destructible From 6120907ef5e4ca6aa78b9654a3ab61e9fc9601a2 Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 16 Jun 2023 22:09:02 -0400 Subject: [PATCH 288/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index ab49bbfe08..b531ce138f 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: deltanedas - changes: - - {message: The Syndicate has added a ringtone code lock to uplinks. Operatives - are told the code when they are briefed. Set your ringtone to the code to open - your uplink!, type: Add} - id: 3519 - time: '2023-04-23T21:00:42.0000000+00:00' - author: ProPandaBear changes: - {message: The "Spacebucks" barsign was added., type: Add} @@ -2920,3 +2913,8 @@ Entries: - {message: When taking a mission you can now see what its rewards will be., type: Tweak} id: 4018 time: '2023-06-17T02:00:54.0000000+00:00' +- author: Slava0135 + changes: + - {message: Shield values now can be examined, type: Add} + id: 4019 + time: '2023-06-17T02:07:58.0000000+00:00' From b67209cb2400ffd9a2d32e028f52212b815a1314 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Sat, 17 Jun 2023 12:09:49 +1000 Subject: [PATCH 289/474] Revert "Door opening tweaks" (#17395) --- Content.Server/Doors/Systems/DoorSystem.cs | 10 ++++++++++ .../Doors/Systems/SharedDoorSystem.cs | 18 ++---------------- .../Prototypes/Entities/Mobs/NPCs/animals.yml | 4 ++-- .../Prototypes/Entities/Mobs/NPCs/mimic.yml | 1 - .../Prototypes/Entities/Mobs/NPCs/slimes.yml | 1 - 5 files changed, 14 insertions(+), 20 deletions(-) diff --git a/Content.Server/Doors/Systems/DoorSystem.cs b/Content.Server/Doors/Systems/DoorSystem.cs index c93fbc334b..84eb07e44d 100644 --- a/Content.Server/Doors/Systems/DoorSystem.cs +++ b/Content.Server/Doors/Systems/DoorSystem.cs @@ -48,6 +48,16 @@ public override void Initialize() SubscribeLocalEvent(OnEmagged); } + protected override void OnActivate(EntityUid uid, DoorComponent door, ActivateInWorldEvent args) + { + // TODO once access permissions are shared, move this back to shared. + if (args.Handled || !door.ClickOpen) + return; + + TryToggleDoor(uid, door, args.User); + args.Handled = true; + } + protected override void SetCollidable( EntityUid uid, bool collidable, diff --git a/Content.Shared/Doors/Systems/SharedDoorSystem.cs b/Content.Shared/Doors/Systems/SharedDoorSystem.cs index 850e479ba7..d607319eb3 100644 --- a/Content.Shared/Doors/Systems/SharedDoorSystem.cs +++ b/Content.Shared/Doors/Systems/SharedDoorSystem.cs @@ -57,7 +57,6 @@ public override void Initialize() SubscribeLocalEvent(OnGetState); SubscribeLocalEvent(OnHandleState); - SubscribeLocalEvent(OnInteractedNoHand); SubscribeLocalEvent(OnActivate); SubscribeLocalEvent(HandleCollide); @@ -180,22 +179,9 @@ protected void SetState(EntityUid uid, DoorState state, DoorComponent? door = nu #endregion #region Interactions - - private void OnInteractedNoHand(EntityUid uid, DoorComponent component, InteractedNoHandEvent args) + protected virtual void OnActivate(EntityUid uid, DoorComponent door, ActivateInWorldEvent args) { - if (args.Handled || !component.ClickOpen || !Tags.HasTag(args.User, "DoorBumpOpener")) - return; - - TryToggleDoor(uid, component, args.User, predicted: true); - args.Handled = true; - } - - public void OnActivate(EntityUid uid, DoorComponent door, ActivateInWorldEvent args) - { - if (args.Handled || !door.ClickOpen) - return; - - TryToggleDoor(uid, door, args.User, predicted: true); + // avoid client-mispredicts, as the server will definitely handle this event args.Handled = true; } diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index 5991705bf2..2fb94c50d4 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -2191,9 +2191,9 @@ accent: mouse - type: Tag tags: - - Hamster - - CannotSuicide - Trash + - CannotSuicide + - Hamster - type: Respirator damage: types: diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/mimic.yml b/Resources/Prototypes/Entities/Mobs/NPCs/mimic.yml index e1390920e3..e763ecac9f 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/mimic.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/mimic.yml @@ -6,7 +6,6 @@ components: - type: Tag tags: - - DoorBumpOpener - FootstepSound - type: InputMover - type: MobMover diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml b/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml index 644b373262..a325d557d1 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml @@ -41,7 +41,6 @@ volume: 3 - type: Tag tags: - - DoorBumpOpener - FootstepSound - type: Butcherable butcheringType: Knife From e03cf5940ec99b2f4d38c2e66d556c0ea0771ece Mon Sep 17 00:00:00 2001 From: EEASAS <109891564+EEASAS@users.noreply.github.com> Date: Fri, 16 Jun 2023 23:12:49 -0300 Subject: [PATCH 290/474] Update barratry (#17247) --- Resources/Maps/barratry.yml | 20508 ++++++++++++++++++---------------- 1 file changed, 10918 insertions(+), 9590 deletions(-) diff --git a/Resources/Maps/barratry.yml b/Resources/Maps/barratry.yml index 2ac564284e..f98af4777a 100644 --- a/Resources/Maps/barratry.yml +++ b/Resources/Maps/barratry.yml @@ -7,36 +7,39 @@ tilemap: 4: FloorAsteroidCoarseSand0 11: FloorAsteroidTile 15: FloorBlueCircuit - 17: FloorCarpetClown - 22: FloorDark - 23: FloorDarkDiagonal - 25: FloorDarkHerringbone - 29: FloorDarkPavement - 31: FloorDarkPlastic - 34: FloorEighties - 37: FloorFreezer - 38: FloorGlass - 40: FloorGrass - 46: FloorHydro - 49: FloorLino - 51: FloorMetalDiamond - 52: FloorMime - 57: FloorRGlass - 58: FloorReinforced - 59: FloorRockVault - 60: FloorShowroom - 61: FloorShuttleBlue - 68: FloorSteel - 69: FloorSteelDiagonal - 72: FloorSteelHerringbone - 76: FloorSteelPavement - 78: FloorTechMaint - 81: FloorWhite - 84: FloorWhiteHerringbone - 85: FloorWhiteMini - 91: FloorWood - 93: Lattice - 94: Plating + 18: FloorCarpetClown + 23: FloorDark + 24: FloorDarkDiagonal + 26: FloorDarkHerringbone + 30: FloorDarkPavement + 32: FloorDarkPlastic + 34: FloorDirt + 35: FloorEighties + 38: FloorFreezer + 39: FloorGlass + 41: FloorGrass + 47: FloorHydro + 50: FloorLino + 52: FloorMetalDiamond + 53: FloorMime + 55: FloorPlanetDirt + 58: FloorRGlass + 59: FloorReinforced + 60: FloorRockVault + 61: FloorShowroom + 62: FloorShuttleBlue + 69: FloorSteel + 70: FloorSteelDiagonal + 72: FloorSteelDirty + 73: FloorSteelHerringbone + 77: FloorSteelPavement + 79: FloorTechMaint + 82: FloorWhite + 85: FloorWhiteHerringbone + 86: FloorWhiteMini + 92: FloorWood + 94: Lattice + 95: Plating entities: - proto: "" entities: @@ -49,184 +52,184 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAgQAAAIEAAACBAAAAF4AAAAEAAAABAAAAgQAAAEEAAABXgAAAAsAAABeAAAACwAAAF4AAAALAAAAXgAAAAQAAAIEAAACBAAAAl4AAAALAAAABAAAAQQAAAAEAAAABAAAAF4AAAALAAAACwAAAF4AAAALAAAACwAAAF4AAAAEAAABBAAAAgQAAAELAAAAXgAAAAQAAAAEAAAABAAAAQQAAAAEAAACXgAAAAsAAAALAAAAXgAAAAsAAABeAAAACwAAAF4AAAALAAAACwAAAAsAAAALAAAABAAAAQQAAAIEAAABXgAAAAsAAABeAAAACwAAAF4AAAALAAAAXgAAAAsAAAALAAAACwAAAAQAAAIEAAACCwAAAAsAAAALAAAACwAAAF4AAABeAAAACwAAAAsAAAALAAAAXgAAAF4AAAAEAAABBAAAAgQAAAIEAAAABAAAAAQAAAILAAAAXgAAAAsAAAALAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAgQAAAEEAAACBAAAAAQAAAIEAAACBAAAAAsAAAALAAAAXgAAAE4AAABeAAAAGQAAAhkAAAEZAAABXgAAAAQAAAAEAAAABAAAAgQAAAEEAAAABAAAAAQAAAAEAAAAXgAAAAQAAAJOAAAAXgAAABkAAAEZAAACGQAAAl4AAAAEAAACBAAAAAQAAAIEAAABBAAAAAQAAAEEAAABBAAAAQsAAAAEAAAAXgAAAF4AAABeAAAAGQAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAABXgAAAAQAAAILAAAABAAAAVsAAAFeAAAAUQAAAFEAAAJRAAACUQAAA1EAAABRAAAAXgAAAEQAAAJEAAABRAAAAUQAAAEEAAABBAAAAAQAAABbAAAAXgAAAFEAAABRAAABUQAAAVEAAABRAAADUQAAA14AAABEAAADRAAAAUQAAABEAAADRAAAAAQAAABEAAACWwAAAl4AAABRAAABUQAAAVEAAAJRAAACUQAAAlEAAANeAAAARAAAAUQAAAAPAAAADwAAAA8AAABEAAAARAAAAFsAAAFbAAACRAAAA0QAAAFEAAADRAAAAEQAAAJEAAADRAAAA0QAAAFEAAACDwAAAA8AAAAPAAAARAAAAkQAAABbAAAAXgAAAEQAAANEAAACRAAAAUQAAABEAAACRAAAA0QAAAJEAAADRAAAA0QAAAJEAAACRAAAAkQAAAJEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAJEAAACRAAAAQ8AAABeAAAAXgAAAFsAAANeAAAAXgAAAA== + tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAABAAAAgQAAAIEAAACBAAAAF8AAAAEAAAABAAAAgQAAAEEAAABXwAAAAsAAABfAAAACwAAAF8AAAALAAAAXwAAAAQAAAIEAAACBAAAAl8AAAALAAAABAAAAQQAAAAEAAAABAAAAF8AAAALAAAACwAAAF8AAAALAAAACwAAAF8AAAAEAAABBAAAAgQAAAELAAAAXwAAAAQAAAAEAAAABAAAAQQAAAAEAAACXwAAAAsAAAALAAAAXwAAAAsAAABfAAAACwAAAF8AAAALAAAACwAAAAsAAAALAAAABAAAAQQAAAIEAAABXwAAAAsAAABfAAAACwAAAF8AAAALAAAAXwAAAAsAAAALAAAACwAAAAQAAAIEAAACCwAAAAsAAAALAAAACwAAAF8AAABfAAAACwAAAAsAAAALAAAAXwAAAF8AAAAEAAABBAAAAgQAAAIEAAAABAAAAAQAAAILAAAAXwAAAAsAAAALAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAABAAAAgQAAAEEAAACBAAAAAQAAAIEAAACBAAAAAsAAAALAAAAXwAAAE8AAABfAAAAGgAAAhoAAAEaAAABXwAAAAQAAAAEAAAABAAAAgQAAAEEAAAABAAAAAQAAAAEAAAAXwAAAAQAAAJPAAAAXwAAABoAAAEaAAACGgAAAl8AAAAEAAACBAAAAAQAAAIEAAABBAAAAAQAAAEEAAABBAAAAQsAAAAEAAAAXwAAAF8AAABfAAAAGgAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAEAAABXwAAAAQAAAILAAAABAAAAVwAAAFfAAAAUgAAAFIAAAJSAAACUgAAA1IAAABSAAAAXwAAAEUAAAJFAAABRQAAAUUAAAEEAAABBAAAAAQAAABcAAAAXwAAAFIAAABSAAABUgAAAVIAAABSAAADUgAAA18AAABFAAADRQAAAUUAAABFAAADRQAAAAQAAABFAAACXAAAAl8AAABSAAABUgAAAVIAAAJSAAACUgAAAlIAAANfAAAARQAAAUUAAAAPAAAADwAAAA8AAABFAAAARQAAAFwAAAFcAAACRQAAA0UAAAFFAAADRQAAAEUAAAJFAAADRQAAA0UAAAFFAAACDwAAAA8AAAAPAAAARQAAAkUAAABcAAAAXwAAAEUAAANFAAACRQAAAUUAAABFAAACRQAAA0UAAAJFAAADRQAAA0UAAAJFAAACRQAAAkUAAAJFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAJFAAACRQAAAQ8AAABfAAAAXwAAAFwAAANfAAAAXwAAAA== -1,0: ind: -1,0 - tiles: XgAAAF4AAAAdAAACFgAAAxYAAABeAAAARAAAAEQAAAFEAAACRAAAAg8AAABeAAAAWwAAAlsAAANbAAACXgAAAF4AAABeAAAAHQAAAyYAAAAWAAAAFgAAAUQAAAFEAAABRAAAAEQAAAAPAAAAXgAAAFsAAABbAAABWwAAAl4AAABeAAAAXgAAAB0AAAIWAAACFgAAAl4AAABEAAAARAAAAUQAAAJEAAADRAAAAl4AAABbAAADWwAAAFsAAAFeAAAARAAAAF4AAABeAAAAFgAAAV4AAABeAAAAXgAAAF4AAABEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAAARAAAAUQAAAJEAAACRAAAA0QAAAFEAAADRAAAA0QAAABEAAABRAAAAEQAAABEAAADRAAAAkQAAABEAAAARAAAAEQAAAJEAAADRAAAAEQAAABEAAAARAAAAkQAAANEAAACRAAAAUQAAAJEAAAARAAAA0QAAAJEAAACRAAAAkQAAAJEAAADRAAAAEQAAABEAAAARAAAAEQAAAFEAAABRAAAAUQAAAJEAAAARAAAAkQAAABEAAADRAAAAl4AAABeAAAARAAAAkQAAAJEAAADXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAF4AAABeAAAAXgAAAEQAAAFEAAABXgAAAF4AAABEAAAARAAAAEQAAAFeAAAARAAAAV4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAAJEAAACXgAAAEQAAAFEAAACRAAAAkQAAABeAAAARAAAA0QAAAFeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAAARAAAAF4AAABEAAABRAAAAEQAAAFEAAADXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABEAAAARAAAAEQAAAFeAAAAXgAAAEQAAAJEAAADXgAAAEQAAANEAAADXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFeAAAARAAAA0QAAAJeAAAAXgAAAEQAAAJEAAADXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAEQAAAJeAAAARAAAAUQAAAFEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAkQAAABEAAADXgAAAF4AAABEAAADXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAABYAAAMWAAABXgAAAF4AAABEAAADRAAAAkQAAAJeAAAAXgAAAF4AAABEAAADXgAAAF4AAABOAAAAXgAAAF4AAAAWAAAAFgAAAg== + tiles: XwAAAF8AAAAeAAACFwAAAxcAAABfAAAARQAAAEUAAAFFAAACRQAAAg8AAABfAAAAXAAAAlwAAANcAAACXwAAAF8AAABfAAAAHgAAAycAAAAXAAAAFwAAAUUAAAFFAAABRQAAAEUAAAAPAAAAXwAAAFwAAABcAAABXAAAAl8AAABfAAAAXwAAAB4AAAIXAAACFwAAAl8AAABFAAAARQAAAUUAAAJFAAADRQAAAl8AAABcAAADXAAAAFwAAAFfAAAARQAAAF8AAABfAAAAFwAAAV8AAABfAAAAXwAAAF8AAABFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAAARQAAAUUAAAJFAAACRQAAA0UAAAFFAAADRQAAA0UAAABFAAABRQAAAEUAAABFAAADRQAAAkUAAABFAAAARQAAAEUAAAJFAAADRQAAAEUAAABFAAAARQAAAkUAAANFAAACRQAAAUUAAAJFAAAARQAAA0UAAAJFAAACRQAAAkUAAAJFAAADRQAAAEUAAABFAAAARQAAAEUAAAFFAAABRQAAAUUAAAJFAAAARQAAAkUAAABFAAADRQAAAl8AAABfAAAARQAAAkUAAAJFAAADXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAF8AAABfAAAAXwAAAEUAAAFFAAABXwAAAF8AAABFAAAARQAAAEUAAAFfAAAARQAAAV8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAAJFAAACXwAAAEUAAAFFAAACRQAAAkUAAABfAAAARQAAA0UAAAFfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAAARQAAAF8AAABFAAABRQAAAEUAAAFFAAADXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABFAAAARQAAAEUAAAFfAAAAXwAAAEUAAAJFAAADXwAAAEUAAANFAAADXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFfAAAARQAAA0UAAAJfAAAAXwAAAEUAAAJFAAADXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAEUAAAJfAAAARQAAAUUAAAFFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAkUAAABFAAADXwAAAF8AAABFAAADXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAABcAAAMXAAABXwAAAE8AAABFAAADRQAAAkUAAAJfAAAAXwAAAF8AAABFAAADXwAAAF8AAABPAAAAXwAAAF8AAAAXAAAAFwAAAg== 0,-1: ind: 0,-1 - tiles: OgAAAF4AAABeAAAABAAAAAQAAAEEAAAABAAAADsAAAA7AAAAOwAAADsAAAA7AAAAAAAAAAAAAABdAAAAXQAAADoAAAA6AAAAOgAAAF4AAAAEAAAABAAAAjsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAAAAAAAXQAAAAAAAABeAAAAOgAAADoAAABeAAAABAAAAQQAAAE7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAABAAAAV0AAAAAAAAAXgAAADoAAABeAAAAXgAAAF4AAABeAAAAXgAAADsAAAA7AAAAOwAAADsAAAA7AAAABAAAAl4AAABeAAAAXgAAAAsAAABeAAAACwAAAF4AAAALAAAACwAAAF4AAAAEAAACOwAAADsAAAA7AAAAOwAAAF4AAABeAAAARAAAAV4AAAALAAAACwAAAF4AAABeAAAACwAAAAsAAABeAAAABAAAAAQAAAEEAAACBAAAAAQAAABeAAAARAAAA14AAABEAAACCwAAAF4AAAALAAAACwAAAAsAAABeAAAAXgAAAAQAAAAEAAABBAAAAQQAAAIEAAAAXgAAAF4AAABEAAABRAAAAwsAAAALAAAACwAAAF4AAAALAAAACwAAAF4AAAAEAAAABAAAAgQAAAFeAAAAXgAAAF4AAABEAAACRAAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAF4AAABeAAAABAAAAAQAAAEEAAAAXgAAAF4AAABeAAAARAAAAV4AAABEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANeAAAATgAAAF4AAABeAAAAXgAAAAQAAAEEAAABBAAAAAQAAAFeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAAQAAAFeAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAADXgAAAF4AAABeAAAAXgAAAF4AAAAWAAACFgAAA14AAABeAAAAXgAAAFsAAANbAAACWwAAA1sAAANEAAADRAAAAUQAAAAxAAAAMQAAADEAAAAWAAADFgAAARYAAAFeAAAAXgAAAF4AAABbAAABWwAAAlsAAAFeAAAARAAAAEQAAABEAAACMQAAADEAAAAxAAAAXgAAABYAAAIWAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAACRAAAAzEAAAAxAAAAMQAAAA== + tiles: OwAAAF8AAABfAAAABAAAAAQAAAEEAAAABAAAADwAAAA8AAAAPAAAADwAAAA8AAAAAAAAAAAAAABeAAAAXgAAADsAAAA7AAAAOwAAAF8AAAAEAAAABAAAAjwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAAAAAAAXgAAAAAAAABfAAAAOwAAADsAAABfAAAABAAAAQQAAAE8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAABAAAAV4AAAAAAAAAXwAAADsAAABfAAAAXwAAAF8AAABfAAAAXwAAADwAAAA8AAAAPAAAADwAAAA8AAAABAAAAl8AAABfAAAAXwAAAAsAAABfAAAACwAAAF8AAAALAAAACwAAAF8AAAAEAAACPAAAADwAAAA8AAAAPAAAAF8AAABfAAAARQAAAV8AAAALAAAACwAAAF8AAABfAAAACwAAAAsAAABfAAAABAAAAAQAAAEEAAACBAAAAAQAAABfAAAARQAAA18AAABFAAACCwAAAF8AAAALAAAACwAAAAsAAABfAAAAXwAAAAQAAAAEAAABBAAAAQQAAAIEAAAAXwAAAF8AAABFAAABRQAAAwsAAAALAAAACwAAAF8AAAALAAAACwAAAF8AAAAEAAAABAAAAgQAAAFfAAAAXwAAAF8AAABFAAACRQAAAF8AAABfAAAAXwAAAF8AAABfAAAABAAAAF8AAABfAAAABAAAAAQAAAEEAAAAXwAAAF8AAABfAAAARQAAAV8AAABFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAEAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANfAAAATwAAAF8AAABfAAAAXwAAAAQAAAEEAAABBAAAAAQAAAFfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAAQAAAFfAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAADXwAAAF8AAABfAAAAXwAAAF8AAAAXAAACFwAAA18AAABfAAAAXwAAAFwAAANcAAACXAAAA1wAAANFAAADRQAAAUUAAAAyAAAAMgAAADIAAAAXAAADFwAAARcAAAFfAAAAXwAAAF8AAABcAAABXAAAAlwAAAFfAAAARQAAAEUAAABFAAACMgAAADIAAAAyAAAAXwAAABcAAAIXAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAACRQAAAzIAAAAyAAAAMgAAAA== 0,0: ind: 0,0 - tiles: DwAAAD0AAAA9AAAAXgAAAF4AAABeAAAAXgAAAFsAAABbAAADWwAAAkQAAAJEAAADXgAAADEAAAAxAAAAMQAAAA8AAAA9AAAAPQAAAF4AAABeAAAAXgAAAF4AAABbAAABWwAAAV4AAABEAAABRAAAAF4AAAAxAAAAMQAAADEAAAAPAAAAPQAAAD0AAABeAAAAXgAAAF4AAABeAAAAWwAAAFsAAAJeAAAARAAAAEQAAANeAAAAMQAAADEAAAAxAAAARAAAAkQAAABEAAAAXgAAAEQAAANEAAADXgAAAF4AAABeAAAAXgAAAEQAAAFEAAACXgAAADEAAAAxAAAAMQAAAEQAAAFEAAADRAAAAEQAAAFEAAADRAAAAkQAAAFEAAABRAAAA0QAAAFEAAADRAAAA14AAABeAAAAXgAAAF4AAABEAAADRAAAAUQAAAJEAAAARAAAAEQAAAFEAAACRAAAAF4AAABeAAAARAAAAkQAAABEAAABRAAAA0QAAAFEAAACRAAAAEQAAABEAAACRAAAAUQAAANEAAAARAAAAV4AAABeAAAAXgAAAF4AAABEAAABRAAAAUQAAANEAAABRAAAAUQAAANEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAV4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAATgAAAE4AAABeAAAARAAAAUQAAAJeAAAAXgAAAE4AAABOAAAATgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAEQAAAJEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAAAWAAADFgAAAhYAAAAWAAAAFgAAARYAAAJeAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAATgAAAE4AAABeAAAAFgAAARYAAAEWAAABFgAAARYAAAAWAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAIWAAACFgAAAhYAAAAWAAACFgAAAl4AAABeAAAATgAAAF4AAAAWAAAAFgAAAxYAAAAWAAAAFgAAAV4AAABRAAADUQAAA1EAAABRAAABUQAAAlEAAABeAAAAXgAAAF4AAABeAAAAFgAAAxYAAAIWAAADFgAAAxYAAAFeAAAAUQAAAlEAAAEmAAAAJgAAAFEAAAFRAAAAXgAAAF4AAABOAAAAXgAAAA== + tiles: DwAAAD4AAAA+AAAAXwAAAF8AAABfAAAAXwAAAFwAAABcAAADXAAAAkUAAAJFAAADXwAAADIAAAAyAAAAMgAAAA8AAAA+AAAAPgAAAF8AAABfAAAAXwAAAF8AAABcAAABXAAAAV8AAABFAAABRQAAAF8AAAAyAAAAMgAAADIAAAAPAAAAPgAAAD4AAABfAAAAXwAAAF8AAABfAAAAXAAAAFwAAAJfAAAARQAAAEUAAANfAAAAMgAAADIAAAAyAAAARQAAAkUAAABFAAAAXwAAAEUAAANFAAADXwAAAF8AAABfAAAAXwAAAEUAAAFFAAACXwAAADIAAAAyAAAAMgAAAEUAAAFFAAADRQAAAEUAAAFFAAADRQAAAkUAAAFFAAABRQAAA0UAAAFFAAADRQAAA18AAABfAAAAXwAAAF8AAABFAAADRQAAAUUAAAJFAAAARQAAAEUAAAFFAAACRQAAAF8AAABfAAAARQAAAkUAAABFAAABRQAAA0UAAAFFAAACRQAAAEUAAABFAAACRQAAAUUAAANFAAAARQAAAV8AAABfAAAAXwAAAF8AAABFAAABRQAAAUUAAANFAAABRQAAAUUAAANFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAV8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAATwAAAE8AAABfAAAARQAAAUUAAAJfAAAAXwAAAE8AAABPAAAATwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAEUAAAJFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAAAXAAADFwAAAhcAAAAXAAAAFwAAARcAAAJfAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAATwAAAE8AAABfAAAAFwAAARcAAAEXAAABFwAAARcAAAAXAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAIXAAACFwAAAhcAAAAXAAACFwAAAl8AAABfAAAATwAAAF8AAAAXAAAAFwAAAxcAAAAXAAAAFwAAAV8AAABSAAADUgAAA1IAAABSAAABUgAAAlIAAABfAAAAXwAAAF8AAABfAAAAFwAAAxcAAAIXAAADFwAAAxcAAAFfAAAAUgAAAlIAAAEnAAAAJwAAAFIAAAFSAAAAXwAAAF8AAABPAAAAXwAAAA== -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAABAAAAQQAAAEEAAABBAAAAQAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAEEAAAAXgAAAAQAAAIEAAABAAAAAAQAAAIEAAACXQAAAF0AAABdAAAAXQAAAAQAAAAEAAACBAAAAgQAAAIEAAACXgAAAF4AAAAEAAABBAAAAAQAAAEEAAAABAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAABAAAAQQAAAEEAAABBAAAAQAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAEEAAAAXwAAAAQAAAIEAAABAAAAAAQAAAIEAAACXgAAAF4AAABeAAAAXgAAAAQAAAAEAAACBAAAAgQAAAIEAAACXwAAAF8AAAAEAAABBAAAAAQAAAEEAAAABAAAAA== 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAAQAAAIEAAABBAAAAQQAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAEAAAABAAAAAQAAAAEAAACBAAAAgQAAAEAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAABAAAAl4AAABeAAAABAAAAQQAAAAEAAAABAAAAQQAAAIEAAAABAAAAQAAAABdAAAAAAAAAAAAAABdAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAAQAAAIEAAABBAAAAQQAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAAABAAAAAQAAAAEAAACBAAAAgQAAAEAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAAAAAAAABAAAAl8AAABfAAAABAAAAQQAAAAEAAAABAAAAQQAAAIEAAAABAAAAQAAAABeAAAAAAAAAAAAAABeAAAAAAAAAA== -2,-1: ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAIgAAACIAAABeAAAAXgAAAAsAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAl4AAABeAAAAIgAAAF4AAAAiAAAAXgAAAAsAAABeAAAAXgAAAF4AAAAfAAAAHwAAAx8AAANeAAAAXgAAAEQAAABEAAADXgAAAF4AAAAiAAAAXgAAAF4AAAALAAAACwAAAF4AAABeAAAAHwAAAB8AAAAfAAADXgAAAEQAAAFEAAACRAAAAl4AAAACAAAAXgAAAAIAAABeAAAACwAAAF4AAABEAAADXgAAAB8AAAEfAAAAHwAAAV4AAABeAAAARAAAAF4AAABeAAAAAgAAAAIAAABeAAAAXgAAAF4AAAALAAAARAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJeAAAAXgAAAF4AAAACAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFeAAAAXgAAAE4AAABOAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABEAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAF4AAABOAAAARAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJeAAAATgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAACWwAAAVsAAAJeAAAAXgAAAE4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAA1sAAAFbAAACWwAAAV4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAFsAAAJbAAABWwAAAlsAAAJeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAAAWwAAAFsAAABbAAACXgAAAF4AAABeAAAAXgAAADwAAAA8AAAAPAAAADwAAABeAAAATgAAAF4AAABeAAAAWwAAAVsAAANbAAAAXgAAAF4AAABeAAAAXgAAAF4AAAA8AAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAIwAAACMAAABfAAAAXwAAAAsAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAIwAAAF8AAAAjAAAAXwAAAAsAAABfAAAAXwAAAF8AAAAgAAAAIAAAAyAAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAjAAAAXwAAAF8AAAALAAAACwAAAF8AAABfAAAAIAAAACAAAAAgAAADXwAAAF8AAABfAAAAXwAAAF8AAAACAAAAXwAAAAIAAABfAAAACwAAAF8AAABFAAADXwAAACAAAAEgAAAAIAAAAV8AAABfAAAAXwAAAF8AAABfAAAAAgAAAAIAAABfAAAAXwAAAF8AAAALAAAARQAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJfAAAAXwAAAF8AAAACAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFfAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABFAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABPAAAAXwAAAF8AAABPAAAARQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJfAAAATwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAACXAAAAVwAAAJfAAAAXwAAAE8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAA1wAAAFcAAACXAAAAV8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAFwAAAJcAAABXAAAAlwAAAJfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAAAXAAAAFwAAABcAAACXwAAAF8AAABfAAAAXwAAAD0AAAA9AAAAPQAAAD0AAABfAAAATwAAAF8AAABfAAAAXAAAAVwAAANcAAAAXwAAAF8AAABfAAAAXwAAAF8AAAA9AAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== -2,0: ind: -2,0 - tiles: RAAAA14AAABeAAAAXgAAAF4AAABeAAAAPAAAADwAAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAAXgAAAEQAAANeAAAATgAAAF4AAABeAAAAPAAAADwAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABEAAACXgAAAF4AAABeAAAAXgAAADwAAABeAAAAPAAAADwAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA14AAABeAAAAXgAAAF4AAAA8AAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAADRAAAAUQAAAFEAAAAXgAAAEQAAAFEAAACRAAAAkQAAAJeAAAAXgAAAEQAAANeAAAAXgAAAEQAAANEAAACRAAAAEQAAAFEAAABRAAAAkQAAAJEAAADRAAAAUQAAAJEAAADRAAAAEQAAAJEAAADRAAAAkQAAANEAAADRAAAAEQAAAJEAAABRAAAA0QAAAJEAAABRAAAAUQAAABEAAACRAAAAkQAAABEAAADRAAAA0QAAABEAAACRAAAAl4AAABEAAAARAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAA14AAABeAAAARAAAA14AAABeAAAAXgAAAF4AAAAxAAAAMQAAADEAAABbAAACWwAAAlsAAAJbAAADWwAAAlsAAAJbAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABMQAAADEAAABeAAAAWwAAA1sAAAJbAAAAWwAAAVsAAAJbAAADWwAAAV4AAABeAAAAXgAAAF4AAABEAAAAXgAAADEAAAAxAAAAXgAAAFsAAAFbAAAAWwAAAVsAAANbAAACWwAAA1sAAAFeAAAAXgAAAF4AAABeAAAARAAAAkQAAAJeAAAAXgAAAF4AAABbAAAAWwAAAVsAAANbAAACWwAAAlsAAAFbAAAAXgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAAVsAAABbAAABWwAAA1sAAAFbAAADWwAAAV4AAABeAAAATgAAAF4AAABEAAAAXgAAAE4AAABOAAAAXgAAAFsAAABbAAADWwAAA1sAAABbAAAAWwAAAlsAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAAFeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAAVsAAAJbAAACWwAAAlsAAAJbAAACWwAAAV4AAABeAAAATgAAAF4AAABeAAAAXgAAAA== + tiles: RQAAA18AAABfAAAAXwAAAF8AAABfAAAAPQAAAD0AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABPAAAAXwAAAEUAAANfAAAATwAAAF8AAABfAAAAPQAAAD0AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABFAAACXwAAAF8AAABfAAAAXwAAAD0AAABfAAAAPQAAAD0AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA18AAABfAAAAXwAAAF8AAAA9AAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAADRQAAAUUAAAFFAAAAXwAAAEUAAAFFAAACRQAAAkUAAAJfAAAAXwAAAEUAAANfAAAAXwAAAEUAAANFAAACRQAAAEUAAAFFAAABRQAAAkUAAAJFAAADRQAAAUUAAAJFAAADRQAAAEUAAAJFAAADRQAAAkUAAANFAAADRQAAAEUAAAJFAAABRQAAA0UAAAJFAAABRQAAAUUAAABFAAACRQAAAkUAAABFAAADRQAAA0UAAABFAAACRQAAAl8AAABFAAAARQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAA18AAABfAAAARQAAA18AAABfAAAAXwAAAF8AAAAyAAAAMgAAADIAAABcAAACXAAAAlwAAAJcAAADXAAAAlwAAAJcAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABMgAAADIAAABfAAAAXAAAA1wAAAJcAAAAXAAAAVwAAAJcAAADXAAAAV8AAABfAAAAXwAAAF8AAABFAAAAXwAAADIAAAAyAAAAXwAAAFwAAAFcAAAAXAAAAVwAAANcAAACXAAAA1wAAAFfAAAAXwAAAF8AAABfAAAARQAAAkUAAAJfAAAAXwAAAF8AAABcAAAAXAAAAVwAAANcAAACXAAAAlwAAAFcAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAAVwAAABcAAABXAAAA1wAAAFcAAADXAAAAV8AAABfAAAATwAAAF8AAABFAAAAXwAAAE8AAABPAAAAXwAAAFwAAABcAAADXAAAA1wAAABcAAAAXAAAAlwAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAAFfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAAVwAAAJcAAACXAAAAlwAAAJcAAACXAAAAV8AAABfAAAATwAAAF8AAABfAAAAXwAAAA== 1,-1: ind: 1,-1 - tiles: XQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAARAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAOgAAADoAAAA6AAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAADoAAAA6AAAAOgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAOgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAAAAAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAADEAAAAxAAAAXgAAAEwAAAFMAAACTAAAA14AAABeAAAAXgAAAF4AAABbAAAAWwAAA14AAABdAAAAXgAAAAAAAAAxAAAAMQAAAEwAAAFMAAACTAAAAkwAAAFeAAAAXgAAAE4AAABeAAAAXgAAAF0AAABbAAABXgAAAF4AAAAAAAAAMQAAADEAAABeAAAATAAAAUwAAABMAAACXgAAAF4AAABeAAAAXgAAAFsAAAFbAAADWwAAAl4AAABeAAAAXQAAAA== + tiles: XgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABeAAAARQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF8AAABfAAAAOwAAADsAAAA7AAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAADsAAAA7AAAAOwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXwAAAF8AAABfAAAAOwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAAAAAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAADIAAAAyAAAAXwAAAE0AAAFNAAACTQAAA18AAABfAAAAXwAAAF8AAABcAAAAXAAAA18AAABeAAAAXwAAAAAAAAAyAAAAMgAAAE0AAAFNAAACTQAAAk0AAAFfAAAAXwAAAE8AAABfAAAAXwAAAF4AAABcAAABXwAAAF8AAAAAAAAAMgAAADIAAABfAAAATQAAAU0AAABNAAACXwAAAF8AAABfAAAAXwAAAFwAAAFcAAADXAAAAl8AAABfAAAAXgAAAA== 1,0: ind: 1,0 - tiles: MQAAADEAAABeAAAAFwAAARcAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAADEAAAAxAAAAXgAAABcAAAAXAAADXgAAAF4AAABOAAAAXgAAAF4AAAAWAAAATgAAAE4AAABeAAAAXgAAAF0AAAAxAAAAMQAAAF4AAAAXAAAAFwAAA14AAABeAAAAXgAAAF4AAAAWAAACFgAAAl4AAABOAAAAXgAAAF4AAABdAAAAMQAAADEAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAE4AAABeAAAAXQAAAF4AAABeAAAAXgAAAEQAAAJEAAABRAAAAkQAAAFEAAABXgAAAF4AAAAWAAACXgAAAF4AAABeAAAAXgAAAF0AAABEAAAARAAAAkQAAAJEAAACRAAAAkQAAAJEAAAARAAAA0QAAAJEAAAARAAAA0QAAAFEAAABXgAAAF0AAABdAAAARAAAAkQAAANEAAABRAAAAUQAAAJEAAACRAAAAUQAAAJEAAACRAAAA0QAAAJEAAACRAAAA14AAABdAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAEQAAAJEAAAARAAAAUQAAABeAAAAXgAAAF4AAAACAAAAAgAAAF4AAAACAAAAXgAAAF4AAABOAAAATgAAAF4AAABEAAADRAAAAEQAAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAAACAAAAAgAAAF4AAABOAAAAXgAAAF4AAABeAAAARAAAAkQAAAFEAAADRAAAAV4AAABeAAAAXgAAAAIAAAACAAAAXgAAAAIAAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAADRAAAAUQAAABeAAAAXgAAAF4AAABeAAAAAgAAAAIAAAACAAAAXgAAAF4AAAAoAAAAKAAAAF4AAABEAAADRAAAAEQAAAJEAAADXgAAAF4AAABeAAAAAgAAAF4AAAACAAAAXgAAAF4AAAAoAAAAKAAAACgAAAAoAAAARAAAAkQAAABEAAACRAAAAV4AAABdAAAAXQAAAAIAAABeAAAAAgAAAAIAAABeAAAAKAAAACgAAAAoAAAAKAAAACgAAABEAAADRAAAAEQAAAFeAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAoAAAAKAAAACgAAAAoAAAARAAAAUQAAANEAAADXgAAAF0AAABdAAAAEQAAABEAAABeAAAAEQAAABEAAABeAAAAKAAAACgAAAAoAAAARAAAAUQAAABEAAAARAAAAF4AAABeAAAAXgAAAA== + tiles: MgAAADIAAABfAAAAGAAAARgAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAADIAAAAyAAAAXwAAABgAAAAYAAADXwAAAF8AAABPAAAAXwAAAF8AAAAXAAAATwAAAE8AAABfAAAAXwAAAF4AAAAyAAAAMgAAAF8AAAAYAAAAGAAAA18AAABfAAAAXwAAAF8AAAAXAAACFwAAAl8AAABPAAAAXwAAAF8AAABeAAAAMgAAADIAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAE8AAABfAAAAXgAAAF8AAABfAAAAXwAAAEUAAAJFAAABRQAAAkUAAAFFAAABXwAAAF8AAAAXAAACXwAAAF8AAABfAAAAXwAAAF4AAABFAAAARQAAAkUAAAJFAAACRQAAAkUAAAJFAAAARQAAA0UAAAJFAAAARQAAA0UAAAFFAAABXwAAAF4AAABeAAAARQAAAkUAAANFAAABRQAAAUUAAAJFAAACRQAAAUUAAAJFAAACRQAAA0UAAAJFAAACRQAAA18AAABeAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAEUAAAJFAAAARQAAAUUAAABfAAAAXwAAAF8AAAACAAAAAgAAAF8AAAACAAAAXwAAAF8AAABPAAAATwAAAF8AAABFAAADRQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAAACAAAAAgAAAF8AAABPAAAAXwAAAF8AAABfAAAARQAAAkUAAAFFAAADRQAAAV8AAABfAAAAXwAAAAIAAAACAAAAXwAAAAIAAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAADRQAAAUUAAABfAAAAXwAAAF8AAABfAAAAAgAAAAIAAAACAAAAXwAAAF8AAAApAAAAKQAAAF8AAABFAAADRQAAAEUAAAJFAAADXwAAAF8AAABfAAAAAgAAAF8AAAACAAAAXwAAAF8AAAApAAAAKQAAACkAAAApAAAARQAAAkUAAABFAAACRQAAAV8AAABeAAAAXgAAAAIAAABfAAAAAgAAAAIAAABfAAAAKQAAACkAAAApAAAAKQAAACkAAABFAAADRQAAAEUAAAFfAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAApAAAAKQAAACkAAAApAAAARQAAAUUAAANFAAADXwAAAF4AAABeAAAAEgAAABIAAABfAAAAEgAAABIAAABfAAAAKQAAACkAAAApAAAARQAAAUUAAABFAAAARQAAAF8AAABfAAAAXwAAAA== 1,-2: ind: 1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAA== 1,1: ind: 1,1 - tiles: EQAAAF4AAAARAAAAXgAAAF4AAABeAAAAKAAAACgAAAAoAAAARAAAAEQAAAFEAAACRAAAAV4AAABeAAAAXgAAAF4AAAARAAAAXgAAABEAAAARAAAAXgAAACgAAAAoAAAAXgAAAEQAAAFEAAADRAAAAEQAAANeAAAAXgAAAF4AAABeAAAAEQAAAF4AAABeAAAAEQAAAF4AAAAoAAAAXgAAAF4AAABEAAABRAAAAUQAAANEAAADXgAAAF4AAABeAAAAEQAAAF4AAAARAAAAEQAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAFEAAAARAAAAF4AAABeAAAAXgAAAF4AAAARAAAAXgAAABEAAAARAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAABRAAAAUQAAAJeAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAEQAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAA0QAAANEAAAAXgAAAF0AAAAAAAAAXgAAABEAAABeAAAAXgAAABEAAABeAAAAXgAAAE4AAABeAAAAXgAAABYAAAFeAAAAXgAAAF4AAABdAAAAAAAAAF4AAAARAAAAXgAAABEAAABeAAAAXgAAAE4AAABeAAAAXgAAABYAAAAWAAAAFgAAARYAAABeAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAAAWAAABFgAAABYAAAMWAAACXgAAAF0AAAAAAAAAXgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAhYAAAAWAAACFgAAAl4AAABdAAAAAAAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAEWAAAAFgAAAxYAAAFeAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAAAWAAADFgAAARYAAAEWAAADXgAAAF0AAAAAAAAAWwAAAV4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAFgAAABYAAAAWAAADFgAAA14AAABdAAAAAAAAAFsAAAJeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAABbAAABXgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAWwAAAF4AAABeAAAATgAAAF4AAABeAAAATgAAAF4AAABeAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAA== + tiles: EgAAAF8AAAASAAAAXwAAAF8AAABfAAAAKQAAACkAAAApAAAARQAAAEUAAAFFAAACRQAAAV8AAABfAAAAXwAAAF8AAAASAAAAXwAAABIAAAASAAAAXwAAACkAAAApAAAAXwAAAEUAAAFFAAADRQAAAEUAAANfAAAAXwAAAF8AAABfAAAAEgAAAF8AAABfAAAAEgAAAF8AAAApAAAAXwAAAF8AAABFAAABRQAAAUUAAANFAAADXwAAAF8AAABfAAAAEgAAAF8AAAASAAAAEgAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAFFAAAARQAAAF8AAABfAAAAXwAAAF8AAAASAAAAXwAAABIAAAASAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAABRQAAAUUAAAJfAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAEgAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAA0UAAANFAAAAXwAAAF4AAAAAAAAAXwAAABIAAABfAAAAXwAAABIAAABfAAAAXwAAAE8AAABfAAAAXwAAABcAAAFfAAAAXwAAAF8AAABeAAAAAAAAAF8AAAASAAAAXwAAABIAAABfAAAAXwAAAE8AAABfAAAAXwAAABcAAAAXAAAAFwAAARcAAABfAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAAAXAAABFwAAABcAAAMXAAACXwAAAF4AAAAAAAAAXwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAhcAAAAXAAACFwAAAl8AAABeAAAAAAAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAEXAAAAFwAAAxcAAAFfAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAAAXAAADFwAAARcAAAEXAAADXwAAAF4AAAAAAAAAXAAAAV8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAFwAAABcAAAAXAAADFwAAA18AAABeAAAAAAAAAFwAAAJfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAABcAAABXwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXAAAAF8AAABfAAAATwAAAF8AAABfAAAATwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAA== 2,0: ind: 2,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,1: ind: 2,1 - tiles: XgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: XwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,1: ind: 0,1 - tiles: FgAAAhYAAAEWAAACFgAAAhYAAANeAAAAUQAAA1EAAABRAAACUQAAAFEAAAJRAAACXgAAAF4AAABOAAAAXgAAABYAAAAWAAACFgAAAhYAAAMWAAABXgAAAFEAAANRAAAAUQAAAVEAAABRAAABUQAAAl4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAACXgAAAF4AAABeAAAAXgAAAF4AAABRAAACUQAAAFEAAANeAAAAXgAAAF4AAABeAAAAXgAAAFEAAANRAAABUQAAAlEAAAJRAAABUQAAA1EAAANRAAAAUQAAAVEAAAFRAAABXgAAAE4AAABeAAAAXgAAAF4AAABRAAACUQAAASYAAABRAAAAXgAAAFEAAABRAAACXgAAAFEAAAFRAAADUQAAAl4AAABOAAAAXgAAAF4AAABeAAAAXgAAAFEAAABRAAADUQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAUQAAAF4AAABRAAACJgAAAFEAAAJeAAAAUQAAAFEAAAFRAAAAUQAAAlEAAAJeAAAAXgAAAF4AAABOAAAAXgAAAFEAAABRAAADUQAAA1EAAAJRAAADXgAAAFEAAAFRAAADUQAAAFEAAAJRAAABXgAAAF4AAABeAAAATgAAAF4AAABRAAABXgAAAFEAAAAmAAAAUQAAAVEAAAFRAAADUQAAAVEAAABRAAADUQAAAigAAAAoAAAAXgAAAF4AAABeAAAAUQAAAFEAAABRAAAAUQAAAFEAAANRAAACUQAAAFEAAAJRAAACUQAAAFEAAAEoAAAAKAAAAF4AAABeAAAAXgAAAFEAAANRAAAAUQAAAiYAAABRAAABXgAAAFEAAAFRAAACUQAAAFEAAANRAAADKAAAACgAAABeAAAAXgAAAF4AAABRAAACXgAAAFEAAAAmAAAAUQAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABRAAADUQAAAlEAAABRAAABUQAAAFEAAAFRAAADUQAAA1EAAAFRAAAAUQAAA1sAAABbAAABWwAAAlEAAAJRAAAAUQAAASYAAABRAAAAUQAAAVEAAABRAAADUQAAAFEAAAFRAAACUQAAAlEAAANeAAAAWwAAAVsAAANRAAABUQAAAFEAAABRAAAAUQAAAFEAAAFeAAAAUQAAAlEAAANRAAADUQAAAlEAAANRAAAAXgAAAFsAAABbAAABUQAAA14AAABRAAABJgAAAFEAAAFRAAACXgAAAFEAAANRAAACUQAAA1EAAANRAAABUQAAA14AAABbAAABWwAAAw== + tiles: FwAAAhcAAAEXAAACFwAAAhcAAANfAAAAUgAAA1IAAABSAAACUgAAAFIAAAJSAAACXwAAAF8AAABPAAAAXwAAABcAAAAXAAACFwAAAhcAAAMXAAABXwAAAFIAAANSAAAAUgAAAVIAAABSAAABUgAAAl8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAACXwAAAF8AAABfAAAAXwAAAF8AAABSAAACUgAAAFIAAANfAAAAXwAAAF8AAABfAAAAXwAAAFIAAANSAAABUgAAAlIAAAJSAAABUgAAA1IAAANSAAAAUgAAAVIAAAFSAAABXwAAAE8AAABfAAAAXwAAAF8AAABSAAACUgAAAScAAABSAAAAXwAAAFIAAABSAAACXwAAAFIAAAFSAAADUgAAAl8AAABPAAAAXwAAAF8AAABfAAAAXwAAAFIAAABSAAADUgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAUgAAAF8AAABSAAACJwAAAFIAAAJfAAAAUgAAAFIAAAFSAAAAUgAAAlIAAAJfAAAAXwAAAF8AAABPAAAAXwAAAFIAAABSAAADUgAAA1IAAAJSAAADXwAAAFIAAAFSAAADUgAAAFIAAAJSAAABXwAAAF8AAABfAAAATwAAAF8AAABSAAABXwAAAFIAAAAnAAAAUgAAAVIAAAFSAAADUgAAAVIAAABSAAADUgAAAikAAAApAAAAXwAAAF8AAABfAAAAUgAAAFIAAABSAAAAUgAAAFIAAANSAAACUgAAAFIAAAJSAAACUgAAAFIAAAEpAAAAKQAAAF8AAABfAAAAXwAAAFIAAANSAAAAUgAAAicAAABSAAABXwAAAFIAAAFSAAACUgAAAFIAAANSAAADKQAAACkAAABfAAAAXwAAAF8AAABSAAACXwAAAFIAAAAnAAAAUgAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAADUgAAAlIAAABSAAABUgAAAFIAAAFSAAADUgAAA1IAAAFSAAAAUgAAA1wAAABcAAABXAAAAlIAAAJSAAAAUgAAAScAAABSAAAAUgAAAVIAAABSAAADUgAAAFIAAAFSAAACUgAAAlIAAANfAAAAXAAAAVwAAANSAAABUgAAAFIAAABSAAAAUgAAAFIAAAFfAAAAUgAAAlIAAANSAAADUgAAAlIAAANSAAAAXwAAAFwAAABcAAABUgAAA18AAABSAAABJwAAAFIAAAFSAAACXwAAAFIAAANSAAACUgAAA1IAAANSAAABUgAAA18AAABcAAABXAAAAw== -1,1: ind: -1,1 - tiles: XgAAAF4AAABEAAABRAAAAkQAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAAAWAAADFgAAAV4AAABeAAAARAAAA0QAAANEAAACXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAE4AAABeAAAAFgAAAxYAAABeAAAAXgAAAF4AAABEAAACRAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAA0QAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABRAAABUQAAAFEAAANRAAACUQAAAF4AAABeAAAARAAAAUQAAAFEAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAAUQAAAF4AAABVAAACVQAAAFEAAABeAAAAXgAAAEQAAAJEAAABRAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABVAAADVQAAAFUAAANRAAABFgAAAl4AAABEAAACRAAAA0QAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFUAAAJVAAAAUQAAAxYAAAJeAAAARAAAAEQAAABEAAADXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABVAAADVQAAAlUAAAFEAAAAXgAAAEQAAAJEAAACXgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABVAAAAXgAAAFUAAABVAAADRAAAAF4AAABEAAACRAAAAkQAAANeAAAAXgAAAE4AAABOAAAAXgAAAF4AAABRAAABVQAAAFUAAABVAAAAVQAAAUQAAANeAAAARAAAAkQAAABEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUQAAAVUAAAFVAAADVQAAAVUAAAFEAAACRAAAAUQAAAJEAAAARAAAA0gAAAFIAAADSAAAAUgAAAJIAAADXgAAAFEAAABRAAACUQAAAVEAAAJRAAADRAAAAF4AAABEAAABRAAAA0QAAAJIAAABSAAAAUgAAANIAAABSAAAAl4AAABeAAAAXgAAAF4AAABeAAAAUQAAAEQAAAFeAAAARAAAA0QAAANEAAACSAAAA0gAAAFIAAABSAAAAEgAAAJeAAAAUQAAAVEAAAJRAAABUQAAAlEAAANeAAAAXgAAAEQAAAFEAAADRAAAA0gAAAFIAAABSAAAAkgAAABIAAABXgAAAFEAAAJRAAABUQAAA1EAAANRAAAARAAAAEQAAAJEAAAARAAAAkQAAANEAAACRAAAAUQAAAFEAAADRAAAA1EAAABRAAAAUQAAACYAAAAmAAAAUQAAAQ== + tiles: XwAAAF8AAABFAAABRQAAAkUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAAAXAAADFwAAAV8AAABfAAAARQAAA0UAAANFAAACXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAE8AAABfAAAAFwAAAxcAAABfAAAAXwAAAF8AAABFAAACRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAA0UAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAABUgAAAFIAAANSAAACUgAAAF8AAABfAAAARQAAAUUAAAFFAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAAUgAAAF8AAABWAAACVgAAAFIAAABfAAAAXwAAAEUAAAJFAAABRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABWAAADVgAAAFYAAANSAAABFwAAAl8AAABFAAACRQAAA0UAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFYAAAJWAAAAUgAAAxcAAAJfAAAARQAAAEUAAABFAAADXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABWAAADVgAAAlYAAAFFAAAAXwAAAEUAAAJFAAACXwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABWAAAAXwAAAFYAAABWAAADRQAAAF8AAABFAAACRQAAAkUAAANfAAAAXwAAAE8AAABPAAAAXwAAAF8AAABSAAABVgAAAFYAAABWAAAAVgAAAUUAAANfAAAARQAAAkUAAABFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAAVYAAAFWAAADVgAAAVYAAAFFAAACRQAAAUUAAAJFAAAARQAAA0kAAAFJAAADSQAAAUkAAAJJAAADXwAAAFIAAABSAAACUgAAAVIAAAJSAAADRQAAAF8AAABFAAABRQAAA0UAAAJJAAABSQAAAUkAAANJAAABSQAAAl8AAABfAAAAXwAAAF8AAABfAAAAUgAAAEUAAAFfAAAARQAAA0UAAANFAAACSQAAA0kAAAFJAAABSQAAAEkAAAJfAAAAUgAAAVIAAAJSAAABUgAAAlIAAANfAAAAXwAAAEUAAAFFAAADRQAAA0kAAAFJAAABSQAAAkkAAABJAAABXwAAAFIAAAJSAAABUgAAA1IAAANSAAAARQAAAEUAAAJFAAAARQAAAkUAAANFAAACRQAAAUUAAAFFAAADRQAAA1IAAABSAAAAUgAAACcAAAAnAAAAUgAAAQ== 0,2: ind: 0,2 - tiles: UQAAA14AAABRAAADUQAAAlEAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAABWwAAA1EAAAFRAAADUQAAACYAAABRAAAAUQAAAVEAAAImAAAAJgAAACYAAAAmAAAAJgAAAFEAAAFeAAAAXgAAAF4AAABRAAACXgAAAFEAAAJRAAADUQAAAl4AAABRAAADUQAAAlEAAAFRAAABUQAAA1EAAABRAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUQAAAl4AAABeAAAAUQAAAlQAAAFUAAAAVAAAAlQAAANUAAACUQAAAF4AAABeAAAAXgAAAB0AAANeAAAAXgAAAFEAAAFeAAAAXgAAAFEAAABUAAACVAAAAlQAAAJUAAACVAAAAlEAAABeAAAAXgAAAF4AAABeAAAAHQAAAlEAAAMmAAAAUQAAAV4AAABRAAABVAAAA1QAAAJUAAACVAAAA1QAAANRAAADXgAAAE4AAABeAAAAXgAAAF4AAABRAAACXgAAAFEAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAFeAAAAXgAAACYAAABRAAACXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAAAdAAABHQAAA1EAAANRAAABXgAAAF4AAABeAAAATgAAAE4AAABEAAADRAAAA0QAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAADMAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAADMAAAAzAAAAMwAAADMAAABeAAAATgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAAAzAAAAMwAAADMAAAAzAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAFsAAANbAAACWwAAA1sAAAJeAAAATgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABbAAAAWwAAAlsAAABbAAAAXgAAAF4AAABOAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== + tiles: UgAAA18AAABSAAADUgAAAlIAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAABXAAAA1IAAAFSAAADUgAAACcAAABSAAAAUgAAAVIAAAInAAAAJwAAACcAAAAnAAAAJwAAAFIAAAFfAAAAXwAAAF8AAABSAAACXwAAAFIAAAJSAAADUgAAAl8AAABSAAADUgAAAlIAAAFSAAABUgAAA1IAAABSAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAAl8AAABfAAAAUgAAAlUAAAFVAAAAVQAAAlUAAANVAAACUgAAAF8AAABfAAAAXwAAAB4AAANfAAAAXwAAAFIAAAFfAAAAXwAAAFIAAABVAAACVQAAAlUAAAJVAAACVQAAAlIAAABfAAAAXwAAAF8AAABfAAAAHgAAAlIAAAMnAAAAUgAAAV8AAABSAAABVQAAA1UAAAJVAAACVQAAA1UAAANSAAADXwAAAE8AAABfAAAAXwAAAF8AAABSAAACXwAAAFIAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAFfAAAAXwAAACcAAABSAAACXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAAAeAAABHgAAA1IAAANSAAABXwAAAF8AAABfAAAATwAAAE8AAABFAAADRQAAA0UAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAADQAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAADQAAAA0AAAANAAAADQAAABfAAAATwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAAA0AAAANAAAADQAAAA0AAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAFwAAANcAAACXAAAA1wAAAJfAAAATwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABcAAAAXAAAAlwAAABcAAAAXwAAAF8AAABPAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== -1,2: ind: -1,2 - tiles: RAAAAEQAAAFEAAABRAAAAEQAAABEAAABRAAAA0QAAAFEAAAARAAAA14AAABRAAAAUQAAACYAAAAmAAAAUQAAA0QAAAFEAAACRAAAAEQAAABEAAADRAAAAkQAAAFEAAADRAAAA0QAAABRAAACUQAAAVEAAABRAAABUQAAAlEAAAJEAAACXgAAAF4AAABeAAAAXgAAAEQAAAJEAAACRAAAAkQAAABEAAADXgAAAFEAAANRAAACUQAAAFEAAAJRAAADRAAAAF4AAAAoAAAAKAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFeAAAAKAAAACgAAAAoAAAAXgAAAE4AAABeAAAATgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAB0AAABEAAABXgAAACgAAAAoAAAAKAAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAAAdAAABRAAAAF4AAAAoAAAAKAAAACgAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJeAAAAKAAAACgAAAAoAAAAXgAAABYAAAIWAAAAFgAAAxYAAAIWAAADXgAAAF4AAABeAAAAXgAAAB0AAAFEAAACXgAAACgAAAAoAAAAKAAAAF4AAAAWAAADFgAAAhYAAAEWAAAAFgAAA14AAABOAAAAXgAAAF4AAABeAAAARAAAA14AAAAoAAAAKAAAACgAAABeAAAAFgAAABYAAAEWAAABFgAAAxYAAABeAAAAXgAAAE4AAABeAAAAXgAAAEQAAAJeAAAAKAAAACgAAAAoAAAAXgAAABYAAAIWAAABFgAAABYAAAIWAAADXgAAAF4AAABeAAAAXgAAAE4AAABEAAACXgAAACgAAAAoAAAAKAAAAF4AAAAWAAACFgAAAhYAAAEWAAAAFgAAAl4AAABeAAAAXgAAAF4AAABeAAAARAAAAF4AAAAoAAAAKAAAACgAAABeAAAAFgAAAhYAAAMWAAACFgAAAxYAAAJeAAAATgAAAF4AAABeAAAAXgAAAEQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACXgAAAE4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAE4AAABOAAAARAAAAUQAAABEAAADRAAAAUQAAABEAAACXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== + tiles: RQAAAEUAAAFFAAABRQAAAEUAAABFAAABRQAAA0UAAAFFAAAARQAAA18AAABSAAAAUgAAACcAAAAnAAAAUgAAA0UAAAFFAAACRQAAAEUAAABFAAADRQAAAkUAAAFFAAADRQAAA0UAAABSAAACUgAAAVIAAABSAAABUgAAAlIAAAJFAAACXwAAAF8AAABfAAAAXwAAAEUAAAJFAAACRQAAAkUAAABFAAADXwAAAFIAAANSAAACUgAAAFIAAAJSAAADRQAAAF8AAAApAAAAKQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFfAAAAKQAAACkAAAApAAAAXwAAAE8AAABfAAAATwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAB4AAABFAAABXwAAACkAAAApAAAAKQAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAAAeAAABRQAAAF8AAAApAAAAKQAAACkAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJfAAAAKQAAACkAAAApAAAAXwAAABcAAAIXAAAAFwAAAxcAAAIXAAADXwAAAF8AAABfAAAAXwAAAB4AAAFFAAACXwAAACkAAAApAAAAKQAAAF8AAAAXAAADFwAAAhcAAAEXAAAAFwAAA18AAABPAAAAXwAAAF8AAABfAAAARQAAA18AAAApAAAAKQAAACkAAABfAAAAFwAAABcAAAEXAAABFwAAAxcAAABfAAAAXwAAAE8AAABfAAAAXwAAAEUAAAJfAAAAKQAAACkAAAApAAAAXwAAABcAAAIXAAABFwAAABcAAAIXAAADXwAAAF8AAABfAAAAXwAAAE8AAABFAAACXwAAACkAAAApAAAAKQAAAF8AAAAXAAACFwAAAhcAAAEXAAAAFwAAAl8AAABfAAAAXwAAAF8AAABfAAAARQAAAF8AAAApAAAAKQAAACkAAABfAAAAFwAAAhcAAAMXAAACFwAAAxcAAAJfAAAATwAAAF8AAABfAAAAXwAAAEUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACXwAAAE8AAABPAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAE8AAABPAAAARQAAAUUAAABFAAADRQAAAUUAAABFAAACXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== 1,2: ind: 1,2 - tiles: WwAAAF4AAABOAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAATgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAATgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAWwAAAl4AAABbAAADXgAAAFsAAANbAAACWwAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAFsAAABbAAADWwAAAFsAAAFeAAAAWwAAA14AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAWwAAAl4AAABbAAADWwAAAlsAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAWwAAAVsAAAFbAAADXgAAAF4AAABbAAAAWwAAAV4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAWwAAAlsAAAJeAAAAWwAAA1sAAAJeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABbAAACWwAAAl4AAABbAAADWwAAAl4AAABbAAACXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAWwAAA14AAABbAAAAXgAAAF4AAABbAAADWwAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAATgAAAF4AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAATgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: XAAAAF8AAABPAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAATwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAATwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXAAAAl8AAABcAAADXwAAAFwAAANcAAACXAAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFwAAABcAAADXAAAAFwAAAFfAAAAXAAAA18AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXAAAAiIAAAA3AAAAXAAAAlwAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXAAAAVwAAAEiAAAAIgAAAF8AAABcAAAAXAAAAV8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXAAAAjcAAABfAAAAXAAAA1wAAAJfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABcAAACXAAAAl8AAABcAAADXAAAAl8AAABcAAACXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXAAAA18AAABcAAAAXwAAAF8AAABcAAADXAAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAATwAAAF8AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAATwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -2,2: ind: -2,2 - tiles: RAAAAEQAAAFEAAADRAAAA0QAAAFEAAACRAAAA14AAABEAAAARAAAAUQAAAJEAAAARAAAA0QAAANEAAAARAAAAkQAAANEAAAARAAAAUQAAAJEAAACRAAAAEQAAANEAAACRAAAAUQAAANEAAADRAAAAUQAAANEAAACRAAAA0QAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAA14AAABEAAAAKAAAACgAAAAoAAAAXgAAAEQAAANEAAADFgAAAhYAAAJeAAAAFgAAAxYAAAFeAAAAXgAAAF4AAABeAAAARAAAAEQAAANEAAAARAAAAEQAAAJEAAADRAAAAhYAAAEWAAABXgAAABYAAAAWAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAANeAAAARAAAAUQAAAIWAAAAFgAAAxYAAAMWAAACFgAAA14AAABeAAAAXgAAAF4AAAAWAAAAFgAAARYAAAIWAAABXgAAAEQAAAFEAAABFgAAARYAAAJeAAAAFgAAARYAAAJeAAAAXgAAAF4AAABeAAAAFgAAABYAAAMWAAADFgAAAl4AAABEAAAARAAAAxYAAAIWAAABXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAABYAAAIWAAACFgAAARYAAAJeAAAARAAAAkQAAAIWAAAAFgAAAF4AAABeAAAAWwAAA14AAABOAAAAXgAAAF4AAAAWAAAAFgAAAhYAAAEWAAACXgAAAEQAAAFEAAADXgAAAF4AAABeAAAAWwAAAl4AAABeAAAAXgAAAF4AAABeAAAAFgAAARYAAAEWAAACFgAAA14AAABEAAABRAAAAkQAAAJeAAAAXgAAAFsAAABbAAAAXgAAAF4AAABeAAAAXgAAABYAAAMWAAAAFgAAAxYAAANeAAAARAAAA0QAAAJEAAADXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAABYAAABeAAAAXgAAAEQAAAJEAAAARAAAA14AAAAlAAAAJQAAACUAAABeAAAAXgAAAF4AAABeAAAAWwAAAVsAAABbAAAAWwAAA14AAABEAAACRAAAA0QAAABeAAAAJQAAACUAAAAlAAAAXgAAAF4AAABeAAAAXgAAAFsAAAFbAAACWwAAAVsAAAJEAAADRAAAAkQAAANEAAACRAAAAiUAAAAlAAAAJQAAAF4AAABeAAAAXgAAAF4AAABbAAACWwAAAFsAAAFbAAACXgAAAEQAAABEAAABRAAAAl4AAAAlAAAAJQAAACUAAABeAAAATgAAAF4AAABeAAAAWwAAA1sAAAFbAAADWwAAAF4AAABEAAACRAAAAA== + tiles: RQAAAEUAAAFFAAADRQAAA0UAAAFFAAACRQAAA08AAABFAAAARQAAAUUAAAJFAAAARQAAA0UAAANFAAAARQAAAkUAAANFAAAARQAAAUUAAAJFAAACRQAAAEUAAANFAAACRQAAAUUAAANFAAADRQAAAUUAAANFAAACRQAAA0UAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAA18AAABFAAAAKQAAACkAAAApAAAAXwAAAEUAAANFAAADFwAAAhcAAAJfAAAAFwAAAxcAAAFfAAAAXwAAAF8AAABfAAAARQAAAEUAAANFAAAARQAAAEUAAAJFAAADRQAAAhcAAAEXAAABXwAAABcAAAAXAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAANfAAAARQAAAUUAAAIXAAAAFwAAAxcAAAMXAAACFwAAA18AAABfAAAAXwAAAF8AAAAXAAAAFwAAARcAAAIXAAABXwAAAEUAAAFFAAABFwAAARcAAAJfAAAAFwAAARcAAAJfAAAAXwAAAF8AAABfAAAAFwAAABcAAAMXAAADFwAAAl8AAABFAAAARQAAAxcAAAIXAAABXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAABcAAAIXAAACFwAAARcAAAJfAAAARQAAAkUAAAIXAAAAFwAAAF8AAABfAAAAXAAAA18AAABPAAAAXwAAAF8AAAAXAAAAFwAAAhcAAAEXAAACXwAAAEUAAAFFAAADXwAAAF8AAABfAAAAXAAAAl8AAABfAAAAXwAAAF8AAABfAAAAFwAAARcAAAEXAAACFwAAA18AAABFAAABRQAAAkUAAAJfAAAAXwAAAFwAAABcAAAAXwAAAF8AAABfAAAAXwAAABcAAAMXAAAAFwAAAxcAAANfAAAARQAAA0UAAAJFAAADXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAABcAAABfAAAAXwAAAEUAAAJFAAAARQAAA18AAAAmAAAAJgAAACYAAABfAAAAXwAAAF8AAABfAAAAXAAAAVwAAABcAAAAXAAAA18AAABFAAACRQAAA0UAAABfAAAAJgAAACYAAAAmAAAAXwAAAF8AAABfAAAAXwAAAFwAAAFcAAACXAAAAVwAAAJFAAADRQAAAkUAAANFAAACRQAAAiYAAAAmAAAAJgAAAF8AAABfAAAAXwAAAF8AAABcAAACXAAAAFwAAAFcAAACXwAAAEUAAABFAAABRQAAAl8AAAAmAAAAJgAAACYAAABfAAAATwAAAF8AAABfAAAAXAAAA1wAAAFcAAADXAAAAF8AAABFAAACRQAAAA== -2,1: ind: -2,1 - tiles: XgAAAE4AAABeAAAAWwAAAlsAAAFbAAACWwAAAVsAAANbAAACWwAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAFsAAANbAAADWwAAAVsAAANbAAADWwAAAlsAAAJeAAAATgAAAF4AAABeAAAAXgAAAF4AAAAoAAAAKAAAAF4AAABbAAADWwAAAFsAAAFbAAADWwAAA1sAAANbAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAKAAAACgAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAACgAAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAATgAAAE4AAABeAAAATgAAAF4AAABOAAAATgAAAF4AAABOAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAFgAAAxYAAABbAAAAWwAAAl4AAAAiAAAAIgAAACIAAAAiAAAAIgAAACIAAABeAAAAXgAAAE4AAABeAAAAFgAAARYAAAEWAAAAWwAAAlsAAAJbAAAAXgAAACIAAAAiAAAAIgAAACIAAAAiAAAAXgAAAE4AAABeAAAAXgAAAEQAAABEAAACFgAAA1sAAANbAAADWwAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABEAAADRAAAABYAAAFbAAACWwAAAlsAAAJeAAAAXgAAAEQAAAJEAAAAXgAAAEQAAAJeAAAATgAAAE4AAABeAAAARAAAAEQAAAEWAAACWwAAAlsAAABbAAADXgAAAF4AAABEAAACXgAAAEQAAABEAAADXgAAAF4AAABOAAAAXgAAAEQAAABEAAAAFgAAAlsAAAJbAAABXgAAAF4AAABEAAACRAAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABEAAADRAAAAhYAAABbAAABWwAAAF4AAABeAAAAXgAAAEQAAANEAAACRAAAA14AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAACRAAAA0QAAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAAJeAAAAXgAAAEQAAAJEAAABRAAAAw== + tiles: XwAAAE8AAABfAAAAXAAAAlwAAAFcAAACXAAAAVwAAANcAAACXAAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAFwAAANcAAADXAAAAVwAAANcAAADXAAAAlwAAAJfAAAATwAAAF8AAABfAAAAXwAAAF8AAAApAAAAKQAAAF8AAABcAAADXAAAAFwAAAFcAAADXAAAA1wAAANcAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAKQAAACkAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAACkAAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAATwAAAE8AAABfAAAATwAAAF8AAABPAAAATwAAAF8AAABPAAAATwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAFwAAAxcAAABcAAAAXAAAAl8AAAAjAAAAIwAAACMAAAAjAAAAIwAAACMAAABfAAAAXwAAAE8AAABfAAAAFwAAARcAAAEXAAAAXAAAAlwAAAJcAAAAXwAAACMAAAAjAAAAIwAAACMAAAAjAAAAXwAAAE8AAABfAAAAXwAAAEUAAABFAAACFwAAA1wAAANcAAADXAAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABFAAADRQAAABcAAAFcAAACXAAAAlwAAAJfAAAAXwAAAEUAAAJFAAAAXwAAAEUAAAJfAAAATwAAAE8AAABfAAAARQAAAEUAAAEXAAACXAAAAlwAAABcAAADXwAAAF8AAABFAAACXwAAAEUAAABFAAADXwAAAF8AAABPAAAAXwAAAEUAAABFAAAAFwAAAlwAAAJcAAABXwAAAF8AAABFAAACRQAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABFAAADRQAAAhcAAABcAAABXAAAAF8AAABfAAAAXwAAAEUAAANFAAACRQAAA18AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAEUAAAFFAAACRQAAA0UAAABPAAAATwAAAE8AAABPAAAARQAAAEUAAAJPAAAATwAAAEUAAAJFAAABRQAAAw== -2,-2: ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAA== -3,0: ind: -3,0 - tiles: XgAAAEgAAABIAAABSAAAAEgAAANeAAAARAAAAkQAAAFEAAAARQAAAkUAAAFFAAAARAAAA0QAAANEAAAARAAAA14AAABIAAAASAAAAkgAAAJIAAAARAAAAEQAAANEAAACRAAAAkUAAANFAAABRQAAA0QAAAJEAAACRAAAAkQAAANeAAAASAAAAEgAAABIAAADSAAAAV4AAABEAAABRAAAAV4AAABEAAAARAAAAkQAAAJeAAAARAAAAUQAAANEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAFEAAABRAAAAUQAAABEAAADRAAAA0QAAABEAAAARAAAAUQAAAFEAAAARAAAAkQAAAJEAAAARAAAA0QAAABEAAADRAAAA0QAAANEAAADRAAAAkQAAAJEAAACRAAAAUQAAANEAAADRAAAAkQAAABEAAACRAAAA0QAAANEAAABRAAAAEQAAAFEAAAARAAAAUQAAAFEAAACRAAAAkQAAANEAAADRAAAAUQAAAFEAAADRAAAAEQAAAFEAAADRAAAAkQAAAJEAAACRAAAAUQAAAJEAAAARAAAAEQAAANEAAADRAAAAxYAAANeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJeAAAAXgAAAEQAAAFEAAADRAAAAkQAAAJEAAAARAAAAF4AAAAWAAABFgAAAF4AAABeAAAAXgAAAEQAAAJeAAAARAAAAl4AAABEAAACRAAAAUQAAAFeAAAAXgAAAF4AAABeAAAAFgAAAxYAAAFeAAAAXgAAAF4AAABeAAAARAAAAUQAAANeAAAARAAAAUQAAAFEAAAAXgAAAF4AAABeAAAAXgAAABYAAAIWAAABXgAAAF4AAABeAAAARAAAAUQAAAJeAAAAXgAAAEQAAAFEAAACXgAAAF4AAABeAAAATgAAAF4AAABEAAADRAAAAF4AAABOAAAAXgAAAEQAAAFeAAAARAAAAV4AAABEAAADXgAAAF4AAABeAAAAXgAAAE4AAABeAAAARAAAAkQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAAXgAAAEQAAAFEAAADXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAARAAAAUQAAAJEAAADKAAAACgAAAAoAAAAKAAAAA== + tiles: XwAAAEkAAABJAAABSQAAAEkAAANfAAAARQAAAkUAAAFFAAAARgAAAkYAAAFGAAAARQAAA0UAAANFAAAARQAAA18AAABJAAAASQAAAkkAAAJJAAAARQAAAEUAAANFAAACRQAAAkYAAANGAAABRgAAA0UAAAJFAAACRQAAAkUAAANfAAAASQAAAEkAAABJAAADSQAAAV8AAABFAAABRQAAAV8AAABFAAAARQAAAkUAAAJfAAAARQAAAUUAAANFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAFFAAABRQAAAUUAAABFAAADRQAAA0UAAABFAAAARQAAAUUAAAFFAAAARQAAAkUAAAJFAAAARQAAA0UAAABFAAADRQAAA0UAAANFAAADRQAAAkUAAAJFAAACRQAAAUUAAANFAAADRQAAAkUAAABFAAACRQAAA0UAAANFAAABRQAAAEUAAAFFAAAARQAAAUUAAAFFAAACRQAAAkUAAANFAAADRQAAAUUAAAFFAAADRQAAAEUAAAFFAAADRQAAAkUAAAJFAAACRQAAAUUAAAJFAAAARQAAAEUAAANFAAADRQAAA0gAAABIAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJfAAAAXwAAAEUAAAFFAAADRQAAAkUAAAJFAAAARQAAAF8AAABcAAAAXAAAAF8AAABfAAAAXwAAAEUAAAJfAAAARQAAAl8AAABFAAACRQAAAUUAAAFfAAAAXwAAAF8AAABfAAAAXAAAAFwAAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAANfAAAARQAAAUUAAAFFAAAAXwAAAF8AAABfAAAAXwAAAFwAAABcAAAAXwAAAF8AAABfAAAARQAAAUUAAAJfAAAAXwAAAEUAAAFFAAACXwAAAF8AAABfAAAATwAAAF8AAABcAAAAXAAAAF8AAABPAAAAXwAAAEUAAAFfAAAARQAAAV8AAABFAAADXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXAAAAFwAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABPAAAAXwAAAEUAAAFFAAADXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAARQAAAUUAAAJFAAADKQAAACkAAAApAAAAKQAAAA== -3,1: ind: -3,1 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAADKAAAACgAAAAoAAAAKAAAAE4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAEQAAABEAAAARAAAASgAAAAoAAAAKAAAACgAAABOAAAAXgAAAF4AAABOAAAAXgAAAF4AAABOAAAAXgAAAF4AAABEAAACRAAAA0QAAAAoAAAAKAAAACgAAAAoAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAJEAAACKAAAACgAAAAoAAAAKAAAAE4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAJEAAAARAAAACgAAAAoAAAAKAAAACgAAABeAAAATgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAEQAAAJEAAABRAAAAkQAAAEoAAAAKAAAACgAAAAoAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAANEAAAAXgAAAF4AAAAoAAAAXgAAAF0AAABeAAAAXgAAAE4AAABeAAAANAAAADQAAAA0AAAAXgAAAEQAAANEAAACRAAAAhYAAANeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAADQAAAA0AAAANAAAAF4AAABEAAADRAAAAUQAAAMWAAAAFgAAAhYAAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAAA0AAAANAAAADQAAABeAAAARAAAAEQAAAFEAAADFgAAAhYAAAEWAAADFgAAA14AAABeAAAATgAAAF4AAABeAAAAEQAAABEAAAARAAAAXgAAAEQAAANEAAADRAAAAxYAAAAWAAABFgAAAxYAAABEAAACXgAAAE4AAABeAAAAXgAAABEAAAARAAAAEQAAAF4AAABEAAADRAAAAkQAAAIWAAADFgAAARYAAAMWAAADRAAAAF4AAABeAAAAXgAAAF4AAAARAAAAEQAAABEAAABeAAAARAAAAEQAAABEAAABFgAAAhYAAAAWAAABFgAAAkQAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAABRAAAARYAAAEWAAABXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAkQAAAJEAAACRAAAA14AAABEAAABRAAAAkQAAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAFEAAABRAAAAUQAAANEAAABRAAAAEQAAABEAAABRAAAAUQAAAFEAAADRAAAAl4AAABeAAAAXgAAAA== + tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAADKQAAACkAAAApAAAAKQAAAE8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAEUAAABFAAAARQAAASkAAAApAAAAKQAAACkAAABPAAAAXwAAAF8AAABPAAAAXwAAAF8AAABPAAAAXwAAAF8AAABFAAACRQAAA0UAAAApAAAAKQAAACkAAAApAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAJFAAACKQAAACkAAAApAAAAKQAAAE8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAJFAAAARQAAACkAAAApAAAAKQAAACkAAABfAAAATwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAEUAAAJFAAABRQAAAkUAAAEpAAAAKQAAACkAAAApAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAANFAAAAXwAAAF8AAAApAAAAXwAAAF4AAABfAAAAXwAAAE8AAABfAAAANQAAADUAAAA1AAAAXwAAAEUAAANFAAACRQAAAhcAAANfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAADUAAAA1AAAANQAAAF8AAABFAAADRQAAAUUAAAMXAAAAFwAAAhcAAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAAA1AAAANQAAADUAAABfAAAARQAAAEUAAAFFAAADFwAAAhcAAAEXAAADFwAAA18AAABfAAAATwAAAF8AAABfAAAAEgAAABIAAAASAAAAXwAAAEUAAANFAAADRQAAAxcAAAAXAAABFwAAAxcAAABFAAACXwAAAE8AAABfAAAAXwAAABIAAAASAAAAEgAAAF8AAABFAAADRQAAAkUAAAIXAAADFwAAARcAAAMXAAADRQAAAF8AAABfAAAAXwAAAF8AAAASAAAAEgAAABIAAABfAAAARQAAAEUAAABFAAABFwAAAhcAAAAXAAABFwAAAkUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAABRQAAARcAAAEXAAABXwAAAF8AAABfAAAAXwAAAF8AAABFAAABRQAAAkUAAAJFAAACRQAAA18AAABFAAABRQAAAkUAAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAFFAAABRQAAAUUAAANFAAABRQAAAEUAAABFAAABRQAAAUUAAAFFAAADRQAAAk8AAABPAAAATwAAAA== -3,2: ind: -3,2 - tiles: RAAAAUQAAAFEAAADRAAAAkQAAAFEAAABRAAAA0QAAABEAAADRAAAAEQAAABEAAABRAAAA0QAAABeAAAARAAAAEQAAAFEAAAARAAAA0QAAANEAAAARAAAAUQAAAFEAAAARAAAAkQAAAFEAAADRAAAA0QAAAJEAAABRAAAA0QAAABEAAABRAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAABXgAAAFsAAAJeAAAAXgAAAF4AAABeAAAARAAAA0QAAAJeAAAAWwAAAFsAAAJbAAAAWwAAA1sAAABbAAADWwAAAVsAAABbAAADWwAAARYAAAIWAAACFgAAAUQAAAFEAAAAXgAAAFsAAABbAAABWwAAAl4AAABbAAABWwAAAlsAAANbAAABWwAAAlsAAAIWAAADFgAAAxYAAANEAAACRAAAA14AAABbAAACXgAAAFsAAANbAAADXgAAAFsAAAJbAAAAWwAAAFsAAANbAAACFgAAAxYAAAMWAAABRAAAAkQAAAFeAAAAWwAAAFsAAANeAAAAXgAAAFsAAANbAAADWwAAAVsAAANbAAAAWwAAABYAAAAWAAACFgAAAEQAAABEAAABXgAAAFsAAAJbAAADWwAAAV4AAABeAAAAWwAAAVsAAAJbAAABWwAAAVsAAAJbAAAAXgAAABYAAAJEAAADRAAAAV4AAABeAAAAXgAAAF4AAABeAAAAFgAAAF4AAABbAAAAWwAAAFsAAABbAAADWwAAABYAAAAWAAABRAAAA0QAAAJeAAAALgAAAC4AAAAuAAAALgAAABYAAAFeAAAAXgAAAEQAAANEAAADRAAAAV4AAABeAAAAXgAAAEQAAAJEAAACFgAAAxYAAAIWAAABFgAAAxYAAAAWAAACXgAAAEQAAAFEAAACRAAAA0QAAANEAAADRAAAAEQAAABEAAADRAAAARYAAAAWAAADLgAAAC4AAAAuAAAAFgAAARYAAABEAAACRAAAAUQAAAFEAAAARAAAAEQAAAJEAAABRAAAAUQAAAEWAAAAFgAAAC4AAAAuAAAALgAAABYAAAEWAAABRAAAAkQAAAFEAAABRAAAAkQAAABEAAABRAAAA0QAAAFEAAACXgAAABYAAAIuAAAALgAAAC4AAAAWAAAAFgAAAEQAAABEAAADRAAAAEQAAAJEAAACRAAAA0QAAANEAAABRAAAAxYAAAMWAAADFgAAAxYAAAIWAAAAFgAAARYAAABEAAABRAAAAEQAAABEAAAARAAAAUQAAAFEAAADRAAAAkQAAANeAAAAFgAAABYAAAMWAAADFgAAAhYAAAFeAAAARAAAAEQAAANEAAABRAAAAEQAAABEAAADRAAAAg== + tiles: RQAAAUUAAAFFAAADRQAAAkUAAAFFAAABRQAAA0UAAABFAAADRQAAAEUAAABFAAABRQAAA0UAAABPAAAARQAAAEUAAAFFAAAARQAAA0UAAANFAAAARQAAAUUAAAFFAAAARQAAAkUAAAFFAAADRQAAA0UAAAJFAAABRQAAA0UAAABFAAABRQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAABXwAAAFwAAAJfAAAAXwAAAF8AAABfAAAARQAAA0UAAAJfAAAAXAAAAFwAAAJcAAAAXAAAA1wAAABcAAADXAAAAVwAAABcAAADXAAAARcAAAIXAAACFwAAAUUAAAFFAAAAXwAAAFwAAABcAAABXAAAAl8AAABcAAABXAAAAlwAAANcAAABXAAAAlwAAAIXAAADFwAAAxcAAANFAAACRQAAA18AAABcAAACXwAAAFwAAANcAAADXwAAAFwAAAJcAAAAXAAAAFwAAANcAAACFwAAAxcAAAMXAAABRQAAAkUAAAFfAAAAXAAAAFwAAANfAAAAXwAAAFwAAANcAAADXAAAAVwAAANcAAAAXAAAABcAAAAXAAACFwAAAEUAAABFAAABXwAAAFwAAAJcAAADXAAAAV8AAABfAAAAXAAAAVwAAAJcAAABXAAAAVwAAAJcAAAAXwAAABcAAAJFAAADRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAFwAAAF8AAABcAAAAXAAAAFwAAABcAAADXAAAABcAAAAXAAABRQAAA0UAAAJfAAAALwAAAC8AAAAvAAAALwAAABcAAAFfAAAAXwAAAEUAAANFAAADRQAAAV8AAABfAAAAXwAAAEUAAAJFAAACFwAAAxcAAAIXAAABFwAAAxcAAAAXAAACXwAAAEUAAAFFAAACRQAAA0UAAANFAAADRQAAAEUAAABFAAADRQAAARcAAAAXAAADLwAAAC8AAAAvAAAAFwAAARcAAABFAAACRQAAAUUAAAFFAAAARQAAAEUAAAJFAAABRQAAAUUAAAEXAAAAFwAAAC8AAAAvAAAALwAAABcAAAEXAAABRQAAAkUAAAFFAAABRQAAAkUAAABFAAABRQAAA0UAAAFFAAACXwAAABcAAAIvAAAALwAAAC8AAAAXAAAAFwAAAEUAAABFAAADRQAAAEUAAAJFAAACRQAAA0UAAANFAAABRQAAAxcAAAMXAAADFwAAAxcAAAIXAAAAFwAAARcAAABFAAABRQAAAEUAAABFAAAARQAAAUUAAAFFAAADRQAAAkUAAANfAAAAFwAAABcAAAMXAAADFwAAAhcAAAFfAAAARQAAAEUAAANFAAABRQAAAEUAAABFAAADRQAAAg== -3,-1: ind: -3,-1 - tiles: XQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAF4AAABEAAAARAAAAUQAAAJEAAACTgAAAF4AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABeAAAARAAAAkQAAAJEAAABRAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAA14AAABeAAAAXgAAAEQAAAJEAAACRAAAAEQAAAFeAAAAXgAAAEwAAANMAAAATAAAA14AAABEAAADRAAAA0QAAAJEAAAARAAAAEQAAABEAAAARAAAA0QAAAFEAAAAXgAAAF4AAABMAAAATAAAAEwAAAJeAAAARAAAAEQAAABEAAAARAAAAkQAAAFEAAACRAAAAkQAAABEAAACRAAAA14AAABeAAAAXgAAAEwAAAFeAAAAXgAAAEQAAAJEAAABRAAAAUQAAANEAAABRAAAAkQAAAJEAAACRAAAAEQAAABeAAAAWwAAAlsAAAJbAAACWwAAA14AAABEAAAARAAAAkQAAAFEAAADRAAAAEQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAFsAAAJbAAABWwAAAlsAAABeAAAARAAAA0QAAABEAAABRAAAAUQAAAJEAAACXgAAAFsAAAFbAAAAWwAAAF4AAABbAAADWwAAAVsAAABbAAAAWwAAAkQAAAFEAAABRAAAAkQAAAFEAAACRAAAAVsAAAFbAAACWwAAAFsAAAJeAAAAWwAAAlsAAABbAAAAWwAAAV4AAABEAAAARAAAAUQAAANEAAADRAAAAkQAAAFeAAAAWwAAA1sAAAJbAAADXgAAAF4AAABeAAAASAAAA14AAABeAAAARAAAAUQAAANeAAAAXgAAAEUAAANeAAAAXgAAAF4AAABeAAAAWwAAAw== + tiles: XgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABFAAAARQAAAUUAAAJFAAACTwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAARQAAAkUAAAJFAAABRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABRQAAA18AAABfAAAAXwAAAEUAAAJFAAACRQAAAEUAAAFfAAAAXwAAAE0AAANNAAAATQAAA18AAABFAAADRQAAA0UAAAJFAAAARQAAAEUAAABFAAAARQAAA0UAAAFFAAAAXwAAAF8AAABNAAAATQAAAE0AAAJfAAAARQAAAEUAAABFAAAARQAAAkUAAAFFAAACRQAAAkUAAABFAAACRQAAA18AAABfAAAAXwAAAE0AAAFfAAAAXwAAAEUAAAJFAAABRQAAAUUAAANFAAABRQAAAkUAAAJFAAACRQAAAEUAAABfAAAAXAAAAlwAAAJcAAACXAAAA18AAABFAAAARQAAAkUAAAFFAAADRQAAAEUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAFwAAAJcAAABXAAAAlwAAABfAAAARQAAA0UAAABFAAABRQAAAUUAAAJFAAACXwAAAFwAAAFcAAAAXAAAAF8AAABcAAADXAAAAVwAAABcAAAAXAAAAkUAAAFFAAABRQAAAkUAAAFFAAACRQAAAVwAAAFcAAACXAAAAFwAAAJfAAAAXAAAAlwAAABcAAAAXAAAAV8AAABFAAAARQAAAUUAAANFAAADRQAAAkUAAAFfAAAAXAAAA1wAAAJcAAADXwAAAF8AAABfAAAASQAAA18AAABfAAAARQAAAUUAAANfAAAAXwAAAEYAAANfAAAAXwAAAF8AAABfAAAAXAAAAw== -4,-1: ind: -4,-1 - tiles: XgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAABdAAAAXQAAAF4AAABeAAAAXgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAANEAAAARAAAAF4AAABOAAAAXgAAAE4AAABeAAAAXgAAAE4AAABeAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAA0QAAANeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAAJEAAAARAAAAl4AAABbAAACXgAAAFsAAAFeAAAAWwAAAl4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAACRAAAAUQAAANbAAADXgAAAF4AAABbAAACWwAAA14AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAA0QAAAFEAAADXgAAAFsAAAJeAAAAXgAAAFsAAABeAAAAXgAAAE4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAANEAAAARAAAA14AAABeAAAAWwAAAFsAAAJeAAAAWwAAA14AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAADRAAAA0QAAABeAAAAXgAAAF4AAABeAAAAWwAAAl4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAUQAAAFEAAACXgAAAFsAAAFeAAAAXgAAAFsAAAFeAAAAXgAAAE4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAANEAAADRAAAA14AAABeAAAAWwAAAl4AAABbAAABWwAAAl4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAABRAAAAUQAAABeAAAAWwAAA14AAABbAAADWwAAAF4AAABeAAAAXgAAAA== + tiles: XwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXgAAAAAAAABeAAAAXgAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAANFAAAARQAAAF8AAABPAAAAXwAAAE8AAABfAAAAXwAAAE8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAA0UAAANfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAAJFAAAARQAAAl8AAABcAAACXwAAAFwAAAFfAAAAXAAAAl8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAACRQAAAUUAAANcAAADXwAAAF8AAABcAAACXAAAA18AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAA0UAAAFFAAADXwAAAFwAAAJfAAAAXwAAAFwAAABfAAAAXwAAAE8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAANFAAAARQAAA18AAABfAAAAXAAAAFwAAAJfAAAAXAAAA18AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAADRQAAA0UAAABfAAAAXwAAAF8AAABfAAAAXAAAAl8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAUUAAAFFAAACXwAAAFwAAAFfAAAAXwAAAFwAAAFfAAAAXwAAAE8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAANFAAADRQAAA18AAABfAAAAXAAAAl8AAABcAAABXAAAAl8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAABRQAAAUUAAABfAAAAXAAAA18AAABcAAADXAAAAF8AAABfAAAAXwAAAA== -4,0: ind: -4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAF4AAABEAAACRAAAAkQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAkQAAAJEAAACXgAAAF4AAABOAAAAXgAAAF4AAABOAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAABEAAABRAAAAl4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAA0QAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAEQAAAFEAAAARAAAAkQAAAJEAAACRAAAAUQAAANEAAACRAAAA14AAABeAAAAXgAAAF4AAABEAAACRAAAAUQAAANeAAAARAAAAUQAAABEAAAARAAAA0QAAANEAAACRAAAAUQAAABEAAABRAAAAV4AAABEAAAARAAAA0QAAAJEAAACXgAAAF4AAABEAAADRAAAAkQAAABEAAAARAAAAEQAAABEAAABRAAAAkQAAAJEAAADRAAAAkQAAANEAAACRAAAAV4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAACXgAAAF4AAABeAAAAXgAAABYAAAEWAAACXgAAAF4AAABeAAAATgAAAE4AAABeAAAAXgAAAEQAAAJEAAACRAAAA14AAAAWAAABFgAAAxYAAAEWAAACFgAAARYAAAMWAAABXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAEQAAANeAAAAFgAAAxYAAAMWAAACFgAAAhYAAAIWAAABFgAAAUQAAAE6AAAAOgAAADoAAABeAAAARAAAAEQAAABEAAADXgAAABYAAAIWAAAAFgAAABYAAAEWAAADFgAAARYAAABEAAABOgAAADoAAAA6AAAAXgAAAEQAAABEAAAARAAAA14AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAFeAAAARAAAAjoAAAA6AAAAOgAAAF4AAABEAAAARAAAAkQAAABbAAADWwAAAlsAAANbAAADXgAAAEQAAAFEAAAAXgAAAEQAAAM6AAAAOgAAADoAAABeAAAARAAAAEQAAABEAAADWwAAAFsAAAFbAAABWwAAAF4AAABeAAAAXgAAAF4AAABEAAADOgAAADoAAAA6AAAAXgAAAEQAAAFEAAABRAAAAlsAAAFbAAABWwAAAlsAAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAEQAAAFbAAABWwAAA1sAAANbAAAAXgAAAF4AAABeAAAAXgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAF8AAABFAAACRQAAAkUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAkUAAAJFAAACXwAAAF8AAABPAAAAXwAAAF8AAABPAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAABFAAABRQAAAl8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAA0UAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAEUAAAFFAAAARQAAAkUAAAJFAAACRQAAAUUAAANFAAACRQAAA18AAABfAAAAXwAAAF8AAABFAAACRQAAAUUAAANfAAAARQAAAUUAAABFAAAARQAAA0UAAANFAAACRQAAAUUAAABFAAABRQAAAV8AAABFAAAARQAAA0UAAAJFAAACXwAAAF8AAABFAAADRQAAAkUAAABFAAAARQAAAEUAAABFAAABRQAAAkUAAAJFAAADRQAAAkUAAANFAAACRQAAAV8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAACXwAAAEgAAABIAAAASAAAAEUAAABFAAAASAAAAEgAAABfAAAATwAAAE8AAABfAAAAXwAAAEUAAAJFAAACRQAAA18AAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAEUAAANfAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAEUAAAE7AAAAOwAAADsAAABfAAAARQAAAEUAAABFAAADXwAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABFAAABOwAAADsAAAA7AAAAXwAAAEUAAABFAAAARQAAA18AAABfAAAAXwAAAF8AAABfAAAAXAAAAFwAAABcAAAARQAAAjsAAAA7AAAAOwAAAF8AAABFAAAARQAAAkUAAABcAAADXAAAAlwAAANcAAADXwAAAFwAAABcAAAAXAAAAEUAAAM7AAAAOwAAADsAAABfAAAARQAAAEUAAABFAAADXAAAAFwAAAFcAAABXAAAAF8AAABfAAAAXwAAAF8AAABFAAADOwAAADsAAAA7AAAAXwAAAEUAAAFFAAABRQAAAlwAAAFcAAABXAAAAlwAAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAAFcAAABXAAAA1wAAANcAAAAXwAAAF8AAABfAAAAXwAAAA== -4,1: ind: -4,1 - tiles: TgAAAF4AAABOAAAATgAAAF4AAABEAAACRAAAAEQAAAFbAAAAWwAAAFsAAAJbAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAARAAAAkQAAANEAAABXgAAABYAAAEWAAACFgAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAADRAAAAl4AAAAWAAACFgAAARYAAABeAAAATgAAAF4AAABOAAAARAAAA14AAABOAAAAXgAAAF4AAABEAAABRAAAAUQAAAFeAAAAFgAAABYAAAMWAAAAXgAAAF4AAABeAAAAXgAAAEQAAABeAAAATgAAAF4AAABeAAAARAAAAUQAAANEAAABFgAAARYAAAEWAAADFgAAAl4AAABeAAAAXgAAAF4AAABEAAAAXgAAAF4AAABOAAAAXgAAAF4AAABEAAACRAAAAxYAAAAWAAADFgAAABYAAABeAAAAXgAAAF4AAABeAAAARAAAAV4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFeAAAAXgAAAE4AAABeAAAAXgAAAEQAAAFEAAABXgAAAEQAAAJeAAAAHQAAAx0AAAEdAAABHQAAAl4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAARAAAAUQAAABEAAADXgAAAB0AAAEdAAACHQAAAB0AAANeAAAARAAAAl4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABeAAAARAAAAl4AAAAdAAABHQAAAx0AAAEdAAABXgAAAEQAAANeAAAATgAAAF4AAABeAAAARAAAA0QAAAJEAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAdAAACXgAAAF4AAABEAAACXgAAAE4AAABeAAAAXgAAAEQAAANEAAAARAAAA14AAABEAAACRAAAAkQAAAJEAAADRAAAA0QAAABEAAACRAAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAUQAAABeAAAARAAAA0QAAAFEAAABRAAAA0QAAAFEAAACRAAAAV4AAABeAAAATgAAAF4AAABeAAAARAAAA0QAAABEAAAAXgAAAEQAAABEAAAARAAAA0QAAANEAAAARAAAAEQAAABEAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAADRAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAF4AAABEAAADRAAAAUQAAABEAAAARAAAAEQAAABEAAADRAAAA0QAAANEAAADRAAAAEQAAANEAAADRAAAAQ== + tiles: TwAAAF8AAABPAAAATwAAAF8AAABFAAACRQAAAEUAAAFcAAAAXAAAAFwAAAJcAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAARQAAAkUAAANFAAABXwAAABcAAAEXAAACFwAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAADRQAAAl8AAAAXAAACFwAAARcAAABfAAAATwAAAF8AAABPAAAARQAAA18AAABPAAAAXwAAAF8AAABFAAABRQAAAUUAAAFfAAAAFwAAABcAAAMXAAAAXwAAAF8AAABfAAAAXwAAAEUAAABfAAAATwAAAF8AAABfAAAARQAAAUUAAANFAAABFwAAARcAAAEXAAADFwAAAl8AAABfAAAAXwAAAF8AAABFAAAAXwAAAF8AAABPAAAAXwAAAF8AAABFAAACRQAAAxcAAAAXAAADFwAAABcAAABfAAAAXwAAAF8AAABfAAAARQAAAV8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFfAAAAXwAAAE8AAABfAAAAXwAAAEUAAAFFAAABXwAAAEUAAAJfAAAAHgAAAx4AAAEeAAABHgAAAl8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAARQAAAUUAAABFAAADXwAAAB4AAAEeAAACHgAAAB4AAANfAAAARQAAAl8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABfAAAARQAAAl8AAAAeAAABHgAAAx4AAAEeAAABXwAAAEUAAANfAAAATwAAAF8AAABfAAAARQAAA0UAAAJFAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAeAAACXwAAAF8AAABFAAACXwAAAE8AAABfAAAAXwAAAEUAAANFAAAARQAAA18AAABFAAACRQAAAkUAAAJFAAADRQAAA0UAAABFAAACRQAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAUUAAABfAAAARQAAA0UAAAFFAAABRQAAA0UAAAFFAAACRQAAAV8AAABfAAAATwAAAF8AAABfAAAARQAAA0UAAABFAAAAXwAAAEUAAABFAAAARQAAA0UAAANFAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAADRQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABRQAAAF8AAABFAAADRQAAAUUAAABFAAAARQAAAEUAAABFAAADRQAAA0UAAANFAAADRQAAAEUAAANFAAADRQAAAQ== -4,2: ind: -4,2 - tiles: RAAAA0QAAAJEAAABRAAAAUQAAAJEAAADRAAAAkQAAANEAAACRAAAAkQAAAJEAAABRAAAA0QAAAFEAAACRAAAAkQAAANeAAAARAAAAEQAAABEAAACRAAAAEQAAAJEAAABRAAAAkQAAAJEAAAARAAAAEQAAAFEAAADRAAAAEQAAAFEAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAABRAAAAV4AAABeAAAAXgAAAF4AAAAuAAAALgAAAF4AAABEAAADXgAAAF4AAABeAAAATgAAAF4AAABEAAAARAAAAEQAAAJEAAACXgAAABYAAAAWAAADLgAAAC4AAABeAAAARAAAAl4AAABOAAAATgAAAF4AAABeAAAARAAAAkQAAABEAAAARAAAAV4AAAAWAAAAFgAAAC4AAAAuAAAARAAAA0QAAAFeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAAARAAAAUQAAAFeAAAAFgAAAxYAAAIuAAAALgAAAF4AAABEAAADXgAAADwAAABEAAADPAAAAF4AAABEAAADRAAAAkQAAABeAAAAXgAAAF4AAAAWAAADFgAAABYAAANeAAAARAAAADwAAABeAAAAPAAAADwAAABeAAAARAAAAkQAAANEAAAAXgAAAE4AAABeAAAAPAAAAF4AAABeAAAAXgAAAEQAAAFEAAABPAAAADwAAABEAAABXgAAAEQAAAJEAAACRAAAAl4AAABeAAAAXgAAADwAAAA8AAAAPAAAAF4AAABEAAAAPAAAAEQAAAE8AAAAPAAAAF4AAABEAAADRAAAAkQAAANeAAAATgAAAF4AAAA8AAAAPAAAADwAAABeAAAARAAAADwAAABEAAABRAAAATwAAABeAAAARAAAAUQAAAFEAAADXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJeAAAAPAAAAF4AAABeAAAAXgAAAEQAAAFEAAACRAAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAEQAAAJEAAABRAAAADwAAABEAAAAXgAAAEQAAABEAAACRAAAA0QAAANeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABEAAAARAAAAzwAAABEAAAAPAAAADwAAABeAAAARAAAAkQAAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAAARAAAAkQAAAFeAAAAXgAAAF4AAABeAAAARAAAA0QAAAFEAAAAXgAAAE4AAABOAAAAXgAAAF4AAABEAAADRAAAA0QAAANEAAABRAAAA14AAABEAAADRAAAAUQAAAFEAAABRAAAAA== + tiles: RQAAA0UAAAJFAAABRQAAAUUAAAJFAAADRQAAAkUAAANFAAACRQAAAkUAAAJFAAABRQAAA0UAAAFFAAACRQAAAkUAAANfAAAARQAAAEUAAABFAAACRQAAAEUAAAJFAAABRQAAAkUAAAJFAAAARQAAAEUAAAFFAAADRQAAAEUAAAFFAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAABRQAAAV8AAABfAAAAXwAAAF8AAAAvAAAALwAAAF8AAABFAAADXwAAAF8AAABfAAAATwAAAF8AAABFAAAARQAAAEUAAAJFAAACXwAAABcAAAAXAAADLwAAAC8AAABfAAAARQAAAl8AAABPAAAATwAAAF8AAABfAAAARQAAAkUAAABFAAAARQAAAV8AAAAXAAAAFwAAAC8AAAAvAAAARQAAA0UAAAFfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAUUAAAFfAAAAFwAAAxcAAAIvAAAALwAAAF8AAABFAAADXwAAAD0AAABFAAADPQAAAF8AAABFAAADRQAAAkUAAABfAAAAXwAAAF8AAAAXAAADFwAAABcAAANfAAAARQAAAD0AAABfAAAAPQAAAD0AAABfAAAARQAAAkUAAANFAAAAXwAAAE8AAABfAAAAPQAAAF8AAABfAAAAXwAAAEUAAAFFAAABPQAAAD0AAABFAAABXwAAAEUAAAJFAAACRQAAAl8AAABfAAAAXwAAAD0AAAA9AAAAPQAAAF8AAABFAAAAPQAAAEUAAAE9AAAAPQAAAF8AAABFAAADRQAAAkUAAANfAAAATwAAAF8AAAA9AAAAPQAAAD0AAABfAAAARQAAAD0AAABFAAABRQAAAT0AAABfAAAARQAAAUUAAAFFAAADXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJfAAAAPQAAAF8AAABfAAAAXwAAAEUAAAFFAAACRQAAAF8AAABfAAAATwAAAE8AAABPAAAAXwAAAEUAAAJFAAABRQAAAD0AAABFAAAAXwAAAEUAAABFAAACRQAAA0UAAANfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABFAAAARQAAAz0AAABFAAAAPQAAAD0AAABfAAAARQAAAkUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAAARQAAAkUAAAFfAAAAXwAAAF8AAABfAAAARQAAA0UAAAFFAAAAXwAAAE8AAABPAAAAXwAAAF8AAABFAAADRQAAA0UAAANFAAABRQAAA18AAABFAAADRQAAAUUAAAFFAAABRQAAAA== -5,-1: ind: -5,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABdAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAXQAAAF4AAABeAAAAXgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABeAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXgAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -5,0: ind: -5,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAABdAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF4AAABEAAACRAAAA0QAAABEAAABRAAAAkQAAAJEAAACRAAAAEQAAANEAAAARAAAA0QAAABdAAAAAAAAAF0AAABeAAAARAAAAUQAAAFEAAADRAAAAkQAAAFEAAACRAAAAEQAAANEAAABRAAAA0QAAAFEAAACXQAAAAAAAABdAAAAXgAAAEQAAANEAAAARAAAAkQAAABEAAABRAAAAUQAAANEAAAARAAAAkQAAABeAAAAXgAAAF0AAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAFgAAARYAAAAWAAAAFgAAAV4AAABeAAAATgAAAF4AAABOAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAXgAAABYAAAIWAAABFgAAARYAAABeAAAAXgAAAE4AAABeAAAAXgAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF4AAAAWAAADFgAAAhYAAAIWAAACXgAAAF4AAABeAAAAXgAAAEQAAAIAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABeAAAAFgAAAhYAAAEWAAADFgAAAF4AAABOAAAAXgAAAF4AAABEAAABAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAXgAAABYAAAAWAAADFgAAABYAAAAWAAAAXgAAAF4AAABeAAAARAAAAQAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF4AAAAWAAADFgAAARYAAAEWAAAAXgAAAF4AAABOAAAAXgAAAEQAAAEAAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABEAAABAAAAAAAAAAAAAAAAXQAAAF4AAABEAAADRAAAAEQAAAJEAAABRAAAAEQAAAJEAAADXgAAAF4AAABeAAAAXgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAAAAAAXgAAAAAAAABeAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF8AAABFAAACRQAAA0UAAABFAAABRQAAAkUAAAJFAAACRQAAAEUAAANFAAAARQAAA0UAAABeAAAAAAAAAF4AAABfAAAARQAAAUUAAAFFAAADRQAAAkUAAAFFAAACRQAAAEUAAANFAAABRQAAA0UAAAFFAAACXgAAAAAAAABeAAAAXwAAAEUAAANFAAAARQAAAkUAAABFAAABRQAAAUUAAANFAAAARQAAAkUAAABfAAAAXwAAAF4AAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAFwAAARcAAAAXAAAAFwAAAV8AAABfAAAATwAAAF8AAABPAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAXwAAABcAAAIXAAABFwAAARcAAABfAAAAXwAAAE8AAABfAAAAXwAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXgAAAF8AAAAXAAADFwAAAhcAAAIXAAACXwAAAF8AAABfAAAAXwAAAEUAAAIAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABfAAAAFwAAAhcAAAEXAAADFwAAAF8AAABPAAAAXwAAAF8AAABFAAABAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAXwAAABcAAAAXAAADFwAAABcAAAAXAAAAXwAAAF8AAABfAAAARQAAAQAAAABeAAAAAAAAAF4AAABeAAAAXgAAAF8AAAAXAAADFwAAARcAAAEXAAAAXwAAAF8AAABPAAAAXwAAAEUAAAEAAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABFAAABAAAAAAAAAAAAAAAAXgAAAF8AAABFAAADRQAAAEUAAAJFAAABRQAAAEUAAAJFAAADXwAAAF8AAABfAAAAXwAAAA== -2,3: ind: -2,3 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAWwAAA1sAAABbAAABWwAAAl4AAABEAAAARAAAAU4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAADTgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAV4AAABeAAAAXgAAAF4AAABEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAFeAAAAXgAAAEQAAAJeAAAAXgAAAEQAAANeAAAAXgAAADoAAAA6AAAAOgAAADoAAABeAAAAFgAAABYAAAAWAAACTgAAAF4AAABeAAAARAAAA14AAABeAAAAXgAAAF4AAAA6AAAAFgAAAhYAAAIWAAADOgAAABYAAAI5AAAAOQAAAF4AAABeAAAARAAAAl4AAABeAAAARAAAAl4AAABeAAAAOgAAABYAAAE5AAAAFgAAA14AAAAWAAABOQAAADkAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA8AAAAWAAACOQAAABYAAANeAAAAFgAAATkAAAA5AAAAXgAAAF4AAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAFgAAAxYAAAMWAAAAXgAAABYAAAA5AAAAOQAAAF4AAABeAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAF4AAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAARAAAAUQAAAFEAAABFgAAATkAAAA5AAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAEQAAAFEAAACRAAAAxYAAAI5AAAAOQAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABEAAADRAAAA0QAAANeAAAAFgAAABYAAAFdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAF0AAABeAAAARAAAAEQAAAJEAAAARAAAAUQAAAJEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXgAAAF4AAABEAAACRAAAA0QAAAJEAAADRAAAAw== + tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXAAAA1wAAABcAAABXAAAAl8AAABFAAAARQAAAU8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAADTwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAV8AAABfAAAAXwAAAF8AAABFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAFfAAAAXwAAAEUAAAJfAAAAXwAAAEUAAANfAAAAXwAAADsAAAA7AAAAOwAAADsAAABfAAAAFwAAABcAAAAXAAACTwAAAF8AAABfAAAARQAAA18AAABfAAAAXwAAAF8AAAA7AAAAFwAAAhcAAAIXAAADOwAAABcAAAI6AAAAOgAAAF8AAABfAAAARQAAAl8AAABfAAAARQAAAl8AAABfAAAAOwAAABcAAAE6AAAAFwAAA18AAAAXAAABOgAAADoAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA8AAAAXAAACOgAAABcAAANfAAAAFwAAAToAAAA6AAAAXwAAAF8AAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAFwAAAxcAAAMXAAAAXwAAABcAAAA6AAAAOgAAAF8AAABfAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAF8AAABeAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAARQAAAUUAAAFFAAABFwAAAToAAAA6AAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAEUAAAFFAAACRQAAAxcAAAI6AAAAOgAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABFAAADRQAAA0UAAANfAAAAFwAAABcAAAFeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAF4AAABfAAAARQAAAEUAAAJFAAAARQAAAUUAAAJFAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXwAAAF8AAABFAAACRQAAA0UAAAJFAAADRQAAAw== -1,3: ind: -1,3 - tiles: RAAAA0QAAABEAAAARAAAAkQAAAFEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFeAAAATgAAAE4AAABOAAAATgAAAF4AAABeAAAATgAAAF4AAABdAAAAXQAAAF0AAABeAAAAEQAAABEAAABEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAABdAAAAXgAAABEAAAARAAAARAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF4AAAARAAAAEQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAF0AAABeAAAAEQAAABEAAAAWAAADFgAAAV4AAABEAAADRAAAAEQAAAJEAAABRAAAA0QAAAFeAAAAXgAAAF0AAABdAAAAXgAAABEAAAARAAAAOQAAABYAAAFeAAAARAAAAEQAAANEAAABRAAAAkQAAABEAAADRAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAADkAAAAWAAABRAAAAkQAAAFEAAACRAAAAkQAAABEAAACRAAAAEQAAAFeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAA5AAAAFgAAAl4AAABEAAACRAAAAUQAAANEAAACRAAAA0QAAANEAAAAXgAAAF4AAABeAAAAXgAAAAAAAABdAAAAOQAAABYAAABeAAAARAAAAkQAAAJEAAADRAAAAkQAAABEAAACXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAABYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAl4AAABbAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAA5AAAAFgAAAUQAAANEAAADRAAAA14AAAAWAAABFgAAABYAAANbAAACWwAAA14AAABdAAAAAAAAAF0AAAAAAAAAOQAAABYAAABEAAADRAAAAUQAAANeAAAAFgAAAhYAAAIWAAACWwAAAFsAAABeAAAAXQAAAF0AAABdAAAAAAAAABYAAABeAAAARAAAAUQAAANEAAACXgAAABYAAAAWAAACFgAAAlsAAAJbAAADXgAAAF0AAAAAAAAAXQAAAAAAAABEAAACRAAAAUQAAAJEAAABRAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAAAAAAAARAAAA0QAAANEAAACRAAAA14AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAA== + tiles: RQAAA0UAAABFAAAARQAAAkUAAAFFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFfAAAATwAAAE8AAABPAAAATwAAAF8AAABfAAAATwAAAF8AAABeAAAAXgAAAF4AAABfAAAAEgAAABIAAABFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAABeAAAAXwAAABIAAAASAAAARQAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF8AAAASAAAAEgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAF4AAABfAAAAEgAAABIAAAAXAAADFwAAAV8AAABFAAADRQAAAEUAAAJFAAABRQAAA0UAAAFfAAAAXwAAAF4AAABeAAAAXwAAABIAAAASAAAAOgAAABcAAAFfAAAARQAAAEUAAANFAAABRQAAAkUAAABFAAADRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAADoAAAAXAAABRQAAAkUAAAFFAAACRQAAAkUAAABFAAACRQAAAEUAAAFfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAA6AAAAFwAAAl8AAABFAAACRQAAAUUAAANFAAACRQAAA0UAAANFAAAAXwAAAF8AAABfAAAAXwAAAAAAAABeAAAAOgAAABcAAABfAAAARQAAAkUAAAJFAAADRQAAAkUAAABFAAACXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAABcAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAl8AAABcAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAA6AAAAFwAAAUUAAANFAAADRQAAA18AAAAXAAABFwAAABcAAANcAAACXAAAA18AAABeAAAAAAAAAF4AAAAAAAAAOgAAABcAAABFAAADRQAAAUUAAANfAAAAFwAAAhcAAAIXAAACXAAAAFwAAABfAAAAXgAAAF4AAABeAAAAAAAAABcAAABfAAAARQAAAUUAAANFAAACXwAAABcAAAAXAAACFwAAAlwAAAJcAAADXwAAAF4AAAAAAAAAXgAAAAAAAABFAAACRQAAAUUAAAJFAAABRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAAAAAAAARQAAA0UAAANFAAACRQAAA18AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAA== 0,3: ind: 0,3 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAABEAAABeAAAAXgAAAFsAAABbAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAARAAAAXgAAAFsAAAJbAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAAFeAAAAWwAAAFsAAAJbAAACEQAAAF4AAABbAAABXgAAAFsAAANeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAADXgAAAFsAAAFbAAACWwAAAhEAAABeAAAAWwAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAl4AAABbAAADWwAAA1sAAAERAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAABIAAABfAAAAXwAAAFwAAABcAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAASAAAAXwAAAFwAAAJcAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAAFfAAAAXAAAAFwAAAJcAAACEgAAAF8AAABcAAABXwAAAFwAAANfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAADXwAAAFwAAAFcAAACXAAAAhIAAABfAAAAXAAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAl8AAABcAAADXAAAA1wAAAESAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,3: ind: 1,3 - tiles: XgAAAFsAAABbAAACXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABbAAACWwAAAV4AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABbAAACWwAAAVsAAAJeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAFsAAAFbAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFsAAANbAAADWwAAAl4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: XwAAAFwAAABcAAACXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABcAAACXAAAAV8AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAACXAAAAVwAAAJfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAFwAAAFcAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAANcAAADXAAAAl8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,4: ind: -1,4 - tiles: RAAAA0QAAABEAAADRAAAA14AAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAEQAAAFEAAABRAAAAV4AAABeAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABEAAADRAAAAF4AAABeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: RQAAA0UAAABFAAADRQAAA18AAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAEUAAAFFAAABRQAAAV8AAABfAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABFAAADRQAAAF8AAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -2,4: ind: -2,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF4AAABEAAACRAAAAEQAAABEAAADRAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABeAAAAXgAAAEQAAABEAAADRAAAAkQAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABeAAAARAAAA0QAAANEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF8AAABFAAACRQAAAEUAAABFAAADRQAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABfAAAAXwAAAEUAAABFAAADRQAAAkUAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABfAAAARQAAA0UAAANFAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -3,3: ind: -3,3 - tiles: RAAAAUQAAANeAAAAXgAAAF4AAABeAAAAXgAAABYAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAAAXgAAAE4AAABeAAAARAAAAEQAAABEAAAARAAAAF4AAABEAAABXgAAAEQAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAACRAAAAEQAAAJeAAAAXgAAAEQAAAJEAAADXgAAAF4AAABeAAAAXgAAAEQAAABeAAAATgAAAF4AAABEAAAARAAAAkQAAANEAAAAXgAAAF4AAABeAAAARAAAAkQAAAJeAAAAXgAAAF4AAABEAAADXgAAAE4AAABeAAAARAAAAUQAAAFEAAACRAAAA14AAABEAAAARAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABEAAABXgAAAE4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAAAWAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAxYAAANeAAAAXQAAAF0AAABeAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAAWAAAAXgAAAF4AAABdAAAAXQAAAF0AAABeAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAADFgAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAAAAAAAAAAAAAF0AAABdAAAAFgAAABYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABeAAAAXQAAAF0AAABdAAAAXQAAABYAAAEWAAAAXgAAAEQAAAFEAAABRAAAAUQAAAJeAAAAXgAAAF0AAABdAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAWAAACFgAAAV4AAABEAAACRAAAAEQAAAFEAAADXgAAAF4AAABdAAAAXQAAAF4AAABdAAAAXQAAAAAAAABdAAAAFgAAAF4AAABeAAAARAAAAEQAAAJEAAADRAAAAl4AAABeAAAAXQAAAF0AAABeAAAAAAAAAF0AAAAAAAAAAAAAAA== + tiles: RQAAAUUAAANfAAAAXwAAAF8AAABfAAAAXwAAABcAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAAAXwAAAE8AAABfAAAARQAAAEUAAABFAAAARQAAAF8AAABFAAABXwAAAEUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAACRQAAAEUAAAJfAAAAXwAAAEUAAAJFAAADXwAAAF8AAABfAAAAXwAAAEUAAABfAAAATwAAAF8AAABFAAAARQAAAkUAAANFAAAAXwAAAF8AAABfAAAARQAAAkUAAAJfAAAAXwAAAF8AAABFAAADXwAAAE8AAABfAAAARQAAAUUAAAFFAAACRQAAA18AAABFAAAARQAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABFAAABXwAAAE8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAAAXAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAxcAAANfAAAAXgAAAF4AAABfAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAAXAAAAXwAAAF8AAABeAAAAXgAAAF4AAABfAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAADFwAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAAAAAAAAAAAAAF4AAABeAAAAFwAAABcAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABfAAAAXgAAAF4AAABeAAAAXgAAABcAAAEXAAAAXwAAAEUAAAFFAAABRQAAAUUAAAJfAAAAXwAAAF4AAABeAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAXAAACFwAAAV8AAABFAAACRQAAAEUAAAFFAAADXwAAAF8AAABeAAAAXgAAAF8AAABeAAAAXgAAAAAAAABeAAAAFwAAAF8AAABfAAAARQAAAEUAAAJFAAADRQAAAl8AAABfAAAAXgAAAF4AAABfAAAAAAAAAF4AAAAAAAAAAAAAAA== -4,3: ind: -4,3 - tiles: TgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABOAAAAXgAAAF4AAABEAAAARAAAA0QAAAJEAAADRAAAAF4AAABeAAAATgAAAF4AAABOAAAAXgAAAF4AAABOAAAAXgAAAF4AAABEAAADRAAAA0QAAABEAAABRAAAAUQAAABeAAAATgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAACRAAAAUQAAABEAAABXgAAAE4AAABeAAAAXgAAAE4AAABeAAAAXgAAAE4AAABeAAAAXgAAAEQAAABEAAABRAAAAUQAAAFEAAADRAAAA0QAAAFEAAADRAAAAEQAAABEAAADRAAAA0QAAABEAAAARAAAA0QAAABeAAAARAAAAUQAAAFEAAAARAAAAEQAAAJeAAAARAAAA0QAAAFEAAACRAAAAkQAAANEAAACRAAAA0QAAAJeAAAAXgAAAEQAAANEAAAARAAAAkQAAABEAAABRAAAA0QAAANEAAADRAAAAUQAAAJEAAADRAAAA0QAAABEAAACRAAAAUQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAA0QAAANEAAADRAAAA0QAAAJEAAADRAAAAl4AAABeAAAAFgAAAV4AAAAWAAAAFgAAAhYAAAEWAAABRAAAAkQAAANEAAACRAAAAUQAAABEAAAARAAAAUQAAAJeAAAAFgAAARYAAABeAAAAFgAAAxYAAAMWAAACXgAAAEQAAAJEAAAARAAAAUQAAANEAAACRAAAA0QAAAFEAAAAXgAAABYAAAEWAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABeAAAARAAAA14AAAAWAAAAFgAAAxYAAANEAAABRAAAAEQAAAJEAAADRAAAAkQAAABEAAAARAAAAEQAAANEAAABRAAAAUQAAAJeAAAAFgAAAV4AAABeAAAARAAAAEQAAAFEAAAARAAAAUQAAABEAAAARAAAAkQAAAJEAAADRAAAAkQAAABEAAADFgAAAxYAAAAAAAAAXgAAAF4AAABeAAAAWwAAAF4AAABeAAAAXgAAAFsAAABeAAAAXgAAAEQAAAFEAAADRAAAAl4AAAAWAAAAAAAAAF4AAABbAAACWwAAAVsAAAFbAAADXgAAAFsAAAFbAAADWwAAAV4AAABEAAAARAAAAkQAAABeAAAAXgAAAA== + tiles: TwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABPAAAAXwAAAF8AAABFAAAARQAAA0UAAAJFAAADRQAAAF8AAABfAAAATwAAAF8AAABPAAAAXwAAAF8AAABPAAAAXwAAAF8AAABFAAADRQAAA0UAAABFAAABRQAAAUUAAABfAAAATwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAACRQAAAUUAAABFAAABXwAAAE8AAABfAAAAXwAAAE8AAABfAAAAXwAAAE8AAABfAAAAXwAAAEUAAABFAAABRQAAAUUAAAFFAAADRQAAA0UAAAFFAAADRQAAAEUAAABFAAADRQAAA0UAAABFAAAARQAAA0UAAABfAAAARQAAAUUAAAFFAAAARQAAAEUAAAJfAAAARQAAA0UAAAFFAAACRQAAAkUAAANFAAACRQAAA0UAAAJfAAAAXwAAAEUAAANFAAAARQAAAkUAAABFAAABRQAAA0UAAANFAAADRQAAAUUAAAJFAAADRQAAA0UAAABFAAACRQAAAUUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAA0UAAANFAAADRQAAA0UAAAJFAAADRQAAAl8AAABfAAAAFwAAAV8AAAAXAAAAFwAAAhcAAAEXAAABRQAAAkUAAANFAAACRQAAAUUAAABFAAAARQAAAUUAAAJfAAAAFwAAARcAAABfAAAAFwAAAxcAAAMXAAACXwAAAEUAAAJFAAAARQAAAUUAAANFAAACRQAAA0UAAAFFAAAAXwAAABcAAAEXAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABfAAAARQAAA18AAAAXAAAAFwAAAxcAAANFAAABRQAAAEUAAAJFAAADRQAAAkUAAABFAAAARQAAAEUAAANFAAABRQAAAUUAAAJfAAAAFwAAAV8AAABfAAAARQAAAEUAAAFFAAAARQAAAUUAAABFAAAARQAAAkUAAAJFAAADRQAAAkUAAABFAAADFwAAAxcAAAAAAAAAXwAAAF8AAABfAAAAXAAAAF8AAABfAAAAXwAAAFwAAABfAAAAXwAAAEUAAAFFAAADRQAAAl8AAAAXAAAAAAAAAF8AAABcAAACXAAAAVwAAAFcAAADXwAAAFwAAAFcAAADXAAAAV8AAABFAAAARQAAAkUAAABfAAAAXwAAAA== -4,-2: ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAA== -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -5,2: ind: -5,2 - tiles: RAAAA0QAAANEAAADRAAAAF4AAABEAAACRAAAAF4AAABeAAAARAAAA14AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAJEAAADRAAAAkQAAAFeAAAARAAAAUQAAANEAAADRAAAAEQAAABEAAAARAAAAUQAAABEAAADRAAAA0QAAAFeAAAAXgAAAF4AAABeAAAATgAAAEQAAANEAAADRAAAA0QAAAJEAAACRAAAA0QAAAJEAAABRAAAAkQAAAJEAAABXgAAAF4AAABeAAAAXgAAAE4AAABEAAAARAAAAkQAAAFEAAAARAAAAUQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAPAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAAl4AAABeAAAAXgAAAE4AAABeAAAAXgAAADwAAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAAVsAAAJbAAADWwAAA14AAABOAAAAXgAAAF4AAAA8AAAATgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAFsAAAJbAAAAWwAAA1sAAAJeAAAAXgAAAF4AAABeAAAARAAAAU4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAWwAAA1sAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAFsAAABbAAACWwAAAV4AAABOAAAATgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAABbAAABWwAAAlsAAANeAAAAXgAAAE4AAABeAAAAPAAAAE4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABbAAAAWwAAA1sAAANeAAAAXgAAAF4AAABOAAAAXgAAAEQAAAJOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAADEAAABeAAAAMQAAAF4AAAAxAAAAXgAAAEQAAABeAAAARAAAAQ== + tiles: RQAAA0UAAANFAAADRQAAAF8AAABFAAACRQAAAF8AAABfAAAARQAAA18AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAJFAAADRQAAAkUAAAFfAAAARQAAAUUAAANFAAADRQAAAEUAAABFAAAARQAAAUUAAABFAAADRQAAA0UAAAFfAAAAXwAAAF8AAABfAAAATwAAAEUAAANFAAADRQAAA0UAAAJFAAACRQAAA0UAAAJFAAABRQAAAkUAAAJFAAABXwAAAF8AAABfAAAAXwAAAE8AAABFAAAARQAAAkUAAAFFAAAARQAAAUUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAPQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAAl8AAABfAAAAXwAAAE8AAABfAAAAXwAAAD0AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAAVwAAAJcAAADXAAAA18AAABPAAAAXwAAAF8AAAA9AAAATwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAFwAAAJcAAAAXAAAA1wAAAJfAAAAXwAAAF8AAABfAAAARQAAAU8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXAAAA1wAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAFwAAABcAAACXAAAAV8AAABPAAAATwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAABcAAABXAAAAlwAAANfAAAAXwAAAE8AAABfAAAAPQAAAE8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABcAAAAXAAAA1wAAANfAAAAXwAAAF8AAABPAAAAXwAAAEUAAAJPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAADIAAABfAAAAMgAAAF8AAAAyAAAAXwAAAEUAAABfAAAARQAAAQ== -5,3: ind: -5,3 - tiles: XQAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAAAxAAAAMQAAAF4AAABeAAAAXgAAAF4AAABEAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAAAxAAAAXgAAAF4AAAAxAAAAXgAAAEQAAAJEAAADXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAV4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAACXgAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABOAAAAXgAAAEQAAAFeAAAARAAAA0QAAAFeAAAAXgAAAE4AAABeAAAARAAAA0QAAANdAAAAXgAAABYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAABXQAAAF4AAAAWAAADFgAAARYAAANeAAAAXgAAAF4AAABeAAAARAAAAkQAAABeAAAAXgAAAF4AAABEAAAARAAAAV0AAABeAAAAFgAAABYAAAEWAAACXgAAAF4AAABeAAAARAAAAkQAAABeAAAAXgAAAE4AAABeAAAARAAAAkQAAAFdAAAAXgAAABYAAAMWAAADFgAAAV4AAABeAAAAXgAAAF4AAABEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAA== + tiles: XgAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAAAyAAAAMgAAAF8AAABfAAAAXwAAAF8AAABFAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAAAyAAAAXwAAAF8AAAAyAAAAXwAAAEUAAAJFAAADXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAV8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAACXwAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABPAAAAXwAAAEUAAAFfAAAARQAAA0UAAAFfAAAAXwAAAE8AAABfAAAARQAAA0UAAANeAAAAXwAAABcAAAFfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAABXgAAAF8AAAAXAAADFwAAARcAAANfAAAAXwAAAF8AAABfAAAARQAAAkUAAABfAAAAXwAAAF8AAABFAAAARQAAAV4AAABfAAAAFwAAABcAAAEXAAACXwAAAF8AAABfAAAARQAAAkUAAABfAAAAXwAAAE8AAABfAAAARQAAAkUAAAFeAAAAXwAAABcAAAMXAAADFwAAAV8AAABfAAAAXwAAAF8AAABFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAA== -3,4: ind: -3,4 - tiles: RAAAA0QAAABEAAACRAAAAEQAAAJEAAABRAAAAl4AAABeAAAAXQAAAF0AAABeAAAAAAAAAF0AAAAAAAAAAAAAAEQAAANEAAACRAAAAEQAAANEAAABRAAAAEQAAANeAAAAXgAAAF0AAABdAAAAXgAAAAAAAABdAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABeAAAAXgAAAF4AAABdAAAAXQAAAF4AAABdAAAAXQAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABeAAAAAAAAAF0AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF0AAABdAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: RQAAA0UAAABFAAACRQAAAEUAAAJFAAABRQAAAl8AAABfAAAAXgAAAF4AAABfAAAAAAAAAF4AAAAAAAAAAAAAAEUAAANFAAACRQAAAEUAAANFAAABRQAAAEUAAANfAAAAXwAAAF4AAABeAAAAXwAAAAAAAABeAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABfAAAAXwAAAF8AAABeAAAAXgAAAF8AAABeAAAAXgAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABfAAAAAAAAAF4AAAAAAAAAAAAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF4AAABeAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -4,4: ind: -4,4 - tiles: AAAAAF4AAABbAAADWwAAAFsAAAJbAAAAXgAAAFsAAAJbAAABWwAAAF4AAABEAAAARAAAAEQAAABEAAADRAAAAV0AAABeAAAAWwAAA1sAAABbAAAAWwAAAF4AAABbAAABWwAAA1sAAAJeAAAARAAAAkQAAABEAAABRAAAAkQAAAEAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAA== + tiles: AAAAAF8AAABcAAADXAAAAFwAAAJcAAAAXwAAAFwAAAJcAAABXAAAAF8AAABFAAAARQAAAEUAAABFAAADRQAAAV4AAABfAAAAXAAAA1wAAABcAAAAXAAAAF8AAABcAAABXAAAA1wAAAJfAAAARQAAAkUAAABFAAABRQAAAkUAAAEAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAA== -4,5: ind: -4,5 - tiles: AAAAAAQAAAEEAAABBAAAAgQAAAAEAAAABAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAAQAAAAEAAABBAAAAQQAAAEEAAACBAAAAgQAAAJeAAAAXgAAAF4AAABeAAAARAAAAl4AAABEAAACXgAAAAQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACXgAAAEQAAAFeAAAAXgAAAF4AAAAEAAACXgAAACgAAABEAAAAXgAAAEQAAAFEAAADRAAAAUQAAAFeAAAARAAAAkQAAAFEAAADXgAAAEQAAAJeAAAABAAAAV4AAAAoAAAARAAAAF4AAABEAAABRAAAA14AAABeAAAARAAAA14AAABeAAAAXgAAAEQAAAJeAAAAXgAAAAQAAAFeAAAAKAAAAF4AAABEAAAAXgAAAF4AAABEAAABXgAAAF4AAABeAAAAXgAAAEQAAAJeAAAARAAAA14AAAAEAAABXgAAAF4AAABEAAAARAAAAkQAAABeAAAARAAAAzwAAABeAAAAPAAAAF4AAABeAAAAXgAAAEQAAAJeAAAABAAAAAAAAABeAAAARAAAAF4AAABEAAADXgAAAEQAAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAAJEAAADXgAAAAQAAAJdAAAAXgAAAEQAAABEAAABXgAAAF4AAABeAAAAXgAAAF4AAABEAAABXgAAAF4AAABeAAAARAAAAV4AAAAEAAAAAAAAAF4AAABEAAADXgAAAEQAAAFEAAACRAAAAUQAAANEAAADXgAAAEQAAANEAAAARAAAAl4AAABeAAAABAAAAgAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFeAAAARAAAA14AAABEAAABXgAAAAQAAAIAAAAABAAAAgQAAAIEAAAABAAAAgQAAAEEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAEAAAABAAAAgQAAAIEAAAABAAAAQQAAAAEAAABBAAAAAQAAAIEAAAABAAAAQQAAAEEAAACAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAgQAAAEEAAAABAAAAAQAAAAEAAACBAAAAAQAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAgQAAAEEAAACBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAQAAAEEAAABBAAAAgQAAAAEAAAABAAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAABAAAAAQAAAAEAAABBAAAAQQAAAEEAAACBAAAAgQAAAJfAAAAXwAAAF8AAABfAAAARQAAAl8AAABFAAACXwAAAAQAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACXwAAAEUAAAFfAAAAXwAAAF8AAAAEAAACXwAAACkAAABFAAAAXwAAAEUAAAFFAAADRQAAAUUAAAFfAAAARQAAAkUAAAFFAAADXwAAAEUAAAJfAAAABAAAAV8AAAApAAAARQAAAF8AAABFAAABRQAAA18AAABfAAAARQAAA18AAABfAAAAXwAAAEUAAAJfAAAAXwAAAAQAAAFfAAAAKQAAAF8AAABFAAAAXwAAAF8AAABFAAABXwAAAF8AAABfAAAAXwAAAEUAAAJfAAAARQAAA18AAAAEAAABXwAAAF8AAABFAAAARQAAAkUAAABfAAAARQAAAz0AAABfAAAAPQAAAF8AAABfAAAAXwAAAEUAAAJfAAAABAAAAAAAAABfAAAARQAAAF8AAABFAAADXwAAAEUAAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAAJFAAADXwAAAAQAAAJeAAAAXwAAAEUAAABFAAABXwAAAF8AAABfAAAAXwAAAF8AAABFAAABXwAAAF8AAABfAAAARQAAAV8AAAAEAAAAAAAAAF8AAABFAAADXwAAAEUAAAFFAAACRQAAAUUAAANFAAADXwAAAEUAAANFAAAARQAAAl8AAABfAAAABAAAAgAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFfAAAARQAAA18AAABFAAABXwAAAAQAAAIAAAAABAAAAgQAAAIEAAAABAAAAgQAAAEEAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAEAAAABAAAAgQAAAIEAAAABAAAAQQAAAAEAAABBAAAAAQAAAIEAAAABAAAAQQAAAEEAAACAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAgQAAAEEAAAABAAAAAQAAAAEAAACBAAAAAQAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAgQAAAEEAAACBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -3,5: ind: -3,5 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -5,5: ind: -5,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -5,1: ind: -5,1 - tiles: XQAAAF0AAABdAAAAXQAAAF4AAABEAAAARAAAAkQAAAFEAAADRAAAAEQAAABEAAADXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAAJEAAADRAAAAUQAAAJEAAAARAAAAV4AAABeAAAATgAAAF4AAABOAAAATgAAAF4AAABOAAAAXgAAAEQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABEAAABRAAAAV4AAABEAAAARAAAAUQAAAJEAAAARAAAAUQAAAFEAAAARAAAAE4AAABeAAAAXgAAAE4AAABeAAAARAAAA0QAAANeAAAARAAAA0QAAAFEAAADRAAAAUQAAAFEAAADRAAAAkQAAAFeAAAAXgAAAE4AAABeAAAAXgAAAEQAAAFEAAAARAAAAEQAAANEAAABXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAF4AAABOAAAATgAAAF4AAABEAAADRAAAA14AAABEAAACRAAAAEQAAAJEAAADRAAAAEQAAAFEAAACRAAAAkQAAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAABeAAAARAAAAUQAAAFEAAABRAAAAEQAAAFEAAADRAAAAkQAAAFEAAACRAAAAl4AAABEAAAARAAAA0QAAAJEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAAJEAAAARAAAAUQAAAJEAAABRAAAAl4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAAARAAAAEQAAAFEAAAAXgAAAEQAAANEAAADRAAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAADRAAAAEQAAAJEAAADXgAAAF4AAABeAAAAXgAAAEQAAAJEAAADXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAkQAAAFEAAACXgAAAF4AAABOAAAATgAAAF4AAABEAAABRAAAAl4AAABeAAAAXgAAAE4AAABeAAAARAAAAkQAAAFEAAACRAAAAEQAAAJOAAAATgAAAE4AAABeAAAARAAAAEQAAABeAAAAXgAAAF4AAABOAAAAXgAAAEQAAAJEAAAAXgAAAEQAAAFEAAABTgAAAE4AAABOAAAAXgAAAEQAAANEAAAAXgAAAF4AAABeAAAATgAAAF4AAABEAAACRAAAA14AAABEAAAARAAAA04AAABOAAAATgAAAF4AAABEAAADRAAAAV4AAABeAAAAXgAAAE4AAABeAAAARAAAAEQAAAJeAAAARAAAAg== + tiles: XgAAAF4AAABeAAAAXgAAAF8AAABFAAAARQAAAkUAAAFFAAADRQAAAEUAAABFAAADXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAAJFAAADRQAAAUUAAAJFAAAARQAAAV8AAABfAAAATwAAAF8AAABPAAAATwAAAF8AAABPAAAAXwAAAEUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABFAAABRQAAAV8AAABFAAAARQAAAUUAAAJFAAAARQAAAUUAAAFFAAAARQAAAE8AAABfAAAAXwAAAE8AAABfAAAARQAAA0UAAANfAAAARQAAA0UAAAFFAAADRQAAAUUAAAFFAAADRQAAAkUAAAFfAAAAXwAAAE8AAABfAAAAXwAAAEUAAAFFAAAARQAAAEUAAANFAAABXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAF8AAABPAAAATwAAAF8AAABFAAADRQAAA18AAABFAAACRQAAAEUAAAJFAAADRQAAAEUAAAFFAAACRQAAAkUAAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAABfAAAARQAAAUUAAAFFAAABRQAAAEUAAAFFAAADRQAAAkUAAAFFAAACRQAAAl8AAABFAAAARQAAA0UAAAJFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAAJFAAAARQAAAUUAAAJFAAABRQAAAl8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAAFFAAAAXwAAAEUAAANFAAADRQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAADRQAAAEUAAAJFAAADXwAAAF8AAABfAAAAXwAAAEUAAAJFAAADXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAkUAAAFFAAACXwAAAF8AAABPAAAATwAAAF8AAABFAAABRQAAAl8AAABfAAAAXwAAAE8AAABfAAAARQAAAkUAAAFFAAACRQAAAEUAAAJPAAAATwAAAE8AAABfAAAARQAAAEUAAABfAAAAXwAAAF8AAABPAAAAXwAAAEUAAAJFAAAAXwAAAEUAAAFFAAABTwAAAE8AAABPAAAAXwAAAEUAAANFAAAAXwAAAF8AAABfAAAATwAAAF8AAABFAAACRQAAA18AAABFAAAARQAAA08AAABPAAAATwAAAF8AAABFAAADRQAAAV8AAABfAAAAXwAAAE8AAABfAAAARQAAAEUAAAJfAAAARQAAAg== -6,1: ind: -6,1 - tiles: AAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAATgAAAE4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAE4AAABOAAAATgAAAF4AAABOAAAAXgAAAF4AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF4AAABdAAAAXQAAAF0AAABeAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABOAAAAXgAAAEQAAANEAAAARAAAAV0AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF4AAABEAAABRAAAAEQAAAFEAAAARAAAAkQAAAMAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABeAAAARAAAAl4AAABeAAAAXgAAAF4AAABEAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAEQAAANeAAAAXgAAAF4AAABeAAAARAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF4AAABEAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFdAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABeAAAARAAAAEQAAAJEAAABRAAAAUQAAAJEAAACXQAAAF0AAABdAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXgAAAF0AAABdAAAAXQAAAF4AAABOAAAATgAAAF4AAABEAAACRAAAAEQAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABOAAAATgAAAE4AAABeAAAARAAAAkQAAAJEAAABXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAABRAAAAA== + tiles: AAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAATwAAAE8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAE8AAABPAAAATwAAAF8AAABPAAAAXwAAAF8AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF8AAABeAAAAXgAAAF4AAABfAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABPAAAAXwAAAEUAAANFAAAARQAAAV4AAAAAAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF8AAABFAAABRQAAAEUAAAFFAAAARQAAAkUAAAMAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABfAAAARQAAAl8AAABfAAAAXwAAAF8AAABFAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAEUAAANfAAAAXwAAAF8AAABfAAAARQAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF8AAABFAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFeAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABfAAAARQAAAEUAAAJFAAABRQAAAUUAAAJFAAACXgAAAF4AAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXwAAAF4AAABeAAAAXgAAAF8AAABPAAAATwAAAF8AAABFAAACRQAAAEUAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABPAAAATwAAAE8AAABfAAAARQAAAkUAAAJFAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAABRQAAAA== -6,2: ind: -6,2 - tiles: XQAAAF0AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAABRAAAAV0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF0AAABeAAAAXgAAAF4AAABEAAADRAAAAkQAAAMAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF0AAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAATgAAAF4AAABeAAAATgAAAAAAAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAAAAAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAAAAAABdAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAAAAAABdAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAAAAAAAAXQAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAAAAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAAAAAABdAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== + tiles: XgAAAF4AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAABRQAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF4AAABfAAAAXwAAAF8AAABFAAADRQAAAkUAAAMAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAATwAAAF8AAABfAAAATwAAAAAAAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXgAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABPAAAATwAAAE8AAABfAAAAAAAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAAAAAABeAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAAAAAAAAXgAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAAAAAABeAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAAAAAAAAXgAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAAAAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAAAAAABeAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAAAAAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== -7,1: ind: -7,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABeAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABfAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== -7,2: ind: -7,2 - tiles: XQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -6,3: ind: -6,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -5,4: ind: -5,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -7,0: ind: -7,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAA== -6,0: ind: -6,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAA== 2,-1: ind: 2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,2: ind: 2,2 - tiles: XQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: XgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - type: Broadphase - angularDamping: 0.05 @@ -248,134 +251,134 @@ entities: color: '#DE3A3A96' id: Bot decals: - 7545: -43,66 + 7451: -43,66 - node: color: '#52B4E996' id: BotGreyscale decals: - 7196: 25,28 - 7199: 28,28 + 7102: 25,28 + 7105: 28,28 - node: color: '#9FED5896' id: BotGreyscale decals: - 7200: 25,26 - 7201: 25,25 + 7106: 25,26 + 7107: 25,25 - node: color: '#A4610696' id: BotGreyscale decals: - 7203: 28,25 + 7109: 28,25 - node: color: '#D381C996' id: BotGreyscale decals: - 7202: 28,26 + 7108: 28,26 - node: color: '#DE3A3A96' id: BotGreyscale decals: - 7197: 26,28 + 7103: 26,28 - node: color: '#EFB34196' id: BotGreyscale decals: - 7198: 27,28 + 7104: 27,28 - node: color: '#A46106FF' id: BotLeft decals: - 7419: -45,-11 - 7420: -45,-12 - 7421: -44,-12 - 7422: -44,-11 - 7423: -43,-11 - 7424: -43,-12 - 7425: -42,-11 - 7426: -42,-12 + 7325: -45,-11 + 7326: -45,-12 + 7327: -44,-12 + 7328: -44,-11 + 7329: -43,-11 + 7330: -43,-12 + 7331: -42,-11 + 7332: -42,-12 - node: color: '#A46106FF' id: Box decals: - 2226: -11,56 + 2174: -11,56 - node: color: '#EFB341FF' id: Box decals: - 2224: -10,54 + 2172: -10,54 - node: color: '#334E6DC8' id: BoxGreyscale decals: - 2228: -9,56 + 2176: -9,56 - node: color: '#334E6DFF' id: BoxGreyscale decals: - 2227: -8,55 + 2175: -8,55 - node: color: '#52B4E9FF' id: BoxGreyscale decals: - 2230: -10,56 + 2178: -10,56 - node: color: '#D381C9FF' id: BoxGreyscale decals: - 2225: -11,54 + 2173: -11,54 - node: color: '#DE3A3AFF' id: BoxGreyscale decals: - 2229: -9,54 + 2177: -9,54 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: - 5726: -16,60 - 5727: -16,57 + 5652: -16,60 + 5653: -16,57 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: - 5728: -18,57 - 5729: -18,60 + 5654: -18,57 + 5655: -18,60 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 5730: -16,54 - 5731: -16,59 + 5656: -16,54 + 5657: -16,59 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: - 5732: -18,54 - 5733: -18,59 + 5658: -18,54 + 5659: -18,59 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 5734: -16,55 - 5735: -16,56 + 5660: -16,55 + 5661: -16,56 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 5740: -17,57 - 5741: -17,60 + 5666: -17,57 + 5667: -17,60 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 5736: -17,54 - 5737: -17,59 + 5662: -17,54 + 5663: -17,59 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW decals: - 5738: -18,55 - 5739: -18,56 + 5664: -18,55 + 5665: -18,56 - node: color: '#D381C9FF' id: BrickTileSteelBox @@ -387,7 +390,7 @@ entities: color: '#52B4E9FF' id: BrickTileSteelCornerNe decals: - 2782: 4,17 + 2730: 4,17 - node: color: '#D381C9FF' id: BrickTileSteelCornerNe @@ -398,8 +401,8 @@ entities: color: '#52B4E9FF' id: BrickTileSteelCornerNw decals: - 2783: -2,17 - 2813: 2,40 + 2731: -2,17 + 2761: 2,40 - node: color: '#D381C9FF' id: BrickTileSteelCornerNw @@ -409,8 +412,8 @@ entities: color: '#52B4E9FF' id: BrickTileSteelCornerSe decals: - 2719: 16,28 - 2784: 4,14 + 2667: 16,28 + 2732: 4,14 - node: color: '#D381C9FF' id: BrickTileSteelCornerSe @@ -422,8 +425,8 @@ entities: color: '#52B4E9FF' id: BrickTileSteelCornerSw decals: - 2716: 14,28 - 2785: -2,14 + 2664: 14,28 + 2733: -2,14 - node: color: '#D381C9FF' id: BrickTileSteelCornerSw @@ -434,17 +437,17 @@ entities: color: '#52B4E9FF' id: BrickTileSteelEndN decals: - 2821: 0,39 + 2769: 0,39 - node: color: '#52B4E9FF' id: BrickTileSteelLineE decals: - 2720: 16,29 - 2786: 4,15 - 2787: 4,16 - 2806: 4,37 - 2807: 4,38 - 2808: 4,39 + 2668: 16,29 + 2734: 4,15 + 2735: 4,16 + 2754: 4,37 + 2755: 4,38 + 2756: 4,39 - node: color: '#D381C9FF' id: BrickTileSteelLineE @@ -456,13 +459,13 @@ entities: color: '#52B4E9FF' id: BrickTileSteelLineN decals: - 2788: -1,17 - 2789: 0,17 - 2790: 1,17 - 2791: 2,17 - 2792: 2,17 - 2793: 3,17 - 2809: 3,40 + 2736: -1,17 + 2737: 0,17 + 2738: 1,17 + 2739: 2,17 + 2740: 2,17 + 2741: 3,17 + 2757: 3,40 - node: color: '#D381C9FF' id: BrickTileSteelLineN @@ -481,13 +484,13 @@ entities: color: '#52B4E9FF' id: BrickTileSteelLineS decals: - 2718: 15,28 - 2796: -1,14 - 2797: 0,14 - 2798: 1,14 - 2799: 2,14 - 2800: 3,14 - 2810: 3,36 + 2666: 15,28 + 2744: -1,14 + 2745: 0,14 + 2746: 1,14 + 2747: 2,14 + 2748: 3,14 + 2758: 3,36 - node: color: '#D381C9FF' id: BrickTileSteelLineS @@ -498,11 +501,11 @@ entities: color: '#52B4E9FF' id: BrickTileSteelLineW decals: - 2717: 14,29 - 2794: -2,16 - 2795: -2,15 - 2811: 2,37 - 2812: 2,38 + 2665: 14,29 + 2742: -2,16 + 2743: -2,15 + 2759: 2,37 + 2760: 2,38 - node: color: '#D381C9FF' id: BrickTileSteelLineW @@ -513,27 +516,27 @@ entities: color: '#334E6DFF' id: BrickTileWhiteCornerNe decals: - 5758: -8,57 - 5759: -7,56 + 5684: -8,57 + 5685: -7,56 - node: color: '#52B4E9FF' id: BrickTileWhiteCornerNe decals: 110: -2,32 - 2802: 11,33 + 2750: 11,33 - node: color: '#9FED58FF' id: BrickTileWhiteCornerNe decals: - 2742: 11,13 - 2743: 9,13 - 2744: 7,13 + 2690: 11,13 + 2691: 9,13 + 2692: 7,13 - node: color: '#A46106FF' id: BrickTileWhiteCornerNe decals: - 747: -37,1 - 772: -44,-7 + 741: -37,1 + 766: -44,-7 - node: color: '#D381C9FF' id: BrickTileWhiteCornerNe @@ -544,41 +547,41 @@ entities: color: '#DE3A3AFF' id: BrickTileWhiteCornerNe decals: - 3459: -42,65 + 3407: -42,65 - node: color: '#EFB341FF' id: BrickTileWhiteCornerNe decals: - 4368: -70,31 + 4316: -70,31 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNw decals: - 2231: -13,57 + 2179: -13,57 - node: color: '#334E6DFF' id: BrickTileWhiteCornerNw decals: - 2232: -13,57 + 2180: -13,57 - node: color: '#52B4E9FF' id: BrickTileWhiteCornerNw decals: 109: -3,32 - 2801: 7,33 + 2749: 7,33 - node: color: '#9FED58FF' id: BrickTileWhiteCornerNw decals: - 2739: 6,13 - 2740: 8,13 - 2741: 10,13 + 2687: 6,13 + 2688: 8,13 + 2689: 10,13 - node: color: '#A46106FF' id: BrickTileWhiteCornerNw decals: - 746: -39,1 - 771: -46,-7 + 740: -39,1 + 765: -46,-7 - node: color: '#D381C9FF' id: BrickTileWhiteCornerNw @@ -590,19 +593,19 @@ entities: color: '#DE3A3AFF' id: BrickTileWhiteCornerNw decals: - 3460: -44,65 + 3408: -44,65 - node: color: '#EFB341FF' id: BrickTileWhiteCornerNw decals: - 4351: -75,17 - 4354: -68,31 + 4299: -75,17 + 4302: -68,31 - node: color: '#334E6DFF' id: BrickTileWhiteCornerSe decals: - 2233: -7,54 - 2234: -8,53 + 2181: -7,54 + 2182: -8,53 - node: color: '#52B4E9FF' id: BrickTileWhiteCornerSe @@ -612,15 +615,15 @@ entities: color: '#9FED58FF' id: BrickTileWhiteCornerSe decals: - 2736: 7,11 - 2737: 9,11 - 2738: 11,11 + 2684: 7,11 + 2685: 9,11 + 2686: 11,11 - node: color: '#A46106FF' id: BrickTileWhiteCornerSe decals: - 745: -37,0 - 770: -44,-8 + 739: -37,0 + 764: -44,-8 - node: color: '#D381C9FF' id: BrickTileWhiteCornerSe @@ -630,17 +633,17 @@ entities: color: '#DE3A3AFF' id: BrickTileWhiteCornerSe decals: - 3461: -42,61 + 3409: -42,61 - node: color: '#EFB341FF' id: BrickTileWhiteCornerSe decals: - 4355: -64,25 + 4303: -64,25 - node: color: '#334E6DFF' id: BrickTileWhiteCornerSw decals: - 2235: -13,53 + 2183: -13,53 - node: color: '#52B4E9FF' id: BrickTileWhiteCornerSw @@ -650,15 +653,15 @@ entities: color: '#9FED58FF' id: BrickTileWhiteCornerSw decals: - 2745: 6,11 - 2746: 8,11 - 2747: 10,11 + 2693: 6,11 + 2694: 8,11 + 2695: 10,11 - node: color: '#A46106FF' id: BrickTileWhiteCornerSw decals: - 744: -39,0 - 773: -46,-8 + 738: -39,0 + 767: -46,-8 - node: color: '#D381C9FF' id: BrickTileWhiteCornerSw @@ -669,13 +672,13 @@ entities: color: '#DE3A3AFF' id: BrickTileWhiteCornerSw decals: - 3462: -44,61 + 3410: -44,61 - node: color: '#EFB341FF' id: BrickTileWhiteCornerSw decals: - 4352: -75,15 - 4353: -68,25 + 4300: -75,15 + 4301: -68,25 - node: color: '#D381C9FF' id: BrickTileWhiteEndE @@ -685,12 +688,12 @@ entities: color: '#334E6DFF' id: BrickTileWhiteInnerNe decals: - 5760: -8,56 + 5686: -8,56 - node: color: '#A4610696' id: BrickTileWhiteInnerNe decals: - 7207: 27,24 + 7113: 27,24 - node: color: '#D381C9FF' id: BrickTileWhiteInnerNe @@ -700,7 +703,7 @@ entities: color: '#9FED5896' id: BrickTileWhiteInnerNw decals: - 7215: 26,24 + 7121: 26,24 - node: color: '#D381C9FF' id: BrickTileWhiteInnerNw @@ -711,13 +714,13 @@ entities: color: '#334E6DFF' id: BrickTileWhiteInnerSe decals: - 2246: -8,54 - 2259: -20,62 + 2194: -8,54 + 2207: -20,62 - node: color: '#D381C996' id: BrickTileWhiteInnerSe decals: - 7211: 27,27 + 7117: 27,27 - node: color: '#D381C9FF' id: BrickTileWhiteInnerSe @@ -728,12 +731,12 @@ entities: color: '#334E6DFF' id: BrickTileWhiteInnerSw decals: - 2258: -14,62 + 2206: -14,62 - node: color: '#9FED5896' id: BrickTileWhiteInnerSw decals: - 7208: 26,27 + 7114: 26,27 - node: color: '#D381C9FF' id: BrickTileWhiteInnerSw @@ -743,27 +746,29 @@ entities: color: '#334E6DFF' id: BrickTileWhiteLineE decals: - 2236: -7,55 - 2247: -20,59 - 2248: -20,60 - 2249: -20,61 + 2184: -7,55 + 2195: -20,59 + 2196: -20,60 + 2197: -20,61 - node: color: '#9FED58FF' id: BrickTileWhiteLineE decals: - 2748: 7,12 - 2749: 9,12 - 2753: 11,12 + 2696: 7,12 + 2697: 9,12 + 2701: 11,12 + 7495: -12,15 + 7496: -12,14 - node: color: '#A4610696' id: BrickTileWhiteLineE decals: - 7206: 27,25 + 7112: 27,25 - node: color: '#D381C996' id: BrickTileWhiteLineE decals: - 7212: 27,26 + 7118: 27,26 - node: color: '#D381C9FF' id: BrickTileWhiteLineE @@ -778,60 +783,62 @@ entities: color: '#DE3A3AFF' id: BrickTileWhiteLineE decals: - 3452: -42,64 - 3453: -42,63 - 3454: -42,62 + 3400: -42,64 + 3401: -42,63 + 3402: -42,62 - node: color: '#EFB341FF' id: BrickTileWhiteLineE decals: - 4356: -64,26 - 4357: -64,27 - 4358: -64,28 - 4371: -70,30 - 4372: -70,29 - 4373: -70,28 + 4304: -64,26 + 4305: -64,27 + 4306: -64,28 + 4319: -70,30 + 4320: -70,29 + 4321: -70,28 + 7500: -12,8 + 7501: -12,9 - node: color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 7192: 25,27 + 7098: 25,27 - node: color: '#334E6DFF' id: BrickTileWhiteLineN decals: - 2237: -11,57 - 2238: -12,57 - 5756: -10,57 - 5757: -9,57 + 2185: -11,57 + 2186: -12,57 + 5682: -10,57 + 5683: -9,57 - node: color: '#52B4E996' id: BrickTileWhiteLineN decals: - 7195: 28,27 + 7101: 28,27 - node: color: '#52B4E9FF' id: BrickTileWhiteLineN decals: - 2803: 8,33 - 2804: 9,33 - 2805: 10,33 + 2751: 8,33 + 2752: 9,33 + 2753: 10,33 - node: color: '#9FED5896' id: BrickTileWhiteLineN decals: - 7205: 25,24 + 7111: 25,24 - node: color: '#A4610696' id: BrickTileWhiteLineN decals: - 7204: 28,24 + 7110: 28,24 - node: color: '#A46106FF' id: BrickTileWhiteLineN decals: - 743: -38,1 - 775: -45,-7 + 737: -38,1 + 769: -45,-7 - node: color: '#D381C9FF' id: BrickTileWhiteLineN @@ -858,56 +865,56 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteLineN decals: - 7193: 26,27 + 7099: 26,27 - node: color: '#DE3A3AFF' id: BrickTileWhiteLineN decals: - 3451: -43,65 + 3399: -43,65 - node: color: '#EFB34196' id: BrickTileWhiteLineN decals: - 7194: 27,27 + 7100: 27,27 - node: color: '#EFB341FF' id: BrickTileWhiteLineN decals: - 4348: -74,17 - 4349: -73,17 - 4350: -72,17 - 4359: -67,31 - 4369: -71,31 - 4370: -72,31 + 4296: -74,17 + 4297: -73,17 + 4298: -72,17 + 4307: -67,31 + 4317: -71,31 + 4318: -72,31 - node: color: '#334E6DFF' id: BrickTileWhiteLineS decals: - 2239: -12,53 - 2240: -11,53 - 2241: -10,53 - 2242: -9,53 - 2250: -19,62 - 2251: -18,62 - 2252: -17,62 - 2253: -16,62 - 2254: -15,62 + 2187: -12,53 + 2188: -11,53 + 2189: -10,53 + 2190: -9,53 + 2198: -19,62 + 2199: -18,62 + 2200: -17,62 + 2201: -16,62 + 2202: -15,62 - node: color: '#9FED5896' id: BrickTileWhiteLineS decals: - 7209: 25,27 + 7115: 25,27 - node: color: '#A46106FF' id: BrickTileWhiteLineS decals: - 742: -38,0 - 774: -45,-8 + 736: -38,0 + 768: -45,-8 - node: color: '#D381C996' id: BrickTileWhiteLineS decals: - 7210: 28,27 + 7116: 28,27 - node: color: '#D381C9FF' id: BrickTileWhiteLineS @@ -921,40 +928,47 @@ entities: color: '#DE3A3AFF' id: BrickTileWhiteLineS decals: - 3455: -43,61 + 3403: -43,61 - node: color: '#EFB341FF' id: BrickTileWhiteLineS decals: - 4346: -72,15 - 4360: -67,25 - 4361: -66,25 - 4362: -65,25 - 7552: -74,15 - 7553: -73,15 + 4294: -72,15 + 4308: -67,25 + 4309: -66,25 + 4310: -65,25 + 7458: -74,15 + 7459: -73,15 - node: color: '#334E6DFF' id: BrickTileWhiteLineW decals: - 2243: -13,54 - 2244: -13,55 - 2245: -13,56 - 2255: -14,59 - 2256: -14,60 - 2257: -14,61 + 2191: -13,54 + 2192: -13,55 + 2193: -13,56 + 2203: -14,59 + 2204: -14,60 + 2205: -14,61 + - node: + color: '#52B4E9FF' + id: BrickTileWhiteLineW + decals: + 7497: -14,14 + 7498: -14,13 + 7499: -14,12 - node: color: '#9FED5896' id: BrickTileWhiteLineW decals: - 7213: 26,26 - 7214: 26,25 + 7119: 26,26 + 7120: 26,25 - node: color: '#9FED58FF' id: BrickTileWhiteLineW decals: - 2750: 6,12 - 2751: 8,12 - 2752: 10,12 + 2698: 6,12 + 2699: 8,12 + 2700: 10,12 - node: color: '#D381C9FF' id: BrickTileWhiteLineW @@ -969,25 +983,51 @@ entities: color: '#DE3A3AFF' id: BrickTileWhiteLineW decals: - 3456: -44,62 - 3457: -44,63 - 3458: -44,64 + 3404: -44,62 + 3405: -44,63 + 3406: -44,64 + 7492: -14,8 + 7493: -14,9 + 7494: -14,10 - node: color: '#EFB341FF' id: BrickTileWhiteLineW decals: - 4347: -75,16 - 4363: -68,26 - 4364: -68,27 - 4365: -68,28 - 4366: -68,29 - 4367: -68,30 + 4295: -75,16 + 4311: -68,26 + 4312: -68,27 + 4313: -68,28 + 4314: -68,29 + 4315: -68,30 + - node: + color: '#FFFFFFFF' + id: Bushb1 + decals: + 7477: 17,37 + 7478: 22,37 + 7479: 19,40 + - node: + color: '#FFFFFFFF' + id: Bushc3 + decals: + 7475: 21,43 + 7476: 23,43 + - node: + color: '#FFFFFFFF' + id: Bushf2 + decals: + 7474: 21,40 - node: color: '#FFFFFFFF' id: Bushf3 decals: 167: 23.764019,15.981308 168: 22.264019,13.950058 + - node: + color: '#FFFFFFFF' + id: Bushh2 + decals: + 7473: 21,38 - node: color: '#FFFFFFFF' id: Bushi2 @@ -1000,510 +1040,522 @@ entities: 164: 22.123394,12.012558 165: 23.404644,12.543808 166: 22.154644,15.465683 + 7471: 17,40 + 7472: 18,41 - node: color: '#DE3A3A96' id: CheckerNWSE decals: - 3525: -57,57 - 3526: -57,56 - 3527: -57,55 - 3528: -57,54 - 3529: -56,54 - 3530: -56,55 - 3531: -56,56 - 3532: -56,57 - 3533: -55,57 - 3534: -55,56 - 3535: -55,55 - 3536: -55,54 - 3537: -54,54 - 3538: -54,55 - 3539: -54,56 - 3540: -54,57 - 3541: -53,57 - 3542: -53,56 - 3543: -53,55 - 3544: -53,54 - 3545: -52,54 - 3546: -52,55 - 3547: -52,56 - 3548: -52,57 - 3553: -58,58 - 3554: -57,58 - 3555: -56,58 - 3556: -55,58 - 3557: -54,58 - 3558: -53,58 - 3559: -52,58 - 3560: -51,58 - 3561: -51,57 - 3562: -51,56 - 3563: -51,55 - 3564: -51,54 - 3565: -51,53 - 3566: -52,53 - 3567: -53,53 - 3568: -54,53 - 3569: -55,53 - 3570: -56,53 - 3571: -57,53 - 3572: -58,53 - 3573: -58,54 - 3574: -58,55 - 3575: -58,56 - 3576: -58,57 + 3473: -57,57 + 3474: -57,56 + 3475: -57,55 + 3476: -57,54 + 3477: -56,54 + 3478: -56,55 + 3479: -56,56 + 3480: -56,57 + 3481: -55,57 + 3482: -55,56 + 3483: -55,55 + 3484: -55,54 + 3485: -54,54 + 3486: -54,55 + 3487: -54,56 + 3488: -54,57 + 3489: -53,57 + 3490: -53,56 + 3491: -53,55 + 3492: -53,54 + 3493: -52,54 + 3494: -52,55 + 3495: -52,56 + 3496: -52,57 + 3501: -58,58 + 3502: -57,58 + 3503: -56,58 + 3504: -55,58 + 3505: -54,58 + 3506: -53,58 + 3507: -52,58 + 3508: -51,58 + 3509: -51,57 + 3510: -51,56 + 3511: -51,55 + 3512: -51,54 + 3513: -51,53 + 3514: -52,53 + 3515: -53,53 + 3516: -54,53 + 3517: -55,53 + 3518: -56,53 + 3519: -57,53 + 3520: -58,53 + 3521: -58,54 + 3522: -58,55 + 3523: -58,56 + 3524: -58,57 - node: color: '#FF00FFFF' id: CheckerNWSE decals: - 718: -30,-13 - 719: -30,-12 - 720: -30,-11 - 721: -29,-11 - 722: -29,-12 - 723: -29,-13 - 724: -28,-13 - 725: -28,-12 - 726: -28,-11 + 712: -30,-13 + 713: -30,-12 + 714: -30,-11 + 715: -29,-11 + 716: -29,-12 + 717: -29,-13 + 718: -28,-13 + 719: -28,-12 + 720: -28,-11 + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 7465: -55,7 + 7466: -54,7 + 7467: -53,7 + 7468: -50,7 + 7469: -48,7 + 7470: -47,7 - node: cleanable: True color: '#FFFFFFFF' id: Dirt decals: - 4738: -68,44 + 4686: -68,44 - node: color: '#FFFFFFFF' id: DirtHeavy decals: - 1692: -30,52 - 1693: -29,53 - 1694: -28,54 - 1695: -26,54 - 1696: -26,55 - 1697: -26,55 - 1698: -26,53 - 1699: -40,45 - 1706: -35,35 - 1707: -37,37 - 1708: -36,34 - 1709: -35,38 - 1710: -37,39 - 1711: -40,38 - 1712: -41,36 - 1713: -38,39 - 1714: -42,38 - 1715: -44,37 - 1716: -41,37 - 1717: -43,39 - 1718: -44,38 - 1719: -44,36 - 1720: -39,36 - 1721: -37,39 - 1722: -37,38 - 1723: -36,36 - 1724: -36,40 - 1725: -38,40 - 1726: -41,37 - 1727: -43,36 - 1728: -41,35 - 1729: -39,36 - 1730: -45,39 - 1731: -45,39 - 1732: -41,37 - 1733: -39,36 - 1734: -37,38 - 1735: -39,39 - 1782: -28,40 - 1783: -29,41 - 1784: -29,42 - 1785: -27,42 - 1786: -29,42 - 1787: -29,41 - 1788: -28,40 - 1789: -28,40 - 1790: -29,42 - 1791: -29,42 - 1792: -29,42 - 1793: -30,25 - 1794: -29,23 - 1795: -29,25 - 1796: -30,27 - 1797: -31,28 - 1798: -31,24 - 1799: -30,24 - 1800: -29,27 - 1801: -30,29 - 1802: -31,27 - 1803: -31,24 - 1804: -29,27 - 1805: -30,28 - 1806: -28,12 - 1807: -29,11 - 1808: -29,9 - 1809: -27,8 - 1810: -25,12 - 1811: -27,12 - 1812: -27,10 - 1813: -25,10 - 1814: -24,12 - 1815: -24,11 - 1816: -24,9 - 1817: -26,8 - 1818: -28,12 - 1819: -26,12 - 1820: -28,11 - 1821: -28,9 - 1822: -26,8 - 1823: -24,12 - 1824: -26,13 - 1825: -28,11 - 1826: -27,9 - 1827: -24,9 - 1828: -28,12 - 1829: -29,10 - 1830: -25,10 - 1831: -24,16 - 1832: -26,18 - 1833: -29,17 - 1834: -28,16 - 1835: -25,17 - 1836: -27,17 - 1837: -26,16 - 1838: -23,15 - 1839: -25,17 - 1840: -30,17 - 1841: -28,16 - 1842: -27,18 - 1843: -29,17 - 1844: -27,15 - 1845: -23,15 - 1846: -24,17 - 1847: -28,18 - 1848: -29,16 - 1849: -26,16 - 1850: -30,25 - 1851: -30,24 - 1852: -31,25 - 1853: -30,28 - 1854: -31,27 - 1855: -17,-3 - 1856: -17,-3 - 1857: -18,-5 - 1858: -17,-5 - 1859: -17,-3 - 1860: -18,-4 - 1861: -18,-5 - 1862: -16,-5 - 1863: -17,-2 - 1864: -19,-3 - 1865: -19,-5 - 1866: -17,-5 - 1867: -17,-2 - 1868: -19,-3 - 1869: -19,-9 - 1870: -18,-9 - 1871: -16,-8 - 1872: -16,-8 - 1873: -16,-9 - 1874: -18,-8 - 1875: -29,-9 - 1876: -30,-8 - 1877: -27,-6 - 1878: -28,-5 - 1879: -30,-8 - 1880: -28,-9 - 1881: -29,-6 - 1882: -29,-4 - 1883: -30,-5 - 1884: -29,-7 - 1885: -25,-9 - 1886: -25,-9 - 1887: -22,-9 - 1888: -22,-8 - 1889: -22,-8 - 1890: -21,-6 - 1891: -22,-2 - 1892: -21,0 - 1893: -19,1 - 1894: -17,1 - 1895: -30,2 - 1896: -30,1 - 1897: -29,0 - 1898: -29,-2 - 1899: -26,-2 - 1900: -27,-1 - 1901: -26,-2 - 1902: -26,1 - 1903: -27,1 - 1904: -27,2 - 1905: -26,0 - 1906: -27,1 - 1907: -27,2 - 1908: -27,0 - 1909: -27,-1 - 1910: -26,-2 - 1911: -24,-2 - 1912: -24,-2 - 1913: -24,1 - 1914: -24,2 - 1915: -26,1 - 1916: -27,1 - 1917: -26,-1 - 1918: -28,-2 - 1919: -33,-2 - 1920: -34,-2 - 1921: -36,-4 - 1922: -33,-2 - 1923: -33,-3 - 1924: -34,-4 - 1925: -33,-3 - 1926: -33,-3 - 1927: -33,-3 - 1928: -45,-3 - 1929: -45,-2 - 1930: -46,-3 - 1931: -47,-4 - 1932: -45,-5 - 1933: -44,-4 - 1934: -44,-2 - 1935: -45,-2 - 1936: -46,-3 - 1937: -46,-4 - 1938: -47,-4 - 1939: -45,-3 - 1940: -44,1 - 1941: -46,1 - 1942: -46,1 - 1943: -44,1 - 1944: -45,2 - 1945: -46,2 - 1946: -46,0 - 1947: -44,0 - 1948: -46,1 - 1949: -46,2 - 1950: -47,1 - 1951: -47,1 - 1952: -44,1 - 1953: -45,2 - 1954: -46,1 - 1955: -45,1 - 1956: -45,0 - 1957: -46,0 - 1958: -47,1 - 1959: -52,-2 - 1960: -51,-1 - 1961: -53,-1 - 1962: -52,-3 - 1963: -51,-2 - 1964: -52,-1 - 1965: -55,-1 - 1966: -55,-2 - 1967: -53,-2 - 1968: -54,-2 - 1969: -55,-3 - 1970: -52,-1 - 1971: -53,-1 - 1972: -52,-3 - 1973: -51,-3 - 1974: -52,-7 - 1975: -52,-6 - 1976: -54,-6 - 1977: -52,-8 - 1978: -51,-5 - 1979: -53,-5 - 1980: -54,-7 - 1981: -55,-8 - 1982: -53,-8 - 1983: -51,-7 - 1984: -53,-5 - 1985: -55,-6 - 1986: -53,-7 - 1987: -53,-5 - 1988: -53,-4 - 1989: -53,46 - 1990: -53,46 - 1991: -59,36 - 1992: -59,33 - 1993: -59,32 - 2450: -36,-11 - 2727: 8,21 - 2728: 11,32 - 5746: -35,36 - 5747: -35,37 - 5748: -35,37 - 5749: -35,37 - 5750: -35,36 - 5751: -35,36 - 5752: -35,35 - 5753: -35,35 - 5754: -35,36 - 5755: -35,36 - 7146: -1,43 - 7147: -1,42 - 7148: 0,42 - 7149: 0,43 - 7150: 0,43 - 7151: 1,42 - 7152: 1,42 - 7153: 2,43 - 7154: 2,44 - 7155: 3,44 - 7156: 4,44 - 7157: 4,43 - 7158: 4,42 - 7159: 4,43 - 7160: 3,43 - 7161: 3,42 - 7162: 2,42 - 7163: 2,43 - 7164: 0,43 - 7165: 0,43 - 7181: 18,45 - 7182: 18,46 - 7184: 10,52 - 7185: 11,52 - 7186: 11,52 - 7187: 11,51 - 7188: 10,52 - 7189: 17,46 - 7190: 17,46 - 7191: 17,46 - 7216: 25,26 - 7217: 25,25 - 7218: 26,25 - 7219: 26,26 - 7220: 27,26 - 7221: 28,25 - 7222: 28,25 - 7223: 28,26 - 7224: 27,27 - 7225: 26,27 - 7226: 25,27 - 7227: 26,27 - 7228: 28,27 - 7229: 28,28 - 7230: 26,28 - 7231: 25,28 - 7232: 26,28 - 7233: 27,28 - 7234: 27,28 - 7265: -60,-10 - 7266: -60,-11 - 7267: -59,-12 - 7268: -59,-12 - 7269: -58,-12 - 7270: -59,-12 - 7271: -61,-12 - 7272: -61,-10 - 7273: -62,-10 - 7274: -63,-11 - 7275: -61,-12 - 7276: -61,-11 - 7277: -62,-11 - 7278: -63,-11 - 7279: -62,-12 - 7280: -63,-10 - 7281: -64,-10 - 7282: -64,-11 - 7283: -64,-12 - 7284: -64,-12 - 7285: -65,-11 - 7286: -66,-11 - 7287: -65,-11 - 7288: -66,-11 - 7289: -67,-11 - 7290: -67,-11 - 7291: -66,-12 - 7292: -65,-12 - 7293: -66,-10 - 7294: -68,-10 - 7295: -69,-11 - 7296: -69,-12 - 7297: -68,-11 - 7298: -67,-10 - 7299: -66,-10 - 7300: -65,-10 - 7301: -67,-11 - 7302: -67,-12 - 7303: -68,-11 - 7304: -69,-10 - 7305: -70,-11 - 7306: -70,-12 - 7307: -71,-12 - 7308: -71,-11 - 7309: -71,-10 - 7310: -72,-10 - 7311: -73,-11 - 7312: -73,-12 - 7313: -72,-12 - 7314: -72,-11 - 7315: -75,-10 - 7316: -76,-10 - 7317: -75,-11 - 7318: -74,-12 - 7319: -73,-11 - 7320: -73,-10 - 7321: -74,-11 - 7322: -75,-12 - 7323: -76,-11 - 7324: -75,-11 - 7325: -74,-11 - 7326: -72,-11 - 7327: -71,-10 - 7328: -68,-11 - 7329: -67,-12 - 7330: -67,-12 - 7331: -68,-12 - 7332: -76,-12 - 7333: -62,-12 - 7334: -62,-12 - 7335: -63,-12 - 7336: -67,-10 - 7337: -68,-10 - 7338: -69,-10 - 7339: -70,-10 - 7340: -73,-10 - 7341: -74,-10 - 7373: -67,-14 - 7374: -67,-14 - 7375: -65,-14 - 7376: -65,-15 - 7377: -65,-15 - 7378: -73,-14 - 7379: -73,-15 - 7380: -75,-14 - 7381: -75,-14 - 7382: -75,-15 - 7383: -78,-11 - 7384: -78,-11 - 7385: -77,-11 - 7386: -79,-11 - 7387: -75,-13 - 7388: -73,-13 - 7389: -67,-13 - 7390: -67,-13 - 7391: -64,-13 - 7392: -65,-13 - 7393: -75,-13 - 7394: -75,-16 - 7395: -73,-16 - 7396: -67,-16 - 7397: -73,-16 - 7398: -65,-16 - 7399: -74,-9 - 7400: -74,-9 - 7401: -74,-8 - 7402: -74,-9 - 7403: -67,-9 - 7404: -67,-8 - 7405: -67,-9 - 7406: -74,3 - 7407: -74,3 - 7408: -74,2 - 7409: -67,3 - 7410: -67,3 - 7411: -67,2 - 7412: -67,2 + 1643: -30,52 + 1644: -29,53 + 1645: -28,54 + 1646: -26,54 + 1647: -26,55 + 1648: -26,55 + 1649: -26,53 + 1650: -40,45 + 1657: -35,35 + 1658: -37,37 + 1659: -36,34 + 1660: -35,38 + 1661: -37,39 + 1662: -40,38 + 1663: -41,36 + 1664: -38,39 + 1665: -42,38 + 1666: -44,37 + 1667: -41,37 + 1668: -43,39 + 1669: -44,38 + 1670: -44,36 + 1671: -39,36 + 1672: -37,39 + 1673: -37,38 + 1674: -36,36 + 1675: -36,40 + 1676: -38,40 + 1677: -41,37 + 1678: -43,36 + 1679: -41,35 + 1680: -39,36 + 1681: -45,39 + 1682: -45,39 + 1683: -41,37 + 1684: -39,36 + 1685: -37,38 + 1686: -39,39 + 1733: -28,40 + 1734: -29,41 + 1735: -29,42 + 1736: -27,42 + 1737: -29,42 + 1738: -29,41 + 1739: -28,40 + 1740: -28,40 + 1741: -29,42 + 1742: -29,42 + 1743: -29,42 + 1744: -30,25 + 1745: -29,23 + 1746: -29,25 + 1747: -30,27 + 1748: -31,28 + 1749: -31,24 + 1750: -30,24 + 1751: -29,27 + 1752: -30,29 + 1753: -31,27 + 1754: -31,24 + 1755: -29,27 + 1756: -30,28 + 1757: -28,12 + 1758: -29,11 + 1759: -29,9 + 1760: -27,8 + 1761: -25,12 + 1762: -27,12 + 1763: -27,10 + 1764: -25,10 + 1765: -24,12 + 1766: -24,11 + 1767: -24,9 + 1768: -26,8 + 1769: -28,12 + 1770: -26,12 + 1771: -28,11 + 1772: -28,9 + 1773: -26,8 + 1774: -24,12 + 1775: -26,13 + 1776: -28,11 + 1777: -27,9 + 1778: -24,9 + 1779: -28,12 + 1780: -29,10 + 1781: -25,10 + 1782: -24,16 + 1783: -26,18 + 1784: -29,17 + 1785: -28,16 + 1786: -25,17 + 1787: -27,17 + 1788: -26,16 + 1789: -23,15 + 1790: -25,17 + 1791: -30,17 + 1792: -28,16 + 1793: -27,18 + 1794: -29,17 + 1795: -27,15 + 1796: -23,15 + 1797: -24,17 + 1798: -28,18 + 1799: -29,16 + 1800: -26,16 + 1801: -30,25 + 1802: -30,24 + 1803: -31,25 + 1804: -30,28 + 1805: -31,27 + 1806: -17,-3 + 1807: -17,-3 + 1808: -18,-5 + 1809: -17,-5 + 1810: -17,-3 + 1811: -18,-4 + 1812: -18,-5 + 1813: -16,-5 + 1814: -17,-2 + 1815: -19,-3 + 1816: -19,-5 + 1817: -17,-5 + 1818: -17,-2 + 1819: -19,-3 + 1820: -19,-9 + 1821: -18,-9 + 1822: -16,-8 + 1823: -16,-8 + 1824: -16,-9 + 1825: -18,-8 + 1826: -29,-9 + 1827: -30,-8 + 1828: -27,-6 + 1829: -28,-5 + 1830: -30,-8 + 1831: -28,-9 + 1832: -29,-6 + 1833: -29,-4 + 1834: -30,-5 + 1835: -29,-7 + 1836: -25,-9 + 1837: -25,-9 + 1838: -22,-9 + 1839: -22,-8 + 1840: -22,-8 + 1841: -21,-6 + 1842: -22,-2 + 1843: -21,0 + 1844: -19,1 + 1845: -17,1 + 1846: -30,2 + 1847: -30,1 + 1848: -29,0 + 1849: -29,-2 + 1850: -26,-2 + 1851: -27,-1 + 1852: -26,-2 + 1853: -26,1 + 1854: -27,1 + 1855: -27,2 + 1856: -26,0 + 1857: -27,1 + 1858: -27,2 + 1859: -27,0 + 1860: -27,-1 + 1861: -26,-2 + 1862: -24,-2 + 1863: -24,-2 + 1864: -24,1 + 1865: -24,2 + 1866: -26,1 + 1867: -27,1 + 1868: -26,-1 + 1869: -28,-2 + 1870: -33,-2 + 1871: -34,-2 + 1872: -36,-4 + 1873: -33,-2 + 1874: -33,-3 + 1875: -34,-4 + 1876: -33,-3 + 1877: -33,-3 + 1878: -33,-3 + 1879: -45,-3 + 1880: -45,-2 + 1881: -46,-3 + 1882: -47,-4 + 1883: -45,-5 + 1884: -44,-4 + 1885: -44,-2 + 1886: -45,-2 + 1887: -46,-3 + 1888: -46,-4 + 1889: -47,-4 + 1890: -45,-3 + 1891: -44,1 + 1892: -46,1 + 1893: -46,1 + 1894: -44,1 + 1895: -45,2 + 1896: -46,2 + 1897: -46,0 + 1898: -44,0 + 1899: -46,1 + 1900: -46,2 + 1901: -47,1 + 1902: -47,1 + 1903: -44,1 + 1904: -45,2 + 1905: -46,1 + 1906: -45,1 + 1907: -45,0 + 1908: -46,0 + 1909: -47,1 + 1910: -52,-2 + 1911: -51,-1 + 1912: -53,-1 + 1913: -52,-3 + 1914: -51,-2 + 1915: -52,-1 + 1916: -55,-1 + 1917: -55,-2 + 1918: -53,-2 + 1919: -54,-2 + 1920: -55,-3 + 1921: -52,-1 + 1922: -53,-1 + 1923: -52,-3 + 1924: -51,-3 + 1925: -52,-7 + 1926: -52,-6 + 1927: -54,-6 + 1928: -52,-8 + 1929: -51,-5 + 1930: -53,-5 + 1931: -54,-7 + 1932: -55,-8 + 1933: -53,-8 + 1934: -51,-7 + 1935: -53,-5 + 1936: -55,-6 + 1937: -53,-7 + 1938: -53,-5 + 1939: -53,-4 + 1940: -53,46 + 1941: -53,46 + 1942: -59,36 + 1943: -59,33 + 1944: -59,32 + 2398: -36,-11 + 2675: 8,21 + 2676: 11,32 + 5672: -35,36 + 5673: -35,37 + 5674: -35,37 + 5675: -35,37 + 5676: -35,36 + 5677: -35,36 + 5678: -35,35 + 5679: -35,35 + 5680: -35,36 + 5681: -35,36 + 7052: -1,43 + 7053: -1,42 + 7054: 0,42 + 7055: 0,43 + 7056: 0,43 + 7057: 1,42 + 7058: 1,42 + 7059: 2,43 + 7060: 2,44 + 7061: 3,44 + 7062: 4,44 + 7063: 4,43 + 7064: 4,42 + 7065: 4,43 + 7066: 3,43 + 7067: 3,42 + 7068: 2,42 + 7069: 2,43 + 7070: 0,43 + 7071: 0,43 + 7087: 18,45 + 7088: 18,46 + 7090: 10,52 + 7091: 11,52 + 7092: 11,52 + 7093: 11,51 + 7094: 10,52 + 7095: 17,46 + 7096: 17,46 + 7097: 17,46 + 7122: 25,26 + 7123: 25,25 + 7124: 26,25 + 7125: 26,26 + 7126: 27,26 + 7127: 28,25 + 7128: 28,25 + 7129: 28,26 + 7130: 27,27 + 7131: 26,27 + 7132: 25,27 + 7133: 26,27 + 7134: 28,27 + 7135: 28,28 + 7136: 26,28 + 7137: 25,28 + 7138: 26,28 + 7139: 27,28 + 7140: 27,28 + 7171: -60,-10 + 7172: -60,-11 + 7173: -59,-12 + 7174: -59,-12 + 7175: -58,-12 + 7176: -59,-12 + 7177: -61,-12 + 7178: -61,-10 + 7179: -62,-10 + 7180: -63,-11 + 7181: -61,-12 + 7182: -61,-11 + 7183: -62,-11 + 7184: -63,-11 + 7185: -62,-12 + 7186: -63,-10 + 7187: -64,-10 + 7188: -64,-11 + 7189: -64,-12 + 7190: -64,-12 + 7191: -65,-11 + 7192: -66,-11 + 7193: -65,-11 + 7194: -66,-11 + 7195: -67,-11 + 7196: -67,-11 + 7197: -66,-12 + 7198: -65,-12 + 7199: -66,-10 + 7200: -68,-10 + 7201: -69,-11 + 7202: -69,-12 + 7203: -68,-11 + 7204: -67,-10 + 7205: -66,-10 + 7206: -65,-10 + 7207: -67,-11 + 7208: -67,-12 + 7209: -68,-11 + 7210: -69,-10 + 7211: -70,-11 + 7212: -70,-12 + 7213: -71,-12 + 7214: -71,-11 + 7215: -71,-10 + 7216: -72,-10 + 7217: -73,-11 + 7218: -73,-12 + 7219: -72,-12 + 7220: -72,-11 + 7221: -75,-10 + 7222: -76,-10 + 7223: -75,-11 + 7224: -74,-12 + 7225: -73,-11 + 7226: -73,-10 + 7227: -74,-11 + 7228: -75,-12 + 7229: -76,-11 + 7230: -75,-11 + 7231: -74,-11 + 7232: -72,-11 + 7233: -71,-10 + 7234: -68,-11 + 7235: -67,-12 + 7236: -67,-12 + 7237: -68,-12 + 7238: -76,-12 + 7239: -62,-12 + 7240: -62,-12 + 7241: -63,-12 + 7242: -67,-10 + 7243: -68,-10 + 7244: -69,-10 + 7245: -70,-10 + 7246: -73,-10 + 7247: -74,-10 + 7279: -67,-14 + 7280: -67,-14 + 7281: -65,-14 + 7282: -65,-15 + 7283: -65,-15 + 7284: -73,-14 + 7285: -73,-15 + 7286: -75,-14 + 7287: -75,-14 + 7288: -75,-15 + 7289: -78,-11 + 7290: -78,-11 + 7291: -77,-11 + 7292: -79,-11 + 7293: -75,-13 + 7294: -73,-13 + 7295: -67,-13 + 7296: -67,-13 + 7297: -64,-13 + 7298: -65,-13 + 7299: -75,-13 + 7300: -75,-16 + 7301: -73,-16 + 7302: -67,-16 + 7303: -73,-16 + 7304: -65,-16 + 7305: -74,-9 + 7306: -74,-9 + 7307: -74,-8 + 7308: -74,-9 + 7309: -67,-9 + 7310: -67,-8 + 7311: -67,-9 + 7312: -74,3 + 7313: -74,3 + 7314: -74,2 + 7315: -67,3 + 7316: -67,3 + 7317: -67,2 + 7318: -67,2 - node: cleanable: True color: '#FFFFFFFF' @@ -1629,3541 +1681,3474 @@ entities: 420: -12,10 421: -13,10 422: -14,11 - 423: -14,10 - 424: -14,9 - 425: -16,8 - 426: -17,8 - 427: -17,10 - 428: -18,10 - 429: -18,9 - 480: -12,18 - 481: -13,19 - 482: -14,20 - 483: -13,22 - 484: -12,23 - 485: -12,24 - 486: -14,26 - 487: -13,27 - 488: -12,28 - 489: -13,28 - 490: -14,28 - 491: -13,26 - 492: -12,25 - 493: -13,29 - 494: -14,32 - 495: -12,28 - 496: -12,30 - 497: -13,32 - 498: -15,32 - 499: -15,31 - 500: -13,30 - 501: -13,29 - 502: -12,32 - 503: -12,33 - 504: -13,33 - 505: -10,31 - 506: -9,32 - 507: -9,32 - 508: -8,33 - 509: -8,32 - 510: -8,31 - 511: -9,32 - 512: -10,32 - 513: -10,32 - 525: 0,29 - 526: -1,30 - 527: -3,30 - 528: -4,31 - 529: -4,32 - 530: -3,33 - 531: -4,32 - 532: -5,32 - 533: 0,33 - 534: -1,33 - 535: -1,34 - 536: -4,25 - 537: -4,26 - 538: -2,26 - 539: -1,26 - 540: -1,27 - 541: -4,27 - 542: -5,26 - 543: -4,24 - 544: -2,23 - 545: -3,22 - 546: -3,20 - 547: -4,19 - 548: -2,19 - 549: -2,20 - 562: -2,7 - 599: 13,-8 - 600: 13,-9 - 601: 14,-9 - 602: 15,-8 - 603: 15,-8 - 604: 14,-10 - 605: 15,-11 - 606: 13,-11 - 607: 13,-12 - 608: 14,-12 - 609: 19,-2 - 610: 20,-3 - 611: 20,-2 - 612: 21,-1 - 613: 20,-2 - 628: 19,1 - 629: 19,1 - 630: 20,1 - 631: 26,1 - 632: 26,2 - 633: 26,2 - 634: 25,2 - 635: 27,3 - 636: 28,3 - 637: 29,1 - 638: 27,1 - 639: 28,2 + 423: -16,8 + 424: -17,8 + 425: -17,10 + 426: -18,10 + 427: -18,9 + 474: -12,18 + 475: -13,19 + 476: -14,20 + 477: -13,22 + 478: -12,23 + 479: -12,24 + 480: -14,26 + 481: -13,27 + 482: -12,28 + 483: -13,28 + 484: -14,28 + 485: -13,26 + 486: -12,25 + 487: -13,29 + 488: -14,32 + 489: -12,28 + 490: -12,30 + 491: -13,32 + 492: -15,32 + 493: -15,31 + 494: -13,30 + 495: -13,29 + 496: -12,32 + 497: -12,33 + 498: -13,33 + 499: -10,31 + 500: -9,32 + 501: -9,32 + 502: -8,33 + 503: -8,32 + 504: -8,31 + 505: -9,32 + 506: -10,32 + 507: -10,32 + 519: 0,29 + 520: -1,30 + 521: -3,30 + 522: -4,31 + 523: -4,32 + 524: -3,33 + 525: -4,32 + 526: -5,32 + 527: 0,33 + 528: -1,33 + 529: -1,34 + 530: -4,25 + 531: -4,26 + 532: -2,26 + 533: -1,26 + 534: -1,27 + 535: -4,27 + 536: -5,26 + 537: -4,24 + 538: -2,23 + 539: -3,22 + 540: -3,20 + 541: -4,19 + 542: -2,19 + 543: -2,20 + 556: -2,7 + 593: 13,-8 + 594: 13,-9 + 595: 14,-9 + 596: 15,-8 + 597: 15,-8 + 598: 14,-10 + 599: 15,-11 + 600: 13,-11 + 601: 13,-12 + 602: 14,-12 + 603: 19,-2 + 604: 20,-3 + 605: 20,-2 + 606: 21,-1 + 607: 20,-2 + 622: 19,1 + 623: 19,1 + 624: 20,1 + 625: 26,1 + 626: 26,2 + 627: 26,2 + 628: 25,2 + 629: 27,3 + 630: 28,3 + 631: 29,1 + 632: 27,1 + 633: 28,2 + 634: 29,3 + 635: 26,1 + 636: 25,2 + 637: 26,2 + 638: 27,3 + 639: 28,3 640: 29,3 - 641: 26,1 - 642: 25,2 - 643: 26,2 - 644: 27,3 - 645: 28,3 - 646: 29,3 - 647: 29,3 - 648: 11,-2 - 649: -3,-5 - 650: -5,-5 - 651: -5,-6 - 652: -6,-6 - 653: -7,-5 - 654: -6,-4 - 655: -10,-5 - 656: -9,-5 - 657: -9,-4 - 658: -9,-5 - 659: -13,-8 - 660: -12,-8 - 661: -13,-9 - 662: -14,-9 - 663: -14,-9 - 664: -13,-8 - 665: -12,-9 - 666: -14,-13 - 667: -15,-13 - 668: -16,-15 - 669: -16,-15 - 670: -16,-15 - 671: -16,-14 - 672: -9,30 - 673: -7,28 - 674: -8,27 - 675: -10,27 - 676: -10,27 - 677: -17,29 - 678: -16,29 - 679: -16,28 - 680: -16,27 - 681: -17,27 - 682: -18,29 - 683: -18,29 - 776: -45,-7 - 777: -46,-7 - 778: -45,-8 - 779: -44,-8 - 865: -39,1 - 866: -38,0 - 867: -37,1 - 868: -38,4 - 869: -37,6 - 870: -34,6 - 871: -37,7 - 872: -40,6 - 873: -41,5 - 874: -40,4 - 875: -37,4 - 876: -34,3 - 877: -32,1 - 878: -34,1 - 879: -35,1 - 880: -35,1 - 881: -33,0 - 882: -32,0 - 1013: -37,9 - 1014: -38,9 - 1015: -38,9 - 1016: -39,11 - 1017: -39,12 - 1018: -39,14 - 1019: -38,15 - 1020: -37,16 - 1021: -38,17 - 1022: -38,19 - 1023: -39,19 - 1024: -38,20 - 1025: -38,21 - 1026: -39,18 - 1027: -39,17 - 1028: -37,21 - 1029: -37,23 - 1030: -39,24 - 1031: -39,23 - 1032: -37,22 - 1033: -37,26 + 641: 29,3 + 642: 11,-2 + 643: -3,-5 + 644: -5,-5 + 645: -5,-6 + 646: -6,-6 + 647: -7,-5 + 648: -6,-4 + 649: -10,-5 + 650: -9,-5 + 651: -9,-4 + 652: -9,-5 + 653: -13,-8 + 654: -12,-8 + 655: -13,-9 + 656: -14,-9 + 657: -14,-9 + 658: -13,-8 + 659: -12,-9 + 660: -14,-13 + 661: -15,-13 + 662: -16,-15 + 663: -16,-15 + 664: -16,-15 + 665: -16,-14 + 666: -9,30 + 667: -7,28 + 668: -8,27 + 669: -10,27 + 670: -10,27 + 671: -17,29 + 672: -16,29 + 673: -16,28 + 674: -16,27 + 675: -17,27 + 676: -18,29 + 677: -18,29 + 770: -45,-7 + 771: -46,-7 + 772: -45,-8 + 773: -44,-8 + 859: -39,1 + 860: -38,0 + 861: -37,1 + 862: -38,4 + 863: -37,6 + 864: -34,6 + 865: -37,7 + 866: -40,6 + 867: -41,5 + 868: -40,4 + 869: -37,4 + 870: -34,3 + 871: -32,1 + 872: -34,1 + 873: -35,1 + 874: -35,1 + 875: -33,0 + 876: -32,0 + 1007: -37,9 + 1008: -38,9 + 1009: -38,9 + 1010: -39,11 + 1011: -39,12 + 1012: -39,14 + 1013: -38,15 + 1014: -37,16 + 1015: -38,17 + 1016: -38,19 + 1017: -39,19 + 1018: -38,20 + 1019: -38,21 + 1020: -39,18 + 1021: -39,17 + 1022: -37,21 + 1023: -37,23 + 1024: -39,24 + 1025: -39,23 + 1026: -37,22 + 1027: -37,26 + 1028: -38,27 + 1029: -39,25 + 1030: -38,25 + 1031: -38,29 + 1032: -39,29 + 1033: -38,27 1034: -38,27 - 1035: -39,25 - 1036: -38,25 - 1037: -38,29 - 1038: -39,29 - 1039: -38,27 - 1040: -38,27 - 1041: -37,27 - 1042: -37,27 - 1043: -34,25 - 1044: -32,26 - 1045: -33,28 - 1046: -35,28 - 1047: -35,25 - 1048: -33,25 - 1049: -32,27 - 1050: -34,28 - 1051: -35,28 - 1052: -33,26 - 1053: -34,25 - 1054: -35,28 - 1055: -27,28 - 1056: -26,28 - 1057: -25,28 - 1058: -26,27 - 1059: -24,28 - 1060: -23,28 - 1061: -26,28 - 1062: -24,26 - 1063: -23,26 - 1064: -24,27 - 1065: -26,28 - 1066: -24,27 - 1067: -18,33 - 1068: -17,31 - 1069: -15,32 - 1070: -16,33 - 1071: -20,32 - 1072: -19,32 - 1073: -19,32 - 1074: -21,33 - 1075: -22,32 - 1076: -21,32 - 1077: -23,33 - 1078: -27,33 - 1079: -28,33 - 1080: -29,32 - 1081: -27,32 - 1082: -29,33 - 1083: -31,32 - 1084: -29,31 - 1085: -30,32 - 1086: -32,32 - 1087: -32,31 - 1088: -32,32 - 1089: -34,32 - 1090: -35,31 - 1091: -38,32 - 1092: -38,33 - 1093: -40,32 - 1094: -39,31 - 1095: -40,32 - 1096: -43,32 - 1097: -42,31 - 1098: -42,30 - 1099: -43,32 + 1035: -37,27 + 1036: -37,27 + 1037: -34,25 + 1038: -32,26 + 1039: -33,28 + 1040: -35,28 + 1041: -35,25 + 1042: -33,25 + 1043: -32,27 + 1044: -34,28 + 1045: -35,28 + 1046: -33,26 + 1047: -34,25 + 1048: -35,28 + 1049: -27,28 + 1050: -26,28 + 1051: -25,28 + 1052: -26,27 + 1053: -24,28 + 1054: -23,28 + 1055: -26,28 + 1056: -24,26 + 1057: -23,26 + 1058: -24,27 + 1059: -26,28 + 1060: -24,27 + 1061: -18,33 + 1062: -17,31 + 1063: -15,32 + 1064: -16,33 + 1065: -20,32 + 1066: -19,32 + 1067: -19,32 + 1068: -21,33 + 1069: -22,32 + 1070: -21,32 + 1071: -23,33 + 1072: -27,33 + 1073: -28,33 + 1074: -29,32 + 1075: -27,32 + 1076: -29,33 + 1077: -31,32 + 1078: -29,31 + 1079: -30,32 + 1080: -32,32 + 1081: -32,31 + 1082: -32,32 + 1083: -34,32 + 1084: -35,31 + 1085: -38,32 + 1086: -38,33 + 1087: -40,32 + 1088: -39,31 + 1089: -40,32 + 1090: -43,32 + 1091: -42,31 + 1092: -42,30 + 1093: -43,32 + 1094: -45,32 + 1095: -42,31 + 1096: -42,32 + 1097: -45,31 + 1098: -46,30 + 1099: -44,30 1100: -45,32 - 1101: -42,31 - 1102: -42,32 - 1103: -45,31 - 1104: -46,30 - 1105: -44,30 - 1106: -45,32 - 1107: -47,33 - 1108: -48,33 - 1109: -50,32 - 1110: -49,31 - 1111: -48,32 - 1112: -50,33 - 1113: -51,32 - 1114: -50,31 - 1115: -51,32 - 1116: -53,33 - 1117: -52,33 - 1118: -53,32 - 1119: -54,31 - 1120: -56,33 - 1121: -56,32 - 1122: -53,32 - 1123: -52,31 - 1124: -54,31 - 1125: -57,33 - 1126: -58,32 - 1127: -57,33 - 1128: -59,32 - 1129: -58,30 - 1130: -57,29 - 1131: -57,29 - 1132: -58,29 - 1133: -59,27 - 1134: -58,25 - 1135: -57,26 - 1136: -57,28 - 1137: -58,27 - 1138: -58,23 - 1139: -58,20 - 1140: -57,20 - 1141: -57,22 - 1142: -57,23 - 1143: -59,21 - 1144: -58,20 - 1145: -57,20 - 1146: -57,21 - 1147: -58,20 - 1148: -59,18 - 1149: -58,17 - 1150: -58,16 - 1151: -57,17 - 1152: -57,19 - 1153: -58,18 - 1154: -59,16 - 1155: -58,14 - 1156: -58,14 - 1157: -54,19 - 1158: -54,20 - 1159: -55,19 - 1160: -54,18 - 1161: -53,19 - 1162: -54,20 - 1163: -59,14 - 1164: -58,13 - 1165: -57,12 - 1166: -58,11 - 1167: -58,13 - 1168: -58,11 - 1169: -59,10 - 1170: -58,12 - 1171: -58,11 - 1172: -57,8 - 1173: -58,7 - 1174: -58,7 - 1175: -57,9 - 1176: -58,9 - 1177: -58,5 - 1178: -58,4 - 1179: -58,4 - 1180: -57,5 - 1181: -59,6 - 1182: -58,3 - 1183: -57,1 - 1184: -58,-1 - 1185: -57,-2 - 1186: -58,1 - 1187: -58,2 - 1188: -59,0 - 1189: -58,-1 - 1190: -58,-3 - 1191: -58,-4 - 1192: -57,-4 - 1193: -59,-4 - 1194: -58,-4 - 1195: -57,-2 - 1196: -59,-3 - 1197: -58,-5 - 1198: -58,-7 - 1199: -57,-6 - 1200: -58,-5 - 1201: -59,-7 - 1202: -59,-8 - 1203: -57,-9 - 1204: -57,-9 - 1205: -58,-10 - 1206: -59,-10 + 1101: -47,33 + 1102: -48,33 + 1103: -50,32 + 1104: -49,31 + 1105: -48,32 + 1106: -50,33 + 1107: -51,32 + 1108: -50,31 + 1109: -51,32 + 1110: -53,33 + 1111: -52,33 + 1112: -53,32 + 1113: -54,31 + 1114: -56,33 + 1115: -56,32 + 1116: -53,32 + 1117: -52,31 + 1118: -54,31 + 1119: -57,33 + 1120: -58,32 + 1121: -57,33 + 1122: -59,32 + 1123: -58,30 + 1124: -57,29 + 1125: -57,29 + 1126: -58,29 + 1127: -59,27 + 1128: -58,25 + 1129: -57,26 + 1130: -57,28 + 1131: -58,27 + 1132: -58,23 + 1133: -58,20 + 1134: -57,20 + 1135: -57,22 + 1136: -57,23 + 1137: -59,21 + 1138: -58,20 + 1139: -57,20 + 1140: -57,21 + 1141: -58,20 + 1142: -59,18 + 1143: -58,17 + 1144: -58,16 + 1145: -57,17 + 1146: -57,19 + 1147: -58,18 + 1148: -59,16 + 1149: -58,14 + 1150: -58,14 + 1151: -54,19 + 1152: -54,20 + 1153: -55,19 + 1154: -54,18 + 1155: -53,19 + 1156: -54,20 + 1157: -59,14 + 1158: -58,13 + 1159: -57,12 + 1160: -58,11 + 1161: -58,13 + 1162: -58,11 + 1163: -59,10 + 1164: -58,12 + 1165: -58,11 + 1166: -57,8 + 1167: -58,7 + 1168: -58,7 + 1169: -57,9 + 1170: -58,9 + 1171: -58,5 + 1172: -58,4 + 1173: -58,4 + 1174: -57,5 + 1175: -59,6 + 1176: -58,3 + 1177: -57,1 + 1178: -58,-1 + 1179: -57,-2 + 1180: -58,1 + 1181: -58,2 + 1182: -59,0 + 1183: -58,-1 + 1184: -58,-3 + 1185: -58,-4 + 1186: -57,-4 + 1187: -59,-4 + 1188: -58,-4 + 1189: -57,-2 + 1190: -59,-3 + 1191: -58,-5 + 1192: -58,-7 + 1193: -57,-6 + 1194: -58,-5 + 1195: -59,-7 + 1196: -59,-8 + 1197: -57,-9 + 1198: -57,-9 + 1199: -58,-10 + 1200: -59,-10 + 1201: -75,5 + 1202: -75,5 + 1203: -73,5 + 1204: -72,5 + 1205: -70,6 + 1206: -71,5 1207: -75,5 - 1208: -75,5 - 1209: -73,5 - 1210: -72,5 - 1211: -70,6 - 1212: -71,5 - 1213: -75,5 - 1214: -73,5 - 1215: -73,6 - 1216: -75,6 - 1217: -74,4 - 1218: -70,4 - 1219: -68,5 - 1220: -67,5 - 1221: -75,5 - 1222: -74,4 - 1223: -71,5 - 1224: -66,6 - 1225: -64,6 - 1226: -66,5 - 1227: -62,4 - 1228: -61,5 - 1229: -64,5 - 1230: -66,5 - 1231: -62,5 - 1232: -68,4 - 1233: -67,6 - 1234: -54,5 - 1235: -56,6 - 1236: -53,6 - 1237: -51,6 - 1238: -50,5 - 1239: -49,4 - 1240: -46,5 - 1241: -44,5 - 1242: -45,6 - 1243: -49,6 - 1244: -51,5 - 1245: -47,5 - 1246: -44,4 - 1247: -45,5 - 1248: -46,5 - 1249: -51,5 - 1250: -47,9 - 1251: -50,9 - 1252: -53,10 - 1253: -55,9 - 1254: -52,8 - 1255: -49,9 - 1256: -48,10 - 1257: -51,10 - 1258: -54,9 - 1259: -54,8 - 1260: -50,8 - 1261: -47,8 - 1262: -47,9 - 1263: -50,12 - 1264: -51,11 - 1265: -50,11 - 1266: -50,12 - 1267: -48,12 - 1268: -47,12 - 1269: -47,11 - 1270: -47,11 - 1271: -55,28 - 1272: -54,27 - 1273: -51,28 - 1274: -49,28 - 1275: -51,29 - 1276: -53,28 - 1277: -52,27 - 1278: -49,27 - 1279: -50,29 - 1280: -52,29 - 1281: -54,28 - 1282: -54,28 - 1283: -50,27 - 1284: -49,27 - 1285: -50,29 - 1498: -42,10 - 1499: -43,10 - 1500: -42,9 - 1501: -41,8 - 1502: -41,11 - 1503: -43,11 - 2001: -59,31 - 2002: -22,35 - 2003: -20,35 - 2004: -19,35 - 2005: -19,35 - 2006: -22,35 - 2007: -23,35 - 2008: -20,35 - 2009: -16,36 - 2010: -16,37 - 2011: -17,37 - 2012: -18,35 - 2013: -16,36 - 2014: -17,38 - 2015: -18,38 - 2016: -18,36 - 2017: -16,37 - 2018: -17,40 - 2019: -18,39 - 2020: -17,38 - 2021: -17,42 - 2022: -18,41 - 2023: -17,39 - 2024: -16,42 - 2025: -17,43 - 2026: -17,41 - 2027: -16,44 - 2028: -17,45 - 2029: -18,43 - 2030: -16,45 - 2031: -17,47 - 2032: -17,45 - 2033: -16,48 - 2034: -18,49 - 2035: -17,47 - 2036: -16,49 - 2037: -18,49 - 2038: -18,47 - 2039: -16,50 - 2040: -18,49 - 2041: -16,50 - 2042: -17,50 - 2043: -17,46 - 2044: -18,45 - 2045: -17,45 - 2046: -18,47 - 2047: -17,45 - 2048: -15,47 - 2049: -16,47 - 2050: -16,45 - 2051: -14,48 - 2052: -14,48 - 2053: -13,47 - 2054: -12,48 - 2055: -13,47 - 2056: -11,48 - 2057: -13,48 - 2058: -12,46 - 2059: -11,47 - 2060: -12,48 - 2061: -13,49 - 2062: -13,47 - 2063: -12,47 - 2064: -12,47 - 2165: -22,40 - 2166: -21,41 - 2167: -22,42 - 2168: -23,42 - 2169: -23,40 - 2170: -21,39 - 2171: -20,38 - 2172: -21,38 - 2173: -22,40 - 2174: -23,39 - 2175: -23,39 - 2176: -22,41 - 2177: -23,41 - 2178: -22,40 - 2179: -22,38 - 2180: -23,38 - 2181: -23,37 - 2182: -22,37 - 2183: -21,39 - 2184: -22,39 - 2185: -21,37 - 2186: -20,39 - 2187: -21,41 - 2188: -23,42 - 2189: -22,39 - 2190: -21,39 - 2191: -21,42 - 2192: -20,42 - 2193: -22,42 - 2194: -21,41 - 2195: -20,44 - 2196: -20,45 - 2197: -21,46 - 2198: -20,48 - 2199: -22,48 - 2200: -22,46 - 2201: -20,45 - 2202: -22,44 - 2203: -22,48 - 2204: -22,48 - 2205: -23,45 - 2206: -22,44 - 2207: -21,44 - 2208: -20,46 - 2209: -21,48 - 2210: -23,48 - 2211: -23,46 - 2212: -21,44 - 2213: -21,44 - 2214: -22,45 - 2215: -20,47 - 2216: -22,48 - 2217: -22,46 - 2218: -22,44 - 2219: -20,44 - 2220: -21,48 - 2221: -22,48 - 2222: -23,47 - 2223: -22,44 - 2267: -17,53 - 2268: -18,53 - 2269: -19,53 - 2270: -18,54 - 2271: -19,56 - 2272: -19,57 - 2273: -19,57 - 2274: -17,56 - 2275: -15,57 - 2276: -15,55 - 2277: -15,54 - 2278: -16,53 - 2279: -18,53 - 2280: -18,54 - 2281: -16,56 - 2282: -16,57 - 2283: -16,55 - 2284: -16,54 - 2285: -12,55 - 2286: -13,54 - 2287: -12,53 - 2288: -11,53 - 2289: -10,55 - 2290: -12,56 - 2291: -12,54 - 2292: -11,54 - 2293: -9,54 - 2294: -7,54 - 2295: -9,53 - 2296: -10,53 - 2297: -10,56 - 2298: -12,55 - 2299: -11,54 - 2300: -8,54 - 2301: -12,57 - 2302: -13,57 - 2303: -11,56 - 2304: -11,57 - 2305: -12,57 - 2306: -6,59 - 2307: -6,58 - 2308: -6,60 - 2309: -6,60 - 2310: -12,59 - 2311: -13,59 - 2312: -13,60 - 2313: -13,62 - 2314: -14,60 - 2315: -13,60 - 2316: -13,62 - 2317: -14,63 - 2318: -15,63 - 2319: -14,63 - 2320: -15,63 - 2321: -16,62 - 2322: -15,62 - 2323: -15,64 - 2324: -17,64 - 2325: -17,63 - 2326: -16,63 - 2327: -17,65 - 2328: -19,64 - 2329: -20,63 - 2330: -17,64 - 2331: -17,66 - 2332: -19,65 - 2333: -20,63 - 2334: -21,62 - 2335: -20,63 - 2336: -21,61 - 2337: -20,60 - 2338: -22,60 - 2339: -20,62 - 2340: -19,63 - 2341: -18,64 - 2342: -19,65 - 2343: -19,65 - 2344: -17,66 - 2345: -15,65 - 2346: -14,64 - 2347: -14,64 - 2348: -19,64 - 2349: -22,63 - 2350: -22,62 - 2351: -22,60 - 2352: -22,59 - 2353: -20,59 - 2354: -19,63 - 2355: -17,64 - 2356: -15,62 - 2357: -17,59 - 2358: -18,59 - 2359: -18,60 - 2360: -19,60 - 2361: -19,59 - 2362: -18,61 - 2363: -16,60 - 2364: -15,59 - 2448: -36,-9 - 2515: -41,-8 - 2516: -41,-8 - 2517: -42,-7 - 2518: -41,-5 - 2519: -41,-4 - 2520: -40,-3 - 2521: -38,-5 - 2522: -38,-7 - 2523: -40,-7 - 2524: -41,-4 - 2525: -38,-3 - 2526: -38,-2 - 2527: -41,-3 - 2528: -40,-5 - 2529: -38,-7 - 2530: -37,-7 - 2531: -38,-4 - 2532: -38,-4 - 2533: -39,-5 - 2534: -38,-6 - 2535: -35,-8 - 2536: -33,-7 - 2537: -33,-6 - 2538: -35,-7 - 2539: -34,-9 - 2540: -33,-8 - 2541: -34,-7 - 2542: -33,-10 - 2543: -33,-9 - 2544: -35,-6 - 2545: -37,-7 - 2546: -38,-7 - 2547: -35,-7 - 2548: -37,-7 - 2549: -37,-6 - 2550: -38,-8 - 2551: -40,-7 - 2552: -41,-5 - 2553: -41,-4 - 2554: -41,-5 - 2555: -41,-7 - 2556: -40,-7 - 2557: -39,-4 - 2558: -41,-7 - 2559: -42,-7 - 2560: -42,-8 - 2561: -42,-6 - 2562: -42,-3 - 2563: -42,-2 - 2564: -40,-2 - 2565: -38,-2 - 2566: -37,-2 - 2567: -37,-3 - 2568: -37,-5 - 2569: -37,-6 - 2570: -36,-6 - 2571: -34,-6 - 2572: -32,-7 - 2573: -32,-8 - 2574: -33,-11 - 2575: -32,-11 - 2576: -33,-11 - 2577: -35,-11 - 2578: -35,-10 - 2579: -35,-9 - 2580: -36,-10 - 2581: -36,-11 - 2582: -37,-8 - 2583: -37,-8 - 2584: -38,-8 - 2585: -40,-8 - 2911: 6,12 - 2912: 6,11 - 2913: 7,11 - 2914: 7,12 - 2915: 6,13 - 2916: 7,14 - 2917: 9,15 - 2918: 10,15 - 2919: 8,15 - 2920: 7,14 - 2921: 9,14 - 2922: 10,15 - 2923: 9,17 - 2924: 7,15 - 2925: 6,14 - 2926: 9,14 - 2927: 11,16 - 2928: 10,19 - 2929: 10,20 - 2930: 9,19 - 2931: 10,18 - 2932: 11,18 - 2933: 10,20 - 2934: 10,17 - 2935: 8,15 - 2936: 7,15 - 2937: 7,13 - 2938: 8,12 - 2939: 9,11 - 2940: 9,11 - 2941: 10,12 - 2942: 11,11 - 2943: 11,11 - 2944: 11,13 - 2945: 10,13 - 2946: 3,17 - 2947: 1,16 - 2948: -1,15 - 2949: -1,14 - 2950: 2,15 - 2951: 2,17 - 2952: -1,16 - 2953: 0,14 - 2954: 3,14 - 2955: 1,16 - 2956: -1,16 - 2957: -1,15 - 2958: 3,16 - 2959: 3,17 - 2960: 4,15 - 2961: 3,14 - 2962: 1,14 - 2963: -1,15 - 2964: -2,14 - 2965: -2,17 - 2966: -2,17 - 2967: 1,17 - 2968: 2,20 - 2969: 1,19 - 2970: 2,19 - 2971: 4,20 - 2972: 2,21 - 2973: 1,19 - 2974: 3,20 - 2975: 3,22 - 2976: 2,21 - 2977: 2,21 - 2978: 2,23 - 2979: 2,26 - 2980: 2,28 - 2981: 2,31 - 2982: 2,34 - 2983: 4,34 - 2984: 4,33 - 2985: 4,33 - 2986: 4,31 - 2987: 4,29 - 2988: 4,27 - 2989: 4,25 - 2990: 4,23 - 2991: 4,21 - 2992: 4,19 - 2993: 3,19 - 2994: 3,20 - 2995: 3,21 - 2996: 3,23 - 2997: 3,25 - 2998: 3,28 - 2999: 3,30 - 3000: 3,32 - 3001: 3,33 - 3002: 3,33 - 3003: 2,34 - 3004: 2,33 - 3005: 7,29 - 3006: 7,28 - 3007: 9,28 - 3008: 11,28 - 3009: 12,29 - 3010: 10,30 - 3011: 8,30 - 3012: 9,28 - 3013: 12,30 - 3014: 11,31 - 3015: 8,31 - 3016: 9,29 - 3017: 11,29 - 3018: 10,30 - 3019: 8,25 - 3020: 7,26 - 3021: 7,24 - 3022: 7,23 - 3023: 6,22 - 3024: 7,25 - 3025: 9,25 - 3026: 9,23 - 3027: 8,22 - 3028: 10,24 - 3029: 8,25 - 3030: 7,24 - 3031: 7,23 - 3032: 6,25 - 3033: 8,36 - 3034: 8,37 - 3035: 6,36 - 3036: 7,35 - 3037: 8,34 - 3038: 10,34 - 3039: 8,35 - 3040: 6,34 - 3041: 8,33 - 3042: 11,34 - 3043: 11,36 - 3044: 10,37 - 3045: 12,35 - 3046: 11,33 - 3047: 11,35 - 3048: 9,37 - 3049: 9,35 - 3050: 11,34 - 3051: 11,37 - 3052: 9,36 - 3053: 7,36 - 3054: 7,37 - 3055: 6,35 - 3056: 7,34 - 3057: 8,33 - 3058: 9,33 - 3059: 6,33 - 3060: 12,34 - 3061: 12,37 - 3062: 11,34 - 3063: 4,40 - 3064: 2,42 - 3065: 0,41 - 3066: 1,40 - 3067: 0,40 - 3068: -1,39 - 3069: 0,37 - 3070: 4,40 - 3071: 0,38 - 3072: 0,38 - 3073: 2,36 - 3074: 4,36 - 3075: 2,38 - 3076: 0,37 - 3077: -1,37 - 3078: 1,38 - 3079: 4,39 - 3080: 2,40 - 3081: 0,39 - 3082: 2,37 - 3083: 3,40 - 3084: 2,39 - 3085: 3,36 - 3086: 2,36 - 3087: 2,39 - 3088: -1,39 - 3089: 1,37 - 3415: -2,8 - 3416: -2,8 - 3417: -2,9 - 3418: -1,10 - 3419: 1,9 - 3420: 0,8 - 3421: -1,8 - 3422: -1,9 - 3423: 1,10 - 3424: 1,9 - 3425: -2,9 - 3426: -3,9 - 3427: -3,10 - 3428: -3,10 - 3599: -60,50 - 3600: -60,51 - 3601: -61,53 - 3602: -63,54 - 3603: -64,55 - 3604: -65,54 - 3605: -65,52 - 3606: -63,51 - 3607: -61,51 - 3608: -63,50 - 3609: -65,53 - 3610: -62,53 - 3611: -62,53 - 3612: -64,52 - 3613: -60,54 - 3614: -59,55 - 3615: -62,54 - 3616: -61,54 - 3617: -58,53 - 3618: -57,53 - 3619: -54,54 - 3620: -51,54 - 3621: -52,55 - 3622: -54,56 - 3623: -55,56 - 3624: -55,54 - 3625: -53,54 - 3626: -52,56 - 3627: -54,57 - 3628: -56,57 - 3629: -57,56 - 3630: -57,55 - 3631: -56,54 - 3632: -58,55 - 3633: -58,58 - 3634: -55,57 - 3635: -53,57 - 3636: -52,57 - 3637: -51,56 - 3638: -52,55 - 3639: -54,55 - 3640: -55,57 - 3641: -54,58 - 3642: -52,57 - 3643: -49,58 - 3644: -48,58 - 3645: -47,59 - 3646: -48,61 - 3647: -49,61 - 3648: -48,58 - 3649: -47,60 - 3650: -47,62 - 3651: -49,61 - 3652: -49,59 - 3653: -48,58 - 3654: -47,59 - 3655: -48,55 - 3656: -49,55 - 3657: -47,55 - 3658: -47,55 - 3659: -47,54 - 3660: -47,54 - 3661: -48,50 - 3662: -49,50 - 3663: -48,51 - 3664: -47,51 - 3665: -61,60 - 3666: -61,60 - 3667: -60,61 - 3668: -58,61 - 3669: -56,60 - 3670: -53,60 - 3671: -53,61 - 3672: -55,61 - 3673: -59,60 - 3674: -60,60 - 3675: -57,60 - 3676: -54,60 - 3677: -53,60 - 3678: -52,62 - 3679: -52,63 - 3680: -50,63 - 3681: -49,65 - 3682: -51,65 - 3683: -52,64 - 3684: -53,63 - 3685: -52,64 - 3686: -50,65 - 3687: -47,64 - 3688: -45,64 - 3689: -43,64 - 3690: -43,65 - 3691: -43,64 - 3692: -43,62 - 3693: -42,62 - 3694: -42,64 - 3695: -44,65 - 3696: -43,62 - 3697: -43,61 - 3698: -43,63 - 3699: -47,64 - 3700: -49,65 - 3701: -50,65 - 3702: -48,64 - 3703: -48,65 - 3704: -50,64 - 3705: -53,82 - 3706: -53,82 - 3707: -53,83 - 3708: -51,84 - 3709: -51,86 - 3710: -52,89 - 3711: -53,89 - 3712: -53,88 - 3713: -52,87 - 3714: -51,89 - 3715: -53,90 - 3716: -53,89 - 3717: -53,87 - 3718: -53,85 - 3719: -52,83 - 3720: -51,83 - 3721: -51,86 - 3722: -51,89 - 3723: -52,89 - 3724: -56,89 - 3725: -56,89 - 3726: -55,88 - 3727: -55,90 - 3728: -56,90 - 3729: -55,86 - 3730: -55,86 - 3731: -56,86 - 3732: -56,86 - 3733: -55,83 - 3734: -55,84 - 3735: -56,83 - 3736: -55,82 - 3737: -55,82 - 3738: -54,83 - 3739: -54,83 - 3740: -54,89 - 3741: -57,86 - 3742: -57,86 - 3743: -58,89 - 3744: -59,89 - 3745: -61,88 - 3746: -61,87 - 3747: -61,85 - 3748: -59,83 - 3749: -59,83 - 3750: -58,86 - 3751: -60,88 - 3752: -61,88 - 3753: -61,86 - 3754: -62,85 - 3755: -62,84 - 3756: -61,83 - 3757: -60,86 - 3758: -61,88 - 3759: -62,89 - 3760: -61,87 - 3761: -60,85 - 3762: -59,84 - 3763: -59,83 - 3764: -60,84 - 3765: -62,84 - 3766: -60,87 - 3767: -60,89 - 3768: -60,89 - 3769: -58,89 - 3809: -61,58 - 3810: -62,58 - 3811: -61,57 - 3812: -61,57 - 3813: -61,58 - 3814: -61,57 - 3815: -60,57 - 4207: -58,52 - 4208: -58,50 - 4209: -58,50 - 4210: -57,50 - 4211: -57,51 - 4212: -58,49 - 4213: -57,49 - 4214: -55,52 - 4215: -55,50 - 4216: -54,49 - 4217: -54,51 - 4218: -52,52 - 4219: -52,51 - 4220: -52,50 - 4221: -51,49 - 4222: -51,51 - 4223: -51,51 - 4395: -83,33 - 4396: -82,32 - 4397: -82,31 - 4398: -82,30 - 4399: -81,30 - 4400: -80,33 - 4401: -79,33 - 4402: -78,33 - 4403: -80,32 - 4404: -82,32 - 4405: -81,31 - 4406: -79,30 - 4407: -77,30 - 4408: -77,32 - 4409: -78,31 - 4410: -78,28 - 4411: -78,29 - 4412: -79,31 - 4413: -77,32 - 4414: -80,33 - 4415: -81,30 - 4416: -80,32 - 4417: -81,33 - 4418: -67,31 - 4419: -68,31 - 4420: -68,30 - 4421: -67,28 - 4422: -67,26 - 4423: -66,26 - 4424: -64,27 - 4425: -67,27 - 4426: -65,26 - 4427: -64,25 - 4428: -65,28 - 4429: -67,28 - 4430: -68,26 - 4431: -67,25 - 4432: -67,30 - 4433: -65,30 - 4434: -64,30 - 4435: -64,32 - 4436: -65,33 - 4437: -66,33 - 4438: -65,31 - 4439: -65,34 - 4440: -66,34 - 4441: -68,34 - 4442: -70,33 - 4443: -68,33 - 4444: -70,34 - 4445: -72,35 - 4446: -74,34 - 4447: -73,33 - 4448: -71,34 - 4449: -73,35 - 4450: -75,34 - 4451: -75,33 - 4452: -75,31 - 4453: -75,30 - 4454: -74,32 - 4455: -74,32 - 4456: -74,29 - 4457: -75,26 - 4458: -75,27 - 4459: -75,27 - 4460: -75,25 - 4461: -74,23 - 4462: -74,26 - 4463: -75,26 - 4464: -76,25 - 4465: -77,25 - 4466: -76,24 - 4467: -76,26 - 4468: -76,25 - 4469: -74,23 - 4470: -74,20 - 4471: -75,19 - 4472: -75,22 - 4473: -75,23 - 4474: -74,22 - 4475: -72,23 - 4476: -72,21 - 4477: -72,20 - 4478: -70,19 - 4479: -70,22 - 4480: -70,22 - 4481: -68,23 - 4482: -65,22 - 4483: -63,22 - 4484: -64,20 - 4485: -65,19 - 4486: -66,21 - 4487: -65,23 - 4488: -68,22 - 4489: -70,21 - 4490: -70,19 - 4491: -66,19 - 4492: -66,20 - 4493: -69,20 - 4494: -71,20 - 4495: -67,20 - 4496: -66,23 - 4497: -69,23 - 4498: -70,22 - 4499: -66,22 - 4500: -65,20 - 4501: -65,19 - 4502: -68,20 - 4503: -81,23 - 4504: -83,23 - 4505: -85,23 - 4506: -86,23 - 4507: -87,26 - 4508: -86,27 - 4509: -85,27 - 4510: -82,27 - 4511: -81,26 - 4512: -80,25 - 4513: -80,23 - 4514: -80,23 - 4515: -79,26 - 4516: -80,27 - 4517: -80,24 - 4518: -81,23 - 4519: -82,22 - 4520: -84,23 - 4521: -86,25 - 4522: -86,26 - 4523: -86,26 - 4524: -86,23 - 4525: -85,30 - 4526: -86,30 - 4527: -86,29 - 4528: -85,30 - 4529: -85,21 - 4530: -86,21 - 4531: -86,20 - 4532: -85,21 - 4533: -82,19 - 4534: -82,19 - 4535: -82,20 - 4536: -83,18 - 4537: -82,18 - 4538: -80,19 - 4539: -78,19 - 4540: -79,19 - 4541: -81,19 - 4542: -80,18 - 4543: -79,18 - 4544: -77,19 - 4545: -77,21 - 4546: -77,22 - 4547: -78,21 - 4548: -77,20 - 4549: -77,21 - 4550: -77,20 - 4551: -78,18 - 4552: -80,19 - 4553: -81,20 - 4554: -82,19 - 4555: -80,20 - 4556: -80,20 - 4557: -74,17 - 4558: -75,16 - 4559: -73,15 - 4560: -73,16 - 4561: -74,17 - 4562: -73,16 - 4563: -72,15 - 4564: -72,16 - 4565: -74,17 - 4566: -74,17 - 4575: -62,42 - 4576: -63,42 - 4577: -64,41 - 4578: -64,39 - 4579: -64,41 - 4580: -65,40 - 4581: -65,39 - 4582: -64,40 - 4583: -63,41 - 4584: -61,41 - 4585: -61,38 - 4586: -62,38 - 4587: -61,41 - 4588: -63,41 - 4589: -63,39 - 4590: -62,39 - 4591: -63,42 - 4592: -64,41 - 4593: -64,41 - 4594: -63,39 - 4595: -61,40 - 4596: -62,42 - 4597: -64,41 - 4598: -65,40 - 4599: -65,39 - 4600: -65,40 - 4601: -64,41 - 4602: -62,42 - 4603: -64,44 - 4604: -65,44 - 4605: -64,44 - 4606: -61,45 - 4607: -63,45 - 4608: -64,45 - 4609: -64,44 - 4610: -62,44 - 4611: -62,45 - 4612: -64,45 - 4672: -73,49 - 4673: -73,48 - 4674: -73,47 - 4675: -71,48 - 4676: -72,49 - 4677: -72,48 - 4678: -70,49 - 4679: -70,49 - 4680: -70,48 - 4681: -69,47 - 4682: -71,48 - 4683: -72,48 - 4684: -72,49 - 4726: -67,49 - 4727: -68,49 - 4728: -67,50 - 4729: -67,50 - 4730: -66,48 - 4731: -67,47 - 4732: -66,46 - 4733: -66,47 - 4734: -67,46 - 4739: -67,45 - 4740: -67,44 - 4741: -68,42 - 4742: -68,40 - 4743: -68,38 - 4744: -67,38 - 4745: -67,43 - 4746: -67,46 - 4747: -67,45 - 4748: -67,41 - 4749: -67,37 - 4750: -68,37 - 4751: -70,37 - 4752: -72,37 - 4753: -74,37 - 4754: -76,37 - 4755: -76,39 - 4756: -76,41 - 4757: -76,43 - 4758: -76,45 - 4759: -76,48 - 4760: -75,48 - 4761: -75,45 - 4762: -75,43 - 4763: -75,43 - 4764: -76,47 - 4765: -76,50 - 4766: -76,52 - 4767: -76,50 - 4768: -74,52 - 4769: -74,52 - 4770: -72,51 - 4771: -72,53 - 4772: -72,52 - 4773: -71,51 - 4774: -70,53 - 4775: -71,55 - 4776: -72,55 - 4777: -72,52 - 4778: -72,52 - 4779: -71,55 - 4780: -72,55 - 4781: -72,53 - 4782: -70,51 - 4783: -70,53 - 4784: -70,55 - 4785: -71,56 - 4786: -71,55 - 4787: -70,54 - 4817: -76,54 - 4818: -77,54 - 4819: -78,54 - 4820: -78,53 - 4821: -68,57 - 4822: -68,56 - 4823: -68,55 - 4824: -68,52 - 4825: -68,50 - 4826: -61,35 - 4827: -62,36 - 4828: -62,36 - 4829: -64,36 - 4830: -67,36 - 4831: -68,36 - 4832: -68,38 - 4833: -68,40 - 4834: -68,39 - 4835: -71,43 - 4836: -70,43 - 4837: -71,44 - 4838: -72,44 - 4839: -73,44 - 4840: -71,43 - 4841: -71,41 - 4842: -72,40 - 4843: -72,42 - 4844: -72,42 - 4845: -73,40 - 4846: -72,39 - 4847: -70,39 - 4848: -70,41 - 4849: -71,43 - 4850: -72,44 - 4851: -72,44 - 4852: -73,43 - 4853: -61,33 - 4854: -60,33 - 4855: -62,33 - 4856: -61,32 - 4857: -60,31 - 4858: -60,32 - 4859: -61,33 - 4860: -62,32 - 4861: -62,31 - 4862: -61,31 - 4951: -69,16 - 4952: -71,17 - 4953: -71,16 - 4954: -70,15 - 4955: -69,16 - 4956: -71,16 - 4957: -71,19 - 4958: -72,20 - 4959: -71,22 - 4960: -71,23 - 4961: -72,21 - 4962: -69,19 - 4963: -71,21 - 4964: -71,22 - 4965: -72,23 - 4966: -72,23 - 4967: -68,22 - 4968: -69,23 - 4969: -69,22 - 4970: -65,22 - 4971: -64,23 - 4972: -64,22 - 4973: -65,19 - 4974: -66,19 - 4975: -68,19 - 4976: -68,19 - 4977: -70,19 - 4978: -72,20 - 4979: -70,20 - 4980: -66,19 - 4981: -63,19 - 4982: -64,20 - 4983: -64,21 - 4984: -68,20 - 4985: -70,22 - 5171: -84,32 - 5172: -85,33 - 5173: -84,35 - 5174: -84,38 - 5175: -84,40 - 5176: -84,43 - 5177: -83,45 - 5178: -82,46 - 5179: -80,46 - 5180: -80,45 - 5181: -82,46 - 5182: -84,45 - 5183: -82,43 - 5184: -81,44 - 5185: -84,45 - 5186: -85,46 - 5187: -82,44 - 5188: -80,43 - 5189: -82,42 - 5190: -84,42 - 5191: -83,41 - 5192: -79,42 - 5193: -80,43 - 5194: -83,40 - 5195: -81,39 - 5196: -82,40 - 5197: -83,41 - 5198: -82,40 - 5199: -80,39 - 5200: -83,39 - 5201: -84,38 - 5202: -82,36 - 5203: -80,35 - 5204: -80,36 - 5205: -82,39 - 5206: -81,41 - 5207: -80,42 - 5208: -81,44 - 5209: -64,14 - 5210: -65,14 - 5211: -65,13 - 5212: -65,11 - 5213: -64,10 - 5214: -64,13 - 5215: -65,14 - 5216: -65,12 - 5217: -64,11 - 5218: -62,12 - 5219: -62,14 - 5220: -63,11 - 5221: -61,11 - 5222: -61,13 - 5223: -62,14 - 5224: -62,12 - 5225: -62,10 - 5257: -67,8 - 5258: -66,8 - 5259: -63,8 - 5260: -62,8 - 5261: -62,8 - 5262: -65,8 - 5263: -67,8 - 5264: -68,9 - 5265: -68,12 - 5266: -67,13 - 5267: -67,13 - 5268: -67,15 - 5269: -67,16 - 5270: -66,17 - 5271: -63,16 - 5272: -62,16 - 5273: -62,16 - 5274: -64,17 - 5275: -64,16 - 5276: -62,17 - 5277: -61,19 - 5278: -62,19 - 5279: -61,20 - 5280: -61,21 - 5281: -61,23 - 5282: -62,22 - 5283: -61,23 - 5284: -61,24 - 5285: -62,26 - 5286: -62,27 - 5287: -62,28 - 5288: -61,36 - 5289: -61,36 - 5290: -55,44 - 5291: -45,50 - 5292: -45,51 - 5293: -45,53 - 5294: -44,55 - 5295: -43,55 - 5296: -42,55 - 5297: -41,55 - 5298: -41,54 - 5299: -39,55 - 5300: -38,55 - 5301: -39,55 - 5302: -38,54 - 5303: -35,54 - 5304: -34,55 - 5305: -35,55 - 5306: -33,54 - 5307: -32,54 - 5308: -33,53 - 5309: -33,51 - 5310: -32,49 - 5311: -31,49 - 5312: -30,50 - 5313: -30,50 - 5314: -28,50 - 5315: -27,50 - 5316: -26,50 - 5317: -26,49 - 5318: -24,51 - 5319: -24,51 - 5320: -22,51 - 5321: -20,51 - 5322: -20,51 - 5323: -23,51 - 5324: -26,50 - 5325: -26,48 - 5326: -25,46 - 5327: -25,48 - 5328: -26,47 - 5329: -26,45 - 5330: -25,43 - 5331: -25,44 - 5332: -26,44 - 5333: -26,42 - 5334: -25,40 - 5335: -25,41 - 5336: -26,41 - 5337: -26,38 - 5338: -25,37 - 5339: -25,38 - 5340: -26,38 - 5341: -26,36 - 5342: -26,36 - 5343: -26,39 - 5344: -26,41 - 5345: -25,39 - 5346: -25,39 - 5347: -26,40 - 5348: -26,40 - 5349: -26,41 - 5350: -26,43 - 5351: -26,43 - 5352: -13,51 - 5353: -12,51 - 5354: -10,51 - 5355: -8,51 - 5356: -8,50 - 5357: -9,49 - 5358: -9,47 - 5359: -8,47 - 5360: -6,47 - 5361: -4,47 - 5362: -5,46 - 5363: -5,46 - 5364: -3,47 - 5365: -2,47 - 5366: -2,46 - 5367: 0,46 - 5368: 0,47 - 5369: 0,46 - 5370: 2,47 - 5371: 2,47 - 5372: 1,46 - 5373: 4,46 - 5374: 4,47 - 5375: 4,47 - 5376: 5,46 - 5377: 7,47 - 5378: 7,48 - 5379: 7,48 - 5380: 9,48 - 5381: 10,48 - 5382: 11,48 - 5383: 10,48 - 5384: 13,48 - 5385: 14,48 - 5386: 15,48 - 5387: 16,48 - 5388: 15,47 - 5389: 14,45 - 5390: 15,46 - 5391: 14,45 - 5392: 15,45 - 5393: 15,46 - 5394: 14,44 - 5395: 14,42 - 5396: 15,42 - 5397: 15,42 - 5398: 15,41 - 5399: 15,40 - 5400: 14,41 - 5401: 14,39 - 5402: 14,39 - 5403: 12,40 - 5404: 10,39 - 5405: 12,39 - 5406: 11,40 - 5407: 9,40 - 5408: 8,39 - 5409: 8,40 - 5410: 8,39 - 5411: 8,39 - 5412: 7,40 - 5413: 7,41 - 5414: 7,43 - 5415: 6,45 - 5416: 6,44 - 5417: 6,46 - 5418: 6,45 - 5419: 6,45 - 5420: 3,47 - 5421: 2,46 - 5422: 2,46 - 5423: 1,47 - 5424: 1,47 - 5425: 0,46 - 5426: -3,45 - 5427: -3,43 - 5428: -3,42 - 5429: -4,44 - 5430: -4,43 - 5431: -4,42 - 5432: -3,40 - 5433: -3,41 - 5434: -4,40 - 5435: -4,40 - 5436: -4,44 - 5437: -4,44 - 5438: -3,40 - 5439: -3,38 - 5440: -3,37 - 5441: -5,36 - 5442: -5,36 - 5443: -4,37 - 5444: -6,36 - 5445: -7,36 - 5446: -8,37 - 5447: -9,36 - 5448: -9,37 - 5449: -10,36 - 5450: -9,36 - 5451: -8,37 - 5452: -9,36 - 5453: 14,37 - 5454: 14,37 - 5455: 14,35 - 5456: 15,36 - 5457: 15,36 - 5458: 14,33 - 5459: 15,35 - 5460: 15,34 - 5461: 15,34 - 5462: 15,34 - 5463: 14,34 - 5464: 17,34 - 5465: 20,35 - 5466: 18,35 - 5467: 17,34 - 5468: 19,34 - 5469: 19,35 - 5470: 20,35 - 5471: 22,35 - 5472: 22,34 - 5473: 23,34 - 5474: 23,33 - 5475: 21,35 - 5476: 20,35 - 5477: 18,35 - 5478: 23,32 - 5479: 22,31 - 5480: 22,30 - 5481: 23,31 - 5482: 22,30 - 5483: 23,28 - 5484: 23,27 - 5485: 23,27 - 5486: 22,26 - 5487: 23,25 - 5488: 23,23 - 5489: 23,22 - 5490: 22,23 - 5491: 22,24 - 5492: 22,24 - 5493: 22,23 - 5494: 21,26 - 5495: 18,26 - 5496: 17,25 - 5497: 19,25 - 5498: 16,26 - 5499: 15,26 - 5500: 14,25 - 5501: 15,23 - 5502: 14,22 - 5503: 14,22 - 5504: 13,20 - 5505: 14,21 - 5506: 13,21 - 5507: 14,19 - 5508: 14,18 - 5509: 14,18 - 5510: 14,18 - 5511: 13,16 - 5512: 13,16 - 5513: 13,17 - 5514: 14,16 - 5515: 14,15 - 5516: 13,14 - 5517: 13,14 - 5518: 14,13 - 5519: 14,13 - 5520: 13,12 - 5521: 14,12 - 5522: 13,11 - 5523: 14,10 - 5524: 13,11 - 5525: 13,9 - 5526: 14,9 - 5527: 14,8 - 5528: 12,8 - 5529: 12,8 - 5530: 11,8 - 5531: 10,8 - 5532: 10,8 - 5533: 9,9 - 5534: 8,9 - 5535: 7,9 - 5536: 6,9 - 5537: 4,9 - 5538: 4,9 - 5539: 4,10 - 5540: 4,12 - 5541: 3,12 - 5542: 2,12 - 5543: 1,12 - 5544: -1,12 - 5545: -1,12 - 5546: -3,12 - 5547: -4,12 - 5548: -5,12 - 5549: -6,11 - 5550: -6,10 - 5551: -7,10 - 5552: -6,11 - 5553: -6,14 - 5554: -5,14 - 5555: -4,16 - 5556: -5,17 - 5557: -7,17 - 5558: -8,17 - 5559: -8,17 - 5560: -9,17 - 5561: -9,17 - 5562: -7,18 - 5563: -7,19 - 5564: -7,21 - 5565: -7,22 - 5566: -7,23 - 5567: -8,25 - 5568: -9,25 - 5569: -9,24 - 5570: -8,24 - 5571: -8,25 - 5572: -9,25 - 5573: -10,25 - 5574: -8,15 - 5575: -9,15 - 5576: -10,14 - 5577: -10,14 - 5578: -8,12 - 5579: -9,12 - 5580: -9,12 - 5581: -10,11 - 5582: -9,8 - 5583: -9,9 - 5584: -10,9 - 5585: -9,8 - 5586: -21,9 - 5587: -20,9 - 5588: -20,10 - 5589: -21,12 - 5590: -21,11 - 5591: -20,13 - 5592: -20,14 - 5593: -21,16 - 5594: -21,14 - 5595: -20,18 - 5596: -21,17 - 5597: -21,16 - 5598: -20,18 - 5599: -17,20 - 5600: -16,20 - 5601: -18,20 - 5602: -20,20 - 5603: -20,20 - 5604: -21,20 - 5605: -20,22 - 5606: -20,23 - 5607: -21,24 - 5608: -20,23 - 5609: -20,26 - 5610: -20,27 - 5611: -20,28 - 5612: -21,26 - 5613: -21,24 - 5614: -20,21 - 5615: -22,20 - 5616: -22,22 - 5617: -23,22 - 5618: -24,21 - 5619: -23,21 - 5620: -25,21 - 5621: -27,21 - 5622: -28,21 - 5623: -29,21 - 5624: -30,21 - 5625: -31,20 - 5626: -31,20 - 5627: -32,18 - 5628: -31,17 - 5629: -31,15 - 5630: -31,15 - 5631: -31,13 - 5632: -31,13 - 5633: -32,12 - 5634: -33,12 - 5635: -34,12 - 5636: -34,11 - 5637: -34,11 - 5638: -34,12 - 5639: -34,10 - 5640: -34,9 - 5641: -35,12 - 5642: -34,12 - 5643: -33,13 - 5644: -32,13 - 5645: -31,13 - 5646: -31,14 - 5647: -45,9 - 5648: -45,9 - 5649: -45,10 - 5650: -45,11 - 5651: -45,12 - 5652: -45,13 - 5653: -45,14 - 5654: -46,14 - 5655: -48,14 - 5656: -49,14 - 5657: -50,14 - 5658: -51,14 - 5659: -51,14 - 5660: -51,16 - 5661: -51,17 - 5662: -51,18 - 5663: -51,19 - 5664: -51,20 - 5665: -51,21 - 5666: -51,21 - 5667: -49,21 - 5668: -48,21 - 5669: -47,21 - 5670: -46,21 - 5671: -46,21 - 5672: -42,20 - 5673: -42,20 - 5674: -45,21 - 5675: -46,20 - 5676: -45,20 - 5677: -42,18 - 5678: -42,18 - 5679: -42,17 - 5680: -43,18 - 5681: -42,17 - 5682: -42,17 - 5683: -46,18 - 5684: -45,17 - 5685: -45,17 - 5686: -46,18 - 5687: -48,18 - 5688: -48,17 - 5689: -49,19 - 5690: -49,18 - 5691: -49,17 - 5692: -48,19 - 5693: -45,21 - 5694: -45,22 - 5695: -45,23 - 5696: -46,23 - 5697: -45,24 - 5698: -46,25 - 5699: -46,25 - 5700: -45,26 - 5701: -46,27 - 5702: -45,27 - 5703: -46,28 - 5704: -46,27 - 5705: -25,-12 - 5706: -25,-11 - 5707: -26,-12 - 5708: -26,-13 - 5709: -24,-13 - 5710: -24,-12 - 5711: -25,-13 - 5712: -25,-14 - 5713: -24,-14 - 5714: -24,-12 - 5715: -25,-12 - 5716: -26,-13 - 5717: -24,-13 - 5718: -25,-11 - 5719: -26,-13 - 5720: -25,-13 - 5721: -25,-11 - 5722: -26,-12 - 5723: -26,-13 - 5724: -25,-14 - 5725: -26,-14 - 5765: -10,57 - 5766: -10,57 - 5767: -9,57 - 5768: -8,57 - 5769: -8,57 - 5770: -10,57 - 5771: -11,57 - 5772: -8,56 - 5773: -7,56 - 5774: -7,55 - 5775: -8,56 - 5776: -8,56 - 5777: -8,56 - 5778: -7,56 - 5779: -9,59 - 5780: -8,59 - 5781: -9,59 - 5782: -10,59 - 5783: -10,60 - 5784: -10,61 - 5785: -9,61 - 5786: -9,60 - 5787: -8,59 - 5788: -8,60 - 5789: -8,61 - 5790: -10,61 - 5791: -10,60 - 5792: -9,59 - 5793: -8,59 - 5794: -9,61 - 5795: -10,61 - 5796: -10,60 - 5797: -9,60 - 5798: -8,61 - 5799: -10,60 - 5800: -8,59 - 5801: -8,60 - 5802: -9,60 - 5803: -8,61 - 5804: -10,61 - 5805: -14,61 - 5806: -14,61 - 5807: -17,62 - 5808: -19,62 - 5809: -18,63 - 5810: -18,64 - 5811: -18,65 - 5812: -16,65 - 5813: -18,66 - 5814: -20,65 - 5815: -19,66 - 5816: -21,64 - 5817: -15,66 - 5818: -14,65 - 5819: -16,66 - 5820: -13,64 - 5821: -14,59 - 5822: -21,59 - 5823: -22,59 - 5824: -22,61 - 5825: -22,62 - 5826: -16,64 - 5827: -18,62 - 5828: -27,53 - 5829: -27,53 - 5830: -51,62 - 5831: -51,62 - 5832: -51,63 - 5833: -51,64 - 5834: -50,64 - 5835: -49,64 - 5836: -49,64 - 5837: -51,64 - 5838: -53,65 - 5839: -53,65 - 5840: -44,63 - 5841: -44,62 - 5842: -44,62 - 5843: -56,61 - 5844: -54,61 - 5845: -54,61 - 5846: -58,56 - 5847: -51,55 - 5848: -51,54 - 5849: -51,53 - 5850: -52,53 - 5851: -54,53 - 5852: -55,53 - 5853: -57,53 - 5854: -57,53 - 5855: -52,53 - 5856: -54,54 - 5857: -55,54 - 5858: -55,56 - 5859: -56,56 - 5860: -57,57 - 5861: -57,57 - 5862: -57,34 - 5863: -58,34 - 5864: -59,35 - 5865: -59,35 - 5866: -58,35 - 5867: -58,35 - 5868: -56,35 - 5869: -57,36 - 5870: -58,36 - 5871: -56,37 - 5872: -58,37 - 5873: -58,37 - 5874: -58,36 - 5875: -57,37 - 5876: -58,38 - 5877: -59,37 - 5878: -57,37 - 5879: -58,39 - 5880: -59,38 - 5881: -58,37 - 5882: -57,38 - 5883: -58,40 - 5884: -59,40 - 5885: -59,41 - 5886: -59,44 - 5887: -59,45 - 5888: -59,46 - 5889: -57,46 - 5890: -57,45 - 5891: -57,42 - 5892: -57,41 - 5893: -57,40 - 5894: -57,38 - 5895: -58,39 - 5896: -58,40 - 5897: -58,42 - 5898: -58,43 - 5899: -58,45 - 5900: -58,45 - 5901: -58,46 - 5902: -58,46 - 5903: -59,43 - 5904: -59,42 - 5905: -58,42 - 5906: -59,39 - 5907: -59,38 - 5908: -57,39 - 5909: -57,40 - 5910: -58,41 - 5911: -59,41 - 5912: -59,43 - 5913: -57,43 - 5914: -57,44 - 5915: -59,46 - 5916: -59,46 - 5917: -59,47 - 5918: -58,47 - 5919: -56,47 - 5920: -55,47 - 5921: -55,47 - 5922: -56,47 - 5923: -56,46 - 5924: -58,47 - 5925: -53,47 - 5926: -53,47 - 5927: -55,47 - 5928: -54,46 - 5929: -53,46 - 5930: -52,46 - 5931: -54,47 - 5932: -54,46 - 5933: -51,47 - 5934: -52,46 - 5935: -50,46 - 5936: -49,46 - 5937: -49,47 - 5938: -51,47 - 5939: -50,46 - 5940: -48,46 - 5941: -48,47 - 5942: -48,47 - 5943: -47,47 - 5944: -47,48 - 5945: -48,49 - 5946: -49,49 - 5947: -49,48 - 5948: -50,47 - 5949: -50,46 - 5950: -48,47 - 5951: -48,48 - 5952: -47,49 - 5953: -52,46 - 5954: -50,46 - 5955: -48,46 - 5956: -48,46 - 5957: -48,48 - 5958: -47,47 - 5959: -47,46 - 5960: -48,44 - 5961: -49,45 - 5962: -49,44 - 5963: -48,43 - 5964: -47,45 - 5965: -47,45 - 5966: -49,45 - 5967: -50,44 - 5968: -50,43 - 5969: -49,43 - 5970: -50,45 - 5971: -49,44 - 5972: -49,42 - 5973: -48,42 - 5974: -47,43 - 5975: -47,44 - 5976: -47,42 - 5977: -47,41 - 5978: -48,41 - 5979: -49,40 - 5980: -48,40 - 5981: -47,41 - 5982: -49,42 - 5983: -49,42 - 5984: -49,40 - 5985: -48,39 - 5986: -47,38 - 5987: -47,39 - 5988: -48,39 - 5989: -49,38 - 5990: -49,37 - 5991: -48,35 - 5992: -47,36 - 5993: -48,37 - 5994: -48,38 - 5995: -48,38 - 5996: -48,36 - 5997: -47,35 - 5998: -47,35 - 5999: -48,36 - 6000: -49,35 - 6001: -49,35 - 6002: -49,38 - 6003: -48,39 - 6004: -48,40 - 6005: -49,42 - 6006: -49,41 - 6007: -47,39 - 6008: -49,39 - 6009: -47,37 - 6010: -49,34 - 6011: -48,34 - 6012: -47,34 - 6013: -47,34 - 6014: -48,34 - 6015: -10,34 - 6016: -11,33 - 6017: -11,32 - 6018: -11,31 - 6019: -13,30 - 6020: -14,31 - 6021: -14,29 - 6022: -14,29 - 6023: -11,32 - 6024: -10,33 - 6025: -9,33 - 6026: -10,34 - 6027: -11,34 - 6028: -10,34 - 6029: -8,34 - 6030: -7,33 - 6031: -7,32 - 6032: -8,31 - 6033: -10,31 - 6034: -12,30 - 6035: -13,29 - 6036: -12,28 - 6037: -14,25 - 6038: -14,23 - 6039: -14,22 - 6040: -12,21 - 6041: -12,22 - 6042: -12,20 - 6043: -12,19 - 6044: -14,21 - 6045: -14,21 - 6046: -13,20 - 6047: -13,22 - 6048: -14,24 - 6049: -14,25 - 6050: -14,15 - 6051: -14,14 - 6052: -14,13 - 6053: -13,13 - 6054: -12,15 - 6055: -13,16 - 6056: -14,17 - 6057: -13,16 - 6058: -13,16 - 6059: -14,16 - 6060: -14,19 - 6061: -13,21 - 6062: -13,23 - 6063: -13,25 - 6064: -13,11 - 6065: -12,13 - 6066: -13,12 - 6067: -13,12 - 6068: -13,14 - 6069: -12,6 - 6070: -13,6 - 6071: -14,6 - 6072: -13,4 - 6073: -12,5 - 6074: -12,5 - 6075: -13,5 - 6076: -14,4 - 6077: -10,5 - 6078: -9,5 - 6079: -10,4 - 6080: -9,4 - 6081: -8,4 - 6082: -8,4 - 6083: -8,4 - 6084: -6,4 - 6085: -7,6 - 6086: -8,6 - 6087: -6,7 - 6088: -4,6 - 6089: -3,6 - 6090: -3,5 - 6091: -3,4 - 6092: -4,4 - 6093: -2,5 - 6094: -2,5 - 6095: -3,4 - 6096: -1,5 - 6097: 1,6 - 6098: 0,5 - 6099: 0,5 - 6100: 2,4 - 6101: 4,5 - 6102: 2,6 - 6103: 2,5 - 6104: 4,4 - 6105: 4,5 - 6106: 3,6 - 6107: 3,4 - 6108: 4,5 - 6109: 3,5 - 6110: 4,6 - 6111: 7,4 - 6112: 6,4 - 6113: 7,4 - 6114: 8,4 - 6115: 5,3 - 6116: 4,3 - 6117: 9,4 - 6118: 10,4 - 6119: 10,4 - 6120: 10,5 - 6121: 11,4 - 6122: 11,6 - 6123: 11,6 - 6124: 14,5 - 6125: 15,5 - 6126: 17,6 - 6127: 18,6 - 6128: 17,5 - 6129: 18,6 - 6130: 20,6 - 6131: 21,6 - 6132: 22,6 - 6133: 23,5 - 6134: 23,5 - 6135: 22,4 - 6136: 23,4 - 6137: 21,5 - 6138: 19,6 - 6139: 25,5 - 6140: 25,6 - 6141: 25,7 - 6142: 26,6 - 6143: 26,5 - 6144: 28,7 - 6145: 29,7 - 6146: 28,8 - 6147: 27,9 - 6148: 26,9 - 6149: 26,9 - 6150: 26,10 - 6151: 25,11 - 6152: 25,12 - 6153: 26,13 - 6154: 26,14 - 6155: 26,15 - 6156: 25,16 - 6157: 28,13 - 6158: 28,13 - 6159: 28,14 - 6160: 28,16 - 6161: 27,17 - 6162: 27,18 - 6163: 28,19 - 6164: 27,19 - 6165: 25,20 - 6166: 27,20 - 6167: 27,21 - 6168: 28,21 - 6169: 28,20 - 6170: 26,22 - 6171: 28,24 - 6172: 28,24 - 6173: 26,25 - 6174: 25,25 - 6175: 25,25 - 6176: 25,23 - 6177: 26,23 - 6178: 28,11 - 6179: 28,10 - 6180: 28,12 - 6181: 28,12 - 6189: -22,55 - 6190: -23,54 - 6191: -22,54 - 6192: -21,54 - 6193: -21,55 - 6194: -21,56 - 6195: -22,57 - 6196: -22,57 - 6197: -23,57 - 6198: -23,55 - 6199: -23,54 - 6200: -22,55 - 6201: -22,56 - 6202: -22,57 - 6203: -23,56 - 6204: -23,55 - 6205: -23,54 - 6206: -23,54 - 6207: -23,56 - 6208: -23,57 - 6209: -22,57 - 6210: -21,57 - 6211: -24,54 - 6212: -24,53 - 6213: -23,53 - 6214: -21,53 - 6215: -21,53 - 6216: -24,54 - 6217: -24,55 - 6218: -24,56 - 6219: -24,56 - 6220: -21,54 - 6221: -21,54 - 6222: -21,55 - 6223: -22,57 - 6224: -23,57 - 6225: -23,55 - 6226: -51,33 - 6227: -49,32 - 6228: -51,31 - 6229: -55,31 - 6230: -54,32 - 6231: -55,33 - 6232: -57,25 - 6233: -58,22 - 6234: -58,21 - 6235: -59,20 - 6236: -57,18 - 6237: -59,17 - 6238: -59,12 - 6239: -57,10 - 6240: -58,10 - 6241: -59,8 - 6242: -59,9 - 6243: -59,4 - 6244: -59,5 - 6245: -57,4 - 6246: -61,4 - 6247: -56,4 - 6248: -65,4 - 6249: -67,4 - 6250: -69,5 - 6251: -69,4 - 6252: -70,5 - 6253: -72,6 - 6254: -74,5 - 6255: -75,4 - 6256: -57,0 - 6257: -58,0 - 6258: -59,-2 - 6259: -59,-1 - 6260: -58,-2 - 6261: -58,-6 - 6262: -57,-5 - 6263: -57,-8 - 6264: -58,-8 - 6265: -59,-9 - 6266: -57,-10 - 6267: -52,5 - 6268: -52,6 - 6269: -50,6 - 6270: -51,4 - 6271: -49,3 - 6272: -50,3 - 6273: -48,6 - 6274: -46,6 - 6275: -48,5 - 6276: -47,6 - 6277: -44,6 - 6278: -43,5 - 6279: -43,6 - 6280: -42,6 - 6281: -39,6 - 6282: -34,7 - 6283: -39,4 - 6284: -35,4 - 6285: -37,3 - 6286: -38,3 - 6287: -39,3 - 6288: -41,3 - 6289: -35,3 - 6290: -33,4 - 6291: -29,4 - 6292: -28,4 - 6293: -39,4 - 6294: -38,4 - 6295: -36,5 - 6296: -37,6 - 6297: -39,6 - 6298: -40,5 - 6299: -39,4 - 6300: -37,4 - 6301: -37,6 - 6302: -38,6 - 6303: -38,5 - 6304: -38,7 - 6305: -38,8 - 6306: -41,5 - 6307: -42,5 - 6308: -32,5 - 6309: -32,5 - 6310: -34,6 - 6311: -33,6 - 6312: -33,5 - 6313: -38,18 - 6314: -39,16 - 6315: -37,14 - 6316: -39,13 - 6317: -38,23 - 6318: -38,23 - 6319: -39,26 - 6320: -39,26 - 6321: -39,27 - 6322: -38,26 - 6323: -37,24 - 6324: -37,25 - 6325: -38,24 - 6326: -37,29 - 6327: -38,30 - 6328: -38,31 - 6329: -37,31 - 6330: -38,30 - 6331: -37,32 - 6332: -39,32 - 6333: -40,33 - 6334: -41,32 - 6335: -42,32 - 6336: -41,33 - 6337: -39,33 - 6338: -38,32 - 6339: -38,31 - 6340: -37,31 - 6341: -35,32 - 6342: -35,33 - 6343: -36,33 - 6344: -39,32 - 6345: -39,32 - 6346: -38,32 - 6347: -37,33 - 6348: -39,33 - 6349: -39,33 - 6350: -38,31 - 6351: -37,31 - 6352: -36,32 - 6353: -35,32 - 6354: -36,31 - 6355: -34,33 - 6356: -33,32 - 6357: -31,31 - 6358: -30,31 - 6359: -29,32 - 6360: -28,32 - 6361: -38,30 - 6362: -39,30 - 6363: -39,28 - 6364: -37,30 - 6365: -39,28 - 6366: -39,27 - 6367: -28,35 - 6368: -29,35 - 6369: -29,36 - 6370: -29,37 - 6371: -28,37 - 6372: -28,37 - 6373: -28,36 - 6374: -28,37 - 6375: -29,38 - 6376: -29,38 - 6377: -29,36 - 6378: -29,35 - 6379: -29,35 - 6380: -28,37 - 6381: -28,38 - 6382: -31,39 - 6383: -31,40 - 6384: -32,40 - 6385: -33,39 - 6386: -32,39 - 6387: -32,40 - 6388: -33,40 - 6389: -32,38 - 6390: -31,39 - 6391: -32,40 - 6392: -33,38 - 6393: -32,38 - 6394: -31,39 - 6395: -33,39 - 6396: -33,37 - 6397: -32,36 - 6398: -31,37 - 6399: -33,37 - 6400: -33,35 - 6401: -31,35 - 6402: -31,37 - 6403: -33,36 - 6404: -32,35 - 6405: -32,37 - 6406: -32,36 - 6407: -33,35 - 6408: -33,37 - 6409: -33,36 - 6410: -33,35 - 6411: -34,36 - 6412: -34,38 - 6414: -51,35 - 6415: -52,36 - 6416: -53,35 - 6417: -51,34 - 6418: -52,34 - 6419: -52,34 - 6420: -52,35 - 6421: -51,35 - 6422: -53,36 - 6423: -54,35 - 6424: -54,36 - 6425: -53,37 - 6426: -52,38 - 6427: -52,38 - 6428: -51,37 - 6429: -51,36 - 6430: -52,36 - 6431: -52,37 - 6432: -52,36 - 6433: -53,35 - 6434: -53,36 - 6435: -53,38 - 6436: -53,40 - 6437: -53,40 - 6438: -51,40 - 6439: -52,41 - 6440: -53,41 - 6441: -53,40 - 6442: -51,40 - 6443: -52,41 - 6444: -53,41 - 6445: -53,38 - 6446: -53,38 - 6447: -54,37 - 6448: -54,36 - 6449: -53,36 - 6450: -52,38 - 6451: -51,38 - 6452: -51,37 - 6453: -52,36 - 6454: -53,36 - 6455: -53,35 - 6456: -45,47 - 6457: -45,46 - 6458: -45,45 - 6459: -45,44 - 6460: -45,43 - 6461: -45,42 - 6462: -45,41 - 6463: -44,41 - 6464: -44,42 - 6465: -44,43 - 6466: -44,45 - 6467: -44,46 - 6468: -43,46 - 6469: -43,46 - 6470: -43,46 - 6471: -43,44 - 6472: -43,43 - 6473: -43,42 - 6474: -43,42 - 6475: -43,41 - 6476: -42,41 - 6477: -42,43 - 6478: -42,44 - 6479: -42,45 - 6480: -42,46 - 6481: -42,47 - 6482: -43,47 - 6483: -43,46 - 6484: -43,46 - 6485: -42,46 - 6486: -41,46 - 6487: -41,46 - 6488: -41,44 - 6489: -41,42 - 6490: -41,42 - 6491: -41,41 - 6492: -41,44 - 6493: -41,46 - 6494: -41,47 - 6495: -42,47 - 6496: -43,43 - 6497: -43,42 - 6498: -44,42 - 6499: -44,44 - 6500: -44,45 - 6501: -43,45 - 6502: -43,44 - 6503: -44,43 - 6504: -43,43 - 6505: -42,45 - 6506: -43,45 - 6507: -44,45 - 6508: -43,46 - 6509: -45,47 - 6510: -45,44 - 6511: -45,42 - 6512: -45,41 - 6513: -44,41 - 6514: -43,41 - 6515: -42,42 - 6516: -42,43 - 6517: -43,45 - 6518: -43,45 - 6519: -44,44 - 6520: -45,44 - 6521: -45,43 - 6522: -45,41 - 6523: -44,41 - 6524: -43,42 - 6525: -44,45 - 6526: -44,46 - 6527: -45,45 - 6528: -44,44 - 6529: -43,43 - 6530: -42,45 - 6531: -44,46 - 6532: -44,46 - 6533: -45,45 - 6534: -45,43 - 6535: -43,42 - 6536: -42,42 - 6537: -41,44 - 6538: -42,46 - 6539: -42,47 - 6540: -44,47 - 6541: -40,44 - 6542: -40,45 - 6543: -40,46 - 6544: -39,46 - 6545: -38,47 - 6546: -39,47 - 6547: -39,45 - 6548: -38,45 - 6549: -37,47 - 6550: -38,46 - 6551: -38,45 - 6552: -38,43 - 6553: -37,43 - 6554: -37,46 - 6555: -39,45 - 6556: -39,42 - 6557: -38,42 - 6558: -36,43 - 6559: -36,43 - 6560: -37,43 - 6561: -36,42 - 6562: -35,42 - 6563: -34,43 - 6564: -34,42 - 6565: -33,42 - 6566: -33,43 - 6567: -34,43 - 6568: -33,42 - 6569: -32,43 - 6570: -32,44 - 6571: -33,45 - 6572: -33,47 - 6573: -34,46 - 6574: -33,45 - 6575: -32,46 - 6576: -34,47 - 6577: -35,46 - 6578: -36,45 - 6579: -35,44 - 6580: -34,44 - 6581: -35,46 - 6582: -36,46 - 6583: -38,46 - 6584: -39,47 - 6585: -38,47 - 6586: -34,46 - 6587: -33,46 - 6588: -33,47 - 6589: -33,47 - 6590: -33,44 - 6591: -32,44 - 6592: -32,43 - 6593: -33,44 - 6594: -34,43 - 6595: -35,43 - 6596: -36,43 - 6597: -37,42 - 6598: -38,42 - 6599: -38,43 - 6600: -39,44 - 6601: -39,43 - 6602: -39,42 - 6603: -39,45 - 6604: -38,46 - 6605: -39,47 - 6606: -39,47 - 6607: -37,44 - 6608: -36,44 - 6609: -34,45 - 6610: -37,45 - 6611: -32,45 - 6612: -32,46 - 6613: -32,46 - 6614: -32,44 - 6615: -32,43 - 6616: -33,43 - 6617: -35,42 - 6618: -33,42 - 6619: -33,42 - 6620: -32,47 - 6621: -29,44 - 6622: -29,45 - 6623: -29,47 - 6624: -30,46 - 6625: -30,45 - 6626: -30,44 - 6627: -28,44 - 6628: -28,45 - 6629: -28,46 - 6630: -29,47 - 6631: -29,47 - 6632: -30,45 - 6633: -29,45 - 6634: -29,44 - 6635: -28,44 - 6636: -29,45 - 6637: -30,46 - 6638: -30,46 - 6639: -29,45 - 6640: -28,45 - 6641: -29,46 - 6642: -29,47 - 6643: -30,47 - 6644: -30,44 - 6645: -29,44 - 6646: -28,44 - 6647: -28,47 - 6648: -36,49 - 6649: -36,49 - 6650: -35,51 - 6651: -35,51 - 6652: -37,51 - 6653: -38,43 - 6654: -38,44 - 6655: -38,44 - 6656: -36,41 - 6657: -37,41 - 6658: -37,41 - 6659: -38,41 - 6660: -38,41 - 6661: -37,41 - 6662: -37,41 - 6663: -36,49 - 6664: -36,50 - 6665: -36,51 - 6666: -36,51 - 6667: -37,50 - 6668: -37,49 - 6669: -37,49 - 6670: -38,50 - 6671: -38,50 - 6672: -38,49 - 6673: -38,51 - 6674: -37,52 - 6675: -37,52 - 6676: -38,52 - 6677: -38,51 - 6678: -37,51 - 6679: -35,50 - 6680: -35,49 - 6681: -35,50 - 6682: -36,51 - 6683: -37,51 - 6684: -38,52 - 6685: -38,51 - 6686: -38,50 - 6687: -38,50 - 6688: -38,51 - 6689: -41,51 - 6690: -41,52 - 6691: -42,52 - 6692: -43,51 - 6693: -43,51 - 6694: -42,50 - 6695: -42,50 - 6696: -42,52 - 6697: -43,52 - 6698: -43,50 - 6699: -43,50 - 6700: -42,49 - 6701: -41,49 - 6702: -40,50 - 6703: -40,52 - 6704: -41,52 - 6705: -42,51 - 6706: -41,50 - 6707: -40,51 - 6708: -42,51 - 6709: -30,47 - 6710: -29,41 - 6711: -30,42 - 6712: -30,42 - 6713: -29,42 - 6714: -28,42 - 6715: -28,41 - 6716: -28,40 - 6717: -29,41 - 6718: -35,43 - 6719: -37,42 - 6720: -4,33 - 6721: -5,34 - 6722: -4,32 - 6723: -3,30 - 6724: -2,30 - 6725: -1,30 - 6726: -1,29 - 6727: 0,31 - 6728: 0,32 - 6729: 0,33 - 6730: -1,33 - 6731: -1,31 - 6732: 0,30 - 6733: -4,29 - 6734: -5,29 - 6735: -5,29 - 6736: -5,31 - 6737: -5,33 - 6738: -4,34 - 6739: -4,34 - 6740: 2,29 - 6741: 4,30 - 6742: 4,30 - 6743: 4,32 - 6744: 3,34 - 6745: 2,33 - 6746: 2,31 - 6747: 2,24 - 6748: 4,26 - 6749: 2,20 - 6750: 3,19 - 6751: 4,19 - 6752: 6,19 - 6753: 7,20 - 6754: 9,20 - 6755: 9,18 - 6756: 6,15 - 6757: 6,14 - 6758: 6,16 - 6759: 6,17 - 6760: 7,17 - 6761: 7,17 - 6762: 7,16 - 6763: 9,16 - 6764: 11,14 - 6765: -2,19 - 6766: -1,19 - 6767: -2,20 - 6768: -3,21 - 6769: -2,22 - 6770: -1,23 - 6771: 0,24 - 6772: 0,25 - 6773: 0,26 - 6774: -1,26 - 6775: -2,27 - 6776: -4,27 - 6777: -5,26 - 6778: -5,25 - 6779: -5,24 - 6780: -1,25 - 6781: -1,27 - 6782: -3,27 - 6783: -4,26 - 6784: -3,25 - 6785: -1,23 - 6786: -2,22 - 6787: -3,22 - 6788: -3,20 - 6789: -1,24 - 6790: -1,24 - 6791: -2,24 - 6792: -2,22 - 6793: 0,22 - 6794: 0,23 - 6795: -3,23 - 6796: -2,25 - 6797: 0,25 - 6798: -1,26 - 6799: -2,26 - 6800: -4,25 - 6801: -4,24 - 6802: -4,21 - 6803: -5,19 - 6804: -4,19 - 6805: -5,20 - 6806: -4,21 - 6807: 10,29 - 6808: 11,28 - 6809: 11,28 - 6810: 12,29 - 6811: 12,30 - 6812: 11,32 - 6813: 9,31 - 6814: 8,31 - 6815: 8,28 - 6816: 10,28 - 6817: 7,31 - 6818: 7,31 - 6819: 6,36 - 6820: 6,37 - 6821: 3,36 - 6822: 2,37 - 6823: 0,36 - 6824: -1,37 - 6825: 2,40 - 6826: 4,39 - 6827: 4,37 - 6828: 4,37 - 6829: 3,37 - 6830: 10,40 - 6831: 10,40 - 6832: 9,43 - 6833: 9,42 - 6834: 10,42 - 6835: 10,43 - 6836: 11,43 - 6837: 12,43 - 6838: 12,42 - 6839: -25,33 - 6840: -24,32 - 6841: -25,34 - 6842: -23,34 - 6843: -22,34 - 6844: -21,34 - 6845: -20,34 - 6846: -22,33 - 6847: -18,31 - 6848: -17,34 - 6849: -18,34 - 6850: -16,34 - 6851: -17,35 - 6852: -17,35 - 6853: -17,36 - 6854: -18,37 - 6855: -18,42 - 6856: -18,44 - 6857: -18,46 - 6858: -18,48 - 6859: -17,48 - 6860: -17,49 - 6861: -18,51 - 6862: -17,51 - 6863: -16,51 - 6864: -17,51 - 6865: -14,47 - 6866: -14,46 - 6867: -13,46 - 6868: -11,46 - 6869: -11,46 - 6870: -11,49 - 6871: -12,49 - 6872: -14,49 - 6873: -14,49 - 6874: -14,33 - 6875: -15,33 - 6876: -15,31 - 6877: -16,31 - 6878: -14,29 - 6879: -12,29 - 6880: -14,30 - 6881: -11,28 - 6882: -11,27 - 6883: -9,28 - 6884: -10,30 - 6885: -11,30 - 6886: -12,27 - 6887: -14,27 - 6888: -13,26 - 6889: -14,26 - 6890: -12,22 - 6891: -13,17 - 6892: -12,17 - 6893: -12,9 - 6894: -15,4 - 6895: -16,4 - 6896: -15,3 - 6897: -16,3 - 6898: -18,3 - 6899: -19,3 - 6900: -20,6 - 6901: -21,6 - 6902: -22,5 - 6903: -23,4 - 6904: -26,4 - 6905: -26,6 - 6906: -7,4 - 6907: -10,2 - 6908: -10,0 - 6909: -10,-1 - 6910: -9,-2 - 6911: -9,-2 - 6912: -10,0 - 6913: -10,1 - 6914: -9,-3 - 6915: -10,-3 - 6916: -11,-2 - 6917: -13,-2 - 6918: -14,-2 - 6919: -13,-4 - 6920: -14,-6 - 6921: -12,-5 - 6922: -10,-6 - 6923: -9,-6 - 6924: -12,-6 - 6925: -13,-6 - 6926: -12,-8 - 6927: -13,-8 - 6928: -14,-8 - 6929: -7,-6 - 6930: -7,-5 - 6931: -6,-3 - 6932: -6,-3 - 6933: -4,-2 - 6934: -5,-2 - 6935: -2,-4 - 6936: -3,-5 - 6937: -4,-5 - 6938: -6,-6 - 6939: -7,-6 - 6940: 1,-2 - 6941: 1,-1 - 6942: 1,4 - 6943: 0,4 - 6944: -5,5 - 6945: 10,2 - 6946: 10,1 - 6947: 11,0 - 6948: 10,-4 - 6949: 10,0 - 6950: 13,5 - 6951: 13,6 - 6952: 20,5 - 6953: 19,4 - 6954: 22,5 - 6955: 25,8 - 6956: 25,9 - 6957: 25,10 - 6958: 25,9 - 6959: -35,7 - 6960: -36,7 - 6961: -38,14 - 6962: -40,20 - 6963: -41,30 - 6964: -41,30 - 6965: -45,30 - 6966: -45,30 - 6967: -46,31 - 6968: -46,33 - 6969: -48,31 - 6970: -47,32 - 6971: -55,31 - 6972: -56,31 - 6973: -49,36 - 6974: -50,36 - 6975: -48,45 - 6976: -49,46 - 6977: -51,46 - 6978: -53,47 - 6979: -57,47 - 6980: -57,36 - 6981: -57,35 - 6982: -56,35 - 6983: -56,36 - 6984: -57,32 - 6985: -58,31 - 6986: -59,29 - 6987: -59,30 - 6988: -58,26 - 6989: -59,26 - 6990: -58,28 - 6991: -58,23 - 6992: -58,22 - 6993: -59,21 - 6994: -58,18 - 6995: -59,22 - 6996: -59,23 - 6997: -60,24 - 6998: -60,24 - 6999: -57,14 - 7000: -58,15 - 7001: -59,15 - 7002: -59,17 - 7003: -59,20 - 7004: -57,7 - 7005: -57,6 - 7006: -58,6 - 7007: -59,7 - 7008: -59,4 - 7009: -59,3 - 7010: -60,5 - 7011: -60,6 - 7012: -60,5 - 7013: -60,4 - 7014: -62,6 - 7015: -68,6 - 7016: -69,6 - 7017: -71,4 - 7018: -72,4 - 7019: -73,4 - 7020: -75,6 - 7021: -76,6 - 7022: -73,6 - 7023: -52,4 - 7024: -54,4 - 7025: -55,4 - 7026: -54,4 - 7027: -53,5 - 7028: -46,4 - 7029: -45,4 - 7030: -48,4 - 7031: -49,3 - 7032: -59,2 - 7033: -59,-4 - 7034: -59,-8 - 7035: -50,3 - 7036: -31,31 - 7037: -29,31 - 7038: -28,31 - 7039: -28,31 - 7040: -47,49 - 7041: -72,33 - 7042: -71,33 - 7043: -71,33 - 7044: -73,34 - 7045: -73,34 - 7046: -75,32 - 7047: -69,34 - 7048: -70,33 - 7049: -72,33 - 7050: -72,35 - 7051: -73,35 - 7052: -74,34 - 7053: -74,28 - 7054: -75,29 - 7055: -64,31 - 7056: -65,32 - 7057: -64,31 - 7058: -66,28 - 7059: -65,27 - 7060: -64,26 - 7061: -65,21 - 7062: -64,19 - 7075: 1,23 - 7076: 1,23 - 7077: 1,23 - 7078: 1,29 - 7079: 1,30 - 7080: 1,30 - 7081: 1,29 - 7082: 1,30 - 7083: 6,29 - 7084: 6,28 - 7085: 6,28 - 7086: 6,29 - 7087: 6,29 - 7088: 5,33 - 7089: 5,33 - 7090: 1,33 - 7091: 1,33 - 7092: 1,33 - 7093: 3,35 - 7094: 3,35 - 7095: 3,35 - 7096: 3,35 - 7097: 5,25 - 7098: 5,24 - 7099: 5,25 - 7100: 5,19 - 7101: 5,19 - 7102: 8,19 - 7103: 8,19 - 7104: 8,19 - 7105: -51,8 - 7106: -51,9 - 7107: -51,9 - 7108: -52,9 - 7109: -52,10 - 7110: -50,10 - 7111: -49,10 - 7112: -48,9 - 7113: -48,8 - 7114: -48,8 - 7115: -51,8 - 7116: -52,7 - 7117: -51,7 - 7118: -53,10 - 7119: -53,10 - 7120: -53,9 - 7121: -54,10 - 7122: -55,10 - 7123: -55,18 - 7124: -55,18 - 7125: -55,18 - 7126: -55,20 - 7127: -54,20 - 7128: -53,19 - 7129: -53,18 - 7130: -53,18 - 7131: -23,32 - 7132: -22,31 - 7133: -23,31 - 7134: -26,34 - 7135: -26,32 - 7136: -31,32 - 7137: -30,33 - 7141: -20,33 - 7142: -20,33 - 7143: -19,33 - 7144: -24,33 - 7145: -21,35 - 7427: -46,-10 - 7428: -45,-10 - 7429: -44,-10 - 7430: -42,-11 - 7431: -41,-11 - 7432: -41,-12 - 7433: -44,-12 - 7434: -45,-12 - 7435: -45,-13 - 7436: -43,-14 - 7437: -41,-14 - 7438: -41,-14 - 7439: -43,-14 - 7440: -45,-14 - 7441: -46,-14 - 7442: -46,-12 - 7443: -46,-11 - 7444: -43,-11 - 7445: -40,-11 - 7446: -39,-12 - 7447: -39,-13 - 7448: -41,-13 - 7449: -43,-13 - 7450: -44,-13 - 7451: -43,-14 - 7452: -40,-14 - 7453: -38,-14 - 7454: -38,-12 - 7455: -39,-11 - 7456: -40,-10 - 7457: -41,-10 - 7458: -42,-10 - 7459: -43,-10 - 7460: -43,-12 - 7461: -42,-12 - 7462: -42,-13 - 7537: -43,1 - 7538: -43,1 - 7546: -43,66 - 7547: -43,66 - 7548: -43,66 - 7554: -73,15 - 7555: -74,15 - 7556: -74,15 - 7557: -75,15 - 7558: -74,15 + 1208: -73,5 + 1209: -73,6 + 1210: -75,6 + 1211: -74,4 + 1212: -70,4 + 1213: -68,5 + 1214: -67,5 + 1215: -75,5 + 1216: -74,4 + 1217: -71,5 + 1218: -66,6 + 1219: -64,6 + 1220: -66,5 + 1221: -62,4 + 1222: -61,5 + 1223: -64,5 + 1224: -66,5 + 1225: -62,5 + 1226: -68,4 + 1227: -67,6 + 1228: -54,5 + 1229: -56,6 + 1230: -53,6 + 1231: -51,6 + 1232: -50,5 + 1233: -49,4 + 1234: -46,5 + 1235: -44,5 + 1236: -45,6 + 1237: -49,6 + 1238: -47,5 + 1239: -44,4 + 1240: -45,5 + 1241: -46,5 + 1242: -55,28 + 1243: -54,27 + 1244: -51,28 + 1245: -49,28 + 1246: -51,29 + 1247: -53,28 + 1248: -52,27 + 1249: -49,27 + 1250: -50,29 + 1251: -52,29 + 1252: -54,28 + 1253: -54,28 + 1254: -50,27 + 1255: -49,27 + 1256: -50,29 + 1462: -42,10 + 1463: -43,10 + 1464: -42,9 + 1465: -41,8 + 1466: -41,11 + 1467: -43,11 + 1952: -59,31 + 1953: -22,35 + 1954: -20,35 + 1955: -19,35 + 1956: -19,35 + 1957: -22,35 + 1958: -23,35 + 1959: -20,35 + 1960: -16,36 + 1961: -16,37 + 1962: -17,37 + 1963: -18,35 + 1964: -16,36 + 1965: -17,38 + 1966: -18,38 + 1967: -18,36 + 1968: -16,37 + 1969: -17,40 + 1970: -18,39 + 1971: -17,38 + 1972: -17,42 + 1973: -18,41 + 1974: -17,39 + 1975: -16,42 + 1976: -17,43 + 1977: -17,41 + 1978: -16,44 + 1979: -17,45 + 1980: -18,43 + 1981: -16,45 + 1982: -17,47 + 1983: -17,45 + 1984: -16,48 + 1985: -18,49 + 1986: -17,47 + 1987: -16,49 + 1988: -18,49 + 1989: -18,47 + 1990: -16,50 + 1991: -18,49 + 1992: -16,50 + 1993: -17,50 + 1994: -17,46 + 1995: -18,45 + 1996: -17,45 + 1997: -18,47 + 1998: -17,45 + 1999: -15,47 + 2000: -16,47 + 2001: -16,45 + 2002: -14,48 + 2003: -14,48 + 2004: -13,47 + 2005: -12,48 + 2006: -13,47 + 2007: -11,48 + 2008: -13,48 + 2009: -12,46 + 2010: -11,47 + 2011: -12,48 + 2012: -13,49 + 2013: -13,47 + 2014: -12,47 + 2015: -12,47 + 2113: -22,40 + 2114: -21,41 + 2115: -22,42 + 2116: -23,42 + 2117: -23,40 + 2118: -21,39 + 2119: -20,38 + 2120: -21,38 + 2121: -22,40 + 2122: -23,39 + 2123: -23,39 + 2124: -22,41 + 2125: -23,41 + 2126: -22,40 + 2127: -22,38 + 2128: -23,38 + 2129: -23,37 + 2130: -22,37 + 2131: -21,39 + 2132: -22,39 + 2133: -21,37 + 2134: -20,39 + 2135: -21,41 + 2136: -23,42 + 2137: -22,39 + 2138: -21,39 + 2139: -21,42 + 2140: -20,42 + 2141: -22,42 + 2142: -21,41 + 2143: -20,44 + 2144: -20,45 + 2145: -21,46 + 2146: -20,48 + 2147: -22,48 + 2148: -22,46 + 2149: -20,45 + 2150: -22,44 + 2151: -22,48 + 2152: -22,48 + 2153: -23,45 + 2154: -22,44 + 2155: -21,44 + 2156: -20,46 + 2157: -21,48 + 2158: -23,48 + 2159: -23,46 + 2160: -21,44 + 2161: -21,44 + 2162: -22,45 + 2163: -20,47 + 2164: -22,48 + 2165: -22,46 + 2166: -22,44 + 2167: -20,44 + 2168: -21,48 + 2169: -22,48 + 2170: -23,47 + 2171: -22,44 + 2215: -17,53 + 2216: -18,53 + 2217: -19,53 + 2218: -18,54 + 2219: -19,56 + 2220: -19,57 + 2221: -19,57 + 2222: -17,56 + 2223: -15,57 + 2224: -15,55 + 2225: -15,54 + 2226: -16,53 + 2227: -18,53 + 2228: -18,54 + 2229: -16,56 + 2230: -16,57 + 2231: -16,55 + 2232: -16,54 + 2233: -12,55 + 2234: -13,54 + 2235: -12,53 + 2236: -11,53 + 2237: -10,55 + 2238: -12,56 + 2239: -12,54 + 2240: -11,54 + 2241: -9,54 + 2242: -7,54 + 2243: -9,53 + 2244: -10,53 + 2245: -10,56 + 2246: -12,55 + 2247: -11,54 + 2248: -8,54 + 2249: -12,57 + 2250: -13,57 + 2251: -11,56 + 2252: -11,57 + 2253: -12,57 + 2254: -6,59 + 2255: -6,58 + 2256: -6,60 + 2257: -6,60 + 2258: -12,59 + 2259: -13,59 + 2260: -13,60 + 2261: -13,62 + 2262: -14,60 + 2263: -13,60 + 2264: -13,62 + 2265: -14,63 + 2266: -15,63 + 2267: -14,63 + 2268: -15,63 + 2269: -16,62 + 2270: -15,62 + 2271: -15,64 + 2272: -17,64 + 2273: -17,63 + 2274: -16,63 + 2275: -17,65 + 2276: -19,64 + 2277: -20,63 + 2278: -17,64 + 2279: -17,66 + 2280: -19,65 + 2281: -20,63 + 2282: -21,62 + 2283: -20,63 + 2284: -21,61 + 2285: -20,60 + 2286: -22,60 + 2287: -20,62 + 2288: -19,63 + 2289: -18,64 + 2290: -19,65 + 2291: -19,65 + 2292: -17,66 + 2293: -15,65 + 2294: -14,64 + 2295: -14,64 + 2296: -19,64 + 2297: -22,63 + 2298: -22,62 + 2299: -22,60 + 2300: -22,59 + 2301: -20,59 + 2302: -19,63 + 2303: -17,64 + 2304: -15,62 + 2305: -17,59 + 2306: -18,59 + 2307: -18,60 + 2308: -19,60 + 2309: -19,59 + 2310: -18,61 + 2311: -16,60 + 2312: -15,59 + 2396: -36,-9 + 2463: -41,-8 + 2464: -41,-8 + 2465: -42,-7 + 2466: -41,-5 + 2467: -41,-4 + 2468: -40,-3 + 2469: -38,-5 + 2470: -38,-7 + 2471: -40,-7 + 2472: -41,-4 + 2473: -38,-3 + 2474: -38,-2 + 2475: -41,-3 + 2476: -40,-5 + 2477: -38,-7 + 2478: -37,-7 + 2479: -38,-4 + 2480: -38,-4 + 2481: -39,-5 + 2482: -38,-6 + 2483: -35,-8 + 2484: -33,-7 + 2485: -33,-6 + 2486: -35,-7 + 2487: -34,-9 + 2488: -33,-8 + 2489: -34,-7 + 2490: -33,-10 + 2491: -33,-9 + 2492: -35,-6 + 2493: -37,-7 + 2494: -38,-7 + 2495: -35,-7 + 2496: -37,-7 + 2497: -37,-6 + 2498: -38,-8 + 2499: -40,-7 + 2500: -41,-5 + 2501: -41,-4 + 2502: -41,-5 + 2503: -41,-7 + 2504: -40,-7 + 2505: -39,-4 + 2506: -41,-7 + 2507: -42,-7 + 2508: -42,-8 + 2509: -42,-6 + 2510: -42,-3 + 2511: -42,-2 + 2512: -40,-2 + 2513: -38,-2 + 2514: -37,-2 + 2515: -37,-3 + 2516: -37,-5 + 2517: -37,-6 + 2518: -36,-6 + 2519: -34,-6 + 2520: -32,-7 + 2521: -32,-8 + 2522: -33,-11 + 2523: -32,-11 + 2524: -33,-11 + 2525: -35,-11 + 2526: -35,-10 + 2527: -35,-9 + 2528: -36,-10 + 2529: -36,-11 + 2530: -37,-8 + 2531: -37,-8 + 2532: -38,-8 + 2533: -40,-8 + 2859: 6,12 + 2860: 6,11 + 2861: 7,11 + 2862: 7,12 + 2863: 6,13 + 2864: 7,14 + 2865: 9,15 + 2866: 10,15 + 2867: 8,15 + 2868: 7,14 + 2869: 9,14 + 2870: 10,15 + 2871: 9,17 + 2872: 7,15 + 2873: 6,14 + 2874: 9,14 + 2875: 11,16 + 2876: 10,19 + 2877: 10,20 + 2878: 9,19 + 2879: 10,18 + 2880: 11,18 + 2881: 10,20 + 2882: 10,17 + 2883: 8,15 + 2884: 7,15 + 2885: 7,13 + 2886: 8,12 + 2887: 9,11 + 2888: 9,11 + 2889: 10,12 + 2890: 11,11 + 2891: 11,11 + 2892: 11,13 + 2893: 10,13 + 2894: 3,17 + 2895: 1,16 + 2896: -1,15 + 2897: -1,14 + 2898: 2,15 + 2899: 2,17 + 2900: -1,16 + 2901: 0,14 + 2902: 3,14 + 2903: 1,16 + 2904: -1,16 + 2905: -1,15 + 2906: 3,16 + 2907: 3,17 + 2908: 4,15 + 2909: 3,14 + 2910: 1,14 + 2911: -1,15 + 2912: -2,14 + 2913: -2,17 + 2914: -2,17 + 2915: 1,17 + 2916: 2,20 + 2917: 1,19 + 2918: 2,19 + 2919: 4,20 + 2920: 2,21 + 2921: 1,19 + 2922: 3,20 + 2923: 3,22 + 2924: 2,21 + 2925: 2,21 + 2926: 2,23 + 2927: 2,26 + 2928: 2,28 + 2929: 2,31 + 2930: 2,34 + 2931: 4,34 + 2932: 4,33 + 2933: 4,33 + 2934: 4,31 + 2935: 4,29 + 2936: 4,27 + 2937: 4,25 + 2938: 4,23 + 2939: 4,21 + 2940: 4,19 + 2941: 3,19 + 2942: 3,20 + 2943: 3,21 + 2944: 3,23 + 2945: 3,25 + 2946: 3,28 + 2947: 3,30 + 2948: 3,32 + 2949: 3,33 + 2950: 3,33 + 2951: 2,34 + 2952: 2,33 + 2953: 7,29 + 2954: 7,28 + 2955: 9,28 + 2956: 11,28 + 2957: 12,29 + 2958: 10,30 + 2959: 8,30 + 2960: 9,28 + 2961: 12,30 + 2962: 11,31 + 2963: 8,31 + 2964: 9,29 + 2965: 11,29 + 2966: 10,30 + 2967: 8,25 + 2968: 7,26 + 2969: 7,24 + 2970: 7,23 + 2971: 6,22 + 2972: 7,25 + 2973: 9,25 + 2974: 9,23 + 2975: 8,22 + 2976: 10,24 + 2977: 8,25 + 2978: 7,24 + 2979: 7,23 + 2980: 6,25 + 2981: 8,36 + 2982: 8,37 + 2983: 6,36 + 2984: 7,35 + 2985: 8,34 + 2986: 10,34 + 2987: 8,35 + 2988: 6,34 + 2989: 8,33 + 2990: 11,34 + 2991: 11,36 + 2992: 10,37 + 2993: 12,35 + 2994: 11,33 + 2995: 11,35 + 2996: 9,37 + 2997: 9,35 + 2998: 11,34 + 2999: 11,37 + 3000: 9,36 + 3001: 7,36 + 3002: 7,37 + 3003: 6,35 + 3004: 7,34 + 3005: 8,33 + 3006: 9,33 + 3007: 6,33 + 3008: 12,34 + 3009: 12,37 + 3010: 11,34 + 3011: 4,40 + 3012: 2,42 + 3013: 0,41 + 3014: 1,40 + 3015: 0,40 + 3016: -1,39 + 3017: 0,37 + 3018: 4,40 + 3019: 0,38 + 3020: 0,38 + 3021: 2,36 + 3022: 4,36 + 3023: 2,38 + 3024: 0,37 + 3025: -1,37 + 3026: 1,38 + 3027: 4,39 + 3028: 2,40 + 3029: 0,39 + 3030: 2,37 + 3031: 3,40 + 3032: 2,39 + 3033: 3,36 + 3034: 2,36 + 3035: 2,39 + 3036: -1,39 + 3037: 1,37 + 3363: -2,8 + 3364: -2,8 + 3365: -2,9 + 3366: -1,10 + 3367: 1,9 + 3368: 0,8 + 3369: -1,8 + 3370: -1,9 + 3371: 1,10 + 3372: 1,9 + 3373: -2,9 + 3374: -3,9 + 3375: -3,10 + 3376: -3,10 + 3547: -60,50 + 3548: -60,51 + 3549: -61,53 + 3550: -63,54 + 3551: -64,55 + 3552: -65,54 + 3553: -65,52 + 3554: -63,51 + 3555: -61,51 + 3556: -63,50 + 3557: -65,53 + 3558: -62,53 + 3559: -62,53 + 3560: -64,52 + 3561: -60,54 + 3562: -59,55 + 3563: -62,54 + 3564: -61,54 + 3565: -58,53 + 3566: -57,53 + 3567: -54,54 + 3568: -51,54 + 3569: -52,55 + 3570: -54,56 + 3571: -55,56 + 3572: -55,54 + 3573: -53,54 + 3574: -52,56 + 3575: -54,57 + 3576: -56,57 + 3577: -57,56 + 3578: -57,55 + 3579: -56,54 + 3580: -58,55 + 3581: -58,58 + 3582: -55,57 + 3583: -53,57 + 3584: -52,57 + 3585: -51,56 + 3586: -52,55 + 3587: -54,55 + 3588: -55,57 + 3589: -54,58 + 3590: -52,57 + 3591: -49,58 + 3592: -48,58 + 3593: -47,59 + 3594: -48,61 + 3595: -49,61 + 3596: -48,58 + 3597: -47,60 + 3598: -47,62 + 3599: -49,61 + 3600: -49,59 + 3601: -48,58 + 3602: -47,59 + 3603: -48,55 + 3604: -49,55 + 3605: -47,55 + 3606: -47,55 + 3607: -47,54 + 3608: -47,54 + 3609: -48,50 + 3610: -49,50 + 3611: -48,51 + 3612: -47,51 + 3613: -61,60 + 3614: -61,60 + 3615: -60,61 + 3616: -58,61 + 3617: -56,60 + 3618: -53,60 + 3619: -53,61 + 3620: -55,61 + 3621: -59,60 + 3622: -60,60 + 3623: -57,60 + 3624: -54,60 + 3625: -53,60 + 3626: -52,62 + 3627: -52,63 + 3628: -50,63 + 3629: -49,65 + 3630: -51,65 + 3631: -52,64 + 3632: -53,63 + 3633: -52,64 + 3634: -50,65 + 3635: -47,64 + 3636: -45,64 + 3637: -43,64 + 3638: -43,65 + 3639: -43,64 + 3640: -43,62 + 3641: -42,62 + 3642: -42,64 + 3643: -44,65 + 3644: -43,62 + 3645: -43,61 + 3646: -43,63 + 3647: -47,64 + 3648: -49,65 + 3649: -50,65 + 3650: -48,64 + 3651: -48,65 + 3652: -50,64 + 3653: -53,82 + 3654: -53,82 + 3655: -53,83 + 3656: -51,84 + 3657: -51,86 + 3658: -52,89 + 3659: -53,89 + 3660: -53,88 + 3661: -52,87 + 3662: -51,89 + 3663: -53,90 + 3664: -53,89 + 3665: -53,87 + 3666: -53,85 + 3667: -52,83 + 3668: -51,83 + 3669: -51,86 + 3670: -51,89 + 3671: -52,89 + 3672: -56,89 + 3673: -56,89 + 3674: -55,88 + 3675: -55,90 + 3676: -56,90 + 3677: -55,86 + 3678: -55,86 + 3679: -56,86 + 3680: -56,86 + 3681: -55,83 + 3682: -55,84 + 3683: -56,83 + 3684: -55,82 + 3685: -55,82 + 3686: -54,83 + 3687: -54,83 + 3688: -54,89 + 3689: -57,86 + 3690: -57,86 + 3691: -58,89 + 3692: -59,89 + 3693: -61,88 + 3694: -61,87 + 3695: -61,85 + 3696: -59,83 + 3697: -59,83 + 3698: -58,86 + 3699: -60,88 + 3700: -61,88 + 3701: -61,86 + 3702: -62,85 + 3703: -62,84 + 3704: -61,83 + 3705: -60,86 + 3706: -61,88 + 3707: -62,89 + 3708: -61,87 + 3709: -60,85 + 3710: -59,84 + 3711: -59,83 + 3712: -60,84 + 3713: -62,84 + 3714: -60,87 + 3715: -60,89 + 3716: -60,89 + 3717: -58,89 + 3757: -61,58 + 3758: -62,58 + 3759: -61,57 + 3760: -61,57 + 3761: -61,58 + 3762: -61,57 + 3763: -60,57 + 4155: -58,52 + 4156: -58,50 + 4157: -58,50 + 4158: -57,50 + 4159: -57,51 + 4160: -58,49 + 4161: -57,49 + 4162: -55,52 + 4163: -55,50 + 4164: -54,49 + 4165: -54,51 + 4166: -52,52 + 4167: -52,51 + 4168: -52,50 + 4169: -51,49 + 4170: -51,51 + 4171: -51,51 + 4343: -83,33 + 4344: -82,32 + 4345: -82,31 + 4346: -82,30 + 4347: -81,30 + 4348: -80,33 + 4349: -79,33 + 4350: -78,33 + 4351: -80,32 + 4352: -82,32 + 4353: -81,31 + 4354: -79,30 + 4355: -77,30 + 4356: -77,32 + 4357: -78,31 + 4358: -78,28 + 4359: -78,29 + 4360: -79,31 + 4361: -77,32 + 4362: -80,33 + 4363: -81,30 + 4364: -80,32 + 4365: -81,33 + 4366: -67,31 + 4367: -68,31 + 4368: -68,30 + 4369: -67,28 + 4370: -67,26 + 4371: -66,26 + 4372: -64,27 + 4373: -67,27 + 4374: -65,26 + 4375: -64,25 + 4376: -65,28 + 4377: -67,28 + 4378: -68,26 + 4379: -67,25 + 4380: -67,30 + 4381: -65,30 + 4382: -64,30 + 4383: -64,32 + 4384: -65,33 + 4385: -66,33 + 4386: -65,31 + 4387: -65,34 + 4388: -66,34 + 4389: -68,34 + 4390: -70,33 + 4391: -68,33 + 4392: -70,34 + 4393: -72,35 + 4394: -74,34 + 4395: -73,33 + 4396: -71,34 + 4397: -73,35 + 4398: -75,34 + 4399: -75,33 + 4400: -75,31 + 4401: -75,30 + 4402: -74,32 + 4403: -74,32 + 4404: -74,29 + 4405: -75,26 + 4406: -75,27 + 4407: -75,27 + 4408: -75,25 + 4409: -74,23 + 4410: -74,26 + 4411: -75,26 + 4412: -76,25 + 4413: -77,25 + 4414: -76,24 + 4415: -76,26 + 4416: -76,25 + 4417: -74,23 + 4418: -74,20 + 4419: -75,19 + 4420: -75,22 + 4421: -75,23 + 4422: -74,22 + 4423: -72,23 + 4424: -72,21 + 4425: -72,20 + 4426: -70,19 + 4427: -70,22 + 4428: -70,22 + 4429: -68,23 + 4430: -65,22 + 4431: -63,22 + 4432: -64,20 + 4433: -65,19 + 4434: -66,21 + 4435: -65,23 + 4436: -68,22 + 4437: -70,21 + 4438: -70,19 + 4439: -66,19 + 4440: -66,20 + 4441: -69,20 + 4442: -71,20 + 4443: -67,20 + 4444: -66,23 + 4445: -69,23 + 4446: -70,22 + 4447: -66,22 + 4448: -65,20 + 4449: -65,19 + 4450: -68,20 + 4451: -81,23 + 4452: -83,23 + 4453: -85,23 + 4454: -86,23 + 4455: -87,26 + 4456: -86,27 + 4457: -85,27 + 4458: -82,27 + 4459: -81,26 + 4460: -80,25 + 4461: -80,23 + 4462: -80,23 + 4463: -79,26 + 4464: -80,27 + 4465: -80,24 + 4466: -81,23 + 4467: -82,22 + 4468: -84,23 + 4469: -86,25 + 4470: -86,26 + 4471: -86,26 + 4472: -86,23 + 4473: -85,30 + 4474: -86,30 + 4475: -86,29 + 4476: -85,30 + 4477: -85,21 + 4478: -86,21 + 4479: -86,20 + 4480: -85,21 + 4481: -82,19 + 4482: -82,19 + 4483: -82,20 + 4484: -83,18 + 4485: -82,18 + 4486: -80,19 + 4487: -78,19 + 4488: -79,19 + 4489: -81,19 + 4490: -80,18 + 4491: -79,18 + 4492: -77,19 + 4493: -77,21 + 4494: -77,22 + 4495: -78,21 + 4496: -77,20 + 4497: -77,21 + 4498: -77,20 + 4499: -78,18 + 4500: -80,19 + 4501: -81,20 + 4502: -82,19 + 4503: -80,20 + 4504: -80,20 + 4505: -74,17 + 4506: -75,16 + 4507: -73,15 + 4508: -73,16 + 4509: -74,17 + 4510: -73,16 + 4511: -72,15 + 4512: -72,16 + 4513: -74,17 + 4514: -74,17 + 4523: -62,42 + 4524: -63,42 + 4525: -64,41 + 4526: -64,39 + 4527: -64,41 + 4528: -65,40 + 4529: -65,39 + 4530: -64,40 + 4531: -63,41 + 4532: -61,41 + 4533: -61,38 + 4534: -62,38 + 4535: -61,41 + 4536: -63,41 + 4537: -63,39 + 4538: -62,39 + 4539: -63,42 + 4540: -64,41 + 4541: -64,41 + 4542: -63,39 + 4543: -61,40 + 4544: -62,42 + 4545: -64,41 + 4546: -65,40 + 4547: -65,39 + 4548: -65,40 + 4549: -64,41 + 4550: -62,42 + 4551: -64,44 + 4552: -65,44 + 4553: -64,44 + 4554: -61,45 + 4555: -63,45 + 4556: -64,45 + 4557: -64,44 + 4558: -62,44 + 4559: -62,45 + 4560: -64,45 + 4620: -73,49 + 4621: -73,48 + 4622: -73,47 + 4623: -71,48 + 4624: -72,49 + 4625: -72,48 + 4626: -70,49 + 4627: -70,49 + 4628: -70,48 + 4629: -69,47 + 4630: -71,48 + 4631: -72,48 + 4632: -72,49 + 4674: -67,49 + 4675: -68,49 + 4676: -67,50 + 4677: -67,50 + 4678: -66,48 + 4679: -67,47 + 4680: -66,46 + 4681: -66,47 + 4682: -67,46 + 4687: -67,45 + 4688: -67,44 + 4689: -68,42 + 4690: -68,40 + 4691: -68,38 + 4692: -67,38 + 4693: -67,43 + 4694: -67,46 + 4695: -67,45 + 4696: -67,41 + 4697: -67,37 + 4698: -68,37 + 4699: -70,37 + 4700: -72,37 + 4701: -74,37 + 4702: -76,37 + 4703: -76,39 + 4704: -76,41 + 4705: -76,43 + 4706: -76,45 + 4707: -76,48 + 4708: -75,48 + 4709: -75,45 + 4710: -75,43 + 4711: -75,43 + 4712: -76,47 + 4713: -76,50 + 4714: -76,52 + 4715: -76,50 + 4716: -74,52 + 4717: -74,52 + 4718: -72,51 + 4719: -72,53 + 4720: -72,52 + 4721: -71,51 + 4722: -70,53 + 4723: -71,55 + 4724: -72,55 + 4725: -72,52 + 4726: -72,52 + 4727: -71,55 + 4728: -72,55 + 4729: -72,53 + 4730: -70,51 + 4731: -70,53 + 4732: -70,55 + 4733: -71,56 + 4734: -71,55 + 4735: -70,54 + 4765: -76,54 + 4766: -77,54 + 4767: -78,54 + 4768: -78,53 + 4769: -68,57 + 4770: -68,56 + 4771: -68,55 + 4772: -68,52 + 4773: -68,50 + 4774: -61,35 + 4775: -62,36 + 4776: -62,36 + 4777: -64,36 + 4778: -67,36 + 4779: -68,36 + 4780: -68,38 + 4781: -68,40 + 4782: -68,39 + 4783: -71,43 + 4784: -70,43 + 4785: -71,44 + 4786: -72,44 + 4787: -73,44 + 4788: -71,43 + 4789: -71,41 + 4790: -72,40 + 4791: -72,42 + 4792: -72,42 + 4793: -73,40 + 4794: -72,39 + 4795: -70,39 + 4796: -70,41 + 4797: -71,43 + 4798: -72,44 + 4799: -72,44 + 4800: -73,43 + 4801: -61,33 + 4802: -60,33 + 4803: -62,33 + 4804: -61,32 + 4805: -60,31 + 4806: -60,32 + 4807: -61,33 + 4808: -62,32 + 4809: -62,31 + 4810: -61,31 + 4899: -69,16 + 4900: -71,17 + 4901: -71,16 + 4902: -70,15 + 4903: -69,16 + 4904: -71,16 + 4905: -71,19 + 4906: -72,20 + 4907: -71,22 + 4908: -71,23 + 4909: -72,21 + 4910: -69,19 + 4911: -71,21 + 4912: -71,22 + 4913: -72,23 + 4914: -72,23 + 4915: -68,22 + 4916: -69,23 + 4917: -69,22 + 4918: -65,22 + 4919: -64,23 + 4920: -64,22 + 4921: -65,19 + 4922: -66,19 + 4923: -68,19 + 4924: -68,19 + 4925: -70,19 + 4926: -72,20 + 4927: -70,20 + 4928: -66,19 + 4929: -63,19 + 4930: -64,20 + 4931: -64,21 + 4932: -68,20 + 4933: -70,22 + 5119: -84,32 + 5120: -85,33 + 5121: -84,35 + 5122: -84,38 + 5123: -84,40 + 5124: -84,43 + 5125: -83,45 + 5126: -82,46 + 5127: -80,46 + 5128: -80,45 + 5129: -82,46 + 5130: -84,45 + 5131: -82,43 + 5132: -81,44 + 5133: -84,45 + 5134: -85,46 + 5135: -82,44 + 5136: -80,43 + 5137: -82,42 + 5138: -84,42 + 5139: -83,41 + 5140: -79,42 + 5141: -80,43 + 5142: -83,40 + 5143: -81,39 + 5144: -82,40 + 5145: -83,41 + 5146: -82,40 + 5147: -80,39 + 5148: -83,39 + 5149: -84,38 + 5150: -82,36 + 5151: -80,35 + 5152: -80,36 + 5153: -82,39 + 5154: -81,41 + 5155: -80,42 + 5156: -81,44 + 5157: -64,14 + 5158: -65,14 + 5159: -65,13 + 5160: -65,11 + 5161: -64,10 + 5162: -64,13 + 5163: -65,14 + 5164: -65,12 + 5165: -64,11 + 5166: -62,12 + 5167: -62,14 + 5168: -63,11 + 5169: -61,11 + 5170: -61,13 + 5171: -62,14 + 5172: -62,12 + 5173: -62,10 + 5205: -67,8 + 5206: -66,8 + 5207: -63,8 + 5208: -62,8 + 5209: -62,8 + 5210: -65,8 + 5211: -67,8 + 5212: -68,9 + 5213: -68,12 + 5214: -67,13 + 5215: -67,13 + 5216: -67,15 + 5217: -67,16 + 5218: -66,17 + 5219: -63,16 + 5220: -62,16 + 5221: -62,16 + 5222: -64,17 + 5223: -64,16 + 5224: -62,17 + 5225: -61,19 + 5226: -62,19 + 5227: -61,20 + 5228: -61,21 + 5229: -61,23 + 5230: -62,22 + 5231: -61,23 + 5232: -61,24 + 5233: -62,26 + 5234: -62,27 + 5235: -62,28 + 5236: -61,36 + 5237: -61,36 + 5238: -55,44 + 5239: -45,50 + 5240: -45,51 + 5241: -45,53 + 5242: -44,55 + 5243: -43,55 + 5244: -42,55 + 5245: -41,55 + 5246: -41,54 + 5247: -39,55 + 5248: -38,55 + 5249: -39,55 + 5250: -38,54 + 5251: -35,54 + 5252: -34,55 + 5253: -35,55 + 5254: -33,54 + 5255: -32,54 + 5256: -33,53 + 5257: -33,51 + 5258: -32,49 + 5259: -31,49 + 5260: -30,50 + 5261: -30,50 + 5262: -28,50 + 5263: -27,50 + 5264: -26,50 + 5265: -26,49 + 5266: -24,51 + 5267: -24,51 + 5268: -22,51 + 5269: -20,51 + 5270: -20,51 + 5271: -23,51 + 5272: -26,50 + 5273: -26,48 + 5274: -25,46 + 5275: -25,48 + 5276: -26,47 + 5277: -26,45 + 5278: -25,43 + 5279: -25,44 + 5280: -26,44 + 5281: -26,42 + 5282: -25,40 + 5283: -25,41 + 5284: -26,41 + 5285: -26,38 + 5286: -25,37 + 5287: -25,38 + 5288: -26,38 + 5289: -26,36 + 5290: -26,36 + 5291: -26,39 + 5292: -26,41 + 5293: -25,39 + 5294: -25,39 + 5295: -26,40 + 5296: -26,40 + 5297: -26,41 + 5298: -26,43 + 5299: -26,43 + 5300: -13,51 + 5301: -12,51 + 5302: -10,51 + 5303: -8,51 + 5304: -8,50 + 5305: -9,49 + 5306: -9,47 + 5307: -8,47 + 5308: -6,47 + 5309: -4,47 + 5310: -5,46 + 5311: -5,46 + 5312: -3,47 + 5313: -2,47 + 5314: -2,46 + 5315: 0,46 + 5316: 0,47 + 5317: 0,46 + 5318: 2,47 + 5319: 2,47 + 5320: 1,46 + 5321: 4,46 + 5322: 4,47 + 5323: 4,47 + 5324: 5,46 + 5325: 7,47 + 5326: 7,48 + 5327: 7,48 + 5328: 9,48 + 5329: 10,48 + 5330: 11,48 + 5331: 10,48 + 5332: 13,48 + 5333: 14,48 + 5334: 15,48 + 5335: 16,48 + 5336: 15,47 + 5337: 14,45 + 5338: 15,46 + 5339: 14,45 + 5340: 15,45 + 5341: 15,46 + 5342: 14,44 + 5343: 14,42 + 5344: 15,42 + 5345: 15,42 + 5346: 15,41 + 5347: 15,40 + 5348: 14,41 + 5349: 14,39 + 5350: 14,39 + 5351: 12,40 + 5352: 10,39 + 5353: 12,39 + 5354: 11,40 + 5355: 9,40 + 5356: 8,39 + 5357: 8,40 + 5358: 8,39 + 5359: 8,39 + 5360: 7,40 + 5361: 7,41 + 5362: 7,43 + 5363: 6,45 + 5364: 6,44 + 5365: 6,46 + 5366: 6,45 + 5367: 6,45 + 5368: 3,47 + 5369: 2,46 + 5370: 2,46 + 5371: 1,47 + 5372: 1,47 + 5373: 0,46 + 5374: -3,45 + 5375: -3,43 + 5376: -3,42 + 5377: -4,44 + 5378: -4,43 + 5379: -4,42 + 5380: -3,40 + 5381: -3,41 + 5382: -4,40 + 5383: -4,40 + 5384: -4,44 + 5385: -4,44 + 5386: -3,40 + 5387: -3,38 + 5388: -3,37 + 5389: -5,36 + 5390: -5,36 + 5391: -4,37 + 5392: -6,36 + 5393: -7,36 + 5394: -8,37 + 5395: -9,36 + 5396: -9,37 + 5397: -10,36 + 5398: -9,36 + 5399: -8,37 + 5400: -9,36 + 5401: 14,37 + 5402: 14,37 + 5403: 14,35 + 5404: 15,36 + 5405: 15,36 + 5406: 14,33 + 5407: 15,35 + 5408: 15,34 + 5409: 15,34 + 5410: 15,34 + 5411: 14,34 + 5412: 17,34 + 5413: 20,35 + 5414: 18,35 + 5415: 17,34 + 5416: 19,34 + 5417: 19,35 + 5418: 20,35 + 5419: 22,35 + 5420: 22,34 + 5421: 23,33 + 5422: 21,35 + 5423: 20,35 + 5424: 18,35 + 5425: 23,32 + 5426: 22,31 + 5427: 22,30 + 5428: 23,31 + 5429: 22,30 + 5430: 23,28 + 5431: 23,27 + 5432: 23,27 + 5433: 22,26 + 5434: 23,25 + 5435: 23,23 + 5436: 23,22 + 5437: 22,23 + 5438: 22,24 + 5439: 22,24 + 5440: 22,23 + 5441: 21,26 + 5442: 18,26 + 5443: 17,25 + 5444: 19,25 + 5445: 16,26 + 5446: 15,26 + 5447: 14,25 + 5448: 15,23 + 5449: 14,22 + 5450: 14,22 + 5451: 13,20 + 5452: 14,21 + 5453: 13,21 + 5454: 14,19 + 5455: 14,18 + 5456: 14,18 + 5457: 14,18 + 5458: 13,16 + 5459: 13,16 + 5460: 13,17 + 5461: 14,16 + 5462: 14,15 + 5463: 13,14 + 5464: 13,14 + 5465: 14,13 + 5466: 14,13 + 5467: 13,12 + 5468: 14,12 + 5469: 13,11 + 5470: 14,10 + 5471: 13,11 + 5472: 13,9 + 5473: 14,9 + 5474: 14,8 + 5475: 12,8 + 5476: 12,8 + 5477: 11,8 + 5478: 10,8 + 5479: 10,8 + 5480: 9,9 + 5481: 8,9 + 5482: 7,9 + 5483: 6,9 + 5484: 4,9 + 5485: 4,9 + 5486: 4,10 + 5487: 4,12 + 5488: 3,12 + 5489: 2,12 + 5490: 1,12 + 5491: -1,12 + 5492: -1,12 + 5493: -3,12 + 5494: -4,12 + 5495: -5,12 + 5496: -6,11 + 5497: -6,10 + 5498: -7,10 + 5499: -6,11 + 5500: -6,14 + 5501: -5,14 + 5502: -4,16 + 5503: -5,17 + 5504: -7,17 + 5505: -8,17 + 5506: -8,17 + 5507: -9,17 + 5508: -9,17 + 5509: -7,18 + 5510: -7,19 + 5511: -7,21 + 5512: -7,22 + 5513: -7,23 + 5514: -8,25 + 5515: -9,25 + 5516: -9,24 + 5517: -8,24 + 5518: -8,25 + 5519: -9,25 + 5520: -10,25 + 5521: -8,15 + 5522: -9,15 + 5523: -10,14 + 5524: -10,14 + 5525: -8,12 + 5526: -9,12 + 5527: -9,12 + 5528: -10,11 + 5529: -9,8 + 5530: -9,9 + 5531: -10,9 + 5532: -9,8 + 5533: -21,9 + 5534: -20,9 + 5535: -20,10 + 5536: -21,12 + 5537: -21,11 + 5538: -20,13 + 5539: -20,14 + 5540: -21,16 + 5541: -21,14 + 5542: -20,18 + 5543: -21,17 + 5544: -21,16 + 5545: -20,18 + 5546: -17,20 + 5547: -16,20 + 5548: -18,20 + 5549: -20,20 + 5550: -20,20 + 5551: -21,20 + 5552: -20,22 + 5553: -20,23 + 5554: -21,24 + 5555: -20,23 + 5556: -20,26 + 5557: -20,27 + 5558: -20,28 + 5559: -21,26 + 5560: -21,24 + 5561: -20,21 + 5562: -22,20 + 5563: -22,22 + 5564: -23,22 + 5565: -24,21 + 5566: -23,21 + 5567: -25,21 + 5568: -27,21 + 5569: -28,21 + 5570: -29,21 + 5571: -30,21 + 5572: -31,20 + 5573: -31,20 + 5574: -32,18 + 5575: -31,17 + 5576: -31,15 + 5577: -31,15 + 5578: -31,13 + 5579: -31,13 + 5580: -32,12 + 5581: -33,12 + 5582: -34,12 + 5583: -34,11 + 5584: -34,11 + 5585: -34,12 + 5586: -34,10 + 5587: -34,9 + 5588: -35,12 + 5589: -34,12 + 5590: -33,13 + 5591: -32,13 + 5592: -31,13 + 5593: -31,14 + 5594: -45,9 + 5595: -45,9 + 5596: -45,10 + 5597: -45,11 + 5598: -45,12 + 5599: -45,13 + 5600: -45,14 + 5601: -46,14 + 5602: -48,14 + 5603: -49,14 + 5604: -50,14 + 5605: -51,14 + 5606: -51,14 + 5607: -51,16 + 5608: -51,17 + 5609: -51,18 + 5610: -51,19 + 5611: -51,20 + 5612: -51,21 + 5613: -51,21 + 5614: -49,21 + 5615: -48,21 + 5616: -47,21 + 5617: -46,21 + 5618: -46,21 + 5619: -42,20 + 5620: -42,20 + 5621: -45,21 + 5622: -46,20 + 5623: -45,20 + 5624: -42,18 + 5625: -42,18 + 5626: -42,17 + 5627: -43,18 + 5628: -42,17 + 5629: -42,17 + 5630: -46,18 + 5631: -45,17 + 5632: -45,17 + 5633: -46,18 + 5634: -48,18 + 5635: -48,17 + 5636: -49,19 + 5637: -49,18 + 5638: -49,17 + 5639: -48,19 + 5640: -45,21 + 5641: -45,22 + 5642: -45,23 + 5643: -46,23 + 5644: -45,24 + 5645: -46,25 + 5646: -46,25 + 5647: -45,26 + 5648: -46,27 + 5649: -45,27 + 5650: -46,28 + 5651: -46,27 + 5691: -10,57 + 5692: -10,57 + 5693: -9,57 + 5694: -8,57 + 5695: -8,57 + 5696: -10,57 + 5697: -11,57 + 5698: -8,56 + 5699: -7,56 + 5700: -7,55 + 5701: -8,56 + 5702: -8,56 + 5703: -8,56 + 5704: -7,56 + 5705: -9,59 + 5706: -8,59 + 5707: -9,59 + 5708: -10,59 + 5709: -10,60 + 5710: -10,61 + 5711: -9,61 + 5712: -9,60 + 5713: -8,59 + 5714: -8,60 + 5715: -8,61 + 5716: -10,61 + 5717: -10,60 + 5718: -9,59 + 5719: -8,59 + 5720: -9,61 + 5721: -10,61 + 5722: -10,60 + 5723: -9,60 + 5724: -8,61 + 5725: -10,60 + 5726: -8,59 + 5727: -8,60 + 5728: -9,60 + 5729: -8,61 + 5730: -10,61 + 5731: -14,61 + 5732: -14,61 + 5733: -17,62 + 5734: -19,62 + 5735: -18,63 + 5736: -18,64 + 5737: -18,65 + 5738: -16,65 + 5739: -18,66 + 5740: -20,65 + 5741: -19,66 + 5742: -21,64 + 5743: -15,66 + 5744: -14,65 + 5745: -16,66 + 5746: -13,64 + 5747: -14,59 + 5748: -21,59 + 5749: -22,59 + 5750: -22,61 + 5751: -22,62 + 5752: -16,64 + 5753: -18,62 + 5754: -27,53 + 5755: -27,53 + 5756: -51,62 + 5757: -51,62 + 5758: -51,63 + 5759: -51,64 + 5760: -50,64 + 5761: -49,64 + 5762: -49,64 + 5763: -51,64 + 5764: -53,65 + 5765: -53,65 + 5766: -44,63 + 5767: -44,62 + 5768: -44,62 + 5769: -56,61 + 5770: -54,61 + 5771: -54,61 + 5772: -58,56 + 5773: -51,55 + 5774: -51,54 + 5775: -51,53 + 5776: -52,53 + 5777: -54,53 + 5778: -55,53 + 5779: -57,53 + 5780: -57,53 + 5781: -52,53 + 5782: -54,54 + 5783: -55,54 + 5784: -55,56 + 5785: -56,56 + 5786: -57,57 + 5787: -57,57 + 5788: -57,34 + 5789: -58,34 + 5790: -59,35 + 5791: -59,35 + 5792: -58,35 + 5793: -58,35 + 5794: -56,35 + 5795: -57,36 + 5796: -58,36 + 5797: -56,37 + 5798: -58,37 + 5799: -58,37 + 5800: -58,36 + 5801: -57,37 + 5802: -58,38 + 5803: -59,37 + 5804: -57,37 + 5805: -58,39 + 5806: -59,38 + 5807: -58,37 + 5808: -57,38 + 5809: -58,40 + 5810: -59,40 + 5811: -59,41 + 5812: -59,44 + 5813: -59,45 + 5814: -59,46 + 5815: -57,46 + 5816: -57,45 + 5817: -57,42 + 5818: -57,41 + 5819: -57,40 + 5820: -57,38 + 5821: -58,39 + 5822: -58,40 + 5823: -58,42 + 5824: -58,43 + 5825: -58,45 + 5826: -58,45 + 5827: -58,46 + 5828: -58,46 + 5829: -59,43 + 5830: -59,42 + 5831: -58,42 + 5832: -59,39 + 5833: -59,38 + 5834: -57,39 + 5835: -57,40 + 5836: -58,41 + 5837: -59,41 + 5838: -59,43 + 5839: -57,43 + 5840: -57,44 + 5841: -59,46 + 5842: -59,46 + 5843: -59,47 + 5844: -58,47 + 5845: -56,47 + 5846: -55,47 + 5847: -55,47 + 5848: -56,47 + 5849: -56,46 + 5850: -58,47 + 5851: -53,47 + 5852: -53,47 + 5853: -55,47 + 5854: -54,46 + 5855: -53,46 + 5856: -52,46 + 5857: -54,47 + 5858: -54,46 + 5859: -51,47 + 5860: -52,46 + 5861: -50,46 + 5862: -49,46 + 5863: -49,47 + 5864: -51,47 + 5865: -50,46 + 5866: -48,46 + 5867: -48,47 + 5868: -48,47 + 5869: -47,47 + 5870: -47,48 + 5871: -48,49 + 5872: -49,49 + 5873: -49,48 + 5874: -50,47 + 5875: -50,46 + 5876: -48,47 + 5877: -48,48 + 5878: -47,49 + 5879: -52,46 + 5880: -50,46 + 5881: -48,46 + 5882: -48,46 + 5883: -48,48 + 5884: -47,47 + 5885: -47,46 + 5886: -48,44 + 5887: -49,45 + 5888: -49,44 + 5889: -48,43 + 5890: -47,45 + 5891: -47,45 + 5892: -49,45 + 5893: -50,44 + 5894: -50,43 + 5895: -49,43 + 5896: -50,45 + 5897: -49,44 + 5898: -49,42 + 5899: -48,42 + 5900: -47,43 + 5901: -47,44 + 5902: -47,42 + 5903: -47,41 + 5904: -48,41 + 5905: -49,40 + 5906: -48,40 + 5907: -47,41 + 5908: -49,42 + 5909: -49,42 + 5910: -49,40 + 5911: -48,39 + 5912: -47,38 + 5913: -47,39 + 5914: -48,39 + 5915: -49,38 + 5916: -49,37 + 5917: -48,35 + 5918: -47,36 + 5919: -48,37 + 5920: -48,38 + 5921: -48,38 + 5922: -48,36 + 5923: -47,35 + 5924: -47,35 + 5925: -48,36 + 5926: -49,35 + 5927: -49,35 + 5928: -49,38 + 5929: -48,39 + 5930: -48,40 + 5931: -49,42 + 5932: -49,41 + 5933: -47,39 + 5934: -49,39 + 5935: -47,37 + 5936: -49,34 + 5937: -48,34 + 5938: -47,34 + 5939: -47,34 + 5940: -48,34 + 5941: -10,34 + 5942: -11,33 + 5943: -11,32 + 5944: -11,31 + 5945: -13,30 + 5946: -14,31 + 5947: -14,29 + 5948: -14,29 + 5949: -11,32 + 5950: -10,33 + 5951: -9,33 + 5952: -10,34 + 5953: -11,34 + 5954: -10,34 + 5955: -8,34 + 5956: -7,33 + 5957: -7,32 + 5958: -8,31 + 5959: -10,31 + 5960: -12,30 + 5961: -13,29 + 5962: -12,28 + 5963: -14,25 + 5964: -14,23 + 5965: -14,22 + 5966: -12,21 + 5967: -12,22 + 5968: -12,20 + 5969: -12,19 + 5970: -14,21 + 5971: -14,21 + 5972: -13,20 + 5973: -13,22 + 5974: -14,24 + 5975: -14,25 + 5976: -14,15 + 5977: -13,13 + 5978: -12,15 + 5979: -13,16 + 5980: -14,17 + 5981: -13,16 + 5982: -13,16 + 5983: -14,16 + 5984: -14,19 + 5985: -13,21 + 5986: -13,23 + 5987: -13,25 + 5988: -13,11 + 5989: -12,13 + 5990: -13,12 + 5991: -13,12 + 5992: -12,6 + 5993: -13,6 + 5994: -14,6 + 5995: -13,4 + 5996: -12,5 + 5997: -12,5 + 5998: -13,5 + 5999: -14,4 + 6000: -10,5 + 6001: -9,5 + 6002: -10,4 + 6003: -9,4 + 6004: -8,4 + 6005: -8,4 + 6006: -8,4 + 6007: -6,4 + 6008: -7,6 + 6009: -8,6 + 6010: -6,7 + 6011: -4,6 + 6012: -3,6 + 6013: -3,5 + 6014: -3,4 + 6015: -4,4 + 6016: -2,5 + 6017: -2,5 + 6018: -3,4 + 6019: -1,5 + 6020: 1,6 + 6021: 0,5 + 6022: 0,5 + 6023: 2,4 + 6024: 4,5 + 6025: 2,6 + 6026: 2,5 + 6027: 4,4 + 6028: 4,5 + 6029: 3,6 + 6030: 3,4 + 6031: 4,5 + 6032: 3,5 + 6033: 4,6 + 6034: 7,4 + 6035: 6,4 + 6036: 7,4 + 6037: 8,4 + 6038: 5,3 + 6039: 4,3 + 6040: 9,4 + 6041: 10,4 + 6042: 10,4 + 6043: 10,5 + 6044: 11,4 + 6045: 11,6 + 6046: 11,6 + 6047: 14,5 + 6048: 15,5 + 6049: 17,6 + 6050: 18,6 + 6051: 17,5 + 6052: 18,6 + 6053: 20,6 + 6054: 21,6 + 6055: 22,6 + 6056: 23,5 + 6057: 23,5 + 6058: 22,4 + 6059: 23,4 + 6060: 21,5 + 6061: 19,6 + 6062: 25,5 + 6063: 25,6 + 6064: 25,7 + 6065: 26,6 + 6066: 26,5 + 6067: 28,7 + 6068: 29,7 + 6069: 28,8 + 6070: 27,9 + 6071: 26,9 + 6072: 26,9 + 6073: 26,10 + 6074: 25,11 + 6075: 25,12 + 6076: 26,13 + 6077: 26,14 + 6078: 26,15 + 6079: 25,16 + 6080: 28,13 + 6081: 28,13 + 6082: 28,14 + 6083: 28,16 + 6084: 27,17 + 6085: 27,18 + 6086: 28,19 + 6087: 27,19 + 6088: 25,20 + 6089: 27,20 + 6090: 27,21 + 6091: 28,21 + 6092: 28,20 + 6093: 26,22 + 6094: 28,24 + 6095: 28,24 + 6096: 26,25 + 6097: 25,25 + 6098: 25,25 + 6099: 25,23 + 6100: 26,23 + 6101: 28,11 + 6102: 28,10 + 6103: 28,12 + 6104: 28,12 + 6112: -22,55 + 6113: -23,54 + 6114: -22,54 + 6115: -21,54 + 6116: -21,55 + 6117: -21,56 + 6118: -22,57 + 6119: -22,57 + 6120: -23,57 + 6121: -23,55 + 6122: -23,54 + 6123: -22,55 + 6124: -22,56 + 6125: -22,57 + 6126: -23,56 + 6127: -23,55 + 6128: -23,54 + 6129: -23,54 + 6130: -23,56 + 6131: -23,57 + 6132: -22,57 + 6133: -21,57 + 6134: -24,54 + 6135: -24,53 + 6136: -23,53 + 6137: -21,53 + 6138: -21,53 + 6139: -24,54 + 6140: -24,55 + 6141: -24,56 + 6142: -24,56 + 6143: -21,54 + 6144: -21,54 + 6145: -21,55 + 6146: -22,57 + 6147: -23,57 + 6148: -23,55 + 6149: -51,33 + 6150: -49,32 + 6151: -51,31 + 6152: -55,31 + 6153: -54,32 + 6154: -55,33 + 6155: -57,25 + 6156: -58,22 + 6157: -58,21 + 6158: -59,20 + 6159: -57,18 + 6160: -59,17 + 6161: -59,12 + 6162: -57,10 + 6163: -58,10 + 6164: -59,8 + 6165: -59,9 + 6166: -59,4 + 6167: -59,5 + 6168: -57,4 + 6169: -61,4 + 6170: -56,4 + 6171: -65,4 + 6172: -67,4 + 6173: -69,5 + 6174: -69,4 + 6175: -70,5 + 6176: -72,6 + 6177: -74,5 + 6178: -75,4 + 6179: -57,0 + 6180: -58,0 + 6181: -59,-2 + 6182: -59,-1 + 6183: -58,-2 + 6184: -58,-6 + 6185: -57,-5 + 6186: -57,-8 + 6187: -58,-8 + 6188: -59,-9 + 6189: -57,-10 + 6190: -52,6 + 6191: -50,6 + 6192: -51,4 + 6193: -49,3 + 6194: -50,3 + 6195: -48,6 + 6196: -46,6 + 6197: -48,5 + 6198: -47,6 + 6199: -44,6 + 6200: -43,5 + 6201: -43,6 + 6202: -42,6 + 6203: -39,6 + 6204: -34,7 + 6205: -39,4 + 6206: -35,4 + 6207: -37,3 + 6208: -38,3 + 6209: -39,3 + 6210: -41,3 + 6211: -35,3 + 6212: -33,4 + 6213: -29,4 + 6214: -28,4 + 6215: -39,4 + 6216: -38,4 + 6217: -36,5 + 6218: -37,6 + 6219: -39,6 + 6220: -40,5 + 6221: -39,4 + 6222: -37,4 + 6223: -37,6 + 6224: -38,6 + 6225: -38,5 + 6226: -38,7 + 6227: -38,8 + 6228: -41,5 + 6229: -42,5 + 6230: -32,5 + 6231: -32,5 + 6232: -34,6 + 6233: -33,6 + 6234: -33,5 + 6235: -38,18 + 6236: -39,16 + 6237: -37,14 + 6238: -39,13 + 6239: -38,23 + 6240: -38,23 + 6241: -39,26 + 6242: -39,26 + 6243: -39,27 + 6244: -38,26 + 6245: -37,24 + 6246: -37,25 + 6247: -38,24 + 6248: -37,29 + 6249: -38,30 + 6250: -38,31 + 6251: -37,31 + 6252: -38,30 + 6253: -37,32 + 6254: -39,32 + 6255: -40,33 + 6256: -41,32 + 6257: -42,32 + 6258: -41,33 + 6259: -39,33 + 6260: -38,32 + 6261: -38,31 + 6262: -37,31 + 6263: -35,32 + 6264: -35,33 + 6265: -36,33 + 6266: -39,32 + 6267: -39,32 + 6268: -38,32 + 6269: -37,33 + 6270: -39,33 + 6271: -39,33 + 6272: -38,31 + 6273: -37,31 + 6274: -36,32 + 6275: -35,32 + 6276: -36,31 + 6277: -34,33 + 6278: -33,32 + 6279: -31,31 + 6280: -30,31 + 6281: -29,32 + 6282: -28,32 + 6283: -38,30 + 6284: -39,30 + 6285: -39,28 + 6286: -37,30 + 6287: -39,28 + 6288: -39,27 + 6289: -28,35 + 6290: -29,35 + 6291: -29,36 + 6292: -29,37 + 6293: -28,37 + 6294: -28,37 + 6295: -28,36 + 6296: -28,37 + 6297: -29,38 + 6298: -29,38 + 6299: -29,36 + 6300: -29,35 + 6301: -29,35 + 6302: -28,37 + 6303: -28,38 + 6304: -31,39 + 6305: -31,40 + 6306: -32,40 + 6307: -33,39 + 6308: -32,39 + 6309: -32,40 + 6310: -33,40 + 6311: -32,38 + 6312: -31,39 + 6313: -32,40 + 6314: -33,38 + 6315: -32,38 + 6316: -31,39 + 6317: -33,39 + 6318: -33,37 + 6319: -32,36 + 6320: -31,37 + 6321: -33,37 + 6322: -33,35 + 6323: -31,35 + 6324: -31,37 + 6325: -33,36 + 6326: -32,35 + 6327: -32,37 + 6328: -32,36 + 6329: -33,35 + 6330: -33,37 + 6331: -33,36 + 6332: -33,35 + 6333: -34,36 + 6334: -34,38 + 6336: -51,35 + 6337: -52,36 + 6338: -53,35 + 6339: -51,34 + 6340: -52,34 + 6341: -52,34 + 6342: -52,35 + 6343: -51,35 + 6344: -53,36 + 6345: -54,35 + 6346: -54,36 + 6347: -53,37 + 6348: -52,38 + 6349: -52,38 + 6350: -51,37 + 6351: -51,36 + 6352: -52,36 + 6353: -52,37 + 6354: -52,36 + 6355: -53,35 + 6356: -53,36 + 6357: -53,38 + 6358: -53,40 + 6359: -53,40 + 6360: -51,40 + 6361: -52,41 + 6362: -53,41 + 6363: -53,40 + 6364: -51,40 + 6365: -52,41 + 6366: -53,41 + 6367: -53,38 + 6368: -53,38 + 6369: -54,37 + 6370: -54,36 + 6371: -53,36 + 6372: -52,38 + 6373: -51,38 + 6374: -51,37 + 6375: -52,36 + 6376: -53,36 + 6377: -53,35 + 6378: -45,47 + 6379: -45,46 + 6380: -45,45 + 6381: -45,44 + 6382: -45,43 + 6383: -45,42 + 6384: -45,41 + 6385: -44,41 + 6386: -44,42 + 6387: -44,43 + 6388: -44,45 + 6389: -44,46 + 6390: -43,46 + 6391: -43,46 + 6392: -43,46 + 6393: -43,44 + 6394: -43,43 + 6395: -43,42 + 6396: -43,42 + 6397: -43,41 + 6398: -42,41 + 6399: -42,43 + 6400: -42,44 + 6401: -42,45 + 6402: -42,46 + 6403: -42,47 + 6404: -43,47 + 6405: -43,46 + 6406: -43,46 + 6407: -42,46 + 6408: -41,46 + 6409: -41,46 + 6410: -41,44 + 6411: -41,42 + 6412: -41,42 + 6413: -41,41 + 6414: -41,44 + 6415: -41,46 + 6416: -41,47 + 6417: -42,47 + 6418: -43,43 + 6419: -43,42 + 6420: -44,42 + 6421: -44,44 + 6422: -44,45 + 6423: -43,45 + 6424: -43,44 + 6425: -44,43 + 6426: -43,43 + 6427: -42,45 + 6428: -43,45 + 6429: -44,45 + 6430: -43,46 + 6431: -45,47 + 6432: -45,44 + 6433: -45,42 + 6434: -45,41 + 6435: -44,41 + 6436: -43,41 + 6437: -42,42 + 6438: -42,43 + 6439: -43,45 + 6440: -43,45 + 6441: -44,44 + 6442: -45,44 + 6443: -45,43 + 6444: -45,41 + 6445: -44,41 + 6446: -43,42 + 6447: -44,45 + 6448: -44,46 + 6449: -45,45 + 6450: -44,44 + 6451: -43,43 + 6452: -42,45 + 6453: -44,46 + 6454: -44,46 + 6455: -45,45 + 6456: -45,43 + 6457: -43,42 + 6458: -42,42 + 6459: -41,44 + 6460: -42,46 + 6461: -42,47 + 6462: -44,47 + 6463: -40,44 + 6464: -40,45 + 6465: -40,46 + 6466: -39,46 + 6467: -38,47 + 6468: -39,47 + 6469: -39,45 + 6470: -38,45 + 6471: -37,47 + 6472: -38,46 + 6473: -38,45 + 6474: -38,43 + 6475: -37,43 + 6476: -37,46 + 6477: -39,45 + 6478: -39,42 + 6479: -38,42 + 6480: -36,43 + 6481: -36,43 + 6482: -37,43 + 6483: -36,42 + 6484: -35,42 + 6485: -34,43 + 6486: -34,42 + 6487: -33,42 + 6488: -33,43 + 6489: -34,43 + 6490: -33,42 + 6491: -32,43 + 6492: -32,44 + 6493: -33,45 + 6494: -33,47 + 6495: -34,46 + 6496: -33,45 + 6497: -32,46 + 6498: -34,47 + 6499: -35,46 + 6500: -36,45 + 6501: -35,44 + 6502: -34,44 + 6503: -35,46 + 6504: -36,46 + 6505: -38,46 + 6506: -39,47 + 6507: -38,47 + 6508: -34,46 + 6509: -33,46 + 6510: -33,47 + 6511: -33,47 + 6512: -33,44 + 6513: -32,44 + 6514: -32,43 + 6515: -33,44 + 6516: -34,43 + 6517: -35,43 + 6518: -36,43 + 6519: -37,42 + 6520: -38,42 + 6521: -38,43 + 6522: -39,44 + 6523: -39,43 + 6524: -39,42 + 6525: -39,45 + 6526: -38,46 + 6527: -39,47 + 6528: -39,47 + 6529: -37,44 + 6530: -36,44 + 6531: -34,45 + 6532: -37,45 + 6533: -32,45 + 6534: -32,46 + 6535: -32,46 + 6536: -32,44 + 6537: -32,43 + 6538: -33,43 + 6539: -35,42 + 6540: -33,42 + 6541: -33,42 + 6542: -32,47 + 6543: -29,44 + 6544: -29,45 + 6545: -29,47 + 6546: -30,46 + 6547: -30,45 + 6548: -30,44 + 6549: -28,44 + 6550: -28,45 + 6551: -28,46 + 6552: -29,47 + 6553: -29,47 + 6554: -30,45 + 6555: -29,45 + 6556: -29,44 + 6557: -28,44 + 6558: -29,45 + 6559: -30,46 + 6560: -30,46 + 6561: -29,45 + 6562: -28,45 + 6563: -29,46 + 6564: -29,47 + 6565: -30,47 + 6566: -30,44 + 6567: -29,44 + 6568: -28,44 + 6569: -28,47 + 6570: -36,49 + 6571: -36,49 + 6572: -35,51 + 6573: -35,51 + 6574: -37,51 + 6575: -38,43 + 6576: -38,44 + 6577: -38,44 + 6578: -36,41 + 6579: -37,41 + 6580: -37,41 + 6581: -38,41 + 6582: -38,41 + 6583: -37,41 + 6584: -37,41 + 6585: -36,49 + 6586: -36,50 + 6587: -36,51 + 6588: -36,51 + 6589: -37,50 + 6590: -37,49 + 6591: -37,49 + 6592: -38,50 + 6593: -38,50 + 6594: -38,49 + 6595: -38,51 + 6596: -37,52 + 6597: -37,52 + 6598: -38,52 + 6599: -38,51 + 6600: -37,51 + 6601: -35,50 + 6602: -35,49 + 6603: -35,50 + 6604: -36,51 + 6605: -37,51 + 6606: -38,52 + 6607: -38,51 + 6608: -38,50 + 6609: -38,50 + 6610: -38,51 + 6611: -41,51 + 6612: -41,52 + 6613: -42,52 + 6614: -43,51 + 6615: -43,51 + 6616: -42,50 + 6617: -42,50 + 6618: -42,52 + 6619: -43,52 + 6620: -43,50 + 6621: -43,50 + 6622: -42,49 + 6623: -41,49 + 6624: -40,50 + 6625: -40,52 + 6626: -41,52 + 6627: -42,51 + 6628: -41,50 + 6629: -40,51 + 6630: -42,51 + 6631: -30,47 + 6632: -29,41 + 6633: -30,42 + 6634: -30,42 + 6635: -29,42 + 6636: -28,42 + 6637: -28,41 + 6638: -28,40 + 6639: -29,41 + 6640: -35,43 + 6641: -37,42 + 6642: -4,33 + 6643: -5,34 + 6644: -4,32 + 6645: -3,30 + 6646: -2,30 + 6647: -1,30 + 6648: -1,29 + 6649: 0,31 + 6650: 0,32 + 6651: 0,33 + 6652: -1,33 + 6653: -1,31 + 6654: 0,30 + 6655: -4,29 + 6656: -5,29 + 6657: -5,29 + 6658: -5,31 + 6659: -5,33 + 6660: -4,34 + 6661: -4,34 + 6662: 2,29 + 6663: 4,30 + 6664: 4,30 + 6665: 4,32 + 6666: 3,34 + 6667: 2,33 + 6668: 2,31 + 6669: 2,24 + 6670: 4,26 + 6671: 2,20 + 6672: 3,19 + 6673: 4,19 + 6674: 6,19 + 6675: 7,20 + 6676: 9,20 + 6677: 9,18 + 6678: 6,15 + 6679: 6,14 + 6680: 6,16 + 6681: 6,17 + 6682: 7,17 + 6683: 7,17 + 6684: 7,16 + 6685: 9,16 + 6686: 11,14 + 6687: -2,19 + 6688: -1,19 + 6689: -2,20 + 6690: -3,21 + 6691: -2,22 + 6692: -1,23 + 6693: 0,24 + 6694: 0,25 + 6695: 0,26 + 6696: -1,26 + 6697: -2,27 + 6698: -4,27 + 6699: -5,26 + 6700: -5,25 + 6701: -5,24 + 6702: -1,25 + 6703: -1,27 + 6704: -3,27 + 6705: -4,26 + 6706: -3,25 + 6707: -1,23 + 6708: -2,22 + 6709: -3,22 + 6710: -3,20 + 6711: -1,24 + 6712: -1,24 + 6713: -2,24 + 6714: -2,22 + 6715: 0,22 + 6716: 0,23 + 6717: -3,23 + 6718: -2,25 + 6719: 0,25 + 6720: -1,26 + 6721: -2,26 + 6722: -4,25 + 6723: -4,24 + 6724: -4,21 + 6725: -5,19 + 6726: -4,19 + 6727: -5,20 + 6728: -4,21 + 6729: 10,29 + 6730: 11,28 + 6731: 11,28 + 6732: 12,29 + 6733: 12,30 + 6734: 11,32 + 6735: 9,31 + 6736: 8,31 + 6737: 8,28 + 6738: 10,28 + 6739: 7,31 + 6740: 7,31 + 6741: 6,36 + 6742: 6,37 + 6743: 3,36 + 6744: 2,37 + 6745: 0,36 + 6746: -1,37 + 6747: 2,40 + 6748: 4,39 + 6749: 4,37 + 6750: 4,37 + 6751: 3,37 + 6752: 10,40 + 6753: 10,40 + 6754: 9,43 + 6755: 9,42 + 6756: 10,42 + 6757: 10,43 + 6758: 11,43 + 6759: 12,43 + 6760: 12,42 + 6761: -25,33 + 6762: -24,32 + 6763: -25,34 + 6764: -23,34 + 6765: -22,34 + 6766: -21,34 + 6767: -20,34 + 6768: -22,33 + 6769: -18,31 + 6770: -17,34 + 6771: -18,34 + 6772: -16,34 + 6773: -17,35 + 6774: -17,35 + 6775: -17,36 + 6776: -18,37 + 6777: -18,42 + 6778: -18,44 + 6779: -18,46 + 6780: -18,48 + 6781: -17,48 + 6782: -17,49 + 6783: -18,51 + 6784: -17,51 + 6785: -16,51 + 6786: -17,51 + 6787: -14,47 + 6788: -14,46 + 6789: -13,46 + 6790: -11,46 + 6791: -11,46 + 6792: -11,49 + 6793: -12,49 + 6794: -14,49 + 6795: -14,49 + 6796: -14,33 + 6797: -15,33 + 6798: -15,31 + 6799: -16,31 + 6800: -14,29 + 6801: -12,29 + 6802: -14,30 + 6803: -11,28 + 6804: -11,27 + 6805: -9,28 + 6806: -10,30 + 6807: -11,30 + 6808: -12,27 + 6809: -14,27 + 6810: -13,26 + 6811: -14,26 + 6812: -12,22 + 6813: -13,17 + 6814: -12,17 + 6815: -12,9 + 6816: -15,4 + 6817: -16,4 + 6818: -15,3 + 6819: -16,3 + 6820: -18,3 + 6821: -19,3 + 6822: -20,6 + 6823: -21,6 + 6824: -22,5 + 6825: -23,4 + 6826: -26,4 + 6827: -26,6 + 6828: -7,4 + 6829: -10,2 + 6830: -10,0 + 6831: -10,-1 + 6832: -9,-2 + 6833: -9,-2 + 6834: -10,0 + 6835: -10,1 + 6836: -9,-3 + 6837: -10,-3 + 6838: -11,-2 + 6839: -13,-2 + 6840: -14,-2 + 6841: -13,-4 + 6842: -14,-6 + 6843: -12,-5 + 6844: -10,-6 + 6845: -9,-6 + 6846: -12,-6 + 6847: -13,-6 + 6848: -12,-8 + 6849: -13,-8 + 6850: -14,-8 + 6851: -7,-6 + 6852: -7,-5 + 6853: -6,-3 + 6854: -6,-3 + 6855: -4,-2 + 6856: -5,-2 + 6857: -2,-4 + 6858: -3,-5 + 6859: -4,-5 + 6860: -6,-6 + 6861: -7,-6 + 6862: 1,-2 + 6863: 1,-1 + 6864: 1,4 + 6865: 0,4 + 6866: -5,5 + 6867: 10,2 + 6868: 10,1 + 6869: 11,0 + 6870: 10,-4 + 6871: 10,0 + 6872: 13,5 + 6873: 13,6 + 6874: 20,5 + 6875: 19,4 + 6876: 22,5 + 6877: 25,8 + 6878: 25,9 + 6879: 25,10 + 6880: 25,9 + 6881: -35,7 + 6882: -36,7 + 6883: -38,14 + 6884: -40,20 + 6885: -41,30 + 6886: -41,30 + 6887: -45,30 + 6888: -45,30 + 6889: -46,31 + 6890: -46,33 + 6891: -48,31 + 6892: -47,32 + 6893: -55,31 + 6894: -56,31 + 6895: -49,36 + 6896: -50,36 + 6897: -48,45 + 6898: -49,46 + 6899: -51,46 + 6900: -53,47 + 6901: -57,47 + 6902: -57,36 + 6903: -57,35 + 6904: -56,35 + 6905: -56,36 + 6906: -57,32 + 6907: -58,31 + 6908: -59,29 + 6909: -59,30 + 6910: -58,26 + 6911: -59,26 + 6912: -58,28 + 6913: -58,23 + 6914: -58,22 + 6915: -59,21 + 6916: -58,18 + 6917: -59,22 + 6918: -59,23 + 6919: -60,24 + 6920: -60,24 + 6921: -57,14 + 6922: -58,15 + 6923: -59,15 + 6924: -59,17 + 6925: -59,20 + 6926: -57,7 + 6927: -57,6 + 6928: -58,6 + 6929: -59,7 + 6930: -59,4 + 6931: -59,3 + 6932: -60,5 + 6933: -60,6 + 6934: -60,5 + 6935: -60,4 + 6936: -62,6 + 6937: -68,6 + 6938: -69,6 + 6939: -71,4 + 6940: -72,4 + 6941: -73,4 + 6942: -75,6 + 6943: -76,6 + 6944: -73,6 + 6945: -52,4 + 6946: -54,4 + 6947: -55,4 + 6948: -54,4 + 6949: -53,5 + 6950: -46,4 + 6951: -45,4 + 6952: -48,4 + 6953: -49,3 + 6954: -59,2 + 6955: -59,-4 + 6956: -59,-8 + 6957: -50,3 + 6958: -31,31 + 6959: -29,31 + 6960: -28,31 + 6961: -28,31 + 6962: -47,49 + 6963: -72,33 + 6964: -71,33 + 6965: -71,33 + 6966: -73,34 + 6967: -73,34 + 6968: -75,32 + 6969: -69,34 + 6970: -70,33 + 6971: -72,33 + 6972: -72,35 + 6973: -73,35 + 6974: -74,34 + 6975: -74,28 + 6976: -75,29 + 6977: -64,31 + 6978: -65,32 + 6979: -64,31 + 6980: -66,28 + 6981: -65,27 + 6982: -64,26 + 6983: -65,21 + 6984: -64,19 + 6997: 1,23 + 6998: 1,23 + 6999: 1,23 + 7000: 1,29 + 7001: 1,30 + 7002: 1,30 + 7003: 1,29 + 7004: 1,30 + 7005: 6,29 + 7006: 6,28 + 7007: 6,28 + 7008: 6,29 + 7009: 6,29 + 7010: 5,33 + 7011: 5,33 + 7012: 1,33 + 7013: 1,33 + 7014: 1,33 + 7015: 3,35 + 7016: 3,35 + 7017: 3,35 + 7018: 3,35 + 7019: 5,25 + 7020: 5,24 + 7021: 5,25 + 7022: 5,19 + 7023: 5,19 + 7024: 8,19 + 7025: 8,19 + 7026: 8,19 + 7027: -52,7 + 7028: -51,7 + 7029: -55,18 + 7030: -55,18 + 7031: -55,18 + 7032: -55,20 + 7033: -54,20 + 7034: -53,19 + 7035: -53,18 + 7036: -53,18 + 7037: -23,32 + 7038: -22,31 + 7039: -23,31 + 7040: -26,34 + 7041: -26,32 + 7042: -31,32 + 7043: -30,33 + 7047: -20,33 + 7048: -20,33 + 7049: -19,33 + 7050: -24,33 + 7051: -21,35 + 7333: -46,-10 + 7334: -45,-10 + 7335: -44,-10 + 7336: -42,-11 + 7337: -41,-11 + 7338: -41,-12 + 7339: -44,-12 + 7340: -45,-12 + 7341: -45,-13 + 7342: -43,-14 + 7343: -41,-14 + 7344: -41,-14 + 7345: -43,-14 + 7346: -45,-14 + 7347: -46,-14 + 7348: -46,-12 + 7349: -46,-11 + 7350: -43,-11 + 7351: -40,-11 + 7352: -39,-12 + 7353: -39,-13 + 7354: -41,-13 + 7355: -43,-13 + 7356: -44,-13 + 7357: -43,-14 + 7358: -40,-14 + 7359: -38,-14 + 7360: -38,-12 + 7361: -39,-11 + 7362: -40,-10 + 7363: -41,-10 + 7364: -42,-10 + 7365: -43,-10 + 7366: -43,-12 + 7367: -42,-12 + 7368: -42,-13 + 7443: -43,1 + 7444: -43,1 + 7452: -43,66 + 7453: -43,66 + 7454: -43,66 + 7460: -73,15 + 7461: -74,15 + 7462: -74,15 + 7463: -75,15 + 7464: -74,15 - node: cleanable: True angle: 3.141592653589793 rad color: '#FFFFFFFF' id: DirtHeavy decals: - 2676: -18,22 - 2677: -17,22 - 2678: -16,22 - 2679: -16,23 - 2680: -17,24 - 2681: -18,23 - 2682: -16,23 - 2683: -16,25 - 2684: -18,26 - 2685: -18,24 - 2686: -16,25 - 2687: -17,26 - 2688: -17,26 - 2689: -17,24 + 2624: -18,22 + 2625: -17,22 + 2626: -16,22 + 2627: -16,23 + 2628: -17,24 + 2629: -18,23 + 2630: -16,23 + 2631: -16,25 + 2632: -18,26 + 2633: -18,24 + 2634: -16,25 + 2635: -17,26 + 2636: -17,26 + 2637: -17,24 - node: color: '#FFFFFFFF' id: DirtLight decals: - 1685: -30,52 - 1686: -29,53 - 1687: -27,54 - 1688: -27,54 - 1689: -28,55 - 1690: -30,54 - 1691: -29,53 - 1700: -44,50 - 1701: -44,50 - 1702: -44,49 - 1703: -40,45 - 1736: -43,36 - 1737: -43,37 - 1738: -44,39 - 1739: -45,37 - 1740: -43,36 - 1741: -40,38 - 1742: -37,39 - 1743: -39,40 - 1744: -42,38 - 1745: -46,38 - 1746: -40,35 - 1747: -39,39 - 1748: -41,38 - 1749: -44,37 - 1750: -41,39 - 1751: -37,36 - 1752: -40,36 - 1753: -43,37 - 1754: -36,37 - 1755: -35,38 - 1756: -35,38 - 1757: -35,37 - 1758: -35,35 - 1994: -54,46 - 1995: -47,40 - 1996: -48,37 - 2729: 3,27 - 2730: 13,28 - 2731: 10,37 - 7235: 25,24 - 7236: 26,24 - 7237: 27,24 - 7238: 28,24 - 7239: 28,25 - 7240: 26,25 - 7241: 25,25 - 7242: 25,26 - 7243: 26,26 - 7244: 27,25 - 7245: 27,25 - 7246: 28,26 - 7247: 27,26 - 7248: 26,26 - 7249: 25,26 - 7250: 26,27 - 7251: 28,27 - 7252: 28,27 - 7253: 28,28 - 7254: 26,28 - 7255: 25,27 - 7256: 25,27 - 7257: 25,28 - 7258: 27,25 - 7259: 27,25 - 7260: 27,24 - 7261: 25,23 - 7262: 27,23 - 7263: 28,23 - 7264: 27,23 - 7342: -75,-10 - 7343: -75,-10 - 7344: -76,-11 - 7345: -76,-12 - 7346: -75,-12 - 7347: -74,-11 - 7348: -74,-10 - 7349: -73,-10 - 7350: -74,-11 - 7351: -73,-11 - 7352: -72,-10 - 7353: -71,-11 - 7354: -70,-12 - 7355: -67,-12 - 7356: -68,-12 - 7357: -69,-12 - 7358: -70,-11 - 7359: -70,-11 - 7360: -69,-11 - 7361: -65,-11 - 7362: -62,-11 - 7363: -63,-12 - 7364: -63,-12 - 7365: -60,-11 - 7366: -60,-12 - 7367: -60,-12 - 7368: -60,-12 - 7369: -60,-10 - 7370: -62,-10 - 7371: -64,-10 - 7372: -65,-10 + 1636: -30,52 + 1637: -29,53 + 1638: -27,54 + 1639: -27,54 + 1640: -28,55 + 1641: -30,54 + 1642: -29,53 + 1651: -44,50 + 1652: -44,50 + 1653: -44,49 + 1654: -40,45 + 1687: -43,36 + 1688: -43,37 + 1689: -44,39 + 1690: -45,37 + 1691: -43,36 + 1692: -40,38 + 1693: -37,39 + 1694: -39,40 + 1695: -42,38 + 1696: -46,38 + 1697: -40,35 + 1698: -39,39 + 1699: -41,38 + 1700: -44,37 + 1701: -41,39 + 1702: -37,36 + 1703: -40,36 + 1704: -43,37 + 1705: -36,37 + 1706: -35,38 + 1707: -35,38 + 1708: -35,37 + 1709: -35,35 + 1945: -54,46 + 1946: -47,40 + 1947: -48,37 + 2677: 3,27 + 2678: 13,28 + 2679: 10,37 + 7141: 25,24 + 7142: 26,24 + 7143: 27,24 + 7144: 28,24 + 7145: 28,25 + 7146: 26,25 + 7147: 25,25 + 7148: 25,26 + 7149: 26,26 + 7150: 27,25 + 7151: 27,25 + 7152: 28,26 + 7153: 27,26 + 7154: 26,26 + 7155: 25,26 + 7156: 26,27 + 7157: 28,27 + 7158: 28,27 + 7159: 28,28 + 7160: 26,28 + 7161: 25,27 + 7162: 25,27 + 7163: 25,28 + 7164: 27,25 + 7165: 27,25 + 7166: 27,24 + 7167: 25,23 + 7168: 27,23 + 7169: 28,23 + 7170: 27,23 + 7248: -75,-10 + 7249: -75,-10 + 7250: -76,-11 + 7251: -76,-12 + 7252: -75,-12 + 7253: -74,-11 + 7254: -74,-10 + 7255: -73,-10 + 7256: -74,-11 + 7257: -73,-11 + 7258: -72,-10 + 7259: -71,-11 + 7260: -70,-12 + 7261: -67,-12 + 7262: -68,-12 + 7263: -69,-12 + 7264: -70,-11 + 7265: -70,-11 + 7266: -69,-11 + 7267: -65,-11 + 7268: -62,-11 + 7269: -63,-12 + 7270: -63,-12 + 7271: -60,-11 + 7272: -60,-12 + 7273: -60,-12 + 7274: -60,-12 + 7275: -60,-10 + 7276: -62,-10 + 7277: -64,-10 + 7278: -65,-10 - node: cleanable: True color: '#FFFFFFFF' @@ -5258,1285 +5243,1274 @@ entities: 408: 2,-3 409: 1,-2 410: 2,-1 - 430: -9,9 - 431: -9,8 - 432: -9,8 - 433: -13,12 - 434: -12,12 - 435: -13,13 - 436: -13,9 - 437: -13,9 - 438: -12,9 - 439: -13,10 - 440: -16,13 - 441: -16,14 - 442: -16,13 - 443: -18,12 - 444: -9,12 - 445: -8,12 - 446: -12,13 - 447: -13,14 - 448: -13,15 - 449: -12,16 - 450: -12,16 - 451: -13,15 - 452: -14,13 - 453: -13,17 + 428: -9,9 + 429: -9,8 + 430: -9,8 + 431: -13,12 + 432: -12,12 + 433: -13,13 + 434: -13,9 + 435: -13,9 + 436: -12,9 + 437: -13,10 + 438: -16,14 + 439: -18,12 + 440: -9,12 + 441: -8,12 + 442: -12,13 + 443: -13,15 + 444: -12,16 + 445: -12,16 + 446: -13,15 + 447: -13,17 + 448: -12,18 + 449: -14,17 + 450: -16,17 + 451: -17,17 + 452: -18,16 + 453: -16,18 454: -12,18 - 455: -14,17 - 456: -16,17 - 457: -17,17 - 458: -18,16 - 459: -16,18 - 460: -12,18 - 461: -13,17 - 462: -13,18 - 463: -13,20 - 464: -14,20 - 465: -13,19 - 466: -12,21 - 467: -13,22 - 468: -13,22 - 469: -14,22 - 470: -13,22 - 471: -13,22 - 472: -13,24 - 473: -14,25 - 474: -13,24 - 475: -12,23 - 476: -13,25 - 477: -13,27 - 478: -12,27 - 479: -13,27 - 514: -3,33 - 515: -4,34 - 516: -4,32 - 517: -4,32 - 518: -4,30 - 519: -2,30 - 520: -1,30 - 521: 0,31 - 522: -1,30 - 523: -2,29 - 524: -3,29 - 550: -2,20 - 551: -2,21 - 552: -3,25 - 553: -1,25 - 554: 0,25 - 555: 0,24 - 556: -1,23 - 557: -2,24 - 558: -2,25 - 559: -2,24 - 560: -3,22 - 561: -3,21 - 563: -12,31 - 564: -13,31 - 565: -13,31 - 566: -13,29 - 567: -14,29 - 568: -13,27 - 569: -10,9 - 570: -11,8 - 571: -6,-15 - 572: -6,-15 - 573: -8,-13 - 574: 0,-15 - 575: 0,-16 - 576: 0,-15 - 577: 0,-15 - 578: 1,-14 - 579: 2,-14 - 580: 2,-15 - 581: 1,-15 - 582: 1,-15 - 583: 15,-10 - 584: 14,-10 - 585: 14,-9 - 586: 15,-8 - 587: 14,-8 - 588: 13,-8 - 589: 14,-10 - 590: 15,-11 - 591: 15,-11 - 592: 14,-12 - 593: 13,-11 - 594: 13,-10 - 595: 15,-11 - 596: 15,-9 - 597: 13,-8 - 598: 13,-8 - 614: 19,-1 - 615: 20,-1 - 616: 21,-1 - 617: 20,-3 - 618: 20,-3 - 619: 19,-2 - 620: 20,0 - 621: 20,1 - 622: 19,1 - 623: 19,0 - 624: 20,2 - 625: 19,2 - 626: 19,2 - 627: 20,0 - 684: -17,28 - 685: -16,28 - 686: -18,28 - 687: -17,27 - 688: -9,27 - 689: -10,28 - 690: -7,29 - 691: -7,30 - 692: -8,30 - 693: -11,29 - 694: -5,29 - 695: -5,30 - 696: -5,31 - 697: -5,32 - 698: -5,33 - 699: -4,33 - 700: -3,34 - 701: -2,34 - 702: 0,33 - 703: 0,32 - 704: 0,31 - 705: -1,30 - 706: -2,29 - 707: -3,29 - 708: -4,30 - 709: -4,30 - 710: -5,30 - 711: -9,29 - 712: -8,29 - 713: -8,28 - 714: -9,28 - 715: -9,29 - 716: -8,29 - 717: -8,28 - 780: -45,-8 - 781: -46,-7 - 782: -44,-8 - 783: -44,-8 - 784: -44,-7 - 785: -45,-7 - 820: -41,4 - 821: -41,5 - 822: -42,3 - 823: -41,1 - 824: -41,0 - 825: -42,1 - 826: -42,5 - 827: -41,6 - 828: -38,6 + 455: -13,17 + 456: -13,18 + 457: -13,20 + 458: -14,20 + 459: -13,19 + 460: -12,21 + 461: -13,22 + 462: -13,22 + 463: -14,22 + 464: -13,22 + 465: -13,22 + 466: -13,24 + 467: -14,25 + 468: -13,24 + 469: -12,23 + 470: -13,25 + 471: -13,27 + 472: -12,27 + 473: -13,27 + 508: -3,33 + 509: -4,34 + 510: -4,32 + 511: -4,32 + 512: -4,30 + 513: -2,30 + 514: -1,30 + 515: 0,31 + 516: -1,30 + 517: -2,29 + 518: -3,29 + 544: -2,20 + 545: -2,21 + 546: -3,25 + 547: -1,25 + 548: 0,25 + 549: 0,24 + 550: -1,23 + 551: -2,24 + 552: -2,25 + 553: -2,24 + 554: -3,22 + 555: -3,21 + 557: -12,31 + 558: -13,31 + 559: -13,31 + 560: -13,29 + 561: -14,29 + 562: -13,27 + 563: -10,9 + 564: -11,8 + 565: -6,-15 + 566: -6,-15 + 567: -8,-13 + 568: 0,-15 + 569: 0,-16 + 570: 0,-15 + 571: 0,-15 + 572: 1,-14 + 573: 2,-14 + 574: 2,-15 + 575: 1,-15 + 576: 1,-15 + 577: 15,-10 + 578: 14,-10 + 579: 14,-9 + 580: 15,-8 + 581: 14,-8 + 582: 13,-8 + 583: 14,-10 + 584: 15,-11 + 585: 15,-11 + 586: 14,-12 + 587: 13,-11 + 588: 13,-10 + 589: 15,-11 + 590: 15,-9 + 591: 13,-8 + 592: 13,-8 + 608: 19,-1 + 609: 20,-1 + 610: 21,-1 + 611: 20,-3 + 612: 20,-3 + 613: 19,-2 + 614: 20,0 + 615: 20,1 + 616: 19,1 + 617: 19,0 + 618: 20,2 + 619: 19,2 + 620: 19,2 + 621: 20,0 + 678: -17,28 + 679: -16,28 + 680: -18,28 + 681: -17,27 + 682: -9,27 + 683: -10,28 + 684: -7,29 + 685: -7,30 + 686: -8,30 + 687: -11,29 + 688: -5,29 + 689: -5,30 + 690: -5,31 + 691: -5,32 + 692: -5,33 + 693: -4,33 + 694: -3,34 + 695: -2,34 + 696: 0,33 + 697: 0,32 + 698: 0,31 + 699: -1,30 + 700: -2,29 + 701: -3,29 + 702: -4,30 + 703: -4,30 + 704: -5,30 + 705: -9,29 + 706: -8,29 + 707: -8,28 + 708: -9,28 + 709: -9,29 + 710: -8,29 + 711: -8,28 + 774: -45,-8 + 775: -46,-7 + 776: -44,-8 + 777: -44,-8 + 778: -44,-7 + 779: -45,-7 + 814: -41,4 + 815: -41,5 + 816: -42,3 + 817: -41,1 + 818: -41,0 + 819: -42,1 + 820: -42,5 + 821: -41,6 + 822: -38,6 + 823: -35,5 + 824: -34,5 + 825: -34,3 + 826: -33,2 + 827: -32,4 + 828: -33,5 829: -35,5 - 830: -34,5 - 831: -34,3 - 832: -33,2 - 833: -32,4 - 834: -33,5 - 835: -35,5 - 836: -34,4 - 837: -33,1 - 838: -33,1 - 839: -34,1 - 840: -35,3 - 841: -36,5 - 842: -37,5 - 843: -37,7 - 844: -35,7 - 845: -35,7 - 846: -37,7 - 847: -38,7 - 848: -35,6 - 849: -32,5 - 850: -31,5 - 851: -33,6 - 852: -33,6 - 853: -36,6 - 854: -37,4 - 855: -37,3 - 856: -38,3 - 857: -39,2 - 858: -38,0 - 859: -37,2 - 860: -39,2 - 861: -38,0 - 862: -37,0 - 863: -37,1 - 864: -38,1 - 902: -29,5 - 903: -30,5 - 904: -30,4 - 905: -27,5 - 906: -27,6 - 907: -28,6 - 908: -27,5 - 909: -24,4 - 910: -21,5 - 911: -20,5 - 912: -22,6 - 913: -21,5 - 914: -17,4 - 915: -16,5 - 916: -16,6 - 917: -18,6 - 918: -19,6 - 919: -22,6 - 920: -25,5 - 921: -27,5 - 922: -24,4 - 923: -21,4 - 924: -17,4 - 925: -17,5 - 926: -20,6 - 927: -23,6 - 928: -25,6 - 929: -28,5 - 930: -29,5 - 931: -30,4 - 932: -27,4 - 933: -21,4 - 934: -19,4 - 935: -17,5 - 936: -20,6 - 937: -26,5 - 938: -29,5 - 939: -30,5 - 940: -19,6 - 941: -20,7 - 942: -21,7 - 943: -21,7 - 944: -18,4 - 945: -18,3 - 946: -16,3 - 947: -17,3 - 948: -18,3 - 1286: -38,9 - 1287: -39,11 - 1288: -39,11 - 1289: -38,12 - 1290: -38,14 - 1291: -38,13 - 1292: -37,15 - 1293: -38,16 - 1294: -39,16 - 1295: -39,15 - 1296: -37,15 - 1297: -38,16 - 1298: -38,17 - 1299: -39,17 - 1300: -38,17 - 1301: -37,19 - 1302: -38,21 - 1303: -39,20 - 1304: -38,21 - 1305: -39,21 - 1306: -40,21 - 1307: -38,21 - 1308: -37,23 - 1309: -37,25 - 1310: -38,22 - 1311: -38,21 - 1312: -37,23 - 1313: -38,26 - 1314: -39,26 - 1315: -38,28 - 1316: -37,30 - 1317: -38,32 - 1318: -38,33 - 1319: -39,32 - 1320: -39,31 - 1321: -39,32 - 1322: -42,32 - 1323: -43,31 - 1324: -44,33 - 1325: -45,33 - 1326: -44,31 - 1327: -43,31 - 1328: -40,32 - 1329: -36,33 - 1330: -33,33 - 1331: -30,32 - 1332: -31,33 - 1333: -31,33 - 1334: -27,32 - 1335: -27,33 - 1336: -29,33 - 1337: -24,33 - 1338: -22,33 - 1339: -23,32 - 1340: -22,32 - 1341: -21,32 - 1342: -23,31 - 1343: -22,32 - 1344: -19,33 - 1345: -16,32 - 1346: -16,31 - 1347: -17,32 - 1348: -16,33 - 1349: -18,33 - 1350: -21,33 - 1351: -25,33 - 1352: -26,32 - 1353: -24,27 - 1354: -23,26 - 1355: -24,27 - 1356: -27,28 - 1357: -26,27 - 1358: -24,33 - 1359: -27,34 - 1360: -30,33 - 1361: -32,33 - 1362: -33,33 - 1363: -36,33 - 1364: -39,32 - 1365: -41,32 - 1366: -43,32 - 1367: -45,32 - 1368: -49,33 - 1369: -50,32 - 1370: -49,31 - 1371: -48,32 - 1372: -47,31 - 1373: -47,31 - 1374: -47,32 - 1375: -49,33 - 1376: -52,33 - 1377: -55,33 - 1378: -57,32 - 1379: -57,31 - 1380: -55,33 - 1381: -54,32 - 1382: -56,32 - 1383: -58,31 - 1384: -58,30 - 1385: -59,28 - 1386: -58,27 - 1387: -57,27 - 1388: -59,26 - 1389: -59,23 - 1390: -57,22 - 1391: -57,24 - 1392: -59,24 - 1393: -59,23 - 1394: -59,21 - 1395: -59,19 - 1396: -59,16 - 1397: -58,14 - 1398: -57,14 - 1399: -57,16 - 1400: -58,16 - 1401: -59,14 - 1402: -54,18 - 1403: -55,18 - 1404: -54,20 - 1405: -55,20 - 1406: -54,18 - 1407: -53,18 - 1408: -53,20 - 1409: -54,20 - 1410: -58,15 - 1411: -53,21 - 1412: -53,21 - 1413: -55,21 - 1414: -55,21 - 1415: -53,20 - 1416: -53,21 - 1417: -59,15 - 1418: -58,13 - 1419: -58,11 - 1420: -58,8 - 1421: -58,9 - 1422: -59,10 - 1423: -57,11 - 1424: -57,6 - 1425: -58,5 - 1426: -59,6 - 1427: -62,5 - 1428: -63,4 - 1429: -63,4 - 1430: -64,4 - 1431: -66,4 - 1432: -66,4 - 1433: -62,6 - 1434: -61,7 - 1435: -64,6 - 1436: -68,6 - 1437: -71,5 - 1438: -71,4 - 1439: -73,4 - 1440: -74,6 - 1441: -74,6 - 1442: -75,6 - 1443: -76,5 - 1444: -76,4 - 1445: -75,5 - 1446: -59,1 - 1447: -59,1 - 1448: -58,2 - 1449: -57,1 - 1450: -57,0 - 1451: -58,-1 - 1452: -58,-3 - 1453: -57,-4 - 1454: -58,-5 - 1455: -59,-5 - 1456: -59,-7 - 1457: -58,-10 - 1458: -58,-7 - 1459: -58,-5 - 1460: -59,-5 - 1461: -59,-8 - 1462: -57,-9 - 1463: -58,-10 - 1464: -58,-12 - 1465: -50,4 - 1466: -50,4 - 1467: -51,4 - 1468: -49,3 - 1469: -45,6 - 1470: -46,5 - 1471: -47,4 - 1472: -46,4 - 1473: -45,4 - 1474: -48,6 - 1475: -41,8 - 1476: -41,8 - 1477: -42,9 - 1478: -43,10 - 1479: -43,10 - 1480: -43,11 - 1481: -42,11 - 1482: -41,11 - 1483: -41,11 - 1484: -43,10 - 1485: -42,9 - 1486: -43,8 - 1487: -41,9 - 1488: -42,10 - 1489: -41,9 - 1490: -47,11 - 1491: -48,12 - 1492: -52,12 - 1493: -50,12 - 1494: -50,12 - 1495: -51,11 - 1496: -51,12 - 1497: -51,12 - 1504: -54,28 - 1505: -55,28 - 1506: -54,28 - 1507: -52,28 - 1508: -52,28 - 1509: -49,28 - 1510: -49,29 - 1511: -52,29 - 1512: -55,28 - 1664: -75,4 - 1665: -76,4 - 1666: -76,5 - 2065: -8,42 - 2066: -9,43 - 2067: -9,40 - 2068: -7,40 - 2069: -7,43 - 2070: -9,41 - 2071: -9,39 - 2072: -6,40 - 2073: -7,43 - 2074: -8,44 - 2075: -10,42 - 2076: -8,39 - 2077: -6,41 - 2586: -40,-8 - 2587: -40,-7 - 2588: -41,-6 - 2589: -41,-6 - 2590: -39,-6 - 2591: -41,-5 - 2592: -42,-4 - 2593: -42,-6 - 2594: -42,-4 - 2595: -41,-3 - 2596: -40,-2 - 2597: -38,-3 - 2598: -39,-3 - 2599: -39,-4 - 2600: -39,-2 - 2601: -40,-2 - 2602: -41,-4 - 2603: -40,-4 - 2604: -39,-3 - 2605: -41,-2 - 2606: -41,-3 - 2607: -39,-3 - 2608: -38,-4 - 2609: -39,-6 - 2610: -36,-8 - 2611: -35,-8 - 2612: -36,-8 - 2613: -35,-7 - 2614: -36,-7 - 2615: -33,-8 - 2616: -33,-8 - 2617: -35,-8 - 2618: -34,-8 - 2619: -34,-9 - 2620: -34,-10 - 2621: -35,-10 - 2622: -34,-10 - 2623: -34,-11 - 2624: -33,-11 - 2625: -32,-9 - 2626: -34,-8 - 2627: -37,-7 - 2628: -38,-7 - 2629: -38,-8 - 2630: -37,-8 - 2631: -36,-7 - 2632: -39,-7 - 2633: -39,-8 - 2634: -39,-8 - 2635: -40,-5 - 2636: -40,-6 - 2637: -39,-7 - 2638: -38,-5 - 2639: -40,-6 - 3090: 7,12 - 3091: 6,12 - 3092: 7,11 - 3093: 10,12 - 3094: 11,12 - 3095: 11,11 - 3096: 9,12 - 3097: 8,12 - 3098: 11,12 - 3099: 10,13 - 3100: 7,12 - 3101: 10,13 - 3102: 10,15 - 3103: 8,16 - 3104: 8,16 - 3105: 10,16 - 3106: 8,16 - 3107: 6,16 - 3108: 8,16 - 3109: 10,16 - 3110: 10,17 - 3111: 8,16 - 3112: 8,17 - 3113: 7,17 - 3114: 7,17 - 3115: 9,20 - 3116: 10,20 - 3117: 12,20 - 3118: 12,20 - 3119: 11,20 - 3120: 11,18 - 3121: 11,16 - 3122: 10,15 - 3123: 11,15 - 3124: 11,15 - 3125: 10,14 - 3126: 10,14 - 3127: 11,14 - 3128: 8,15 - 3129: 8,16 - 3130: 7,16 - 3131: 9,16 - 3132: 9,16 - 3133: 3,16 - 3134: 0,17 - 3135: -1,16 - 3136: -2,15 - 3137: -2,15 - 3138: -2,15 - 3139: -2,17 - 3140: -1,17 - 3141: 2,16 - 3142: 3,16 - 3143: 3,15 - 3144: 2,16 - 3145: 0,15 - 3146: 0,15 - 3147: 1,15 - 3148: 3,14 - 3149: 4,14 - 3150: 4,15 - 3151: 4,16 - 3152: 2,16 - 3153: -1,15 - 3154: 4,20 - 3155: 3,21 - 3156: 2,21 - 3157: 2,22 - 3158: 3,22 - 3159: 4,22 - 3160: 3,23 - 3161: 2,23 - 3162: 2,25 - 3163: 3,26 - 3164: 4,26 - 3165: 4,25 - 3166: 3,26 - 3167: 2,27 - 3168: 5,28 - 3169: 5,29 - 3170: 4,29 - 3171: 3,29 - 3172: 2,29 - 3173: 4,29 - 3174: 5,30 - 3175: 3,30 - 3176: 3,30 - 3177: 4,30 - 3178: 2,32 - 3179: 2,31 - 3180: 3,32 - 3181: 3,34 - 3182: 3,34 - 3183: 4,33 - 3184: 4,33 - 3185: 6,25 - 3186: 6,25 - 3187: 6,24 - 3188: 7,23 - 3189: 9,23 - 3190: 8,24 - 3191: 8,23 - 3192: 10,22 - 3193: 10,22 - 3194: 7,23 - 3195: 5,23 - 3196: 9,24 - 3197: 9,25 - 3198: 8,24 - 3199: 12,29 - 3200: 11,29 - 3201: 9,29 - 3202: 8,28 - 3203: 10,28 - 3204: 9,29 - 3205: 7,29 - 3206: 10,28 - 3207: 12,29 - 3208: 11,31 - 3209: 9,31 - 3210: 7,30 - 3211: 8,29 - 3212: 12,28 - 3213: 12,29 - 3214: 6,34 - 3215: 9,34 - 3216: 9,34 - 3217: 12,34 - 3218: 12,35 - 3219: 12,36 - 3220: 7,36 - 3221: 6,37 - 3222: 6,37 - 3223: 12,36 - 3224: 12,37 - 3225: 12,36 - 3226: 11,34 - 3227: 9,34 - 3228: 9,33 - 3229: 11,33 - 3230: 12,33 - 3231: 3,36 - 3232: 4,36 - 3233: 4,38 - 3234: 2,40 - 3235: 0,39 - 3236: -1,38 - 3237: 0,36 - 3238: 2,39 - 3239: 0,40 - 3240: 0,38 - 3241: -1,37 - 3242: 0,36 - 3429: -2,10 - 3430: -2,10 - 3431: -3,9 - 3432: -1,8 - 3433: 0,8 - 3434: 1,8 - 3435: 1,10 - 3436: 0,10 - 3437: -2,10 - 3438: 0,9 - 3439: 1,9 - 3440: 0,9 - 3441: -3,8 - 3770: -65,54 - 3771: -66,55 - 3772: -65,54 - 3773: -64,53 - 3774: -63,52 - 3775: -62,55 - 3776: -65,55 - 3777: -66,54 - 3778: -64,51 - 3779: -60,50 - 3780: -60,50 - 3781: -61,51 - 3782: -63,51 - 3783: -61,51 - 3784: -62,52 - 3785: -63,53 - 3786: -63,53 - 3787: -61,52 - 3788: -60,52 - 3789: -60,53 - 3790: -62,53 - 3791: -61,54 - 3792: -61,55 - 3793: -61,55 - 3794: -64,55 - 3795: -65,54 - 3796: -65,53 - 3797: -63,51 - 3798: -61,51 - 3799: -57,54 - 3800: -57,53 - 3801: -57,54 - 3802: -57,54 - 3803: -58,53 - 3804: -57,55 - 3805: -58,57 - 3806: -57,58 - 3807: -55,57 - 3808: -53,57 - 3816: -53,58 - 3817: -56,58 - 3818: -59,58 - 3819: -58,56 - 3820: -58,55 - 3821: -56,54 - 3822: -52,54 - 3823: -51,54 - 3824: -52,54 - 3825: -52,57 - 3826: -54,57 - 3827: -56,56 - 3828: -57,55 - 3829: -55,54 - 3830: -55,55 - 3831: -56,56 - 3832: -56,55 - 3833: -55,55 - 3834: -53,55 - 3835: -47,55 - 3836: -47,55 - 3837: -47,54 - 3838: -47,54 - 3839: -49,55 - 3840: -49,55 - 3841: -49,50 - 3842: -47,51 - 3843: -47,50 - 3844: -47,50 - 3845: -47,51 - 3846: -49,57 - 3847: -49,57 - 3848: -48,60 - 3849: -49,61 - 3850: -49,60 - 3851: -47,58 - 3852: -47,58 - 3853: -48,58 - 3854: -49,62 - 3855: -49,61 - 3856: -48,58 - 3857: -47,61 - 3858: -47,62 - 3859: -43,63 - 3860: -44,62 - 3861: -44,62 - 3862: -44,64 - 3863: -43,64 - 3864: -43,63 - 3865: -43,62 - 3866: -42,61 - 3867: -42,64 - 3868: -43,65 - 3869: -44,64 - 3870: -44,63 - 3871: -48,65 - 3872: -47,65 - 3873: -48,65 - 3874: -46,64 - 3875: -48,64 - 3876: -49,64 - 3877: -51,64 - 3878: -53,65 - 3879: -45,65 - 3880: -45,65 - 3881: -45,64 - 3882: -46,65 - 3883: -46,65 - 3884: -46,64 - 3885: -52,64 - 3886: -52,64 - 3887: -53,63 - 3888: -52,61 - 3889: -51,60 - 3890: -52,61 - 3891: -54,60 - 3892: -57,60 - 3893: -60,61 - 3894: -62,60 - 3895: -62,60 - 3896: -59,60 - 3897: -57,61 - 3898: -55,61 - 3899: -55,60 - 3900: -59,61 - 3901: -60,61 - 3902: -57,60 - 3903: -55,60 - 3904: -56,61 - 3905: -57,61 - 3906: -59,61 - 3907: -53,82 - 3908: -53,83 - 3909: -53,83 - 3910: -52,86 - 3911: -51,88 - 3912: -52,90 - 3913: -53,90 - 3914: -53,89 - 3915: -53,87 - 3916: -53,85 - 3917: -52,84 - 3918: -51,83 - 3919: -50,86 - 3920: -51,88 - 3921: -52,88 - 3922: -52,87 - 3923: -52,85 - 3924: -52,84 - 3925: -55,84 - 3926: -56,84 - 3927: -56,83 - 3928: -55,82 - 3929: -55,83 - 3930: -55,83 - 3931: -56,83 - 3932: -56,84 - 3933: -55,86 - 3934: -56,86 - 3935: -56,88 - 3936: -55,89 - 3937: -55,90 - 3938: -56,89 - 3939: -54,89 - 3940: -56,89 - 3941: -57,89 - 3942: -57,86 - 3943: -58,88 - 3944: -59,89 - 3945: -60,89 - 3946: -61,88 - 3947: -61,87 - 3948: -60,86 - 3949: -61,89 - 3950: -62,88 - 3951: -62,86 - 3952: -61,85 - 3953: -61,87 - 3954: -62,89 - 3955: -62,87 - 3956: -62,85 - 3957: -60,85 - 3958: -61,86 - 3959: -62,85 - 3960: -61,83 - 3961: -60,84 - 3962: -59,84 - 3963: -61,83 - 3964: -61,83 - 3965: -62,83 - 3966: -59,83 - 3967: -57,84 - 3968: -58,84 - 3969: -58,86 - 3970: -58,85 - 3971: -58,84 - 3972: -58,87 - 3973: -60,88 - 3974: -61,87 - 3975: -61,89 - 3976: -62,89 - 3977: -62,88 - 4186: -58,52 - 4187: -58,50 - 4188: -58,49 - 4189: -57,50 - 4190: -58,51 - 4191: -58,50 - 4192: -55,51 - 4193: -55,50 - 4194: -54,49 - 4195: -55,50 - 4196: -55,52 - 4197: -55,52 - 4198: -52,51 - 4199: -52,51 - 4200: -52,49 - 4201: -52,49 - 4202: -51,50 - 4203: -51,51 - 4204: -52,50 - 4205: -51,49 - 4206: -52,52 - 4613: -61,45 - 4614: -63,45 - 4615: -64,45 - 4616: -65,44 - 4617: -62,44 - 4618: -61,45 - 4619: -63,45 - 4620: -65,45 - 4621: -64,44 - 4622: -62,44 - 4623: -63,45 - 4624: -64,45 - 4625: -63,44 - 4626: -63,44 - 4627: -63,42 - 4628: -64,42 - 4629: -62,42 - 4630: -61,41 - 4631: -61,40 - 4632: -61,38 - 4633: -62,38 - 4634: -62,39 - 4635: -62,40 - 4636: -63,39 - 4637: -63,38 - 4638: -65,39 - 4639: -65,39 - 4640: -65,38 - 4641: -65,41 - 4642: -64,42 - 4643: -63,42 - 4644: -62,42 - 4685: -71,49 - 4686: -73,49 - 4687: -73,48 - 4688: -73,47 - 4689: -72,47 - 4690: -70,48 - 4691: -71,49 - 4692: -71,47 - 4693: -69,47 - 4694: -69,47 - 4695: -70,48 - 4696: -70,49 - 4697: -72,48 - 4698: -72,48 - 4735: -67,50 - 4736: -67,49 - 4737: -68,49 - 4788: -71,54 - 4789: -71,55 - 4790: -71,54 - 4791: -70,53 - 4792: -70,51 - 4793: -70,51 - 4794: -72,52 - 4795: -75,51 - 4796: -73,51 - 4797: -70,54 - 4798: -71,56 - 4799: -71,55 - 4800: -71,54 - 4801: -71,53 - 4863: -60,31 - 4864: -61,33 - 4865: -62,33 - 4866: -62,32 - 4867: -61,31 - 4868: -62,31 - 4869: -62,34 - 4870: -60,33 - 4871: -60,33 - 4872: -60,32 - 4873: -60,31 - 4874: -62,31 - 4879: -82,29 - 4880: -82,30 - 4881: -82,32 - 4882: -83,33 - 4883: -83,31 - 4884: -83,29 - 4885: -83,29 - 4886: -82,33 - 4887: -81,33 - 4888: -79,33 - 4889: -77,33 - 4890: -77,33 - 4891: -79,32 - 4892: -81,32 - 4893: -82,31 - 4894: -81,30 - 4895: -78,30 - 4896: -79,32 - 4897: -80,30 - 4898: -79,29 - 4899: -77,29 - 4900: -79,32 - 4901: -81,31 - 4902: -80,29 - 4903: -78,29 - 4904: -74,35 - 4905: -75,34 - 4906: -74,32 - 4907: -74,30 - 4908: -75,29 - 4909: -75,31 - 4910: -75,31 - 4911: -75,27 - 4912: -74,25 - 4913: -75,25 - 4914: -74,26 - 4915: -75,25 - 4916: -76,25 - 4917: -75,23 - 4918: -75,25 - 4919: -76,25 - 4920: -77,25 - 4921: -75,24 - 4922: -74,24 - 4923: -75,26 - 4924: -76,26 - 4925: -75,23 - 4926: -74,21 - 4927: -75,20 - 4928: -75,19 - 4929: -75,22 - 4930: -75,23 - 4931: -75,20 - 4932: -75,16 - 4933: -75,15 - 4934: -74,16 - 4935: -74,16 - 4936: -75,17 - 4937: -73,17 - 4938: -72,17 - 4939: -71,17 - 4940: -73,16 - 4941: -74,16 - 4942: -73,15 - 4943: -72,16 - 4944: -75,16 - 4945: -72,15 - 4946: -70,17 - 4947: -71,17 - 4948: -69,16 - 4949: -69,17 - 4950: -71,16 - 4986: -78,21 - 4987: -77,21 - 4988: -77,22 - 4989: -78,22 - 4990: -77,20 - 4991: -79,19 - 4992: -81,20 - 4993: -82,20 - 4994: -83,19 - 4995: -81,18 - 4996: -79,18 - 4997: -77,19 - 4998: -77,19 - 4999: -86,20 - 5000: -86,20 - 5001: -86,21 - 5002: -86,24 - 5003: -86,24 - 5004: -86,23 - 5005: -86,25 - 5006: -86,27 - 5007: -84,27 - 5008: -81,27 - 5009: -80,26 - 5010: -80,25 - 5011: -80,23 - 5012: -81,23 - 5013: -82,22 - 5014: -82,23 - 5015: -82,23 - 5016: -81,23 - 5017: -79,26 - 5018: -80,26 - 5019: -80,25 - 5020: -79,24 - 5021: -79,24 - 5022: -71,31 - 5023: -72,31 - 5024: -71,31 - 5025: -70,31 - 5026: -70,30 - 5027: -70,28 - 5028: -70,28 - 5226: -64,13 - 5227: -65,14 - 5228: -64,11 - 5229: -64,10 - 5230: -64,12 - 5231: -65,13 - 5232: -65,13 - 5233: -65,11 - 5234: -61,12 - 5235: -62,14 - 5236: -62,11 - 5237: -62,10 - 5238: -61,10 - 5239: -62,13 - 7489: -45,-10 - 7490: -46,-10 - 7491: -46,-11 - 7492: -46,-12 - 7493: -45,-13 - 7494: -45,-14 - 7495: -46,-14 - 7496: -43,-14 - 7497: -40,-13 - 7498: -40,-10 - 7499: -41,-9 - 7500: -41,-9 - 7501: -39,-10 - 7502: -38,-11 - 7503: -38,-11 - 7504: -40,-11 - 7505: -41,-11 - 7506: -41,-12 - 7507: -41,-13 - 7508: -42,-12 - 7509: -42,-11 - 7510: -43,-11 - 7511: -40,-13 - 7512: -38,-12 - 7513: -40,-11 - 7514: -42,-12 - 7515: -41,-13 - 7516: -40,-12 - 7517: -42,-13 - 7518: -43,-14 - 7519: -43,-13 - 7520: -42,-14 - 7521: -44,-14 - 7522: -44,-14 - 7523: -44,-14 - 7524: -41,-14 - 7525: -39,-14 - 7526: -38,-14 - 7527: -38,-14 - 7528: -39,-13 - 7529: -38,-12 - 7530: -38,-10 - 7531: -38,-10 - 7532: -39,-11 - 7533: -39,-14 - 7534: -39,-14 - 7535: -41,-14 - 7539: -43,1 - 7540: -43,1 - 7549: -43,66 - 7550: -43,66 + 830: -34,4 + 831: -33,1 + 832: -33,1 + 833: -34,1 + 834: -35,3 + 835: -36,5 + 836: -37,5 + 837: -37,7 + 838: -35,7 + 839: -35,7 + 840: -37,7 + 841: -38,7 + 842: -35,6 + 843: -32,5 + 844: -31,5 + 845: -33,6 + 846: -33,6 + 847: -36,6 + 848: -37,4 + 849: -37,3 + 850: -38,3 + 851: -39,2 + 852: -38,0 + 853: -37,2 + 854: -39,2 + 855: -38,0 + 856: -37,0 + 857: -37,1 + 858: -38,1 + 896: -29,5 + 897: -30,5 + 898: -30,4 + 899: -27,5 + 900: -27,6 + 901: -28,6 + 902: -27,5 + 903: -24,4 + 904: -21,5 + 905: -20,5 + 906: -22,6 + 907: -21,5 + 908: -17,4 + 909: -16,5 + 910: -16,6 + 911: -18,6 + 912: -19,6 + 913: -22,6 + 914: -25,5 + 915: -27,5 + 916: -24,4 + 917: -21,4 + 918: -17,4 + 919: -17,5 + 920: -20,6 + 921: -23,6 + 922: -25,6 + 923: -28,5 + 924: -29,5 + 925: -30,4 + 926: -27,4 + 927: -21,4 + 928: -19,4 + 929: -17,5 + 930: -20,6 + 931: -26,5 + 932: -29,5 + 933: -30,5 + 934: -19,6 + 935: -20,7 + 936: -21,7 + 937: -21,7 + 938: -18,4 + 939: -18,3 + 940: -16,3 + 941: -17,3 + 942: -18,3 + 1257: -38,9 + 1258: -39,11 + 1259: -39,11 + 1260: -38,12 + 1261: -38,14 + 1262: -38,13 + 1263: -37,15 + 1264: -38,16 + 1265: -39,16 + 1266: -39,15 + 1267: -37,15 + 1268: -38,16 + 1269: -38,17 + 1270: -39,17 + 1271: -38,17 + 1272: -37,19 + 1273: -38,21 + 1274: -39,20 + 1275: -38,21 + 1276: -39,21 + 1277: -40,21 + 1278: -38,21 + 1279: -37,23 + 1280: -37,25 + 1281: -38,22 + 1282: -38,21 + 1283: -37,23 + 1284: -38,26 + 1285: -39,26 + 1286: -38,28 + 1287: -37,30 + 1288: -38,32 + 1289: -38,33 + 1290: -39,32 + 1291: -39,31 + 1292: -39,32 + 1293: -42,32 + 1294: -43,31 + 1295: -44,33 + 1296: -45,33 + 1297: -44,31 + 1298: -43,31 + 1299: -40,32 + 1300: -36,33 + 1301: -33,33 + 1302: -30,32 + 1303: -31,33 + 1304: -31,33 + 1305: -27,32 + 1306: -27,33 + 1307: -29,33 + 1308: -24,33 + 1309: -22,33 + 1310: -23,32 + 1311: -22,32 + 1312: -21,32 + 1313: -23,31 + 1314: -22,32 + 1315: -19,33 + 1316: -16,32 + 1317: -16,31 + 1318: -17,32 + 1319: -16,33 + 1320: -18,33 + 1321: -21,33 + 1322: -25,33 + 1323: -26,32 + 1324: -24,27 + 1325: -23,26 + 1326: -24,27 + 1327: -27,28 + 1328: -26,27 + 1329: -24,33 + 1330: -27,34 + 1331: -30,33 + 1332: -32,33 + 1333: -33,33 + 1334: -36,33 + 1335: -39,32 + 1336: -41,32 + 1337: -43,32 + 1338: -45,32 + 1339: -49,33 + 1340: -50,32 + 1341: -49,31 + 1342: -48,32 + 1343: -47,31 + 1344: -47,31 + 1345: -47,32 + 1346: -49,33 + 1347: -52,33 + 1348: -55,33 + 1349: -57,32 + 1350: -57,31 + 1351: -55,33 + 1352: -54,32 + 1353: -56,32 + 1354: -58,31 + 1355: -58,30 + 1356: -59,28 + 1357: -58,27 + 1358: -57,27 + 1359: -59,26 + 1360: -59,23 + 1361: -57,22 + 1362: -57,24 + 1363: -59,24 + 1364: -59,23 + 1365: -59,21 + 1366: -59,19 + 1367: -59,16 + 1368: -58,14 + 1369: -57,14 + 1370: -57,16 + 1371: -58,16 + 1372: -59,14 + 1373: -54,18 + 1374: -55,18 + 1375: -54,20 + 1376: -55,20 + 1377: -54,18 + 1378: -53,18 + 1379: -53,20 + 1380: -54,20 + 1381: -58,15 + 1382: -53,21 + 1383: -53,21 + 1384: -55,21 + 1385: -55,21 + 1386: -53,20 + 1387: -53,21 + 1388: -59,15 + 1389: -58,13 + 1390: -58,11 + 1391: -58,8 + 1392: -58,9 + 1393: -59,10 + 1394: -57,11 + 1395: -57,6 + 1396: -58,5 + 1397: -59,6 + 1398: -62,5 + 1399: -63,4 + 1400: -63,4 + 1401: -64,4 + 1402: -66,4 + 1403: -66,4 + 1404: -62,6 + 1405: -61,7 + 1406: -64,6 + 1407: -68,6 + 1408: -71,5 + 1409: -71,4 + 1410: -73,4 + 1411: -74,6 + 1412: -74,6 + 1413: -75,6 + 1414: -76,5 + 1415: -76,4 + 1416: -75,5 + 1417: -59,1 + 1418: -59,1 + 1419: -58,2 + 1420: -57,1 + 1421: -57,0 + 1422: -58,-1 + 1423: -58,-3 + 1424: -57,-4 + 1425: -58,-5 + 1426: -59,-5 + 1427: -59,-7 + 1428: -58,-10 + 1429: -58,-7 + 1430: -58,-5 + 1431: -59,-5 + 1432: -59,-8 + 1433: -57,-9 + 1434: -58,-10 + 1435: -58,-12 + 1436: -50,4 + 1437: -50,4 + 1438: -51,4 + 1439: -49,3 + 1440: -45,6 + 1441: -46,5 + 1442: -47,4 + 1443: -46,4 + 1444: -45,4 + 1445: -48,6 + 1446: -41,8 + 1447: -41,8 + 1448: -42,9 + 1449: -43,10 + 1450: -43,10 + 1451: -43,11 + 1452: -42,11 + 1453: -41,11 + 1454: -41,11 + 1455: -43,10 + 1456: -42,9 + 1457: -43,8 + 1458: -41,9 + 1459: -42,10 + 1460: -41,9 + 1461: -52,12 + 1468: -54,28 + 1469: -55,28 + 1470: -54,28 + 1471: -52,28 + 1472: -52,28 + 1473: -49,28 + 1474: -49,29 + 1475: -52,29 + 1476: -55,28 + 1615: -75,4 + 1616: -76,4 + 1617: -76,5 + 2016: -8,42 + 2017: -9,43 + 2018: -9,40 + 2019: -7,40 + 2020: -7,43 + 2021: -9,41 + 2022: -9,39 + 2023: -6,40 + 2024: -7,43 + 2025: -8,44 + 2026: -10,42 + 2027: -8,39 + 2028: -6,41 + 2534: -40,-8 + 2535: -40,-7 + 2536: -41,-6 + 2537: -41,-6 + 2538: -39,-6 + 2539: -41,-5 + 2540: -42,-4 + 2541: -42,-6 + 2542: -42,-4 + 2543: -41,-3 + 2544: -40,-2 + 2545: -38,-3 + 2546: -39,-3 + 2547: -39,-4 + 2548: -39,-2 + 2549: -40,-2 + 2550: -41,-4 + 2551: -40,-4 + 2552: -39,-3 + 2553: -41,-2 + 2554: -41,-3 + 2555: -39,-3 + 2556: -38,-4 + 2557: -39,-6 + 2558: -36,-8 + 2559: -35,-8 + 2560: -36,-8 + 2561: -35,-7 + 2562: -36,-7 + 2563: -33,-8 + 2564: -33,-8 + 2565: -35,-8 + 2566: -34,-8 + 2567: -34,-9 + 2568: -34,-10 + 2569: -35,-10 + 2570: -34,-10 + 2571: -34,-11 + 2572: -33,-11 + 2573: -32,-9 + 2574: -34,-8 + 2575: -37,-7 + 2576: -38,-7 + 2577: -38,-8 + 2578: -37,-8 + 2579: -36,-7 + 2580: -39,-7 + 2581: -39,-8 + 2582: -39,-8 + 2583: -40,-5 + 2584: -40,-6 + 2585: -39,-7 + 2586: -38,-5 + 2587: -40,-6 + 3038: 7,12 + 3039: 6,12 + 3040: 7,11 + 3041: 10,12 + 3042: 11,12 + 3043: 11,11 + 3044: 9,12 + 3045: 8,12 + 3046: 11,12 + 3047: 10,13 + 3048: 7,12 + 3049: 10,13 + 3050: 10,15 + 3051: 8,16 + 3052: 8,16 + 3053: 10,16 + 3054: 8,16 + 3055: 6,16 + 3056: 8,16 + 3057: 10,16 + 3058: 10,17 + 3059: 8,16 + 3060: 8,17 + 3061: 7,17 + 3062: 7,17 + 3063: 9,20 + 3064: 10,20 + 3065: 12,20 + 3066: 12,20 + 3067: 11,20 + 3068: 11,18 + 3069: 11,16 + 3070: 10,15 + 3071: 11,15 + 3072: 11,15 + 3073: 10,14 + 3074: 10,14 + 3075: 11,14 + 3076: 8,15 + 3077: 8,16 + 3078: 7,16 + 3079: 9,16 + 3080: 9,16 + 3081: 3,16 + 3082: 0,17 + 3083: -1,16 + 3084: -2,15 + 3085: -2,15 + 3086: -2,15 + 3087: -2,17 + 3088: -1,17 + 3089: 2,16 + 3090: 3,16 + 3091: 3,15 + 3092: 2,16 + 3093: 0,15 + 3094: 0,15 + 3095: 1,15 + 3096: 3,14 + 3097: 4,14 + 3098: 4,15 + 3099: 4,16 + 3100: 2,16 + 3101: -1,15 + 3102: 4,20 + 3103: 3,21 + 3104: 2,21 + 3105: 2,22 + 3106: 3,22 + 3107: 4,22 + 3108: 3,23 + 3109: 2,23 + 3110: 2,25 + 3111: 3,26 + 3112: 4,26 + 3113: 4,25 + 3114: 3,26 + 3115: 2,27 + 3116: 5,28 + 3117: 5,29 + 3118: 4,29 + 3119: 3,29 + 3120: 2,29 + 3121: 4,29 + 3122: 5,30 + 3123: 3,30 + 3124: 3,30 + 3125: 4,30 + 3126: 2,32 + 3127: 2,31 + 3128: 3,32 + 3129: 3,34 + 3130: 3,34 + 3131: 4,33 + 3132: 4,33 + 3133: 6,25 + 3134: 6,25 + 3135: 6,24 + 3136: 7,23 + 3137: 9,23 + 3138: 8,24 + 3139: 8,23 + 3140: 10,22 + 3141: 10,22 + 3142: 7,23 + 3143: 5,23 + 3144: 9,24 + 3145: 9,25 + 3146: 8,24 + 3147: 12,29 + 3148: 11,29 + 3149: 9,29 + 3150: 8,28 + 3151: 10,28 + 3152: 9,29 + 3153: 7,29 + 3154: 10,28 + 3155: 12,29 + 3156: 11,31 + 3157: 9,31 + 3158: 7,30 + 3159: 8,29 + 3160: 12,28 + 3161: 12,29 + 3162: 6,34 + 3163: 9,34 + 3164: 9,34 + 3165: 12,34 + 3166: 12,35 + 3167: 12,36 + 3168: 7,36 + 3169: 6,37 + 3170: 6,37 + 3171: 12,36 + 3172: 12,37 + 3173: 12,36 + 3174: 11,34 + 3175: 9,34 + 3176: 9,33 + 3177: 11,33 + 3178: 12,33 + 3179: 3,36 + 3180: 4,36 + 3181: 4,38 + 3182: 2,40 + 3183: 0,39 + 3184: -1,38 + 3185: 0,36 + 3186: 2,39 + 3187: 0,40 + 3188: 0,38 + 3189: -1,37 + 3190: 0,36 + 3377: -2,10 + 3378: -2,10 + 3379: -3,9 + 3380: -1,8 + 3381: 0,8 + 3382: 1,8 + 3383: 1,10 + 3384: 0,10 + 3385: -2,10 + 3386: 0,9 + 3387: 1,9 + 3388: 0,9 + 3389: -3,8 + 3718: -65,54 + 3719: -66,55 + 3720: -65,54 + 3721: -64,53 + 3722: -63,52 + 3723: -62,55 + 3724: -65,55 + 3725: -66,54 + 3726: -64,51 + 3727: -60,50 + 3728: -60,50 + 3729: -61,51 + 3730: -63,51 + 3731: -61,51 + 3732: -62,52 + 3733: -63,53 + 3734: -63,53 + 3735: -61,52 + 3736: -60,52 + 3737: -60,53 + 3738: -62,53 + 3739: -61,54 + 3740: -61,55 + 3741: -61,55 + 3742: -64,55 + 3743: -65,54 + 3744: -65,53 + 3745: -63,51 + 3746: -61,51 + 3747: -57,54 + 3748: -57,53 + 3749: -57,54 + 3750: -57,54 + 3751: -58,53 + 3752: -57,55 + 3753: -58,57 + 3754: -57,58 + 3755: -55,57 + 3756: -53,57 + 3764: -53,58 + 3765: -56,58 + 3766: -59,58 + 3767: -58,56 + 3768: -58,55 + 3769: -56,54 + 3770: -52,54 + 3771: -51,54 + 3772: -52,54 + 3773: -52,57 + 3774: -54,57 + 3775: -56,56 + 3776: -57,55 + 3777: -55,54 + 3778: -55,55 + 3779: -56,56 + 3780: -56,55 + 3781: -55,55 + 3782: -53,55 + 3783: -47,55 + 3784: -47,55 + 3785: -47,54 + 3786: -47,54 + 3787: -49,55 + 3788: -49,55 + 3789: -49,50 + 3790: -47,51 + 3791: -47,50 + 3792: -47,50 + 3793: -47,51 + 3794: -49,57 + 3795: -49,57 + 3796: -48,60 + 3797: -49,61 + 3798: -49,60 + 3799: -47,58 + 3800: -47,58 + 3801: -48,58 + 3802: -49,62 + 3803: -49,61 + 3804: -48,58 + 3805: -47,61 + 3806: -47,62 + 3807: -43,63 + 3808: -44,62 + 3809: -44,62 + 3810: -44,64 + 3811: -43,64 + 3812: -43,63 + 3813: -43,62 + 3814: -42,61 + 3815: -42,64 + 3816: -43,65 + 3817: -44,64 + 3818: -44,63 + 3819: -48,65 + 3820: -47,65 + 3821: -48,65 + 3822: -46,64 + 3823: -48,64 + 3824: -49,64 + 3825: -51,64 + 3826: -53,65 + 3827: -45,65 + 3828: -45,65 + 3829: -45,64 + 3830: -46,65 + 3831: -46,65 + 3832: -46,64 + 3833: -52,64 + 3834: -52,64 + 3835: -53,63 + 3836: -52,61 + 3837: -51,60 + 3838: -52,61 + 3839: -54,60 + 3840: -57,60 + 3841: -60,61 + 3842: -62,60 + 3843: -62,60 + 3844: -59,60 + 3845: -57,61 + 3846: -55,61 + 3847: -55,60 + 3848: -59,61 + 3849: -60,61 + 3850: -57,60 + 3851: -55,60 + 3852: -56,61 + 3853: -57,61 + 3854: -59,61 + 3855: -53,82 + 3856: -53,83 + 3857: -53,83 + 3858: -52,86 + 3859: -51,88 + 3860: -52,90 + 3861: -53,90 + 3862: -53,89 + 3863: -53,87 + 3864: -53,85 + 3865: -52,84 + 3866: -51,83 + 3867: -50,86 + 3868: -51,88 + 3869: -52,88 + 3870: -52,87 + 3871: -52,85 + 3872: -52,84 + 3873: -55,84 + 3874: -56,84 + 3875: -56,83 + 3876: -55,82 + 3877: -55,83 + 3878: -55,83 + 3879: -56,83 + 3880: -56,84 + 3881: -55,86 + 3882: -56,86 + 3883: -56,88 + 3884: -55,89 + 3885: -55,90 + 3886: -56,89 + 3887: -54,89 + 3888: -56,89 + 3889: -57,89 + 3890: -57,86 + 3891: -58,88 + 3892: -59,89 + 3893: -60,89 + 3894: -61,88 + 3895: -61,87 + 3896: -60,86 + 3897: -61,89 + 3898: -62,88 + 3899: -62,86 + 3900: -61,85 + 3901: -61,87 + 3902: -62,89 + 3903: -62,87 + 3904: -62,85 + 3905: -60,85 + 3906: -61,86 + 3907: -62,85 + 3908: -61,83 + 3909: -60,84 + 3910: -59,84 + 3911: -61,83 + 3912: -61,83 + 3913: -62,83 + 3914: -59,83 + 3915: -57,84 + 3916: -58,84 + 3917: -58,86 + 3918: -58,85 + 3919: -58,84 + 3920: -58,87 + 3921: -60,88 + 3922: -61,87 + 3923: -61,89 + 3924: -62,89 + 3925: -62,88 + 4134: -58,52 + 4135: -58,50 + 4136: -58,49 + 4137: -57,50 + 4138: -58,51 + 4139: -58,50 + 4140: -55,51 + 4141: -55,50 + 4142: -54,49 + 4143: -55,50 + 4144: -55,52 + 4145: -55,52 + 4146: -52,51 + 4147: -52,51 + 4148: -52,49 + 4149: -52,49 + 4150: -51,50 + 4151: -51,51 + 4152: -52,50 + 4153: -51,49 + 4154: -52,52 + 4561: -61,45 + 4562: -63,45 + 4563: -64,45 + 4564: -65,44 + 4565: -62,44 + 4566: -61,45 + 4567: -63,45 + 4568: -65,45 + 4569: -64,44 + 4570: -62,44 + 4571: -63,45 + 4572: -64,45 + 4573: -63,44 + 4574: -63,44 + 4575: -63,42 + 4576: -64,42 + 4577: -62,42 + 4578: -61,41 + 4579: -61,40 + 4580: -61,38 + 4581: -62,38 + 4582: -62,39 + 4583: -62,40 + 4584: -63,39 + 4585: -63,38 + 4586: -65,39 + 4587: -65,39 + 4588: -65,38 + 4589: -65,41 + 4590: -64,42 + 4591: -63,42 + 4592: -62,42 + 4633: -71,49 + 4634: -73,49 + 4635: -73,48 + 4636: -73,47 + 4637: -72,47 + 4638: -70,48 + 4639: -71,49 + 4640: -71,47 + 4641: -69,47 + 4642: -69,47 + 4643: -70,48 + 4644: -70,49 + 4645: -72,48 + 4646: -72,48 + 4683: -67,50 + 4684: -67,49 + 4685: -68,49 + 4736: -71,54 + 4737: -71,55 + 4738: -71,54 + 4739: -70,53 + 4740: -70,51 + 4741: -70,51 + 4742: -72,52 + 4743: -75,51 + 4744: -73,51 + 4745: -70,54 + 4746: -71,56 + 4747: -71,55 + 4748: -71,54 + 4749: -71,53 + 4811: -60,31 + 4812: -61,33 + 4813: -62,33 + 4814: -62,32 + 4815: -61,31 + 4816: -62,31 + 4817: -62,34 + 4818: -60,33 + 4819: -60,33 + 4820: -60,32 + 4821: -60,31 + 4822: -62,31 + 4827: -82,29 + 4828: -82,30 + 4829: -82,32 + 4830: -83,33 + 4831: -83,31 + 4832: -83,29 + 4833: -83,29 + 4834: -82,33 + 4835: -81,33 + 4836: -79,33 + 4837: -77,33 + 4838: -77,33 + 4839: -79,32 + 4840: -81,32 + 4841: -82,31 + 4842: -81,30 + 4843: -78,30 + 4844: -79,32 + 4845: -80,30 + 4846: -79,29 + 4847: -77,29 + 4848: -79,32 + 4849: -81,31 + 4850: -80,29 + 4851: -78,29 + 4852: -74,35 + 4853: -75,34 + 4854: -74,32 + 4855: -74,30 + 4856: -75,29 + 4857: -75,31 + 4858: -75,31 + 4859: -75,27 + 4860: -74,25 + 4861: -75,25 + 4862: -74,26 + 4863: -75,25 + 4864: -76,25 + 4865: -75,23 + 4866: -75,25 + 4867: -76,25 + 4868: -77,25 + 4869: -75,24 + 4870: -74,24 + 4871: -75,26 + 4872: -76,26 + 4873: -75,23 + 4874: -74,21 + 4875: -75,20 + 4876: -75,19 + 4877: -75,22 + 4878: -75,23 + 4879: -75,20 + 4880: -75,16 + 4881: -75,15 + 4882: -74,16 + 4883: -74,16 + 4884: -75,17 + 4885: -73,17 + 4886: -72,17 + 4887: -71,17 + 4888: -73,16 + 4889: -74,16 + 4890: -73,15 + 4891: -72,16 + 4892: -75,16 + 4893: -72,15 + 4894: -70,17 + 4895: -71,17 + 4896: -69,16 + 4897: -69,17 + 4898: -71,16 + 4934: -78,21 + 4935: -77,21 + 4936: -77,22 + 4937: -78,22 + 4938: -77,20 + 4939: -79,19 + 4940: -81,20 + 4941: -82,20 + 4942: -83,19 + 4943: -81,18 + 4944: -79,18 + 4945: -77,19 + 4946: -77,19 + 4947: -86,20 + 4948: -86,20 + 4949: -86,21 + 4950: -86,24 + 4951: -86,24 + 4952: -86,23 + 4953: -86,25 + 4954: -86,27 + 4955: -84,27 + 4956: -81,27 + 4957: -80,26 + 4958: -80,25 + 4959: -80,23 + 4960: -81,23 + 4961: -82,22 + 4962: -82,23 + 4963: -82,23 + 4964: -81,23 + 4965: -79,26 + 4966: -80,26 + 4967: -80,25 + 4968: -79,24 + 4969: -79,24 + 4970: -71,31 + 4971: -72,31 + 4972: -71,31 + 4973: -70,31 + 4974: -70,30 + 4975: -70,28 + 4976: -70,28 + 5174: -64,13 + 5175: -65,14 + 5176: -64,11 + 5177: -64,10 + 5178: -64,12 + 5179: -65,13 + 5180: -65,13 + 5181: -65,11 + 5182: -61,12 + 5183: -62,14 + 5184: -62,11 + 5185: -62,10 + 5186: -61,10 + 5187: -62,13 + 7395: -45,-10 + 7396: -46,-10 + 7397: -46,-11 + 7398: -46,-12 + 7399: -45,-13 + 7400: -45,-14 + 7401: -46,-14 + 7402: -43,-14 + 7403: -40,-13 + 7404: -40,-10 + 7405: -41,-9 + 7406: -41,-9 + 7407: -39,-10 + 7408: -38,-11 + 7409: -38,-11 + 7410: -40,-11 + 7411: -41,-11 + 7412: -41,-12 + 7413: -41,-13 + 7414: -42,-12 + 7415: -42,-11 + 7416: -43,-11 + 7417: -40,-13 + 7418: -38,-12 + 7419: -40,-11 + 7420: -42,-12 + 7421: -41,-13 + 7422: -40,-12 + 7423: -42,-13 + 7424: -43,-14 + 7425: -43,-13 + 7426: -42,-14 + 7427: -44,-14 + 7428: -44,-14 + 7429: -44,-14 + 7430: -41,-14 + 7431: -39,-14 + 7432: -38,-14 + 7433: -38,-14 + 7434: -39,-13 + 7435: -38,-12 + 7436: -38,-10 + 7437: -38,-10 + 7438: -39,-11 + 7439: -39,-14 + 7440: -39,-14 + 7441: -41,-14 + 7445: -43,1 + 7446: -43,1 + 7455: -43,66 + 7456: -43,66 - node: cleanable: True angle: 3.141592653589793 rad color: '#FFFFFFFF' id: DirtLight decals: - 2690: -17,26 - 2691: -16,26 - 2692: -16,26 - 2693: -17,25 - 2694: -18,24 - 2695: -18,23 - 2696: -17,22 - 2697: -16,22 - 2698: -17,23 - 2699: -17,22 - 2700: -16,23 - 2701: -17,26 - 2702: -18,26 - 2703: -18,25 + 2638: -17,26 + 2639: -16,26 + 2640: -16,26 + 2641: -17,25 + 2642: -18,24 + 2643: -18,23 + 2644: -17,22 + 2645: -16,22 + 2646: -17,23 + 2647: -17,22 + 2648: -16,23 + 2649: -17,26 + 2650: -18,26 + 2651: -18,25 - node: color: '#FFFFFFFF' id: DirtMedium decals: - 1667: -29,54 - 1668: -29,54 - 1669: -30,54 - 1670: -30,53 - 1671: -30,55 - 1672: -28,53 - 1673: -28,52 - 1674: -27,54 - 1675: -27,55 - 1676: -28,55 - 1677: -29,54 - 1678: -29,53 - 1679: -30,53 - 1680: -28,53 - 1681: -27,54 - 1682: -26,54 - 1683: -27,55 - 1684: -29,55 - 1704: -31,47 - 1705: -37,40 - 1759: -35,38 - 1760: -35,38 - 1761: -37,40 - 1762: -38,38 - 1763: -37,36 - 1764: -36,36 - 1765: -37,39 - 1766: -39,39 - 1767: -41,38 - 1768: -41,36 - 1769: -39,37 - 1770: -42,39 - 1771: -44,38 - 1772: -42,35 - 1773: -43,36 - 1774: -44,36 - 1775: -45,36 - 1776: -44,39 - 1777: -38,35 - 1778: -36,35 - 1779: -36,37 - 1780: -39,35 - 1781: -39,34 - 1997: -50,36 - 1998: -50,45 - 1999: -53,46 - 2000: -55,46 - 2732: 12,32 - 2733: 13,34 - 2734: 13,30 - 2735: 12,17 - 7166: -1,42 - 7167: 0,42 - 7168: 1,43 - 7169: 1,42 - 7170: 2,42 - 7171: 2,43 - 7172: 3,44 - 7173: 1,43 - 7174: 1,43 - 7175: 3,44 - 7176: 3,44 - 7177: 4,43 - 7178: 4,42 - 7179: 3,42 - 7180: 2,42 + 1618: -29,54 + 1619: -29,54 + 1620: -30,54 + 1621: -30,53 + 1622: -30,55 + 1623: -28,53 + 1624: -28,52 + 1625: -27,54 + 1626: -27,55 + 1627: -28,55 + 1628: -29,54 + 1629: -29,53 + 1630: -30,53 + 1631: -28,53 + 1632: -27,54 + 1633: -26,54 + 1634: -27,55 + 1635: -29,55 + 1655: -31,47 + 1656: -37,40 + 1710: -35,38 + 1711: -35,38 + 1712: -37,40 + 1713: -38,38 + 1714: -37,36 + 1715: -36,36 + 1716: -37,39 + 1717: -39,39 + 1718: -41,38 + 1719: -41,36 + 1720: -39,37 + 1721: -42,39 + 1722: -44,38 + 1723: -42,35 + 1724: -43,36 + 1725: -44,36 + 1726: -45,36 + 1727: -44,39 + 1728: -38,35 + 1729: -36,35 + 1730: -36,37 + 1731: -39,35 + 1732: -39,34 + 1948: -50,36 + 1949: -50,45 + 1950: -53,46 + 1951: -55,46 + 2680: 12,32 + 2681: 13,34 + 2682: 13,30 + 2683: 12,17 + 7072: -1,42 + 7073: 0,42 + 7074: 1,43 + 7075: 1,42 + 7076: 2,42 + 7077: 2,43 + 7078: 3,44 + 7079: 1,43 + 7080: 1,43 + 7081: 3,44 + 7082: 3,44 + 7083: 4,43 + 7084: 4,42 + 7085: 3,42 + 7086: 2,42 - node: cleanable: True color: '#FFFFFFFF' @@ -6576,1147 +6550,1131 @@ entities: 386: 11,1 387: 11,1 388: 11,-3 - 786: -42,1 - 787: -42,1 - 788: -41,3 - 789: -40,4 - 790: -38,4 - 791: -35,5 - 792: -38,5 - 793: -41,5 - 794: -40,5 - 795: -36,5 - 796: -34,5 - 797: -34,3 - 798: -34,1 - 799: -33,1 - 800: -32,4 - 801: -34,6 - 802: -35,6 - 803: -38,6 - 804: -42,6 - 805: -42,5 - 806: -40,3 - 807: -36,4 - 808: -33,4 - 809: -34,1 - 810: -33,1 - 811: -33,3 - 812: -34,4 - 813: -35,2 - 814: -33,1 - 815: -34,4 - 816: -40,5 - 817: -40,4 - 818: -41,3 - 819: -41,3 - 883: -34,0 - 884: -34,0 - 885: -35,0 - 886: -35,1 - 887: -34,2 - 888: -34,3 - 889: -36,4 - 890: -38,5 - 891: -39,5 - 892: -37,5 - 893: -36,6 - 894: -36,6 - 895: -38,7 - 896: -39,7 - 897: -40,6 - 898: -40,5 - 899: -41,4 - 900: -41,3 - 901: -42,2 - 949: -31,4 - 950: -30,5 - 951: -28,5 - 952: -26,5 - 953: -25,4 - 954: -24,4 - 955: -24,5 - 956: -27,6 - 957: -30,6 - 958: -31,5 - 959: -28,5 - 960: -24,6 - 961: -22,6 + 780: -42,1 + 781: -42,1 + 782: -41,3 + 783: -40,4 + 784: -38,4 + 785: -35,5 + 786: -38,5 + 787: -41,5 + 788: -40,5 + 789: -36,5 + 790: -34,5 + 791: -34,3 + 792: -34,1 + 793: -33,1 + 794: -32,4 + 795: -34,6 + 796: -35,6 + 797: -38,6 + 798: -42,6 + 799: -42,5 + 800: -40,3 + 801: -36,4 + 802: -33,4 + 803: -34,1 + 804: -33,1 + 805: -33,3 + 806: -34,4 + 807: -35,2 + 808: -33,1 + 809: -34,4 + 810: -40,5 + 811: -40,4 + 812: -41,3 + 813: -41,3 + 877: -34,0 + 878: -34,0 + 879: -35,0 + 880: -35,1 + 881: -34,2 + 882: -34,3 + 883: -36,4 + 884: -38,5 + 885: -39,5 + 886: -37,5 + 887: -36,6 + 888: -36,6 + 889: -38,7 + 890: -39,7 + 891: -40,6 + 892: -40,5 + 893: -41,4 + 894: -41,3 + 895: -42,2 + 943: -31,4 + 944: -30,5 + 945: -28,5 + 946: -26,5 + 947: -25,4 + 948: -24,4 + 949: -24,5 + 950: -27,6 + 951: -30,6 + 952: -31,5 + 953: -28,5 + 954: -24,6 + 955: -22,6 + 956: -21,5 + 957: -21,5 + 958: -22,4 + 959: -21,4 + 960: -18,5 + 961: -18,5 962: -21,5 963: -21,5 - 964: -22,4 - 965: -21,4 - 966: -18,5 - 967: -18,5 - 968: -21,5 - 969: -21,5 - 970: -20,5 - 971: -19,5 - 972: -20,4 - 973: -21,4 - 974: -23,5 - 975: -23,5 - 976: -25,4 - 977: -27,4 - 978: -29,4 - 979: -30,5 - 980: -30,6 - 981: -32,6 - 982: -31,6 - 983: -25,6 - 984: -19,6 - 985: -17,6 - 986: -16,5 - 987: -17,4 - 988: -15,4 - 989: -15,4 - 990: -18,4 - 991: -41,2 - 992: -42,2 - 993: -41,1 - 994: -41,0 - 995: -41,0 - 996: -42,4 - 997: -42,4 - 998: -29,6 - 1513: -39,10 - 1514: -38,10 - 1515: -38,10 - 1516: -39,10 - 1517: -39,9 - 1518: -38,12 - 1519: -37,15 - 1520: -37,15 - 1521: -39,15 - 1522: -38,13 - 1523: -37,18 - 1524: -38,21 - 1525: -38,22 - 1526: -39,21 - 1527: -37,21 - 1528: -37,26 - 1529: -38,28 - 1530: -39,28 - 1531: -38,28 - 1532: -38,32 - 1533: -37,33 - 1534: -34,32 - 1535: -32,32 - 1536: -32,31 - 1537: -30,32 - 1538: -28,33 - 1539: -26,33 - 1540: -23,33 - 1541: -22,32 - 1542: -19,32 - 1543: -17,33 - 1544: -17,32 - 1545: -17,31 - 1546: -18,32 - 1547: -20,32 - 1548: -23,27 - 1549: -23,26 - 1550: -26,28 - 1551: -28,29 - 1552: -26,27 - 1553: -17,29 - 1554: -18,28 - 1555: -18,27 - 1556: -32,33 - 1557: -35,33 - 1558: -37,32 - 1559: -34,32 - 1560: -33,33 - 1561: -36,33 - 1562: -35,27 - 1563: -35,25 - 1564: -35,23 - 1565: -33,24 - 1566: -35,27 - 1567: -36,27 - 1568: -36,25 - 1569: -35,24 - 1570: -32,26 - 1571: -37,32 - 1572: -40,33 - 1573: -43,32 - 1574: -44,30 - 1575: -43,32 - 1576: -45,33 - 1577: -48,33 - 1578: -52,32 - 1579: -53,31 - 1580: -55,32 - 1581: -56,33 - 1582: -58,33 - 1583: -59,31 - 1584: -58,28 - 1585: -57,27 - 1586: -59,28 - 1587: -59,29 - 1588: -58,25 - 1589: -58,23 - 1590: -59,22 - 1591: -59,21 - 1592: -59,19 - 1593: -58,17 - 1594: -57,15 - 1595: -57,13 - 1596: -59,13 - 1597: -59,11 - 1598: -58,8 - 1599: -58,7 - 1600: -58,5 - 1601: -57,5 - 1602: -58,6 - 1603: -61,6 - 1604: -62,5 - 1605: -63,5 - 1606: -65,5 - 1607: -66,5 - 1608: -64,4 - 1609: -63,5 - 1610: -65,6 - 1611: -70,6 - 1612: -72,5 - 1613: -72,4 - 1614: -73,6 - 1615: -76,6 - 1616: -75,5 - 1617: -71,6 - 1618: -66,6 - 1619: -62,5 - 1620: -58,3 - 1621: -58,3 - 1622: -59,2 - 1623: -59,1 - 1624: -57,-1 - 1625: -57,2 - 1626: -58,1 - 1627: -58,-2 - 1628: -58,-4 - 1629: -59,-6 - 1630: -58,-9 - 1631: -57,-7 - 1632: -58,-10 - 1633: -58,-10 - 1634: -59,-11 - 1635: -57,-11 - 1636: -58,-11 - 1637: -59,-11 - 1638: -57,-11 - 1639: -55,5 - 1640: -55,5 - 1641: -54,6 - 1642: -55,6 - 1643: -56,5 - 1644: -53,9 - 1645: -55,9 - 1646: -52,8 - 1647: -48,9 - 1648: -52,10 - 1649: -53,10 - 1650: -50,9 - 1651: -48,10 - 1652: -50,10 - 1653: -53,10 - 1654: -54,9 - 1655: -51,8 - 1656: -48,8 - 1657: -44,5 - 1658: -46,5 - 1659: -48,4 - 1660: -38,20 - 1661: -37,19 - 1662: -37,17 - 1663: -37,20 - 2078: -7,42 - 2079: -9,44 - 2080: -10,43 - 2081: -10,41 - 2082: -10,39 - 2083: -6,39 - 2084: -6,42 - 2085: -7,44 - 2086: -8,42 - 2087: -7,40 - 2088: -7,41 - 2089: 4,49 - 2090: 2,50 - 2091: 2,52 - 2092: 2,51 - 2093: 4,49 - 2094: 4,51 - 2095: 3,50 - 2096: 11,51 - 2097: 10,51 - 2098: 10,50 - 2099: 11,52 - 2100: 10,51 - 2101: 11,50 - 2102: 10,46 - 2103: 11,45 - 2104: 11,46 - 2105: 10,45 - 2106: 12,44 - 2107: 11,46 - 2108: 10,46 - 2109: 9,46 - 2110: 9,43 - 2111: 9,42 - 2112: 11,42 - 2113: 12,43 - 2114: 10,43 - 2115: 11,42 - 2116: 12,42 - 2117: 10,42 - 2118: 11,43 - 2119: 17,37 - 2120: 18,38 - 2121: 21,39 - 2122: 22,38 - 2123: 23,37 - 2124: 20,38 - 2125: 17,38 - 2126: 19,37 - 2127: 22,39 - 2128: 22,40 - 2129: 19,42 - 2130: 17,42 - 2131: 16,40 - 2132: 18,39 - 2133: 20,40 - 2134: 19,42 - 2135: 18,42 - 2136: 18,39 - 2137: 20,39 - 2138: 21,42 - 2139: 22,43 - 2140: 23,41 - 2141: 22,40 - 2142: 22,42 - 2143: 20,42 - 2144: 19,40 - 2145: 19,39 - 2146: 18,41 - 2147: 18,42 - 2148: 17,40 - 2149: 18,38 - 2150: -21,38 - 2151: -22,37 - 2152: -23,37 - 2153: -22,40 - 2154: -22,42 - 2155: -24,42 - 2156: -22,40 - 2157: -21,39 - 2158: -21,41 - 2159: -21,42 - 2160: -20,40 - 2161: -21,39 - 2162: -21,39 - 2163: -22,42 - 2164: -23,42 - 2365: -22,60 - 2366: -20,59 - 2367: -21,60 - 2368: -20,61 - 2369: -19,63 - 2370: -18,63 - 2371: -18,62 - 2372: -19,62 - 2373: -17,62 - 2374: -15,62 - 2375: -16,63 - 2376: -17,65 - 2377: -16,65 - 2378: -18,66 - 2379: -19,65 - 2380: -18,64 - 2381: -17,65 - 2382: -15,66 - 2383: -14,65 - 2384: -14,64 - 2385: -20,64 - 2386: -21,63 - 2387: -21,62 - 2388: -20,62 - 2389: -21,61 - 2390: -22,59 - 2391: -22,59 - 2392: -13,59 - 2393: -12,59 - 2394: -14,59 - 2395: -14,60 - 2396: -14,62 - 2397: -17,61 - 2398: -18,60 - 2399: -18,60 - 2400: -19,59 - 2401: -19,57 - 2402: -19,56 - 2403: -19,54 - 2404: -18,54 - 2405: -16,53 - 2406: -15,55 - 2407: -15,56 - 2408: -15,53 - 2409: -16,53 - 2410: -16,41 - 2411: -17,41 - 2412: -18,39 - 2413: -17,37 - 2414: -16,38 - 2415: -17,41 - 2416: -17,42 - 2417: -18,40 - 2418: -16,40 - 2419: -16,43 - 2420: -17,45 - 2421: -18,43 - 2422: -18,40 - 2640: -40,-7 - 2641: -39,-6 - 2642: -39,-7 - 2643: -39,-8 - 2644: -41,-6 - 2645: -41,-5 - 2646: -41,-4 - 2647: -42,-5 - 2648: -42,-6 - 2649: -42,-4 - 2650: -40,-2 - 2651: -38,-3 - 2652: -39,-5 - 2653: -42,-2 - 2654: -42,-2 - 2655: -41,-2 - 2656: -40,-3 - 2657: -35,-8 - 2658: -32,-9 - 2659: -33,-6 - 2660: -32,-6 - 2661: -32,-6 - 2662: -32,-10 - 2663: -33,-10 - 2664: -34,-10 - 2665: -32,-10 - 2666: -34,-10 - 2667: -37,-8 - 2668: -36,-8 - 2669: -35,-8 - 2670: -36,-7 - 2671: -38,-6 - 2672: -40,-7 - 2673: -40,-7 - 3243: 6,13 - 3244: 6,12 - 3245: 8,11 - 3246: 10,11 - 3247: 11,13 - 3248: 9,15 - 3249: 7,15 - 3250: 7,15 - 3251: 10,17 - 3252: 9,19 - 3253: 9,19 - 3254: 9,18 - 3255: 9,19 - 3256: 11,20 - 3257: 11,20 - 3258: 11,17 - 3259: 11,15 - 3260: 10,14 - 3261: 9,14 - 3262: 10,12 - 3263: 8,14 - 3264: 8,14 - 3265: 2,15 - 3266: 2,16 - 3267: -1,16 - 3268: -2,16 - 3269: 0,14 - 3270: 3,15 - 3271: 3,16 - 3272: 0,16 - 3273: 0,16 - 3274: 2,15 - 3275: 1,16 - 3276: 0,16 - 3277: -2,17 - 3278: -2,16 - 3279: -2,15 - 3280: 1,14 - 3281: 3,14 - 3282: 4,15 - 3283: 4,17 - 3284: 3,17 - 3285: 1,17 - 3286: 2,20 - 3287: 1,19 - 3288: 4,20 - 3289: 3,20 - 3290: 7,20 - 3291: 6,19 - 3292: 7,19 - 3293: 7,20 - 3294: 6,20 - 3295: 7,19 - 3296: 1,20 - 3297: 1,20 - 3298: 3,20 - 3299: 3,21 - 3300: 2,21 - 3301: 2,22 - 3302: 2,23 - 3303: 2,25 - 3304: 2,25 - 3305: 2,24 - 3306: 3,23 - 3307: 4,22 - 3308: 4,21 - 3309: 4,24 - 3310: 3,25 - 3311: 3,24 - 3312: 4,24 - 3313: 4,25 - 3314: 3,26 - 3315: 2,26 - 3316: 4,27 - 3317: 4,29 - 3318: 2,28 - 3319: 4,28 - 3320: 5,28 - 3321: 4,29 - 3322: 4,28 - 3323: 3,29 - 3324: 2,30 - 3325: 3,31 - 3326: 3,32 - 3327: 3,34 - 3328: 2,33 - 3329: 4,31 - 3330: 4,32 - 3331: 3,32 - 3332: 2,32 - 3333: 6,25 - 3334: 6,25 - 3335: 6,24 - 3336: 6,23 - 3337: 8,22 - 3338: 9,22 - 3339: 10,22 - 3340: 9,23 - 3341: 8,23 - 3342: 9,24 - 3343: 9,25 - 3344: 7,25 - 3345: 9,25 - 3346: 8,26 - 3347: 7,26 - 3348: 10,26 - 3349: 9,26 - 3350: 9,26 - 3351: 12,28 - 3352: 10,29 - 3353: 9,29 - 3354: 8,28 - 3355: 7,28 - 3356: 7,30 - 3357: 8,31 - 3358: 11,31 - 3359: 12,31 - 3360: 12,30 - 3361: 11,30 - 3362: 9,31 - 3363: 7,30 - 3364: 8,29 - 3365: 12,28 - 3366: 6,34 - 3367: 6,34 - 3368: 7,33 - 3369: 9,34 - 3370: 10,34 - 3371: 11,34 - 3372: 12,33 - 3373: 12,36 - 3374: 11,37 - 3375: 10,36 - 3376: 10,36 - 3377: 8,36 - 3378: 7,37 - 3379: 6,35 - 3380: 6,34 - 3381: 11,34 - 3382: 11,36 - 3383: 9,37 - 3384: -1,36 - 3385: 0,36 - 3386: 0,37 - 3387: -1,39 - 3388: 1,40 - 3389: 3,40 - 3390: 4,37 - 3391: 4,36 - 3392: 3,36 - 3393: 2,37 - 3394: 2,38 - 3395: 0,37 - 3396: 1,36 - 3397: 0,37 - 3398: -1,36 - 3399: 0,38 - 3400: -1,39 - 3401: 1,40 - 3402: 2,39 - 3442: -3,10 - 3443: -3,9 - 3444: -2,8 - 3445: 0,9 - 3446: 1,9 - 3447: 1,8 - 3448: 0,10 - 3449: -2,10 - 3450: -3,10 - 3978: -66,54 - 3979: -66,55 - 3980: -66,55 - 3981: -66,53 - 3982: -65,52 - 3983: -63,52 - 3984: -62,53 - 3985: -61,51 - 3986: -62,51 - 3987: -62,50 - 3988: -62,52 - 3989: -62,53 - 3990: -64,54 - 3991: -65,53 - 3992: -64,53 - 3993: -60,54 - 3994: -61,55 - 3995: -62,55 - 3996: -64,55 - 3997: -59,54 - 3998: -60,52 - 3999: -60,51 - 4000: -62,51 - 4001: -61,52 - 4002: -61,52 - 4003: -58,53 - 4004: -59,55 - 4005: -59,55 - 4006: -58,53 - 4007: -58,53 - 4008: -55,53 - 4009: -51,53 - 4010: -51,54 - 4011: -52,54 - 4012: -55,54 - 4013: -57,54 - 4014: -52,55 - 4015: -53,56 - 4016: -53,56 - 4017: -53,55 - 4018: -53,55 - 4019: -56,56 - 4020: -57,56 - 4021: -57,55 - 4022: -58,57 - 4023: -57,58 - 4024: -53,58 - 4025: -51,57 - 4026: -52,56 - 4027: -56,56 - 4028: -56,55 - 4029: -47,54 - 4030: -48,55 - 4031: -49,55 - 4032: -49,55 - 4033: -48,52 - 4034: -49,50 - 4035: -49,49 - 4036: -47,50 - 4037: -47,52 - 4038: -47,52 - 4039: -49,58 - 4040: -49,58 - 4041: -48,57 - 4042: -47,59 - 4043: -47,61 - 4044: -48,61 - 4045: -49,61 - 4046: -49,59 - 4047: -48,58 - 4048: -44,62 - 4049: -44,61 - 4050: -43,63 - 4051: -44,65 - 4052: -44,64 - 4053: -43,62 - 4054: -42,61 - 4055: -42,64 - 4056: -43,65 - 4057: -48,64 - 4058: -48,65 - 4059: -50,65 - 4060: -52,65 - 4061: -52,64 - 4062: -53,63 - 4063: -53,65 - 4064: -52,64 - 4065: -51,61 - 4066: -52,62 - 4067: -53,64 - 4068: -53,64 - 4069: -53,62 - 4070: -53,60 - 4071: -51,60 - 4072: -51,61 - 4073: -53,60 - 4074: -52,60 - 4075: -52,60 - 4076: -56,62 - 4077: -58,61 - 4078: -57,61 - 4079: -55,60 - 4080: -58,60 - 4081: -61,61 - 4082: -62,60 - 4083: -59,60 - 4084: -58,60 - 4085: -60,61 - 4086: -62,61 - 4087: -57,61 - 4088: -53,61 - 4089: -52,61 - 4090: -52,61 - 4091: -53,83 - 4092: -53,82 - 4093: -52,83 - 4094: -51,84 - 4095: -51,83 - 4096: -51,84 - 4097: -52,84 - 4098: -53,85 - 4099: -52,85 - 4100: -51,86 - 4101: -51,89 - 4102: -52,90 - 4103: -53,89 - 4104: -53,88 - 4105: -52,87 - 4106: -51,87 - 4107: -51,87 - 4108: -51,89 - 4109: -51,90 - 4110: -51,89 - 4111: -55,86 - 4112: -56,86 - 4113: -57,86 - 4114: -59,86 - 4115: -55,89 - 4116: -55,90 - 4117: -56,89 - 4118: -56,88 - 4119: -56,88 - 4120: -58,89 - 4121: -60,89 - 4122: -61,88 - 4123: -62,86 - 4124: -62,85 - 4125: -62,84 - 4126: -62,83 - 4127: -62,83 - 4128: -62,86 - 4129: -62,88 - 4130: -61,89 - 4131: -60,88 - 4132: -60,86 - 4133: -61,85 - 4134: -60,84 - 4135: -58,83 - 4136: -58,83 - 4137: -58,87 - 4138: -59,89 - 4139: -61,88 - 4140: -60,87 - 4141: -60,87 - 4142: -55,83 - 4143: -56,84 - 4144: -56,83 - 4145: -55,82 - 4146: -55,84 - 4147: -56,83 - 4148: -56,82 - 4149: -53,82 - 4150: -53,83 - 4151: -51,84 - 4152: -52,85 - 4153: -53,84 - 4154: -52,83 - 4155: -52,85 - 4156: -52,87 - 4157: -52,88 - 4158: -53,86 - 4159: -53,85 - 4160: -57,49 - 4161: -58,49 - 4162: -57,50 - 4163: -58,52 - 4164: -58,49 - 4165: -57,50 - 4166: -58,52 - 4167: -58,51 - 4168: -57,50 - 4169: -57,50 - 4170: -58,51 - 4171: -58,49 - 4172: -55,51 - 4173: -55,52 - 4174: -55,50 - 4175: -54,50 - 4176: -54,51 - 4177: -55,50 - 4178: -54,49 - 4179: -52,52 - 4180: -52,51 - 4181: -52,50 - 4182: -51,49 - 4183: -51,51 - 4184: -52,50 - 4185: -52,49 - 4645: -62,45 - 4646: -64,45 - 4647: -65,45 - 4648: -64,44 - 4649: -62,44 - 4650: -61,45 - 4651: -62,45 - 4652: -63,44 - 4653: -62,40 - 4654: -61,42 - 4655: -61,42 - 4656: -61,40 - 4657: -61,39 - 4658: -61,38 - 4659: -62,38 - 4660: -63,38 - 4661: -64,38 - 4662: -65,39 - 4663: -64,40 - 4664: -65,39 - 4665: -65,38 - 4666: -64,39 - 4667: -62,40 - 4668: -62,41 - 4669: -64,42 - 4670: -64,42 - 4671: -63,40 - 4699: -72,48 - 4700: -73,49 - 4701: -73,48 - 4702: -71,47 - 4703: -70,48 - 4704: -70,49 - 4705: -70,48 - 4706: -69,47 - 4707: -69,49 - 4708: -67,49 - 4709: -68,49 - 4710: -69,49 - 4711: -67,50 - 4712: -67,49 - 4713: -66,48 - 4714: -66,47 - 4715: -66,49 - 4716: -68,49 - 4717: -67,48 - 4718: -67,47 - 4719: -66,47 - 4720: -67,46 - 4721: -66,48 - 4722: -65,48 - 4723: -65,47 - 4724: -67,49 - 4725: -67,50 - 4802: -71,51 - 4803: -73,52 - 4804: -74,52 - 4805: -71,51 - 4806: -70,52 - 4807: -71,55 - 4808: -72,56 - 4809: -70,55 - 4810: -71,56 - 4811: -76,54 - 4812: -77,54 - 4813: -78,54 - 4814: -78,53 - 4815: -78,54 - 4816: -76,54 - 4875: -60,31 - 4876: -62,32 - 4877: -62,33 - 4878: -62,32 - 5029: -72,31 - 5030: -71,31 - 5031: -70,31 - 5032: -70,29 - 5033: -71,30 - 5034: -72,30 - 5035: -72,28 - 5036: -67,31 - 5037: -68,31 - 5038: -68,29 - 5039: -68,27 - 5040: -68,26 - 5041: -68,26 - 5042: -67,25 - 5043: -65,26 - 5044: -66,27 - 5045: -67,27 - 5046: -66,26 - 5047: -64,25 - 5048: -64,27 - 5049: -66,28 - 5050: -67,30 - 5051: -67,30 - 5052: -62,32 - 5053: -62,33 - 5054: -61,32 - 5055: -61,32 - 5056: -62,34 - 5057: -65,31 - 5058: -64,30 - 5059: -64,32 - 5060: -64,34 - 5061: -65,34 - 5062: -65,33 - 5063: -64,32 - 5064: -64,33 - 5065: -65,34 - 5066: -67,34 - 5067: -68,34 - 5068: -69,33 - 5069: -69,33 - 5070: -72,34 - 5071: -73,33 - 5072: -74,33 - 5073: -74,35 - 5074: -75,35 - 5075: -75,34 - 5076: -74,32 - 5077: -74,30 - 5078: -74,30 - 5079: -74,30 - 5080: -75,28 - 5081: -75,27 - 5082: -75,25 - 5083: -74,26 - 5084: -74,26 - 5085: -76,26 - 5086: -76,25 - 5087: -75,24 - 5088: -74,24 - 5089: -77,25 - 5090: -77,25 - 5091: -76,24 - 5092: -74,22 - 5093: -74,22 - 5094: -74,20 - 5095: -75,20 - 5096: -75,22 - 5097: -75,17 - 5098: -75,16 - 5099: -74,16 - 5100: -72,16 - 5101: -71,17 - 5102: -73,17 - 5103: -74,16 - 5104: -74,16 - 5105: -71,20 - 5106: -71,20 - 5107: -69,19 - 5108: -68,19 - 5109: -67,19 - 5110: -68,20 - 5111: -66,20 - 5112: -64,19 - 5113: -65,22 - 5114: -66,23 - 5115: -68,23 - 5116: -67,22 - 5117: -68,23 - 5118: -71,23 - 5119: -72,22 - 5120: -79,26 - 5121: -80,26 - 5122: -81,25 - 5123: -80,23 - 5124: -80,23 - 5125: -83,24 - 5126: -82,25 - 5127: -83,25 - 5128: -84,25 - 5129: -84,24 - 5130: -82,26 - 5131: -85,26 - 5132: -86,26 - 5133: -86,26 - 5134: -87,25 - 5135: -85,24 - 5136: -83,24 - 5137: -83,26 - 5138: -84,26 - 5139: -83,25 - 5140: -82,23 - 5141: -84,23 - 5142: -86,24 - 5143: -83,23 - 5144: -82,23 - 5145: -81,22 - 5146: -81,26 - 5147: -82,27 - 5148: -84,27 - 5149: -85,27 - 5150: -85,29 - 5151: -86,29 - 5152: -85,30 - 5153: -86,30 - 5154: -85,20 - 5155: -86,21 - 5156: -86,20 - 5157: -83,19 - 5158: -82,18 - 5159: -80,19 - 5160: -81,20 - 5161: -80,29 - 5162: -82,30 - 5163: -82,30 - 5164: -80,29 - 5165: -80,29 - 5166: -81,32 - 5167: -82,33 - 5168: -81,33 - 5169: -80,32 - 5170: -77,33 - 5240: -64,12 - 5241: -65,14 - 5242: -65,13 - 5243: -65,11 - 5244: -65,10 - 5245: -63,10 - 5246: -62,12 - 5247: -62,13 - 5248: -63,12 - 5249: -62,10 - 5250: -61,10 - 5251: -62,13 - 5252: -63,14 - 5253: -64,13 - 5254: -64,14 - 5255: -65,14 - 5256: -65,13 - 7463: -44,-11 - 7464: -44,-11 - 7465: -45,-11 - 7466: -45,-12 - 7467: -46,-13 - 7468: -46,-13 - 7469: -46,-14 - 7470: -43,-14 - 7471: -40,-14 - 7472: -38,-13 - 7473: -40,-13 - 7474: -40,-13 - 7475: -38,-14 - 7476: -38,-13 - 7477: -39,-11 - 7478: -40,-11 - 7479: -41,-10 - 7480: -40,-12 - 7481: -42,-12 - 7482: -43,-12 - 7483: -44,-12 - 7484: -45,-11 - 7485: -38,-10 - 7486: -39,-10 - 7487: -38,-10 - 7488: -38,-11 - 7541: -43,1 - 7542: -43,1 - 7543: -43,1 - 7551: -43,66 + 964: -20,5 + 965: -19,5 + 966: -20,4 + 967: -21,4 + 968: -23,5 + 969: -23,5 + 970: -25,4 + 971: -27,4 + 972: -29,4 + 973: -30,5 + 974: -30,6 + 975: -32,6 + 976: -31,6 + 977: -25,6 + 978: -19,6 + 979: -17,6 + 980: -16,5 + 981: -17,4 + 982: -15,4 + 983: -15,4 + 984: -18,4 + 985: -41,2 + 986: -42,2 + 987: -41,1 + 988: -41,0 + 989: -41,0 + 990: -42,4 + 991: -42,4 + 992: -29,6 + 1477: -39,10 + 1478: -38,10 + 1479: -38,10 + 1480: -39,10 + 1481: -39,9 + 1482: -38,12 + 1483: -37,15 + 1484: -37,15 + 1485: -39,15 + 1486: -38,13 + 1487: -37,18 + 1488: -38,21 + 1489: -38,22 + 1490: -39,21 + 1491: -37,21 + 1492: -37,26 + 1493: -38,28 + 1494: -39,28 + 1495: -38,28 + 1496: -38,32 + 1497: -37,33 + 1498: -34,32 + 1499: -32,32 + 1500: -32,31 + 1501: -30,32 + 1502: -28,33 + 1503: -26,33 + 1504: -23,33 + 1505: -22,32 + 1506: -19,32 + 1507: -17,33 + 1508: -17,32 + 1509: -17,31 + 1510: -18,32 + 1511: -20,32 + 1512: -23,27 + 1513: -23,26 + 1514: -26,28 + 1515: -28,29 + 1516: -26,27 + 1517: -17,29 + 1518: -18,28 + 1519: -18,27 + 1520: -32,33 + 1521: -35,33 + 1522: -37,32 + 1523: -34,32 + 1524: -33,33 + 1525: -36,33 + 1526: -35,27 + 1527: -35,25 + 1528: -35,23 + 1529: -33,24 + 1530: -35,27 + 1531: -36,27 + 1532: -36,25 + 1533: -35,24 + 1534: -32,26 + 1535: -37,32 + 1536: -40,33 + 1537: -43,32 + 1538: -44,30 + 1539: -43,32 + 1540: -45,33 + 1541: -48,33 + 1542: -52,32 + 1543: -53,31 + 1544: -55,32 + 1545: -56,33 + 1546: -58,33 + 1547: -59,31 + 1548: -58,28 + 1549: -57,27 + 1550: -59,28 + 1551: -59,29 + 1552: -58,25 + 1553: -58,23 + 1554: -59,22 + 1555: -59,21 + 1556: -59,19 + 1557: -58,17 + 1558: -57,15 + 1559: -57,13 + 1560: -59,13 + 1561: -59,11 + 1562: -58,8 + 1563: -58,7 + 1564: -58,5 + 1565: -57,5 + 1566: -58,6 + 1567: -61,6 + 1568: -62,5 + 1569: -63,5 + 1570: -65,5 + 1571: -66,5 + 1572: -64,4 + 1573: -63,5 + 1574: -65,6 + 1575: -70,6 + 1576: -72,5 + 1577: -72,4 + 1578: -73,6 + 1579: -76,6 + 1580: -75,5 + 1581: -71,6 + 1582: -66,6 + 1583: -62,5 + 1584: -58,3 + 1585: -58,3 + 1586: -59,2 + 1587: -59,1 + 1588: -57,-1 + 1589: -57,2 + 1590: -58,1 + 1591: -58,-2 + 1592: -58,-4 + 1593: -59,-6 + 1594: -58,-9 + 1595: -57,-7 + 1596: -58,-10 + 1597: -58,-10 + 1598: -59,-11 + 1599: -57,-11 + 1600: -58,-11 + 1601: -59,-11 + 1602: -57,-11 + 1603: -55,5 + 1604: -55,5 + 1605: -54,6 + 1606: -55,6 + 1607: -56,5 + 1608: -44,5 + 1609: -46,5 + 1610: -48,4 + 1611: -38,20 + 1612: -37,19 + 1613: -37,17 + 1614: -37,20 + 2029: -7,42 + 2030: -9,44 + 2031: -10,43 + 2032: -10,41 + 2033: -10,39 + 2034: -6,39 + 2035: -6,42 + 2036: -7,44 + 2037: -8,42 + 2038: -7,40 + 2039: -7,41 + 2040: 4,49 + 2041: 2,50 + 2042: 2,52 + 2043: 2,51 + 2044: 4,49 + 2045: 4,51 + 2046: 3,50 + 2047: 11,51 + 2048: 10,51 + 2049: 10,50 + 2050: 11,52 + 2051: 10,51 + 2052: 11,50 + 2053: 10,46 + 2054: 11,45 + 2055: 11,46 + 2056: 10,45 + 2057: 12,44 + 2058: 11,46 + 2059: 10,46 + 2060: 9,46 + 2061: 9,43 + 2062: 9,42 + 2063: 11,42 + 2064: 12,43 + 2065: 10,43 + 2066: 11,42 + 2067: 12,42 + 2068: 10,42 + 2069: 11,43 + 2070: 18,38 + 2071: 21,39 + 2072: 22,38 + 2073: 23,37 + 2074: 20,38 + 2075: 17,38 + 2076: 19,37 + 2077: 22,39 + 2078: 22,40 + 2079: 19,42 + 2080: 17,42 + 2081: 16,40 + 2082: 18,39 + 2083: 20,40 + 2084: 19,42 + 2085: 18,42 + 2086: 18,39 + 2087: 21,42 + 2088: 22,43 + 2089: 23,41 + 2090: 22,40 + 2091: 22,42 + 2092: 20,42 + 2093: 19,40 + 2094: 18,41 + 2095: 18,42 + 2096: 17,40 + 2097: 18,38 + 2098: -21,38 + 2099: -22,37 + 2100: -23,37 + 2101: -22,40 + 2102: -22,42 + 2103: -24,42 + 2104: -22,40 + 2105: -21,39 + 2106: -21,41 + 2107: -21,42 + 2108: -20,40 + 2109: -21,39 + 2110: -21,39 + 2111: -22,42 + 2112: -23,42 + 2313: -22,60 + 2314: -20,59 + 2315: -21,60 + 2316: -20,61 + 2317: -19,63 + 2318: -18,63 + 2319: -18,62 + 2320: -19,62 + 2321: -17,62 + 2322: -15,62 + 2323: -16,63 + 2324: -17,65 + 2325: -16,65 + 2326: -18,66 + 2327: -19,65 + 2328: -18,64 + 2329: -17,65 + 2330: -15,66 + 2331: -14,65 + 2332: -14,64 + 2333: -20,64 + 2334: -21,63 + 2335: -21,62 + 2336: -20,62 + 2337: -21,61 + 2338: -22,59 + 2339: -22,59 + 2340: -13,59 + 2341: -12,59 + 2342: -14,59 + 2343: -14,60 + 2344: -14,62 + 2345: -17,61 + 2346: -18,60 + 2347: -18,60 + 2348: -19,59 + 2349: -19,57 + 2350: -19,56 + 2351: -19,54 + 2352: -18,54 + 2353: -16,53 + 2354: -15,55 + 2355: -15,56 + 2356: -15,53 + 2357: -16,53 + 2358: -16,41 + 2359: -17,41 + 2360: -18,39 + 2361: -17,37 + 2362: -16,38 + 2363: -17,41 + 2364: -17,42 + 2365: -18,40 + 2366: -16,40 + 2367: -16,43 + 2368: -17,45 + 2369: -18,43 + 2370: -18,40 + 2588: -40,-7 + 2589: -39,-6 + 2590: -39,-7 + 2591: -39,-8 + 2592: -41,-6 + 2593: -41,-5 + 2594: -41,-4 + 2595: -42,-5 + 2596: -42,-6 + 2597: -42,-4 + 2598: -40,-2 + 2599: -38,-3 + 2600: -39,-5 + 2601: -42,-2 + 2602: -42,-2 + 2603: -41,-2 + 2604: -40,-3 + 2605: -35,-8 + 2606: -32,-9 + 2607: -33,-6 + 2608: -32,-6 + 2609: -32,-6 + 2610: -32,-10 + 2611: -33,-10 + 2612: -34,-10 + 2613: -32,-10 + 2614: -34,-10 + 2615: -37,-8 + 2616: -36,-8 + 2617: -35,-8 + 2618: -36,-7 + 2619: -38,-6 + 2620: -40,-7 + 2621: -40,-7 + 3191: 6,13 + 3192: 6,12 + 3193: 8,11 + 3194: 10,11 + 3195: 11,13 + 3196: 9,15 + 3197: 7,15 + 3198: 7,15 + 3199: 10,17 + 3200: 9,19 + 3201: 9,19 + 3202: 9,18 + 3203: 9,19 + 3204: 11,20 + 3205: 11,20 + 3206: 11,17 + 3207: 11,15 + 3208: 10,14 + 3209: 9,14 + 3210: 10,12 + 3211: 8,14 + 3212: 8,14 + 3213: 2,15 + 3214: 2,16 + 3215: -1,16 + 3216: -2,16 + 3217: 0,14 + 3218: 3,15 + 3219: 3,16 + 3220: 0,16 + 3221: 0,16 + 3222: 2,15 + 3223: 1,16 + 3224: 0,16 + 3225: -2,17 + 3226: -2,16 + 3227: -2,15 + 3228: 1,14 + 3229: 3,14 + 3230: 4,15 + 3231: 4,17 + 3232: 3,17 + 3233: 1,17 + 3234: 2,20 + 3235: 1,19 + 3236: 4,20 + 3237: 3,20 + 3238: 7,20 + 3239: 6,19 + 3240: 7,19 + 3241: 7,20 + 3242: 6,20 + 3243: 7,19 + 3244: 1,20 + 3245: 1,20 + 3246: 3,20 + 3247: 3,21 + 3248: 2,21 + 3249: 2,22 + 3250: 2,23 + 3251: 2,25 + 3252: 2,25 + 3253: 2,24 + 3254: 3,23 + 3255: 4,22 + 3256: 4,21 + 3257: 4,24 + 3258: 3,25 + 3259: 3,24 + 3260: 4,24 + 3261: 4,25 + 3262: 3,26 + 3263: 2,26 + 3264: 4,27 + 3265: 4,29 + 3266: 2,28 + 3267: 4,28 + 3268: 5,28 + 3269: 4,29 + 3270: 4,28 + 3271: 3,29 + 3272: 2,30 + 3273: 3,31 + 3274: 3,32 + 3275: 3,34 + 3276: 2,33 + 3277: 4,31 + 3278: 4,32 + 3279: 3,32 + 3280: 2,32 + 3281: 6,25 + 3282: 6,25 + 3283: 6,24 + 3284: 6,23 + 3285: 8,22 + 3286: 9,22 + 3287: 10,22 + 3288: 9,23 + 3289: 8,23 + 3290: 9,24 + 3291: 9,25 + 3292: 7,25 + 3293: 9,25 + 3294: 8,26 + 3295: 7,26 + 3296: 10,26 + 3297: 9,26 + 3298: 9,26 + 3299: 12,28 + 3300: 10,29 + 3301: 9,29 + 3302: 8,28 + 3303: 7,28 + 3304: 7,30 + 3305: 8,31 + 3306: 11,31 + 3307: 12,31 + 3308: 12,30 + 3309: 11,30 + 3310: 9,31 + 3311: 7,30 + 3312: 8,29 + 3313: 12,28 + 3314: 6,34 + 3315: 6,34 + 3316: 7,33 + 3317: 9,34 + 3318: 10,34 + 3319: 11,34 + 3320: 12,33 + 3321: 12,36 + 3322: 11,37 + 3323: 10,36 + 3324: 10,36 + 3325: 8,36 + 3326: 7,37 + 3327: 6,35 + 3328: 6,34 + 3329: 11,34 + 3330: 11,36 + 3331: 9,37 + 3332: -1,36 + 3333: 0,36 + 3334: 0,37 + 3335: -1,39 + 3336: 1,40 + 3337: 3,40 + 3338: 4,37 + 3339: 4,36 + 3340: 3,36 + 3341: 2,37 + 3342: 2,38 + 3343: 0,37 + 3344: 1,36 + 3345: 0,37 + 3346: -1,36 + 3347: 0,38 + 3348: -1,39 + 3349: 1,40 + 3350: 2,39 + 3390: -3,10 + 3391: -3,9 + 3392: -2,8 + 3393: 0,9 + 3394: 1,9 + 3395: 1,8 + 3396: 0,10 + 3397: -2,10 + 3398: -3,10 + 3926: -66,54 + 3927: -66,55 + 3928: -66,55 + 3929: -66,53 + 3930: -65,52 + 3931: -63,52 + 3932: -62,53 + 3933: -61,51 + 3934: -62,51 + 3935: -62,50 + 3936: -62,52 + 3937: -62,53 + 3938: -64,54 + 3939: -65,53 + 3940: -64,53 + 3941: -60,54 + 3942: -61,55 + 3943: -62,55 + 3944: -64,55 + 3945: -59,54 + 3946: -60,52 + 3947: -60,51 + 3948: -62,51 + 3949: -61,52 + 3950: -61,52 + 3951: -58,53 + 3952: -59,55 + 3953: -59,55 + 3954: -58,53 + 3955: -58,53 + 3956: -55,53 + 3957: -51,53 + 3958: -51,54 + 3959: -52,54 + 3960: -55,54 + 3961: -57,54 + 3962: -52,55 + 3963: -53,56 + 3964: -53,56 + 3965: -53,55 + 3966: -53,55 + 3967: -56,56 + 3968: -57,56 + 3969: -57,55 + 3970: -58,57 + 3971: -57,58 + 3972: -53,58 + 3973: -51,57 + 3974: -52,56 + 3975: -56,56 + 3976: -56,55 + 3977: -47,54 + 3978: -48,55 + 3979: -49,55 + 3980: -49,55 + 3981: -48,52 + 3982: -49,50 + 3983: -49,49 + 3984: -47,50 + 3985: -47,52 + 3986: -47,52 + 3987: -49,58 + 3988: -49,58 + 3989: -48,57 + 3990: -47,59 + 3991: -47,61 + 3992: -48,61 + 3993: -49,61 + 3994: -49,59 + 3995: -48,58 + 3996: -44,62 + 3997: -44,61 + 3998: -43,63 + 3999: -44,65 + 4000: -44,64 + 4001: -43,62 + 4002: -42,61 + 4003: -42,64 + 4004: -43,65 + 4005: -48,64 + 4006: -48,65 + 4007: -50,65 + 4008: -52,65 + 4009: -52,64 + 4010: -53,63 + 4011: -53,65 + 4012: -52,64 + 4013: -51,61 + 4014: -52,62 + 4015: -53,64 + 4016: -53,64 + 4017: -53,62 + 4018: -53,60 + 4019: -51,60 + 4020: -51,61 + 4021: -53,60 + 4022: -52,60 + 4023: -52,60 + 4024: -56,62 + 4025: -58,61 + 4026: -57,61 + 4027: -55,60 + 4028: -58,60 + 4029: -61,61 + 4030: -62,60 + 4031: -59,60 + 4032: -58,60 + 4033: -60,61 + 4034: -62,61 + 4035: -57,61 + 4036: -53,61 + 4037: -52,61 + 4038: -52,61 + 4039: -53,83 + 4040: -53,82 + 4041: -52,83 + 4042: -51,84 + 4043: -51,83 + 4044: -51,84 + 4045: -52,84 + 4046: -53,85 + 4047: -52,85 + 4048: -51,86 + 4049: -51,89 + 4050: -52,90 + 4051: -53,89 + 4052: -53,88 + 4053: -52,87 + 4054: -51,87 + 4055: -51,87 + 4056: -51,89 + 4057: -51,90 + 4058: -51,89 + 4059: -55,86 + 4060: -56,86 + 4061: -57,86 + 4062: -59,86 + 4063: -55,89 + 4064: -55,90 + 4065: -56,89 + 4066: -56,88 + 4067: -56,88 + 4068: -58,89 + 4069: -60,89 + 4070: -61,88 + 4071: -62,86 + 4072: -62,85 + 4073: -62,84 + 4074: -62,83 + 4075: -62,83 + 4076: -62,86 + 4077: -62,88 + 4078: -61,89 + 4079: -60,88 + 4080: -60,86 + 4081: -61,85 + 4082: -60,84 + 4083: -58,83 + 4084: -58,83 + 4085: -58,87 + 4086: -59,89 + 4087: -61,88 + 4088: -60,87 + 4089: -60,87 + 4090: -55,83 + 4091: -56,84 + 4092: -56,83 + 4093: -55,82 + 4094: -55,84 + 4095: -56,83 + 4096: -56,82 + 4097: -53,82 + 4098: -53,83 + 4099: -51,84 + 4100: -52,85 + 4101: -53,84 + 4102: -52,83 + 4103: -52,85 + 4104: -52,87 + 4105: -52,88 + 4106: -53,86 + 4107: -53,85 + 4108: -57,49 + 4109: -58,49 + 4110: -57,50 + 4111: -58,52 + 4112: -58,49 + 4113: -57,50 + 4114: -58,52 + 4115: -58,51 + 4116: -57,50 + 4117: -57,50 + 4118: -58,51 + 4119: -58,49 + 4120: -55,51 + 4121: -55,52 + 4122: -55,50 + 4123: -54,50 + 4124: -54,51 + 4125: -55,50 + 4126: -54,49 + 4127: -52,52 + 4128: -52,51 + 4129: -52,50 + 4130: -51,49 + 4131: -51,51 + 4132: -52,50 + 4133: -52,49 + 4593: -62,45 + 4594: -64,45 + 4595: -65,45 + 4596: -64,44 + 4597: -62,44 + 4598: -61,45 + 4599: -62,45 + 4600: -63,44 + 4601: -62,40 + 4602: -61,42 + 4603: -61,42 + 4604: -61,40 + 4605: -61,39 + 4606: -61,38 + 4607: -62,38 + 4608: -63,38 + 4609: -64,38 + 4610: -65,39 + 4611: -64,40 + 4612: -65,39 + 4613: -65,38 + 4614: -64,39 + 4615: -62,40 + 4616: -62,41 + 4617: -64,42 + 4618: -64,42 + 4619: -63,40 + 4647: -72,48 + 4648: -73,49 + 4649: -73,48 + 4650: -71,47 + 4651: -70,48 + 4652: -70,49 + 4653: -70,48 + 4654: -69,47 + 4655: -69,49 + 4656: -67,49 + 4657: -68,49 + 4658: -69,49 + 4659: -67,50 + 4660: -67,49 + 4661: -66,48 + 4662: -66,47 + 4663: -66,49 + 4664: -68,49 + 4665: -67,48 + 4666: -67,47 + 4667: -66,47 + 4668: -67,46 + 4669: -66,48 + 4670: -65,48 + 4671: -65,47 + 4672: -67,49 + 4673: -67,50 + 4750: -71,51 + 4751: -73,52 + 4752: -74,52 + 4753: -71,51 + 4754: -70,52 + 4755: -71,55 + 4756: -72,56 + 4757: -70,55 + 4758: -71,56 + 4759: -76,54 + 4760: -77,54 + 4761: -78,54 + 4762: -78,53 + 4763: -78,54 + 4764: -76,54 + 4823: -60,31 + 4824: -62,32 + 4825: -62,33 + 4826: -62,32 + 4977: -72,31 + 4978: -71,31 + 4979: -70,31 + 4980: -70,29 + 4981: -71,30 + 4982: -72,30 + 4983: -72,28 + 4984: -67,31 + 4985: -68,31 + 4986: -68,29 + 4987: -68,27 + 4988: -68,26 + 4989: -68,26 + 4990: -67,25 + 4991: -65,26 + 4992: -66,27 + 4993: -67,27 + 4994: -66,26 + 4995: -64,25 + 4996: -64,27 + 4997: -66,28 + 4998: -67,30 + 4999: -67,30 + 5000: -62,32 + 5001: -62,33 + 5002: -61,32 + 5003: -61,32 + 5004: -62,34 + 5005: -65,31 + 5006: -64,30 + 5007: -64,32 + 5008: -64,34 + 5009: -65,34 + 5010: -65,33 + 5011: -64,32 + 5012: -64,33 + 5013: -65,34 + 5014: -67,34 + 5015: -68,34 + 5016: -69,33 + 5017: -69,33 + 5018: -72,34 + 5019: -73,33 + 5020: -74,33 + 5021: -74,35 + 5022: -75,35 + 5023: -75,34 + 5024: -74,32 + 5025: -74,30 + 5026: -74,30 + 5027: -74,30 + 5028: -75,28 + 5029: -75,27 + 5030: -75,25 + 5031: -74,26 + 5032: -74,26 + 5033: -76,26 + 5034: -76,25 + 5035: -75,24 + 5036: -74,24 + 5037: -77,25 + 5038: -77,25 + 5039: -76,24 + 5040: -74,22 + 5041: -74,22 + 5042: -74,20 + 5043: -75,20 + 5044: -75,22 + 5045: -75,17 + 5046: -75,16 + 5047: -74,16 + 5048: -72,16 + 5049: -71,17 + 5050: -73,17 + 5051: -74,16 + 5052: -74,16 + 5053: -71,20 + 5054: -71,20 + 5055: -69,19 + 5056: -68,19 + 5057: -67,19 + 5058: -68,20 + 5059: -66,20 + 5060: -64,19 + 5061: -65,22 + 5062: -66,23 + 5063: -68,23 + 5064: -67,22 + 5065: -68,23 + 5066: -71,23 + 5067: -72,22 + 5068: -79,26 + 5069: -80,26 + 5070: -81,25 + 5071: -80,23 + 5072: -80,23 + 5073: -83,24 + 5074: -82,25 + 5075: -83,25 + 5076: -84,25 + 5077: -84,24 + 5078: -82,26 + 5079: -85,26 + 5080: -86,26 + 5081: -86,26 + 5082: -87,25 + 5083: -85,24 + 5084: -83,24 + 5085: -83,26 + 5086: -84,26 + 5087: -83,25 + 5088: -82,23 + 5089: -84,23 + 5090: -86,24 + 5091: -83,23 + 5092: -82,23 + 5093: -81,22 + 5094: -81,26 + 5095: -82,27 + 5096: -84,27 + 5097: -85,27 + 5098: -85,29 + 5099: -86,29 + 5100: -85,30 + 5101: -86,30 + 5102: -85,20 + 5103: -86,21 + 5104: -86,20 + 5105: -83,19 + 5106: -82,18 + 5107: -80,19 + 5108: -81,20 + 5109: -80,29 + 5110: -82,30 + 5111: -82,30 + 5112: -80,29 + 5113: -80,29 + 5114: -81,32 + 5115: -82,33 + 5116: -81,33 + 5117: -80,32 + 5118: -77,33 + 5188: -64,12 + 5189: -65,14 + 5190: -65,13 + 5191: -65,11 + 5192: -65,10 + 5193: -63,10 + 5194: -62,12 + 5195: -62,13 + 5196: -63,12 + 5197: -62,10 + 5198: -61,10 + 5199: -62,13 + 5200: -63,14 + 5201: -64,13 + 5202: -64,14 + 5203: -65,14 + 5204: -65,13 + 7369: -44,-11 + 7370: -44,-11 + 7371: -45,-11 + 7372: -45,-12 + 7373: -46,-13 + 7374: -46,-13 + 7375: -46,-14 + 7376: -43,-14 + 7377: -40,-14 + 7378: -38,-13 + 7379: -40,-13 + 7380: -40,-13 + 7381: -38,-14 + 7382: -38,-13 + 7383: -39,-11 + 7384: -40,-11 + 7385: -41,-10 + 7386: -40,-12 + 7387: -42,-12 + 7388: -43,-12 + 7389: -44,-12 + 7390: -45,-11 + 7391: -38,-10 + 7392: -39,-10 + 7393: -38,-10 + 7394: -38,-11 + 7447: -43,1 + 7448: -43,1 + 7449: -43,1 + 7457: -43,66 - node: cleanable: True angle: 3.141592653589793 rad color: '#FFFFFFFF' id: DirtMedium decals: - 2704: -17,25 - 2705: -17,26 - 2706: -18,25 - 2707: -17,23 - 2708: -16,23 - 2709: -18,23 + 2652: -17,25 + 2653: -17,26 + 2654: -18,25 + 2655: -17,23 + 2656: -16,23 + 2657: -18,23 - node: color: '#FFFFFFFF' id: FlowersBROne decals: - 7139: -20.998013,33.948563 + 7045: -20.998013,33.948563 - node: color: '#FFFFFFFF' id: Flowersbr1 decals: - 1011: -34.770348,20.675009 - 2428: -13.913108,42.25173 - 2429: -12.522483,38.829857 + 1005: -34.770348,20.675009 + 2376: -13.913108,42.25173 + 2377: -12.522483,38.829857 - node: color: '#FFFFFFFF' id: Flowersbr2 decals: - 1003: -31.035973,18.003134 + 997: -31.035973,18.003134 - node: color: '#FFFFFFFF' id: Flowersbr3 decals: 170: 22.373394,16.934433 - 1008: -33.082848,20.175009 - 2722: 11.334139,25.806559 + 1002: -33.082848,20.175009 + 2670: 11.334139,25.806559 - node: color: '#FFFFFFFF' id: Flowerspv1 decals: 171: 22.420269,13.075058 - 2427: -13.334983,39.50173 - 2723: 11.943514,24.103434 + 2375: -13.334983,39.50173 + 2671: 11.943514,24.103434 - node: color: '#FFFFFFFF' id: Flowerspv3 decals: - 1002: -35.942223,17.018759 - 1012: -33.910973,21.581259 + 996: -35.942223,17.018759 + 1006: -33.910973,21.581259 - node: color: '#FFFFFFFF' id: Flowersy1 decals: - 1007: -34.192223,19.378134 - 2724: 11.240389,24.744059 + 1001: -34.192223,19.378134 + 2672: 11.240389,24.744059 - node: color: '#FFFFFFFF' id: Flowersy2 decals: - 1004: -33.379723,16.550009 - 2424: -12.163108,42.62673 - 2425: -13.631858,41.18923 - 7138: -21.904263,33.948563 + 998: -33.379723,16.550009 + 2372: -12.163108,42.62673 + 2373: -13.631858,41.18923 + 7044: -21.904263,33.948563 - node: color: '#FFFFFFFF' id: Flowersy3 decals: 174: 21.295269,12.512558 - 2426: -12.397483,40.892357 + 2374: -12.397483,40.892357 - node: color: '#FFFFFFFF' id: Flowersy4 @@ -7726,28 +7684,28 @@ entities: color: '#334E6DC8' id: FullTileOverlayGreyscale decals: - 2260: -17,65 - 2261: -14,64 - 2262: -20,64 - 2263: -21,61 - 2264: -21,60 - 2265: -13,61 - 2266: -13,60 + 2208: -17,65 + 2209: -14,64 + 2210: -20,64 + 2211: -21,61 + 2212: -21,60 + 2213: -13,61 + 2214: -13,60 - node: color: '#52B4E996' id: FullTileOverlayGreyscale decals: - 7063: 1,23 - 7064: 6,28 - 7065: 6,29 - 7066: 1,29 - 7067: 1,30 - 7068: 1,33 - 7069: 3,35 - 7070: 5,33 - 7071: 5,25 - 7072: 5,24 - 7073: 5,19 + 6985: 1,23 + 6986: 6,28 + 6987: 6,29 + 6988: 1,29 + 6989: 1,30 + 6990: 1,33 + 6991: 3,35 + 6992: 5,33 + 6993: 5,25 + 6994: 5,24 + 6995: 5,19 - node: color: '#52B4E9FF' id: FullTileOverlayGreyscale @@ -7757,91 +7715,101 @@ entities: color: '#9FED5896' id: FullTileOverlayGreyscale decals: - 7074: 8,19 + 6996: 8,19 - node: color: '#A4610696' id: FullTileOverlayGreyscale decals: - 7536: -43,1 + 7442: -43,1 - node: color: '#A46106FF' id: FullTileOverlayGreyscale decals: - 727: -40,0 - 728: -40,1 - 729: -39,2 - 730: -38,2 - 731: -37,2 - 732: -36,1 - 733: -36,0 + 721: -40,0 + 722: -40,1 + 723: -39,2 + 724: -38,2 + 725: -37,2 + 726: -36,1 + 727: -36,0 - node: color: '#DE3A3A96' id: FullTileOverlayGreyscale decals: - 3519: -53,59 - 3520: -51,59 - 3521: -46,64 - 3522: -46,65 - 3523: -45,65 - 3524: -45,64 - 3549: -50,55 - 3550: -50,53 - 3551: -59,53 - 3552: -59,55 - 7544: -43,66 + 3467: -53,59 + 3468: -51,59 + 3469: -46,64 + 3470: -46,65 + 3471: -45,65 + 3472: -45,64 + 3497: -50,55 + 3498: -50,53 + 3499: -59,53 + 3500: -59,55 + 7450: -43,66 - node: color: '#FFFFFFFF' id: Grassa2 decals: 172: 23.154644,14.840683 - 2430: -13.600608,37.69732 + 2378: -13.600608,37.69732 + 7480: 19,39 - node: color: '#FFFFFFFF' id: Grassa4 decals: 173: 22.842144,11.184433 - 999: -33.176598,15.425009 - 1000: -34.785973,16.596884 - 1001: -33.801598,18.065634 - 2725: 11.881014,25.275309 + 993: -33.176598,15.425009 + 994: -34.785973,16.596884 + 995: -33.801598,18.065634 + 2673: 11.881014,25.275309 - node: color: '#FFFFFFFF' id: Grassa5 decals: - 1010: -34.801598,15.284384 + 1004: -34.801598,15.284384 + 7484: 23,41 + - node: + color: '#FFFFFFFF' + id: Grassb1 + decals: + 7483: 21,39 - node: color: '#FFFFFFFF' id: Grassb5 decals: - 1009: -32.160973,18.596884 - 2431: -13.788108,40.38482 - 2435: -11.991233,43.725113 + 1003: -32.160973,18.596884 + 2379: -13.788108,40.38482 + 2383: -11.991233,43.725113 + 7481: 17,39 + 7482: 17,40 + 7485: 18,37 - node: color: '#FFFFFFFF' id: Grassc1 decals: 176: 22.123394,17.887558 - 1005: -34.910973,18.518759 - 2423: -13.616233,43.18923 - 7140: -20.044888,33.964188 + 999: -34.910973,18.518759 + 2371: -13.616233,43.18923 + 7046: -20.044888,33.964188 - node: color: '#FFFFFFFF' id: Grassc3 decals: - 1006: -32.395348,19.096884 + 1000: -32.395348,19.096884 - node: color: '#FFFFFFFF' id: Grassc4 decals: 177: 22.148829,16.269741 - 2432: -12.381858,37.369194 + 2380: -12.381858,37.369194 - node: color: '#FFFFFFFF' id: Grassd1 decals: - 2433: -13.881858,35.712944 - 2434: -12.897483,36.35357 - 2726: 11.349764,24.103434 + 2381: -13.881858,35.712944 + 2382: -12.897483,36.35357 + 2674: 11.349764,24.103434 - node: color: '#FFFFFFFF' id: Grasse1 @@ -7851,303 +7819,303 @@ entities: color: '#FFFFFFFF' id: Grasse2 decals: - 2436: -13.834983,36.936462 + 2384: -13.834983,36.936462 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale decals: - 2885: 8,31 - 2886: 9,31 - 2887: 10,31 - 2888: 11,31 - 2889: 3,34 - 2890: 7,26 - 2891: 8,26 - 2892: 9,26 + 2833: 8,31 + 2834: 9,31 + 2835: 10,31 + 2836: 11,31 + 2837: 3,34 + 2838: 7,26 + 2839: 8,26 + 2840: 9,26 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale decals: - 2759: 7,17 - 2760: 8,17 - 2761: 10,20 + 2707: 7,17 + 2708: 8,17 + 2709: 10,20 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale decals: - 3406: -2,10 - 3407: -1,10 - 3408: 0,10 - 3463: -62,61 - 3464: -61,61 - 3465: -60,61 - 3466: -59,61 - 3467: -58,61 - 3468: -56,61 - 3469: -57,61 - 3470: -55,61 - 3471: -54,61 - 3472: -52,65 - 3473: -51,65 - 3474: -50,65 - 3475: -49,65 - 3476: -48,65 - 3477: -47,65 - 3577: -65,55 - 3578: -64,55 - 3579: -63,55 - 3580: -62,55 - 3581: -61,55 + 3354: -2,10 + 3355: -1,10 + 3356: 0,10 + 3411: -62,61 + 3412: -61,61 + 3413: -60,61 + 3414: -59,61 + 3415: -58,61 + 3416: -56,61 + 3417: -57,61 + 3418: -55,61 + 3419: -54,61 + 3420: -52,65 + 3421: -51,65 + 3422: -50,65 + 3423: -49,65 + 3424: -48,65 + 3425: -47,65 + 3525: -65,55 + 3526: -64,55 + 3527: -63,55 + 3528: -62,55 + 3529: -61,55 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale decals: - 4258: -71,23 - 4259: -70,23 - 4260: -69,23 - 4261: -68,23 - 4262: -67,23 - 4263: -66,23 - 4264: -65,23 - 4316: -66,34 - 4317: -67,34 - 4318: -68,34 - 4319: -69,34 - 4320: -72,35 - 4321: -73,35 - 4322: -74,35 - 4323: -76,26 - 4340: -65,34 - 4343: -71,35 - 4374: -86,27 - 4375: -85,27 - 4376: -84,27 - 4377: -83,27 - 4378: -82,27 - 4379: -81,27 - 4574: -61,33 + 4206: -71,23 + 4207: -70,23 + 4208: -69,23 + 4209: -68,23 + 4210: -67,23 + 4211: -66,23 + 4212: -65,23 + 4264: -66,34 + 4265: -67,34 + 4266: -68,34 + 4267: -69,34 + 4268: -72,35 + 4269: -73,35 + 4270: -74,35 + 4271: -76,26 + 4288: -65,34 + 4291: -71,35 + 4322: -86,27 + 4323: -85,27 + 4324: -84,27 + 4325: -83,27 + 4326: -82,27 + 4327: -81,27 + 4522: -61,33 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 decals: - 2876: 3,19 - 2877: 2,19 - 2878: 8,28 - 2879: 9,28 - 2880: 10,28 - 2881: 11,28 - 2882: 7,22 - 2883: 8,22 - 2884: 9,22 + 2824: 3,19 + 2825: 2,19 + 2826: 8,28 + 2827: 9,28 + 2828: 10,28 + 2829: 11,28 + 2830: 7,22 + 2831: 8,22 + 2832: 9,22 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale180 decals: - 3403: -2,8 - 3404: -1,8 - 3405: 0,8 - 3478: -62,60 - 3479: -61,60 - 3480: -60,60 - 3481: -59,60 - 3482: -58,60 - 3483: -57,60 - 3484: -56,60 - 3485: -55,60 - 3486: -53,60 - 3487: -54,60 - 3488: -52,60 - 3489: -50,64 - 3490: -49,64 - 3491: -47,64 - 3492: -48,64 - 3582: -63,50 - 3583: -62,50 - 3584: -61,50 - 3585: -65,52 + 3351: -2,8 + 3352: -1,8 + 3353: 0,8 + 3426: -62,60 + 3427: -61,60 + 3428: -60,60 + 3429: -59,60 + 3430: -58,60 + 3431: -57,60 + 3432: -56,60 + 3433: -55,60 + 3434: -53,60 + 3435: -54,60 + 3436: -52,60 + 3437: -50,64 + 3438: -49,64 + 3439: -47,64 + 3440: -48,64 + 3530: -63,50 + 3531: -62,50 + 3532: -61,50 + 3533: -65,52 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale180 decals: - 4265: -71,19 - 4266: -70,19 - 4267: -69,19 - 4268: -68,19 - 4269: -67,19 - 4270: -65,19 - 4271: -66,19 - 4308: -73,33 - 4309: -72,33 - 4310: -71,33 - 4311: -70,33 - 4312: -69,33 - 4313: -68,33 - 4314: -67,33 - 4315: -66,33 - 4324: -76,24 - 4386: -82,22 - 4387: -81,22 - 4388: -84,23 - 4389: -85,23 - 4390: -86,23 - 4571: -61,31 + 4213: -71,19 + 4214: -70,19 + 4215: -69,19 + 4216: -68,19 + 4217: -67,19 + 4218: -65,19 + 4219: -66,19 + 4256: -73,33 + 4257: -72,33 + 4258: -71,33 + 4259: -70,33 + 4260: -69,33 + 4261: -68,33 + 4262: -67,33 + 4263: -66,33 + 4272: -76,24 + 4334: -82,22 + 4335: -81,22 + 4336: -84,23 + 4337: -85,23 + 4338: -86,23 + 4519: -61,31 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale270 decals: - 2836: 6,33 - 2837: 6,34 - 2838: 6,35 - 2839: 6,36 - 2840: 6,37 - 2841: 2,33 - 2842: 2,32 - 2843: 2,31 - 2844: 2,29 - 2845: 2,30 - 2846: 2,28 - 2847: 2,27 - 2848: 2,26 - 2849: 2,25 - 2850: 2,24 - 2851: 2,23 - 2852: 2,22 - 2853: 2,21 - 2854: 6,23 - 2855: 6,24 - 2856: 6,25 - 2857: 7,29 - 2858: 7,30 + 2784: 6,33 + 2785: 6,34 + 2786: 6,35 + 2787: 6,36 + 2788: 6,37 + 2789: 2,33 + 2790: 2,32 + 2791: 2,31 + 2792: 2,29 + 2793: 2,30 + 2794: 2,28 + 2795: 2,27 + 2796: 2,26 + 2797: 2,25 + 2798: 2,24 + 2799: 2,23 + 2800: 2,22 + 2801: 2,21 + 2802: 6,23 + 2803: 6,24 + 2804: 6,25 + 2805: 7,29 + 2806: 7,30 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale270 decals: - 2754: 6,14 - 2755: 6,15 - 2756: 6,16 - 2757: 9,18 - 2758: 9,19 + 2702: 6,14 + 2703: 6,15 + 2704: 6,16 + 2705: 9,18 + 2706: 9,19 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 decals: - 3414: -3,9 - 3496: -53,62 - 3497: -53,63 - 3498: -53,64 - 3590: -66,54 - 3591: -66,53 - 3598: -64,51 + 3362: -3,9 + 3444: -53,62 + 3445: -53,63 + 3446: -53,64 + 3538: -66,54 + 3539: -66,53 + 3546: -64,51 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale270 decals: - 4275: -72,20 - 4276: -72,21 - 4277: -72,22 - 4278: -75,21 - 4279: -75,22 - 4280: -75,23 - 4281: -75,27 - 4282: -75,28 - 4283: -75,29 - 4284: -75,30 - 4285: -75,31 - 4286: -75,32 - 4287: -75,33 - 4288: -75,34 - 4289: -77,25 - 4290: -65,31 - 4291: -65,32 - 4331: -75,20 - 4572: -62,32 + 4223: -72,20 + 4224: -72,21 + 4225: -72,22 + 4226: -75,21 + 4227: -75,22 + 4228: -75,23 + 4229: -75,27 + 4230: -75,28 + 4231: -75,29 + 4232: -75,30 + 4233: -75,31 + 4234: -75,32 + 4235: -75,33 + 4236: -75,34 + 4237: -77,25 + 4238: -65,31 + 4239: -65,32 + 4279: -75,20 + 4520: -62,32 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale90 decals: - 2721: 10,25 - 2831: 12,33 - 2832: 12,34 - 2833: 12,35 - 2834: 12,36 - 2835: 12,37 - 2859: 12,30 - 2860: 12,29 - 2861: 10,25 - 2862: 10,24 - 2863: 10,23 - 2864: 4,33 - 2865: 4,32 - 2866: 5,30 - 2867: 5,29 - 2868: 4,27 - 2869: 4,26 - 2870: 4,25 - 2871: 4,23 - 2872: 4,24 - 2873: 4,22 - 2874: 4,21 - 2875: 4,20 + 2669: 10,25 + 2779: 12,33 + 2780: 12,34 + 2781: 12,35 + 2782: 12,36 + 2783: 12,37 + 2807: 12,30 + 2808: 12,29 + 2809: 10,25 + 2810: 10,24 + 2811: 10,23 + 2812: 4,33 + 2813: 4,32 + 2814: 5,30 + 2815: 5,29 + 2816: 4,27 + 2817: 4,26 + 2818: 4,25 + 2819: 4,23 + 2820: 4,24 + 2821: 4,22 + 2822: 4,21 + 2823: 4,20 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale90 decals: - 2762: 11,19 - 2763: 11,18 - 2764: 11,17 - 2765: 11,16 - 2766: 11,15 - 2767: 11,14 + 2710: 11,19 + 2711: 11,18 + 2712: 11,17 + 2713: 11,16 + 2714: 11,15 + 2715: 11,14 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale90 decals: - 3409: 1,9 - 3493: -51,61 - 3494: -51,62 - 3495: -51,63 - 3586: -60,54 - 3587: -60,53 - 3588: -60,52 - 3589: -60,51 + 3357: 1,9 + 3441: -51,61 + 3442: -51,62 + 3443: -51,63 + 3534: -60,54 + 3535: -60,53 + 3536: -60,52 + 3537: -60,51 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale90 decals: - 4272: -64,21 - 4273: -64,20 - 4274: -64,22 - 4292: -64,31 - 4293: -64,32 - 4294: -64,33 - 4295: -74,32 - 4296: -74,30 - 4297: -74,31 - 4298: -74,29 - 4299: -74,28 - 4300: -74,27 - 4301: -74,26 - 4302: -74,25 - 4303: -74,24 - 4304: -74,23 - 4305: -74,22 - 4306: -74,21 - 4307: -74,20 - 4391: -80,23 - 4394: -79,25 - 4573: -60,32 + 4220: -64,21 + 4221: -64,20 + 4222: -64,22 + 4240: -64,31 + 4241: -64,32 + 4242: -64,33 + 4243: -74,32 + 4244: -74,30 + 4245: -74,31 + 4246: -74,29 + 4247: -74,28 + 4248: -74,27 + 4249: -74,26 + 4250: -74,25 + 4251: -74,24 + 4252: -74,23 + 4253: -74,22 + 4254: -74,21 + 4255: -74,20 + 4339: -80,23 + 4342: -79,25 + 4521: -60,32 - node: color: '#FFFFFFFF' id: LoadingArea decals: - 2449: -36,-10 + 2397: -36,-10 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: LoadingArea decals: - 2674: -40,-11 - 2675: -40,-7 + 2622: -40,-11 + 2623: -40,-7 - node: cleanable: True color: '#FFFFFFFF' @@ -8158,8 +8126,8 @@ entities: color: '#A46106FF' id: MiniTileWhiteBox decals: - 2513: -41,-9 - 2514: -40,-9 + 2461: -41,-9 + 2462: -40,-9 - node: color: '#52B4E9FF' id: MiniTileWhiteCornerNe @@ -8169,10 +8137,10 @@ entities: color: '#A46106FF' id: MiniTileWhiteCornerNe decals: - 741: -32,-2 - 2502: -38,-10 - 2503: -32,-6 - 2504: -37,-2 + 735: -32,-2 + 2450: -38,-10 + 2451: -32,-6 + 2452: -37,-2 - node: color: '#EF8941FF' id: MiniTileWhiteCornerNe @@ -8187,9 +8155,9 @@ entities: color: '#A46106FF' id: MiniTileWhiteCornerNw decals: - 734: -35,-2 - 2507: -42,-2 - 2508: -46,-10 + 728: -35,-2 + 2455: -42,-2 + 2456: -46,-10 - node: color: '#D4D4D4FF' id: MiniTileWhiteCornerNw @@ -8209,8 +8177,8 @@ entities: color: '#A46106FF' id: MiniTileWhiteCornerSe decals: - 2505: -38,-14 - 2506: -32,-11 + 2453: -38,-14 + 2454: -32,-11 - node: color: '#EF8941FF' id: MiniTileWhiteCornerSe @@ -8226,9 +8194,9 @@ entities: color: '#A46106FF' id: MiniTileWhiteCornerSw decals: - 2509: -42,-8 - 2510: -36,-11 - 7413: -46,-14 + 2457: -42,-8 + 2458: -36,-11 + 7319: -46,-14 - node: color: '#52B4E996' id: MiniTileWhiteInnerNe @@ -8244,7 +8212,7 @@ entities: color: '#A46106FF' id: MiniTileWhiteInnerNe decals: - 2512: -37,-6 + 2460: -37,-6 - node: color: '#52B4E9FF' id: MiniTileWhiteInnerSe @@ -8259,7 +8227,7 @@ entities: color: '#A46106FF' id: MiniTileWhiteInnerSw decals: - 2511: -36,-8 + 2459: -36,-8 - node: color: '#52B4E9FF' id: MiniTileWhiteLineE @@ -8275,19 +8243,19 @@ entities: color: '#A46106FF' id: MiniTileWhiteLineE decals: - 735: -32,-3 - 736: -32,-4 - 2491: -37,-3 - 2492: -37,-4 - 2493: -37,-5 - 2494: -32,-7 - 2495: -32,-7 - 2496: -32,-8 - 2497: -32,-9 - 2498: -32,-10 - 2499: -38,-11 - 2500: -38,-12 - 2501: -38,-13 + 729: -32,-3 + 730: -32,-4 + 2439: -37,-3 + 2440: -37,-4 + 2441: -37,-5 + 2442: -32,-7 + 2443: -32,-7 + 2444: -32,-8 + 2445: -32,-9 + 2446: -32,-10 + 2447: -38,-11 + 2448: -38,-12 + 2449: -38,-13 - node: color: '#EF8941FF' id: MiniTileWhiteLineE @@ -8308,28 +8276,28 @@ entities: color: '#A46106FF' id: MiniTileWhiteLineN decals: - 739: -34,-2 - 740: -33,-2 - 2471: -45,-10 - 2472: -44,-10 - 2473: -43,-10 - 2474: -42,-10 - 2475: -42,-10 - 2476: -41,-10 - 2477: -40,-10 - 2478: -40,-10 - 2479: -40,-10 - 2480: -39,-10 - 2481: -36,-6 - 2482: -35,-6 - 2483: -35,-6 - 2484: -34,-6 - 2485: -33,-6 - 2486: -41,-2 - 2487: -40,-2 - 2488: -40,-2 - 2489: -39,-2 - 2490: -38,-2 + 733: -34,-2 + 734: -33,-2 + 2419: -45,-10 + 2420: -44,-10 + 2421: -43,-10 + 2422: -42,-10 + 2423: -42,-10 + 2424: -41,-10 + 2425: -40,-10 + 2426: -40,-10 + 2427: -40,-10 + 2428: -39,-10 + 2429: -36,-6 + 2430: -35,-6 + 2431: -35,-6 + 2432: -34,-6 + 2433: -33,-6 + 2434: -41,-2 + 2435: -40,-2 + 2436: -40,-2 + 2437: -39,-2 + 2438: -38,-2 - node: color: '#D4D4D4FF' id: MiniTileWhiteLineN @@ -8356,21 +8324,21 @@ entities: color: '#A46106FF' id: MiniTileWhiteLineS decals: - 2451: -41,-8 - 2452: -40,-8 - 2453: -39,-8 - 2454: -37,-8 - 2455: -38,-8 - 2456: -35,-11 - 2457: -34,-11 - 2458: -33,-11 - 2459: -39,-14 - 2460: -40,-14 - 2461: -41,-14 - 2462: -43,-14 - 2463: -42,-14 - 7414: -45,-14 - 7415: -44,-14 + 2399: -41,-8 + 2400: -40,-8 + 2401: -39,-8 + 2402: -37,-8 + 2403: -38,-8 + 2404: -35,-11 + 2405: -34,-11 + 2406: -33,-11 + 2407: -39,-14 + 2408: -40,-14 + 2409: -41,-14 + 2410: -43,-14 + 2411: -42,-14 + 7320: -45,-14 + 7321: -44,-14 - node: color: '#EF8941FF' id: MiniTileWhiteLineS @@ -8388,18 +8356,18 @@ entities: color: '#A46106FF' id: MiniTileWhiteLineW decals: - 737: -35,-4 - 738: -35,-3 - 2464: -42,-7 - 2465: -42,-6 - 2466: -42,-5 - 2467: -42,-4 - 2468: -42,-3 - 2469: -36,-9 - 2470: -36,-10 - 7416: -46,-13 - 7417: -46,-12 - 7418: -46,-11 + 731: -35,-4 + 732: -35,-3 + 2412: -42,-7 + 2413: -42,-6 + 2414: -42,-5 + 2415: -42,-4 + 2416: -42,-3 + 2417: -36,-9 + 2418: -36,-10 + 7322: -46,-13 + 7323: -46,-12 + 7324: -46,-11 - node: color: '#D4D4D4FF' id: MiniTileWhiteLineW @@ -8418,25 +8386,25 @@ entities: color: '#52B4E996' id: QuarterTileOverlayGreyscale decals: - 2910: 2,20 + 2858: 2,20 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale decals: - 2768: 9,17 + 2716: 9,17 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale decals: - 3499: -53,61 - 3503: -49,62 - 3504: -49,61 - 3505: -49,60 - 3506: -49,58 - 3507: -49,59 - 3508: -49,57 - 3515: -47,62 - 3516: -48,62 + 3447: -53,61 + 3451: -49,62 + 3452: -49,61 + 3453: -49,60 + 3454: -49,58 + 3455: -49,59 + 3456: -49,57 + 3463: -47,62 + 3464: -48,62 - node: color: '#EF8941FF' id: QuarterTileOverlayGreyscale @@ -8456,40 +8424,40 @@ entities: color: '#EFB34196' id: QuarterTileOverlayGreyscale decals: - 4345: -75,26 + 4293: -75,26 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 decals: - 2909: 4,28 + 2857: 4,28 - node: color: '#A46106FF' id: QuarterTileOverlayGreyscale180 decals: - 748: -41,0 - 749: -41,1 - 750: -41,2 - 751: -41,3 - 752: -40,3 - 753: -39,3 - 761: -33,0 - 762: -32,0 - 763: -32,1 - 764: -32,2 - 765: -32,3 + 742: -41,0 + 743: -41,1 + 744: -41,2 + 745: -41,3 + 746: -40,3 + 747: -39,3 + 755: -33,0 + 756: -32,0 + 757: -32,1 + 758: -32,2 + 759: -32,3 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale180 decals: - 3500: -51,64 - 3509: -47,57 - 3510: -47,58 - 3511: -47,59 - 3512: -47,60 - 3513: -47,61 - 3514: -47,62 - 3517: -48,57 - 3518: -49,57 + 3448: -51,64 + 3457: -47,57 + 3458: -47,58 + 3459: -47,59 + 3460: -47,60 + 3461: -47,61 + 3462: -47,62 + 3465: -48,57 + 3466: -49,57 - node: color: '#EF8941FF' id: QuarterTileOverlayGreyscale180 @@ -8512,46 +8480,46 @@ entities: color: '#EFB34196' id: QuarterTileOverlayGreyscale180 decals: - 4344: -74,33 - 4392: -80,24 + 4292: -74,33 + 4340: -80,24 - node: color: '#A46106FF' id: QuarterTileOverlayGreyscale270 decals: - 754: -34,0 - 755: -35,0 - 756: -35,1 - 757: -35,2 - 758: -35,3 - 759: -36,3 - 760: -37,3 - 766: -42,0 - 767: -42,1 - 768: -42,2 - 769: -42,3 + 748: -34,0 + 749: -35,0 + 750: -35,1 + 751: -35,2 + 752: -35,3 + 753: -36,3 + 754: -37,3 + 760: -42,0 + 761: -42,1 + 762: -42,2 + 763: -42,3 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 decals: - 3597: -64,52 + 3545: -64,52 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale270 decals: - 4337: -75,24 - 4339: -65,33 - 4385: -83,23 + 4285: -75,24 + 4287: -65,33 + 4333: -83,23 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 decals: - 2908: 4,31 + 2856: 4,31 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale90 decals: - 4341: -70,34 - 4393: -80,26 + 4289: -70,34 + 4341: -80,26 - node: color: '#FFFFFFFF' id: Remains @@ -8562,175 +8530,175 @@ entities: color: '#FFFFFFFF' id: Remains decals: - 2710: -3.964231,22.551708 + 2658: -3.964231,22.551708 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale decals: - 2893: 2,34 - 2894: 7,31 - 2895: 1,20 - 2896: 6,26 + 2841: 2,34 + 2842: 7,31 + 2843: 1,20 + 2844: 6,26 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale decals: - 2769: 6,17 - 2770: 9,20 + 2717: 6,17 + 2718: 9,20 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale decals: - 3410: -3,10 - 3501: -53,65 - 3592: -66,55 + 3358: -3,10 + 3449: -53,65 + 3540: -66,55 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale decals: - 4325: -77,26 - 4332: -75,35 - 4333: -72,23 - 4567: -62,33 + 4273: -77,26 + 4280: -75,35 + 4281: -72,23 + 4515: -62,33 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 2897: 10,22 - 2898: 12,28 - 2899: 4,19 - 2900: 5,28 + 2845: 10,22 + 2846: 12,28 + 2847: 4,19 + 2848: 5,28 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale180 decals: - 3411: 1,8 - 3502: -51,60 - 3593: -60,50 + 3359: 1,8 + 3450: -51,60 + 3541: -60,50 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale180 decals: - 4327: -64,30 - 4330: -74,19 - 4334: -64,19 - 4382: -79,24 - 4383: -80,22 - 4568: -60,31 + 4275: -64,30 + 4278: -74,19 + 4282: -64,19 + 4330: -79,24 + 4331: -80,22 + 4516: -60,31 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 decals: - 2905: 7,28 - 2906: 1,19 - 2907: 6,22 + 2853: 7,28 + 2854: 1,19 + 2855: 6,22 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale270 decals: - 3413: -3,8 - 3595: -66,52 - 3596: -64,50 + 3361: -3,8 + 3543: -66,52 + 3544: -64,50 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale270 decals: - 4326: -77,24 - 4328: -65,30 - 4329: -75,19 - 4336: -72,19 - 4384: -83,22 - 4569: -62,31 + 4274: -77,24 + 4276: -65,30 + 4277: -75,19 + 4284: -72,19 + 4332: -83,22 + 4517: -62,31 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2901: 5,31 - 2902: 12,31 - 2903: 4,34 - 2904: 10,26 + 2849: 5,31 + 2850: 12,31 + 2851: 4,34 + 2852: 10,26 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2771: 11,20 + 2719: 11,20 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale90 decals: - 3412: 1,10 - 3594: -60,55 + 3360: 1,10 + 3542: -60,55 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale90 decals: - 4335: -64,23 - 4338: -64,34 - 4342: -70,35 - 4380: -80,27 - 4381: -79,26 - 4570: -60,33 + 4283: -64,23 + 4286: -64,34 + 4290: -70,35 + 4328: -80,27 + 4329: -79,26 + 4518: -60,33 - node: color: '#601F95FF' id: Tunnel decals: - 7183: 11,50 + 7089: 11,50 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: - 2444: 12,43 - 2779: 7,20 - 2814: 1,40 + 2392: 12,43 + 2727: 7,20 + 2762: 1,40 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: - 2443: 9,43 - 2778: 6,20 - 4239: -79,31 + 2391: 9,43 + 2726: 6,20 + 4187: -79,31 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: - 2442: 12,42 - 2780: 7,19 - 2822: 11,35 - 4230: -77,34 + 2390: 12,42 + 2728: 7,19 + 2770: 11,35 + 4178: -77,34 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: - 2445: 9,42 - 2781: 6,19 - 2815: -1,36 - 2823: 7,35 - 6184: -23,54 + 2393: 9,42 + 2729: 6,19 + 2763: -1,36 + 2771: 7,35 + 6107: -23,54 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 2447: 9,40 - 4255: -86,23 + 2395: 9,40 + 4203: -86,23 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 2446: 11,40 - 4254: -81,23 + 2394: 11,40 + 4202: -81,23 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 4234: -84,34 - 4256: -86,27 + 4182: -84,34 + 4204: -86,27 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 4257: -81,27 - 6182: -20,54 - 6183: -23,57 + 4205: -81,27 + 6105: -20,54 + 6106: -23,57 - node: color: '#FFFFFFFF' id: WarnLineE @@ -8738,15 +8706,15 @@ entities: 4: -14,0 5: -14,1 6: -14,2 - 2819: 1,37 - 2829: 11,36 - 2830: 11,37 - 4231: -77,35 - 4232: -84,33 - 4233: -84,32 - 4240: -86,26 - 4241: -86,24 - 4242: -86,25 + 2767: 1,37 + 2777: 11,36 + 2778: 11,37 + 4179: -77,35 + 4180: -84,33 + 4181: -84,32 + 4188: -86,26 + 4189: -86,24 + 4190: -86,25 - node: color: '#FFFFFFFF' id: WarnLineN @@ -8754,111 +8722,133 @@ entities: 73: 1,0 74: 2,0 75: 0,0 - 2437: 11,42 - 2438: 10,42 - 2772: 6,14 - 2773: 7,14 - 2774: 8,14 - 2775: 9,14 - 2776: 10,14 - 2777: 11,14 - 2818: 0,36 - 2826: 8,35 - 2827: 9,35 - 2828: 10,35 - 4224: -83,34 - 4225: -82,34 - 4226: -80,34 - 4227: -81,34 - 4228: -79,34 - 4229: -78,34 - 4247: -85,27 - 4248: -83,27 - 4249: -82,27 - 4250: -84,27 - 6185: -22,54 - 6186: -21,54 + 2385: 11,42 + 2386: 10,42 + 2720: 6,14 + 2721: 7,14 + 2722: 8,14 + 2723: 9,14 + 2724: 10,14 + 2725: 11,14 + 2766: 0,36 + 2774: 8,35 + 2775: 9,35 + 2776: 10,35 + 4172: -83,34 + 4173: -82,34 + 4174: -80,34 + 4175: -81,34 + 4176: -79,34 + 4177: -78,34 + 4195: -85,27 + 4196: -83,27 + 4197: -82,27 + 4198: -84,27 + 6108: -22,54 + 6109: -21,54 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 2816: -1,37 - 2817: -1,39 - 2824: 7,36 - 2825: 7,37 - 4235: -79,30 - 4236: -79,29 - 4251: -81,24 - 4252: -81,25 - 4253: -81,26 - 6187: -23,55 - 6188: -23,56 + 2764: -1,37 + 2765: -1,39 + 2772: 7,36 + 2773: 7,37 + 4183: -79,30 + 4184: -79,29 + 4199: -81,24 + 4200: -81,25 + 4201: -81,26 + 6110: -23,55 + 6111: -23,56 - node: color: '#FFFFFFFF' id: WarnLineW decals: 71: 1,-1 72: 2,-1 - 2439: 10,40 - 2440: 10,43 - 2441: 11,43 - 2820: 0,40 - 4237: -78,31 - 4238: -77,31 - 4243: -84,23 - 4244: -83,23 - 4245: -82,23 - 4246: -85,23 + 2387: 10,40 + 2388: 10,43 + 2389: 11,43 + 2768: 0,40 + 4185: -78,31 + 4186: -77,31 + 4191: -84,23 + 4192: -83,23 + 4193: -82,23 + 4194: -85,23 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: - 5742: -35,38 + 5668: -35,38 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNe decals: - 5764: -8,58 + 5690: -8,58 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNw decals: - 6413: -34,38 + 6335: -34,38 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 5761: -8,61 - 5762: -8,60 - 5763: -8,59 + 5687: -8,61 + 5688: -8,60 + 5689: -8,59 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 5743: -35,37 - 5744: -35,35 - 5745: -35,36 + 5669: -35,37 + 5670: -35,35 + 5671: -35,36 - node: cleanable: True color: '#FFFFFFFF' id: body decals: - 2715: 2.8074994,42.80365 + 2663: 2.8074994,42.80365 + - node: + color: '#790906FF' + id: cyka + decals: + 7487: 19,38 + 7488: -25,-14 + - node: + color: '#B02E26FF' + id: cyka + decals: + 7486: 19,38 - node: cleanable: True color: '#D381C996' id: safe decals: 76: 19,-8 + - node: + color: '#DE3A3A96' + id: shop + decals: + 7491: -27,6 + - node: + color: '#FFFFFFFF' + id: shop + decals: + 7489: -12.9947195,8.064248 + 7490: -13.0103445,16.085691 - node: cleanable: True color: '#A40000FF' id: splatter decals: - 2711: 1.6512494,42.225525 - 2712: 3.7762494,43.506775 - 2713: 2.3387494,43.413025 - 2714: 3.9168744,42.038025 + 2659: 1.6512494,42.225525 + 2660: 3.7762494,43.506775 + 2661: 2.3387494,43.413025 + 2662: 3.9168744,42.038025 type: DecalGrid - version: 2 data: @@ -9492,9 +9482,11 @@ entities: -11,-4: 0: 62448 2: 3072 + 3: 15 -10,-4: 0: 65264 2: 256 + 3: 3 -10,-3: 0: 65535 -10,-2: @@ -9585,7 +9577,8 @@ entities: 0: 65535 -14,0: 0: 61951 - 2: 3584 + 2: 1536 + 1: 2048 -14,1: 0: 65535 -14,2: @@ -9769,6 +9762,7 @@ entities: 0: 65535 1,13: 0: 37375 + 3: 2048 2,12: 0: 63487 2: 2048 @@ -10267,7 +10261,7 @@ entities: 3: 41185 -13,-4: 0: 61422 - 3: 17 + 3: 4113 -19,-4: 0: 65520 3: 15 @@ -10391,7 +10385,7 @@ entities: 3: 53488 -14,-4: 0: 12032 - 3: 136 + 3: 32904 -20,-4: 0: 51200 3: 13440 @@ -10456,6 +10450,10 @@ entities: 3: 17909 -14,-5: 3: 34816 + -11,-5: + 3: 61440 + -10,-5: + 3: 4096 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -10618,22 +10616,22 @@ entities: - chunks: 0,0: ind: 0,0 - tiles: XQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAFdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: XgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAFeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF0AAABdAAAAXgAAAAAAAABeAAAAXgAAAF4AAABOAAAAAAAAAF0AAABeAAAAXgAAAF0AAABdAAAAXgAAAF0AAAAAAAAAXgAAAE4AAABeAAAATgAAAE4AAABdAAAAXgAAAF4AAABeAAAATgAAAF0AAABEAAACTgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAF4AAABeAAAAWwAAA14AAABbAAADXgAAAFEAAANRAAADXgAAAF4AAABRAAABUQAAA1EAAANRAAADXgAAAF4AAABOAAAAXgAAAF4AAABbAAAAXgAAAF4AAABRAAAAXgAAAFEAAABeAAAAUQAAA1EAAANRAAACUQAAAVEAAANeAAAATgAAAF4AAABbAAACXgAAAFsAAAJeAAAAUQAAA1EAAAJRAAACUQAAA1EAAABRAAACUQAAAlEAAABeAAAARAAAAF4AAABeAAAAXgAAAF4AAABbAAACXgAAAFEAAAFRAAADUQAAAVEAAABRAAACUQAAAVEAAAJRAAABXgAAAF0AAABeAAAAXgAAAF4AAABbAAAAXgAAAF4AAABRAAABXgAAAFEAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAUQAAAV4AAABRAAADUQAAA1EAAANRAAADUQAAAFEAAAFRAAABUQAAAlEAAANRAAAAUQAAAFEAAANRAAADXgAAAF4AAABeAAAAUQAAAVEAAAFRAAACUQAAAFEAAAFRAAABXQAAAFEAAAJRAAABUQAAAlEAAANRAAAAXQAAAEQAAABRAAAAXgAAAFEAAANRAAAAUQAAAVEAAABRAAABXQAAAAAAAABdAAAAUQAAAl4AAABeAAAAXgAAAF4AAABdAAAAUQAAAFEAAANRAAABUQAAAFEAAANRAAABUQAAAVEAAABdAAAAUQAAAFEAAANEAAABRAAAAUQAAAJEAAAARAAAAQ== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF4AAABeAAAAXwAAAAAAAABfAAAAXwAAAF8AAABPAAAAAAAAAF4AAABfAAAAXwAAAF4AAABeAAAAXwAAAF4AAAAAAAAAXwAAAE8AAABfAAAATwAAAE8AAABeAAAAXwAAAF8AAABfAAAATwAAAF4AAABFAAACTwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAF8AAABfAAAAXAAAA18AAABcAAADXwAAAFIAAANSAAADXwAAAF8AAABSAAABUgAAA1IAAANSAAADXwAAAF8AAABPAAAAXwAAAF8AAABcAAAAXwAAAF8AAABSAAAAXwAAAFIAAABfAAAAUgAAA1IAAANSAAACUgAAAVIAAANfAAAATwAAAF8AAABcAAACXwAAAFwAAAJfAAAAUgAAA1IAAAJSAAACUgAAA1IAAABSAAACUgAAAlIAAABfAAAARQAAAF8AAABfAAAAXwAAAF8AAABcAAACXwAAAFIAAAFSAAADUgAAAVIAAABSAAACUgAAAVIAAAJSAAABXwAAAF4AAABfAAAAXwAAAF8AAABcAAAAXwAAAF8AAABSAAABXwAAAFIAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAUgAAAV8AAABSAAADUgAAA1IAAANSAAADUgAAAFIAAAFSAAABUgAAAlIAAANSAAAAUgAAAFIAAANSAAADXwAAAF8AAABfAAAAUgAAAVIAAAFSAAACUgAAAFIAAAFSAAABXgAAAFIAAAJSAAABUgAAAlIAAANSAAAAXgAAAEUAAABSAAAAXwAAAFIAAANSAAAAUgAAAVIAAABSAAABXgAAAAAAAABeAAAAUgAAAl8AAABfAAAAXwAAAF8AAABeAAAAUgAAAFIAAANSAAABUgAAAFIAAANSAAABUgAAAVIAAABeAAAAUgAAAFIAAANFAAABRQAAAUUAAAJFAAAARQAAAQ== -1,0: ind: -1,0 - tiles: UQAAA14AAABRAAAAUQAAAVEAAAFRAAAAUQAAAVEAAAJRAAADUQAAAlEAAAJEAAABRAAAAl4AAABEAAADXgAAAF4AAABeAAAAUQAAAlEAAANRAAABUQAAA1EAAABRAAABUQAAAVEAAANRAAACXgAAAF4AAABEAAABXgAAAF0AAABOAAAAXgAAAFEAAABRAAADXgAAAFEAAANRAAADXgAAAFEAAANRAAAAUQAAAl4AAABeAAAARAAAAV4AAAAAAAAAXgAAAF4AAABRAAACUQAAAl4AAABRAAAAUQAAAF4AAABRAAABUQAAAVEAAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUQAAAlEAAAFRAAACXgAAAF4AAABeAAAAXgAAAF0AAABeAAAATgAAAE4AAABOAAAAAAAAAF4AAABeAAAAXgAAAFEAAAFRAAACUQAAAl4AAABeAAAATgAAAF4AAABEAAAAXgAAAF0AAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF4AAABeAAAAXQAAAE4AAABOAAAAXgAAAF0AAABOAAAAXgAAAE4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXQAAAE4AAABeAAAAAAAAAF0AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: UgAAA18AAABSAAAAUgAAAVIAAAFSAAAAUgAAAVIAAAJSAAADUgAAAlIAAAJFAAABRQAAAl8AAABFAAADXwAAAF8AAABfAAAAUgAAAlIAAANSAAABUgAAA1IAAABSAAABUgAAAVIAAANSAAACXwAAAF8AAABFAAABXwAAAF4AAABPAAAAXwAAAFIAAABSAAADXwAAAFIAAANSAAADXwAAAFIAAANSAAAAUgAAAl8AAABfAAAARQAAAV8AAAAAAAAAXwAAAF8AAABSAAACUgAAAl8AAABSAAAAUgAAAF8AAABSAAABUgAAAVIAAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAAlIAAAFSAAACXwAAAF8AAABfAAAAXwAAAF4AAABfAAAATwAAAE8AAABPAAAAAAAAAF8AAABfAAAAXwAAAFIAAAFSAAACUgAAAl8AAABfAAAATwAAAF8AAABFAAAAXwAAAF4AAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF8AAABfAAAAXgAAAE8AAABPAAAAXwAAAF4AAABPAAAAXwAAAE8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAABfAAAAXgAAAE8AAABfAAAAAAAAAF4AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -2,-1: ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAE4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAE4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAATgAAAF4AAABeAAAAUQAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAF4AAABeAAAAUQAAAlEAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAFEAAANeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABRAAACXgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXwAAAE8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAE8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAATwAAAF8AAABfAAAAUgAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXwAAAF8AAABfAAAAUgAAAlIAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAFIAAANfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABSAAACXwAAAA== -2,0: ind: -2,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAUQAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABdAAAAXQAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAUgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABeAAAAXgAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - type: Broadphase - angularDamping: 0.05 @@ -11607,6 +11605,11 @@ entities: - pos: -60.5,18.5 parent: 1 type: Transform + - uid: 15906 + components: + - pos: 5.5,-18.5 + parent: 1 + type: Transform - proto: Airlock entities: - uid: 1600 @@ -11917,11 +11920,6 @@ entities: - pos: 22.5,7.5 parent: 1 type: Transform - - uid: 2695 - components: - - pos: -7.5,17.5 - parent: 1 - type: Transform - uid: 3933 components: - pos: -22.5,-4.5 @@ -11975,6 +11973,11 @@ entities: pos: -9.5,6.5 parent: 5016 type: Transform + - uid: 15044 + components: + - pos: -8.5,7.5 + parent: 1 + type: Transform - proto: AirlockExternal entities: - uid: 184 @@ -12334,6 +12337,11 @@ entities: - pos: -22.5,30.5 parent: 1 type: Transform + - uid: 11909 + components: + - pos: -59.5,12.5 + parent: 1 + type: Transform - uid: 15377 components: - rot: 3.141592653589793 rad @@ -12459,11 +12467,6 @@ entities: - pos: 10.5,49.5 parent: 1 type: Transform - - uid: 6077 - components: - - pos: 16.5,38.5 - parent: 1 - type: Transform - uid: 6078 components: - pos: 3.5,48.5 @@ -12474,11 +12477,6 @@ entities: - pos: -0.5,48.5 parent: 1 type: Transform - - uid: 7095 - components: - - pos: -30.5,53.5 - parent: 1 - type: Transform - uid: 7586 components: - pos: -26.5,41.5 @@ -12555,6 +12553,11 @@ entities: type: Transform - proto: AirlockMaintCommandLocked entities: + - uid: 6313 + components: + - pos: 16.5,37.5 + parent: 1 + type: Transform - uid: 6397 components: - pos: -5.5,55.5 @@ -12565,8 +12568,19 @@ entities: - pos: -9.5,47.5 parent: 1 type: Transform + - uid: 11896 + components: + - pos: 16.5,38.5 + parent: 1 + type: Transform - proto: AirlockMaintEngiLocked entities: + - uid: 612 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,18.5 + parent: 1 + type: Transform - uid: 13621 components: - pos: -63.5,35.5 @@ -12914,6 +12928,12 @@ entities: - pos: -4.5,-3.5 parent: 5016 type: Transform + - uid: 10538 + components: + - rot: 3.141592653589793 rad + pos: -14.5,15.5 + parent: 1 + type: Transform - uid: 15604 components: - pos: -14.5,-0.5 @@ -13021,7 +13041,7 @@ entities: - pos: -10.5,-12.5 parent: 1 type: Transform - - uid: 614 + - uid: 532 components: - pos: 19.5,-6.5 parent: 1 @@ -13049,11 +13069,6 @@ entities: - pos: -1.5,2.5 parent: 5016 type: Transform - - uid: 5319 - components: - - pos: -47.5,7.5 - parent: 1 - type: Transform - uid: 5477 components: - pos: -50.5,69.5 @@ -13139,11 +13154,24 @@ entities: - pos: -58.5,57.5 parent: 1 type: Transform + - uid: 8601 + components: + - pos: -16.5,7.5 + parent: 1 + type: Transform - uid: 9158 components: - pos: -67.5,47.5 parent: 1 type: Transform +- proto: AirlockServiceGlassLocked + entities: + - uid: 8236 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,16.5 + parent: 1 + type: Transform - proto: AirlockServiceLocked entities: - uid: 3394 @@ -13214,6 +13242,20 @@ entities: - pos: 15.5,3.5 parent: 1 type: Transform +- proto: AlwaysPoweredLightLED + entities: + - uid: 4544 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,9.5 + parent: 1 + type: Transform + - uid: 5633 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,9.5 + parent: 1 + type: Transform - proto: AMEController entities: - uid: 10656 @@ -13228,16 +13270,6 @@ entities: - pos: -53.477688,27.48855 parent: 1 type: Transform - - uid: 9978 - components: - - pos: -76.5754,22.508444 - parent: 1 - type: Transform - - uid: 9979 - components: - - pos: -76.3254,22.508444 - parent: 1 - type: Transform - proto: AnomalyScanner entities: - uid: 313 @@ -13347,11 +13379,6 @@ entities: pos: -46.5,27.5 parent: 1 type: Transform - - uid: 4694 - components: - - pos: -48.5,11.5 - parent: 1 - type: Transform - uid: 5103 components: - rot: -1.5707963267948966 rad @@ -13364,6 +13391,12 @@ entities: pos: 16.5,49.5 parent: 1 type: Transform + - uid: 6259 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,9.5 + parent: 1 + type: Transform - uid: 6528 components: - pos: -4.5,57.5 @@ -14493,11 +14526,26 @@ entities: - pos: 12.5,-5.5 parent: 1 type: Transform + - uid: 1498 + components: + - pos: 13.5,39.5 + parent: 1 + type: Transform - uid: 2037 components: - pos: 18.5,32.5 parent: 1 type: Transform + - uid: 2731 + components: + - pos: -28.5,53.5 + parent: 1 + type: Transform + - uid: 2794 + components: + - pos: 15.5,39.5 + parent: 1 + type: Transform - uid: 5451 components: - pos: -21.5,-6.5 @@ -14563,41 +14611,6 @@ entities: - pos: -31.5,52.5 parent: 1 type: Transform - - uid: 10417 - components: - - pos: 17.5,38.5 - parent: 1 - type: Transform - - uid: 10421 - components: - - pos: 23.5,37.5 - parent: 1 - type: Transform - - uid: 10422 - components: - - pos: 19.5,39.5 - parent: 1 - type: Transform - - uid: 10423 - components: - - pos: 22.5,39.5 - parent: 1 - type: Transform - - uid: 10424 - components: - - pos: 21.5,41.5 - parent: 1 - type: Transform - - uid: 10425 - components: - - pos: 23.5,42.5 - parent: 1 - type: Transform - - uid: 10427 - components: - - pos: 18.5,42.5 - parent: 1 - type: Transform - uid: 14839 components: - pos: 8.5,-14.5 @@ -14678,6 +14691,36 @@ entities: - pos: -0.5,0.5 parent: 5016 type: Transform + - uid: 15914 + components: + - pos: 14.5,39.5 + parent: 1 + type: Transform + - uid: 15917 + components: + - pos: 13.5,38.5 + parent: 1 + type: Transform + - uid: 15918 + components: + - pos: 17.5,35.5 + parent: 1 + type: Transform + - uid: 15919 + components: + - pos: 17.5,34.5 + parent: 1 + type: Transform + - uid: 15924 + components: + - pos: 24.5,39.5 + parent: 1 + type: Transform + - uid: 15925 + components: + - pos: 24.5,40.5 + parent: 1 + type: Transform - proto: BarSign entities: - uid: 5279 @@ -14690,23 +14733,16 @@ entities: - pos: -33.5,34.5 parent: 1 type: Transform -- proto: Beaker +- proto: BaseComputer entities: - - uid: 1588 + - uid: 5338 components: - - pos: 19.002142,-11.284756 + - rot: 3.141592653589793 rad + pos: 22.5,42.5 parent: 1 type: Transform - - solutions: - beaker: - temperature: 293.15 - canMix: True - canReact: True - maxVol: 50 - reagents: - - Quantity: 30 - ReagentId: Hyronalin - type: SolutionContainerManager +- proto: Beaker + entities: - uid: 1959 components: - pos: -0.3099949,22.624739 @@ -14739,6 +14775,8 @@ entities: type: Transform - nextAttack: 1200.0234652 type: MeleeWeapon + - nextSound: 1200.2234652 + type: EmitSoundOnCollide - uid: 15611 components: - pos: -7.3582764,-8.241852 @@ -14746,6 +14784,8 @@ entities: type: Transform - nextAttack: 1200.398467 type: MeleeWeapon + - nextSound: 1200.598467 + type: EmitSoundOnCollide - proto: Bed entities: - uid: 616 @@ -14823,14 +14863,19 @@ entities: - pos: -31.5,8.5 parent: 1 type: Transform - - uid: 5315 + - uid: 5597 components: - - pos: -50.5,12.5 + - pos: -54.5,10.5 parent: 1 type: Transform - - uid: 5316 + - uid: 6254 components: - - pos: -47.5,12.5 + - pos: -49.5,12.5 + parent: 1 + type: Transform + - uid: 6256 + components: + - pos: -54.5,8.5 parent: 1 type: Transform - uid: 6825 @@ -14853,6 +14898,11 @@ entities: - pos: -5.5,58.5 parent: 1 type: Transform + - uid: 11895 + components: + - pos: -46.5,12.5 + parent: 1 + type: Transform - uid: 14340 components: - pos: -77.5,56.5 @@ -14885,6 +14935,16 @@ entities: - pos: 17.5,23.5 parent: 1 type: Transform +- proto: BedsheetCosmos + entities: + - uid: 5345 + components: + - rot: 3.141592653589793 rad + pos: -49.5,12.5 + parent: 1 + type: Transform + - nextSound: 1241.8358936 + type: EmitSoundOnCollide - proto: BedsheetCult entities: - uid: 1830 @@ -14922,6 +14982,26 @@ entities: pos: 10.5,11.5 parent: 1 type: Transform +- proto: BedsheetGrey + entities: + - uid: 6060 + components: + - rot: 3.141592653589793 rad + pos: -54.5,10.5 + parent: 1 + type: Transform + - nextSound: 1278.5228536 + type: EmitSoundOnCollide +- proto: BedsheetHOP + entities: + - uid: 5320 + components: + - rot: 3.141592653589793 rad + pos: -46.5,12.5 + parent: 1 + type: Transform + - nextSound: 1246.7791567 + type: EmitSoundOnCollide - proto: BedsheetMedical entities: - uid: 2062 @@ -14952,11 +15032,15 @@ entities: - pos: -12.5,3.5 parent: 5016 type: Transform + - nextSound: 654.9018548 + type: EmitSoundOnCollide - uid: 11881 components: - pos: -10.5,3.5 parent: 5016 type: Transform + - nextSound: 655.3048561 + type: EmitSoundOnCollide - proto: BedsheetOrange entities: - uid: 1910 @@ -14974,18 +15058,6 @@ entities: - pos: -50.5,49.5 parent: 1 type: Transform - - uid: 5317 - components: - - rot: 3.141592653589793 rad - pos: -47.5,12.5 - parent: 1 - type: Transform - - uid: 5318 - components: - - rot: 3.141592653589793 rad - pos: -50.5,12.5 - parent: 1 - type: Transform - uid: 5555 components: - rot: 3.141592653589793 rad @@ -15005,6 +15077,15 @@ entities: - pos: 17.5,48.5 parent: 1 type: Transform +- proto: BedsheetRed + entities: + - uid: 6057 + components: + - pos: -54.5,8.5 + parent: 1 + type: Transform + - nextSound: 1391.2311263 + type: EmitSoundOnCollide - proto: BedsheetSpawner entities: - uid: 624 @@ -15057,6 +15138,8 @@ entities: - pos: -16.47583,0.5916748 parent: 5016 type: Transform + - nextSound: 1266.0015059 + type: EmitSoundOnCollide - proto: BlastDoor entities: - uid: 42 @@ -15860,11 +15943,15 @@ entities: - pos: -9.648682,3.6204834 parent: 5016 type: Transform + - nextSound: 1296.996229 + type: EmitSoundOnCollide - uid: 15627 components: - pos: -9.320557,3.6048584 parent: 5016 type: Transform + - nextSound: 1298.4402583 + type: EmitSoundOnCollide - proto: Blunt entities: - uid: 14943 @@ -16020,11 +16107,6 @@ entities: pos: -30.5,36.5 parent: 1 type: Transform - - uid: 10428 - components: - - pos: 18.5,43.5 - parent: 1 - type: Transform - proto: BoxBeaker entities: - uid: 261 @@ -16044,6 +16126,8 @@ entities: - pos: 4.42369,38.89373 parent: 1 type: Transform + - nextSound: 277.0297489 + type: EmitSoundOnCollide - proto: BoxCardboard entities: - uid: 15368 @@ -16109,6 +16193,8 @@ entities: - pos: -3.3766222,0.6332265 parent: 1 type: Transform + - nextSound: 733.584122 + type: EmitSoundOnCollide - uid: 7554 components: - pos: -19.563011,46.957428 @@ -16201,11 +16287,15 @@ entities: - pos: -70.32392,16.415482 parent: 1 type: Transform + - nextSound: 1107.1485042 + type: EmitSoundOnCollide - uid: 15796 components: - pos: -70.60517,16.399857 parent: 1 type: Transform + - nextSound: 1107.6005132 + type: EmitSoundOnCollide - proto: BoxHandcuff entities: - uid: 7993 @@ -16258,7 +16348,7 @@ entities: type: Transform - uid: 620 components: - - pos: 20.562792,-8.338264 + - pos: 20.242428,-8.30875 parent: 1 type: Transform - proto: BoxShotgunFlare @@ -16289,13 +16379,6 @@ entities: - pos: -63.419567,51.34159 parent: 1 type: Transform -- proto: BriefcaseBrownFilled - entities: - - uid: 10458 - components: - - pos: 22.467861,37.46216 - parent: 1 - type: Transform - proto: BrigTimer entities: - uid: 4985 @@ -16360,11 +16443,15 @@ entities: - pos: -7.623596,4.7508545 parent: 5016 type: Transform + - nextSound: 1135.5789591 + type: EmitSoundOnCollide - uid: 15601 components: - pos: -7.389221,4.6102295 parent: 5016 type: Transform + - nextSound: 1136.0069371 + type: EmitSoundOnCollide - proto: Bucket entities: - uid: 6946 @@ -17043,6 +17130,60 @@ entities: type: Transform - fixtures: {} type: Fixtures + - uid: 1418 + components: + - pos: -24.5,-12.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 1422 + components: + - pos: 24.5,37.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 1423 + components: + - pos: 21.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 1425 + components: + - pos: 24.5,38.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 1439 + components: + - pos: 20.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 1440 + components: + - pos: 24.5,39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures - uid: 1516 components: - pos: -13.5,-2.5 @@ -18772,6 +18913,15 @@ entities: type: Transform - fixtures: {} type: Fixtures + - uid: 2399 + components: + - pos: 16.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures - uid: 2519 components: - pos: 22.5,10.5 @@ -19974,6 +20124,13 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures + - uid: 2793 + components: + - pos: -15.5,8.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures - uid: 2853 components: - pos: -13.5,28.5 @@ -20805,6 +20962,24 @@ entities: type: Transform - fixtures: {} type: Fixtures + - uid: 3479 + components: + - pos: 17.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 3485 + components: + - pos: 21.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures - uid: 3531 components: - pos: -29.5,29.5 @@ -21706,27 +21881,6 @@ entities: type: Transform - fixtures: {} type: Fixtures - - uid: 3903 - components: - - pos: -24.5,-10.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 3904 - components: - - pos: -24.5,-11.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 3905 - components: - - pos: -24.5,-12.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - uid: 4098 components: - pos: -21.5,-6.5 @@ -21862,18 +22016,9 @@ entities: type: Transform - fixtures: {} type: Fixtures - - uid: 4431 - components: - - pos: -48.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4433 + - uid: 4434 components: - - pos: -47.5,8.5 + - pos: -50.5,7.5 parent: 1 type: Transform - fixtures: {} @@ -22358,6 +22503,48 @@ entities: type: Transform - fixtures: {} type: Fixtures + - uid: 4543 + components: + - pos: -50.5,8.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 4547 + components: + - pos: -47.5,11.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 4548 + components: + - pos: -50.5,11.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 4593 + components: + - pos: 21.5,37.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 4599 + components: + - pos: -50.5,9.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 4601 + components: + - pos: -49.5,9.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures - uid: 4608 components: - pos: -57.5,-8.5 @@ -22593,8 +22780,6 @@ entities: - pos: -33.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 4644 @@ -22951,30 +23136,57 @@ entities: type: Transform - fixtures: {} type: Fixtures - - uid: 4705 + - uid: 4700 + components: + - pos: -45.5,9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 4701 components: - - pos: -48.5,10.5 + - pos: -46.5,9.5 parent: 1 type: Transform - fixtures: {} type: Fixtures - - uid: 4706 + - uid: 4702 components: - pos: -47.5,9.5 parent: 1 type: Transform - fixtures: {} type: Fixtures + - uid: 4704 + components: + - pos: -48.5,9.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 4713 + components: + - pos: 20.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures - uid: 4714 components: - - pos: -47.5,7.5 + - pos: 20.5,43.5 parent: 1 type: Transform + - enabled: True + type: AmbientSound - fixtures: {} type: Fixtures - uid: 4715 components: - - pos: -47.5,6.5 + - pos: 20.5,42.5 parent: 1 type: Transform - fixtures: {} @@ -23067,79 +23279,20 @@ entities: type: Fixtures - uid: 4728 components: - - pos: -48.5,9.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 4729 - components: - - pos: -49.5,9.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 4730 - components: - - pos: -50.5,9.5 + - pos: 20.5,41.5 parent: 1 type: Transform + - enabled: True + type: AmbientSound - fixtures: {} type: Fixtures - uid: 4731 components: - - pos: -51.5,9.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 4732 - components: - - pos: -52.5,9.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 4733 - components: - - pos: -53.5,9.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 4734 - components: - - pos: -50.5,10.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 4735 - components: - - pos: -50.5,11.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 4736 - components: - - pos: -46.5,10.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 4737 - components: - - pos: -46.5,9.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 4738 - components: - - pos: -46.5,11.5 + - pos: 21.5,38.5 parent: 1 type: Transform + - enabled: True + type: AmbientSound - fixtures: {} type: Fixtures - uid: 4742 @@ -23669,6 +23822,15 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures + - uid: 5195 + components: + - pos: 16.5,38.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures - uid: 5205 components: - pos: -50.5,26.5 @@ -23690,6 +23852,51 @@ entities: type: Transform - fixtures: {} type: Fixtures + - uid: 5311 + components: + - pos: 16.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 5312 + components: + - pos: 19.5,39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 5313 + components: + - pos: 16.5,39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 5314 + components: + - pos: 16.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 5322 + components: + - pos: 24.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures - uid: 5378 components: - pos: -35.5,-6.5 @@ -23733,6 +23940,13 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures + - uid: 5634 + components: + - pos: -54.5,9.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures - uid: 5661 components: - pos: -16.5,23.5 @@ -24162,144 +24376,39 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 6253 - components: - - pos: 15.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6254 - components: - - pos: 16.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6255 - components: - - pos: 17.5,38.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 6256 - components: - - pos: 18.5,38.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 6257 - components: - - pos: 19.5,38.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - uid: 6258 components: - - pos: 20.5,38.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 6259 - components: - - pos: 21.5,38.5 + - pos: -52.5,9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 6260 components: - - pos: 22.5,38.5 + - pos: -50.5,10.5 parent: 1 type: Transform - fixtures: {} type: Fixtures - uid: 6261 components: - - pos: 22.5,39.5 + - pos: -47.5,10.5 parent: 1 type: Transform - fixtures: {} type: Fixtures - uid: 6262 components: - - pos: 22.5,40.5 + - pos: -53.5,9.5 parent: 1 type: Transform - fixtures: {} type: Fixtures - uid: 6263 components: - - pos: 22.5,41.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 6264 - components: - - pos: 22.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6265 - components: - - pos: 18.5,39.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 6266 - components: - - pos: 18.5,40.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 6267 - components: - - pos: 18.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6268 - components: - - pos: 18.5,42.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 6269 - components: - - pos: 15.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6270 - components: - - pos: 15.5,36.5 + - pos: -51.5,9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 6271 @@ -24311,15 +24420,6 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 6272 - components: - - pos: 16.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6273 components: - pos: 17.5,35.5 @@ -24338,13 +24438,6 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 6275 - components: - - pos: 19.5,35.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - uid: 6276 components: - pos: 20.5,35.5 @@ -24354,16 +24447,9 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 6277 - components: - - pos: 21.5,35.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - uid: 6278 components: - - pos: 22.5,35.5 + - pos: 23.5,36.5 parent: 1 type: Transform - enabled: True @@ -24567,6 +24653,15 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures + - uid: 6315 + components: + - pos: 20.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures - uid: 6562 components: - pos: -4.5,57.5 @@ -26671,6 +26766,15 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures + - uid: 9020 + components: + - pos: 19.5,39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures - uid: 9346 components: - pos: -57.5,45.5 @@ -27936,6 +28040,22 @@ entities: type: Transform - fixtures: {} type: Fixtures + - uid: 10058 + components: + - pos: -15.5,14.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 10071 + components: + - pos: 21.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures - uid: 10155 components: - pos: -51.5,44.5 @@ -27996,6 +28116,114 @@ entities: type: Transform - fixtures: {} type: Fixtures + - uid: 10410 + components: + - pos: 23.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 10413 + components: + - pos: 24.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 10414 + components: + - pos: 24.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 10415 + components: + - pos: 17.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 10424 + components: + - pos: 18.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 10425 + components: + - pos: 19.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 10429 + components: + - pos: 22.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 10431 + components: + - pos: 16.5,37.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 10432 + components: + - pos: 19.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 10433 + components: + - pos: 24.5,43.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 10434 + components: + - pos: 24.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 10435 + components: + - pos: 24.5,42.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures - uid: 10740 components: - pos: -11.5,-1.5 @@ -29922,6 +30150,24 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures + - uid: 11903 + components: + - pos: 22.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 11917 + components: + - pos: 18.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures - uid: 12039 components: - pos: -78.5,33.5 @@ -30963,6 +31209,179 @@ entities: type: Transform - fixtures: {} type: Fixtures + - uid: 15845 + components: + - pos: 19.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 15870 + components: + - pos: 12.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 15871 + components: + - pos: 11.5,51.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 15872 + components: + - pos: 10.5,51.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 15873 + components: + - pos: 10.5,52.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 15874 + components: + - pos: 10.5,53.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 15875 + components: + - pos: 9.5,53.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 15876 + components: + - pos: 8.5,53.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 15877 + components: + - pos: 8.5,54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 15878 + components: + - pos: 7.5,54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 15890 + components: + - pos: -24.5,-10.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 15891 + components: + - pos: -24.5,-11.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 15951 + components: + - pos: -51.5,31.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 15952 + components: + - pos: -51.5,30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 15953 + components: + - pos: -52.5,30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 15954 + components: + - pos: -53.5,30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 15955 + components: + - pos: -50.5,28.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 15956 + components: + - pos: -50.5,29.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 15957 + components: + - pos: -50.5,30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 15987 + components: + - pos: -8.5,8.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 15988 + components: + - pos: -17.5,9.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures - proto: CableApcStack entities: - uid: 2887 @@ -30985,6 +31404,13 @@ entities: - pos: -4.5217714,-18.557777 parent: 1 type: Transform + - uid: 15990 + components: + - pos: -7.4238524,8.228333 + parent: 1 + type: Transform + - nextSound: 2844.0972348 + type: EmitSoundOnCollide - proto: CableApcStack1 entities: - uid: 13667 @@ -32403,6 +32829,15 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures + - uid: 2401 + components: + - pos: -22.5,61.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures - uid: 2589 components: - pos: 28.5,23.5 @@ -32917,6 +33352,24 @@ entities: type: Transform - fixtures: {} type: Fixtures + - uid: 3477 + components: + - pos: -22.5,62.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 3478 + components: + - pos: -22.5,60.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures - uid: 3907 components: - pos: -13.5,5.5 @@ -33673,8 +34126,6 @@ entities: - pos: -33.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 4049 @@ -33738,8 +34189,6 @@ entities: - pos: -24.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 4058 @@ -34201,6 +34650,24 @@ entities: type: Transform - fixtures: {} type: Fixtures + - uid: 4711 + components: + - pos: 15.5,37.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 4735 + components: + - pos: -9.5,69.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures - uid: 5181 components: - pos: -60.5,7.5 @@ -34219,27 +34686,36 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 5502 + - uid: 5340 components: - - pos: -16.5,17.5 + - pos: -10.5,70.5 parent: 1 type: Transform - enabled: True type: AmbientSound - fixtures: {} type: Fixtures - - uid: 5504 + - uid: 5341 components: - - pos: -15.5,17.5 + - pos: -10.5,69.5 parent: 1 type: Transform - enabled: True type: AmbientSound - fixtures: {} type: Fixtures - - uid: 5505 + - uid: 5502 + components: + - pos: -16.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 5504 components: - - pos: -15.5,16.5 + - pos: -15.5,17.5 parent: 1 type: Transform - enabled: True @@ -34883,24 +35359,6 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 6153 - components: - - pos: 15.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6154 - components: - - pos: 15.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6155 components: - pos: 15.5,35.5 @@ -35230,6 +35688,56 @@ entities: type: Transform - fixtures: {} type: Fixtures + - uid: 6265 + components: + - pos: 15.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 6275 + components: + - pos: -17.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 6277 + components: + - pos: -16.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 6320 + components: + - pos: -20.5,64.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 6323 + components: + - pos: -23.5,68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 6526 + components: + - pos: -18.5,64.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures - uid: 6529 components: - pos: -16.5,52.5 @@ -35718,6 +36226,15 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures + - uid: 7377 + components: + - pos: -8.5,65.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures - uid: 7587 components: - pos: -19.5,51.5 @@ -36957,6 +37474,94 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures + - uid: 9022 + components: + - pos: -25.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 9025 + components: + - pos: -25.5,62.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 9027 + components: + - pos: -23.5,69.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 9055 + components: + - pos: -19.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 9058 + components: + - pos: -22.5,69.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 9061 + components: + - pos: -17.5,64.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 9073 + components: + - pos: -18.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 9086 + components: + - pos: -25.5,64.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 9088 + components: + - pos: -22.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 9090 + components: + - pos: -24.5,68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures - uid: 9201 components: - pos: -64.5,36.5 @@ -37026,6 +37631,40 @@ entities: type: Transform - fixtures: {} type: Fixtures + - uid: 9906 + components: + - pos: -21.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 9914 + components: + - pos: -21.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 9977 + components: + - pos: -22.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 9978 + components: + - pos: -19.5,64.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures - uid: 9998 components: - pos: -59.5,47.5 @@ -38219,6 +38858,40 @@ entities: type: Transform - fixtures: {} type: Fixtures + - uid: 10418 + components: + - pos: -16.5,64.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 10420 + components: + - pos: -15.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 10422 + components: + - pos: -9.5,68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 10423 + components: + - pos: -11.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures - uid: 10549 components: - pos: -85.5,27.5 @@ -39140,6 +39813,69 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures + - uid: 13218 + components: + - pos: -7.5,65.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 13221 + components: + - pos: -8.5,67.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 13291 + components: + - pos: -24.5,67.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 13293 + components: + - pos: -6.5,65.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 13710 + components: + - pos: -8.5,68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 14369 + components: + - pos: -25.5,65.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 14878 + components: + - pos: -14.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures - uid: 15013 components: - pos: -71.5,27.5 @@ -39167,6 +39903,15 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures + - uid: 15166 + components: + - pos: -13.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures - uid: 15233 components: - pos: 17.5,46.5 @@ -39530,6 +40275,186 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures + - uid: 15516 + components: + - pos: -5.5,65.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 15802 + components: + - pos: -4.5,65.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 15803 + components: + - pos: -3.5,65.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 15804 + components: + - pos: -4.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 15805 + components: + - pos: -1.5,64.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 15806 + components: + - pos: -1.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 15807 + components: + - pos: -1.5,62.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 15808 + components: + - pos: -1.5,61.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 15809 + components: + - pos: -1.5,60.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 15810 + components: + - pos: -1.5,59.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 15811 + components: + - pos: -11.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 15812 + components: + - pos: -10.5,62.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 15813 + components: + - pos: -10.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 15814 + components: + - pos: -7.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 15815 + components: + - pos: -7.5,64.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 15817 + components: + - pos: -4.5,64.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 15818 + components: + - pos: -2.5,62.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 15819 + components: + - pos: -3.5,62.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 15820 + components: + - pos: -2.5,60.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures + - uid: 15821 + components: + - pos: -3.5,60.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures - proto: CableHVStack entities: - uid: 2889 @@ -39542,11 +40467,13 @@ entities: - pos: -54.44091,29.7276 parent: 1 type: Transform - - uid: 5641 + - uid: 8239 components: - - pos: -26.556284,26.690647 + - pos: -7.5488524,8.322083 parent: 1 type: Transform + - nextSound: 2834.3254686 + type: EmitSoundOnCollide - proto: CableMV entities: - uid: 497 @@ -39876,15 +40803,6 @@ entities: type: Transform - fixtures: {} type: Fixtures - - uid: 1507 - components: - - pos: -15.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1508 components: - pos: -15.5,17.5 @@ -40919,13 +41837,6 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 4430 - components: - - pos: -47.5,5.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - uid: 4432 components: - pos: -46.5,25.5 @@ -40935,13 +41846,6 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 4434 - components: - - pos: -46.5,5.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - uid: 4570 components: - pos: -44.5,27.5 @@ -41010,6 +41914,15 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures + - uid: 4694 + components: + - pos: -45.5,9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - fixtures: {} + type: Fixtures - uid: 4695 components: - pos: -44.5,13.5 @@ -41053,96 +41966,6 @@ entities: type: AmbientSound - fixtures: {} type: Fixtures - - uid: 4700 - components: - - pos: -44.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4701 - components: - - pos: -44.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4702 - components: - - pos: -44.5,6.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 4703 - components: - - pos: -44.5,5.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 4704 - components: - - pos: -47.5,6.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 4707 - components: - - pos: -45.5,5.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 4708 - components: - - pos: -47.5,7.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 4709 - components: - - pos: -47.5,8.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 4710 - components: - - pos: -47.5,9.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 4711 - components: - - pos: -47.5,10.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 4712 - components: - - pos: -48.5,10.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 4713 - components: - - pos: -48.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4739 components: - pos: -46.5,24.5 @@ -43635,11 +44458,13 @@ entities: - pos: -54.175285,29.57135 parent: 1 type: Transform - - uid: 5642 + - uid: 15989 components: - - pos: -26.306284,26.581272 + - pos: -7.5488524,8.259583 parent: 1 type: Transform + - nextSound: 2839.2480124 + type: EmitSoundOnCollide - proto: CableTerminal entities: - uid: 906 @@ -43942,6 +44767,26 @@ entities: pos: -75.5,56.5 parent: 1 type: Transform +- proto: CarpetBlack + entities: + - uid: 3499 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,9.5 + parent: 1 + type: Transform + - uid: 4703 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,9.5 + parent: 1 + type: Transform + - uid: 4706 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,9.5 + parent: 1 + type: Transform - proto: CarpetBlue entities: - uid: 7530 @@ -45650,16 +46495,6 @@ entities: - pos: -50.5,75.5 parent: 1 type: Transform - - uid: 7413 - components: - - pos: 15.5,37.5 - parent: 1 - type: Transform - - uid: 7414 - components: - - pos: 15.5,36.5 - parent: 1 - type: Transform - uid: 7415 components: - pos: 15.5,35.5 @@ -46127,6 +46962,12 @@ entities: pos: -42.5,55.5 parent: 1 type: Transform + - uid: 9911 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-17.5 + parent: 1 + type: Transform - uid: 10146 components: - pos: -70.5,31.5 @@ -47472,6 +48313,114 @@ entities: - pos: 10.5,-19.5 parent: 1 type: Transform + - uid: 15816 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-20.5 + parent: 1 + type: Transform + - uid: 15879 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-20.5 + parent: 1 + type: Transform + - uid: 15880 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-18.5 + parent: 1 + type: Transform + - uid: 15881 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-17.5 + parent: 1 + type: Transform + - uid: 15882 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-18.5 + parent: 1 + type: Transform + - uid: 15883 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-19.5 + parent: 1 + type: Transform + - uid: 15884 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-17.5 + parent: 1 + type: Transform + - uid: 15885 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-17.5 + parent: 1 + type: Transform + - uid: 15886 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-17.5 + parent: 1 + type: Transform + - uid: 15887 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-20.5 + parent: 1 + type: Transform + - uid: 15889 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-17.5 + parent: 1 + type: Transform + - uid: 15893 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-20.5 + parent: 1 + type: Transform + - uid: 15897 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-19.5 + parent: 1 + type: Transform + - uid: 15902 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-17.5 + parent: 1 + type: Transform + - uid: 15903 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-18.5 + parent: 1 + type: Transform + - uid: 15904 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-19.5 + parent: 1 + type: Transform + - uid: 15905 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-20.5 + parent: 1 + type: Transform + - uid: 15907 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-20.5 + parent: 1 + type: Transform - proto: Chair entities: - uid: 169 @@ -47512,12 +48461,6 @@ entities: - pos: -9.5,29.5 parent: 1 type: Transform - - uid: 2807 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,11.5 - parent: 1 - type: Transform - uid: 2979 components: - rot: -1.5707963267948966 rad @@ -48079,11 +49022,6 @@ entities: pos: -10.5,28.5 parent: 1 type: Transform - - uid: 2696 - components: - - pos: -8.5,18.5 - parent: 1 - type: Transform - uid: 2804 components: - rot: -1.5707963267948966 rad @@ -48171,12 +49109,6 @@ entities: pos: -40.5,14.5 parent: 1 type: Transform - - uid: 5679 - components: - - rot: 3.141592653589793 rad - pos: -16.5,16.5 - parent: 1 - type: Transform - uid: 5716 components: - rot: 1.5707963267948966 rad @@ -48325,12 +49257,6 @@ entities: pos: 22.5,28.5 parent: 1 type: Transform - - uid: 10447 - components: - - rot: 3.141592653589793 rad - pos: 21.5,37.5 - parent: 1 - type: Transform - uid: 10844 components: - pos: -60.5,42.5 @@ -48450,23 +49376,6 @@ entities: pos: -9.868263,27.709732 parent: 1 type: Transform - - uid: 10445 - components: - - pos: 23.398178,40.668 - parent: 1 - type: Transform - - uid: 10448 - components: - - rot: 3.141592653589793 rad - pos: 23.506094,39.943184 - parent: 1 - type: Transform - - uid: 10449 - components: - - rot: 3.141592653589793 rad - pos: 23.568594,39.161934 - parent: 1 - type: Transform - proto: ChairOfficeDark entities: - uid: 271 @@ -48556,9 +49465,14 @@ entities: pos: -37.5,1.5 parent: 1 type: Transform - - uid: 5343 + - uid: 4558 components: - - pos: -51.5,8.5 + - pos: 22.5,39.5 + parent: 1 + type: Transform + - uid: 4577 + components: + - pos: 22.5,41.5 parent: 1 type: Transform - uid: 5358 @@ -48742,6 +49656,21 @@ entities: pos: -15.5,9.5 parent: 1 type: Transform + - uid: 4567 + components: + - pos: 18.5,43.5 + parent: 1 + type: Transform + - uid: 4568 + components: + - pos: 22.5,43.5 + parent: 1 + type: Transform + - uid: 5326 + components: + - pos: 17.5,41.5 + parent: 1 + type: Transform - uid: 5617 components: - pos: -41.5,24.5 @@ -48959,6 +49888,13 @@ entities: - pos: -0.49071655,20.935696 parent: 1 type: Transform + - uid: 15964 + components: + - pos: -17.491047,14.319577 + parent: 1 + type: Transform + - nextSound: 2528.1840942 + type: EmitSoundOnCollide - proto: ChemistryHotplate entities: - uid: 1967 @@ -48973,6 +49909,13 @@ entities: - pos: -0.5063416,21.32632 parent: 1 type: Transform + - uid: 2772 + components: + - pos: -17.475422,14.663327 + parent: 1 + type: Transform + - nextSound: 2524.8191069 + type: EmitSoundOnCollide - proto: ChessBoard entities: - uid: 345 @@ -49039,6 +49982,8 @@ entities: type: MetaData - parent: 14980 type: Transform + - nextSound: 1038.6353569 + type: EmitSoundOnCollide - canCollide: False type: Physics - type: InsideEntityStorage @@ -49955,6 +50900,16 @@ entities: - pos: -2.5,-10.5 parent: 5016 type: Transform + - uid: 15967 + components: + - pos: -72.5,-9.5 + parent: 1 + type: Transform + - uid: 15971 + components: + - pos: -65.5,-9.5 + parent: 1 + type: Transform - proto: ClosetFireFilled entities: - uid: 295 @@ -50596,6 +51551,16 @@ entities: - pos: -3.5,-10.5 parent: 5016 type: Transform + - uid: 15963 + components: + - pos: -74.5,-9.5 + parent: 1 + type: Transform + - uid: 15977 + components: + - pos: -67.5,-9.5 + parent: 1 + type: Transform - proto: ClosetJanitorFilled entities: - uid: 7071 @@ -50606,42 +51571,52 @@ entities: - contents: - maxAmount: 1 amount: 1 + orGroup: null prob: 0.01 id: WeaponPistolMk58 - maxAmount: 1 amount: 2 + orGroup: null prob: 1 id: MopItem - maxAmount: 1 amount: 2 + orGroup: null prob: 1 id: BoxMousetrap - maxAmount: 1 amount: 3 + orGroup: null prob: 1 id: WetFloorSign - maxAmount: 1 amount: 2 + orGroup: null prob: 1 id: TrashBag - maxAmount: 1 amount: 1 + orGroup: null prob: 1 id: LightReplacer - maxAmount: 1 amount: 1 + orGroup: null prob: 1 id: BoxLightMixed - maxAmount: 1 amount: 1 + orGroup: null prob: 1 id: Holoprojector - maxAmount: 1 amount: 2 + orGroup: null prob: 1 id: SoapNT - maxAmount: 1 amount: 2 + orGroup: null prob: 1 id: FlashlightLantern type: StorageFill @@ -50672,6 +51647,7 @@ entities: paper_label: !type:ContainerSlot showEnts: False occludes: True + ent: null type: ContainerContainer - proto: ClosetL3VirologyFilled entities: @@ -50746,6 +51722,11 @@ entities: - 0 - 0 type: EntityStorage + - uid: 2807 + components: + - pos: -9.5,12.5 + parent: 1 + type: Transform - uid: 2914 components: - pos: -17.5,19.5 @@ -50986,8 +51967,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 + - 1.7459902 + - 6.568249 - 0 - 0 - 0 @@ -51520,6 +52501,16 @@ entities: - pos: -5.5,-10.5 parent: 5016 type: Transform + - uid: 15915 + components: + - pos: 14.5,34.5 + parent: 1 + type: Transform + - uid: 15931 + components: + - pos: 20.5,43.5 + parent: 1 + type: Transform - proto: ClosetToolFilled entities: - uid: 1118 @@ -51568,29 +52559,6 @@ entities: - 0 - 0 type: EntityStorage - - uid: 7516 - components: - - pos: -25.5,53.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 15635 components: - pos: -15.5,-5.5 @@ -51603,16 +52571,6 @@ entities: - pos: -40.570293,28.017475 parent: 1 type: Transform -- proto: ClothingBackpackDuffelSyndicate - entities: - - uid: 15119 - components: - - flags: InContainer - type: MetaData - - parent: 15036 - type: Transform - - canCollide: False - type: Physics - proto: ClothingBeltMilitaryWebbing entities: - uid: 15016 @@ -51696,6 +52654,13 @@ entities: - type: Insulated - proto: ClothingHandsGlovesColorYellow entities: + - uid: 611 + components: + - pos: -26.510632,26.559929 + parent: 1 + type: Transform + - nextSound: 1671.4118381 + type: EmitSoundOnCollide - uid: 5508 components: - pos: -53.472584,-1.3838406 @@ -51758,11 +52723,6 @@ entities: type: Transform - proto: ClothingHeadHatFedoraBrown entities: - - uid: 10457 - components: - - pos: 21.764736,38.571533 - parent: 1 - type: Transform - uid: 12916 components: - pos: 3.488522,44.563385 @@ -51810,6 +52770,22 @@ entities: - pos: -6.6627684,-13.319158 parent: 1 type: Transform +- proto: ClothingHeadHelmetRiot + entities: + - uid: 15965 + components: + - pos: -43.79278,66.77106 + parent: 1 + type: Transform + - nextSound: 1953.2636165 + type: EmitSoundOnCollide + - uid: 15979 + components: + - pos: -43.527157,66.73981 + parent: 1 + type: Transform + - nextSound: 1953.963804 + type: EmitSoundOnCollide - proto: ClothingHeadHelmetScaf entities: - uid: 15106 @@ -51831,6 +52807,8 @@ entities: - pos: -11.360779,0.3692627 parent: 5016 type: Transform + - nextSound: 1754.9566517 + type: EmitSoundOnCollide - proto: ClothingMaskBreathMedical entities: - uid: 12777 @@ -51850,6 +52828,13 @@ entities: - pos: 19.526554,15.521059 parent: 1 type: Transform + - uid: 2788 + components: + - pos: -25.506933,57.41912 + parent: 1 + type: Transform + - nextSound: 226.184098 + type: EmitSoundOnCollide - uid: 12772 components: - pos: 18.54059,28.570738 @@ -51913,13 +52898,6 @@ entities: - pos: -25.61458,26.466957 parent: 1 type: Transform -- proto: ClothingNeckBisexualPin - entities: - - uid: 10538 - components: - - pos: -14.514383,9.373074 - parent: 1 - type: Transform - proto: ClothingNeckBling entities: - uid: 10875 @@ -51962,6 +52940,8 @@ entities: - pos: -5.5015035,61.615753 parent: 1 type: Transform + - nextSound: 1185.2682932 + type: EmitSoundOnCollide - proto: ClothingNeckMantleCE entities: - uid: 3543 @@ -51969,6 +52949,8 @@ entities: - pos: -68.46455,16.578547 parent: 1 type: Transform + - nextSound: 1177.0011917 + type: EmitSoundOnCollide - proto: ClothingNeckMantleCMO entities: - uid: 5730 @@ -51976,6 +52958,8 @@ entities: - pos: 16.18277,28.581306 parent: 1 type: Transform + - nextSound: 1197.1019541 + type: EmitSoundOnCollide - proto: ClothingNeckMantleHOP entities: - uid: 5395 @@ -51983,6 +52967,8 @@ entities: - pos: -21.824865,46.548195 parent: 1 type: Transform + - nextSound: 1189.7850748 + type: EmitSoundOnCollide - proto: ClothingNeckMantleHOS entities: - uid: 7085 @@ -51990,6 +52976,8 @@ entities: - pos: -60.468678,63.752388 parent: 1 type: Transform + - nextSound: 1209.4691766 + type: EmitSoundOnCollide - proto: ClothingNeckMantleRD entities: - uid: 3698 @@ -51998,6 +52986,8 @@ entities: type: MetaData - parent: 245 type: Transform + - nextSound: 1223.8631781 + type: EmitSoundOnCollide - canCollide: False type: Physics - type: InsideEntityStorage @@ -52029,6 +53019,22 @@ entities: - pos: -54.52713,17.537136 parent: 1 type: Transform +- proto: ClothingOuterArmorRiot + entities: + - uid: 5547 + components: + - pos: -43.26153,66.39606 + parent: 1 + type: Transform + - nextSound: 1950.0182744 + type: EmitSoundOnCollide + - uid: 15966 + components: + - pos: -43.44903,66.39606 + parent: 1 + type: Transform + - nextSound: 1950.6117881 + type: EmitSoundOnCollide - proto: ClothingOuterArmorScaf entities: - uid: 509 @@ -52152,6 +53158,8 @@ entities: - pos: -11.132568,-1.0625 parent: 5016 type: Transform + - nextSound: 801.5559317 + type: EmitSoundOnCollide - proto: ClothingShoesWizard entities: - uid: 6833 @@ -52164,13 +53172,6 @@ entities: - pos: -36.359966,52.553024 parent: 1 type: Transform -- proto: ClothingUniformJumpskirtDetective - entities: - - uid: 10455 - components: - - pos: 21.59258,37.49341 - parent: 1 - type: Transform - proto: ClothingUniformJumpskirtJanimaid entities: - uid: 6979 @@ -52190,6 +53191,8 @@ entities: type: Transform - nextUpdate: 1714.089591 type: SuitSensor + - nextSound: 1714.289591 + type: EmitSoundOnCollide - proto: ClothingUniformJumpskirtPerformer entities: - uid: 10960 @@ -52221,13 +53224,6 @@ entities: - pos: 19.214054,15.599184 parent: 1 type: Transform -- proto: ClothingUniformJumpsuitDetective - entities: - - uid: 10456 - components: - - pos: 21.920986,37.477783 - parent: 1 - type: Transform - proto: ComfyChair entities: - uid: 6341 @@ -52281,6 +53277,15 @@ entities: pos: 18.5,52.5 parent: 1 type: Transform +- proto: CommsComputerCircuitboard + entities: + - uid: 15958 + components: + - pos: -49.44898,25.317516 + parent: 1 + type: Transform + - nextSound: 1431.4109156 + type: EmitSoundOnCollide - proto: ComputerAnalysisConsole entities: - uid: 341 @@ -52294,11 +53299,6 @@ entities: - port: ArtifactAnalyzerReceiver uid: 347 type: SignalTransmitter - - uid: 15516 - components: - - pos: 9.5,-17.5 - parent: 1 - type: Transform - proto: ComputerBroken entities: - uid: 591 @@ -52306,6 +53306,24 @@ entities: - pos: 13.5,-7.5 parent: 1 type: Transform + - uid: 5324 + components: + - rot: 3.141592653589793 rad + pos: 22.5,38.5 + parent: 1 + type: Transform + - uid: 9069 + components: + - rot: 3.141592653589793 rad + pos: 18.5,42.5 + parent: 1 + type: Transform + - uid: 9080 + components: + - rot: 3.141592653589793 rad + pos: 17.5,40.5 + parent: 1 + type: Transform - uid: 12009 components: - rot: 3.141592653589793 rad @@ -52369,12 +53387,6 @@ entities: type: Transform - proto: ComputerCriminalRecords entities: - - uid: 5339 - components: - - rot: 1.5707963267948966 rad - pos: -52.5,8.5 - parent: 1 - type: Transform - uid: 7957 components: - rot: -1.5707963267948966 rad @@ -52389,6 +53401,12 @@ entities: pos: 1.5,38.5 parent: 1 type: Transform + - uid: 9067 + components: + - rot: 3.141592653589793 rad + pos: 22.5,40.5 + parent: 1 + type: Transform - uid: 9974 components: - rot: 1.5707963267948966 rad @@ -52917,6 +53935,13 @@ entities: - pos: -92.450035,40.48285 parent: 1 type: Transform +- proto: CrateAirlockKit + entities: + - uid: 9079 + components: + - pos: 5.5,-19.5 + parent: 1 + type: Transform - proto: CrateArtifactContainer entities: - uid: 349 @@ -52944,31 +53969,6 @@ entities: type: EntityStorage - proto: CrateEmptySpawner entities: - - uid: 2798 - components: - - pos: -17.5,10.5 - parent: 1 - type: Transform - - uid: 2799 - components: - - pos: -7.5,8.5 - parent: 1 - type: Transform - - uid: 2800 - components: - - pos: -17.5,14.5 - parent: 1 - type: Transform - - uid: 2801 - components: - - pos: -7.5,15.5 - parent: 1 - type: Transform - - uid: 5557 - components: - - pos: -44.5,17.5 - parent: 1 - type: Transform - uid: 15654 components: - pos: -39.5,-3.5 @@ -53016,6 +54016,11 @@ entities: type: Transform - proto: CrateEngineeringAMEJar entities: + - uid: 9074 + components: + - pos: -76.5,22.5 + parent: 1 + type: Transform - uid: 10659 components: - pos: -69.5,23.5 @@ -53137,6 +54142,11 @@ entities: type: EntityStorage - proto: CrateFilledSpawner entities: + - uid: 1469 + components: + - pos: -44.5,17.5 + parent: 1 + type: Transform - uid: 3222 components: - pos: -7.5,12.5 @@ -53172,6 +54182,13 @@ entities: - pos: 22.5,32.5 parent: 1 type: Transform +- proto: CrateFunATV + entities: + - uid: 1421 + components: + - pos: -24.5,-12.5 + parent: 1 + type: Transform - proto: CrateGenericSteel entities: - uid: 15085 @@ -53217,11 +54234,17 @@ entities: paper_label: !type:ContainerSlot showEnts: False occludes: True + ent: null type: ContainerContainer - currentLabel: For Med type: Label - proto: CrateMaterialGlass entities: + - uid: 4734 + components: + - pos: 12.5,-19.5 + parent: 1 + type: Transform - uid: 9981 components: - pos: -82.5,19.5 @@ -53245,6 +54268,11 @@ entities: - 0 - 0 type: EntityStorage + - uid: 15895 + components: + - pos: 12.5,-18.5 + parent: 1 + type: Transform - proto: CrateMaterialSteel entities: - uid: 9980 @@ -53428,6 +54456,7 @@ entities: paper_label: !type:ContainerSlot showEnts: False occludes: True + ent: null type: ContainerContainer - proto: CrayonMime entities: @@ -53475,6 +54504,8 @@ entities: - pos: -49.521305,24.4048 parent: 1 type: Transform + - nextSound: 17.5877943 + type: EmitSoundOnCollide - proto: Crowbar entities: - uid: 375 @@ -53496,42 +54527,6 @@ entities: type: Transform - nextAttack: 222.5928597 type: MeleeWeapon - - uid: 7374 - components: - - name: chosen weapon of the tider - type: MetaData - - pos: -8.78838,44.599762 - parent: 1 - type: Transform - - nextAttack: 7763.5335842 - type: MeleeWeapon - - uid: 7375 - components: - - name: chosen weapon of the tider - type: MetaData - - pos: -9.554005,44.631012 - parent: 1 - type: Transform - - nextAttack: 7766.4335726 - type: MeleeWeapon - - uid: 7376 - components: - - name: chosen weapon of the tider - type: MetaData - - pos: -8.38213,44.537262 - parent: 1 - type: Transform - - nextAttack: 7761.7002582 - type: MeleeWeapon - - uid: 7377 - components: - - name: chosen weapon of the tider - type: MetaData - - pos: -9.16338,44.615387 - parent: 1 - type: Transform - - nextAttack: 7765.6002426 - type: MeleeWeapon - proto: CryoPod entities: - uid: 1333 @@ -53539,38 +54534,6 @@ entities: - pos: 9.5,36.5 parent: 1 type: Transform -- proto: d6Dice - entities: - - uid: 10450 - components: - - rot: 3.141592653589793 rad - pos: 20.677969,37.661934 - parent: 1 - type: Transform - - uid: 10451 - components: - - rot: 3.141592653589793 rad - pos: 20.256094,38.17756 - parent: 1 - type: Transform - - uid: 10452 - components: - - rot: 3.141592653589793 rad - pos: 22.552969,38.55256 - parent: 1 - type: Transform - - uid: 10453 - components: - - rot: 3.141592653589793 rad - pos: 21.253763,38.722572 - parent: 1 - type: Transform - - uid: 10454 - components: - - rot: 3.141592653589793 rad - pos: 20.628763,38.800697 - parent: 1 - type: Transform - proto: DawInstrumentMachineCircuitboard entities: - uid: 4136 @@ -53587,6 +54550,8 @@ entities: type: Transform - nextUpdate: 37.382081 type: PowerCellDraw + - nextSound: 37.582081 + type: EmitSoundOnCollide - proto: DefibrillatorCabinetFilled entities: - uid: 1962 @@ -53757,11 +54722,6 @@ entities: - pos: -7.7214417,3.4652395 parent: 1 type: Transform - - uid: 4996 - components: - - pos: -14.7659235,9.704989 - parent: 1 - type: Transform - uid: 4997 components: - pos: -10.2346735,11.798739 @@ -53787,11 +54747,6 @@ entities: - pos: -54.116062,17.501276 parent: 1 type: Transform - - uid: 5002 - components: - - pos: -50.21205,7.5052824 - parent: 1 - type: Transform - uid: 5003 components: - pos: -0.74886024,7.6462955 @@ -53875,11 +54830,6 @@ entities: pos: -55.5,15.5 parent: 1 type: Transform - - uid: 13293 - components: - - pos: -47.5,8.5 - parent: 1 - type: Transform - uid: 13324 components: - rot: 3.141592653589793 rad @@ -54074,12 +55024,6 @@ entities: pos: -35.5,5.5 parent: 1 type: Transform - - uid: 13218 - components: - - rot: -1.5707963267948966 rad - pos: -47.5,5.5 - parent: 1 - type: Transform - uid: 13245 components: - rot: 3.141592653589793 rad @@ -54244,6 +55188,12 @@ entities: pos: 15.5,-11.5 parent: 1 type: Transform + - uid: 5318 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,5.5 + parent: 1 + type: Transform - uid: 8653 components: - pos: -50.5,57.5 @@ -55436,18 +56386,6 @@ entities: pos: -49.5,4.5 parent: 1 type: Transform - - uid: 13291 - components: - - rot: 3.141592653589793 rad - pos: -47.5,6.5 - parent: 1 - type: Transform - - uid: 13292 - components: - - rot: 3.141592653589793 rad - pos: -47.5,7.5 - parent: 1 - type: Transform - uid: 13295 components: - rot: -1.5707963267948966 rad @@ -56568,12 +57506,6 @@ entities: - pos: -35.5,7.5 parent: 1 type: Transform - - uid: 13221 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,8.5 - parent: 1 - type: Transform - uid: 13243 components: - rot: -1.5707963267948966 rad @@ -56802,11 +57734,6 @@ entities: - pos: -26.5,29.5 parent: 1 type: Transform - - uid: 5597 - components: - - pos: -48.5,8.5 - parent: 1 - type: Transform - uid: 6936 components: - pos: -38.5,42.5 @@ -56872,28 +57799,6 @@ entities: - pos: 14.5,-11.5 parent: 1 type: Transform - - uid: 15036 - components: - - desc: A "secure" vault container. What could be inside? - name: vault container - type: MetaData - - pos: 10.5,-13.5 - parent: 1 - type: Transform - - containers: - DisposalUnit: !type:Container - showEnts: False - occludes: True - ents: - - 15119 - type: ContainerContainer - - type: Timer - - type: ActiveDisposalUnit - - uid: 15166 - components: - - pos: 17.5,37.5 - parent: 1 - type: Transform - uid: 15172 components: - pos: 16.5,50.5 @@ -56931,6 +57836,11 @@ entities: - pos: -3.5,-5.5 parent: 1 type: Transform + - uid: 4730 + components: + - pos: -27.5,52.5 + parent: 1 + type: Transform - proto: DoorElectronics entities: - uid: 5536 @@ -57027,8 +57937,55 @@ entities: - pos: -23.506622,54.363503 parent: 1 type: Transform +- proto: DrinkGreenTea + entities: + - uid: 4546 + components: + - pos: -49.110718,9.835719 + parent: 1 + type: Transform + - nextAttack: 1373.7711174 + type: MeleeWeapon + - nextSound: 1373.9711174 + type: EmitSoundOnCollide + - uid: 4549 + components: + - pos: -49.160065,9.422353 + parent: 1 + type: Transform + - nextAttack: 1375.3632859 + type: MeleeWeapon + - nextSound: 1375.5632859 + type: EmitSoundOnCollide + - uid: 5344 + components: + - pos: -49.821003,9.391103 + parent: 1 + type: Transform + - nextAttack: 1374.6810903 + type: MeleeWeapon + - nextSound: 1374.8810903 + type: EmitSoundOnCollide + - uid: 6153 + components: + - pos: -49.876343,9.820094 + parent: 1 + type: Transform + - nextAttack: 1372.7942817 + type: MeleeWeapon + - nextSound: 1372.9942817 + type: EmitSoundOnCollide - proto: DrinkHotCoffee entities: + - uid: 4562 + components: + - pos: 23.475533,38.452827 + parent: 1 + type: Transform + - nextAttack: 2950.118211 + type: MeleeWeapon + - nextSound: 2950.3182109 + type: EmitSoundOnCollide - uid: 15084 components: - pos: -15.376344,24.974894 @@ -57070,6 +58027,17 @@ entities: - pos: -54.232857,64.76375 parent: 1 type: Transform +- proto: DrinkMugHeart + entities: + - uid: 1489 + components: + - pos: 23.29282,42.502815 + parent: 1 + type: Transform + - nextAttack: 820.1477775 + type: MeleeWeapon + - nextSound: 820.3477775 + type: EmitSoundOnCollide - proto: DrinkMugMetal entities: - uid: 7949 @@ -57113,6 +58081,17 @@ entities: - pos: 24.262653,14.759211 parent: 1 type: Transform +- proto: DrinkWaterJug + entities: + - uid: 577 + components: + - pos: 19.083464,-11.315445 + parent: 1 + type: Transform + - nextAttack: 1269.0895444 + type: MeleeWeapon + - nextSound: 1269.2895444 + type: EmitSoundOnCollide - proto: DrinkWhiskeyBottleFull entities: - uid: 7935 @@ -57205,16 +58184,22 @@ entities: - pos: -6.2645264,-8.257477 parent: 5016 type: Transform + - nextSound: 1206.1754633 + type: EmitSoundOnCollide - uid: 15615 components: - pos: -6.2645264,-8.460602 parent: 5016 type: Transform + - nextSound: 1207.0424638 + type: EmitSoundOnCollide - uid: 15616 components: - pos: -6.2489014,-8.585602 parent: 5016 type: Transform + - nextSound: 1207.6464953 + type: EmitSoundOnCollide - proto: ElectricGuitarInstrument entities: - uid: 4138 @@ -58820,19 +59805,6 @@ entities: - 5217 - 5218 type: DeviceList - - uid: 13054 - components: - - pos: -46.5,7.5 - parent: 1 - type: Transform - - devices: - - 5210 - - 5211 - - 5212 - - 4110 - - 4111 - - 4112 - type: DeviceList - uid: 13056 components: - pos: -39.5,7.5 @@ -59359,6 +60331,11 @@ entities: - pos: -2.5,38.5 parent: 1 type: Transform + - uid: 9912 + components: + - pos: 16.5,37.5 + parent: 1 + type: Transform - uid: 14189 components: - pos: -73.5,37.5 @@ -59485,6 +60462,11 @@ entities: - pos: 23.5,20.5 parent: 1 type: Transform + - uid: 15849 + components: + - pos: 16.5,38.5 + parent: 1 + type: Transform - proto: FirelockEdge entities: - uid: 219 @@ -59678,6 +60660,12 @@ entities: - pos: -52.5,82.5 parent: 1 type: Transform + - uid: 5505 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,37.5 + parent: 1 + type: Transform - uid: 5579 components: - rot: 1.5707963267948966 rad @@ -59970,41 +60958,6 @@ entities: pos: -31.5,55.5 parent: 1 type: Transform - - uid: 10431 - components: - - pos: 17.5,41.5 - parent: 1 - type: Transform - - uid: 10432 - components: - - pos: 18.5,41.5 - parent: 1 - type: Transform - - uid: 10433 - components: - - pos: 19.5,41.5 - parent: 1 - type: Transform - - uid: 10434 - components: - - pos: 20.5,41.5 - parent: 1 - type: Transform - - uid: 10435 - components: - - pos: 21.5,41.5 - parent: 1 - type: Transform - - uid: 10436 - components: - - pos: 22.5,41.5 - parent: 1 - type: Transform - - uid: 10437 - components: - - pos: 23.5,41.5 - parent: 1 - type: Transform - uid: 10666 components: - rot: 1.5707963267948966 rad @@ -60212,6 +61165,12 @@ entities: pos: 4.5,40.5 parent: 1 type: Transform + - uid: 15969 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,38.5 + parent: 1 + type: Transform - proto: FirelockElectronics entities: - uid: 5541 @@ -60933,16 +61892,6 @@ entities: - pos: -17.49649,26.396124 parent: 1 type: Transform - - uid: 5347 - components: - - pos: -53.712852,8.738616 - parent: 1 - type: Transform - - uid: 5348 - components: - - pos: -53.540977,8.504241 - parent: 1 - type: Transform - uid: 13335 components: - pos: -0.51456356,10.706236 @@ -60961,6 +61910,7 @@ entities: parent: 1 type: Transform - toggleAction: + sound: null itemIconStyle: BigItem icon: sprite: Objects/Tools/flashlight.rsi @@ -60971,6 +61921,8 @@ entities: description: action-description-toggle-light keywords: [] enabled: True + useDelay: null + charges: null checkCanInteract: True clientExclusive: False priority: 0 @@ -61050,6 +62002,13 @@ entities: - pos: 12.05491,24.85312 parent: 1 type: Transform +- proto: FloraTreeStump + entities: + - uid: 15850 + components: + - pos: 20.438618,40.115738 + parent: 1 + type: Transform - proto: FluteInstrument entities: - uid: 14705 @@ -61172,6 +62131,22 @@ entities: - pos: -111.48177,18.535988 parent: 1 type: Transform +- proto: FoodMealSashimi + entities: + - uid: 5978 + components: + - pos: -50.3876,9.598858 + parent: 1 + type: Transform + - nextSound: 1336.8356062 + type: EmitSoundOnCollide + - uid: 6056 + components: + - pos: -48.5126,9.614483 + parent: 1 + type: Transform + - nextSound: 1337.9192212 + type: EmitSoundOnCollide - proto: FoodMeatClown entities: - uid: 2310 @@ -61220,6 +62195,28 @@ entities: - pos: 4.4872284,54.545197 parent: 1 type: Transform +- proto: FoodSoupStew + entities: + - uid: 5598 + components: + - pos: -49.501343,9.695094 + parent: 1 + type: Transform + - nextAttack: 1369.1280585 + type: MeleeWeapon + - nextSound: 1369.3280585 + type: EmitSoundOnCollide +- proto: FoodSoupTomatoBlood + entities: + - uid: 15848 + components: + - pos: 18.65857,38.37641 + parent: 1 + type: Transform + - nextAttack: 3450.2954951 + type: MeleeWeapon + - nextSound: 3450.4954951 + type: EmitSoundOnCollide - proto: FoodTartMime entities: - uid: 4219 @@ -61227,6 +62224,36 @@ entities: - pos: -41.632744,23.626688 parent: 1 type: Transform +- proto: FoodTinBeans + entities: + - uid: 15940 + components: + - pos: 16.724224,-9.292183 + parent: 1 + type: Transform + - nextSound: 959.5046337 + type: EmitSoundOnCollide + - uid: 15941 + components: + - pos: 16.380474,-9.276558 + parent: 1 + type: Transform + - nextSound: 958.9789914 + type: EmitSoundOnCollide + - uid: 15943 + components: + - pos: 16.36485,-9.089058 + parent: 1 + type: Transform + - nextSound: 957.1631408 + type: EmitSoundOnCollide + - uid: 15944 + components: + - pos: 16.73985,-9.104683 + parent: 1 + type: Transform + - nextSound: 958.2128384 + type: EmitSoundOnCollide - proto: ForensicPad entities: - uid: 12914 @@ -61236,7 +62263,7 @@ entities: type: Transform - uid: 12915 components: - - pos: 1.9684631,43.62905 + - pos: 2.583364,43.44034 parent: 1 type: Transform - proto: GasAnalyzer @@ -61771,22 +62798,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 11908 - components: - - rot: -1.5707963267948966 rad - pos: -46.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11909 - components: - - rot: -1.5707963267948966 rad - pos: -47.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - uid: 12186 components: - rot: 3.141592653589793 rad @@ -62346,13 +63357,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 11901 - components: - - pos: -50.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - uid: 11940 components: - pos: -41.5,6.5 @@ -63756,6 +64760,22 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor + - uid: 5317 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,6.5 + parent: 1 + type: Transform + - nextSound: 935.8999616 + type: EmitSoundOnCollide + - uid: 5350 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,6.5 + parent: 1 + type: Transform + - nextSound: 919.1560163 + type: EmitSoundOnCollide - uid: 5393 components: - rot: 1.5707963267948966 rad @@ -63828,6 +64848,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound + - uid: 6253 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,4.5 + parent: 1 + type: Transform + - nextSound: 919.6497618 + type: EmitSoundOnCollide - uid: 7441 components: - rot: 1.5707963267948966 rad @@ -65411,6 +66439,8 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound + - nextSound: 223.2729972 + type: EmitSoundOnCollide - uid: 11087 components: - rot: 1.5707963267948966 rad @@ -66796,8 +67826,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11550 components: - rot: 3.141592653589793 rad @@ -68485,141 +69513,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 11894 - components: - - rot: 3.141592653589793 rad - pos: -50.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11895 - components: - - rot: 3.141592653589793 rad - pos: -50.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11896 - components: - - rot: 3.141592653589793 rad - pos: -50.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11897 - components: - - rot: 3.141592653589793 rad - pos: -50.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11898 - components: - - rot: 3.141592653589793 rad - pos: -51.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11899 - components: - - rot: 3.141592653589793 rad - pos: -51.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11902 - components: - - rot: -1.5707963267948966 rad - pos: -50.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11903 - components: - - rot: 3.141592653589793 rad - pos: -50.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11904 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11905 - components: - - rot: 1.5707963267948966 rad - pos: -52.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11906 - components: - - rot: 1.5707963267948966 rad - pos: -52.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11910 - components: - - rot: -1.5707963267948966 rad - pos: -49.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11911 - components: - - rot: -1.5707963267948966 rad - pos: -48.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11912 - components: - - rot: -1.5707963267948966 rad - pos: -48.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11913 - components: - - rot: -1.5707963267948966 rad - pos: -47.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11914 - components: - - rot: 3.141592653589793 rad - pos: -46.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11921 - components: - - pos: -49.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - uid: 11922 components: - rot: -1.5707963267948966 rad @@ -68700,14 +69593,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 11934 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - uid: 11935 components: - rot: 1.5707963267948966 rad @@ -69799,8 +70684,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12145 components: - rot: -1.5707963267948966 rad @@ -69809,8 +70692,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12146 components: - rot: -1.5707963267948966 rad @@ -69907,8 +70788,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12158 components: - rot: -1.5707963267948966 rad @@ -69917,8 +70796,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12159 components: - rot: -1.5707963267948966 rad @@ -69927,8 +70804,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12160 components: - rot: -1.5707963267948966 rad @@ -70037,8 +70912,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12181 components: - rot: 1.5707963267948966 rad @@ -70055,8 +70928,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12183 components: - rot: 1.5707963267948966 rad @@ -75502,6 +76373,17 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound + - nextSound: 223.6589401 + type: EmitSoundOnCollide + - uid: 15864 + components: + - pos: 7.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - nextSound: 3825.8688239 + type: EmitSoundOnCollide - proto: GasPipeTJunction entities: - uid: 1778 @@ -76616,22 +77498,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 11886 - components: - - rot: 3.141592653589793 rad - pos: -51.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11887 - components: - - rot: 3.141592653589793 rad - pos: -50.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - uid: 11888 components: - rot: 3.141592653589793 rad @@ -76647,21 +77513,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 11900 - components: - - pos: -51.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11907 - components: - - rot: 3.141592653589793 rad - pos: -49.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - uid: 11952 components: - rot: 1.5707963267948966 rad @@ -76779,8 +77630,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12169 components: - pos: -22.5,33.5 @@ -76796,8 +77645,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12171 components: - pos: -30.5,33.5 @@ -77655,14 +78502,16 @@ entities: - pos: 2.5,-8.5 parent: 1 type: Transform - - uid: 2398 + - uid: 1417 components: - - pos: 6.5,37.5 + - pos: 12.5,37.5 parent: 1 type: Transform - - uid: 2399 + - nextSound: 378.7434204 + type: EmitSoundOnCollide + - uid: 2398 components: - - pos: 12.5,37.5 + - pos: 6.5,37.5 parent: 1 type: Transform - uid: 13882 @@ -78289,6 +79138,8 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor + - nextSound: 222.2169622 + type: EmitSoundOnCollide - uid: 10805 components: - pos: 6.5,20.5 @@ -78680,34 +79531,6 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 11918 - components: - - pos: -49.5,11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11919 - components: - - pos: -46.5,11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11920 - components: - - rot: 1.5707963267948966 rad - pos: -53.5,9.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - uid: 11926 components: - rot: 3.141592653589793 rad @@ -80251,34 +81074,6 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 11915 - components: - - rot: 1.5707963267948966 rad - pos: -53.5,10.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11916 - components: - - pos: -50.5,11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11917 - components: - - pos: -47.5,11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - uid: 11925 components: - pos: -49.5,5.5 @@ -80977,18 +81772,36 @@ entities: - pos: 17.5,46.5 parent: 1 type: Transform - - uid: 6526 +- proto: GeneratorRTGDamaged + entities: + - uid: 4737 + components: + - pos: -77.5,51.5 + parent: 1 + type: Transform +- proto: GeneratorUranium + entities: + - uid: 6264 components: - pos: -3.5,55.5 parent: 1 type: Transform - proto: GeneratorUraniumMachineCircuitboard entities: - - uid: 5547 + - uid: 1491 components: - - pos: -49.43629,25.521496 + - pos: -49.48023,25.725746 parent: 1 type: Transform + - nextSound: 1439.487572 + type: EmitSoundOnCollide + - uid: 15959 + components: + - pos: -49.464603,25.631996 + parent: 1 + type: Transform + - nextSound: 1440.1695321 + type: EmitSoundOnCollide - proto: Girder entities: - uid: 54 @@ -81121,36 +81934,11 @@ entities: - pos: 21.5,33.5 parent: 1 type: Transform - - uid: 1327 - components: - - pos: 13.5,38.5 - parent: 1 - type: Transform - uid: 1381 components: - pos: -1.5,44.5 parent: 1 type: Transform - - uid: 1422 - components: - - pos: 16.5,42.5 - parent: 1 - type: Transform - - uid: 1425 - components: - - pos: 23.5,36.5 - parent: 1 - type: Transform - - uid: 1465 - components: - - pos: -7.5,10.5 - parent: 1 - type: Transform - - uid: 1466 - components: - - pos: -9.5,13.5 - parent: 1 - type: Transform - uid: 1470 components: - pos: -7.5,19.5 @@ -81161,16 +81949,6 @@ entities: - pos: -10.5,24.5 parent: 1 type: Transform - - uid: 1489 - components: - - pos: -18.5,7.5 - parent: 1 - type: Transform - - uid: 1491 - components: - - pos: -17.5,11.5 - parent: 1 - type: Transform - uid: 2059 components: - pos: 17.5,24.5 @@ -81216,11 +81994,6 @@ entities: - pos: -24.5,3.5 parent: 1 type: Transform - - uid: 3479 - components: - - pos: -22.5,-11.5 - parent: 1 - type: Transform - uid: 3596 components: - pos: -47.5,-5.5 @@ -81301,21 +82074,6 @@ entities: - pos: -4.5,45.5 parent: 1 type: Transform - - uid: 5978 - components: - - pos: 16.5,37.5 - parent: 1 - type: Transform - - uid: 6056 - components: - - pos: 20.5,36.5 - parent: 1 - type: Transform - - uid: 6672 - components: - - pos: -26.5,51.5 - parent: 1 - type: Transform - uid: 6731 components: - pos: -29.5,41.5 @@ -81371,11 +82129,6 @@ entities: - pos: -59.5,22.5 parent: 1 type: Transform - - uid: 9912 - components: - - pos: -59.5,11.5 - parent: 1 - type: Transform - uid: 9926 components: - pos: -65.5,9.5 @@ -81419,16 +82172,6 @@ entities: type: PointLight - proto: GrenadeFlashBang entities: - - uid: 5633 - components: - - pos: -49.63598,8.488159 - parent: 1 - type: Transform - - uid: 5634 - components: - - pos: -49.32348,8.597534 - parent: 1 - type: Transform - uid: 8009 components: - pos: -61.810192,50.638466 @@ -81444,6 +82187,20 @@ entities: - pos: -61.997692,50.59159 parent: 1 type: Transform + - uid: 15973 + components: + - pos: -17.577833,10.380919 + parent: 1 + type: Transform + - nextSound: 2636.1739079 + type: EmitSoundOnCollide + - uid: 15974 + components: + - pos: -17.202833,10.537169 + parent: 1 + type: Transform + - nextSound: 2637.1210333 + type: EmitSoundOnCollide - proto: Grille entities: - uid: 28 @@ -81492,9 +82249,10 @@ entities: - pos: 0.5,-12.5 parent: 1 type: Transform - - uid: 532 + - uid: 609 components: - - pos: 17.5,-10.5 + - rot: 3.141592653589793 rad + pos: -25.5,30.5 parent: 1 type: Transform - uid: 711 @@ -81663,22 +82421,14 @@ entities: - pos: 5.5,22.5 parent: 1 type: Transform - - uid: 1414 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,40.5 - parent: 1 - type: Transform - uid: 1416 components: - - rot: -1.5707963267948966 rad - pos: 17.5,36.5 + - pos: -25.5,63.5 parent: 1 type: Transform - - uid: 1417 + - uid: 1424 components: - - rot: -1.5707963267948966 rad - pos: 16.5,39.5 + - pos: 16.5,43.5 parent: 1 type: Transform - uid: 1631 @@ -81686,11 +82436,6 @@ entities: - pos: 12.5,27.5 parent: 1 type: Transform - - uid: 1664 - components: - - pos: 17.5,-11.5 - parent: 1 - type: Transform - uid: 1869 components: - rot: -1.5707963267948966 rad @@ -81786,11 +82531,6 @@ entities: - pos: -26.5,30.5 parent: 1 type: Transform - - uid: 3133 - components: - - pos: -25.5,30.5 - parent: 1 - type: Transform - uid: 3135 components: - pos: -23.5,30.5 @@ -81940,6 +82680,11 @@ entities: pos: -31.5,-4.5 parent: 1 type: Transform + - uid: 3905 + components: + - pos: -59.5,10.5 + parent: 1 + type: Transform - uid: 3962 components: - rot: -1.5707963267948966 rad @@ -81988,26 +82733,6 @@ entities: - pos: -46.5,24.5 parent: 1 type: Transform - - uid: 4595 - components: - - pos: -53.5,7.5 - parent: 1 - type: Transform - - uid: 4596 - components: - - pos: -54.5,7.5 - parent: 1 - type: Transform - - uid: 4599 - components: - - pos: -52.5,7.5 - parent: 1 - type: Transform - - uid: 4601 - components: - - pos: -49.5,7.5 - parent: 1 - type: Transform - uid: 4748 components: - pos: -74.5,7.5 @@ -82329,6 +83054,12 @@ entities: - pos: -55.5,19.5 parent: 1 type: Transform + - uid: 5316 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,14.5 + parent: 1 + type: Transform - uid: 5823 components: - pos: -18.5,46.5 @@ -82444,11 +83175,6 @@ entities: - pos: 24.5,38.5 parent: 1 type: Transform - - uid: 6320 - components: - - pos: 24.5,39.5 - parent: 1 - type: Transform - uid: 6321 components: - pos: 24.5,40.5 @@ -82646,6 +83372,46 @@ entities: - pos: -18.5,48.5 parent: 1 type: Transform + - uid: 6670 + components: + - pos: -25.5,64.5 + parent: 1 + type: Transform + - uid: 6671 + components: + - pos: -24.5,68.5 + parent: 1 + type: Transform + - uid: 6672 + components: + - pos: -23.5,69.5 + parent: 1 + type: Transform + - uid: 6673 + components: + - pos: -22.5,70.5 + parent: 1 + type: Transform + - uid: 6674 + components: + - pos: -17.5,70.5 + parent: 1 + type: Transform + - uid: 6675 + components: + - pos: -15.5,70.5 + parent: 1 + type: Transform + - uid: 6676 + components: + - pos: -18.5,70.5 + parent: 1 + type: Transform + - uid: 6678 + components: + - pos: -11.5,70.5 + parent: 1 + type: Transform - uid: 6685 components: - pos: -22.5,60.5 @@ -82798,6 +83564,11 @@ entities: pos: -52.5,45.5 parent: 1 type: Transform + - uid: 7095 + components: + - pos: -16.5,70.5 + parent: 1 + type: Transform - uid: 7113 components: - pos: -46.5,63.5 @@ -82943,6 +83714,36 @@ entities: - pos: -62.5,88.5 parent: 1 type: Transform + - uid: 7374 + components: + - pos: -14.5,70.5 + parent: 1 + type: Transform + - uid: 7375 + components: + - pos: -9.5,69.5 + parent: 1 + type: Transform + - uid: 7376 + components: + - pos: -8.5,68.5 + parent: 1 + type: Transform + - uid: 7413 + components: + - pos: -9.5,68.5 + parent: 1 + type: Transform + - uid: 7414 + components: + - pos: -1.5,62.5 + parent: 1 + type: Transform + - uid: 7516 + components: + - pos: -1.5,63.5 + parent: 1 + type: Transform - uid: 7712 components: - pos: -63.5,84.5 @@ -82973,6 +83774,36 @@ entities: - pos: -47.5,52.5 parent: 1 type: Transform + - uid: 8084 + components: + - pos: -1.5,64.5 + parent: 1 + type: Transform + - uid: 8115 + components: + - pos: -1.5,59.5 + parent: 1 + type: Transform + - uid: 8287 + components: + - pos: -1.5,60.5 + parent: 1 + type: Transform + - uid: 8288 + components: + - pos: -1.5,61.5 + parent: 1 + type: Transform + - uid: 8289 + components: + - pos: -5.5,65.5 + parent: 1 + type: Transform + - uid: 8290 + components: + - pos: -6.5,65.5 + parent: 1 + type: Transform - uid: 8617 components: - pos: -13.5,-4.5 @@ -82998,6 +83829,11 @@ entities: - pos: -55.5,72.5 parent: 1 type: Transform + - uid: 8976 + components: + - pos: -3.5,65.5 + parent: 1 + type: Transform - uid: 8977 components: - pos: -55.5,75.5 @@ -83028,6 +83864,11 @@ entities: - pos: -65.5,87.5 parent: 1 type: Transform + - uid: 8992 + components: + - pos: -4.5,65.5 + parent: 1 + type: Transform - uid: 8993 components: - pos: -64.5,88.5 @@ -83038,139 +83879,119 @@ entities: - pos: -64.5,89.5 parent: 1 type: Transform - - uid: 9023 - components: - - pos: -47.5,77.5 - parent: 1 - type: Transform - - uid: 9024 - components: - - pos: -47.5,76.5 - parent: 1 - type: Transform - - uid: 9026 - components: - - pos: -47.5,74.5 - parent: 1 - type: Transform - - uid: 9028 + - uid: 8995 components: - - pos: -46.5,71.5 + - pos: -7.5,65.5 parent: 1 type: Transform - - uid: 9029 + - uid: 8997 components: - - pos: -45.5,71.5 + - pos: -8.5,65.5 parent: 1 type: Transform - - uid: 9030 + - uid: 9000 components: - - pos: -44.5,71.5 + - pos: -13.5,70.5 parent: 1 type: Transform - - uid: 9032 + - uid: 9001 components: - - pos: -42.5,71.5 + - pos: -10.5,69.5 parent: 1 type: Transform - - uid: 9048 + - uid: 9002 components: - - pos: -32.5,62.5 + - pos: -10.5,70.5 parent: 1 type: Transform - - uid: 9050 + - uid: 9006 components: - - pos: -30.5,62.5 + - pos: -19.5,70.5 parent: 1 type: Transform - - uid: 9051 + - uid: 9008 components: - - pos: -29.5,62.5 + - pos: -21.5,70.5 parent: 1 type: Transform - - uid: 9055 + - uid: 9009 components: - - pos: -25.5,63.5 + - pos: -8.5,67.5 parent: 1 type: Transform - - uid: 9058 + - uid: 9010 components: - - pos: -24.5,68.5 + - pos: -22.5,69.5 parent: 1 type: Transform - - uid: 9059 + - uid: 9013 components: - pos: -23.5,68.5 parent: 1 type: Transform - - uid: 9061 - components: - - pos: -22.5,69.5 - parent: 1 - type: Transform - - uid: 9066 + - uid: 9014 components: - - pos: -18.5,70.5 + - pos: -25.5,65.5 parent: 1 type: Transform - - uid: 9067 + - uid: 9016 components: - - pos: -17.5,70.5 + - pos: -24.5,67.5 parent: 1 type: Transform - - uid: 9069 + - uid: 9023 components: - - pos: -15.5,70.5 + - pos: -47.5,77.5 parent: 1 type: Transform - - uid: 9070 + - uid: 9024 components: - - pos: -14.5,70.5 + - pos: -47.5,76.5 parent: 1 type: Transform - - uid: 9073 + - uid: 9026 components: - - pos: -10.5,70.5 + - pos: -47.5,74.5 parent: 1 type: Transform - - uid: 9074 + - uid: 9028 components: - - pos: -10.5,69.5 + - pos: -46.5,71.5 parent: 1 type: Transform - - uid: 9077 + - uid: 9029 components: - - pos: -8.5,68.5 + - pos: -45.5,71.5 parent: 1 type: Transform - - uid: 9079 + - uid: 9030 components: - - pos: -7.5,65.5 + - pos: -44.5,71.5 parent: 1 type: Transform - - uid: 9080 + - uid: 9032 components: - - pos: -6.5,65.5 + - pos: -42.5,71.5 parent: 1 type: Transform - - uid: 9082 + - uid: 9048 components: - - pos: -4.5,65.5 + - pos: -32.5,62.5 parent: 1 type: Transform - - uid: 9086 + - uid: 9050 components: - - pos: -1.5,63.5 + - pos: -30.5,62.5 parent: 1 type: Transform - - uid: 9088 + - uid: 9051 components: - - pos: -1.5,61.5 + - pos: -29.5,62.5 parent: 1 type: Transform - - uid: 9090 + - uid: 9059 components: - - pos: -1.5,60.5 + - pos: -25.5,62.5 parent: 1 type: Transform - uid: 9091 @@ -83467,6 +84288,11 @@ entities: - pos: -42.5,-14.5 parent: 1 type: Transform + - uid: 10412 + components: + - pos: 23.5,36.5 + parent: 1 + type: Transform - uid: 10758 components: - rot: -1.5707963267948966 rad @@ -84743,6 +85569,32 @@ entities: - pos: 14.5,-21.5 parent: 1 type: Transform + - uid: 15938 + components: + - pos: 17.5,-11.5 + parent: 1 + type: Transform + - uid: 15948 + components: + - pos: -52.5,30.5 + parent: 1 + type: Transform + - uid: 15949 + components: + - pos: -53.5,30.5 + parent: 1 + type: Transform + - uid: 15950 + components: + - pos: -51.5,30.5 + parent: 1 + type: Transform + - uid: 15976 + components: + - rot: 3.141592653589793 rad + pos: -24.5,30.5 + parent: 1 + type: Transform - proto: GrilleBroken entities: - uid: 1053 @@ -84757,33 +85609,61 @@ entities: pos: 10.5,7.5 parent: 1 type: Transform - - uid: 1424 + - uid: 3154 components: - rot: -1.5707963267948966 rad - pos: 18.5,36.5 + pos: -33.5,22.5 parent: 1 type: Transform - - uid: 3134 + - uid: 3430 + components: + - pos: -35.5,17.5 + parent: 1 + type: Transform + - uid: 4127 + components: + - pos: -59.5,11.5 + parent: 1 + type: Transform + - uid: 4508 components: - rot: -1.5707963267948966 rad - pos: -24.5,30.5 + pos: -52.5,3.5 parent: 1 type: Transform - - uid: 3154 + - uid: 4565 + components: + - rot: 3.141592653589793 rad + pos: 16.5,42.5 + parent: 1 + type: Transform + - uid: 4566 + components: + - pos: 16.5,42.5 + parent: 1 + type: Transform + - uid: 4705 + components: + - rot: 3.141592653589793 rad + pos: -59.5,13.5 + parent: 1 + type: Transform + - uid: 5319 components: - rot: -1.5707963267948966 rad - pos: -33.5,22.5 + pos: -59.5,13.5 parent: 1 type: Transform - - uid: 3430 + - uid: 5327 components: - - pos: -35.5,17.5 + - rot: 1.5707963267948966 rad + pos: 16.5,42.5 parent: 1 type: Transform - - uid: 4508 + - uid: 5332 components: - rot: -1.5707963267948966 rad - pos: -52.5,3.5 + pos: 16.5,42.5 parent: 1 type: Transform - uid: 7032 @@ -84814,12 +85694,6 @@ entities: - pos: 11.5,55.5 parent: 1 type: Transform - - uid: 8976 - components: - - rot: 3.141592653589793 rad - pos: -1.5,59.5 - parent: 1 - type: Transform - uid: 8979 components: - rot: 1.5707963267948966 rad @@ -84849,109 +85723,6 @@ entities: - pos: 2.5,56.5 parent: 1 type: Transform - - uid: 8992 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,62.5 - parent: 1 - type: Transform - - uid: 8995 - components: - - pos: -1.5,64.5 - parent: 1 - type: Transform - - uid: 8997 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,65.5 - parent: 1 - type: Transform - - uid: 9000 - components: - - pos: -5.5,65.5 - parent: 1 - type: Transform - - uid: 9001 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,65.5 - parent: 1 - type: Transform - - uid: 9002 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,65.5 - parent: 1 - type: Transform - - uid: 9006 - components: - - rot: 3.141592653589793 rad - pos: -8.5,67.5 - parent: 1 - type: Transform - - uid: 9008 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,69.5 - parent: 1 - type: Transform - - uid: 9009 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,70.5 - parent: 1 - type: Transform - - uid: 9010 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,70.5 - parent: 1 - type: Transform - - uid: 9013 - components: - - pos: -16.5,70.5 - parent: 1 - type: Transform - - uid: 9014 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,70.5 - parent: 1 - type: Transform - - uid: 9016 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,70.5 - parent: 1 - type: Transform - - uid: 9018 - components: - - pos: -22.5,70.5 - parent: 1 - type: Transform - - uid: 9020 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,69.5 - parent: 1 - type: Transform - - uid: 9022 - components: - - rot: 3.141592653589793 rad - pos: -24.5,67.5 - parent: 1 - type: Transform - - uid: 9025 - components: - - pos: -25.5,64.5 - parent: 1 - type: Transform - - uid: 9027 - components: - - rot: 3.141592653589793 rad - pos: -25.5,62.5 - parent: 1 - type: Transform - uid: 9031 components: - pos: -31.5,62.5 @@ -85041,9 +85812,33 @@ entities: pos: -59.5,24.5 parent: 1 type: Transform - - uid: 9913 + - uid: 9979 components: - - pos: -59.5,10.5 + - rot: 3.141592653589793 rad + pos: -59.5,11.5 + parent: 1 + type: Transform + - uid: 10411 + components: + - pos: 22.5,36.5 + parent: 1 + type: Transform + - uid: 10416 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,36.5 + parent: 1 + type: Transform + - uid: 10427 + components: + - rot: 3.141592653589793 rad + pos: 22.5,36.5 + parent: 1 + type: Transform + - uid: 10428 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,36.5 parent: 1 type: Transform - uid: 14601 @@ -85656,6 +86451,11 @@ entities: pos: 14.5,-20.5 parent: 1 type: Transform + - uid: 15851 + components: + - pos: 24.5,39.5 + parent: 1 + type: Transform - proto: Handcuffs entities: - uid: 2849 @@ -85700,11 +86500,15 @@ entities: - pos: -37.37278,-10.030424 parent: 1 type: Transform + - nextSound: 904.2995991 + type: EmitSoundOnCollide - uid: 15785 components: - pos: -37.607155,-10.327299 parent: 1 type: Transform + - nextSound: 904.9806146 + type: EmitSoundOnCollide - proto: HandheldHealthAnalyzer entities: - uid: 373 @@ -85745,6 +86549,8 @@ entities: - pos: -11.726318,-0.28125 parent: 5016 type: Transform + - nextSound: 818.2969457 + type: EmitSoundOnCollide - proto: HighSecArmoryLocked entities: - uid: 7869 @@ -86087,16 +86893,22 @@ entities: - pos: -82.4705,30.370302 parent: 1 type: Transform + - nextSound: 455.1183076 + type: EmitSoundOnCollide - uid: 7229 components: - pos: -82.4705,30.370302 parent: 1 type: Transform + - nextSound: 454.8263193 + type: EmitSoundOnCollide - uid: 10734 components: - pos: -82.4705,30.370302 parent: 1 type: Transform + - nextSound: 454.9743363 + type: EmitSoundOnCollide - proto: IngotGold entities: - uid: 10870 @@ -86459,16 +87271,15 @@ entities: - type: InsideEntityStorage - proto: Katana entities: - - uid: 7517 + - uid: 15947 components: - - desc: THE ONLY THING I KNOW FOR REAL - name: murasama - type: MetaData - - pos: -25.461504,57.4935 + - pos: 10.51315,-13.515254 parent: 1 type: Transform - - nextAttack: 72.9873008 + - nextAttack: 1169.9095756 type: MeleeWeapon + - nextSound: 1170.1095756 + type: EmitSoundOnCollide - proto: KitchenKnife entities: - uid: 6953 @@ -86549,6 +87360,30 @@ entities: - pos: -46.478218,0.9660685 parent: 1 type: Transform + - uid: 4559 + components: + - rot: 3.141592653589793 rad + pos: 18.546034,40.734077 + parent: 1 + type: Transform + - nextSound: 2939.0537082 + type: EmitSoundOnCollide + - uid: 4560 + components: + - rot: 3.141592653589793 rad + pos: 23.577284,40.655952 + parent: 1 + type: Transform + - nextSound: 2941.0727994 + type: EmitSoundOnCollide + - uid: 4569 + components: + - rot: 3.141592653589793 rad + pos: 17.514784,42.687202 + parent: 1 + type: Transform + - nextSound: 2940.305089 + type: EmitSoundOnCollide - uid: 7556 components: - pos: -22.548872,46.863678 @@ -86589,11 +87424,15 @@ entities: - pos: -38.52308,-9.139799 parent: 1 type: Transform + - nextSound: 921.7635666 + type: EmitSoundOnCollide - uid: 15797 components: - pos: -70.46455,15.962357 parent: 1 type: Transform + - nextSound: 1108.9025612 + type: EmitSoundOnCollide - proto: LampBanana entities: - uid: 4231 @@ -86635,14 +87474,14 @@ entities: type: Transform - proto: LandMineExplosive entities: - - uid: 7512 + - uid: 4707 components: - - pos: -26.633177,54.728065 + - pos: -47.50722,19.419868 parent: 1 type: Transform - - uid: 7513 + - uid: 4708 components: - - pos: -28.122608,54.18154 + - pos: -45.51045,18.451118 parent: 1 type: Transform - uid: 9641 @@ -86725,6 +87564,36 @@ entities: - pos: -16.45288,-7.494507 parent: 5016 type: Transform + - uid: 15840 + components: + - pos: -29.512676,52.40915 + parent: 1 + type: Transform + - uid: 15841 + components: + - pos: -28.450176,55.34665 + parent: 1 + type: Transform + - uid: 15920 + components: + - pos: 14.582417,37.86743 + parent: 1 + type: Transform + - uid: 15921 + components: + - pos: 19.539473,40.361008 + parent: 1 + type: Transform + - uid: 15922 + components: + - pos: 15.410542,34.36743 + parent: 1 + type: Transform + - uid: 15923 + components: + - pos: 21.273848,42.845383 + parent: 1 + type: Transform - proto: LandMineKick entities: - uid: 5452 @@ -86764,6 +87633,8 @@ entities: type: Transform - nextAttack: 1202.3524947 type: MeleeWeapon + - nextSound: 1202.5524946 + type: EmitSoundOnCollide - uid: 15613 components: - pos: -5.7332764,-8.304352 @@ -86771,6 +87642,8 @@ entities: type: Transform - nextAttack: 1202.95152 type: MeleeWeapon + - nextSound: 1203.1515199 + type: EmitSoundOnCollide - proto: LauncherCreamPie entities: - uid: 4241 @@ -86785,6 +87658,8 @@ entities: - pos: -11.038818,-0.421875 parent: 5016 type: Transform + - nextSound: 811.7949059 + type: EmitSoundOnCollide - proto: LeftFootSlime entities: - uid: 10741 @@ -86792,6 +87667,8 @@ entities: - pos: -11.320068,-0.828125 parent: 5016 type: Transform + - nextSound: 847.6973133 + type: EmitSoundOnCollide - proto: LeftHandSlime entities: - uid: 10744 @@ -86799,6 +87676,8 @@ entities: - pos: -11.210693,-0.578125 parent: 5016 type: Transform + - nextSound: 841.4933808 + type: EmitSoundOnCollide - proto: LeftLegSlime entities: - uid: 13614 @@ -86806,6 +87685,8 @@ entities: - pos: -11.601318,-0.765625 parent: 5016 type: Transform + - nextSound: 844.704288 + type: EmitSoundOnCollide - proto: LockerAtmosphericsFilled entities: - uid: 10746 @@ -86925,29 +87806,6 @@ entities: - 0 - 0 type: EntityStorage - - uid: 10429 - components: - - pos: 23.5,43.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - proto: LockerBotanistFilled entities: - uid: 5788 @@ -87168,6 +88026,7 @@ entities: paper_label: !type:ContainerSlot showEnts: False occludes: True + ent: null type: ContainerContainer - proto: LockerChiefMedicalOfficerFilled entities: @@ -87489,6 +88348,7 @@ entities: paper_label: !type:ContainerSlot showEnts: False occludes: True + ent: null type: ContainerContainer - proto: LockerHeadOfPersonnelFilled entities: @@ -87693,6 +88553,7 @@ entities: paper_label: !type:ContainerSlot showEnts: False occludes: True + ent: null type: ContainerContainer - proto: LockerSalvageSpecialistFilled entities: @@ -87929,75 +88790,6 @@ entities: - 0 - 0 type: EntityStorage - - uid: 5340 - components: - - pos: -54.5,10.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 5341 - components: - - pos: -53.5,10.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 5342 - components: - - pos: -52.5,10.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 7904 components: - pos: -64.5,55.5 @@ -88370,11 +89162,6 @@ entities: - pos: -13.5,-7.5 parent: 1 type: Transform - - uid: 2731 - components: - - pos: -16.5,16.5 - parent: 1 - type: Transform - uid: 2956 components: - pos: 28.5,-4.5 @@ -88578,6 +89365,11 @@ entities: pos: -18.5,16.5 parent: 1 type: Transform + - uid: 4199 + components: + - pos: -8.5,12.5 + parent: 1 + type: Transform - uid: 5431 components: - pos: -29.5,-2.5 @@ -88748,6 +89540,21 @@ entities: - pos: -61.5,25.5 parent: 1 type: Transform + - uid: 15928 + components: + - pos: 18.5,40.5 + parent: 1 + type: Transform + - uid: 15929 + components: + - pos: 23.5,40.5 + parent: 1 + type: Transform + - uid: 15930 + components: + - pos: 23.5,38.5 + parent: 1 + type: Transform - proto: MaintenanceWeaponSpawner entities: - uid: 919 @@ -88765,6 +89572,16 @@ entities: - pos: -0.5,42.5 parent: 1 type: Transform + - uid: 2789 + components: + - pos: -25.5,55.5 + parent: 1 + type: Transform + - uid: 2882 + components: + - pos: -8.5,11.5 + parent: 1 + type: Transform - uid: 2961 components: - pos: 8.5,-4.5 @@ -88855,6 +89672,31 @@ entities: - pos: 9.5,-16.5 parent: 1 type: Transform + - uid: 15842 + components: + - pos: -25.5,53.5 + parent: 1 + type: Transform + - uid: 15843 + components: + - pos: -29.5,54.5 + parent: 1 + type: Transform + - uid: 15911 + components: + - pos: -47.5,17.5 + parent: 1 + type: Transform + - uid: 15926 + components: + - pos: 17.5,42.5 + parent: 1 + type: Transform + - uid: 15927 + components: + - pos: 23.5,42.5 + parent: 1 + type: Transform - proto: MaterialCloth entities: - uid: 7577 @@ -88878,6 +89720,59 @@ entities: type: Transform - nextSound: 13.0622258 type: MaterialReclaimer +- proto: MaterialWoodPlank + entities: + - uid: 15937 + components: + - pos: 19.58975,42.76493 + parent: 1 + type: Transform + - nextSound: 795.338689 + type: EmitSoundOnCollide +- proto: MaterialWoodPlank1 + entities: + - uid: 15913 + components: + - pos: 23.669586,39.593056 + parent: 1 + type: Transform + - nextSound: 790.3827351 + type: EmitSoundOnCollide + - uid: 15932 + components: + - pos: 23.653961,39.561806 + parent: 1 + type: Transform + - nextSound: 790.8591444 + type: EmitSoundOnCollide + - uid: 15933 + components: + - pos: 23.528961,39.405556 + parent: 1 + type: Transform + - nextSound: 791.1389052 + type: EmitSoundOnCollide + - uid: 15934 + components: + - pos: 23.638336,39.51493 + parent: 1 + type: Transform + - nextSound: 791.3273996 + type: EmitSoundOnCollide + - uid: 15935 + components: + - pos: 23.544586,39.42118 + parent: 1 + type: Transform + - nextSound: 791.4934817 + type: EmitSoundOnCollide + - uid: 15936 + components: + - pos: 23.810211,39.57743 + parent: 1 + type: Transform + - nextSound: 793.0561703 + type: EmitSoundOnCollide - proto: MatterBinStockPart entities: - uid: 259 @@ -88924,6 +89819,8 @@ entities: - pos: -17.43695,0.59472656 parent: 5016 type: Transform + - nextSound: 1249.5144637 + type: EmitSoundOnCollide - proto: MedkitAdvancedFilled entities: - uid: 2319 @@ -88938,6 +89835,8 @@ entities: - pos: 6.488601,22.996218 parent: 1 type: Transform + - nextSound: 11.0521781 + type: EmitSoundOnCollide - proto: MedkitBurnFilled entities: - uid: 2317 @@ -88949,7 +89848,7 @@ entities: entities: - uid: 7518 components: - - pos: -26.503302,55.403595 + - pos: -25.498947,54.62378 parent: 1 type: Transform - uid: 15597 @@ -88957,6 +89856,8 @@ entities: - pos: -13.467957,3.5228577 parent: 5016 type: Transform + - nextSound: 1126.5029471 + type: EmitSoundOnCollide - proto: MedkitFilled entities: - uid: 1989 @@ -88979,6 +89880,8 @@ entities: - pos: -7.514221,5.5164795 parent: 5016 type: Transform + - nextSound: 1128.3599394 + type: EmitSoundOnCollide - proto: MedkitOxygenFilled entities: - uid: 2315 @@ -88996,6 +89899,8 @@ entities: - pos: -7.420471,5.1414795 parent: 5016 type: Transform + - nextSound: 1131.2489397 + type: EmitSoundOnCollide - proto: MedkitRadiationFilled entities: - uid: 2314 @@ -89010,6 +89915,13 @@ entities: - pos: 6.48583,23.46081 parent: 1 type: Transform +- proto: MetalDoor + entities: + - uid: 1663 + components: + - pos: 17.5,-10.5 + parent: 1 + type: Transform - proto: MicroManipulatorStockPart entities: - uid: 260 @@ -89410,6 +90322,8 @@ entities: - pos: -16.991455,0.6229248 parent: 5016 type: Transform + - nextSound: 1270.9345389 + type: EmitSoundOnCollide - proto: NanoManipulatorStockPart entities: - uid: 1671 @@ -89564,6 +90478,8 @@ entities: - pos: -7.295471,4.6883545 parent: 5016 type: Transform + - nextSound: 1140.9689355 + type: EmitSoundOnCollide - proto: Omnitool entities: - uid: 14946 @@ -89646,6 +90562,8 @@ entities: - pos: -11.538818,-0.796875 parent: 5016 type: Transform + - nextSound: 816.5379303 + type: EmitSoundOnCollide - proto: OxygenCanister entities: - uid: 5656 @@ -89840,16 +90758,22 @@ entities: - pos: -3.6578722,0.5394765 parent: 1 type: Transform + - nextSound: 724.7431147 + type: EmitSoundOnCollide - uid: 7222 components: - pos: -3.5953722,0.5394765 parent: 1 type: Transform + - nextSound: 725.1160862 + type: EmitSoundOnCollide - uid: 7223 components: - pos: -3.5328722,0.5394765 parent: 1 type: Transform + - nextSound: 725.5341142 + type: EmitSoundOnCollide - uid: 7292 components: - pos: -60.664387,89.61223 @@ -89880,11 +90804,13 @@ entities: - pos: -3.4703722,0.5238515 parent: 1 type: Transform + - nextSound: 725.9281273 + type: EmitSoundOnCollide - uid: 14200 components: - name: hastily scribbled note type: MetaData - - pos: -77.6763,42.345108 + - pos: -77.66223,42.351746 parent: 1 type: Transform - content: > @@ -89899,6 +90825,8 @@ entities: type: Transform - content: "Still missing:\n \n2 knives (ask kitchen) for biomass reclaimer\n \nGlass, steel, & wires (make sure to bring some!)\n \nOther things to remember: One of their chem stations blew up. Getting parts for cloning's more important but keep it in mind.\n \nOh, and it looks like someone took the cloning boards recently. Only give these parts to med if they need them.\n \n- Research Director Samuel Mendez\n" type: Paper + - nextSound: 515.1956099 + type: EmitSoundOnCollide - canCollide: False type: Physics - type: InsideEntityStorage @@ -89912,6 +90840,8 @@ entities: - R.C. type: Paper + - nextSound: 52.7101011 + type: EmitSoundOnCollide - proto: PaperCaptainsThoughts entities: - uid: 10908 @@ -89944,6 +90874,38 @@ entities: - pos: -7.0602107,61.575264 parent: 1 type: Transform +- proto: PaperDoor + entities: + - uid: 4710 + components: + - rot: 3.141592653589793 rad + pos: -50.5,11.5 + parent: 1 + type: Transform + - uid: 5459 + components: + - rot: 3.141592653589793 rad + pos: -53.5,10.5 + parent: 1 + type: Transform + - uid: 6255 + components: + - rot: 3.141592653589793 rad + pos: -53.5,8.5 + parent: 1 + type: Transform + - uid: 6668 + components: + - rot: 3.141592653589793 rad + pos: -50.5,7.5 + parent: 1 + type: Transform + - uid: 10445 + components: + - rot: 3.141592653589793 rad + pos: -47.5,11.5 + parent: 1 + type: Transform - proto: PaperOffice entities: - uid: 2321 @@ -90051,6 +91013,8 @@ entities: - pos: -70.33955,16.634232 parent: 1 type: Transform + - nextSound: 1099.8644898 + type: EmitSoundOnCollide - uid: 3751 components: - pos: -46.321968,1.8882136 @@ -90396,6 +91360,8 @@ entities: - pos: -70.4958,16.634232 parent: 1 type: Transform + - nextSound: 1103.5555057 + type: EmitSoundOnCollide - uid: 14291 components: - pos: -70.305115,49.635986 @@ -90421,11 +91387,15 @@ entities: - pos: -70.58955,16.634232 parent: 1 type: Transform + - nextSound: 1103.9855151 + type: EmitSoundOnCollide - uid: 15794 components: - pos: -70.69892,16.649857 parent: 1 type: Transform + - nextSound: 1105.4495371 + type: EmitSoundOnCollide - proto: ParticleAcceleratorComputerCircuitboard entities: - uid: 9960 @@ -90445,11 +91415,15 @@ entities: - pos: -82.48612,29.602036 parent: 1 type: Transform + - nextSound: 445.4412835 + type: EmitSoundOnCollide - uid: 7392 components: - pos: -82.48612,29.602036 parent: 1 type: Transform + - nextSound: 445.5823008 + type: EmitSoundOnCollide - uid: 13607 components: - pos: -65.40672,25.564983 @@ -90465,6 +91439,22 @@ entities: - pos: -43.49778,-9.467924 parent: 1 type: Transform + - nextSound: 899.4799992 + type: EmitSoundOnCollide + - uid: 15892 + components: + - pos: 8.487601,-20.49545 + parent: 1 + type: Transform + - nextSound: 4924.3331231 + type: EmitSoundOnCollide + - uid: 15894 + components: + - pos: 8.690726,-20.636074 + parent: 1 + type: Transform + - nextSound: 4925.5631981 + type: EmitSoundOnCollide - proto: Pen entities: - uid: 7386 @@ -90472,6 +91462,8 @@ entities: - pos: -3.2828722,0.5082265 parent: 1 type: Transform + - nextSound: 740.9971394 + type: EmitSoundOnCollide - uid: 7649 components: - rot: -1.5707963267948966 rad @@ -90498,13 +91490,6 @@ entities: type: Transform - proto: PersonalAI entities: - - uid: 8601 - components: - - flags: SessionSpecific - type: MetaData - - pos: -10.493813,8.5347 - parent: 1 - type: Transform - uid: 8602 components: - flags: SessionSpecific @@ -90555,6 +91540,8 @@ entities: type: Transform - nextAttack: 913.0515942 type: MeleeWeapon + - nextSound: 913.2515942 + type: EmitSoundOnCollide - uid: 15787 components: - pos: -42.37278,-9.467924 @@ -90562,6 +91549,8 @@ entities: type: Transform - nextAttack: 914.6135531 type: MeleeWeapon + - nextSound: 914.8135531 + type: EmitSoundOnCollide - proto: PillCanister entities: - uid: 1985 @@ -90624,6 +91613,17 @@ entities: pos: 10.5,-12.5 parent: 1 type: Transform + - uid: 2730 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,57.5 + parent: 1 + type: Transform + - uid: 2787 + components: + - pos: -25.5,57.5 + parent: 1 + type: Transform - uid: 14821 components: - rot: 3.141592653589793 rad @@ -90705,17 +91705,6 @@ entities: pos: 11.5,-12.5 parent: 1 type: Transform - - uid: 14919 - components: - - pos: -25.5,57.5 - parent: 1 - type: Transform - - uid: 14920 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,57.5 - parent: 1 - type: Transform - uid: 14921 components: - rot: 3.141592653589793 rad @@ -90794,8 +91783,28 @@ entities: - pos: -70.479416,8.668143 parent: 1 type: Transform +- proto: PlushieNuke + entities: + - uid: 1414 + components: + - pos: 25.470646,41.49849 + parent: 1 + type: Transform + - nextSound: 3148.2863493 + type: EmitSoundOnCollide + - nextAttack: 3148.0863493 + type: MeleeWeapon - proto: PlushieSpaceLizard entities: + - uid: 4709 + components: + - pos: -92.400795,47.3703 + parent: 1 + type: Transform + - nextAttack: 1806.8520158 + type: MeleeWeapon + - nextSound: 1807.0520158 + type: EmitSoundOnCollide - uid: 5361 components: - pos: -54.508892,-1.4526689 @@ -90858,6 +91867,14 @@ entities: - pos: -24.5,25.5 parent: 1 type: Transform +- proto: PosterContrabandWehWatches + entities: + - uid: 10419 + components: + - rot: 1.5707963267948966 rad + pos: -61.5,9.5 + parent: 1 + type: Transform - proto: PosterLegit50thAnniversaryVintageReprint entities: - uid: 10080 @@ -90891,6 +91908,14 @@ entities: - pos: -18.5,40.5 parent: 1 type: Transform +- proto: PosterLegitPDAAd + entities: + - uid: 4550 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,36.5 + parent: 1 + type: Transform - proto: PosterLegitScience entities: - uid: 10081 @@ -90905,6 +91930,13 @@ entities: - pos: 7.5,53.5 parent: 1 type: Transform +- proto: PottedPlant1 + entities: + - uid: 4556 + components: + - pos: 23.5,37.5 + parent: 1 + type: Transform - proto: PottedPlantRandom entities: - uid: 277 @@ -90987,16 +92019,6 @@ entities: - pos: -55.5,12.5 parent: 1 type: Transform - - uid: 5349 - components: - - pos: -46.5,8.5 - parent: 1 - type: Transform - - uid: 5350 - components: - - pos: -51.5,10.5 - parent: 1 - type: Transform - uid: 5362 components: - pos: -50.5,-7.5 @@ -91168,11 +92190,15 @@ entities: - pos: -37.797993,-9.327299 parent: 1 type: Transform + - nextSound: 935.1675463 + type: EmitSoundOnCollide - uid: 15790 components: - pos: -37.454243,-9.483549 parent: 1 type: Transform + - nextSound: 936.3905763 + type: EmitSoundOnCollide - proto: PowerCellMicroreactor entities: - uid: 15037 @@ -91250,6 +92276,11 @@ entities: - pos: -52.5,17.5 parent: 1 type: Transform + - uid: 15972 + components: + - pos: -10.5,8.5 + parent: 1 + type: Transform - proto: Poweredlight entities: - uid: 381 @@ -91649,6 +92680,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver + - uid: 3486 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-13.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound - uid: 3696 components: - rot: 3.141592653589793 rad @@ -91979,21 +93018,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 5326 - components: - - pos: -53.5,10.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5327 - components: - - rot: -1.5707963267948966 rad - pos: -46.5,9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 5337 components: - rot: 3.141592653589793 rad @@ -92750,6 +93774,40 @@ entities: type: Transform - enabled: False type: AmbientSound +- proto: PoweredlightLED + entities: + - uid: 3903 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,8.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 4431 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,12.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 4433 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,10.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 4545 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,12.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound - proto: PoweredLightPostSmall entities: - uid: 15563 @@ -92776,6 +93834,13 @@ entities: type: Transform - enabled: False type: AmbientSound + - uid: 4596 + components: + - pos: 20.5,43.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound - uid: 15427 components: - pos: -41.5,58.5 @@ -92976,17 +94041,16 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 2852 + - uid: 2792 components: - rot: 1.5707963267948966 rad - pos: -17.5,28.5 + pos: -17.5,14.5 parent: 1 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2882 + - uid: 2852 components: - - pos: -8.5,12.5 + - rot: 1.5707963267948966 rad + pos: -17.5,28.5 parent: 1 type: Transform - powerLoad: 0 @@ -92998,13 +94062,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 2884 - components: - - pos: -16.5,14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 3317 components: - rot: 3.141592653589793 rad @@ -93099,14 +94156,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 5332 - components: - - rot: 1.5707963267948966 rad - pos: -50.5,12.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 5333 components: - pos: -49.5,1.5 @@ -93228,29 +94277,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 6313 - components: - - pos: 19.5,43.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6315 - components: - - rot: 3.141592653589793 rad - pos: 19.5,37.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6323 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,42.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 6340 components: - rot: 1.5707963267948966 rad @@ -93596,6 +94622,20 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver +- proto: PoweredSmallLightEmpty + entities: + - uid: 4594 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,39.5 + parent: 1 + type: Transform + - uid: 4595 + components: + - rot: 3.141592653589793 rad + pos: 21.5,37.5 + parent: 1 + type: Transform - proto: Protolathe entities: - uid: 254 @@ -93629,6 +94669,17 @@ entities: type: Forensics - proto: Rack entities: + - uid: 1447 + components: + - pos: -17.5,10.5 + parent: 1 + type: Transform + - uid: 1466 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,9.5 + parent: 1 + type: Transform - uid: 1832 components: - pos: 20.5,-2.5 @@ -93644,6 +94695,12 @@ entities: - pos: -3.5,15.5 parent: 1 type: Transform + - uid: 2796 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,8.5 + parent: 1 + type: Transform - uid: 2934 components: - rot: 3.141592653589793 rad @@ -93780,11 +94837,6 @@ entities: - pos: -47.5,-8.5 parent: 1 type: Transform - - uid: 5598 - components: - - pos: -49.5,8.5 - parent: 1 - type: Transform - uid: 5599 components: - pos: -43.5,13.5 @@ -93805,6 +94857,12 @@ entities: - pos: -23.5,26.5 parent: 1 type: Transform + - uid: 5642 + components: + - rot: 3.141592653589793 rad + pos: -43.5,66.5 + parent: 1 + type: Transform - uid: 5727 components: - pos: -20.5,29.5 @@ -93862,11 +94920,6 @@ entities: - pos: -27.5,35.5 parent: 1 type: Transform - - uid: 9977 - components: - - pos: -76.5,22.5 - parent: 1 - type: Transform - uid: 10372 components: - pos: -27.5,49.5 @@ -93967,6 +95020,11 @@ entities: pos: -67.5,13.5 parent: 1 type: Transform + - uid: 14919 + components: + - pos: -17.5,14.5 + parent: 1 + type: Transform - uid: 15650 components: - rot: 1.5707963267948966 rad @@ -93979,6 +95037,11 @@ entities: pos: -43.5,-9.5 parent: 1 type: Transform + - uid: 15981 + components: + - pos: -17.5,8.5 + parent: 1 + type: Transform - proto: RadiationCollector entities: - uid: 10498 @@ -94041,6 +95104,22 @@ entities: - pos: -100.5,18.5 parent: 1 type: Transform +- proto: RadioHandheld + entities: + - uid: 15945 + components: + - pos: 20.868422,-8.021761 + parent: 1 + type: Transform + - nextSound: 1035.5195858 + type: EmitSoundOnCollide + - uid: 15946 + components: + - pos: 20.649672,-8.146761 + parent: 1 + type: Transform + - nextSound: 1036.2258194 + type: EmitSoundOnCollide - proto: Railing entities: - uid: 1056 @@ -94467,11 +95546,6 @@ entities: - pos: 13.5,42.5 parent: 1 type: Transform - - uid: 10071 - components: - - pos: 22.5,36.5 - parent: 1 - type: Transform - uid: 10073 components: - pos: 25.5,-3.5 @@ -94592,11 +95666,6 @@ entities: - pos: 29.5,19.5 parent: 1 type: Transform - - uid: 10058 - components: - - pos: -14.5,15.5 - parent: 1 - type: Transform - uid: 10059 components: - pos: -10.5,26.5 @@ -94686,6 +95755,16 @@ entities: type: Transform - proto: RandomSpawner entities: + - uid: 4732 + components: + - pos: 20.5,38.5 + parent: 1 + type: Transform + - uid: 4733 + components: + - pos: 17.5,43.5 + parent: 1 + type: Transform - uid: 5756 components: - pos: -57.5,60.5 @@ -94972,11 +96051,6 @@ entities: - pos: -20.5,-10.5 parent: 1 type: Transform - - uid: 8084 - components: - - pos: -25.5,-13.5 - parent: 1 - type: Transform - uid: 8085 components: - pos: -24.5,-4.5 @@ -95097,11 +96171,6 @@ entities: - pos: 14.5,35.5 parent: 1 type: Transform - - uid: 8109 - components: - - pos: 15.5,39.5 - parent: 1 - type: Transform - uid: 8110 components: - pos: 9.5,39.5 @@ -95122,16 +96191,6 @@ entities: - pos: 14.5,48.5 parent: 1 type: Transform - - uid: 8114 - components: - - pos: 18.5,39.5 - parent: 1 - type: Transform - - uid: 8115 - components: - - pos: 22.5,41.5 - parent: 1 - type: Transform - uid: 8116 components: - pos: 11.5,51.5 @@ -95702,16 +96761,6 @@ entities: - pos: 13.5,-8.5 parent: 1 type: Transform - - uid: 8235 - components: - - pos: -8.5,8.5 - parent: 1 - type: Transform - - uid: 8236 - components: - - pos: -8.5,15.5 - parent: 1 - type: Transform - uid: 8237 components: - pos: -7.5,11.5 @@ -95722,11 +96771,6 @@ entities: - pos: -15.5,14.5 parent: 1 type: Transform - - uid: 8240 - components: - - pos: -15.5,17.5 - parent: 1 - type: Transform - uid: 8241 components: - pos: -16.5,20.5 @@ -95952,26 +96996,6 @@ entities: - pos: -41.5,15.5 parent: 1 type: Transform - - uid: 8287 - components: - - pos: -53.5,9.5 - parent: 1 - type: Transform - - uid: 8288 - components: - - pos: -49.5,10.5 - parent: 1 - type: Transform - - uid: 8289 - components: - - pos: -49.5,12.5 - parent: 1 - type: Transform - - uid: 8290 - components: - - pos: -46.5,10.5 - parent: 1 - type: Transform - uid: 8291 components: - pos: -53.5,1.5 @@ -96697,12 +97721,6 @@ entities: - pos: -77.5,20.5 parent: 1 type: Transform - - uid: 14820 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-10.5 - parent: 1 - type: Transform - uid: 14950 components: - pos: -70.5,25.5 @@ -96738,6 +97756,21 @@ entities: - pos: -47.5,64.5 parent: 1 type: Transform + - uid: 15846 + components: + - pos: 21.5,41.5 + parent: 1 + type: Transform + - uid: 15912 + components: + - pos: 16.5,34.5 + parent: 1 + type: Transform + - uid: 15916 + components: + - pos: 14.5,38.5 + parent: 1 + type: Transform - proto: RCD entities: - uid: 13615 @@ -96829,6 +97862,11 @@ entities: - pos: -10.5,-8.5 parent: 1 type: Transform + - uid: 3493 + components: + - pos: -30.5,51.5 + parent: 1 + type: Transform - proto: ReinforcedPlasmaWindow entities: - uid: 10827 @@ -97042,16 +98080,6 @@ entities: - pos: 24.5,41.5 parent: 1 type: Transform - - uid: 1439 - components: - - pos: 24.5,40.5 - parent: 1 - type: Transform - - uid: 1440 - components: - - pos: 24.5,39.5 - parent: 1 - type: Transform - uid: 1886 components: - pos: 13.5,29.5 @@ -97183,29 +98211,29 @@ entities: - pos: -60.5,-8.5 parent: 1 type: Transform - - uid: 4558 + - uid: 4576 components: - - pos: -54.5,7.5 + - pos: -48.5,24.5 parent: 1 type: Transform - - uid: 4559 + - uid: 4578 components: - - pos: -53.5,7.5 + - pos: 22.5,36.5 parent: 1 type: Transform - - uid: 4576 + - uid: 4592 components: - - pos: -48.5,24.5 + - pos: 16.5,42.5 parent: 1 type: Transform - - uid: 4594 + - uid: 4597 components: - - pos: -52.5,7.5 + - pos: 23.5,36.5 parent: 1 type: Transform - - uid: 4597 + - uid: 4598 components: - - pos: -49.5,7.5 + - pos: 16.5,43.5 parent: 1 type: Transform - uid: 4817 @@ -98478,6 +99506,16 @@ entities: - pos: -40.5,69.5 parent: 1 type: Transform + - uid: 15036 + components: + - pos: -51.5,30.5 + parent: 1 + type: Transform + - uid: 15119 + components: + - pos: -53.5,30.5 + parent: 1 + type: Transform - uid: 15382 components: - pos: -41.5,69.5 @@ -98498,6 +99536,11 @@ entities: - pos: -44.5,69.5 parent: 1 type: Transform + - uid: 15836 + components: + - pos: -52.5,30.5 + parent: 1 + type: Transform - proto: ResearchAndDevelopmentServer entities: - uid: 6943 @@ -98520,6 +99563,8 @@ entities: - pos: -12.132568,-0.28125 parent: 5016 type: Transform + - nextSound: 827.4333223 + type: EmitSoundOnCollide - proto: RightFootSlime entities: - uid: 12034 @@ -98527,6 +99572,8 @@ entities: - pos: -12.273193,-0.59375 parent: 5016 type: Transform + - nextSound: 830.3042936 + type: EmitSoundOnCollide - proto: RightHandSlime entities: - uid: 14164 @@ -98534,6 +99581,8 @@ entities: - pos: -12.007568,-0.3125 parent: 5016 type: Transform + - nextSound: 835.572286 + type: EmitSoundOnCollide - proto: RightLegSlime entities: - uid: 12035 @@ -98541,6 +99590,24 @@ entities: - pos: -11.945068,-0.828125 parent: 5016 type: Transform + - nextSound: 823.5432927 + type: EmitSoundOnCollide +- proto: RiotShield + entities: + - uid: 15978 + components: + - pos: -43.839657,66.30231 + parent: 1 + type: Transform + - nextSound: 1956.0771744 + type: EmitSoundOnCollide + - uid: 15980 + components: + - pos: -43.620907,66.30231 + parent: 1 + type: Transform + - nextSound: 1956.6601038 + type: EmitSoundOnCollide - proto: RubberStampApproved entities: - uid: 7583 @@ -98616,6 +99683,8 @@ entities: - pos: -11.304443,-0.375 parent: 5016 type: Transform + - nextSound: 805.4729255 + type: EmitSoundOnCollide - proto: SheetGlass entities: - uid: 262 @@ -98678,6 +99747,8 @@ entities: - pos: -2.5614014,-5.429352 parent: 5016 type: Transform + - nextSound: 1197.0304686 + type: EmitSoundOnCollide - proto: SheetPlasteel entities: - uid: 13603 @@ -98813,6 +99884,16 @@ entities: - port: Pressed uid: 340 type: SignalReceiver + - uid: 1446 + components: + - pos: -10.5,11.5 + parent: 1 + type: Transform + - uid: 1487 + components: + - pos: -10.5,12.5 + parent: 1 + type: Transform - uid: 4494 components: - pos: -48.5,20.5 @@ -98889,66 +99970,6 @@ entities: type: Transform - proto: ShuttersNormalOpen entities: - - uid: 2786 - components: - - pos: -14.5,14.5 - parent: 1 - type: Transform - - uid: 2787 - components: - - pos: -14.5,13.5 - parent: 1 - type: Transform - - uid: 2788 - components: - - pos: -14.5,12.5 - parent: 1 - type: Transform - - uid: 2789 - components: - - pos: -14.5,10.5 - parent: 1 - type: Transform - - uid: 2790 - components: - - pos: -14.5,9.5 - parent: 1 - type: Transform - - uid: 2791 - components: - - pos: -14.5,8.5 - parent: 1 - type: Transform - - uid: 2792 - components: - - pos: -10.5,8.5 - parent: 1 - type: Transform - - uid: 2793 - components: - - pos: -10.5,9.5 - parent: 1 - type: Transform - - uid: 2794 - components: - - pos: -10.5,11.5 - parent: 1 - type: Transform - - uid: 2795 - components: - - pos: -10.5,12.5 - parent: 1 - type: Transform - - uid: 2796 - components: - - pos: -10.5,14.5 - parent: 1 - type: Transform - - uid: 2797 - components: - - pos: -10.5,15.5 - parent: 1 - type: Transform - uid: 4498 components: - pos: -42.5,19.5 @@ -99028,6 +100049,15 @@ entities: - port: Pressed uid: 9959 type: SignalReceiver +- proto: ShuttleConsoleCircuitboard + entities: + - uid: 15896 + components: + - pos: 11.536212,-16.49545 + parent: 1 + type: Transform + - nextSound: 4867.3652851 + type: EmitSoundOnCollide - proto: SignalButton entities: - uid: 340 @@ -100078,6 +101108,36 @@ entities: pos: 15.5,50.5 parent: 1 type: Transform +- proto: SolarAssemblyPart + entities: + - uid: 15982 + components: + - pos: -7.5718555,8.615294 + parent: 1 + type: Transform + - nextSound: 2670.8496405 + type: EmitSoundOnCollide + - uid: 15983 + components: + - pos: -7.2749805,8.599669 + parent: 1 + type: Transform + - nextSound: 2671.7308054 + type: EmitSoundOnCollide + - uid: 15984 + components: + - pos: -7.3374805,8.490294 + parent: 1 + type: Transform + - nextSound: 2673.5055526 + type: EmitSoundOnCollide + - uid: 15985 + components: + - pos: -7.6812305,8.552794 + parent: 1 + type: Transform + - nextSound: 2672.6135452 + type: EmitSoundOnCollide - proto: SolarPanel entities: - uid: 803 @@ -100357,6 +101417,15 @@ entities: - pos: 28.5,-27.5 parent: 1 type: Transform +- proto: SolarTrackerElectronics + entities: + - uid: 15986 + components: + - pos: -7.5093555,8.3066 + parent: 1 + type: Transform + - nextSound: 2678.4536615 + type: EmitSoundOnCollide - proto: SpaceTickSpawner entities: - uid: 14993 @@ -100558,6 +101627,11 @@ entities: type: Transform - proto: SpawnMobMouse entities: + - uid: 4996 + components: + - pos: 10.5,39.5 + parent: 1 + type: Transform - uid: 15041 components: - pos: 7.5,-5.5 @@ -100573,11 +101647,6 @@ entities: - pos: 14.5,17.5 parent: 1 type: Transform - - uid: 15044 - components: - - pos: 13.5,39.5 - parent: 1 - type: Transform - uid: 15045 components: - pos: -7.5,46.5 @@ -101073,13 +102142,6 @@ entities: - pos: -47.5,61.5 parent: 1 type: Transform -- proto: SpawnVehicleATV - entities: - - uid: 5445 - components: - - pos: -24.5,-12.5 - parent: 1 - type: Transform - proto: SpawnVehicleJanicart entities: - uid: 7067 @@ -101142,6 +102204,17 @@ entities: - pos: -43.689987,61.308212 parent: 1 type: Transform +- proto: Spoon + entities: + - uid: 15910 + components: + - pos: -49.478313,9.54667 + parent: 1 + type: Transform + - nextAttack: 310.0400289 + type: MeleeWeapon + - nextSound: 310.2400289 + type: EmitSoundOnCollide - proto: SprayBottleSpaceCleaner entities: - uid: 7133 @@ -101253,52 +102326,6 @@ entities: pos: -34.5,35.5 parent: 1 type: Transform - - uid: 10438 - components: - - rot: 3.141592653589793 rad - pos: 17.5,40.5 - parent: 1 - type: Transform - - uid: 10439 - components: - - rot: 3.141592653589793 rad - pos: 18.5,40.5 - parent: 1 - type: Transform - - uid: 10440 - components: - - rot: 3.141592653589793 rad - pos: 19.5,40.5 - parent: 1 - type: Transform - - uid: 10441 - components: - - rot: 3.141592653589793 rad - pos: 20.5,40.5 - parent: 1 - type: Transform - - uid: 10442 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,37.5 - parent: 1 - type: Transform - - uid: 10443 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,38.5 - parent: 1 - type: Transform - - uid: 10444 - components: - - pos: 20.5,39.5 - parent: 1 - type: Transform - - uid: 10446 - components: - - pos: 21.5,39.5 - parent: 1 - type: Transform - proto: StorageCanister entities: - uid: 369 @@ -101306,11 +102333,6 @@ entities: - pos: 3.5,-8.5 parent: 1 type: Transform - - uid: 2401 - components: - - pos: 12.5,37.5 - parent: 1 - type: Transform - uid: 10737 components: - pos: -77.5,28.5 @@ -101343,31 +102365,43 @@ entities: - pos: -9.707703,-4.3320923 parent: 5016 type: Transform + - nextSound: 1112.2389351 + type: EmitSoundOnCollide - uid: 15592 components: - pos: -9.317078,-4.5352173 parent: 5016 type: Transform + - nextSound: 1112.6809665 + type: EmitSoundOnCollide - uid: 15593 components: - pos: -9.535828,-4.4570923 parent: 5016 type: Transform + - nextSound: 1113.8949395 + type: EmitSoundOnCollide - uid: 15594 components: - pos: -1.4420776,-7.1914673 parent: 5016 type: Transform + - nextSound: 1114.7959426 + type: EmitSoundOnCollide - uid: 15595 components: - pos: -1.6295776,-7.4414673 parent: 5016 type: Transform + - nextSound: 1115.5649352 + type: EmitSoundOnCollide - uid: 15596 components: - pos: -1.3952026,-7.5820923 parent: 5016 type: Transform + - nextSound: 1116.0239697 + type: EmitSoundOnCollide - proto: Stunbaton entities: - uid: 7999 @@ -101392,6 +102426,11 @@ entities: - pos: 11.5,-7.5 parent: 1 type: Transform + - uid: 608 + components: + - pos: -15.5,17.5 + parent: 1 + type: Transform - uid: 922 components: - pos: 25.5,1.5 @@ -101412,11 +102451,6 @@ entities: - pos: -9.5,18.5 parent: 1 type: Transform - - uid: 2730 - components: - - pos: -15.5,16.5 - parent: 1 - type: Transform - uid: 3932 components: - pos: -24.5,-3.5 @@ -101626,11 +102660,6 @@ entities: - pos: -41.5,64.5 parent: 1 type: Transform - - uid: 7188 - components: - - pos: -47.5,65.5 - parent: 1 - type: Transform - uid: 14425 components: - pos: -42.5,66.5 @@ -101809,7 +102838,9 @@ entities: pos: -11.5,13.5 parent: 1 type: Transform - - id: Store Area + - setupAvailableNetworks: + - SurveillanceCameraGeneral + id: Store Area type: SurveillanceCamera - uid: 13728 components: @@ -102137,14 +103168,6 @@ entities: type: Transform - id: Evac Corridor Checkpoint type: SurveillanceCamera - - uid: 13710 - components: - - rot: 3.141592653589793 rad - pos: -51.5,10.5 - parent: 1 - type: Transform - - id: Arrivals Checkpoint - type: SurveillanceCamera - uid: 13854 components: - rot: -1.5707963267948966 rad @@ -102278,18 +103301,15 @@ entities: - pos: -7.0614014,-8.382477 parent: 5016 type: Transform + - nextSound: 1220.0454897 + type: EmitSoundOnCollide - uid: 15618 components: - pos: -6.8582764,-8.413727 parent: 5016 type: Transform -- proto: SyringeEphedrine - entities: - - uid: 14369 - components: - - pos: -60.77372,10.617107 - parent: 1 - type: Transform + - nextSound: 1220.7914853 + type: EmitSoundOnCollide - proto: SyringeSpaceacillin entities: - uid: 2366 @@ -102612,11 +103632,6 @@ entities: - pos: -10.5,12.5 parent: 1 type: Transform - - uid: 2772 - components: - - pos: -14.5,12.5 - parent: 1 - type: Transform - uid: 2773 components: - pos: -14.5,13.5 @@ -102812,6 +103827,11 @@ entities: - pos: -40.5,27.5 parent: 1 type: Transform + - uid: 4557 + components: + - pos: 23.5,40.5 + parent: 1 + type: Transform - uid: 5062 components: - rot: 1.5707963267948966 rad @@ -102836,11 +103856,6 @@ entities: pos: -1.5,-0.5 parent: 5016 type: Transform - - uid: 5195 - components: - - pos: -54.5,8.5 - parent: 1 - type: Transform - uid: 5250 components: - pos: -53.5,17.5 @@ -102911,19 +103926,14 @@ entities: - pos: -47.5,27.5 parent: 1 type: Transform - - uid: 5311 - components: - - pos: -51.5,7.5 - parent: 1 - type: Transform - - uid: 5312 + - uid: 5325 components: - - pos: -50.5,7.5 + - pos: 23.5,38.5 parent: 1 type: Transform - - uid: 5338 + - uid: 5339 components: - - pos: -53.5,8.5 + - pos: 23.5,42.5 parent: 1 type: Transform - uid: 5407 @@ -103351,6 +104361,16 @@ entities: - pos: 20.5,32.5 parent: 1 type: Transform + - uid: 9070 + components: + - pos: 17.5,42.5 + parent: 1 + type: Transform + - uid: 9082 + components: + - pos: 18.5,40.5 + parent: 1 + type: Transform - uid: 9226 components: - pos: -63.5,41.5 @@ -103611,26 +104631,6 @@ entities: - pos: -34.5,52.5 parent: 1 type: Transform - - uid: 10410 - components: - - pos: 20.5,37.5 - parent: 1 - type: Transform - - uid: 10411 - components: - - pos: 20.5,38.5 - parent: 1 - type: Transform - - uid: 10412 - components: - - pos: 21.5,38.5 - parent: 1 - type: Transform - - uid: 10413 - components: - - pos: 22.5,38.5 - parent: 1 - type: Transform - proto: TableFrame entities: - uid: 1934 @@ -103771,6 +104771,11 @@ entities: type: Transform - proto: TableReinforced entities: + - uid: 1327 + components: + - pos: 10.5,-13.5 + parent: 1 + type: Transform - uid: 2969 components: - rot: 1.5707963267948966 rad @@ -104072,6 +105077,18 @@ entities: pos: -45.5,-6.5 parent: 1 type: Transform + - uid: 5342 + components: + - rot: 3.141592653589793 rad + pos: -50.5,9.5 + parent: 1 + type: Transform + - uid: 5343 + components: + - rot: 3.141592653589793 rad + pos: -48.5,9.5 + parent: 1 + type: Transform - uid: 5351 components: - pos: -54.5,-5.5 @@ -104097,6 +105114,12 @@ entities: - pos: -53.5,-1.5 parent: 1 type: Transform + - uid: 6077 + components: + - rot: 3.141592653589793 rad + pos: -49.5,9.5 + parent: 1 + type: Transform - uid: 6243 components: - pos: -9.5,44.5 @@ -104305,36 +105328,6 @@ entities: pos: -31.5,-2.5 parent: 1 type: Transform - - uid: 10414 - components: - - pos: 17.5,41.5 - parent: 1 - type: Transform - - uid: 10415 - components: - - pos: 18.5,43.5 - parent: 1 - type: Transform - - uid: 10416 - components: - - pos: 19.5,43.5 - parent: 1 - type: Transform - - uid: 10418 - components: - - pos: 18.5,41.5 - parent: 1 - type: Transform - - uid: 10419 - components: - - pos: 19.5,41.5 - parent: 1 - type: Transform - - uid: 10420 - components: - - pos: 20.5,41.5 - parent: 1 - type: Transform - uid: 10702 components: - rot: -1.5707963267948966 rad @@ -104601,6 +105594,11 @@ entities: pos: 6.5,30.5 parent: 1 type: Transform + - uid: 1664 + components: + - pos: 17.5,-11.5 + parent: 1 + type: Transform - uid: 11859 components: - pos: -11.5,3.5 @@ -104702,11 +105700,29 @@ entities: type: Transform - proto: ToolboxElectricalFilled entities: + - uid: 1457 + components: + - pos: -7.4985166,9.580302 + parent: 1 + type: Transform + - nextAttack: 2418.962414 + type: MeleeWeapon + - nextSound: 2419.162414 + type: EmitSoundOnCollide - uid: 1873 components: - pos: 25.496317,-7.483915 parent: 1 type: Transform + - uid: 2795 + components: + - pos: -7.4985166,9.736552 + parent: 1 + type: Transform + - nextAttack: 2418.4623748 + type: MeleeWeapon + - nextSound: 2418.6623748 + type: EmitSoundOnCollide - uid: 5646 components: - pos: -25.110394,26.456669 @@ -104721,6 +105737,8 @@ entities: type: Transform - nextAttack: 459.0293612 type: MeleeWeapon + - nextSound: 459.2293612 + type: EmitSoundOnCollide - uid: 13608 components: - pos: -63.54383,25.748787 @@ -104752,8 +105770,55 @@ entities: type: Transform - nextAttack: 992.3779356 type: MeleeWeapon +- proto: ToolboxMechanical + entities: + - uid: 4736 + components: + - pos: -8.936694,44.61425 + parent: 1 + type: Transform + - nextAttack: 3928.1668951 + type: MeleeWeapon + - nextSound: 3928.3668951 + type: EmitSoundOnCollide + - uid: 4738 + components: + - pos: -9.577319,44.598625 + parent: 1 + type: Transform + - nextAttack: 3926.9354055 + type: MeleeWeapon + - nextSound: 3927.1354055 + type: EmitSoundOnCollide + - uid: 5002 + components: + - pos: -8.436694,44.55175 + parent: 1 + type: Transform + - nextAttack: 3929.4354046 + type: MeleeWeapon + - nextSound: 3929.6354046 + type: EmitSoundOnCollide - proto: ToolboxMechanicalFilled entities: + - uid: 1465 + components: + - pos: -7.51254,9.267802 + parent: 1 + type: Transform + - nextAttack: 2424.1281414 + type: MeleeWeapon + - nextSound: 2424.3281414 + type: EmitSoundOnCollide + - uid: 5641 + components: + - pos: -7.51254,9.424052 + parent: 1 + type: Transform + - nextAttack: 2423.5644385 + type: MeleeWeapon + - nextSound: 2423.7644385 + type: EmitSoundOnCollide - uid: 5644 components: - pos: -25.165659,26.690647 @@ -104766,6 +105831,8 @@ entities: type: Transform - nextAttack: 463.4473204 type: MeleeWeapon + - nextSound: 463.6473204 + type: EmitSoundOnCollide - uid: 10920 components: - pos: -11.49985,59.57393 @@ -104788,6 +105855,8 @@ entities: - pos: -11.866943,-0.46875 parent: 5016 type: Transform + - nextSound: 820.4922997 + type: EmitSoundOnCollide - proto: ToyDeathRipley entities: - uid: 3184 @@ -104872,6 +105941,11 @@ entities: - pos: -69.5,11.5 parent: 1 type: Transform + - uid: 15942 + components: + - pos: 18.5,-8.5 + parent: 1 + type: Transform - proto: TrashBananaPeel entities: - uid: 15123 @@ -104889,6 +105963,22 @@ entities: - pos: -42.237038,28.413582 parent: 1 type: Transform +- proto: TrashBananaPeelExplosive + entities: + - uid: 2791 + components: + - pos: -26.575481,55.467476 + parent: 1 + type: Transform + - nextSound: 71.2489562 + type: EmitSoundOnCollide + - uid: 15837 + components: + - pos: -29.528606,53.2956 + parent: 1 + type: Transform + - nextSound: 70.565892 + type: EmitSoundOnCollide - proto: trayScanner entities: - uid: 15559 @@ -105146,6 +106236,14 @@ entities: pos: -29.5,42.5 parent: 1 type: Transform +- proto: UraniumWindow + entities: + - uid: 2696 + components: + - rot: 3.141592653589793 rad + pos: -24.5,30.5 + parent: 1 + type: Transform - proto: Vaccinator entities: - uid: 2361 @@ -105363,6 +106461,15 @@ entities: - pos: -6.5,29.5 parent: 1 type: Transform + - uid: 3490 + components: + - flags: SessionSpecific + type: MetaData + - pos: -46.5,8.5 + parent: 1 + type: Transform + - nextEmpEject: 159.7465022 + type: VendingMachine - proto: VendingMachineCoffee entities: - uid: 2662 @@ -105386,6 +106493,15 @@ entities: - pos: -16.5,3.5 parent: 1 type: Transform + - uid: 4563 + components: + - flags: SessionSpecific + type: MetaData + - pos: 19.5,37.5 + parent: 1 + type: Transform + - nextEmpEject: 2953.9035541 + type: VendingMachine - uid: 7241 components: - flags: SessionSpecific @@ -105619,6 +106735,15 @@ entities: - pos: 5.5,31.5 parent: 1 type: Transform + - uid: 5557 + components: + - flags: SessionSpecific + type: MetaData + - pos: -14.5,12.5 + parent: 1 + type: Transform + - nextEmpEject: 2931.7355937 + type: VendingMachine - uid: 15572 components: - flags: SessionSpecific @@ -105769,6 +106894,17 @@ entities: - pos: -25.5,34.5 parent: 1 type: Transform +- proto: VendingMachineSnackGreen + entities: + - uid: 4564 + components: + - flags: SessionSpecific + type: MetaData + - pos: 20.5,37.5 + parent: 1 + type: Transform + - nextEmpEject: 2966.1870196 + type: VendingMachine - proto: VendingMachineTankDispenserEngineering entities: - uid: 9210 @@ -105819,13 +106955,6 @@ entities: - pos: -23.5,29.5 parent: 1 type: Transform - - uid: 8239 - components: - - flags: SessionSpecific - type: MetaData - - pos: -17.5,8.5 - parent: 1 - type: Transform - uid: 15120 components: - flags: SessionSpecific @@ -105853,6 +106982,15 @@ entities: type: Transform - proto: VendingMachineWinter entities: + - uid: 3904 + components: + - flags: SessionSpecific + type: MetaData + - pos: -46.5,10.5 + parent: 1 + type: Transform + - nextEmpEject: 1690.1291762 + type: VendingMachine - uid: 7342 components: - flags: SessionSpecific @@ -106739,6 +107877,11 @@ entities: - pos: 16.5,27.5 parent: 1 type: Transform + - uid: 1415 + components: + - pos: -30.5,53.5 + parent: 1 + type: Transform - uid: 1426 components: - rot: 1.5707963267948966 rad @@ -107381,11 +108524,6 @@ entities: - pos: -39.5,8.5 parent: 1 type: Transform - - uid: 4127 - components: - - pos: -49.5,13.5 - parent: 1 - type: Transform - uid: 4200 components: - pos: -51.5,22.5 @@ -107526,106 +108664,6 @@ entities: - pos: -48.5,22.5 parent: 1 type: Transform - - uid: 4543 - components: - - pos: -50.5,13.5 - parent: 1 - type: Transform - - uid: 4544 - components: - - pos: -48.5,13.5 - parent: 1 - type: Transform - - uid: 4545 - components: - - pos: -45.5,7.5 - parent: 1 - type: Transform - - uid: 4546 - components: - - pos: -45.5,13.5 - parent: 1 - type: Transform - - uid: 4547 - components: - - pos: -55.5,11.5 - parent: 1 - type: Transform - - uid: 4548 - components: - - pos: -46.5,13.5 - parent: 1 - type: Transform - - uid: 4549 - components: - - pos: -55.5,9.5 - parent: 1 - type: Transform - - uid: 4550 - components: - - pos: -45.5,12.5 - parent: 1 - type: Transform - - uid: 4556 - components: - - pos: -48.5,11.5 - parent: 1 - type: Transform - - uid: 4557 - components: - - pos: -48.5,12.5 - parent: 1 - type: Transform - - uid: 4560 - components: - - pos: -55.5,10.5 - parent: 1 - type: Transform - - uid: 4561 - components: - - pos: -45.5,11.5 - parent: 1 - type: Transform - - uid: 4562 - components: - - pos: -55.5,8.5 - parent: 1 - type: Transform - - uid: 4563 - components: - - pos: -45.5,9.5 - parent: 1 - type: Transform - - uid: 4564 - components: - - pos: -45.5,8.5 - parent: 1 - type: Transform - - uid: 4565 - components: - - pos: -47.5,13.5 - parent: 1 - type: Transform - - uid: 4566 - components: - - pos: -51.5,13.5 - parent: 1 - type: Transform - - uid: 4567 - components: - - pos: -54.5,11.5 - parent: 1 - type: Transform - - uid: 4568 - components: - - pos: -53.5,11.5 - parent: 1 - type: Transform - - uid: 4569 - components: - - pos: -52.5,11.5 - parent: 1 - type: Transform - uid: 4572 components: - pos: -46.5,26.5 @@ -107641,16 +108679,6 @@ entities: - pos: -48.5,26.5 parent: 1 type: Transform - - uid: 4577 - components: - - pos: -55.5,7.5 - parent: 1 - type: Transform - - uid: 4578 - components: - - pos: -45.5,10.5 - parent: 1 - type: Transform - uid: 4583 components: - pos: -46.5,22.5 @@ -107666,19 +108694,9 @@ entities: - pos: -53.5,23.5 parent: 1 type: Transform - - uid: 4592 - components: - - pos: -51.5,12.5 - parent: 1 - type: Transform - - uid: 4593 - components: - - pos: -51.5,11.5 - parent: 1 - type: Transform - - uid: 4598 + - uid: 4712 components: - - pos: -48.5,7.5 + - pos: 16.5,40.5 parent: 1 type: Transform - uid: 4744 @@ -108100,6 +109118,11 @@ entities: - pos: -17.5,21.5 parent: 1 type: Transform + - uid: 5679 + components: + - pos: 17.5,-7.5 + parent: 1 + type: Transform - uid: 5681 components: - pos: -18.5,25.5 @@ -108647,6 +109670,11 @@ entities: pos: 16.5,47.5 parent: 1 type: Transform + - uid: 6059 + components: + - pos: 19.5,-9.5 + parent: 1 + type: Transform - uid: 6061 components: - rot: -1.5707963267948966 rad @@ -108671,6 +109699,31 @@ entities: pos: 19.5,47.5 parent: 1 type: Transform + - uid: 6266 + components: + - pos: 16.5,39.5 + parent: 1 + type: Transform + - uid: 6267 + components: + - pos: -22.5,-11.5 + parent: 1 + type: Transform + - uid: 6268 + components: + - pos: 18.5,36.5 + parent: 1 + type: Transform + - uid: 6269 + components: + - pos: 16.5,41.5 + parent: 1 + type: Transform + - uid: 6270 + components: + - pos: -26.5,51.5 + parent: 1 + type: Transform - uid: 6345 components: - rot: 3.141592653589793 rad @@ -109375,7 +110428,7 @@ entities: type: Transform - uid: 7107 components: - - pos: -43.5,66.5 + - pos: 18.5,-6.5 parent: 1 type: Transform - uid: 7108 @@ -109594,6 +110647,11 @@ entities: pos: -45.5,69.5 parent: 1 type: Transform + - uid: 7188 + components: + - pos: 20.5,-6.5 + parent: 1 + type: Transform - uid: 7190 components: - rot: 3.141592653589793 rad @@ -109891,6 +110949,11 @@ entities: - pos: -14.5,-8.5 parent: 5016 type: Transform + - uid: 7517 + components: + - pos: 21.5,-6.5 + parent: 1 + type: Transform - uid: 7646 components: - pos: -44.5,63.5 @@ -109971,6 +111034,21 @@ entities: - pos: -11.5,-9.5 parent: 5016 type: Transform + - uid: 8109 + components: + - pos: 21.5,-7.5 + parent: 1 + type: Transform + - uid: 8114 + components: + - pos: 19.5,36.5 + parent: 1 + type: Transform + - uid: 8235 + components: + - pos: 21.5,-8.5 + parent: 1 + type: Transform - uid: 8324 components: - pos: -73.5,13.5 @@ -109986,6 +111064,11 @@ entities: - pos: -73.5,11.5 parent: 1 type: Transform + - uid: 9077 + components: + - pos: 21.5,36.5 + parent: 1 + type: Transform - uid: 9162 components: - pos: -68.5,57.5 @@ -111378,6 +112461,111 @@ entities: pos: -10.5,4.5 parent: 5016 type: Transform + - uid: 11897 + components: + - pos: 17.5,36.5 + parent: 1 + type: Transform + - uid: 11898 + components: + - pos: -23.5,-9.5 + parent: 1 + type: Transform + - uid: 11899 + components: + - pos: -26.5,-9.5 + parent: 1 + type: Transform + - uid: 11900 + components: + - pos: -22.5,-13.5 + parent: 1 + type: Transform + - uid: 11901 + components: + - pos: -26.5,-11.5 + parent: 1 + type: Transform + - uid: 11902 + components: + - pos: -26.5,-12.5 + parent: 1 + type: Transform + - uid: 11904 + components: + - pos: -26.5,52.5 + parent: 1 + type: Transform + - uid: 11905 + components: + - pos: -27.5,51.5 + parent: 1 + type: Transform + - uid: 11906 + components: + - pos: -29.5,51.5 + parent: 1 + type: Transform + - uid: 11908 + components: + - pos: -30.5,54.5 + parent: 1 + type: Transform + - uid: 11910 + components: + - pos: 16.5,36.5 + parent: 1 + type: Transform + - uid: 11911 + components: + - pos: 20.5,36.5 + parent: 1 + type: Transform + - uid: 11912 + components: + - pos: -22.5,-12.5 + parent: 1 + type: Transform + - uid: 11913 + components: + - pos: -22.5,-10.5 + parent: 1 + type: Transform + - uid: 11914 + components: + - pos: -22.5,-9.5 + parent: 1 + type: Transform + - uid: 11915 + components: + - pos: -26.5,-10.5 + parent: 1 + type: Transform + - uid: 11916 + components: + - pos: -25.5,-9.5 + parent: 1 + type: Transform + - uid: 11918 + components: + - pos: -30.5,52.5 + parent: 1 + type: Transform + - uid: 11919 + components: + - pos: -30.5,55.5 + parent: 1 + type: Transform + - uid: 11920 + components: + - pos: -28.5,51.5 + parent: 1 + type: Transform + - uid: 11921 + components: + - pos: -25.5,52.5 + parent: 1 + type: Transform - uid: 13794 components: - rot: 1.5707963267948966 rad @@ -111423,14 +112611,14 @@ entities: - pos: 26.5,29.5 parent: 1 type: Transform - - uid: 14878 + - uid: 14918 components: - - pos: -46.5,7.5 + - pos: -24.5,58.5 parent: 1 type: Transform - - uid: 14918 + - uid: 14920 components: - - pos: -24.5,58.5 + - pos: 17.5,-9.5 parent: 1 type: Transform - uid: 15333 @@ -111737,7 +112925,8 @@ entities: type: Transform - uid: 525 components: - - pos: 17.5,-7.5 + - rot: 1.5707963267948966 rad + pos: -9.5,17.5 parent: 1 type: Transform - uid: 528 @@ -111755,34 +112944,15 @@ entities: - pos: 10.5,-8.5 parent: 1 type: Transform - - uid: 577 - components: - - pos: 19.5,-9.5 - parent: 1 - type: Transform - - uid: 608 - components: - - pos: 18.5,-6.5 - parent: 1 - type: Transform - - uid: 609 - components: - - pos: 20.5,-6.5 - parent: 1 - type: Transform - uid: 610 components: - - pos: 21.5,-6.5 - parent: 1 - type: Transform - - uid: 611 - components: - - pos: 21.5,-7.5 + - rot: 3.141592653589793 rad + pos: -15.5,16.5 parent: 1 type: Transform - - uid: 612 + - uid: 614 components: - - pos: 21.5,-8.5 + - pos: -16.5,16.5 parent: 1 type: Transform - uid: 632 @@ -112572,18 +113742,6 @@ entities: pos: 18.5,44.5 parent: 1 type: Transform - - uid: 1421 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,36.5 - parent: 1 - type: Transform - - uid: 1423 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,36.5 - parent: 1 - type: Transform - uid: 1442 components: - rot: 1.5707963267948966 rad @@ -112602,18 +113760,6 @@ entities: pos: -7.5,16.5 parent: 1 type: Transform - - uid: 1446 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,16.5 - parent: 1 - type: Transform - - uid: 1447 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,16.5 - parent: 1 - type: Transform - uid: 1449 components: - rot: 1.5707963267948966 rad @@ -112686,12 +113832,6 @@ entities: pos: -8.5,20.5 parent: 1 type: Transform - - uid: 1469 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,18.5 - parent: 1 - type: Transform - uid: 1471 components: - rot: 1.5707963267948966 rad @@ -112746,12 +113886,6 @@ entities: pos: -14.5,7.5 parent: 1 type: Transform - - uid: 1487 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,7.5 - parent: 1 - type: Transform - uid: 1492 components: - rot: 1.5707963267948966 rad @@ -112782,23 +113916,6 @@ entities: pos: -14.5,11.5 parent: 1 type: Transform - - uid: 1498 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,15.5 - parent: 1 - type: Transform - - uid: 1499 - components: - - pos: -15.5,15.5 - parent: 1 - type: Transform - - uid: 1500 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,15.5 - parent: 1 - type: Transform - uid: 1503 components: - rot: 1.5707963267948966 rad @@ -112826,11 +113943,6 @@ entities: - pos: 7.5,27.5 parent: 1 type: Transform - - uid: 1663 - components: - - pos: 17.5,-9.5 - parent: 1 - type: Transform - uid: 1883 components: - pos: 19.5,27.5 @@ -113226,31 +114338,6 @@ entities: - pos: -30.5,-9.5 parent: 1 type: Transform - - uid: 3476 - components: - - pos: -23.5,-9.5 - parent: 1 - type: Transform - - uid: 3477 - components: - - pos: -26.5,-9.5 - parent: 1 - type: Transform - - uid: 3486 - components: - - pos: -22.5,-13.5 - parent: 1 - type: Transform - - uid: 3493 - components: - - pos: -26.5,-11.5 - parent: 1 - type: Transform - - uid: 3499 - components: - - pos: -26.5,-12.5 - parent: 1 - type: Transform - uid: 3503 components: - pos: -19.5,-12.5 @@ -113421,11 +114508,6 @@ entities: - pos: -40.5,22.5 parent: 1 type: Transform - - uid: 4201 - components: - - pos: -51.5,30.5 - parent: 1 - type: Transform - uid: 4202 components: - pos: -50.5,30.5 @@ -113716,6 +114798,12 @@ entities: - pos: -50.5,-3.5 parent: 1 type: Transform + - uid: 5349 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,9.5 + parent: 1 + type: Transform - uid: 5374 components: - pos: -46.5,-10.5 @@ -113885,11 +114973,6 @@ entities: - pos: 9.5,51.5 parent: 1 type: Transform - - uid: 6060 - components: - - pos: 16.5,41.5 - parent: 1 - type: Transform - uid: 6079 components: - rot: -1.5707963267948966 rad @@ -113920,31 +115003,6 @@ entities: pos: -26.5,47.5 parent: 1 type: Transform - - uid: 6669 - components: - - pos: -26.5,52.5 - parent: 1 - type: Transform - - uid: 6671 - components: - - pos: -27.5,51.5 - parent: 1 - type: Transform - - uid: 6673 - components: - - pos: -29.5,51.5 - parent: 1 - type: Transform - - uid: 6674 - components: - - pos: -30.5,51.5 - parent: 1 - type: Transform - - uid: 6676 - components: - - pos: -30.5,54.5 - parent: 1 - type: Transform - uid: 6691 components: - rot: 1.5707963267948966 rad @@ -114352,6 +115410,12 @@ entities: pos: -67.5,48.5 parent: 1 type: Transform + - uid: 8240 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,17.5 + parent: 1 + type: Transform - uid: 9157 components: - rot: 1.5707963267948966 rad @@ -114646,11 +115710,6 @@ entities: - pos: -59.5,16.5 parent: 1 type: Transform - - uid: 9914 - components: - - pos: -59.5,12.5 - parent: 1 - type: Transform - uid: 9917 components: - pos: -59.5,9.5 @@ -114736,6 +115795,96 @@ entities: - pos: -17.5,16.5 parent: 1 type: Transform + - uid: 10436 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,13.5 + parent: 1 + type: Transform + - uid: 10437 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,13.5 + parent: 1 + type: Transform + - uid: 10438 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,13.5 + parent: 1 + type: Transform + - uid: 10439 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,7.5 + parent: 1 + type: Transform + - uid: 10442 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,13.5 + parent: 1 + type: Transform + - uid: 10444 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,12.5 + parent: 1 + type: Transform + - uid: 10447 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,10.5 + parent: 1 + type: Transform + - uid: 10448 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,11.5 + parent: 1 + type: Transform + - uid: 10449 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,8.5 + parent: 1 + type: Transform + - uid: 10451 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,8.5 + parent: 1 + type: Transform + - uid: 10452 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,13.5 + parent: 1 + type: Transform + - uid: 10454 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,11.5 + parent: 1 + type: Transform + - uid: 10455 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,11.5 + parent: 1 + type: Transform + - uid: 10457 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,7.5 + parent: 1 + type: Transform + - uid: 10458 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,9.5 + parent: 1 + type: Transform - uid: 10843 components: - pos: -14.5,2.5 @@ -114813,6 +115962,18 @@ entities: - pos: -8.5,2.5 parent: 5016 type: Transform + - uid: 11886 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,12.5 + parent: 1 + type: Transform + - uid: 11887 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,11.5 + parent: 1 + type: Transform - uid: 14010 components: - pos: -68.5,9.5 @@ -115686,18 +116847,6 @@ entities: - pos: 5.5,21.5 parent: 1 type: Transform - - uid: 1415 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,36.5 - parent: 1 - type: Transform - - uid: 1418 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,36.5 - parent: 1 - type: Transform - uid: 1419 components: - rot: -1.5707963267948966 rad @@ -115732,12 +116881,6 @@ entities: pos: -6.5,12.5 parent: 1 type: Transform - - uid: 1457 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,7.5 - parent: 1 - type: Transform - uid: 1459 components: - rot: -1.5707963267948966 rad @@ -115802,6 +116945,18 @@ entities: - pos: -18.5,12.5 parent: 1 type: Transform + - uid: 1499 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,13.5 + parent: 1 + type: Transform + - uid: 1500 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,10.5 + parent: 1 + type: Transform - uid: 1501 components: - rot: -1.5707963267948966 rad @@ -115824,11 +116979,23 @@ entities: - pos: -18.5,9.5 parent: 1 type: Transform + - uid: 1507 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,7.5 + parent: 1 + type: Transform - uid: 1512 components: - pos: -14.5,16.5 parent: 1 type: Transform + - uid: 1588 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,11.5 + parent: 1 + type: Transform - uid: 1627 components: - pos: 9.5,27.5 @@ -116215,36 +117382,12 @@ entities: pos: -30.5,-10.5 parent: 1 type: Transform - - uid: 3478 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-12.5 - parent: 1 - type: Transform - - uid: 3485 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-10.5 - parent: 1 - type: Transform - - uid: 3490 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-9.5 - parent: 1 - type: Transform - uid: 3492 components: - rot: -1.5707963267948966 rad pos: -28.5,-9.5 parent: 1 type: Transform - - uid: 3496 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-10.5 - parent: 1 - type: Transform - uid: 3521 components: - pos: -35.5,2.5 @@ -116368,16 +117511,6 @@ entities: - pos: -49.5,30.5 parent: 1 type: Transform - - uid: 4199 - components: - - pos: -53.5,30.5 - parent: 1 - type: Transform - - uid: 4203 - components: - - pos: -52.5,30.5 - parent: 1 - type: Transform - uid: 4204 components: - pos: -51.5,18.5 @@ -116551,11 +117684,6 @@ entities: - pos: -24.5,-5.5 parent: 1 type: Transform - - uid: 5459 - components: - - pos: -25.5,-9.5 - parent: 1 - type: Transform - uid: 5725 components: - pos: -43.5,48.5 @@ -116705,12 +117833,6 @@ entities: pos: 8.5,45.5 parent: 1 type: Transform - - uid: 6057 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,43.5 - parent: 1 - type: Transform - uid: 6066 components: - rot: -1.5707963267948966 rad @@ -116735,30 +117857,6 @@ entities: pos: -19.5,58.5 parent: 1 type: Transform - - uid: 6668 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,52.5 - parent: 1 - type: Transform - - uid: 6670 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,55.5 - parent: 1 - type: Transform - - uid: 6675 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,51.5 - parent: 1 - type: Transform - - uid: 6678 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,52.5 - parent: 1 - type: Transform - uid: 6695 components: - rot: -1.5707963267948966 rad @@ -117279,16 +118377,6 @@ entities: - pos: -59.5,17.5 parent: 1 type: Transform - - uid: 9906 - components: - - pos: -59.5,14.5 - parent: 1 - type: Transform - - uid: 9911 - components: - - pos: -59.5,13.5 - parent: 1 - type: Transform - uid: 9915 components: - pos: -60.5,9.5 @@ -117324,6 +118412,36 @@ entities: - pos: -61.5,15.5 parent: 1 type: Transform + - uid: 10440 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,13.5 + parent: 1 + type: Transform + - uid: 10441 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,11.5 + parent: 1 + type: Transform + - uid: 10450 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,10.5 + parent: 1 + type: Transform + - uid: 10453 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,13.5 + parent: 1 + type: Transform + - uid: 10456 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,11.5 + parent: 1 + type: Transform - uid: 13310 components: - pos: 1.5,13.5 @@ -117440,6 +118558,92 @@ entities: pos: 11.5,-15.5 parent: 1 type: Transform +- proto: WallWood + entities: + - uid: 3476 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,7.5 + parent: 1 + type: Transform + - uid: 3496 + components: + - rot: 3.141592653589793 rad + pos: -49.5,11.5 + parent: 1 + type: Transform + - uid: 5315 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,7.5 + parent: 1 + type: Transform + - uid: 5321 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,7.5 + parent: 1 + type: Transform + - uid: 5323 + components: + - rot: -1.5707963267948966 rad + pos: -52.5,7.5 + parent: 1 + type: Transform + - uid: 5347 + components: + - rot: 3.141592653589793 rad + pos: -48.5,12.5 + parent: 1 + type: Transform + - uid: 5348 + components: + - rot: 3.141592653589793 rad + pos: -48.5,11.5 + parent: 1 + type: Transform + - uid: 5445 + components: + - rot: 3.141592653589793 rad + pos: -53.5,9.5 + parent: 1 + type: Transform + - uid: 6154 + components: + - rot: -1.5707963267948966 rad + pos: -54.5,7.5 + parent: 1 + type: Transform + - uid: 10443 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,9.5 + parent: 1 + type: Transform + - uid: 10446 + components: + - rot: 3.141592653589793 rad + pos: -46.5,11.5 + parent: 1 + type: Transform + - uid: 11894 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,7.5 + parent: 1 + type: Transform + - uid: 13292 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,7.5 + parent: 1 + type: Transform + - uid: 14820 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,7.5 + parent: 1 + type: Transform - proto: WardrobeCargoFilled entities: - uid: 3664 @@ -117974,6 +119178,12 @@ entities: type: Transform - proto: WeaponCapacitorRecharger entities: + - uid: 3134 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,10.5 + parent: 1 + type: Transform - uid: 7965 components: - pos: -60.5,50.5 @@ -118024,6 +119234,15 @@ entities: - pos: 16.491018,-8.470055 parent: 1 type: Transform + - uid: 15939 + components: + - pos: 20.337172,-7.3498864 + parent: 1 + type: Transform + - nextFire: 1029.7572637 + type: Gun + - nextSound: 1029.9572637 + type: EmitSoundOnCollide - proto: WeaponLaserCarbine entities: - uid: 8357 @@ -118110,15 +119329,24 @@ entities: pos: 8.5,-12.5 parent: 1 type: Transform -- proto: WelderIndustrial +- proto: WeaponTurretSyndicateBroken entities: - - uid: 6059 + - uid: 15844 + components: + - pos: -27.5,54.5 + parent: 1 + type: Transform +- proto: WelderIndustrialAdvanced + entities: + - uid: 15838 components: - - pos: -82.4705,31.557802 + - pos: -82.43898,31.548532 parent: 1 type: Transform - - nextAttack: 476.1783429 + - nextAttack: 1501.2828903 type: MeleeWeapon + - nextSound: 1501.4828903 + type: EmitSoundOnCollide - proto: WeldingFuelTankFull entities: - uid: 3565 @@ -118256,16 +119484,6 @@ entities: pos: -35.5,0.5 parent: 1 type: Transform - - uid: 5324 - components: - - pos: -51.5,7.5 - parent: 1 - type: Transform - - uid: 5325 - components: - - pos: -50.5,7.5 - parent: 1 - type: Transform - uid: 6963 components: - rot: -1.5707963267948966 rad @@ -118319,6 +119537,11 @@ entities: - pos: -42.5,66.5 parent: 1 type: Transform + - uid: 15970 + components: + - pos: -43.5,66.5 + parent: 1 + type: Transform - proto: WindoorChapelLocked entities: - uid: 1648 @@ -118366,6 +119589,12 @@ entities: type: Transform - proto: WindoorEngineeringLocked entities: + - uid: 2800 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,8.5 + parent: 1 + type: Transform - uid: 13624 components: - rot: 1.5707963267948966 rad @@ -118460,6 +119689,12 @@ entities: pos: 6.5,13.5 parent: 1 type: Transform + - uid: 2798 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,13.5 + parent: 1 + type: Transform - uid: 5058 components: - rot: -1.5707963267948966 rad @@ -118645,28 +119880,6 @@ entities: pos: -4.5,0.5 parent: 5016 type: Transform - - uid: 5320 - components: - - pos: -49.5,11.5 - parent: 1 - type: Transform - - uid: 5321 - components: - - pos: -46.5,11.5 - parent: 1 - type: Transform - - uid: 5322 - components: - - rot: 3.141592653589793 rad - pos: -51.5,7.5 - parent: 1 - type: Transform - - uid: 5323 - components: - - rot: 3.141592653589793 rad - pos: -50.5,7.5 - parent: 1 - type: Transform - uid: 5570 components: - pos: -16.5,24.5 @@ -118738,6 +119951,20 @@ entities: pos: 0.5,7.5 parent: 1 type: Transform + - uid: 15975 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,9.5 + parent: 1 + type: Transform +- proto: WindoorServiceLocked + entities: + - uid: 2799 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,14.5 + parent: 1 + type: Transform - proto: WindoorTheatreLocked entities: - uid: 3417 @@ -118984,6 +120211,11 @@ entities: - pos: -14.5,35.5 parent: 1 type: Transform + - uid: 6272 + components: + - pos: -59.5,10.5 + parent: 1 + type: Transform - uid: 6753 components: - rot: 1.5707963267948966 rad @@ -119040,6 +120272,11 @@ entities: - pos: -41.5,53.5 parent: 1 type: Transform + - uid: 9018 + components: + - pos: -59.5,11.5 + parent: 1 + type: Transform - uid: 10249 components: - rot: -1.5707963267948966 rad @@ -119067,6 +120304,16 @@ entities: - pos: -61.5,43.5 parent: 1 type: Transform + - uid: 11934 + components: + - pos: -59.5,13.5 + parent: 1 + type: Transform + - uid: 13054 + components: + - pos: -59.5,14.5 + parent: 1 + type: Transform - proto: WindowDirectional entities: - uid: 1229 @@ -119092,6 +120339,18 @@ entities: - pos: 19.5,0.5 parent: 1 type: Transform + - uid: 2695 + components: + - rot: 3.141592653589793 rad + pos: -25.5,30.5 + parent: 1 + type: Transform + - uid: 3133 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,15.5 + parent: 1 + type: Transform - proto: WindowReinforcedDirectional entities: - uid: 1023 @@ -119184,14 +120443,46 @@ entities: pos: -13.5,-16.5 parent: 1 type: Transform - - uid: 5313 + - uid: 2786 components: - - pos: -50.5,11.5 + - rot: 1.5707963267948966 rad + pos: -14.5,8.5 parent: 1 type: Transform - - uid: 5314 + - uid: 2790 components: - - pos: -47.5,11.5 + - rot: -1.5707963267948966 rad + pos: -25.5,55.5 + parent: 1 + type: Transform + - uid: 2801 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,9.5 + parent: 1 + type: Transform + - uid: 2884 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,10.5 + parent: 1 + type: Transform + - uid: 4201 + components: + - rot: 3.141592653589793 rad + pos: -14.5,14.5 + parent: 1 + type: Transform + - uid: 4561 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,14.5 + parent: 1 + type: Transform + - uid: 4729 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,12.5 parent: 1 type: Transform - uid: 5569 @@ -119517,6 +120808,35 @@ entities: pos: -19.5,34.5 parent: 1 type: Transform + - uid: 15839 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,54.5 + parent: 1 + type: Transform + - uid: 15909 + components: + - pos: -25.5,54.5 + parent: 1 + type: Transform + - uid: 15960 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,25.5 + parent: 1 + type: Transform + - uid: 15961 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,24.5 + parent: 1 + type: Transform + - uid: 15962 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,23.5 + parent: 1 + type: Transform - proto: WindowTintedDirectional entities: - uid: 1225 @@ -119573,14 +120893,22 @@ entities: type: MeleeWeapon - proto: Zipties entities: - - uid: 5344 + - uid: 2797 components: - - pos: -54.57348,8.706909 + - pos: -17.390333,10.483195 parent: 1 type: Transform - - uid: 5345 + - nextAttack: 2625.0873814 + type: MeleeWeapon + - nextSound: 2625.2873814 + type: EmitSoundOnCollide + - uid: 4203 components: - - pos: -54.38598,8.566284 + - pos: -17.624708,10.608195 parent: 1 type: Transform + - nextAttack: 2624.3779765 + type: MeleeWeapon + - nextSound: 2624.5779766 + type: EmitSoundOnCollide ... From b7ee34f5a798d5be68898c8b28ffaf38f29e5e3b Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Sat, 17 Jun 2023 12:17:21 +1000 Subject: [PATCH 291/474] Fix buildies (#17396) --- Content.Shared/Blocking/BlockingSystem.cs | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/Content.Shared/Blocking/BlockingSystem.cs b/Content.Shared/Blocking/BlockingSystem.cs index 3b4da9d69b..7ca77499d3 100644 --- a/Content.Shared/Blocking/BlockingSystem.cs +++ b/Content.Shared/Blocking/BlockingSystem.cs @@ -302,10 +302,7 @@ private void OnVerbExamine(EntityUid uid, BlockingComponent component, GetVerbsE msg.AddMarkup(Loc.GetString("blocking-fraction", ("value", MathF.Round(fraction * 100, 1)))); - if (modifier != null) - { - AppendCoefficients(modifier, msg); - } + AppendCoefficients(modifier, msg); _examine.AddDetailedExamineVerb(args, component, msg, Loc.GetString("blocking-examinable-verb-text"), @@ -314,12 +311,12 @@ private void OnVerbExamine(EntityUid uid, BlockingComponent component, GetVerbsE ); } - private static FormattedMessage AppendCoefficients(DamageModifierSet modifiers, FormattedMessage msg) + private void AppendCoefficients(DamageModifierSet modifiers, FormattedMessage msg) { foreach (var coefficient in modifiers.Coefficients) { msg.PushNewline(); - msg.AddMarkup(Loc.GetString("blocking-coefficient-value", + msg.AddMarkup(Robust.Shared.Localization.Loc.GetString("blocking-coefficient-value", ("type", coefficient.Key), ("value", MathF.Round(coefficient.Value * 100, 1)) )); @@ -328,12 +325,10 @@ private static FormattedMessage AppendCoefficients(DamageModifierSet modifiers, foreach (var flat in modifiers.FlatReduction) { msg.PushNewline(); - msg.AddMarkup(Loc.GetString("blocking-reduction-value", + msg.AddMarkup(Robust.Shared.Localization.Loc.GetString("blocking-reduction-value", ("type", flat.Key), ("value", flat.Value) )); } - - return msg; } } From 0bb9c6e6eb03692fdf593414c00147c8d7bd4147 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Sat, 17 Jun 2023 12:30:55 +1000 Subject: [PATCH 292/474] Fix gas tile overlays (#17397) --- Content.Server/Atmos/EntitySystems/GasTileOverlaySystem.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Content.Server/Atmos/EntitySystems/GasTileOverlaySystem.cs b/Content.Server/Atmos/EntitySystems/GasTileOverlaySystem.cs index b15ae04525..70117a4e40 100644 --- a/Content.Server/Atmos/EntitySystems/GasTileOverlaySystem.cs +++ b/Content.Server/Atmos/EntitySystems/GasTileOverlaySystem.cs @@ -307,7 +307,7 @@ private void UpdatePlayer(IPlayerSession playerSession, GameTick curTick) { // Not all grids have atmospheres. if (!TryComp(grid, out GasTileOverlayComponent? overlay)) - return; + continue; List dataToSend = new(); ev.UpdatedChunks[grid] = dataToSend; @@ -322,7 +322,9 @@ private void UpdatePlayer(IPlayerSession playerSession, GameTick curTick) if (previousChunks != null && previousChunks.Contains(index) && value.LastUpdate != curTick) + { continue; + } dataToSend.Add(value); } From 393122a746c6540ffd65a3e5107c054841129fd7 Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 16 Jun 2023 22:32:03 -0400 Subject: [PATCH 293/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index b531ce138f..27aad38d7b 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: ProPandaBear - changes: - - {message: The "Spacebucks" barsign was added., type: Add} - id: 3520 - time: '2023-04-23T22:13:32.0000000+00:00' - author: HoofedEar changes: - {message: 'Added secure chemicals crates, and jugs for greater chemical storage.', @@ -2918,3 +2913,9 @@ Entries: - {message: Shield values now can be examined, type: Add} id: 4019 time: '2023-06-17T02:07:58.0000000+00:00' +- author: metalgearsloth + changes: + - {message: 'Fix gas tile overlays not always showing, e.g. gas leaks on shuttles + on planets.', type: Fix} + id: 4020 + time: '2023-06-17T02:30:56.0000000+00:00' From 70248638e3d7e8078600ea78647d1f7727e1b90d Mon Sep 17 00:00:00 2001 From: Sigil <84070966+Siigiil@users.noreply.github.com> Date: Sat, 17 Jun 2023 14:55:15 +0500 Subject: [PATCH 294/474] Fixed armour for biosuits and winter coats. (#17402) Co-authored-by: Sigil --- .../Entities/Clothing/OuterClothing/bio.yml | 4 ++-- .../Clothing/OuterClothing/wintercoats.yml | 18 ++++++++++++++++++ 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/bio.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/bio.yml index d49845dbab..fec4d4df6c 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/bio.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/bio.yml @@ -15,7 +15,7 @@ Caustic: 0.5 - type: entity - parent: ClothingOuterBaseLarge + parent: ClothingOuterBioGeneral id: ClothingOuterBioCmo name: bio suit suffix: CMO @@ -63,7 +63,7 @@ sprite: Clothing/OuterClothing/Bio/security.rsi - type: entity - parent: ClothingOuterBioCmo + parent: ClothingOuterBioGeneral id: ClothingOuterBioVirology name: bio suit suffix: Virology diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml index 5c3c9ed197..184788ddbc 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml @@ -101,6 +101,8 @@ - type: Armor modifiers: coefficients: + Slash: 0.95 + Heat: 0.75 Caustic: 0.75 - type: entity @@ -115,6 +117,8 @@ - type: Armor modifiers: coefficients: + Slash: 0.95 + Heat: 0.75 Caustic: 0.75 - type: entity @@ -149,6 +153,8 @@ - type: Armor modifiers: coefficients: + Slash: 0.95 + Heat: 0.75 Caustic: 0.9 - type: entity @@ -193,6 +199,8 @@ - type: Armor modifiers: coefficients: + Slash: 0.95 + Heat: 0.75 Caustic: 0.9 - type: entity @@ -207,6 +215,8 @@ - type: Armor modifiers: coefficients: + Slash: 0.95 + Heat: 0.75 Caustic: 0.9 - type: entity @@ -241,6 +251,8 @@ - type: Armor modifiers: coefficients: + Slash: 0.95 + Heat: 0.75 Caustic: 0.9 - type: entity @@ -265,6 +277,8 @@ - type: Armor modifiers: coefficients: + Slash: 0.95 + Heat: 0.75 Caustic: 0.9 - type: entity @@ -289,6 +303,8 @@ - type: Armor modifiers: coefficients: + Slash: 0.95 + Heat: 0.75 Caustic: 0.9 - type: entity @@ -313,6 +329,8 @@ - type: Armor modifiers: coefficients: + Slash: 0.95 + Heat: 0.75 Caustic: 0.9 - type: entity From 602d0f42598467bf656df8bc255d8935cfff2146 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 17 Jun 2023 05:56:19 -0400 Subject: [PATCH 295/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 27aad38d7b..c078bb0dc1 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,10 +1,4 @@ Entries: -- author: HoofedEar - changes: - - {message: 'Added secure chemicals crates, and jugs for greater chemical storage.', - type: Add} - id: 3521 - time: '2023-04-23T23:53:18.0000000+00:00' - author: EmoGarbage404 changes: - {message: 'Added the CHIMP handcannon, a hand-held version of science''s APE. @@ -2919,3 +2913,9 @@ Entries: on planets.', type: Fix} id: 4020 time: '2023-06-17T02:30:56.0000000+00:00' +- author: Sigil + changes: + - {message: Fixed the armour values on all winter coats that have caustic armour + as well as the CMO and virology bio suits., type: Fix} + id: 4021 + time: '2023-06-17T09:55:16.0000000+00:00' From e441bdac2d0946b2f60c372c5679683baadbd060 Mon Sep 17 00:00:00 2001 From: PuceTint <69696513+PuceTint@users.noreply.github.com> Date: Sat, 17 Jun 2023 21:15:58 +0200 Subject: [PATCH 296/474] fix transit atmos (#17404) --- Resources/Maps/Shuttles/emergency_transit.yml | 44 +++++++++++++------ 1 file changed, 30 insertions(+), 14 deletions(-) diff --git a/Resources/Maps/Shuttles/emergency_transit.yml b/Resources/Maps/Shuttles/emergency_transit.yml index 2aa8867139..9441ccf01b 100644 --- a/Resources/Maps/Shuttles/emergency_transit.yml +++ b/Resources/Maps/Shuttles/emergency_transit.yml @@ -335,12 +335,9 @@ entities: entities: - uid: 4 components: - - anchored: True - pos: 12.5,-20.5 + - pos: 12.5,-20.5 parent: 2 type: Transform - - bodyType: Static - type: Physics - proto: AirlockCommandLocked entities: - uid: 5 @@ -2210,6 +2207,12 @@ entities: - pos: 16.5,-15.5 parent: 2 type: Transform + - uid: 425 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-20.5 + parent: 2 + type: Transform - proto: GasPipeBend entities: - uid: 214 @@ -2238,11 +2241,6 @@ entities: pos: 4.5,-2.5 parent: 2 type: Transform - - uid: 218 - components: - - pos: 5.5,-2.5 - parent: 2 - type: Transform - uid: 219 components: - rot: -1.5707963267948966 rad @@ -2279,14 +2277,20 @@ entities: pos: 13.5,-1.5 parent: 2 type: Transform - - uid: 425 + - uid: 360 components: - rot: -1.5707963267948966 rad - pos: 16.5,-16.5 + pos: 16.5,-17.5 parent: 2 type: Transform - enabled: True type: AmbientSound + - uid: 575 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 2 + type: Transform - proto: GasPipeStraight entities: - uid: 225 @@ -2597,6 +2601,18 @@ entities: pos: 10.5,-18.5 parent: 2 type: Transform + - uid: 293 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-2.5 + parent: 2 + type: Transform + - uid: 599 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-16.5 + parent: 2 + type: Transform - proto: GasPipeTJunction entities: - uid: 279 @@ -2694,10 +2710,10 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 293 + - uid: 598 components: - - rot: 3.141592653589793 rad - pos: 9.5,-20.5 + - rot: -1.5707963267948966 rad + pos: 6.5,-1.5 parent: 2 type: Transform - enabled: False From 941a3cd1133cddc88332428ec899bf7198c56875 Mon Sep 17 00:00:00 2001 From: PixelTK <85175107+PixelTheKermit@users.noreply.github.com> Date: Sat, 17 Jun 2023 20:47:31 +0100 Subject: [PATCH 297/474] Arachnid sprite changes (#17412) * Changed arachnid sprites to be less human-like and more "fluffy" * few fixes + tweaks * torso quick change --- .../Customization/arachnid.rsi/curled.png | Bin 700 -> 651 bytes .../Mobs/Customization/arachnid.rsi/long.png | Bin 659 -> 558 bytes .../Mobs/Customization/arachnid.rsi/sharp.png | Bin 682 -> 603 bytes .../Customization/arachnid.rsi/slashes.png | Bin 157 -> 208 bytes .../Customization/arachnid.rsi/stingers.png | Bin 668 -> 601 bytes .../Customization/arachnid.rsi/stripes.png | Bin 231 -> 289 bytes .../Mobs/Customization/arachnid.rsi/x.png | Bin 180 -> 220 bytes .../Customization/arachnid.rsi/zigzag.png | Bin 632 -> 522 bytes .../Mobs/Species/Arachnid/parts.rsi/full.png | Bin 988 -> 891 bytes .../Species/Arachnid/parts.rsi/head_f.png | Bin 383 -> 429 bytes .../Species/Arachnid/parts.rsi/head_m.png | Bin 383 -> 429 bytes .../Mobs/Species/Arachnid/parts.rsi/l_arm.png | Bin 264 -> 355 bytes .../Species/Arachnid/parts.rsi/l_foot.png | Bin 249 -> 292 bytes .../Species/Arachnid/parts.rsi/l_hand.png | Bin 252 -> 254 bytes .../Mobs/Species/Arachnid/parts.rsi/l_leg.png | Bin 250 -> 379 bytes .../Mobs/Species/Arachnid/parts.rsi/r_arm.png | Bin 263 -> 346 bytes .../Species/Arachnid/parts.rsi/r_foot.png | Bin 222 -> 297 bytes .../Species/Arachnid/parts.rsi/r_hand.png | Bin 264 -> 259 bytes .../Mobs/Species/Arachnid/parts.rsi/r_leg.png | Bin 252 -> 378 bytes .../Species/Arachnid/parts.rsi/template.png | Bin 1144 -> 1444 bytes .../Species/Arachnid/parts.rsi/torso_f.png | Bin 601 -> 761 bytes .../Species/Arachnid/parts.rsi/torso_m.png | Bin 454 -> 761 bytes 22 files changed, 0 insertions(+), 0 deletions(-) diff --git a/Resources/Textures/Mobs/Customization/arachnid.rsi/curled.png b/Resources/Textures/Mobs/Customization/arachnid.rsi/curled.png index 43a897e76350ff2fc63ef9daa85c0566193d4f81..a0cd22dcfcd9895eb106a41ffbdefe7fa2b4648e 100644 GIT binary patch delta 626 zcmV-&0*(E=1&alcB!5y#L_t(|ob8&+k%KS{hDBz3;Os8whO-->h%}%x-J}bjT?Knt zWfkKW;J`lqZzhuj+xlf=TZ{z}00000z(1u+6Jt*@>1i( zk+xUpuLeL2c<*1X*LHxJJ7dht9r$u+QwKu*8XJ4sMrQyKk$-dU`FraWo~EhO)3ERR zEzMW@f-#1ywb71PYZqe-dGA+kbNV-JKz_>zGIO_Q{Yu-=UZ|tV=`(ZZoFnHP8DpY) z#u$=1x?M@XlZ(SJ(BttS`QF>{ROfQ`uhxH7y5H|h>JGJVB4@uwzvNq~ZLxnx#9P>i zm0N2U`ONd29e+S6mrsrT>S;F5^D>TOv3_m68p4n!YgyL0t|xng-tcOcQZ}TtSciM< z#6p_v?x`q1L@%3U-}l8q$UX=$^H#rCYsvms^SG%xAj^q*KLI!a9lOzFo$ zT8S`pmh?Y#p^TPfSOu|j(D7AL4)_+!RCA`P( z)%pMc0000000000MD%?&f3+XAZ1Fdl9M#6u+5AGZFW-L#(rN8)$=B=vglF?&xW#e# zI}rZ@f3t&dOBHA&>*~FyR#~5SFpgs<$LX>3dW_@@Xz`lM6-?8#N|5BTQ_&fq*L|x5 z$rb3OkZal$Pd}qSlf!)or%_Yy-bi!5CHH>V&`IRpBM2!*fz+Ej76n`6A`g%tI0Dw|z{w}4= z8p6XcR9)B2NvP{Or~8vW!WaY2xi=8bxnYcf*7~V$On***Z5T6{8@P>>vf`YZX_^*K zBo@Gmz5xJen#QZg7@GsP`*mGsV*1~B6AqKMZQ*vi?Ft^Tgv{k~ne9*0WLziL^zm9s z>D3yB!Rzl&zkjIy?8NnYHTKXg$(sEXeRp=xX-|r8k9evRvA(``&bh(QIF2S{-)_fG ziv8qaK8~a5`+oKQ)caC!OB%k*kH=$Cm2d(CSWbBN`+c=~MN7(-1xzVBzLMsf_`}r8uPoE(E%+GfmTM%6yDeyJzdqHAvH2AHf8;?~s(T3Z1~d6T>i6?#^#)KJX^M+M_RaKyn85 zs}R~1K75byA2&g?0*CS8cKg0mlKm-5)003}P9;u7o`;9*@%aUwkq0~-K{oO_H{WeY0=li;@*^aPq zY{z1wxBk}!7H3guWS(cU1FzR>lg_i9vmhMlTLKXe+@k-~jDK-M@BNmWhVwi>WIvgT zR^q-qD9s<4IdQO#^mhSxzu!qmN(Z3X)zI`)X)TeNlk!>9S2JKV&hDmljfwfY>R4~I zL6&CfE(1acG)+^{+)t5O*p86;@_OkuO7uNFVs-)G#_?RU1|)7L?OB3wq|cwVMNrz1 z9O2GMMz25pi zw+qzf_5o0z203kr%Jx{EeixxIB=>1w&EC2=Xtax9N1GXp{hi_@% delta 635 zcmV->0)+jp1d|1jBYy%~Nkl$}QYj*b5p9Fx!`@Vm*Ip^TV0jd5=nA>5tihn^^(g#5x(uqs-XDfiX z-|y5ZvS$(3>-7T>C*u$?E{$2z2bcyT7X-d?XyOw6NdU%igkcy;jx>=QHw*)e<5(P1 z(SHRZw;K7%Dfyh!FRp;2kp?2A@B39h)@QEK7}IK}N{h{c+DqwP^WKXBlJ?^VlXGq{2&sO;;(r4^=}h`7 z>KD&|G=)fifwW(0M@k`uk;be)pLC06H4D6xcVvMQe9|-~O?^52*{_O-vFkbrA*@b; zzp=Tuel`o7iPHyQb_o6~k=S(|7-O1WLIqG8%M0MNW2`Pen%_tdW* zNC4~J2lxrR_AvWveMM0eMNt$*Q4~c{PLB6J<|-~nqt#DQag>*yTkZ+`1*||Ks$^9I zkh`>SWXR9jWelR}v-p4bw$|!nH2_^REHeY+&5=4yTR|uhLY;^_jEI|?!iKF_ZD2j4uz5(wv V|5f!5D%t=5002ovPDHLkV1nJ)Fa!Vq diff --git a/Resources/Textures/Mobs/Customization/arachnid.rsi/sharp.png b/Resources/Textures/Mobs/Customization/arachnid.rsi/sharp.png index 4181e079b7b3fd47107d00d07447151982be012a..40f848a3209fbcfa6fa1cb804a5eb5babb922a6f 100644 GIT binary patch delta 578 zcmV-I0=@mJ1=|FWB!41FL_t(|ob8%Rj)O1^hTUp593xw9mPJp~MQ@gEj?pEv7@0At z<2;}gX8upAR3PzhC(c6zA^-pY|Cft)(|bSh|HtE@mZ_oF&Yt=&H@)}MIF9pm2%*b~ zUORj1U$jck=X1U{3`4UMy>>pKf7L3*80Vif(t>7Z9LGgk=6{^tQ~yh=BwNXQKRM^f zdq35tuyZbJr^e~D9y{JLgwo#5>0d0TW#!fs%-OLT$I{n=YAvVf%tIh2PSidVTXtfM zYMqjP2%%~SS&d}rpMqTQwa}_Dv_28A&?BJgw#)Mad5dAzDNIM zy{+k~R%FjwOH`_#>rI)N3}>2_HI{yHBeVt535zuIQa`L&o&(o>xAb3zz!B)#kMwrh zRbITK_nDea$Vc_}+C*48xlif?000000000004zA;OMiq~pRc6?@^p5+Tl>)BbFl%4 zsCc%2B(#qsEX)RAV=+c5oz5Nsc|yzwDmPvlA+Xf^<+6Q|NykVCgLY|V#qR;@916y#BPX;N%j z1-5W*4?Etr3Y?A2R)I71KEtQMt5<&MWlKp+#EjWkT0=rGL6BLUvNYyh{HZS~N|Q z>!9tr4y2UDTexl8sGSn0{dGc!jpHeO&N(Qh%Jrp`b{GcR_q`4M9vhF5vNH^Wb&FG} z{y2`Cbv{x`JC0-0j<0_P0Jz`pq0BGD#$#mc*vsXz8ZXpO?u5jX&+1o0ZYS>DsRRTX zp`U6(j@o;+{(q(qXxkQ=rojcP-%0~;=V3EqjLF*Y^#NeDrS~SVM1Ru>HchiRL(!0% zkQn|vr4)2s=LVI;)&DMfE*2o12n^io{<8YfM#!(E*Xy-tJNomm^6qVfaGg5`6B2q5 z7`ReuHJ;NiX@nlebs~ko^8$WEt2_oC@;#-$`4@Nxj(_wcM<3dffLt^3D7hx&Rr()+ zNxw$U{;Tx~f*=TjAP9mW2!bFMYJB5T>hni#f|SwKTmhDQdHb$+YZ$!mZ|aRw@wGVKs=jOR0Bau~t^uL%Y~DF|#P!h_ z1Dx|@Eq_SXfY3X_n$TKjYe6yrT5Dj8RZ{>FtObm*>;sG@V4mk?JK-r%3+^c}P19+f z=jhyM5uB#!H`4kD1gWwUw54XwNY{kB>RBh`d;7}lzx+tOhB!{BbWrn s*#5;e9eX+cQY-{P5ClOG#82@FCs9csvZenO01E&B07*qoM6N<$g7arU9smFU diff --git a/Resources/Textures/Mobs/Customization/arachnid.rsi/slashes.png b/Resources/Textures/Mobs/Customization/arachnid.rsi/slashes.png index 4bae3e82d44ede0c32d1e656574228128ab4fd2d..0d35996c4dd70ac6252be84a766ef929c2252468 100644 GIT binary patch delta 180 zcmbQsc!6<(O8s6zH%xMo@uvJWR>0@n!Di-(W|EIjWsJZlwIG1sPN@a?ti(^Q|oVS-Z@*Ys&VQ}2U^4d@!c!Qkx1T9_GiA@FXv|_q%t@ d3@~tjG4I4x`zbdMcI^WRdAjAy71=$3UB!3`DL_t(|ob8&+k;5PiK;_Jy=z_B=qk$Ab161ZSU2ydtcI1(< z0pSn98@*GKK_5U8Ob~z|2!bF8-^xJ07-MGq?3^36!;it$`w9C$@!)YBS3+kTK^>@b znx>*mYx|o8000OffYut6QimL&hC>JtLI9-{+wqq62P%XD-hX=l0MJ@51K;mA+W~9s z5^_|RQVOPN+MP_vKK{l@p*^{j{Z~qvb8hh7gZI8_@&JE}g|bIOnA-Q=gVq|f)~kG` z7-MD}L*+{LS1AzZ$eH|$WpO8R9xNI0j{6U3>O-BcK=PCSdLx zW9HN;f@3)K24OD%Hw3S|!BKrjiXb;?7mP8pwYC^)wQ%*u0oJ~j zieU4Gg*g_~_*_hZI~o>Rz}>K~uK{eXXjo{$t$sdb0Y2@6AP9o+6n+6+COenK_r4hb O0000+QE?6TsW^jspN4|dxX&3<(Q^$d zYHzU->o~!d36QYStH_MyFDvlPU;%<42!bGdDuw^U7~|;LT3g%?Uk+#PSLlC-1M9k` zOZRLdz9`Lmxm=<#d+Xm7004$zfKm!oRV_+{gzLJ-Fbvb2*MIqv?5Y3l2T?%RbpU|V z=>(+|S9gM9{JChp>p$Vb1*P<9QL#eMm>m6wcK`sK&*uWy>R+$fG)+@zt#4xKHy2-@ zk_Ubl`KSoS7)J~D7oF0-DF8hmWm(s)OFoc+n_HD{Qh%&-zUv%Z~d<@z*<|R_Uk2Z7JvT={ksBu8qqB!FrjRG6Uu#| zdA0tO#8UD95HARVAP9mW2!bF8!v7@sfs(G*ZdlkFZtls0ku@6@_P{?D1JVr{tdF8} zR_7JtZK>-TN~!5gFh%sEXn0n)#&`NX@XrFOs*0XSvpu2ByN8y1cPry&Di z>;jy|hJ1G;C+{p1JPJ7`IQs~s8YbQuzrkXzA%pn%vq5$Nj%0*6xy}~AT3h&UQAaUA z;5OHk39_1=)@)eV1Ff~=He@6pfvp-Awuak~@$n|e#u&3n^VHgCt)q=tPjQ5XgCpc9 d2!bHI3qL2P8RLNEzD585002ovPDHLkV1i;>FpU5J diff --git a/Resources/Textures/Mobs/Customization/arachnid.rsi/stripes.png b/Resources/Textures/Mobs/Customization/arachnid.rsi/stripes.png index b7469ec9734678bb0813a7535d7a2dac60de685a..047624504bb2ab2ce57df6b6f5c91ffb3cc4b339 100644 GIT binary patch delta 261 zcmV+g0s8*u0ignrB!B2hL_t(|obB4N4TCTch2cv}MTg`q*v17T&>>NH019eGxEVZ> zYge?FDv^>%4k#gsl>h52**+J%YYq_r0002MHZevkt&gUvR$A|I+PZNV25Z|^a?aBC z{lmFsSxiJEr6kidZN7I;{ibQeIVWA$J>0LVmQs?O^C9(tJARkky^_CQsJ|;KAp~>I z$-1sGj^p+0JkM5D)nWO+uV2^oO&?HI%Q+uj9{>OV00000008(0A%x-(GRA1n_PpyI z&wj}G#5-<$V?z9`sWkqU_r92MRsC2GD1H7R1oPh00{{R30HEXys!x9b8NJ5i00000 LNkvXXu0mjf#Ta(U delta 203 zcmV;+05t!h0_OpcB!8|+L_t(|obB1W4TCTg1yE-R7Gas!F@Y!X6z*7tMOcDVDUyg! zBmyEir$e&2ueoksN&o-=Y*TBUmcFl)f7^O6BBr)&Q`0o5>$>id54 zf3K1cFCM)+y8nCUf7F$^9v;=dv-1G}00000;2%W9;u5lyGDNMN*=vqc%3{tDb38d? zLwwd&n!gnhiyhB7ANB_1oM&^^=KPAaN9k8G0RVvCaR-K!cqvDFAQAuo002ovPDHLk FV1nHzSoi<{ diff --git a/Resources/Textures/Mobs/Customization/arachnid.rsi/x.png b/Resources/Textures/Mobs/Customization/arachnid.rsi/x.png index 28f033899cd848d1f328258da6b7b1cb314ae52d..0e8bf3be69708e2fd106c6f4e64b9bd93fc26db3 100644 GIT binary patch delta 192 zcmdnOc!zO delta 152 zcmcb^xP@_oN`1Abi(^Q|oVS+`@;WIBI2^pHl+mxXqDdhMe>`@9Mu0oR zBVL-$7TcJe0Ds>5rFG3}s1-ID-%{0cwx#xnPTmHeKvL18wxiZ|u8cqZ3`h!a#A__m z^Izhw_-}d(;uHL*UjhIC00000001OMo$+6ZHRs~RNY6F(9kk?JJr77-Q;&-EYMe-M zFVJ&Mel>h4V;L~jiO>@|A7eRFR0;5;&NJGar#}-^32HEM<(^bU}pXRc^Keh>7-tD00000NkvXXu0mjfL3rul delta 608 zcmV-m0-ybg1o#AyBYy%vNklzc1~USdLo;P?Z;Fbu;m48#1QlnQIt|H=O==PZPHJEhkx!SCe%UAmDF0stTg zA;4M-#+a@p0j+iCy${1My#2S3#>e|G#q=Cm^5?lQNU{?HiP+IGSZ8}q1<1c!^kx*w&&EFW)S!=VlxtU6i zuapYoI0h-@t|ylwr3~XZhFT-LB7SxT^nJg1E6VxxeNV}E5nm})EndmC7JtzLoO9TL zXKPIekzIQ!sec{b%Q@GQ|13UCYdF0wHNl*1E&i+k-h04mrE9IVA*Ob57xvz-`lj*G z4|BomQWMPC*5a@30#}2BiJDn)8BlCvW(6?Dbkx^Q3bn4B#;0`kl5N~jbN(OQ2JgUP z2}}*<{noW-FPBn=VHm(Umu*}*&W_JBAon9ag(Ct`o`3#diT`Hr8`&NFAHM_`hG7_n zVHk#Cn3TOT^%YQaF8&?fD^p*=mYl1f#d9)si$HP(RB0Tbp#Z5&ZHze})z1)#GR@L_ zlQ6R7jKGypr1_>#Vs{!m(wg(*zX?_gkdw;qK&vdj+5=Lldh_@7lfmr|pf1Z7XFx0^ zTWewKX<4r;!0ixOljWOxKiXd99;+{_s8!7t4;7osrpPPvOLd#n!%A$ u^_lFF#d92ec=3}^a((;~U>JsBp3DzF?c}SqOP`wn0000~*O(nDoV@RBK=CI$g{W;*5 za6&@6qDl;q&;%kNHMCAr$8L5ApO>~tn^fCvpH!)K?C(84zt3@i|M3^X^$)XM=Nh|! zMZvAn+dtNz)5me+JUbHrfZqOb<_$)=%_q-0lW6S%?sx+{U4LHy0G_Td;CKU&B2BlW zHfz^E%uLIM;|&npT*5y((a)%z@JVAOYAX;0w*~+xDc~QSAh@|)0#{Nr!EGKS?Yq>O ze{`aM0J5Sfn?$KxoxKB{EPlOT8`IlA&g`}e(_&CkAe~30(r?RCN}#iMkU8DHZYQ%) zC!kd-nZoP)dVdTL1DKW#ATLP*Ud>ZRVyT0`3AC6*iUi(Z1eFSyHiL*~dJOAybw8gx z!(tAkNFc?0DNh-RN)tvecjph|tJ7o_E`jqffQV->EvA1Wo`Ht}R4U*NMjHHKe03VV z+?`ip0D!gHu~;l}0#SrdU%q~`SR3A8gtwPp006J=!+*5d(j3#yiSRH00DKsJ1fM)( zI2?ZGoSzl*u12K-aU3t6Zho8tfJ%i1S5oLUg-QjK6mYygisL!wXK@^tBfrO*2bkM~ zh^E?f-e3d~&yesCre&jLF_@;6%WpFcu9U<=3MiSv@%mt$u0Eny^KMi?L{m83zAhn^ z3M4$#2Y=BjILU9C`EEwRt ht3bvU(X>>7H3H<;VhK?q08mQmZCF*HIBr|MN&*yA zib@K2eIG_EA8MKwl#)vdC?&N5MysX0Qp{5oYXr*N%ELe(JOox$fJgzkQK=fX*LdQxQ5oZ19(neuG_az`(}h;qlLNrWi)X}JF9 z434{&n5tou{6NJP#IN^;h^Am}56tbMvv-ius){vFL1#k|oaSxLXDPM5l} ux=Pd{0OX%v0HCB?dzSFGoQPFBosQr20VUkpGC;}z0000nPMO?WFUjb z3J4GnMcWiv@_z+z19W$X1n^+MMu#|C2BQtoXbBKQkRp>JMII%wgG`#DXj@jAp+z4+ z5O??Pdmq2|?j7NOTfu~GMtSd5O!-t20MZ$(j8j-8sL;)*tbZFA4U4jFe3BBkA|RcC z5(j_!s0F~&N3Dd!DoWgnKy2-;CeQXy0C={4LVK&Z3e436MAeMqCvW}5>vue9Zvyb7 zy~&H$?{dL!!hxJ36jd|QYV~C7p7)W%OKI0jmFWBLTI~P+2Sp(WrKG*}Ex-PD%-Hvo zWpQ!|#G8iwZhtaYty{R~eUw6h!0szC38CqUk93_RxN6j+XgcL8oGghX1?k|@v!90} zM|petW^dTF94NF1yM16%qo${ zQ7r3GIC2z#gM))eRaG`NHueC%`udy4M#H+uci0$a;D6%XIDJ7e&2LKoi3-^35Qza*OngoDWGqHQK{GS{jB7~sZ z?XtbSy?+pI;TT$$MYGvdI-L$D$A`)MWE`TFH2}t;oZAzR)w0H9947N8$A@$}9h%Li zVp&!$>GixxQ8lC8AAUwD6fhbVp$wSF0M8jv(M{HiVjiR@7>5$i88DFnp$sq@7MraH zMAPX);a#i1-Fx@ZYIV|Qc-ZT*`>@SK23O$#Fn^H&yARt8dzZ&A#=3j&{>=(x`#_;s zB$NSbLgnSrt80VD_VVZzYeFTwARA*<>lQ$CWgo~|T&YE&Qq~Qe-Wh8`P1fVQr|V%& zs5red%DO@E!Z%&|Uh|4DwqdV}W|+A4;KrJPOdrTL34ryI76FWXS5b|6RME|apm7>JXFy>0 zmGqt)@zaC6d}Tp|I?JsL0;KODN|j{JbMp6Ghrjd>N%~HZGQjDb;r2c#PVWqvk~;0T zj4e$dzKZ`TzgrXdT=wrFuxxJsyEX8+6hFwlj`KjxFTMn3M=Hq)$07*qoM6N<$g5C((>i_@% diff --git a/Resources/Textures/Mobs/Species/Arachnid/parts.rsi/head_f.png b/Resources/Textures/Mobs/Species/Arachnid/parts.rsi/head_f.png index 0fdea37e856269a1d36df78773c93d250ec5cd99..75963f1f750494d0a17f5d53d6f579f077798581 100644 GIT binary patch delta 403 zcmV;E0c`&N0<8m(B!6^CL_t(|obB2%j)O1|1<+v|T8lDA@ELq7cRqkSZp9gV1eca8 zBv))@1PN>y1Ky4HKPg2*DFz~d)3nypr{*;!;eFpX#+bPXYb|@7v!3&FUEFnw z3OB|~N~!t%Fbq|jaAp2iNw}1fLI^}e6ha^=<@}4>wH@-h?|<^S4tGs!J+*C1Qp(-$ zIOlG?67tFal%G-}&Q>^l1>{9zjGM>zKEK+#eC~bVa09f~leM<--oF$PV;9wdaQcJhBI9{>OV0000000000{<+fOlE>~t1Z2{-p z=7_qMt!(EU5%ISGs{#4)5<-yoepSFYj+~`V8OL$e1n)fwAyzdW#ohwe+9t+GDW#W! xYWx%A{AI&aO4afK00000000000N|5-175}yvfT$x#0&rc002ovPDHLkV1l2Sy9odQ delta 356 zcmZ3>{GVxpO1+z>i(^Q|oVT|Q79Lg*alN?OC(6Ow+)?yZgV0JR(T=537bdAq@%@nC zpTyoX!T9sJQ_Fl`ipYo=zPagjKda>HE>RcLxHLycMk2 z{g2_redP;U`(G89$OigfK4Rhy1Ky4HKPg2*DFz~d)3nypr{*;!;eFpX#+bPXYb|@7v!3&FUEFnw z3OB|~N~!t%Fbq|jaAp2iNw}1fLI^}e6ha^=<@}4>wH@-h?|<^S4tGs!J+*C1Qp(-$ zIOlG?67tFal%G-}&Q>^l1>{9zjGM>zKEK+#eC~bVa09f~leM<--oF$PV;9wdaQcJhBI9{>OV0000000000{<+fOlE>~t1Z2{-p z=7_qMt!(EU5%ISGs{#4)5<-yoepSFYj+~`V8OL$e1n)fwAyzdW#ohwe+9t+GDW#W! xYWx%A{AI&aO4afK00000000000N|5-175}yvfT$x#0&rc002ovPDHLkV1l2Sy9odQ delta 356 zcmZ3>{GVxpO1+z>i(^Q|oVT|Q79Lg*alN?OC(6Ow+)?yZgV0JR(T=537bdAq@%@nC zpTyoX!T9sJQ_Fl`ipYo=zPagjKda>HE>RcLxHLycMk2 z{g2_redP;U`(G89$OigfK4RhFSZ*MJ}*y13-df~jQfvbdt4Wj^yVL}0m zK^~9c1U9~Y=|;uom0=NnIgW3yY28SB{ovo{nl!t&QVktI@ItvXRv(Dc_d8pEcGuSM z6iSKQCL8p6!}-d{X_+qjI<_>eS`~H4#8u|_i{EnBqPEt*`T9wbMZ|UCG;R&QhGIRb zHpbZNdwmWqzjnGjcDdkpx3vrp0+|?E1Wb~*+q_-RuOYrcNN}oV#QuF98M1GCs~FGi z%$TLNRg*(8Vb-$TU0dcFF}fguFYI$S<^5W=Em!=(#(tUOg1(pE?7FNQmaN2-%=5{{ zJ#w1QZm~_%^$%3@C-b;Gx#0Be6Kh1a^83FJpX3_b==S3j3^P66| z$TTdFjtwHwumMA)MDh+!5v9aFPz;ImzSbw-(_xAO5s`lp(xJ`kwLe>mJP{H=?@G17 zSod+V6iqaE7eewx z<{AM;_b^sI7|l;`MF40`qm8uoD@8;^L_|b>!HOknn|p$oS=UyqX4^Gfxh$-;)dLIw xJQvTa2k709J>TUMj diff --git a/Resources/Textures/Mobs/Species/Arachnid/parts.rsi/l_foot.png b/Resources/Textures/Mobs/Species/Arachnid/parts.rsi/l_foot.png index f60c048cab28597262e391b539946f71dc93e650..ee1c569a4ef34918f9769f88ca12b69ff4c27495 100644 GIT binary patch delta 276 zcmey#xP)nfWIY=L1H-D!!h1mKwWo_?NX4ADw+!=I3`ATn&eoXvwCUEOMJa`G4BQEf zn=QDqp3GvpI4P-RN>5Nrqef8Cd8T{+%YMsyOj7ZLpiA~2ip&(A@3~s)%h4Fb#ZY^H z{<+#KrFYpT1SQ3WFUx#XwtMcp&t-L{9Et&c6M1|I@PW^|o!f>$`qGnZz$~ zT(Cjnv1nnuR2ySMYGhqb8_euUDt{x}{crr9yKj}269>bTponQtCsqF~e==vggtDe8 z!?n`XdFc--%pZPz@uBv>zlt5x#gck}l8YMP-hVG>-fSZWDNI5{(=W z^qLpEWDJqo(j0UnP~nGzr$Xkv>z*&}uH4Hk2nG}Fv%l&6=4m|AyYb~G$>R($W%r|g zih0SY8Q0(GW>*m0Ud+PeuVU&Hd#^SAKt$UUF1)%+VX|I5=W c>sC}0v$xipsyCHg>;n18)78&qol`;+0FRMiD*ylh diff --git a/Resources/Textures/Mobs/Species/Arachnid/parts.rsi/l_hand.png b/Resources/Textures/Mobs/Species/Arachnid/parts.rsi/l_hand.png index 0efba6f5e43d2384697c239b7118a2fb5fb94e22..51a62600e15d73075a9a021c44a89887068e11c1 100644 GIT binary patch delta 226 zcmeyv_>XadO8rq!7srr_Id5+&_8m45aC`XD>tWioBJOydBX8^-BJw8wJ|lRh=`8b} zjLfTUm-CkH>;K(rYP4CB0Sxw?*0qYrmR&0HdhhK*nQiM{Kb4$x%;x;GAfxi_xwj9! z|1B)5vvkJpcC)*8y)+k|wSUN6P=4AnI$L+i^{CBrihl&fM|)kGU}CqH6=EKUOq`Zl z`P+Tjl8x_wuh?p5YyGFXX4bM7PhuyzdAvxMcGd>8n_i#m&+ zUUN%P+Boq)+Yk2`?=A)~cu@ay72m2?CdQG|T$P-@)$ae(w%gx$@|h_e6CPWfdj5AE z->jKEhF-Iic?>sSdKUYW-KAyAwI$#6X8sJ)HeUK&Z>?!(WXB@T`o>j$p>y9~V}h6p zBpZzCH=Zc@zBBjsQq`=VRW-5KUp;aDuH3cyl>Gyn^RJ!+ufL~QV^jXT4Wz@qg!xg7 Uv*yhY_8lOur>mdKI;Vst0038H6951J diff --git a/Resources/Textures/Mobs/Species/Arachnid/parts.rsi/l_leg.png b/Resources/Textures/Mobs/Species/Arachnid/parts.rsi/l_leg.png index 009c93c9f2bd92cd38fd3782c9475d42e7e93dac..2c3ebf4facc0dd6ad9a5210193cf11e5c8c54f46 100644 GIT binary patch delta 363 zcmV-x0hIpw0s8`w8Gi-<0063Kaozv`0YXVcK~#90?bP|s>BD%Tt#XUaKJ zZ~zMGoQ)Gi)D*~Vwiq#rvLo#-IGK$0zlzGX9E%i&2mk;800000007`0xoHFmA*|L~ ziZPP+UM1!;&bifEOUz8;II86N=nW7;SdB3nwfu^RP|lg0bAPKwyzT}p%kn7d48|A| z5h|sq#OrPV(Y+{U)(G_@W+u&vQ)$3ELjyE|h{)rtbvf;A<8JfyQk#H!2_E$utZ~n} zYykiO0000000000;JbOA4_SnqmAh++QCH*4eE8ddE$7@i3k`l6L1wTn}DmhQY`>)<_l^4jAjM0!AbxC002ov JPDHLkV1nf_q4od( delta 233 zcmV1L_}n;sa&#Vh-{9^pO6>ePY& z_m^R;`GNpDsi8eUVs}&(1Kdpk+yR2)hia*H2dKG*byrqIL}EllME;#;!tGgI7$Med zr0Um!kB}FPRCpygos6DcyZ3$NBtXbB?fZvqiX@ErbXIiDhBd=x?J8G*))TlSK;&rY j4!}X|4{*2P0c5y0szEFJ(KX&`00000NkvXXu0mjf9Vu&2 diff --git a/Resources/Textures/Mobs/Species/Arachnid/parts.rsi/r_arm.png b/Resources/Textures/Mobs/Species/Arachnid/parts.rsi/r_arm.png index 47a254a0339183446cda6ed48a0ccbd1573ec213..3f29d8a058549ff7fb78e85c1b2a356dfe39f0b9 100644 GIT binary patch delta 330 zcmV-Q0k!^z0@?zQ8Gi-<0063Kaozv`0U=35K~#90?b)$$gfI{V(0?8muvHLHgEA6| zpavD70>~&yHIOM)2Rn*LaisG&xC3Fsf$zVRL42(i2o@kBA|fJM$)F#mo^V96d<>LO6gAm9wnu;`c+u`2B<1xjHf^S zY#4@HjPc$DOIH5{h=_=Yh=_=Yh=_=Y=;DgUUDn#Usw#*GfbW6iRTYiKthIC7wh)oa z4NM;?o(-xhQbS4*5rh!-$aJX9!_g4Js`>lb6&K*Yw0>4x01?47O?zZ{iMQ_nA|fIp cA|iT6UtXqf6Q>i-0{{R307*qoM6N<$f`L+$c>n+a delta 246 zcmV#s#8<==u1BUQO=nkI;4ify3gN1r{zauof*R&yNK}6&qMJwHaXj_%o`SC|W=AgL= z?Y*G^XfqcGV7F?qKr{%nz||T2iHB6y5_OA|kSt7wLB@kG2W`q5uE@07*qoM6N<$g3Q`!UjP6A diff --git a/Resources/Textures/Mobs/Species/Arachnid/parts.rsi/r_foot.png b/Resources/Textures/Mobs/Species/Arachnid/parts.rsi/r_foot.png index d0e5776c0f0b0735f6a53e4e4940a256c622c0ec..2fd627a2a68348a2018b9e0d16edfe3a01b978aa 100644 GIT binary patch delta 281 zcmcb|xRPmtWIY=L1H-D!!h1mKgQtsQNX4ADw+!=I3`ATn&eoXv^pI(i=9-h-35+@o zrW?Cf3aT!0*s?@I(KYzt#R;8LsWrS-|aW)t5~e&eVVY<8#itRlq}YVi422%JXrD zR&p~)v@tf6#?C)kvGVp?Hiw>%XFXx&Pf~f=uT^*7zKTgx)ro__=kk$V>-Jw0KVkXa z&~4Q!ri9yO(^45v?P6q@zw~fF?Ls22WQ%mvv4FO#odnfdBvi delta 205 zcmV;;05bon0^R|T8Gi%-0001Bxm5rF0HsMpK~!jg?bxvm!Y~v?(Tl_gmQrR2Hb@hR z4Kg7cAf;i0lnjtEl6Uwtgvv%hBGKGa+SdQC^#e(gBuSF~>`*!!0(vr6ZpHg=ba4hI z;8L7*EUoW>%)E8?(+nh9h*E??02qN~r}c0L8uD)QBuSDaNk-aP_5VKvoJeFQmY;fp zE}GYbT08J201T06Nx=9+gf1G^o*`G)SNeff-uSB@KX~&1cN8T;-TAWF00000NkvXX Hu0mjf$?;cl diff --git a/Resources/Textures/Mobs/Species/Arachnid/parts.rsi/r_hand.png b/Resources/Textures/Mobs/Species/Arachnid/parts.rsi/r_hand.png index 0a0991ecc2fefce7d9c39c00cbf060e4c52975f3..c010749d5967ca5b41ffb934b667ab644e8011cb 100644 GIT binary patch delta 231 zcmeBRYG#_CQh&T%=7kP{(6`19C$C)Pa^&SNd+`9TiE}>3E)4JDIBDsfpt;n4!EW>N{Mt)#kA>6O zAjSg84{2xCtbJW|@?+twW$$eL|MLIv_416{+ma};E8T8OLsa&AOTU}n|4!OxKST0+ cIZ#8*j{J?so!X@qNrTPsboFyt=akR{02(%DCIA2c delta 236 zcmZo>>R_6nQh(ml#WAE}&f8midk-7%v?bo-eQ3**!Bl#uVQzZybKV=3OpNy&Ri|Ij z72xpuQ_T6vZY{?r=4dY#1~9n)bouv;G~ZBFr6YG!W3T7^wLW2K9y&Eq0?3V=miO$w zt#9_)MXR2x?3uC3Yi((HZ8@W$;!+V$&CcEOeC6!r(^IERni8a<)MtLia{HWO>w7Ql z=FgCXm<=Qk%r@L?cK-8z8Ts`ycD}AZpnTaRR%k`K%<;?B`}Q;h=e_s8we9VY>cJl#Fkl#buBSQgb-k@ZR+boQcx)c=UkDT9nBb1VvNW+i+|4V9)K~X06;CaZJVgz zXelM+oS~Eg@Z0BJy9ZELOKbg8>?)K}&{_k)bAAHvgaeQqlK$ZwrKg|f0mK-^#g25< zzKDp3h=_=Yh=_=Y-pR5or=`RrYIkM)&bd;9N$-7gFez2e+$17rC95HUv42N)8LN{dTbYj2~XF!2B$GkKu>VnUC{TD|ub!~@7V{|O|Y zy#e*P=XwkX7stntN;K207*qo IM6N<$f=G6!r~m)} delta 235 zcmV!IUmjs_MQstGQ*crV$ybsi7DFg^U(!PIKhDgE~vwdMDz;Be60LQ8h1!z5iE&(E2 l%jy7Z#Pb2J_ILn!+!u0vEBj*Fp(_9Y002ovPDHLkV1lzzVe0?@ diff --git a/Resources/Textures/Mobs/Species/Arachnid/parts.rsi/template.png b/Resources/Textures/Mobs/Species/Arachnid/parts.rsi/template.png index f65f180e116268126db43622c0db669dd2a5f19c..15b7c09c64b000baa18d505ec72dee51859057b2 100644 GIT binary patch delta 1427 zcmV;E1#J5G2&4;;BYy>JNklb( zm2c)k{{H?x+wFE*i7d;kIgO*VL6{8m4rKvUN> z;yBjV^E^io1b+bhrbHk7gCC~UBc;S*vB2?o)c01amA+0XX}8;5#xMrSG5PPo)vhhYyj(RhBy3wUS%vOW=U&QVoW!w95MRaII6r4*7Rajwqp@l(X7>1X~o z)1wW4Zyg||gb+d(7-1MT=G|hkKoms?!w|r=5D`L*<^^5+1hXD+<^R`Kp{lC%XEPX? z*L{L`+J8aVmA}^mlv0S}ST9DxFho^V4G*ZQO22_LO)nHH#y}UpId}jK547bUR0`*L zt_u$uEDc^tsf_|$10`jHvC!sMO6e3xpI!NT4IqTTa=E+_N`bI#={(P|TrMGm7_5X1 zKY0KdqN=Kf2iWrWrokWxpp?=09=ERQVKy3JY5HL@e>$hD2hV! z5^VW~uOcjNuz( z{IV>u-|uH-SvG>OZS67G0Ay8jzL`q3BeO5`@!NWzbx-jBhF=4?{HR@ZncttS|L?(+ z`+tbv7S;ynYfAd+2$9^eo3hqfV65kC;fsIJV#wTy=~`t`6ke@X`uVXtLXY+Xh@Ucn z4gcWPAaz*Evb?$X_4Ne+n9t`!#aV-M{-gZA_(czV1wY?h&Vj0}#MEa5#^SfC1BjHO zGX0qiNS~fyawJItQwLXmYpdN$Nj^42?tk&$+aYqmG({#Le$(J}T|4tTO#uK{ zE|&nVZ~uHg+wwk*^ZBg3fOG*Sm;z~kM?d=W6<8hLsGITsDf zh${?3aL)A(kxP1XZirAnK8m7AYXE|j5>XU^F{V=>!Dbp-x5dr$LzX9nrUG%1ClXxR za@JFT_T@|krYwR8ZEo5lw8c|RQGZfks!b6SUED4&!pZhfP;}d3kXa*$a|wzIn3@c7c-t9=Y20_qVe$eRw3>H4a&y z5u#}j1VO{{Qxrk_{eA{q)0}xijLLCa_XiwTgEV;R$D1p|sX(qzI=G${c7Iw8wy#aK z5;S$_a(VBoK@;sW0YB9h?m91E17`!Yn-Wud0DXS88S}IUaLzlot9*mb2mPoA{3-Y` z5BO8?j4n?50zfnP(2+ID)4s9YZZGrsT$ki#Jen*GnpS6wVLqRGT?Y`_gEw_?3B=Zw hAmJy9A0Pbx0cqTYzg76NZwvqc002ovPDHLkV1l*(rh@?t;{HuJo6iW1cA1&u<{@fe-@57ywvGPC`ol;D6%e1Y-=QX)3Z4QuF_cQG%26&wsgn0m*;GAA_I?IC{a{ zJK#uu%mM^WK;QQ_V+_V|B-?}gIXCwBV-~>M36cXGhT#Ta0RXKv0AQYHe2r%Z=O-OF zKk4Z!FGy+HVpUb4uIqJNYYl5HfV^hl@>3Kz!ymK*xc42$5p`WdYmNK;4ggOfDRd?F zc-_#;A%s}RVt+!S*MnWxEmBGVj~AyG=HTN>siZrB^K%$uHX}d?|LzW;EhnYKIF10Y z`SLVQ&wMGHYzGkkD{hW)99Mqe*d%tN0RLxe?P~X~$EVMAU9Yy78rIq;&%ecQjCtbs zS%BRMpxHOZtl8Gqwj*am-y35fr97P&mEiZv1C&x2hJWF96zh#K7>41dl=2bljhy_4 z6Y$E>?13FpP9rz}VHgxbplKQyV;1)SLPRt!gh1Q2o8c-Jx%s_JKx<8&6vQ34)d65j9Jr7rBtz_un&J|?%_QFR}?;D5UOWX zN$h{Zdje7m%vBi8B{%s50$cpCbJq&G!W z4%1q1rnxl6YL(vn-Zeo=MYmR9o@dPSoa_L!g@0+9cKLxvl9a0;^TrzoDA^H`_; z0l;5J(=^RW$dxDsmy0SxK*rl)!WY3(Rn?P1rFw*jpZkHTs><{T@$KdI2b2cql9*!NjgP;0%CPKoeE#M z8&YrwO@I&r^E|K3P&CHtgl*eq3xg!vy?-JH9?elPWx41bAf;T>VNUw-@ewQX5L`BK zPSb>~7CK)|8dX)TFQ2_2LIk{7xztIJ>%do?OrqE?Mz-*;R)v#IK-%5@NST}T7jz(JOQo)qIjG$1$NQ4?Ls-go^C#fawc8ZE&O*oz@t7u-P$oSeL*kp q_A6Lx^Zshgg|+t5yZBTs`F{Xxebz7yr2^~#0000~_=zkcq1JHFH+P3W#KZ?3@4&Hk>=g@Usl7SR`g3_G42qD77r|QqH0mtKU z0{~@NLI}}Idm#kMvh1zpp=4h4%h1yMNzEwPEKomzuj)wZnwR*7$=yE2Ocf5%jL4ln^}4*TvgT6ynwYf zc|aqpFJP?=;?#^7&I~LGX_0p9CzaU&7)x#H&*zH2gSEET8jHI^Dcf*%0ETHb98Op> z2yynsgA!9-Uy-#1rY1DjAzF1=$3UB!3`DL_t(|ob8%XuIeBVhJSDF5(>W6J&22u71mXB1>zp;TY)|F zKA35+>Gc!@&hccv#As;4Km5Y9WePA1!!QiPFt0hE&r{Cxev1AsB?ut|+P0nBhhczo z4gheuT%!7XM_)<_YwcV5e`CazQjk&t0It_7+P1|o3^<)m0Dk~$EdWdZ9Rs^OR&_ZssE1t=F1>)zuy61UWXI}wU;Khe$oDF)!LJzeMzMh0L*1EihnI8j;LMXwZQ|=JF;5qVkP3R z?@*J>h#fqTFav1tVPz&PPL`epxnoEwjD!{1WqGO=xnkICKsf!ryE61u3^B`avjLw} zbSS`2pjzc|;87xfl?03DfS;ZOtL6Z5zE*iW)XK5^q79(i zUJ9V*O*s(o_;%V5ytaLmurS$7=~e(Z{;5z39Rny-S`3k O0000DW`K~#90?V2&p;xG_}AFGujMSo$rbVtgF zhMtr80673>qNhs;q*LEo*l$@+g&jaX|#5C|zHthK?&l8_dF5PZ^pl^s*e4uCNRLWrlRlL6;k zuNHh7V+_3a0Dm5Lp1j1Kj4>~_=oqsD&~+W!w(S)^in?d&qL$K!DW0A*Q12+>P>Aq2{@?5+DWu|5&s?Ogrj8bE0XJZHcfkk0TioU1=O z1BkLL;l1x=fcL(4XO@IAFec8xRI)OlEX!WyrJ$@qtbY?1z+C<001zacT6N!rGJu{o z-uqA#bG#&P0TKn!GqE;GDHvnk{^6Bev9;FsF;Qd8qW=Si`o z7=~dOhG7_nVHoDiNuCdAnr5T5z6&9sl!9{(*XtEUQLOe(PHTO?-EP=!x4pI)d0V7C z4j>5Bb$^ZBZU^A;ZayAXSZb1Ec<%jv9~vaP-41nKBlY5ej0~vjy4Q~f9xbxV<+93~ zS$Zp6Rn^nHfVDPxKqIR!V66?})QlL;3@iz0k#_7SmDvFpOKs}U=Ze3BwYJw9i@QQ8 z+i-ROhG{h%PFOPtarVW75>sAZk+lV;CN$RMQ)M2q0x%RFwyW3RQy#Kvz%c5+l>uX3 zfQ4(oSk%|v24mW>hsA3^Y~;6j*F$murbf}08jqXuFeG%zn^xMTO;@x)~0JzWrpOKzv zeM!5Ze+|nkO5lqF7mh#+eZGZJ4^UDj^+5x>L4JgxRkF(+eSfB(i0fa%m-|0I8KbIO z)CUc8IKT~OzTF9im*|5AS}YDToEaRJR$xG)4;nZX*SjlMPJ*{UqL0jh?T8rI1I#kH z7ls}6W>Ft}4FS%8!DsL+9A2VNq`=%ArR3?O2Hqm=Typi%xn1{@b4MfkC-C}r;KBj; zUZGbMMNt$*QGYfgvR146rl|W01K3q-Lcgl40EeY1>OLGJvMQd2AJ??Cs6h6;z0yz- z8$R&_D$G#XnBg8I2J#~$3KMs$Y}S$!A!xuq!2ec8_YuNL3>tV$86i%=HY5$qH(J)Q z93fhs&!^Cu^89y!9_NAOd0vFYIpA1Vo_p1D0;2}(kTAb>pCM=pd)uOMSgC=g0Gp6W h@Nsm9Kv9&ZVK002ovPDHLkV1k@@#rXgL From 6e924ea5681097b70f6f183ea38d275ee6fe26f8 Mon Sep 17 00:00:00 2001 From: Sir Winters <7543955+Owai-Seek@users.noreply.github.com> Date: Sat, 17 Jun 2023 15:47:56 -0400 Subject: [PATCH 298/474] Pill Renames, add Cryo Bottle and Derma Pill, Burn kit Update (#17414) Co-authored-by: Owai-Seek <> --- .../Catalog/Fills/Items/firstaidkits.yml | 2 +- .../Objects/Specific/Medical/healing.yml | 25 ++++++++++++++----- .../Entities/Objects/Specific/chemistry.yml | 14 +++++++++++ 3 files changed, 34 insertions(+), 7 deletions(-) diff --git a/Resources/Prototypes/Catalog/Fills/Items/firstaidkits.yml b/Resources/Prototypes/Catalog/Fills/Items/firstaidkits.yml index b25d8f5589..1259874be7 100644 --- a/Resources/Prototypes/Catalog/Fills/Items/firstaidkits.yml +++ b/Resources/Prototypes/Catalog/Fills/Items/firstaidkits.yml @@ -26,7 +26,7 @@ - id: SyringeInaprovaline - id: Ointment amount: 4 - - id: PillKelotane + - id: PillDermaline amount: 5 - type: entity diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml index bb58661ec4..cd80727064 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml @@ -169,7 +169,7 @@ # Pills - type: entity - name: dexalin pill + name: dexalin pill (10u) parent: Pill id: PillDexalin components: @@ -182,7 +182,7 @@ Quantity: 10 - type: entity - name: dylovene pill + name: dylovene pill (10u) parent: Pill id: PillDylovene components: @@ -195,7 +195,7 @@ Quantity: 10 - type: entity - name: hyronalin pill + name: hyronalin pill (10u) parent: Pill id: PillHyronalin components: @@ -208,7 +208,7 @@ Quantity: 10 - type: entity - name: iron pill + name: iron pill (10u) parent: Pill id: PillIron components: @@ -221,7 +221,7 @@ Quantity: 10 - type: entity - name: kelotane pill + name: kelotane pill (10u) parent: Pill id: PillKelotane components: @@ -233,6 +233,19 @@ - ReagentId: Kelotane Quantity: 10 +- type: entity + name: dermaline pill (10u) + parent: Pill + id: PillDermaline + components: + - type: SolutionContainerManager + solutions: + food: + maxVol: 20 + reagents: + - ReagentId: Dermaline + Quantity: 10 + - type: entity name: space drugs parent: Pill @@ -247,7 +260,7 @@ Quantity: 15 - type: entity - name: tricordrazine pill + name: tricordrazine pill (10u) parent: Pill id: PillTricordrazine components: diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml index cea368e988..ed24f80e6a 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml @@ -100,6 +100,20 @@ - type: StaticPrice price: 10 +- type: entity + name: cryoxadone beaker + description: Filled with a reagent used in cryogenic tubes. + parent: Beaker + id: CryoxadoneBeakerSmall + components: + - type: SolutionContainerManager + solutions: + beaker: + maxVol: 50 + reagents: + - ReagentId: Cryoxadone + Quantity: 50 + - type: entity name: large beaker parent: BaseBeaker From 4ecca01177ad87403411386a96434a39e0106397 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 17 Jun 2023 15:49:00 -0400 Subject: [PATCH 299/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index c078bb0dc1..e03c4f10f7 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,15 +1,4 @@ Entries: -- author: EmoGarbage404 - changes: - - {message: 'Added the CHIMP handcannon, a hand-held version of science''s APE. - Each bullet packs twice the punch of a normal APE.', type: Add} - id: 3522 - time: '2023-04-23T23:58:45.0000000+00:00' -- author: crazybrain - changes: - - {message: Autolathe icons for screwdrivers and wirecutters are now correct., type: Fix} - id: 3523 - time: '2023-04-24T00:01:54.0000000+00:00' - author: EmoGarbage404 changes: - {message: Printed health analyzers and crew monitors no longer come pre-loaded @@ -2919,3 +2908,16 @@ Entries: as well as the CMO and virology bio suits., type: Fix} id: 4021 time: '2023-06-17T09:55:16.0000000+00:00' +- author: PixelTK + changes: + - {message: Tweaked arachnids to look a bit more fluffier., type: Tweak} + id: 4022 + time: '2023-06-17T19:47:32.0000000+00:00' +- author: Owai-Seek + changes: + - {message: Added Dermaline Pills and Cryoxadone Beaker entities., type: Add} + - {message: 'Unit amounts to medicine in kits is now displayed. (IE: bicardine (10u)', + type: Tweak} + - {message: Burn kits now contain Dermaline pills instead., type: Tweak} + id: 4023 + time: '2023-06-17T19:47:56.0000000+00:00' From bb45db7151c40a366b58f70ab844d75752f74f8f Mon Sep 17 00:00:00 2001 From: Nails+Tape <124523848+Nails-n-Tape@users.noreply.github.com> Date: Sat, 17 Jun 2023 22:31:49 -0400 Subject: [PATCH 300/474] cargo guidebook (#17342) * adds a guidebook entry explaining playable species * adds a cargo guidebook entry * Update guides.ftl * Update shiftandcrew.yml * Update ss14.yml * Delete Species.xml * Update Resources/ServerInfo/Guidebook/Cargo.xml Co-authored-by: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> * Update Resources/ServerInfo/Guidebook/Cargo.xml Co-authored-by: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> * Update Resources/ServerInfo/Guidebook/Cargo.xml Co-authored-by: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> * Update Resources/ServerInfo/Guidebook/Cargo.xml Co-authored-by: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> * Update Resources/ServerInfo/Guidebook/Cargo.xml Co-authored-by: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> * Update Resources/ServerInfo/Guidebook/Cargo.xml Co-authored-by: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> * Update Resources/ServerInfo/Guidebook/Cargo.xml Co-authored-by: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> * Update Resources/ServerInfo/Guidebook/Cargo.xml Co-authored-by: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> --------- Co-authored-by: OttoMaticode <124523848+OttoMaticode@users.noreply.github.com> Co-authored-by: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> --- Resources/Locale/en-US/guidebook/guides.ftl | 2 +- Resources/Prototypes/Guidebook/cargo.yml | 4 +++ .../Prototypes/Guidebook/shiftandcrew.yml | 3 +- Resources/Prototypes/Guidebook/ss14.yml | 2 +- Resources/ServerInfo/Guidebook/Cargo.xml | 31 +++++++++++++++++++ 5 files changed, 39 insertions(+), 3 deletions(-) create mode 100644 Resources/Prototypes/Guidebook/cargo.yml create mode 100644 Resources/ServerInfo/Guidebook/Cargo.xml diff --git a/Resources/Locale/en-US/guidebook/guides.ftl b/Resources/Locale/en-US/guidebook/guides.ftl index 2cd3c1c520..c81a08693d 100644 --- a/Resources/Locale/en-US/guidebook/guides.ftl +++ b/Resources/Locale/en-US/guidebook/guides.ftl @@ -12,6 +12,7 @@ guide-entry-singularity = Singularity guide-entry-controls = Controls guide-entry-radio = Radio guide-entry-jobs = Jobs +guide-entry-cargo = Cargo guide-entry-salvage = Salvage guide-entry-survival = Survival guide-entry-chemicals = Chemicals @@ -27,7 +28,6 @@ guide-entry-medicine = Medicine guide-entry-botanicals = Botanicals guide-entry-cloning = Cloning guide-entry-cryogenics = Cryogenics - guide-entry-science = Science guide-entry-anomalous-research = Anomalous Research guide-entry-scanners-and-vessels = Scanners and Vessels diff --git a/Resources/Prototypes/Guidebook/cargo.yml b/Resources/Prototypes/Guidebook/cargo.yml new file mode 100644 index 0000000000..02893e2148 --- /dev/null +++ b/Resources/Prototypes/Guidebook/cargo.yml @@ -0,0 +1,4 @@ +- type: guideEntry + id: Cargo + name: guide-entry-cargo + text: "/ServerInfo/Guidebook/Cargo.xml" diff --git a/Resources/Prototypes/Guidebook/shiftandcrew.yml b/Resources/Prototypes/Guidebook/shiftandcrew.yml index e68f970346..efabfd2518 100644 --- a/Resources/Prototypes/Guidebook/shiftandcrew.yml +++ b/Resources/Prototypes/Guidebook/shiftandcrew.yml @@ -1,4 +1,4 @@ -- type: guideEntry +- type: guideEntry id: Jobs name: guide-entry-jobs text: "/ServerInfo/Guidebook/Jobs.xml" @@ -10,6 +10,7 @@ - Science - Security - Janitorial + - Cargo - Salvage - Medical diff --git a/Resources/Prototypes/Guidebook/ss14.yml b/Resources/Prototypes/Guidebook/ss14.yml index 55f597c584..2f9f67f6c1 100644 --- a/Resources/Prototypes/Guidebook/ss14.yml +++ b/Resources/Prototypes/Guidebook/ss14.yml @@ -1,4 +1,4 @@ -- type: guideEntry +- type: guideEntry id: SS14 name: guide-entry-ss14 text: "/ServerInfo/Guidebook/SpaceStation14.xml" diff --git a/Resources/ServerInfo/Guidebook/Cargo.xml b/Resources/ServerInfo/Guidebook/Cargo.xml new file mode 100644 index 0000000000..182463a550 --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Cargo.xml @@ -0,0 +1,31 @@ + + # Cargo + The supply department, more commonly known simply as Cargo, is in charge of keeping the station stocked up on necessary resources, such as fuel and raw materials. Though, they are not restricted to simple goods, and can order a wide variety of different items from off-station. The point is, it's Cargo's job to get the rest of the station what they need. + + ## Ordering + + + + Every transaction you make will begin at a [color=#a4885c]cargo request computer[/color], from which you can make orders for specific products. Making any order requires [color=#118C4F]spacebucks[/color], the currency of the station. To make an order, click the "request" button next to whatever you need, type an appropriate reason for why you're ordering it, and hit "approve" when it appears below the request list. + + ## Piloting + Orders are shipped to the station via the [color=#a4885c]cargo shuttle[/color], the remotely piloted spacecraft that cargo uses to buy and sell goods. In order to move the shuttle, you must first find the [color=#a4885c]cargo shuttle computer[/color]. + + + + After clicking the computer, you should see a radar view of the shuttle. Here are the steps for piloting the shuttle back and forth: + + - First, disconnect any airlocks that are connected to the dock. + - Then, you actually get to pilot the shuttle. The controls are fairly simple, with W and S being forward and backward, A and D being turn left and right; and Spacebar being the brake. + - Find the button that designates the trading post. Hit this button, and the shuttle will start traveling to it. + - After a short delay, the option to FTL back to the station will reappear. After this, just pilot the shuttle back to the cargo dock and retrieve the items you ordered. + + ## Selling + So, you want to order something, but don't have the money for it? You just need to sell something! Almost everything on the station has economic value, which an [color=#a4885c]appraisal tool[/color] can read out to you. + + + + + After finding something worth selling, place it on one of the shuttle's cargo pallets. The next time the shuttle is sent to a trading post, the item will be sold and the money will be directly transferred back to the station's bank account. + + From b075912b121c48e0c273c591c76b6e5a1b7f8f27 Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Sun, 18 Jun 2023 05:32:48 +0300 Subject: [PATCH 301/474] slimes.yml cleaning (#17406) * Update slimes.yml * Update slimes.yml --- .../Prototypes/Entities/Mobs/NPCs/slimes.yml | 68 ++----------------- 1 file changed, 7 insertions(+), 61 deletions(-) diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml b/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml index a325d557d1..6bf9320ba3 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml @@ -112,6 +112,10 @@ - type: ReplacementAccent accent: slimes - type: GhostTakeoverAvailable + - type: GhostRole + makeSentient: true + name: ghost-role-information-slimes-name + description: ghost-role-information-slimes-description - type: entity name: blue slime @@ -124,29 +128,17 @@ Base: blue_adult_slime Dead: Base: blue_adult_slime_dead - - type: GhostRole - makeSentient: true - name: ghost-role-information-slimes-name - description: ghost-role-information-slimes-description - type: entity name: blue slime - parent: MobAdultSlimes + parent: MobAdultSlimesBlue id: MobAdultSlimesBlueAngry suffix: Angry components: - type: Faction factions: - SimpleHostile - - type: DamageStateVisuals - states: - Alive: - Base: blue_adult_slime - Dead: - Base: blue_adult_slime_dead - type: GhostRole - makeSentient: true - name: ghost-role-information-slimes-name description: ghost-role-information-angry-slimes-description - type: entity @@ -171,40 +163,17 @@ Structural: 4 Caustic: 1 Poison: 4 - - type: GhostRole - makeSentient: true - name: ghost-role-information-slimes-name - description: ghost-role-information-slimes-description - type: entity name: green slime - parent: MobAdultSlimes + parent: MobAdultSlimesGreen id: MobAdultSlimesGreenAngry suffix: Angry components: - type: Faction factions: - SimpleHostile - - type: Sprite - layers: - - map: [ "enum.DamageStateVisualLayers.Base" ] - state: green_adult_slime - - type: DamageStateVisuals - states: - Alive: - Base: green_adult_slime - Dead: - Base: green_adult_slime_dead - - type: MeleeWeapon - damage: - types: - Blunt: 6 - Structural: 4 - Caustic: 1 - Poison: 4 - type: GhostRole - makeSentient: true - name: ghost-role-information-slimes-name description: ghost-role-information-angry-slimes-description - type: entity @@ -229,38 +198,15 @@ Structural: 4 Caustic: 1 Cellular: 3 - - type: GhostRole - makeSentient: true - name: ghost-role-information-slimes-name - description: ghost-role-information-slimes-description - type: entity name: yellow slime - parent: MobAdultSlimes + parent: MobAdultSlimesYellow id: MobAdultSlimesYellowAngry suffix: Angry components: - type: Faction factions: - SimpleHostile - - type: Sprite - layers: - - map: [ "enum.DamageStateVisualLayers.Base" ] - state: yellow_adult_slime - - type: DamageStateVisuals - states: - Alive: - Base: yellow_adult_slime - Dead: - Base: yellow_adult_slime_dead - - type: MeleeWeapon - damage: - types: - Blunt: 6 - Structural: 4 - Caustic: 1 - Cellular: 3 - type: GhostRole - makeSentient: true - name: ghost-role-information-slimes-name description: ghost-role-information-angry-slimes-description From 7376539e003d0e45d5ea0c930149127ea4254554 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 17 Jun 2023 22:32:54 -0400 Subject: [PATCH 302/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index e03c4f10f7..186422ffd6 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,10 +1,4 @@ Entries: -- author: EmoGarbage404 - changes: - - {message: Printed health analyzers and crew monitors no longer come pre-loaded - with batteries., type: Fix} - id: 3524 - time: '2023-04-24T00:07:41.0000000+00:00' - author: deltanedas changes: - {message: Electricity anomalies will now create an EMP when going supercritical., @@ -2921,3 +2915,8 @@ Entries: - {message: Burn kits now contain Dermaline pills instead., type: Tweak} id: 4023 time: '2023-06-17T19:47:56.0000000+00:00' +- author: Nails-n-Tape + changes: + - {message: added a guidebook entry for cargo, type: Add} + id: 4024 + time: '2023-06-18T02:31:49.0000000+00:00' From f6d658d40bd2298300587cbbbf899efa583b0c64 Mon Sep 17 00:00:00 2001 From: Chief-Engineer <119664036+Chief-Engineer@users.noreply.github.com> Date: Sat, 17 Jun 2023 22:23:42 -0500 Subject: [PATCH 303/474] remove zombie bundle from nukie uplink (#17418) --- .../Prototypes/Catalog/uplink_catalog.yml | 38 +++++++++---------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/Resources/Prototypes/Catalog/uplink_catalog.yml b/Resources/Prototypes/Catalog/uplink_catalog.yml index 6774c444e2..54b55fdd16 100644 --- a/Resources/Prototypes/Catalog/uplink_catalog.yml +++ b/Resources/Prototypes/Catalog/uplink_catalog.yml @@ -469,25 +469,25 @@ categories: - UplinkBundles -- type: listing - id: UplinkZombieBundle - name: uplink-zombie-bundle-name - description: uplink-zombie-bundle-desc - icon: { sprite: /Textures/Structures/Wallmounts/signs.rsi, state: bio } - productEntity: ClothingBackpackDuffelZombieBundle - cost: - Telecrystal: 40 - categories: - - UplinkBundles - conditions: - - !type:StoreWhitelistCondition - whitelist: - tags: - - NukeOpsUplink - - !type:BuyerWhitelistCondition - blacklist: - components: - - SurplusBundle +#- type: listing +# id: UplinkZombieBundle +# name: uplink-zombie-bundle-name +# description: uplink-zombie-bundle-desc +# icon: { sprite: /Textures/Structures/Wallmounts/signs.rsi, state: bio } +# productEntity: ClothingBackpackDuffelZombieBundle +# cost: +# Telecrystal: 40 +# categories: +# - UplinkBundles +# conditions: +# - !type:StoreWhitelistCondition +# whitelist: +# tags: +# - NukeOpsUplink +# - !type:BuyerWhitelistCondition +# blacklist: +# components: +# - SurplusBundle - type: listing id: UplinkSurplusBundle From fa7a69698b68636d09112447e5746de1f57106bd Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 17 Jun 2023 23:24:46 -0400 Subject: [PATCH 304/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 186422ffd6..34c383b0c5 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,10 +1,4 @@ Entries: -- author: deltanedas - changes: - - {message: Electricity anomalies will now create an EMP when going supercritical., - type: Tweak} - id: 3525 - time: '2023-04-24T00:11:24.0000000+00:00' - author: Tunguso4ka changes: - {message: cossacks jumpsuit and hat, type: Add} @@ -2920,3 +2914,9 @@ Entries: - {message: added a guidebook entry for cargo, type: Add} id: 4024 time: '2023-06-18T02:31:49.0000000+00:00' +- author: Chief-Engineer + changes: + - {message: The Syndicate has stopped making zombie bundles available to nuclear + operatives after learning that the included bioweapon has expired., type: Remove} + id: 4025 + time: '2023-06-18T03:23:42.0000000+00:00' From ac9d6c94a0d7124c1b6aff1a2549f171cceb1a31 Mon Sep 17 00:00:00 2001 From: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> Date: Sun, 18 Jun 2023 03:11:29 -0400 Subject: [PATCH 305/474] Add bananium ore to expedition loot (#17421) --- Resources/Prototypes/Procedural/salvage_loot.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Resources/Prototypes/Procedural/salvage_loot.yml b/Resources/Prototypes/Procedural/salvage_loot.yml index 9d46018de5..952737426e 100644 --- a/Resources/Prototypes/Procedural/salvage_loot.yml +++ b/Resources/Prototypes/Procedural/salvage_loot.yml @@ -41,3 +41,11 @@ loots: - !type:BiomeMarkerLoot proto: OreUranium + +- type: salvageLoot + id: OreBananium + desc: Veins of bananium ore + guaranteed: true + loots: + - !type:BiomeMarkerLoot + proto: OreBananium From b9451e537ecfe708226bede6c0d3a838e8bad679 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 18 Jun 2023 03:12:33 -0400 Subject: [PATCH 306/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 34c383b0c5..c8df6b6204 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: Tunguso4ka - changes: - - {message: cossacks jumpsuit and hat, type: Add} - id: 3526 - time: '2023-04-24T01:46:15.0000000+00:00' - author: Kit0vras changes: - {message: Added construction for curtains. They can be disassembled using wire @@ -2920,3 +2915,8 @@ Entries: operatives after learning that the included bioweapon has expired., type: Remove} id: 4025 time: '2023-06-18T03:23:42.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: Bananium now generates on expedition planets., type: Fix} + id: 4026 + time: '2023-06-18T07:11:30.0000000+00:00' From 291ae0bcd27b9960e2943840f6a60c728bab8cbc Mon Sep 17 00:00:00 2001 From: Alekshhh <44923899+Alekshhh@users.noreply.github.com> Date: Sun, 18 Jun 2023 12:12:09 +0300 Subject: [PATCH 307/474] Dwarf Accent Expansion (#17411) --- Resources/Locale/en-US/accent/dwarf.ftl | 266 +++++++++++++++++- .../Prototypes/Accents/word_replacements.yml | 88 ++++++ 2 files changed, 353 insertions(+), 1 deletion(-) diff --git a/Resources/Locale/en-US/accent/dwarf.ftl b/Resources/Locale/en-US/accent/dwarf.ftl index 44673062af..a124ad05d5 100644 --- a/Resources/Locale/en-US/accent/dwarf.ftl +++ b/Resources/Locale/en-US/accent/dwarf.ftl @@ -97,7 +97,7 @@ accent-dwarf-words-31 = too accent-dwarf-words-replace-31 = tae accent-dwarf-words-32 = my -accent-dwarf-words-replace-32 = ma +accent-dwarf-words-replace-32 = me accent-dwarf-words-33 = not accent-dwarf-words-replace-33 = nae @@ -107,3 +107,267 @@ accent-dwarf-words-replace-34 = da accent-dwarf-words-35 = mom accent-dwarf-words-replace-35 = maw + +accent-dwarf-words-36 = newbie +accent-dwarf-words-replace-36 = greenbeard + +accent-dwarf-words-37 = noob +accent-dwarf-words-replace-37 = greenbeard + +accent-dwarf-words-38 = noobie +accent-dwarf-words-replace-38 = greenbeard + +accent-dwarf-words-39 = professional +accent-dwarf-words-replace-39 = greybeard + +accent-dwarf-words-40 = veteran +accent-dwarf-words-replace-40 = greybeard + +accent-dwarf-words-41 = fuck +accent-dwarf-words-replace-41 = sod + +accent-dwarf-words-42 = would +accent-dwarf-words-replace-42 = wou + +accent-dwarf-words-43 = should +accent-dwarf-words-replace-43 = shou + +accent-dwarf-words-44 = could +accent-dwarf-words-replace-44 = cou + +accent-dwarf-words-45 = would've +accent-dwarf-words-replace-45 = wou'hae + +accent-dwarf-words-46 = should've +accent-dwarf-words-replace-46 = shou'hae + +accent-dwarf-words-47 = could've +accent-dwarf-words-replace-47 = cou'hae + +accent-dwarf-words-48 = wouldve +accent-dwarf-words-replace-48 = wouhae + +accent-dwarf-words-49 = shouldve +accent-dwarf-words-replace-49 = shouhae + +accent-dwarf-words-50 = couldve +accent-dwarf-words-replace-50 = couhae + +accent-dwarf-words-51 = would'nt +accent-dwarf-words-replace-51 = wou'nae + +accent-dwarf-words-52 = should'nt +accent-dwarf-words-replace-52 = shou'nae + +accent-dwarf-words-53 = could'nt +accent-dwarf-words-replace-53 = cou'nae + +accent-dwarf-words-54 = wouldnt +accent-dwarf-words-replace-54 = wounae + +accent-dwarf-words-55 = shouldnt +accent-dwarf-words-replace-55 = shounae + +accent-dwarf-words-56 = couldnt +accent-dwarf-words-replace-56 = counae + +accent-dwarf-words-57 = have +accent-dwarf-words-replace-57 = hae + +accent-dwarf-words-58 = no +accent-dwarf-words-replace-58 = nae + +accent-dwarf-words-59 = to +accent-dwarf-words-replace-59 = ta + +accent-dwarf-words-60 = the +accent-dwarf-words-replace-60 = tha + +accent-dwarf-words-61 = have +accent-dwarf-words-replace-61 = hae + +accent-dwarf-words-62 = are +accent-dwarf-words-replace-62 = be + +accent-dwarf-words-63 = is +accent-dwarf-words-replace-63 = be + +accent-dwarf-words-64 = am +accent-dwarf-words-replace-64 = be + +accent-dwarf-words-65 = beer +accent-dwarf-words-replace-65 = booze + +accent-dwarf-words-66 = food +accent-dwarf-words-replace-66 = grub + +accent-dwarf-words-67 = have +accent-dwarf-words-replace-67 = hae + +accent-dwarf-words-68 = hey +accent-dwarf-words-replace-68 = oye + +accent-dwarf-words-69 = what +accent-dwarf-words-replace-69 = wot + +accent-dwarf-words-70 = where +accent-dwarf-words-replace-70 = whaur + +accent-dwarf-words-71 = when +accent-dwarf-words-replace-71 = wen + +accent-dwarf-words-72 = myself +accent-dwarf-words-replace-72 = mesel + +accent-dwarf-words-73 = himself +accent-dwarf-words-replace-73 = hesel + +accent-dwarf-words-74 = herself +accent-dwarf-words-replace-74 = shesel + +accent-dwarf-words-75 = move +accent-dwarf-words-replace-75 = moev + +accent-dwarf-words-76 = moving +accent-dwarf-words-replace-76 = moeven + +accent-dwarf-words-77 = wasn't +accent-dwarf-words-replace-77 = wis'nae + +accent-dwarf-words-78 = wasnt +accent-dwarf-words-replace-78 = wisnae + +accent-dwarf-words-79 = wizard +accent-dwarf-words-replace-79 = wizer + +accent-dwarf-words-80 = fool +accent-dwarf-words-replace-80 = wazzok + +accent-dwarf-words-81 = have +accent-dwarf-words-replace-81 = hae + +accent-dwarf-words-82 = for +accent-dwarf-words-replace-82 = fer + +accent-dwarf-words-83 = about +accent-dwarf-words-replace-83 = abut + +accent-dwarf-words-84 = ow +accent-dwarf-words-replace-84 = och + +accent-dwarf-words-85 = small +accent-dwarf-words-replace-85 = wee + +accent-dwarf-words-86 = tiny +accent-dwarf-words-replace-86 = tinnae + +accent-dwarf-words-87 = baby +accent-dwarf-words-replace-87 = babee + +accent-dwarf-words-88 = after +accent-dwarf-words-replace-88 = efter + +accent-dwarf-words-89 = for +accent-dwarf-words-replace-89 = fer + +accent-dwarf-words-90 = gonna +accent-dwarf-words-replace-90 = gaun'ae + +accent-dwarf-words-91 = going to +accent-dwarf-words-replace-91 = gaun'ae + +accent-dwarf-words-92 = gone +accent-dwarf-words-replace-92 = gaun + +accent-dwarf-words-93 = talk +accent-dwarf-words-replace-93 = blather + +accent-dwarf-words-94 = talking +accent-dwarf-words-replace-94 = blatherin' + +accent-dwarf-words-95 = now +accent-dwarf-words-replace-95 = nou + +accent-dwarf-words-96 = talked +accent-dwarf-words-replace-96 = blathered + +accent-dwarf-words-97 = give +accent-dwarf-words-replace-97 = gie + +accent-dwarf-words-98 = gimme +accent-dwarf-words-replace-98 = gie's + +accent-dwarf-words-99 = give me +accent-dwarf-words-replace-99 = gie's + +accent-dwarf-words-100 = do you +accent-dwarf-words-replace-100 = d'ye + +accent-dwarf-words-101 = with +accent-dwarf-words-replace-101 = wi + +accent-dwarf-words-102 = without +accent-dwarf-words-replace-102 = wi'ou + +accent-dwarf-words-103 = whether +accent-dwarf-words-replace-103 = we'er + +accent-dwarf-words-104 = ever +accent-dwarf-words-replace-104 = e'er + +accent-dwarf-words-105 = whenever +accent-dwarf-words-replace-105 = wen'er + +accent-dwarf-words-106 = whatever +accent-dwarf-words-replace-106 = wot'er + +accent-dwarf-words-107 = how +accent-dwarf-words-replace-107 = hou + +accent-dwarf-words-108 = however +accent-dwarf-words-replace-108 = hou'er + +accent-dwarf-words-109 = think +accent-dwarf-words-replace-109 = reckon + +accent-dwarf-words-110 = thinking +accent-dwarf-words-replace-110 = fer + +accent-dwarf-words-111 = hamlet +accent-dwarf-words-replace-111 = hammy + +accent-dwarf-words-112 = hampster +accent-dwarf-words-replace-112 = hammy + +accent-dwarf-words-113 = nukie +accent-dwarf-words-replace-113 = reddie + +accent-dwarf-words-114 = nuclear op +accent-dwarf-words-replace-114 = reddie + +accent-dwarf-words-115 = nuclear operative +accent-dwarf-words-replace-115 = reddie + +accent-dwarf-words-116 = nuclear agent +accent-dwarf-words-replace-116 = reddie + +accent-dwarf-words-117 = anatag +accent-dwarf-words-replace-117 = baddie + +accent-dwarf-words-118 = syndicate +accent-dwarf-words-replace-118 = baddie + +accent-dwarf-words-119 = syndi +accent-dwarf-words-replace-119 = baddie + +accent-dwarf-words-120 = syndie +accent-dwarf-words-replace-120 = baddie + +accent-dwarf-words-121 = more +accent-dwarf-words-replace-120 = maer + +accent-dwarf-words-122 = moreover +accent-dwarf-words-replace-120 = maero'er + +accent-dwarf-words-123 = over +accent-dwarf-words-replace-120 = o'er diff --git a/Resources/Prototypes/Accents/word_replacements.yml b/Resources/Prototypes/Accents/word_replacements.yml index 7d9089290f..816cb7b3a5 100644 --- a/Resources/Prototypes/Accents/word_replacements.yml +++ b/Resources/Prototypes/Accents/word_replacements.yml @@ -61,6 +61,94 @@ accent-dwarf-words-33: accent-dwarf-words-replace-33 accent-dwarf-words-34: accent-dwarf-words-replace-34 accent-dwarf-words-35: accent-dwarf-words-replace-35 + accent-dwarf-words-36: accent-dwarf-words-replace-36 + accent-dwarf-words-37: accent-dwarf-words-replace-37 + accent-dwarf-words-38: accent-dwarf-words-replace-38 + accent-dwarf-words-39: accent-dwarf-words-replace-39 + accent-dwarf-words-40: accent-dwarf-words-replace-40 + accent-dwarf-words-41: accent-dwarf-words-replace-41 + accent-dwarf-words-42: accent-dwarf-words-replace-42 + accent-dwarf-words-43: accent-dwarf-words-replace-43 + accent-dwarf-words-44: accent-dwarf-words-replace-44 + accent-dwarf-words-45: accent-dwarf-words-replace-45 + accent-dwarf-words-46: accent-dwarf-words-replace-46 + accent-dwarf-words-47: accent-dwarf-words-replace-47 + accent-dwarf-words-48: accent-dwarf-words-replace-48 + accent-dwarf-words-49: accent-dwarf-words-replace-49 + accent-dwarf-words-50: accent-dwarf-words-replace-50 + accent-dwarf-words-51: accent-dwarf-words-replace-51 + accent-dwarf-words-52: accent-dwarf-words-replace-52 + accent-dwarf-words-53: accent-dwarf-words-replace-53 + accent-dwarf-words-54: accent-dwarf-words-replace-54 + accent-dwarf-words-55: accent-dwarf-words-replace-55 + accent-dwarf-words-56: accent-dwarf-words-replace-56 + accent-dwarf-words-57: accent-dwarf-words-replace-57 + accent-dwarf-words-58: accent-dwarf-words-replace-58 + accent-dwarf-words-59: accent-dwarf-words-replace-59 + accent-dwarf-words-60: accent-dwarf-words-replace-60 + accent-dwarf-words-61: accent-dwarf-words-replace-61 + accent-dwarf-words-62: accent-dwarf-words-replace-62 + accent-dwarf-words-63: accent-dwarf-words-replace-63 + accent-dwarf-words-64: accent-dwarf-words-replace-64 + accent-dwarf-words-65: accent-dwarf-words-replace-65 + accent-dwarf-words-66: accent-dwarf-words-replace-66 + accent-dwarf-words-67: accent-dwarf-words-replace-67 + accent-dwarf-words-68: accent-dwarf-words-replace-68 + accent-dwarf-words-69: accent-dwarf-words-replace-69 + accent-dwarf-words-70: accent-dwarf-words-replace-70 + accent-dwarf-words-71: accent-dwarf-words-replace-71 + accent-dwarf-words-72: accent-dwarf-words-replace-72 + accent-dwarf-words-73: accent-dwarf-words-replace-73 + accent-dwarf-words-74: accent-dwarf-words-replace-74 + accent-dwarf-words-75: accent-dwarf-words-replace-75 + accent-dwarf-words-76: accent-dwarf-words-replace-76 + accent-dwarf-words-77: accent-dwarf-words-replace-77 + accent-dwarf-words-78: accent-dwarf-words-replace-78 + accent-dwarf-words-79: accent-dwarf-words-replace-79 + accent-dwarf-words-80: accent-dwarf-words-replace-80 + accent-dwarf-words-81: accent-dwarf-words-replace-81 + accent-dwarf-words-82: accent-dwarf-words-replace-82 + accent-dwarf-words-83: accent-dwarf-words-replace-83 + accent-dwarf-words-84: accent-dwarf-words-replace-84 + accent-dwarf-words-85: accent-dwarf-words-replace-85 + accent-dwarf-words-86: accent-dwarf-words-replace-86 + accent-dwarf-words-87: accent-dwarf-words-replace-87 + accent-dwarf-words-88: accent-dwarf-words-replace-88 + accent-dwarf-words-89: accent-dwarf-words-replace-89 + accent-dwarf-words-90: accent-dwarf-words-replace-90 + accent-dwarf-words-91: accent-dwarf-words-replace-91 + accent-dwarf-words-92: accent-dwarf-words-replace-92 + accent-dwarf-words-93: accent-dwarf-words-replace-93 + accent-dwarf-words-94: accent-dwarf-words-replace-94 + accent-dwarf-words-95: accent-dwarf-words-replace-95 + accent-dwarf-words-96: accent-dwarf-words-replace-96 + accent-dwarf-words-97: accent-dwarf-words-replace-97 + accent-dwarf-words-98: accent-dwarf-words-replace-98 + accent-dwarf-words-99: accent-dwarf-words-replace-99 + accent-dwarf-words-100: accent-dwarf-words-replace-100 + accent-dwarf-words-101: accent-dwarf-words-replace-101 + accent-dwarf-words-102: accent-dwarf-words-replace-102 + accent-dwarf-words-103: accent-dwarf-words-replace-103 + accent-dwarf-words-104: accent-dwarf-words-replace-104 + accent-dwarf-words-105: accent-dwarf-words-replace-105 + accent-dwarf-words-106: accent-dwarf-words-replace-106 + accent-dwarf-words-107: accent-dwarf-words-replace-107 + accent-dwarf-words-108: accent-dwarf-words-replace-108 + accent-dwarf-words-109: accent-dwarf-words-replace-109 + accent-dwarf-words-110: accent-dwarf-words-replace-110 + accent-dwarf-words-111: accent-dwarf-words-replace-111 + accent-dwarf-words-112: accent-dwarf-words-replace-112 + accent-dwarf-words-113: accent-dwarf-words-replace-113 + accent-dwarf-words-114: accent-dwarf-words-replace-114 + accent-dwarf-words-115: accent-dwarf-words-replace-115 + accent-dwarf-words-116: accent-dwarf-words-replace-116 + accent-dwarf-words-117: accent-dwarf-words-replace-117 + accent-dwarf-words-118: accent-dwarf-words-replace-118 + accent-dwarf-words-119: accent-dwarf-words-replace-119 + accent-dwarf-words-120: accent-dwarf-words-replace-120 + accent-dwarf-words-121: accent-dwarf-words-replace-121 + accent-dwarf-words-122: accent-dwarf-words-replace-122 + accent-dwarf-words-123: accent-dwarf-words-replace-123 - type: accent id: pirate From bea9a41966ab046bb0ed1da201a4fe7d2af9b329 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 18 Jun 2023 05:13:13 -0400 Subject: [PATCH 308/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index c8df6b6204..8be78e98d4 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,10 +1,4 @@ Entries: -- author: Kit0vras - changes: - - {message: Added construction for curtains. They can be disassembled using wire - cutters., type: Add} - id: 3527 - time: '2023-04-24T02:12:11.0000000+00:00' - author: freeman2651 changes: - {message: First aid kits are now more thoroughly stocked, type: Tweak} @@ -2920,3 +2914,8 @@ Entries: - {message: Bananium now generates on expedition planets., type: Fix} id: 4026 time: '2023-06-18T07:11:30.0000000+00:00' +- author: Alekshhh + changes: + - {message: Added more dwarf accenting, type: Add} + id: 4027 + time: '2023-06-18T09:12:10.0000000+00:00' From 0b5ccf33954d51404f52027018e090e27f4cddfa Mon Sep 17 00:00:00 2001 From: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> Date: Sun, 18 Jun 2023 10:56:45 -0400 Subject: [PATCH 309/474] Artifact Fragments (#17420) --- .../Xenoarchaeology/item_artifacts.yml | 95 ++++++++++++++++ .../Entities/Structures/Walls/asteroid.yml | 22 ++++ .../Procedural/biome_ore_templates.yml | 9 ++ .../Prototypes/Procedural/salvage_loot.yml | 8 ++ .../Recipes/Crafting/Graphs/artifact.yml | 32 ++++++ .../Prototypes/Recipes/Crafting/artifact.yml | 12 +++ Resources/Prototypes/ore.yml | 5 + Resources/Prototypes/tags.yml | 3 + .../artifact_fragments.rsi/ancientball1.png | Bin 0 -> 309 bytes .../artifact_fragments.rsi/ancientball2.png | Bin 0 -> 286 bytes .../artifact_fragments.rsi/ancientball3.png | Bin 0 -> 269 bytes .../artifact_fragments.rsi/ancientball4.png | Bin 0 -> 267 bytes .../artifact_fragments.rsi/ancientball5.png | Bin 0 -> 261 bytes .../artifact_fragments.rsi/ancientball6.png | Bin 0 -> 302 bytes .../artifact_fragments.rsi/eldritchball1.png | Bin 0 -> 338 bytes .../artifact_fragments.rsi/eldritchball2.png | Bin 0 -> 325 bytes .../artifact_fragments.rsi/eldritchball3.png | Bin 0 -> 344 bytes .../artifact_fragments.rsi/eldritchball4.png | Bin 0 -> 315 bytes .../artifact_fragments.rsi/eldritchball5.png | Bin 0 -> 301 bytes .../artifact_fragments.rsi/eldritchball6.png | Bin 0 -> 387 bytes .../artifact_fragments.rsi/martianball1.png | Bin 0 -> 359 bytes .../artifact_fragments.rsi/martianball2.png | Bin 0 -> 395 bytes .../artifact_fragments.rsi/martianball3.png | Bin 0 -> 374 bytes .../artifact_fragments.rsi/martianball4.png | Bin 0 -> 335 bytes .../artifact_fragments.rsi/martianball5.png | Bin 0 -> 407 bytes .../artifact_fragments.rsi/martianball6.png | Bin 0 -> 331 bytes .../artifact_fragments.rsi/meta.json | 101 ++++++++++++++++++ .../artifact_fragments.rsi/precursorball1.png | Bin 0 -> 297 bytes .../artifact_fragments.rsi/precursorball2.png | Bin 0 -> 278 bytes .../artifact_fragments.rsi/precursorball3.png | Bin 0 -> 271 bytes .../artifact_fragments.rsi/precursorball4.png | Bin 0 -> 262 bytes .../artifact_fragments.rsi/precursorball5.png | Bin 0 -> 216 bytes .../artifact_fragments.rsi/precursorball6.png | Bin 0 -> 266 bytes .../artifact_fragments.rsi/wizardball1.png | Bin 0 -> 258 bytes .../artifact_fragments.rsi/wizardball2.png | Bin 0 -> 293 bytes .../artifact_fragments.rsi/wizardball3.png | Bin 0 -> 239 bytes .../artifact_fragments.rsi/wizardball4.png | Bin 0 -> 284 bytes .../artifact_fragments.rsi/wizardball5.png | Bin 0 -> 219 bytes .../artifact_fragments.rsi/wizardball6.png | Bin 0 -> 228 bytes .../Structures/Walls/rock.rsi/meta.json | 3 + .../Walls/rock.rsi/rock_artifact_fragment.png | Bin 0 -> 482 bytes 41 files changed, 290 insertions(+) create mode 100644 Resources/Prototypes/Recipes/Crafting/Graphs/artifact.yml create mode 100644 Resources/Prototypes/Recipes/Crafting/artifact.yml create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/ancientball1.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/ancientball2.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/ancientball3.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/ancientball4.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/ancientball5.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/ancientball6.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/eldritchball1.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/eldritchball2.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/eldritchball3.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/eldritchball4.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/eldritchball5.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/eldritchball6.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/martianball1.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/martianball2.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/martianball3.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/martianball4.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/martianball5.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/martianball6.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/meta.json create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/precursorball1.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/precursorball2.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/precursorball3.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/precursorball4.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/precursorball5.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/precursorball6.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/wizardball1.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/wizardball2.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/wizardball3.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/wizardball4.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/wizardball5.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/wizardball6.png create mode 100644 Resources/Textures/Structures/Walls/rock.rsi/rock_artifact_fragment.png diff --git a/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/item_artifacts.yml b/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/item_artifacts.yml index 3d74283740..68f4369509 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/item_artifacts.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/item_artifacts.yml @@ -54,6 +54,9 @@ sprite: Objects/Specific/Xenoarchaeology/item_artifacts.rsi heldPrefix: ano01 - type: Actions + - type: Construction + graph: Artifact + node: done - type: GuideHelp guides: - Xenoarchaeology @@ -85,3 +88,95 @@ nodesMin: 9 nodesMax: 13 +# this exists for crafting item artifacts so that the final result can be simple, medium, or complex. +- type: entity + parent: BaseXenoArtifactItem + id: VariedXenoArtifactItem + suffix: Varied + components: + - type: Artifact + nodesMin: 2 + nodesMax: 13 + +- type: entity + id: ArtifactFragment + parent: BaseItem + name: artifact fragment + description: A broken piece of an artifact. You could probably repair it if you had more. + components: + - type: Sprite + sprite: Objects/Specific/Xenoarchaeology/artifact_fragments.rsi + layers: + - state: ancientball1 + map: [ "enum.ArtifactsVisualLayers.Base" ] + - type: RandomSprite + available: #yaml hero + - enum.ArtifactsVisualLayers.Base: + ancientball1: "" + - enum.ArtifactsVisualLayers.Base: + ancientball2: "" + - enum.ArtifactsVisualLayers.Base: + ancientball3: "" + - enum.ArtifactsVisualLayers.Base: + ancientball4: "" + - enum.ArtifactsVisualLayers.Base: + ancientball5: "" + - enum.ArtifactsVisualLayers.Base: + ancientball6: "" + - enum.ArtifactsVisualLayers.Base: + eldritchball1: "" + - enum.ArtifactsVisualLayers.Base: + eldritchball2: "" + - enum.ArtifactsVisualLayers.Base: + eldritchball3: "" + - enum.ArtifactsVisualLayers.Base: + eldritchball4: "" + - enum.ArtifactsVisualLayers.Base: + eldritchball5: "" + - enum.ArtifactsVisualLayers.Base: + eldritchball6: "" + - enum.ArtifactsVisualLayers.Base: + martianball1: "" + - enum.ArtifactsVisualLayers.Base: + martianball2: "" + - enum.ArtifactsVisualLayers.Base: + martianball3: "" + - enum.ArtifactsVisualLayers.Base: + martianball4: "" + - enum.ArtifactsVisualLayers.Base: + martianball5: "" + - enum.ArtifactsVisualLayers.Base: + martianball6: "" + - enum.ArtifactsVisualLayers.Base: + precursorball1: "" + - enum.ArtifactsVisualLayers.Base: + precursorball2: "" + - enum.ArtifactsVisualLayers.Base: + precursorball3: "" + - enum.ArtifactsVisualLayers.Base: + precursorball4: "" + - enum.ArtifactsVisualLayers.Base: + precursorball5: "" + - enum.ArtifactsVisualLayers.Base: + precursorball6: "" + - enum.ArtifactsVisualLayers.Base: + wizardball1: "" + - enum.ArtifactsVisualLayers.Base: + wizardball2: "" + - enum.ArtifactsVisualLayers.Base: + wizardball3: "" + - enum.ArtifactsVisualLayers.Base: + wizardball4: "" + - enum.ArtifactsVisualLayers.Base: + wizardball5: "" + - enum.ArtifactsVisualLayers.Base: + wizardball6: "" + - type: Appearance + - type: Tag + tags: + - ArtifactFragment + - type: StaticPrice + price: 250 + - type: GuideHelp + guides: + - Xenoarchaeology diff --git a/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml b/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml index 031f017868..7e4b86e61c 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml @@ -265,3 +265,25 @@ - map: [ "enum.EdgeLayer.West" ] state: rock_west - state: rock_bananium + +- type: entity + id: WallRockArtifactFragment + parent: WallRock + description: A rock wall. What's that sticking out of it? + suffix: Artifact Fragment + components: + - type: OreVein + oreChance: 1.0 + currentOre: OreArtifactFragment + - type: Sprite + layers: + - state: rock + - map: [ "enum.EdgeLayer.South" ] + state: rock_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_west + - state: rock_artifact_fragment diff --git a/Resources/Prototypes/Procedural/biome_ore_templates.yml b/Resources/Prototypes/Procedural/biome_ore_templates.yml index e55eea8be0..01132b249a 100644 --- a/Resources/Prototypes/Procedural/biome_ore_templates.yml +++ b/Resources/Prototypes/Procedural/biome_ore_templates.yml @@ -52,3 +52,12 @@ maxCount: 6 groupCount: 5 radius: 4 + +# Artifact Fragment +- type: biomeMarkerLayer + id: OreArtifactFragment + proto: WallRockArtifactFragment + entityMask: WallRock + maxCount: 6 + groupCount: 1 + radius: 4 diff --git a/Resources/Prototypes/Procedural/salvage_loot.yml b/Resources/Prototypes/Procedural/salvage_loot.yml index 952737426e..a5a6827069 100644 --- a/Resources/Prototypes/Procedural/salvage_loot.yml +++ b/Resources/Prototypes/Procedural/salvage_loot.yml @@ -49,3 +49,11 @@ loots: - !type:BiomeMarkerLoot proto: OreBananium + +- type: salvageLoot + id: OreArtifactFragment + desc: artifact fragment-embedded rock + guaranteed: true + loots: + - !type:BiomeMarkerLoot + proto: OreArtifactFragment \ No newline at end of file diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/artifact.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/artifact.yml new file mode 100644 index 0000000000..9095cb68a1 --- /dev/null +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/artifact.yml @@ -0,0 +1,32 @@ +- type: constructionGraph + id: Artifact + start: start + graph: + - node: start + edges: + - to: done + steps: + - tag: ArtifactFragment + name: artifact fragment + icon: + sprite: Objects/Specific/Xenoarchaeology/artifact_fragments.rsi + state: ancientball1 + - tag: ArtifactFragment + name: artifact fragment + icon: + sprite: Objects/Specific/Xenoarchaeology/artifact_fragments.rsi + state: ancientball2 + - tag: ArtifactFragment + name: artifact fragment + icon: + sprite: Objects/Specific/Xenoarchaeology/artifact_fragments.rsi + state: ancientball3 + - tag: ArtifactFragment + name: artifact fragment + icon: + sprite: Objects/Specific/Xenoarchaeology/artifact_fragments.rsi + state: ancientball4 + doAfter: 5 + + - node: done + entity: VariedXenoArtifactItem diff --git a/Resources/Prototypes/Recipes/Crafting/artifact.yml b/Resources/Prototypes/Recipes/Crafting/artifact.yml new file mode 100644 index 0000000000..c627f00c16 --- /dev/null +++ b/Resources/Prototypes/Recipes/Crafting/artifact.yml @@ -0,0 +1,12 @@ +- type: construction + name: alien artifact + id: Artifact + graph: Artifact + startNode: start + targetNode: done + category: construction-category-misc + objectType: Item + description: A strange alien artifact + icon: + sprite: Objects/Specific/Xenoarchaeology/item_artifacts.rsi + state: ano01 diff --git a/Resources/Prototypes/ore.yml b/Resources/Prototypes/ore.yml index 9837e3143f..37f24869e1 100644 --- a/Resources/Prototypes/ore.yml +++ b/Resources/Prototypes/ore.yml @@ -29,6 +29,10 @@ id: OreBananium oreEntity: BananiumOre1 +- type: ore + id: OreArtifactFragment + oreEntity: ArtifactFragment + - type: weightedRandom id: RandomOreDistributionStandard weights: @@ -39,3 +43,4 @@ OreSilver: 1 OreUranium: 1 OreBananium: 0.5 + OreArtifactFragment: 0.5 diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index 02f47070c4..bf31967aec 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -10,6 +10,9 @@ - type: Tag id: AppraisalTool +- type: Tag + id: ArtifactFragment + - type: Tag id: ATVKeys diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/ancientball1.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/ancientball1.png new file mode 100644 index 0000000000000000000000000000000000000000..be3924381d679dac362fc4591fff819b0c25b8ae GIT binary patch literal 309 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5DEQpd z#WAE}&f7_bTug=nuI?9(F-NRv60>aF(Az5ZNcZhmzNCe%y$@J>9vsSg$e5#(RA(Uc zRxR>wnq3P|@RR*NXR2M*VH98hArGd2tc-%}+KfM<49BiNa(jGpir?|3oZL-y>Rc_n z44>aQ9Q?Alf8NxGP8%2#dM5k3ZJDDV!~eBz^J0mO3p z^PbA&GkJ#ZZ=3JFy~UoNkww6PfpHPz+pzsF_^h6ORo#8-ZC&0UmWG11b7IBT?>37c z;?h6Fn_zLQ!fNB!BGGFZ%$K_h7$d6lEx4}lKD%v=>_IWZJG=|Z&S-IQ_^iujt;ue1 zf9$%0;f6%$Vn&A#d^UoL60iT1RAj4LHgMReHviBx+Vf5MN6U(P-`|P;Rqo>S=JGHF dJA$QxfpKBs!IEpCyg3KQNeyY1bzt-0I18 z`LTYcr|Eltk6jOs2Q)B=EI9C=`%Cp>x8KiKzY`JeD78p2Ns<{mSygfm$gJUSGenPPnx$T6ND3vjv@oHT$AG z`m;5*F-EU#VgGJ?BtW+B%h7p?2Ml&M`kxT{@TY7o*A`w@4F^W9fCs#nAA7lJ37&ET PdWFH$)z4*}Q$iB}Axvnh literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/ancientball4.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/ancientball4.png new file mode 100644 index 0000000000000000000000000000000000000000..dd3737f9055c7a90a14489ca19ea0b2f2a7279a2 GIT binary patch literal 267 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5D7e?t z#WAE}PI96|g2AhXK=vN1ge#2B*BN8h82wLtlfQqy!KJH=3a6JoIXc1R$iMqLi~Drk zCp=}C@U(2*xrA?bZ}Usev)jR3CSs}RIE{IpZOzdQN#}|z?3Gj}J-qO4uR|f*Bw5Eo z4h8EL8HX~Ch8mr<3z(iYFKS%Jw?J({7qg$djaxi>gOHTQ!Nx^QEIx179_U*Tt=C}5 z9rN)Q3g*}KbLh*2~7aE CMP$+d literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/ancientball6.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/ancientball6.png new file mode 100644 index 0000000000000000000000000000000000000000..ec472f916b0c9d63b07dfe4a62f34396e546d1c1 GIT binary patch literal 302 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5DEPqB z#WAE}&fBSmT!$P4T$M8(GwOs~Nb*;>5s{%dFG^?22EjcI+A0gg33S^S7J|JQHpr?6bu)k6SLqQXV?R=xo>sL-2Up}g1 zne#nR$dTzq&rfzG%ZC#VS%$rN%^~DqD8kCYa7eOJQS;kZPLXaW7QwmV$N7Jp*H4UW unVW6zIMpF?$*Zhy`wy`A0MP?|mblG4tsmw}Y}*U;D}$%2pUXO@geCw6wrvFf literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/eldritchball1.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/eldritchball1.png new file mode 100644 index 0000000000000000000000000000000000000000..ff0962856b7a3587bfc19cab04cd205023c73956 GIT binary patch literal 338 zcmV-Y0j>UtP)IyNoX21@aq0;e zkij^(uo)PUzfePj7+ytK`j*mm_`d%1bxsqP6|e$UzzVPhoW-Wdvt-tHeNX{Fd`HkZ zOImwamqcud-U4rU8g>G(esF_=E5S-Y<}oQqIRc_%$4G|NTR?*VKd$x^r9ypcxcUXP z*k1&+1QJ+pm*vbON~=^%;cS6sMd^bAUl4BIFU1nT>36P2x9d~ELm3n1r~74`E@^39Vh=5|(DQKDI2nmzdklh7Br^o^ZR*ePb3Uk)qepbr6he04uK33rzLrYrXr_yyQLgj}! z8$SFk@_zoyv2xmlx1UUs_o+E{Fy6`I(?8X9YMD~Q3N_2 zUu^%TUs+rFO%Lp?sZ$6Ezff5(GpRh+bZ1pIL&#dI_~q>>4IJM6d1nu&XmxA1_b_`6Nj1!NYyukO)w&#bau#)AIbkQ5kKiZsv_ZqyGb9j1(sZHv9 zII}}(SJn6H?@tLDDE2AVBrqkeWl&J~dgHH|dSV!N1ZP-dZ$^>$nL6$XI;%bVpR4`X n|0FR}EmkJMkE4MBi1sji%WY%qn7yI_7*q_Nu6{1-oD!M<-9>_> literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/eldritchball4.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/eldritchball4.png new file mode 100644 index 0000000000000000000000000000000000000000..f162c6db402246ef3bacde7bd014a9f8bca93f2e GIT binary patch literal 315 zcmV-B0mS}^P)Yf2iUfwgyj86)7OdqU;pNT{0`4= N002ovPDHLkV1hAef2{xj literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/eldritchball5.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/eldritchball5.png new file mode 100644 index 0000000000000000000000000000000000000000..944be9bbc8a517016ed942a5c647be3d975e8fdd GIT binary patch literal 301 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5D0tt~ z#WAE}&fCcw`I-y_+WL>MhKsYSKYk!=FmuO83A;J{2i+cBQ7_QoYdg4fcBA0$?Uqfm z&2l+T{^hRMeE5G|dF;hALJW)oK-BP*agO=ZfZ1Bf{m)Cz+Ho>4g{*gv7h|t7%Mbcn z_hPqu+uoYDwIvLEAzS5YmzpSk*<^ijt7^HFYuq#*+0q#3dgm~G_h_AM^`WD4{ugQu&X%Q~loCIG=HZTJ8H literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/eldritchball6.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/eldritchball6.png new file mode 100644 index 0000000000000000000000000000000000000000..64739d27175282254237c3cea8c9dc1f3739f5e1 GIT binary patch literal 387 zcmV-}0et?6P)IKVc1BR zdIE>)U>IE3jEva#>Z{1qD#V!dPY5X?{9ph6j}iP>0U!VbfB^7+0O?dTvQ~Co-_H?0 z$9rC7(O>{*B9<|LG;22F=auSDYm;S9hgyZm5x%|b(&D@tH9UxBO_P4}Iz0Z?X# z0OQHK0j}}B9LKOP3xe2}-~{0eU}6=G`FLT^9L1gB=+WHuyIu)U)H+^-I96AnK4>MU z89{L}cyTJd0km6wtYYdzCY9YiC&L<~1J4PdG1R4lZMvr2quOUb2mqb0HczJ7urlY4 z6Tw15G{+*g{}a6dSO{H2gpj3z?j&$GeB}KnWC+?Rm{H@xaR*%E{|Mj(@sf{WF93Zi h00e*l5CDD-@BshGx^VQ!Pj5=V{0izBWnhxmk-2ES$c*%BGMw&YS zWVwNkGJ~SOI0MV`y9~Ea@i3^GePLKV?_TLI4C_U55FZfk9kE z6>RyT{d^1{$1z+13XEiEBs&1+2vC9q`4$ww4 zz~%^YEhpOnFhGgL6gz;NLWimjpcWW)z^DU89WdYy006j=Y3pF*v0DHD002ovPDHLk FV1hgAhkO74 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/martianball2.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/martianball2.png new file mode 100644 index 0000000000000000000000000000000000000000..5e0ed8a4d804192952b784674996560fd972305f GIT binary patch literal 395 zcmV;60d)R}P)*mGA5QzcUoNK*Wlk@v?Cw5}_jM74> z94KF9F!^}F*M2ds5rV6K;vpD@&`Jd`>g^#{$l>$IG#q>I;YmG}&EWVjGyn^yG%i?$ za5{hinalq6@fCN4OXJMQoYG)MG*SW3;#BrrZc8_KW+17zc3M{Lbf_}`gmT+pxVS9= z=z^^h1BkUxzJv`p6_B`YL=c;?Obj5_n#41Bw4RNZc5@PJzX_^W@Y66_t@HK`*hxJF p>q5547jZj(Mh?IMIDmfz@C`S$ax%^x;n4s9002ovPDHLkV1i3Hr#=7x literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/martianball3.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/martianball3.png new file mode 100644 index 0000000000000000000000000000000000000000..09b3d54cfdce48f20d1a69070c52a4a43e30737f GIT binary patch literal 374 zcmV-+0g3*JP)P{% zD_RO&I(2e#5pi(=oa4JUyteDRCc3;k_;?aH-?@QY;LKwI7GMDu zU;#$~o*zC!Iy>W9>ZAZ2?B=u49dd{7xVdy0nHZoy>!whC3aR;YvPK0fMo{>4;&3=WlN8_=0ff|+ zLJ9FQ+;Drzh(APn)$`%sW=;yw@B9DCP1i35=*Gu}ive+t7$9vN8z8Q+01L2y0~gzK UNdrh`R{#J207*qoM6N<$f`!SO3IG5A literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/martianball4.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/martianball4.png new file mode 100644 index 0000000000000000000000000000000000000000..1cd22d20bdc0d2f73e568f250178e0c8848d7de1 GIT binary patch literal 335 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv(mfq{|H z)5S5QV$Rzs3%L#jh_wB0jO1CA5R$_s+_s?UY{JLPFPdt0O_2s1V$F^lB6zs7jm{oc zN}B)MTtwvb-BOMszMkrG_UFIPSx!&=@K}IR5QG~43rc*y&UpRds`MpVA2^Q~Zw_mG zTy-(d)ycErq;+%Ip5sWMSTn`>`e)nhh5p#bU zVQX~-nBN{al^UP6?ias@&IgV|rK_$BU0}`TuF-aJ cU;(0c%TFfPH7q?p85lwgp00i_>zopr0Mbc>O8@`> literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/martianball5.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/martianball5.png new file mode 100644 index 0000000000000000000000000000000000000000..a04e13bd7e2b39dd834d84e340514add3c7ea910 GIT binary patch literal 407 zcmV;I0cie-P)?_vrruBBGN$+Kb8zavq^AMEFC&@Z|{3A7ZP#E8>3zB8A5I@fKLo5RY**#NZpU9~L7v%y?`<3g|j8l~q*>Z==I{kDT!$YbdTa=y1{ z#fD%3ge%vEpC4-M-2RAX9^Q1x`DJ{7aOKyz0GlrhE>!jPM+>|4N&sb1ymZk!1ptXs zQ{~t~LLdiW3Ouz((wO9ZpQr&6Rc_Z*TFZ9u+Er^0U%_>zeQ*^UfRa&4TJzaBi+ij@ z^^Qp2m*10^vjF7IrV}twX(!_VbsN%L*B*XP9UubXt46$bbgn2iD(48Y0krgT>|Z+E z^oal{Aze0y%(&?j0UTqN8bDg+i2>4-0Wbgt;17L`g!#YC?NR^$002ovPDHLkV1lZ- Bsu2JH literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/martianball6.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/martianball6.png new file mode 100644 index 0000000000000000000000000000000000000000..2f995fa13aef5f5b18b5a9e63feb256d212c1cd9 GIT binary patch literal 331 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5DEQaY z#WAE}PI96|g2AhXK=vN1ge#1T`6NmiBKcl?yz^IncE!oEaJO033WqjH=j_}%U$l9K z9`oVVr+Ikd-|tO%AZ&YH;N!yI|GOS9Rk3VJVV}VvVIc8Bqgl6|F?6%O!X(9`$0jho zV3>49S(|Ie)FTJ&*cmk^?&i^de?QG)%Y6P926B_mD&1sEw~I+gxWUrNB=O_REdh^v zsWXaGbl=J{^d%=)S!{m6J X?zeyOo_mVGfMD=+^>bP0l+XkKYAt;} literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/meta.json b/Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/meta.json new file mode 100644 index 0000000000..8f25165f0d --- /dev/null +++ b/Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/meta.json @@ -0,0 +1,101 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-3.0", + "copyright": "Taken from goonstation at commit https://github.com/goonstation/goonstation/commit/8c9738746d1222a80dddff25af1bceda58bbccac and created by Flaborized.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "precursorball1" + }, + { + "name": "precursorball2" + }, + { + "name": "precursorball3" + }, + { + "name": "precursorball4" + }, + { + "name": "precursorball5" + }, + { + "name": "precursorball6" + }, + { + "name": "wizardball1" + }, + { + "name": "wizardball2" + }, + { + "name": "wizardball3" + }, + { + "name": "wizardball4" + }, + { + "name": "wizardball5" + }, + { + "name": "wizardball6" + }, + { + "name": "martianball1" + }, + { + "name": "martianball2" + }, + { + "name": "martianball3" + }, + { + "name": "martianball4" + }, + { + "name": "martianball5" + }, + { + "name": "martianball6" + }, + { + "name": "eldritchball1" + }, + { + "name": "eldritchball2" + }, + { + "name": "eldritchball3" + }, + { + "name": "eldritchball4" + }, + { + "name": "eldritchball5" + }, + { + "name": "eldritchball6" + }, + { + "name": "ancientball1" + }, + { + "name": "ancientball2" + }, + { + "name": "ancientball3" + }, + { + "name": "ancientball4" + }, + { + "name": "ancientball5" + }, + { + "name": "ancientball6" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/precursorball1.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/precursorball1.png new file mode 100644 index 0000000000000000000000000000000000000000..be40eacd617c0bc10a1336c577ab718df8ff0254 GIT binary patch literal 297 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5D0th` z#WAE}PI96|g2AhXK=vN1ge#2BmlLlgbC*-GHQr;u&T5(=$yN#t1do4l=a25W|=FO&3d=-H7tAg|A5P}hIzb+ z)8cIkr#?K=DZ1q(tARTU%d`LP{n-J(Dn9;EJvnXi8-^7313whH9UEj$pDbcHBghlN p=m+#BgQu&X%Q~loCID~{aNYm_ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/precursorball2.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/precursorball2.png new file mode 100644 index 0000000000000000000000000000000000000000..8f5518630c032af0aeb008c9c357fc4b256185dc GIT binary patch literal 278 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5D0srt z#WAE}PI96|g2AhXK=vN1ge#1T`4nz5zGOZ7-|@@o_WT2XcwegCxI}44vBs4-C`WALGJ19(#-%TP3%C(~4C>7jHR?`w6VOLrIzPQSe~H{b~W z+dIbv1ZMo7AL2eilu0!-l4tq3dj|xxee;!W>P(Vl;L4itH0_v_#v|L@%Mx)m^`6!2 z9jChu*38@5m1sJ}zi+9CC4&gl!py`60uFs`CwnKqeB8ju-`K6b&gjXt=SeLL8sZI4 zGTt=^tA`nQoe}!qugl_4WKzz+F(LRtz*WX8EI{X#9$3NbCTsA3kAcDHl@I^w)JOrK PXBa$P{an^LB{Ts5tO{V- literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/precursorball4.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/precursorball4.png new file mode 100644 index 0000000000000000000000000000000000000000..35ecb7ce501d449107960b8392d6edc71cd5652b GIT binary patch literal 262 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5D7eGZ z#WAE}PI96|g2AhXK=vN1ge#1T`4nz5zGOZ7f8tML^(#h~&N3>T_FlE=z?=NSV_mhm z`rg-*g+Q$!;J^})x%l_CFLM}tD#MOE6H$y{h@Q84R+Gk(-xXhs%5_+(8%uA$w922< z#`;6;y64mjCOt>~&g0#{aq>%2L+6$lo*&8(gDlwh*p}-&;#zL44-)Wn^>bP0l+XkK DFeFU^ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/precursorball6.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/precursorball6.png new file mode 100644 index 0000000000000000000000000000000000000000..e360bb6ee00a17b05a36185add1261f22248acb0 GIT binary patch literal 266 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5D7eSd z#WAE}PI96|g2AhXK=vN1ge#1T`4nz5zGOZ7f8tML^(#h~&N3>T_FlC~!f)geXTy}4aX!|hD~?Q-Q_%EW_*p|^3s>SJPR`u71U1lDQL4y&=s35p7>&3WV?`* zNjbxrP2%U{n+!YZGoITS%+}*;XuR_)#zJ}q+X0;{KXGio2Q|Gk?TY}5X8Jn6~KtIOswd;sx1UHx3vIVCg!00SpmdjJ3c literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/wizardball2.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/wizardball2.png new file mode 100644 index 0000000000000000000000000000000000000000..eea52292e1284a84d4fc115647f377a6b444629f GIT binary patch literal 293 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5D0tn| z#WAE}&fBYod`$)ttPkcNxypHmw~A5xe1b)bc)=H@m;-_D53u&6CwycPC`%~X{w+V~ zsNXli%M@M6Nf~?Y0K!X zDp3g>90{j)-<~_^ZriC9je_?W^v;Lz2ft%;tYB>0yqh6T(Lec=#KMVw9EYS?`h5r`Yn3T7d$mM;JV=HVg_fIi(3=_ nwaBx~dui{+Bmi`bftmjMYen(Pwj8?v^df_&tDnm{r-UW|bgy&T literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/wizardball3.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/wizardball3.png new file mode 100644 index 0000000000000000000000000000000000000000..24e77d32c72ab595ab36c6c0952ccd3f1fbc2304 GIT binary patch literal 239 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5D7etm z#WAE}&fCiyd7BLcSTAgL@n*N>ifm|;3}{PeoN~tTG+(4b5}UbC!&AFui;gEO)+umP zSn^*wzTAKL`wl%mpb!)9)s-VAw_f9oc_+4A>~m{}8R!Rh#)Z=PRDbJ3JP zxX&R-^k1pK$_`nx17DimYmU$G@OjSM$Hl$Dyk7gEnfJn%UxfY%F0@zRcp$XPMxww4 aVsZpy@?FD&J>L76KzvVEKbLh*2~7Yv1yeu( literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/wizardball4.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/wizardball4.png new file mode 100644 index 0000000000000000000000000000000000000000..c2e54233b9638ac03948ded05be831d4a7244307 GIT binary patch literal 284 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5D0t4( z#WAE}&fBXSc@G%~uwF1;wA8pZC6#g3nTCi4J?;P_cGWirm^zv`FKu9Oe90+l+kRfK zXd^4B z;=twt?_~SA0b4DXMIW?YI9h+76>R^9 b-UbP0l+XkKP|9k6 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/wizardball5.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/artifact_fragments.rsi/wizardball5.png new file mode 100644 index 0000000000000000000000000000000000000000..f79f86686eed8c78bc6bb64fee5634665b606ff5 GIT binary patch literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5DA?=i z;uumf=j|m!J_iF4wg=%GrQRx?dmx~fP|UbEcxS^G9x-)=GOL@Rf^3hKb5;IJ&)UQH z{(oH5d>L_|ZV=eOSoz{*hbYoD#1sTVOlRa}yD8wKO_8kB3YF8h9ab4vERgcw-9Lr<71Q=tA!;}9k zXq#xG%51W@f6rV0BkSK?Vaar1*ehY3x0|i|#TDlI1BzdoPFKE{6at#XBJjbyfmx_u WXTrPx$oJmAMR9J=Wl}$?mQ51$>Ef+I{8yygmi0KM$Gnf>@z({{U3thE!>!x-Q;ZlTl z(GLjf7nBl4LL?GoU=(DNEecG8C_i?c7GhM6I_QjUe0DQj&hyT_=biz^j8T9w7cu6d zVYrM+a_{O2re_(35uznug`CK``h77c4Ev$yvaV4Bj^}nST2JeMZ=LO-DGY7 z0GZ5TSI49ta&N!~Z@|}lu>~oq-qB^ zUL=keY1!iMSvZ|YVSjf^^;h>?$nhdc9D~zh!_3?ilGy^zD@o0^Rdpeb7irzT^b;c6 zD42}pYx@2h#;wikm^Bn}RQ^&t%B%Mr zkOy*k05CV7wIFU4>26V=^0uFXg0bgZ2zg=@^2D^6AHU^stEeh~W{gzcA}AO~Cm*8+ Y-x&#^g%{jI^8f$<07*qoM6N<$g8dH6lK=n! literal 0 HcmV?d00001 From 0467182c71a5ee1d54cd6dc6d956c7d8884c5bfb Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 18 Jun 2023 10:57:50 -0400 Subject: [PATCH 310/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 8be78e98d4..49969ffde1 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: freeman2651 - changes: - - {message: First aid kits are now more thoroughly stocked, type: Tweak} - id: 3528 - time: '2023-04-24T02:15:21.0000000+00:00' - author: lzk changes: - {message: Solar's Best Hot Drinks has more best hot drinks, type: Tweak} @@ -2919,3 +2914,10 @@ Entries: - {message: Added more dwarf accenting, type: Add} id: 4027 time: '2023-06-18T09:12:10.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: Added artifact fragments. These can be uncovered in rock on planets + and asteroids. Combining a few of them will produce an artifact that science + can research., type: Add} + id: 4028 + time: '2023-06-18T14:56:45.0000000+00:00' From 0d0bef455ee086c8fb84eb5e3cd4529a5df5fb49 Mon Sep 17 00:00:00 2001 From: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> Date: Sun, 18 Jun 2023 11:02:27 -0400 Subject: [PATCH 311/474] artifact resprite (#17417) --- .../Xenoarchaeology/structure_artifacts.yml | 13 +- .../item_artifacts.rsi/ano01-inhand-left.png | Bin 327 -> 364 bytes .../item_artifacts.rsi/ano01-inhand-right.png | Bin 310 -> 351 bytes .../item_artifacts.rsi/ano01.png | Bin 303 -> 375 bytes .../item_artifacts.rsi/ano01_on.png | Bin 817 -> 569 bytes .../item_artifacts.rsi/ano02-inhand-left.png | Bin 463 -> 533 bytes .../item_artifacts.rsi/ano02-inhand-right.png | Bin 477 -> 526 bytes .../item_artifacts.rsi/ano02.png | Bin 399 -> 438 bytes .../item_artifacts.rsi/ano02_on.png | Bin 774 -> 587 bytes .../item_artifacts.rsi/ano03-inhand-left.png | Bin 385 -> 353 bytes .../item_artifacts.rsi/ano03-inhand-right.png | Bin 388 -> 371 bytes .../item_artifacts.rsi/ano03.png | Bin 494 -> 578 bytes .../item_artifacts.rsi/ano03_on.png | Bin 720 -> 716 bytes .../item_artifacts.rsi/ano04-inhand-left.png | Bin 256 -> 259 bytes .../item_artifacts.rsi/ano04-inhand-right.png | Bin 261 -> 263 bytes .../item_artifacts.rsi/ano04.png | Bin 523 -> 620 bytes .../item_artifacts.rsi/ano04_on.png | Bin 863 -> 771 bytes .../item_artifacts.rsi/ano05-inhand-left.png | Bin 463 -> 490 bytes .../item_artifacts.rsi/ano05-inhand-right.png | Bin 465 -> 497 bytes .../item_artifacts.rsi/ano05.png | Bin 372 -> 470 bytes .../item_artifacts.rsi/ano05_on.png | Bin 889 -> 856 bytes .../item_artifacts.rsi/ano06-inhand-left.png | Bin 476 -> 459 bytes .../item_artifacts.rsi/ano06-inhand-right.png | Bin 482 -> 468 bytes .../item_artifacts.rsi/ano06.png | Bin 446 -> 625 bytes .../item_artifacts.rsi/ano06_on.png | Bin 1021 -> 1030 bytes .../item_artifacts.rsi/ano07-inhand-left.png | Bin 640 -> 663 bytes .../item_artifacts.rsi/ano07-inhand-right.png | Bin 654 -> 669 bytes .../item_artifacts.rsi/ano07.png | Bin 500 -> 556 bytes .../item_artifacts.rsi/ano07_on.png | Bin 749 -> 622 bytes .../item_artifacts.rsi/ano08-inhand-left.png | Bin 648 -> 623 bytes .../item_artifacts.rsi/ano08-inhand-right.png | Bin 664 -> 642 bytes .../item_artifacts.rsi/ano08.png | Bin 386 -> 526 bytes .../item_artifacts.rsi/ano08_on.png | Bin 547 -> 638 bytes .../item_artifacts.rsi/ano09-inhand-left.png | Bin 578 -> 604 bytes .../item_artifacts.rsi/ano09-inhand-right.png | Bin 582 -> 501 bytes .../item_artifacts.rsi/ano09.png | Bin 359 -> 400 bytes .../item_artifacts.rsi/ano09_on.png | Bin 619 -> 423 bytes .../item_artifacts.rsi/ano10-inhand-left.png | Bin 540 -> 633 bytes .../item_artifacts.rsi/ano10-inhand-right.png | Bin 551 -> 591 bytes .../item_artifacts.rsi/ano10.png | Bin 359 -> 407 bytes .../item_artifacts.rsi/ano10_on.png | Bin 676 -> 437 bytes .../item_artifacts.rsi/meta.json | 113 +-- .../xeno_artifacts.rsi/ano01.png | Bin 572 -> 551 bytes .../xeno_artifacts.rsi/ano01_on.png | Bin 1679 -> 865 bytes .../xeno_artifacts.rsi/ano02.png | Bin 304 -> 475 bytes .../xeno_artifacts.rsi/ano02_on.png | Bin 656 -> 797 bytes .../xeno_artifacts.rsi/ano03.png | Bin 1014 -> 674 bytes .../xeno_artifacts.rsi/ano03_on.png | Bin 4385 -> 890 bytes .../xeno_artifacts.rsi/ano04.png | Bin 836 -> 604 bytes .../xeno_artifacts.rsi/ano04_on.png | Bin 3606 -> 807 bytes .../xeno_artifacts.rsi/ano05.png | Bin 818 -> 632 bytes .../xeno_artifacts.rsi/ano05_on.png | Bin 3022 -> 991 bytes .../xeno_artifacts.rsi/ano06.png | Bin 337 -> 600 bytes .../xeno_artifacts.rsi/ano06_on.png | Bin 1706 -> 976 bytes .../xeno_artifacts.rsi/ano07.png | Bin 661 -> 519 bytes .../xeno_artifacts.rsi/ano07_on.png | Bin 2494 -> 700 bytes .../xeno_artifacts.rsi/ano08.png | Bin 783 -> 818 bytes .../xeno_artifacts.rsi/ano08_on.png | Bin 1669 -> 778 bytes .../xeno_artifacts.rsi/ano09.png | Bin 1004 -> 839 bytes .../xeno_artifacts.rsi/ano09_on.png | Bin 3676 -> 867 bytes .../xeno_artifacts.rsi/ano10.png | Bin 745 -> 703 bytes .../xeno_artifacts.rsi/ano10_on.png | Bin 2036 -> 661 bytes .../xeno_artifacts.rsi/ano11.png | Bin 1020 -> 696 bytes .../xeno_artifacts.rsi/ano11_on.png | Bin 1023 -> 946 bytes .../xeno_artifacts.rsi/ano12.png | Bin 787 -> 844 bytes .../xeno_artifacts.rsi/ano12_on.png | Bin 3487 -> 852 bytes .../xeno_artifacts.rsi/ano13.png | Bin 1610 -> 880 bytes .../xeno_artifacts.rsi/ano13_on.png | Bin 3812 -> 698 bytes .../xeno_artifacts.rsi/ano14.png | Bin 435 -> 750 bytes .../xeno_artifacts.rsi/ano14_on.png | Bin 3352 -> 808 bytes .../xeno_artifacts.rsi/ano15.png | Bin 0 -> 984 bytes .../xeno_artifacts.rsi/ano15_on.png | Bin 0 -> 1024 bytes .../xeno_artifacts.rsi/ano16.png | Bin 0 -> 961 bytes .../xeno_artifacts.rsi/ano16_on.png | Bin 0 -> 1059 bytes .../xeno_artifacts.rsi/ano17.png | Bin 0 -> 882 bytes .../xeno_artifacts.rsi/ano17_on.png | Bin 0 -> 957 bytes .../xeno_artifacts.rsi/ano18.png | Bin 0 -> 882 bytes .../xeno_artifacts.rsi/ano18_on.png | Bin 0 -> 1025 bytes .../xeno_artifacts.rsi/ano19.png | Bin 0 -> 1137 bytes .../xeno_artifacts.rsi/ano19_on.png | Bin 0 -> 1371 bytes .../xeno_artifacts.rsi/ano20.png | Bin 0 -> 1056 bytes .../xeno_artifacts.rsi/ano20_on.png | Bin 0 -> 1215 bytes .../xeno_artifacts.rsi/ano21.png | Bin 0 -> 1001 bytes .../xeno_artifacts.rsi/ano21_on.png | Bin 0 -> 1161 bytes .../xeno_artifacts.rsi/ano22.png | Bin 0 -> 520 bytes .../xeno_artifacts.rsi/ano22_on.png | Bin 0 -> 445 bytes .../xeno_artifacts.rsi/ano23.png | Bin 0 -> 576 bytes .../xeno_artifacts.rsi/ano23_on.png | Bin 0 -> 497 bytes .../xeno_artifacts.rsi/ano24.png | Bin 0 -> 608 bytes .../xeno_artifacts.rsi/ano24_on.png | Bin 0 -> 512 bytes .../xeno_artifacts.rsi/ano25.png | Bin 0 -> 655 bytes .../xeno_artifacts.rsi/ano25_on.png | Bin 0 -> 557 bytes .../xeno_artifacts.rsi/ano26.png | Bin 0 -> 755 bytes .../xeno_artifacts.rsi/ano26_on.png | Bin 0 -> 604 bytes .../xeno_artifacts.rsi/ano27.png | Bin 0 -> 780 bytes .../xeno_artifacts.rsi/ano27_on.png | Bin 0 -> 772 bytes .../xeno_artifacts.rsi/ano28.png | Bin 0 -> 629 bytes .../xeno_artifacts.rsi/ano28_on.png | Bin 0 -> 575 bytes .../xeno_artifacts.rsi/ano29.png | Bin 0 -> 834 bytes .../xeno_artifacts.rsi/ano29_on.png | Bin 0 -> 825 bytes .../xeno_artifacts.rsi/ano30.png | Bin 0 -> 704 bytes .../xeno_artifacts.rsi/ano30_on.png | Bin 0 -> 1040 bytes .../xeno_artifacts.rsi/ano31.png | Bin 0 -> 757 bytes .../xeno_artifacts.rsi/ano31_on.png | Bin 0 -> 1140 bytes .../xeno_artifacts.rsi/ano32.png | Bin 0 -> 710 bytes .../xeno_artifacts.rsi/ano32_on.png | Bin 0 -> 918 bytes .../xeno_artifacts.rsi/ano33.png | Bin 0 -> 968 bytes .../xeno_artifacts.rsi/ano33_on.png | Bin 0 -> 1226 bytes .../xeno_artifacts.rsi/ano34.png | Bin 0 -> 888 bytes .../xeno_artifacts.rsi/ano34_on.png | Bin 0 -> 1032 bytes .../xeno_artifacts.rsi/ano35.png | Bin 0 -> 954 bytes .../xeno_artifacts.rsi/ano35_on.png | Bin 0 -> 1359 bytes .../xeno_artifacts.rsi/ano36.png | Bin 0 -> 885 bytes .../xeno_artifacts.rsi/ano36_on.png | Bin 0 -> 1177 bytes .../xeno_artifacts.rsi/meta.json | 830 +++++++++++++----- 115 files changed, 661 insertions(+), 295 deletions(-) create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano15.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano15_on.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano16.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano16_on.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano17.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano17_on.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano18.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano18_on.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano19.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano19_on.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano20.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano20_on.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano21.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano21_on.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano22.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano22_on.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano23.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano23_on.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano24.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano24_on.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano25.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano25_on.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano26.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano26_on.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano27.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano27_on.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano28.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano28_on.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano29.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano29_on.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano30.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano30_on.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano31.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano31_on.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano32.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano32_on.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano33.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano33_on.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano34.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano34_on.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano35.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano35_on.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano36.png create mode 100644 Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano36_on.png diff --git a/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/structure_artifacts.yml b/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/structure_artifacts.yml index 970a8c2dae..052679e049 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/structure_artifacts.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/structure_artifacts.yml @@ -8,11 +8,13 @@ - type: Sprite drawdepth: SmallObjects sprite: Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi + noRot: true layers: - - state: ano01 + - state: ano30 map: [ "enum.ArtifactsVisualLayers.Base" ] - state: ano01 - noRot: true + - state: ano30_on + map: [ "enum.ArtifactsVisualLayers.Effect" ] + visible: false - type: Damageable - type: Physics bodyType: Dynamic @@ -41,6 +43,11 @@ - type: InteractionOutline - type: Artifact - type: RandomArtifactSprite + maxSprite: 36 + - type: RandomSprite + available: + - enum.ArtifactsVisualLayers.Effect: + ano01_on: Rainbow - type: Appearance - type: Actions - type: GuideHelp diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano01-inhand-left.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano01-inhand-left.png index 2de805b9cebdd2f2aecf55c7d1ac14450ac0d04c..553c70e731bae9aec164f497d03a8a4e2d9e2e17 100644 GIT binary patch delta 324 zcmV-K0lWUk0_*~iF@GjWL_t(|obB4NZNo4SK+#J8HCn+cRB!?<;Knm}$jp#NjT!-- zfQ1Tcg)}bc>Hx)X5K21AwEbVDf+p|IJT{~V00000;Qf4TvB>^#4Eo)EfBm^;>^MuG zsTU}VD)en9cGq6+)NG3fW4@qb&znanit*o5Ye&(@OU z)xF<5RY796d@OB?=^>dt>woMe+5!Lo00000002DHCRfl_^k!%rym)^yi9PA{xO0v9 zm6l$!JJ*=ZnXCXBVC=hq7&_OkcE8qGBS`@?Fb&kI2)gYpi<-0rG*GL4y`5`UJ6YRa z=7-?)pc1i7{ymm+O-MQaVpazf7MS~nAiwRig0^4ZcJgyMzf^9~^f}F=;{X5v$levK W5Q0tQQY=US0000=W7F@FI`L_t(|obB4pZNo4OhT*S8m!Q|s{v&V=c?|Uu7KYKFmP0vF z^FBa;9At{3elC&(00000ct0OkbW%!b@!#F=_Ib2jrmqY7XzngE)3PjoHmer~&gA01F{``2`G@Zq;_<|#VFic;BjF4YE8ZDo6k$jKBC$v` zs|c~|GmARp4A{?1)_&c`j{-mPoF=^h+k;BVAN-b?wUO~p%Q~QNPFL|?Z}~hRwx7F8 l|7>hMrh7^Q02l!96yNyHbJJ@#m(KtI002ovPDHLkV1g)4hHn4> diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano01-inhand-right.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano01-inhand-right.png index 398e5de11f1ea13ec98224c050d765274f2d9ef8..cf8e9cb9610da1c177bb1a86f0147167692be26c 100644 GIT binary patch delta 312 zcmV-80muHf0^b6VFn<9VNklD#vkgY4SL-j_KWHAJl(5n8804s zFQ@J(Wl@FryBw886;9nzhTcE6xGbtrH*L`C^eLwGbUnIIZ-0D4j!BK{dFiIyHX$x_ zRww7S33bz6+ubZ^PS1f~d2Rs!00000004kA%tqkOZNh5pM8syauG6TY_u~CI*{FUp z9)E>%n`^R`G@iy!VfF@Sa{BLEZGy(pxT!Y5qyt2530t+R#Fn<8>NkloO z)Ba*fd97G{M)&f5w#8-Z4D7AL9JvT}zK1$_s3N#~+3w8@v48p1S^l>G000000000$ z2hFCxW|m|6+G4aG)2MY?-EB&JZ4t!Gwq#q1coDyc!v%=s;`Cb;A>u^bUPU^R*iymFtiyG#1Pd-w@GUOfQ-0KgaB0Yuzy VIj^E(3;+NC00>D%PDHLkV1ffixf94dd|l{D0*O&UeXTiRs#zW?<#ZH0ZgoPZN>0#*fT)mBLNkLSg+ zD!_R!yq)ify@p?B@?Plzl(O08iG8dO+r3hvv<`H-KD(ZR1b@6g8bsH3?Kc)cdO6{6 zGG?pAGJ=y(Rv8HZjLv#;OTr83!ub-wDK0v$L<^wNGbJ|;jC%wqlbPpK35 a34s@Yo4M+8I&K~S0000+<~FlfiHG|FJ|zrCMBdX z7SP@$7y6?>%zJIEzLp=y6qo{2;C}?HwL9I*IUiT={VFP;l-ffGWv#Vte)hHiz>P6w z4I(kdB7*lK0#J6$9LwDskG_O7TQ2*@1nT}nU`yz}hyd*~z<7JwF(iN^2OzG@DW&!5 zd`RG|v{;GyjDrsgK$+>>(@M0!hXkPfw8sE%1>O=s_~+BQY}?i}W{(M+!AG<17LbCo z0`<5_z*zxlI4j_sJ7Dm~lYp}V--spwiOjnMBx4Fpfj3^coj9*VL0bR-002ovPDHLk FV1gqGcN_o! diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano01_on.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano01_on.png index 7db0ddebc196840f9040b8465b31e4ff6e76e0e2..ec33e9f1d0b243df5f7f6d33de04092d32b0dc8d 100644 GIT binary patch delta 524 zcmdnUwv%OoMLpwdPZ!6KiaBp*JN7jj@VM45we%PN;xb1^Jxe^M;B)>x4eFoBVxv~l|N)m8S8cD{b}O){q*GNe+E1p z!OYuO^+UL(g#7;hBC5gdR;jK7Gsq%^=L(glrH*gB`F@XTJ5v;Ue(hgp#txvM!M*!QowqVe)#w(@s{+v`OR<{sRANJC?1 zdoWW}cy;fV)nXS8d;9T)0-dzp@>3UU1y`Jg*af2s?w@!6$ZnIWjOEzivs;fPVp*&> zlMXnnU=DKzKsu*U37PSH!)Q?c7;ujw`ES9c%YOAu^P&YGo`$8x2t=L}2DZi8#v zPM=}<5+reViG!|4Kygsf7u~{*4Nu-Uzfxj6`7r#+O(q+ij$6v!2i~MOUXg2ON=wgf p+9t!5A-N}EZdnaKEV7>SUTS(X*(hOkEdvmEy85xYtaD0e0s!Cr;C=uA delta 773 zcmdnVvXO0qMLpAFPZ!6KiaBrR1oka9;AyL0vR7pNmx#^%#cMy^O5T_F#q}Y!lI387dG^N>s~m2LKMq+oBa!nRHRS({p(_O@o%2FVZNcnvs$@t zuIwh92mGx|9yxx^s948&)a&=1&E9!DU)~hBO=fuiuTbX3g$>ImpV!@Hnw;U+_=I(B zYo5qiO@~De*$Wqcs~0c&_Oi%fE5n~t@4e=E9$NpWYVrE0hCuG<*4n^>e{U=FJZ3sz zp~rxW^7tcMHofe!R!`cokHM-zYkAZ1yw`6mT2go1fyKiFS(2Sn)jn#BcVm zH7g5F31&_@6#xGGo6QefgP;9Ez|Txs~$Onsd5$iADWlw%euLa`}?{hx% zE3|SmJl?@z(1(la;B?>?HP2bH$aT`H=NuiJ1wjjC{qk9(mRPNc6g;(Hcka7a3|Zga zmlfTbuyAYjpQ*+o+ppFo+Pqh@Nc(QF^ufc2uN@B_KKl0eBHthzp?5m-+`9NO?%Mo4 zpV{tH)0tSezh};$o5|HLHgm7*Tln=S(t<6^b8T-8%RG<9$4y-2V!hJW!)8 aIj+Hek5!|I)v<>RAmHih=d#Wzp$PzX8hW4r diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano02-inhand-left.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano02-inhand-left.png index c5f8bb6d766e3e17d488c9a1f96632ab16d5b017..91739fab1acf07f83b39ade7c05a668cefa31548 100644 GIT binary patch delta 494 zcmV6c z`;K|sI^W4bJ`s5i0zd~1)P$E zU7MF8k^rLPlCZsbbJLSJ^M+Vp!*xbii#2WE+`=H%kHd%N_b6eiN+nYEwmZq-M4L*m zD`2%)@BCl$w|~Ai-z(-+he3Ssi%b~AVqc`ru5AMPSPK9E000000002ort5j^T(h4j zw|T5C))_jNx|?JiY^94gMx?oV2&3_kM&n_t<1ab^rtP-RS-MMobat3i{q+3u=Y3w^ z-gTET9gzx%5*AGYbE>0+on>BRIVm+Cv_11838+d%lV{mfBnkHBT{8q-OWy0J!1m(m z>(g6*-@fLHEcY@$;Qa<+l3-?eh}`o4T}jOkc)tXcnh&Z{HJ``(<^j68sQH1m^8j64 k)ck-{0({2=0DxQd12#+kW*DlGs{jB107*qoM6N<$g3v$i)Bpeg delta 424 zcmV;Z0ayN&1kVGIF@K3kL_t(|obB2{Zi6ro1<;?WH}Gn>gIC;v`%Auqz2XecqD1C9icF@MNOL_t(|obB4rZNe}V2JjD5E)2k-AO$JT0vVt^v|XVC^wt47 z9pb_OEP#RI#-qY=}o|RG&={sS}YrPFn=VaQX@BMyV?KvZakWq z&#%M4_giNIluFHXt`H{?R*U7;Cqe7=0DyDo-$oMv6LUHzCzk+U@V*AF#ijn8Mu#&A zL;FKlgD)bnxF*PR0{R%d#02=0FaWZNB70UceF$Di5{^54KK8!sNnp0W*wx)OHM(PV=~?#Zv{_k} z;H9>|-RyDP=~iFGjTRrBj8f0{$7!^6)N~vm8!qj(5XEOp%Tz` dn?yuJnQt~e^KE>lm=yp3002ovPDHLkV1lW6-2-?SPTlLq^#H`bdS_Qf7Et>Ry6<-5fKp)5fRN1ksu=BzvD=;H_pG5!K$hP0JLp;II!F_R%`99 zIM)g=B=5aH7hPr|67(WUY?l5Es+${s_G zaaZ>M70rZ65Yf_DJcMwTHaK(aKS_IlnoH1o4`U3hwOOu`9)F3uyI0y(fHA!?T7;|j z1WjIh`#F}|=_#Aqe?Q>o%z}Q#)ywSE3;@2%qG_7pw=cq#>r}_emHeer`|k%l>dZox g0%RDIh=>Tl2U%g)bWMq^B>(^b07*qoM6N<$f_s+L{{R30 diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano02.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano02.png index 2f380fa4813ae9bc803476f6f9db33ef37f48c36..979e37d7804322f0e8d021e22afe73bf413a00b5 100644 GIT binary patch delta 390 zcmV;10eSw91GWQ@Ie%zLL_t(|ob8pdY63wJh9_`o@&Fc5Fp%>F0yY-02ziI3_p$8t z9VA6kqzU)}UO+)pFohoicw`2e3k~=9x5aQpdLbgm3_`$UxYntphOd z{o{kYOY+Fm&8R}5StZiq-I|Dp-ysRsNa29l{ZObV> zn}r2u08YA9p??`bQdSKO0KG?BA0MQ42C$)z!PmJA@iSq~Y8K3$?EVKgERbt;+$W_P^lJ k$#w=fhD3k}5CI~<4|84`7C})crvLx|07*qoM6N<$f;7*v=l}o! delta 351 zcmV-l0igc21CIlcIe$S(L_t(|ob8p(4TCTYg%gPlIKd8_*ny$hffGBxi5b#5%1a&N zR8W;xtzxN4njgQ#7O57a_QBTV*Cp*L7x| zX8;j|qxOlj!xjSa`#FF$kEo(!0>LKq$8j`$->c4-Wr^@@+kdL_As{OOl9X=S=38Vz z_UpR#Yj_I*z6QRqj^HQ&=mEe5sw8T1#?lr0v=%TBwm5tsCJ>(X zVHlFWmH`q)39whL+hu@i1qawbKOU8g2qls&H$KKox;q0TB*moh8=%|{Dhch$zJ&qdI+ODFd=&LZquG( x8w4W+MSg{N4j_t}57O=u<5X=vX$A(y zzn(6RAr*7p&WX-DWFX?QJm~si_8g5hJZ3ENHw6kN_N)uK{ZYI3!kM27D^KjREAv_E z`J1~)h2e<@!-11h;;bgEBV!&b{Lc)YI$Gcq=R~u^BH!FwSHB?O*22?o3}@XF zl@fhmT>0P1>#f{{rmwkw+sYfOZspu#j+&nNX6?jVW^Q&$cdHqgF$0lrZ-csf9rFXj T-UwD;>R|A6^>bP0l+XkKC-?dw literal 774 zcmeAS@N?(olHy`uVBq!ia0vp^2_VeD1|%QND7OGooCO|{#S9F5M?jcysy3fA0|V0z zPZ!6KiaBrR9xPg-Ai^+r)!&snXPx)z`yKt!YQE`3t(ir}pBUIzmz&=epX~V1k-3WD zuPH|tQ-TP?Vg?D;0~!o&j0Ri{febwmp&8Ch@4o+jfBNaCiJrgbT)x*PJoB`~bE9P% z+kRHe@1Ne68uoO0((2syfCE7pzkWwQ+&wjZ=TxS=6=$A5yKfjfIr~rk#?a|VP%vx;H+``0kJ2{WbE3RZ{%WhtVk?&mH!D`N8W(zD0E?|s!=yUE=C zmBdx`;>sItn){rU6;4z<+%<3V+B>U@ixauLlyi92<-hy8)iB@cxao=47whiMZ#uV+ zF?`DZjdHv1Hb|eIe=RxG`iBG;)!P3VWx|u z9KF-mG*}c#*?SVC3iCIAGNvfI?M9vMYiILzegY)#vFpVH0000000000cT5oKD%COl zxQx%mLWXWYay%c@{<8Xdyee*Vk(4jL%`!eWF?YKFuF|4zpYP)Kshme+L(!G(M2FtD zjmpHbL32FKvoh^O&HF?B&x)@}&2sU-_GwYPd>{c&xDo&W0GRFpGN7Yti-gjg00000 LNkvXXu0mjf*Ta_< delta 345 zcmV-f0jB=p0)YdNF@HNrL_t(|obB4Naf2`v#_=Z)kRt9? z1Qcd~P^Sw;2JlOf)5RfhK%}QQcmLm=3pgS1?uMF0Q*001yi7pj)yLpbXNs{E^% z?a@uHw{(0cvjyrx_5D?3{V0;{oI9T`+OoGKMV8Y?|(NcPy3Z?O4V#W6*qTWEM^;Ut;$uq)=i%2?a{feb%UMIls4V*Z_b$Cl=Vg= z+sFHDh~5E~=Qwup0000000000ARZrc$4YhlJTc>Qvyh=5koc7NxAQfn>f6irdnw}c z#p*(}%0EB;UQ(>Is6S_wtA=(%^k{4-`xgms+p*`z)|<;L8}#kzuR~wdKR-7AO-c1q rH(C5&Te>Mp{vd%wI1&H=0GRIsfd;2FmB)?^00000NkvXXu0mjfpai8k diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano03-inhand-right.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano03-inhand-right.png index 7be971568cb3c0186b1281f62c29ce6179f12086..ca939c2a0682246ee8759bb8da9a4d1508c28ada 100644 GIT binary patch delta 331 zcmV-R0kr;v1M>oqF@G&dL_t(|obB16dV??!!0}^tZ_(L_*=@EJn7zk*d5YqB4@?DE zz)sALw?Jp=_O)r!uPk&W0CaEJ&>o>&%@jO z=Hz~CF3zXUdXuM>>59RKh;+qZ^0YFs?}kzN99GM99XnS(cYpSPR_xrQ7}@}~| zs=v53=CaKhiJghS1!x^;&X$iK+X5^Q?=zzrafqAU;~@DY0ssI20Dy>yWRcmmYv@y3Kk5&p z;n$DXJFT3bnxFdl9LOTG_cxLImC4g~p?P9?G_g+H*5k2kppeqYYF1z7J?%R(pJbe>dePeZe^(Drx0)a9|+p*Vg2%gej+ z2s9b{t_ZfO%hk230000000000U>;lqU6;&U!p$>uRNqT72sru z>a)l!4No68)>T)6Ziy6 diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano03.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano03.png index 03ebcaaf7529edeef613e0fc625db36cf6d44efd..eebdb9f04a9e9cf411cfbf12ea38c05547f81f0d 100644 GIT binary patch delta 532 zcmV+v0_*+m1HuH5Ie+v?L_t(|ob6UkO9D|8y^%|i7J<;N!kvp*h>%6QkTyX?&^r1B zQM72?LK1(0xE7>EZZcd5F%-lsgxrO?j0plE_crH^S7*xkc%vf3yv@9MANQPl@40s- zLJJ-tf&W1uzh56*JnStkgaE*gPvfNZZU^O;OKB2P1e`p*Dt|mu5O661>?x6*1m@T) zJKQ_ja*vE}0w!pEp!J%5uL$tmd6uX^jwGZ~z~0i(D={Aqo^x~nj;B|8q(z7bq*fG4 z8Gzdd8Cw3XiS_t;g5F=FlpjV3XZ%z~;3_!0&QRo|O_gfQTxjT|B%=gURP}Es5CMRE zJ=f@|5hI%>T7N`}@lcYRR8;R~Lts+rt*x4#Tfq@>@!m2CKzyl^;@O~F2|!5J(!)D| zDkWWju@EumeatnrNx5`({Se^DsAT{g;zMc@>HePvG*u^rhYW7bt<5+DsG4cf3gr9arFi&9L1m-127m z7=W`eO=TLcwSQH-hO5vC({-yLoB$jQzt{rozeH%nKUIJsB&J+7J|UId1K9?&8L|(Y~!aRSxve$FAPkbBI32=9z^=N1=7zk$Fp8bO1k|T2;b1MK0R|U5PM%i)R zC8mV{IAXXwZqKyd-Xj{nr*p~F9>jIohyXZP&@%rS;yCzHDO3kfnM}O_STKPZvW7Xo pql#77g#TeE0$7I{fCiv;fEgi+0;dFLlwbe=002ovPDHLkV1i!O#0mfa diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano03_on.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano03_on.png index ff4cf4fbb570a174fec203845f44b4f2bf9960db..b70cafd39837283009c93275297d1917fdd924df 100644 GIT binary patch delta 671 zcmV;Q0$}~n1gqV#K#0R0OBu~%h&Wt5))Jm zs3m@@()cbF53&sCwbFaykJ=;40Eu`l()!3&?0 z(^R`X<_a&qXSD}7Wk3&e!t?q3oqtw!6+q>C5T6pw-5ZDu;8b2~bgYGN#dG%thX!m3 zsk!d2g`8dY*Blxk6+2ak&XN)<5ua*_YG(myOK4PjuO*5ZfMs!sR@+DpK6`DGZ9vTl za1Cd2OHGn0JAXk4 z@xY7$r3eGaIbi@fCk!CxgaPE7Fo2vB29R^i=K}y<(oCmC(fv*315!xE12g#maHi5J z%;W=rMEsFyrt$$2j!ZM14*SKDIQeI2UxCjiYx;p;x$b(nGfi_Jx&`izn=#!#5TVGTHt~QSv+zjvGB@dMSN= zcU)I#_OrzmLJ75j1&j==;tT-=j19+~^JZUCtD3y+!~WOOXFqY6tX(MjQU1&)NfS|q zpP#}c3ruo}QiiF!FDh{`FgjN+qYXUAx76fx*)``z_;| z^I_W$#1*Z7@pbQ$KAr9l4E0=k3=1AGF<_xSS;-gpYU+Mb%l)Vy{bxVIb5-_zs}y>g zmbNaCyk2aVaI&*gA-wWw%To#er!7TEO8;ErEE6r${P#X*o@SKz(dqlD{wz_>g=;pf z*_AeJ$99Ipk}rj;gJ(a?s7<=^v%cZ!+_cQbhENB|D>)fUBjp;GnQl?~*BoiryzH-8 zMSZ0N>glc9KCGz&dvh0$7sz874NDeo{l;)DJ^CEG zj_v-+O#Pk8rb}(S0_MBs{Sw5vcY*xSw#%t1P>&krh%DaaOq%~Xx`sr-v z$NzuKTRrZC2{3*iK zi*}l>^bGw~A3QB$+v2h+B?d5P3p!y{&c8W3)@l9IT%GPp@vjB9PJjL;BslT(UyCWl zYp+#rJtG#-c7N{n<`X}f;vQMqH;QbsTlfAe?|i4Q_lv56&G+po4_y9-*=ugl=~d^~ zMM=lMIRG&lNd7R~#BpgG%jFse|FFmwSG@+EL*kn_*dkl@J1zrCFF3>=dA~^TnbPwx OkQPr@KbLh*2~7aU4qh_= delta 215 zcmV;|04V>10)PULF@L&AL_t(|obB4Z4T3-v0N}gCDO|!hhYPq00~lAKuw@QnZ|xe- zf{+k9juS)pz6y#X@9(HyN&o-=02TFZ#J^+syV4@8RlGyZk9AGN@s!g0IlN!)IgihC zm7bfcS^>u7&)1w&8amiDJG}yZ8}Yck_LuzF^|A9^6S3qUFi@SK%}!Hk;G0bt00000 z0DvE}i;&8SP<20GO|^CrHdz3>2opp-yBK)fA&{XPJa4oy7Hwu69WibnBa76tMQt1j|7ex8`SP`?RvUv*X0m zx;Lk8P1<;-nOS4@{khxcdf2<_U%d13yi)6${@1_%o6UC$dmp~2>iYaW<$=0)7*+El z&(GTVZ>Ol3F*Dd?AW<;M*oYD_Oq$dRK*$-4F@s)AO V^CH3Ci*Ds0O`fiPF6*2UngC`hV*&sG delta 220 zcmZo?YGs;WSij%X#WAE}&f8lDc@G)zI0Qx~b?G(EXl9L2WmX6~*_i#TV@Gis@Am-L zu7Jf&At87ElzUy3lev9zsTd;z2xOeNnDbh~?71PQx1oHLevpB5pVIo{UuyQPoVHcn z+wi>Ff}DRPfub`v&1l;HYQ2*C=HFj$-hbwO)%$6%!RG?@&?|FyRh^ORZ#+H&Vjj@Q zfBo(8srJupInVxVu&kabxuSLsLmHb_^(@H?`F7_nuF3oVecg+o?Z<&i59}6f6)b92 S{1$5ma*U^|pUXO@geCw!>R)&O diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano04.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano04.png index a485a769c04f21ae2a9836be8fe823d81f04811c..eb1225f8bf9815d862823a255fb1625f0de0fea8 100644 GIT binary patch delta 575 zcmV-F0>J%?1ndNmIDY~jNklr16I7T!C5wr+7xW(BR;v!tfr|}ebD;X0zd@93rS<(FrK!Z_9&e*sP*yAFeo&f z9Q&l`7)^{7&6X~new z!&8ik5A!@ofq5J_qFYGXSYi? z)#lWFl5c?4I!)KGdjjBMvQJm%-X0Z4TOr>fF8Nj?6n_{%ARvZ&2tq)_r8^`=e#Bh? zU~noBxK~?K758hNCLx3|P6b5f0!+mHoZd5ln1miDhoRz6xAQz1%jD0ra{yOqC#=y8 z-8MO4zrNV#HB3!YU;s7GMW@dZcEj#*%LzL`%*-N3#iSHZ!@t_p2=F(Z$oZ~UO4hG@ zBkTZ_e>g#YY$AYsP{gTP<>MjdR_zq}Ls%&{~T+8HNfftTwToPJU+ji zO#T!A;zy?<8$~6r53V`ygBT4U6yH6p>Z|<_qX9s~LpXVRk$-w~a(q_RAYwxNS`oHD z_I;xQP*l(M=}wwV#IleKpsSl=F$jHLZi(DqJIP)G3S$-s78tL`24?!FH+DNFWngE| z?>}c=9D4w<)p#F;DE|K3KXw!#oH;}>8?+Vz)eaa``QxpVgOfHZ6h}Aw$Okw}L^zli zbB!3pc^}SEcz?4GNs3MY&ZIRIk?s9uQ&~>8TRcng6dR5LAc|5J>y5CA3GRobfcXp& zHv!N-TwC2nVLQ@jxCBGQqX62)ARdNxH+p|c!6gG|h}fX4a&|?IxCvklih6)IV9TAk z2@rERTt{)D&>)Os%jdHI^cyTJI0))MfzlOoAv!a_6jozkc0y=K5JZ9Uo?M7;0J`1y zQK37b+lc&c$k0#-vkNF-4ajU1rOyNjD|bF25qWN3T=cGNG! TK(U(900000NkvXXu0mjfz)#Lv diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano04_on.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano04_on.png index 774e69acaa09ff2c0f6c871e595f6adf04e2b52f..4fe9b8e2600b4bf83e876b245cc8c3c014631815 100644 GIT binary patch delta 727 zcmcc5*334+qMm81r;B4q#hkaZxbqGx2)LLB^-t3f@498YD{9r{D-9nQ&VOKF zKl)mg_2jPOk3Sm!xpc|Wm2Ci%t#X?=6zSE~h6E7Cke)>Z_hI%I$J&gfuw)@%Ja_jT(ipwz&+ETd#qRlU@RMPJvPY5Ke9bHI zYm7te7@7{$Vu72FF_iyCB z>l-DoI0}8OVX$Y(&(C$cUcpI?IZb=KYir3_c90YGzGrUe zu5rjK&ofm63O%{A-cv)W!`bx-?ujU0?3rI p)8F@3+bwvWz-}Xdfdk>LbNZhCGau#^-@4BL1fH&bF6*2UngGp^OX2_k delta 820 zcmV-41Izq_2HysdIDZ2XNklI=j0bp{73$X3L_m3S=8T<4<-u&OxcohdY;@g21 zA~@ns2zOB;hzo#(TZw>#xgx0U0Vo1A0*a6uQ)Lru6$;+`Nq-lp3(%7IF~7_n5VLYk zaxp7&c6kac0gyb#bnVzi@)*;c*ybWDKrE;Gs~(CV?TA=T_g6g>p~MlS15%_yA+*9F zMJg1cG#p3)eEUNK`1aTM{$dA&&~gEnc&Q6m4#*MHb_hl6szb5@a7opU|I%?WTrPxq zFLWr_dBByM?|+aXL_(nDpB=wCEV=)5C72qcAp+-g2gj(SL27k#Ww8XP)yI=j0bp{N05CaB0GJ#a{Q*yWzn7;ARK`C4mpA_} zHD0SfU~xjYtAz-TxD&!%ln5IA0Smsi5CI8uMbPdKSbzMGs0|b$H>Os9K$B4L=1;ny zMt?vv;>Y|ldqB*}HOa-S%-Q8BaQg$E$Ak;oxn^u5d5mdJY;!@K3cuxaf7L?~q#Y5< z>HeyRB9u6Sb11q{pKES%DN>;jrQyJNI{dOfG=Oh^jqfjZKnN`taEX_?faQQ3F>QxX z#I8DodVey+B2_#7OUK0^@o=>3LWhE#2VA-N4jDou1X}*t@vFm<`%hPbsWBQNa87q{ zj7l1$RyS7`OMqJ4Tv^P8SRr)$2yqvjS=AC3NcIN|nGP)t!sIXkU~-rMFgZ*Bm>ebm zOb(6yfKPnCm!~Uq4z2!x)d}IQ-bK*p4_NVa1b-2<`vX=#Bzi=x{(x>>P@_MfOX7$# z{Q+-Qehje7Q{eUo{FBF+9wD~5piYI~a=O3jp$H>7f^#UkQlD>I|M@-z&eP$S{o#fv zc0hMJPO1LA%_uNAlV-<6mf*5L6{uV3-AX%10<#|U1szE0000m>ARbdgN%A{2C$a?qk%q4ew|ofKXd6Q~-9HFsqA|0eOymv`_k%U>b@00000 z0LY$_g8P1jqt8kTPTCi(_5DiXzN{5Y7FSYmZ}CmfOYJBrcz-xAZCCW(-e^rp;`(Ia zOdXe%6kMNZ$7GL2i|a68BBJHvSA4*`q_Fm0IEksz9kjemCkg-n z0000000000AVX@t4W;3$(f}a|f@`on+$$lq>}= z5K!r^SI7|r(e>C1NO}PeFwaFg#Qq7SWZqEW`>jGVd6@@qy7>YS5fKp)5m9{3LY6Zl z;o4b9*Sc_TIWwK>V!O~R?kuFN4PL*+I1BmsG21(by@h+uiho?ai^(%1%{9!y;)qm> z`>N@5{nR#i`z4+443jb+3#RwL=tg&cN%#ulD@dNT$Kcqy@Oz#a3D2b1pXw3t6$Bdq zHSqi(xLbu|aQp~3D>7XO@Cjg|xw8a(1@SKsUo_qNqMd>+d1iLjr`V^8{pMrUj8!X% z*v&he?tftrt$)$=Mcj!ZA|fIpA|fIpA|i^YZ!CUFJ&pKWB^x{?7Vk?dK39pKPmRU< z+KIfYFeLkNMmD=n)1r zP}akm2bv>P)@G+JHfNd|rwTC{meQfKJQAt+3i5XSPa!^}(83QXh=_=Ydin*v#Q+;W S@HYqm000071MvfpF@LK`L_t(|obB2%Yr;Sn2H;mQlUN*brO-`rkU&QRUFz)A&AGp! zP$+b8>*NpVBAMK!P|#IM2GLC@Jv)h03ttycwAiXO4LSQh(?KrBeV6a1Hvkb45fKs5 ze-`>mLSG30G~L2tY`f4`(sT=A#$W5om_d7(o4)`lcSosSDt|4ZucX}7saSU$q0m>- z7`@?PqEn%-#MB7r#hjJm%t_UXQ@FRs004FQZ0!L6fDSyF+`le9@bzT0z8=#Wb(NO> zOVF6Tw5rZQbi#5yrVDm@*|tN7e6QvNZJ+~BLSOyO2eaWIT2)7E*e4MY z5fKp)5fKp)S#47U{hRgTit00)r~GW22zpm>M)i9yXi}K1BIq4h71eKwpm((#)tj}W z*ylQtbbyJVOO-4#9S7}UZm%wAx&^5fr!Y}{sglLX`9o>)IzR`W^l$RAR|NeHYohwN z!bpamNs!1EjEfFDc|1ch?_nJH^8pbN5z&G91Z9y8w7!kYZU6uP07*qoM6N<$f=}n! AzW@LL delta 426 zcmV;b0agC-1JMJJF@K9mL_t(|obB4dO~Wu02H^iiJ$C_67HHsHWd~N^hB5Pm1s9ul!V6hgM z6grzIPy$%FhkIUc_f`O2f!Rb+KL%T5v8c^m(Kg3PbV9Wr-vzB64s8=UU#s825ZJ=~ z%^l>0g|HDehku5!P9h>AA|fIpA|fIRT2lo5m-+gN>IcoY{BD;Bx~)E=`n@OgDa=k0 zbPGX6^-U3UTeYaZIBYiAO$V&tBK31%`Q$obpDvguqT``rbiJ7uXNT#4sQH$kRf~`A zASi)pxnJ>sJ3`Y^YV#iL_X>T5kqkYL!BMtgUu*$=z9S6lYmrXz;{zfhBBB%X0fesq ULB|^?{{R3007*qoM6N<$f;+9jH2?qr diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano05.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano05.png index e815d930aa0adee28a22d948c75e40b27dff33d5..ad6ee0182e3576c2712680813e4607fa538f43b6 100644 GIT binary patch delta 423 zcmV;Y0a*U@0@eeNIe&;rL_t(|ob8r9NW(xFhQDY#iCdIH5yU?bCzlRF!9hxKbjjAu z$qs^3HwRb2rLG0HES()3EP_LpE|o&j=pu;5#Uc(;W8Q18_=9P#cZVqXmdgb$&yz3j z9ZAqHS1b?|(bz>1qqW$=LlfCGxc_5xgWg$i6ZrYKuav$H-` z>h5*XkVy%!BeYDxCm5$(&;e{W)ip2!kifC3GI&A)Tp)rp)&Kq}jRpRMz&kCd)ei`~ Rc`yI~002ovPDHLkV1iTx$&vs7 delta 324 zcmV-K0lWUz1M~urIe#WeL_t(|ob8l73c^4Tgpq?oyyY96t16rNL+S^!Dc#c&-t63x5H3`ar`)aAoT7+yazZ zkDnvpxuTY1P=V(bu$!=+Grs9HzUiy?y@V$hQ@cPYG3OF|6!AryjDVIa;NKQdivYoK z5>V;{JTVRlFLVba9LJ~=G>)n|JeNQcPIsZi5<%PHb07bPXBJ3<%h-zG%mUxwS)wEm zLMbddn&8R;ls(N<{AAi)eQ{UQdWV*DaF-|zQwyWQk?Jc=ec`hVF5P#j|G^;#&tTrQjA z`FyTwK(2n40d4WkX7eWw;oWZ6Jbt*Y@%Wd}&oTfv#h1Wi1}uxG{^J)MpH8PnbF6;$ zE5Ms?x7$aTxHdn(KILV&M>b`OxNU(A5>`TXZFyCR5d zwgDyd)kcDr#ee7Ms~GSp#e?Dow1=eDjMXo0fLGz~>c@0gDklu+`yicYV61QbZd>X1 z8o-GThL#>!=|6o1_$Ba{Sglr%bhKrGh5le0z%Sv|y=m*e)ChiB-#&)u1*CGq0I8fX zKq@B;kje=Iq;gaZz-kST4~N5d=L1+Q3r&m1N)666O@DCB2c*TO$M|OkNLOq$c$N zKA@|3ZMyOafW;3{G#>!Eir4M|sNXK$H6H-DK5y|PwDl*G572A_UeR~W2Ur!~r|+5% z_=Ms?aeo8aLt<;(^8sFklgI~*Bn*(s=`|po=y>M?03)%b=`{e28BCZ$K0tG7{qz-} z2{`u52fzfkd;q7skq>Yr@&Ss30a7_(fK*NxAe9paNach9nm6aqT7lMd_8F%602a$a zan7kUR&8*uX@YA$AT5?ga325l`vR`+WrB29e{QZ(53I54`?@x7EC4|z^;%Dqs1U-a`^zu;=6Fo z2YgELptu3;A+a^?`2erNN#p}Y5(Y@+^cs*(bZ#~7AArUzo#$IKiTwjo6RO=mfF^i# qZzYq+2Yg!JK8EN8q;kRlsht0w9kWEF(?KZ!0000cgXxCHkOT!E9~o%pNIN#BsB-r*9bf=|Flbqtzcul$%N;;Qy(PV{Lwxq zTi(pUF7v$3BT4p@PZJn9Kc+7^I^T3zy;Dv5mLGnpyb6Kuyjc#09{v5%dfSE485;8{ zELiTGwSRHBcA|af<#Y|8b-zCLcV51GV#8K3=Z2Lkq=Zv)(c_ z3UIY>v={d-mv=hYU!StPr2cw?;JM;Gj7D`L{wpLLHaBiNvGd5~oCS9ieQXw*F{jmi zIw9yEVK(D-pqlm8i6{LuH}On3>6a^w*^Z6KPP`%_5EC1=4+c) z`5$#+=uKu@Pw9|!nd1t%1teNynoY2`{3GouWRgY z{yNxN-`o6ol^P_N1RvKMFAS-55IOyC{{6*5F*?%!StX~e;NMYwX(Nk ze6+pvsJi#%e1Uq$s6Vct(8*c2TI*i_|Ch)3o7B72y{@p&0R_$XBbi^P#*3tS>Lp*# z&TB4o%XrVgd_>Z43$s8J8&7?!vu@j=htjIAnf(^(9$L8mh;RS@2!}az{%Y8*{x-6;;?c!l44VJCw)}XV*PYGK zS)|5taJ8^MFoYhs22Roz>w9J@x->2rd9_(bx@Sv5D0$7Y^G|HfN=P8dxKYP Ui&PC4EnolwPgg&ebxsLQ0PX#j`2YX_ diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano06-inhand-left.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano06-inhand-left.png index 85b5b004faad3139f1d9e609f59a80952f17cde9..491f1c665ae7255fe7f6de1888d41c855dc56ea4 100644 GIT binary patch delta 420 zcmV;V0bBmu1Iq)DF@J?gL_t(|obB2%YQr!T2H@vHrxM6uLm-<&hhVxkkg0Q~9-?RP zAqu`k4^TYi4w+5KloMzvWa#)hv;x-{%To1Jx%s~}a%?>b=aFAT00000001E4xXJjq z$=LT;AFiZtP^CHVPcy4)_NN(DX&$5qq6JWO!9+y6)tS}@m46JauKsL&P|0p}mVB(R zbP=jF=PJzy3!uleuahRa1DbOFV={Ut^o?z=e5lEbYRWmkK3sFR2qt=*zHXAblfOv5 zChxkF{*1(`H|3mFU9hT)!566u?=Qi{cIo>o>F)VGAtK5i-x8v)J|SeYWTi@T_PtHJ zD<8UBv?A5PnSc6-ixBn70{{R300000z&D@&;z;}>BpQvmB*P}YlVh<0*d)UyeaUh3 z0SVFgWY|P9ITqUiHp#F_-^xdwJ4)qw?a4VjXMK1MyO_(92#CUuZPg3Cb)r_L;9x?TQF=N&nDI7k5iFw!U4yC;W(Yy`Cc O0000p|9-i%BS+HW(CX+Fgvy|@a{FOik~v`eNOQI5hQG3;WgeyX;)~@ao6x~$w8ULmGZo1cjf1P zS{#M-1XpJM;eWq6i(YvV5fKp)5fKr&@O+EIcq2qjjZMi65An_%(Z)SK1Gjq&~fDxJDA$=>)$UwPa<@0Vc$98~uOoIC@Fjr>Sjxc-!*j-a+i!oPj zf39{!R$|Hz@91rC(aFgjfX6uakN5lfNdq6vX&A9ud0!^4=Aq`M2T)W%)ynVI6R$#0mC)+PyY+;>Uq?Lj5Y+fPRkSZ5TxBSe zzj@`l9E7@o%PeM@#TQM!avxA-x}0?z-HqjmD4z4;Z66R3J%9ez-{>wSvzT4o7?q#x zI^b>JACTv z(}Qi};RuxJI)YH9ki+r%{&N5{O1nMGCOK`BY8^q?B*1PDV}Hv8qhIRm5~%$$8Vuck&H&rUORKx lgF<^8d*D6GTOuNg)E|@70_=avc3}Vj002ovPDHLkV1lqB+dBXN diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano06.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano06.png index 9468bac5fd2158407c9c927238c951273eb2bff6..968538858b838be41768b9bd31e4fd26cd091faa 100644 GIT binary patch delta 580 zcmV-K0=xab1MviqIDY~oNklR3y0F;uwuW(BRUN2wK(>L@ERk4pDZ`r|)H+r>FO+OE1X%@jjm4 z_q@;d-HpmQ(R04I}kRUG$A1!dp>5D)DvP~!Byln!EaV zH%%;l`7lmesi<@sCj|iF{>lUe8^k;HUK#+zgL{iqI(`-6kwTdQG;Vs%DwI+jc)58d z&w*E*tI;>oGEXLPt57-y*h+mWN&2Yf(>Y!Ei_|5T_-UzcLws}oU5KZZC)0RoA@l{t z=rBO!S@qI&G=FDU4sm1x;#%?BlnZG95JoF@x3d&G^OIlC#N@_`VS6iaDFEu!h?uF! zfexXjKaBqn%Gu>N(I%_$&H?m(!~VQ3d=$@$YYrujTKuc+_?`hUbBJLHqUR{sjPNyv z(#m?<09faZ*CO@xdo12;aXZVq0)Pk>Il%hB4jMRt^lk;IWPcJzr<|;*!{Zg8$iEn=m0b;@5JkVGl#ytnR1|5EiTbOkfX7z#v4Fx3EP>fQ{>=c&!bt3R0005n2gJ{0yi zCWqtT-51RG4vg)!vR8gE7crQU4|RZj<=dS(C!i{yaWnvirRngv@;>SfP&;$#6H)2} zkRa9CDecbVDu3?;kj26E>NcDJanuSlp1CRj#rbt3v?)75W6pRH9En3zqnXzgPica*Q{djenU3e9K>?05lv)zFMtb z$TdyzKm0`sfP;bnjktHG)KY6Xyl9^$9+_iivW zj?n^mUAvb2*?$6n9IGlWBw!}N5aj>815U2RpDX}HpH8QTlUhUaYhzFVR-WXkwY4TB ze{OAG5-$aa#jn@v#{vSlPr;y#lz46a!38 zOtAze^#Wev2`%x!XaRDjWCaWUw==-A8M5H-?Qm!uy#QJV-fp)K^RnJYAYAhS6wk58 zW{O)rfa06X2T1W;w_9(f#C^*<6e~b19$y6Ft)_o09%tVy9{}+rrg%V#*EB`-E%FuQ|eDbmUmtI7vJygcjj{=9`L#`yq>H_ZnS^8UP~DRRn7@uv9z z>BfMic%X`W0Km(^V@d3q50IwlA-?AWCZZQ$>_e|>mvGGoKs@ijc;*AN`I80UBBq9X zfHwc206g9-z6WAGes*@kq_`}hJcy|d=cg+WQh?o2>`GA}$TA_-3fM+uV^n8Fa{s8t~3}GLCOymFn002ov JPDHLkV1my_;iv!r delta 978 zcmV;@11l0;Ie)K7L_t(|ob6iCjoUB`m4Pmi8{j&C7w`agb99ZHqib9S@B$v7 z86X}bwF1guRZ5l-lCosIk3L#>ITTCf~5d>)qfGLTC0y&9bwGU0)T6- z{s$zHw_quNCA+Lbbn8nBqa}-4ATJa1+LVIPEiy`>O?0|jI{vZ-Pf@<`Ez$TZ!aN?;N91;H~+A_4d~b5i)-G0c0lS1 zOYMf#73SOxo4*2qW33tj$67W-3vdQu+~Wg^dC<8B(SHKOgi!-AVdTQ*4mkR8_Ej`1 zY)+0=0CRFkspC?fF<9)K!1(~5{F8J>@;8`YR0l#WFi|HuMNzy_Cx1GLV&Hthg#LyikF)64fn6BEyRTz! z{^#y+-kwt!{d_>u3QO&V)D`C34Jr8m>R79Wz_FGMTls+Mg>jD$DCR-u9&F_Ug2JeQ zm@sl7B_D9;< ztbePHFn4Ec0YDMtEx7Ul_hlDExBgLukux9gw9J;MPx8pZD3K3X$(10ClKFrlgi$gd z;OoMCL}6@JSn}rZK;@9?@1T(nI3#h0)&l0_2;~C~-M5^e@&VYjU2;DZl}2j;{DE?B zl((-5I3M7XpY2OmxekO{V5UxVH5LQs1557cZz%FO>%4tU!szD%l2*8;-H?(GppLcG zU@IR`y)f?a0drTg2vUd%V=YL@2UJPi;q+GcFSeXz$B6T$HUIzs07*qoM6N<$f)jYp A-~a#s diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano07-inhand-left.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano07-inhand-left.png index a4fd94e7e07baf8d40cb4d981279f17411620343..a33f5196cb8bfd4acc9d1e51f577048175440366 100644 GIT binary patch delta 625 zcmV-%0*?KF1(yYoF@I4>L_t(|ob8%FZmU2L#=ktJS(J{(MdSjb$S0tRM2E;F+(yb3 z9__orI{=q>lDkM$dx8{@0#T%KhvITmpmi4f?*Tg~iRUL-_L|vY=iA+}#Vo)u48t(Y zrE*2-TsWRG+uQfov-ca)XAIYr&H*40{_e8`)Tw}kxA!QE8r}Ua z0Tp3ifJ1i6Vt+<4ycQ(tn%P{>YB%YfYj^ul@r%Og_Wkur2X6kXnb%LXkM;Xj2**=@ z9-dV9k4>Ncw#Re`k`)lTk!We0l0RYk}Lt14hi+UGCU-Ti0vZ#?(8J6zn0g5r>v@U>oHUMZ6m40bK`l5r^ zLIRDbNop8d8@Dw=H&US+9Zhz9XY5#&Sva10yj!WqyVch!nF+^J=R_Fd^VGe@_$J8# zQQ(iN40k!?r+cRGOJQ^NPjT@T<3j?lD3>h2MF-C?48t%C!}R0>T=X;LnnHHn00000 LNkvXXu0mjfER8Wr delta 602 zcmV-g0;TtW&*qED zzJGXr`tf~Tp6SE6q;mkcng#XM46aEwUsSgJ5L`&VAPPe0Qh#G~IYJbKSk0Ez`^V_a^b*Zu4@9N7W!NvsNw6pz4 zA=(0IoZxly)+*)E<)~%5-S1ji1>^0C3t(#}kR= z9Uzij)7Jp%uYcMM?x*|aGg64`0T0hlXC`phan=mX73fgMpy(+O1!1eSe}kPsX+#pR zx?NUg1N7zAiC*#f#j^RL`d7gdLI@#*5JCtcgb?y~5fdJU z*7>_Kh&Bkc)t|1|iS^-cFnQca;(h+^+5;46oOt<7E`M49ubVea$CH*Cd~7wCKqcfd zF?ARKrsD}zkt4po0q`Z29jg}ELaRMN;!AZBYk@RQpo$y-po$!-$eqIxzr~&)QAG|T zo%d}6?-gLr1^{hYJdKm1eVX7+LV>TOrg4I`dg--Z?+Lh?1@*LtO9s!-?KDtD-b$t} zb=_WF@l)Oc_FRCgJiAEcYxUwxrYdr5_q$%}71;y2&INpj%a6S|{yA2+%R$uKlUIyg o31CuAIRPgfJRyV-LI^pMPYtS4RATBzq5uE@07*qoM6N<$f_x4m-v9sr diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano07-inhand-right.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano07-inhand-right.png index d37e3ad8eafc3496936b7b160df4cb689a7516f7..44ddc4f4fdc44fddffcc0c7891e2ad429449b690 100644 GIT binary patch delta 631 zcmV--0*L*N1)T+uF@IM{L_t(|ob8%Dj)FiKhF>-`7&{sZW1$qDfXal9xR>w%dj`wh zi*Sk!or%?)U<*K))*%cIUFcQ5wz0EKD<6R3pyZh3GLXMY$?`d};l4dA|;sa^Fcv^G(R#wif82vd82(WGAv zF!5JA8o2l%U5l|GU3c22aB~E3k4)_Wf^;ps#>4kkf^?01w=wt+C{tlEoOKcfHy16Q z|Egye!*Cf!lRiFI-?fY4sdgN>KCHH3tB=E*BVaL{iN+(@V{-V`<&yZPYTNT{|75Xi zJ5;;uRcQ1S;8kB8@8Yd3WKYXMn$2YFopM+a@wg8%f4)na)V<8ILGn@(MF1Q>L& zeG>q&6SO-S6Mv+otxqJu_K(CA!~^Ku&SgEbvtR$;u-z3W$zrU0G=ZH45bI)t&=2tT z@;aKG;HzW3XaGgQy4a|XY9MI6%O)r<-!aWTa5Q18&n^tZFbu;m48t%C!!Qgp0N?g~ z|4?-bS6_?Y3%O1~_xa@f<6EvH&y?ycwU6Y6Kq&%Ni+|-I^nj&`tckWp5wwc zE$!zLH(df`f{GDxp+=f#uuThqzB&bE1J=a`wrPo3Q;7x=pXM3TJOcovd8RcF^frJ5 z+NOmx&rV8ER7mp-Q4$-}fa5to)hQ@--homCgnn=`Q)EOR6QU$G{-l4;5^0pgMw(|R z>q<*<>|wnN_)pKGj;LLH&^Kheb`eUB0JK!C^^SnDu0*)X*DuXvUv$?hC@q0Y$xg>p z+q&3%ze<%U97BIP0;V8Vi63tOz$P#Z!!QiPOp1REg<|!)Yoy@-0000O6) diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano07.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano07.png index a985a670b1dcd02202c8ba6428a63f10f490a1f5..43c32b9c032eaaa31f0e0188c554af1416e21460 100644 GIT binary patch delta 509 zcmVF!Pgbd~+JZC!*ngs!_<8cw+6uKDQ>5j zlR}_;o%Z0FD0vgts06@-vyEp&D2$XMwHN~eS-^K7zKGZ6dr!9y&Jc|jl!bX6<5)yV zs;z)HGR8WgxPMC>wC)4;gv)d>iuVVwxM&fx1kfgkN&q~-t;ChrO;WZcXURUp23puO z$I%QN6NV@{aA_jB=Z8Wx?^&Ql zQ@HmcEJLEm;zXw%!Y|8LkwoO=R_qe=9en`8LF%_Y5q3KRumF*Ewrf~|E{dWY6oBGv z*JwOkdETH}L?-}xkIsk4x8iPV?hOt=q0D!s4{0NX6;!=^dZ|A!jVYDu^!6{mnln{|ev>H@03wuw%;!00000NkvXXu0mjfJx%OE delta 453 zcmV;$0XqJy1oQ)tIe(@}L_t(|oYj}XN&_(zMMn^s@|KV@=Y5s=);Z9tY zZbY%5VqK|st^Qd58{qo#>dSw3b9cKlDu8c#F+X?h z`^AInPX*}&2+h(OuRqtVcYvfo1OZ~RL>Rw)yw}ge{R8(-zkg4KXaQhuO`lfJ&IH4d z)CULcG;IJ`h|}pwJ^+Ji02yHx zT1UasAB#>lfD|)E>I1??B?KB9XX7zUIYRa~z$k)9?HF7OfLY~cGyAQ5*Ja)UV4$j} zfUr@>&I8-lXnz1U55$(WC_w1mU`aMX3} zdy~ejQA#o!3{Z!@`kg&TuPcQY1#l4F=F7(Le-C=06s*j`CtGfLt9C0^%U63NNcZW vPEAoH0yY<bLXFb zE`0s<*Os{gN(b2L?dJdA=YRRjJKcl7ww%BIy7l(kX?M#z8cshgl9FZITHCg?!Sl!a z@5=Ry7Pc&D_}+fG-BfmsWDS4iW+s~@{pZ#&XlL~wXLeVg$y8i>6Af8onjYRaWT?N?t+tviN0B#5)J4>Bf-<9mI}@5y z8BR=O07?Y%{#>+jy~1MSt@XPvD>Bu5Xw#j2`|Ot~8=loTbuh$RZJ+P%a$weHPESTv zwP>BW_3qb#es8@rnaNE)=Y!+yjXnLHMW`@(gCQ%ZOHcy*D}MiOz(Q%K8Rgn*lasTw}|=#*1&vm=;X{1rs#<=ERH6wma5V`+@_QZWugW L{an^LB{Ts5yCedN delta 718 zcmV;<0x|vW1nmWo7YaZK1^@s6s%dfFks%m=pGibPRCt{2T2ZpXAPj70Jfd&LBl^)h z^28}l8UhU=L@4f;*0#8tkO0YTnH<9j;GBEH@9VlgYTj2Y!0QhpegK83Td{_*%_Cuh-qdySCJQDNhK3 zm~DozCj>#HLO{}946X>6xV8}4EC5B&5@LULD;1%Y5T|Jndjb@~S_H}?YQb6uP=T?O ze24)#!iljX5%%|~WDNE~s5UzUiwmEBjYKf@01aSwKXZR86bS&*;~%(YLLxO4Y9aD~ zQqnD~Zyp2oLGPupKsxU!v{){)1%OuLkWWSZTI*}4LU9np1hJ(ll3Ic9D;_}niFaD# z=J#HrK1RtpAX>R`2uT+}Rwzw_8`qM(6Avh!0&qo#Qyac-830x50PY^YXGp4l!$Vp+ z1x|H1OSsqQ&PA#^%y#YdY927UMN5IJ!&8y>fW^`2$a}m6n3cRox3xhl+-A1E$Ikyi(-CHF)2m4D7}^kTfR9ohDKb zIP?v}Yps!r0VxkSL)DR351Sf%trSC_32LOneh!> A;Q#;t diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano08-inhand-left.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano08-inhand-left.png index 2367ed750b0b0bc1ce6189cd3b997bdea294a4ff..cf8d6b2ed3a2ee2137a99e9a081a8d910839162b 100644 GIT binary patch delta 585 zcmV-P0=E5#1@8oqF@GsZL_t(|ob8&iZo)7ShL5U?BR1BEAs`-sDN;5BFOe0AXJ9N3 z!J4P&S}9YWphA?P%FuZ_f0^e|IX)&P3{ap5CjIyayYXbUiCVb zhAvN-VpBE-Z!qHk=guxCKA*C&vc_`aUubxPnX-ls&sajq>3`6R0Qi)Rfmu%KYy`mH zk6#cadq_@)o{9z>;X(rdlr&mJ%-CkJ;(4FzYMAgDEt<@7xNp0K_XKfRID=&x+g*S@ z`zUJwvmCzm<}e)f)8B$Pgdh&n@550a*4`Yh&7_LPX0bxg0@Oti;CG<1(?J}b4XTXK zkMCR!am_>!YJZdWtTW5u+10%0Sr+$acMn;wsqs`I>!2KfYxk6C$N?|~+9RN{J*jMi zSpKMjz6M}pIw+kFfN44%02BLuW0-hxF#&o8h=H%YIl3;Y;2%aF0Wo;-VpK)r7P3c) zhYtWj5ClOG1VIo4LEJfQl)>uSM6C$E^w`+v4u*(PcLw!5GgCHu4qYAO(N z-7!k`005P3qL-bs?Xa?zxGorNcp3Dfs9ej}=?d#0>kdc#i|;z1XFy*2`sM8vB@2qm z?V_!&YZL8^kZf4s+pdu;kZqh1|Ci)dLCpZM0Ex)U3ldfaWVPzrG};>!4qz>UIxYCt zPLnEyvlf*=TjAP9mWh_3Sk X)Cw)K(z)Ma00000NkvXXu0mjfGXV^~ delta 610 zcmV-o0-gQu1c(KYF@HiyL_t(|ob8%BZo)tihKDGUw?Tr&jkOh`^95*Wtek+>qD)5} zQK4KRWyCEa8csons4O>bK%#-lDUw0PJeGxjfspwszce#D%f}V*!S>tTyk4!HY@^@q?%3$HIw#w(p?`uj7Kc$@uhwY3To4D# z$MfZahLe%eAHs$W&3AU*lG+!>ZjuAG{gC_!3KpaN7_JgC(Bw2cN5GEUg@h3b1 zkP3*yC~xWpDNk*#C0R;ImTu0Kr>LnLbZ8Mf#m4)~D|7)Qaxevyr?!GlvUF=uCRXd! zUK@N5odjqCrhmzdrpatm=GqTvI2l#=x{1|#MM;)!Z18j#PDYg^OKC9vth{}Fz^4I( za%sn5l=F6W=oyoZe!C0b_shU4;FJ~G^o)yD-UNINK;t?ocb@>)+;sw6?E7V$CZM>L z-7D|}@C!^+H{f=m27hr<0X+D6wRU#kuD8Fd@$VBL2!Dbg2!bF8f*=SFjtl+XwNGeA zNc+J>T_9UnO4ojHwoiE1mHUA#g}LbK^I+MJ_5)I$I?E?KxUw8(lEiI6$nZtrP0?a6 z-$oU-p=eimYUkVrcm?c}uZxQDB^+zFv#f6G^ZC-C$`oaAo|`Uxl(E$#pb6l`i8JqF zHz@zIJ6k@<&ZkppjDtcgf;JNTEu?lLy1t-sSAT^5B9eex2XJd1A_2#~KQsYPz%^fn w*dNhlNq}?BKwNx1DhPrg2!bF8g7ENs1K4OmTrwNYTmS$707*qoM6N<$f&?QXRsaA1 diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano08-inhand-right.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano08-inhand-right.png index 95ce16ebb72d28759ed8def67cfdf63b6ae7a046..9dbaa28d04cff2adef73cc734f4eff53714fe9e5 100644 GIT binary patch delta 604 zcmV-i0;Bzy1%d^TF@HQsL_t(|ob8&uj)FiC$H$8e#?JO)p~Od^x`fW?OVFD53TJt~ z!X?-85@%~-#S>gEYGEj@u`^Qc6=uk?EU>^LADLgZEbPvIWeQ?q%P_$n&12eEGbd4dpMSpy?&qEdz~K7m02_G# z3;@6jju70>y(*n33Tn3uGp7CL`lqfPBez|ynXFv3BW1~}y(czyUf)s;xc;HBvj70X z1&pV|NCVeDgxBNg5H|J#nmQA<%XO$rReNj`#E1FDu78LGripBq zYj!!^005-g@qb<-vh}i>Ibm5`Q&l-q7GAITYsUMN+8B{FXtMJ>d;s`5@wvznP}$s? zya8q*(=Ocux`66Hbv6L1bUFZEzizqZ+LpJ!GGxvGe0gX~AoA)=3;_Q@v9T8=WjzmZ z^D8`XZ5i<_y5a{x5ClOG1VIo4K{SCnPKm0pS?Ev{lYgj~iq@8iaoKBT+u~yGOx~->c&I{BpWQ^8LC|o&i|K(ZxD`v}JWg zQMFkXrByuu4L&n{p2ub_)b%2yyU$K%hgF~e)GeTH3V#cQ?f~%4Kl9Jie7e3d q@c+!L8cK5$1VIo4K@bE%XyhN`oG*L-VX*T60000sV#&6I5Bc_64#%rl4EFA03X16uk>Rzx&6okyZyRQ`zr-{~HfYY~% zD&2Drh=P#$t_SAKEHsGIBtJK2Cit!gx(3469v(t~`Ie8!z7<2JhzX-F>cmoF*5IkR!Us zda)|4ow~ZeNEC!jj0cV10W!f&=K$D*^fEXFWM9-|4Is;;4e;{)(dY%W2H=;IsnX~H z`0+5N=-=k~iw3|S3xIzkj0G|HH5uf#?&jOi=V+Haf`1?gf*=TjAP9mW)H6hus1KQ) zlA>5dbu9a8g%ZqAH5G5$(kkPFgY{hxvU3J;nt<{7{i+^3fTRcD-T@>#XBP*o%1uR?$n)2`QX|x6g{!D5k@t~4 z$5_)B(rX3~104n@{%uE~c15U?83iFz8E2$o01CWj`MizHK^W>oNOhl+t`5sU1{hj_ zq3QfDFs6!e9jy((5B{2)r}=WdHt;($`(`W~Gzfwq2!bF8f*?l0A6kt`PIA5I{{R30 M07*qoM6N<$f^}0U00000 diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano08.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano08.png index 5d3c340977ec83ffd33c5074c4a69a7c7fbedc34..4f651d73d23ae9fcd044b24c73b97f115f255815 100644 GIT binary patch delta 479 zcmV<50U-W@1C9icIe)-OL_t(|ob8r9PQySDg(nhC5M3GyL_u8S1gVhHSvdtKNy$k# z1xja$$|s;ODNqU;cPJ^1-#E_hnSAVPmmdo-{UXMl#6&HfOYa5ye3a~k17Hnf9}cW$9F!q;;!j;0-zzn zm+f1Ap8^Sh@XWqzYpsfKwOHyHkt1qE3`6uY`ON^fZIB|ghLlqrhN$r@46^-329Oc0 zkwXm(0)XfdA%BHoh!o=MFj7%wf>*%V)6y9LsVr7D1z>oF)YCWz?_D7(0oYW^DqGKZ z`p4+Y-V?H^9%?h7Q5>SOO$QDkf!Sj|*rcjD;?V&p)Uy1cC#QIe#=sL_t(|ob8se3c@fHMI#7SRM5pmI*FVA;cxWQ{0;xZO`M90 zi-Jp?lsnw`h{3!h1r>UiHfi$iNy2++-+WmeKnKtP{60Xn-aPoe-S2vBkN*h3V6(~8 zwq;OX8)L`Ak*Uw8x9`yaoXo)Gd|`vK&uv36*Q`DWAVK7A$bXeeKr?4tl^4#9+NnBmDj*{_u<4Y4|D4#9+5PdErW zg#OCtb|ILCG?!;A4J8nTIa&zS5y0HdcR+CUZrZ_^;2{M8TyuzN=`*+A&8s420mS6A z4>AiN)jVeY?@Ql?9l&1!#M}X`0LY6;lX9&CKrFebS8@^ne?VZ!x}U1#9pImjEV(I# kD;a=hxz#cWAlFpt3H`px?>_4!^8f$<07*qoM6N<$f~bk4RR910 diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano08_on.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano08_on.png index 4020839a83338cdafb8f494cb91bea9b3f869baa..390ce1f09c82015bdeb9e9c90bcdb344f86a39d6 100644 GIT binary patch delta 607 zcmZ3?@{eVLI9CD(8v_Hw+M^{eCMt^8GZ}cgIEGZrc{}G}=V1dLx6mD(w>mckguQTi z+n=`J-ph7H+eNL2DXjX3&S>fum zwV^(LZ%xSidhQP!6fZ~%IGk)`@P4eE_IGa}x5iJ0B`j}m*}LmL_*zw4<7VJH`KKh% zOPwx@CuViKv0e z4(}si1**qY6jqt6dr)YyUM!$*(ISuJ5X@OvxXPH z6#9>FuiWtbuu{`@FLUmWcVD-bdxvRkZZH<{)-}|h6LC0|gGXKV`y|g@r$c5;Pk)(T zzgsxKC?vD&*4&0$TlQEpZUqM{vWpZNCNVQkk>LQjR(1Ky-^@<0nHRn1=UC6*vCm#% zkDbCVk2fM;885mgEnm%_AvlpCS8>X9fs1zTm-2!g&N@DpoAUaTiN}&$u83W>=RV6@ ze6sXT;JfjQF+6fgR(FS2OZxk%X~7OF*`F-jQ2H%z@4cX=@^^|-OrPh)@3#BAV$XqK nr>`;>oC}}G_%y*>@mzf3RR=L)#(Gg;LSpcA^>bP0l+XkK2}KM# delta 515 zcmV+e0{s2{1fv9y7YaZK1^@s6s%dfFks%j<0o6%FK~#90?V3w&#UKntjnpM}&?R=z zJ<=eBilPt<*ch1vw$DhJ8AD~_@TwnD1=qK9*;}+zotM5LOd=EV0o{nYOVpb2#}l`V7;EI z3ZOUtrGzy+3KapnL1+;=1u*%)qnc`efYTfSr^*0;av1crli2it4X%jSZ*)}1ku)5tv~;?e5QoZvOnQXtos8}2-MnUe*o1_>|C z)%dr~jg-PPN6`>UM)rDs1_W$#vBjE7zW_C{R=HgJ9R1qJa{OSn>={&7Nns? zOV$_?ggkUA6k`mTGPDQ+>24_P&}=44hJZmBJa{k|G-XOGs^9Q+C|B%aN0qI+M9KS% zMwWcveJ2^+3lI?z5s@8nl1iS>O?ztVLP~iOC#eiaQ#4!Mg@3^|TU{BBrihbNl=7?= z!b$<+B$cYFU~l&j08nex;kbbSfa3;IYt#V%d%K6Is>+>pgAsaGd;Nj*`U6qQlVu(7 z?=iNDV6+32@?kpO=D$lW{5Pv7BG+W(;w%6-^6~_%^emU6qoli`iSl{t4&o2P{Y4a%hmU%s;JkiVH z^z$cUzt1S$#*Q0g&iX3re(zq;1t{`-59-mFm*WOfbWt^H{{%O2_Vdf%djUJ4%#TJQ zA|fIpA|fK9M`qm@nkHX_T6rscTQ(qz>Fj{<0^F7j$bVA$?7*^YK;A7c)7b%I9k41J zaC1G&b)M2@2bS&kue;%CGCN>o`#DZhIX*f;tx-qV3Gw3PHh{$~uDl#KknLB`F^(qi z+deMOFYw{x0bXxC+h`2N3ZSzAv#VdYxt{%3HXzG% delta 541 zcmV+&0^^RHs=Cws-^L&@_1;S=k<fH`#qeB9@|6rqun=+Y+tF*%cqZtQ2bgGcPrsf3Q7 zo%Zd8}X;d9*AEAZuZXP>3p0B5Z_e;!$tPnGLxCa2JbmBDTUK9X$drIK< zub-HXhtA>-`B%6Tl}@7NYJ=@=|Jk7s5fKp)5fKp)QA@YJ+V;6n8tSF!+1`LleD@A` zFTnqL11{-(@4%_vfVRn7eeNA-+Z%B4I6iv^yiEboC4W>pX>1=CJg;5ViIR8#l};eK z1c1hNS6-IJ=8Ls?S^k9$JSzkM@cg819xp4zBtK%zR0`20s`?dwMvtAB$-EW7_6Agk z8qZJ4)mU%614%q^vQFr{05DEZ?MUp;aRwYgO0EZy9R z3ji2g4iUx4ca6o2$Y?x~(Rd;#W@|UYt(V=^Zf))kutaIIc))$Q?E%+psg}`rVvGM> zm#_HZGgy^tisD4v7-=|PEhhL?btRVXo%IENF-VLY=(@ zzFn}_SzmGPWnB(mg-xc>LZ8Cc8JfNEKi=K}Y>>nMO-Q0R!O7`yqkRfnz0el_{P+Z* znNZU1rmLIl{cP4~E0ARHNqZo)c9}8`rbC2?h=_zDz0H%{M)*Ja9W3?hibYw(F2Gwd^XS&0(SzV8(^zk0c`K)Q26YPFpDIaKv zchqo>w^F`W?0-sZpI?w>Ib7Zf#jeCk`5u~YcDvgCaY7g;z2xU+f)M>D;$S;T5|Q%3nZq z1OR)-=WucrC5#jEeftB`$r#FCAP|jWSK{eW9er*4+<1Ca5FMc?U-9kX>siY5gDgOr zTDwda jH`5?NL>fdyL_Pfkx5J&@qfztq00000NkvXXu0mjfX88># diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano09.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano09.png index 7c79595dbb5bff9d41a75b54655790d02faffdbb..fa12c428578e37bf143f0abb58537cf0013a634b 100644 GIT binary patch delta 352 zcmV-m0iXWo0+0icIe$V)L_t(|oMT}aU@+={Q3ni92c#D?{|C`8AHHGOuzn&VT^#_j zyre3N;ndk1FrokW96?nFfGoFjcR~>pmlt6O2+YUn2&y>%-REY;8Vo&c(+KLLiUUBF zgW?+oV2*$}X!WdBv~vI~*wHOHv~wTB@*7We3>9b`Ev!A`aVU;vcRV8IRo%%keq@RE2_QSg_N=a-0qTSq`elL4cN)<8%NBz000007f84c+SH~^wYCcgT_8F`r|AsQ z1p+US>uS>`H$~A8B_Xt){DhG#9e-xVHhv(3AiU4(=v3j)QvynWG{9o2b3^ZeX{|#DT%D&2QSC(mLe0Ms-rnOgaz4Vi=6Fw=v%`Y1%&=G=fzs|mOT2*At7WN6L>p!;th&Y;y*8XWtp2?czH=LzHjhz`#L zkP)65AS*l-Krm)_B0zRH6Hr7r6Hr7r6X2ceQiBr#MNJ7P0dLdk=#Z0=uZREu002ov JPDHLkV1lSmhHU@< diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano09_on.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano09_on.png index 834ae912011931d2834d212b0b2e7be31a591ddc..8ed70c819f2246080d6c66f47d1cf802587a87de 100644 GIT binary patch literal 423 zcmeAS@N?(olHy`uVBq!ia0vp^4nUm1!3HGP9xZtRq&N#aB8wRq_>O=u<5X=vX$A(y zNKY5Xkcv5PXC2HvY#_j5?qC(%=Umv7C~PZdwbRz8QP7 zhD_RE!_*t&psM3gfCru8h^Y0AcRQe!%CaWz+7dB=!ob;42do2FUG4-f6BhXUzomrf yUZa-6uPnQ{4Sq{nrZ8E(U{c!1a1a^&WMp2ydiqaQw>iL&XYh3Ob6Mw<&;$T*TB0xj delta 574 zcmZ3^{F-HgMLmA%-Fqh9@2jCkn+k+{~Gm zo9)EGtCjFoJ~ukz@A*0Rr|)3wUCaMl`TA59ot(Xqe}Btx<}uapI(ht=;l`G{Pa7*! zyguw< z%kJSPz7 z%>jR)GktUx&aTOkn<-?If57jPsLC6a`Pv7Q?Go}oz5OW@ZRrYfwcX(`KYcm#1dX4U zUh=EPe-m6WwPyLhz?15Go-t>s++S;N^|J+N+>(>^->=9|tvOU}mvHGx^{aIC`4^TO zoPanDr<<1_sX5S^`&!_Tc$!0}^oDJv*-H1GD;zAgd!YXFhE1B%!Ov`ORP4n$^t0u9&4D+Q{436}pV2b^+48;SK+Yup7r_#ss6)5< b3)4PEOU_>keCyK>G5~?6tDnm{r-UW|I%WY~ diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano10-inhand-left.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano10-inhand-left.png index b880a0b6111740b16d8acee7d13c5ae9d2ee162b..e101592b1213e232b21f0ae16d175bcfd235da18 100644 GIT binary patch delta 596 zcmV-a0;~O;1o;GzFnd%FOD&RGZZW$})>iggT324&givsvJ@9DLgPh|TrY^xR<-t8Q#L>O zlL3}1M!MK_dqb2f#-p;X;wmjdxnf9O)?(C~ZRL8ts@59mPr&v3fBwf$e}9)fZt2V#{97#g;pok(wMJos z2mU@uE>#hVmgjMrh=_=Yh=_=Yi0EBNyvQv2?XcL^Sl(QKuA=h;g%;qoxd2@f`GLZB zU-RYybV=n0M7E!Ga{;;}^8;f0@AGm2y8TG!2gDY^dAR^x()j_A8BlMw)z027t}m|e za6bls7frcbZHDxM-nMyvR7MFxM8V76eQ%oo)yWu i@ZQ%!L_|bH%isy^Z+OGJBAR#r0000F-wT?BPZQ%VtM4e1BlbJCj4ac&e8lggPS#&kBv z`h9a$SF5DC_yczUT$+m?+NT=h#Fj42rQRkJ>p!dMXjYDGBkHp`9vO%&@%V6$*O#Yy z-^HYIi{%O?iIL_40O^6!D2I8wO|@c;eek!fTOFP1AjKHQ`A)8ZPJTuu`a5fKp)5fKp){Rxd5nN8m! zSIY-nnhOZkbbg@G4)|>@AXF>z1HZ@xgi^^5Xgz%m%5MdPYHNPr$6P=t?figR@14s9 zTvAW#@&lo{fKaFEYGUzgyazL}t{-*xo(}tlUvtI|>qv8P&%*)Mn-9F1^SVW+y(}q z)9pzsZvg;y<9n(D-3G&X&2}7C-omh1VAvmoNJ%qis>T2i6%l;Ae&Xrz(r_R6*Cmn} z8QfSyv(^FtIAg2T?o>Pm(7*HbMjKY%QVlCFWi)H8fyTNKA|<0DGB69woQdt&7B<%d z1^^hHZcm;ZoPWW6_W@`fyiJIdn)c2ZZ=bKQxgIc9>Wwx+;o!iukBW$DtUEJjs+fR& z@S$)}JroU~zf3&b+~fW20{{>T2XT0Mgvv`9*B9qn&w}4#JKoI0@RE(bp?KWY`G9)L-5@YC?CR$->RpVu7xr2MQ^n7K1AIrvHVU8^vc z4#(x-z4o(+T7|hh1jpszy;?-A!px(Z&KBfud=H*-@E&MYtB}qXWU*A0Gv(li(5hC! s8T>Mwha*P$_jkelee8h?a5`T+8OfYo{fAb%dXIQzZsSA6BQ@77Cb55Gf>#dh$-;(@v(q4*Fl z$LRIr(2{U!({sqTjZo2eXd1;m!L1XUY3K3b=%%Ok>bQ+3A|fIpA|fIpq8oMY>u4WU zyyQIjTHM!9HTX+a(W`KA0xqq=`wF60!M6r~fy#Onu6j}Z{kaBzhERJIPS)Uk{Y9_B zRWj;TgZI2naJ>qN*l+9gXbs*&)x8S8%4#B3+pQ+Hqt*cO008`I#LCx*Q_+5}i`9CA zk%?|=CREi$7HYRzz0`3O&e{p~d)-CxUYsvFBR00000NkvXXu0mjf D0rdUh diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano10.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano10.png index 0f9d74868c623eba72faf3c4135b2c770277fed1..3149b71c99cd86323a36b5e02f3a316f0823b598 100644 GIT binary patch delta 359 zcmV-t0hs>h0+$1jIe$q>L_t(|oMT}aU@+={Q3s4VfMf@x7c~Eev0pxX!?0ofL`J$f zz``Qpzn!}igPE}g!>O}37!K{+#}E*h|DO^^5bXev&o7?13bq^uK#rN*IGKSGK$HVu zJ_k7f!g@V3?Hp7V%G;{#6&vWZ@!9E7juqXh@Q3CKf0Dorr;!RT-V*Rqg7Q-9? z0uqwqK;N&ReIf+;7TNcpUXm0%If5#2NENOlC(YC}+#EKP4>Ak`66a{wrjf}#QB2vVYhY7T%!11Kb5 zS(KQXlBx|7m}Q_WN^B`flNJ#vCF9U*l8riG)B(fJ0RYdbxa-h02B-i4002ovPDHLk FV1geAl}G>p delta 311 zcmV-70m%NB1Lp#eIe!^RL_t(|ob8rD3c@fDMI*QqiWCtAaivQ^!JS^9NAM7y#xsaV z=n1;ky{<%1M2Zw#$4<!;OHP6_fhe>Jz6oR@RPU7npaVm3+?-Sp zR*z$FA?*t-gfKM#u@pK8s}6_|s*}?CACcG(wE!SQtpK`k0B;>vs@2q`$EN@Q002ov JPDHLkV1g2HemnpG diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano10_on.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/ano10_on.png index 843338287848603e8c9fff4900284a6ec172c93e..51b7ee928775c5bb9252d1ef68bd8f7242dbcc00 100644 GIT binary patch literal 437 zcmeAS@N?(olHy`uVBq!ia0vp^4nUm1!3HGP9xZtRq&N#aB8wRq_>O=u<5X=vX$A(y zbWaz@kcv5PZ#nWcD+shcyuQTzlgqp_!j)>bBhMU5XlQYKu(y73;N@fdIkQfPKjCD6 zp#{$#y}tikKJJyx`Rv=$~u(cr(Mwi|;unNc~;MaP9Jo?}sX+{)$P2_B)*1xFX2>)>rd{ zt1Jwk@S{}>eUEp1tF3>lTj(;2QB{1c#izKdJO(XS4K^{<9p3k~)_OaW%SWCa$_W!U z0c~5(v|*lGJ!{V@_XSUGO=u<5X=vX$A(S zFi#i9kcv5PXI;!aY{28sALxC!p)@8qx9!4F#Un)|@ zt?^uL){b>grQE+a7rk59`8sOd#_jSI@0r%N+&jBrYQZ1A2`r_%b655A**Xec`7!&| z;S0h()(a*ol&q~&b~Ff$H;`}iIy51@!HcQQmZP_Z>B^61N4Wp!H#`VnXmV!c;A2&= z5W&W|Cm(VB>!hGxhZKtb1o!<<{=2W-?!lz#oA>p<)^nV6{#SEF7GDU7SDCZw$L=K&&zR*%_sN>ij9Xb2W`C9D zY+CuNDc$bD>h#CImH+i`{dl$FIdhvWW7Z$T?FZAFP@@1PKERxR$#w~zns*H~@BM60 z)$iWdKRXC$TEao$2R9j&5>BnU4t4a>Dqqv7BByH(Jig;Be0^(7^0vAMd%3p=efVPS zAav#JzLj=rZ#b|0Y=~+yNd3xszUDyfwPWFr=km`m`^fa48!06HDj4^t>u^uA+rBOn QnCuulUHx3vIVCg!06Zow4gdfE diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/meta.json b/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/meta.json index 82b10cdf2e..e6a7cb553d 100644 --- a/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Xenoarchaeology/item_artifacts.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-NC-SA-3.0", - "copyright": "goonstation at 4059e4be90832b02b1228b1bee3db342094e4f1e. ano11/ano11_on and inhands by brainfood#7460", + "copyright": "Taken from goonstation at commit https://github.com/goonstation/goonstation/commit/8c9738746d1222a80dddff25af1bceda58bbccac and created by Flaborized. ano11/ano11_on created by brainfood#7460. Inhands created by brainfood#7460 and modified by EmoGarbage404 (github)", "size": { "x": 32, "y": 32 @@ -14,12 +14,12 @@ "name": "ano01_on", "delays": [ [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15 ] ] }, @@ -38,13 +38,12 @@ "name": "ano02_on", "delays": [ [ - 0.17, - 0.17, - 0.17, - 0.17, - 0.17, - 0.17, - 0.17 + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15 ] ] }, @@ -63,11 +62,12 @@ "name": "ano03_on", "delays": [ [ - 0.24, - 0.24, - 0.24, - 0.24, - 0.24 + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15 ] ] }, @@ -86,11 +86,12 @@ "name": "ano04_on", "delays": [ [ - 0.24, - 0.24, - 0.24, - 0.24, - 0.24 + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15 ] ] }, @@ -109,11 +110,12 @@ "name": "ano05_on", "delays": [ [ - 0.24, - 0.24, - 0.24, - 0.24, - 0.24 + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15 ] ] }, @@ -132,11 +134,12 @@ "name": "ano06_on", "delays": [ [ - 0.24, - 0.24, - 0.24, - 0.24, - 0.24 + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15 ] ] }, @@ -155,10 +158,12 @@ "name": "ano07_on", "delays": [ [ - 0.3, - 0.3, - 0.3, - 0.3 + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15 ] ] }, @@ -177,10 +182,12 @@ "name": "ano08_on", "delays": [ [ - 0.3, - 0.3, - 0.3, - 0.3 + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15 ] ] }, @@ -199,11 +206,12 @@ "name": "ano09_on", "delays": [ [ - 0.24, - 0.24, - 0.24, - 0.24, - 0.24 + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15 ] ] }, @@ -222,11 +230,12 @@ "name": "ano10_on", "delays": [ [ - 0.24, - 0.24, - 0.24, - 0.24, - 0.24 + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15 ] ] }, diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano01.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano01.png index 76514f26c7bef6b291fe1af32c28231901adaa10..334440dd17b2e64ff4d38751fd3b20e8ecbc37f1 100644 GIT binary patch delta 527 zcmV+q0`UF31g8X$BYyx1a7bBm000ie000ie0hKEb8vppTfW*dvg}4KI$Fe7`z%0hXM&bfmVv=Do2e7ed^A#W8l=rH-J0n8o+Z6TZ zyZ%NY_Z6;22tw{{JiRw9}JAhwE46T!Jvq#!E_CV*9LRaU6I@aM)leT-OcV_D$2 z&13;Iqhq6Ab${%x=?oyX{M(pUAJFIB81EQd09`;MxPJwZmF4J*ixF(3&OZsD*U!5R zad_#N^VLSH2;jcrGpfmkBWarHa10270JQbT$deui^FWJFF64~?K&($J&FuI{SbV(f z@BARqg%bz0D%PDHLkV1lH_@9qEq delta 548 zcmV+<0^9wk1iS>0BYy$|NklcYy^u~C5V>3poeE7f!vc~X7z5}+uO{DMDS^5 zcAl62|9P2Nc#sFV&r%E!-xwJm@cEzqB%BBo1LRc(&MshN*MEjeNRn5G)l^dtRP_(j*pD)(+B5BOan3hj8p{lvfcCnIWo~+>eoQce&j&Uw))FQ3vO+q`i=x*M2U_e zx^VL>3f?hr+@WYP=0`%d ztC7B!xVAxXECB}Ue-NA$0D_YOKyXq3X@dLxzT9rNFX=TatnIt=fK~-H;)?~aF2K>a z^8jm7fYwE9RPa~p+7{_&!>X4@QvggzmC!O%fmYh(hp!*XW2yaa2y9h>SzfQ#r{Z+1 zWvUIJ0@T#sn#beu`8}OZ>O9;wg75eH*TZJQ)U5!>Z2N>v32>C_Q|NK7*XyDwk4q1* z6yBu(mZSi+3$vp*>wLDNDu7jiZ-4v^F+%`?BNAZb?QD-}F-y_|BsY&d*_*RzvGf24 zP6`0QNdX`@DF6f~1%TkB01%uM0D|LAfYwTI>sk$!0Og|S-ixGY4_AaQm&?cA^Z8uP z=d&s=l>k^#G)jN-!fXwR%jcGVnxdx8n{hG+Y(El&@08qbDB_8 zg+Td~sW3hFv|=sfv^&~N#{qjm9>>Q4+J;yp03U#?jRWwUW;8Zpm+T;=eFQxK&+$Rg zNI66T^fKJ40bH}o+Z#I8*jIOh+}K{Dz>?AnG`JlJT7{Wg0jx*?AUG)i1SbW6;G_T$ zoD=|plLA0+QUGv9Yvx%qEA37IYupLYn*7{lTHJbh`e@vFz~P_Jz^Uol%FxVzaj!v> zp4v&*k@R8#D6?`EW{a8OwfTQd900000NkvXXu0mjfvB;11 literal 1679 zcmV;A25|X_P)eJp$es^qR@Z`drQFD7IQ+Xw)F~jfa^@X7}ye|NGXw?gwG_?ac1)d-HwY z%)HI_K`Et_Qc5YSQL00Tw9n|sLXn~*ivdW(9_UT4Ln;Hb!vLgV4{nCEIwUqgbqI0b zuVM$F|7!XHNXj1E3`?id8zGSaszZoZJK&E$Vat_b2H^2uB>(1Dtuul-_?_n^|H}{4 z8DUkg0qr2M4Y2I}i|~(tjh(HF0+;t2{8mIkgZCT!G*OT^0=Dl+dS^D$F8o*q(B8jk z3v_OPCwIYp>sk{9ruX~t^Na$o_xtgaMnR$oxN;em=HcrLN$yTB?ZmgDb~NYy8;gzY zHx}XM5?tF3waMtujmkFX{viIwr{UsUb~^aY{XzU^4#L!IbREiFP{9((072eAuvH%O zS_{Iw-^z6BT+ZW%%zQgj|>;1w(h_Up$5Y2b?N{^b@6wKG&?~FoLd}kln z+g73=h_Aih-V4sYXpG%nlead|~jBk%aRKD*V zB^)dT7uGTP< z?yn#Hp^>k>e{^>~eDgQKzo#4desg~mzV9~F9;dEDNDut*arwDA)Le1hN8iH(z`RsG z&Z6j?qHgbO|VdRqB;)H-G$W)Vmw`Q?DTg-}dJ>pMo|6>#>IJ zrmhDTpf(8~-6PNK&*V|f{mU|Z9EP3%eBPNv79W0XQhL~T56REYxAJK0d~)M!_S7t_ z*(1A5UzbOZ_s8P<8o)WCPP%~gba>}7=Mb=T5YP;jII zmaY1F?oA?h0zb8KknT&C{8CCOrIb=iNg~zavZLEYlK)4nil9QVMrZ>ENM-;%`1-Gi zfoKy4h;IO6@F!lT7$YbhCf+T8ZRjv@Aw4^u0gS=FbV%mMzqyCj8bRrB>0`w|+(NdY z!==lL|4BM_nHg8GL^puf`;GkgmPLW-{U*PaQJ}rw)-(49^2ah}8#?H@Kajsa z9=qHH6)eF9h~WL+{P@h*f)MX-;ODUx1bBY~KjvCc)&~^KFY5ye=9l#W1@nUqP{YzY zn*Mj9<;Q2f3sO4tABf1$V;5Az>faHOpZ6}P-SYE`=7-k@^nsXTISPXE-vD699(i;rur~{QZ&*@%X;mP^&^+oRQ}y zII4K_z(HWg;7?Q6Q>eE-B1ng3^$}F%6z0qFebN*{ z%%Ck?H=#SE_ecyY1`T=ns`hl$V$ zu+8{g9{wCIY2bU>L;25!@JBrS?hwAG-IRFs0X3wjX^?TQJuvV30GF4WJ-m^Z7vB(3 z@wpb0@Bb>|XYQhh+u(kXa9GKI*V3ih0K7^j%+F86KgvoD|0?2_^#KL*%ld#-$}c4& Z`411B;6Madswe;e002ovPDHLkV1kLHX2k#i diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano02.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano02.png index 1714be79af0d252c1f1d2adc61d75daa2891f1a0..0d67a4fc47886d4b4162ca2640b3146303c05004 100644 GIT binary patch delta 449 zcmV;y0Y3h)0^0+SB!3BTNLh0L01m_e01m_fl`9S#0004vNklYo)AaEQb>^p(4E&`Yw0HHiBlgH+^765|L_-Su^`tey^Q?a60`Un6P z^Ro8)_I^;yw~kw37Qi{xmV+F&vmiaEwSeczOLc{{AYw8R$ElL^xC!8VzrVgk=OAV! zZY%(;1)C4$T7P0P*Hr+6Tad?cU=onp-Go%fbwRckpcj{1^G1}D|11Fjh`1PY$;|@r zg!=H|V#K|U1Fk#ap~EE>bKi(?8Vaxt$7+CGacx7cXjly*T?0Zc#GQ2k0L$5S5yCE6 zk^NE%GJYkqzJRz1@IrPQroi*u+E5?ADdeOf%YhUT7dj!j!PNo5u~c-@hWNl(m0`;Z r^F|~0?2PM|QEWlB*J5>R0bOAS(+dEC%)rz+00000NkvXXu0mjfRv*!7 delta 277 zcmV+w0qXwS1F!;+B!BlwL_t(|ob8k?j>9kzMxU!ChJizRfKZb?$r4{C{b3#e*tq*(W(Ho2-Yjw1kl-`^REF{ULZiVZmD5`UK`NI>%5AH4U6d@fs4 z#BM=yLI`j|m&!A)P2ly0uU~JpX@9sD;PH5Lr{P+Fl_XTRXNlGpz^q%B?5zr|MpuAu1sJA zY619-&o%+T;|w%=hTpz+?9tT%W>;KtKA-((-{sdA03Qh_@!ASwgF-z72Wu|-gGytTJmEi5* z3xhK37uJ@eSpXzFduOPWzT6wsjz+sSMpg}lfknPuK7T;FANQAV?F22T7C<^7G`;Nv zgiWH=3AN-e^WFnxFn5A7LC&P)g-7~=+6uLnL1hA^OjbFr+nL#{U@4ie9EQUmX$D~`0k$*3*@2S4Vlw911T1hVfTan#jT78k zk!rg>46opTAwjrG-LqXxf zKb0wYf=miEX_a?KpT}^YcL;47icFrsC9a&fa6zHTxU))aBUoW$91w(MxnJcmS32hk zB+Fa@1VIo4K@bDw%A&1mu&>Va>oigT;CUWKqY(gLzuzNC5`QZrUFlaft5RXdadH== zl%|ok2BC5N-*v^MlvuCV0D#3}ku#JeiK=4aU)DG0nF@kH>F*Q(#hF-gCYI)RModv3 zm9#k%Gh2P#$5{_$qojf$z-qNJ8zG`ICA{+F)v$UaC?$0FL7vuc`_F z!pMD!Kd&2j|dg_1AY|6nV2XM?nWY*?y0qo4;Bxhm{U<}~?;qD9Z)=7(#uR3-EqeKm0 z97gVY&3$tMty5SXHfr|DoY$=jS0Xq(#S1DdMOcTM2{ z7`6G_6wr_N4#2BEmI8kwi>3f{n;mE3*0x691%qA$&(ZbyfL0j%Mu@h;7H$8FKSKmT e5ClOGgXIsMD-Y_$AO(r=0VEmuo@dd+9}oo;G)R1aLn2b3-~lugN9M#F<2n1z4oGa{OKk7X z&d&OLtD}FmECB0kTXm`9kI(tauK_F**!K0$^}v$UsUl!C)PN zVpM=B;Of&s1b+-*A!4GXV3p(EueHV2ch}0D!?# zZIi13Wu~tMI{;80)QRG871Mdjyc~W;WOc#MqHznv&w`W&G+XV0s(MUbN_uZZ%+}9> zlmQ6q+9E9GGV@7szgJ%OE2)(ko lQ4=M>ivaXFFAb{p1`aSQ9t@-d_tWEZ&|XE^t9 z?zv|M_{k=f{juNaM)B{PhdW8M?}q{EH95L@xT}=$TPqXT4}Sxgy20008(a9VsT=SD z4@_oKzti0x5-m(57Xhk>oC3hkb#QQ+IXCJJDl=>T`uA{tjLWliMH=^LHjV-LW$VR<^M2QfB zJJ%8NLWqDL27h$uyMqJ3a59bnM2EKQHAT(+SJ;<&O$P7`VVeElV>4^MH+2I{WduN z{Z2R16g7hcwTG%3^#&5bzS`KO#Hf^70RWR3=f;0&FMlQwAIUr$^#*U_-(KKBQ&g^o zMfRc;$DR6NAWZDzr|DlvwUfz=D`$}vB0xdBz!OeF+i0PozT)4*$v8SaKB?NVi61Sg#Y@qv_Zz1t*6OqPK5>g*zVV;*IoC#P+r#Va>; z1H=Pb(-alI9{qxay#xTf`|w^OK2)n!G&Ma_RDWg+4=)Dd=~)(ZXKhnNL3FPTX>J;6NVkG`>!DdVInW0G`{XFa@sX;@`j?yue3O(@9Gb zcS?o>OlCX?iHY^~GZdx(09wu0iN1?kLX$E6^ACy13{0+bWa~9K(e{iET%BD+Mx!Yt z;eV(%;Msrv_Ju2*sT*97;+jDHkG+aA*K!5{8XeJ7Y-Y{jdM;egkxh(%D7zr&07+e;+Zwa)_H`{Xkuo~-iSy P00000NkvXXu0mjf#zEva diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano03_on.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano03_on.png index 2334c50393bba89e224f80eb8b02c45fb34f931d..7942c13069699691d2597703655cbf2b320eb29f 100644 GIT binary patch literal 890 zcmV-=1BLvFP)n*M z34NqdMv2X%XbJ%60B&IJ_xpOg-IkU#ngn=0pX=pvX(~VpRPK7cy5&Ra zm{R4}50A$qd)#3o0EPbi{jbF9^>PxS(J<%pIV&E~B*6Rqc3Z=#M2JMJKLS8;ZpNq6 ziIs^YO@ux^Tl+RQ&BI5)*8CBmCge&;(xg@*69ly$0ERcg8k#&{Hkt&`G^!Y_7do8t z4;=w0yktx#B-aj60VKl~r!dmA{9&u+O4HA)G^`#v0ssW8X$bClQ2{iE!kV=Fp|BY5$n(qum>hU?#I#)mYWP|45j`M#!1gVhC8bqCIUDY zHmEp!Ns?|>fR@(N7)q)2$kjO@DkY=F5D}0X(qiL04V~Py4?P*G%|~+l5D}0;Ju}QhbMyEDO0m6kz>;!X`zc3x8bpox5(-fDRKlfNr z>;irzXu$#a)6LZPT2N*DP0tw8O;jNAfK=tSsC0}i7GTW;b3da0qwiDLaax+X1Hutr zpy2}&GnE=|R)8>(ULHW@AcKqf00al-0Yc0JN(cBp!1Vyl{!eAV=k6X5CS)F99`Jpz zJb?Z$%?JE>0NCqpPsuSMA`bwuO-jvsib~~(`9N*|2jVUetK?oD0JMF;Jb-&3T@Qd* zD^O@^j{jl)_)Pgw?K*@g0w`m@&xifL_0FyovFnjo{!-Wi_yzDY3p3th`74*d6!Udg>0NNkC90XI1&fSVi>z)g+`;3mfeaFf#{K^eTfwWfy&{L(mMnFi<@YiB!570m?KzP%{7Mr2ma_sH_AY7a@4;UQt z0O<*IEkG|g@gHg1dyP=zEjHC2KyP{K83Ek)809bzXgPVE(F1`0k|W8>3bg6s0lpvEAXG*yHmGm;i2aOaM1IKZ{^ARFPNZ Q&;S4c07*qoM6N<$g3_mn=>Px# literal 4385 zcmW+)c{o(>9~~rQU&<1VvW!7SB-zF`l&nRFtlx-|C2JauvX2b1Z!^e}ooq?QzSCIB zl6~KoF=!^k{KoH(``-K9=RWUy?m3_LoX@>cCPw#IF9}=%0069d_hFByXM5_Q!FZ86 zuH1gj1^{rZ>%lb50y1|p-@2Jvpu3wD-*rty5de2Y9fZXb4XX9^Z@n7nULOASp?GRi zlexr4x7P1M>DL6!fd?YK8*C;?Wxs|^sy3VpWmPhYX$`+iS|J}eS#DQ;)QWhfB|oG^ zV=Bx9j=L-FxBd3?`$mHo@06CTckPSGYhcaz zl;zo+8m~~IWuOFCxOthwTN&j`2c{jADR`}*rv#U7RPR8L;tBx?wRV&XVUizm^+{}+ zy`s-^8>FLJO1??wR30+c>#RiXlDU24pKH8*`bi|XM&b<^aA94T3u4$??;mup^*5*g zZ62m}H|a$z`;cZb56m`+fcsl(`x*LYFInx+$^j`xxDzA6AL8&MvFYpJ@QpD>*Lwih zBY+T0f~#wx->CP&Hn~Qnjye|&U~@B4yJH9N!r&f5aZ8dm04cy95|5bXlGPDN`9OH5*DGI5i*3E)*jSobUjK7ejrUVB|ew*uIxAl6nAqE>!&jLQp z*7^rA=nSx(Zl?cu6`r^sHF>=cm)xs(>orOJ&B}_iqhA5swl^PS_e|=3;jmX7Ub6>& zP|uRsuo{i2q9N+bfvLLur$q5cc5)cvecjmlRP-v8+d2DTNj$6F-3I4=#dYSQ;@C1U zD>(7vJx+2;_zj0$k9VzD;=co5#(^}W&r5zN5=TBf>4D$xyL$CsdkfB9i|#NAbBGT_ zmc#l6on)`b%%9DYTotXYUp*vYDZGr>Em%}<=BPwZc=IaK(6@2HTUyyPc0c^#Bs}MU z-3pX}Ahycskb@#n-yc|PSvQ>#f7XxKg&4jXtBGdly?Eb(B*dCA`R4`m-|f%+77q8? zo$us?PEaq4s4@u;`ATl-_Jnyf)oJ>^oDrs$7g9j82eSE&OI}^Tq+`y1{R;tymaR1+ z{jhH{=+fnQ1(4g)uT@pbOy4(Z17_;=HWNm7`S_XMmzyHjLg4$o_a*$sKGenY zd_mZb%fvu(M*lqf&yG=B|Lis22$$=|FJ?Vs=#d?*YQ8e0E{&w&$z1tA- zMTS6uJksOn;G&|X0qkY&BqNX5`g88{zYtz$5-Xc(;~n(h0bzS}mHy`PrVD^?hd)Y4ML1iT zeU{NeGs(+H7V(e#6(Aw~ywcxXiprKxzs5~%BxUq>9EQ;?D>SE_qMTj$n0f6B9J%~3 zFN@!>i3OmZ1b~t`@b?aazSb%xW=ncI<@@LmZ0Yw$U6G!eq)&^8&qg+5 z=*eVarPFbv*XX#VT$Ny8*0tfkH8Nv)5t_#DnId3YkOoU5H}P)|@XesF3J$|;hh2!R z+sf;{fz$s;9@%U!bIj>E8C^M|JME`uFJ5HPimxn{7g8ecv34PVO1Jtct7+=loAr1) zjlmjFJm|t7KkodW$^jyyxn$~AT|It0KN3o|l)jjrlR(5_c_~5S57`P1pfBLQ*_t8F zE^$$rOc5r}WF2yScwW?lqc9@?7TxtOqz(xj7G-ww4NY0-r73Ra z4vMjH30!l7`1*FRrsp)EEgj{&)ews_pY82bVtWTmOx$IpT(-5iC;3tQ747vzbm`+r z^D<7G_jya_j8H*5#+0?TAeV^8VS7A)BB?4j;T7ae1it4}7dl}R z@+~vBe*CcB{1e9U1Ito=YTYzF+-kS+%;@mdi|VhE+Kh@f>@wxdfv9kp2XGh-JdcTkRX-c=fYg=uXfuGbON&7j|vLZ>{x8F`gDN6A;&#OIdY z4`kF`FL2!dRo0pG3YDh~ZVvz>cV#|o7I0eBDWyk<(D5k-#S|TQg`VCL4HW1!n~k7m zyckxNY@6z8ZA9EiE?!0_ALN4N1upW
    $E}r&*-gh*lvyeZ%k+f*R z^MO8G_$CBy*MhTA5!Y>Wd`A-(SS!v$C8XTV`!=`JgRx)++QmLlObE zA~E7SIg3(PMmRG5lx`Q?kveG?{u!;7prBDOvGr=ZYbSYI>eFX8s?f)QS2Of&lI*Tt zcTWej*xFqJ5dUha%1FZs`q$xl({uM4rW~LhvbIQ#u;;Uz|4e$}A1g_5rAu^ObFa6( zeuU1n9g_BOAe0fjeve{-r>P%fZNqckn8)e(WiHhj}wqxX{g@;J}?|VCj>d>hqGv2Xs?ZOYuw_L;@FZ{wNwq^PCI(PUO)J1%A*eYK?WFd$xta z`7<*>pe=6Fx!Xr|6HmJt$hQvG#Gt}ih#!L3k;}$d5>ifTIr>iUkor6F&F*Up@{S3W zCOuD7sV!r6E)g)d_!basc-j28-Nq;@l(9SLyjpKP;Uayh$vonN zv83s?o%jlYy%OMrr|IZaF@__u*iky<7r?;X^V8rk`&Djki|{HXMmG`xb}g8ikkXSqXA3U%c@5)vnl8|@NcOn) z!r)0gB9;4zl@Q|smL`jL|0EjM4b;f5-1&^H?yiiB4a|!v+BYXa&w(*Zbz(xNENUym zVk?JYE_;VxOHs162ds!nV@U!uz+FNJX-LrprC7@)`ZyBG|}P<)O!0xpJUa>Ua- zAknvM_ZBQHyBS6zerVc7-WR1!&*6-MeX@O2uW+Uv+QAU_f$?;SCa;5mV~P#XDrPD> z^CY!n+_g4STY7MaQAg|P>;Y&|yjQ!ic= z(ReS2xNYmP%AKdLap}NCG1d;7n$uQ(stfxF2>A%y9Ix&m6ZAxQW@YpiC3G>Brii2TarA)elw?iz&v_{ZWYK zl^2gx(=v&Sx$q@DW-PgTRt@Ltzuntm3}%^AM@!84u{5$bo$CA{0WJ|S)*?{nFFd=4@5@`tV6(Yv*!*2w3_8DxcQ4!+ z3LC|qf_OR^;{I_9QA1;4x0=^$ZG#z1&Pie`ZE!T5u~NMM_)xv833tv4_SU!P4w*>$ zXj4Z|r8E4qL6(6)wm5}~i7?pr+u)0nA`{${_flLj*)7Vy{e!jSF?&-8+GZ=oq_%Ne z&rGOBj*>N$^8onme)llm_LW-G}v>|9aqL>1AOuyq^ zUrBXc%LSpn*&`wPNA3izcjmiS+CDgK)y0>n8o(Vy^1Q9)_091#h)-tmC7wBCNQLOw V!>J8U>Yon)Ku^aAR<33L;eSZxy5Rr- diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano04.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano04.png index 9765a1e9d4e96191e5cacb4266e6d3b43de1d2e3..5d975a4949376a3852c165d07669681728d64303 100644 GIT binary patch delta 580 zcmV-K0=xah2HXUYBYyx1a7bBm000ie000ie0hKEb8vpKiIk7ciS5DT}k5xjsSIG|g202_;uFYYJbWHOnTEUfs!FfVT= zd0*aNvhMyE|C7Mx#!jo_&#$+&l@L(FhbKqw@&2KsFCk(gP=8ei?Y#MLThoajLw>~cXQys{kPfJ1Zg=MSTDX zNFWhGs1(@*mVYr;L_lN7B!kREV>q-4S>vB15N10{l4S)0B%sFFuyl>F?wIrd+bugD z7No49_|duFZi%S6+W`%}M&?kX(JA(?ZF2wyaC7rs(^;LYyP_! zC&MtBgfPH27sjIp6G`d6R+!5WF~<{&Ep&P|OZCl=c0svg5#yQqlYe+OV!Z}3*VwtbEoS`nLbFHUlk3j4s(~GC>G8}8Dif%;6QXV)V z0qVjg#67Wg#@PI9)5@ zzVj3~%srIXLw~i^SkVO&ufBo!3b^gvk>{70(vXLsTqyF>lemc9S3uw~beIbxmcZ57 z1qT5ASo79ohqY3L^oN5LT`+?$vfRC*)^4T10*T&p= z+2b;L9k9e9*007Cj=_^3CA6sJ%U`vQ1V3XW0a+y3CH(#S%KMN6?VkHp(z-19i56Crj zn2Y48>3=!0UE8azAdE#$yuBhD^0y6Q)H_X5D^--Bed|*1G|Bg$KZxTxThYrC@_zJy z`_TgcfG(Kt^c-7b)H_X*GEyM`sJ0r)VB0(Aug@>J+z-9s0GzLs49Ho@m}##Bf;`AS z0p2bVyUwgEVzUeYd`sfE4&T-JGT)JSkS`CLLVw1y36^~2rI<2`WZYCvfi<7PVJ;$C z7!GqG29ggk2Y`Gw7ecqKmO$KE#D84Ch$R$qAy~dMX@e>hle*mAs;nH#YLvF20d zx4bn8t@%_T1fY=bgS=nYbT7b&7AEV!l%N#>BK74$k<$fJ{(kbhOeRomHF&L52>~Ge s;U{1z+tCH{u41)Pg`nHs8_55I-(8L23w#MbKmY&$07*qoM6N<$g7M{mApigX diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano04_on.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano04_on.png index 320e12ed47c2349028a95851cd45d3dd8241a2ab..0dbb6624cca1407b978685e1fb83242e207e2b09 100644 GIT binary patch literal 807 zcmeAS@N?(olHy`uVBq!ia0vp^4nUm1!3HGP9xZtRq&N#aB8wRq_>O=u<5X=vX$A(S zo1QL?Ar*7p&hhPQHsEQsy)nhY%JtPKyAFbK>MVQ8AnF?%n5{&vfrHE!H*G3}wua=j+!v5|#QxZ0oX3LZ|LN zkh*m@>7s-K@1dTLg68#SdY|v`cmG~tR>yy(S;0(3IySDkFC)h5b=|Yb1tJU8rB+{x zTHx7`*>FQ%b0=TJgAP`W#hWvD6v{JtuSIG1|KETA{ejck3xCC|zg~Ym`>P;#!0dio zY5%7WC$4{WN^{18xrYC1!kbi|zS#df=fLSFuP02~+8)gcXB(5xx1G%Z>rH_ z*&eV`bOpix`hlY)>*V2IKlz+~ zN%Bu*4frtm``)0cT@O|maXR8q}7l6o7H{W+RrLs;NS&*~Zbx4+)8hPf~8d#OWbsob|k=|7z#9Q+S)e_(&wb!_X_DEXtn Pl+WPl>gTe~DWM4fb)aF5 literal 3606 zcmV+x4(aiUP)4W|;SZ8HQI2Q6lP!*q4Zj7{x&&4O!!A>ZY0|9n&@2NSc0-Chcmnzz5px z2mD|Ro87vNwCOIUFS;8VT1|zDscn>QYSk7?Bd#C{3^U-o3v>6w%(-2x<&-c}Iy$PPuZ&>GOo!O0I*uw2CF$sg$eKD0Et5bqzx^#P~vGrrPImMAGTB z3ww4p$ng)CRY)F_5-FpIr8QR9FtQAHX%(BQ#w+P==;LIYTqmc1)7v*qRRD!8Ac-w7 zmhfDfLCfVGB`#s!Qq_2+-4ZSC(kfQ+Ja=goE2khLO1c`Mp-Am_msZ8(GIx6WCRR?l za$OC5o^boZo}CS+w{Mc=A1vl1_0Fe_eu?*r~)W70)1R5|8QA_ zWDS+-YUIu#+s)PcDia3g@pV#}5oU~Rw_H0b`RdwOUBleG(;EZ8CeGE6V@KMXS$Aob z65NdVB@JZ~=gb8+Q1_xBrB8a@cx(EOmyETJxmsZ7y#oeV$Eu&#O&)SGm}9iwyt}iAG?zW*|2$0Ds62 z+L~P96WtJVqN$SXzc~=v3V^wJr+1P7ef}}lpf@l8Fdle-)}Bt$S}ev-T%T0)S$A1I z8F&#RFfCW=FYMXb&=n|Xm`lFgfUB{(hH=1K`OO{A7fSd^8F80Zu?D>XCcP24X#wpmN@c)EXrsH3u};d|L7JzL5W?HOukV^`Axgl1+=$0?WjG?9Lmh z6a$C}Z3NPs)zm&BYFmMrEF}KP4Qs!oyJ#Z379gy_c6i~_<)Y~)O$PuRF3aN1ee=o% zE>q<7Gh63J(@%QVU0MJDq~-zBoOKOF!?0U3uy>V<1pq^uo;yY>h43Q}qrCGL5}!HI zRLLHw?GPG)mocFMUVC~YJFam8K+;1gX#g_$l;)c|o-ZgU0A&w8DWTs=Qau#u{&u1A zWep(pRDbR1jjY9Jh7XRE&5_gu@)qIqkEw3@LLo{>-0!jGiy1%%$S*7mPgpS?HQ?!7 z9lVZW95k3%AYLPmUOL49z@hTzSpclZ=fTRtVg$oM_(Or2l$#UMoO2x6$Z=#pwtO+= z1Bn(OW`HloiaLfStZ>?$2!?|IfGo{8Mq=qO8_gK<4nxbtjXTN4kmJbaZc5GvfYEU; zo5-xHnwTgQk5A-r*8X zz-%;gX&#@41&~q^birvMd?Jqv|Anl03p&<2D9UGOgs1%X%6tHT7q8fPnGj}{QUU<5Qc4gOUaaQPh2NOo3jp|Py!esuUoE-|062DQ zi75YtEImFLiOTYM8993C6tgYkR;9=1LI2P|{AT(*1oe5y(u`vuY~U+DZ3~dL1@D#l zF#5oYA@6WfrU}^N^Wf;EQ;gH@)QT0J@Q+?P#n61S(aaS*7!LB4uU!FXS72j$@4WM0 zExHTn*8%!yr3LkQ0Qe(B=0p>i6HNes$it}U z=#c_zfcUhqlmg`VL)S-2BLJ^+< z;zQ;qjA7pBR>}zE6-(?HU^Q8|8;8On$-b7%v6FXd;l7*_Xuj|nFyDOPGr(%H;H4$$ zc=ztOV!n=Skmb06un{fS&N5`7VSU?;PR|1`CfOKoS~b(=z>8PnH_Wuf2Wg>b7$&_D zp=cP9XhaIk0>H|`VhygH1{)0=iaO~$nReT=ka9IT#(B;DC z9|Hh9VGLs+Y=qdHHod~*^N(R=VX@}so!*$>TozNKZPsqhVB|)p4`$YPB zA`6B8*7ctO#7DLJzy6*({`%@7d@vHN1Q1ip7oCni-dE6(t@C4e!pb{FH%;MMY0I^< zOk;HogT!(qeJt`Y{zlN+)5$be*D$HxMBJrSY~*2-H~YBI_&0w4GIx)+f4DWP{OS8L zF3O@T%AzdFqAbdyJeH!?4N!;CT`R7Z?k@n`;hug~0Hk5^3`Cg{wn(}Ky z(J)?LUBpv59hs@b7**QNilzrSNVmj;@6>$DVVivzANQLjl`a;cDKv_b_yoxsF`NGJ z)lM&VpS#G=Aw;R<`kp_sfA9B7^2Nerg+_6gRg9AYQ@uy~6;eJO+Jb6Q6qZ_9yZAFnU*W{A?3#?2n6?U-*qsr}^tUmN@l zbInhgIns|U%`F4~&Sz50KOO*_b|*uemxv37uwar35ctq1yboM6;lHx1f2)#@DhcyQ z{!ee;#A>xVe9x3jyZmzcm3#{l`o|Ne)68@S=O0hbN%+U}jA=DlU^Q8ow(3gubB_)H z>g6&b#;?8JkA`PTFd2*C-Mize`O7Sm%)5gt&L1jYt2#cQ_U7`s&vrQKx+hm47!G1< z#x0y5%T-Z;IkcIYj0+< zfcyhk$R|#&FD*$&>nJ~LR*s*g8Ani`hk_iCS{lpI`I+@?pUSrS+MCPk4wWyjbK0Hg zo^)cfr5~^WpL=o>1LO*y%0J!^{SE*S(La^sA5Sv7+0qXH=n53b z`scF;YCCGL_q){auiv`_09cb(&f}Y-_c(8EA`W=b>x+r?oCoufE2U{d9uFBVBC#h+>c01&{MymGA0)PuDy?(&2eSvuQnWY&+K$pw$S7++cB*L<@fo=IDR5NKoMV5(PIAb+w8+=8?tfpI{Ujb>&VdDWgEl|-IJPn^L+fn~cI5|gX3)%)f3D&a zWa9&fgrZ@z4cSobj9WZ0Laa0D;`c>0+z0c>x&qx&tF)b4&Stwb zD`&`WxfcJn=s$1iU`UH39jEtc{*m@(wz0ZKGn4YGl2qSyo=cg|2U8cSOnbTUQOis} c8^2KG|5ZtWqpEwEUjP6A07*qoM6N<$g4nASYybcN diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano05.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano05.png index d16546ebe376e7787f7d49257b79de84996003bf..58bc247c0e0d6559e65e247d21376943e6ffe125 100644 GIT binary patch delta 608 zcmV-m0-yb|2KWS!BYyx1a7bBm000ie000ie0hKEb8vpCW04m1Q%8V4`5=j@)!R2r?zUgcGm$vh&$ai zRj<3NyKAZvXk&e6QvOh1-{Uo}-337Kt-_s8h79G)DN_kXu~#twZDZB^U5!}4_h zSbqJKi3btRfC`QP0TBcN2!P+(&UZ2j0q9&IqJHhO@7d=x0HzM3+1nqKRrLBYn$AuH z;sP)@baQpR5&)KtzUq3M1E6&6DV-6*onKxwZ5Z)9ADsZ+_R|E@8DWNNo9-BnTz%V} zP+5bL5J$x1vwzQBvJjPa;6Fx%gt7FhWdg$|eJez31~{c$Q##gt9tE}QtOG#a;P2t~ zu7RLta^U#vw6&%>+GuSl?N>leRzRp40FY^LJzhb~Z1#?1J8}lMKH!@W+>)&s;1;se zWS=vNeAsQ8x(oW${{-Nc(dR{#^-);^BpQ;)zK}^k2!A&7e1zLjAt0{~$cPZ04-3@* z;AFxH1p`(=>X7O>AyxJg(sRK*iWMT`+=6A#iO$Q22E*aOTnG)uHSZD=mj8K_4Wb~6(rOm2UiOqlYAQ3J_E!H&Sa&3O~wX*opxPWOh9^*+4=www6!;$ z`o%klMOlc-2G?NNI#F5feT;av-uHz{Z uMHGF&YH?y`X$qkCKvte@^uE{5Bl!pAiMXHOR6-O00000s1EgnK<#2f^D{h%{l1wzunkjOTx1{_g*{$8NT~UaMDabDKdo*_eL}cP3 zB-_Px76Gz|^PsUuH24#5j~C#jto2PY=ONE71GNf~%GPNC#S&v@7jOm<=9Zek+Et5^ z5vweOj9;j2vwwQAOr|Q=pWhO7+uU2H4;(GnxV>l~tIzfxn0F3%DJvKv5j3kr&N1K| z11+-AS+bE?Wc&V;o0c6)oU07-2V7J0Ny|1=PZ z*O=E%5tBX^kP{7X-N|XeI=R6H9Dz_hGntMZV>b13*4)0GK=ri#IZkCtga*_Ma2o zy2D%R%WuB<>c|L@$fSZ$^@6D%cAjyGnm!RB);SDtPWgn4LOF<<)#({7lYeWvnp_1<=XC%8tEa}4T^Rwn;A9B$ zxc|(;wVUeEJo}Su4ybajvd2LwVEsO0^_}FSRGtTbl=B`xn7)DAa?A+Q5Jl`^WNtAQ z9h-6FH--kTy9S65Tq^?uD+2@G5cuxe=>AgglXw`_DnxFddn9|JdZ)^Ttp2rV8ktg#+`r(DF=}czQGz%dF8V24^ z*R8yTM+hO{ex=2+1xSly3y>CvNr3zP{+90FZnsmK3?>1vp(w4 zSqA{z0-@3C0oquc>MT4VeZWX;0W5{U>tdt@fLL7e#JwPm^`Wal3@~Vvl_rIG2vDbE z^}rEe7T`8)szh{ z0Kg)Gc6AtD0Bi4S%Y_%9b_=fd`=JG}WSRK)OB`7NJkne(93D&T5=UqY7=h3Nv}Aj= z9H9jm0Z{-*cj1mJZZ-3)4?n8HryUJP4mgju20|r{KLWs)!E9({ag$M75f2WJ#g&Fb zv;baE%Dd+dC}=raP_jTRL;*OVRPoXQ1r0|8m@S}$-WK2mvjvoPXM0-!-x{;>{1E`i zz=PA6TJqqz-B~S14pgw#Ss=$DS^!qGC5&z5z#-GpyBZFceSsOX!H69Rro|Cj04c!o z=Ew^0pGW0JA+!ZZ5vDgsXaPoG3y>B^XaVT)JIfCyH044I0I<#?+H&Cq=#4EvS{y|I zdT&p+z~hisQGgtIsRF&1$sYWB2(%QQIT3+*N*jth=Qwo6a$Tm$afCsh! zX>n`;tOdOeC}^M2izD>j;D}=~dkCb(u?0wrV+)WL#}*(hj%fw(dYfHSN=$=ZVRFmH zDaDi)K#$@BEXVN?=GW-d{y51S{8^UQZ2^i&QToDEt~$@n@nj`^@oFn*N*s83gW;a# zc&%w`jQ2K<$DS6z4_@bf!BPX$5Re)=()^{ff7UaFQ#wJ(*;zM7z5xc%<#XPDwcG#z N002ovPDHLkV1nM|rmp}1 literal 3022 zcmZWrc{tSD8~+ZK2xG}sn6acn*+SXA$d<|$*K(^-WGUBli9us#k~KnIbZbnbv}qMx zvd!3u7~$H6EMrWv&6r|_S$^X__j&Fgzdz3Vp3l3S=Y7v}&gYygFArB4sXbBv0LYwh zbMg`C;H|N9he*!+i8=}Zy9!S@Irt_NFA)$C>K$s0FpKNdADG$s@LAHo9wl$ob1gZA?y8ZRs5mE;=!Ud}hoQS=!Uc99yN=YV@^BM5}48c{;_vJZw-E zQ%@*Sllcc6Q6-gn=xNuFKXg4E#TouG42jPJ3<<71BUTP(mzNR;nbX5#>=#YUz3<~v z!j6chb1ldZ4DZ|1!y_J|SIp&YaDcj8C(|ybGtILsf^MvWR zjB@%9C3{u7$@l^5mIc`h-SYYbz=ec3y8mbz7uXjQ=`3`Igo zTr+#)qvRhtRp$y6Ju{groFI!E$4hAm5%V-k(aVo-^ASdVtf+o8O9MVCS!f08dq6`J zd~l0*OhK1T+=jfcv-(`)ec=2JG*(Xed9RpdY)m+^LV8Tw3hr* z$|vF>KbckO{8@7Bb*0?oXL2g!=v7MG$|1FWbb!UG(EpzqQP*khQPI-!QTAOrM!LE z#u-sd9lK{j!b${FXtV516wv-G$35SJNrQm_xTwQ&px1s5%kyEU#2i)6E#}cRsIeh$ zMvpXcE?ok}jgu1_K}V2~fFa3gD&)+^$M3GcmfEM{j+|&_u0kg}{G;EdPY-WLFFSrZ zbnop&&UcQj4Zl4|Rqz@QhBkM>b@ei0g;DXD$Hq*F!gB+f zxkRf}d$X?Hb{1*BrH2g$nTgJ0jn2T#@g~z_HUhlCt3IkWcD;6%&#MvNd8D+RxuAU9 zY|k4t-&oeB@-G%3^1iy})@GDX=wSC!XOpLwl0{)n%~;^_MV`he_FO#TQOm7xv>FlUBOktUix z=RP$g#y5UaY@MsKo}JCAS0P_mT>y#$y)G&EkB}!L##@D)n*(1j#d@@{3!wIzPNS}n zik4R82f@?vPL~v{UB1=~ti*C(&m?xKFw>~=g(nsdY;N3J`Tbv$234MKRuKIxjvubN zg1vj{jo>HZ@py8>WASEvf`0M(G1P8ms@i=+A?5VraU;zGM_*RDKbK-8YvPc%PZbHf zU|BI_?2(lhz5hhlz$V!#31?1K2k6*_W2+*?MpvTdfpY_T{s=o=^Plw7CKDHLUy~*B zJ&@Un$~=L6FzH@HwTo2-1ruJ!NK!VQIVSV8`mBY7@!0QUi4SMWLSxsQ`;x50`l>%k z1^yC1qV}?PQ)mN8Nf|kfsA#rzf8I(J+op}p`JhRsOnh5$TXs*l^au;R>4&lC$YAT@ zb>iiK;K_LJvw@A_g|H&*Y*xz03LHfrG!&+_a7i)C8dK+ky&iR~Z{)gZc6TFX5?E!c zexgB}l?al|ZahzsB=5@3HVRUaP7#UBR4U{t5-JrmuFeY< z1$W@+uTgF*`L}Dxyn$ke(G$sq&o!-oV5D=ld+Z`d|W$YM`bW@Q83dBi+wMc{3H zPeadWV@dF@@JkT|uUN&X)5_T#w7i03CQV6+|Dh&&B0a+_(Lxr-1Ty6VshCJl{xo2)8c!A7wlM!W}o zhizTQci8Y~gv!i+i1R*7k&dvw>4Xl4ZZDSK_eBsu6Q9$IaS*lXVAYg|<%>ymbvRgQ zWvx}RAU?aEZWyNbKZ@fm5mC*Yj_Pd!uE_TOpmd2ECl+kHz=2O0M1r@W5mjMc_gQ(2 z+*4H0E_@;;dUP?LdMDcJ%R0W=MJ^(pE(Thp{VJlat5|C3^~~S+?|BE;Tvnf-`GCe z_B?tuc0sa#aet>xqyYZ zp2kZkox64`^wI9lO&c7R^b}qs97GlC5TssRtNP4O1W0$+PPR!Tj9R~XeoVkxM3qlh zq$xDxFV?p0nO7$bqe8=NZ(b(*qH)w-R-IF60Aaa$<%r}h+lb;i6K5JvuF}GK z>rp?ObeO@+BXgo;58L6zqkwu2)k9mr^=-oPB~z}1=iekJ>2N{TCuiRsg}tjCWR8`x&kxPq^ zy^s5nEumWkYFP+5`>|-#@wvr2GJxf@S zu3n1eR_=jrVlW}{-FF_EZMNm4drq}UNdMrWWf5@#z;)5FpR2eLen8v~BuAyy0@wtQBYyx1a7bBm000ie000ie0hKEb8vpY_Sr^te*@iX^EPp=lAksCu*6W%q0f16+Mkj{rU#(>gTT!vuE6GeG;DP-3j5m=F7L8gw7X$ysVs zL_iBo^QtP?qgRX3s#Q#YY0yK*%5I6Jg6nhaZs025Nl9ncCbrv>bVLb&DQ-eu|EBsn zX5;PNB{@J6xM*r}JZNnOj5U0@g5t9a?U6b7~7SMUDcM&KtfC-4SCqPP$D2td>T O0000W3wlE0DQs@jZy_XeA$>1i*e)UGA`?3K$7{9ns{#i3%*sQmm~RkL=wE?1{}QyH|)@QVbv@#h&;f zAu?Da)~X16K#1y+MoS(hV4_nuUroqfgSRO|N?3n9udbqnuo8+0NP=W2@!JG?!F>fs zcYoy9wFmYFk}y3)hLX1ik{VwfNLqeggr;IuU8kYOo>%JsF&-67k8Zdi%;x|A002ov JPDHLkV1m$uiPHc8 diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano06_on.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano06_on.png index a8c64f6d44b64fdd9c6f6c8cfbf0bc7214a63f0d..3f92c481ede6401789d48e3b0932310b8308aec4 100644 GIT binary patch literal 976 zcmeAS@N?(olHy`uVBq!ia0vp^4nUm1!3HGP9xZtRq&N#aB8wRq_>O=u<5X=vX$A)7 zCQlc~kcv5PW1{pINEND|MdLF_c?Jtxb_BE z?KiL#W5mR(SmvC6e*9(0ug(=Jo7Nl`w)elVdD=49sSPXG+^4H@z7mz&=qbG8Zr&;r z-Zl=0Yad@G*0Ho7ez#x5S{12Wbn#bf(@#}AvP(X#>k<*+%#CC8lXl$=L+}&t< z&i6p{xe080oC}<$aOPcNQE9xq-0^ghTG7K`rmJy6BA0EN6DKq1b+{`0%QcbIWwcFp zoXn8(ql01QEP>W_oE4rG-{YKSFVAK&U^r#J$noaaa-e~gF7Nj*`seG{JTZdhz!P+Q zLxnN_BS)>&sl|r*ma~-`<}-i#@?o=MZt{vEkERm7h-;clJu6jf_OMk{hs}0(ZMbsz z(#Mk5zXfCT#5adaea={*)WF@fe1qwG?OjX1|E}$LFsb)@Ow1qKXZCXa{PW^ZB^xnn zE%|b`y7tqoT^3bR2kvKEA2emV^S(Uvme>QOh8fSaroa8aou_45{@u+C@>8}IFa$Nv zX3+Z(*6O~3bHXyS%#gl0Oh0`ZHut+-{viEl+VkA4uD%YI&mXVwXO=(9Ai2;ewNh7T zN%`K|rkgBT!EtYIRIyxJ8Bis@Ph{QKqG@bXzGj&yf2m0y0U#4uOr=~mPCM_u_<9QV%Fo9@2iO{S94?;SC(MYm13sM@f) z%zp#V<_&STH^yCmDfGbhN6#mr^!t(lGaHUy7pn}K)2YRHhq;?wVV<@1i>0m=No;QG zZ)codDP*u}-(ueWqNTk3jQ9JNabCzbVqF`1d1+cmZIkQb6?to>pOd#$>+m;m&T7BH zwv{tt-G<6zJz;l4_HX%h`1y%d1v4F9tFGLn{;&N!lVI?o)SuG3gua-}GjH(t6QU!W zvG>X19p+x$(-T|G1x`=$U(0x_Ak=$C7Qabb%Cw6r4eVOkH}#p9xrI&n(jN5TSg!eQLW1MhEeyIfSdUT fVWIYgE%DS3j3^P6 zze^lx7{|XJCxJjnF#(xPP(g{HSdGPzDj5lXf(R669xHu>u*IL zrfIfxU2o~S-ZD)yw%&b^U$Eb(wOV-nDeiy$$ys+vKhqIF*Y!{9JRiIdRQr_q>&K_S^fE?&{~G{MJ?{sOPhl$Z z*IZNoH8)TjFJ@(b|t3s9fx zgUNCD;lcAC6vwcA25g@J2gNbv{-c#S?ApMt4IHh^DffTgSjGEq!255&=Z#fvKl3?2 z(oT4Nzp6hz>bD2)_talK@9(XDV>Pv(xdAkr&CqM_WUSqK(Iolnfd<$MKZeKKu2TA){u2^L^H+(Lw~S~&URetT^X073<*%letSfaoDb_92h_-TlFHAYMOn11J;< z0OBVf!5soFDpsOTipVd=&-FFXJM=|gCmjl9Kz?z4?nwDU5C%O+LzZ^eP1F$TMX>2*#H;ID$^8BeT2#KQlf)Mhj_j6wm(rr7@kYA3U z>#AVOvY_ia7?w%7Dwh0e{RBY}1VIo4K@bE%5X3cr@&R)0r+fhNGvUumN4e5|etfwS zou@8_fEO(D^WFUr=D$Mu0HXcO!@*i<2Hs$!Hy9b4pTEBz`W<1zp-aCx4tKb-Yd*mK zx-%Rq#D4Yi2}Jr+ApZl7?JH;oMxCu<$guf#y zxn(>=;RaB+0skM7C%>rApDqf`Io$aGUw1Zf@B=vb0es!rR6alcd;J}nKY`{?;CuaD z?);)Y|8)5PZr{_h`SF1X5xMjW`1~`S4?zC(e#!?RKNGQ_!cbu*UH}qa2ubut9|{Xm z9Ulq`QH+nSq{|0z0}F!%AdfuE&%X}-bol^*jGR2q&%X}-RQUi&897Sl$0uauWNm(a zul?!r0jl96jLP}(My&<789Daao}X2y#Q*peaB}Fxv%>8PhsR-VEvoSg%m?6V0G=#3 z94TvJWIMFd40PA8bvZ*8jWIF^ZEFz?cP7r{{<@#nql9t=raRyTxS#*@GLUdC)(t8J zbC8tC)h4A&4uNy8j>{OJe1Hu4gXdn+Wt0z)2Y)qwzQcP2qI`gy`zaqF=YGluAU{D6 z1VIo4K@bE%5CoA2C?6mLewk1{Kt}ws;2sW+4oAwoA}H^EnWP#Hz7F%_v*4FWs(gUZ z{p%y!i6+TE`r?iAd}XdD{)wFr&hz4!biXXPuL%@&|9W0VU%bJr2Fz;k8-hwEc0OQX z09Y7+-w?70T@;#gxbp!--M^mKf3z}(T^rc7fuof<<^F@>7`D%V?K9w@IHr7xxG2)) z0|>Z(eJa1(_xH^2_WfD?=L3`vkQu)$C?6mrep#@VDtYI+izmA%@5OtRB%=mW9IGChEthp=_QgURIAW zG6+lHepnm-!a6wwo;~Wgoqujnt^kk6f%zd}`yh+U*8xg1FcR``jFCa-rV?&{DEfPN z=!O;LN<0t8&CLn^j_ey&M3HsF3Yjo>0k&=XUvWBRh0w8e`q{stkC;}61BFAU1eaS^AQbvk48|`|=vtDm@ z%Rgf)U^4~m?;TGuetm!JSo5_BAW>G>U;-HU;`*|DzQ4|X8-F*Gg*AtxgV}g=a#o%n zpVC4?0U!tQZ_v^Q?Vf2QqACF7%nUd^AI%-`fHf40z2l}-MYsYaxeS^G#YQ4lx`t6v zW?%~7xg!e;EI>MhIX?2ZfUDb^^7hiq3)6DJbpV!Y+YyWa8408)&L8gXO9mYQ%pQ;q zAfPNlkdp-K^?$Ww43$*J1=9hNV1#{A1Ov+q;S?Nct?tCKj;AVskO3J$5>O0&({;dg zbVoas5+Gp(uzG?=p+sr_UwI+$Xx-l@OTq+abd3A z;d;&)hojX^I|6V`_?mf}{@UwgAww1)`+&8tS0mE**k=k@E4a*lR{&j*Z@jk-qxU9A z(%z2|HsBTW8b}5_s->P|DZ+CgLPQ=4pa@x%S-}25{*qBd8`KrTg3M&yTYwhg72VqZ kmU~3Y5U(U)NNffC0LNTZcvY+@IRF3v07*qoM6N<$f_{3f<80|;vgzc;4NmIWf(?ddx~xLZ!EC={{Q{9UmpC&KSsfIV-N)D z@%MN0}klSgFqbG4p2}k4L1GoK7d!>$OpAYX@}ZugL55IzkAmc*b`i3`2mI zwgc4b_1pm)I63eNn%vd_V*!iBqM%(k9*>_!ZU1(=H9mhU0q}mqHQB4t)_!m(M7>^5 z0n}=>ya?&c0e`FPodi4!(Xb`fa4JLqhr@x&M%hxhV4ole!`f3`4I-S77mfbaWwp2u>z7O?IiVfa!Fq{&c;0ck~F~_jOkc7M-!NfHX}>l7uYF@H~$=j`KPI&}=pd!w}E& zzI5nE0)U*n(P%In4nNFAQIxN-fw2Jn#L_e+%QBKAq0wjnO700000NkvXXu0mjfe)TZD diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano07_on.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano07_on.png index 4853e41b9964f9171696589d2eb0ff8d52546f7c..eb92ea34a9825a665b9315e53931396943c4a8ca 100644 GIT binary patch literal 700 zcmeAS@N?(olHy`uVBq!ia0vp^4nUm1!3HGP9xZtRq&N#aB8wRq_>O=u<5X=vX$A(S zJWm(Lkcv5PXZucKQsik(zB=c4>%0~I%fv6WiWi+x3f}15#^O<)cyIg1<<89g4KEJM zd-1U>c;di-LN#1!J^l1k%(SNlizW$vui9s^M?yAQ}d4P`|tC=7KFWgtz>k(V9nHZrVdhzk9It&vD<&ObZ^{$tFuWFn+wmHbU%1oRz1&8 zU8{H99(_rLrmHW68l+vN56(?rl5F#;O6mpA#0c)QOa-g9E{pY_`)SXX4X?@~B{s3; zG%nZke`E5yL1Wi9#;|Gmci3yV1sWzXGiq33r7m-9*l9YAbu&Yt@&@zEDGkTp-##OK zXVUSy^}d-Yc2Hv#(+g$I?I^NHe| z_fj8T-V;ncD;e4dVOnT~-d-_gp#jJ?pIRjBC{oR)zmBt$f!L z%F(&?NHSLh^Wt+aB0kRfbL+{J8`}+f8D`HHI?aR`BMe^WOx|rcF8|@kEY=71T5d<8 zZl0C=Rd$BSrT4%+1!gbtBO;>l_pDbX&DgZ~O41~+pZ9WB-CeHX@LucQ?GJ&MIo=ht zu4I)k^j#*Fz!J=DkTiEjRD+;H!zI>jGorsUG~MH_u>E)UJEQWsA1?FXOBTxeFlHxQ z`TlWl;as8aj;))1^DE6WO}rxM$Xh4C$;1>;q`;u6zL#PD{iqxh0j7f@z~so_>FVdQ I&MBb@008+jAOHXW literal 2494 zcmZuzdpy(o8~?h*x|qwH+~#tWONS0eBDdKo44oJ?my)T}gc38v*pkaZNN%YZIx6>5 zB4slXl3QYnBsm*HjbY2iY`=N^UccAxkKga}dVN06>v`VK^LgH{=kxl!o+kt8fl%0` zxeEXQ1vghGZ;2#Ib`VHTa?;}C-2h-`s+-gAr{W&4O9>%bER9|&xLRXS^Luis-2_Cc zBo8jrqi!TSod4(Dt~t4*`GbSHm9pWTmwM)*?($9fJ5(~sBCi3ERZ0cn-LnGWZ;ftN z@?k9?6f)(+&7U%5U9t@f(q<9gRJ_O8ioBPBLq?mF(M@-og)I^G-P8iCaq0RO7G<61 z;0YX%tZG}-%~3NKedR&^GSZmIKYa)7(9Sk<)>p1?YtsU553?$2epwaR`}q1QXLXw& zK5W2safP8pKcc?Y*46^$5eW$iQg8?kvY+HgxSyYD4QT36vzlwWdOI5gFT?Cu7vPa7+LD0*H4{IFA^Mrh0Y&HJ0X&Sf zbVGl?;5AnG2?H8D@NQqQRrmqn8%E?3gT%~YOlATT;Xdj9SDaHF z`_y`0u&dJ*b?HFIH{N2F67xEc5=WJI*#27+Xw9^lwP|auCVx#~a z`#2&Vh8|J!Ti(W=YuhD(06(-?lSI;}hmyz+Dj6YNU0wGg(GHyI7a9VOgmQ=g`$-PQ zZZf&lsG+X@9_V1Kz`a!e@bv5&mq|-YLmI2z?w`6XW&di#b3=PI$ z9?Jo2Hk%V?ZwBq3jcO%`VL(u1q}N+WHFJ$+7ixU?jj5Moz-sr(6$->PG$I1w>#HUw zpQWh15Utr4tdf1F2Z4kN&tWcDa3hD}p&HPq7c1-*=l z7v54*5k2nh>Jo?u|aPRYl^0LW?Ma2*yojfrEWPLAHe>)M6ckKT#wQRleY+h zB{eBxBg9ghyV=KIZXhg7-y*b$*~Z9d=_0G~_yc3VI8NQI|1>#SYlg@~HVZB>&a4mw zJ-IBawzRVv4|68?KEg6B-Oc*;Gw#n|z|8^cJE_A_YyKB?*8KTZWsrgMF+i;_`jCBo zpX4uDP{={Pw7HYZm>J!1flPxJz;9n~;uJ0@3hO==@}w3Yn0=EOvq974pJ3bT6g!^u z$5KImuR11dm?Bq?f^pl-OsMAEzyjW@?Q9{iE9t{nZQ|aT@0{$~l;s+2(EWZ!Z!;@4vBl=_OKTkq}XKw-bAzNz{PX(lo0%ejQA4%!m`>k71x?VVVs@C z5PR^X!^0Vqr>fy)iy8_Mm;>X@JgKs?uO6+D&c5NseyPIHsqoEz6ZQ>vRXAMEd3n)e%Tj=3bUPGhfKE) zFY%!1Cz@VAEKA$y%SG_M$($-gvxWT7kMd6p+8G-FZ78=fCXsl0rr1}v|Zc(&caClkon!<>@TCO5*ct*vc@PM7->2>MPEcAHFlNIN4ghoe*jv%{Bm%k}Y3vWDyT zi*Z-F2S~Prs|MUP(NE>`#)FBk^~~C%>{Tm=^IVx`d%de! zidp&nyKijepP7A}53wis8FNkl@}9MNZ@m}nc#l-NBeQ2Z)6;_!k`zOin2P(Y)3A2D zo%1E-0qr4I766|Mu;WP^p9Ts|m`7&ch7Mq62>I=?xzNW@|Loa1-pi=-3Il1`T9 zq<_xDu@obFt&^o8^?(zmFMT&5vTBVnNNN3m$C@?7Bm!T~=Kx~ik3wa-kUNZ;26bRS zdd@J))BA46)I2zKf+gaWyy&tbJe*X6bBS*@`uj9Yz9D`%g=B~T#V))xH*mVJ9 zo)+0AA#E;eULVMl6r#4+&`4_DlV2qg$1iSOF+#Y+9hBef={)z(C?x3sj3;Wz-?xuk zbTd0likpJY^rTE5?0=n8oZP4E8XQ+{ar`wCwBN!WSyJ^i^dsV{!6OW@`-QZW=B~G` zK7xg4@>7&ooQAHk=AATYi-w;_Io9htZj!Sjz^wZ;#I~;cciYSW=?B&dPc-&qkD}|#Z*aqEnrkAtz>UHtzGYr9IyE%{c@=tCE-)wsUxH`V>@oe8V?)Tg4(*n=Kqf__(;_%$PUw?P^i!TMhz^mh>``vCg zAvl2m1lP^{_ccIf0U-GGg+JM!^<4-Ue}{LsTXTVLPA=_l_u`mIeOm>9r$+GS$A5Oa zeF!JbxGWS1K&)&z06FiGvK){s061Zj`*vfxLE%KbeghDw38V!n%UKctP7g=WSVCX2 z!RMeg+gayR0)IfMeTp@}YOl#yzP5D+q3kH4W;5+4LK!pDcs3I^e}*1mS|e3k-qqI}|TKBvO~V zy0&*OAf+^Afor9lR{@~dU}L?Ke1|86N)1GFmNl>rSt$Qxq4hqic|}j zhtafE0e~^5dV12Gl4E=eA6;W1mYPzr7pNMB4b2xKdjyO{=UDShITgfrdONBBkg~D0 zdLy+OoXmtaJr?MMA%fsOvkc_=0E44J!4wEVg9!#&`*b-b$WoC3oSwZr#R>xg*zc=f zp;LypJzYZ|2Vmuj9Lr7 zV=!7fcxo5S%>)4euMczYr()&s!Nxsdmg3F(I@B%*t02fU?=9&mt-jPCKk zu$XEJ5^2R+T7R7d;QBI5*A!Szw$TjBL&gEWNj*$41)1%bm3$l~o9lr`W;z_73Y>gD zM^VS%!w+{uO93cT$ZGv;ET@|ssA2-W?%ySy?+O2=^|HWQP=5%%4e5q02uz| zHywdN^#Jh|!?$W>HO114TF_&Id0?>jEnTFVmwEo=+6VsdQ44_5Zj9oui;)HlOkjVn z<0@_GBBo(qJcDirc(Y!ov>T&QKBZo&j@>h3ThQP8mM+q)h%_rv*4|#A8NEEm@!4Dy zLoZM-jel0|#MlZr>K*Wi)Fr-Rpc%eT05-SEK`?_8a8_T0eYae2hurJ; z=VWtHPi1aRz)cXl03Ps0QF6g0)pW1rX<{e=M{&I%cHPo1B>%eL4NaOFFc1O20}k-* ztLg)nRFk#!3-`B^J4yJ=l1M9-G&>*YKuI-;uh`3=-xJ1pg_>3lWW=G(s~l@XldaAJ q_c`R=!Nu$Jy6#;o1MA~2q6#( zdH=NPw3r7-_(=N&gUbMT6dLb>fZuW8Cj;0TO~+csleWgA;W_tW`v6x95)$P*QIIq@7jE&X4p4 zK>E+NZanH2z#eL=glr&0C%$QBNEnVDkB3-O*Jy=oAArUmkH^=!)E`g12bQ}m3!Kkq zcG=bixEEs6*A~`(uGj#`XV5t)D5vR@vbsPIVbgp7bgoa6wyputqHRcB1BjWfcMTv$ z1^@<^0f3!qI~mK_p4%+|G@cA!f5ZW?I{;MkTVpBQ(T;VBSO9$c^LQ*hKM2(@f=Jyn zU;%I$*~-MI`z|0Y0|0}|0Knif08%&7&KW>)@&-fza7JJy#F-C>0MM@a9GMS*!DRqo zaAg6|OqNDTzwBe zxN?7?=;02yBzM6e6AFo!SQ3d{$<;2IvlH%jZxAC$iM8vpvj6}9 literal 1669 zcmV;027394P)ZY5tyH;Y?U*Kh>{(}5~{sOW< zU8A;ulSQ&JMnRE3(hy(_X0VH~-G%$cZ^kotX5Je=lgyDUVKbWZ?mPG0`{vEPfDa!& zeE9I;LkI$*2kgQcy>@PbL!lVm{N>j>t3UiKhJS9Ro?*2=$TEP;Mxyi8*8v=sLpUghP03I9 zV=NSwAd@eGpM*Ug_PZ7!m5z6oz762TewP@4j{NuEf~b{c0Kg~H*KTP{Q7A??7uUn9 zBKYaB!-Jn`1?;`(k)Q6zbmZ}S6KJX-tYj1%l)9e5JN`T6-`fs6;hBKl*l$e2t^`P> z?1^oHEd*iE%5I(qjg@xrahHkL}%^$9(lVNL^#^Q%Qrz3wiL}1czZt3OS~fZ ziTCri-|;r|*=`H}Tt@)_?Pd^C>>8!NFA<-d=-YacZ5L1Pcf-%q`&sNa8-t@2K&uY` zaI1;|yxRAu z9ZSw)>S5LHZEfSW^IPR0TRFfO`x=Ub)BPB}{Pe1i{KJ_B0HCsyK>6tza{@Mt{Z9B< z60lY5cWVDlC$_c(c(&Wplx`>znripp$(Zc{U~%ajm7N4?M{jUmIpwnZam)X7r_N>f z!(#uS?6>=-Zr}=NC=vi@`(65Im7D+qUG*zF3Dm2nT%Ua1 z@Utdfpy$1A?YGNsDL^V6?~KnT0RWe8yGw9k`Al1SIj*bmXg)KzqLk zeqgxvTdn|_902~$tD(-dfPE_Eti1_;McvW8WMkBvP`Ap9eM1YtsBb8CdTJg z0Q#7y9-p9EI&z$diTCs1-}|fPC=t_dyLj1e=Q+SMc%8f~nO@v!-O>IIg=N&MfO1HF zsiA${zc+S+_nqH|4<9~!I7guv%@&H$tlR(JY7~mm$K*r*W_Hc+NB0iH&4lt4;hpv9 zLGV4954fCKy6F!n6r+#lX6iqQ;4c)T*}0i|mIpU0T%97(lQ-=C0ORC|>`&kUrWHWy z}M9M^`D*e|j_U=;Xy!L|To;_0}}(jUMhiHq(}-~nO%0ZtOI zajPk^KY=%d^anWgezP45BY)rhM8WZr?A1s{boKG=>i}MDA6xD|crAa?{Jddn1<)Q# zSBa7O`0}obi;8SoAJ04Xv+|D`91V>2K7yM{v}4IxsLG)y-YEfSJb*vp(M}PP6cjYTT!x31H^^to8A3Ly*Y+ zgkfW3`U8yNLUez^u;6)rfYY6j7ySvNREA=N7Ch;R5?vq9n}1X%9{~OXZxzea$EK+9 P00000NkvXXu0mjfF{4Ky diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano09.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano09.png index 0911c00c7024c0c37c7414dd08afab842519153c..4478c41e5ec58fc59545d8e95e7a7bb65f4726ed 100644 GIT binary patch delta 817 zcmV-11J3;H2ge4GBYyx1a7bBm000ie000ie0hKEb8vpq>+xzLFCJ|faBm)G0xZAkb zdSrip`4CdKZC|rwppy{pz;7?FoNHZQ`(g&j44*Lgv3-fa@$PzkF)(!}OM*H8@+!X3 zpjRJmPT#+N^M51;3}iYY07cgBx!Hv@G8-V|8m|jya7u#E132s`(0Oj$iP^w2%c|s) zDIh~cfbVdurSJq@vM)%wdt3}UM`m?u#3KTXnh_x7S_;*h_|B-8T@Xh+GxD5mvI%|a zc746B*WM8IEj3?pOlPl_VKM0G2K#x*ycJ-XnD66pUxXWsqufPdcLLWZscl^nqT{-yf|HB$tRNJ=*<00000NkvXXu0mjfz8rR7 delta 983 zcmV;|11S8*2J8orBYy+4Nkl6~=bAR>{JmiZsZ;NIUj$RQk zEb8=h{N7Un_ioNu)*)Y{B`rNk!Tnoz#pCA{b3H7{6oh8$+mi@<{o6YCZqBf}zGK;+ zlm}X(aOni@-?}S8z6jqZ{PBLcRzgd9dwo{}X}b#U;@Q-dOntc+}}3HWvh7 zTdR=R+pxR|7k-SE7nj6)Z@vRSdMn4lVVQ!^*w!i*aDRZLst|R0YzbVb6B^*@tsDSF zrP|_S4R-3!O<;a}T72>0C#1JtaBx`W+Rzmo4#_s}vALkBKB+2g&+MuQ zmlv1BH-EpcVu07{8rO!dAcWxAQJHP6VgiS!#_)~|@>M*|q&z@URmkL1w(6maA~Xsv z6a3Nc&wsoh_=uHkoaCCquq1Qc(ckIF?g=a} zE(t?9z|&fVafb_s1O=gy$)~ve*2hfB14R7`tYqVc+H;xhEokg=S3NFvYGuY9E?iB+ zguBfHW0+m%JClIXXpC`6=@V3S-2^WPjqh^ngnSYFr{P}7#<3Z}&jhz60I<5ggLh<* z@PE`8o4I{nKLt7#!p@yf{R^a@{(@VQ$?DaU6lrDVM`v56;En`hfv~te@&VqFK?=1R zU#>mDDOm*=>YGRI&)>eo54%6o$4O%<3BBzk+?D`fDu43o$g-~rfyTdL9;|ILal_j} zqVWoX{eOXu1j18eW(zH&15iVd7j+)y5>S?0KiqvrRJp< zAyGe7Y&@-ry^WS)Grk!&q9ioi(6{S|&Ss~xtQ(*6*guV);J(YEZ9D(~002ovPDHLk FV1fZ-;T8Y@ diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano09_on.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano09_on.png index b5bb79d85278c1eec949f8bfdc4da0a973f01472..fc8da8f340636782155473d271d9d5bec10c60d2 100644 GIT binary patch delta 857 zcmV-f1E&1k9ODL%7k^*~1^@s6t;KZc00009a7bBm000ie000ie0hKEb8vp*1zvtftB z;s20-<2<|F?q#Td6Cy^8M|?6Ol+I5R$}=b2n*f}EjrO0c4;#V;ZMRzz>Le4C{NA%8>!IVPh-_X3}=Y`9P)z&9`ipw1ZrkWpgC6-$^DKt`zuObWo{4u*W7 z0`Od6X%vY7IsSkOP{VjMW~%^-ApkW5s%uN3x&WbuQp0$rx&W;;ltlu>22f()fsLsu z;D*5v{XY+E+!$gET<+uXpwsD;U3OEAphTH!dO@}Tet*CeMT!Xg^h?PWfL&g~JIYR*IoFTv(7hP+7um%$Wmd5ol#)Zxy<_ze#<3xa^ zi@PJhR1i0g_NuHZ(2{G*h6M;aWm!ub zwNffTil|lr?Jv;zJw~18SCU`uhQ6 je*l0X0Cmm~fI88JVs{Lo3Dkh8FaeA)Xb=(wWEU%{f)QXLS(3Fv((X#D%kG|Y-hS9UCwulH zA+gJs_W5?sdG|c~|3BCFc@O*_7eg#x{+M}*2)zE2?TeV|3zkB2u}=Rz+no^o@v&0= zn0bjPF)t0iEglsKh2~;m&8-O0A521Atp7-Pd`hfUOekyP(LKt()ecc& zUdqYFTe|zLwi^J9R?EB%1!kSybflqJf?l*PU1CSb|KdS%cG4m49)HTMF<~gJr zjA7R##IW)fnu|r5qvyZ2d0Xbz|>ml;`|qL{g$HT{frg`fOJn zYxBMvmXw$fFrauTT{IVfZp8yYZd_6X)$zj(bEQP|FTR~HIJ)_7pe{-J;l9La7E{%y6ds#R$w*Gj`-V$ zB4F?O?II9-VCGlBm&d12xuO_=HhGN3-p``8Cpfrqrw9ZenE6%kYva?XURw%4v+Uw* zSDkK8Fzr9Gcl~y;JbxhoEjN1@w2$HtGHvph4m`kh$whg5N>m9rxN)a=%JLlmt~IyQ z*YBcVNHohMI`9A&BqwX*)4~!ktwu-%-*U4DfMJ(AWQ`j0l`D$D-w;I`{I%wG031VO zA#1Yz`m5KLg1;dO1`pE+fy$y%9r!`}C|<9uv;NAQCwyHW@T>YS0H6CuLsnP{b>RE@ zU3fgQ&iYU1t)|TA^S+;)YXE%iA5NxBfTYL_yL_c(&^}7ati%x4SHV}VDAvLtTGsa} z5{{u!zz05cc2bDztKh5GmTF-T&iXJ#0#+70CVsj4Z)v&t4TJVk(o$y-7iS0?_mwM( zHS1rO!m~eBu@>ctgH^9^t@$2({Vp=oXJU*qgpK>^wWXT%FG$Xa?|dMO>|MWIe9(Le z6};Cgla@LIAq1U6qqNCm8t~FZbIHt@$$OVum~Twxy5yqOcH^O}e{kbY@lI1MDtM1a zCNq5|LMYsJxM-F~G~mn13NdBR=AS?LFUpK5T#%eJb=QZrK0H7YR1;oFW?=~Up<%ZU zylVAygHa2EXn=pp@*S*m7KVVgJI8h4RjX$kj9M5>1Rf>{fy$y%@nK5?EjN2;x%mxF zuNSvLAj=9v!*0#Gk-!72%z0wkLy#4gLh{XF zxWwsT4J%$n;?+f4aSV;&RAhSbGEbSo(6E~el9RKyj`Q?_8uoOY;=(y6*#;xIaWkf* zBO(EN*KZfIMpCsJ-{BdfATEhG12}|CtL+BgpZ7iH8Cd&kZ9_zXY<0prp%ba+Jb8Kbe!Vpywy|I6E*|_yS&*cN!;;_ zQV^F!QqVAA)+8I8>2`jBU0!->GXLWTpB$twHNpl*m2jP3u!InxHahA!%atH-D~bl* zA!Pou=L#j}rR4hE{Xq9+!i>PD1zv4*)Nz(GQ81>+8u)%8@o$}HvF27#R=%`S_u79PVnrnAXkZOphT^aL*h&()L0)!v}DvL_R_cOjrX2wh$ z9uM!-|B-luohBb_)G&H~)C<3JF2_ zRqF?jykA?ml_PCONW|9|4GAUUBsfq)JV3SlADu(G`;rjI{F%&O)qg?Zw=#8Wer&1M zl|Y#KS%7N!tM)Ozv8`b@0|LqZDc`jI+9T^&)ox{2gL)=XE_uI^#i{J%^=VtQ0kzW-O7O|8gf1~%nHTfGt!XhRiaA?y@;?$jC?K;O0Pwzwa z2UC%wn|~%w-2C$xEYFZYSA_l`Ch=%C=ZM~2d-?t8>i}GnhUgU%%j0KrRT`$g^Gr+= zqRC_ywpZTe!{bc=T=hEW5?(42(x~@3x!75&CB&$Qz@beqiHiIx-ugqM?tXpe8Gx9d z5gy(AGqEOr1HU<@*MG6I7J#gvEp$`~Fq?D4sXN1L$}hldNC>-TMhq*j$z&EMZaUdK z&w|MielnH(D83J9@6m5$j&^*+`hx0+q(oafzV6puAL=;9a|JbFNr?#oU9y|i)&&6E zQhXz=g)u%M4wO!5oRzD56RkGc_pww-{H(BRqeeh^aki+)ucE&53@&7@b@g!4JIK53 zA3hT6TP;~)P5uThcGfbC%zxkO;kf5MZ?_+gXnlwh0p-Qnq99|vR`(r3=16A;^_^#^ z$giSul8+T1R;-pRVace`>i&R``1h~wa@$Vc(miAsFlFe+jfgU@PV0M1z(dmhi7Z7fUg`L>Nuv`6HNP$oY=BU{9u7^ zELGQZi=I9wHsRIkyb2!Rq<4^K5;CJo!0BzfMb+az{S6JbvGqFW6CSP3tKb2Sd+t+{ zI43Lt)9M6O@O4eTFG2>KBOz;Y{Pp(vb>-l1h@uU?q2V?Fc6;dIYo0&nJX>Q0e?t@u z9;Oij<;B@L@I8G_+-^x{{f!0dSr(rPz{c8-0iXLvL#&o89e7)>1CLwMS$|8xb1Y9t z2Vm1-Ujug4>j?Y4DHGsPybL&fjQ8|8$w*BOaeWp1^XtmBFo>4*J&Kn>htK0|y$;gS zW`?-F3jWy|s}=^~tPfKpV9C5R@oCMkscUMZr_afp%oL19L)f@~eqFg{{gd9oiC+7_ zQdX2IE^hu;8ZWnD>vfQoJsYFZ5H{|gt+8s>Kkm67@tqH3krP{XiC;GS78ShPEiorE z1tAn#2c2A%hBe@;tqYiIN@Lf_Pgxe9%1Q6wLvMagZ`&yjjMb45C@cs5t9eCC1Ifi&G459(P z>hV=9&s!P-esFL^2VS*$o*_XCgNeYyBq2~HK^~X@ zkK$#|<1aDb9KkM2e2s@BB@X-07$?1h9BX}_iu@{mdiQr4_(Eg&Z*r$29>vRBWv^nl zyKu@9ow!Lgc=7SS=b3~|-n9Hk^Mq*0>215kzbySHt;RQxIk1Q%j6k38aIv$NmrHh1 zlQ@Tc#V=@{FjWalKwy`bl{Smd#+{TJXE8Hqn2{bg@djtQonK&=mywae=i_$D;!{Wt z8fIipqCZ^c7c3zJsEv*~&KgWo7?ouWyiIs{*v3F`sBKYg9KrZiSt7jXWo zE{gqe?TT2V2sDUV_kUM@+_X(zxBk2hh?NoUonZ}Ul82lM@LJrd!# zdtdPjod0q^nQ;lUN+a|M4|QJqqzMp$2q-Vk7Q0M;$6Qkyw(&7us69_&(D}S-{os-J z+odn_o7Q)jfv+)g2zknrV5=od{DXNr=A3l;$41$4_!E+X^sCkn9(nIy{Bz!H{WZz> z8lwRrMVtgjBmmGXe_=r1J$Zu8=Qq}V%;NdEx;1Z?zN{;OF!i$l&GPqcLHcE#{!NF^ zu&5+Yw`Tw1pX*8>gg*-iln??|TNh|8tP`KhjUi|kZeIWDh%VM&Z*Ae0GREThxf&T= z!t+2tBgv{&-_}}KJCdgVo-)p>cMs@d{q-9+Xp=`+RFbEW(Jey1T%SlZ|567Vs?5N^ zxSw%#YkRcgqmX2$K2s}#L-B@n{mD8)b+DmIG6u%{`qi!Np^jrA$xeNyR)j&t8`kwB ub%Z(sI)-C*RtijfI&8IM#aw?l0{$08%%qd^M~-g*0000ibp!@onpHGL*QvghRvphMctw2NrK=4toFOrG00e=w%fWdd!ugu0n8SVSB zI&Pytv^oL=Uni+yVB8&=-$yMPz{lWCe)fMR=;D21*od(x0Gn*xkwkK|m(#gnA=X;u z09k;=&>sZA5@S-?eFTSrdIsk=BqMUdFy-hs0)WXTsEAqYGCKz_S62Z+`+^4nXb_+q zWk%L0Um>%gZ3^P7Gfo{93Wge;RIl6`mzH! zg~+(f&H?Opbrh!%Q7O$)oDTI2l;?k0NVQ8g>7DbC4j>@e5O zij|M@#(zqvC$k(~!9hKDufLZsq$^|EPb~u!5jfSinH`)D(p!mEO|PRLms~p;Kr-ob z)vsTex#iTjU5;c7z^RkPVNY&kT`EyK#r)a}L5cMvhbX`-#12)!VIaA- zcC-QjWLY{o0e{*_U8<#1{R$xs^I9B~vMf<)cK`_W%u7qlPzuR}-Q&}&#A7J3l+l`6 zJ7{k2;(yBB2LLp;cTrQ{ppBbaJ5Xdv6H(=Gib}h~U`Sr6xTR-+rq&L+$EUe?=`t-n z1Npp$%Y8jVguE+W^#)jFLST5X4}jT;Q2^>2Z;%Xs(8d5Y^$iRU_Axs#O3m(A#d2)X zR^@OC)$Mw6$Z{{x!*l!IUx#G>vnQ7OTY6wKnM=Uu4;bcCsg$93#lJ5Bzmrcot>h&# zr$V>KD}4Td@VQ(~9YBNDoU7yn6ZE>XCin7lblyzD10B$N&HU07*qoM6N<$ Eg6+^`FaQ7m diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano10_on.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano10_on.png index 7d0b0d838940c1324d909214b983842ab298ec99..e5670a74d45cfe5fcd85e69f86406f685200b2a0 100644 GIT binary patch literal 661 zcmeAS@N?(olHy`uVBq!ia0vp^4nUm1!3HGP9xZtRq&N#aB8wRq_>O=u<5X=vX$A%+ zcTX3`kcv5P=lJ#=R^V~7y)0p1)61x^f&!b}`BD6>$7x{F5}r)2jLm2uI|E*8JN^r1mKPay20Tk^KH(F*SQ4! zmp$3>eUH*^6}96s7XJQQgP+{i>WLBF~=q?FUa~XLi|465M=BpHV15>u!3q z#$SO4Qy)3K|8niaRK|PfzxPl3ptvASw}3_F$F}44P3w6CIQLFpmTh6gy=nEKCk>__ zZmCDz3{7N8*tKv&%KC3ie(DV`gP1g08m>soEjHqx#3ay^en$1d-pNO-5{x+~9GrB0 zMc`)pg-2fgW_bONC0JfT+cmD3?d`u7nP+wfs(#N^-_Z(4WUja;K44$rjF6*2UngDvT9LWFx literal 2036 zcmV@C@kI;X5Df@HL82j+q6sx(8wsXZ7Yv$URE*Iqim*P^ z3kCy8jp>U)8v~ZsNR-s-N(~mZX&c3=jnUY+-Q8q&XES}+oXK3y?96N~Q=Iw3l5?B= zoju=tXU>_N53pp(k|j%KRRXQBV&4Idr0?AJOc?BkwhL6AnfVM2{@(i^@Ofbx0K8tW z?289pzSPj;s-1Pte z)>$e_6Ol5hSZ68h?s_0+4xhJ`S5w<68o-fX0{gV|*uA9G`12j;kF3lGAUSge0N|zjK-3r-B;^Cq!AxWn z?-2mN^rI(4`C*3P`GY&QB6(MB+C={OLzejEfJ*2UtzMqC)bSC?q! zvvrk7cq<(vc01T)hpe5{DAGX}=7G^?NO|?tc>pnj@Vm&`Yw*=8)$8r+wjd#APTYKA z1OOOeStM<%*2QP4T)OyDgAgMCKx8-w=Ew;}zM=v2dVp}iGn{+)y5ar-geBMc{jt6^ zs*t;e>H)&R72f62GV(WGKI<&yJwQ01(ln8@jQmyOPnZYLrX!j{L2a`#Sq0JfwCP7` z45cYbE1#@_2wynZwC94<7}6<-EJLMykpXC1>f!zYY6pGI$EoGgRgbUvxZ-|6Dn0zb z!Ad@zy4%I)Q+K8+A9O#O<#tVCuT~%pN z!w_%8Xzkdr)G77z?c2sSHeo?N4Dm)xx+$9|e&Ufa4+{(OVaPXb(hZxCuV?_S=aHsP z(v*~wt7!3m2IzOxMDp#c#~%8^^i=U}_0SVFQe9cTEs0}mdnk` z%BI@KjC|RwEihdy0j8LXoMDj_Vh2jdj0|dzYov*o>JdSn2j%+f=1uc zDZaARBIz=Z%z00GA0jm^_WLEX@e`Fg;rIJcxV{K?Jst#J`w)2TL*L^k=zIJGf8Kw9 zyB-e;*B8O>_hJ6R#d!Ojcll37MkadiKfu2OgXq2g0JpApCfvH-srgNunfNhRK@WR- z`Ly@-AONv-N&RoX-qrfsbjb{SMFafQ@ngb_?AaWF({_&!e*XhAvS%y$tKaX#%*-qR z;K-bpmX?lyhMlNc_|z##sD`d?yy)*k!0!`%HdWW6yyh^LZvF}YP+oHwbC)dV^P8$` z5%Bx?PRz>6=4NJQX?hJ{Ccdfx0ATysOW0Ihi-xXld^qo8Y(INRQ|A}vtrB&@KiYYv z6^I%6vH#lv;A;DK0DyZpqVKYotoa0k_kZE@05EsSa$Ify4)<C3=a;VaD9=i-0StqUS9S8{R}{K^D#6O z(A-fo^J7{lFTa2*TwkPm7>R%hoM>n$p!qbKS^26S(E9B;ZM~f&nVoORk|j%)-dtJn z0S5D}_<;Wt-;C$;jpk2Ue1OsC^CLUA@@d=Q6I0F~DOky;6EA$P$XDEm8Gb&$u2QuP z)6haKXE$#U)v}a!eyQJl(Rg;Iwo&M)|=7^T4%V ziOG#Qx<;PQCmt{!e%i&$ar12*U0?)*8IK&EZdE=tKEUYn`M{V5M09#U+QrN8uU#do zV>fSrt;&Un4nFaKpiU2Pc)Af>Fi%t$S+P{#Gr;Kc`M~%*fEWP)B7q?=C!2Kh$KwIS z2mru(eXzA(QRFK}Ng91VU#AC<0Vn08E?&M~4#GXg-@y&QX-)O!SA7C)wiVrZDZ^Z`~ z%(vnL4CY($0S5D}_yB|XR(ycLd@DY{V7?U}U@+f`4=|W-#RnM7x8ef~=KlxefZjtX S;*~rA0000HW|E diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano11.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano11.png index 117b64c646156f9a0ebe2d6c7735d4bd8c363f7a..02b3c324fdf284a2f3015024623cf403864b4716 100644 GIT binary patch delta 673 zcmV;S0$%<62e<{0BYyx1a7bBm000ie000ie0hKEb8vpUi0F_~`2-Y%BBDs+E`rj@Tl38Gvg;rDj0C&PF8kih z&d0vCf0l~~JPnf^<0@NT{Rx2(;B+|p{!a3~Bw7;yIKURW*MCx1fEN0`Bw7&|+>A@` z!+u)&F+Q@k#J&bdI{bB+DpA9B%j&Zf$R@R{dvH9Jjo2O=-NHh|_p|I}$;nvpK z`8wPVlDdxHZAsJ;z`ZB4!un;paqg}Y7Yms+?rTi|^8WT&&O^r^5gc(4BdFFR2HIXjlmHGvY84iq zg3uj&93juE7dJ<+`UKlZlmM77c9zfWF?hEuOiWV{0by3kwwchF1wOc1uS7z7FD3vl z;2sr_puVW}D#(<&9#NZy8bEZZk^v~J=BPxtuc=X02!HsXU=LurojH#W=WcyhtSb?M zhrCkj0d*M*j}{w7JHcr+M0MO*Bc>H)gWb-~nJ44AZGy?+SyC3b2?Bt-#uEJK0>;03tej!!ut z1J?tydcnJ`2I?*w@H2(5Po?o6Q1;Tpd};HTvaGkgZ|8U7`^00000NkvXX Hu0mjfRCh25 delta 999 zcmV(orM zxy6==SSbaeRJ>8}!g-;W-Y9tGg}d=$bNErcs9LL`Lj)&Ss<1E}>X@ilx~r+n*1KGM08iY zrEsUyX%W;+h|r2$^7Q~vt5z8spJ++6bmfZaeq(ah(16@LUHxe=90g+y}DLKs-zdH~+_ z#!TP84}htetS(54Ym8}x%_!hTsesevCYgGWN~OZ>wOcJSZ^YXtPx8XCV;#o>oSUDs zHQfb96nz19`g?F~+eTNH4N(wGJpi!$%SCcOUI1Xhq4r6nrw2(?&k3z}0Q`1=>EHff z^{X%HOMlP~!L=1CYb#V5?4=g*@qc7>a9!5FSvL5WfjB^BNZC{cJdW)EEi0g5s{;S+ z3TOurKq5Ivptl#V*URjup8$}2Af?-W$eksTtnY1EmKhs=ngjdy@%>Ngjxdhnu_z0d z)g$}Shf_>vXE`@NM;Ab`khk3^74*p#fBl`WuYZ2X#}|%s>but%8=s)?*EQah%Dhtj zlZjI=lS&_?R4iJ4@4Y`sJQlT#v)L?(-McIm(<@LcSVD2n^JNi2kWW>?K2br3lG2aD^ z7=MUGs8y@_BcxWX61sOl|L^finbq8rYp70|W`yM=lQFaCUfQ&}E3lu-bD0l#iLb2@98<6q8O Vn0Z_{Yl#2=002ovPDHLkV1hgU=}Q0r diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano11_on.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano11_on.png index 888d95fb350e4fc87bc6a0892a2fdd1355a539b8..95c0ee44f5f9b7ce5b13053562946c823dc71b9f 100644 GIT binary patch literal 946 zcmV;j15NyiP)_n1f zDUJQT5NH!gKmQYn@ONljs|9eqUZ3!KI2^ue+DQU<{tA!3eiaObfluGp0`UO=g1_Bv zFN0tlVOW3wd#OO-^XcEfFAbmG08B3$8_YSUsoeGB&o7tD^LRYI8bkxa2mo82>s(6U zB)ks8pbiX!hvQW6V4Gw2tp{kdaO?or8H$!#oNG^g6^I?E(F3&g05(6_xpW()oN`ngva9%&gZkpb}|v-3Dh9e~C~;`!pgWs*ez;=nN%uui8>r_9xx5w`kq1@yi{TU*wP3Ag4fIjDS{S92-0j&3;;7g zd~Y2*3cI~(DomC4J-?C^7}fKD(6~B)(6~B)(6~AP%0GGD+O91UfL!of0K*;vanQpC zdIcN6u(6@gC&AFTI)Ko)IsmN;X%#L?CA}N10sx;TdqK$6Cs0%jprooqLv!^B6eR(0 zQe3zj3=Uv@an8wF4@)TZ33Krj_W*p9J{KTXp41o~l=_6Z|M||Hz;S}ox)6M=oJy6U15%Tk zRX0!7C*Tumj>G`gFr#buAO?UL;Pf-A@))i91Tg^20AmL%YlF1v6N)B5?}{*u8?;R& zLMe3sp>cHpp>cHpp>cHp+!Nw&dmcZu)UHWj1Bic6jUuE zWB&m6`heIlNb-E%+rH}l0oHP@5AfbUz`Z`ed;fq{)Cc_M3=q}xfY7))fY7*p0Aos< UMHFc?z5oCK07*qoM6N<$g4a)^4*&oF literal 1023 zcmV=`sCXUV4V(37HF)iK0!c_c&MF!Gs1>5LNxA~{`HbM&5hveSm<|b+SDE12%&i$R= zJ>T!|d(OG%z!tXfe}|>n#K(I3RIM#Z9ssT>M=p8p17N*SV0dJ- zF44m6+lKefP{`2da=UR!9tM)V0BW@elcLUWL=Erl!e+PQa5(sTWd%i9tt;T!u@?*? zGFN9zeJ-~ffPrK$lj&)L69xzTfuIUtv)lEUqO3BP8suamPOPIHfO~6e9NOXIhLY#> zu`v=y`gHQS)F7t@kKz*qLm$9rU(T8e(3SWDL3Kx407Y3P()|z)hXY_k2Pz4w9Y`GM z)2r7obTrAusZVqlY?b7d$mjD!V?8E9Uuo+Bh^2*@cz7QG7pBs>AT6&try7<@0e6;V z1gDEw{894xJb(T9N8QS+@z&Y196xcQ>3o3evon^OyPy(lqtDUbwVQw>Vz;*769mH= z062YYjLf$`05F#-{xABwcC*Xp1<=#?sh z*NDc-ds|TyhDV;^!2W%F^<8mCRJJ4G5I^54{<5EVJkDf#n(MPOv;gGftmV$KtPeK- z(+%2=|AY1ECEkp^$neN0@-Iv5{Nf_Q#5n73zfL@HkmX#?^t|`}IU?bZshv)ziFWNV zIi@?1ld~2;6-vi1z`MEeIz~6flANpAURcZ)Nh{78!xZG?tfey?Q31{;KW7`e0Jt2v zR1~yQzJT;(uF-aXJDWx7@Ifw2P8rXFYIKA3gCsA~`Um#uJBiG1`4W!|#be z%|0#u diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano12.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano12.png index c066c39b07d355f2ad7c3934cc3549feac31d89b..1c444ba6a990e632376d60324b62c08e0ecab748 100644 GIT binary patch delta 822 zcmV-61Ihf82FwPKBYyx1a7bBm000ie000ie0hKEb8vpvr~Rjxi?*v;cze(#9LR%CZR zD%~HBG>G@#_kZUN0~DPd!3Z4bA7dsdWFa#EWWR<#RS4iMjd|nP4@u0~6b|gc?~|uB z3-hrFa%H|of{64 z@5(OHGYk=gvJe?!)6(Dcx#M9i8z?EtENzd znX;l@J=hezfzO(JJ~@3w6#!J=NoCxvD6{L!?^RRc9-fc#WfcHHcn|QNnw3rc0O8>8 zWRDE+{C}D(mZ3M!HcUh69Xp`5WKB{P)ms42?2J5D;~uQnu||CX0JVz#&qF#?P`Mh% z9>gEAy)UWv?N$dC==1|jGX#3T(})CP{Pj0d&rmQqm*&U{Kx?yBguiM%z}96HjcWw} zA1^(Sd&Dr8sS3SSFbtlEB1FoYdCEJ z(1}-R_hs2C+31MHG+vZIT_ump0^BnJ0Szn1{IF#e*GVL0io3aKrDW#!Tk delta 764 zcmV}uQ~A);9kK|~M_p$NJ7 z2}Jw|UWK#k<|W0v#EiE?GNrqkb%Rm9M+UH(b%U*g#o*Sv zV`*)M{cJiUUr1SWWQUIIu#mDsvi)qDrL`Guy*suJ7K2fNgaWWOt-#u}0+AHK@^+MB zUTRscVM@XQ4u97qSVXHkWA?U6!Vhh?IUMW zdyZbqm6!_ccYN5vURcm3y9(kbc zV>%||YzB?x&-~O*X_^kOAugB8Yo2G3dq@(1!js^)+YJw2hXtSn zNr7YhBOnwWkF`la;p6v^3@K8Q8W5{I9+OFEASI}p3FMx#mI-L7KEb0v%gN{)@OA4b z(Sm9MQ268V_!A~Iy>k=I)?5|=sllcltOF1p1;7Zx{6z>e1fcM#yrvlfa!Fk?1mxfZ zfN?khU>r_>)P=(pqvqB+fmVxaYX&g_Xstk7>)M4DB=}ldPuv7ZXwB{Q5N~NfiLKES zq`CY5LqJKu7UARc*(X6I3gi|dn#euCCIZN=OTtOk7IEtnO6FTlKc0&Bua+x?pAa~!u%g<)q1eG^9mcS8UPe!X6QD@!>MXg37J zf+7j0(`l82-4KuhMXJ(wc1-{WPC)I6v1)10^?TJPR1uJ}E6pEOaO)FNzdeZ2%>?2- zw;X!s6-xC9OB4W+Fc^AQx&h5}7q>nE=LBM5aO?Fwhj1ii`73@$JqmnUTFt|t)?Q!l;RJwjI00ZBVg!t`nJPxWJjhP6n*bPx69C3BbpL=J;}6?Epx5}K z{R1R(0KNJbi1rVV)`}jc=S~oeqdNiNZp@a`VXk8=51&u!v7Md;4BJ0Iv_61#e{*KAb^m~#<7YL1NLagYX@9@_JaPCH199bAiYWf#+sTIye0`C4iG$MD6UgP^z7>vUS0ON21 ez&M-$Fph7(>@wCwbiM!p0000QMr0Z53^U_*xu56x=Xt%J*X#M?d#-cN^*!f0%jdkm=Zd>#Z7Og?>IeV; z0_J8$cHlF7-}rdI^y8)5B(VOjxzT0&;GCu0FyHHcN_`>>LhgCwo5#VwMn{|pzf*TT z;#6^2?k`2?b>AS2x0{QjsWRUJ<8sv1ChM$z{&DMqLqQ##eo-3bg5wKMU>8*T$Fg(- zN79Q(4|x*AwCu-4vt`CUC7bkdZ2LCPOw=@2GOq?Ws{BZi$^H5W#3Jpgk|Ytf2#$OwfTO@M?)kp(5Z=ojGCM zo2^71wP62iNIUIR0p=#q7A)zP5DYVBZO}DeIeaI1tAITf+Hq@G$$HCy*^>c$U(O-~ z7r!{lQ`yYjxlE{Ol8%^dY*%IGxCC_&#X`vtu{a}cu!u4ry82LEEqrXf+RrD%wxjR7 zV^q8~kv(z)C>V=1@p8HTuvstg|W zA8C(?nruGa4-#vOQ`q?s^M;i{-{SQGn)=L$>`A_tD_0T!yjb&XKmVk()lwuO+e)y& zOM?LzV4180-_r?O)m$^r4KH9=k3KtUNlqC^G;8;PnYQi~b4nI25OeUh$~hB$`7Qqw z;B*`@rov(FJ28~ge*Dtw6ZDmoJAwslF92-Tfy@+gnMnv}T!-9M)KW7nh!`Vzt7npO z>(!iNk>Rb*%gt_s@ANOZ$B~YqFXD`Z?^N0Phge0}zLJB`ho+7qxv-=69yHnd_tbaE z%2zSoqbvHCGH)nPk>WZ>=qFVAE#*nJX8`6dUtf4PC;3S2_dAF-n)&F7Djgo ztx3ZfI5E|3gI^Y!Tha?3i){p8#6t^PH&C0+>wf8&kPWYoxi&7l0Zsh@J4Z@9*64mn z;bn@`)6!yhHCN&5e5;38IScHt2_*BV|86va4&4m`EteX7Lg2i$ieholVTezGNcX z^Y=^5*igq)0gvEb(|Jn2Q@>uBTbp<6oHPHtRNF0mxKO;bK7M3916>s&8W6Iv|Gv(T zEH<}wL&hXB*wq*|tSGnK2(CqA3uKtIP|jpg^CZ9}p$c4{I9&C-mIX0c*s!qvfCPJ;lpqgTDR{YQ-`aOcBzR)X=Kv^R15krVs18SP`(?b5aI8tG@JZT^tlHI zrEq&XreYdqiM$!3XIquw7GU)nUlTTX3_cR?R>t;n`HVWn8}>ogf?C=&LLdHP0@AFE zdn?gGY|BU{@8L||iGl)N)cXcSo}|Cx0iBL3tAPgxBm;QB6<>H>xo)UnfxPM0eqOOm z@9TG1n?MZDnFsBx+Lnn=%N5xX;3+Ba>beZA8%pO}jAey7@$(y<1gNDSj~`ea?u5}R zUZPEFazN(1*Ng1da*IS}kgrZ@+N$#K2n$BXgmuDKX{5VHe1BSWLcPX`ex^DrOADXYLs@53^&Ug8u{{d>NQ^6phTE}ml|%&yr}(h|SmH_e?4ndT3u2(P z%si#T28#B#Q(XOaF#3;H=YB1ki_Ntzyw8k&j|^wC{kR-WCs2bVinz#nE(;)K-YOJi zn6eflZT3Me8VBT+`Ji%vV-)W&4FHTZULJifb956R#KU_OccKt!Ri#umr}jnQf`OFbY)VTS|D|}$G_6;=@BVl+#K?uX@CIv-h`}j zcIfIDA1LV5tCsKy&Z#g`Upe@|qvsJf@Sw@E^-SoA?c(~njXNK6+f+QIout*2@H+^~ z(U!x&t_RPs@|%3dQFv)@NM-2HkW)0wN&3t8ZzY#AbHZslXJ$Jodx0)dqUCAJ;~C={ zng3Xhmr(lL0{-EI-|@c9fMB1v6BHr-f~#TAI@1QIxsJb69v%7W*MXq&mxr8cDNBkw zE0n5C|GO*qjXnav{Caw-q$>7)(bHw-1eCna?OX4!Y#KSA2hD{>j9hN^QSNv|w8tHk zmu-I@a3G@lw}cbe3NXiGo5wCuQ|!+|XuMDAuWD#J;G*q4%UFC*TYp{v6rPbet&~R z?_Q|fz6J%!Yx{m60Yv5C$^^y$D=&N&9fa4VDJ0=nWuv1x2w7z!%?c<7c7v5B}8Mj`XmP{{-{tTB^I zxoq#tZVcP)1sIau*(H~{On+ip$7`q?xi{$G2XG&lT#S(L{df&wGpBP2zPRw6Kf?rT z+4K%%A8$Spk;_N}fuX$a7Sihj%FE=pR1%Khfd_9aI98R|i3`V9KD%}r>pa)ol_4E*f;rz<*-%e_>`p6i+4Bk z?O28iv3{Pz0vCoM#B9Rk_dT+eJU&BP2$)=aUnsSQ8t*oDlEID%7+_Zk_x;)yx(z%n z@!zE)7?U?oNe2JZ8IdH*sR=twoe^smd<$onfL@Y~X_nCyqod_@2x)^gHeI75%Oi|a zwWg`~EQbZeW9}a21cP`ee1unK({s*lbrs7ZBA%~o-H6tG-AQS1KQi5TAZ^W!#@n!@ z%Ff>2a)AS^d%2PF=~)J#AQp5ie1elu$FLFv$W#FAxqo zme5mE2$%mK60!Iz?~%q__c6j6w=mlH(mv(>h220+A^TT)-+cipe*PNO#wPl#gD&Hk z?bCH`d);E~vI(u)jJ@;MblLRv_$yy{_c@4__vDm~PhN$fVRqoQ;hExFL9YX?J@*Y5 zpe17-5EcW$P#)yHtO}rRy=WpehLvkNV&UeXoV?2mzk}-5uM6^-?zOt^i5}fFTT&>9 zQMttl{vTM52H%GP7wXADH{K!Tev?NE#b$Z$m8?9#dM*C^R5$0dko3E0g2ACxynI7! zQU@E-p>pNrUw#bzH$x92vUmgZE!CTMGtDq{JZ|l&tKo>Uj>W zq0zw#&uZOM|B>}K!gSi5R)o(==~Na_T^6z$bSt9q=3`Kk-xiX$`ODod;q{VgWBj64^a`whQElXu zdWF=$OA~l)YbOZFWxO&-Vq}upbO+N|n=YQXK0oe-xjl<#1*`+(5 zoJ21KvFsj?ux~M+y2m!?_FhITmWb5#JdvzT^4AJ_1t@9veFJr&=*9>U1 z1fgK~AG*8cLj*yP1Ti}uJD;-AbVGJ*Fc|=B!a>Ml67ts43BhNY$ z{MmvtJhNt~Z#ZC3FxuasUk@_Z?K*X2qg8t>K%17V2!Ek~;dvJrV4gH8%Yrp%*`jlb z9a1p`+UL=5|KQuP3rtY%*H4L2FrxIAMscvKW^SB0R^V7CNP@C$tTO_v`9VbL85yoviaJsjG-~Sv`?MXiOGqYU zWWXC~^ASwrN-Km+d6tGwuwsW3i_d;BHQb=Z#D7Ko4rJQ_h#JujVBuNdcvqGa2Iz=A zTKb}e@!QFDHA;%@b2=w51zntkh}M2GF%lvNQ>YW@P1%UMH kfZA6M_UrgJ`TUD~18=r&6j`y*e*gdg07*qoM6N<$f*?bX5C8xG delta 1594 zcmV-A2F3aC2FeVOBYy@FNkl%n73`LdNz5WkIC4YY2uKQkQFX`6+ProyQ zk+Zti0uh^#CQ&cj?Ux~PCZqGQV7p$nyMTkbL~K&$()1;kvkxh*RA@FWE+l0ly3ER# zRT`#!>i(x1ob=k3EUy0P63zA=$xMkdum@Zf_V;v+hE?avo7$O33`~KdO6{5TPH|pKtz{`0ZYJj)&@E_ zFan9ROwDj+J5!<{0AgZ&6?p3eiJM|=3Al)pCQRqux z_pu3p8a^Zml!YhXc92--I0bGbbU;sy@c<`XHStcr(U(B|=N5AdvjBXpYor7TcWmM0 zxFATZ<9~>J%5}(Qv$fAV8zSV^@rEVD$DK zCNm|Hf>d7E{qT0;>_Tp1U|XEdWD{^Av>VOTb-0B6cD| z0L7I`Pn@1*(me&E(-GA0A$F$3Tf)<)X&p_sQGcTonB^U>FkQt-QA&{bMEvJg$bVf3 zQhWZ(3#u;xxAxC1%(C$)%Veg6BsPrWq`~I60J&>!fpTpgq%~>=j7~>bzh|6{fJ-8h zkZD#V<`!mIxqXKu$7kBc5tpljCA!akadDoFM_G)V#oL7%pZ38TSP93ksDM)or1xH7 zOMd{n#pM=G*bBh);ymkO9iVvo4l|k3K=6SC8m8@A`LaqPEmK^nFm>&QM`Bypyp~@8((m_a>opGDn9Nzje>zRyLr|=e}BTo z$uN6Q584gW_8o6zwh1ek2d^-7%>j>($Kfw{WQ?5QwP^iXvn~QIcyZHackMqYvWzd- z1Qf!W3YhJNY5TnIf`cK{@F5$IvX}?w94E#*$fRLs^$BX!4`}UP>F`d$1zl^;EzF`u zCpa=2?C+VBwyQMu+Z>q<<`!lNYkz823g#AOdG@_YannW(A5wZ&^}zGHdCc+-_P(E^ zLnjTrhQ~;|5NrnmGDAT)tTq^#bc&Fsoafobk4*h}*z1hcs2{W3;%R<7vUC*o4l>B!AKgjGTco z97Iozc_c=(^K3u;k&vRGr^YbLI}|r<%yP?n7a+e{^>Dj15D3T~cp{zX5>rqgA~qQ# z5D5?;kF!>O0@Nw2{sh1uZoWZ&H;?~un`)(orrYd3HnB|y#*K!Nvxuig+Aayd>%IE{ zGIi~S5abRUkFt)KfRLhi;D7nuJaY@PnB^9Y{W?a@5EqZZ(V@k#?u7lQ`hs>tLXG+v zy)2@!#E47FrW*-A*F sab$a&y1%F28S$KQBe(YXldkIcKUV3{t!-O=u<5X=vX$A(S z98VX=kcv5P=fvh6GT>?G-6DKZ_-o1>jyQ{e_K7;KQztE3mpuE%eeS!*uKhf{U-%dM zK~F}3Il)ZZ_<#JW+M5tLP1?s{I|I)=rsJ=lf8H7CSz#l0d)GRp?{=Zg8V_!>2Q1@> z(yCYz&A^r$`D&8m^bJ`JVmGe1T{oK=*dW}I@?ou=vnvDJqQF_EQD=|8wQ=yCHj82P zCHq6Uycd*M9SVXNSk%GPck#khkL&yA$Ru(ec<}!F@9$ERRVHzE#eJApQv3AY^jQpS z`6qw>-S@{lf@#Ak@2L#plc(J1sCVd&G7gny)%n#abh)J?{R&G(uF+wZi143rZJZl; z{`LIP{M}&uX}L&2n+OBQUozVo;w7K=3&iqV{5Suqox<_}m)Q)g{B8jsl7toe0{N>O zl!O;X-ufYE$#tbpVBwdEYk*-P!qB(S^5}_$SJyUt%6NC;_YPr)+j*Dg3cYqUt~fH4 zVb!-;JA@iC^0#hgowC}ln{~pKpDfcF{!R-2EwT5>PnL4u2R%NW|C&@A>}(w4y{Fo# zhV-d;%=1sU-Vhi%PesPJh4+lk#f&GJjPvTzwE_R~*H-SMp6J>zA|*%SA7E cS1|r(%F9};^L~OOFflTCy85}Sb4q9e0K)|;LjV8( literal 3812 zcmZ`+XIN9&)=mZo5JkWO3@u0zA}CFP2qcICiY0U$Ktdk{4T=F# z#S7={fj9owBPtBgR=8Ie2y}pa@%&lG``N3nZr^cm!M5Qt)UUgBv@kNjUK`U!x_#p4 zHa)$tmnXldc@6heoom%y?e{H!gcZ6~JJ?Hyr5;N@F#;V4D>PU=>E-`dMfb|(Is%E{ zZ)p3(7g|m@*ehq<<{kLxV^E4;yJ5vvL&M^G8zgo|t?6=xUO$q;wa( z*9#=cQ)h{9KXkh-eZ<4j&+A-jy3sPX<~#h#S*^6X%l$^p)Usjl+W;QQGoJhq&QI zj^PS3{}#E^qsxf#D|gkV2v+fv8Xu8>`Vv9bE)kag;n;_zCHZEzLwWsvd9-(?l%F?A zQcVmiXa(V2Nt*FJcyq1cU-pVJnA_}qUqMdY{srHuLoz2L{*V=)+Cis{7OI=y{FKuw z_7qK$`jAfb`Rl95aM&pR-RI^HhACVfN#5qh!U=p7IcVskVdz}#+LPeyKV+SXbbgwd z3+~{fzex%WP-*3sopoY|3Nm(-Ztg*8U|X!c2f|6@*uEFgze8kyK%5heawYQj$3Mwz z5;ZH#?>7R>o1Z1KsvT6VLhYtY_Li5nJZeC?_Tr)^16u)b=XSB6Gx85in}#k#SgRLg zu&p+;6D$6TeWMg>{?2%(;CapQt-(hbz1zl3pCemz z@V1uc;SB+g!J9Czv716d14n#XZlKTC;1?;Q5rZK=~8`5dulKdlCh^HGR!T#mN z|5%xV%{jJ?E2>Fm`v8)DV0$REr}bc;O#1T;C0n_(M!c@A$_CgJsR_Il;>T4n<JiX_MbX;n^Yl}@TwGa zKT;#(6ey-l95EGpw${!7^kMAwozA#zTToCpr7yTxfnXL-x_=srlId^FV(c02^|Ga1 zx#{eY|F>I=k!RhR^O}b*KRSp}$5xjzE3A#)NM z7dLF7=6ttLX6otsMLtu6VylF6wb#1qdFm7Q&^L9Q$}#pR^U%rPe4MTg+-mDHIeUG^ zXTPA;iknS!DvbKDYyo5N`e1(QVm&1oo4JyUr5n%KxXKbo=ILp&>(H&#RdH#~Cj)6t z$&5H_uq=a$&^gyM_=LCeVm$cS_^~k?mM`axS`@!qxoby_<0{Xhb*0qvUp+;6S9j8s zMozGy^E#2%Jx`92&nSXTS;Nw$AzOE*apV0)nzXpG+a{`{tJK z%_GpdgH`IpHZ*(`_&3e(VHXA^+i7#&P($4?AFF$CJYD9B31ZD6*~cMwW!v&yfT6<> zTXt3Pp)oyOv+N(C1MF59k&=vRJ3d8(l1lBOO`Kt#A^|?%$JgpjT$Lw@u8s@4O_~$u zz(121zISd&F4W$ol1u)@LXBwL`^fc^%aQ%WS;NoshS?GaNJNMWNUx^-h<^u%c){NQ z7IDhBcO z5nugOf=Ku=p~KEvCN{TwZO|U_1*MJV<5@riC$}wc-uG4n5&-8j#bziuwn=8&*b`*E z>AR0-5`8wH4s0MO#X7n2g0ivJ26op|f6SJoWTv=K@?W&VwQ4bDO&XE1>8PqsaGu75 z;}xKn`C#u&f zYLzTxrTtl$8W4Z&xr+nPnvA%%P}5ZQPJ4K8e)vN)Z{J`T8g4}XgDy&qnVxV+8f+|a z=Z$=>M=p9t248*P0Ivy7#ayhNFV@!94yU+6$$I*F2h~kW6!PZ_RMK2<2f~YkbwwXp z3{49w_pwD1&oFDSCGy0Bz_Hmq>cF|VK<-QS)uYZ04A#Ha%(azF?JPcNtRf6dVB5_0 z%~^$7yUMzXG*-gh_MTxHAzZrX)pMuPjq&J+va5UfG903!-PfOauM*OV*RJeCyz5Gn zNJYTMI4Th3E)KLy9Q>jWa_bh01| z;y}m_8?&6^49%A(oCh3!68ItSlqGfw#6C#r;Ub&Vyy%Wn3&^D16JHofs5PEZqIl(P zMlqU~;VOgR|GAd(D}zk z&*MjA01KRR^I8{p;flx3@c9b%jVN@r?-S|au{@|5Hh8>VCmne1T5>dr0n)SfPm?B8N8;2Mu!2yugI@X^|27Px9s zBQ%ROH}3x@8oIzmHH*=M6qrxf<9G}+H#S^pr2@JD07}Ey6M(;1IlSikvbF@frt6XMR71A7Ht-Ib5_WmQS>bVRdehmV)x;}7ZR^!D6H7pG?%)N84A`m0loD09Hff4iUpB-w$A%#?UrI^N@vM6}-rS_qYAi+>J zn$LdvT@Aslax-e0*c~#1OpaNj7nhKW&uSOcn=ELkssV4!o;ZNHF+$OQ|9^XAT;f$!t?jN=xG9?v-1Y7X@Xa?@2o_m zfQz8Z&SssE0*(^L6IXm%mz5gNz3UE^i!+9mcmBh&pA%UM(ks|#je@+CQiL}KojloecTIpqGfUTkTI5ymGPDHzX?iaX=znZ5%ApW01S?QVRg>3;T!QCNQ9D zSU%<>G7%93H$Tqf#5Lj?CzrcWx)5dgUww^S()T;gK+|Y#ipK>MNgLA4=@->XT6psrqLT&(cu$(wv*>TO)ZKN9MJHh30AtEL;1}ZpFs0R~ zt8oYq%|@GRAXiS`1N;R4e(t807aZ@rT_)4(@&`de`AvfK7ZKylnqbu!vsm>a z{!ghZfQiu?A2E33Qh3iM7ECI$k@cuAdWZ11An$hzj!!nE4r4$^Z>N=WKo+B#svF=( zRSqo}Pzi6*f_r?5ke80QegUQKzUOPWfIIGUWptgP$N^K)IX0TmstO zi|-rXiV(jspCr@kyl-BJmlqCPH`c4T07fTwuqktQnZxTwt?VuXJP?SKt-^hasC8w37cK^HBro-eiV GjQKYgWwJp4 diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano14.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano14.png index e6ae176de88849df4a2b159a4de020f27a1b7653..39b03794fe19b1ec95e2e62afe538fc1b98a5fb3 100644 GIT binary patch delta 727 zcmV;|0x12n1MUToBYyx1a7bBm000ie000ie0hKEb8vpLb3!3dvQU=~+-|QRjOm>kHL4lji z{Ospvk3BhbzbyX%IspuhM(fq`?SSLS$#h+;7LIcmb4}-W0)K$Uwi%yZjotnHu?1Lx z&8w#@s4Re-v0}b(I({nJUSsX@WEjT9YUIJB*hvCN8G}L?qn8-JzkYh!={3GrgR#R| ztUZ*^K_})5=hhZP3jmaO+KXn+kE{AC@=|?7%4r-xxt9j#%eM`y21JqpD1wJYxrmYs z^VWC(_$|tc8h@vxav=$T@goozqi6U+Uom-BHV?9Oz-BySOQX8JiT}{$#8%TRfS~xBW`CPpniCcr_r=902FlxH%XNzZ z8rCAB2N@=g5l_tdJrW`UW#Y9h7(=>4Xo8V?jRnG~2NC&fEcHV!J#2mlh~_G0FZ zT-F(FDP)<&8a=n3ZU8jQsS^*S3ulrHXbrHjZmydPl@cDQx9k@==`2LpfEc9?_!!n= zE1#FD`G2Y4bB!noAcZn0teShSdl8De$xWC8P=+wvjLP-vh7@~u$&4nDCZAFth0b(Q ztM^B5LVFFh*+7^hQ#TIb(&j_}sxt{77%`MZFP*C056A*bI74Nb>;$0i0R^N6nG-6h z3d!?i&w}XnD%S2sQ4d+Zk%**To0Z>FznJt1mrw*ilx(Y%$e4@EF6a4%wDbDgHnIqS zmRi!y$_C-}+9s(|o&(eZpc{gRrQ5k=b70#ah<(Z5|8KZ&`2r_|dTi#M=70bI002ov JPDHLkV1hDTOjG~> delta 410 zcmV;L0cHN~1+xQ?BYy#UNkl=Eo6hxmhxx)9*(!!|LC433pkxQu7h?dp^ zhalA_vSTM`CMDYl5L)&xs}BPM0|NsC0|Nt{n5L;t(^UU^@5dPt%d%jMsQ|{9YK*DV zG*unz`m!wDoS$a|#266~fa<-+T1yCl+wDe5380DyF~)ArZhr^1ZM&@NN+|^qA?J*9 z4glvIIcG$KQVQ$3vTfU?hxe2N+qPYdF}0Ke&?=2FqHDUZm-AExj4{=Fuh*cqx2K5U zy>B_`LAO#BpkuZB-TZ#P|Nj*Lc<%woIk)lieBbwOzF!4s#cFve1#2zqx^lfozJH^AKwWv~$PWQWn_pGroFk=#wU(3;Ap}H(d7j(*5JEfn;8No~ih1dP z{^Lrhhdm3?9uPuk!p?BK6`(f5cfxbd01r(@LWAvM16LaUrkZiS$7aKf6rep#4}jCMryc^m z`ZIV++vx*21ZbmU4QxJSjT|9PRcJ05#NQ6_}y&+_|d@fEiky`yJd5&@?t`Ni8W0 z0D}w^g(1J-$bY`OR$ExT=9Me}tSm)ZBr0Fq`lO1B#3jyNVT}nVgPWmJmUIFsKtF2?ExXIw{><$2#m`C zfN?nhFs>>9k42(9HDUoMReW_Qy8!k!G891VvDdFDvwzk8E&xuUy;}e1_L(D}1i`pY z47nK)WvJ3 zTm^CoUUczV{I^pAKygF#Y5+7{;@n&lAKZ}C0E7u#;?!9q8^G+FnpUv^tX%o+$#E>v zA<%L@uVKG*%w7ag)9qW&=cQD#-<&O8TY=H{2Mo;*7=3@h6!`&RLHGHzo*-8a0F284 cfERK71NDXNbnnzY<^TWy07*qoM6N<$f(_MY4gdfE literal 3352 zcmZWscRU3y)w5=T-4Zc&}-xW9G!Sas1Ss_OeVSNJf^K}Mtl22c=)@?;VJ zKN+<6YP>~t@oe59ttC6|y)1O@PlFg~2FfEqbs-nG#ezli~*I-nQP|@R2M)aB^U27Fn4xTJe z_O#c3s#?cyj^aTUelsF-nMAIiB{ADJzU*oMIb8bw)!=5Fizjl9NWnz3W{ATL z?lbfO0}qr4%c-RDW>1hhO8JuH5433Vl5DJl@}kp46UYryclG0^-M3kEHbR%_3?sx- z=X-~Gkv2~!D8jtwd?ElZj$25YV0^}}t&X1!IU%BZuUdGVp)=?WYWV2b&#?Teq ziRfK^o@lMlF8k*tn2&!Rva6lU?o(s^ln(^RKR>7|wFOaK01?E@((pdC4C26r7I{w(ohJ5dFbQ zLimaEy3&ve-dXtIM76QmtnEH{Jj^W&Q*2Pff#$oZ8y(NgmJVnrg;2rIp|yUZuF{vB zO@zSUbV%y+!I_dXf^;!1b%ciZ-XUH3HYyQ38E_zaZbmHFE$n>P$7&N^!gnvKrf%3{ zCt++vM*1~Q=#mp^)DUQ4#5R(adZ&FPdhn!~S(#dHeGyXzJIr2F`IYK>?R)2NXodIa z6u!2V_U;nwvVJ&sZAK;yA5m8to_IfD>SRB*^ke8B*C}7;4kyu+m_5)21E8$NKq-9J zXq1Ww{QU^Jvty~R(sMsjJFT)%sK3x$#W+o8R}cCc>$@TCqw@4`{60%OqunZx+E0T@ zT{=IBusg6d?pG9FZyX_p`~4S?`EBuKtd|TpchLVsCDuQ$o~0Mcja*vsjqWRVjoo#4 zGIJA!RvFpN3Y-4ov6fHou^B7ma(mru8F!8frUm9iGknM&z&^Or0FUJkLBYRQMaku4 zoW36sOKJ3w-JO6|(m{c42oV^P-qOoII&s_~sPNKf79nN!&;_-qCfvH};Q{EqE!E1j zscdian3P!ViiRj;MF={tL-(iIzdzKC%J=4r6_Mck?|?Sd-^9#M98>d4RU`wAYN9U4 z=QD}Oy8{I<(TV9J%())ObFSz|a6+o&_|n{u6D5RGHvIKrc_0q7LiBq>3j};3iJ=+1 z-@dWTjs??X2>J&uKO z2iug3viO}+hC8qS5PR<89+nOQp*umt+xV|VpH36R&D6qga>S*z>?$oKvz)L`*TCNq z#xYOVPi}U{D^oV%(A(eh(%6Uhdc0>O0|T-3phZ7JBCHFX8l{HT)&emHQ$cDP1<7#X zCn77YU<7~9{Wu321STh915uRU{2Lh_^UKC6!Nx+^;)S4NMY|T@_%k(@d&#ZV4G{aB zS+Q?mRMn^d@;u+RTawq130O`MAl=WkmGs5D08lBTyUQYB3X+m}B8$a{sO1WG1|GKu z$7W7D&5QozpZZej-BvUPt;&~y7O)Y5J{??fTUpQiuk=-I;=McXk*M$?jB1oNKhX~y z6;NAO2ghQu7B)6STmh$d@(T(e+;%V&Jw^D$$-7;;z?ou~o-r&|Kbl89s_VBHYCxNb zSgU{$Sa=K1;iu?-{b*_bF^{^gW|dK;@#&w6prWE8hM3O8n6BSIwga4rBKW`crlURo zPp73$5XHIX&CShjs-7+EH=Lu2sVQeSSBxeqxVc2MQ=He`+RJ5b#K{ti*739r$Fd*fD^}S z)0%o!gqEBZnzMn4eu_8Pjki`lK5UYbl4)64|8;khfl4EE^aHtAS#^TbOLGtW)5Ygt z0ZNqF(y1&AX$Eu|p{gn>`mGb~*1|rhQ{r2SuSsO%%iezlTF^Z0jxcK*8=Dl-id8j4 zL$|Cs(uJ`(n}C0jA2BvI2HGY^o9rt;TAqa>+#t9@nNE~p`Nbh@-+ZrAIXJR#I4#v| zt#&dRvP%&dbLDubU`bJ_BD&H#7D4i&=zR}Y_pWr=1;?u#cHBUSR1qswPz!q3XQ!0?eK zRi!HJvJ@8%Ft!nlFT$Qrb469`KG`i-_5 z-kpYt@M5+kJ@^fiy1oopXTem#l-D^p6i0YtxvQ%N^QLH!<_;gmf~GF2FIro11%_EI zrjD6&o_Z=QqUtkb2hUB*yXU!%1OpF=^K82hZM`0R2b~g?e_(ddr`f8?)E8qUJF34^ zBb_li_Sg=@^oy)Ysxy#tH@d7Q*T7wyhOx&I5iF8oWq9(J=5zcy+5P=isUhEsDNWq~ zNZM9eecdp!>RkEA+le|0)5whOV@8ktz(YQ0y{)SowykJ)euMaS`t2chIP`WB=esuM zKne5^Gu-^2SWde@KEJkl`s$Tert3?EYB}3O_jIAJwT+vSirOPvCgwJze#Qsocf}}# zwPE*>`uCM{X+GX?16WGgU+u;q42cyf?5Ew)XJb=fY;+ka$Y~cKjx)De2oLmJ3^b_c zNPdCI+aV=fLleteZH$K~b8Z&uBXu$`ERZvC&ijbYmIC0Zmt$K2OhcFE-@l(az77I} zqb@P$YRx2IS|W z&DUC?SYB0YG;u z8F4B2Jj2;`hi3?LnYr~yDqG1eD42~^&_Sn<3o5dNYIp$h@nuBeC&oDE5-M961u2?@ zgl1B`rW>3Ad#%aOPbLrI$F5(l{{@St%$kL(t?}4EG>~fS9M4(?ZPY6x9<*X`mOnLif4q5lm$QxGi`e*kU$B#*wD8wa6T@!S- zaokv*$O`$Y+=1L>+FX$1TS+nB0%6dC46l4?qH%310J1s9?jy5Ba6T>ykWY1L33{M|u~Y0nQu% z@bcAutNvU_Xwd?tI;*7cC>OgJ?By4}td6I?__|7ZzlyEdZF_S{m+^@1;yPZK?w82} zzocsxW6`TW7EVW`-wmTMS3#I7pwPku5BdMAc>Nlqu+SXUzk{m7KqbIG9zY$bg(y+B G2>Blhz;xpP diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano15.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano15.png new file mode 100644 index 0000000000000000000000000000000000000000..a014b79473657979c7a3de4d90b8d1a2f9a1f7df GIT binary patch literal 984 zcmV;}11J26P)%6FB3(tiKu(!%<>KNk?xP-^1P9%Xz5-Uo2ga;&O zN399XjZ^@e{(N_6gZ2lbNO&qlSodg(wwjyPxse0_UYtKyPlZ?#FsNo*v(@|zxoFAhH6$ zke?0SAP)dUb*;qDZxl$p(~~l#rZv&pe3s_wrP$K-2uO)YQi-?Wn8VB3YEd;8Cs3aF zKb5c2^|M{oJBmCeO7pp935N*{h2Y)$P4*VxVG#$U#Gqpe{EgC|ObAkq{qG$LFk8) zX-l&8y~MC&JBOqw#^En_a;5>?L3qF4e{Z+jpVI5h46t}E9@hYfzh1Au{iiE6f|&tY zi3bo}BOV-P38ciQmd7pz=y`eUVt_T`Ym*z1TOL^hEQ2ODPU_mM0Y*)3TDnhyTZ#wW z8=!=md|_&U5%a~NBA^D-Quy=vxUC6=Ie9-fFGR5cQeo~Nc+t$OB^T!20biPVoMHpO z%OP>(egDwKKiq8@4O|?=%CXQjv4|)(0K5zXup9pu4Cp+>^Jt*4wGlye0g05M&yNue zBsdijRZD<>em{(V$)Lzu@!WGCgNomT?)93aslkr<=%EJA)n zSN|5EHBZMW50h{@c1FZPo5Pm|=ENdIk~IJXW1VZf$%R|&0DR4pcVnKE`5|T~i7E$B zl50&#g{PfsUJCC~421|4LmJFW;kAjc6j=voL!VIX0x7S`WM^3cro2kRA87x?ph5)9}(#PevN?-`1S?)w8I^tzqDcIV!f z!gJrN>;3@1Jx7TyBvLz1(tUpbt$8|5d6~}F<;CGu(}bv?;5gOe?ThC`T4DuL-YOskP^3b zBsA|2fN(A{b{u+DZ4nX8`vXX1%+s3Xv4-9I1Gwi%bnK4`&Ad{Y_XmJfX!G-2xK%D_ z-XB0>G}e?xa0YbIAJCd%`U6HRhRh?N_0MPX{(ziU<+ybP*t|ag#J0WIxMd=2-XD+? u5&M7MDj#&)A5dc$OJ;w75z_$f&-j>0boIUo$Y4^W?@kN}5$vJGnBy7)J0tiY_J9gAD(>O_Ujy>1{h}Mg1&{zg^HsO6Z9)?MJ7<^~|c(0Z{=^S|hy$AzvS~6(U0;Kgu8Xz{e_M18h<3PX>sKgx5J%V-8 zn)HcMPn6$S08l1{tT~*cj@4z)WU^uP9^PH@dj{(wuKT$jE+g61Yq0>>3v>jhoRFO( zk=4iZ=9#zC5^PLd`)aH_`@X;12-uJnW*lZFu>^XkJbJJq*KfP^AK!v{2v%J#SU_Vr zqnlfiS8rcikn8nsK$r6&lL0F8$W00!7U)3-!MleosVpu8J~@_FmnO9d3+0}Dwl>}I z3(C1>=lv9PytCim@pQHyKTMdCxDo*b$_Hk`5&^)bW4*8Z+BQK7W~XNZA~QILz&V?c zz2My}SnA0hGsp2Ao(&NI46Z3X+?iL_;Q?!*A;`F>W* z^Zu6;{;YifwL#b0bAA8<^#t`!dV>IGfpu_y-LOO!v<`iTXUnM0917YQ>rMIe?z3>7 zV_(yccY0UT^!^lZnz`NLc_JIz+`uh^fYYfI~3Cp#v6J3J8Of zV%S1TlN0_LFDqb@Kz#<{u2(#4tOIlXo}F`hcHo%N%box$xSj_NoPnJV&b8v+lFxSP zAPS!e_zJp*+j43c(80rv<=46yJ-WkeXZ~YC17wAurrO4-n`optjzLkE(}c@wHUrvV jm@8OPkTkjU|Bn9vO4D%S9TOMg00000NkvXXu0mjfN1U@s literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano16_on.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano16_on.png new file mode 100644 index 0000000000000000000000000000000000000000..0bacd738f5b07e7e44fe66fbad56335db1aa5a00 GIT binary patch literal 1059 zcmV+;1l;?HP)p!3Ywg$=OK7M9c&+W3@3ppdzAAv%+MfAdYg^|J83Nw8w#*+=fR>m_ z0Bv(@D!_dc%7@pMQz4#Sve!2Y~$cLhk#32tHFazjmxSB8H>@Ac9Z6l5~zf z<$1#P(yrC#*2YQ_=$s@ekGUgKND2Vrh;L2~D;pz+v06BkfXBN=PMbsH=sI^uOpM(S zAhKlZ)XL%-#*q*lC8CfB04J9S2~{w<=1zmTwyxy@8RNOOrm_6E$N@60b5TNGrma|d z%K;~!odsmt(k#E1+Nd7j!sUn|(-tSs$)r*npTmXQONDO%pr&7HC!XE6;w{1+nXvd(r>R4)9iZ9@P3<0LS5e52#5VIGg~ru>=T{V+jx@$6@;e z0MsPjw0zk90H8)qvO+*R*|R?Y@LJn4f4Ketz-w*G{1pOWax4K_K5WFgVVeE`K-(Nw z2v{fd><<89Ili=ZI8=WCK)*|Jve)ai`1#+WKj3n?e2VW}M-1H`PzsR0-|tythwTpl zD75&!=$s5Yd3?Lw%D)Q`diDnZcn;#5lf%l!$YHD&4k--X9{_;t_U~=$)XL)8Ccuk? z(0E7;-5(&4Yio-OhUpK`P?}zgLZD}V0L_(~owWR3YNL993%4i65d8t#i(0dYwgJ)x zn!498{Q)_EBVvTKxTg(Ng5Tp?^alVI$MCU-=??%t_JgX=KU9AJkedo~v3?H-lVb@G zCdU#WOb(X-C^c)RB@4Ru2lONltp0!sPzCT>+dIE|e}LE8-ubIPpdpq3VRAGTV8pti zsQ@F^4J!n!6Jj=QW$*6&0U#;Kdj39d#gP30fL#5S8{TmJ0WBS&p;~_c5z*`}Ny_6I ztKYppfZ{!uoF1F@` literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano17.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano17.png new file mode 100644 index 0000000000000000000000000000000000000000..3fbe7b326e3c513e876c663561608ab51b07b14b GIT binary patch literal 882 zcmV-&1C9KNP)!6ih{MA?ijbq0p6! z;>wK>)Gqu5YRNAMUAPLAAh;3fq9CI}2sB`JCDWY}>!Or#De;~A=DxhiOy|rza-*^=mIjOP3t8KCd!~1SIMU3q|_y<|B2Fd!hFLe{}yL{qVFRP={!Dl!rvB z0s;=F5^XCWw{ow_?_f;MrI0$mMF1dqod6uf?8vhgY>0pzp_s^PJF}xV&egZJ4=LEq z#=FFzA_}Z+6jem=A54<7YXa+S@TS}5luRmp-L<(+g(9LZDyaD<{; z>gz~ZZql8w6;w9>anIHte`~iRzwc*j$%q1zIp+uhAmkqR5+SZ1T(5DiolcEq@4C7m zVVxK4(el$;B8dnAI7fj=#9Rw1Ish@K0>FFN3RQ!zeEutIpdtb(mV73ixdx=dMFnXk z6y|25&Cf7+E??2>zkMEmJ3F^e@Aqa&(gPAgEQv%!0g>F~SsB2e*KgC8?_~pS8=lXX z6wwljSU=++3gb1?S}}GKf`sH!@;p4;XAt_T*9;F2h%VmY>-oaKJZrih7co?W*W-gdL1U8ZbhQTYcJGh@+(B7eiVUh3h*F$6_tg&_JDUUmu^zt; zm9uw2p5vGtTH^@Hb(C}pfjnk!)ncbUl;$yjwdizq=KmZ10!Zcf8bROHcK`qY07*qo IM6N<$f(`GGga7~l literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano17_on.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano17_on.png new file mode 100644 index 0000000000000000000000000000000000000000..e73cf85fd2d3ec24cf5db9bdc7707f681619f507 GIT binary patch literal 957 zcmeAS@N?(olHy`uVBq!ia0vp^4nUm1!3HGP9xZtRq&N#aB8wRq_>O=u<5X=vX$A)7 zd`}n0kcv5PXC-cWq#)38bCvC_&3jJ1W3_1$uc#LGe*bJ){N8)BTn{j|GaUNv?yPk3 zi^1d>ujc0!O=AFKgLT(mKYv*8BiA&38^iZrdFgeG9RD6aetiAg%QY@1#1@2pU~pXC zq#r4}Om)NYS01eKo2-0TUsRSJkyyvM>_hYQDK4RmUS5Y*ozC`t*MtVde=8H?sa!50iT_`Y zC#_(0*uc@%X#Dtw`tbm+HMOU&ZkYR+zxh$QWJ=DNCwdRqyWTH+5W)3nNBGChCl@$9 zJrMMuaMsVOwhq+?H_1nEJY+xJ(`NMgJ9CfeZr&h{?wwwFjhj+}W^f-k(`+lhI#BD! znoGj$x{1k+oRz8juBQJ&%w{*NKy=2O$pB~SSos`qC^+8#)nH0@u*l}f+mm;ct- zJ^#w!z2*<&Qkj1D?VJ;AmQ~j`l;!zub1r$$&%j})%Je;7a{YIe8@J>OcE%uups!(% zJ;Onz!#r~&kK0*p%T4-o-_(Bg_Ud|u36g2ooIh_Cc~W@(#XWh3qGuESIw&6z_}3t$ z(Q-1^pgrs#!yzGtG+T$ma{n4c7TPULl&EJoaG1~9W`ghfkS~dU7#U`!`a1KZ?R~;I zf#)gz1P{Zw#J{p-lQ**zAmI~#9bcYy*Piv8If{*c*EjZ_9l%s2QCPZ0Eu#37pcg15 zb?ePszSI7}pS0M2lB?Mxe1x=T@2zs!{;%QMjGxRVUf0f)71uMU`OR(ko!xn%)t*7Y zVdvR|zaMYh&^GzbZgBe3ZXP4EXFVCO_&Hcbxz357l)QLHeu8k%ej%L}iA(Yd;m+K% zelll$WzaqQhtZa$@BFHN4Ht4ZxLx+1yMLv<16$_Z7h9gcKPG?SSN`Wu>=GM+&Ntr6 bP|w)-^X|f@N6StE^CN?&tDnm{r-UW|Sn#?# literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano18.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano18.png new file mode 100644 index 0000000000000000000000000000000000000000..f2f54f4a38f173d4c38114f0ba7f86822114a769 GIT binary patch literal 882 zcmV-&1C9KNP)LDY*E3FKV- z3q=12G4wBx96SYzh`o65P$;oN3AkWxOVgXO#zRQsO{wpj*|(Wpx80phun(G@-TCpp z`QA70O)t|0TOk0QM;}iI6OVeIUtIdH0N@zU=Hm^bU2fcYb(#i3#y$UVKNFxe1Ffwx z?Q{>wU8@oeiR$dkbOh(9qdwU&gbG%Y`p69c26{bX$5>3- zH`e)Qy-dgNYvfdp=-ba~Y@W$VR<1||pj5uCsTb$?)@o?lg9D$Yz zf)w@TilZ0$j(ArUSUAR?Fb8Y%@lCFME(0(*cFCQXAVB&4UWqpEO;spNJzyLXmKYKj zTP%HN<^joi0HSsi3KL2f=XjrviP@M%U?oRTe}1acPDLgF5u#8jARHDXglNVafSiU7 z3EJE5Mryu140Wc?;ZDGUA6}nWEM9%Y*~0F#YmX@>HNYOw@Vs1}@MCY|xC*E}H&Ch2Nl7(hEzz0?Od zFJ1q_qSHrhFd0Q-ZEnlC0hkHt<+BG|m`K$Dcf6v`c+o3*E&%3ryh$7CRxEYE8f1j%lxFYpzFAUl-x zpjhksV_TN(kP@j!?#Fa+h65&NJfF|sm&@f>sd~u{c+Z?>O4UmNMxD>+pYw6rGEQ3$ zBs)NBRB7V@jL{gStq0tNfHVp%9hSxFZIR^wbaNbQwDvdH&6jhv!6Df_z`}UR>-G8* z8m~=&Aj<*s$D`#X5@3oE;d9yq2v!}SF=GC}DXdq@_?Qul`Q_W6M8|pr*Rfu)#;OBi zMlj~l@-Uv~Ea!DDu`DiQe!2cvUzVqm6asXLG&sChim(Og6c95Qt-ki`7Q1o)jAd7! zf6S+>#>6LthOz5Qqf@&+*_{OG1ct->quwo?0A&2*8iwOs=8dg6f@HS?r18s#PBJuV z&JkojV5>`qq|6brhCv!nWI~kAsYR^I%lx1TiL4L^%jB>aOO&OEjS{jKFeEhZs1Gc+)bEn^#K|lk4Lmzn*c$V`T(FY;(ouM!g?vjgD&*}AZ7$(9xV^! zdCqcPr_ilFAO@WRgJ%as@1^2OA3*qbJdW4v^;4GG^@&S;0N^(n4!7Iwy~hbI^#MQ{ zk82#~-td<9`Mb8><60j;EH|pOb2H;AoT&vzcq^vZM{^?^#NL=Y8VfOKA_;Y>q2j7$gPDGLP0A94`RINp#*X+ zo;-^F2_D4Kzo6t?2qJn>>7gJsLI^ZqZXwC7u(pR1*IOm-H*e>4-rG%TL2w}K?)x$G z%{TLAUS{b(%as6j9vzJFeDU$YOxE0_@kx8G1ptbw+X0=N6{vRpX1xFH<%~Z^vi|A4E!sPJ>m;Kv=6L6p*UZJCDBz&LdOoqAi0YkYJ;W(QLJyws6jW~BAMugX0=A&U&+yBd5ZQd7L$@gMScgTZIH)qzZ6jF5n-uj`?U{gsrO(c$Ta-3gz(h}JWzDkZGncv(`bS1YZa5I10|iYK0oFnvCAm^2qiBxjD;Kjnwhemsc2<&MB2LE3}pYDXAB$##@x$QT)xN zm?gAjcy75ur9`3BhH}D`@j6mfv*{T0nX}z6>raLNgCL=BxjL)|pOpt5!)3pSSVoKEby-eZtx?{jPfa}`ODU8uDYPobdfM%aqupA64D3ami z0QoM;Gkv%Y$WWaau?}ij9EnmLhQlFQR=5s$e}8W#LiElyfJ1^PoIu!S|H8|}c>loo zC?i}4&>E+ig`xDDQ(r#gabYhbIMw;=YDVK3cUF`U%@_a!$r$Mf7z-om8Jv(cKC<5N z7e-^oxzTuz_gZI#e-7}d&JFY;KZ0W`cF1yVy>qI=Aa0y=)K=#|C&;B>CPGSP_A%>P znFqc@SZ&DmWO9N*N(Z!HF=lJ?qdc4l@wF_syvXj5%@a6PHCpp`IsL8nBwJ+r_&*c_ z@IUB{$ZsLK6dL{hqcxy8L#rp3!mc0)@BkQjfAEp`!UG_lH|i{{_Xw#>@T}C=I_$J& zlY_^TGy}Bt+dHG#WuWZ{*-H+uEeX{DGY>hOzVi7I{h3SPtjiG#XIzdDOb4_geH5eG zISPm02_kKt!6v>XT5M7sFmk{YP?PUpBKvoyE$&k(CDv;E$e0RJ&lA3!+kgDdZ+j6Q&H)D9eZuPft(jI8s_4@cR1NOoZqiLXYu;vibnRw#Kh8lz#Io zHu;Rlg(xG+=mRW}L8~Dj#?W7GG>qj=r(tY$LX0S(55VACsVz6!dXL^AM|tB^6QP;< z01Tf028FdU4{(ClMko-<){D5nn~95K@t%IX8oI&GHK2ecynsCK@z zK7fF<*UeE{l=qCW*xue_u_pmhw60?tqE0yFgi=#%Oo4VJll)G^V-sgyoI_9=7u zNE(b;k7kYK^Z_0scY#B%#5Byz4G5!igZrnk<(uQ~fYuA%7Z|H-)K?qAbbWwlh*dW7 zGh;6`Z9u>0okZN zdP^*!515(y9@W3<0FAo6o%bw*>H2`LIMWu)B{2K6H(ehv8(&5rAk*fv(WMUyvc3Mj1)h};Dp8SF~v17;^l dcYVNM`~|_m;&jYj#&rMy002ovPDHLkV1kN%hkO74 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano20.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano20.png new file mode 100644 index 0000000000000000000000000000000000000000..e98edc7ad9c781b8c3289691897c7c95f5a9af96 GIT binary patch literal 1056 zcmV+*1mF9KP)f_usn{!xg&Ju+LaOvdS16h}R5;!;gcuGcxJL=7juoZ#U`LR@f zxOy$ZpROlog0p*Ki$VgM-(EwLtJq>(GjE*F*^DNZ*ZG1lj_(ry6p)<4I}cNWYJc`D8&3gh+Hr=ELtn z#h|}p8=6M@fwPU0tR+iJa zPy`;MAJBDwGFkVn3B>ETxh@7p$`ryZxcF7oZeq?CnLm{PJ0j|Q+89RR{0)m>MG7Jl z%)f0KcbbY6S^%9b-Vq72yP+Obx^8CsHQ&>QkyHZg+oq;*#QlrQ{SsVCJ&R1)+UVF@ zfPt4aS}_ng3qUyh-#Xt;+yzBg57LlZ33XZpB#6Nzx2f4k1}tQCJB{ zf+d;NZ?*1EN6>s}rW%QZTFMZT)e$oZn3K%QXD{T=Jv9NH42BK%0=8k4Ya(6^fvkAS zEkw|II+*Pm82Y!-WJ)67hYQl|oI;Fn9tKmiMom6#Edwr-r^MC>O30000;{M*~x?`?ZXHKDlyv&0i5 zI!8S5bX_1MUh5u14e;1Kh8mC}-WtSm2RDh;Jsu3OuF{CBXI&-!J&^lT%+cCB7+{IK zUaxl(w05n`i49_80zRW%$;i)1?gHDvkNb)5CiJQZO$3Y~V1lfOQnJSYZUicVs-rhB zh8w{vV&8YR{?4L!5QGtA0yky*QQvLI80;$rq98;wVmr@Yd{+KGXhPHgh|&n(4+5A=BNPL z_A&wD0EE-`d~lTQLL?agp~eq9@@=S6O5ojKKM%%$``AEYwYx+r*|))2K&Z7JbAsIC zCK(VL0Ap=y&?ZN+Dne~zRNn?iAO-P~$Ca12$yAywhFTANDe$pi$W%D;V~#CN$XWUE zyF`fzssSbQd_DuLq4tV~j+?X^Bzi1zQcW!x$YO*{ZPEoo^8}D%YL0m8jv$X`nObcC zpA8-c!^Nk}6SVKE3>Yn5PIOYmhsZKOo92!bua!FH{oI^x6CrIeB%c9j?OMPmKfqcg zc7HJr_}iAZfk&i=6w%phsK$f5;fHpK$8yFM=(BvsZtTYy+hD zk!HyId5cNYa_!O0fZ&;>+9>sqj=t~#vFI~0E^Gh&*S#*@bU3+!|!NO5zFKQ02#4=yy0R{ zb(G>hA7FuspmV|$s*d;f_wP1j3^Po{bv}TADD8OY4!j+zAtoHS&Ib^?klV$07fJAa zsltK#d;meBwyXPaTsjxZ92G#@924B<0|*G!fLJjmBp-X3d_Zn#r{X>zK*R>XSlbXw zohgfLw4FC^5lZK7c4OlWu_}UBX>Hfap<4mZ>iD0l9?c3BWRS z>3jgeXM-hwzf?XzQY)TVCLcg(ldswt;xhRFLR$>UX8>Be5KH9)fD~O*g-hiF2>E~{ zcl9S(E+1e$9V%t1d;lTE*P8KqH+cBZX>LHx(zFHB^8qu(6R&(gCPNMI*gb|C;IVr= z7+_tcQCDwzJ|HBLKZ@q=-Q)wf5!TCzp18>ea3f@OXzf}vEFS<- z*1)KJw%V64Js*IV4xw_l2FDh-$Ol+&UU+r%92}?T1437yzn_n_EyYDXVD>C-YCa$~ z0LI$Z;xZrLp(5Pm17@%Crso4{-p|iIziPnjD>^+N&_jHVsmtX9QttgdD{5*!AhcE( z!PI=f>f(tk14b@)HKykSw8hX!Q{3bOdaeC)&Oa?5Ap8C3$70j-0mRHn()4_Q6hGRG dS3aOI{{SKh>i1_#dmI1&002ovPDHLkV1mISGiU$+ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano21.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano21.png new file mode 100644 index 0000000000000000000000000000000000000000..3a52696a118887c25f7dd305a19206da65b9a438 GIT binary patch literal 1001 zcmVR2QX)(8)oZ zx(H%%aPClA3NB8igHu36=%PiTAhALSG|+A#>DCf)2pH%1zH{GsIq$yvUVapMmY4h9 zz32PR?>!l(OP2paVEg`;?#oYi$1a5cz#l)&`oBga(U$-K@D%0t8d9%Z_1Cw?($4iI z;Buo__kOSCTnoTzd#kI@t==~4K|C|A72BJu?HW~gh)O@!$7D@=Uc?)C_w3FiEJG5! z-zTBZrV@Y>uL32l*aodY6vM)W>mC&!6sSlAdh_lrZN6BhS33tG85>y6*xm?3uv`8R z0Tb)Kt~a~-8=m;)&Cc+?n{!0ZpRD=68cd>fcFZJvu!uJSjx*bqm&ZjZ7)s(m5E6I= z;5b}T!~}e5vO#o#r|-M7I(<9L_}*;#1m+`Ngl-OJxyHJj9*|IgJwTVvrfFjO9&Iiz zN0N^7;MDxC`A?9^FLoH5iJjtoBj##xe~F?J5)dx{d}C|Pe7tBdID=Y(cTftj-Lm;! zEl2n1B*i{grA0g-ar(G%#36uNi87%ZK~fSC@3;hm3`icuySn6p>KF^RA%=_FybF}B1!pyO)yf0y7Ma5XSCCWyD_lN?DU0MRl0 zSCM4op0U^KC#eJ=NiMSmJ)m|P2gMWd&)hhs?4&7Y*QJz5z;=}Y*=2+fRNDtJV2H^X zKlu(@iP!Q#1Bp3oTCgOdv}CMxtCn}tsQP(wsEJ5>0c!vO5ZzM~3aw4J0f#1FUs8yt z0Hgg%iDIoqcg>Lrpo9Q6F^z`PVlS+`E^vp#MRopbhW<1SA&-m)N;J5n5|H`@D7szl zp+7ZUbod+Q09?gdu#YHu=MOXyC4tLt^zr;+p3YCQeD}lpE5AQeHkW7X4RCKC@;I)i1Q!8D zlIN|<&v7h~*F;8D0N%Qm*0$8my)18CskJ5Yn#gzxAiXRvv$VE_yhJQ5v$S@pZi=S> zyzRTDHE!U#Y$XQ2-DENUfdokOng9HdF`XU8g}1()MfbX^_a(h*7yF;e=897ccf^NrQC050PG$Ew8;{O z$4sJ4mNL)&DXk^}wEz+Nx^%7f+tPJY7nr&81N7|tNHC89kwoa(3nZ8X0P!>f+)4~0 zO8Ehm@rY;9aB`~>Un`O!}MG_cG(a~fvF6H zDXHPzz;iPs^XzBn6VV*`R2=sRcswXO6^`5t;Ydj)@725+0;tCT&%FT)csk3!5%k{Q z{9S-!q%cIjWv@?*ssLLobqn`aEp>Z@3IB1lcd1)LcmYP^Bf#?J*u6ghz#^@6Fb?kz z(4c1~3gZuuz+2bS+M2o{`~iUUvb@areW6-6gg*f2T~M`-17Z9D9)Jj!%VjyA&+6xg z^alW%7ESjgti%an{Q)2Zl!Tyi)M+6Pg!BghAf)ZrL#Dx*{s4gbvlk>WL;C|-!hF8l$2 zHd*4p;J5yX*LUF$07m5(yYdJ0?EFaBoj<@^gkAUp2=tMb&OO8k?+*a9L|X*eg+Bo6 zcuo$}8-JHvy&A&%1Axam{!U2^?*{2+NNLK;VK@GObTN~X?AZ(f!utaN@4bN(q5T0s ztxxv~6WSl3xqt7b$>-zf^5*ymu)H~31i-4yYX`Rl)BOQ6$pb_E0lalBt?dyRoB0Ez zm*r&^LYBJI{QJQMgXquA)p2Vm70|+G{sC>jUINcwB8)}J- z2>I#$03P1GutrG;e}GrZwu(8`AK<;%v66Wye?a7=a<>5I9p?eSX6bO$jImpQ8nMx< z!_E8w+GNRkU5n}dfW7y138pS^+VReh1oIg1Y9g2fp!|T&w-#fXKR`=#lpxdn0YGkV zP&yuw8c+2HQ0UV`bL2;Mg%JLLwGYkx zOn=p0?xV{!Zh?6SGmr)b|PBM5SateGTHy|0j)`3K3!T`QgfDx>9AYm1_53s9U zQ@~d+V6^O=020EsA!+-5l2fsCRMitzjh6g>L5$-@0GiOq0lok!q9m!`gaix#0000< KMNUMnLSTa3qSlxI literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano22_on.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano22_on.png new file mode 100644 index 0000000000000000000000000000000000000000..102b142a71534286be22850df96a24a7fd53633f GIT binary patch literal 445 zcmeAS@N?(olHy`uVBq!ia0vp^4nUm1!3HGP9xZtRq&N#aB8wRq_>O=u<5X=vX$A(y zd`}n0kcv5PXWU-fY#_jTe(EJb(LhPjKw0<$=!&n6^%a+M_L6AqO-S&8I-? z=B#9`c|7~c6{dY3eT%XfJ1^c>SuQ?7;-~K?F{U2D`zraW2`s_fK({w=rL1shAxbS7#Cfb-?m73W<4<2$*(yDSZ%0{EOmjoGPaZGFcHfpPiU2dV<3JB*r( zbJ6q5``Fym!(#-v-u3O+9GnAA+R;E&02+aFK-j|A`RUd0SsLfMy@PEthxLHKB;-vKYfWBE#p{rbET&1;|r`l*~21XSpp)6(LSQ9%q>WvKAqn zV=Rtu3cnW=Dnj0JRYC9GD&Q$;?bcxgofPz9}u_5Hn8KpA$R{`h%&O@!Vth~n% zLJ`Vd&n5%mDAoorc<)c>l#*{lWy9|UupuDky(;HH00B{({{DZ%y7dFrWo-!jbM=P+ O0000O=u<5X=vX$A(y z#hxyXAr*7p&InxBtRUdJ{ABdRbtk6oRJuE9{e%f$7Bh#)x;~q;Bwl&S&QqPA)Xyn0 z6!I~46mvMtab}20to~dzSvscpY}~Zeo5u=kWOpu0tIc9aOvr1x^km_@XA@;xjur7f z%X+x~dg;^;+7s_GX|k+UJGMk%%Pcd!HM+gpcULT8{$^Gc=CCw(fgz9cRjFN56W;Q^ zh-xyO;rT(sUF8RNtk(zeGb$Bg>87hLu4Tz~Y>Hy!f{)a%=r^&z3+;MFK%R~jC9v_bl`4bj| zIW#q~C<_a{k%rjY&Tzz%MFAF0vv?n@VxF1CyyKO_vYQM{;W8&oWE~Fta#;40VNIqP zgGvX>!~_;jsmnPG9s-<72RVdHfXXH)2)Q%~s$}p$0{S!mlt)W+W*uH?1dKxlPgg&e IbxsLQ07_)U!2kdN literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano24.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano24.png new file mode 100644 index 0000000000000000000000000000000000000000..2384abbce22627ca76ded1a3d1caf150fbaaf25b GIT binary patch literal 608 zcmV-m0-ybfP)Mpkx`-VVHx~z|LvU~qT%EMw|8VvTe#dJrxhBU+2mO}2q)FZ{@4dWSN7Rt@ z4`2nTZyYAF-8$W=gf8s6Mh1WrXXod1`|M|r5Fu+=J+QgGrk_*GAwnV!(?lcNju`OytB9H%rIx!=@d(FQ~*9*E$qK_ZqYWBO_oTnfF7?IhGQcDo@7lE(>AZAFkuMD zgrHmT#13)vF7M9!#=JP5}K3YUK~BR+pKKJ5A>Cigf77VLSQBrU0p;$ z0NACi^ujnwuIs`n4FF;Zw!yhBoYDYj07*Es5b$%$)ZYjJzU_OiPGksJ>53e|U;qfU up;wU7(#+TwFO=u<5X=vX$A(y zO`a}}Ar*7p&h+kUG2n6G&dfW~X(6fJq;2@t)hx5lZ;ivQSGu~1kFIM@Y_p%B%&6eb z&i%{I)(ZL;-ZLDw zE-2~W%{>3@s@=A$<}uyNa7p?ecYSLWZz$6|DZ9JYkJw-Qk`egGT%xPM#K~YO#87mH zsZY*!?Ku{A_o(-UmJh`?l%Me}HA#3sWA-c6zg@)K+v;1Ag0@i~RS$?|cAw3jw+zTxC_6#?MR`ME`Nnj8#V8(` zjjOxnGiCm`WNx^1$-`__5$=kj3gx7V#jj*OT=~%1G2^8IOOXo06OV@PO^e;nNB8dv z-@*Duwm4W;Hb|r~uKljF;D@*c91L9zN((rA_6Ytk1t~^2=7UjG{oJ~_4cFqA$E!P7 zH`KCA2-a_Z|E*$a!!#si7bGvnFWV(7@HcgpHKW^;=_}u{XfT1z)L=Rz*x|$&Q!`N9EgBMI z`O%grG-lHOyR`nV{66K)HYE$*ND6mHj04HWOG~TuvoQJ5g_%< z^ig?-+h){6CPHIBBU&k&Z%s4-OgdOp3{p!otI5UfS<5<}(eLa+PeOn*25<(euZj>8>08;<}002ovPDHLkV1l;xAJhN< literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano25_on.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano25_on.png new file mode 100644 index 0000000000000000000000000000000000000000..c9d62539477538f580a9c300fc89439900467c0c GIT binary patch literal 557 zcmeAS@N?(olHy`uVBq!ia0vp^4nUm1!3HGP9xZtRq&N#aB8wRq_>O=u<5X=vX$A(y z`<^b2Ar*7p&SLC3P==W82YR` zd3Njjv1~4|^MwRBZ_QqPQ}*_D4$cj&x0>enCpukWoT%`N&mb-KgYhgT1$QQgb8Zf~ zQ!0ob7i882=2Ou6{1-oD!MHb)u~a$8SqQg{2Ec)x2VW)WYoC4KLJM768|~OBM52JU6cj zK$B^2-B}MA?$2X!fSx>hu`plrNXjvo9)M3~(#P3BJDINNoVQ()HSsZ&c=v8Io4pEx z*Dr3&e>+STz(tk$Z(hC*&sgBnv z0D{o_2xAi98Sndi!KA{l0N~=7pLyRkq9>P^0+>T!jNx+S3EmJ)XFZ6X2PB$uGd7)G zYdyBN*B*r3Ydl^LxW`-f0uVVe>Veo&M^0iaMr<9*L1P=L5j}u;Z9kfnD!s7>Ji8SZ z&EMX8K3X#t0Cdz+qB3^tus#-tK;8g^->DEKLoh__uAWSPeiLZS;V|N_wLDQr0pta; z7V1>|`ArTesoVpA`5bny0#yWnc_Qfuc`abvigG0Ef z0I3GZJ7c>a1W0)T(~fbuggE0}e8bMY0Hx+v0jT71Cs-v5$;22J5Q4Py*{Q^NpRu9L zF9MJl#;2Abh$~*e-Ck}PmpFZ%4`qHa0Q7i4f)YrXdr45a-Dd%0i0e|Jl}BXsf%M&% zej5$~#91Ai-RQvz{ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano26_on.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano26_on.png new file mode 100644 index 0000000000000000000000000000000000000000..31b6dd86e296974936b7b80518aac35ad8c4fb1e GIT binary patch literal 604 zcmeAS@N?(olHy`uVBq!ia0vp^4nUm1!3HGP9xZtRq&N#aB8wRq_>O=u<5X=vX$A%+ zK2I0Nkcv5P=LD`hq#)qB{$zB&{4S;NYoa^V=GRP^pt-_0C}B=@-K?PY1DeKJUccHO z1TZu?Gji~;Dp-hoc*p$x_us<3asIdZ))r36y)C!>w(s5Z%L_vpD?hxf*co$W^2EYh zKWu)K*vvnl#cA{|^pD?x?alsE3Zpt_9o(+*_@3t-&IyyZ={+`zQx5dIwdv1ki?3W7 z?Dx5I>#uo6|1z%SwwX6)-j;LyZtGU$bFGVV$ldg^W=hMgl(k#67K%+!kIp{M@F^wx z?X-VBng&HXufK>~?4voMZxh>zZHrHo$6sT(`At)cajnhyT=(mZVe_7wdCLZHW<0I0 zlx4qk>i?%*+x&wCkGNF*cYCBfAGB;^@=qT=Ru?Z{3isnj2rN)0NF`1HDW?~7FCh*WMGy#gpD|hj-n~6oxO#1;Njc=(54Ss!4(){F@4v#8 zwfGP*&*A75AQ4{oRGLc>uZ_u*0>DX=Y_x_BO&Od{%aKaG2o=4jJ2#wq=Ku?o2?#wJ zi2>?(LBzf$HxIIdh=nVo-CBffL3RO6sb&;5uiR=iE>RDW4+_xi*A`@tYd^=^5pqOf zI1?$KQ#2wvCBPs=_NVjRA(2DgH;O4yYDUC9$JR$J0WxHv z&H;~H-}``FeERkI>dhC!k6%9OA^D8Yg;og=F^#x(=NiYVd;D7Fz{YzO=u<5X=vX$A(S zZJsWUAr*7p&dKd#R^({Axy1Zc=d+aJMc=&c{yN+eVDIoz`-95tlWy&&v=?1gtZgWa zVKC_9W;j;Jc)&u>Vco;8RkicZKc9cBeanqq?|&D^PCxa0dX6gV0p@ptO82Dysg!+a zsBY=_-nM_v+($w$dYM)}o^nq^!&1(ZYk}ymwPstL<|j{{%VHmY=VXq zWdBW)^_*4G&2(WV&-F>oTh^Kjz3{nKCVJ~wXUignNi&ycxHz4UY^mn2=Jb%c6vuYy zbIX$a&zl+U@@~0a%ezZ@%R93q#sa$&TYFiaH^byBL{GKwn^1-=*Y*jUE>?-G>s@Whxz6dg zXX$Ab3t@4Fp2tk6!NwqQob`n1nJWAJvz9Oz-#@>8*$$SpJ@eyzgBoVOe;$6=uPIUO z@YZJ>+wbd%upaPxFz3Kt^{@Z)HYhQi*E+s%@}dUSh7|W3wl4!$?RMDV)}9qPciUV6 z&NVU@j8-pqVFLMZ7k?Dn+4D>#<~#VJzDsOmu#kUp%WqMX_8QmhwHw6VL_M?!uu3@D zkOB0|B?ot#-eo!eI3`GEoDYl$dSdd3(JMxGo>a!`z#S>US&Q4>CB2-rF!R-hW4!TzY*0S`IR%8TR<{$enAU^ z@@wI3VhL`whpsW5SpkwfapG5tGKlQn~itz) literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano28.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano28.png new file mode 100644 index 0000000000000000000000000000000000000000..b0dbcf271221b443b49a85e218aacb0c279f06e5 GIT binary patch literal 629 zcmV-*0*d{KP)RCt{2S3OGuK@{A8KS79Awt__pAzWo)V<%cDHns+opoKPq ziUw@7P=Z2iZA1&j&c?#(5G*VNTPqFtAI{9-B=0u+k-ICzkZH{A*UZkFdnQBbk1-H1 z5YWE@f?z2c87->f*l>HS`SGp3KAS2GuL`*Y%+0Syceken+q@*7nwd__-CSJ9^AwRu z0B+$zDVR{3+pFsN<-KbTqU8QuC2%=$e0Uy<(DC%}n0Ph{z`=U$OhhgxXuZh=r+~^v zEs_TavPg!RvT2gHDKZ zm~C*0zHUu0Bfxd=t4}Jm=6XF>$rv@cuQ0LksDmVE1*0% zu9j!lVk;>Gn{{%OXJKWroozjno-{dKn^GEC0)tf?C8@jEg`BgDcD86kyAM3{V($#*u!A z<1qV1n#~a3FIhBy1Vz1-UvQ7LnZ62Yf)%b9F*&lo>E7_aRd!L>&<% zkbzi|>)+*E_{~FO=u<5X=vX$A(y zkDe}$Ar*7p&IrsqWFX+89^^0LH)V36(hi|id!2<^-*)wwGrqT3DO4Ktr1smI%YPIs zg&LlCFicWr^yp&&b6PknY$E4<>Fa-1w%b;3`sqi#?VKBw*524#DAORCdGuZH{(o{( zjf=b1ZrslNZxM%!Z-NU;Rm#^{{3C~pQn}^-PJHJxYU09T2-5Kd)t@3`K~h< zv@dntl|IfcDAnk%UB>UapmgK6tewy22@1ZLc$8}`mqu&l`|Ht7Gdiap+B5gayJf2y z!ahE&`gvz_@IUX>KZ^F&q?I`uGwr=yU-Gf_-dlMg#>3G!R~+KLcd9RAS^oEij6HG& zUE8Z0*sFQu0{1w6Z4guLJE%NQ{KfMIu^h(b?-;hRZxH5{boFyt=akR{07)nGd;kCd literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano29.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano29.png new file mode 100644 index 0000000000000000000000000000000000000000..9006afc5466e6ce93ec770fa296839b612a89804 GIT binary patch literal 834 zcmV-I1HJr-P)N^-tYHKyI>li zSS)e~Xrte3HsU^YgVnAu4Szy<#IfkOfu|x z5J&Xr0O|$;!~l$yS}+92X0tqzNC>N`?Z^eK12o6;*cXPwp`i* zh8#ISutAv_cL7qV6pzJX>ZU`*M<5U(VM+mY1pWsXMx)VP7w!U}=P|MMsRsV_g??0k8;JVQ})&aYACX<^kd;tgsgWTuy zU0F*J3OPu63|F3{q)0OXA+5D4I$Pp8u_E?fb4ys06A3@xwZ>%H0p>efYoXRI*z%=;}K$r5Jd+NssWtiI)1VkiO9mTIMNFj-rwJq zn*b67BM_I%b=3)oo)(qg1A3xzLDDn24wwZYArz)w|C2BYE*6WMI)-mUJrFD|e+_?p zd|X9}A%7iRiq_mlWCr9iXMVq*y}iAuB641>49lP81Tvq`*`FA{0JpFw^MoSL)Bpeg M07*qoM6N<$f`jO7Hvj+t literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano29_on.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano29_on.png new file mode 100644 index 0000000000000000000000000000000000000000..b80400330e4b44fcd08c57fced14a5a9ca2652ed GIT binary patch literal 825 zcmeAS@N?(olHy`uVBq!ia0vp^2|(Py!3HG1+{xJmq&N#aB8wRq_>O=u<5X=vX$A(S z*PbqpAr*7p&WX)>Z6Lx{x{&+w-N>@A_iMI#{h1K5@vHrXGkaLPHaZmVOFsJKhcZVO zQ-TP?Wz`4S&+q#++?f9V&h-EM>*{Y`-~TmcaiqhoKMa%1qPepzkl5j{Ic)g+V4_Fnb!RKcy;~ z|Lyc<%=@?JtpAOs1V7e@zs0NV6PXg?xHkNH9$tTl-Hi+_u1VkJrJ^H4Z$R zrp)`*Zr}PFjaqOC<62qSHnxO590S8-rrewz30dT7LA3mO}ZRu zGZ=y|Ok)yeFb-+ZT;UIN&P&)~zd?3p(=_uN zeLjw-^;wERI!?1z=vVjvEem8gW5ihhcI|WC*ZDj5^9w&<)Bl$`N7^pU?@%>E4=BAY nW{_Y#0FD+eplULOezH~1VO?+Vdh=IcUSRNa^>bP0l+XkKrqNbf literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano30.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano30.png new file mode 100644 index 0000000000000000000000000000000000000000..c7cac3bc1b329311edd6cbedf5b99f5719b535d5 GIT binary patch literal 704 zcmV;x0zdtUP)K#uElWocaZm(@E>1iDM`qDIBs=X>w@C`}tntSi} z-uv#7X8L3M2dE2RJ2+siWi!T~0sMq%10ehP!52yx0n2h4VKh#3uj*AD(QJ!MTi1W@v>74hXj4 zs|R^UaBh`^6VO->KY)u#WEO^5IJZS*Iv088NkqYt^|ViO!d;y;VVVf zTWLegaV1zM)8aSQHC-Y_Tm39Jz28XsiNZ|pra=yF`E5<(Ndk%OPVQiikoiS8xXILPWy1#oQ mYk!dV?dw{tvAzj^!#)787j-Fq)l%>P0000KaP)5NI(Sq-2T%ocKn2hNf@)|a#~|&~ zYUSkoS+C);Bi$kLAd}2~NbHIKgqgzysQL2!ejnEB^&)hF27j>tAiv#i-9*sh_Yx@i z5~;u0Y{L0`HqQd$KOT=^yWLjtS7pFzwR#Ki&BzvjM;}-&m!?_3qp!j5Js{`9T>Z!6 z@wo!3XnHJBF8K0Q2SSa_z#D}Zy(U&FUkPf2dD{JKxSVpf3g5f)d2^9f4CDP za;PsprwY!G|FrnCGvIVOEna0X(0l97PyCdD{I$1fN}g|n*wJKVY*)%Q=MFLK22KjvTWF{&>Y7RPBtXn8OryH7*Y?cJUf@J3z|Lf-3gTz|b*UrC00CxC zBZAorbCv{dxD%3?#VBMSNziTu4R<{4kyt?~RD}S6-OZawsLaRH6TU;PDR&ZP_P_2O zVg2(b7;+NW$%J%1GoMLMV`=UXnfDX0RH>4O*R=|W)O@>tL4bhSU|t#abSDGf zu*HWAzR(P=)LNSRsz`W^7Q6EUF+~0BrHn1VBi#u|M>C6Rvk!!XI5Q{1bZQ2yZUpyJ z9qqrD0*{^@Am&7y^Y0n+e%mSeH5Ia~IoAx5ez4ZL(XwSZ5~%|?g+Tlu0UDTr*g!Jd zRILF8XN)T5efDrCn;_5A-GK!W%EE%1qugfWJMo?|u7_LK@* zsObaBE>{9U#IDz8y6ZWhWnViEeaG{_QX{#$*`Hls1Uf-f$YdX=ELSnKUo!L1`tJm& nf)g3?Z~36X2PSYDxFGNc{oREt)$dl500000NkvXXu0mjf469*z literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano31_on.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano31_on.png new file mode 100644 index 0000000000000000000000000000000000000000..3fa6136d4e051c3d277b00a9660a1027fd633177 GIT binary patch literal 1140 zcmV-)1dIELP)P>j@%LLG zYa=DnzW@9w6fc&S^$*kAwEdHJWu^*uN`~80SUCS)6`E#?dXF$xwQvKWQW)_Qu zX*n0TvM-mvXF%wMcJzt+{oW)C?C3KCbNPP>;A()Ij`@7k438~gTpay@i0CJ)MndrnoUK6$WleWTm4mU6LLC$5UR`hG~M+v|vU_AvHI)M#J ztHIacPktEUegMmnQ9vpFXaQst9#7y%s#WUO;Lmy-j#-Cmpag%C0E|M*iLVxaat5#y zT7{8P{8_hvW>u&Ze?Jm46Gs=oOdMT+oDcIz$|yl~8N}dm7@;LX_XiY0k^p=H<8yfH zEGX$u=ot|E0Y=~U2eirpyGDp}fgG1e&w!YVUC{?x%>^!h0+8bs`tLI!_fRBQ02zI$ zJ|Ji0T3O)pC)oVi{s7kixaslv16Hfm@V#$y6e>)LKSAtQ@?I{_F|<9cT0S zJEPzm=qC|U{R#HIAjuyfQ#`gl4}|&yd?Lj71LW-&%b)EJ02uw&{s24s{-i&^g%bQe zH1`MiCNlCPO=|${zV!#hE?uehc^^ja58zVB27UE;M7Y*IK-C|BL2;$%{s2#XzE<=@ z`K$W_m<5TMXXi56CrVWIYTa0^0t7=fKEa?7#f`}G?(YNdKt+Jr>`wMyo#9S<+FDt~Y=7JjUFUZaS3i9rMcgKui0qp1# zs1@Mn+F9Vb_sL(>AK)5*Jo|HjCo_Oggiv8r-ygsz+u-2e`2+BkQE&~EhnVj~(0G5r zAb?EqPxblO!$?`5_lc16{s5qvKfqO=M`v+9ujLQO@h6PVAJE?)p!NQM*rjW7?+@To z$Oe7&c@#}+?E_T(0T>ilitZ2a)aPqOKa{_^KR{-I{r~$d2H)QwP=P;M0GS1x7+a-2 z(ES00`I7`-7PO8&F$#YGMbIjYjKUwFSrr1hKcE06FTg)pJCOD) z7B?LP*9;C_1&7+jVxU`=jK!ftLFn)nryx{Y9!Q~JDG~_|#Xj$M-#h68iMjW@n4Tr? zPjbKCJ%8>wxq=I}QUINYSJTHkr&AXKK=B7J?xKUeQV=Qt5#N0J3(-b72yXz2&j%GN z-kAGoK7r+x3c_wLZGS)WhERtf+L+G8Pw*w~YnSl{psPFRr@$d<^}Z1Y+TGvK>|O;> zgrG1@E3O6*2#mqh0Iz3mr*i%B_+YXg5OG$)*8VknuZ2*1fZ{Wc?xXSHlZDWl8i3+r z@l-N70J=MRb_d7#&Kq+;kXC`&WU>bljXRGI3;-q^0@;0Y`PQ#%9 zlJ(N}dC$^YZ6&4wWr6{!gQmoD!Ioz0d^Y6#I4Ued0mR+12w@oawLJFG;G5Inc((R# zAp>V<%Z41qw%VtBI$j^i{tlABO$zWr(kRN6=LUSM4l(kTa+^{j6(8Odof znhS)S7fe(a8wnug$7{xzyX2n{ipnrTaXzQ8ZB9nqH5r{eFjy=HncvMu^3UeFR{vqn sfl3x44`DBWVITuj2&(}80vUt-0k&aeh`P3-*#H0l07*qoM6N<$g2-(=5&!@I literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano32_on.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano32_on.png new file mode 100644 index 0000000000000000000000000000000000000000..469031bedb9a3980fc08d14f71e4ecc3c8a34f3b GIT binary patch literal 918 zcmV;H18Mw;P)A(0H%Nqm;g3FFb#|Jd(~UY zR|P4tV;99Iy-2^RF1b3Xn_TlljUxo0#vu~ma5!}5^Lar|(BLl?0OXs^21OSUwD^k! z_#<_T04;t|7w`;!E&dn;OD}vp9vzq0>$Q0#Xz>>b0P_3&{_ogQ1Wo>I0a9{|!YJd< zN`#dEbUM-Tcogv$cL6khwOS43^ln%Ijpuqu_=^SL#sja{i##FW&k}&ckJU%`;SMa9 zOS)Vx)w@B;|9n1&J1^xgjsR2u%7Yjc@PGz?kpQgz?RHyix7&^!pv7M#0Qx_a2cSMe za<|)&CAi;9`HLd}>Z6Qww6B196ln2h34j3xAvb>PKoH!C+Iax;WAN4D&yE0Aeq1p! zf;NA=3{m4KdKY+i&gxx2lV6kx;?aY_hx2jEOi+tI`ze6mo^YrLlOr#{x&DzvHNpIN z?BPkE!Cy26q$<~L^b{67wD?7{!u&q&H7l&aUnBsN1Ao7!v%|@hI7z3*iv-{)X|D)i zev~m5xvdL$^nY#sNQ9_ygaFhyLIBCd;SUIZK==c~AMouEjR9Qthy+)EK-zddwiLnD zACNYl-v;^r79wc-6GZ-iv=Y|P@+YYI1FTnwnLk~pEJ2n49R5@O0Eke#8%+5FP;n>n2Fz)xR{s8p3t_K-HlRrxU3~-@CTHV zYpu_F^NaieC`;Gpz4^l*K#d~=pvDmbP~!-HfP_5!0pSk_f56wHSb%gYI<>D`!POst z#;2dI;n-3HSARg-c%F*Fv6Tq3@&{ll3V-7d87(jye*k|)ZVj#d3$g^@@E?D_f4yFZ z8QR+2U{?DF0Ia-pjb6g5-hmu{s91{q@cdkr&GeuegL=q1Gukw>>r@H ze?gW27~npw&)3ca!XH544^T%4kbA)=Lz30Iz`JwR$AB~w1jg(0mYLubfAvg|8|S@$ sK==c~9}xb4@CQ)%1HvDmg60MI1(uVzSErCMTmS$707*qoM6N<$f_DU{`~Uy| literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano33.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano33.png new file mode 100644 index 0000000000000000000000000000000000000000..e13099bff7dd6b723cf4f687aaf22069b749e9b5 GIT binary patch literal 968 zcmV;(12_DMP)j?>&AbUI{>#Iz{<-WTmN1zUtsyyWu((O%G>qxmUW>4D1{R<&phL! zKdL~!ZtEbp)?6pYv2Aw(;tN12Jfg9tY-YFJ_sqKoE(oq2P2Bg)^Lt=?(0vj}5Qr84 zRJgx2go)B1x;Kt7ov*-p-sL%kRj#{q(^ZS7_x=@X^Cj%>4hg-7z94)V zNG(NCNbiWZUSuZEF_*7<<`w-`-#y8~^7^HBUVtJ?wY3sfcYCG2%`AMy13>qsvuRrx zzd-Iw99Gs#frG7ciF+W!X1|f}eu^x;{0gWf0oFevS3|P1V zp&vlGjeArqbY#FZ&Uamj0uetG#y|07Rml|6!?1*pRp92e0`-q@ED*RpoX7?&G(&zFAC{6(hdl(5kbmM^;!Z@JoG6@7S)53s5cjYS2jZI9g z*}W5KoJ^1rGfmxnWsxW4y04x<0Dg;k`qYP~E&yfRq2B@V?JK~{!0xciLYPp)DAMmt8h7WWD)x0i zbZp6ZF`0d!^L}Du@jDPf>zn|=DyZ~at0hyln_ZFW3C#PRPfrJAjLA}rF3BG2g(Vm> zyDDD*svXOTs>gh1o);q*o{pDF_5M#ES52q{!9%c83SG&yQ>u{4Fb8 zY^)zCF_uEy&2^Svy;o3TUSgEojA}p}U9V*vb?67wm1~KH!moKio4ek;#GqYJq(A6? qq9q3Wn#`~g1g@RF+y86!ujLPfCvt!#gf6Q90000RCt{2T#HTYFc4fM>Yy4B9Y6(i098N-R{?Z@pc)#<%OK`y z-#&knweL84q|;qKm$BDtZ{nT!QU=E~fDDdl02v(905Uj&26%jYT%Mnw<@57XZf1b#my%Up)qp{Py-%uCK4<>FG&wE#V3Bql*B0`Kt{85=(|Y+oSU2N8i3!;laNt z3Rtq*KE4;a@_YG<4PaZHgAn?mEGy9FN<1ZXiH zwB)bq0thQ40XcrN5YiE>ya#{Q0Cv=c5lD`~2kwV${6=KJxt?BN`2kPgS`-@qWb5bewjOxcCyBKM+y})R|N7a)Uu1w#{N?D&Z|!#8_W}BP2!%QX z@>|~zxZek8@a6+x%k!b62T=JC|JK2`+5l*2h8aE#fgJm_8@2-Zc~i8PfAhl-3c*(Q z9Q8~2;R(bZ{-6PDpNbViZ^sA_uhBwwpiH4B|7GY8oQ{&8I2$WOt|IzcYlW7Qu-Tjc zKLglsvjK9rDMm>S|7m2%#;z% zRv&;$jS_Y(kJMgWeu_hu%kY}%Io|*r>U8u_VR*KeFE}2jJrL z0zz3gn4eE2HEL0+55O^=(^MazVJnFiX_+KN>wD`HT=fAwZau~WN7V;d9bQNupxxg4 zKA@#O!A&2~YVa%JXUcpFstv%(T73Wu)f!fx0N|#mn?8V1LF)rNNBtbU^$DBw0X8(| z<_^wMA5fd?pZb7?|Jie`IV&uKV;VpP$25Qpj%ffH9Mb?YIHmzYJNXa+*w<7w>^r=n zmaJFh0q^w-T=W6GDj(zTvVMSV<=FfCt-Rr=>j$vkhw}4UAAqRQVmwIc z12jKVbItVuvG@14=IBeo++b||f+p_{v-L~X55T@$XspFatsj6wq}C4rj-?N1wtfIw zkzPO-kG;Q7BUs_m9-Q3z0UD>Ye!x~V(Fd#^&|M#(&vn-agyMfHKkt1XP@)eQX8izf zeL}SXFu+lqtn~rd-*f!{uk{NyJq&R!fUWL1>gRA0`T!b1Z^sCJtv=ufOUek6fxgz% o2Q>W8o@>onVHq6L05UlK090b5y_#ZH0000007*qoM6N<$f*Q_8Q2+n{ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano34.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano34.png new file mode 100644 index 0000000000000000000000000000000000000000..7519048cb58d5e446cd2a1717eb85d2efdd10641 GIT binary patch literal 888 zcmV-;1Bd*HP)i1gYlxod?PFVM6=;^`l zz(N8E0QtkMB(*kv>6O#l&-y;dA&4R!!n|ENc7lo+D?rFUzByK-IR6F_nawp#UTk(K zMNuAOUKkOfa^OX~sQ^_D>|CeztDX}e-+p(G^0^~I4p=nfgu(O_fJEz&4aeQpFX}U? z$0=u#uh{$Q!G$M@AKt9jWF%Uxbjn!`8)2u|iaB2o&*($rrcT22VT_+Ow@d7Id0kgi5)mRk(7oOM=v|jADBpQ{w zOfF-|1978OAI9@_0Q7!EEBw4rIl|9GBO+Dzl;? zF6@yU>MUUJzKFegl*v)w*6R0($U_S-MQp1Qt!xmNYCbm^d0+wVESHdj368i=!KuFw zxC1rLwyQFeijY7RSavtiE1ItWlU&LVF|^;RJ>vo=FdyZ}ow7V$#7F@kM{S$rqihut z^m#eDMG*4EPlT@n(vGFJ$NdrE`vC93U&|ihv8F-g@{swPJA% z;yD+_xG*F@$ay99V0Y82^Z?VVw|gx(=yTqOkvaBR@idp O00002}@p$adce@?c%!JbXQ36Qv$KyfE<&tn-O9VG~AeVo%0KVXX=kwW< zPc4EQ{NZrukJsyU7Ju{*;NZCfAO_Gm4RG+O{7I7_M38BSPAnD+ss+ivcPFa2WE@)JKYuO$E6cQJwtb;7-#l}9IDf8Jn1?S+D` z$v^j9jPx2>UvV9t04BkqV8*nk#Xt953=GYxNW&L-2jz#z$F!%#|7!@y^?e8-^3?V; z_}>BuRXUkkscSm!!^9+0H8f5&`F~{qQVX5HZ8B%4G;!hF)vn$BOFT!r@Bv%3@`I7_y*=v^WaEvEVGx*Z{ z$wPpbD~qmd~$uhwg{^J01n>WZ?7eSyWgKHLX-e*@PMq(Pc1^IL|?@pAcF@v!29j8K0lQR zZt%R{k7E^o0E+FafA>m;lr`OaN*eCIB^#ECEm(n7u$sQ1u5Ocx*LmiJ_c3q}jz1~2#95&YC5g!}=y?=ML92e|cl=@*z1 z%rA?hs_zeA<@rSlHBi!@;1$4^#yIC;;PVIIHVgw_`o|6nRet~n84`hy`6+-D^|nxb z{!@FQ;A7q&z^PxvA0Q{Xp$UyAp-=VsnD%66Ro)*EyS@+A=VROZGyVVuIzNP%{rEBM z0c!pL@l-l#eMw!@aUUioX{E9E2aJIE1IYXVRbc|8-iWb<$&J4mQe~+719*M?p5fc{ z2XF?MKR^NI4#$f_b<1hiJaeM(xg^oqDel42-0000z)DDwA|MEYMX>QeNO#SZA)P0J#Wq$)Ad(o6K+p>u3C9&;*7wiu?9F?(yLZ_X zPI0^Y-n{w0nK$oUo~~hU3v>R<)=};{F){-{yz=5cdGC+?+V9KE5SaiVzI^Y3-%I`s z(L{ELD+6e8vCX-0^Lv&F;z|HoyzsPW&1J2`&;YJ@YwueGv3q!%c<%7(5JLfIafnrl zCq#R_`AT(^c2+18#6SQMhp>pXUjMRu@Lj1+W`als5b@2UGuk!+u$`5z5$W#%j028n zl)Tmbp?e|`z!LwkNMGI^@OY)V5M=7~0K~-y{%b=*!~(>LFLv)x;ngH(>gA4UnZ_f3 z_yQ_`>k=9NVIlee+)D;QaL%+>ygFr)0(+_}zl4%eYfP2(XW@H*C?jFN_h%S#| z4FHlL@>*QpMS$NE#NF%xA@_km(8^3-$;%TrEQq`ek{=!+m^tT#V$k*20+f<7pbHk4 zjAuW8GQZQ2ut3PV?doDAj3f{PiD(E0;15$CoL}9|4EJCpeEUh8&A-9e!#2&AZqePx z3pD@rguZ*7U@mtS`Ongb6$cH<$%vl21p?u%2FEDQAhz}KJQSbevEXTL#^yO~JRgh3 zU5gX903_R*$>cN?l5css0nrmUst|@@4aKaJdH!x(T5&7@WL9gmb7il?dsLsfzt z)7KyncN2Kl_!IeWl*W8Fo?96U;L)45RUQCQqs>9_jVB;PEKXef(&8loxQ;r22rsQK z@D`yGoR#V5jZ!dPrvqODxaI;S0=SM4fdK3@?0Rj%_X&wlxw&th^|;Ja0bFsp*R_cN zKbz(jX$B1l<5RTSgNVy~Ab^xyPKDlM*L1d62Y($SX zxV5&zX3`beUZ0ANUy?AcYBV7HbjCWa3z665Lz($5H;!_~G0)es7nE|4$rhjr@~?*{ z;+A82DKCUIbIjP;oM9a>q76$4bN|x?RQC$5P6aclVFP^>gQ~yCNoL c1n@uYA7AF>1Vrz#8~^|S07*qoM6N<$f(*^K3;+NC literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano35_on.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano35_on.png new file mode 100644 index 0000000000000000000000000000000000000000..a4ea04b6a13e8420def8774957bce65d0cd31710 GIT binary patch literal 1359 zcmV-V1+e;wP)Z7n z@oGD^V>|qBpM;vGan5&1li+vt&K2VG^K<|4@!@W7Z{5w!%^%kpwfKt+Ao=t2v%9~) zKfdp2LQVc`1Jrro>gvk9zP@%dLB-eL&oaP@CmtRix|m?a*Wgb!z>2@VzCM43Wqj7s zgphcm^h`)Hz$gCe>+5X7)6>)OvsNbf#4A7hR>Hq%fEABr>>TU4&CAOR$o4Hvu;O7h z_-gS-4N&oTC7F_QyAxSe6I48er}6`-{6Pa$Ja+c}{(juic}Vy*&lB6Wk9wnredYA;-u6_V#ws)|!AfB+y-PPG1S4q|*fTk@YTg1O|pI@{-jC4_jk z;x8T%0zkecYVa2ukmGs_)Z$-t2K*102Drg74RC{F8sG-UG{6mxX@DCX(}2>3I^1Lj zF?wLrd;rCB=$b>(t`j!R2dH>}<7~Z5u%p))B41-dmH|4-tKi5?YZF5Ggf%848=&HS zL*uQ_gjn4IBgLg5i6jG-#Otth3lo;|2}DUPa?t=QoZGC=?39)>F@AR*l53u)nUwvNd zc(M9?i3vUP2^R+Fk*`&s&oLo4A0TJK`h0-B;GrWm>hq~4=#j^1o{~>6Uk7hhI%dMz z0N+CnmzTsZ)#sTHh?%e^pTG;Ewp zWak68bLInpSbZMQ$Qs&fP*Usj>a^D9)dZVQSmL+&02`Upc1igFieQwaM|~b0VY{{Y zgw!X#Xg)x%o~|Jv#>ew3@&UQxOY8F?o|zBWh=1k-+~Al7xWO?EaD!tS;0DJuzzvRR zfEygsfYOF2PGBSm!(lpt(+ivC15`YQuJOL737h5vDBjlRdznys{(>w6tazfA33}vp zWVp-x0am;%Otdz^7ENlD#(^XQeB#*&9nWuN!csn<>HGm!e5gK;_e^TkG@X0Fcpy*7*Q*3d?w6q)3|&u;0-V{?K;8d;m>o{ofqK_;`LrJ|I^- z+~l)=PNg=)^H1gjAbv~Cd_V=vK~Xn2rU7nnOat8DmRCt{2S21W)Q53x~Is|DcHcB7}CbmM*rAvlFh*OY^I{fW} zVkR>boB|y>2u?xq13et*)RHB%qvpF105G1ueIi=t12Hjx;{7Wo-ihP_ zH9qW;;rnj)JuG!51~L%<7)q?%p`Cn{cD{Tj3J_^`{c;TbMXH*Uf=~v)#vzOGtMVOM z4%3gXbz2AHTDf8tj=IVqlmM`C7~3~m#6TJ^e^MwHmThCU3_Q7cig;1hkHb+C%XNqmdzL92o&X z(DNL?;oeQspDoDt_M30wIYV*rLtpmoCz%O!V1c0aoESg$761gh#_kyi3%p{T8J|-xZY>%i^WF&w>`Bd)4X`BUhV0*JodM*I! z?Hl8O#QdoNI4fU_=42nZ03^hsZv^`0@bSPyk-T4eLCcRm23G)F-&uYqJM?k$n#}t& z?f^BbA4d?(-H>gjWAFlw#YxG?q+uCx1^|qss=>uv;m}S|U6PRDU^y;EylVi1ap;rK z=ZsiH$sST6T|EHwp=GP?a~q3Bj4J6XG5Zd{N5Dp5&@yhV!S{wy1*#8#GwrzcL)a68 z;yeNto+ksa+@w{qQWC-J#*j9E!Al1gfHI$7ky?G@@CqM+1+;Dx7J?4*-W_%Qn$bFi zF6Oy0WS<8xc`$WY8H<8goVt;Fc$4kseWPk$Or1vD);$A2W;FbIV7FgD{8d_N!00000 LNkvXXu0mjfIiQE| literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano36_on.png b/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/ano36_on.png new file mode 100644 index 0000000000000000000000000000000000000000..cb5741eb42961fea0650c7789340e03a5b22eace GIT binary patch literal 1177 zcmV;K1ZMk*P)N3CWi=`{9XcptZDIjz0CXlHmPfXCck$RShX-2p~YXLK**1aivqjduHonV{k}p6 z#PjR*y8C>&T%rjQgWpMj!{J~yn~g!|)1pBKL~{1XF>$-yy5kr>($)&#bk9iv7;?_% zbNBspI(0{o;@p0}?|Nc}rS`A6Uay^48qH&fAD?+n^7DEZ{@FDEszYHWga8qN|5Kn? zAU}_iA8@UOlLA0RmI5;favq^J+aG|^&?|!uG8B{g?Pm<%h7-NB0{IdkW zP0{vjLXO1b00qEznZQthU-te8eUhJ{&xe1O05bCuV<_RJx<2p9Zx@7}CUt)RN)fey{s0?8>+@Qr4-EMeq(1p)cF9H zi>KD-(J93gWcR822XKXWXz^4NG4?N*6o4U5&IohvpRdr#jPoT%_y;sPs@VG%c=-dQ z7&J-{sr>=b_YYvqhw?+~^C$r%g5OaZTBQ$6`2&*dAHd9vy}vILk#qk52!w0zOW!|0 zzP>Br;~n^w`v=(jlqBCj03{&XILT20MeHBI>c^)*IY8;JQx(Bw|AM|FOyduTy=Bf6 ze-?j$MCz5HkMRd^eO^w4$N`DAFjM{jjzg0B1MDV{%O5~NvibwG2S2X-zW1!N!XZCS r6$Qpn{Q=b<5RNKsDv6O(f3qf00000NkvXXu0mjf|BWQw literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/meta.json b/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/meta.json index 47903ab4b1..9550a7217d 100644 --- a/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi/meta.json @@ -1,241 +1,591 @@ { - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from baystation at commit https://github.com/Baystation12/Baystation12/commit/a929584d9db319eb7484113221be25cfa1d5dc09", - "states": [ - { - "name": "ano01" - }, - { - "name": "ano01_on", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "ano02" - }, - { - "name": "ano02_on", - "delays": [ - [ - 0.3, - 0.2, - 0.1 - ] - ] - }, - { - "name": "ano03" - }, - { - "name": "ano03_on", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "ano04" - }, - { - "name": "ano04_on", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "ano05" - }, - { - "name": "ano05_on", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "ano06" - }, - { - "name": "ano06_on", - "delays": [ - [ - 0.5, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "ano07" - }, - { - "name": "ano07_on", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "ano08" - }, - { - "name": "ano08_on", - "delays": [ - [ - 0.3, - 0.2, - 0.2, - 0.1, - 0.1 - ] - ] - }, - { - "name": "ano09" - }, - { - "name": "ano09_on", - "delays": [ - [ - 0.3, - 0.3, - 0.3, - 0.3 - ] - ] - }, - { - "name": "ano10" - }, - { - "name": "ano10_on", - "delays": [ - [ - 1.0, - 0.2, - 0.1, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "ano11" - }, - { - "name": "ano11_on" - }, - { - "name": "ano12" - }, - { - "name": "ano12_on", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "ano13" - }, - { - "name": "ano13_on", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "ano14" - }, - { - "name": "ano14_on", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - } - ] -} \ No newline at end of file + "version": 1, + "license": "CC-BY-NC-SA-3.0", + "copyright": "Taken from goonstation at commit https://github.com/goonstation/goonstation/commit/8c9738746d1222a80dddff25af1bceda58bbccac and created by Flaborized.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "ano01" + }, + { + "name": "ano01_on", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "ano02" + }, + { + "name": "ano02_on", + "delays": [ + [ + 0.201, + 0.201, + 0.201, + 0.201, + 0.201, + 0.201 + ] + ] + }, + { + "name": "ano03" + }, + { + "name": "ano03_on", + "delays": [ + [ + 0.20199999, + 0.20199999, + 0.20199999, + 0.20199999, + 0.20199999, + 0.20199999 + ] + ] + }, + { + "name": "ano04" + }, + { + "name": "ano04_on", + "delays": [ + [ + 0.203, + 0.203, + 0.203, + 0.203, + 0.203, + 0.203 + ] + ] + }, + { + "name": "ano05" + }, + { + "name": "ano05_on", + "delays": [ + [ + 0.204, + 0.204, + 0.204, + 0.204, + 0.204, + 0.204 + ] + ] + }, + { + "name": "ano06" + }, + { + "name": "ano06_on", + "delays": [ + [ + 0.205, + 0.205, + 0.205, + 0.205, + 0.205, + 0.205 + ] + ] + }, + { + "name": "ano07" + }, + { + "name": "ano07_on", + "delays": [ + [ + 0.206, + 0.206, + 0.206, + 0.206, + 0.206, + 0.206 + ] + ] + }, + { + "name": "ano08" + }, + { + "name": "ano08_on", + "delays": [ + [ + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15 + ] + ] + }, + { + "name": "ano09" + }, + { + "name": "ano09_on", + "delays": [ + [ + 0.151, + 0.151, + 0.151, + 0.151, + 0.151, + 0.151 + ] + ] + }, + { + "name": "ano10" + }, + { + "name": "ano10_on", + "delays": [ + [ + 0.152, + 0.152, + 0.152, + 0.152, + 0.152, + 0.152 + ] + ] + }, + { + "name": "ano11" + }, + { + "name": "ano11_on", + "delays": [ + [ + 0.153, + 0.153, + 0.153, + 0.153, + 0.153, + 0.153 + ] + ] + }, + { + "name": "ano12" + }, + { + "name": "ano12_on", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "ano13" + }, + { + "name": "ano13_on", + "delays": [ + [ + 0.155, + 0.155, + 0.155, + 0.155, + 0.155, + 0.155 + ] + ] + }, + { + "name": "ano14" + }, + { + "name": "ano14_on", + "delays": [ + [ + 0.15599999, + 0.15599999, + 0.15599999, + 0.15599999, + 0.15599999, + 0.15599999 + ] + ] + }, + { + "name": "ano15" + }, + { + "name": "ano15_on", + "delays": [ + [ + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25 + ] + ] + }, + { + "name": "ano16" + }, + { + "name": "ano16_on", + "delays": [ + [ + 0.251, + 0.251, + 0.251, + 0.251, + 0.251, + 0.251 + ] + ] + }, + { + "name": "ano17" + }, + { + "name": "ano17_on", + "delays": [ + [ + 0.252, + 0.252, + 0.252, + 0.252, + 0.252, + 0.252 + ] + ] + }, + { + "name": "ano18" + }, + { + "name": "ano18_on", + "delays": [ + [ + 0.253, + 0.253, + 0.253, + 0.253, + 0.253, + 0.253 + ] + ] + }, + { + "name": "ano19" + }, + { + "name": "ano19_on", + "delays": [ + [ + 0.254, + 0.254, + 0.254, + 0.254, + 0.254, + 0.254 + ] + ] + }, + { + "name": "ano20" + }, + { + "name": "ano20_on", + "delays": [ + [ + 0.255, + 0.255, + 0.255, + 0.255, + 0.255, + 0.255 + ] + ] + }, + { + "name": "ano21" + }, + { + "name": "ano21_on", + "delays": [ + [ + 0.25599998, + 0.25599998, + 0.25599998, + 0.25599998, + 0.25599998, + 0.25599998 + ] + ] + }, + { + "name": "ano22" + }, + { + "name": "ano22_on", + "delays": [ + [ + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15 + ] + ] + }, + { + "name": "ano23" + }, + { + "name": "ano23_on", + "delays": [ + [ + 0.151, + 0.151, + 0.151, + 0.151, + 0.151, + 0.151 + ] + ] + }, + { + "name": "ano24" + }, + { + "name": "ano24_on", + "delays": [ + [ + 0.152, + 0.152, + 0.152, + 0.152, + 0.152, + 0.152 + ] + ] + }, + { + "name": "ano25" + }, + { + "name": "ano25_on", + "delays": [ + [ + 0.153, + 0.153, + 0.153, + 0.153, + 0.153, + 0.153 + ] + ] + }, + { + "name": "ano26" + }, + { + "name": "ano26_on", + "delays": [ + [ + 0.154, + 0.154, + 0.154, + 0.154, + 0.154, + 0.154 + ] + ] + }, + { + "name": "ano27" + }, + { + "name": "ano27_on", + "delays": [ + [ + 0.155, + 0.155, + 0.155, + 0.155, + 0.155, + 0.155 + ] + ] + }, + { + "name": "ano28" + }, + { + "name": "ano28_on", + "delays": [ + [ + 0.15599999, + 0.15599999, + 0.15599999, + 0.15599999, + 0.15599999, + 0.15599999 + ] + ] + }, + { + "name": "ano29" + }, + { + "name": "ano29_on", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "ano30" + }, + { + "name": "ano30_on", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "ano31" + }, + { + "name": "ano31_on", + "delays": [ + [ + 0.100999996, + 0.100999996, + 0.100999996, + 0.100999996, + 0.100999996, + 0.100999996 + ] + ] + }, + { + "name": "ano32" + }, + { + "name": "ano32_on", + "delays": [ + [ + 0.102, + 0.102, + 0.102, + 0.102, + 0.102, + 0.102 + ] + ] + }, + { + "name": "ano33" + }, + { + "name": "ano33_on", + "delays": [ + [ + 0.103, + 0.103, + 0.103, + 0.103, + 0.103, + 0.103 + ] + ] + }, + { + "name": "ano34" + }, + { + "name": "ano34_on", + "delays": [ + [ + 0.103999995, + 0.103999995, + 0.103999995, + 0.103999995, + 0.103999995, + 0.103999995 + ] + ] + }, + { + "name": "ano35" + }, + { + "name": "ano35_on", + "delays": [ + [ + 0.105, + 0.105, + 0.105, + 0.105, + 0.105, + 0.105 + ] + ] + }, + { + "name": "ano36" + }, + { + "name": "ano36_on", + "delays": [ + [ + 0.10599999, + 0.10599999, + 0.10599999, + 0.10599999, + 0.10599999, + 0.10599999 + ] + ] + } + ] +} From 26014a7d441d799ebfc3c681a3e199d7756f6a05 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 18 Jun 2023 11:03:31 -0400 Subject: [PATCH 312/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 49969ffde1..7e6e4b93db 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,10 +1,4 @@ Entries: -- author: lzk - changes: - - {message: Solar's Best Hot Drinks has more best hot drinks, type: Tweak} - - {message: Emmaged Hot Drinks will give you cup with nothing, type: Tweak} - id: 3529 - time: '2023-04-24T02:27:28.0000000+00:00' - author: brainfood1183 changes: - {message: Jonkbots can now be constructed., type: Add} @@ -2921,3 +2915,10 @@ Entries: can research., type: Add} id: 4028 time: '2023-06-18T14:56:45.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: The artifact division has finally remembered to wash alien artifacts + before giving them to scientists. They should now look significantly better., + type: Tweak} + id: 4029 + time: '2023-06-18T15:02:27.0000000+00:00' From 1646f4c405fcd702056518254529212e1324c3c9 Mon Sep 17 00:00:00 2001 From: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> Date: Sun, 18 Jun 2023 13:06:09 -0400 Subject: [PATCH 313/474] Remove spare CE belt (#17430) --- Resources/Prototypes/Catalog/Fills/Lockers/heads.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml index d80fad39e8..f13444efea 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml @@ -158,7 +158,6 @@ contents: - id: ClothingNeckCloakCe - id: ClothingEyesGlassesMeson - - id: ClothingBeltChiefEngineerFilled - id: ClothingHeadHatBeretEngineering - id: ClothingHandsGlovesColorYellow - id: CigarCase From acc4dbf274e297c5bb812548a6d7b06666163cb1 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 18 Jun 2023 13:07:13 -0400 Subject: [PATCH 314/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 7e6e4b93db..7b3748e7c0 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: brainfood1183 - changes: - - {message: Jonkbots can now be constructed., type: Add} - id: 3530 - time: '2023-04-24T02:32:33.0000000+00:00' - author: EmoGarbage404 changes: - {message: Entities that draw battery power should now draw at a consistent rate., @@ -2922,3 +2917,8 @@ Entries: type: Tweak} id: 4029 time: '2023-06-18T15:02:27.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: Removed the spare CE belt., type: Remove} + id: 4030 + time: '2023-06-18T17:06:09.0000000+00:00' From 0709660fbc4b70508a694807ff7bec57e604ec48 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Mon, 19 Jun 2023 03:22:22 +1000 Subject: [PATCH 315/474] Fix bagel test (#17428) --- Resources/Maps/bagel.yml | 36 ++---------------------------------- 1 file changed, 2 insertions(+), 34 deletions(-) diff --git a/Resources/Maps/bagel.yml b/Resources/Maps/bagel.yml index 2d168e635e..47e63f8845 100644 --- a/Resources/Maps/bagel.yml +++ b/Resources/Maps/bagel.yml @@ -8807,6 +8807,7 @@ entities: type: SpreaderGrid - type: RadiationGridResistance - type: GasTileOverlay + nextUpdate: 0 - type: GridPathfinding - uid: 943 components: @@ -9066,6 +9067,7 @@ entities: type: GridAtmosphere - type: GasTileOverlay - type: RadiationGridResistance + nextUpdate: 0 - type: GridPathfinding - proto: AcousticGuitarInstrument entities: @@ -62281,16 +62283,12 @@ entities: - pos: 31.52947,14.40356 parent: 60 type: Transform - - nextSound: 223.9654771 - type: EmitSoundOnCollide - uid: 17299 components: - flags: InContainer type: MetaData - parent: 16058 type: Transform - - nextSound: 1332.9551461 - type: EmitSoundOnCollide - canCollide: False type: Physics - type: InsideEntityStorage @@ -62332,8 +62330,6 @@ entities: type: MetaData - parent: 16058 type: Transform - - nextSound: 1336.9231484 - type: EmitSoundOnCollide - canCollide: False type: Physics - type: InsideEntityStorage @@ -62427,8 +62423,6 @@ entities: type: MetaData - parent: 16058 type: Transform - - nextSound: 1344.6943063 - type: EmitSoundOnCollide - canCollide: False type: Physics - type: InsideEntityStorage @@ -62593,8 +62587,6 @@ entities: type: MetaData - parent: 16058 type: Transform - - nextSound: 1342.5612744 - type: EmitSoundOnCollide - canCollide: False type: Physics - type: InsideEntityStorage @@ -62940,8 +62932,6 @@ entities: - pos: 50.5,-44.5 parent: 60 type: Transform - - nextSound: 702.0977996 - type: EmitSoundOnCollide - proto: ClothingHeadHelmetCosmonaut entities: - uid: 4357 @@ -63017,8 +63007,6 @@ entities: - pos: -53.482998,21.673847 parent: 60 type: Transform - - nextSound: 1250.3538049 - type: EmitSoundOnCollide - proto: ClothingHeadsetEngineering entities: - uid: 16082 @@ -63096,8 +63084,6 @@ entities: - pos: -45.5,-32.5 parent: 60 type: Transform - - nextSound: 1177.1111392 - type: EmitSoundOnCollide - proto: ClothingMaskClown entities: - uid: 6684 @@ -63415,8 +63401,6 @@ entities: - pos: 50.5,-44.5 parent: 60 type: Transform - - nextSound: 700.2180887 - type: EmitSoundOnCollide - proto: ClothingOuterHardsuitBasic entities: - uid: 5542 @@ -63424,8 +63408,6 @@ entities: - pos: -40.51241,3.5016193 parent: 60 type: Transform - - nextSound: 790.312397 - type: EmitSoundOnCollide - proto: ClothingOuterHardsuitEVA entities: - uid: 5207 @@ -63521,8 +63503,6 @@ entities: type: MetaData - parent: 16058 type: Transform - - nextSound: 1334.594179 - type: EmitSoundOnCollide - canCollide: False type: Physics - type: InsideEntityStorage @@ -63547,8 +63527,6 @@ entities: - pos: -54.5,21.5 parent: 60 type: Transform - - nextSound: 1220.576973 - type: EmitSoundOnCollide - proto: ClothingShoesBootsLaceup entities: - uid: 7523 @@ -63586,8 +63564,6 @@ entities: type: MetaData - parent: 16058 type: Transform - - nextSound: 1340.1781086 - type: EmitSoundOnCollide - canCollide: False type: Physics - type: InsideEntityStorage @@ -63801,8 +63777,6 @@ entities: type: MetaData - parent: 16058 type: Transform - - nextSound: 1346.2511638 - type: EmitSoundOnCollide - canCollide: False type: Physics - type: InsideEntityStorage @@ -63831,10 +63805,6 @@ entities: - pos: -53.451748,20.486347 parent: 60 type: Transform - - nextUpdate: 1242.3615122 - type: SuitSensor - - nextSound: 1242.5615122 - type: EmitSoundOnCollide - proto: ClothingUniformOveralls entities: - uid: 941 @@ -112064,8 +112034,6 @@ entities: type: MetaData - parent: 16058 type: Transform - - nextSound: 1338.543622 - type: EmitSoundOnCollide - canCollide: False type: Physics - type: InsideEntityStorage From 4f8ea0c19b71c137655c32161de1245702e5e805 Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Mon, 19 Jun 2023 05:22:41 +1200 Subject: [PATCH 316/474] Fix damage visuals not resetting in some cases (#17399) --- Content.Client/Damage/DamageVisualsSystem.cs | 54 ++++++++++--------- .../Damage/Systems/DamageableSystem.cs | 2 +- 2 files changed, 31 insertions(+), 25 deletions(-) diff --git a/Content.Client/Damage/DamageVisualsSystem.cs b/Content.Client/Damage/DamageVisualsSystem.cs index 41f705c3f2..111ee2ddb5 100644 --- a/Content.Client/Damage/DamageVisualsSystem.cs +++ b/Content.Client/Damage/DamageVisualsSystem.cs @@ -351,22 +351,22 @@ protected override void OnAppearanceChange(EntityUid uid, DamageVisualsComponent if (damageVisComp.Disabled) return; - HandleDamage(args.Component, damageVisComp); + HandleDamage(uid, args.Component, damageVisComp); } - private void HandleDamage(AppearanceComponent component, DamageVisualsComponent damageVisComp) + private void HandleDamage(EntityUid uid, AppearanceComponent component, DamageVisualsComponent damageVisComp) { - if (!TryComp(component.Owner, out SpriteComponent? spriteComponent) - || !TryComp(component.Owner, out DamageableComponent? damageComponent)) + if (!TryComp(uid, out SpriteComponent? spriteComponent) + || !TryComp(uid, out DamageableComponent? damageComponent)) return; if (damageVisComp.TargetLayers != null && damageVisComp.DamageOverlayGroups != null) - UpdateDisabledLayers(spriteComponent, component, damageVisComp); + UpdateDisabledLayers(uid, spriteComponent, component, damageVisComp); if (damageVisComp.Overlay && damageVisComp.DamageOverlayGroups != null && damageVisComp.TargetLayers == null) CheckOverlayOrdering(spriteComponent, damageVisComp); - if (AppearanceSystem.TryGetData(component.Owner, DamageVisualizerKeys.ForceUpdate, out var update, component) + if (AppearanceSystem.TryGetData(uid, DamageVisualizerKeys.ForceUpdate, out var update, component) && update) { ForceUpdateLayers(damageComponent, spriteComponent, damageVisComp); @@ -376,11 +376,16 @@ private void HandleDamage(AppearanceComponent component, DamageVisualsComponent if (damageVisComp.TrackAllDamage) { UpdateDamageVisuals(damageComponent, spriteComponent, damageVisComp); + return; } - else if (AppearanceSystem.TryGetData(component.Owner, DamageVisualizerKeys.DamageUpdateGroups, out var data, component)) + + if (!AppearanceSystem.TryGetData(uid, DamageVisualizerKeys.DamageUpdateGroups, + out var data, component)) { - UpdateDamageVisuals(data.GroupList, damageComponent, spriteComponent, damageVisComp); + data = new DamageVisualizerGroupData(Comp(uid).DamagePerGroup.Keys.ToList()); } + + UpdateDamageVisuals(data.GroupList, damageComponent, spriteComponent, damageVisComp); } /// @@ -389,29 +394,30 @@ private void HandleDamage(AppearanceComponent component, DamageVisualsComponent /// layer will no longer be visible, or obtain /// any damage updates. /// - private void UpdateDisabledLayers(SpriteComponent spriteComponent, AppearanceComponent component, DamageVisualsComponent damageVisComp) + private void UpdateDisabledLayers(EntityUid uid, SpriteComponent spriteComponent, AppearanceComponent component, DamageVisualsComponent damageVisComp) { foreach (var layer in damageVisComp.TargetLayerMapKeys) { - bool? layerStatus = null; - if (AppearanceSystem.TryGetData(component.Owner, layer, out var layerStateEnum, component)) - layerStatus = layerStateEnum; + // I assume this gets set by something like body system if limbs are missing??? + // TODO is this actually used by anything anywhere? + AppearanceSystem.TryGetData(uid, layer, out bool disabled, component); - if (layerStatus == null) + if (damageVisComp.DisabledLayers[layer] == disabled) continue; - if (damageVisComp.DisabledLayers[layer] != (bool) layerStatus) + damageVisComp.DisabledLayers[layer] = disabled; + if (damageVisComp.TrackAllDamage) { - damageVisComp.DisabledLayers[layer] = (bool) layerStatus; - if (!damageVisComp.TrackAllDamage && damageVisComp.DamageOverlayGroups != null) - { - foreach (var damageGroup in damageVisComp.DamageOverlayGroups!.Keys) - { - spriteComponent.LayerSetVisible($"{layer}{damageGroup}", damageVisComp.DisabledLayers[layer]); - } - } - else if (damageVisComp.TrackAllDamage) - spriteComponent.LayerSetVisible($"{layer}trackDamage", damageVisComp.DisabledLayers[layer]); + spriteComponent.LayerSetVisible($"{layer}trackDamage", !disabled); + continue; + } + + if (damageVisComp.DamageOverlayGroups == null) + continue; + + foreach (var damageGroup in damageVisComp.DamageOverlayGroups.Keys) + { + spriteComponent.LayerSetVisible($"{layer}{damageGroup}", !disabled); } } } diff --git a/Content.Shared/Damage/Systems/DamageableSystem.cs b/Content.Shared/Damage/Systems/DamageableSystem.cs index 98e0ce0117..b902fe292e 100644 --- a/Content.Shared/Damage/Systems/DamageableSystem.cs +++ b/Content.Shared/Damage/Systems/DamageableSystem.cs @@ -124,7 +124,7 @@ public void DamageChanged(EntityUid uid, DamageableComponent component, DamageSp if (EntityManager.TryGetComponent(uid, out var appearance) && damageDelta != null) { - var data = new DamageVisualizerGroupData(damageDelta.GetDamagePerGroup(_prototypeManager).Keys.ToList()); + var data = new DamageVisualizerGroupData(component.DamagePerGroup.Keys.ToList()); _appearance.SetData(uid, DamageVisualizerKeys.DamageUpdateGroups, data, appearance); } RaiseLocalEvent(uid, new DamageChangedEvent(component, damageDelta, interruptsDoAfters, origin)); From cc81a7511b0117a47ab6f99ee29e02bbcff0d0d6 Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Mon, 19 Jun 2023 05:23:04 +1200 Subject: [PATCH 317/474] Fix monkey jumpsuits (#17410) --- .../Clothing/ClientClothingSystem.cs | 73 +++++++++++-------- 1 file changed, 41 insertions(+), 32 deletions(-) diff --git a/Content.Client/Clothing/ClientClothingSystem.cs b/Content.Client/Clothing/ClientClothingSystem.cs index 81220e650d..5c638f861c 100644 --- a/Content.Client/Clothing/ClientClothingSystem.cs +++ b/Content.Client/Clothing/ClientClothingSystem.cs @@ -12,12 +12,15 @@ using Robust.Client.Graphics; using Robust.Client.ResourceManagement; using Robust.Shared.Serialization.TypeSerializers.Implementations; +using Robust.Shared.Utility; using static Robust.Client.GameObjects.SpriteComponent; namespace Content.Client.Clothing; public sealed class ClientClothingSystem : ClothingSystem { + public const string Jumpsuit = "jumpsuit"; + /// /// This is a shitty hotfix written by me (Paul) to save me from renaming all files. /// For some context, im currently refactoring inventory. Part of that is slots not being indexed by a massive enum anymore, but by strings. @@ -30,7 +33,7 @@ public sealed class ClientClothingSystem : ClothingSystem {"ears", "EARS"}, {"mask", "MASK"}, {"outerClothing", "OUTERCLOTHING"}, - {"jumpsuit", "INNERCLOTHING"}, + {Jumpsuit, "INNERCLOTHING"}, {"neck", "NECK"}, {"back", "BACKPACK"}, {"belt", "BELT"}, @@ -60,15 +63,22 @@ public override void Initialize() private void OnAppearanceUpdate(EntityUid uid, InventoryComponent component, ref AppearanceChangeEvent args) { // May need to update jumpsuit stencils if the sex changed. Also required to properly set the stencil on init - // This is when sex is first loaded from the profile. + if (args.Sprite == null) + return; - if (!TryComp(uid, out SpriteComponent? sprite) || - !TryComp(uid, out HumanoidAppearanceComponent? humanoid) || - !_inventorySystem.TryGetSlotEntity(uid, "jumpsuit", out var suit, component) || - !TryComp(suit, out ClothingComponent? clothing)) + if (_inventorySystem.TryGetSlotEntity(uid, Jumpsuit, out var suit, component) + && TryComp(suit, out ClothingComponent? clothing)) + { + SetGenderedMask(uid, args.Sprite, clothing); return; + } - SetGenderedMask(sprite, humanoid, clothing); + // No clothing equipped -> make sure the layer is hidden, though this should already be handled by on-unequip. + if (args.Sprite.LayerMapTryGet(HumanoidVisualLayers.StencilMask, out var layer)) + { + DebugTools.Assert(!args.Sprite[layer].Visible); + args.Sprite.LayerSetVisible(layer, false); + } } private void OnGetVisuals(EntityUid uid, ClothingComponent item, GetEquipmentVisualsEvent args) @@ -168,7 +178,15 @@ private void OnVisualsChanged(EntityUid uid, InventoryComponent component, Visua private void OnDidUnequip(EntityUid uid, SpriteComponent component, DidUnequipEvent args) { - if (!TryComp(uid, out InventoryComponent? inventory) || !TryComp(uid, out InventorySlotsComponent? inventorySlots)) + // Hide jumpsuit mask layer. + if (args.Slot == Jumpsuit + && TryComp(uid, out SpriteComponent? sprite) + && sprite.LayerMapTryGet(HumanoidVisualLayers.StencilMask, out var maskLayer)) + { + sprite.LayerSetVisible(maskLayer, false); + } + + if (!TryComp(uid, out InventorySlotsComponent? inventorySlots)) return; if (!inventorySlots.VisualLayerKeys.TryGetValue(args.Slot, out var revealedLayers)) @@ -214,13 +232,8 @@ private void RenderEquipment(EntityUid equipee, EntityUid equipment, string slot return; } - if (slot == "jumpsuit") - { - if (!TryComp(equipee, out HumanoidAppearanceComponent? humanoid)) - return; - - SetGenderedMask(sprite, humanoid, clothingComponent); - } + if (slot == Jumpsuit) + SetGenderedMask(equipee, sprite, clothingComponent); if (!_inventorySystem.TryGetSlot(equipee, slot, out var slotDef, inventory)) return; @@ -287,7 +300,8 @@ private void RenderEquipment(EntityUid equipee, EntityUid equipment, string slot // Another "temporary" fix for clothing stencil masks. // Sprite layer redactor when - if (slot == "jumpsuit") + // Sprite "redactor" just a week away. + if (slot == Jumpsuit) layerData.Shader ??= "StencilDraw"; sprite.LayerSetData(index, layerData); @@ -304,15 +318,15 @@ private void RenderEquipment(EntityUid equipee, EntityUid equipment, string slot /// Sprite to modify /// Humanoid, to get gender from /// Clothing component, to get mask sprite type - private static void SetGenderedMask(SpriteComponent sprite, HumanoidAppearanceComponent humanoid, ClothingComponent clothing) + private void SetGenderedMask(EntityUid uid, SpriteComponent sprite, ClothingComponent clothing) { if (!sprite.LayerMapTryGet(HumanoidVisualLayers.StencilMask, out var layer)) return; - ClothingMask? mask = null; - var prefix = ""; + ClothingMask mask; + string prefix; - switch (humanoid.Sex) + switch (CompOrNull(uid)?.Sex) { case Sex.Male: mask = clothing.MaleMask; @@ -322,23 +336,18 @@ private static void SetGenderedMask(SpriteComponent sprite, HumanoidAppearanceCo mask = clothing.FemaleMask; prefix = "female_"; break; - case Sex.Unsexed: + default: mask = clothing.UnisexMask; prefix = "unisex_"; break; } - if (mask != null) + sprite.LayerSetState(layer, mask switch { - sprite.LayerSetState(layer, mask switch - { - ClothingMask.NoMask => $"{prefix}none", - ClothingMask.UniformTop => $"{prefix}top", - _ => $"{prefix}full", - }); - sprite.LayerSetVisible(layer, true); - } - else - sprite.LayerSetVisible(layer, false); + ClothingMask.NoMask => $"{prefix}none", + ClothingMask.UniformTop => $"{prefix}top", + _ => $"{prefix}full", + }); + sprite.LayerSetVisible(layer, true); } } From b03d9a90aba854b1b892ee44c2a6836d6eff51e1 Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Mon, 19 Jun 2023 05:23:31 +1200 Subject: [PATCH 318/474] Add support for client-side replays (#17168) --- Content.Client/Popups/PopupSystem.cs | 41 +++++--- .../Replay/ContentReplayPlaybackManager.cs | 6 +- .../ReplaySpectatorSystem.Position.cs | 99 ++++++++++++++----- .../ReplaySpectatorSystem.Spectate.cs | 1 + .../Replay/Spectator/ReplaySpectatorSystem.cs | 12 ++- Content.Client/SubFloor/SubFloorHideSystem.cs | 5 +- .../Systems/Chat/ChatUIController.cs | 15 ++- Content.Replay/Menu/ReplayMainMenu.cs | 7 +- .../Commands/PlayGlobalSoundCommand.cs | 1 - Content.Server/Chat/Managers/ChatManager.cs | 6 +- Content.Server/Chat/Systems/ChatSystem.cs | 4 +- .../TypingIndicator/TypingIndicatorSystem.cs | 2 +- .../EntitySystems/ExplosionSystem.Visuals.cs | 2 +- .../GameTicking/GameTicker.RoundFlow.cs | 5 - Content.Server/GameTicking/GameTicker.cs | 16 --- .../Pointing/EntitySystems/PointingSystem.cs | 2 +- .../Radio/EntitySystems/RadioSystem.cs | 2 +- Content.Shared/CCVar/CCVars.cs | 2 +- .../GameTicking/SharedGameTicker.cs | 27 ++++- .../Entities/Mobs/Player/silicon.yml | 6 -- Resources/clientCommandPerms.yml | 10 ++ Resources/engineCommandPerms.yml | 3 + 22 files changed, 183 insertions(+), 91 deletions(-) diff --git a/Content.Client/Popups/PopupSystem.cs b/Content.Client/Popups/PopupSystem.cs index 58e3044591..be0966674d 100644 --- a/Content.Client/Popups/PopupSystem.cs +++ b/Content.Client/Popups/PopupSystem.cs @@ -11,6 +11,7 @@ using Robust.Shared.Player; using Robust.Shared.Players; using Robust.Shared.Prototypes; +using Robust.Shared.Replays; using Robust.Shared.Timing; using Robust.Shared.Utility; @@ -26,6 +27,7 @@ public sealed class PopupSystem : SharedPopupSystem [Dependency] private readonly IResourceCache _resource = default!; [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly IUserInterfaceManager _uiManager = default!; + [Dependency] private readonly IReplayRecordingManager _replayRecording = default!; public IReadOnlyList WorldLabels => _aliveWorldLabels; public IReadOnlyList CursorLabels => _aliveCursorLabels; @@ -52,8 +54,16 @@ public override void Shutdown() .RemoveOverlay(); } - private void PopupMessage(string message, PopupType type, EntityCoordinates coordinates, EntityUid? entity = null) + private void PopupMessage(string message, PopupType type, EntityCoordinates coordinates, EntityUid? entity, bool recordReplay) { + if (recordReplay && _replayRecording.IsRecording) + { + if (entity != null) + _replayRecording.RecordClientMessage(new PopupEntityEvent(message, type, entity.Value)); + else + _replayRecording.RecordClientMessage(new PopupCoordinatesEvent(message, type, coordinates)); + } + var label = new WorldPopupLabel(coordinates) { Text = message, @@ -66,23 +76,26 @@ private void PopupMessage(string message, PopupType type, EntityCoordinates coor #region Abstract Method Implementations public override void PopupCoordinates(string message, EntityCoordinates coordinates, PopupType type = PopupType.Small) { - PopupMessage(message, type, coordinates, null); + PopupMessage(message, type, coordinates, null, true); } public override void PopupCoordinates(string message, EntityCoordinates coordinates, ICommonSession recipient, PopupType type = PopupType.Small) { if (_playerManager.LocalPlayer?.Session == recipient) - PopupMessage(message, type, coordinates, null); + PopupMessage(message, type, coordinates, null, true); } public override void PopupCoordinates(string message, EntityCoordinates coordinates, EntityUid recipient, PopupType type = PopupType.Small) { if (_playerManager.LocalPlayer?.ControlledEntity == recipient) - PopupMessage(message, type, coordinates, null); + PopupMessage(message, type, coordinates, null, true); } - public override void PopupCursor(string message, PopupType type = PopupType.Small) + private void PopupCursorInternal(string message, PopupType type, bool recordReplay) { + if (recordReplay && _replayRecording.IsRecording) + _replayRecording.RecordClientMessage(new PopupCursorEvent(message, type)); + var label = new CursorPopupLabel(_inputManager.MouseScreenPosition) { Text = message, @@ -92,6 +105,9 @@ public override void PopupCursor(string message, PopupType type = PopupType.Smal _aliveCursorLabels.Add(label); } + public override void PopupCursor(string message, PopupType type = PopupType.Small) + => PopupCursorInternal(message, type, true); + public override void PopupCursor(string message, ICommonSession recipient, PopupType type = PopupType.Small) { if (_playerManager.LocalPlayer?.Session == recipient) @@ -137,12 +153,8 @@ public override void PopupClient(string message, EntityUid uid, EntityUid recipi public override void PopupEntity(string message, EntityUid uid, PopupType type = PopupType.Small) { - if (!EntityManager.EntityExists(uid)) - return; - - var transform = EntityManager.GetComponent(uid); - - PopupMessage(message, type, transform.Coordinates, uid); + if (TryComp(uid, out TransformComponent? transform)) + PopupMessage(message, type, transform.Coordinates, uid, true); } #endregion @@ -151,17 +163,18 @@ public override void PopupEntity(string message, EntityUid uid, PopupType type = private void OnPopupCursorEvent(PopupCursorEvent ev) { - PopupCursor(ev.Message, ev.Type); + PopupCursorInternal(ev.Message, ev.Type, false); } private void OnPopupCoordinatesEvent(PopupCoordinatesEvent ev) { - PopupCoordinates(ev.Message, ev.Coordinates, ev.Type); + PopupMessage(ev.Message, ev.Type, ev.Coordinates, null, false); } private void OnPopupEntityEvent(PopupEntityEvent ev) { - PopupEntity(ev.Message, ev.Uid, ev.Type); + if (TryComp(ev.Uid, out TransformComponent? transform)) + PopupMessage(ev.Message, ev.Type, transform.Coordinates, ev.Uid, false); } private void OnRoundRestart(RoundRestartCleanupEvent ev) diff --git a/Content.Client/Replay/ContentReplayPlaybackManager.cs b/Content.Client/Replay/ContentReplayPlaybackManager.cs index 0ecb98ec0d..e400958bca 100644 --- a/Content.Client/Replay/ContentReplayPlaybackManager.cs +++ b/Content.Client/Replay/ContentReplayPlaybackManager.cs @@ -22,6 +22,7 @@ using Robust.Client.Timing; using Robust.Client.UserInterface; using Robust.Shared.ContentPack; +using Robust.Shared.Serialization.Markdown.Mapping; using Robust.Shared.Utility; namespace Content.Client.Replay; @@ -99,6 +100,8 @@ private bool OnHandleReplayMessage(object message, bool skipEffects) { switch (message) { + case BoundUserInterfaceMessage: + break; // TODO REPLAYS refactor BUIs case ChatMessage chat: // Just pass on the chat message to the UI controller, but skip speech-bubbles if we are fast-forwarding. _uiMan.GetUIController().ProcessChatMessage(chat, speechBubble: !skipEffects); @@ -129,8 +132,7 @@ private bool OnHandleReplayMessage(object message, bool skipEffects) return false; } - - private void OnReplayPlaybackStarted() + private void OnReplayPlaybackStarted(MappingDataNode metadata, List objects) { _conGrp.Implementation = new ReplayConGroup(); } diff --git a/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Position.cs b/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Position.cs index 3b17191c16..4a88f48add 100644 --- a/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Position.cs +++ b/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Position.cs @@ -3,6 +3,7 @@ using Robust.Client.GameObjects; using Robust.Shared.Map; using Robust.Shared.Map.Components; +using Robust.Shared.Network; namespace Content.Client.Replay.Spectator; @@ -13,61 +14,99 @@ public sealed partial class ReplaySpectatorSystem /// /// Simple struct containing position & rotation data for maintaining a persistent view when jumping around in time. /// - public struct SpectatorPosition + public struct SpectatorData { // TODO REPLAYS handle ghost-following. + + /// + /// The current entity being spectated. + /// public EntityUid Entity; + + /// + /// The player that was originally controlling + /// + public NetUserId? Controller; + public (EntityCoordinates Coords, Angle Rot)? Local; public (EntityCoordinates Coords, Angle Rot)? World; public (EntityUid? Ent, Angle Rot)? Eye; } - public SpectatorPosition GetSpectatorPosition() + public SpectatorData GetSpectatorData() { - var obs = new SpectatorPosition(); - if (_player.LocalPlayer?.ControlledEntity is { } player && TryComp(player, out TransformComponent? xform) && xform.MapUid != null) - { - obs.Local = (xform.Coordinates, xform.LocalRotation); - obs.World = (new(xform.MapUid.Value, xform.WorldPosition), xform.WorldRotation); + var data = new SpectatorData(); - if (TryComp(player, out InputMoverComponent? mover)) - obs.Eye = (mover.RelativeEntity, mover.TargetRelativeRotation); + if (_player.LocalPlayer?.ControlledEntity is not { } player) + return data; - obs.Entity = player; + foreach (var session in _player.Sessions) + { + if (session.UserId == _player.LocalPlayer?.UserId) + continue; + + if (session.AttachedEntity == player) + { + data.Controller = session.UserId; + break; + } } - return obs; + if (!TryComp(player, out TransformComponent? xform) || xform.MapUid == null) + return data; + + data.Local = (xform.Coordinates, xform.LocalRotation); + data.World = (new(xform.MapUid.Value, xform.WorldPosition), xform.WorldRotation); + + if (TryComp(player, out InputMoverComponent? mover)) + data.Eye = (mover.RelativeEntity, mover.TargetRelativeRotation); + + data.Entity = player; + + return data; } private void OnBeforeSetTick() { - _oldPosition = GetSpectatorPosition(); + _spectatorData = GetSpectatorData(); } private void OnAfterSetTick() { - if (_oldPosition != null) - SetSpectatorPosition(_oldPosition.Value); - _oldPosition = null; + if (_spectatorData != null) + SetSpectatorPosition(_spectatorData.Value); + _spectatorData = null; } - public void SetSpectatorPosition(SpectatorPosition spectatorPosition) + public void SetSpectatorPosition(SpectatorData data) { - if (Exists(spectatorPosition.Entity) && Transform(spectatorPosition.Entity).MapID != MapId.Nullspace) + if (_player.LocalPlayer == null) + return; + + if (data.Controller != null + && _player.SessionsDict.TryGetValue(data.Controller.Value, out var session) + && Exists(session.AttachedEntity) + && Transform(session.AttachedEntity.Value).MapID != MapId.Nullspace) { - _player.LocalPlayer!.AttachEntity(spectatorPosition.Entity, EntityManager, _client); + _player.LocalPlayer.AttachEntity(session.AttachedEntity.Value, EntityManager, _client); return; } - if (spectatorPosition.Local != null && spectatorPosition.Local.Value.Coords.IsValid(EntityManager)) + if (Exists(data.Entity) && Transform(data.Entity).MapID != MapId.Nullspace) { - var newXform = SpawnSpectatorGhost(spectatorPosition.Local.Value.Coords, false); - newXform.LocalRotation = spectatorPosition.Local.Value.Rot; + _player.LocalPlayer.AttachEntity(data.Entity, EntityManager, _client); + return; } - else if (spectatorPosition.World != null && spectatorPosition.World.Value.Coords.IsValid(EntityManager)) + + if (data.Local != null && data.Local.Value.Coords.IsValid(EntityManager)) { - var newXform = SpawnSpectatorGhost(spectatorPosition.World.Value.Coords, true); - newXform.LocalRotation = spectatorPosition.World.Value.Rot; + var newXform = SpawnSpectatorGhost(data.Local.Value.Coords, false); + newXform.LocalRotation = data.Local.Value.Rot; + } + else if (data.World != null && data.World.Value.Coords.IsValid(EntityManager)) + { + var newXform = SpawnSpectatorGhost(data.World.Value.Coords, true); + newXform.LocalRotation = data.World.Value.Rot; } else if (TryFindFallbackSpawn(out var coords)) { @@ -80,15 +119,21 @@ public void SetSpectatorPosition(SpectatorPosition spectatorPosition) return; } - if (spectatorPosition.Eye != null && TryComp(_player.LocalPlayer?.ControlledEntity, out InputMoverComponent? newMover)) + if (data.Eye != null && TryComp(_player.LocalPlayer.ControlledEntity, out InputMoverComponent? newMover)) { - newMover.RelativeEntity = spectatorPosition.Eye.Value.Ent; - newMover.TargetRelativeRotation = newMover.RelativeRotation = spectatorPosition.Eye.Value.Rot; + newMover.RelativeEntity = data.Eye.Value.Ent; + newMover.TargetRelativeRotation = newMover.RelativeRotation = data.Eye.Value.Rot; } } private bool TryFindFallbackSpawn(out EntityCoordinates coords) { + if (_replayPlayback.TryGetRecorderEntity(out var recorder)) + { + coords = new EntityCoordinates(recorder.Value, default); + return true; + } + var uid = EntityQuery() .OrderByDescending(x => x.LocalAABB.Size.LengthSquared) .FirstOrDefault()?.Owner; diff --git a/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Spectate.cs b/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Spectate.cs index 0d4775a498..7230179bad 100644 --- a/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Spectate.cs +++ b/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Spectate.cs @@ -84,6 +84,7 @@ public TransformComponent SpawnSpectatorGhost(EntityCoordinates coords, bool gri _stateMan.RequestStateChange(); + _spectatorData = GetSpectatorData(); return xform; } diff --git a/Content.Client/Replay/Spectator/ReplaySpectatorSystem.cs b/Content.Client/Replay/Spectator/ReplaySpectatorSystem.cs index add786544e..c75529c037 100644 --- a/Content.Client/Replay/Spectator/ReplaySpectatorSystem.cs +++ b/Content.Client/Replay/Spectator/ReplaySpectatorSystem.cs @@ -6,6 +6,8 @@ using Robust.Client.Replays.Playback; using Robust.Client.State; using Robust.Shared.Console; +using Robust.Shared.Network; +using Robust.Shared.Serialization.Markdown.Mapping; namespace Content.Client.Replay.Spectator; @@ -29,7 +31,7 @@ public sealed partial class ReplaySpectatorSystem : EntitySystem [Dependency] private readonly SharedContentEyeSystem _eye = default!; [Dependency] private readonly IReplayPlaybackManager _replayPlayback = default!; - private SpectatorPosition? _oldPosition; + private SpectatorData? _spectatorData; public const string SpectateCmd = "replay_spectate"; public override void Initialize() @@ -58,15 +60,19 @@ public override void Shutdown() _replayPlayback.ReplayPlaybackStopped -= OnPlaybackStopped; } - private void OnPlaybackStarted() + private void OnPlaybackStarted(MappingDataNode yamlMappingNode, List objects) { InitializeMovement(); - SetSpectatorPosition(default); _conHost.RegisterCommand(SpectateCmd, Loc.GetString("cmd-replay-spectate-desc"), Loc.GetString("cmd-replay-spectate-help"), SpectateCommand, SpectateCompletions); + + if (_replayPlayback.TryGetRecorderEntity(out var recorder)) + SpectateEntity(recorder.Value); + else + SetSpectatorPosition(default); } private void OnPlaybackStopped() diff --git a/Content.Client/SubFloor/SubFloorHideSystem.cs b/Content.Client/SubFloor/SubFloorHideSystem.cs index 1d47f93a5a..482ab94a00 100644 --- a/Content.Client/SubFloor/SubFloorHideSystem.cs +++ b/Content.Client/SubFloor/SubFloorHideSystem.cs @@ -66,9 +66,10 @@ private void OnAppearanceChanged(EntityUid uid, SubFloorHideComponent component, private void UpdateAll() { - foreach (var (_, appearance) in EntityManager.EntityQuery(true)) + var query = AllEntityQuery(); + while (query.MoveNext(out var uid, out _, out var appearance)) { - _appearance.MarkDirty(appearance, true); + _appearance.QueueUpdate(uid, appearance); } } } diff --git a/Content.Client/UserInterface/Systems/Chat/ChatUIController.cs b/Content.Client/UserInterface/Systems/Chat/ChatUIController.cs index 691725dd4d..336b2d0757 100644 --- a/Content.Client/UserInterface/Systems/Chat/ChatUIController.cs +++ b/Content.Client/UserInterface/Systems/Chat/ChatUIController.cs @@ -29,6 +29,7 @@ using Robust.Shared.Input.Binding; using Robust.Shared.Map; using Robust.Shared.Network; +using Robust.Shared.Replays; using Robust.Shared.Timing; using Robust.Shared.Utility; @@ -46,6 +47,8 @@ public sealed class ChatUIController : UIController [Dependency] private readonly IPlayerManager _player = default!; [Dependency] private readonly IStateManager _state = default!; [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly IReplayRecordingManager _replayRecording = default!; + [Dependency] private readonly IConfigurationManager _cfg = default!; [UISystemDependency] private readonly ExamineSystem? _examine = default; [UISystemDependency] private readonly GhostSystem? _ghost = default; @@ -758,7 +761,17 @@ public void SendMessage(ChatBox box, ChatSelectChannel channel) _manager.SendMessage(text, prefixChannel == 0 ? channel : prefixChannel); } - private void OnChatMessage(MsgChatMessage message) => ProcessChatMessage(message.Message); + private void OnChatMessage(MsgChatMessage message) + { + var msg = message.Message; + ProcessChatMessage(msg); + + if ((msg.Channel & ChatChannel.AdminRelated) == 0 || + _cfg.GetCVar(CCVars.ReplayRecordAdminChat)) + { + _replayRecording.RecordClientMessage(msg); + } + } public void ProcessChatMessage(ChatMessage msg, bool speechBubble = true) { diff --git a/Content.Replay/Menu/ReplayMainMenu.cs b/Content.Replay/Menu/ReplayMainMenu.cs index 6748c20988..096abb6971 100644 --- a/Content.Replay/Menu/ReplayMainMenu.cs +++ b/Content.Replay/Menu/ReplayMainMenu.cs @@ -10,11 +10,10 @@ using Robust.Client.UserInterface.Controls; using Robust.Shared; using Robust.Shared.Configuration; +using Robust.Shared.ContentPack; using Robust.Shared.Serialization.Markdown.Value; using Robust.Shared.Utility; -using TerraFX.Interop.Windows; using static Robust.Shared.Replays.IReplayRecordingManager; -using IResourceManager = Robust.Shared.ContentPack.IResourceManager; namespace Content.Replay.Menu; @@ -94,7 +93,8 @@ private void UpdateSelectedInfo() var forkId = string.Empty; if (data.TryGet(Fork, out var forkNode)) { - // TODO REPLAYS somehow distribute and load from build.json? + // TODO Replay client build info. + // When distributing the client we need to distribute a build.json or provide these cvars some other way? var clientFork = _cfg.GetCVar(CVars.BuildForkId); if (string.IsNullOrWhiteSpace(clientFork)) forkId = forkNode.Value; @@ -181,6 +181,7 @@ private void UpdateSelectedInfo() info.HorizontalAlignment = Control.HAlignment.Left; info.VerticalAlignment = Control.VAlignment.Top; + info.SetMarkup(Loc.GetString( "replay-info-info", ("file", file), diff --git a/Content.Server/Administration/Commands/PlayGlobalSoundCommand.cs b/Content.Server/Administration/Commands/PlayGlobalSoundCommand.cs index fdd3173809..ec5b21dcee 100644 --- a/Content.Server/Administration/Commands/PlayGlobalSoundCommand.cs +++ b/Content.Server/Administration/Commands/PlayGlobalSoundCommand.cs @@ -65,7 +65,6 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) } else { - // TODO REPLAYS uhhh.. what to do with this? replay = false; filter = Filter.Empty(); diff --git a/Content.Server/Chat/Managers/ChatManager.cs b/Content.Server/Chat/Managers/ChatManager.cs index 3ad3ff7c3e..56f516942b 100644 --- a/Content.Server/Chat/Managers/ChatManager.cs +++ b/Content.Server/Chat/Managers/ChatManager.cs @@ -253,7 +253,7 @@ public void ChatMessageToOne(ChatChannel channel, string message, string wrapped if ((channel & ChatChannel.AdminRelated) == 0 || _configurationManager.GetCVar(CCVars.ReplayRecordAdminChat)) { - _replay.QueueReplayMessage(msg); + _replay.RecordServerMessage(msg); } } @@ -271,7 +271,7 @@ public void ChatMessageToMany(ChatChannel channel, string message, string wrappe if ((channel & ChatChannel.AdminRelated) == 0 || _configurationManager.GetCVar(CCVars.ReplayRecordAdminChat)) { - _replay.QueueReplayMessage(msg); + _replay.RecordServerMessage(msg); } } @@ -301,7 +301,7 @@ public void ChatMessageToAll(ChatChannel channel, string message, string wrapped if ((channel & ChatChannel.AdminRelated) == 0 || _configurationManager.GetCVar(CCVars.ReplayRecordAdminChat)) { - _replay.QueueReplayMessage(msg); + _replay.RecordServerMessage(msg); } } diff --git a/Content.Server/Chat/Systems/ChatSystem.cs b/Content.Server/Chat/Systems/ChatSystem.cs index 39aa207466..3e1a264369 100644 --- a/Content.Server/Chat/Systems/ChatSystem.cs +++ b/Content.Server/Chat/Systems/ChatSystem.cs @@ -397,7 +397,7 @@ private void SendEntityWhisper(EntityUid source, string originalMessage, ChatTra _chatManager.ChatMessageToOne(ChatChannel.Whisper, obfuscatedMessage, wrappedobfuscatedMessage, source, false, session.ConnectedClient); } - _replay.QueueReplayMessage(new ChatMessage(ChatChannel.Whisper, message, wrappedMessage, source, MessageRangeHideChatForReplay(range))); + _replay.RecordServerMessage(new ChatMessage(ChatChannel.Whisper, message, wrappedMessage, source, MessageRangeHideChatForReplay(range))); var ev = new EntitySpokeEvent(source, message, channel, obfuscatedMessage); RaiseLocalEvent(source, ev, true); @@ -548,7 +548,7 @@ private void SendInVoiceRange(ChatChannel channel, string message, string wrappe _chatManager.ChatMessageToOne(channel, message, wrappedMessage, source, entHideChat, session.ConnectedClient); } - _replay.QueueReplayMessage(new ChatMessage(channel, message, wrappedMessage, source, MessageRangeHideChatForReplay(range))); + _replay.RecordServerMessage(new ChatMessage(channel, message, wrappedMessage, source, MessageRangeHideChatForReplay(range))); } /// diff --git a/Content.Server/Chat/TypingIndicator/TypingIndicatorSystem.cs b/Content.Server/Chat/TypingIndicator/TypingIndicatorSystem.cs index 44af5b197c..c48ba07c44 100644 --- a/Content.Server/Chat/TypingIndicator/TypingIndicatorSystem.cs +++ b/Content.Server/Chat/TypingIndicator/TypingIndicatorSystem.cs @@ -25,7 +25,7 @@ private void OnPlayerAttached(PlayerAttachedEvent ev) // when player poses entity we want to make sure that there is typing indicator EnsureComp(ev.Entity); // we also need appearance component to sync visual state - EnsureComp(ev.Entity); + EnsureComp(ev.Entity); } private void OnPlayerDetached(EntityUid uid, TypingIndicatorComponent component, PlayerDetachedEvent args) diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.Visuals.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.Visuals.cs index 9892b36896..5d3adff1c2 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.Visuals.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.Visuals.cs @@ -50,7 +50,7 @@ private EntityUid CreateExplosionVisualEntity(MapCoordinates epicenter, string p // restricted to something like the same map, but whatever. _pvsSys.AddGlobalOverride(explosionEntity); - var appearance = AddComp(explosionEntity); + var appearance = AddComp(explosionEntity); _appearance.SetData(explosionEntity, ExplosionAppearanceData.Progress, 1, appearance); return explosionEntity; diff --git a/Content.Server/GameTicking/GameTicker.RoundFlow.cs b/Content.Server/GameTicking/GameTicker.RoundFlow.cs index 7697e927ac..b7a814878e 100644 --- a/Content.Server/GameTicking/GameTicker.RoundFlow.cs +++ b/Content.Server/GameTicking/GameTicker.RoundFlow.cs @@ -4,7 +4,6 @@ using Content.Server.Maps; using Content.Server.Mind; using Content.Server.Players; -using Content.Shared.CCVar; using Content.Shared.GameTicking; using Content.Shared.Preferences; using JetBrains.Annotations; @@ -18,7 +17,6 @@ using Robust.Shared.Random; using Robust.Shared.Utility; using System.Linq; -using System.Threading.Tasks; using Content.Shared.Database; using Robust.Shared.Asynchronous; @@ -66,9 +64,6 @@ private set } } - [ViewVariables] - public int RoundId { get; private set; } - /// /// Returns true if the round's map is eligible to be updated. /// diff --git a/Content.Server/GameTicking/GameTicker.cs b/Content.Server/GameTicking/GameTicker.cs index 4ede0f6f50..7951f5d119 100644 --- a/Content.Server/GameTicking/GameTicker.cs +++ b/Content.Server/GameTicking/GameTicker.cs @@ -1,6 +1,5 @@ using Content.Server.Administration.Logs; using Content.Server.Administration.Managers; -using Content.Server.Chat; using Content.Server.Chat.Managers; using Content.Server.Chat.Systems; using Content.Server.Database; @@ -14,23 +13,17 @@ using Content.Shared.Chat; using Content.Shared.Damage; using Content.Shared.GameTicking; -using Content.Shared.Mobs.Systems; using Content.Shared.Roles; using Robust.Server; using Robust.Server.GameObjects; -using Robust.Server.Maps; using Robust.Shared.Configuration; using Robust.Shared.Console; #if EXCEPTION_TOLERANCE using Robust.Shared.Exceptions; #endif using Robust.Shared.Map; -using Robust.Shared.Network; using Robust.Shared.Prototypes; using Robust.Shared.Random; -using Robust.Shared.Replays; -using Robust.Shared.Serialization.Markdown.Mapping; -using Robust.Shared.Serialization.Markdown.Value; using Robust.Shared.Timing; using Robust.Shared.Utility; @@ -68,7 +61,6 @@ public override void Initialize() DebugTools.Assert(_prototypeManager.Index(FallbackOverflowJob).Name == FallbackOverflowJobName, "Overflow role does not have the correct name!"); InitializeGameRules(); - _replay.OnRecordingStarted += OnRecordingStart; _initialized = true; } @@ -88,12 +80,6 @@ public override void Shutdown() base.Shutdown(); ShutdownGameRules(); - _replay.OnRecordingStarted -= OnRecordingStart; - } - - private void OnRecordingStart((MappingDataNode, List) data) - { - data.Item1["roundId"] = new ValueDataNode(RoundId.ToString()); } private void SendServerMessage(string message) @@ -123,7 +109,6 @@ public override void Update(float frameTime) #if EXCEPTION_TOLERANCE [Dependency] private readonly IRuntimeLog _runtimeLog = default!; #endif - [Dependency] private readonly StationSystem _stationSystem = default!; [Dependency] private readonly StationSpawningSystem _stationSpawning = default!; [Dependency] private readonly StationJobsSystem _stationJobs = default!; [Dependency] private readonly DamageableSystem _damageable = default!; @@ -133,6 +118,5 @@ public override void Update(float frameTime) [Dependency] private readonly ServerUpdateManager _serverUpdates = default!; [Dependency] private readonly PlayTimeTrackingSystem _playTimeTrackings = default!; [Dependency] private readonly UserDbDataManager _userDb = default!; - [Dependency] private readonly IReplayRecordingManager _replay = default!; } } diff --git a/Content.Server/Pointing/EntitySystems/PointingSystem.cs b/Content.Server/Pointing/EntitySystems/PointingSystem.cs index 37cb168139..bcf6ca6657 100644 --- a/Content.Server/Pointing/EntitySystems/PointingSystem.cs +++ b/Content.Server/Pointing/EntitySystems/PointingSystem.cs @@ -80,7 +80,7 @@ private void SendMessage(EntityUid source, IEnumerable viewers, RaiseNetworkEvent(new PopupEntityEvent(message, PopupType.Small, source), viewerEntity); } - _replay.QueueReplayMessage(new PopupEntityEvent(viewerMessage, PopupType.Small, source)); + _replay.RecordServerMessage(new PopupEntityEvent(viewerMessage, PopupType.Small, source)); } public bool InRange(EntityUid pointer, EntityCoordinates coordinates) diff --git a/Content.Server/Radio/EntitySystems/RadioSystem.cs b/Content.Server/Radio/EntitySystems/RadioSystem.cs index b5ced6637e..44963c2863 100644 --- a/Content.Server/Radio/EntitySystems/RadioSystem.cs +++ b/Content.Server/Radio/EntitySystems/RadioSystem.cs @@ -122,7 +122,7 @@ public void SendRadioMessage(EntityUid messageSource, string message, RadioChann else _adminLogger.Add(LogType.Chat, LogImpact.Low, $"Radio message from {ToPrettyString(messageSource):user} on {channel.LocalizedName}: {message}"); - _replay.QueueReplayMessage(chat); + _replay.RecordServerMessage(chat); _messages.Remove(message); } diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs index fef043efc4..ac5b02b1ad 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -1596,6 +1596,6 @@ public static readonly CVarDef /// false. /// public static readonly CVarDef ReplayRecordAdminChat = - CVarDef.Create("replay.record_admin_chat", false, CVar.SERVERONLY); + CVarDef.Create("replay.record_admin_chat", false, CVar.ARCHIVE); } } diff --git a/Content.Shared/GameTicking/SharedGameTicker.cs b/Content.Shared/GameTicking/SharedGameTicker.cs index 47ea4e950e..14e8b68e9f 100644 --- a/Content.Shared/GameTicking/SharedGameTicker.cs +++ b/Content.Shared/GameTicking/SharedGameTicker.cs @@ -1,16 +1,41 @@ using Robust.Shared.Network; +using Robust.Shared.Replays; using Robust.Shared.Serialization; -using Robust.Shared.Utility; +using Robust.Shared.Serialization.Markdown.Mapping; +using Robust.Shared.Serialization.Markdown.Value; namespace Content.Shared.GameTicking { public abstract class SharedGameTicker : EntitySystem { + [Dependency] private readonly IReplayRecordingManager _replay = default!; + // See ideally these would be pulled from the job definition or something. // But this is easier, and at least it isn't hardcoded. //TODO: Move these, they really belong in StationJobsSystem or a cvar. public const string FallbackOverflowJob = "Passenger"; public const string FallbackOverflowJobName = "job-name-passenger"; + + // TODO network. + // Probably most useful for replays, round end info, and probably things like lobby menus. + [ViewVariables] + public int RoundId { get; protected set; } + + public override void Initialize() + { + base.Initialize(); + _replay.RecordingStarted += OnRecordingStart; + } + + public override void Shutdown() + { + _replay.RecordingStarted -= OnRecordingStart; + } + + private void OnRecordingStart(MappingDataNode metadata, List events) + { + metadata["roundId"] = new ValueDataNode(RoundId.ToString()); + } } [Serializable, NetSerializable] diff --git a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml index 17dbbbace0..89fc4fa85f 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml @@ -228,12 +228,6 @@ layer: - MobLayer - type: Appearance - rotate: true - states: - Alive: - Base: onestar_boss - Dead: - Base: onestar_boss_wrecked - type: CombatMode - type: Tag tags: diff --git a/Resources/clientCommandPerms.yml b/Resources/clientCommandPerms.yml index 1b762ecf0c..d2eed89736 100644 --- a/Resources/clientCommandPerms.yml +++ b/Resources/clientCommandPerms.yml @@ -31,6 +31,16 @@ - cvar - fuckrules - midipanic + - replay_recording_start + - replay_recording_stop + - replay_recording_stats + - replay_play + - replay_pause + - replay_toggle + - replay_skip + - replay_set_time + - replay_stop + - replay_load - Flags: DEBUG Commands: diff --git a/Resources/engineCommandPerms.yml b/Resources/engineCommandPerms.yml index a2aafdff78..6dff0d9b22 100644 --- a/Resources/engineCommandPerms.yml +++ b/Resources/engineCommandPerms.yml @@ -64,6 +64,7 @@ - tilelookup - net_entityreport - scene + - replay_recording_stats - Flags: MAPPING @@ -120,6 +121,8 @@ - gcf - getcomponentregistration - fuck + - replay_recording_start + - replay_recording_stop - Flags: QUERY Commands: From b826980b1822297526acc0df3ca390dfeff9045d Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 18 Jun 2023 13:24:08 -0400 Subject: [PATCH 319/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 7b3748e7c0..f4ea848d9a 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: EmoGarbage404 - changes: - - {message: Entities that draw battery power should now draw at a consistent rate., - type: Fix} - - {message: Anomaly locators now consume less power while active., type: Tweak} - id: 3531 - time: '2023-04-24T03:35:19.0000000+00:00' - author: OctoRocket changes: - {message: Healing items like bruise packs will now repeatedly heal until the patient @@ -2922,3 +2915,9 @@ Entries: - {message: Removed the spare CE belt., type: Remove} id: 4030 time: '2023-06-18T17:06:09.0000000+00:00' +- author: ElectroJr + changes: + - {message: 'Fixed equipped clothing sprites not working for some mobs (e.g., monkeys).', + type: Fix} + id: 4031 + time: '2023-06-18T17:23:04.0000000+00:00' From f9bfdb6b42cffe88486f56c0b2c4c463c6a88613 Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Mon, 19 Jun 2023 05:46:33 +1200 Subject: [PATCH 320/474] Update engine (#17432) --- RobustToolbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RobustToolbox b/RobustToolbox index 3bd7309536..33702b10f3 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit 3bd7309536f066ec835ca1856b4821c4036ddd2b +Subproject commit 33702b10f35e6b4002b60b9fbfbf7a7197c3a176 From 8a943fb374b0db27d85cef2c9e82c5d9bf704ccd Mon Sep 17 00:00:00 2001 From: Vordenburg <114301317+Vordenburg@users.noreply.github.com> Date: Sun, 18 Jun 2023 14:25:01 -0400 Subject: [PATCH 321/474] Make suit storage units anchored, heavier, thicker (#17433) --- .../Storage/Closets/base_structureclosets.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml b/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml index 042d35fc57..4aac9097e7 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml @@ -180,10 +180,12 @@ #I am terribly sorry for duplicating the closet almost-wholesale, but the game malds at me if I don't so here we are. - type: entity id: SuitStorageBase - parent: BaseStructureDynamic + parent: BaseStructure name: suit storage unit description: A fancy hi-tech storage unit made for storing space suits. components: + - type: Anchorable + delay: 2 - type: StaticPrice price: 80 - type: ResistLocker @@ -214,7 +216,7 @@ shape: !type:PhysShapeAabb bounds: "-0.25,-0.48,0.25,0.48" - density: 145 + density: 350 mask: - MachineMask layer: @@ -234,13 +236,13 @@ thresholds: - trigger: !type:DamageTrigger - damage: 300 + damage: 400 behaviors: - !type:DoActsBehavior acts: [ "Destruction" ] - trigger: !type:DamageTrigger - damage: 150 + damage: 200 behaviors: - !type:DoActsBehavior acts: ["Destruction"] From dd7032a860a84033fc3c3428ebaf8ec6fa6edf97 Mon Sep 17 00:00:00 2001 From: ShadowCommander <10494922+ShadowCommander@users.noreply.github.com> Date: Sun, 18 Jun 2023 11:33:19 -0700 Subject: [PATCH 322/474] Mind ECS (#16826) --- .../Tests/Interaction/InteractionTest.cs | 29 +- .../Tests/Minds/GhostRoleTests.cs | 103 +++ .../{ => Minds}/MindEntityDeletionTest.cs | 47 +- .../Tests/Minds/MindTests.cs | 456 ++++++++++++++ .../AME/Components/AMEControllerComponent.cs | 10 +- .../Administration/Commands/AGhost.cs | 15 +- .../Administration/Commands/ControlMob.cs | 6 +- .../Administration/Commands/SetMindCommand.cs | 18 +- .../Systems/AdminVerbSystem.Antags.cs | 2 +- .../Administration/Systems/AdminVerbSystem.cs | 13 +- Content.Server/Body/Systems/BodySystem.cs | 12 +- Content.Server/Body/Systems/BrainSystem.cs | 11 +- Content.Server/Bql/QuerySelectors.cs | 13 +- .../CharacterInfo/CharacterInfoSystem.cs | 4 +- .../Chat/Commands/SuicideCommand.cs | 2 +- Content.Server/Chat/Managers/ChatManager.cs | 11 +- Content.Server/Chat/Managers/IChatManager.cs | 2 +- Content.Server/Chat/Systems/ChatSystem.cs | 4 +- .../Chemistry/ReagentEffects/MakeSentient.cs | 8 +- .../Cloning/CloningConsoleSystem.cs | 4 +- Content.Server/Cloning/CloningSystem.cs | 11 +- Content.Server/Drone/DroneSystem.cs | 4 +- .../ExplosionSystem.Processing.cs | 4 +- .../GameTicking/GameTicker.GamePreset.cs | 12 +- .../GameTicking/GameTicker.Player.cs | 1 + .../GameTicking/GameTicker.RoundFlow.cs | 5 +- .../GameTicking/GameTicker.Spawning.cs | 19 +- .../GameTicking/Rules/NukeopsRuleSystem.cs | 32 +- .../GameTicking/Rules/PiratesRuleSystem.cs | 11 +- .../GameTicking/Rules/TraitorRuleSystem.cs | 13 +- .../GameTicking/Rules/ZombieRuleSystem.cs | 7 +- Content.Server/Ghost/GhostSystem.cs | 14 +- Content.Server/Ghost/ReturnToBodyEui.cs | 7 +- .../Roles/Components/GhostRoleComponent.cs | 2 +- Content.Server/Ghost/Roles/GhostRoleSystem.cs | 22 +- .../Ghost/Roles/MakeGhostRoleCommand.cs | 2 +- .../BiomassReclaimerSystem.cs | 2 +- Content.Server/Medical/DefibrillatorSystem.cs | 2 +- .../Mind/Commands/MakeSentientCommand.cs | 2 +- .../Mind/Commands/MindInfoCommand.cs | 2 +- Content.Server/Mind/Commands/RenameCommand.cs | 2 +- ...Component.cs => MindContainerComponent.cs} | 6 +- .../Mind/Components/VisitingMindComponent.cs | 10 +- Content.Server/Mind/Mind.cs | 381 +---------- Content.Server/Mind/MindSystem.cs | 592 +++++++++++++++--- Content.Server/Mind/MindTrackerSystem.cs | 4 +- .../Mind/TransferMindOnGibSystem.cs | 5 +- .../Commands/AddObjectiveCommand.cs | 7 +- .../Commands/RemoveObjectiveCommand.cs | 6 +- .../Objectives/Conditions/DieCondition.cs | 11 +- .../Conditions/EscapeShuttleCondition.cs | 4 +- .../Conditions/KillPersonCondition.cs | 11 +- .../Conditions/KillRandomPersonCondition.cs | 2 +- .../Conditions/RandomTraitorAliveCondition.cs | 11 +- .../Requirements/TraitorRequirement.cs | 9 +- Content.Server/PAI/PAISystem.cs | 10 +- Content.Server/PDA/PdaSystem.cs | 2 + .../ParticleAcceleratorSystem.ControlBox.cs | 12 +- Content.Server/Players/PlayerData.cs | 11 +- .../Polymorph/Systems/PolymorphSystem.cs | 12 +- .../Revenant/EntitySystems/EssenceSystem.cs | 2 +- Content.Server/Roles/AddRoleCommand.cs | 6 +- Content.Server/Roles/Job.cs | 6 +- Content.Server/Roles/RemoveRoleCommand.cs | 5 +- .../EntitySystems/EventHorizonSystem.cs | 2 +- .../Events/MassHallucinationsRule.cs | 2 +- .../EntitySystems/BluespaceLockerSystem.cs | 4 +- .../Store/Conditions/BuyerAntagCondition.cs | 2 +- .../Store/Conditions/BuyerJobCondition.cs | 2 +- Content.Server/Teleportation/PortalSystem.cs | 2 +- .../Worldgen/Systems/WorldControllerSystem.cs | 3 +- .../Zombies/ZombifyOnDeathSystem.cs | 11 +- .../en-US/mind/components/mind-component.ftl | 9 +- Resources/Maps/barratry.yml | 2 +- .../Entities/Mobs/NPCs/revenant.yml | 2 +- .../Entities/Mobs/Player/arachnid.yml | 2 +- .../Prototypes/Entities/Mobs/Player/diona.yml | 2 +- .../Prototypes/Entities/Mobs/Player/dwarf.yml | 2 +- .../Entities/Mobs/Player/familiars.yml | 4 +- .../Prototypes/Entities/Mobs/Player/human.yml | 2 +- .../Entities/Mobs/Player/observer.yml | 2 +- .../Entities/Mobs/Player/reptilian.yml | 2 +- .../Entities/Mobs/Player/skeleton.yml | 2 +- .../Prototypes/Entities/Mobs/Player/slime.yml | 2 +- .../Prototypes/Entities/Mobs/Player/vox.yml | 3 +- 85 files changed, 1428 insertions(+), 707 deletions(-) create mode 100644 Content.IntegrationTests/Tests/Minds/GhostRoleTests.cs rename Content.IntegrationTests/Tests/{ => Minds}/MindEntityDeletionTest.cs (84%) create mode 100644 Content.IntegrationTests/Tests/Minds/MindTests.cs rename Content.Server/Mind/Components/{MindComponent.cs => MindContainerComponent.cs} (88%) diff --git a/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs b/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs index 6b8760bf59..0f1690d453 100644 --- a/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs +++ b/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs @@ -38,7 +38,7 @@ namespace Content.IntegrationTests.Tests.Interaction; [FixtureLifeCycle(LifeCycle.InstancePerTestCase)] public abstract partial class InteractionTest { - protected virtual string PlayerPrototype => "MobInteractionTestObserver"; + protected virtual string PlayerPrototype => "InteractionTestMob"; protected PairTracker PairTracker = default!; protected TestMapData MapData = default!; @@ -115,38 +115,27 @@ public abstract partial class InteractionTest public float TickPeriod => (float)STiming.TickPeriod.TotalSeconds; - [SetUp] - public virtual async Task Setup() - { - const string TestPrototypes = @" + + // Simple mob that has one hand and can perform misc interactions. + public const string TestPrototypes = @" - type: entity - id: MobInteractionTestObserver - name: observer - noSpawn: true - save: false - description: Boo! + id: InteractionTestMob components: - - type: Access - groups: - - AllAccess - type: Body prototype: Aghost - type: DoAfter - - type: Ghost - canInteract: true - type: Hands - - type: Mind + - type: MindContainer - type: Stripping - type: Tag tags: - CanPilot - - BypassInteractionRangeChecks - - type: Thieving - stripTimeReduction: 9999 - stealthy: true - type: UserInterface "; + [SetUp] + public virtual async Task Setup() + { PairTracker = await PoolManager.GetServerClient(new PoolSettings{ExtraPrototypes = TestPrototypes}); // server dependencies diff --git a/Content.IntegrationTests/Tests/Minds/GhostRoleTests.cs b/Content.IntegrationTests/Tests/Minds/GhostRoleTests.cs new file mode 100644 index 0000000000..bd6ce81d1a --- /dev/null +++ b/Content.IntegrationTests/Tests/Minds/GhostRoleTests.cs @@ -0,0 +1,103 @@ +#nullable enable +using System.Threading.Tasks; +using Content.Server.Ghost.Roles; +using Content.Server.Ghost.Roles.Components; +using Content.Server.Mind; +using Content.Server.Players; +using NUnit.Framework; +using Robust.Shared.Console; +using Robust.Shared.GameObjects; +using Robust.Shared.Map; + +namespace Content.IntegrationTests.Tests.Minds; + +[TestFixture] +public sealed class GhostRoleTests +{ + private const string Prototypes = @" +- type: entity + id: GhostRoleTestEntity_Player + components: + - type: MindContainer + +- type: entity + id: GhostRoleTestEntity_Role + components: + - type: MindContainer + - type: GhostRole + - type: GhostTakeoverAvailable +"; + + /// + /// This is a simple test that just checks if a player can take a ghost roll and then regain control of their + /// original entity without encountering errors. + /// + [Test] + public async Task TakeRoleAndReturn() + { + await using var pairTracker = await PoolManager.GetServerClient(new PoolSettings {ExtraPrototypes = Prototypes}); + var server = pairTracker.Pair.Server; + var client = pairTracker.Pair.Client; + + var entMan = server.ResolveDependency(); + var sPlayerMan = server.ResolveDependency(); + var conHost = client.ResolveDependency(); + var cPlayerMan = client.ResolveDependency(); + var mindSystem = entMan.System(); + + // Get player data + if (cPlayerMan.LocalPlayer?.Session == null) + Assert.Fail("No player"); + + var clientSession = cPlayerMan.LocalPlayer!.Session!; + var session = sPlayerMan.GetSessionByUserId(clientSession.UserId); + + // Spawn player entity & attach + EntityUid originalMob = default; + await server.WaitPost(() => + { + originalMob = entMan.SpawnEntity("GhostRoleTestEntity_Player", MapCoordinates.Nullspace); + mindSystem.TransferTo(session.ContentData()!.Mind!, originalMob, true); + }); + + // Check player got attached. + await PoolManager.RunTicksSync(pairTracker.Pair, 10); + Assert.That(cPlayerMan.LocalPlayer.ControlledEntity, Is.EqualTo(originalMob)); + + // Use the ghost command + conHost.ExecuteCommand("ghost"); + await PoolManager.RunTicksSync(pairTracker.Pair, 10); + Assert.That(cPlayerMan.LocalPlayer.ControlledEntity, Is.Not.EqualTo(originalMob)); + + // Spawn ghost takeover entity. + EntityUid ghostRole = default; + await server.WaitPost(() => ghostRole = entMan.SpawnEntity("GhostRoleTestEntity_Role", MapCoordinates.Nullspace)); + + // Take the ghost role + await server.WaitPost(() => + { + var id = entMan.GetComponent(ghostRole).Identifier; + entMan.EntitySysManager.GetEntitySystem().Takeover(session, id); + }); + + // Check player got attached to ghost role. + await PoolManager.RunTicksSync(pairTracker.Pair, 10); + Assert.That(cPlayerMan.LocalPlayer.ControlledEntity, Is.EqualTo(ghostRole)); + + // Ghost again. + conHost.ExecuteCommand("ghost"); + await PoolManager.RunTicksSync(pairTracker.Pair, 10); + Assert.That(cPlayerMan.LocalPlayer.ControlledEntity, Is.Not.EqualTo(originalMob)); + Assert.That(cPlayerMan.LocalPlayer.ControlledEntity, Is.Not.EqualTo(ghostRole)); + + // Next, control the original entity again: + await server.WaitPost(() => + { + mindSystem.TransferTo(session.ContentData()!.Mind!, originalMob, true); + }); + await PoolManager.RunTicksSync(pairTracker.Pair, 10); + Assert.That(cPlayerMan.LocalPlayer.ControlledEntity, Is.EqualTo(originalMob)); + + await pairTracker.CleanReturnAsync(); + } +} diff --git a/Content.IntegrationTests/Tests/MindEntityDeletionTest.cs b/Content.IntegrationTests/Tests/Minds/MindEntityDeletionTest.cs similarity index 84% rename from Content.IntegrationTests/Tests/MindEntityDeletionTest.cs rename to Content.IntegrationTests/Tests/Minds/MindEntityDeletionTest.cs index 93c5fe41f1..82baf4810d 100644 --- a/Content.IntegrationTests/Tests/MindEntityDeletionTest.cs +++ b/Content.IntegrationTests/Tests/Minds/MindEntityDeletionTest.cs @@ -1,7 +1,7 @@ +#nullable enable using System.Linq; using System.Threading.Tasks; using Content.Server.Mind; -using Content.Shared.Coordinates; using NUnit.Framework; using Robust.Server.GameObjects; using Robust.Server.Player; @@ -10,7 +10,7 @@ using Robust.Shared.Map; using Robust.Shared.Maths; -namespace Content.IntegrationTests.Tests +namespace Content.IntegrationTests.Tests.Minds { // Tests various scenarios of deleting the entity that a player's mind is connected to. [TestFixture] @@ -26,9 +26,11 @@ public async Task TestDeleteVisiting() var playerMan = server.ResolveDependency(); var mapManager = server.ResolveDependency(); + var mindSystem = entMan.EntitySysManager.GetEntitySystem(); + EntityUid playerEnt = default; EntityUid visitEnt = default; - Mind mind = null; + Mind mind = default!; var map = await PoolManager.CreateTestMap(pairTracker); await server.WaitAssertion(() => @@ -39,11 +41,9 @@ await server.WaitAssertion(() => playerEnt = entMan.SpawnEntity(null, pos); visitEnt = entMan.SpawnEntity(null, pos); - mind = new Mind(player.UserId); - mind.ChangeOwningPlayer(player.UserId); - - mind.TransferTo(playerEnt); - mind.Visit(visitEnt); + mind = mindSystem.CreateMind(player.UserId); + mindSystem.TransferTo(mind, playerEnt); + mindSystem.Visit(mind, visitEnt); Assert.That(player.AttachedEntity, Is.EqualTo(visitEnt)); Assert.That(mind.VisitingEntity, Is.EqualTo(visitEnt)); @@ -54,11 +54,6 @@ await server.WaitAssertion(() => await server.WaitAssertion(() => { entMan.DeleteEntity(visitEnt); - if (mind == null) - { - Assert.Fail("Mind was null"); - return; - } if (mind.VisitingEntity != null) { @@ -91,10 +86,13 @@ public async Task TestGhostOnDelete() var entMan = server.ResolveDependency(); var playerMan = server.ResolveDependency(); var mapManager = server.ResolveDependency(); + + var mindSystem = entMan.EntitySysManager.GetEntitySystem(); + var map = await PoolManager.CreateTestMap(pairTracker); EntityUid playerEnt = default; - Mind mind = null; + Mind mind = default!; await server.WaitAssertion(() => { var player = playerMan.ServerSessions.Single(); @@ -103,10 +101,8 @@ await server.WaitAssertion(() => playerEnt = entMan.SpawnEntity(null, pos); - mind = new Mind(player.UserId); - mind.ChangeOwningPlayer(player.UserId); - - mind.TransferTo(playerEnt); + mind = mindSystem.CreateMind(player.UserId); + mindSystem.TransferTo(mind, playerEnt); Assert.That(mind.CurrentEntity, Is.EqualTo(playerEnt)); }); @@ -136,27 +132,26 @@ await server.WaitPost(() => [Test] public async Task TestGhostOnDeleteMap() { - await using var pairTracker = await PoolManager.GetServerClient(); + await using var pairTracker = await PoolManager.GetServerClient(new PoolSettings { NoClient = true }); var server = pairTracker.Pair.Server; var testMap = await PoolManager.CreateTestMap(pairTracker); var coordinates = testMap.GridCoords; var entMan = server.ResolveDependency(); - var playerMan = server.ResolveDependency(); var mapManager = server.ResolveDependency(); + + var mindSystem = entMan.EntitySysManager.GetEntitySystem(); + var map = await PoolManager.CreateTestMap(pairTracker); EntityUid playerEnt = default; - Mind mind = null; + Mind mind = default!; await server.WaitAssertion(() => { - var player = playerMan.ServerSessions.Single(); - playerEnt = entMan.SpawnEntity(null, coordinates); - mind = new Mind(player.UserId); - mind.ChangeOwningPlayer(player.UserId); - mind.TransferTo(playerEnt); + mind = mindSystem.CreateMind(null); + mindSystem.TransferTo(mind, playerEnt); Assert.That(mind.CurrentEntity, Is.EqualTo(playerEnt)); }); diff --git a/Content.IntegrationTests/Tests/Minds/MindTests.cs b/Content.IntegrationTests/Tests/Minds/MindTests.cs new file mode 100644 index 0000000000..68c1617554 --- /dev/null +++ b/Content.IntegrationTests/Tests/Minds/MindTests.cs @@ -0,0 +1,456 @@ +#nullable enable +using System; +using System.Linq; +using System.Threading.Tasks; +using Content.Server.Ghost; +using Content.Server.Ghost.Roles; +using Content.Server.Mind; +using Content.Server.Mind.Commands; +using Content.Server.Mind.Components; +using Content.Server.Players; +using Content.Server.Roles; +using Content.Server.Traitor; +using Content.Shared.Damage; +using Content.Shared.Damage.Prototypes; +using Content.Shared.FixedPoint; +using Content.Shared.Roles; +using NUnit.Framework; +using Robust.Server.Console; +using Robust.Server.GameObjects; +using Robust.Server.Player; +using Robust.Shared.GameObjects; +using Robust.Shared.IoC; +using Robust.Shared.Map; +using Robust.Shared.Network; +using Robust.Shared.Prototypes; +using IPlayerManager = Robust.Server.Player.IPlayerManager; + +namespace Content.IntegrationTests.Tests.Minds; + +[TestFixture] +public sealed class MindTests +{ + private const string Prototypes = @" +- type: entity + id: MindTestEntity + components: + - type: MindContainer + +- type: entity + parent: MindTestEntity + id: MindTestEntityDamageable + components: + - type: Damageable + damageContainer: Biological + - type: Body + prototype: Human + requiredLegs: 2 + - type: MobState + - type: MobThresholds + thresholds: + 0: Alive + 100: Critical + 200: Dead + - type: Destructible + thresholds: + - trigger: + !type:DamageTypeTrigger + damageType: Blunt + damage: 400 + behaviors: + - !type:GibBehavior { } +"; + + /// + /// Exception handling for PlayerData and NetUserId invalid due to testing. + /// Can be removed when Players can be mocked. + /// + /// + private void CatchPlayerDataException(Action func) + { + try + { + func(); + } + catch (ArgumentException e) + { + // Prevent exiting due to PlayerData not being initialized. + if (e.Message == "New owner must have previously logged into the server. (Parameter 'newOwner')") + return; + throw; + } + } + + [Test] + public async Task TestCreateAndTransferMindToNewEntity() + { + await using var pairTracker = await PoolManager.GetServerClient(new PoolSettings{ NoClient = true }); + var server = pairTracker.Pair.Server; + + var entMan = server.ResolveDependency(); + + await server.WaitAssertion(() => + { + var mindSystem = entMan.EntitySysManager.GetEntitySystem(); + + var entity = entMan.SpawnEntity(null, new MapCoordinates()); + var mindComp = entMan.EnsureComponent(entity); + + var mind = mindSystem.CreateMind(null); + + Assert.That(mind.UserId, Is.EqualTo(null)); + + mindSystem.TransferTo(mind, entity); + Assert.That(mindSystem.GetMind(entity, mindComp), Is.EqualTo(mind)); + }); + + await pairTracker.CleanReturnAsync(); + } + + [Test] + public async Task TestReplaceMind() + { + await using var pairTracker = await PoolManager.GetServerClient(new PoolSettings{ NoClient = true }); + var server = pairTracker.Pair.Server; + + var entMan = server.ResolveDependency(); + + await server.WaitAssertion(() => + { + var mindSystem = entMan.EntitySysManager.GetEntitySystem(); + + var entity = entMan.SpawnEntity(null, new MapCoordinates()); + var mindComp = entMan.EnsureComponent(entity); + + var mind = mindSystem.CreateMind(null); + mindSystem.TransferTo(mind, entity); + Assert.That(mindSystem.GetMind(entity, mindComp), Is.EqualTo(mind)); + + var mind2 = mindSystem.CreateMind(null); + mindSystem.TransferTo(mind2, entity); + Assert.That(mindSystem.GetMind(entity, mindComp), Is.EqualTo(mind2)); + Assert.That(mind.OwnedEntity != entity); + }); + + await pairTracker.CleanReturnAsync(); + } + + [Test] + public async Task TestEntityDeadWhenGibbed() + { + await using var pairTracker = await PoolManager.GetServerClient(new PoolSettings{ NoClient = true, ExtraPrototypes = Prototypes }); + var server = pairTracker.Pair.Server; + + var entMan = server.ResolveDependency(); + var protoMan = server.ResolveDependency(); + + EntityUid entity = default!; + MindContainerComponent mindContainerComp = default!; + Mind mind = default!; + var mindSystem = entMan.EntitySysManager.GetEntitySystem(); + var damageableSystem = entMan.EntitySysManager.GetEntitySystem(); + + await server.WaitAssertion(() => + { + entity = entMan.SpawnEntity("MindTestEntityDamageable", new MapCoordinates()); + mindContainerComp = entMan.EnsureComponent(entity); + + mind = mindSystem.CreateMind(null); + + mindSystem.TransferTo(mind, entity); + Assert.That(mindSystem.GetMind(entity, mindContainerComp), Is.EqualTo(mind)); + Assert.That(!mindSystem.IsCharacterDeadPhysically(mind)); + }); + + await PoolManager.RunTicksSync(pairTracker.Pair, 5); + + await server.WaitAssertion(() => + { + var damageable = entMan.GetComponent(entity); + if (!protoMan.TryIndex("Blunt", out var prototype)) + { + return; + } + + damageableSystem.SetDamage(entity, damageable, new DamageSpecifier(prototype, FixedPoint2.New(401))); + Assert.That(mindSystem.GetMind(entity, mindContainerComp), Is.EqualTo(mind)); + }); + + await PoolManager.RunTicksSync(pairTracker.Pair, 5); + + await server.WaitAssertion(() => + { + Assert.That(mindSystem.IsCharacterDeadPhysically(mind)); + }); + + await pairTracker.CleanReturnAsync(); + } + + [Test] + public async Task TestMindTransfersToOtherEntity() + { + await using var pairTracker = await PoolManager.GetServerClient(new PoolSettings{ NoClient = true }); + var server = pairTracker.Pair.Server; + + var entMan = server.ResolveDependency(); + + await server.WaitAssertion(() => + { + var mindSystem = entMan.EntitySysManager.GetEntitySystem(); + + var entity = entMan.SpawnEntity(null, new MapCoordinates()); + var targetEntity = entMan.SpawnEntity(null, new MapCoordinates()); + var mindComp = entMan.EnsureComponent(entity); + entMan.EnsureComponent(targetEntity); + + var mind = mindSystem.CreateMind(null); + + mindSystem.TransferTo(mind, entity); + + Assert.That(mindSystem.GetMind(entity, mindComp), Is.EqualTo(mind)); + + mindSystem.TransferTo(mind, targetEntity); + Assert.That(mindSystem.GetMind(entity, mindComp), Is.EqualTo(null)); + Assert.That(mindSystem.GetMind(targetEntity), Is.EqualTo(mind)); + }); + + await pairTracker.CleanReturnAsync(); + } + + [Test] + public async Task TestOwningPlayerCanBeChanged() + { + await using var pairTracker = await PoolManager.GetServerClient(new PoolSettings{ NoClient = true }); + var server = pairTracker.Pair.Server; + + var entMan = server.ResolveDependency(); + + await server.WaitAssertion(() => + { + var mindSystem = entMan.EntitySysManager.GetEntitySystem(); + + var entity = entMan.SpawnEntity(null, new MapCoordinates()); + var mindComp = entMan.EnsureComponent(entity); + + var mind = mindSystem.CreateMind(null); + + mindSystem.TransferTo(mind, entity); + + Assert.That(mindSystem.GetMind(entity, mindComp), Is.EqualTo(mind)); + + var newUserId = new NetUserId(Guid.NewGuid()); + Assert.That(mindComp.HasMind); + CatchPlayerDataException(() => + mindSystem.ChangeOwningPlayer(mindComp.Mind!, newUserId)); + + Assert.That(mind.UserId, Is.EqualTo(newUserId)); + }); + + await pairTracker.CleanReturnAsync(); + } + + [Test] + public async Task TestAddRemoveHasRoles() + { + await using var pairTracker = await PoolManager.GetServerClient(new PoolSettings{ NoClient = true }); + var server = pairTracker.Pair.Server; + + var entMan = server.ResolveDependency(); + + await server.WaitAssertion(() => + { + var mindSystem = entMan.EntitySysManager.GetEntitySystem(); + + var entity = entMan.SpawnEntity(null, new MapCoordinates()); + var mindComp = entMan.EnsureComponent(entity); + + var mind = mindSystem.CreateMind(null); + + Assert.That(mind.UserId, Is.EqualTo(null)); + + mindSystem.TransferTo(mind, entity); + Assert.That(mindSystem.GetMind(entity, mindComp), Is.EqualTo(mind)); + + Assert.That(!mindSystem.HasRole(mind)); + Assert.That(!mindSystem.HasRole(mind)); + + var traitorRole = new TraitorRole(mind, new AntagPrototype()); + + mindSystem.AddRole(mind, traitorRole); + + Assert.That(mindSystem.HasRole(mind)); + Assert.That(!mindSystem.HasRole(mind)); + + var jobRole = new Job(mind, new JobPrototype()); + + mindSystem.AddRole(mind, jobRole); + + Assert.That(mindSystem.HasRole(mind)); + Assert.That(mindSystem.HasRole(mind)); + + mindSystem.RemoveRole(mind, traitorRole); + + Assert.That(!mindSystem.HasRole(mind)); + Assert.That(mindSystem.HasRole(mind)); + + mindSystem.RemoveRole(mind, jobRole); + + Assert.That(!mindSystem.HasRole(mind)); + Assert.That(!mindSystem.HasRole(mind)); + }); + + await pairTracker.CleanReturnAsync(); + } + + [Test] + public async Task TestPlayerCanGhost() + { + // Client is needed to spawn session + await using var pairTracker = await PoolManager.GetServerClient(); + var server = pairTracker.Pair.Server; + + var entMan = server.ResolveDependency(); + var playerMan = server.ResolveDependency(); + + var mindSystem = entMan.EntitySysManager.GetEntitySystem(); + var ghostSystem = entMan.EntitySysManager.GetEntitySystem(); + + EntityUid entity = default!; + Mind mind = default!; + IPlayerSession player = playerMan.ServerSessions.Single(); + + await server.WaitAssertion(() => + { + entity = entMan.SpawnEntity(null, new MapCoordinates()); + var mindComp = entMan.EnsureComponent(entity); + + mind = mindSystem.CreateMind(player.UserId, "Mindy McThinker"); + + Assert.That(mind.UserId, Is.EqualTo(player.UserId)); + + mindSystem.TransferTo(mind, entity); + Assert.That(mindSystem.GetMind(entity, mindComp), Is.EqualTo(mind)); + }); + + await PoolManager.RunTicksSync(pairTracker.Pair, 5); + + await server.WaitAssertion(() => + { + entMan.DeleteEntity(entity); + }); + + await PoolManager.RunTicksSync(pairTracker.Pair, 5); + + EntityUid mob = default!; + Mind mobMind = default!; + + await server.WaitAssertion(() => + { + Assert.That(mind.OwnedEntity != null); + + mob = entMan.SpawnEntity(null, new MapCoordinates()); + + MakeSentientCommand.MakeSentient(mob, IoCManager.Resolve()); + mobMind = mindSystem.CreateMind(player.UserId, "Mindy McThinker the Second"); + + mindSystem.ChangeOwningPlayer(mobMind, player.UserId); + mindSystem.TransferTo(mobMind, mob); + }); + + await PoolManager.RunTicksSync(pairTracker.Pair, 5); + + await server.WaitAssertion(() => + { + var m = player.ContentData()?.Mind; + Assert.That(m, Is.Not.EqualTo(null)); + Assert.That(m!.OwnedEntity, Is.EqualTo(mob)); + Assert.That(m, Is.Not.EqualTo(mind)); + }); + + await pairTracker.CleanReturnAsync(); + } + + [Test] + public async Task TestPlayerCanReturnFromGhostWhenDead() + { + // TODO Implement + } + + [Test] + public async Task TestGhostDoesNotInfiniteLoop() + { + // Client is needed to spawn session + await using var pairTracker = await PoolManager.GetServerClient(); + var server = pairTracker.Pair.Server; + + var entMan = server.ResolveDependency(); + var playerMan = server.ResolveDependency(); + var serverConsole = server.ResolveDependency(); + + var mindSystem = entMan.EntitySysManager.GetEntitySystem(); + + EntityUid entity = default!; + EntityUid mouse = default!; + EntityUid ghost = default!; + Mind mind = default!; + IPlayerSession player = playerMan.ServerSessions.Single(); + + await server.WaitAssertion(() => + { + // entity = entMan.SpawnEntity(null, new MapCoordinates()); + // var mindComp = entMan.EnsureComponent(entity); + + // mind = mindSystem.CreateMind(player.UserId, "Mindy McThinker"); + // + // Assert.That(mind.UserId, Is.EqualTo(player.UserId)); + // + // mindSystem.TransferTo(mind, entity); + // Assert.That(mindSystem.GetMind(entity, mindComp), Is.EqualTo(mind)); + + var data = player.ContentData(); + + Assert.That(data?.Mind, Is.Not.EqualTo(null)); + mind = data!.Mind!; + + Assert.That(mind.OwnedEntity != null); + + mouse = entMan.SpawnEntity("MobMouse", new MapCoordinates()); + }); + + await PoolManager.RunTicksSync(pairTracker.Pair, 120); + + await server.WaitAssertion(() => + { + serverConsole.ExecuteCommand(player, "aghost"); + }); + + await PoolManager.RunTicksSync(pairTracker.Pair, 120); + + await server.WaitAssertion(() => + { + entMan.EntitySysManager.GetEntitySystem().Takeover(player, 0); + }); + + await PoolManager.RunTicksSync(pairTracker.Pair, 120); + + await server.WaitAssertion(() => + { + var data = player.ContentData()!; + Assert.That(data.Mind!.OwnedEntity == mouse); + + serverConsole.ExecuteCommand(player, "aghost"); + Assert.That(player.AttachedEntity != null); + ghost = player.AttachedEntity!.Value; + }); + + await PoolManager.RunTicksSync(pairTracker.Pair, 60); + + await server.WaitAssertion(() => + { + Assert.That(player.AttachedEntity != null); + Assert.That(ghost == player.AttachedEntity!.Value); + }); + + await pairTracker.CleanReturnAsync(); + } +} diff --git a/Content.Server/AME/Components/AMEControllerComponent.cs b/Content.Server/AME/Components/AMEControllerComponent.cs index 1a398a5eb5..4285ff5fbd 100644 --- a/Content.Server/AME/Components/AMEControllerComponent.cs +++ b/Content.Server/AME/Components/AMEControllerComponent.cs @@ -176,20 +176,20 @@ private void OnUiReceiveMessage(ServerBoundUserInterfaceMessage obj) } // Logging - _entities.TryGetComponent(player, out MindComponent? mindComponent); - if (mindComponent != null) + _entities.TryGetComponent(player, out MindContainerComponent? mindContainerComponent); + if (mindContainerComponent != null) { var humanReadableState = _injecting ? "Inject" : "Not inject"; if (msg.Button == UiButton.IncreaseFuel || msg.Button == UiButton.DecreaseFuel) - _adminLogger.Add(LogType.Action, LogImpact.Extreme, $"{_entities.ToPrettyString(mindComponent.Owner):player} has set the AME to inject {InjectionAmount} while set to {humanReadableState}"); + _adminLogger.Add(LogType.Action, LogImpact.Extreme, $"{_entities.ToPrettyString(mindContainerComponent.Owner):player} has set the AME to inject {InjectionAmount} while set to {humanReadableState}"); if (msg.Button == UiButton.ToggleInjection) - _adminLogger.Add(LogType.Action, LogImpact.Extreme, $"{_entities.ToPrettyString(mindComponent.Owner):player} has set the AME to {humanReadableState}"); + _adminLogger.Add(LogType.Action, LogImpact.Extreme, $"{_entities.ToPrettyString(mindContainerComponent.Owner):player} has set the AME to {humanReadableState}"); // Admin alert if (GetCoreCount() * 2 == InjectionAmount - 2 && msg.Button == UiButton.IncreaseFuel) - _chat.SendAdminAlert(player, $"increased AME over safe limit to {InjectionAmount}", mindComponent); + _chat.SendAdminAlert(player, $"increased AME over safe limit to {InjectionAmount}", mindContainerComponent); } GetAMENodeGroup()?.UpdateCoreVisuals(); diff --git a/Content.Server/Administration/Commands/AGhost.cs b/Content.Server/Administration/Commands/AGhost.cs index 037c289cbd..97b1c48ae1 100644 --- a/Content.Server/Administration/Commands/AGhost.cs +++ b/Content.Server/Administration/Commands/AGhost.cs @@ -1,5 +1,6 @@ using Content.Server.GameTicking; using Content.Server.Ghost.Components; +using Content.Server.Mind; using Content.Server.Players; using Content.Shared.Administration; using Content.Shared.Ghost; @@ -33,11 +34,15 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) shell.WriteLine("You can't ghost here!"); return; } + + var mindSystem = _entities.System(); - if (mind.VisitingEntity != default && _entities.HasComponent(mind.VisitingEntity)) + if (mind.VisitingEntity != default && _entities.TryGetComponent(mind.VisitingEntity, out var oldGhostComponent)) { - player.ContentData()!.Mind?.UnVisit(); - return; + mindSystem.UnVisit(mind); + // If already an admin ghost, then return to body. + if (oldGhostComponent.CanGhostInteract) + return; } var canReturn = mind.CurrentEntity != null @@ -56,12 +61,12 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) else if (!string.IsNullOrWhiteSpace(mind.Session?.Name)) _entities.GetComponent(ghost).EntityName = mind.Session.Name; - mind.Visit(ghost); + mindSystem.Visit(mind, ghost); } else { _entities.GetComponent(ghost).EntityName = player.Name; - mind.TransferTo(ghost); + mindSystem.TransferTo(mind, ghost); } var comp = _entities.GetComponent(ghost); diff --git a/Content.Server/Administration/Commands/ControlMob.cs b/Content.Server/Administration/Commands/ControlMob.cs index 4346ca7f17..18fb3bbb65 100644 --- a/Content.Server/Administration/Commands/ControlMob.cs +++ b/Content.Server/Administration/Commands/ControlMob.cs @@ -1,3 +1,4 @@ +using Content.Server.Mind; using Content.Server.Mind.Components; using Content.Server.Players; using Content.Shared.Administration; @@ -44,7 +45,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - if (!_entities.HasComponent(target)) + if (!_entities.HasComponent(target)) { shell.WriteLine(Loc.GetString("shell-entity-is-not-mob")); return; @@ -54,7 +55,8 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) DebugTools.AssertNotNull(mind); - mind!.TransferTo(target); + var mindSystem = _entities.System(); + mindSystem.TransferTo(mind!, target); } } } diff --git a/Content.Server/Administration/Commands/SetMindCommand.cs b/Content.Server/Administration/Commands/SetMindCommand.cs index 5c728f6599..6ef9c7eede 100644 --- a/Content.Server/Administration/Commands/SetMindCommand.cs +++ b/Content.Server/Administration/Commands/SetMindCommand.cs @@ -1,3 +1,4 @@ +using Content.Server.Mind; using Content.Server.Mind.Components; using Content.Server.Players; using Content.Shared.Administration; @@ -9,9 +10,10 @@ namespace Content.Server.Administration.Commands [AdminCommand(AdminFlags.Admin)] sealed class SetMindCommand : IConsoleCommand { + public string Command => "setmind"; - public string Description => Loc.GetString("set-mind-command-description", ("requiredComponent", nameof(MindComponent))); + public string Description => Loc.GetString("set-mind-command-description", ("requiredComponent", nameof(MindContainerComponent))); public string Help => Loc.GetString("set-mind-command-help-text", ("command", Command)); @@ -39,7 +41,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - if (!entityManager.HasComponent(eUid)) + if (!entityManager.HasComponent(eUid)) { shell.WriteLine(Loc.GetString("set-mind-command-target-has-no-mind-message")); return; @@ -59,16 +61,16 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } + var mindSystem = entityManager.System(); + var mind = playerCData.Mind; if (mind == null) { - mind = new Mind.Mind(session.UserId) - { - CharacterName = entityManager.GetComponent(eUid).EntityName - }; - mind.ChangeOwningPlayer(session.UserId); + mind = mindSystem.CreateMind(session.UserId); + mind.CharacterName = entityManager.GetComponent(eUid).EntityName; } - mind.TransferTo(eUid); + + mindSystem.TransferTo(mind, eUid); } } } diff --git a/Content.Server/Administration/Systems/AdminVerbSystem.Antags.cs b/Content.Server/Administration/Systems/AdminVerbSystem.Antags.cs index 7b6ca14ea1..c7e66dc77b 100644 --- a/Content.Server/Administration/Systems/AdminVerbSystem.Antags.cs +++ b/Content.Server/Administration/Systems/AdminVerbSystem.Antags.cs @@ -28,7 +28,7 @@ private void AddAntagVerbs(GetVerbsEvent args) if (!_adminManager.HasAdminFlag(player, AdminFlags.Fun)) return; - var targetHasMind = TryComp(args.Target, out MindComponent? targetMindComp); + var targetHasMind = TryComp(args.Target, out MindContainerComponent? targetMindComp); if (!targetHasMind || targetMindComp == null) return; diff --git a/Content.Server/Administration/Systems/AdminVerbSystem.cs b/Content.Server/Administration/Systems/AdminVerbSystem.cs index 5b3c1efc8b..ce5d479851 100644 --- a/Content.Server/Administration/Systems/AdminVerbSystem.cs +++ b/Content.Server/Administration/Systems/AdminVerbSystem.cs @@ -8,6 +8,7 @@ using Content.Server.Disposal.Tube.Components; using Content.Server.EUI; using Content.Server.Ghost.Roles; +using Content.Server.Mind; using Content.Server.Mind.Commands; using Content.Server.Mind.Components; using Content.Server.Players; @@ -53,6 +54,7 @@ public sealed partial class AdminVerbSystem : EntitySystem [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; [Dependency] private readonly PrayerSystem _prayerSystem = default!; [Dependency] private readonly EuiManager _eui = default!; + [Dependency] private readonly MindSystem _mindSystem = default!; private readonly Dictionary _openSolutionUis = new(); @@ -245,7 +247,12 @@ private void AddDebugVerbs(GetVerbsEvent args) Act = () => { MakeSentientCommand.MakeSentient(args.Target, EntityManager); - player.ContentData()?.Mind?.TransferTo(args.Target, ghostCheckOverride: true); + + var mind = player.ContentData()?.Mind; + if (mind == null) + return; + + _mindSystem.TransferTo(mind, args.Target, ghostCheckOverride: true); }, Impact = LogImpact.High, ConfirmationPopup = true @@ -279,7 +286,7 @@ private void AddDebugVerbs(GetVerbsEvent args) // Make Sentient verb if (_groupController.CanCommand(player, "makesentient") && args.User != args.Target && - !EntityManager.HasComponent(args.Target)) + !EntityManager.HasComponent(args.Target)) { Verb verb = new() { @@ -342,7 +349,7 @@ private void AddDebugVerbs(GetVerbsEvent args) // Make ghost role verb if (_groupController.CanCommand(player, "makeghostrole") && - !(EntityManager.GetComponentOrNull(args.Target)?.HasMind ?? false)) + !(EntityManager.GetComponentOrNull(args.Target)?.HasMind ?? false)) { Verb verb = new(); verb.Text = Loc.GetString("make-ghost-role-verb-get-data-text"); diff --git a/Content.Server/Body/Systems/BodySystem.cs b/Content.Server/Body/Systems/BodySystem.cs index 0d2ec47c20..57603c35dc 100644 --- a/Content.Server/Body/Systems/BodySystem.cs +++ b/Content.Server/Body/Systems/BodySystem.cs @@ -4,6 +4,7 @@ using Content.Server.GameTicking; using Content.Server.Humanoid; using Content.Server.Kitchen.Components; +using Content.Server.Mind; using Content.Server.Mind.Components; using Content.Shared.Body.Components; using Content.Shared.Body.Part; @@ -29,6 +30,7 @@ public sealed class BodySystem : SharedBodySystem [Dependency] private readonly HumanoidAppearanceSystem _humanoidSystem = default!; [Dependency] private readonly MobStateSystem _mobState = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly MindSystem _mindSystem = default!; public override void Initialize() { @@ -41,16 +43,14 @@ public override void Initialize() private void OnRelayMoveInput(EntityUid uid, BodyComponent component, ref MoveInputEvent args) { - if (_mobState.IsDead(uid) && - EntityManager.TryGetComponent(uid, out var mind) && - mind.HasMind) + if (_mobState.IsDead(uid) && _mindSystem.TryGetMind(uid, out var mind)) { - if (!mind.Mind!.TimeOfDeath.HasValue) + if (!mind.TimeOfDeath.HasValue) { - mind.Mind.TimeOfDeath = _gameTiming.RealTime; + mind.TimeOfDeath = _gameTiming.RealTime; } - _ticker.OnGhostAttempt(mind.Mind!, true); + _ticker.OnGhostAttempt(mind, true); } } diff --git a/Content.Server/Body/Systems/BrainSystem.cs b/Content.Server/Body/Systems/BrainSystem.cs index 97a76a64d1..0a8dd5dc6a 100644 --- a/Content.Server/Body/Systems/BrainSystem.cs +++ b/Content.Server/Body/Systems/BrainSystem.cs @@ -1,5 +1,6 @@ using Content.Server.Body.Components; using Content.Server.Ghost.Components; +using Content.Server.Mind; using Content.Server.Mind.Components; using Content.Shared.Body.Components; using Content.Shared.Body.Events; @@ -13,6 +14,7 @@ namespace Content.Server.Body.Systems public sealed class BrainSystem : EntitySystem { [Dependency] private readonly MovementSpeedModifierSystem _movementSpeed = default!; + [Dependency] private readonly MindSystem _mindSystem = default!; public override void Initialize() { @@ -38,8 +40,8 @@ private void OnRemovedFromBody(EntityUid uid, BrainComponent component, RemovedF private void HandleMind(EntityUid newEntity, EntityUid oldEntity) { - EntityManager.EnsureComponent(newEntity); - var oldMind = EntityManager.EnsureComponent(oldEntity); + EntityManager.EnsureComponent(newEntity); + var oldMind = EntityManager.EnsureComponent(oldEntity); EnsureComp(newEntity); if (HasComp(newEntity)) @@ -55,7 +57,10 @@ private void HandleMind(EntityUid newEntity, EntityUid oldEntity) _movementSpeed.ChangeBaseSpeed(newEntity, 0, 0 , 0, move); } - oldMind.Mind?.TransferTo(newEntity); + if (!_mindSystem.TryGetMind(oldEntity, out var mind, oldMind)) + return; + + _mindSystem.TransferTo(mind, newEntity); } } } diff --git a/Content.Server/Bql/QuerySelectors.cs b/Content.Server/Bql/QuerySelectors.cs index a3b943bc9d..829dee7e38 100644 --- a/Content.Server/Bql/QuerySelectors.cs +++ b/Content.Server/Bql/QuerySelectors.cs @@ -1,5 +1,6 @@ using System.Linq; using Content.Server.Chemistry.Components.SolutionManager; +using Content.Server.Mind; using Content.Server.Mind.Components; using Content.Server.Power.Components; using Content.Shared.Tag; @@ -21,7 +22,7 @@ public override IEnumerable DoSelection(IEnumerable input, { return input.Where(e => { - if (entityManager.TryGetComponent(e, out var mind)) + if (entityManager.TryGetComponent(e, out var mind)) return (mind.Mind?.VisitingEntity == e) ^ isInverted; return isInverted; @@ -32,7 +33,7 @@ public override IEnumerable DoInitialSelection(IReadOnlyList { return DoSelection( - entityManager.EntityQuery().Select(x => x.Owner), + entityManager.EntityQuery().Select(x => x.Owner), arguments, isInverted, entityManager); } } @@ -68,14 +69,16 @@ public sealed class AliveQuerySelector : BqlQuerySelector public override IEnumerable DoSelection(IEnumerable input, IReadOnlyList arguments, bool isInverted, IEntityManager entityManager) { + var mindSystem = entityManager.System(); return input.Where(e => - (entityManager.TryGetComponent(e, out var mind) && - !(mind.Mind?.CharacterDeadPhysically ?? false)) ^ isInverted); + entityManager.TryGetComponent(e, out var mind) + && mind.Mind != null + && !mindSystem.IsCharacterDeadPhysically(mind.Mind)); } public override IEnumerable DoInitialSelection(IReadOnlyList arguments, bool isInverted, IEntityManager entityManager) { - return DoSelection(entityManager.EntityQuery().Select(x => x.Owner), arguments, + return DoSelection(entityManager.EntityQuery().Select(x => x.Owner), arguments, isInverted, entityManager); } } diff --git a/Content.Server/CharacterInfo/CharacterInfoSystem.cs b/Content.Server/CharacterInfo/CharacterInfoSystem.cs index 282722ceae..bd26a4836b 100644 --- a/Content.Server/CharacterInfo/CharacterInfoSystem.cs +++ b/Content.Server/CharacterInfo/CharacterInfoSystem.cs @@ -26,9 +26,9 @@ private void OnRequestCharacterInfoEvent(RequestCharacterInfoEvent msg, EntitySe var conditions = new Dictionary>(); var jobTitle = "No Profession"; var briefing = "!!ERROR: No Briefing!!"; //should never show on the UI unless there's a bug - if (EntityManager.TryGetComponent(entity, out MindComponent? mindComponent) && mindComponent.Mind != null) + if (EntityManager.TryGetComponent(entity, out MindContainerComponent? mindContainerComponent) && mindContainerComponent.Mind != null) { - var mind = mindComponent.Mind; + var mind = mindContainerComponent.Mind; // Get objectives foreach (var objective in mind.AllObjectives) diff --git a/Content.Server/Chat/Commands/SuicideCommand.cs b/Content.Server/Chat/Commands/SuicideCommand.cs index 2f08881cb0..16c699b0a9 100644 --- a/Content.Server/Chat/Commands/SuicideCommand.cs +++ b/Content.Server/Chat/Commands/SuicideCommand.cs @@ -29,7 +29,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) var mind = player.ContentData()?.Mind; // This check also proves mind not-null for at the end when the mob is ghosted. - if (mind?.OwnedComponent?.Owner is not { Valid: true } victim) + if (mind?.OwnedEntity is not { Valid: true } victim) { shell.WriteLine("You don't have a mind!"); return; diff --git a/Content.Server/Chat/Managers/ChatManager.cs b/Content.Server/Chat/Managers/ChatManager.cs index 56f516942b..ee55f5a91c 100644 --- a/Content.Server/Chat/Managers/ChatManager.cs +++ b/Content.Server/Chat/Managers/ChatManager.cs @@ -116,20 +116,19 @@ public void SendAdminAlert(string message) ChatMessageToMany(ChatChannel.AdminAlert, message, wrappedMessage, default, false, true, clients); } - public void SendAdminAlert(EntityUid player, string message, MindComponent? mindComponent = null) + public void SendAdminAlert(EntityUid player, string message, MindContainerComponent? mindContainerComponent = null) { - if((mindComponent == null && !_entityManager.TryGetComponent(player, out mindComponent)) - || mindComponent.Mind == null) + if ((mindContainerComponent == null && !_entityManager.TryGetComponent(player, out mindContainerComponent)) || !mindContainerComponent.HasMind) { SendAdminAlert(message); return; } var adminSystem = _entityManager.System(); - var antag = mindComponent.Mind!.UserId != null - && (adminSystem.GetCachedPlayerInfo(mindComponent.Mind!.UserId.Value)?.Antag ?? false); + var antag = mindContainerComponent.Mind!.UserId != null + && (adminSystem.GetCachedPlayerInfo(mindContainerComponent.Mind!.UserId.Value)?.Antag ?? false); - SendAdminAlert($"{mindComponent.Mind!.Session?.Name}{(antag ? " (ANTAG)" : "")} {message}"); + SendAdminAlert($"{mindContainerComponent.Mind!.Session?.Name}{(antag ? " (ANTAG)" : "")} {message}"); } public void SendHookOOC(string sender, string message) diff --git a/Content.Server/Chat/Managers/IChatManager.cs b/Content.Server/Chat/Managers/IChatManager.cs index 6d74f76422..f3e0e8e2cf 100644 --- a/Content.Server/Chat/Managers/IChatManager.cs +++ b/Content.Server/Chat/Managers/IChatManager.cs @@ -24,7 +24,7 @@ public interface IChatManager void SendHookOOC(string sender, string message); void SendAdminAnnouncement(string message); void SendAdminAlert(string message); - void SendAdminAlert(EntityUid player, string message, MindComponent? mindComponent = null); + void SendAdminAlert(EntityUid player, string message, MindContainerComponent? mindContainerComponent = null); void ChatMessageToOne(ChatChannel channel, string message, string wrappedMessage, EntityUid source, bool hideChat, INetChannel client, Color? colorOverride = null, bool recordReplay = false, string? audioPath = null, float audioVolume = 0); diff --git a/Content.Server/Chat/Systems/ChatSystem.cs b/Content.Server/Chat/Systems/ChatSystem.cs index 3e1a264369..e780a5858f 100644 --- a/Content.Server/Chat/Systems/ChatSystem.cs +++ b/Content.Server/Chat/Systems/ChatSystem.cs @@ -560,9 +560,9 @@ private bool CanSendInGame(string message, IConsoleShell? shell = null, IPlayerS if (player == null) return true; - var mindComponent = player.ContentData()?.Mind; + var mindContainerComponent = player.ContentData()?.Mind; - if (mindComponent == null) + if (mindContainerComponent == null) { shell?.WriteError("You don't have a mind!"); return false; diff --git a/Content.Server/Chemistry/ReagentEffects/MakeSentient.cs b/Content.Server/Chemistry/ReagentEffects/MakeSentient.cs index 5919ae3edb..899477cfa5 100644 --- a/Content.Server/Chemistry/ReagentEffects/MakeSentient.cs +++ b/Content.Server/Chemistry/ReagentEffects/MakeSentient.cs @@ -17,6 +17,12 @@ public override void Effect(ReagentEffectArgs args) var entityManager = args.EntityManager; var uid = args.SolutionEntity; + // This makes it so it doesn't affect things that are already sentient + if (entityManager.HasComponent(uid)) + { + return; + } + // This piece of code makes things able to speak "normally". One thing of note is that monkeys have a unique accent and won't be affected by this. entityManager.RemoveComponent(uid); @@ -24,7 +30,7 @@ public override void Effect(ReagentEffectArgs args) entityManager.RemoveComponent(uid); // This makes it so it doesn't add a ghost role to things that are already sentient - if (entityManager.HasComponent(uid)) + if (entityManager.HasComponent(uid)) { return; } diff --git a/Content.Server/Cloning/CloningConsoleSystem.cs b/Content.Server/Cloning/CloningConsoleSystem.cs index ceb642173f..0391cf541b 100644 --- a/Content.Server/Cloning/CloningConsoleSystem.cs +++ b/Content.Server/Cloning/CloningConsoleSystem.cs @@ -164,7 +164,7 @@ public void TryClone(EntityUid uid, EntityUid cloningPodUid, EntityUid scannerUi if (body is null) return; - if (!TryComp(body, out var mindComp)) + if (!TryComp(body, out var mindComp)) return; var mind = mindComp.Mind; @@ -214,7 +214,7 @@ private CloningConsoleBoundUserInterfaceState GetUserInterfaceState(CloningConso { scanBodyInfo = MetaData(scanBody.Value).EntityName; - TryComp(scanBody, out var mindComp); + TryComp(scanBody, out var mindComp); if (!_mobStateSystem.IsDead(scanBody.Value)) { diff --git a/Content.Server/Cloning/CloningSystem.cs b/Content.Server/Cloning/CloningSystem.cs index f5bde07203..993099f997 100644 --- a/Content.Server/Cloning/CloningSystem.cs +++ b/Content.Server/Cloning/CloningSystem.cs @@ -20,6 +20,7 @@ using Content.Server.Jobs; using Content.Shared.DeviceLinking.Events; using Content.Shared.Emag.Components; +using Content.Server.Mind; using Content.Shared.Humanoid; using Content.Shared.Humanoid.Prototypes; using Content.Shared.Zombies; @@ -37,6 +38,7 @@ using Content.Shared.Emag.Systems; using Robust.Shared.Audio; using System.Runtime.InteropServices; +using Content.Server.MachineLinking.Events; using Content.Server.Popups; using Content.Server.Traits.Assorted; @@ -63,6 +65,7 @@ public sealed class CloningSystem : EntitySystem [Dependency] private readonly IConfigurationManager _configManager = default!; [Dependency] private readonly MaterialStorageSystem _material = default!; [Dependency] private readonly PopupSystem _popupSystem = default!; + [Dependency] private readonly MindSystem _mindSystem = default!; public readonly Dictionary ClonesWaitingForMind = new(); public const float EasyModeCloningCost = 0.7f; @@ -107,12 +110,12 @@ internal void TransferMindToClone(Mind.Mind mind) { if (!ClonesWaitingForMind.TryGetValue(mind, out var entity) || !EntityManager.EntityExists(entity) || - !TryComp(entity, out var mindComp) || + !TryComp(entity, out var mindComp) || mindComp.Mind != null) return; - mind.TransferTo(entity, ghostCheckOverride: true); - mind.UnVisit(); + _mindSystem.TransferTo(mind, entity, ghostCheckOverride: true); + _mindSystem.UnVisit(mind); ClonesWaitingForMind.Remove(mind); } @@ -167,7 +170,7 @@ public bool TryCloning(EntityUid uid, EntityUid bodyToClone, Mind.Mind mind, Clo { if (EntityManager.EntityExists(clone) && !_mobStateSystem.IsDead(clone) && - TryComp(clone, out var cloneMindComp) && + TryComp(clone, out var cloneMindComp) && (cloneMindComp.Mind == null || cloneMindComp.Mind == mind)) return false; // Mind already has clone diff --git a/Content.Server/Drone/DroneSystem.cs b/Content.Server/Drone/DroneSystem.cs index 00bde35a58..1cffb79ae7 100644 --- a/Content.Server/Drone/DroneSystem.cs +++ b/Content.Server/Drone/DroneSystem.cs @@ -72,7 +72,7 @@ private void OnActivateUIAttempt(EntityUid uid, DroneComponent component, UserOp private void OnExamined(EntityUid uid, DroneComponent component, ExaminedEvent args) { - if (TryComp(uid, out var mind) && mind.HasMind) + if (TryComp(uid, out var mind) && mind.HasMind) { args.PushMarkup(Loc.GetString("drone-active")); } @@ -132,7 +132,7 @@ private bool NonDronesInRange(EntityUid uid, DroneComponent component) foreach (var entity in _lookup.GetEntitiesInRange(xform.MapPosition, component.InteractionBlockRange)) { // Return true if the entity is/was controlled by a player and is not a drone or ghost. - if (HasComp(entity) && !HasComp(entity) && !HasComp(entity)) + if (HasComp(entity) && !HasComp(entity) && !HasComp(entity)) { // Filter out dead ghost roles. Dead normal players are intended to block. if ((TryComp(entity, out var entityMobState) && HasComp(entity) && _mobStateSystem.IsDead(entity, entityMobState))) diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.Processing.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.Processing.cs index 9d7617d1b8..e8d25d8190 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.Processing.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.Processing.cs @@ -399,7 +399,7 @@ private void ProcessEntity( { // no damage-dict multiplication required. _damageableSystem.TryChangeDamage(uid, damage, ignoreResistances: true, damageable: damageable); - if (HasComp(uid) || HasComp(uid)) + if (HasComp(uid) || HasComp(uid)) { var damageStr = string.Join(", ", damage.DamageDict.Select(entry => $"{entry.Key}: {entry.Value}")); _adminLogger.Add(LogType.Explosion, LogImpact.Medium, @@ -410,7 +410,7 @@ private void ProcessEntity( { var appliedDamage = damage * ev.DamageCoefficient; _damageableSystem.TryChangeDamage(uid, appliedDamage, ignoreResistances: true, damageable: damageable); - if (HasComp(uid) || HasComp(uid)) + if (HasComp(uid) || HasComp(uid)) { var damageStr = string.Join(", ", appliedDamage.DamageDict.Select(entry => $"{entry.Key}: {entry.Value}")); _adminLogger.Add(LogType.Explosion, LogImpact.Medium, diff --git a/Content.Server/GameTicking/GameTicker.GamePreset.cs b/Content.Server/GameTicking/GameTicker.GamePreset.cs index d3ab70a4f6..aa380e2cbd 100644 --- a/Content.Server/GameTicking/GameTicker.GamePreset.cs +++ b/Content.Server/GameTicking/GameTicker.GamePreset.cs @@ -3,6 +3,7 @@ using System.Threading.Tasks; using Content.Server.GameTicking.Presets; using Content.Server.Ghost.Components; +using Content.Server.Mind; using Content.Shared.CCVar; using Content.Shared.Damage; using Content.Shared.Damage.Prototypes; @@ -19,6 +20,7 @@ public sealed partial class GameTicker public const float PresetFailedCooldownIncrease = 30f; [Dependency] private readonly MobStateSystem _mobStateSystem = default!; + [Dependency] private readonly MindSystem _mindSystem = default!; public GamePresetPrototype? Preset { get; private set; } @@ -188,10 +190,10 @@ public bool OnGhostAttempt(Mind.Mind mind, bool canReturnGlobal, bool viaCommand if (mind.VisitingEntity != default) { - mind.UnVisit(); + _mindSystem.UnVisit(mind); } - var position = playerEntity is {Valid: true} + var position = Exists(playerEntity) ? Transform(playerEntity.Value).Coordinates : GetObserverSpawnPoint(); @@ -206,7 +208,7 @@ public bool OnGhostAttempt(Mind.Mind mind, bool canReturnGlobal, bool viaCommand // + If we're in a mob that is critical, and we're supposed to be able to return if possible, // we're succumbing - the mob is killed. Therefore, character is dead. Ghosting OK. // (If the mob survives, that's a bug. Ghosting is kept regardless.) - var canReturn = canReturnGlobal && mind.CharacterDeadPhysically; + var canReturn = canReturnGlobal && _mindSystem.IsCharacterDeadPhysically(mind); if (canReturnGlobal && TryComp(playerEntity, out MobStateComponent? mobState)) { @@ -248,9 +250,9 @@ public bool OnGhostAttempt(Mind.Mind mind, bool canReturnGlobal, bool viaCommand _ghosts.SetCanReturnToBody(ghostComponent, canReturn); if (canReturn) - mind.Visit(ghost); + _mindSystem.Visit(mind, ghost); else - mind.TransferTo(ghost); + _mindSystem.TransferTo(mind, ghost); return true; } diff --git a/Content.Server/GameTicking/GameTicker.Player.cs b/Content.Server/GameTicking/GameTicker.Player.cs index 10edb7d096..fd4a2e6a9c 100644 --- a/Content.Server/GameTicking/GameTicker.Player.cs +++ b/Content.Server/GameTicking/GameTicker.Player.cs @@ -8,6 +8,7 @@ using Robust.Shared.Enums; using Robust.Shared.Timing; using Robust.Shared.Utility; +using PlayerData = Content.Server.Players.PlayerData; namespace Content.Server.GameTicking { diff --git a/Content.Server/GameTicking/GameTicker.RoundFlow.cs b/Content.Server/GameTicking/GameTicker.RoundFlow.cs index b7a814878e..4f21cc2184 100644 --- a/Content.Server/GameTicking/GameTicker.RoundFlow.cs +++ b/Content.Server/GameTicking/GameTicker.RoundFlow.cs @@ -19,6 +19,7 @@ using System.Linq; using Content.Shared.Database; using Robust.Shared.Asynchronous; +using PlayerData = Content.Server.Players.PlayerData; namespace Content.Server.GameTicking { @@ -315,12 +316,12 @@ public void ShowRoundEndScoreboard(string text = "") var connected = false; var observer = mind.AllRoles.Any(role => role is ObserverRole); // Continuing - if (_playerManager.TryGetSessionById(userId, out var ply)) + if (userId != null && _playerManager.ValidSessionId(userId.Value)) { connected = true; } PlayerData? contentPlayerData = null; - if (_playerManager.TryGetPlayerData(userId, out var playerData)) + if (userId != null && _playerManager.TryGetPlayerData(userId.Value, out var playerData)) { contentPlayerData = playerData.ContentData(); } diff --git a/Content.Server/GameTicking/GameTicker.Spawning.cs b/Content.Server/GameTicking/GameTicker.Spawning.cs index ca8186d0b9..115c3ace02 100644 --- a/Content.Server/GameTicking/GameTicker.Spawning.cs +++ b/Content.Server/GameTicking/GameTicker.Spawning.cs @@ -176,15 +176,12 @@ private void SpawnPlayer(IPlayerSession player, HumanoidCharacterProfile charact DebugTools.AssertNotNull(data); data!.WipeMind(); - var newMind = new Mind.Mind(data.UserId) - { - CharacterName = character.Name - }; - newMind.ChangeOwningPlayer(data.UserId); + var newMind = _mindSystem.CreateMind(data.UserId, character.Name); + _mindSystem.ChangeOwningPlayer(newMind, data.UserId); var jobPrototype = _prototypeManager.Index(jobId); var job = new Job(newMind, jobPrototype); - newMind.AddRole(job); + _mindSystem.AddRole(newMind, job); _playTimeTrackings.PlayerRolesChanged(player); @@ -193,7 +190,7 @@ private void SpawnPlayer(IPlayerSession player, HumanoidCharacterProfile charact DebugTools.AssertNotNull(mobMaybe); var mob = mobMaybe!.Value; - newMind.TransferTo(mob); + _mindSystem.TransferTo(newMind, mob); if (lateJoin) { @@ -282,15 +279,15 @@ public void MakeObserve(IPlayerSession player) DebugTools.AssertNotNull(data); data!.WipeMind(); - var newMind = new Mind.Mind(data.UserId); - newMind.ChangeOwningPlayer(data.UserId); - newMind.AddRole(new ObserverRole(newMind)); + var newMind = _mindSystem.CreateMind(data.UserId); + _mindSystem.ChangeOwningPlayer(newMind, data.UserId); + _mindSystem.AddRole(newMind, new ObserverRole(newMind)); var mob = SpawnObserverMob(); EntityManager.GetComponent(mob).EntityName = name; var ghost = EntityManager.GetComponent(mob); EntitySystem.Get().SetCanReturnToBody(ghost, false); - newMind.TransferTo(mob); + _mindSystem.TransferTo(newMind, mob); _playerGameStatuses[player.UserId] = PlayerGameStatus.JoinedGame; RaiseNetworkEvent(GetStatusSingle(player, PlayerGameStatus.JoinedGame)); diff --git a/Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs b/Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs index ca7a9854fc..9bc2324d4f 100644 --- a/Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs @@ -5,6 +5,8 @@ using Content.Server.Ghost.Roles.Components; using Content.Server.Ghost.Roles.Events; using Content.Server.Humanoid; +using Content.Server.Humanoid.Systems; +using Content.Server.Mind; using Content.Server.Mind.Components; using Content.Server.NPC.Components; using Content.Server.NPC.Systems; @@ -54,6 +56,7 @@ public sealed class NukeopsRuleSystem : GameRuleSystem [Dependency] private readonly SharedAudioSystem _audioSystem = default!; [Dependency] private readonly MapLoaderSystem _map = default!; [Dependency] private readonly ShuttleSystem _shuttle = default!; + [Dependency] private readonly MindSystem _mindSystem = default!; public override void Initialize() { @@ -81,7 +84,7 @@ private void OnComponentInit(EntityUid uid, NukeOperativeComponent component, Co continue; // If entity has a prior mind attached, add them to the players list. - if (!TryComp(uid, out var mindComponent)) + if (!TryComp(uid, out var mindComponent)) continue; var session = mindComponent.Mind?.Session; @@ -571,22 +574,21 @@ private void OnPlayersGhostSpawning(EntityUid uid, NukeOperativeComponent compon private void OnMindAdded(EntityUid uid, NukeOperativeComponent component, MindAddedMessage args) { - if (!TryComp(uid, out var mindComponent) || mindComponent.Mind == null) + if (!TryComp(uid, out var mindContainerComponent) || mindContainerComponent.Mind == null) return; - var mind = mindComponent.Mind; + var mind = mindContainerComponent.Mind; foreach (var nukeops in EntityQuery()) { if (nukeops.OperativeMindPendingData.TryGetValue(uid, out var role) || !nukeops.SpawnOutpost || !nukeops.EndsRound) { role ??= nukeops.OperativeRoleProto; - - mind.AddRole(new NukeopsRole(mind, _prototypeManager.Index(role))); + _mindSystem.AddRole(mind, new NukeopsRole(mind, _prototypeManager.Index(role))); nukeops.OperativeMindPendingData.Remove(uid); } - if (!mind.TryGetSession(out var playerSession)) + if (!_mindSystem.TryGetSession(mind, out var playerSession)) return; if (nukeops.OperativePlayers.ContainsValue(playerSession)) return; @@ -756,15 +758,11 @@ private void SpawnOperatives(int spawnCount, List sessions, bool var mob = EntityManager.SpawnEntity(species.Prototype, _random.Pick(spawns)); SetupOperativeEntity(mob, spawnDetails.Name, spawnDetails.Gear, profile, component); + var newMind = _mindSystem.CreateMind(session.UserId, spawnDetails.Name); + _mindSystem.ChangeOwningPlayer(newMind, session.UserId); + _mindSystem.AddRole(newMind, new NukeopsRole(newMind, nukeOpsAntag)); - var newMind = new Mind.Mind(session.UserId) - { - CharacterName = spawnDetails.Name - }; - newMind.ChangeOwningPlayer(session.UserId); - newMind.AddRole(new NukeopsRole(newMind, nukeOpsAntag)); - - newMind.TransferTo(mob); + _mindSystem.TransferTo(newMind, mob); } else if (addSpawnPoints) { @@ -810,7 +808,7 @@ public void MakeLoneNukie(Mind.Mind mind) return; //ok hardcoded value bad but so is everything else here - mind.AddRole(new NukeopsRole(mind, _prototypeManager.Index("Nukeops"))); + _mindSystem.AddRole(mind, new NukeopsRole(mind, _prototypeManager.Index("Nukeops"))); SetOutfitCommand.SetOutfit(mind.OwnedEntity.Value, "SyndicateOperativeGearFull", EntityManager); } @@ -859,10 +857,10 @@ protected override void Started(EntityUid uid, NukeopsRuleComponent component, G } // Add pre-existing nuke operatives to the credit list. - var query = EntityQuery(true); + var query = EntityQuery(true); foreach (var (_, mindComp, metaData) in query) { - if (mindComp.Mind == null || !mindComp.Mind.TryGetSession(out var session)) + if (!mindComp.HasMind || !_mindSystem.TryGetSession(mindComp.Mind, out var session)) continue; component.OperativePlayers.Add(metaData.EntityName, session); } diff --git a/Content.Server/GameTicking/Rules/PiratesRuleSystem.cs b/Content.Server/GameTicking/Rules/PiratesRuleSystem.cs index 2af25b3a96..e38eeba2e9 100644 --- a/Content.Server/GameTicking/Rules/PiratesRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/PiratesRuleSystem.cs @@ -3,6 +3,7 @@ using Content.Server.Cargo.Systems; using Content.Server.Chat.Managers; using Content.Server.GameTicking.Rules.Components; +using Content.Server.Mind; using Content.Server.Preferences.Managers; using Content.Server.Spawners.Components; using Content.Server.Station.Components; @@ -40,6 +41,7 @@ public sealed class PiratesRuleSystem : GameRuleSystem [Dependency] private readonly PricingSystem _pricingSystem = default!; [Dependency] private readonly MapLoaderSystem _map = default!; [Dependency] private readonly NamingSystem _namingSystem = default!; + [Dependency] private readonly MindSystem _mindSystem = default!; [Dependency] private readonly SharedAudioSystem _audioSystem = default!; /// @@ -205,16 +207,13 @@ private void OnPlayerSpawningEvent(RulePlayerSpawningEvent ev) var name = _namingSystem.GetName("Human", gender); var session = ops[i]; - var newMind = new Mind.Mind(session.UserId) - { - CharacterName = name - }; - newMind.ChangeOwningPlayer(session.UserId); + var newMind = _mindSystem.CreateMind(session.UserId, name); + _mindSystem.ChangeOwningPlayer(newMind, session.UserId); var mob = Spawn("MobHuman", _random.Pick(spawns)); MetaData(mob).EntityName = name; - newMind.TransferTo(mob); + _mindSystem.TransferTo(newMind, mob); var profile = _prefs.GetPreferences(session.UserId).SelectedCharacter as HumanoidCharacterProfile; _stationSpawningSystem.EquipStartingGear(mob, pirateGear, profile); diff --git a/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs b/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs index e23ac9fcc9..5ba752dd12 100644 --- a/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs @@ -2,6 +2,7 @@ using Content.Server.Chat.Managers; using Content.Server.GameTicking.Rules.Components; using Content.Server.NPC.Systems; +using Content.Server.Mind; using Content.Server.Objectives.Interfaces; using Content.Server.PDA.Ringer; using Content.Server.Players; @@ -34,6 +35,7 @@ public sealed class TraitorRuleSystem : GameRuleSystem [Dependency] private readonly MobStateSystem _mobStateSystem = default!; [Dependency] private readonly UplinkSystem _uplink = default!; [Dependency] private readonly SharedAudioSystem _audioSystem = default!; + [Dependency] private readonly MindSystem _mindSystem = default!; private ISawmill _sawmill = default!; @@ -250,11 +252,11 @@ public bool MakeTraitor(IPlayerSession traitor) Loc.GetString("traitor-role-uplink-code-short", ("code", string.Join("", code)))); // Assign traitor roles - mind.AddRole(traitorRole); + _mindSystem.AddRole(mind, traitorRole); SendTraitorBriefing(mind, traitorRule.Codewords, code); traitorRule.Traitors.Add(traitorRole); - if (mind.TryGetSession(out var session)) + if (_mindSystem.TryGetSession(mind, out var session)) { // Notificate player about new role assignment _audioSystem.PlayGlobal(traitorRule.GreetSoundNotification, session); @@ -271,9 +273,10 @@ public bool MakeTraitor(IPlayerSession traitor) for (var pick = 0; pick < maxPicks && maxDifficulty > difficulty; pick++) { var objective = _objectivesManager.GetRandomObjective(traitorRole.Mind, "TraitorObjectiveGroups"); + if (objective == null) continue; - if (traitorRole.Mind.TryAddObjective(objective)) + if (_mindSystem.TryAddObjective(traitorRole.Mind, objective)) difficulty += objective.Difficulty; } @@ -288,7 +291,7 @@ public bool MakeTraitor(IPlayerSession traitor) /// Uplink codes private void SendTraitorBriefing(Mind.Mind mind, string[] codewords, Note[] code) { - if (mind.TryGetSession(out var session)) + if (_mindSystem.TryGetSession(mind, out var session)) { _chatManager.DispatchServerMessage(session, Loc.GetString("traitor-role-greeting")); _chatManager.DispatchServerMessage(session, Loc.GetString("traitor-role-codewords", ("codewords", string.Join(", ", codewords)))); @@ -367,7 +370,7 @@ private void OnRoundEndText(RoundEndTextAppendEvent ev) foreach (var t in traitor.Traitors) { var name = t.Mind.CharacterName; - t.Mind.TryGetSession(out var session); + _mindSystem.TryGetSession(t.Mind, out var session); var username = session?.Name; var objectives = t.Mind.AllObjectives.ToArray(); diff --git a/Content.Server/GameTicking/Rules/ZombieRuleSystem.cs b/Content.Server/GameTicking/Rules/ZombieRuleSystem.cs index 0164adaaea..9ee6487993 100644 --- a/Content.Server/GameTicking/Rules/ZombieRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/ZombieRuleSystem.cs @@ -3,6 +3,7 @@ using Content.Server.Actions; using Content.Server.Chat.Managers; using Content.Server.GameTicking.Rules.Components; +using Content.Server.Mind; using Content.Server.Mind.Components; using Content.Server.Players; using Content.Server.Popups; @@ -41,6 +42,7 @@ public sealed class ZombieRuleSystem : GameRuleSystem [Dependency] private readonly ActionsSystem _action = default!; [Dependency] private readonly MobStateSystem _mobState = default!; [Dependency] private readonly ZombifyOnDeathSystem _zombify = default!; + [Dependency] private readonly MindSystem _mindSystem = default!; public override void Initialize() { @@ -92,7 +94,7 @@ private void OnRoundEndText(RoundEndTextAppendEvent ev) { var meta = MetaData(survivor); var username = string.Empty; - if (TryComp(survivor, out var mindcomp)) + if (TryComp(survivor, out var mindcomp)) if (mindcomp.Mind != null && mindcomp.Mind.Session != null) username = mindcomp.Mind.Session.Name; @@ -286,8 +288,7 @@ private void InfectInitialPlayers(ZombieRuleComponent component) } DebugTools.AssertNotNull(mind.OwnedEntity); - - mind.AddRole(new ZombieRole(mind, _prototypeManager.Index(component.PatientZeroPrototypeID))); + _mindSystem.AddRole(mind, new ZombieRole(mind, _prototypeManager.Index(component.PatientZeroPrototypeID))); var inCharacterName = string.Empty; // Create some variation between the times of each zombie, relative to the time of the group as a whole. diff --git a/Content.Server/Ghost/GhostSystem.cs b/Content.Server/Ghost/GhostSystem.cs index 5213ec83c0..9e598964c3 100644 --- a/Content.Server/Ghost/GhostSystem.cs +++ b/Content.Server/Ghost/GhostSystem.cs @@ -92,13 +92,13 @@ private void OnRelayMoveInput(EntityUid uid, GhostOnMoveComponent component, ref if (EntityManager.HasComponent(uid)) return; - if (!EntityManager.TryGetComponent(uid, out var mind) || !mind.HasMind || mind.Mind!.IsVisitingEntity) + if (!EntityManager.TryGetComponent(uid, out var mind) || !mind.HasMind || mind.Mind.IsVisitingEntity) return; if (component.MustBeDead && (_mobState.IsAlive(uid) || _mobState.IsCritical(uid))) return; - _ticker.OnGhostAttempt(mind.Mind!, component.CanReturn); + _ticker.OnGhostAttempt(mind.Mind, component.CanReturn); } private void OnGhostStartup(EntityUid uid, GhostComponent component, ComponentStartup args) @@ -172,7 +172,7 @@ private void OnMindUnvisitedMessage(EntityUid uid, GhostComponent component, Min private void OnPlayerDetached(EntityUid uid, GhostComponent component, PlayerDetachedEvent args) { - QueueDel(uid); + DeleteEntity(uid); } private void OnGhostWarpsRequest(GhostWarpsRequestEvent msg, EntitySessionEventArgs args) @@ -199,7 +199,7 @@ private void OnGhostReturnToBodyRequest(GhostReturnToBodyRequest msg, EntitySess return; } - actor.PlayerSession.ContentData()!.Mind?.UnVisit(); + _mindSystem.UnVisit(actor.PlayerSession.ContentData()!.Mind); } private void OnGhostWarpToTargetRequest(GhostWarpToTargetRequestEvent msg, EntitySessionEventArgs args) @@ -236,9 +236,9 @@ private void DeleteEntity(EntityUid uid) if (Deleted(uid) || Terminating(uid)) return; - if (EntityManager.TryGetComponent(uid, out var mind)) + if (EntityManager.TryGetComponent(uid, out var mind)) _mindSystem.SetGhostOnShutdown(uid, false, mind); - EntityManager.DeleteEntity(uid); + QueueDel(uid); } private IEnumerable GetLocationWarps() @@ -260,7 +260,7 @@ private IEnumerable GetPlayerWarps(EntityUid except) { if (attached == except) continue; - TryComp(attached, out var mind); + TryComp(attached, out var mind); string playerInfo = $"{EntityManager.GetComponent(attached).EntityName} ({mind?.Mind?.CurrentJob?.Name ?? "Unknown"})"; diff --git a/Content.Server/Ghost/ReturnToBodyEui.cs b/Content.Server/Ghost/ReturnToBodyEui.cs index b3903f8434..c2d5a96d3f 100644 --- a/Content.Server/Ghost/ReturnToBodyEui.cs +++ b/Content.Server/Ghost/ReturnToBodyEui.cs @@ -1,4 +1,5 @@ using Content.Server.EUI; +using Content.Server.Mind; using Content.Server.Players; using Content.Shared.Eui; using Content.Shared.Ghost; @@ -7,6 +8,8 @@ namespace Content.Server.Ghost; public sealed class ReturnToBodyEui : BaseEui { + [Dependency] private readonly MindSystem _mindSystem = default!; + private readonly Mind.Mind _mind; public ReturnToBodyEui(Mind.Mind mind) @@ -25,8 +28,8 @@ public override void HandleMessage(EuiMessageBase msg) return; } - if (_mind.TryGetSession(out var session)) - session.ContentData()!.Mind?.UnVisit(); + if (_mindSystem.TryGetSession(_mind, out var session)) + _mindSystem.UnVisit(session.ContentData()!.Mind); Close(); } } diff --git a/Content.Server/Ghost/Roles/Components/GhostRoleComponent.cs b/Content.Server/Ghost/Roles/Components/GhostRoleComponent.cs index 0b5a90ff50..96d0f02b79 100644 --- a/Content.Server/Ghost/Roles/Components/GhostRoleComponent.cs +++ b/Content.Server/Ghost/Roles/Components/GhostRoleComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Ghost.Roles.Components [Access(typeof(GhostRoleSystem))] public sealed class GhostRoleComponent : Component { - [DataField("name")] public string _roleName = "Unknown"; + [DataField("name")] private string _roleName = "Unknown"; [DataField("description")] private string _roleDescription = "Unknown"; diff --git a/Content.Server/Ghost/Roles/GhostRoleSystem.cs b/Content.Server/Ghost/Roles/GhostRoleSystem.cs index bdb0d97186..70f4673b19 100644 --- a/Content.Server/Ghost/Roles/GhostRoleSystem.cs +++ b/Content.Server/Ghost/Roles/GhostRoleSystem.cs @@ -5,6 +5,7 @@ using Content.Server.Ghost.Roles.Events; using Content.Server.Ghost.Roles.UI; using Content.Server.Mind.Commands; +using Content.Server.Mind; using Content.Server.Mind.Components; using Content.Server.Players; using Content.Shared.Administration; @@ -33,6 +34,7 @@ public sealed class GhostRoleSystem : EntitySystem [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly FollowerSystem _followerSystem = default!; [Dependency] private readonly TransformSystem _transform = default!; + [Dependency] private readonly MindSystem _mindSystem = default!; private uint _nextRoleIdentifier; private bool _needsUpdateGhostRoleCount = true; @@ -214,18 +216,14 @@ public void GhostRoleInternalCreateMindAndTransfer(IPlayerSession player, Entity { if (!Resolve(roleUid, ref role)) return; - var contentData = player.ContentData(); + DebugTools.AssertNotNull(player.ContentData()); - DebugTools.AssertNotNull(contentData); + var newMind = _mindSystem.CreateMind(player.UserId, + EntityManager.GetComponent(mob).EntityName); + _mindSystem.AddRole(newMind, new GhostRoleMarkerRole(newMind, role.RoleName)); - var newMind = new Mind.Mind(player.UserId) - { - CharacterName = EntityManager.GetComponent(mob).EntityName - }; - newMind.AddRole(new GhostRoleMarkerRole(newMind, role.RoleName)); - - newMind.ChangeOwningPlayer(player.UserId); - newMind.TransferTo(mob); + _mindSystem.ChangeOwningPlayer(newMind, player.UserId); + _mindSystem.TransferTo(newMind, mob); } public GhostRoleInfo[] GetGhostRolesInfo() @@ -343,7 +341,7 @@ private void OnSpawnerTakeRole(EntityUid uid, GhostRoleMobSpawnerComponent compo if (ghostRole.MakeSentient) MakeSentientCommand.MakeSentient(mob, EntityManager, ghostRole.AllowMovement, ghostRole.AllowSpeech); - mob.EnsureComponent(); + mob.EnsureComponent(); GhostRoleInternalCreateMindAndTransfer(args.Player, uid, mob, ghostRole); @@ -379,7 +377,7 @@ private void OnTakeoverTakeRole(EntityUid uid, GhostTakeoverAvailableComponent c ghostRole.Taken = true; - var mind = EnsureComp(uid); + var mind = EnsureComp(uid); if (mind.HasMind) { diff --git a/Content.Server/Ghost/Roles/MakeGhostRoleCommand.cs b/Content.Server/Ghost/Roles/MakeGhostRoleCommand.cs index e6ed131550..cbbec64f11 100644 --- a/Content.Server/Ghost/Roles/MakeGhostRoleCommand.cs +++ b/Content.Server/Ghost/Roles/MakeGhostRoleCommand.cs @@ -35,7 +35,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - if (entityManager.TryGetComponent(uid, out MindComponent? mind) && + if (entityManager.TryGetComponent(uid, out MindContainerComponent? mind) && mind.HasMind) { shell.WriteLine($"Entity {metaData.EntityName} with id {uid} already has a mind."); diff --git a/Content.Server/Medical/BiomassReclaimer/BiomassReclaimerSystem.cs b/Content.Server/Medical/BiomassReclaimer/BiomassReclaimerSystem.cs index 57e8a257dd..a5b188b373 100644 --- a/Content.Server/Medical/BiomassReclaimer/BiomassReclaimerSystem.cs +++ b/Content.Server/Medical/BiomassReclaimer/BiomassReclaimerSystem.cs @@ -243,7 +243,7 @@ private bool CanGib(EntityUid uid, EntityUid dragged, BiomassReclaimerComponent // Reject souled bodies in easy mode. if (_configManager.GetCVar(CCVars.BiomassEasyMode) && HasComp(dragged) && - TryComp(dragged, out var mindComp)) + TryComp(dragged, out var mindComp)) { if (mindComp.Mind?.UserId != null && _playerManager.TryGetSessionById(mindComp.Mind.UserId.Value, out _)) return false; diff --git a/Content.Server/Medical/DefibrillatorSystem.cs b/Content.Server/Medical/DefibrillatorSystem.cs index 06a4e93736..85cdec5590 100644 --- a/Content.Server/Medical/DefibrillatorSystem.cs +++ b/Content.Server/Medical/DefibrillatorSystem.cs @@ -222,7 +222,7 @@ public void Zap(EntityUid uid, EntityUid target, EntityUid user, DefibrillatorCo _mobState.ChangeMobState(target, MobState.Critical, mob, uid); _mobThreshold.SetAllowRevives(target, false, thresholds); - if (TryComp(target, out var mindComp) && + if (TryComp(target, out var mindComp) && mindComp.Mind?.Session is { } playerSession) { session = playerSession; diff --git a/Content.Server/Mind/Commands/MakeSentientCommand.cs b/Content.Server/Mind/Commands/MakeSentientCommand.cs index d7f7f7087b..22ca8ebde0 100644 --- a/Content.Server/Mind/Commands/MakeSentientCommand.cs +++ b/Content.Server/Mind/Commands/MakeSentientCommand.cs @@ -44,7 +44,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) public static void MakeSentient(EntityUid uid, IEntityManager entityManager, bool allowMovement = true, bool allowSpeech = true) { - entityManager.EnsureComponent(uid); + entityManager.EnsureComponent(uid); if (allowMovement) { entityManager.EnsureComponent(uid); diff --git a/Content.Server/Mind/Commands/MindInfoCommand.cs b/Content.Server/Mind/Commands/MindInfoCommand.cs index fc2b0ff001..749135d260 100644 --- a/Content.Server/Mind/Commands/MindInfoCommand.cs +++ b/Content.Server/Mind/Commands/MindInfoCommand.cs @@ -40,7 +40,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) } var builder = new StringBuilder(); - builder.AppendFormat("player: {0}, mob: {1}\nroles: ", mind.UserId, mind.OwnedComponent?.Owner); + builder.AppendFormat("player: {0}, mob: {1}\nroles: ", mind.UserId, mind.OwnedEntity); foreach (var role in mind.AllRoles) { builder.AppendFormat("{0} ", role.Name); diff --git a/Content.Server/Mind/Commands/RenameCommand.cs b/Content.Server/Mind/Commands/RenameCommand.cs index 3c28cd191a..bd22dd4c7d 100644 --- a/Content.Server/Mind/Commands/RenameCommand.cs +++ b/Content.Server/Mind/Commands/RenameCommand.cs @@ -48,7 +48,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) var entSysMan = IoCManager.Resolve(); - if (entMan.TryGetComponent(entityUid, out MindComponent? mind) && mind.Mind != null) + if (entMan.TryGetComponent(entityUid, out MindContainerComponent? mind) && mind.Mind != null) { // Mind mind.Mind.CharacterName = name; diff --git a/Content.Server/Mind/Components/MindComponent.cs b/Content.Server/Mind/Components/MindContainerComponent.cs similarity index 88% rename from Content.Server/Mind/Components/MindComponent.cs rename to Content.Server/Mind/Components/MindContainerComponent.cs index cdc2f67d0f..bf2c8291fc 100644 --- a/Content.Server/Mind/Components/MindComponent.cs +++ b/Content.Server/Mind/Components/MindContainerComponent.cs @@ -1,10 +1,13 @@ +using System.Diagnostics.CodeAnalysis; +using YamlDotNet.Core.Tokens; + namespace Content.Server.Mind.Components { /// /// Stores a on a mob. /// [RegisterComponent, Access(typeof(MindSystem))] - public sealed class MindComponent : Component + public sealed class MindContainerComponent : Component { /// /// The mind controlling this mob. Can be null. @@ -17,6 +20,7 @@ public sealed class MindComponent : Component /// True if we have a mind, false otherwise. /// [ViewVariables] + [MemberNotNullWhen(true, nameof(Mind))] public bool HasMind => Mind != null; /// diff --git a/Content.Server/Mind/Components/VisitingMindComponent.cs b/Content.Server/Mind/Components/VisitingMindComponent.cs index e7b81c0cc7..9b2e0d66e5 100644 --- a/Content.Server/Mind/Components/VisitingMindComponent.cs +++ b/Content.Server/Mind/Components/VisitingMindComponent.cs @@ -3,14 +3,8 @@ namespace Content.Server.Mind.Components [RegisterComponent] public sealed class VisitingMindComponent : Component { - [ViewVariables] public Mind Mind { get; set; } = default!; - - protected override void OnRemove() - { - base.OnRemove(); - - Mind?.UnVisit(); - } + [ViewVariables] + public Mind? Mind; } public sealed class MindUnvisitedMessage : EntityEventArgs diff --git a/Content.Server/Mind/Mind.cs b/Content.Server/Mind/Mind.cs index 3af6daf4eb..81f26d55a9 100644 --- a/Content.Server/Mind/Mind.cs +++ b/Content.Server/Mind/Mind.cs @@ -1,19 +1,9 @@ -using System.Diagnostics.CodeAnalysis; using System.Linq; -using Content.Server.Administration.Logs; -using Content.Server.GameTicking; -using Content.Server.Ghost.Components; using Content.Server.Mind.Components; using Content.Server.Objectives; -using Content.Server.Players; using Content.Server.Roles; -using Content.Shared.Database; -using Content.Shared.Mobs.Components; -using Content.Shared.Mobs.Systems; -using Robust.Server.GameObjects; using Robust.Server.Player; using Robust.Shared.Network; -using Robust.Shared.Utility; namespace Content.Server.Mind { @@ -29,16 +19,9 @@ namespace Content.Server.Mind /// public sealed class Mind { - private readonly MobStateSystem _mobStateSystem = default!; - private readonly GameTicker _gameTickerSystem = default!; - private readonly MindSystem _mindSystem = default!; - [Dependency] private readonly IPlayerManager _playerManager = default!; - [Dependency] private readonly IEntityManager _entityManager = default!; - [Dependency] private readonly IAdminLogManager _adminLogger = default!; + internal readonly ISet Roles = new HashSet(); - private readonly ISet _roles = new HashSet(); - - private readonly List _objectives = new(); + internal readonly List Objectives = new(); public string Briefing = String.Empty; @@ -48,36 +31,32 @@ public sealed class Mind /// The provided UserId is solely for tracking of intended owner. /// /// The session ID of the original owner (may get credited). - public Mind(NetUserId userId) + public Mind(NetUserId? userId) { OriginalOwnerUserId = userId; - IoCManager.InjectDependencies(this); - _entityManager.EntitySysManager.Resolve(ref _mobStateSystem); - _entityManager.EntitySysManager.Resolve(ref _gameTickerSystem); - _entityManager.EntitySysManager.Resolve(ref _mindSystem); } - // TODO: This session should be able to be changed, probably. /// /// The session ID of the player owning this mind. /// [ViewVariables] - public NetUserId? UserId { get; private set; } + public NetUserId? UserId { get; internal set; } /// /// The session ID of the original owner, if any. /// May end up used for round-end information (as the owner may have abandoned Mind since) /// [ViewVariables] - public NetUserId OriginalOwnerUserId { get; } + public NetUserId? OriginalOwnerUserId { get; } [ViewVariables] public bool IsVisitingEntity => VisitingEntity != null; [ViewVariables] - public EntityUid? VisitingEntity { get; private set; } + public EntityUid? VisitingEntity { get; set; } - [ViewVariables] public EntityUid? CurrentEntity => VisitingEntity ?? OwnedEntity; + [ViewVariables] + public EntityUid? CurrentEntity => VisitingEntity ?? OwnedEntity; [ViewVariables(VVAccess.ReadWrite)] public string? CharacterName { get; set; } @@ -87,33 +66,33 @@ public Mind(NetUserId userId) /// Can be null - will be null if the Mind is not considered "dead". /// [ViewVariables] - public TimeSpan? TimeOfDeath { get; set; } = null; + public TimeSpan? TimeOfDeath { get; set; } /// /// The component currently owned by this mind. /// Can be null. /// [ViewVariables] - public MindComponent? OwnedComponent { get; private set; } + public MindContainerComponent? OwnedComponent { get; internal set; } /// /// The entity currently owned by this mind. /// Can be null. /// [ViewVariables] - public EntityUid? OwnedEntity => OwnedComponent?.Owner; + public EntityUid? OwnedEntity { get; internal set; } /// /// An enumerable over all the roles this mind has. /// [ViewVariables] - public IEnumerable AllRoles => _roles; + public IEnumerable AllRoles => Roles; /// /// An enumerable over all the objectives this mind has. /// [ViewVariables] - public IEnumerable AllObjectives => _objectives; + public IEnumerable AllObjectives => Objectives; /// /// Prevents user from ghosting out @@ -134,341 +113,11 @@ public Mind(NetUserId userId) /// Can be null, in which case the player is currently not logged in. /// [ViewVariables] - public IPlayerSession? Session - { - get - { - if (!UserId.HasValue) - { - return null; - } - _playerManager.TryGetSessionById(UserId.Value, out var ret); - return ret; - } - } - - /// - /// True if this Mind is 'sufficiently dead' IC (objectives, endtext). - /// Note that this is *IC logic*, it's not necessarily tied to any specific truth. - /// "If administrators decide that zombies are dead, this returns true for zombies." - /// (Maybe you were looking for the action blocker system?) - /// - [ViewVariables] - public bool CharacterDeadIC => CharacterDeadPhysically; - - /// - /// True if the OwnedEntity of this mind is physically dead. - /// This specific definition, as opposed to CharacterDeadIC, is used to determine if ghosting should allow return. - /// - [ViewVariables] - public bool CharacterDeadPhysically - { - get - { - // This is written explicitly so that the logic can be understood. - // But it's also weird and potentially situational. - // Specific considerations when updating this: - // + Does being turned into a borg (if/when implemented) count as dead? - // *If not, add specific conditions to users of this property where applicable.* - // + Is being transformed into a donut 'dead'? - // TODO: Consider changing the way ghost roles work. - // Mind is an *IC* mind, therefore ghost takeover is IC revival right now. - // + Is it necessary to have a reference to a specific 'mind iteration' to cycle when certain events happen? - // (If being a borg or AI counts as dead, then this is highly likely, as it's still the same Mind for practical purposes.) - - // This can be null if they're deleted (spike / brain nom) - var targetMobState = _entityManager.GetComponentOrNull(OwnedEntity); - // This can be null if it's a brain (this happens very often) - // Brains are the result of gibbing so should definitely count as dead - if (targetMobState == null) - return true; - // They might actually be alive. - return _mobStateSystem.IsDead(OwnedEntity!.Value, targetMobState); - } - } - - /// - /// A string to represent the mind for logging - /// - private string MindOwnerLoggingString - { - get - { - if (OwnedEntity != null) - return _entityManager.ToPrettyString(OwnedEntity.Value); - if (UserId != null) - return UserId.Value.ToString(); - return "(originally " + OriginalOwnerUserId + ")"; - } - } - - /// - /// Gives this mind a new role. - /// - /// The type of the role to give. - /// The instance of the role. - /// - /// Thrown if we already have a role with this type. - /// - public Role AddRole(Role role) - { - if (_roles.Contains(role)) - { - throw new ArgumentException($"We already have this role: {role}"); - } - - _roles.Add(role); - role.Greet(); - - var message = new RoleAddedEvent(this, role); - if (OwnedEntity != null) - { - _entityManager.EventBus.RaiseLocalEvent(OwnedEntity.Value, message, true); - } - _adminLogger.Add(LogType.Mind, LogImpact.Low, - $"'{role.Name}' added to mind of {MindOwnerLoggingString}"); - - return role; - } - - /// - /// Removes a role from this mind. - /// - /// The type of the role to remove. - /// - /// Thrown if we do not have this role. - /// - public void RemoveRole(Role role) - { - if (!_roles.Contains(role)) - { - throw new ArgumentException($"We do not have this role: {role}"); - } - - _roles.Remove(role); - - var message = new RoleRemovedEvent(this, role); - - if (OwnedEntity != null) - { - _entityManager.EventBus.RaiseLocalEvent(OwnedEntity.Value, message, true); - } - _adminLogger.Add(LogType.Mind, LogImpact.Low, - $"'{role.Name}' removed from mind of {MindOwnerLoggingString}"); - } - - public bool HasRole() where T : Role - { - return _roles.Any(role => role is T); - } + public IPlayerSession? Session { get; internal set; } /// /// Gets the current job /// - public Job? CurrentJob => _roles.OfType().SingleOrDefault(); - - /// - /// Adds an objective to this mind. - /// - public bool TryAddObjective(ObjectivePrototype objectivePrototype) - { - if (!objectivePrototype.CanBeAssigned(this)) - return false; - var objective = objectivePrototype.GetObjective(this); - if (_objectives.Contains(objective)) - return false; - - foreach (var condition in objective.Conditions) - _adminLogger.Add(LogType.Mind, LogImpact.Low, $"'{condition.Title}' added to mind of {MindOwnerLoggingString}"); - - - _objectives.Add(objective); - return true; - } - - /// - /// Removes an objective from this mind. - /// - /// Returns true if the removal succeeded. - public bool TryRemoveObjective(int index) - { - if (index < 0 || index >= _objectives.Count) return false; - - var objective = _objectives[index]; - - foreach (var condition in objective.Conditions) - _adminLogger.Add(LogType.Mind, LogImpact.Low, $"'{condition.Title}' removed from the mind of {MindOwnerLoggingString}"); - - _objectives.Remove(objective); - return true; - } - - /// - /// Transfer this mind's control over to a new entity. - /// - /// - /// The entity to control. - /// Can be null, in which case it will simply detach the mind from any entity. - /// - /// - /// If true, skips ghost check for Visiting Entity - /// - /// - /// Thrown if is already owned by another mind. - /// - public void TransferTo(EntityUid? entity, bool ghostCheckOverride = false) - { - // Looks like caller just wants us to go back to normal. - if (entity == OwnedEntity) - { - UnVisit(); - return; - } - - MindComponent? component = null; - var alreadyAttached = false; - - if (entity != null) - { - if (!_entityManager.TryGetComponent(entity.Value, out component)) - { - component = _entityManager.AddComponent(entity.Value); - } - else if (component.HasMind) - { - _gameTickerSystem.OnGhostAttempt(component.Mind!, false); - } - - if (_entityManager.TryGetComponent(entity.Value, out var actor)) - { - // Happens when transferring to your currently visited entity. - if (actor.PlayerSession != Session) - { - throw new ArgumentException("Visit target already has a session.", nameof(entity)); - } - - alreadyAttached = true; - } - } - - if(OwnedComponent != null) - _mindSystem.InternalEjectMind(OwnedComponent.Owner, OwnedComponent); - - OwnedComponent = component; - if(OwnedComponent != null) - _mindSystem.InternalAssignMind(OwnedComponent.Owner, this, OwnedComponent); - - // Don't do the full deletion cleanup if we're transferring to our visitingentity - if (alreadyAttached) - { - // Set VisitingEntity null first so the removal of VisitingMind doesn't get through Unvisit() and delete what we're visiting. - // Yes this control flow sucks. - VisitingEntity = null; - _entityManager.RemoveComponent(entity!.Value); - } - else if (VisitingEntity != null - && (ghostCheckOverride // to force mind transfer, for example from ControlMobVerb - || !_entityManager.TryGetComponent(VisitingEntity!, out GhostComponent? ghostComponent) // visiting entity is not a Ghost - || !ghostComponent.CanReturnToBody)) // it is a ghost, but cannot return to body anyway, so it's okay - { - RemoveVisitingEntity(); - } - - // Player is CURRENTLY connected. - if (Session != null && !alreadyAttached && VisitingEntity == null) - { - Session.AttachToEntity(entity); - Logger.Info($"Session {Session.Name} transferred to entity {entity}."); - } - } - - public void ChangeOwningPlayer(NetUserId? newOwner) - { - var playerMgr = IoCManager.Resolve(); - PlayerData? newOwnerData = null; - - if (newOwner.HasValue) - { - if (!playerMgr.TryGetPlayerData(newOwner.Value, out var uncast)) - { - // This restriction is because I'm too lazy to initialize the player data - // for a client that hasn't logged in yet. - // Go ahead and remove it if you need. - throw new ArgumentException("new owner must have previously logged into the server."); - } - - newOwnerData = uncast.ContentData(); - } - - // Make sure to remove control from our old owner if they're logged in. - var oldSession = Session; - oldSession?.AttachToEntity(null); - - if (UserId.HasValue) - { - var data = playerMgr.GetPlayerData(UserId.Value).ContentData(); - DebugTools.AssertNotNull(data); - data!.UpdateMindFromMindChangeOwningPlayer(null); - } - - UserId = newOwner; - if (!newOwner.HasValue) - { - return; - } - - // Yank new owner out of their old mind too. - // Can I mention how much I love the word yank? - DebugTools.AssertNotNull(newOwnerData); - newOwnerData!.Mind?.ChangeOwningPlayer(null); - newOwnerData.UpdateMindFromMindChangeOwningPlayer(this); - } - - public void Visit(EntityUid entity) - { - Session?.AttachToEntity(entity); - VisitingEntity = entity; - - var comp = _entityManager.AddComponent(entity); - comp.Mind = this; - - Logger.Info($"Session {Session?.Name} visiting entity {entity}."); - } - - /// - /// Returns the mind to its original entity. - /// - public void UnVisit() - { - var currentEntity = Session?.AttachedEntity; - Session?.AttachToEntity(OwnedEntity); - RemoveVisitingEntity(); - - if (Session != null && OwnedEntity != null && currentEntity != OwnedEntity) - _adminLogger.Add(LogType.Mind, LogImpact.Low, - $"{Session.Name} returned to {_entityManager.ToPrettyString(OwnedEntity.Value)}"); - } - - /// - /// Cleans up the VisitingEntity. - /// - private void RemoveVisitingEntity() - { - if (VisitingEntity == null) - return; - - var oldVisitingEnt = VisitingEntity.Value; - // Null this before removing the component to avoid any infinite loops. - VisitingEntity = null; - - DebugTools.AssertNotNull(oldVisitingEnt); - _entityManager.RemoveComponent(oldVisitingEnt); - _entityManager.EventBus.RaiseLocalEvent(oldVisitingEnt, new MindUnvisitedMessage(), true); - } - - public bool TryGetSession([NotNullWhen(true)] out IPlayerSession? session) - { - return (session = Session) != null; - } + public Job? CurrentJob => Roles.OfType().SingleOrDefault(); } } diff --git a/Content.Server/Mind/MindSystem.cs b/Content.Server/Mind/MindSystem.cs index 5d017418be..ccb180cd5a 100644 --- a/Content.Server/Mind/MindSystem.cs +++ b/Content.Server/Mind/MindSystem.cs @@ -1,13 +1,24 @@ +using System.Diagnostics.CodeAnalysis; +using System.Linq; +using Content.Server.Administration.Logs; using Content.Server.GameTicking; using Content.Server.Ghost; using Content.Server.Ghost.Components; using Content.Server.Mind.Components; +using Content.Server.Objectives; +using Content.Server.Players; +using Content.Server.Roles; +using Content.Shared.Database; using Content.Shared.Examine; -using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; using Content.Shared.Interaction.Events; +using Content.Shared.Mobs.Components; +using Robust.Server.GameObjects; +using Robust.Server.Player; using Robust.Shared.Map; +using Robust.Shared.Network; using Robust.Shared.Timing; +using Robust.Shared.Utility; namespace Content.Server.Mind; @@ -17,17 +28,34 @@ public sealed class MindSystem : EntitySystem [Dependency] private readonly GameTicker _gameTicker = default!; [Dependency] private readonly MobStateSystem _mobStateSystem = default!; [Dependency] private readonly GhostSystem _ghostSystem = default!; + [Dependency] private readonly IAdminLogManager _adminLogger = default!; + [Dependency] private readonly IPlayerManager _playerManager = default!; + [Dependency] private readonly ActorSystem _actor = default!; public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnShutdown); - SubscribeLocalEvent(OnExamined); - SubscribeLocalEvent(OnSuicide); + SubscribeLocalEvent(OnShutdown); + SubscribeLocalEvent(OnExamined); + SubscribeLocalEvent(OnSuicide); + SubscribeLocalEvent(OnTerminating); + SubscribeLocalEvent(OnDetached); } - public void SetGhostOnShutdown(EntityUid uid, bool value, MindComponent? mind = null) + private void OnDetached(EntityUid uid, VisitingMindComponent component, PlayerDetachedEvent args) + { + component.Mind = null; + RemCompDeferred(uid, component); + } + + private void OnTerminating(EntityUid uid, VisitingMindComponent component, ref EntityTerminatingEvent args) + { + if (component.Mind?.Session?.AttachedEntity == uid) + UnVisit(component.Mind); + } + + public void SetGhostOnShutdown(EntityUid uid, bool value, MindContainerComponent? mind = null) { if (!Resolve(uid, ref mind)) return; @@ -37,10 +65,10 @@ public void SetGhostOnShutdown(EntityUid uid, bool value, MindComponent? mind = /// /// Don't call this unless you know what the hell you're doing. - /// Use instead. + /// Use instead. /// If that doesn't cover it, make something to cover it. /// - public void InternalAssignMind(EntityUid uid, Mind value, MindComponent? mind = null) + private void InternalAssignMind(EntityUid uid, Mind value, MindContainerComponent? mind = null) { if (!Resolve(uid, ref mind)) return; @@ -51,10 +79,10 @@ public void InternalAssignMind(EntityUid uid, Mind value, MindComponent? mind = /// /// Don't call this unless you know what the hell you're doing. - /// Use instead. + /// Use instead. /// If that doesn't cover it, make something to cover it. /// - public void InternalEjectMind(EntityUid uid, MindComponent? mind = null) + private void InternalEjectMind(EntityUid uid, MindContainerComponent? mind = null) { if (!Resolve(uid, ref mind, false)) return; @@ -63,109 +91,519 @@ public void InternalEjectMind(EntityUid uid, MindComponent? mind = null) mind.Mind = null; } - private void OnShutdown(EntityUid uid, MindComponent mind, ComponentShutdown args) + private void OnShutdown(EntityUid uid, MindContainerComponent mindContainerComp, ComponentShutdown args) { // Let's not create ghosts if not in the middle of the round. if (_gameTicker.RunLevel != GameRunLevel.InRound) return; - if (mind.HasMind) + if (!TryGetMind(uid, out var mind, mindContainerComp)) + return; + + if (mind.VisitingEntity is {Valid: true} visiting) + { + if (TryComp(visiting, out GhostComponent? ghost)) + { + _ghostSystem.SetCanReturnToBody(ghost, false); + } + + TransferTo(mind, visiting); + } + else if (mindContainerComp.GhostOnShutdown) { - if (mind.Mind?.VisitingEntity is {Valid: true} visiting) + // Changing an entities parents while deleting is VERY sus. This WILL throw exceptions. + // TODO: just find the applicable spawn position directly without actually updating the transform's parent. + Transform(uid).AttachToGridOrMap(); + var spawnPosition = Transform(uid).Coordinates; + + // Use a regular timer here because the entity has probably been deleted. + Timer.Spawn(0, () => { - if (TryComp(visiting, out GhostComponent? ghost)) + // Make extra sure the round didn't end between spawning the timer and it being executed. + if (_gameTicker.RunLevel != GameRunLevel.InRound) + return; + + // Async this so that we don't throw if the grid we're on is being deleted. + var gridId = spawnPosition.GetGridUid(EntityManager); + if (!spawnPosition.IsValid(EntityManager) || gridId == EntityUid.Invalid || !_mapManager.GridExists(gridId)) { - _ghostSystem.SetCanReturnToBody(ghost, false); + spawnPosition = _gameTicker.GetObserverSpawnPoint(); } - mind.Mind!.TransferTo(visiting); + // TODO refactor observer spawning. + // please. + if (!spawnPosition.IsValid(EntityManager)) + { + // This should be an error, if it didn't cause tests to start erroring when they delete a player. + Log.Warning($"Entity \"{ToPrettyString(uid)}\" for {mind.CharacterName} was deleted, and no applicable spawn location is available."); + TransferTo(mind, null); + return; + } + + var ghost = Spawn("MobObserver", spawnPosition); + var ghostComponent = Comp(ghost); + _ghostSystem.SetCanReturnToBody(ghostComponent, false); + + // Log these to make sure they're not causing the GameTicker round restart bugs... + Log.Debug($"Entity \"{ToPrettyString(uid)}\" for {mind.CharacterName} was deleted, spawned \"{ToPrettyString(ghost)}\"."); + + var val = mind.CharacterName ?? string.Empty; + MetaData(ghost).EntityName = val; + TransferTo(mind, ghost); + }); + } + } + + private void OnExamined(EntityUid uid, MindContainerComponent mindContainer, ExaminedEvent args) + { + if (!mindContainer.ShowExamineInfo || !args.IsInDetailsRange) + return; + + var dead = _mobStateSystem.IsDead(uid); + var hasSession = mindContainer.Mind?.Session; + + if (dead && hasSession == null) + args.PushMarkup($"[color=yellow]{Loc.GetString("comp-mind-examined-dead-and-ssd", ("ent", uid))}[/color]"); + else if (dead) + args.PushMarkup($"[color=red]{Loc.GetString("comp-mind-examined-dead", ("ent", uid))}[/color]"); + else if (!mindContainer.HasMind) + args.PushMarkup($"[color=mediumpurple]{Loc.GetString("comp-mind-examined-catatonic", ("ent", uid))}[/color]"); + else if (hasSession == null) + args.PushMarkup($"[color=yellow]{Loc.GetString("comp-mind-examined-ssd", ("ent", uid))}[/color]"); + } + + private void OnSuicide(EntityUid uid, MindContainerComponent component, SuicideEvent args) + { + if (args.Handled) + return; + + if (component.HasMind && component.Mind.PreventSuicide) + { + args.BlockSuicideAttempt(true); + } + } + + public Mind? GetMind(EntityUid uid, MindContainerComponent? mind = null) + { + if (!Resolve(uid, ref mind)) + return null; + + if (mind.HasMind) + return mind.Mind; + return null; + } + + public Mind CreateMind(NetUserId? userId, string? name = null) + { + var mind = new Mind(userId); + mind.CharacterName = name; + ChangeOwningPlayer(mind, userId); + return mind; + } + + /// + /// True if the OwnedEntity of this mind is physically dead. + /// This specific definition, as opposed to CharacterDeadIC, is used to determine if ghosting should allow return. + /// + public bool IsCharacterDeadPhysically(Mind mind) + { + // This is written explicitly so that the logic can be understood. + // But it's also weird and potentially situational. + // Specific considerations when updating this: + // + Does being turned into a borg (if/when implemented) count as dead? + // *If not, add specific conditions to users of this property where applicable.* + // + Is being transformed into a donut 'dead'? + // TODO: Consider changing the way ghost roles work. + // Mind is an *IC* mind, therefore ghost takeover is IC revival right now. + // + Is it necessary to have a reference to a specific 'mind iteration' to cycle when certain events happen? + // (If being a borg or AI counts as dead, then this is highly likely, as it's still the same Mind for practical purposes.) + + if (mind.OwnedEntity == null) + return true; + + // This can be null if they're deleted (spike / brain nom) + var targetMobState = EntityManager.GetComponentOrNull(mind.OwnedEntity); + // This can be null if it's a brain (this happens very often) + // Brains are the result of gibbing so should definitely count as dead + if (targetMobState == null) + return true; + // They might actually be alive. + return _mobStateSystem.IsDead(mind.OwnedEntity.Value, targetMobState); + } + + public void Visit(Mind mind, EntityUid entity) + { + if (mind.VisitingEntity != null) + { + Log.Error($"Attempted to visit an entity ({ToPrettyString(entity)}) while already visiting another ({ToPrettyString(mind.VisitingEntity.Value)})."); + return; + } + + if (HasComp(entity)) + { + Log.Error($"Attempted to visit an entity that already has a visiting mind. Entity: {ToPrettyString(entity)}"); + return; + } + + mind.Session?.AttachToEntity(entity); + mind.VisitingEntity = entity; + + // EnsureComp instead of AddComp to deal with deferred deletions. + var comp = EnsureComp(entity); + comp.Mind = mind; + Log.Info($"Session {mind.Session?.Name} visiting entity {entity}."); + } + + /// + /// Returns the mind to its original entity. + /// + public void UnVisit(Mind? mind) + { + if (mind == null || mind.VisitingEntity == null) + return; + + DebugTools.Assert(mind.VisitingEntity != mind.OwnedEntity); + RemoveVisitingEntity(mind); + + if (mind.Session == null || mind.Session.AttachedEntity == mind.VisitingEntity) + return; + + var owned = mind.OwnedEntity; + mind.Session.AttachToEntity(owned); + + if (owned.HasValue) + { + _adminLogger.Add(LogType.Mind, LogImpact.Low, + $"{mind.Session.Name} returned to {ToPrettyString(owned.Value)}"); + } + } + + /// + /// Cleans up the VisitingEntity. + /// + /// + private void RemoveVisitingEntity(Mind mind) + { + if (mind.VisitingEntity == null) + return; + + var oldVisitingEnt = mind.VisitingEntity.Value; + // Null this before removing the component to avoid any infinite loops. + mind.VisitingEntity = null; + + if (TryComp(oldVisitingEnt, out VisitingMindComponent? visitComp)) + { + visitComp.Mind = null; + RemCompDeferred(oldVisitingEnt, visitComp); + } + + RaiseLocalEvent(oldVisitingEnt, new MindUnvisitedMessage(), true); + } + + /// + /// Transfer this mind's control over to a new entity. + /// + /// The mind to transfer + /// + /// The entity to control. + /// Can be null, in which case it will simply detach the mind from any entity. + /// + /// + /// If true, skips ghost check for Visiting Entity + /// + /// + /// Thrown if is already owned by another mind. + /// + public void TransferTo(Mind mind, EntityUid? entity, bool ghostCheckOverride = false) + { + // Looks like caller just wants us to go back to normal. + if (entity == mind.OwnedEntity) + { + UnVisit(mind); + return; + } + + MindContainerComponent? component = null; + var alreadyAttached = false; + + if (entity != null) + { + if (!TryComp(entity.Value, out component)) + { + component = AddComp(entity.Value); } - else if (mind.GhostOnShutdown) + else if (component.HasMind) { - // Changing an entities parents while deleting is VERY sus. This WILL throw exceptions. - // TODO: just find the applicable spawn position dirctly without actually updating the transform's parent. - Transform(uid).AttachToGridOrMap(); - var spawnPosition = Transform(uid).Coordinates; + _gameTicker.OnGhostAttempt(component.Mind, false); + } - // Use a regular timer here because the entity has probably been deleted. - Timer.Spawn(0, () => + if (TryComp(entity.Value, out var actor)) + { + // Happens when transferring to your currently visited entity. + if (actor.PlayerSession != mind.Session) { - // Make extra sure the round didn't end between spawning the timer and it being executed. - if (_gameTicker.RunLevel != GameRunLevel.InRound) - return; - - // Async this so that we don't throw if the grid we're on is being deleted. - var gridId = spawnPosition.GetGridUid(EntityManager); - if (!spawnPosition.IsValid(EntityManager) || gridId == EntityUid.Invalid || !_mapManager.GridExists(gridId)) - { - spawnPosition = _gameTicker.GetObserverSpawnPoint(); - } - - // TODO refactor observer spawning. - // please. - if (!spawnPosition.IsValid(EntityManager)) - { - // This should be an error, if it didn't cause tests to start erroring when they delete a player. - Logger.WarningS("mind", $"Entity \"{ToPrettyString(uid)}\" for {mind.Mind?.CharacterName} was deleted, and no applicable spawn location is available."); - mind.Mind?.TransferTo(null); - return; - } - - var ghost = Spawn("MobObserver", spawnPosition); - var ghostComponent = Comp(ghost); - _ghostSystem.SetCanReturnToBody(ghostComponent, false); - - // Log these to make sure they're not causing the GameTicker round restart bugs... - Logger.DebugS("mind", $"Entity \"{ToPrettyString(uid)}\" for {mind.Mind?.CharacterName} was deleted, spawned \"{ToPrettyString(ghost)}\"."); - - if (mind.Mind == null) - return; - - var val = mind.Mind.CharacterName ?? string.Empty; - MetaData(ghost).EntityName = val; - mind.Mind.TransferTo(ghost); - }); + throw new ArgumentException("Visit target already has a session.", nameof(entity)); + } + + alreadyAttached = true; } } + + var oldComp = mind.OwnedComponent; + var oldEntity = mind.OwnedEntity; + if(oldComp != null && oldEntity != null) + InternalEjectMind(oldEntity.Value, oldComp); + + SetOwnedEntity(mind, entity, component); + if (mind.OwnedComponent != null) + InternalAssignMind(mind.OwnedEntity!.Value, mind, mind.OwnedComponent); + + // Don't do the full deletion cleanup if we're transferring to our VisitingEntity + if (alreadyAttached) + { + // Set VisitingEntity null first so the removal of VisitingMind doesn't get through Unvisit() and delete what we're visiting. + // Yes this control flow sucks. + mind.VisitingEntity = null; + RemComp(entity!.Value); + } + else if (mind.VisitingEntity != null + && (ghostCheckOverride // to force mind transfer, for example from ControlMobVerb + || !TryComp(mind.VisitingEntity!, out GhostComponent? ghostComponent) // visiting entity is not a Ghost + || !ghostComponent.CanReturnToBody)) // it is a ghost, but cannot return to body anyway, so it's okay + { + RemoveVisitingEntity(mind); + } + + // Player is CURRENTLY connected. + if (mind.Session != null && !alreadyAttached && mind.VisitingEntity == null) + { + mind.Session.AttachToEntity(entity); + Log.Info($"Session {mind.Session.Name} transferred to entity {entity}."); + } } - private void OnExamined(EntityUid uid, MindComponent mind, ExaminedEvent args) + public void ChangeOwningPlayer(Mind mind, NetUserId? newOwner) { - if (!mind.ShowExamineInfo || !args.IsInDetailsRange) + // Make sure to remove control from our old owner if they're logged in. + var oldSession = mind.Session; + oldSession?.AttachToEntity(null); + + if (mind.UserId.HasValue) + { + if (_playerManager.TryGetPlayerData(mind.UserId.Value, out var oldUncast)) + { + var data = oldUncast.ContentData(); + DebugTools.AssertNotNull(data); + data!.UpdateMindFromMindChangeOwningPlayer(null); + } + else + { + Log.Warning($"Mind UserId {newOwner} is does not exist in PlayerManager"); + } + } + + SetUserId(mind, newOwner); + if (!newOwner.HasValue) { return; } - var dead = TryComp(uid, out var state) && _mobStateSystem.IsDead(uid, state); + if (!_playerManager.TryGetPlayerData(newOwner.Value, out var uncast)) + { + // This restriction is because I'm too lazy to initialize the player data + // for a client that hasn't logged in yet. + // Go ahead and remove it if you need. + throw new ArgumentException("New owner must have previously logged into the server.", nameof(newOwner)); + } - if (dead) + // PlayerData? newOwnerData = null; + var newOwnerData = uncast.ContentData(); + + // Yank new owner out of their old mind too. + // Can I mention how much I love the word yank? + DebugTools.AssertNotNull(newOwnerData); + if (newOwnerData!.Mind != null) + ChangeOwningPlayer(newOwnerData.Mind, null); + newOwnerData.UpdateMindFromMindChangeOwningPlayer(mind); + } + + /// + /// Adds an objective to this mind. + /// + public bool TryAddObjective(Mind mind, ObjectivePrototype objectivePrototype) + { + if (!objectivePrototype.CanBeAssigned(mind)) + return false; + var objective = objectivePrototype.GetObjective(mind); + if (mind.Objectives.Contains(objective)) + return false; + + foreach (var condition in objective.Conditions) { - if (mind.Mind?.Session == null) { - // Player has no session attached and dead - args.PushMarkup($"[color=yellow]{Loc.GetString("mind-component-no-mind-and-dead-text", ("ent", uid))}[/color]"); - } else { - // Player is dead with session - args.PushMarkup($"[color=red]{Loc.GetString("comp-mind-examined-dead", ("ent", uid))}[/color]"); - } + _adminLogger.Add(LogType.Mind, LogImpact.Low, $"'{condition.Title}' added to mind of {MindOwnerLoggingString(mind)}"); } - else if (!mind.HasMind) + + + mind.Objectives.Add(objective); + return true; + } + + /// + /// Removes an objective to this mind. + /// + /// Returns true if the removal succeeded. + public bool TryRemoveObjective(Mind mind, int index) + { + if (mind.Objectives.Count >= index) return false; + + var objective = mind.Objectives[index]; + + foreach (var condition in objective.Conditions) { - args.PushMarkup($"[color=mediumpurple]{Loc.GetString("comp-mind-examined-catatonic", ("ent", uid))}[/color]"); + _adminLogger.Add(LogType.Mind, LogImpact.Low, $"'{condition.Title}' removed from the mind of {MindOwnerLoggingString(mind)}"); } - else if (mind.Mind?.Session == null) + + mind.Objectives.Remove(objective); + return true; + } + + /// + /// Gives this mind a new role. + /// + /// The mind to add the role to. + /// The type of the role to give. + /// The instance of the role. + /// + /// Thrown if we already have a role with this type. + /// + public void AddRole(Mind mind, Role role) + { + if (mind.Roles.Contains(role)) { - args.PushMarkup($"[color=yellow]{Loc.GetString("comp-mind-examined-ssd", ("ent", uid))}[/color]"); + throw new ArgumentException($"We already have this role: {role}"); } + + mind.Roles.Add(role); + role.Greet(); + + var message = new RoleAddedEvent(mind, role); + if (mind.OwnedEntity != null) + { + RaiseLocalEvent(mind.OwnedEntity.Value, message, true); + } + + _adminLogger.Add(LogType.Mind, LogImpact.Low, + $"'{role.Name}' added to mind of {MindOwnerLoggingString(mind)}"); } - private void OnSuicide(EntityUid uid, MindComponent component, SuicideEvent args) + /// + /// Removes a role from this mind. + /// + /// The mind to remove the role from. + /// The type of the role to remove. + /// + /// Thrown if we do not have this role. + /// + public void RemoveRole(Mind mind, Role role) { - if (args.Handled) - return; + if (!mind.Roles.Contains(role)) + { + throw new ArgumentException($"We do not have this role: {role}"); + } + + mind.Roles.Remove(role); + + var message = new RoleRemovedEvent(mind, role); - if (component.HasMind && component.Mind!.PreventSuicide) + if (mind.OwnedEntity != null) { - args.BlockSuicideAttempt(true); + RaiseLocalEvent(mind.OwnedEntity.Value, message, true); } + _adminLogger.Add(LogType.Mind, LogImpact.Low, + $"'{role.Name}' removed from mind of {MindOwnerLoggingString(mind)}"); + } + + public bool HasRole(Mind mind) where T : Role + { + return mind.Roles.Any(role => role is T); + } + + public bool TryGetSession(Mind mind, [NotNullWhen(true)] out IPlayerSession? session) + { + return (session = mind.Session) != null; + } + + /// + /// Gets a mind from uid and/or MindContainerComponent. Used for null checks. + /// + /// Entity UID that owns the mind. + /// The returned mind. + /// Mind component on to get the mind from. + /// True if mind found. False if not. + public bool TryGetMind(EntityUid uid, [NotNullWhen(true)] out Mind? mind, MindContainerComponent? mindContainerComponent = null) + { + mind = null; + if (!Resolve(uid, ref mindContainerComponent)) + return false; + + if (!mindContainerComponent.HasMind) + return false; + + mind = mindContainerComponent.Mind; + return true; + } + + /// + /// Sets the Mind's OwnedComponent and OwnedEntity + /// + /// Mind to set OwnedComponent and OwnedEntity on + /// Entity owned by + /// MindContainerComponent owned by + private void SetOwnedEntity(Mind mind, EntityUid? uid, MindContainerComponent? mindContainerComponent) + { + if (uid != null) + Resolve(uid.Value, ref mindContainerComponent); + + mind.OwnedEntity = uid; + mind.OwnedComponent = mindContainerComponent; + } + + /// + /// Sets the Mind's UserId and Session + /// + /// + /// + private void SetUserId(Mind mind, NetUserId? userId) + { + mind.UserId = userId; + + if (!userId.HasValue) + return; + + _playerManager.TryGetSessionById(userId.Value, out var ret); + mind.Session = ret; + } + + /// + /// True if this Mind is 'sufficiently dead' IC (Objectives, EndText). + /// Note that this is *IC logic*, it's not necessarily tied to any specific truth. + /// "If administrators decide that zombies are dead, this returns true for zombies." + /// (Maybe you were looking for the action blocker system?) + /// + public bool IsCharacterDeadIc(Mind mind) + { + return IsCharacterDeadPhysically(mind); + } + + /// + /// A string to represent the mind for logging + /// + private string MindOwnerLoggingString(Mind mind) + { + if (mind.OwnedEntity != null) + return ToPrettyString(mind.OwnedEntity.Value); + if (mind.UserId != null) + return mind.UserId.Value.ToString(); + return "(originally " + mind.OriginalOwnerUserId + ")"; } } diff --git a/Content.Server/Mind/MindTrackerSystem.cs b/Content.Server/Mind/MindTrackerSystem.cs index 49f2400b08..2ab76ce9af 100644 --- a/Content.Server/Mind/MindTrackerSystem.cs +++ b/Content.Server/Mind/MindTrackerSystem.cs @@ -20,7 +20,7 @@ public override void Initialize() base.Initialize(); SubscribeLocalEvent(Reset); - SubscribeLocalEvent(OnMindAdded); + SubscribeLocalEvent(OnMindAdded); } void Reset(RoundRestartCleanupEvent ev) @@ -28,7 +28,7 @@ void Reset(RoundRestartCleanupEvent ev) AllMinds.Clear(); } - void OnMindAdded(EntityUid uid, MindComponent mc, MindAddedMessage args) + void OnMindAdded(EntityUid uid, MindContainerComponent mc, MindAddedMessage args) { var mind = mc.Mind; if (mind != null) diff --git a/Content.Server/Mind/TransferMindOnGibSystem.cs b/Content.Server/Mind/TransferMindOnGibSystem.cs index 1aed10c324..d499d6a4dd 100644 --- a/Content.Server/Mind/TransferMindOnGibSystem.cs +++ b/Content.Server/Mind/TransferMindOnGibSystem.cs @@ -15,6 +15,7 @@ public sealed class TransferMindOnGibSystem : EntitySystem { [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly TagSystem _tag = default!; + [Dependency] private readonly MindSystem _mindSystem = default!; /// public override void Initialize() @@ -24,7 +25,7 @@ public override void Initialize() private void OnGib(EntityUid uid, TransferMindOnGibComponent component, BeingGibbedEvent args) { - if (!TryComp(uid, out var mindcomp) || mindcomp.Mind == null) + if (!TryComp(uid, out var mindcomp) || mindcomp.Mind == null) return; var validParts = args.GibbedParts.Where(p => _tag.HasTag(p, component.TargetTag)).ToHashSet(); @@ -32,6 +33,6 @@ private void OnGib(EntityUid uid, TransferMindOnGibComponent component, BeingGib return; var ent = _random.Pick(validParts); - mindcomp.Mind.TransferTo(ent); + _mindSystem.TransferTo(mindcomp.Mind, ent); } } diff --git a/Content.Server/Objectives/Commands/AddObjectiveCommand.cs b/Content.Server/Objectives/Commands/AddObjectiveCommand.cs index ea4372b1aa..7353763b63 100644 --- a/Content.Server/Objectives/Commands/AddObjectiveCommand.cs +++ b/Content.Server/Objectives/Commands/AddObjectiveCommand.cs @@ -1,4 +1,5 @@ using Content.Server.Administration; +using Content.Server.Mind; using Content.Server.Players; using Content.Shared.Administration; using Robust.Server.Player; @@ -10,6 +11,8 @@ namespace Content.Server.Objectives.Commands [AdminCommand(AdminFlags.Admin)] public sealed class AddObjectiveCommand : IConsoleCommand { + [Dependency] private readonly IEntityManager _entityManager = default!; + public string Command => "addobjective"; public string Description => "Adds an objective to the player's mind."; public string Help => "addobjective "; @@ -42,8 +45,10 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) shell.WriteLine($"Can't find matching ObjectivePrototype {objectivePrototype}"); return; } + + var mindSystem = _entityManager.System(); - if (!mind.TryAddObjective(objectivePrototype)) + if (!mindSystem.TryAddObjective(mind, objectivePrototype)) { shell.WriteLine("Objective requirements dont allow that objective to be added."); } diff --git a/Content.Server/Objectives/Commands/RemoveObjectiveCommand.cs b/Content.Server/Objectives/Commands/RemoveObjectiveCommand.cs index 96979ab6fa..c0846a1e43 100644 --- a/Content.Server/Objectives/Commands/RemoveObjectiveCommand.cs +++ b/Content.Server/Objectives/Commands/RemoveObjectiveCommand.cs @@ -1,4 +1,5 @@ using Content.Server.Administration; +using Content.Server.Mind; using Content.Server.Players; using Content.Shared.Administration; using Robust.Server.Player; @@ -9,6 +10,8 @@ namespace Content.Server.Objectives.Commands [AdminCommand(AdminFlags.Admin)] public sealed class RemoveObjectiveCommand : IConsoleCommand { + [Dependency] private readonly IEntityManager _entityManager = default!; + public string Command => "rmobjective"; public string Description => "Removes an objective from the player's mind."; public string Help => "rmobjective "; @@ -32,7 +35,8 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) if (int.TryParse(args[1], out var i)) { - shell.WriteLine(mind.TryRemoveObjective(i) + var mindSystem = _entityManager.System(); + shell.WriteLine(mindSystem.TryRemoveObjective(mind, i) ? "Objective successfully removed!" : "Objective removing failed. Maybe the index is out of bounds? Check lsobjectives!"); } diff --git a/Content.Server/Objectives/Conditions/DieCondition.cs b/Content.Server/Objectives/Conditions/DieCondition.cs index cc5ddd9abf..5a63147ad4 100644 --- a/Content.Server/Objectives/Conditions/DieCondition.cs +++ b/Content.Server/Objectives/Conditions/DieCondition.cs @@ -1,3 +1,4 @@ +using Content.Server.Mind; using Content.Server.Objectives.Interfaces; using JetBrains.Annotations; using Robust.Shared.Utility; @@ -21,7 +22,15 @@ public IObjectiveCondition GetAssigned(Mind.Mind mind) public SpriteSpecifier Icon => new SpriteSpecifier.Rsi(new ("Mobs/Ghosts/ghost_human.rsi"), "icon"); - public float Progress => (_mind?.CharacterDeadIC ?? true) ? 1f : 0f; + public float Progress + { + get + { + var entityManager = IoCManager.Resolve(); + var mindSystem = entityManager.System(); + return _mind == null || mindSystem.IsCharacterDeadIc(_mind) ? 1f : 0f; + } + } public float Difficulty => 0.5f; diff --git a/Content.Server/Objectives/Conditions/EscapeShuttleCondition.cs b/Content.Server/Objectives/Conditions/EscapeShuttleCondition.cs index ff475e706b..a41d891ff9 100644 --- a/Content.Server/Objectives/Conditions/EscapeShuttleCondition.cs +++ b/Content.Server/Objectives/Conditions/EscapeShuttleCondition.cs @@ -1,3 +1,4 @@ +using Content.Server.Mind; using Content.Server.Objectives.Interfaces; using Content.Server.Shuttles.Components; using Content.Server.Station.Components; @@ -47,13 +48,14 @@ public float Progress { get { var entMan = IoCManager.Resolve(); + var mindSystem = entMan.System(); if (_mind?.OwnedEntity == null || !entMan.TryGetComponent(_mind.OwnedEntity, out var xform)) return 0f; var shuttleContainsAgent = false; - var agentIsAlive = !_mind.CharacterDeadIC; + var agentIsAlive = !mindSystem.IsCharacterDeadIc(_mind); var agentIsEscaping = true; if (entMan.TryGetComponent(_mind.OwnedEntity, out var cuffed) diff --git a/Content.Server/Objectives/Conditions/KillPersonCondition.cs b/Content.Server/Objectives/Conditions/KillPersonCondition.cs index a3a057961b..cdfd25174e 100644 --- a/Content.Server/Objectives/Conditions/KillPersonCondition.cs +++ b/Content.Server/Objectives/Conditions/KillPersonCondition.cs @@ -1,3 +1,4 @@ +using Content.Server.Mind; using Content.Server.Objectives.Interfaces; using Content.Shared.Mobs.Systems; using Robust.Shared.Utility; @@ -32,7 +33,15 @@ public string Title public SpriteSpecifier Icon => new SpriteSpecifier.Rsi(new ("Objects/Weapons/Guns/Pistols/viper.rsi"), "icon"); - public float Progress => (Target?.CharacterDeadIC ?? true) ? 1f : 0f; + public float Progress + { + get + { + var entityManager = IoCManager.Resolve(); + var mindSystem = entityManager.System(); + return Target == null || mindSystem.IsCharacterDeadIc(Target) ? 1f : 0f; + } + } public float Difficulty => 2f; diff --git a/Content.Server/Objectives/Conditions/KillRandomPersonCondition.cs b/Content.Server/Objectives/Conditions/KillRandomPersonCondition.cs index 5cdef407dd..d84b75fff3 100644 --- a/Content.Server/Objectives/Conditions/KillRandomPersonCondition.cs +++ b/Content.Server/Objectives/Conditions/KillRandomPersonCondition.cs @@ -13,7 +13,7 @@ public sealed class KillRandomPersonCondition : KillPersonCondition { public override IObjectiveCondition GetAssigned(Mind.Mind mind) { - var allHumans = EntityManager.EntityQuery(true).Where(mc => + var allHumans = EntityManager.EntityQuery(true).Where(mc => { var entity = mc.Mind?.OwnedEntity; diff --git a/Content.Server/Objectives/Conditions/RandomTraitorAliveCondition.cs b/Content.Server/Objectives/Conditions/RandomTraitorAliveCondition.cs index 0fd1d53a09..ddd6f95b5a 100644 --- a/Content.Server/Objectives/Conditions/RandomTraitorAliveCondition.cs +++ b/Content.Server/Objectives/Conditions/RandomTraitorAliveCondition.cs @@ -3,6 +3,7 @@ using Robust.Shared.Random; using Robust.Shared.Utility; using Content.Server.GameTicking.Rules; +using Content.Server.Mind; namespace Content.Server.Objectives.Conditions { @@ -42,7 +43,15 @@ public string Title public SpriteSpecifier Icon => new SpriteSpecifier.Rsi(new ("Objects/Misc/bureaucracy.rsi"), "folder-white"); - public float Progress => (!_target?.CharacterDeadIC ?? true) ? 1f : 0f; + public float Progress + { + get + { + var entityManager = IoCManager.Resolve(); + var mindSystem = entityManager.System(); + return _target == null || mindSystem.IsCharacterDeadIc(_target) ? 1f : 0f; + } + } public float Difficulty => 1.75f; diff --git a/Content.Server/Objectives/Requirements/TraitorRequirement.cs b/Content.Server/Objectives/Requirements/TraitorRequirement.cs index 1a7cd816ff..5ddcaa673d 100644 --- a/Content.Server/Objectives/Requirements/TraitorRequirement.cs +++ b/Content.Server/Objectives/Requirements/TraitorRequirement.cs @@ -1,6 +1,5 @@ -using Content.Server.Objectives.Interfaces; -using Content.Server.Roles; -using Content.Server.Traitor; +using Content.Server.Mind; +using Content.Server.Objectives.Interfaces; using JetBrains.Annotations; using TraitorRole = Content.Server.Roles.TraitorRole; @@ -12,7 +11,9 @@ public sealed class TraitorRequirement : IObjectiveRequirement { public bool CanBeAssigned(Mind.Mind mind) { - return mind.HasRole(); + var entityManager = IoCManager.Resolve(); + var mindSystem = entityManager.System(); + return mindSystem.HasRole(mind); } } } diff --git a/Content.Server/PAI/PAISystem.cs b/Content.Server/PAI/PAISystem.cs index 016a569dd9..69496afe5d 100644 --- a/Content.Server/PAI/PAISystem.cs +++ b/Content.Server/PAI/PAISystem.cs @@ -32,7 +32,7 @@ private void OnExamined(EntityUid uid, PAIComponent component, ExaminedEvent arg { if (args.IsInDetailsRange) { - if (EntityManager.TryGetComponent(uid, out var mind) && mind.HasMind) + if (EntityManager.TryGetComponent(uid, out var mind) && mind.HasMind) { args.PushMarkup(Loc.GetString("pai-system-pai-installed")); } @@ -57,7 +57,7 @@ private void OnUseInHand(EntityUid uid, PAIComponent component, UseInHandEvent a args.Handled = true; // Check for pAI activation - if (EntityManager.TryGetComponent(uid, out var mind) && mind.HasMind) + if (EntityManager.TryGetComponent(uid, out var mind) && mind.HasMind) { _popupSystem.PopupEntity(Loc.GetString("pai-system-pai-installed"), uid, args.User, PopupType.Large); return; @@ -136,7 +136,7 @@ private void AddWipeVerb(EntityUid uid, PAIComponent pai, GetVerbsEvent(uid, out var mind) && mind.HasMind) + if (EntityManager.TryGetComponent(uid, out var mind) && mind.HasMind) { ActivationVerb verb = new(); verb.Text = Loc.GetString("pai-system-wipe-device-verb-text"); @@ -146,9 +146,9 @@ private void AddWipeVerb(EntityUid uid, PAIComponent pai, GetVerbsEvent(uid)) + if (EntityManager.HasComponent(uid)) { - EntityManager.RemoveComponent(uid); + EntityManager.RemoveComponent(uid); _popupSystem.PopupEntity(Loc.GetString("pai-system-wiped-device"), uid, args.User, PopupType.Large); PAITurningOff(uid); } diff --git a/Content.Server/PDA/PdaSystem.cs b/Content.Server/PDA/PdaSystem.cs index b76f20d501..eaf7b96ecc 100644 --- a/Content.Server/PDA/PdaSystem.cs +++ b/Content.Server/PDA/PdaSystem.cs @@ -4,6 +4,7 @@ using Content.Server.Instruments; using Content.Server.Light.EntitySystems; using Content.Server.Light.Events; +using Content.Server.Mind; using Content.Server.PDA.Ringer; using Content.Server.Station.Systems; using Content.Server.Store.Components; @@ -25,6 +26,7 @@ public sealed class PdaSystem : SharedPdaSystem [Dependency] private readonly StoreSystem _store = default!; [Dependency] private readonly UserInterfaceSystem _ui = default!; [Dependency] private readonly UnpoweredFlashlightSystem _unpoweredFlashlight = default!; + [Dependency] private readonly MindSystem _mindSystem = default!; public override void Initialize() { diff --git a/Content.Server/ParticleAccelerator/EntitySystems/ParticleAcceleratorSystem.ControlBox.cs b/Content.Server/ParticleAccelerator/EntitySystems/ParticleAcceleratorSystem.ControlBox.cs index 0af4bbe474..8d6ddac4a9 100644 --- a/Content.Server/ParticleAccelerator/EntitySystems/ParticleAcceleratorSystem.ControlBox.cs +++ b/Content.Server/ParticleAccelerator/EntitySystems/ParticleAcceleratorSystem.ControlBox.cs @@ -69,8 +69,8 @@ public void SwitchOn(EntityUid uid, IPlayerSession? user = null, ParticleAcceler if (comp.Enabled || !comp.CanBeEnabled) return; - if (HasComp(user?.AttachedEntity)) - _adminLogger.Add(LogType.Action, LogImpact.Low, $"{EntityManager.ToPrettyString((EntityUid) user!.AttachedEntity):player} has turned {EntityManager.ToPrettyString(uid)} on"); + if (user?.AttachedEntity is {} player) + _adminLogger.Add(LogType.Action, LogImpact.Low, $"{ToPrettyString(player):player} has turned {ToPrettyString(uid)} on"); comp.Enabled = true; UpdatePowerDraw(uid, comp); @@ -89,8 +89,8 @@ public void SwitchOff(EntityUid uid, IPlayerSession? user = null, ParticleAccele if (!comp.Enabled) return; - if (HasComp(user?.AttachedEntity)) - _adminLogger.Add(LogType.Action, LogImpact.Low, $"{EntityManager.ToPrettyString((EntityUid) user!.AttachedEntity):player} has turned {EntityManager.ToPrettyString(uid)} off"); + if (user?.AttachedEntity is {} player) + _adminLogger.Add(LogType.Action, LogImpact.Low, $"{ToPrettyString(player):player} has turned {ToPrettyString(uid)} off"); comp.Enabled = false; UpdatePowerDraw(uid, comp); @@ -146,7 +146,7 @@ public void SetStrength(EntityUid uid, ParticleAcceleratorPowerState strength, I if (strength == comp.SelectedStrength) return; - if (HasComp(user?.AttachedEntity)) + if (user?.AttachedEntity is {} player) { var impact = strength switch { @@ -158,7 +158,7 @@ or ParticleAcceleratorPowerState.Level3 or _ => LogImpact.Extreme, }; - _adminLogger.Add(LogType.Action, impact, $"{EntityManager.ToPrettyString(user!.AttachedEntity!.Value):player} has set the strength of {EntityManager.ToPrettyString(uid)} to {strength}"); + _adminLogger.Add(LogType.Action, impact, $"{ToPrettyString(player):player} has set the strength of {ToPrettyString(uid)} to {strength}"); } comp.SelectedStrength = strength; diff --git a/Content.Server/Players/PlayerData.cs b/Content.Server/Players/PlayerData.cs index f811dfee76..c8e368cfed 100644 --- a/Content.Server/Players/PlayerData.cs +++ b/Content.Server/Players/PlayerData.cs @@ -1,3 +1,4 @@ +using Content.Server.Mind; using Robust.Server.Player; using Robust.Shared.Network; @@ -37,9 +38,15 @@ public sealed class PlayerData public void WipeMind() { - Mind?.TransferTo(null); + var entityManager = IoCManager.Resolve(); + var mindSystem = entityManager.System(); + // This will ensure Mind == null - Mind?.ChangeOwningPlayer(null); + if (Mind == null) + return; + + mindSystem.TransferTo(Mind, null); + mindSystem.ChangeOwningPlayer(Mind, null); } /// diff --git a/Content.Server/Polymorph/Systems/PolymorphSystem.cs b/Content.Server/Polymorph/Systems/PolymorphSystem.cs index f0368aedce..7b7e2a0a8c 100644 --- a/Content.Server/Polymorph/Systems/PolymorphSystem.cs +++ b/Content.Server/Polymorph/Systems/PolymorphSystem.cs @@ -1,6 +1,7 @@ using Content.Server.Actions; using Content.Server.Humanoid; using Content.Server.Inventory; +using Content.Server.Mind; using Content.Server.Mind.Commands; using Content.Server.Mind.Components; using Content.Server.Nutrition; @@ -41,6 +42,7 @@ public sealed partial class PolymorphSystem : EntitySystem [Dependency] private readonly SharedHandsSystem _hands = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly TransformSystem _transform = default!; + [Dependency] private readonly MindSystem _mindSystem = default!; private ISawmill _sawmill = default!; @@ -230,8 +232,8 @@ private void OnBeforeFullySliced(EntityUid uid, PolymorphedEntityComponent comp, _humanoid.CloneAppearance(uid, child); } - if (TryComp(uid, out var mind) && mind.Mind != null) - mind.Mind.TransferTo(child); + if (_mindSystem.TryGetMind(uid, out var mind)) + _mindSystem.TransferTo(mind, child); //Ensures a map to banish the entity to EnsurePausesdMap(); @@ -304,10 +306,8 @@ public void Revert(EntityUid uid, PolymorphedEntityComponent? component = null) } } - if (TryComp(uid, out var mind) && mind.Mind != null) - { - mind.Mind.TransferTo(parent); - } + if (_mindSystem.TryGetMind(uid, out var mind)) + _mindSystem.TransferTo(mind, parent); // if an item polymorph was picked up, put it back down after reverting Transform(parent).AttachToGridOrMap(); diff --git a/Content.Server/Revenant/EntitySystems/EssenceSystem.cs b/Content.Server/Revenant/EntitySystems/EssenceSystem.cs index a466573344..5f95da95e8 100644 --- a/Content.Server/Revenant/EntitySystems/EssenceSystem.cs +++ b/Content.Server/Revenant/EntitySystems/EssenceSystem.cs @@ -67,7 +67,7 @@ private void UpdateEssenceAmount(EntityUid uid, EssenceComponent component) switch (mob.CurrentState) { case MobState.Alive: - if (TryComp(uid, out var mind) && mind.Mind != null) + if (TryComp(uid, out var mind) && mind.Mind != null) component.EssenceAmount = _random.NextFloat(75f, 100f); else component.EssenceAmount = _random.NextFloat(45f, 70f); diff --git a/Content.Server/Roles/AddRoleCommand.cs b/Content.Server/Roles/AddRoleCommand.cs index 2240d091da..b172873fdf 100644 --- a/Content.Server/Roles/AddRoleCommand.cs +++ b/Content.Server/Roles/AddRoleCommand.cs @@ -6,12 +6,15 @@ using Robust.Shared.Console; using Robust.Shared.Prototypes; using System.Linq; +using Content.Server.Mind; namespace Content.Server.Roles { [AdminCommand(AdminFlags.Admin)] public sealed class AddRoleCommand : IConsoleCommand { + [Dependency] private readonly EntityManager _entityManager = default!; + public string Command => "addrole"; public string Description => "Adds a role to a player's mind."; @@ -54,7 +57,8 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) } var role = new Job(mind, jobPrototype); - mind.AddRole(role); + var mindSystem = _entityManager.System(); + mindSystem.AddRole(mind, role); } } } diff --git a/Content.Server/Roles/Job.cs b/Content.Server/Roles/Job.cs index cd81dea484..c5c7403600 100644 --- a/Content.Server/Roles/Job.cs +++ b/Content.Server/Roles/Job.cs @@ -2,6 +2,7 @@ using Content.Server.Chat.Systems; using Content.Shared.Roles; using System.Globalization; +using Content.Server.Mind; namespace Content.Server.Roles { @@ -35,8 +36,11 @@ public Job(Mind.Mind mind, JobPrototype jobPrototype) : base(mind) public override void Greet() { base.Greet(); + + var entityManager = IoCManager.Resolve(); + var mindSystem = entityManager.System(); - if (Mind.TryGetSession(out var session)) + if (mindSystem.TryGetSession(Mind, out var session)) { var chatMgr = IoCManager.Resolve(); chatMgr.DispatchServerMessage(session, Loc.GetString("job-greet-introduce-job-name", diff --git a/Content.Server/Roles/RemoveRoleCommand.cs b/Content.Server/Roles/RemoveRoleCommand.cs index ae0a0f8f4a..00b6492404 100644 --- a/Content.Server/Roles/RemoveRoleCommand.cs +++ b/Content.Server/Roles/RemoveRoleCommand.cs @@ -1,4 +1,5 @@ using Content.Server.Administration; +using Content.Server.Mind; using Content.Server.Players; using Content.Shared.Administration; using Content.Shared.Roles; @@ -12,6 +13,7 @@ namespace Content.Server.Roles public sealed class RemoveRoleCommand : IConsoleCommand { [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly IEntityManager _entityManager = default!; public string Command => "rmrole"; @@ -43,7 +45,8 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) } var role = new Job(mind, _prototypeManager.Index(args[1])); - mind.RemoveRole(role); + var mindSystem = _entityManager.System(); + mindSystem.RemoveRole(mind, role); } } } diff --git a/Content.Server/Singularity/EntitySystems/EventHorizonSystem.cs b/Content.Server/Singularity/EntitySystems/EventHorizonSystem.cs index 28e77941dd..45854a88af 100644 --- a/Content.Server/Singularity/EntitySystems/EventHorizonSystem.cs +++ b/Content.Server/Singularity/EntitySystems/EventHorizonSystem.cs @@ -132,7 +132,7 @@ public void ConsumeEntity(EntityUid uid, EventHorizonComponent eventHorizon, ICo var eventHorizonOwner = eventHorizon.Owner; if (!EntityManager.IsQueuedForDeletion(uid) && // I saw it log twice a few times for some reason? - (HasComp(uid) || + (HasComp(uid) || _tagSystem.HasTag(uid, "HighRiskItem") || HasComp(uid))) _adminLogger.Add(LogType.EntityDelete, LogImpact.Extreme, $"{ToPrettyString(uid)} entered the event horizon of {ToPrettyString(eventHorizonOwner)} and was deleted"); diff --git a/Content.Server/StationEvents/Events/MassHallucinationsRule.cs b/Content.Server/StationEvents/Events/MassHallucinationsRule.cs index 1e561a3606..9e82571c99 100644 --- a/Content.Server/StationEvents/Events/MassHallucinationsRule.cs +++ b/Content.Server/StationEvents/Events/MassHallucinationsRule.cs @@ -13,7 +13,7 @@ public sealed class MassHallucinationsRule : StationEventSystem(); + var query = EntityQueryEnumerator(); while (query.MoveNext(out var ent, out _)) { if (!HasComp(ent)) diff --git a/Content.Server/Storage/EntitySystems/BluespaceLockerSystem.cs b/Content.Server/Storage/EntitySystems/BluespaceLockerSystem.cs index 5050b6dd01..6f57da1658 100644 --- a/Content.Server/Storage/EntitySystems/BluespaceLockerSystem.cs +++ b/Content.Server/Storage/EntitySystems/BluespaceLockerSystem.cs @@ -86,7 +86,7 @@ private void PreOpen(EntityUid uid, BluespaceLockerComponent component, ref Stor if (component.BehaviorProperties.TransportEntities || component.BehaviorProperties.TransportSentient) foreach (var entity in target.Value.storageComponent.Contents.ContainedEntities.ToArray()) { - if (EntityManager.HasComponent(entity)) + if (EntityManager.HasComponent(entity)) { if (!component.BehaviorProperties.TransportSentient) continue; @@ -297,7 +297,7 @@ private void PostClose(EntityUid uid, BluespaceLockerComponent component, bool d if (component.BehaviorProperties.TransportEntities || component.BehaviorProperties.TransportSentient) foreach (var entity in entityStorageComponent.Contents.ContainedEntities.ToArray()) { - if (EntityManager.HasComponent(entity)) + if (EntityManager.HasComponent(entity)) { if (!component.BehaviorProperties.TransportSentient) continue; diff --git a/Content.Server/Store/Conditions/BuyerAntagCondition.cs b/Content.Server/Store/Conditions/BuyerAntagCondition.cs index fcf02b73c0..6fb346d2c3 100644 --- a/Content.Server/Store/Conditions/BuyerAntagCondition.cs +++ b/Content.Server/Store/Conditions/BuyerAntagCondition.cs @@ -29,7 +29,7 @@ public override bool Condition(ListingConditionArgs args) { var ent = args.EntityManager; - if (!ent.TryGetComponent(args.Buyer, out var mind) || mind.Mind == null) + if (!ent.TryGetComponent(args.Buyer, out var mind) || mind.Mind == null) return true; if (Blacklist != null) diff --git a/Content.Server/Store/Conditions/BuyerJobCondition.cs b/Content.Server/Store/Conditions/BuyerJobCondition.cs index d867a65d33..b34b6a320b 100644 --- a/Content.Server/Store/Conditions/BuyerJobCondition.cs +++ b/Content.Server/Store/Conditions/BuyerJobCondition.cs @@ -28,7 +28,7 @@ public override bool Condition(ListingConditionArgs args) { var ent = args.EntityManager; - if (!ent.TryGetComponent(args.Buyer, out var mind) || mind.Mind == null) + if (!ent.TryGetComponent(args.Buyer, out var mind) || mind.Mind == null) return true; //this is for things like surplus crate if (Blacklist != null) diff --git a/Content.Server/Teleportation/PortalSystem.cs b/Content.Server/Teleportation/PortalSystem.cs index 1730a48ac0..dabcefa9b9 100644 --- a/Content.Server/Teleportation/PortalSystem.cs +++ b/Content.Server/Teleportation/PortalSystem.cs @@ -14,7 +14,7 @@ public sealed class PortalSystem : SharedPortalSystem protected override void LogTeleport(EntityUid portal, EntityUid subject, EntityCoordinates source, EntityCoordinates target) { - if (HasComp(subject)) + if (HasComp(subject)) _adminLogger.Add(LogType.Teleport, LogImpact.Low, $"{ToPrettyString(subject):player} teleported via {ToPrettyString(portal)} from {source} to {target}"); } } diff --git a/Content.Server/Worldgen/Systems/WorldControllerSystem.cs b/Content.Server/Worldgen/Systems/WorldControllerSystem.cs index 84c12cd858..e05c76e013 100644 --- a/Content.Server/Worldgen/Systems/WorldControllerSystem.cs +++ b/Content.Server/Worldgen/Systems/WorldControllerSystem.cs @@ -121,7 +121,7 @@ public override void Update(float frameTime) } } - var mindEnum = EntityQueryEnumerator(); + var mindEnum = EntityQueryEnumerator(); var ghostQuery = GetEntityQuery(); // Mindful entities get special privilege as they're always a player and we don't want the illusion being broken around them. @@ -275,4 +275,3 @@ private void StartupChunkEntity(EntityUid chunk, Vector2i coords, EntityUid map, [ByRefEvent] [PublicAPI] public readonly record struct WorldChunkUnloadedEvent(EntityUid Chunk, Vector2i Coords); - diff --git a/Content.Server/Zombies/ZombifyOnDeathSystem.cs b/Content.Server/Zombies/ZombifyOnDeathSystem.cs index 9c1fb81e99..a846164025 100644 --- a/Content.Server/Zombies/ZombifyOnDeathSystem.cs +++ b/Content.Server/Zombies/ZombifyOnDeathSystem.cs @@ -21,6 +21,7 @@ using Content.Shared.Damage; using Content.Shared.Hands.Components; using Content.Shared.Hands.EntitySystems; +using Content.Server.Mind; using Content.Shared.Humanoid; using Content.Shared.Mobs; using Content.Shared.Mobs.Components; @@ -59,6 +60,7 @@ public sealed class ZombifyOnDeathSystem : EntitySystem [Dependency] private readonly IPrototypeManager _proto = default!; [Dependency] private readonly MobStateSystem _mobState = default!; [Dependency] private readonly MobThresholdSystem _mobThreshold = default!; + [Dependency] private readonly MindSystem _mindSystem = default!; [Dependency] private readonly SharedAudioSystem _audioSystem = default!; public override void Initialize() @@ -205,11 +207,12 @@ public void ZombifyEntity(EntityUid target, MobStateComponent? mobState = null) _identity.QueueIdentityUpdate(target); //He's gotta have a mind - var mindcomp = EnsureComp(target); - if (mindcomp.Mind != null && mindcomp.Mind.TryGetSession(out var session)) + var mindComp = EnsureComp(target); + if (_mindSystem.TryGetMind(target, out var mind, mindComp) && _mindSystem.TryGetSession(mind, out var session)) { //Zombie role for player manifest - mindcomp.Mind.AddRole(new ZombieRole(mindcomp.Mind, _proto.Index(zombiecomp.ZombieRoleId))); + _mindSystem.AddRole(mind, new ZombieRole(mind, _proto.Index(zombiecomp.ZombieRoleId))); + //Greeting message for new bebe zombers _chatMan.DispatchServerMessage(session, Loc.GetString("zombie-infection-greeting")); @@ -217,7 +220,7 @@ public void ZombifyEntity(EntityUid target, MobStateComponent? mobState = null) _audioSystem.PlayGlobal(zombiecomp.GreetSoundNotification, session); } - if (!HasComp(target) && !mindcomp.HasMind) //this specific component gives build test trouble so pop off, ig + if (!HasComp(target) && !mindComp.HasMind) //this specific component gives build test trouble so pop off, ig { //yet more hardcoding. Visit zombie.ftl for more information. var ghostRole = EnsureComp(target); diff --git a/Resources/Locale/en-US/mind/components/mind-component.ftl b/Resources/Locale/en-US/mind/components/mind-component.ftl index 0711958b70..7374dcd163 100644 --- a/Resources/Locale/en-US/mind/components/mind-component.ftl +++ b/Resources/Locale/en-US/mind/components/mind-component.ftl @@ -1,13 +1,10 @@ -# MindComponent localization +# MindContainerComponent localization comp-mind-ghosting-prevented = You are not able to ghost right now. ## Messages displayed when a body is examined and in a certain state + comp-mind-examined-catatonic = { CAPITALIZE(SUBJECT($ent)) } { CONJUGATE-BE($ent) } totally catatonic. The stresses of life in deep-space must have been too much for { OBJECT($ent) }. Any recovery is unlikely. comp-mind-examined-dead = { CAPITALIZE(POSS-ADJ($ent)) } soul has departed. comp-mind-examined-ssd = { CAPITALIZE(SUBJECT($ent)) } { CONJUGATE-HAVE($ent) } a blank, absent-minded stare and appears completely unresponsive to anything. { CAPITALIZE(SUBJECT($ent)) } may snap out of it soon. - - -mind-component-no-mind-and-alive-text = { CAPITALIZE(POSS-ADJ($ent)) } is totally catatonic. The stresses of life in deep-space must have been too much for them. Any recovery is unlikely. -mind-component-no-mind-and-dead-text = { CAPITALIZE(POSS-ADJ($ent)) } soul has departed and moved on. Any recovery is unlikely. -mind-component-mind-and-no-session-text = { CAPITALIZE(POSS-ADJ($ent)) } { CONJUGATE-HAVE($ent) } a blank, absent-minded stare and appears completely unresponsive to anything. { CAPITALIZE(POSS-ADJ($ent)) } may snap out of it soon. +comp-mind-examined-dead-and-ssd = { CAPITALIZE(POSS-ADJ($ent)) } soul has departed and moved on. Any recovery is unlikely. diff --git a/Resources/Maps/barratry.yml b/Resources/Maps/barratry.yml index f98af4777a..02c254a84a 100644 --- a/Resources/Maps/barratry.yml +++ b/Resources/Maps/barratry.yml @@ -86536,7 +86536,7 @@ entities: - baseSprintSpeed: 2.5 type: MovementSpeedModifier - type: GhostTakeoverAvailable - - type: Mind + - type: MindContainer - lerpTarget: 0 type: InputMover - type: MobMover diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml b/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml index ead6519761..19cdba22f4 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml @@ -3,7 +3,7 @@ name: revenant description: A spooky ghostie. components: - - type: Mind + - type: MindContainer - type: InputMover - type: MobMover - type: Input diff --git a/Resources/Prototypes/Entities/Mobs/Player/arachnid.yml b/Resources/Prototypes/Entities/Mobs/Player/arachnid.yml index 65ab527d73..8d9906b72d 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/arachnid.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/arachnid.yml @@ -11,7 +11,7 @@ interactSuccessString: hugging-success-generic interactSuccessSound: /Audio/Effects/thudswoosh.ogg messagePerceivedByOthers: hugging-success-generic-others - - type: Mind + - type: MindContainer showExamineInfo: true - type: Input context: "human" diff --git a/Resources/Prototypes/Entities/Mobs/Player/diona.yml b/Resources/Prototypes/Entities/Mobs/Player/diona.yml index 79dfcdcf4b..97c97d0214 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/diona.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/diona.yml @@ -11,7 +11,7 @@ interactSuccessString: hugging-success-generic interactSuccessSound: /Audio/Effects/thudswoosh.ogg messagePerceivedByOthers: hugging-success-generic-others - - type: Mind + - type: MindContainer showExamineInfo: true - type: Input context: "human" diff --git a/Resources/Prototypes/Entities/Mobs/Player/dwarf.yml b/Resources/Prototypes/Entities/Mobs/Player/dwarf.yml index 0f9b19ce85..3367fab0e9 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/dwarf.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/dwarf.yml @@ -10,7 +10,7 @@ interactSuccessString: hugging-success-generic interactSuccessSound: /Audio/Effects/thudswoosh.ogg messagePerceivedByOthers: hugging-success-generic-others - - type: Mind + - type: MindContainer showExamineInfo: true - type: Input context: "human" diff --git a/Resources/Prototypes/Entities/Mobs/Player/familiars.yml b/Resources/Prototypes/Entities/Mobs/Player/familiars.yml index 219b274a5e..c41a3349a9 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/familiars.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/familiars.yml @@ -22,7 +22,7 @@ - type: Access tags: - Chapel - - type: Mind + - type: MindContainer showExamineInfo: true - type: Faction factions: @@ -77,7 +77,7 @@ - type: Access tags: - Chapel - - type: Mind + - type: MindContainer showExamineInfo: true - type: Familiar - type: Vocal diff --git a/Resources/Prototypes/Entities/Mobs/Player/human.yml b/Resources/Prototypes/Entities/Mobs/Player/human.yml index c373aee051..9b87414993 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/human.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/human.yml @@ -10,7 +10,7 @@ interactSuccessString: hugging-success-generic interactSuccessSound: /Audio/Effects/thudswoosh.ogg messagePerceivedByOthers: hugging-success-generic-others - - type: Mind + - type: MindContainer showExamineInfo: true - type: Input context: "human" diff --git a/Resources/Prototypes/Entities/Mobs/Player/observer.yml b/Resources/Prototypes/Entities/Mobs/Player/observer.yml index c973535f4a..7dc497f5ab 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/observer.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/observer.yml @@ -7,7 +7,7 @@ components: - type: ContentEye maxZoom: 1.44,1.44 - - type: Mind + - type: MindContainer - type: Clickable - type: InteractionOutline - type: Physics diff --git a/Resources/Prototypes/Entities/Mobs/Player/reptilian.yml b/Resources/Prototypes/Entities/Mobs/Player/reptilian.yml index 254bd0ff09..c33e09ca44 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/reptilian.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/reptilian.yml @@ -10,7 +10,7 @@ interactSuccessString: hugging-success-generic interactSuccessSound: /Audio/Effects/thudswoosh.ogg messagePerceivedByOthers: hugging-success-generic-others - - type: Mind + - type: MindContainer showExamineInfo: true - type: Input context: "human" diff --git a/Resources/Prototypes/Entities/Mobs/Player/skeleton.yml b/Resources/Prototypes/Entities/Mobs/Player/skeleton.yml index 1ed3442530..48b81bd02e 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/skeleton.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/skeleton.yml @@ -8,7 +8,7 @@ interactSuccessString: hugging-success-generic interactSuccessSound: /Audio/Effects/thudswoosh.ogg messagePerceivedByOthers: hugging-success-generic-others - - type: Mind + - type: MindContainer showExamineInfo: true - type: Input context: "human" diff --git a/Resources/Prototypes/Entities/Mobs/Player/slime.yml b/Resources/Prototypes/Entities/Mobs/Player/slime.yml index d1fa5a268f..03cda8bca8 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/slime.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/slime.yml @@ -9,7 +9,7 @@ interactSuccessString: hugging-success-generic interactSuccessSound: /Audio/Effects/thudswoosh.ogg messagePerceivedByOthers: hugging-success-generic-others - - type: Mind + - type: MindContainer showExamineInfo: true - type: Input context: "human" diff --git a/Resources/Prototypes/Entities/Mobs/Player/vox.yml b/Resources/Prototypes/Entities/Mobs/Player/vox.yml index 6862c3d92e..7764c8302e 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/vox.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/vox.yml @@ -10,7 +10,7 @@ interactSuccessString: hugging-success-generic interactSuccessSound: /Audio/Effects/thudswoosh.ogg messagePerceivedByOthers: hugging-success-generic-others - - type: Mind + - type: MindContainer showExamineInfo: true - type: Input context: "human" @@ -31,4 +31,3 @@ damageRecovery: types: Asphyxiation: -1.0 - From 422a84e029de9275878463508b9b8dfef14d5dd4 Mon Sep 17 00:00:00 2001 From: FacePluslll <34409891+FacePluslll@users.noreply.github.com> Date: Sun, 18 Jun 2023 14:35:23 -0500 Subject: [PATCH 323/474] Adds Double bladed Esword (#17227) * Changed Energy Sword system to allow Wieldable eswords Needed to add conditions to allow the wielding system to handle the esword if the component existed in the entity. The normal eswords work just fine still. * Adds sprites for double bladed esword * added double bladed esword to yml * Add double bladed esword to uplink catalog * fixed sprites on right handed wielding * decresed speed a little and added a wielding time * Reduced damage * Damage change * Balence change * edited attack speed and heavy windup * fixed readability issue and removed unwanted brackets * reflectProp to .75 Co-authored-by: keronshb <54602815+keronshb@users.noreply.github.com> * wieldTime to 0 Co-authored-by: keronshb <54602815+keronshb@users.noreply.github.com> * litDisarmMalus to .7 Co-authored-by: keronshb <54602815+keronshb@users.noreply.github.com> * changed heat and slash damage to 9 and structural damage to 20 * changed uplink desc --------- Co-authored-by: keronshb <54602815+keronshb@users.noreply.github.com> --- .../Melee/EnergySword/EnergySwordSystem.cs | 22 +++++ .../Locale/en-US/store/uplink-catalog.ftl | 3 + .../Prototypes/Catalog/uplink_catalog.yml | 11 +++ .../Objects/Weapons/Melee/e_sword.yml | 43 +++++++++ .../e_sword_double.rsi/e_sword_double.png | Bin 0 -> 149 bytes .../e_sword_double_blade.png | Bin 0 -> 813 bytes .../Weapons/Melee/e_sword_double.rsi/icon.png | Bin 0 -> 345 bytes .../e_sword_double.rsi/inhand-left-blade.png | Bin 0 -> 694 bytes .../Melee/e_sword_double.rsi/inhand-left.png | Bin 0 -> 313 bytes .../e_sword_double.rsi/inhand-right-blade.png | Bin 0 -> 722 bytes .../Melee/e_sword_double.rsi/inhand-right.png | Bin 0 -> 330 bytes .../Melee/e_sword_double.rsi/meta.json | 86 ++++++++++++++++++ .../wielded-inhand-left.png | Bin 0 -> 330 bytes .../wielded-inhand-right.png | Bin 0 -> 318 bytes 14 files changed, 165 insertions(+) create mode 100644 Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/e_sword_double.png create mode 100644 Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/e_sword_double_blade.png create mode 100644 Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/icon.png create mode 100644 Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/inhand-left-blade.png create mode 100644 Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/inhand-left.png create mode 100644 Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/inhand-right-blade.png create mode 100644 Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/inhand-right.png create mode 100644 Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/meta.json create mode 100644 Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/wielded-inhand-left.png create mode 100644 Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/wielded-inhand-right.png diff --git a/Content.Server/Weapons/Melee/EnergySword/EnergySwordSystem.cs b/Content.Server/Weapons/Melee/EnergySword/EnergySwordSystem.cs index 5251befeb4..b24c42b137 100644 --- a/Content.Server/Weapons/Melee/EnergySword/EnergySwordSystem.cs +++ b/Content.Server/Weapons/Melee/EnergySword/EnergySwordSystem.cs @@ -10,6 +10,8 @@ using Content.Shared.Tools.Components; using Content.Shared.Weapons.Melee; using Content.Shared.Weapons.Melee.Events; +using Content.Shared.Wieldable; +using Content.Shared.Wieldable.Components; using Robust.Shared.Player; using Robust.Shared.Random; @@ -34,6 +36,9 @@ public override void Initialize() SubscribeLocalEvent(OnIsHotEvent); SubscribeLocalEvent(TurnOff); SubscribeLocalEvent(TurnOn); + + SubscribeLocalEvent(TurnOffonUnwielded); + SubscribeLocalEvent(TurnOnonWielded); } private void OnMapInit(EntityUid uid, EnergySwordComponent comp, MapInitEvent args) @@ -58,6 +63,9 @@ private void OnUseInHand(EntityUid uid, EnergySwordComponent comp, UseInHandEven args.Handled = true; + if (TryComp(uid, out var wieldableComp)) + return; + if (comp.Activated) { var ev = new EnergySwordDeactivatedEvent(); @@ -72,6 +80,20 @@ private void OnUseInHand(EntityUid uid, EnergySwordComponent comp, UseInHandEven UpdateAppearance(uid, comp); } + private void TurnOffonUnwielded(EntityUid uid, EnergySwordComponent comp, ItemUnwieldedEvent args) + { + var ev = new EnergySwordDeactivatedEvent(); + RaiseLocalEvent(uid, ref ev); + UpdateAppearance(uid, comp); + } + + private void TurnOnonWielded(EntityUid uid, EnergySwordComponent comp, ref ItemWieldedEvent args) + { + var ev = new EnergySwordActivatedEvent(); + RaiseLocalEvent(uid, ref ev); + UpdateAppearance(uid, comp); + } + private void TurnOff(EntityUid uid, EnergySwordComponent comp, ref EnergySwordDeactivatedEvent args) { if (TryComp(uid, out ItemComponent? item)) diff --git a/Resources/Locale/en-US/store/uplink-catalog.ftl b/Resources/Locale/en-US/store/uplink-catalog.ftl index 914e23187f..89b001afd2 100644 --- a/Resources/Locale/en-US/store/uplink-catalog.ftl +++ b/Resources/Locale/en-US/store/uplink-catalog.ftl @@ -14,6 +14,9 @@ uplink-rifle-mosin-desc = A bolt action service rifle that has seen many wars. N uplink-esword-name = Energy Sword uplink-esword-desc = A very dangerous energy sword that can reflect shots. Can be stored in pockets when turned off. Makes a lot of noise when used or turned on. +uplink-esword-double-name = Double Bladed Energy Sword +uplink-esword-double-desc = A much more expensive counter part to the normal energy sword: with a much higher reflection chance, larger attack angle, higher structural damage, and faster swing, all at the cost of lower heat and slash damage. Makes a lot of noise when used or turned on. + uplink-edagger-name = Energy Dagger uplink-edagger-desc = A small energy blade conveniently disguised in the form of a pen. diff --git a/Resources/Prototypes/Catalog/uplink_catalog.yml b/Resources/Prototypes/Catalog/uplink_catalog.yml index 54b55fdd16..1a2841e41f 100644 --- a/Resources/Prototypes/Catalog/uplink_catalog.yml +++ b/Resources/Prototypes/Catalog/uplink_catalog.yml @@ -85,6 +85,17 @@ categories: - UplinkWeapons +- type: listing + id: UplinkEswordDouble + name: uplink-esword-double-name + description: uplink-esword-double-desc + icon: { sprite: /Textures/Objects/Weapons/Melee/e_sword_double.rsi, state: icon } + productEntity: EnergySwordDouble + cost: + Telecrystal: 16 + categories: + - UplinkWeapons + # Explosives - type: listing diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml index b1d0566978..a2fefa39fd 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml @@ -161,3 +161,46 @@ - type: Item size: 5 sprite: Objects/Weapons/Melee/e_cutlass.rsi + +- type: entity + name: Double Bladed Energy Sword + parent: EnergySword + id: EnergySwordDouble + description: Syndicate Command Interns thought that having one blade on the energy sword was not enough. This can be stored in pockets. + components: + - type: Wieldable + wieldTime: 0 + - type: EnergySword + litDamageBonus: + types: + Slash: 9 + Heat: 9 + Structural: 20 + Blunt: -4.5 + litDisarmMalus: 0.7 + - type: MeleeWeapon + attackRate: 1.6 + angle: 100 + heavyWindupModifier: .9 + heavyDamageModifier: 1.5 + soundHit: + path: /Audio/Weapons/eblade1.ogg + damage: + types: + Blunt: 4.5 + - type: Sprite + sprite: Objects/Weapons/Melee/e_sword_double.rsi + layers: + - state: e_sword_double + - state: e_sword_double_blade + color: "#FFFFFF" + visible: false + shader: unshaded + map: [ "blade" ] + - type: Item + size: 10 + sprite: Objects/Weapons/Melee/e_sword_double.rsi + - type: Reflect + enabled: true + reflectProb: .75 + spread: 75 diff --git a/Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/e_sword_double.png b/Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/e_sword_double.png new file mode 100644 index 0000000000000000000000000000000000000000..dfd3bb9ace240d3fec0f3f1c84f93381e6e63098 GIT binary patch literal 149 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfvp#Yx{*8>L*$jHdJxw)B`m`F=Y zCnO{sw`2$g$}*M&`2{mLJiCzwmm;Z28|A;$MTNR$AFp{JYD@<);T3K0RTG0C&vH) literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/e_sword_double_blade.png b/Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/e_sword_double_blade.png new file mode 100644 index 0000000000000000000000000000000000000000..9c19655cd432ab094929111268992fd01ef3bf77 GIT binary patch literal 813 zcmV+|1JeA7P)-`gByp z-2czh)@G)??x6(G{pz}(<3Mm9s8wC}_tbT3XF%WuxHg;q63uDuoAhc^iyQ;t9pLh& zsVN7*)h;mnY{^`%O95JbO#?nIfc_jXa1ZpZd$Vfnw5|Ix8={n09z;l7)%>e!#F93k5Kn=ca+tY8<9zhGf?>hiI02}}g z6@gK>ioguqd%sp-77i?21Fyh=g}WgB=@cAL*aadIM&T*~Nn!*JC>=!Jdp81CuedPp z`Uj=?EW5iPop2)ZNf#)O*SNnq0^21^g7S zf&+lFgadzz&op;8fF~_@UDtG7N87dr z;1sxbv4HP<3XiEpN8mdjh9L38cJav;>SmG<+^tQmQHm_X5S> r*8&fRPX&s=;rAnyQgDE(Bpl!e1&0s?{ZN&700000NkvXXu0mjfU=WAa literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/inhand-left-blade.png b/Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/inhand-left-blade.png new file mode 100644 index 0000000000000000000000000000000000000000..96d2136fcee81af9b021fb3144b10847b3de644a GIT binary patch literal 694 zcmV;n0!jUeP)Px%a7jc#RCt{2-NBB6Fc5&@lK3immWxlrm?zC=p+bP2TB^(wt zQ`^$1ad4dj0000000000N7uD(z#h!=?B(Bm-<$QzDF$F1N3We9hM}A1+28N?m-EZA zIOl8z!ejvA85UU0v~^w8_|r5!2SJ_>1JZTfF$TbUuXez)EUxeSPMe{_FcfQBD*m=@ z?smKVh!Y0HVuD;`K&fQ#a7k-1#&PtI$D>pz)wXTw`DvQe^QJjKTLYc5x%`~_ULLO3 zYt{I<98fAoik#fqz;^MIa!;-ybp>ck!zYrIDgT9T7n+ie}`GE)HrHIOSa>Sxs?~m@Hka)hB9gW(aIO5OJBL ztR$;F7@;3znWU^K4VBcT<91qYW(eG(JTO&BW>KpePe$1WxV?L~Be*sbn5*i>eVb$R+b_+g{$c=@p>uwk+~Yi{(fzz42!YIq5F7 z8)m4|wa5XolXH2{{FA2q`zUw800000000000001>ImMUat*Y~W!~Dm)_g0s4 zSo1vla7Y#v&*M1ybzPr_w63eSu7J)teQjoI)hgp!bh;FGda$R?cW&oN*rGnawQR%o zlsu1mv&fGnDEDjMwdKmXPeI$Ugrj!suycubEaBMG&ZVT}|4(u59QWzAw!1g=DajK6 c008)4U+Y5bGX#XK`Tzg`07*qoM6N<$f>`}Y*Z=?k literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/inhand-left.png b/Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..2f06869cd1aae35826369f58f0b6a0406f2455f0 GIT binary patch literal 313 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D$|K6|=2hE&XX zd+Q)?vjIPx%j7da6RCt{2+d*=|AQZ;&$Bb9ewQM|1j>l=T!F6&Nx^QS;@uk)=K%)QOjGNjT z0=z)S4-o(W00000008jrT<->aiWp-mf9Ab+n;3u)!d>G;M22D5MEhQmJN|q=-@SLe zUT+m(jgH7|gsQeqZk>O*T+H`Qr_=5SAf=Q~5`QW{GOBJwoBTC+TH;!Y?ON)reQiX*OQtd%_^b|S#=a*i!RADj3!T%s2&owG^+qBpSk4|Ft04g&-|_V=9;^K{8=qK zyXRsq@-yi~9xvujupM`roCX|l_iL_nJt?NHp%n#NXt!EE3Y>n=8y_n|%AvLcZ zLP)yP%f2j6}Et1b6gfval_e-0mDfLJ~TdK~2 zJ!Ld|sd_%3N2hCLr)OK~e32b2!mV=py*zBxmKM*w2Zb%>BWUTYRttZf)%pn5jwQcp zUpwzy${kC7ZDr@OCbOhJ@w{#?o4lbtES>-W0KkrY0Z?Y#ECd+mKL7v#07*qoM6N<$ Ef~NCO2mk;8 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..ebaeb95b413585f29f10de4f483bedba356a9736 GIT binary patch literal 330 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D%zSv*}FLn`LH zy>&46h=M@t!e)yKKLx9`3%=9L@9pW>FxAZzwMRn=Q`w_dQ{IENQ(Is-%8WBc;B z`)T6a)8!NE)6T2;23P-?DY4jN`Ls&Sr`M|0YW_TZHf564bC)IOc|P1*z3SAq+{fFV zpI;IBe($q6$7>kVKi-S~&B~*=G$l{VOny?AVOO!=wA7cj%M2rJ)vh18w6OEAo}?5* afndB`UeXuyX09C|i#=WaT-G@yGywpTL5v>& literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/meta.json b/Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/meta.json new file mode 100644 index 0000000000..d7ae4a0ad3 --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/meta.json @@ -0,0 +1,86 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "e_sword_double" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "wielded-inhand-left", + "directions": 4 + }, + { + "name": "wielded-inhand-right", + "directions": 4 + }, + { + "name": "e_sword_double_blade", + "delays": [ + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "inhand-left-blade", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "inhand-right-blade", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ] + ] + } + ] +} diff --git a/Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/wielded-inhand-left.png b/Resources/Textures/Objects/Weapons/Melee/e_sword_double.rsi/wielded-inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..0160cafd5d512663c027b8047be3827af6020248 GIT binary patch literal 330 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D%zSv*}FLn`LH zy>+&?*+8J};Y~fAY^?`xq?Ykbca!Z9vIu6}bm!=slY%EFi3XMl2i$Xi)FAlS(0=)O zC7?+_aKQa%)i#H7H@!85lBWc9@f72h4eG1C6R`E!q)`Be1aX>DV<`-AA>>Ed6vZPi))anhrG zMwj%G^UqdayX>dcGU4>mPUZRcBvUt^vwZpcpLV@7(2AI&ys>2!wqJv-FM_P~boFyt I=akR{0QaAXmjD0& literal 0 HcmV?d00001 From 6c76dc768845165438ec6a4c6e79406672a91832 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 18 Jun 2023 15:36:28 -0400 Subject: [PATCH 324/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index f4ea848d9a..ce0e2bf56d 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: OctoRocket - changes: - - {message: Healing items like bruise packs will now repeatedly heal until the patient - can't be healed of that type any more!, type: Add} - - {message: Added a popup when bleeding stops because of a healing item, type: Add} - id: 3532 - time: '2023-04-24T04:34:18.0000000+00:00' - author: ElectroJr changes: - {message: 'Fix some equipment actions (toggle light, magboots, etc) not showing @@ -2921,3 +2914,10 @@ Entries: type: Fix} id: 4031 time: '2023-06-18T17:23:04.0000000+00:00' +- author: FacePlus + changes: + - {message: Interns at Syndicate Command found a lost crate of Double Bladed Energy + Swords in the back. They will be giving them to agents at the cost of 16tc each + in their uplinks., type: Add} + id: 4032 + time: '2023-06-18T19:35:23.0000000+00:00' From 78e2f920ff6a73e9e59d06f843e570deefe66f96 Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Mon, 19 Jun 2023 07:41:56 +1200 Subject: [PATCH 325/474] Update engine (#17437) --- RobustToolbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RobustToolbox b/RobustToolbox index 33702b10f3..530321bcb6 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit 33702b10f35e6b4002b60b9fbfbf7a7197c3a176 +Subproject commit 530321bcb66d9614a88cc7bba9b74d66e027687a From b1b6a6333f5bba701c20bc50f4d6887e34054293 Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Mon, 19 Jun 2023 09:24:49 +1200 Subject: [PATCH 326/474] Update engine again (#17442) --- RobustToolbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RobustToolbox b/RobustToolbox index 530321bcb6..4c994eb599 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit 530321bcb66d9614a88cc7bba9b74d66e027687a +Subproject commit 4c994eb5995c3c5966e8c1c82ffb9c4fba0b55e5 From 714d84c462e280db54439f0021d1ab47598b1f64 Mon Sep 17 00:00:00 2001 From: brainfood1183 <113240905+brainfood1183@users.noreply.github.com> Date: Sun, 18 Jun 2023 22:51:49 +0100 Subject: [PATCH 327/474] Origin Update 18.06.2023 (fix atmos) (#17441) --- Resources/Maps/origin.yml | 74556 +++++++++++++++--------------------- 1 file changed, 29842 insertions(+), 44714 deletions(-) diff --git a/Resources/Maps/origin.yml b/Resources/Maps/origin.yml index e993b2e29c..e86748633c 100644 --- a/Resources/Maps/origin.yml +++ b/Resources/Maps/origin.yml @@ -70,6 +70,8 @@ entities: - type: Broadphase - type: OccluderTree - type: LoadedMap + - type: GridTree + - type: MovedGrids - uid: 2 components: - type: MetaData @@ -79,301 +81,301 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: SAAAAF8AAABIAAAAXwAAAF8AAABfAAAASAAAAEgAAABIAAAAXwAAAE4AAAJOAAACTgAAAV8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAAAXAAADXwAAAFAAAABQAAAASAAAAF8AAABOAAACTgAAAk4AAAFfAAAASAAAAEgAAABfAAAAXwAAAE8AAABfAAAAFwAAA18AAABfAAAAXwAAAF8AAABIAAAATgAAAU4AAAJOAAADXwAAAF8AAABIAAAATwAAAF8AAABPAAAASAAAAFEAAAFIAAAATwAAAE8AAABPAAAAFwAAA04AAANOAAABTgAAAk8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABRAAABXwAAAF8AAABfAAAATwAAAF8AAABOAAABTgAAAE4AAAFPAAAAXwAAAF8AAABPAAAAUQAAAVEAAAJRAAADUQAAAV8AAABIAAAASAAAAE8AAABfAAAATgAAAU4AAANOAAABXwAAAF8AAABIAAAAXwAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE4AAAFOAAADTgAAAhcAAAFfAAAASAAAAE8AAABPAAAAXwAAAFAAAABQAAAASAAAAFAAAABPAAAATwAAAF8AAABOAAAATgAAA04AAAFfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAJfAAAATgAAAE4AAABOAAADXwAAABYAAAAWAAAARQAAAkgAAABFAAADCwAAAF8AAAAjAAAAIwAAACMAAAAjAAAAXwAAAE4AAANOAAADTgAAAl8AAAAWAAAAFgAAADoAAABFAAADRQAAAAsAAABfAAAAIwAAACMAAAAjAAAAIwAAAF8AAABOAAABTgAAAU4AAANfAAAAFgAAABYAAABFAAAARQAAA0UAAAMLAAAAXwAAACMAAAAjAAAAIwAAACMAAABfAAAATgAAA04AAANOAAACXwAAABYAAAAWAAAAXwAAAEUAAABFAAADRQAAA18AAAAjAAAAIwAAAF8AAABfAAAAXwAAAE4AAAFOAAABTgAAAl8AAAAWAAAAFgAAAF8AAABFAAAARQAAA0UAAANfAAAAXwAAABcAAABfAAAAUQAAAV8AAAAXAAAAFwAAARcAAAFfAAAAXwAAAF8AAABfAAAARQAAAzoAAABFAAACRQAAA0UAAABFAAABRQAAAEUAAAJFAAAARQAAA0UAAABIAAAARQAAA0UAAAJFAAACXwAAAEUAAAJFAAABRQAAA0UAAAFFAAAARQAAAkUAAABFAAAARQAAAkUAAANFAAADRQAAAkUAAAJFAAADRQAAAw== + tiles: SAAAAF8AAABIAAAAXwAAAF8AAABfAAAASAAAAEgAAABIAAAAXwAAAE4AAAFOAAABTgAAAl8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAAAXAAABXwAAAFAAAABQAAAASAAAAF8AAABOAAACTgAAAU4AAAFfAAAASAAAAEgAAABfAAAAXwAAAE8AAABfAAAAFwAAAl8AAABfAAAAXwAAAF8AAABIAAAATgAAAk4AAABOAAABXwAAAF8AAABIAAAATwAAAF8AAABPAAAASAAAAFEAAAJIAAAATwAAAE8AAABPAAAAFwAAAU4AAAJOAAABTgAAAU8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABRAAACXwAAAF8AAABfAAAATwAAAF8AAABOAAACTgAAAU4AAAJPAAAAXwAAAF8AAABPAAAAUQAAA1EAAAFRAAAAUQAAA18AAABIAAAASAAAAE8AAABfAAAATgAAAE4AAAJOAAADXwAAAF8AAABIAAAAXwAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE4AAABOAAAATgAAAhcAAAFfAAAASAAAAE8AAABPAAAAXwAAAFAAAABQAAAASAAAAFAAAABPAAAATwAAAF8AAABOAAABTgAAAk4AAAJfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAFfAAAATgAAA04AAAJOAAABXwAAABYAAAAWAAAARQAAA0gAAABFAAABCwAAAF8AAAAjAAAAIwAAACMAAAAjAAAAXwAAAE4AAAFOAAACTgAAAF8AAAAWAAAAFgAAADoAAABFAAABRQAAAAsAAABfAAAAIwAAACMAAAAjAAAAIwAAAF8AAABOAAADTgAAAE4AAAFfAAAAFgAAABYAAABFAAABRQAAA0UAAAMLAAAAXwAAACMAAAAjAAAAIwAAACMAAABfAAAATgAAAU4AAAJOAAADXwAAABYAAAAWAAAAXwAAAEUAAAFFAAAARQAAA18AAAAjAAAAIwAAAF8AAABfAAAAXwAAAE4AAANOAAADTgAAAF8AAAAWAAAAFgAAAF8AAABFAAABRQAAAEUAAAJfAAAAXwAAABcAAANfAAAAUQAAAF8AAAAXAAADFwAAABcAAAJfAAAAXwAAAF8AAABfAAAARQAAADoAAABFAAADRQAAAEUAAAFFAAACRQAAAEUAAAFFAAACRQAAA0UAAAFIAAAARQAAAkUAAAFFAAABXwAAAEUAAANFAAAARQAAAkUAAAFFAAADRQAAAkUAAAFFAAABRQAAAEUAAABFAAACRQAAAkUAAABFAAAARQAAAg== 0,-1: ind: 0,-1 - tiles: XwAAAF8AAABfAAAAXwAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABIAAAASAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABIAAAASAAAAEgAAABIAAABfAAAAUQAAAV8AAABcAAACXAAAAlwAAABcAAADXAAAAFwAAANfAAAAUQAAA18AAAASAAAAEgAAABIAAAASAAAAXwAAAE8AAAAXAAADXAAAAlwAAAJcAAABXAAAA1wAAABcAAADNgAAAF8AAABfAAAAEgAAABIAAAASAAAAEgAAAF8AAABPAAAAXwAAAFwAAAFcAAAAXAAAAlwAAAFcAAABXAAAAV8AAABfAAAAXwAAABIAAAASAAAAEgAAABIAAABfAAAATwAAAF8AAABcAAABXAAAAVwAAAJcAAABXAAAA18AAABfAAAATwAAAF8AAABfAAAAXwAAABcAAAJfAAAAXwAAAF8AAABfAAAAXAAAAFwAAAJcAAACXAAAAFwAAAFfAAAATwAAAE8AAAAWAAAAFgAAABYAAAAWAAAAFgAAAF8AAABcAAAAXAAAAVwAAAJcAAABXAAAA1wAAAFcAAABXwAAAF8AAABfAAAAFgAAABYAAAAWAAAAFgAAABYAAABfAAAAXAAAA1wAAAFcAAACXAAAAlwAAAJcAAADXAAAA18AAABfAAAAXwAAABYAAAAWAAAAFgAAABYAAAAWAAAAXwAAAFwAAAFcAAACXAAAAlwAAANcAAADXAAAAlwAAAFfAAAAXwAAAF8AAAAWAAAAFgAAABYAAAAWAAAAFgAAAF8AAABcAAABXAAAAFwAAABcAAAAXAAAAFwAAAJcAAACXwAAAF8AAABfAAAAFgAAABYAAAAWAAAAFgAAABYAAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAAFcAAAAXAAAAV8AAABfAAAAXwAAABcAAAAXAAACXwAAAF8AAAAXAAADXwAAADQAAABPAAAANAAAAF8AAAAXAAABFwAAAF8AAABfAAAAFwAAAF8AAABFAAADRQAAAUUAAAJFAAABRQAAAUUAAANFAAACSAAAAEUAAAFFAAADRQAAAUUAAABFAAADRQAAAkUAAAFFAAADRQAAAkUAAAJFAAACRQAAAycAAABFAAACRQAAAUUAAANFAAABRQAAAScAAABFAAADRQAAAkUAAAFFAAABRQAAAw== + tiles: XwAAAF8AAABfAAAAXwAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABIAAAASAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABIAAAASAAAAEgAAABIAAABfAAAAUQAAA18AAABcAAADXAAAAVwAAAFcAAADXAAAAVwAAAJfAAAAUQAAA18AAAASAAAAEgAAABIAAAASAAAAXwAAAE8AAAAXAAADXAAAA1wAAAFcAAAAXAAAAVwAAABcAAACNgAAAF8AAABfAAAAEgAAABIAAAASAAAAEgAAAF8AAABPAAAAXwAAAFwAAANcAAABXAAAAFwAAAFcAAABXAAAA18AAABfAAAAXwAAABIAAAASAAAAEgAAABIAAABfAAAATwAAAF8AAABcAAADXAAAAVwAAANcAAACXAAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAABcAAABfAAAAXwAAAF8AAABfAAAAXAAAAlwAAAFcAAADXAAAA1wAAABfAAAATwAAAE8AAAAWAAAAFgAAABYAAAAWAAAAFgAAAF8AAABcAAAAXAAAA1wAAABcAAAAXAAAAlwAAAJcAAACXwAAAF8AAABfAAAAFgAAABYAAAAWAAAAFgAAABYAAABfAAAAXAAAAFwAAANcAAADXAAAAlwAAAFcAAABXAAAAF8AAABfAAAAXwAAABYAAAAWAAAAFgAAABYAAAAWAAAAXwAAAFwAAANcAAACXAAAAFwAAAJcAAAAXAAAAFwAAABfAAAAXwAAAF8AAAAWAAAAFgAAABYAAAAWAAAAFgAAAF8AAABcAAABXAAAAlwAAAJcAAAAXAAAAlwAAAFcAAAAXwAAAF8AAABfAAAAFgAAABYAAAAWAAAAFgAAABYAAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAAFcAAACXAAAAl8AAABfAAAAXwAAABcAAAAXAAABXwAAAF8AAAAXAAABXwAAADQAAABPAAAANAAAAF8AAAAXAAADFwAAAl8AAABfAAAAFwAAAl8AAABFAAAARQAAAUUAAABFAAABRQAAAEUAAAJFAAAASAAAAEUAAAJFAAACRQAAAUUAAANFAAADRQAAA0UAAABFAAAARQAAAkUAAABFAAABRQAAAicAAABFAAABRQAAA0UAAAFFAAAARQAAACcAAABFAAABRQAAAkUAAABFAAADRQAAAw== -1,0: ind: -1,0 - tiles: XwAAAEUAAAJFAAABRQAAA18AAAAXAAAAFwAAARcAAAAXAAADFwAAARcAAAMXAAABFwAAARcAAANfAAAAFwAAAl8AAAALAAAARQAAAUUAAABfAAAAFwAAARcAAAAXAAACFwAAAhcAAAMXAAAAFwAAABcAAAEXAAABXwAAABcAAAFfAAAARQAAAEUAAAFFAAACRQAAAEUAAAFFAAADRQAAAkUAAAFFAAABRQAAAEUAAABFAAACRQAAAEUAAABFAAABXwAAAEUAAAA6AAAASAAAAEUAAAJFAAABRQAAA0UAAAJFAAADRQAAAEUAAAJFAAACRQAAAkUAAAJFAAACRQAAAF8AAAALAAAARQAAAkUAAABfAAAAFwAAA18AAABFAAADRQAAAEUAAANfAAAAKQAAACkAAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAABIAAAAXwAAAEUAAAFFAAABCwAAAEUAAABFAAABRQAAAUUAAABFAAACRQAAA18AAAAwAAAARQAAAEUAAAJFAAACRQAAAykAAABFAAACRQAAAEUAAAJFAAABRQAAA0UAAAFFAAADRQAAAUUAAANfAAAAMAAAADoAAABFAAACRQAAA0UAAAIpAAAALwAAAEUAAAEvAAAARQAAAC8AAABFAAABLwAAAEUAAANFAAAALwAAADAAAABFAAACRQAAA0UAAAFFAAACXwAAAC8AAABFAAAALwAAAEUAAAEvAAAARQAAAS8AAABFAAADRQAAAF8AAAAwAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAvAAAARQAAAy8AAABFAAAALwAAAF8AAABfAAAAFwAAAl8AAABfAAAAMAAAAE8AAABPAAAAUQAAAU8AAABfAAAALwAAAEUAAAEvAAAARQAAAC8AAABfAAAARQAAAUUAAAFFAAAAXwAAAF8AAABRAAABXwAAAFAAAABfAAAAXwAAAEUAAAFFAAADLwAAAEUAAAAvAAAAXwAAAEUAAAJIAAAARQAAAl8AAAAmAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAUUAAABfAAAAJgAAAFAAAABfAAAAUQAAAF8AAABPAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAACYAAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAAAmAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: XwAAAEUAAABFAAACRQAAAV8AAAAXAAADFwAAAxcAAAEXAAADFwAAARcAAAIXAAACFwAAAhcAAAFfAAAAFwAAAF8AAAALAAAARQAAA0UAAABfAAAAFwAAAhcAAAMXAAABFwAAABcAAAMXAAABFwAAARcAAAEXAAABXwAAABcAAABfAAAARQAAAEUAAABFAAAARQAAAkUAAAFFAAACRQAAAkUAAAFFAAAARQAAAkUAAAJFAAADRQAAAUUAAAJFAAADXwAAAEUAAAI6AAAASAAAAEUAAANFAAAARQAAA0UAAABFAAAARQAAA0UAAAJFAAACRQAAA0UAAABFAAADRQAAAl8AAAALAAAARQAAA0UAAANfAAAAFwAAAF8AAABFAAAARQAAAEUAAAFfAAAAKQAAACkAAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAFIAAAAXwAAAEUAAAJFAAADCwAAAEUAAANFAAAARQAAAkUAAAJFAAAARQAAA18AAAAwAAAARQAAA0UAAABFAAABRQAAASkAAABFAAAARQAAAEUAAAFFAAADRQAAAUUAAAFFAAADRQAAAEUAAABfAAAAMAAAADoAAABFAAABRQAAAUUAAAEpAAAALwAAAEUAAAAvAAAARQAAAi8AAABFAAAALwAAAEUAAAFFAAADLwAAADAAAABFAAAARQAAAUUAAAFFAAACXwAAAC8AAABFAAADLwAAAEUAAAAvAAAARQAAAS8AAABFAAAARQAAAF8AAAAwAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAvAAAARQAAAC8AAABFAAABLwAAAF8AAABfAAAAFwAAAF8AAABfAAAAMAAAAE8AAABPAAAAUQAAAE8AAABfAAAALwAAAEUAAAMvAAAARQAAAC8AAABfAAAARQAAAkUAAABFAAACXwAAAF8AAABRAAABXwAAAFAAAABfAAAAXwAAAEUAAANFAAACLwAAAEUAAAEvAAAAXwAAAEUAAABIAAAARQAAAF8AAAAmAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAEUAAANfAAAAJgAAAFAAAABfAAAAUQAAAF8AAABPAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAACYAAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAAAmAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== 0,0: ind: 0,0 - tiles: FwAAABcAAAMXAAACFwAAABcAAAIpAAAAKQAAACkAAAA9AAAAPQAAACkAAAApAAAAKQAAABcAAAIXAAABXwAAABcAAAIXAAABFwAAAhcAAAAXAAACKQAAACkAAAApAAAAPQAAAD0AAAApAAAAKQAAACkAAAAXAAABFwAAAl8AAABFAAAARQAAA0UAAAFFAAADJwAAAEgAAABFAAAARQAAAkUAAABFAAAAJwAAAEUAAANIAAAARQAAAkUAAANFAAACRQAAA0UAAABFAAADRQAAAkgAAABFAAACRQAAAkUAAAJFAAADRQAAAkUAAABFAAACRQAAAkUAAAFFAAAARQAAAjAAAAAwAAAAMAAAAF8AAABfAAAAFwAAAF8AAABfAAAAXwAAAF8AAAAXAAACFwAAAl8AAABfAAAAXwAAAF8AAAAwAAAAMAAAADAAAAAwAAAAMAAAADAAAAAwAAAAXwAAAFwAAABcAAABXAAAAVwAAAJcAAAAXAAAAlwAAABfAAAAMAAAADAAAAAwAAAAMAAAADAAAAAwAAAAMAAAAF8AAABcAAABXAAAAFwAAAFcAAADXAAAAlwAAABcAAAAFwAAAzAAAAAwAAAAMAAAADAAAAAwAAAAMAAAADAAAAAwAAAAXAAAAFwAAAFcAAABXAAAA1wAAANcAAACXAAAAxcAAAEwAAAAMAAAADAAAAAwAAAAMAAAADAAAAAwAAAAMAAAAFwAAAJcAAABXAAAAlwAAAJcAAABXAAAAVwAAABfAAAAMAAAADAAAAAwAAAAMAAAADAAAAAwAAAAMAAAADAAAABcAAADXAAAAVwAAABcAAAAXAAAAlwAAAJcAAAAXQAAARcAAABfAAAAXwAAAF8AAAAwAAAAMAAAADAAAABfAAAAXAAAAVwAAAJcAAABXAAAA1wAAAFcAAADXAAAAF0AAAMmAAAAJgAAACYAAABfAAAAFwAAARcAAAFfAAAAXwAAAF8AAABfAAAAXAAAA1wAAAFcAAAAXAAAAFwAAAFdAAACJgAAACYAAAAmAAAAXwAAABcAAAEXAAAAFwAAAxcAAAMXAAADXwAAAFwAAAJcAAACXAAAAlwAAANcAAACXQAAACYAAAAmAAAAJgAAAF8AAAAXAAADFwAAABcAAAMXAAAAFwAAA18AAABcAAAAXAAAAlwAAANcAAADXAAAAV0AAAEmAAAAJgAAACYAAABfAAAAFwAAAxcAAAAXAAACFwAAARcAAANfAAAAXAAAAVwAAAFcAAAAXAAAAVwAAANdAAABXwAAAF8AAABfAAAAXwAAABcAAAMXAAACFwAAABcAAAEXAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: FwAAAhcAAAIXAAACFwAAARcAAAMpAAAAKQAAACkAAAA9AAAAPQAAACkAAAApAAAAKQAAABcAAAIXAAAAXwAAABcAAAMXAAADFwAAARcAAAAXAAAAKQAAACkAAAApAAAAPQAAAD0AAAApAAAAKQAAACkAAAAXAAADFwAAAV8AAABFAAADRQAAAUUAAANFAAAAJwAAAEgAAABFAAAARQAAA0UAAAFFAAADJwAAAEUAAABIAAAARQAAAEUAAAFFAAADRQAAAEUAAANFAAABRQAAAkgAAABFAAADRQAAAUUAAANFAAACRQAAA0UAAAFFAAADRQAAAEUAAAJFAAABRQAAAjAAAAAwAAAAMAAAAF8AAABfAAAAFwAAA18AAABfAAAAXwAAAF8AAAAXAAAAFwAAAl8AAABfAAAAXwAAAF8AAAAwAAAAMAAAADAAAAAwAAAAMAAAADAAAAAwAAAAXwAAAFwAAANcAAABXAAAAFwAAAFcAAADXAAAAlwAAANfAAAAMAAAADAAAAAwAAAAMAAAADAAAAAwAAAAMAAAAF8AAABcAAADXAAAAlwAAAJcAAAAXAAAA1wAAABcAAAAFwAAADAAAAAwAAAAMAAAADAAAAAwAAAAMAAAADAAAAAwAAAAXAAAA1wAAABcAAACXAAAAlwAAAFcAAADXAAAAxcAAAEwAAAAMAAAADAAAAAwAAAAMAAAADAAAAAwAAAAMAAAAFwAAAFcAAADXAAAAVwAAANcAAACXAAAA1wAAAFfAAAAMAAAADAAAAAwAAAAMAAAADAAAAAwAAAAMAAAADAAAABcAAABXAAAAlwAAANcAAADXAAAAlwAAAJcAAACXQAAAxcAAAFfAAAAXwAAAF8AAAAwAAAAMAAAADAAAABfAAAAXAAAA1wAAABcAAADXAAAAFwAAANcAAABXAAAAV0AAAEmAAAAJgAAACYAAABfAAAAFwAAAhcAAAFfAAAAXwAAAF8AAABfAAAAXAAAAlwAAANcAAABXAAAA1wAAABdAAADJgAAACYAAAAmAAAAXwAAABcAAAMXAAAAFwAAABcAAAAXAAACXwAAAFwAAANcAAABXAAAAFwAAABcAAAAXQAAASYAAAAmAAAAJgAAAF8AAAAXAAAAFwAAARcAAAIXAAACFwAAAl8AAABcAAAAXAAAAlwAAAJcAAACXAAAAV0AAAMmAAAAJgAAACYAAABfAAAAFwAAARcAAAAXAAACFwAAARcAAAJfAAAAXAAAAlwAAAJcAAABXAAAAVwAAAJdAAAAXwAAAF8AAABfAAAAXwAAABcAAAIXAAAAFwAAARcAAAAXAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== -2,-1: ind: -2,-1 - tiles: RQAAAl8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAFFAAAARQAAAV8AAABFAAACSwAAAkUAAANfAAAAUAAAAEUAAABfAAAARQAAAQsAAABFAAACFwAAAkUAAANFAAAARQAAAEUAAAFfAAAARQAAAEsAAAJFAAACTwAAAF8AAABFAAACXwAAAEUAAAFFAAAARQAAAl8AAABFAAAARQAAAUUAAAFFAAACXwAAAEUAAAFLAAADRQAAAF8AAABPAAAARQAAAV8AAAALAAAARQAAA0UAAAFFAAADRQAAAkUAAANFAAADRQAAAxcAAABFAAAASwAAA0UAAANfAAAAXwAAAEUAAAJfAAAARQAAAUUAAANFAAACXwAAAEUAAAFFAAACRQAAAkUAAAIXAAACRQAAAEsAAABFAAABXwAAAF8AAABFAAADFwAAAkUAAAJFAAACRQAAAl8AAABFAAADRQAAAUUAAANFAAAAXwAAAEUAAANLAAAARQAAA18AAABPAAAARQAAAl8AAABFAAABRQAAAUUAAAJfAAAARQAAA0gAAABFAAACRQAAAV8AAABFAAAASwAAAkUAAAJfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAADRQAAA0UAAANfAAAARQAAAksAAAFFAAABXwAAAFAAAABSAAABUgAAAlIAAAJCAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAMXAAADFwAAA18AAABfAAAAXwAAAFIAAABfAAAAXwAAAF8AAABFAAABRQAAAAsAAABFAAAARQAAAEUAAANFAAACRQAAA0UAAAFIAAAARQAAAFIAAAFSAAADUgAAAkIAAABfAAAARQAAAkgAAABFAAACOgAAAEUAAANFAAAARQAAAToAAABFAAABRQAAA0gAAABfAAAAUgAAAV8AAABfAAAAXwAAAEUAAAJFAAABRQAAAUUAAANFAAABRQAAAUUAAABFAAADRQAAAEUAAANFAAACUgAAAVIAAANSAAABUgAAAF8AAABFAAABRQAAAEUAAAFfAAAAXwAAAF8AAABfAAAAFwAAA18AAABfAAAAXwAAAFIAAABSAAADUgAAAlIAAAJfAAAARQAAA0UAAABFAAAAXwAAAAAAAAAAAAAAXwAAAE8AAABfAAAAAAAAAAAAAABfAAAAXwAAABcAAAJfAAAAXwAAAEUAAAE6AAAARQAAAV8AAABfAAAAXwAAAF8AAAAXAAACXwAAAF8AAABfAAAARQAAA0UAAAJFAAADRQAAAxcAAANFAAAARQAAAkUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: RQAAAl8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAJFAAAARQAAAl8AAABFAAADSwAAAUUAAANfAAAAUAAAAEUAAAJfAAAARQAAAwsAAABFAAADFwAAAEUAAAFFAAAARQAAAUUAAABfAAAARQAAAUsAAABFAAADTwAAAF8AAABFAAABXwAAAEUAAABFAAAARQAAAl8AAABFAAACRQAAA0UAAABFAAACXwAAAEUAAANLAAADRQAAA18AAABPAAAARQAAAF8AAAALAAAARQAAA0UAAAJFAAACRQAAAUUAAANFAAADRQAAAxcAAAJFAAACSwAAA0UAAANfAAAAXwAAAEUAAABfAAAARQAAAEUAAANFAAADXwAAAEUAAAFFAAAARQAAAUUAAAAXAAACRQAAAksAAAJFAAACXwAAAF8AAABFAAACFwAAA0UAAANFAAABRQAAAl8AAABFAAADRQAAAUUAAAFFAAADXwAAAEUAAAJLAAAARQAAA18AAABPAAAARQAAAF8AAABFAAAARQAAAkUAAABfAAAARQAAAkgAAABFAAABRQAAAl8AAABFAAAASwAAAUUAAAFfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAABRQAAAEUAAAJfAAAARQAAAksAAANFAAAAXwAAAFAAAABSAAACUgAAAlIAAABCAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAIXAAACFwAAA18AAABfAAAAXwAAAFIAAAJfAAAAXwAAAF8AAABFAAAARQAAAwsAAABFAAABRQAAAUUAAANFAAABRQAAAUUAAABIAAAARQAAAlIAAANSAAABUgAAAkIAAABfAAAARQAAAUgAAABFAAABOgAAAEUAAANFAAACRQAAAjoAAABFAAACRQAAAUgAAABfAAAAUgAAAV8AAABfAAAAXwAAAEUAAAJFAAADRQAAA0UAAAJFAAABRQAAAEUAAAFFAAADRQAAAkUAAABFAAADUgAAAVIAAAJSAAACUgAAAF8AAABFAAACRQAAAUUAAABfAAAAXwAAAF8AAABfAAAAFwAAA18AAABfAAAAXwAAAFIAAAFSAAACUgAAAVIAAAJfAAAARQAAAkUAAABFAAADXwAAAAAAAAAAAAAAXwAAAE8AAABfAAAAAAAAAAAAAABfAAAAXwAAABcAAAJfAAAAXwAAAEUAAAI6AAAARQAAAV8AAABfAAAAXwAAAF8AAAAXAAADXwAAAF8AAABfAAAARQAAA0UAAANFAAAARQAAAhcAAABFAAADRQAAA0UAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== -2,0: ind: -2,0 - tiles: RQAAAkUAAAFFAAACRQAAAxcAAAJFAAABRQAAAkUAAANfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAABRQAAAUUAAAIXAAAARQAAAkUAAANFAAACXwAAAEUAAAELAAAAFwAAABcAAAEXAAAARQAAA0UAAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAADRQAAA18AAABFAAAARQAAAhcAAAAXAAABFwAAAQsAAABFAAAAKQAAACkAAAApAAAAKQAAAF8AAABFAAACOgAAAEUAAANfAAAACwAAAEUAAAAXAAABFwAAARcAAAJFAAACRQAAASkAAAApAAAAKQAAACkAAABfAAAARQAAA0UAAAJFAAACXwAAAEUAAAFFAAADRQAAAkUAAAJFAAACRQAAAgsAAAApAAAAKQAAACkAAABfAAAAXwAAAEUAAAJIAAAARQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAKQAAACkAAAApAAAAXwAAAEgAAABFAAACRQAAAUUAAAJFAAADRQAAAEUAAAFFAAABRQAAAUUAAAMLAAAARQAAAV8AAAAXAAAAXwAAAF8AAABfAAAARQAAA0UAAABFAAADOgAAAEUAAANFAAADRQAAAjoAAABFAAABRQAAA0UAAAMcAAACGwAAABcAAAIXAAACXwAAAEUAAAFFAAABRQAAAUUAAAELAAAARQAAAUUAAABFAAACRQAAAgsAAAALAAAAGwAAAxsAAAAbAAABGwAAAF8AAABfAAAAXwAAABcAAAFfAAAAXwAAAF8AAABIAAAARQAAAEUAAABfAAAAXwAAABwAAAAbAAACGwAAAhsAAANfAAAAMgAAADIAAAAyAAAAMgAAADIAAABfAAAASAAAAEgAAABFAAADTwAAAE8AAABfAAAAFwAAAV8AAABfAAAAXwAAADIAAAAyAAAAMgAAADIAAAAyAAAAXwAAAEUAAAJFAAADRQAAAV8AAABfAAAAGgAAABoAAAEaAAADXwAAADIAAAAyAAAAMgAAADIAAAAyAAAAMgAAAF8AAABFAAACSAAAAEgAAABfAAAATwAAABoAAAAaAAACGgAAAF8AAAAyAAAAMgAAADIAAAAyAAAAMgAAADIAAABfAAAARQAAA0UAAANIAAAAXwAAAF8AAAAaAAADGgAAARoAAANfAAAAMgAAADIAAAAyAAAAXwAAAF8AAABfAAAAXwAAABcAAAIXAAADFwAAAl8AAABfAAAAGgAAARoAAAMaAAABXwAAADIAAAAyAAAAMgAAAF8AAABPAAAATwAAABcAAANFAAADSwAAAkUAAAFfAAAATwAAAA== + tiles: RQAAAEUAAAFFAAABRQAAAxcAAAJFAAABRQAAA0UAAAFfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAABRQAAAkUAAAMXAAADRQAAAEUAAAFFAAADXwAAAEUAAAILAAAAFwAAAhcAAAMXAAAARQAAAUUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAACRQAAA18AAABFAAADRQAAAhcAAAEXAAADFwAAAwsAAABFAAABKQAAACkAAAApAAAAKQAAAF8AAABFAAACOgAAAEUAAAJfAAAACwAAAEUAAAMXAAADFwAAAxcAAAFFAAADRQAAAykAAAApAAAAKQAAACkAAABfAAAARQAAA0UAAAJFAAABXwAAAEUAAABFAAABRQAAA0UAAANFAAABRQAAAQsAAAApAAAAKQAAACkAAABfAAAAXwAAAEUAAAJIAAAARQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAKQAAACkAAAApAAAAXwAAAEgAAABFAAADRQAAAkUAAAJFAAAARQAAAEUAAAFFAAADRQAAAEUAAAALAAAARQAAA18AAAAXAAADXwAAAF8AAABfAAAARQAAAkUAAAJFAAAAOgAAAEUAAANFAAADRQAAAjoAAABFAAADRQAAAEUAAAEcAAAAGwAAABcAAAAXAAAAXwAAAEUAAABFAAADRQAAA0UAAAILAAAARQAAAUUAAAFFAAACRQAAAwsAAAALAAAAGwAAAhsAAAIbAAACGwAAA18AAABfAAAAXwAAABcAAAJfAAAAXwAAAF8AAABIAAAARQAAAEUAAAJfAAAAXwAAABwAAAEbAAADGwAAARsAAANfAAAAMgAAADIAAAAyAAAAMgAAADIAAABfAAAASAAAAEgAAABFAAACTwAAAE8AAABfAAAAFwAAAl8AAABfAAAAXwAAADIAAAAyAAAAMgAAADIAAAAyAAAAXwAAAEUAAAJFAAACRQAAAl8AAABfAAAAGgAAARoAAAIaAAABXwAAADIAAAAyAAAAMgAAADIAAAAyAAAAMgAAAF8AAABFAAACSAAAAEgAAABfAAAATwAAABoAAAMaAAAAGgAAA18AAAAyAAAAMgAAADIAAAAyAAAAMgAAADIAAABfAAAARQAAAEUAAAFIAAAAXwAAAF8AAAAaAAADGgAAAxoAAABfAAAAMgAAADIAAAAyAAAAXwAAAF8AAABfAAAAXwAAABcAAAMXAAABFwAAAV8AAABfAAAAGgAAABoAAAEaAAABXwAAADIAAAAyAAAAMgAAAF8AAABPAAAATwAAABcAAABFAAAASwAAAEUAAABfAAAATwAAAA== 1,-1: ind: 1,-1 - tiles: XwAAAF8AAABfAAAARQAAARcAAANFAAAAXwAAAF8AAAAXAAABFwAAARcAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAaAAAAGgAAAxoAAAIaAAABGgAAAhoAAAJfAAAASAAAAEsAAANFAAADXwAAAEgAAABIAAAAXwAAAF8AAABfAAAAGgAAATIAAAAyAAAAMgAAADIAAAAyAAAAXwAAAEUAAAJLAAAARQAAAV8AAABfAAAASAAAAF8AAABFAAADXwAAABoAAAEyAAAAMgAAADIAAAAyAAAAMgAAAF8AAABFAAAASwAAAEUAAANIAAAAXwAAAEgAAABfAAAARQAAAl8AAAAaAAADMgAAADIAAAAyAAAAMgAAADIAAABfAAAARQAAAEsAAAFFAAAASAAAAF8AAABIAAAAXwAAAEUAAANfAAAAGgAAABoAAAAaAAACGgAAAxoAAAEaAAACXwAAAEUAAAFLAAACSAAAAEgAAABfAAAASAAAAF8AAABFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACSwAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAFAAAABPAAAATwAAAE8AAABfAAAARQAAAUsAAAJFAAABXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJLAAAARQAAA18AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAABFAAACFwAAAkUAAABFAAABRQAAAUUAAANFAAADSwAAAUUAAAJFAAAARQAAAUUAAAFFAAACFwAAAUUAAAFFAAADRQAAAhcAAAFLAAADSwAAAksAAANLAAACSwAAA0sAAAJLAAABSwAAA0sAAAFLAAADSwAAABcAAANFAAABRQAAAUUAAAAXAAABRQAAAEUAAAFFAAABRQAAAUUAAANFAAAARQAAA0UAAABIAAAARQAAAEUAAAMXAAADRQAAAkUAAAFFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAAEUAAAJFAAADRQAAAl8AAABKAAAASgAAAUoAAABKAAAASgAAA0oAAAJKAAABSgAAA0UAAAFfAAAATwAAAF8AAABIAAAARQAAAEUAAAFfAAAASgAAAxAAAAIQAAACEAAAABAAAAMQAAADEAAAAkoAAAJFAAADXwAAAF8AAABfAAAASAAAAEUAAAJFAAACXwAAAEoAAAAQAAACEAAAABAAAAMQAAAAEAAAABAAAAJKAAABRQAAAUUAAAFFAAAAXwAAAA== + tiles: XwAAAF8AAABfAAAARQAAABcAAABFAAAAXwAAAF8AAAAXAAACFwAAAxcAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAaAAADGgAAAhoAAAMaAAAAGgAAAhoAAANfAAAASAAAAEsAAAFFAAACXwAAAEgAAABIAAAAXwAAAF8AAABfAAAAGgAAAjIAAAAyAAAAMgAAADIAAAAyAAAAXwAAAEUAAANLAAACRQAAAV8AAABfAAAASAAAAF8AAABFAAADXwAAABoAAAAyAAAAMgAAADIAAAAyAAAAMgAAAF8AAABFAAAASwAAAkUAAANIAAAAXwAAAEgAAABfAAAARQAAAl8AAAAaAAAAMgAAADIAAAAyAAAAMgAAADIAAABfAAAARQAAA0sAAAFFAAABSAAAAF8AAABIAAAAXwAAAEUAAAJfAAAAGgAAABoAAAAaAAABGgAAAxoAAAIaAAADXwAAAEUAAANLAAAASAAAAEgAAABfAAAASAAAAF8AAABFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADSwAAA0gAAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAFAAAABPAAAATwAAAE8AAABfAAAARQAAAksAAABFAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJLAAACRQAAAV8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAAJFAAADFwAAAUUAAANFAAADRQAAAUUAAAFFAAABSwAAAEUAAAFFAAACRQAAAkUAAANFAAACFwAAAEUAAABFAAADRQAAAhcAAANLAAACSwAAAUsAAANLAAAASwAAAksAAAFLAAAASwAAAUsAAAFLAAADSwAAAxcAAAFFAAABRQAAAEUAAAEXAAACRQAAAEUAAAFFAAABRQAAAEUAAANFAAAARQAAA0UAAABIAAAARQAAAkUAAAAXAAACRQAAAEUAAANFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAAEUAAAFFAAAARQAAAl8AAABKAAADSgAAA0oAAANKAAACSgAAAEoAAAJKAAAASgAAAkUAAANfAAAATwAAAF8AAABIAAAARQAAAEUAAAFfAAAASgAAAxAAAAEQAAADEAAAARAAAAIQAAADEAAAAUoAAAJFAAAAXwAAAF8AAABfAAAASAAAAEUAAAJFAAABXwAAAEoAAAEQAAABEAAAARAAAAMQAAACEAAAABAAAABKAAADRQAAAEUAAAFFAAACXwAAAA== 1,0: ind: 1,0 - tiles: RQAAAEUAAAFFAAACXwAAAEoAAAMQAAABEAAAAhAAAAMQAAAAEAAAABAAAAJKAAAARQAAA0UAAABIAAAAXwAAAEUAAAFFAAADRQAAAV8AAABKAAADEAAAARAAAAAQAAACEAAAAxAAAAMQAAADSgAAAEUAAABFAAACRQAAAhcAAAFFAAAARQAAAEUAAANfAAAASgAAAhAAAAMQAAACEAAAARAAAAMQAAADEAAAAEoAAAJFAAACSAAAAEUAAAFfAAAARQAAAUUAAANFAAADXwAAAEoAAAEQAAABEAAAAxAAAAAQAAADEAAAAxAAAABKAAACRQAAAEUAAABFAAABXwAAAEUAAAJFAAACRQAAAV8AAABKAAACSgAAA0oAAAFKAAADSgAAAUoAAAJKAAACSgAAAEUAAANFAAADRQAAA18AAABFAAACRQAAAkUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAFfAAAARQAAA0UAAAFFAAABFwAAAEUAAAJFAAAARQAAAEUAAABFAAACRQAAAEUAAAJFAAAARQAAAEUAAAJFAAABFwAAA0gAAABFAAAARQAAABcAAANFAAAARQAAA0UAAAJFAAACRQAAAEUAAAFFAAACRQAAA0UAAAFFAAAASAAAABcAAAFIAAAASAAAAEUAAAAXAAABRQAAAkUAAAJFAAABCwAAAEgAAABFAAAARQAAAUUAAAFIAAAARQAAA0gAAAAXAAABXAAAAFwAAANcAAACXwAAAF8AAAAXAAADXwAAAF8AAAAXAAAAGwAAARcAAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAANcAAAAXAAAAxcAAABcAAABXAAAAlwAAAJfAAAAFwAAARsAAAIXAAAAXwAAAEUAAANFAAACXwAAAEUAAABcAAADXAAAA1wAAAAXAAADXAAAA1wAAABcAAACXwAAABcAAAMbAAAAFwAAAl8AAABIAAAARQAAAl8AAABIAAAAXAAAAFwAAAJcAAACXwAAAFwAAANcAAABXAAAAl8AAAAXAAADGwAAAhcAAAFfAAAARQAAA0UAAAFfAAAARQAAAlwAAAFcAAADXAAAA18AAABcAAAAXAAAAlwAAAJfAAAAFwAAARsAAAMXAAADXwAAAEUAAAJFAAADXwAAAEUAAABcAAADXAAAAVwAAANcAAACXAAAAFwAAAFcAAABXwAAABcAAAEXAAACFwAAA18AAAAeAAAAHgAAAR4AAAEeAAAAXwAAAFwAAAFcAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAADFwAAAhcAAABfAAAAHgAAAx4AAAMeAAACHgAAAA== + tiles: RQAAAkUAAANFAAADXwAAAEoAAAIQAAADEAAAAxAAAAMQAAABEAAAAxAAAAFKAAAARQAAAkUAAAJIAAAAXwAAAEUAAAFFAAAARQAAA18AAABKAAABEAAAAhAAAAMQAAADEAAAAhAAAAAQAAADSgAAAEUAAAJFAAABRQAAABcAAABFAAABRQAAA0UAAAJfAAAASgAAAxAAAAAQAAABEAAAAhAAAAMQAAABEAAAAEoAAAJFAAABSAAAAEUAAANfAAAARQAAAEUAAABFAAACXwAAAEoAAAEQAAACEAAAABAAAAEQAAACEAAAAhAAAANKAAACRQAAAEUAAANFAAABXwAAAEUAAAJFAAACRQAAAl8AAABKAAADSgAAAUoAAAFKAAACSgAAA0oAAAJKAAAASgAAA0UAAABFAAAARQAAAl8AAABFAAABRQAAAkUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAABfAAAARQAAAEUAAABFAAACFwAAAEUAAAFFAAADRQAAA0UAAAJFAAACRQAAAkUAAABFAAADRQAAA0UAAAFFAAABFwAAAUgAAABFAAADRQAAABcAAANFAAADRQAAAUUAAANFAAAARQAAAEUAAAFFAAACRQAAAUUAAABFAAABSAAAABcAAABIAAAASAAAAEUAAAAXAAABRQAAAEUAAAFFAAAACwAAAEgAAABFAAACRQAAAEUAAANIAAAARQAAAkgAAAAXAAACXAAAAlwAAAJcAAADXwAAAF8AAAAXAAACXwAAAF8AAAAXAAACGwAAARcAAAJfAAAAXwAAAF8AAABfAAAAXwAAAFwAAAJcAAABXAAAARcAAAFcAAACXAAAAFwAAANfAAAAFwAAABsAAAEXAAACXwAAAEUAAAFFAAABXwAAAEUAAANcAAADXAAAAlwAAAAXAAACXAAAA1wAAANcAAADXwAAABcAAAIbAAABFwAAAV8AAABIAAAARQAAAl8AAABIAAAAXAAAAFwAAAJcAAACXwAAAFwAAABcAAADXAAAAF8AAAAXAAADGwAAARcAAABfAAAARQAAAUUAAANfAAAARQAAAVwAAABcAAACXAAAAF8AAABcAAAAXAAAA1wAAAFfAAAAFwAAAxsAAAEXAAABXwAAAEUAAAFFAAACXwAAAEUAAAJcAAAAXAAAAlwAAAFcAAACXAAAA1wAAANcAAABXwAAABcAAAAXAAAAFwAAA18AAAAeAAABHgAAAh4AAAEeAAADXwAAAFwAAABcAAACXwAAAF8AAABfAAAAXwAAAF8AAAAXAAABFwAAARcAAANfAAAAHgAAAR4AAAIeAAACHgAAAA== -1,1: ind: -1,1 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAE8AAAAYAAABGAAAAV8AAAAWAAAAPAAAADwAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAGAAAAhgAAAEWAAAAXwAAAEUAAAILAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAEgAAABRAAABXwAAABgAAAIYAAAARQAAAVEAAAILAAAARQAAAl8AAABRAAACXwAAAF8AAABfAAAAXwAAAEgAAABIAAAASAAAAF8AAAAYAAADGAAAAEgAAAAWAAAARQAAAAsAAABfAAAAXwAAAF8AAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAGAAAAhgAAABFAAAAXwAAABYAAABfAAAATwAAAF8AAABQAAAAFwAAAE8AAABIAAAAUQAAAEgAAABIAAAAXwAAABgAAAMYAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAFIAAAASAAAAFEAAAJIAAAASAAAAF8AAABfAAAAXwAAABsAAAAXAAAAXwAAAF8AAABfAAAATwAAAE8AAAAXAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAE8AAAAbAAABFwAAA18AAABfAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUQAAA0gAAABIAAAAGwAAARcAAANfAAAAXwAAAF8AAABPAAAAXwAAAE8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAABsAAAMXAAACUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAbAAABFwAAAV8AAABfAAAAXwAAAF8AAABfAAAASAAAAF8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAAAAAAFwAAAF8AAABfAAAAXwAAAFAAAABPAAAASAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAAAAAAEUAAABFAAABXwAAAE8AAABfAAAAXwAAAEgAAABIAAAAXwAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAl8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAAAAAAAAAAAAAF8AAABIAAAASAAAAEgAAABIAAAARQAAAUUAAANfAAAAXAAAA1wAAANcAAACXwAAAFAAAABfAAAAXwAAAF8AAABfAAAASAAAAEUAAANFAAACRQAAAg== + tiles: XwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAE8AAAAYAAADGAAAAV8AAAAWAAAAPAAAADwAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAGAAAAxgAAAIWAAAAXwAAAEUAAAELAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAEgAAABRAAABXwAAABgAAAMYAAADRQAAAFEAAAALAAAARQAAAV8AAABRAAACXwAAAF8AAABfAAAAXwAAAEgAAABIAAAASAAAAF8AAAAYAAADGAAAA0gAAAAWAAAARQAAAwsAAABfAAAAXwAAAF8AAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAGAAAAxgAAAFFAAACXwAAABYAAABfAAAATwAAAF8AAABQAAAAFwAAA08AAABIAAAAUQAAAkgAAABIAAAAXwAAABgAAAMYAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAJIAAAASAAAAFEAAABIAAAASAAAAF8AAABfAAAAXwAAABsAAAMXAAAAXwAAAF8AAABfAAAATwAAAE8AAAAXAAADXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAE8AAAAbAAADFwAAA18AAABfAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUQAAA0gAAABIAAAAGwAAAhcAAABfAAAAXwAAAF8AAABPAAAAXwAAAE8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAABsAAAEXAAADUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAbAAACFwAAAl8AAABfAAAAXwAAAF8AAABfAAAASAAAAF8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAAAAAAFwAAAl8AAABfAAAAXwAAAFAAAABPAAAASAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAAAAAAEUAAANFAAADXwAAAE8AAABfAAAAXwAAAEgAAABIAAAAXwAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAV8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAAAAAAAAAAAAAF8AAABIAAAASAAAAEgAAABIAAAARQAAAEUAAAJfAAAAXAAAA1wAAANcAAAAXwAAAFAAAABfAAAAXwAAAF8AAABfAAAASAAAAEUAAABFAAAARQAAAQ== 0,1: ind: 0,1 - tiles: GAAAABgAAAIYAAACFwAAAhcAAAAXAAAAFwAAAhcAAAMXAAADFwAAAR4AAAIeAAABHgAAAR4AAAEXAAABHgAAABgAAAIYAAAAGAAAAxcAAAAXAAABFwAAAhcAAAMXAAABFwAAAxcAAAAeAAADHgAAAB4AAAAeAAABFwAAAh4AAAEYAAACGAAAAhgAAANfAAAAXwAAAF8AAAAXAAABXwAAAF8AAABfAAAAXwAAABcAAAJfAAAAXwAAAF8AAABfAAAAGAAAAxgAAAEYAAADXwAAAF0AAABdAAACXQAAAl0AAANdAAABFwAAAkgAAABFAAACRQAAAl8AAAAaAAABGgAAABgAAAIYAAABGAAAAV8AAABdAAACXQAAAV0AAAFdAAABXQAAA18AAAAXAAADRQAAAkUAAAJfAAAAGgAAAxoAAAAYAAACGAAAARgAAANfAAAAXQAAAl0AAABdAAACXQAAAl0AAABfAAAAFwAAA0UAAABFAAADXwAAABoAAAEaAAABXwAAAF8AAABfAAAAXwAAAF0AAABdAAAAXQAAA10AAANdAAADXwAAABcAAABFAAABRQAAARcAAAMaAAADGgAAA08AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAGgAAARoAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAE8AAABPAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABIAAAAXwAAAAAAAAAAAAAAXwAAAF8AAAABAAAAXwAAAAEAAABfAAAAAQAAAF8AAAAAAAAAAAAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAF8AAAABAAAAXwAAAF8AAABPAAAAAQAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAA== + tiles: GAAAAxgAAAMYAAADFwAAABcAAAEXAAACFwAAABcAAAIXAAAAFwAAAR4AAAAeAAABHgAAAh4AAAEXAAABHgAAAxgAAAEYAAACGAAAARcAAAAXAAADFwAAAxcAAAEXAAABFwAAABcAAAIeAAAAHgAAAx4AAAEeAAACFwAAAB4AAAEYAAABGAAAAxgAAABfAAAAXwAAAF8AAAAXAAADXwAAAF8AAABfAAAAXwAAABcAAABfAAAAXwAAAF8AAABfAAAAGAAAAhgAAAIYAAACXwAAAF0AAAFdAAABXQAAA10AAAFdAAABFwAAAEgAAABFAAAARQAAAV8AAAAaAAADGgAAARgAAAAYAAADGAAAAl8AAABdAAACXQAAAV0AAAFdAAABXQAAAV8AAAAXAAADRQAAAkUAAABfAAAAGgAAABoAAAEYAAADGAAAAhgAAABfAAAAXQAAAV0AAABdAAACXQAAAF0AAAJfAAAAFwAAAUUAAAFFAAAAXwAAABoAAAAaAAABXwAAAF8AAABfAAAAXwAAAF0AAABdAAAAXQAAA10AAANdAAACXwAAABcAAAJFAAAARQAAAxcAAAEaAAABGgAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAGgAAAhoAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAE8AAABPAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABIAAAAXwAAAAAAAAAAAAAAXwAAAF8AAAABAAAAXwAAAAEAAABfAAAAAQAAAF8AAAAAAAAAAAAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAF8AAAABAAAAXwAAAF8AAABPAAAAAQAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAA== 1,1: ind: 1,1 - tiles: HgAAAx4AAAMeAAABFwAAAhcAAAMXAAACFwAAARcAAAAXAAAAFwAAAhcAAAFfAAAAHgAAAB4AAAAeAAACHgAAAh4AAAAeAAAAHgAAABcAAAEXAAAAFwAAAhcAAAEXAAACFwAAAxcAAAIXAAABFwAAAR8AAAAfAAACHwAAARcAAAEXAAACXwAAAF8AAABfAAAAFwAAABcAAAMXAAABFwAAAhcAAAEXAAACFwAAABcAAAIfAAAAHwAAAx8AAAIXAAADGgAAARoAAAIaAAADXwAAAF8AAABfAAAAFwAAAl8AAABFAAADRQAAA0UAAABfAAAAHwAAAh8AAAIfAAADFwAAARoAAAAaAAACGgAAA18AAAAXAAACFwAAAjIAAAAyAAAAMgAAADIAAAAyAAAAXwAAAB8AAAAfAAACHwAAAV8AAAAaAAABGgAAAxoAAANfAAAAFwAAAhcAAAMyAAAAMgAAADIAAAAyAAAAMgAAABcAAAAfAAACHwAAAx8AAAFQAAAAGgAAABoAAAIaAAABXwAAABcAAAAXAAABMgAAADIAAAAyAAAAMgAAADIAAABfAAAAHwAAAx8AAAAfAAAAXwAAABoAAAMaAAACGgAAAV8AAAAXAAAAFwAAABcAAAIXAAADFwAAARcAAAMXAAACXwAAABcAAAIXAAADFwAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAADXwAAABcAAANfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABIAAAAXwAAAAAAAAAAAAAAAAAAAF4AAABfAAAAOwAAADsAAAA7AAAAXwAAAF8AAABIAAAAXAAAAV8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAABcAAAJfAAAAFwAAAV8AAABfAAAARQAAAlwAAABfAAAAAAAAAAAAAABeAAAAAAAAAF8AAABfAAAAFwAAAxcAAAEXAAACFwAAAhcAAAAXAAACSAAAAEgAAABcAAAAXwAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAABcAAAMXAAADFwAAAhcAAAAXAAABFwAAAV8AAABfAAAAXAAAAl8AAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAAAXAAADFwAAAhcAAAMXAAABFwAAARcAAABFAAAAXwAAAF8AAABfAAAAAAAAAAAAAABeAAAAAAAAAF8AAABfAAAAFwAAAxcAAAIXAAAAFwAAAhcAAAIXAAABUAAAAEgAAABfAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAABcAAAAXAAACFwAAARcAAAAXAAADFwAAAA== + tiles: HgAAAx4AAAIeAAABFwAAABcAAAEXAAAAFwAAAhcAAAAXAAADFwAAARcAAAJfAAAAHgAAAB4AAAIeAAADHgAAAx4AAAIeAAAAHgAAARcAAAMXAAADFwAAAxcAAAAXAAAAFwAAABcAAAAXAAADFwAAAB8AAAEfAAACHwAAAhcAAAMXAAACXwAAAF8AAABfAAAAFwAAAxcAAAAXAAAAFwAAABcAAAEXAAAAFwAAARcAAAIfAAADHwAAAh8AAAMXAAACGgAAAxoAAAAaAAABXwAAAF8AAABfAAAAFwAAAl8AAABFAAABRQAAA0UAAAFfAAAAHwAAAh8AAAAfAAABFwAAAxoAAAAaAAABGgAAA18AAAAXAAACFwAAATIAAAAyAAAAMgAAADIAAAAyAAAAXwAAAB8AAAIfAAADHwAAA18AAAAaAAACGgAAAxoAAAFfAAAAFwAAABcAAAIyAAAAMgAAADIAAAAyAAAAMgAAABcAAAMfAAACHwAAAR8AAAJQAAAAGgAAARoAAAEaAAAAXwAAABcAAAIXAAAAMgAAADIAAAAyAAAAMgAAADIAAABfAAAAHwAAAx8AAAIfAAADXwAAABoAAAEaAAAAGgAAAF8AAAAXAAAAFwAAABcAAAAXAAADFwAAAxcAAAAXAAADXwAAABcAAAAXAAAAFwAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAACXwAAABcAAAFfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABIAAAAXwAAAAAAAAAAAAAAAAAAAF4AAABfAAAAOwAAADsAAAA7AAAAXwAAAF8AAABIAAAAXAAAAV8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAABcAAANfAAAAFwAAAF8AAABfAAAARQAAAlwAAANfAAAAAAAAAAAAAABeAAAAAAAAAF8AAABfAAAAFwAAAxcAAAIXAAADFwAAAxcAAAIXAAABSAAAAEgAAABcAAABXwAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAABcAAAEXAAADFwAAAhcAAAMXAAACFwAAAV8AAABfAAAAXAAAA18AAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAAAXAAADFwAAAhcAAAEXAAABFwAAARcAAANFAAAAXwAAAF8AAABfAAAAAAAAAAAAAABeAAAAAAAAAF8AAABfAAAAFwAAABcAAAMXAAABFwAAARcAAAMXAAACUAAAAEgAAABfAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAABcAAAAXAAADFwAAAhcAAAAXAAAAFwAAAw== -2,-2: ind: -2,-2 - tiles: RQAAAF8AAABfAAAATwAAAE8AAABfAAAARgAAA0YAAABGAAADRgAAAV8AAABFAAABSwAAAUUAAAJfAAAAXwAAABcAAANfAAAAFwAAAhcAAAAXAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUsAAAJIAAAAXwAAAF8AAABFAAABXwAAABcAAAMXAAABFwAAAl8AAABIAAAAXwAAAE8AAABPAAAAXwAAAEUAAABLAAAASAAAABcAAABfAAAARQAAAV8AAAAXAAABFwAAAxcAAAJfAAAASAAAAF8AAABPAAAATwAAAF8AAABFAAADSwAAAEgAAABfAAAAXwAAAEUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEsAAAFFAAAARQAAAUUAAAJFAAAAFwAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAA0gAAABLAAAASwAAA0sAAABLAAACRQAAAl8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAASwAAA0UAAAJFAAABRQAAAEUAAANfAAAAXwAAAF8AAABfAAAARQAAA0UAAAFFAAADRQAAAUUAAANfAAAAFwAAARcAAAMXAAAAXwAAAF8AAABFAAADXwAAABcAAAEXAAABXwAAAEUAAAFIAAAASAAAAEgAAABFAAABXwAAAEUAAAFLAAAARQAAABcAAAEXAAACRQAAAl8AAABPAAAATwAAABcAAANFAAAASAAAAEgAAABIAAAARQAAAl8AAABFAAADSwAAAEUAAAAXAAADFwAAAEUAAAMXAAABXwAAAE8AAABfAAAACwAAAEgAAABIAAAASAAAAEUAAAIXAAADSAAAAEsAAAFFAAACXwAAABcAAABFAAAAXwAAAF8AAABPAAAAXwAAAEUAAANFAAABRQAAAUUAAAJFAAABXwAAAEgAAABLAAAARQAAAF8AAAAXAAACFwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAEUAAABFAAABXwAAAF8AAABIAAAASwAAAkUAAABfAAAAUQAAAEUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEsAAAJFAAAAXwAAAEgAAABFAAADRQAAAEUAAANFAAAARQAAABcAAANFAAADRQAAAEUAAAFfAAAARQAAAUUAAAJLAAACRQAAAl8AAABfAAAARQAAAEUAAAJIAAAARQAAA0gAAAAXAAABSAAAAEgAAABFAAADXwAAAF8AAABFAAADSwAAAUUAAABfAAAAXwAAAA== + tiles: RQAAA18AAABfAAAATwAAAE8AAABfAAAARgAAA0YAAAJGAAABRgAAA18AAABFAAAASwAAA0UAAANfAAAAXwAAABcAAAJfAAAAFwAAABcAAAAXAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAksAAABIAAAAXwAAAF8AAABFAAAAXwAAABcAAAIXAAACFwAAAl8AAABIAAAAXwAAAE8AAABPAAAAXwAAAEUAAANLAAACSAAAABcAAAJfAAAARQAAAV8AAAAXAAADFwAAABcAAABfAAAASAAAAF8AAABPAAAATwAAAF8AAABFAAABSwAAAkgAAABfAAAAXwAAAEUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0sAAABFAAADRQAAA0UAAANFAAACFwAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAUgAAABLAAAASwAAAUsAAAFLAAADRQAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAASwAAAUUAAAJFAAACRQAAAUUAAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAAJFAAABRQAAA0UAAAJfAAAAFwAAABcAAAIXAAAAXwAAAF8AAABFAAABXwAAABcAAAMXAAAAXwAAAEUAAABIAAAASAAAAEgAAABFAAADXwAAAEUAAAJLAAAARQAAAxcAAAAXAAACRQAAA18AAABPAAAATwAAABcAAANFAAABSAAAAEgAAABIAAAARQAAAl8AAABFAAABSwAAAUUAAAIXAAAAFwAAAUUAAAIXAAABXwAAAE8AAABfAAAACwAAAEgAAABIAAAASAAAAEUAAAEXAAACSAAAAEsAAAFFAAAAXwAAABcAAABFAAAAXwAAAF8AAABPAAAAXwAAAEUAAANFAAADRQAAAUUAAAFFAAABXwAAAEgAAABLAAACRQAAAl8AAAAXAAAAFwAAAl8AAABfAAAAXwAAAF8AAABFAAADRQAAAUUAAAJFAAABXwAAAF8AAABIAAAASwAAAkUAAAJfAAAAUQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAA0sAAABFAAACXwAAAEgAAABFAAABRQAAA0UAAAFFAAACRQAAARcAAABFAAACRQAAAEUAAABfAAAARQAAAUUAAABLAAADRQAAAl8AAABfAAAARQAAAUUAAANIAAAARQAAA0gAAAAXAAACSAAAAEgAAABFAAAAXwAAAF8AAABFAAACSwAAAUUAAAFfAAAAXwAAAA== -1,-2: ind: -1,-2 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANLAAAASAAAAEgAAABfAAAAAAAAAF8AAABfAAAASAAAAE8AAABPAAAAXwAAAF8AAABfAAAATwAAAF8AAABFAAAASwAAAEUAAAFfAAAAXwAAAAAAAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAAXwAAAF8AAAAXAAADRQAAA0sAAABFAAADXwAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJLAAABRQAAAF8AAABfAAAAXwAAAEUAAAJFAAACFwAAAkUAAAJFAAABRQAAAEgAAABIAAAARQAAAEUAAAFKAAABSgAAAkoAAAJFAAACRQAAAhcAAAJLAAADSwAAABcAAAFLAAADSwAAAEsAAABLAAADSwAAA0sAAAJLAAABSgAAAjoAAABKAAADSwAAAUsAAAAXAAACRQAAAEUAAAAXAAAARQAAAkUAAANFAAACRQAAAEUAAANFAAAARQAAA0oAAABKAAACSgAAAUUAAABFAAADFwAAAl8AAABfAAAAXwAAAF8AAAAXAAADXwAAABcAAAAXAAADXwAAAF8AAABFAAABSwAAAUUAAAJfAAAAXwAAAF8AAAAXAAADXwAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAABfAAAARQAAAksAAANFAAABXwAAAAAAAAAAAAAAGwAAAF8AAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAXwAAABcAAAEXAAACFwAAAl8AAAAAAAAAAAAAABsAAAFfAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAAF8AAABOAAAATgAAAE4AAAJfAAAAXwAAAF8AAAAbAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAA18AAABfAAAATgAAA04AAANOAAACFwAAAl8AAABfAAAASAAAAEgAAAAxAAAAMQAAADEAAAAxAAAAXwAAAFAAAABQAAAAXwAAAE4AAAJOAAAATgAAAF8AAABfAAAAXwAAAEgAAABfAAAAMQAAADEAAAAxAAAAMQAAAF8AAABfAAAATwAAAF8AAABOAAACTgAAAk4AAAFfAAAAXwAAAF8AAABPAAAAXwAAADEAAAAxAAAAMQAAADEAAABfAAAATwAAAE8AAABfAAAATgAAAk4AAAFOAAAAXwAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE4AAABOAAACTgAAAl8AAABfAAAAUQAAAw== + tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJLAAABSAAAAEgAAABfAAAAAAAAAF8AAABfAAAASAAAAE8AAABfAAAATwAAAF8AAABfAAAATwAAAF8AAABFAAAASwAAAUUAAAFfAAAAXwAAAAAAAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAAXwAAAF8AAAAXAAABRQAAAksAAAJFAAADXwAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFLAAABRQAAA18AAABfAAAAXwAAAEUAAAJFAAAAFwAAA0UAAAFFAAADRQAAA0gAAABIAAAARQAAAUUAAAFKAAACSgAAA0oAAAFFAAACRQAAAhcAAABLAAAASwAAAxcAAAFLAAACSwAAAEsAAABLAAAASwAAA0sAAABLAAACSgAAAzoAAABKAAADSwAAAksAAAEXAAADRQAAAUUAAAMXAAABRQAAAUUAAANFAAACRQAAAUUAAAFFAAAARQAAAkoAAABKAAABSgAAAkUAAABFAAADFwAAAl8AAABfAAAAXwAAAF8AAAAXAAACXwAAABcAAAIXAAADXwAAAF8AAABFAAACSwAAAEUAAAJfAAAAXwAAAF8AAAAXAAAAXwAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAABfAAAARQAAAEsAAANFAAAAXwAAAAAAAAAAAAAAGwAAAl8AAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAXwAAABcAAAEXAAADFwAAAF8AAAAAAAAAAAAAABsAAANfAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAAF8AAABOAAAATgAAAE4AAAFfAAAAXwAAAF8AAAAbAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAV8AAABfAAAATgAAAU4AAABOAAADFwAAAl8AAABfAAAASAAAAEgAAAAxAAAAMQAAADEAAAAxAAAAXwAAAFAAAABQAAAAXwAAAE4AAAFOAAAATgAAA18AAABfAAAAXwAAAEgAAABfAAAAMQAAADEAAAAxAAAAMQAAAF8AAABfAAAATwAAAF8AAABOAAADTgAAA04AAAJfAAAAXwAAAF8AAABPAAAAXwAAADEAAAAxAAAAMQAAADEAAABfAAAATwAAAE8AAABfAAAATgAAAU4AAAJOAAAAXwAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE4AAABOAAAATgAAAV8AAABfAAAAUQAAAA== 0,-2: ind: 0,-2 - tiles: AAAAAF8AAAABAAAAAQAAAAEAAAABAAAAAQAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXwAAAEoAAABFAAADRQAAAwAAAABfAAAAAQAAAAEAAAABAAAAAQAAAAEAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAAAAAAAXwAAAAEAAAABAAAAAQAAAAEAAAABAAAAXwAAAFEAAAFfAAAAXwAAAE8AAABPAAAATwAAAEUAAANFAAAAXwAAAF8AAABfAAAAXwAAABcAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAkUAAAFFAAABRQAAAEUAAABFAAACRQAAAkUAAAJFAAADRQAAAkUAAAMXAAACRQAAAEUAAAJIAAAARQAAA0UAAAFLAAABSwAAAEsAAAE6AAAASwAAAksAAAA6AAAASwAAA0sAAABLAAABFwAAAEUAAAJFAAAASAAAAEgAAABFAAADRQAAAUUAAANFAAADRQAAAUUAAAJFAAABRQAAAkUAAAFFAAAARQAAABcAAAJFAAADSAAAAEgAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAEAAAAAAAAAAAAAAABfAAAATwAAAE8AAABfAAAAFwAAABcAAAMXAAACFwAAAhcAAAMXAAAAXwAAAEUAAAFFAAADAAAAAAAAAAAAAAAAXwAAAE8AAABfAAAAXwAAABcAAAIXAAAAFwAAAhcAAAEXAAAAFwAAAV8AAABFAAACRQAAAwAAAAAAAAAAAAAAAF8AAABPAAAAXwAAAF8AAAAXAAAALQAAAC0AAAAtAAAALQAAABcAAAAXAAAARQAAAUUAAAIAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAFwAAARcAAAEXAAACFwAAABcAAAAXAAAAXwAAAEUAAANFAAACAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAABcAAAIXAAAAFwAAARcAAAAXAAABFwAAA18AAAAXAAABFwAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAANfAAAAXwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABRAAADXwAAAE8AAABPAAAATwAAAE8AAABPAAAAXwAAAF8AAABFAAAARQAAAA== + tiles: AAAAAF8AAAABAAAAAQAAAAEAAAABAAAAAQAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXwAAAEoAAANFAAAARQAAAwAAAABfAAAAAQAAAAEAAAABAAAAAQAAAAEAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAMAAAAAXwAAAAEAAAABAAAAAQAAAAEAAAABAAAAXwAAAFEAAABfAAAAXwAAAE8AAABPAAAATwAAAEUAAAJFAAAAXwAAAF8AAABfAAAAXwAAABcAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAUUAAAFFAAADRQAAAEUAAAJFAAADRQAAAUUAAABFAAADRQAAAkUAAAIXAAACRQAAAEUAAANIAAAARQAAAUUAAANLAAACSwAAA0sAAAA6AAAASwAAAUsAAAI6AAAASwAAAEsAAAFLAAACFwAAAkUAAABFAAADSAAAAEgAAABFAAACRQAAA0UAAABFAAACRQAAAkUAAAFFAAADRQAAAUUAAANFAAAARQAAABcAAANFAAABSAAAAEgAAABFAAACRQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAMAAAAAAAAAAAAAAABfAAAATwAAAE8AAABfAAAAFwAAAxcAAAMXAAABFwAAAxcAAAEXAAAAXwAAAEUAAANFAAADAAAAAAAAAAAAAAAAXwAAAE8AAABfAAAAXwAAABcAAAEXAAADFwAAABcAAAMXAAAAFwAAAV8AAABFAAABRQAAAgAAAAAAAAAAAAAAAF8AAABPAAAAXwAAAF8AAAAXAAADLQAAAC0AAAAtAAAALQAAABcAAAEXAAACRQAAAUUAAAIAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAFwAAAxcAAAIXAAACFwAAARcAAAMXAAADXwAAAEUAAANFAAADAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAABcAAAIXAAACFwAAABcAAAEXAAACFwAAAl8AAAAXAAACFwAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAABfAAAAXwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAADXwAAAF8AAABfAAAAXwAAAF8AAABRAAACXwAAAE8AAABPAAAATwAAAE8AAABPAAAAXwAAAF8AAABFAAAARQAAAw== 1,-2: ind: 1,-2 - tiles: RQAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAF8AAABfAAAAXwAAAEgAAABfAAAAXwAAABcAAAFfAAAAXwAAAEgAAABfAAAATwAAAEgAAABfAAAASQAAA0kAAANJAAADSQAAAl8AAABQAAAAXwAAAF0AAABdAAADXQAAAV0AAAJFAAADXwAAAEgAAABPAAAAXwAAAEkAAABJAAABSQAAA0kAAAFfAAAATwAAAF8AAABdAAAAXQAAA10AAAJdAAAARQAAAl8AAABPAAAATwAAAF8AAABJAAAASQAAAEkAAAFJAAAAXwAAAFAAAABfAAAAXQAAAV0AAANdAAABXQAAAkUAAABfAAAASAAAAEgAAABfAAAASQAAA0kAAAJJAAADSQAAAF8AAABQAAAAXwAAAF0AAANdAAABXQAAAl0AAAFFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAl8AAABfAAAAXwAAAF8AAAAXAAACXwAAAF8AAABfAAAARQAAABcAAAA8AAAAFwAAA0UAAAJFAAAARQAAAkUAAANFAAADRQAAAEUAAANFAAAARQAAAEUAAAFFAAAAFwAAAEUAAAIXAAADPAAAABcAAABFAAADRQAAAkUAAABFAAADRQAAAUUAAAJFAAAARQAAAUUAAANFAAACRQAAAxcAAAJIAAAAXwAAAF8AAABfAAAARQAAA0UAAABFAAABRQAAAUUAAAJFAAABRQAAA0UAAAJFAAABRQAAAkUAAABfAAAARQAAAF8AAABFAAABRQAAAEUAAAJFAAADRQAAAEUAAABFAAAARQAAA0UAAAJFAAADRQAAAkUAAANFAAADRQAAAUUAAAFfAAAARQAAAkUAAABFAAADRQAAAkUAAABFAAADRQAAAEUAAAFFAAABRQAAAUUAAAFFAAACRQAAAkUAAANFAAACXwAAAEUAAABFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADFwAAAV8AAABfAAAAXwAAAF8AAAApAAAAKQAAACkAAAApAAAAKQAAACkAAAApAAAAKQAAACkAAABfAAAAXwAAAEUAAANFAAAARQAAAEUAAAJFAAACSwAAA0sAAANLAAAASwAAA0sAAAJLAAABSwAAAUsAAANLAAACRQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAksAAAJLAAADSwAAAksAAANLAAABSwAAAEsAAABLAAABSwAAA0UAAABFAAACRQAAAEUAAAJFAAAARQAAAUUAAANLAAAASwAAAUsAAANLAAACSwAAAUsAAANLAAADSwAAAEsAAANFAAACRQAAAg== + tiles: RQAAA18AAABfAAAAXwAAAF8AAABfAAAAFwAAAV8AAABfAAAAXwAAAEgAAABfAAAAXwAAABcAAABfAAAAXwAAAEgAAABfAAAATwAAAEgAAABfAAAASQAAAUkAAABJAAABSQAAAl8AAABQAAAAXwAAAF0AAABdAAABXQAAA10AAABFAAACXwAAAEgAAABPAAAAXwAAAEkAAABJAAABSQAAAEkAAAJfAAAATwAAAF8AAABdAAACXQAAA10AAABdAAAARQAAA18AAABPAAAATwAAAF8AAABJAAABSQAAA0kAAABJAAABXwAAAFAAAABfAAAAXQAAAF0AAABdAAAAXQAAAEUAAANfAAAASAAAAEgAAABfAAAASQAAAUkAAAJJAAAASQAAA18AAABQAAAAXwAAAF0AAABdAAADXQAAA10AAANFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAl8AAABfAAAAXwAAAF8AAAAXAAADXwAAAF8AAABfAAAARQAAARcAAAE8AAAAFwAAAUUAAAJFAAABRQAAA0UAAAJFAAAARQAAA0UAAAJFAAADRQAAAUUAAAFFAAAAFwAAAUUAAAMXAAACPAAAABcAAAFFAAAARQAAAkUAAAJFAAAARQAAAEUAAAJFAAACRQAAA0UAAAJFAAADRQAAABcAAAJIAAAAXwAAAF8AAABfAAAARQAAA0UAAAJFAAAARQAAAkUAAANFAAAARQAAAEUAAAFFAAABRQAAAkUAAAJfAAAARQAAA18AAABFAAADRQAAAEUAAABFAAADRQAAAEUAAAFFAAAARQAAAEUAAAFFAAACRQAAAUUAAANFAAACRQAAAkUAAAFfAAAARQAAAkUAAAJFAAADRQAAA0UAAAJFAAAARQAAAUUAAAJFAAACRQAAA0UAAABFAAADRQAAAkUAAABFAAABXwAAAEUAAANFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABFwAAAV8AAABfAAAAXwAAAF8AAAApAAAAKQAAACkAAAApAAAAKQAAACkAAAApAAAAKQAAACkAAABfAAAAXwAAAEUAAAFFAAAARQAAAUUAAABFAAAASwAAAksAAAFLAAACSwAAAEsAAAFLAAAASwAAAksAAANLAAABRQAAAkUAAANFAAADRQAAAUUAAANFAAAARQAAA0sAAANLAAADSwAAAksAAAJLAAADSwAAA0sAAANLAAABSwAAAEUAAAFFAAABRQAAA0UAAAJFAAABRQAAAkUAAABLAAAASwAAAUsAAANLAAACSwAAAEsAAAFLAAACSwAAAUsAAAFFAAABRQAAAA== 2,0: ind: 2,0 - tiles: RQAAAksAAAJFAAADFwAAA0UAAAJFAAABRQAAAkUAAABFAAAARQAAAEgAAABIAAAASAAAAEUAAANFAAAARQAAAkUAAAFLAAADSwAAAxcAAAJLAAABSwAAAEsAAAFLAAAASwAAAksAAAJLAAADSwAAAksAAABLAAACSwAAAUsAAABFAAAASwAAAEUAAAEXAAADSAAAAEUAAAFFAAAARQAAAEUAAABFAAADRQAAAEUAAANFAAAARQAAAUUAAAJFAAABSAAAAEsAAANFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAABcAAAJfAAAAXwAAABcAAABfAAAAXwAAAEUAAANLAAADRQAAA18AAABFAAACRQAAAkUAAANFAAAAHwAAAh8AAAEfAAACXwAAAFIAAAJSAAABUgAAA1IAAABFAAAASwAAA0gAAABfAAAARQAAAEgAAABFAAAARQAAAx8AAAEfAAAAHwAAAl8AAABSAAACUgAAAFIAAAFSAAACRQAAA0sAAABFAAABXwAAAF8AAABfAAAAXwAAAF8AAAAfAAACHwAAAh8AAAAXAAAAUgAAAUIAAABSAAACUgAAAEsAAAJLAAABRQAAA18AAABFAAADRQAAA0UAAAFFAAACHwAAAR8AAAEfAAAAXwAAAFIAAAFSAAAAUgAAAFIAAAFFAAACRQAAA0UAAANfAAAARQAAAEgAAABFAAABRQAAAx8AAAAfAAAAHwAAAl8AAABSAAADUgAAA1IAAAJSAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAfAAADHwAAAx8AAANfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJfAAAARQAAAUUAAAJfAAAAFwAAARcAAANfAAAAHwAAAR8AAAIfAAADXwAAAEgAAABFAAADRQAAA0UAAAJFAAAAXwAAAEgAAABFAAADXwAAABcAAAEXAAACFwAAAR8AAAIfAAADHwAAAV8AAABIAAAASAAAAFEAAAFIAAAARQAAAF8AAABFAAAARQAAA18AAAAXAAACFwAAAV8AAAAfAAAAHwAAAx8AAANfAAAASAAAAEgAAABIAAAASAAAAEUAAANfAAAARQAAA0UAAANfAAAAXwAAAF8AAABfAAAAHwAAAh8AAAAfAAAAXwAAAF8AAABfAAAAXwAAAEgAAAAeAAACHgAAAR4AAAIeAAACHgAAAx4AAAMeAAABHgAAAB4AAAIeAAADHgAAARcAAAAXAAACFwAAAxcAAAELAAAAHgAAAh4AAAAeAAABHgAAAR4AAAEeAAABHgAAAx4AAAMeAAABHgAAAx4AAAIXAAADFwAAAhcAAAIXAAADCwAAAA== + tiles: RQAAAksAAAJFAAABFwAAAEUAAAFFAAAARQAAAEUAAABFAAACRQAAAEgAAABIAAAASAAAAEUAAAFFAAACRQAAAUUAAABLAAAASwAAAxcAAAFLAAACSwAAAEsAAAFLAAAASwAAAEsAAABLAAADSwAAAksAAAJLAAAASwAAAUsAAABFAAACSwAAAkUAAAAXAAAASAAAAEUAAANFAAADRQAAA0UAAABFAAADRQAAAUUAAAJFAAADRQAAA0UAAAFFAAADSAAAAEsAAANFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAxcAAAFfAAAAXwAAABcAAAFfAAAAXwAAAEUAAANLAAAARQAAAl8AAABFAAAARQAAAkUAAAJFAAACHwAAAR8AAAIfAAACXwAAAFIAAAJSAAADUgAAA1IAAAJFAAACSwAAA0gAAABfAAAARQAAAkgAAABFAAABRQAAAx8AAAAfAAADHwAAA18AAABSAAABUgAAAlIAAAFSAAABRQAAAUsAAAJFAAACXwAAAF8AAABfAAAAXwAAAF8AAAAfAAADHwAAAh8AAAEXAAACUgAAAUIAAABSAAACUgAAA0sAAAJLAAADRQAAAV8AAABFAAACRQAAAEUAAAJFAAADHwAAAx8AAAAfAAACXwAAAFIAAANSAAAAUgAAAVIAAAJFAAACRQAAAkUAAABfAAAARQAAA0gAAABFAAACRQAAAh8AAAAfAAABHwAAAF8AAABSAAAAUgAAAVIAAANSAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAfAAABHwAAAh8AAAJfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANfAAAARQAAA0UAAAFfAAAAFwAAAhcAAABfAAAAHwAAAh8AAAEfAAADXwAAAEgAAABFAAACRQAAAkUAAAJFAAADXwAAAEgAAABFAAADXwAAABcAAAIXAAABFwAAAB8AAAMfAAABHwAAAF8AAABIAAAASAAAAFEAAAJIAAAARQAAAl8AAABFAAADRQAAAl8AAAAXAAAAFwAAA18AAAAfAAAAHwAAAB8AAANfAAAASAAAAEgAAABIAAAASAAAAEUAAAJfAAAARQAAA0UAAABfAAAAXwAAAF8AAABfAAAAHwAAAB8AAAMfAAACXwAAAF8AAABfAAAAXwAAAEgAAAAeAAABHgAAAR4AAAMeAAADHgAAAB4AAAEeAAADHgAAAx4AAAEeAAACHgAAABcAAAMXAAAAFwAAARcAAAELAAAAHgAAAh4AAAMeAAACHgAAAx4AAAAeAAADHgAAAB4AAAEeAAABHgAAAR4AAAEXAAADFwAAAxcAAAMXAAADCwAAAA== 2,1: ind: 2,1 - tiles: HgAAAB4AAAMeAAAAHgAAAB4AAAIeAAACHgAAAB4AAAAeAAADHgAAAx4AAABfAAAAXwAAAF8AAABfAAAASAAAABcAAAFfAAAAMgAAADIAAAAyAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABIAAAASAAAAEgAAAAXAAACXwAAAF8AAABfAAAAXwAAAF8AAABcAAADXAAAAFwAAANcAAABXAAAAV8AAABIAAAASAAAAEgAAABIAAAAFwAAAF8AAABFAAABRQAAAkUAAAJfAAAAXAAAAFwAAABcAAADXAAAAlwAAAAXAAABSAAAAEgAAABIAAAASAAAAF8AAABfAAAARQAAA0UAAAJFAAACFwAAA1wAAAJcAAACXAAAAlwAAABcAAABFwAAAUgAAABIAAAACwAAAAsAAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAABXAAAA1wAAANcAAADXAAAAV8AAABIAAAASAAAAAsAAABRAAACTwAAAE8AAABQAAAATwAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABRQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAAJPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAEUAAANFAAABTwAAAE8AAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAE8AAABIAAAATwAAAE8AAAAXAAADXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAA18AAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAASAAAAF8AAABQAAAAXwAAABcAAAJfAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAUAAAAF8AAABIAAAARQAAA18AAAAXAAADXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAl8AAABIAAAAXwAAAEUAAANfAAAAFwAAAV8AAABfAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXwAAAF8AAABIAAAASAAAAFAAAABfAAAAXwAAAA== + tiles: HgAAAh4AAAEeAAACHgAAAR4AAAIeAAADHgAAAh4AAAIeAAAAHgAAAR4AAABfAAAAXwAAAF8AAABfAAAASAAAABcAAAFfAAAAMgAAADIAAAAyAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABIAAAASAAAAEgAAAAXAAABXwAAAF8AAABfAAAAXwAAAF8AAABcAAABXAAAAlwAAAJcAAAAXAAAAV8AAABIAAAASAAAAEgAAABIAAAAFwAAAF8AAABFAAACRQAAA0UAAABfAAAAXAAAAFwAAAJcAAADXAAAAFwAAAEXAAAASAAAAEgAAABIAAAASAAAAF8AAABfAAAARQAAAUUAAABFAAADFwAAAVwAAANcAAACXAAAAlwAAAJcAAABFwAAAEgAAABIAAAACwAAAAsAAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAADXAAAAVwAAAFcAAACXAAAA18AAABIAAAASAAAAAsAAABRAAADTwAAAE8AAABQAAAATwAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAANPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAEUAAABFAAACTwAAAE8AAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAE8AAABIAAAATwAAAE8AAAAXAAADXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAV8AAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAASAAAAF8AAABQAAAAXwAAABcAAAFfAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAUAAAAF8AAABIAAAARQAAAF8AAAAXAAACXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAF8AAABIAAAAXwAAAEUAAAJfAAAAFwAAAV8AAABfAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXwAAAF8AAABIAAAASAAAAFAAAABfAAAAXwAAAA== 2,-1: ind: 2,-1 - tiles: FwAAAl8AAABfAAAASAAAAF8AAABfAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAAJIAAAARQAAAV8AAABIAAAAXwAAAE8AAABPAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXAAAAkgAAABFAAADRQAAAEUAAAJfAAAARQAAA18AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJfAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAAXwAAAEgAAABfAAAARQAAAEUAAAFFAAACXwAAAFwAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAEsAAAJLAAAARQAAAF8AAABcAAABXAAAAVwAAAJfAAAAXwAAAFwAAABcAAADXAAAA1wAAABfAAAAXwAAAF8AAABFAAADSwAAAkUAAANfAAAAXAAAAlwAAANcAAAAXAAAARcAAAJcAAADXAAAAlwAAANcAAAAXwAAAF8AAABfAAAARQAAA0sAAANFAAACFwAAAFwAAABcAAAAXAAAAFwAAAJfAAAAXAAAAlwAAAJcAAACXAAAAV8AAABPAAAATwAAAEUAAAJLAAACSAAAAF8AAABcAAAAXAAAA1wAAANcAAACXwAAAFwAAANcAAACXAAAA1wAAANfAAAATwAAAE8AAABIAAAASwAAAEgAAABfAAAAXAAAA1wAAAJcAAADXAAAAhcAAABcAAACXAAAAVwAAAFcAAABXwAAAE8AAABPAAAASAAAAEsAAAFFAAAAXwAAAF8AAABfAAAAFwAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAACXwAAAA== + tiles: FwAAAF8AAABfAAAASAAAAF8AAABfAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAANIAAAARQAAAl8AAABIAAAAXwAAAE8AAABPAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXAAAAEgAAABFAAABRQAAAUUAAAJfAAAARQAAAl8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABfAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAl8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAAXwAAAEgAAABfAAAARQAAA0UAAABFAAABXwAAAFwAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAEsAAABLAAABRQAAAV8AAABcAAABXAAAAlwAAABfAAAAXwAAAFwAAANcAAAAXAAAAlwAAAFfAAAAXwAAAF8AAABFAAACSwAAA0UAAABfAAAAXAAAAVwAAABcAAABXAAAAhcAAABcAAAAXAAAAVwAAANcAAADXwAAAF8AAABfAAAARQAAAEsAAANFAAABFwAAAVwAAANcAAAAXAAAAFwAAAJfAAAAXAAAAFwAAAJcAAADXAAAAF8AAABPAAAATwAAAEUAAABLAAADSAAAAF8AAABcAAABXAAAA1wAAAJcAAADXwAAAFwAAANcAAACXAAAAlwAAABfAAAATwAAAE8AAABIAAAASwAAAUgAAABfAAAAXAAAAlwAAAJcAAADXAAAAhcAAABcAAACXAAAAVwAAAJcAAACXwAAAE8AAABPAAAASAAAAEsAAANFAAADXwAAAF8AAABfAAAAFwAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAADXwAAAA== -2,1: ind: -2,1 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACSwAAAEUAAABfAAAATwAAAEUAAAFFAAABRQAAAUUAAABFAAAAXwAAAEUAAABFAAABRQAAA0UAAANfAAAARQAAAUsAAAFFAAABXwAAAF8AAABFAAAARQAAAEUAAANFAAACSAAAABcAAAJIAAAARQAAA0UAAABFAAAAXwAAAEUAAAJLAAABRQAAAl8AAABfAAAARQAAA0UAAAJFAAABRQAAAUgAAAAXAAABSAAAAEUAAABFAAADRQAAAl8AAABFAAAASwAAAUUAAABRAAABSAAAAEUAAAJFAAADXwAAAF8AAABfAAAAXwAAAEUAAANFAAABRQAAA0UAAAIXAAAARQAAAEsAAAFFAAABXwAAAEUAAAJFAAADRQAAAl8AAABFAAACRQAAAl8AAABFAAABRQAAAkUAAAJFAAABFwAAAkUAAAJLAAADRQAAA18AAABFAAABRQAAAUUAAAEXAAABRQAAAEUAAAFFAAACRQAAAkUAAABFAAAARQAAA18AAABFAAAASwAAAkUAAANfAAAAXwAAAEUAAABFAAADXwAAAEUAAANFAAAAXwAAAEUAAABFAAACRQAAAkUAAAFfAAAARQAAAksAAANFAAACXwAAABcAAAFFAAACRQAAA18AAABLAAABRQAAAV8AAABFAAACRQAAAUUAAANFAAACXwAAAEUAAAJLAAADRQAAAl8AAAAXAAABRQAAAUUAAAILAAAARQAAAAsAAABFAAABCwAAAEUAAABFAAADRQAAAF8AAABFAAADSwAAAEUAAAMXAAAAFwAAAEUAAAJFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAksAAAJFAAADXwAAABcAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFLAAAARQAAA18AAAAXAAACRQAAA0UAAAEXAAACXwAAAFAAAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABSwAAA0UAAAFfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABfAAAAXwAAAF8AAABcAAACXAAAA1wAAANfAAAARQAAAUsAAANFAAAAFwAAAkUAAABfAAAAXwAAAF8AAABfAAAAXwAAAFEAAANfAAAAXAAAAlwAAANcAAACFwAAA0UAAAFLAAABRQAAARcAAAFFAAACXwAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAFwAAAJcAAAAXAAAA18AAABFAAACSwAAAUUAAANfAAAARQAAAA== + tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACSwAAAEUAAAFfAAAATwAAAEUAAABFAAAARQAAAkUAAABFAAABXwAAAEUAAAFFAAAARQAAA0UAAAJfAAAARQAAAEsAAAJFAAADXwAAAF8AAABFAAABRQAAAkUAAABFAAABSAAAABcAAAFIAAAARQAAAkUAAANFAAABXwAAAEUAAAJLAAABRQAAA18AAABfAAAARQAAAUUAAAJFAAABRQAAAEgAAAAXAAACSAAAAEUAAABFAAAARQAAA18AAABFAAAASwAAAUUAAABRAAAASAAAAEUAAABFAAACXwAAAF8AAABfAAAAXwAAAEUAAAJFAAADRQAAAEUAAAAXAAAARQAAAksAAABFAAAAXwAAAEUAAAFFAAACRQAAA18AAABFAAADRQAAAl8AAABFAAABRQAAAUUAAAJFAAACFwAAAUUAAAJLAAACRQAAAl8AAABFAAABRQAAAUUAAAIXAAACRQAAAUUAAAJFAAACRQAAAkUAAABFAAABRQAAAl8AAABFAAAASwAAA0UAAAFfAAAAXwAAAEUAAAJFAAACXwAAAEUAAAFFAAABXwAAAEUAAABFAAACRQAAA0UAAAJfAAAARQAAA0sAAAJFAAAAXwAAABcAAAFFAAABRQAAAF8AAABLAAABRQAAA18AAABFAAABRQAAA0UAAAJFAAAAXwAAAEUAAAJLAAADRQAAAl8AAAAXAAABRQAAAEUAAAMLAAAARQAAAQsAAABFAAADCwAAAEUAAAFFAAACRQAAAl8AAABFAAAASwAAA0UAAAAXAAAAFwAAAkUAAAFFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUsAAANFAAADXwAAABcAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABLAAADRQAAAl8AAAAXAAABRQAAA0UAAAEXAAACXwAAAFAAAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABSwAAA0UAAAJfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABfAAAAXwAAAF8AAABcAAAAXAAAAVwAAAJfAAAARQAAAksAAAFFAAAAFwAAAEUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAFEAAABfAAAAXAAAA1wAAAJcAAAAFwAAAkUAAABLAAAARQAAAhcAAABFAAAAXwAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAFwAAAJcAAADXAAAA18AAABFAAADSwAAA0UAAAFfAAAARQAAAw== 3,1: ind: 3,1 - tiles: SAAAAEgAAABIAAAARQAAADAAAAAwAAAAMAAAAEUAAAJIAAAACwAAAEgAAABIAAAARQAAAkUAAAFFAAADXwAAAF8AAABIAAAASAAAAEUAAAAwAAAAMAAAADAAAABFAAADSAAAAEgAAABfAAAASAAAAF8AAABfAAAAXwAAAF8AAABIAAAASAAAAEgAAABFAAACRQAAAkUAAAFFAAABRQAAA0gAAABIAAAASAAAAFEAAAFFAAABRQAAAkUAAAJfAAAASAAAAEgAAABIAAAACwAAAEUAAAJFAAABRQAAAEUAAAFIAAAASAAAAEgAAABIAAAARQAAAEUAAAFFAAACXwAAAAsAAAALAAAASAAAAEgAAABIAAAASAAAAEgAAABIAAAASAAAAEgAAABIAAAASAAAAF8AAABfAAAAXwAAAF8AAABIAAAACwAAAFEAAAFIAAAACwAAAFEAAABIAAAACwAAAFEAAAFIAAAASAAAAFEAAAJSAAADUgAAA1IAAABSAAADXwAAAEUAAAFFAAADXwAAAEUAAAFFAAADXwAAAEUAAAFFAAABXwAAAEUAAAJFAAABXwAAAFIAAAFSAAAAUgAAAV8AAABFAAABRQAAAl8AAABFAAABRQAAAV8AAABFAAADRQAAAF8AAABFAAAARQAAAF8AAABSAAABXwAAAFIAAANfAAAARQAAAEUAAABfAAAARQAAAEUAAAFfAAAARQAAAEUAAANfAAAARQAAA0UAAABfAAAAQgAAAF8AAABCAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAEgAAABIAAAATwAAAE8AAABPAAAATwAAAE8AAABPAAAAXwAAAEgAAABIAAAAXwAAAF8AAABfAAAATwAAAEgAAABPAAAARQAAAl8AAABfAAAARQAAA18AAABfAAAAXwAAAF8AAABIAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAADRQAAAl8AAABfAAAARQAAAkUAAAFIAAAARQAAAl8AAABFAAAARQAAAVAAAABfAAAAXwAAAF8AAABFAAABRQAAAUUAAANfAAAAXwAAAEUAAANIAAAAFwAAAhcAAAJfAAAARQAAA0UAAAFQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAASAAAAF8AAABRAAADXwAAAF8AAABfAAAAMgAAADIAAABIAAAASAAAAFwAAAFfAAAAAAAAAAAAAABfAAAAFwAAAg== + tiles: SAAAAEgAAABIAAAARQAAATAAAAAwAAAAMAAAAEUAAAJIAAAACwAAAEgAAABIAAAARQAAAUUAAANFAAAAXwAAAF8AAABIAAAASAAAAEUAAAAwAAAAMAAAADAAAABFAAADSAAAAEgAAABfAAAASAAAAF8AAABfAAAAXwAAAF8AAABIAAAASAAAAEgAAABFAAABRQAAAUUAAAFFAAAARQAAAkgAAABIAAAASAAAAFEAAAJFAAAARQAAAUUAAABfAAAASAAAAEgAAABIAAAACwAAAEUAAAJFAAABRQAAAEUAAAJIAAAASAAAAEgAAABIAAAARQAAAUUAAAJFAAABXwAAAAsAAAALAAAASAAAAEgAAABIAAAASAAAAEgAAABIAAAASAAAAEgAAABIAAAASAAAAF8AAABfAAAAXwAAAF8AAABIAAAACwAAAFEAAANIAAAACwAAAFEAAAJIAAAACwAAAFEAAANIAAAASAAAAFEAAANSAAABUgAAAVIAAANSAAACXwAAAEUAAANFAAAAXwAAAEUAAANFAAAAXwAAAEUAAABFAAABXwAAAEUAAABFAAADXwAAAFIAAANSAAAAUgAAAF8AAABFAAAARQAAAV8AAABFAAACRQAAAV8AAABFAAACRQAAAV8AAABFAAACRQAAAF8AAABSAAACXwAAAFIAAAFfAAAARQAAAkUAAANfAAAARQAAA0UAAABfAAAARQAAAkUAAABfAAAARQAAAEUAAAFfAAAAQgAAAF8AAABCAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAEgAAABIAAAATwAAAE8AAABPAAAATwAAAE8AAABPAAAAXwAAAEgAAABIAAAAXwAAAF8AAABfAAAATwAAAEgAAABPAAAARQAAAl8AAABfAAAARQAAA18AAABfAAAAXwAAAF8AAABIAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAACRQAAAF8AAABfAAAARQAAA0UAAANIAAAARQAAA18AAABFAAADRQAAAFAAAABfAAAAXwAAAF8AAABFAAADRQAAAEUAAAJfAAAAXwAAAEUAAAJIAAAAFwAAARcAAANfAAAARQAAAUUAAAFQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAACSAAAAF8AAABRAAACXwAAAF8AAABfAAAAMgAAADIAAABIAAAASAAAAFwAAANfAAAAAAAAAAAAAABfAAAAFwAAAw== 3,0: ind: 3,0 - tiles: RQAAAUUAAAFFAAABRQAAAEsAAAJFAAADRQAAAF8AAABfAAAAUQAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAEsAAANLAAABSwAAAEsAAABLAAAARQAAAkgAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFEAAAFFAAACRQAAAEUAAANFAAACRQAAA0gAAABIAAAAXwAAAF8AAABfAAAAXwAAAE8AAABQAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAEgAAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAJfAAAAXwAAAF8AAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAASAAAAEgAAABIAAAASAAAAEgAAAAXAAAATwAAAE8AAABfAAAASAAAAEgAAABIAAAASAAAAEgAAABIAAAARQAAAEUAAAELAAAARQAAAEUAAAFIAAAAXwAAAE8AAABPAAAARQAAA0UAAAFIAAAARQAAA0UAAANIAAAASAAAAEUAAAFFAAACRQAAA0UAAAFFAAACSAAAAF8AAABPAAAATwAAAF8AAABFAAABRQAAAEUAAANFAAADRQAAAgsAAAALAAAARQAAAEUAAAFFAAADRQAAA0gAAABfAAAATwAAAE8AAABfAAAARQAAAkUAAAFFAAACRQAAAkUAAANFAAAARQAAA0UAAAFFAAABRQAAAkUAAAJIAAAAXwAAAF8AAABfAAAARQAAA0UAAAFIAAAASAAAAEgAAABIAAAASAAAAEgAAABIAAAASAAAAEgAAABIAAAASAAAAF8AAABSAAACQgAAAEUAAAFFAAABSAAAAF8AAABfAAAAFwAAA18AAABfAAAASAAAAEgAAABIAAAACwAAAAsAAABfAAAAUgAAAl8AAABfAAAASAAAAEgAAABfAAAARQAAAEUAAAJFAAADXwAAAEgAAABIAAAAXwAAAEgAAABIAAAAXwAAAFIAAAFCAAAASAAAAEgAAABRAAAAXwAAAEUAAAJFAAABRQAAAF8AAABRAAACSAAAAEgAAABIAAAAXwAAAF8AAABSAAAAXwAAAEgAAABIAAAASAAAAF8AAABFAAAARQAAAEUAAAFfAAAAUQAAA1EAAANRAAAASAAAAFIAAAJSAAACUgAAAEIAAABIAAAASAAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAEgAAAALAAAASAAAAEgAAABfAAAAXwAAAF8AAABfAAAASAAAADoAAABIAAAARQAAAUUAAAELAAAARQAAAkUAAAILAAAAOgAAAAsAAABRAAABRQAAAkUAAAFFAAACXwAAAA== + tiles: RQAAAUUAAAFFAAACRQAAAEsAAAJFAAADRQAAAV8AAABfAAAAUQAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAEsAAANLAAAASwAAAksAAAJLAAAARQAAA0gAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFEAAAJFAAADRQAAA0UAAAFFAAAARQAAAEgAAABIAAAAXwAAAF8AAABfAAAAXwAAAE8AAABQAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAEgAAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAANfAAAAXwAAAF8AAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAASAAAAEgAAABIAAAASAAAAEgAAAAXAAADTwAAAE8AAABfAAAASAAAAEgAAABIAAAASAAAAEgAAABIAAAARQAAAUUAAAMLAAAARQAAA0UAAAFIAAAAXwAAAE8AAABPAAAARQAAAkUAAABIAAAARQAAA0UAAAJIAAAASAAAAEUAAANFAAABRQAAAkUAAAFFAAADSAAAAF8AAABPAAAATwAAAF8AAABFAAABRQAAA0UAAAFFAAABRQAAAQsAAAALAAAARQAAAEUAAAFFAAACRQAAAEgAAABfAAAATwAAAE8AAABfAAAARQAAAEUAAAJFAAADRQAAAUUAAAJFAAAARQAAAkUAAAJFAAAARQAAAkUAAAFIAAAAXwAAAF8AAABfAAAARQAAAkUAAAJIAAAASAAAAEgAAABIAAAASAAAAEgAAABIAAAASAAAAEgAAABIAAAASAAAAF8AAABSAAACQgAAAEUAAABFAAAASAAAAF8AAABfAAAAFwAAA18AAABfAAAASAAAAEgAAABIAAAACwAAAAsAAABfAAAAUgAAAl8AAABfAAAASAAAAEgAAABfAAAARQAAAkUAAAJFAAADXwAAAEgAAABIAAAAXwAAAEgAAABIAAAAXwAAAFIAAAFCAAAASAAAAEgAAABRAAABXwAAAEUAAAJFAAACRQAAAl8AAABRAAABSAAAAEgAAABIAAAAXwAAAF8AAABSAAADXwAAAEgAAABIAAAASAAAAF8AAABFAAABRQAAAkUAAABfAAAAUQAAAFEAAANRAAACSAAAAFIAAAFSAAABUgAAAUIAAABIAAAASAAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAEgAAAALAAAASAAAAEgAAABfAAAAXwAAAF8AAABfAAAASAAAADoAAABIAAAARQAAAkUAAAALAAAARQAAAUUAAAILAAAAOgAAAAsAAABRAAAARQAAAkUAAAFFAAABXwAAAA== 3,-1: ind: 3,-1 - tiles: XwAAAAAAAAAAAAAAXwAAABcAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAXwAAAEUAAAJFAAADRQAAAEUAAANFAAACRQAAAV8AAABfAAAAFwAAAV8AAABfAAAATwAAAE8AAABIAAAASAAAAEgAAABFAAACRQAAAUUAAAFFAAABRQAAAEUAAAJFAAADRQAAA0gAAABIAAAAXwAAAF8AAABfAAAARQAAAEgAAABFAAADRQAAA0UAAAJFAAAASAAAAEUAAAJFAAADRQAAAUUAAANIAAAARQAAAU8AAABfAAAAKQAAAEUAAAJFAAACRQAAAEUAAAJFAAADRQAAAUUAAAJFAAAARQAAAUUAAANFAAABRQAAAkgAAABfAAAAXwAAACkAAABFAAACRQAAAEUAAAFFAAABRQAAAEUAAABFAAAARQAAA0UAAABFAAABRQAAAkUAAAFFAAACXwAAAEUAAAJFAAACRQAAAkUAAAApAAAAKQAAAF8AAABfAAAAXwAAAF8AAABfAAAAKQAAACkAAABFAAADRQAAARcAAANIAAAARQAAAUUAAABFAAABKQAAACkAAABfAAAAXwAAAF8AAABfAAAAXwAAACkAAAApAAAARQAAAUUAAAJfAAAASAAAAEgAAABFAAACRQAAACkAAAApAAAAXwAAAF8AAABfAAAAXwAAAF8AAAApAAAAKQAAAEUAAABFAAADXwAAAEgAAAApAAAARQAAAkUAAAFFAAABSAAAAEUAAAFFAAAARQAAAUUAAABFAAAARQAAAUUAAAJFAAABSAAAAF8AAABfAAAAKQAAAEUAAABFAAABRQAAAkUAAAJFAAADRQAAAkUAAAFFAAADRQAAAEUAAANFAAACSAAAAEgAAABfAAAAXwAAAF8AAABIAAAASAAAAEgAAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAFwAAABcAAAIXAAADXwAAAFAAAABPAAAAUAAAAF8AAABcAAAAXAAAAFwAAABcAAABXAAAAU8AAABfAAAAXwAAAEUAAAFLAAABRQAAAF8AAABfAAAAUAAAAF8AAABfAAAAXAAAA1wAAANcAAABXAAAA1wAAAFPAAAAXwAAAEUAAAFFAAAASwAAAkUAAANFAAABXwAAAE8AAABfAAAAXwAAAFwAAAJcAAACXAAAAVwAAAJcAAABXwAAAF8AAABFAAAARQAAAEsAAANFAAACRQAAARcAAAJfAAAAXwAAAF8AAABcAAAAXAAAAVwAAAJcAAAAXAAAAg== + tiles: XwAAAAAAAAAAAAAAXwAAABcAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAADXwAAAEUAAANFAAACRQAAA0UAAANFAAABRQAAA18AAABfAAAAFwAAAV8AAABfAAAATwAAAE8AAABIAAAASAAAAEgAAABFAAABRQAAA0UAAAFFAAABRQAAA0UAAAJFAAAARQAAAUgAAABIAAAAXwAAAF8AAABfAAAARQAAAUgAAABFAAAARQAAAkUAAABFAAAASAAAAEUAAAFFAAACRQAAAUUAAABIAAAARQAAAk8AAABfAAAAKQAAAEUAAAJFAAADRQAAAkUAAAJFAAAARQAAA0UAAABFAAADRQAAA0UAAAFFAAACRQAAA0gAAABfAAAAXwAAACkAAABFAAACRQAAAkUAAAJFAAAARQAAAEUAAAFFAAABRQAAAUUAAABFAAADRQAAA0UAAANFAAABXwAAAEUAAAJFAAADRQAAAEUAAAIpAAAAKQAAAF8AAABfAAAAXwAAAF8AAABfAAAAKQAAACkAAABFAAADRQAAAhcAAAJIAAAARQAAAkUAAANFAAABKQAAACkAAABfAAAAXwAAAF8AAABfAAAAXwAAACkAAAApAAAARQAAA0UAAAFfAAAASAAAAEgAAABFAAABRQAAAykAAAApAAAAXwAAAF8AAABfAAAAXwAAAF8AAAApAAAAKQAAAEUAAANFAAACXwAAAEgAAAApAAAARQAAAUUAAAJFAAABSAAAAEUAAAFFAAABRQAAA0UAAANFAAABRQAAA0UAAANFAAABSAAAAF8AAABfAAAAKQAAAEUAAANFAAADRQAAAUUAAABFAAAARQAAAkUAAAFFAAACRQAAA0UAAANFAAADSAAAAEgAAABfAAAAXwAAAF8AAABIAAAASAAAAEgAAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAFwAAAxcAAAEXAAACXwAAAFAAAABPAAAAUAAAAF8AAABcAAABXAAAAFwAAAFcAAADXAAAAE8AAABfAAAAXwAAAEUAAAFLAAAARQAAAF8AAABfAAAAUAAAAF8AAABfAAAAXAAAAlwAAABcAAAAXAAAAVwAAANPAAAAXwAAAEUAAAJFAAABSwAAA0UAAAJFAAACXwAAAE8AAABfAAAAXwAAAFwAAAFcAAABXAAAA1wAAAJcAAACXwAAAF8AAABFAAAARQAAAEsAAANFAAAARQAAAxcAAAFfAAAAXwAAAF8AAABcAAADXAAAAVwAAAFcAAABXAAAAw== 2,-2: ind: 2,-2 - tiles: XwAAAF8AAABIAAAASAAAAEUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF0AAABfAAAARQAAAUUAAAJFAAACFwAAAE8AAABPAAAAXwAAAAAAAAAAAAAAXwAAAD0AAAA9AAAAPQAAAD0AAABdAAABXwAAAEUAAAJFAAABRQAAAF8AAABPAAAATwAAAF8AAAAAAAAAAAAAAF8AAAA9AAAALQAAAC0AAAAtAAAAXQAAAF8AAABFAAADRQAAA0UAAANfAAAASAAAAEgAAABfAAAAXwAAAF8AAABfAAAAPQAAAC0AAAAtAAAALQAAAF0AAANfAAAARQAAAEUAAANFAAACXwAAAF8AAABfAAAAXwAAADsAAAA7AAAAFwAAAT0AAAA9AAAAPQAAAD0AAABfAAAAFwAAA0gAAABFAAACRQAAA0UAAAJFAAAARQAAA0UAAAI7AAAAOwAAAF8AAAA9AAAAPQAAAF8AAABfAAAAPAAAABcAAANIAAAARQAAAkUAAAJFAAACRQAAA0UAAANFAAAAOwAAADsAAABfAAAAXwAAAF8AAAAXAAABPQAAADwAAAAXAAABRQAAAUUAAANFAAACXwAAAF8AAABfAAAAXwAAADsAAAA7AAAAFwAAAj0AAAA9AAAAPQAAAD0AAABfAAAAXwAAAEUAAANFAAAASAAAAF8AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAAA9AAAALQAAAC0AAAAtAAAARQAAA18AAABFAAACRQAAAUgAAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABfAAAAPQAAAC0AAAAtAAAALQAAAEUAAANfAAAARQAAA0UAAAJFAAABXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAD0AAAA9AAAAPQAAAD0AAABFAAAAXwAAAEUAAANFAAADRQAAA18AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAADFwAAAxcAAANfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAEUAAAJFAAABRQAAAkUAAABFAAACRQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABFAAABRQAAAkUAAAFFAAABRQAAAEUAAAJfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAANFAAABRQAAAEUAAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAABfAAAAXwAAAEgAAABFAAACXwAAAA== + tiles: XwAAAF8AAABIAAAASAAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF0AAABfAAAARQAAAEUAAAFFAAAAFwAAA08AAABPAAAAXwAAAAAAAAAAAAAAXwAAAD0AAAA9AAAAPQAAAD0AAABdAAACXwAAAEUAAAJFAAACRQAAAV8AAABPAAAATwAAAF8AAAAAAAAAAAAAAF8AAAA9AAAALQAAAC0AAAAtAAAAXQAAAV8AAABFAAAARQAAAEUAAAFfAAAASAAAAEgAAABfAAAAXwAAAF8AAABfAAAAPQAAAC0AAAAtAAAALQAAAF0AAAJfAAAARQAAAkUAAANFAAACXwAAAF8AAABfAAAAXwAAADsAAAA7AAAAFwAAAz0AAAA9AAAAPQAAAD0AAABfAAAAFwAAAEgAAABFAAACRQAAA0UAAAJFAAAARQAAA0UAAAA7AAAAOwAAAF8AAAA9AAAAPQAAAF8AAABfAAAAPAAAABcAAAFIAAAARQAAAUUAAANFAAAARQAAAEUAAAJFAAADOwAAADsAAABfAAAAXwAAAF8AAAAXAAADPQAAADwAAAAXAAABRQAAAUUAAANFAAACXwAAAF8AAABfAAAAXwAAADsAAAA7AAAAFwAAAj0AAAA9AAAAPQAAAD0AAABfAAAAXwAAAEUAAANFAAADSAAAAF8AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAAA9AAAALQAAAC0AAAAtAAAARQAAAV8AAABFAAACRQAAAkgAAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABfAAAAPQAAAC0AAAAtAAAALQAAAEUAAANfAAAARQAAAEUAAAFFAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAD0AAAA9AAAAPQAAAD0AAABFAAAAXwAAAEUAAAFFAAACRQAAA18AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAABFwAAABcAAAFfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAEUAAABFAAADRQAAAkUAAANFAAABRQAAAl8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABFAAABRQAAAkUAAAFFAAABRQAAAEUAAAFfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAAJFAAABRQAAAUUAAAJfAAAAXwAAAF8AAABfAAAAAAAAAAAAAABfAAAAXwAAAEgAAABFAAADXwAAAA== -2,-3: ind: -2,-3 - tiles: FwAAA1AAAAAXAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAMtAAAAFwAAAhcAAAJfAAAAVQAAAhcAAAMXAAAAFwAAAl8AAABfAAAAXwAAAF8AAABfAAAASAAAAF8AAAAXAAAALQAAABcAAAAXAAADXwAAAFUAAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABfAAAAFwAAAy0AAAAXAAACFwAAAF8AAABVAAABSAAAAEgAAABIAAAASAAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAA18AAABfAAAAXwAAAE8AAABPAAAATwAAAE8AAABPAAAAXwAAAF8AAABfAAAAUAAAAE8AAABfAAAASAAAAEUAAABFAAAARQAAAxcAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABQAAAAFwAAAkUAAAFLAAAASwAAAUsAAAEXAAABRQAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABFAAADSwAAAUgAAABIAAAAFwAAAEUAAAIXAAACTwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUsAAABFAAABXwAAAF8AAABFAAADXwAAAEUAAAFFAAABXwAAAF8AAABfAAAAXwAAAEgAAABIAAAAXwAAABcAAAAXAAACFwAAAF8AAABcAAACRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAASAAAAF8AAABIAAAASwAAAUgAAABfAAAAXAAAAkUAAAFIAAAAXwAAAEgAAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAEsAAAJFAAAAXwAAAFwAAAAXAAAAXwAAAF8AAABIAAAASAAAAF8AAABGAAABRgAAAUYAAABGAAADXwAAAEgAAABLAAADRQAAAV8AAABfAAAARQAAA0UAAAFfAAAAXwAAAF8AAABfAAAARgAAAEYAAANGAAACRgAAAl8AAABFAAAASwAAAkUAAAJfAAAASAAAAEUAAABFAAADFwAAAkUAAABFAAACFwAAAUYAAAJGAAACRgAAA0YAAABFAAACRQAAAEsAAABFAAAAXwAAAEgAAABIAAAARQAAARcAAAFFAAADRQAAARcAAAJGAAABRgAAAUYAAAFGAAABXwAAAEUAAAFLAAACRQAAAF8AAABIAAAARQAAAUUAAAFfAAAAXwAAAF8AAABfAAAARgAAA0YAAABGAAACRgAAABcAAANFAAABSwAAAEUAAAJfAAAAXwAAAA== + tiles: FwAAAlAAAAAXAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAMtAAAAFwAAAhcAAAJfAAAAVQAAAxcAAAMXAAABFwAAAV8AAABfAAAAXwAAAF8AAABfAAAASAAAAF8AAAAXAAABLQAAABcAAAMXAAACXwAAAFUAAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABfAAAAFwAAAi0AAAAXAAADFwAAA18AAABVAAACSAAAAEgAAABIAAAASAAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAl8AAABfAAAAXwAAAE8AAABPAAAATwAAAE8AAABPAAAAXwAAAF8AAABfAAAAUAAAAE8AAABfAAAASAAAAEUAAAJFAAACRQAAAhcAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABQAAAAFwAAAEUAAAJLAAAASwAAAUsAAAAXAAADRQAAA18AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABFAAADSwAAA0gAAABIAAAAFwAAAEUAAAAXAAADTwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUsAAAFFAAADXwAAAF8AAABFAAACXwAAAEUAAANFAAADXwAAAF8AAABfAAAAXwAAAEgAAABIAAAAXwAAABcAAAIXAAABFwAAA18AAABcAAADRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAASAAAAF8AAABIAAAASwAAAEgAAABfAAAAXAAAAEUAAAJIAAAAXwAAAEgAAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAEsAAAFFAAAAXwAAAFwAAAEXAAAAXwAAAF8AAABIAAAASAAAAF8AAABGAAACRgAAA0YAAAFGAAABXwAAAEgAAABLAAAARQAAAl8AAABfAAAARQAAAEUAAANfAAAAXwAAAF8AAABfAAAARgAAAkYAAAJGAAACRgAAAV8AAABFAAADSwAAAUUAAABfAAAAXwAAAEUAAAJFAAABFwAAAEUAAANFAAACFwAAAkYAAANGAAABRgAAA0YAAAJFAAADRQAAAUsAAAFFAAADXwAAAE8AAABIAAAARQAAAhcAAABFAAAARQAAARcAAAJGAAACRgAAAUYAAAJGAAADXwAAAEUAAAJLAAAARQAAAF8AAABRAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAARgAAAUYAAAFGAAABRgAAAhcAAABFAAACSwAAAEUAAABfAAAAXwAAAA== -1,-3: ind: -1,-3 - tiles: VQAAA1UAAABVAAACVQAAA1UAAAJfAAAAUgAAAFIAAAJSAAAAUgAAAlIAAAFSAAADUgAAAFIAAAJSAAABUgAAAlUAAANVAAAAVQAAAlUAAAJVAAAARQAAAVIAAAFSAAADUgAAAlIAAAFSAAABUgAAA1IAAAFSAAACUgAAA1IAAAJVAAABVQAAAlUAAANVAAAAVQAAAV8AAABSAAACUgAAAFIAAANSAAABUgAAA1IAAAJSAAAAUgAAAVIAAANSAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAAJFAAADXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAEgAAABFAAABSAAAAEUAAAFFAAABRQAAA0gAAABIAAAASAAAAEYAAANGAAADRgAAAkYAAAJGAAAASAAAAEgAAABLAAABSwAAAjoAAABLAAACSwAAA0sAAAI6AAAASwAAAksAAANGAAACRgAAAUYAAABGAAADRgAAA0sAAAJLAAABSAAAAEgAAABFAAADRQAAAEUAAAFFAAACRQAAA0UAAANFAAAARgAAAUYAAABGAAADRgAAAUYAAAJFAAADRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAACXwAAAEYAAABGAAABRgAAAkYAAAJGAAADXwAAAF8AAABcAAABXAAAAV8AAABcAAADXAAAA1wAAAJcAAAAXAAAAl8AAABfAAAAFwAAABcAAAIXAAAAXwAAAF8AAAAAAAAAXAAAAVwAAAAXAAACXAAAA1wAAANcAAACXAAAAVwAAABcAAADXwAAAEUAAANLAAADRQAAAV8AAAAAAAAAAAAAAFwAAAFcAAACXwAAAFwAAAJcAAADXAAAAVwAAABcAAAAXAAAA18AAABFAAACSwAAAUUAAAJfAAAAAAAAAAAAAABfAAAAXwAAAF8AAABcAAADXAAAAVwAAAFcAAABXAAAAlwAAAFfAAAARQAAAEsAAANFAAAAXwAAAF8AAAAAAAAASAAAAEgAAABfAAAAXAAAAVwAAAFcAAADXAAAAFwAAANfAAAAXwAAAEUAAANLAAAASAAAAEgAAABfAAAAAAAAAFEAAABIAAAAXwAAAF8AAAAXAAAAXwAAAF8AAABfAAAAXwAAAEgAAABFAAAASwAAAkgAAABIAAAAXwAAAAAAAABIAAAASAAAAEgAAABfAAAASAAAAFEAAABIAAAASAAAAF8AAABIAAAARQAAA0sAAAFIAAAASAAAAF8AAAAAAAAAXwAAAF8AAABfAAAAXwAAAEgAAABIAAAASAAAAEgAAABfAAAASAAAAEUAAAFLAAAASAAAAEgAAABfAAAAAAAAAA== + tiles: VQAAAlUAAAJVAAADVQAAAlUAAAJfAAAAUgAAAFIAAANSAAACUgAAAlIAAABSAAACUgAAAFIAAANSAAACUgAAAVUAAABVAAACVQAAA1UAAABVAAAARQAAA1IAAANSAAACUgAAAFIAAABSAAABUgAAAlIAAAFSAAACUgAAA1IAAANVAAADVQAAAFUAAAFVAAACVQAAAF8AAABSAAADUgAAAFIAAANSAAACUgAAAlIAAAJSAAACUgAAAlIAAAFSAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAABFAAABXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAUgAAABFAAACSAAAAEUAAANFAAADRQAAAEgAAABIAAAASAAAAEYAAAFGAAAARgAAA0YAAAFGAAACSAAAAEgAAABLAAABSwAAAzoAAABLAAABSwAAAUsAAAI6AAAASwAAAksAAAJGAAAARgAAA0YAAAJGAAABRgAAAksAAAJLAAADSAAAAEgAAABFAAADRQAAAkUAAANFAAABRQAAAEUAAABFAAABRgAAAEYAAANGAAABRgAAAkYAAANFAAACRQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAACXwAAAEYAAABGAAABRgAAA0YAAABGAAACXwAAAF8AAABcAAADXAAAAF8AAABcAAABXAAAAFwAAAFcAAADXAAAA18AAABfAAAAFwAAABcAAAAXAAADXwAAAF8AAAAAAAAAXAAAA1wAAAEXAAACXAAAA1wAAABcAAACXAAAAFwAAAJcAAABXwAAAEUAAAFLAAADRQAAAF8AAAAAAAAAAAAAAFwAAANcAAABXwAAAFwAAANcAAACXAAAAVwAAANcAAADXAAAAF8AAABFAAACSwAAAEUAAABfAAAAAAAAAAAAAABfAAAAXwAAAF8AAABcAAACXAAAAVwAAABcAAABXAAAA1wAAABfAAAARQAAAEsAAAFFAAADXwAAAF8AAAAAAAAAXwAAAE8AAABfAAAAXAAAA1wAAAFcAAADXAAAAFwAAAJfAAAAXwAAAEUAAAFLAAADSAAAAEgAAABfAAAAAAAAAF8AAABRAAABXwAAAF8AAAAXAAABXwAAAF8AAABfAAAAXwAAAEgAAABFAAAASwAAA0gAAABIAAAAXwAAAAAAAABfAAAAXwAAAEgAAABfAAAASAAAAFEAAANIAAAASAAAAF8AAABIAAAARQAAAksAAANIAAAASAAAAF8AAAAAAAAAXwAAAF8AAABfAAAAXwAAAEgAAABIAAAASAAAAEgAAABfAAAASAAAAEUAAAFLAAACSAAAAEgAAABfAAAAAAAAAA== 0,-3: ind: 0,-3 - tiles: UgAAAF8AAABSAAACUgAAAlIAAANSAAADUgAAAVIAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAFIAAABSAAACUgAAA1YAAAFSAAADUgAAAVIAAAFSAAACXwAAAE8AAABPAAAATwAAAF8AAABfAAAAFwAAAF8AAABSAAAAXwAAAFIAAAJSAAADUgAAAlIAAABSAAACUgAAAV8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAUgAAABFAAAARQAAAEgAAABFAAAARQAAA0UAAAIXAAABRQAAAEUAAAFFAAABRQAAA0UAAABFAAACRQAAA0UAAAI6AAAASwAAAEsAAAJLAAAAOgAAAEsAAAFLAAAAFwAAA0UAAABFAAAARQAAAUUAAAJFAAADRQAAAEUAAAFFAAADRQAAA0UAAAJFAAADRQAAAUUAAAFFAAABRQAAABcAAABFAAAARQAAA0UAAABFAAADRQAAA0UAAAJFAAAARQAAAV8AAABIAAAASAAAAEgAAABIAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXwAAAFAAAABfAAAAXwAAAAAAAAAAAAAAXwAAAEUAAAJFAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABPAAAAXwAAAF8AAAAAAAAAAAAAAF8AAAAXAAACFwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAFAAAABfAAAAAAAAAAAAAABfAAAARQAAAkUAAAMAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABRAAAAXwAAAF8AAABQAAAAXwAAAAAAAABfAAAAXwAAAEUAAABFAAADAAAAAF8AAAABAAAAAQAAAAEAAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXwAAAEoAAABFAAADRQAAAQAAAABfAAAAAQAAAAEAAAABAAAAAQAAAAEAAABfAAAAXwAAAF8AAAAAAAAAAAAAAF8AAABKAAAARQAAAToAAAAAAAAAXwAAAAEAAAABAAAAAQAAAAEAAAABAAAAXwAAAF8AAABfAAAAAAAAAAAAAABfAAAASgAAAUUAAANFAAADAAAAAF8AAAABAAAAAQAAAAEAAAABAAAAAQAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXwAAAEoAAAJFAAABRQAAAw== + tiles: UgAAAF8AAABSAAACUgAAAlIAAAFSAAABUgAAA1IAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAFIAAABSAAADUgAAA1YAAAFSAAACUgAAAVIAAAFSAAABXwAAAE8AAABPAAAATwAAAF8AAABfAAAAFwAAAV8AAABSAAADXwAAAFIAAAFSAAABUgAAAVIAAAJSAAACUgAAAV8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAkgAAABFAAADRQAAA0gAAABFAAAARQAAAUUAAAMXAAABRQAAAUUAAABFAAAARQAAAUUAAABFAAABRQAAAEUAAAE6AAAASwAAA0sAAAFLAAADOgAAAEsAAAJLAAAAFwAAA0UAAANFAAACRQAAAkUAAABFAAACRQAAAkUAAANFAAABRQAAAEUAAANFAAAARQAAAUUAAANFAAAARQAAAhcAAABFAAAARQAAA0UAAABFAAADRQAAAUUAAANFAAACRQAAAl8AAABIAAAASAAAAEgAAABIAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXwAAAFAAAABfAAAAXwAAAAAAAAAAAAAAXwAAAEUAAAFFAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABPAAAAXwAAAF8AAAAAAAAAAAAAAF8AAAAXAAADFwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAFAAAABfAAAAAAAAAAAAAABfAAAARQAAAkUAAAEAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABRAAABXwAAAF8AAABQAAAAXwAAAAAAAABfAAAAXwAAAEUAAAJFAAABAAAAAF8AAAABAAAAAQAAAAEAAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXwAAAEoAAANFAAABRQAAAwAAAABfAAAAAQAAAAEAAAABAAAAAQAAAAEAAABfAAAAXwAAAF8AAAAAAAAAAAAAAF8AAABKAAABRQAAAToAAAAAAAAAXwAAAAEAAAABAAAAAQAAAAEAAAABAAAAXwAAAF8AAABfAAAAAAAAAAAAAABfAAAASgAAAEUAAAJFAAAAAAAAAF8AAAABAAAAAQAAAAEAAAABAAAAAQAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXwAAAEoAAABFAAABRQAAAQ== 1,-3: ind: 1,-3 - tiles: XwAAAEgAAABfAAAAFwAAAxcAAAAXAAACFwAAAV8AAABFAAABRQAAAUUAAAJfAAAAXQAAAF0AAAJcAAADXAAAAF8AAABIAAAAXwAAABsAAAIbAAAAGwAAABsAAABfAAAASAAAAEUAAANFAAADXwAAABcAAABcAAADXAAAAxcAAANfAAAAXwAAAF8AAAAXAAAAFwAAARcAAAIXAAAAXwAAAEgAAABIAAAARQAAAl8AAABPAAAATwAAAE8AAABPAAAAXwAAAF8AAABfAAAAFwAAARcAAAIXAAACFwAAA18AAAAXAAABFwAAABcAAABfAAAAXwAAAF8AAABfAAAAFwAAAEUAAAFFAAACRQAAA0UAAAJFAAACRQAAAUUAAAJFAAAARQAAA0UAAAJFAAAARQAAA0UAAAJFAAADRQAAAUUAAAJFAAABRQAAAkUAAAFFAAAARQAAA0UAAABFAAABRQAAAUUAAAJFAAADRQAAAEUAAABFAAACRQAAAkUAAAJFAAACRQAAAkUAAABFAAADRQAAAkUAAABFAAABRQAAA0UAAAFFAAAARQAAA0UAAAJFAAAARQAAAEUAAABFAAADRQAAAUUAAAFFAAABRQAAAUUAAAJFAAADRQAAAEUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANfAAAAXwAAACkAAABFAAAARQAAA0UAAAFFAAADRQAAAF8AAABFAAABRQAAAEUAAAFFAAABRQAAA0UAAABFAAACRQAAAF8AAAApAAAAFwAAA18AAABfAAAAXwAAAF8AAABfAAAAFwAAAl8AAABfAAAAXwAAAF8AAABfAAAAFwAAA18AAABfAAAAXwAAAEUAAAJfAAAAAAAAAAAAAABfAAAAXAAAAFwAAANcAAADXwAAAF0AAAJdAAABXQAAA10AAAFdAAACXwAAAAAAAABFAAACXwAAAAAAAAAAAAAAXwAAAFwAAAFcAAABXAAAARcAAAJdAAADXQAAAF0AAABdAAADXQAAAF8AAAAAAAAARQAAAl8AAAAAAAAAAAAAAF8AAABcAAACXAAAAlwAAABfAAAAXQAAAl0AAAFdAAAAXQAAAV0AAAFfAAAAAAAAAEUAAABfAAAAAAAAAAAAAABfAAAAXAAAAFwAAAFcAAAAXwAAAF0AAAJdAAAAXQAAAF0AAAJdAAACXwAAAAAAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAXAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEgAAABPAAAAUAAAAF8AAABPAAAATwAAAE8AAABfAAAAXwAAAE8AAABfAAAATwAAAF8AAABfAAAATwAAAA== + tiles: XwAAAEgAAABfAAAAFwAAAhcAAAEXAAACFwAAA18AAABFAAAARQAAAkUAAABfAAAAXQAAAF0AAAFcAAABXAAAAV8AAABIAAAAXwAAABsAAAIbAAABGwAAAhsAAAFfAAAASAAAAEUAAABFAAADXwAAABcAAAFcAAABXAAAAxcAAAFfAAAAXwAAAF8AAAAXAAACFwAAABcAAAAXAAADXwAAAEgAAABIAAAARQAAAV8AAABPAAAATwAAAE8AAABPAAAAXwAAAF8AAABfAAAAFwAAARcAAAAXAAADFwAAAV8AAAAXAAADFwAAAhcAAANfAAAAXwAAAF8AAABfAAAAFwAAA0UAAANFAAADRQAAAUUAAANFAAAARQAAA0UAAABFAAADRQAAAkUAAAFFAAABRQAAA0UAAAJFAAACRQAAAEUAAAFFAAADRQAAAEUAAAJFAAACRQAAAUUAAANFAAABRQAAAEUAAABFAAABRQAAA0UAAAFFAAACRQAAAUUAAAJFAAADRQAAAkUAAAJFAAADRQAAAEUAAABFAAADRQAAAkUAAABFAAABRQAAA0UAAABFAAACRQAAAUUAAAFFAAAARQAAAEUAAAFFAAACRQAAAEUAAAFFAAAARQAAAUUAAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJfAAAAXwAAACkAAABFAAABRQAAAkUAAANFAAABRQAAAV8AAABFAAADRQAAAkUAAABFAAADRQAAAUUAAABFAAAARQAAAF8AAAApAAAAFwAAAV8AAABfAAAAXwAAAF8AAABfAAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAV8AAABfAAAAXwAAAEUAAAJfAAAAAAAAAAAAAABfAAAAXAAAAFwAAANcAAACXwAAAF0AAANdAAABXQAAAl0AAABdAAACXwAAAAAAAABFAAACXwAAAAAAAAAAAAAAXwAAAFwAAABcAAACXAAAAxcAAAFdAAADXQAAAl0AAABdAAABXQAAAF8AAAAAAAAARQAAAl8AAAAAAAAAAAAAAF8AAABcAAABXAAAAFwAAAJfAAAAXQAAAF0AAAJdAAAAXQAAAl0AAAFfAAAAAAAAAEUAAANfAAAAAAAAAAAAAABfAAAAXAAAAVwAAANcAAAAXwAAAF0AAANdAAABXQAAAF0AAAFdAAACXwAAAAAAAABFAAABXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAXAAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkgAAABPAAAAUAAAAF8AAABPAAAATwAAAE8AAABfAAAAXwAAAE8AAABfAAAATwAAAF8AAABfAAAATwAAAA== 2,-3: ind: 2,-3 - tiles: XAAAAF0AAANdAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAJFAAACRQAAA0UAAABFAAACXwAAAFwAAAMXAAACXAAAA18AAABfAAAAXwAAAE8AAABPAAAAXwAAAEUAAABFAAACRQAAAUUAAAFFAAAARQAAAhcAAAJPAAAATwAAAE8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABFAAACRQAAAUUAAAJFAAAARQAAA0UAAAIXAAAAXwAAAF8AAABfAAAAXwAAABcAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAACRQAAA0UAAABFAAACRQAAAUUAAAFFAAACFwAAAk0AAANNAAACTQAAAE0AAANNAAADTQAAABcAAANFAAADRQAAAEUAAAFFAAABRQAAAUUAAAJFAAACRQAAAhcAAANNAAABTQAAAk0AAABNAAAATQAAAU0AAAAXAAADRQAAAUUAAAFFAAADRQAAA0UAAABFAAABRQAAA0UAAAMXAAAATQAAAk0AAAJNAAABTQAAAU0AAAFNAAAAFwAAASkAAABFAAABRQAAA0UAAANFAAABXwAAAF8AAABfAAAAXwAAAF8AAAAXAAACFwAAAxcAAAMXAAABFwAAA18AAAApAAAARQAAAEUAAANFAAAARQAAA18AAABFAAABRQAAAUUAAANFAAACRQAAAEUAAABFAAAARQAAA0UAAANfAAAAXwAAAF8AAAAXAAACFwAAAhcAAABfAAAARQAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAE8AAABFAAADXwAAAAAAAABfAAAARQAAAEUAAAJFAAABXwAAAEUAAABPAAAATwAAAE8AAABPAAAATwAAAE8AAABPAAAARQAAAxcAAAEAAAAAXwAAAEUAAANFAAACRQAAA18AAABFAAACTwAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAEUAAABfAAAAAAAAAF8AAABFAAAARQAAAkUAAAJfAAAARQAAAUUAAABFAAAARQAAA0UAAANFAAADRQAAA0UAAAFFAAABXwAAAAAAAABfAAAARQAAAUUAAAJFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAAARQAAAFAAAABPAAAATwAAAE8AAABfAAAAXwAAAFAAAABfAAAAXwAAAF8AAABPAAAATwAAAEgAAABIAAAARQAAAUUAAANfAAAAXwAAAF8AAABfAAAAUQAAAVEAAANfAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: XAAAAV0AAANdAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAFFAAACRQAAAUUAAABFAAABXwAAAFwAAAMXAAABXAAAAF8AAABfAAAAXwAAAE8AAABPAAAAXwAAAEUAAAJFAAADRQAAAUUAAAJFAAABRQAAAxcAAABPAAAATwAAAE8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABFAAADRQAAAkUAAABFAAACRQAAAkUAAAIXAAABXwAAAF8AAABfAAAAXwAAABcAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAABRQAAA0UAAAFFAAACRQAAAUUAAABFAAACFwAAAE0AAANNAAABTQAAAk0AAAFNAAABTQAAABcAAAFFAAACRQAAA0UAAAFFAAABRQAAA0UAAAJFAAAARQAAARcAAAJNAAACTQAAAU0AAAJNAAADTQAAAk0AAAEXAAABRQAAAUUAAAJFAAABRQAAA0UAAABFAAABRQAAA0UAAAAXAAABTQAAAk0AAABNAAABTQAAAE0AAABNAAADFwAAAikAAABFAAAARQAAA0UAAAFFAAABXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAFwAAARcAAAAXAAACFwAAAV8AAAApAAAARQAAAEUAAAJFAAADRQAAAl8AAABFAAADRQAAA0UAAANFAAAARQAAA0UAAANFAAACRQAAAkUAAAFfAAAAXwAAAF8AAAAXAAACFwAAAhcAAANfAAAARQAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAE8AAABFAAAAXwAAAAAAAABfAAAARQAAAEUAAANFAAAAXwAAAEUAAAJPAAAATwAAAE8AAABPAAAATwAAAE8AAABPAAAARQAAABcAAAIAAAAAXwAAAEUAAAJFAAABRQAAAF8AAABFAAACTwAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAEUAAANfAAAAAAAAAF8AAABFAAAARQAAAkUAAAFfAAAARQAAAkUAAAFFAAAARQAAAEUAAABFAAADRQAAAUUAAAFFAAAAXwAAAAAAAABfAAAARQAAAEUAAANFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAABRQAAAVAAAABPAAAATwAAAE8AAABfAAAAXwAAAFAAAABfAAAAXwAAAF8AAABPAAAATwAAAEgAAABIAAAARQAAAUUAAANfAAAAXwAAAF8AAABfAAAAUQAAAFEAAAJfAAAAXwAAAF8AAABfAAAAXwAAAA== 2,2: ind: 2,2 - tiles: XwAAAF8AAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFAAAABFAAAAXwAAAF8AAAAXAAACSAAAAF8AAABfAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABIAAAASAAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAJfAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEgAAABfAAAASAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABIAAAASAAAAEgAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAEgAAABIAAAASAAAAEgAAABRAAABXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEgAAABFAAADSAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABIAAAATwAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABcAAACSAAAAFwAAAFcAAACXwAAAF8AAABfAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAAlwAAABfAAAARQAAAl8AAABcAAABXwAAAFwAAAJFAAADXAAAAF8AAABcAAABXwAAAEUAAAFFAAACXwAAAFwAAANfAAAARQAAAlwAAANFAAABXwAAAF8AAABcAAABXAAAA18AAABcAAAARQAAA0UAAAFFAAAARQAAA18AAABFAAABXwAAAFwAAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFfAAAAXwAAAFwAAAJFAAABXwAAAEUAAABFAAACRQAAA0UAAANfAAAARQAAAEgAAABFAAAAXwAAAF8AAABcAAAASAAAAEUAAABFAAACXwAAAEUAAABFAAACXwAAAA== + tiles: XwAAAF8AAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFAAAABFAAAAXwAAAF8AAAAXAAADSAAAAF8AAABfAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABIAAAASAAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAJfAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEgAAABfAAAASAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABIAAAASAAAAEgAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAEgAAABIAAAASAAAAEgAAABRAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEgAAABFAAAASAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABIAAAATwAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABcAAADSAAAAFwAAANcAAABXwAAAF8AAABfAAAARQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXAAAA1wAAAJfAAAARQAAAV8AAABcAAADXwAAAFwAAANFAAACXAAAAl8AAABcAAAAXwAAAEUAAAJFAAAAXwAAAFwAAAFfAAAARQAAAVwAAABFAAACXwAAAF8AAABcAAABXAAAAl8AAABcAAACRQAAAEUAAANFAAADRQAAAV8AAABFAAADXwAAAFwAAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJfAAAAXwAAAFwAAANFAAABXwAAAEUAAANFAAADRQAAAkUAAANfAAAARQAAAEgAAABFAAACXwAAAF8AAABcAAAASAAAAEUAAAFFAAADXwAAAEUAAAFFAAACXwAAAA== 1,2: ind: 1,2 - tiles: UAAAAEgAAABfAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAANfAAAAXwAAAFAAAABIAAAAXwAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAASAAAAF8AAABeAAAAAAAAAAAAAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEUAAAJFAAADRQAAAV8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAAAASAAAAFAAAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUAAAAEUAAANIAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAEUAAAJFAAACSAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABIAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAFwAAA18AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAAJfAAAAAAAAAAQAAAAEAAACBAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAACXwAAAAAAAAAEAAABBAAAAAQAAAIEAAACBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAFwAAAV8AAABfAAAABAAAAgQAAAIEAAABBAAAAgQAAABfAAAAFwAAAhcAAAAXAAADFwAAAhcAAANfAAAARQAAA0UAAABFAAAAXwAAAAQAAAAEAAACBAAAAAQAAAAEAAABXwAAAFAAAABQAAAAUAAAAFAAAABQAAAAFwAAA0UAAABFAAADSAAAABcAAAEEAAABBAAAAQQAAAIEAAACBAAAAl8AAAAXAAABFwAAARcAAAEXAAABFwAAAV8AAABFAAABSAAAAEUAAANfAAAABAAAAQQAAAEEAAABBAAAAAQAAAEEAAABAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAA0UAAAFFAAABXwAAAA== + tiles: UAAAAEgAAABfAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAJfAAAAXwAAAFAAAABIAAAAXwAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAASAAAAF8AAABeAAAAAAAAAAAAAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEUAAAJFAAAARQAAA18AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAAAASAAAAFAAAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUAAAAEUAAABIAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAEUAAAJFAAACSAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABIAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAFwAAAV8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAAFfAAAAAAAAAAQAAAAEAAACBAAAAQQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAAAXwAAAAAAAAAEAAABBAAAAQQAAAAEAAACBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAFwAAAl8AAABfAAAABAAAAQQAAAAEAAACBAAAAgQAAAJfAAAAFwAAABcAAAIXAAADFwAAARcAAAFfAAAARQAAAUUAAABFAAADXwAAAAQAAAIEAAACBAAAAQQAAAEEAAACXwAAAFAAAABQAAAAUAAAAFAAAABQAAAAFwAAAkUAAABFAAAASAAAABcAAAEEAAAABAAAAAQAAAAEAAACBAAAAV8AAAAXAAACFwAAARcAAAIXAAABFwAAAl8AAABFAAADSAAAAEUAAAFfAAAABAAAAQQAAAAEAAACBAAAAgQAAAEEAAACAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAEUAAAJFAAADXwAAAA== 0,-4: ind: 0,-4 - tiles: UgAAA18AAABSAAACUgAAAVIAAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFIAAABfAAAAXwAAABcAAAFfAAAAUgAAAlIAAABSAAADXwAAAE8AAABfAAAAXwAAAF8AAAAmAAAAJgAAACYAAAAmAAAAJgAAACYAAAAmAAAAXwAAAFIAAANSAAACUgAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAAFIAAAJSAAAAUgAAA1IAAAJSAAACUgAAAUUAAANSAAABUgAAAVIAAAFfAAAATwAAAF8AAABfAAAAXwAAAFIAAAMmAAAAJgAAAFIAAAMmAAAAJgAAACYAAABfAAAAUgAAAFIAAAFSAAABXwAAAE8AAABfAAAAXwAAAF8AAABFAAACXwAAAF8AAAAXAAABXwAAAF8AAABfAAAAXwAAAFIAAABSAAABUgAAAl8AAABfAAAAXwAAAFAAAABQAAAAUgAAAF8AAAAXAAAAFwAAAhcAAAJSAAABUgAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAUAAAAFIAAANfAAAAFwAAAxcAAAEXAAACUgAAAFIAAABfAAAAFwAAA08AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAADXwAAAF8AAAAXAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABPAAAAUQAAAV8AAABfAAAAUgAAAFIAAAFSAAADUgAAAlIAAAFSAAAAUgAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFIAAABSAAACUgAAAVIAAAJSAAADUgAAAFIAAAJFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAABUgAAAFIAAABSAAAAUgAAAFIAAAJSAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAARQAAA18AAABfAAAARQAAAl8AAABFAAADXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAEUAAAFfAAAAUgAAAlIAAAFSAAABUgAAAlIAAABSAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABSAAAAXwAAAFIAAANSAAACUgAAAVIAAABSAAACUgAAAUgAAABfAAAASAAAAEUAAAJIAAAAXwAAAF8AAABFAAABUgAAAlIAAANSAAADVgAAAFIAAANSAAABUgAAAVIAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: UgAAAl8AAABSAAAAUgAAAFIAAAFfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFIAAAJfAAAAXwAAABcAAAFfAAAAUgAAAlIAAANSAAAAXwAAAE8AAABfAAAAXwAAAF8AAAAmAAAAJgAAACYAAAAmAAAAJgAAACYAAAAmAAAAXwAAAFIAAABSAAAAUgAAAl8AAABfAAAAXwAAAF8AAABfAAAAUgAAA1IAAAJSAAAAUgAAAlIAAAJSAAAAUgAAAkUAAAJSAAABUgAAA1IAAABfAAAATwAAAF8AAABfAAAAXwAAAFIAAAAmAAAAJgAAAFIAAAAmAAAAJgAAACYAAABfAAAAUgAAAlIAAAFSAAABXwAAAE8AAABfAAAAXwAAAF8AAABFAAAAXwAAAF8AAAAXAAABXwAAAF8AAABfAAAAXwAAAFIAAAJSAAADUgAAAl8AAABfAAAAXwAAAFAAAABQAAAAUgAAA18AAAAXAAACFwAAAhcAAAFSAAAAUgAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAUAAAAFIAAAFfAAAAFwAAAxcAAAIXAAAAUgAAAFIAAAJfAAAAFwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAADXwAAAF8AAAAXAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABPAAAAUQAAA18AAABfAAAAUgAAAFIAAABSAAADUgAAAVIAAAJSAAABUgAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFIAAAFSAAACUgAAAVIAAABSAAAAUgAAAFIAAAJFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAACUgAAAVIAAAJSAAABUgAAAFIAAABSAAACXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAARQAAAV8AAABfAAAARQAAAF8AAABFAAABXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAEUAAANfAAAAUgAAA1IAAABSAAACUgAAA1IAAAJSAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFSAAACXwAAAFIAAANSAAABUgAAAVIAAAJSAAADUgAAA0gAAABfAAAASAAAAEUAAANIAAAAXwAAAF8AAABFAAACUgAAAVIAAAJSAAADVgAAAFIAAAJSAAAAUgAAAVIAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== 1,-4: ind: 1,-4 - tiles: XwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABIAAAARQAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAAASAAAAEUAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAFFAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAEUAAAJFAAABRQAAAUUAAABFAAACRQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAABFAAADRQAAA0UAAABFAAADRQAAA0UAAANfAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAADRQAAAUUAAAFFAAADRQAAAUUAAAJIAAAAXwAAAF4AAABfAAAAXgAAAAAAAAAAAAAAAAAAAF8AAABFAAAARQAAA0UAAAFfAAAAXwAAAF8AAABfAAAAFwAAA18AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABfAAAARQAAAkUAAANFAAADXwAAAF0AAAJdAAACXQAAAV0AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAACRQAAA18AAABdAAABXQAAAl0AAAJdAAADXwAAAF8AAABfAAAATwAAAE8AAABPAAAATwAAAF8AAABFAAABRQAAAkUAAAJfAAAAXQAAAF0AAAJdAAADXQAAAE8AAABfAAAAXwAAAF8AAAAXAAADXwAAAF8AAAAXAAAARQAAAkUAAAFIAAAAXwAAAF0AAAJdAAADXQAAAF0AAANfAAAAXwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAEgAAABFAAACRQAAAl8AAABcAAABXAAAAVwAAAJcAAAAXwAAAF8AAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAA0UAAANfAAAAXAAAAVwAAABcAAAAXAAAA18AAABPAAAATwAAAF8AAABfAAAAFwAAAEgAAABfAAAARQAAA0UAAANFAAAAXwAAAFwAAAFcAAACXAAAAlwAAAFfAAAATwAAAE8AAABfAAAAXwAAAF8AAABIAAAAXwAAAEUAAAFFAAADRQAAAV8AAABcAAAAXAAAA1wAAAJcAAABXwAAADQAAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABFAAAARQAAA0UAAAJfAAAAXQAAAV0AAABcAAACXAAAAg== + tiles: XwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABIAAAARQAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAABSAAAAEUAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAFFAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAEUAAAJFAAACRQAAAEUAAAJFAAABRQAAAV8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAAFFAAACRQAAA0UAAANFAAADRQAAAkUAAAFfAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAADRQAAAEUAAAFFAAADRQAAAEUAAAJIAAAAXwAAAF4AAABfAAAAXgAAAAAAAAAAAAAAAAAAAF8AAABFAAABRQAAA0UAAABfAAAAXwAAAF8AAABfAAAAFwAAAV8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABfAAAARQAAAEUAAANFAAADXwAAAF0AAABdAAACXQAAA10AAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAAARQAAAV8AAABdAAADXQAAAF0AAAJdAAAAXwAAAF8AAABfAAAATwAAAE8AAABPAAAATwAAAF8AAABFAAAARQAAAkUAAABfAAAAXQAAAl0AAABdAAAAXQAAAE8AAABfAAAAXwAAAF8AAAAXAAABXwAAAF8AAAAXAAABRQAAAEUAAANIAAAAXwAAAF0AAABdAAACXQAAAF0AAAJfAAAAXwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAEgAAABFAAABRQAAAF8AAABcAAADXAAAAFwAAAJcAAACXwAAAF8AAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAkUAAABfAAAAXAAAAlwAAAFcAAABXAAAAl8AAABPAAAATwAAAF8AAABfAAAAFwAAAUgAAABfAAAARQAAAEUAAABFAAADXwAAAFwAAAFcAAABXAAAA1wAAAJfAAAATwAAAE8AAABfAAAAXwAAAF8AAABIAAAAXwAAAEUAAAFFAAAARQAAAl8AAABcAAABXAAAA1wAAANcAAAAXwAAADQAAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABFAAABRQAAAEUAAAFfAAAAXQAAA10AAAJcAAACXAAAAA== 2,-4: ind: 2,-4 - tiles: XwAAAF8AAAAAAAAAAAAAAAAAAABfAAAARQAAAUUAAAFFAAABXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAEgAAABfAAAAAAAAAF4AAABeAAAAXwAAAEUAAABFAAAARQAAA18AAABFAAABXwAAAF8AAABfAAAAXwAAAF8AAABFAAABXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAUUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAANFAAADFwAAAkUAAAFFAAACRQAAAkUAAAFFAAADSAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAAASAAAABcAAAJFAAABRQAAAkUAAABFAAAARQAAAUgAAAAXAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADSAAAAEUAAAMXAAABRQAAA0UAAABFAAABRQAAAEgAAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACXwAAAF8AAABfAAAAXwAAABcAAABfAAAAXwAAABcAAANfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAAARQAAAV0AAABdAAABXQAAAV8AAABfAAAAXwAAAEUAAAJFAAACRQAAAwsAAABfAAAATwAAABcAAAFFAAABRQAAAEUAAANdAAACXQAAAV0AAANfAAAATwAAAF8AAABFAAAARQAAA0UAAANFAAAAXwAAAEgAAABfAAAAXwAAABcAAABfAAAAXQAAA10AAAJdAAABXwAAAF8AAABfAAAACwAAAEUAAANFAAAARQAAAF8AAABFAAAAXwAAAFAAAABPAAAAFwAAA10AAAFdAAADXQAAAV8AAABfAAAAXwAAAEUAAAJFAAAARQAAAkUAAANfAAAARQAAAF8AAABPAAAATwAAABcAAAFcAAACXAAAAVwAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAFEAAAAXAAADXAAAAVwAAAJcAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAAXwAAAE8AAABPAAAAFwAAAlwAAABcAAADXAAAAl8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAAAXAAAAFwAAAJfAAAAXwAAAF8AAABfAAAASAAAAEgAAABfAAAARQAAAUUAAAJFAAACRQAAAEUAAABfAAAAXAAAAl0AAAFdAAABXwAAAE8AAABPAAAAXwAAAEgAAABfAAAAXwAAAEUAAABFAAAARQAAAUUAAAJFAAADXwAAAA== + tiles: XwAAAF8AAAAAAAAAAAAAAAAAAABfAAAARQAAAkUAAANFAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAEgAAABfAAAAAAAAAF4AAABeAAAAXwAAAEUAAAJFAAABRQAAA18AAABFAAADXwAAAF8AAABfAAAAXwAAAF8AAABFAAABXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAkUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAANFAAABFwAAA0UAAAFFAAACRQAAAUUAAAJFAAABSAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAADSAAAABcAAAJFAAACRQAAAUUAAANFAAADRQAAA0gAAAAXAAACXwAAAF8AAABfAAAAXwAAAF8AAABFAAAASAAAAEUAAAMXAAAARQAAA0UAAAJFAAACRQAAAkgAAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADXwAAAF8AAABfAAAAXwAAABcAAAFfAAAAXwAAABcAAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAAARQAAA10AAAFdAAADXQAAAF8AAABfAAAAXwAAAEUAAABFAAACRQAAAgsAAABfAAAATwAAABcAAAJFAAACRQAAAkUAAAJdAAACXQAAAF0AAABfAAAATwAAAF8AAABFAAACRQAAAEUAAAFFAAADXwAAAEgAAABfAAAAXwAAABcAAANfAAAAXQAAAl0AAAJdAAABXwAAAF8AAABfAAAACwAAAEUAAANFAAABRQAAAV8AAABFAAADXwAAAFAAAABPAAAAFwAAAF0AAANdAAAAXQAAAF8AAABfAAAAXwAAAEUAAABFAAABRQAAAkUAAABfAAAARQAAAF8AAABPAAAATwAAABcAAABcAAACXAAAAFwAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAFEAAAEXAAABXAAAAVwAAANcAAACXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAAXwAAAE8AAABPAAAAFwAAAlwAAABcAAABXAAAAV8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAAAXAAAAlwAAANfAAAAXwAAAF8AAABfAAAASAAAAEgAAABfAAAARQAAAkUAAABFAAACRQAAA0UAAAJfAAAAXAAAAF0AAAFdAAAAXwAAAE8AAABPAAAAXwAAAEgAAABfAAAAXwAAAEUAAAFFAAADRQAAAkUAAAJFAAACXwAAAA== -1,-4: ind: -1,-4 - tiles: JgAAACYAAAAmAAAAJgAAABcAAAFfAAAAJgAAACYAAAAmAAAAJgAAACYAAABfAAAAUgAAAFIAAANSAAADUgAAAV8AAABfAAAARQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAABXwAAAEUAAABFAAACXwAAAF8AAAAmAAAAJgAAACYAAAAmAAAAJgAAACYAAAAmAAAAJgAAACYAAAAmAAAAJgAAACYAAAAmAAAAJgAAACYAAAAmAAAAUgAAAVIAAANSAAACUgAAAVIAAANSAAADUgAAAFIAAANSAAADUgAAAlIAAANSAAAAUgAAAVIAAAFSAAAAUgAAAVIAAANSAAADJgAAACYAAABSAAACJgAAACYAAABSAAADJgAAACYAAABSAAADJgAAACYAAABSAAAAJgAAACYAAABFAAACRQAAAF8AAABfAAAARQAAAl8AAABfAAAARQAAAkUAAAJfAAAARQAAA18AAABfAAAARQAAA18AAABfAAAAUgAAAlIAAAJfAAAAUgAAAVIAAAJfAAAAUgAAAlIAAANfAAAAUgAAAFIAAAJfAAAAUgAAAlIAAAJfAAAAUgAAA1IAAAFSAAACXwAAAFIAAANSAAABXwAAAFIAAABSAAABXwAAAFIAAAJSAAABXwAAAFIAAAFSAAADXwAAAFIAAAFFAAACRQAAAl8AAABfAAAAUgAAA18AAABfAAAAUgAAAV8AAABfAAAAUgAAAV8AAAAXAAABUgAAAl8AAAAXAAABUgAAAlIAAABSAAABUgAAAFIAAANSAAABUgAAA1IAAABSAAAAUgAAAVIAAANSAAADUgAAA1IAAANSAAADUgAAAFIAAANSAAABUgAAAVIAAAFSAAABUgAAAFIAAABCAAAAUgAAAlIAAAJSAAADUgAAAFIAAANSAAADUgAAA0IAAABSAAAAUgAAAVIAAANSAAABUgAAAFIAAAFSAAABUgAAAVIAAAFSAAADUgAAAFIAAAJSAAAAUgAAAVIAAANSAAACXwAAAF8AAABFAAAAXwAAAF8AAABfAAAARQAAAUUAAAJFAAADXwAAAF8AAABFAAABXwAAAF8AAABFAAAARQAAAFUAAANVAAADVQAAA1UAAANVAAACXwAAAEUAAANFAAAARQAAAl8AAABSAAABUgAAAVIAAAFfAAAARQAAA0UAAANVAAABVQAAAFUAAAFVAAACVQAAAl8AAABSAAACUgAAA1IAAAFSAAABUgAAA1IAAAJSAAADUgAAAVIAAAFSAAAAVQAAAlUAAAFVAAACVQAAAlUAAABfAAAAUgAAAFIAAAFSAAABUgAAAFIAAANSAAABUgAAA1IAAAFSAAABUgAAAg== + tiles: JgAAACYAAAAmAAAAJgAAABcAAAJfAAAAJgAAACYAAAAmAAAAJgAAACYAAABfAAAAUgAAA1IAAAJSAAACUgAAAF8AAABfAAAARQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAADXwAAAEUAAAFFAAABXwAAAF8AAAAmAAAAJgAAACYAAAAmAAAAJgAAACYAAAAmAAAAJgAAACYAAAAmAAAAJgAAACYAAAAmAAAAJgAAACYAAAAmAAAAUgAAAlIAAAFSAAADUgAAAVIAAAFSAAADUgAAAlIAAANSAAABUgAAAFIAAANSAAADUgAAAFIAAANSAAAAUgAAA1IAAAJSAAAAJgAAACYAAABSAAAAJgAAACYAAABSAAAAJgAAACYAAABSAAADJgAAACYAAABSAAABJgAAACYAAABFAAACRQAAAV8AAABfAAAARQAAAF8AAABfAAAARQAAAEUAAAFfAAAARQAAAl8AAABfAAAARQAAA18AAABfAAAAUgAAAFIAAAFfAAAAUgAAAFIAAABfAAAAUgAAAFIAAAJfAAAAUgAAAlIAAAFfAAAAUgAAAFIAAAJfAAAAUgAAAVIAAANSAAADXwAAAFIAAABSAAAAXwAAAFIAAAJSAAACXwAAAFIAAAJSAAADXwAAAFIAAANSAAADXwAAAFIAAAFFAAACRQAAA18AAABfAAAAUgAAA18AAABfAAAAUgAAAF8AAABfAAAAUgAAAV8AAAAXAAADUgAAAF8AAAAXAAAAUgAAAFIAAANSAAABUgAAAVIAAABSAAADUgAAAlIAAANSAAADUgAAA1IAAAJSAAACUgAAAlIAAAFSAAADUgAAAlIAAABSAAAAUgAAAFIAAAJSAAACUgAAAlIAAAFCAAAAUgAAAlIAAANSAAABUgAAA1IAAABSAAADUgAAAkIAAABSAAAAUgAAAlIAAAFSAAACUgAAAFIAAAJSAAADUgAAAlIAAABSAAADUgAAAVIAAAJSAAACUgAAAVIAAAJSAAABXwAAAF8AAABFAAABXwAAAF8AAABfAAAARQAAAkUAAAJFAAADXwAAAF8AAABFAAACXwAAAF8AAABFAAAARQAAAFUAAAJVAAADVQAAAlUAAAJVAAABXwAAAEUAAANFAAACRQAAAV8AAABSAAADUgAAA1IAAANfAAAARQAAAkUAAAFVAAABVQAAAlUAAANVAAACVQAAAl8AAABSAAABUgAAAlIAAAJSAAADUgAAAFIAAAFSAAAAUgAAAlIAAANSAAACVQAAAFUAAABVAAADVQAAAlUAAABfAAAAUgAAAVIAAAJSAAADUgAAA1IAAAFSAAACUgAAAFIAAAJSAAAAUgAAAQ== -2,-4: ind: -2,-4 - tiles: FwAAAxcAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAAAUgAAAlIAAAFfAAAAFwAAAkgAAABfAAAAXwAAAEgAAABfAAAAXwAAAFIAAANSAAADUgAAAFIAAAFfAAAAXwAAAEUAAAJfAAAAXwAAAF8AAABfAAAASAAAAF8AAABIAAAASAAAAFIAAANSAAACUgAAAVIAAAFSAAABXwAAACYAAAAmAAAAJgAAACYAAAAmAAAAXwAAAF8AAABfAAAAUAAAAF8AAABSAAAAXwAAAF8AAABfAAAAUgAAAUUAAAMmAAAAUgAAAlIAAAFSAAACUgAAAF4AAABfAAAATwAAAFAAAABfAAAAUgAAAFIAAABXAAAAUgAAAlIAAANfAAAAJgAAACYAAAAmAAAAJgAAACYAAABfAAAAXwAAAE8AAABQAAAATwAAAFIAAAFfAAAAUgAAAF8AAABSAAAAXwAAAF8AAABFAAADXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAUAAAAF8AAABSAAABUgAAAlIAAAFSAAAAUgAAAl8AAABdAAACXQAAA10AAABdAAABXwAAAE8AAABfAAAAXwAAABcAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXQAAAV0AAANdAAABXQAAAUUAAAJPAAAATwAAAF8AAABIAAAAXwAAAEgAAABIAAAASAAAAF8AAABPAAAAXwAAAF0AAAFdAAAAXQAAAl0AAABfAAAATwAAAE8AAABfAAAASAAAAEgAAABIAAAASAAAAEgAAABfAAAATwAAAF8AAABdAAABXQAAAF0AAABdAAADXwAAAF8AAABfAAAAXwAAAEgAAABIAAAASAAAAFEAAAFIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAAXwAAAF8AAABIAAAASAAAAEgAAABIAAAASAAAAF8AAABfAAAAUQAAAl8AAABfAAAAXwAAAF8AAAAXAAABTwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAE8AAABPAAAANAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAASAAAAE8AAABPAAAAXwAAAFUAAAFfAAAAFwAAAV8AAABfAAAASAAAAEgAAABfAAAASAAAAEgAAABfAAAAFwAAAF8AAABfAAAAFwAAA18AAABVAAACFwAAARcAAAMXAAAAXwAAAEgAAABfAAAAXwAAAF8AAABIAAAAXwAAABcAAAAtAAAAXwAAABcAAANfAAAAVQAAAQ== + tiles: FwAAAhcAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAACUgAAA1IAAAJfAAAAFwAAAkgAAABfAAAAXwAAAEgAAABfAAAAXwAAAFIAAABSAAADUgAAAVIAAAFfAAAAXwAAAEUAAANfAAAAXwAAAF8AAABfAAAASAAAAF8AAABIAAAASAAAAFIAAABSAAAAUgAAAlIAAABSAAABXwAAACYAAAAmAAAAJgAAACYAAAAmAAAAXwAAAF8AAABfAAAAUAAAAF8AAABSAAACXwAAAF8AAABfAAAAUgAAAEUAAAMmAAAAUgAAAlIAAAJSAAABUgAAA14AAABfAAAATwAAAFAAAABfAAAAUgAAAFIAAAJXAAABUgAAA1IAAAJfAAAAJgAAACYAAAAmAAAAJgAAACYAAABfAAAAXwAAAE8AAABQAAAATwAAAFIAAANfAAAAUgAAA18AAABSAAADXwAAAF8AAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAUAAAAF8AAABSAAAAUgAAAlIAAANSAAADUgAAAV8AAABdAAAAXQAAAV0AAABdAAACXwAAAE8AAABfAAAAXwAAABcAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXQAAAl0AAANdAAACXQAAAkUAAAJPAAAATwAAAF8AAABIAAAAXwAAAEgAAABIAAAASAAAAF8AAABPAAAAXwAAAF0AAANdAAAAXQAAAF0AAAFfAAAATwAAAE8AAABfAAAASAAAAEgAAABIAAAASAAAAEgAAABfAAAATwAAAF8AAABdAAAAXQAAAl0AAABdAAAAXwAAAF8AAABfAAAAXwAAAEgAAABIAAAASAAAAFEAAAJIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAAXwAAAF8AAABIAAAASAAAAEgAAABIAAAASAAAAF8AAABfAAAAUQAAAF8AAABfAAAAXwAAAF8AAAAXAAADTwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAE8AAABPAAAANAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAASAAAAE8AAABPAAAAXwAAAFUAAAFfAAAAFwAAAl8AAABfAAAASAAAAEgAAABfAAAASAAAAEgAAABfAAAAFwAAAV8AAABfAAAAFwAAAF8AAABVAAAAFwAAAhcAAAIXAAABXwAAAEgAAABfAAAAXwAAAF8AAABIAAAAXwAAABcAAAMtAAAAXwAAABcAAANfAAAAVQAAAg== -1,-5: ind: -1,-5 - tiles: RQAAAkUAAABfAAAASAAAAF8AAABfAAAAXwAAAE8AAABQAAAATwAAAE8AAABfAAAAXwAAAE8AAABPAAAATwAAAEgAAABFAAAAXwAAAF8AAABPAAAASAAAAEgAAABPAAAAUAAAAEgAAABfAAAASAAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAEgAAABIAAAATwAAAE8AAABfAAAAXwAAAE8AAABfAAAAXwAAAE8AAABfAAAARQAAA0UAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABFAAACXwAAAFAAAABQAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAAUAAAAEgAAABfAAAAXwAAAF8AAABQAAAATwAAAF8AAABQAAAAUAAAAF8AAAAXAAACFwAAAxcAAAJfAAAAXwAAAF8AAABIAAAAUQAAAF8AAABfAAAAUAAAAE8AAABfAAAAXwAAAF8AAABfAAAAUAAAAFAAAAAXAAADXwAAAE8AAABfAAAASAAAAFEAAANfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABRAAABTwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABQAAAAUQAAARcAAAFfAAAAXwAAAF8AAABfAAAAXwAAABcAAANfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAAAXwAAAE8AAABPAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUQAAAk8AAABfAAAARQAAAl8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAABcAAAJfAAAAJgAAACYAAAAmAAAAJgAAACYAAABfAAAAXwAAAEUAAAJfAAAAXwAAAF8AAABfAAAAUgAAA1IAAABSAAACUgAAAyYAAAAXAAAAFwAAAyYAAAAXAAAAXwAAACYAAAAmAAAAJgAAACYAAAAmAAAAXwAAAFIAAABKAAAASgAAAkoAAAImAAAAFwAAABcAAAEmAAAAFwAAAl8AAAAmAAAAJgAAACYAAAAmAAAAJgAAAF8AAABSAAACSgAAAEoAAANKAAABJgAAABcAAAIXAAABJgAAABcAAAJfAAAAJgAAACYAAAAmAAAAJgAAACYAAABfAAAAUgAAAkoAAAJKAAABSgAAAQ== + tiles: RQAAAkUAAAFfAAAASAAAAF8AAABfAAAAXwAAAE8AAABQAAAATwAAAE8AAABfAAAAXwAAAE8AAABPAAAATwAAAEgAAABFAAABXwAAAF8AAABPAAAASAAAAEgAAABPAAAAUAAAAEgAAABfAAAASAAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAEgAAABIAAAATwAAAE8AAABfAAAAXwAAAE8AAABfAAAAXwAAAE8AAABfAAAARQAAA0UAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABFAAACXwAAAFAAAABQAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAAUAAAAEgAAABfAAAAXwAAAF8AAABQAAAATwAAAF8AAABQAAAAUAAAAF8AAAAXAAAAFwAAARcAAABfAAAAXwAAAF8AAABIAAAAUQAAA18AAABfAAAAUAAAAE8AAABfAAAAXwAAAF8AAABfAAAAUAAAAFAAAAAXAAAAXwAAAE8AAABfAAAASAAAAFEAAANfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABRAAACTwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABQAAAAUQAAABcAAANfAAAAXwAAAF8AAABfAAAAXwAAABcAAAJfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAADXwAAAE8AAABPAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUQAAAE8AAABfAAAARQAAAl8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAABcAAAFfAAAAJgAAACYAAAAmAAAAJgAAACYAAABfAAAAXwAAAEUAAAFfAAAAXwAAAF8AAABfAAAAUgAAA1IAAAJSAAACUgAAACYAAAAXAAABFwAAASYAAAAXAAAAXwAAACYAAAAmAAAAJgAAACYAAAAmAAAAXwAAAFIAAAJKAAABSgAAA0oAAAImAAAAFwAAARcAAAEmAAAAFwAAAl8AAAAmAAAAJgAAACYAAAAmAAAAJgAAAF8AAABSAAADSgAAA0oAAAJKAAAAJgAAABcAAAMXAAAAJgAAABcAAABfAAAAJgAAACYAAAAmAAAAJgAAACYAAABfAAAAUgAAA0oAAAJKAAABSgAAAg== -2,-5: ind: -2,-5 - tiles: XwAAACYAAAAmAAAAJgAAAFIAAAFSAAACUgAAA1IAAABSAAAAUgAAAV8AAABSAAABUgAAAVIAAANSAAABRQAAA18AAAAmAAAAJgAAACYAAABSAAABUgAAAlIAAAJSAAAAUgAAAVIAAANfAAAAUgAAAVIAAANSAAACUgAAAUUAAAFfAAAAJgAAACYAAAAmAAAAUgAAAFIAAAFSAAACUgAAAFIAAAJSAAACXwAAAFIAAANSAAADUgAAA1IAAAFFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAAVIAAAFSAAACUgAAAF8AAABSAAADUgAAA1IAAABSAAABRQAAA1IAAANSAAADUgAAAVIAAAFSAAAAXwAAAFIAAAFSAAABUgAAA1IAAAJfAAAAUgAAAFIAAANSAAADUgAAAEUAAAJSAAADUgAAAlIAAAFSAAACUgAAAV8AAABfAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAV8AAABfAAAAUgAAAlIAAAJSAAACUgAAAVIAAABFAAABUgAAAlIAAABSAAADUgAAAVIAAAJSAAACUgAAAFIAAAFSAAACXwAAAF8AAABfAAAARQAAAV8AAABfAAAAXwAAAFIAAAJSAAABUgAAAFIAAABSAAAAUgAAAVIAAAJSAAABUgAAA18AAABVAAAAVQAAAVUAAANVAAACVQAAAV8AAABSAAAAUgAAA1IAAABSAAACUgAAAVIAAAFSAAACUgAAAFIAAAFfAAAAVQAAAFUAAANVAAAAVQAAAFUAAAJfAAAAUgAAA1IAAABSAAACUgAAA1IAAAJSAAABUgAAA1IAAABSAAADXwAAAFUAAANVAAACVQAAA1UAAAJVAAADXwAAAFIAAANSAAACUgAAAFIAAANSAAABUgAAA1IAAAFSAAADUgAAA0UAAABfAAAAFwAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADXwAAAF8AAABfAAAAXwAAAFEAAAFfAAAAXwAAAEgAAABRAAACTwAAAE8AAABPAAAAXwAAAF8AAABSAAACUgAAAFIAAANfAAAAJgAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAE8AAABPAAAATwAAAF8AAABfAAAAUgAAAFIAAAJSAAADXwAAABcAAAJfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABXwAAAF8AAAAXAAACSAAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAEgAAABfAAAAXwAAAF8AAABSAAADUgAAAVIAAABfAAAAFwAAAQ== + tiles: XwAAACYAAAAmAAAAJgAAAFIAAAFSAAADUgAAA1IAAANSAAAAUgAAA18AAABSAAAAUgAAA1IAAAJSAAABRQAAAl8AAAAmAAAAJgAAACYAAABSAAADUgAAA1IAAAFSAAAAUgAAA1IAAAJfAAAAUgAAAFIAAAJSAAABUgAAAEUAAAFfAAAAJgAAACYAAAAmAAAAUgAAAFIAAANSAAACUgAAAFIAAAFSAAADXwAAAFIAAANSAAABUgAAAVIAAAJFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAAVIAAABSAAADUgAAA18AAABSAAAAUgAAA1IAAABSAAADRQAAA1IAAABSAAACUgAAA1IAAANSAAAAXwAAAFIAAANSAAAAUgAAA1IAAAJfAAAAUgAAAlIAAAJSAAABUgAAA0UAAAJSAAAAUgAAA1IAAANSAAACUgAAAF8AAABfAAAARQAAA18AAABfAAAAXwAAAF8AAABfAAAARQAAAF8AAABfAAAAUgAAAFIAAAJSAAABUgAAAlIAAAJFAAACUgAAA1IAAAFSAAAAUgAAA1IAAAFSAAABUgAAA1IAAAJSAAACXwAAAF8AAABfAAAARQAAAF8AAABfAAAAXwAAAFIAAANSAAACUgAAA1IAAAFSAAABUgAAAlIAAAJSAAADUgAAAF8AAABVAAAAVQAAAlUAAANVAAACVQAAA18AAABSAAACUgAAAFIAAABSAAABUgAAA1IAAABSAAADUgAAAFIAAABfAAAAVQAAAVUAAABVAAACVQAAAFUAAABfAAAAUgAAAFIAAAFSAAADUgAAA1IAAABSAAABUgAAAVIAAAFSAAACXwAAAFUAAABVAAACVQAAAVUAAAFVAAABXwAAAFIAAAFSAAAAUgAAAFIAAAJSAAAAUgAAAVIAAAJSAAACUgAAAkUAAANfAAAAFwAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACXwAAAF8AAABfAAAAXwAAAFEAAANfAAAAXwAAAEgAAABRAAACTwAAAE8AAABPAAAAXwAAAF8AAABSAAACUgAAA1IAAANfAAAAJgAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAE8AAABPAAAATwAAAF8AAABfAAAAUgAAA1IAAANSAAAAXwAAABcAAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACXwAAAF8AAAAXAAAASAAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAEgAAABfAAAAXwAAAF8AAABSAAACUgAAAVIAAABfAAAAFwAAAg== 0,-5: ind: 0,-5 - tiles: XwAAAAAAAAAAAAAATwAAAAAAAABfAAAAXwAAAE8AAABfAAAAAAAAAAAAAABfAAAAXwAAAF0AAABdAAADXQAAAl8AAAAAAAAAAAAAAE8AAAAAAAAAXwAAAF8AAABPAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAABPAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAABfAAAAUAAAAFAAAABQAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABIAAAAXwAAAEgAAABIAAAASAAAAF8AAABfAAAAXwAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAF8AAABQAAAAUAAAAFAAAABfAAAAXwAAAF8AAAAAAAAAXwAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAABfAAAAXgAAAF8AAABQAAAATwAAAFAAAABQAAAAUAAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFEAAANQAAAAUAAAAF8AAABfAAAAFwAAAV8AAABIAAAAXwAAAF4AAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAE8AAABPAAAAXwAAAF8AAABfAAAASAAAAF8AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAAV8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAFIAAANfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABPAAAAXwAAAEgAAABSAAAAXwAAAFIAAABSAAABUgAAAF8AAABPAAAAXwAAAFEAAANfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABIAAAAUgAAAF8AAABSAAABQgAAAFIAAANfAAAATwAAAEgAAABIAAAAUQAAAE8AAABRAAADUQAAAF8AAABfAAAASAAAAA== + tiles: XwAAAAAAAAAAAAAATwAAAAAAAABfAAAAXwAAAE8AAABfAAAAAAAAAAAAAABfAAAAXwAAAF0AAANdAAAAXQAAAF8AAAAAAAAAAAAAAE8AAAAAAAAAXwAAAF8AAABPAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAABPAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAABfAAAAUAAAAFAAAABQAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABIAAAAXwAAAEgAAABIAAAASAAAAF8AAABfAAAAXwAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAF8AAABQAAAAUAAAAFAAAABfAAAAXwAAAF8AAAAAAAAAXwAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAANfAAAAXgAAAF8AAABQAAAATwAAAFAAAABQAAAAUAAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFEAAAJQAAAAUAAAAF8AAABfAAAAFwAAA18AAABIAAAAXwAAAF4AAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAE8AAABPAAAAXwAAAF8AAABfAAAASAAAAF8AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAAl8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAFIAAANfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABPAAAAXwAAAEgAAABSAAADXwAAAFIAAANSAAABUgAAAF8AAABPAAAAXwAAAFEAAAJfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFIAAAAUgAAA18AAABSAAAAQgAAAFIAAANfAAAATwAAAEgAAABIAAAAUQAAAU8AAABRAAADUQAAA18AAABfAAAASAAAAA== -1,-6: ind: -1,-6 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAUUAAABFAAACRQAAA0UAAAFfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAFwAAA18AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAA1AAAAAXAAACXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAJQAAAAFwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAADUAAAABcAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAlAAAAAXAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAACXwAAAF8AAABfAAAAXwAAAAAAAABeAAAAXgAAAE8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXgAAAAAAAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAATwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAEgAAABIAAAAXwAAAF8AAABPAAAAXwAAAAAAAABeAAAAAAAAAE8AAABfAAAAXwAAAF8AAABPAAAASAAAAF8AAABIAAAAXwAAAE8AAABPAAAAXwAAAF8AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAE8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAATwAAAF8AAABPAAAATwAAAE8AAABIAAAAXwAAAEgAAABfAAAATwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAE8AAABfAAAAXwAAAE8AAABPAAAASAAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABPAAAAXwAAAE8AAABfAAAAXwAAAEgAAABQAAAAUAAAAE8AAABfAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAFAAAABQAAAAUAAAAFAAAABQAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: XwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAUUAAABFAAACRQAAAEUAAABfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAFwAAA18AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAA1AAAAAXAAADXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAANQAAAAFwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAADUAAAABcAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAFAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAABXwAAAF8AAABfAAAAXwAAAAAAAABeAAAAXgAAAE8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXgAAAAAAAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAATwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAEgAAABIAAAAXwAAAF8AAABPAAAAXwAAAAAAAABeAAAAAAAAAE8AAABfAAAAXwAAAF8AAABPAAAASAAAAF8AAABIAAAAXwAAAE8AAABPAAAAXwAAAF8AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAE8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAATwAAAF8AAABPAAAATwAAAE8AAABIAAAAXwAAAEgAAABfAAAATwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAE8AAABfAAAAXwAAAE8AAABPAAAASAAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABPAAAAXwAAAE8AAABfAAAAXwAAAEgAAABQAAAAUAAAAE8AAABfAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAFAAAABQAAAAUAAAAFAAAABQAAAAXwAAAF8AAABfAAAAXwAAAA== -2,-6: ind: -2,-6 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAJFAAADRQAAA0UAAABFAAABRQAAAV8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAANFAAAARQAAA0UAAABFAAACRQAAA0UAAANFAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABFAAACSAAAAEUAAABFAAAARQAAAUUAAABIAAAARQAAAV8AAABeAAAAXwAAAAAAAAAAAAAAAAAAAF4AAABfAAAARQAAAUUAAABFAAAARQAAAUUAAANFAAADRQAAAEUAAABfAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFYAAAFWAAACVgAAAVYAAAFWAAACVgAAAVYAAAFWAAABXwAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABWAAABVgAAAVYAAAJWAAADVgAAAFYAAANWAAADVgAAAV8AAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAVgAAAFYAAAFWAAACVgAAA1YAAABWAAAAVgAAAFYAAAJfAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFYAAABWAAACVgAAAVYAAABWAAAAVgAAAFYAAANWAAADXwAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABWAAACVgAAAV8AAABFAAABXwAAAF8AAAAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABfAAAAVgAAA1YAAAFfAAAAFwAAAl8AAABeAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAACXwAAABcAAAFfAAAAXgAAAF4AAABfAAAAXwAAACYAAAAmAAAAJgAAAFIAAAJSAAAAUgAAAlIAAAFSAAAAUgAAAkUAAAJFAAADXwAAAF8AAABfAAAAXwAAAA== + tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAABFAAADRQAAA0UAAABFAAADRQAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAABFAAACRQAAAkUAAABFAAACRQAAAEUAAAJFAAADXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABFAAABSAAAAEUAAAJFAAADRQAAAEUAAANIAAAARQAAAl8AAABeAAAAXwAAAAAAAAAAAAAAAAAAAF4AAABfAAAARQAAAEUAAABFAAABRQAAAUUAAAFFAAACRQAAAEUAAABfAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFYAAANWAAACVgAAAVYAAAJWAAABVgAAA1YAAAJWAAABXwAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABWAAADVgAAAlYAAABWAAADVgAAAVYAAAFWAAACVgAAA18AAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAVgAAA1YAAAFWAAACVgAAA1YAAAJWAAAAVgAAAVYAAAFfAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFYAAAJWAAADVgAAA1YAAAJWAAAAVgAAAVYAAABWAAAAXwAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABWAAADVgAAA18AAABFAAAAXwAAAF8AAAAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABfAAAAVgAAAFYAAANfAAAAFwAAAV8AAABeAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAADXwAAABcAAABfAAAAXgAAAF4AAABfAAAAXwAAACYAAAAmAAAAJgAAAFIAAABSAAABUgAAA1IAAANSAAAAUgAAA0UAAAJFAAABXwAAAF8AAABfAAAAXwAAAA== 0,-6: ind: 0,-6 - tiles: AAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAAQAAAEEAAAABAAAAgQAAAIEAAACBAAAAAQAAAEEAAACBAAAAl4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAEAAACBAAAAQQAAAEEAAABBAAAAAQAAAAEAAACBAAAAQQAAAJeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXQAAA10AAANdAAABAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAFwAAAV8AAAAAAAAAAAAAAF8AAABfAAAAXAAAAFwAAAFcAAABXAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAABcAAANfAAAAAAAAAAAAAABfAAAAXQAAAlwAAAJKAAACSgAAAkoAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAAAXAAAAXwAAAF8AAABfAAAAXwAAAF0AAANcAAADSgAAAikAAAApAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAFEAAANPAAAATwAAAF8AAABdAAABXAAAA0oAAAEpAAAAKQAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABQAAAAXwAAAF8AAABfAAAAXQAAAVwAAAFKAAADKQAAACkAAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAUAAAAF8AAAAAAAAAXwAAAF0AAAJcAAAASgAAA0oAAAJKAAAAXwAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAE8AAABfAAAAAAAAAF8AAABfAAAAXAAAAFwAAANcAAACXAAAAw== + tiles: AAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAAQAAAAEAAAABAAAAgQAAAIEAAABBAAAAQQAAAIEAAAABAAAAl4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAEAAAABAAAAQQAAAEEAAAABAAAAQQAAAAEAAACBAAAAgQAAAJeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXQAAAF0AAAFdAAABAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAFwAAAl8AAAAAAAAAAAAAAF8AAABfAAAAXAAAAVwAAABcAAADXAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAABcAAAFfAAAAAAAAAAAAAABfAAAAXQAAAlwAAABKAAAASgAAAkoAAAIAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAAAXAAACXwAAAF8AAABfAAAAXwAAAF0AAAFcAAAASgAAAykAAAApAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAFEAAANPAAAATwAAAF8AAABdAAABXAAAAUoAAAMpAAAAKQAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABQAAAAXwAAAF8AAABfAAAAXQAAA1wAAANKAAAAKQAAACkAAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAUAAAAF8AAAAAAAAAXwAAAF0AAABcAAAASgAAA0oAAANKAAACXwAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAE8AAABfAAAAAAAAAF8AAABfAAAAXAAAAVwAAAJcAAABXAAAAQ== -3,-5: ind: -3,-5 - tiles: RQAAAUgAAAALAAAARQAAAUUAAABFAAADRQAAAUUAAAFFAAABXwAAAEUAAANFAAAAXwAAAAAAAAAAAAAAAAAAAAsAAABFAAAARQAAAEUAAAFcAAABXAAAA1wAAAFcAAADRQAAA0UAAABIAAAARQAAAV8AAAAAAAAAAAAAAAAAAAALAAAARQAAA0gAAABcAAAAXAAAA0UAAANcAAAAXAAAAFwAAABIAAAARQAAAkUAAAFfAAAAXgAAAF4AAABeAAAARQAAAV8AAABIAAAAXAAAAUgAAABRAAAASAAAAEgAAABcAAADSAAAAEUAAAFFAAAAXwAAAAAAAAAAAAAAAAAAAEgAAAALAAAARQAAA1wAAAFcAAABRQAAAFwAAAJIAAAAXAAAA0UAAAFfAAAARQAAAF8AAAAAAAAAAAAAAF8AAAALAAAASAAAAEUAAAFfAAAAXAAAAlwAAABcAAACXAAAAl8AAAALAAAARQAAAkUAAAJfAAAAAAAAAAAAAABfAAAAXwAAAEUAAAJFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAACwAAAAsAAABFAAABXwAAAF8AAABfAAAAFwAAAF8AAABFAAACCwAAAFEAAANRAAAACwAAAEUAAAFFAAACRQAAAwsAAABFAAABRQAAA18AAAAXAAABFwAAARcAAAFfAAAAXwAAAF8AAABfAAAAXwAAAAsAAABFAAACRQAAAl8AAABIAAAAXwAAAF8AAABfAAAAFwAAAF8AAABfAAAAUAAAAF8AAABfAAAARQAAA0UAAAILAAAASAAAAEgAAABIAAAAXwAAAF8AAABfAAAASAAAABcAAAAXAAAAFwAAAlAAAABfAAAAXwAAAF8AAABfAAAAFwAAARcAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAFwAAABcAAAFfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAACXwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAALAAAARQAAAV8AAABPAAAATwAAAE8AAABfAAAAXwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAgsAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAEgAAABIAAAASAAAAF8AAABfAAAASAAAAFAAAABQAAAAXwAAADQAAABfAAAAXwAAAA== + tiles: RQAAAEgAAAALAAAARQAAAUUAAABFAAACRQAAAUUAAAJFAAABXwAAAEUAAANFAAADXwAAAAAAAAAAAAAAAAAAAAsAAABFAAACRQAAAUUAAAFcAAAAXAAAAFwAAAJcAAAARQAAA0UAAAFIAAAARQAAA18AAAAAAAAAAAAAAAAAAAALAAAARQAAAEgAAABcAAACXAAAAUUAAANcAAAAXAAAAVwAAAFIAAAARQAAAEUAAAJfAAAAXgAAAF4AAABeAAAARQAAAV8AAABIAAAAXAAAA0gAAABRAAADSAAAAEgAAABcAAACSAAAAEUAAAFFAAACXwAAAAAAAAAAAAAAAAAAAEgAAAALAAAARQAAAlwAAAFcAAABRQAAAlwAAANIAAAAXAAAAEUAAAJfAAAARQAAAV8AAAAAAAAAAAAAAF8AAAALAAAASAAAAEUAAAFfAAAAXAAAAlwAAAFcAAACXAAAA18AAAALAAAARQAAAEUAAAJfAAAAAAAAAAAAAABfAAAAXwAAAEUAAAJFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAACwAAAAsAAABFAAABXwAAAF8AAABfAAAAFwAAAV8AAABFAAADCwAAAFEAAABRAAADCwAAAEUAAABFAAADRQAAAgsAAABFAAACRQAAAl8AAAAXAAABFwAAABcAAANfAAAAXwAAAF8AAABfAAAAXwAAAAsAAABFAAABRQAAAl8AAABIAAAAXwAAAF8AAABfAAAAFwAAAl8AAABfAAAAUAAAAF8AAABfAAAARQAAAEUAAAALAAAASAAAAEgAAABIAAAAXwAAAF8AAABfAAAASAAAABcAAAIXAAACFwAAA1AAAABfAAAAXwAAAF8AAABfAAAAFwAAARcAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAADFwAAARcAAANfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAABXwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAALAAAARQAAAF8AAABPAAAATwAAAE8AAABfAAAAXwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAAsAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAEgAAABIAAAASAAAAF8AAABfAAAASAAAAFAAAABQAAAAXwAAADQAAABfAAAAXwAAAA== 1,-6: ind: 1,-6 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAAAXAAADXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAFwAAAV8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAABcAAAFfAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAEgAAABLAAACSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABFAAABSwAAAEUAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAARQAAA0sAAABFAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAEUAAANLAAACSwAAAV8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAAASwAAAkUAAANdAAACXQAAAl8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAARQAAAksAAABIAAAAXAAAA1wAAAJcAAABXwAAAF8AAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAUUAAANLAAABRQAAAUoAAAFKAAABXAAAAVwAAABfAAAAAAAAAAAAAABfAAAASQAAAkkAAANKAAABRQAAAkgAAABFAAABSwAAAkUAAAApAAAASgAAAlwAAANcAAAAXwAAAF8AAABfAAAAXwAAAEkAAAJJAAACSgAAAEUAAAFFAAADRQAAAUsAAAJFAAAAKQAAAEoAAAFcAAADXAAAABcAAANFAAACRQAAAhcAAAFJAAAASQAAAEoAAAFLAAADSwAAAUsAAANLAAAARQAAACkAAABKAAADXAAAAVwAAAFfAAAAXwAAAF8AAABfAAAASQAAAEkAAAJKAAADRQAAAEgAAABFAAABSwAAAUsAAANKAAABSgAAA1wAAABcAAADXwAAAAAAAAAAAAAAXwAAAEkAAANJAAAASgAAAUUAAANFAAAASAAAAEsAAAJFAAABXAAAAlwAAANcAAADXwAAAF8AAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABFAAABRQAAAEUAAANLAAACRQAAAA== + tiles: XgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAAAXAAACXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAFwAAA18AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAABcAAAJfAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAEgAAABLAAACSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABFAAABSwAAAEUAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAARQAAA0sAAAJFAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAEUAAANLAAABSwAAAV8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAABSwAAA0UAAANdAAABXQAAAl8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAARQAAAUsAAAFIAAAAXAAAAFwAAAJcAAACXwAAAF8AAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAEUAAABLAAAARQAAAEoAAAJKAAABXAAAA1wAAANfAAAAAAAAAAAAAABfAAAASQAAA0kAAANKAAACRQAAAkgAAABFAAABSwAAAkUAAAMpAAAASgAAA1wAAAJcAAAAXwAAAF8AAABfAAAAXwAAAEkAAABJAAAASgAAAEUAAAFFAAAARQAAAUsAAANFAAADKQAAAEoAAAFcAAABXAAAABcAAANFAAAARQAAARcAAANJAAAASQAAAUoAAAFLAAAASwAAAEsAAAJLAAACRQAAAikAAABKAAADXAAAAVwAAAJfAAAAXwAAAF8AAABfAAAASQAAAkkAAAJKAAADRQAAAkgAAABFAAABSwAAAUsAAABKAAACSgAAAVwAAABcAAAAXwAAAAAAAAAAAAAAXwAAAEkAAAJJAAABSgAAAUUAAAJFAAACSAAAAEsAAANFAAADXAAAAVwAAABcAAABXwAAAF8AAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAUUAAAJLAAAARQAAAA== 0,-7: ind: 0,-7 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,-5: ind: 1,-5 - tiles: XQAAA10AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEUAAAJLAAADRQAAAl8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAACSwAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAUsAAANFAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAAAXAAABFwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACSwAAAkUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAABRQAAAUgAAABFAAAARQAAA0sAAAFFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAEgAAABFAAAARQAAA0UAAAFIAAAASAAAAEUAAAFLAAACRQAAA1EAAABQAAAAUAAAAF8AAABfAAAAXwAAAEUAAAJFAAACRQAAAEUAAAJFAAABRQAAAEUAAAFFAAACSwAAAksAAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABIAAAARQAAAEUAAANIAAAASAAAAEUAAABFAAABRQAAAEUAAAJFAAACAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAEgAAABFAAABRQAAAkUAAABFAAACRQAAAV8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAARQAAAUUAAABIAAAARQAAAl8AAABfAAAAAAAAAAAAAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABIAAAARQAAAF8AAABfAAAAXgAAAAAAAAAAAAAATwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAEgAAABPAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAAAATwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAA== + tiles: XQAAAV0AAAJfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEUAAANLAAACRQAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAACSwAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAA0sAAAFFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAAEXAAADFwAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAASwAAAEUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAABRQAAAEgAAABFAAACRQAAAEsAAANFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAEgAAABFAAAARQAAAUUAAAFIAAAASAAAAEUAAABLAAABRQAAAlEAAAJQAAAAUAAAAF8AAABfAAAAXwAAAEUAAAFFAAAARQAAAkUAAAFFAAAARQAAA0UAAAFFAAADSwAAAUsAAAJfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABIAAAARQAAAUUAAANIAAAASAAAAEUAAABFAAACRQAAAkUAAANFAAADAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAEgAAABFAAADRQAAAEUAAAJFAAACRQAAAV8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAARQAAAEUAAANIAAAARQAAAl8AAABfAAAAAAAAAAAAAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABIAAAARQAAAV8AAABfAAAAXgAAAAAAAAAAAAAATwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAEgAAABPAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAAAATwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAA== 2,-5: ind: 2,-5 - tiles: XwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAASAAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAEUAAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABFAAADXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAFwAAA18AAABeAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABeAAAAXwAAAEgAAABfAAAAXwAAAF8AAABFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAACXwAAAF8AAABFAAAAFwAAAkUAAABFAAABRQAAAUUAAABFAAADRQAAAEUAAANFAAABRQAAAUUAAAFFAAADSAAAAEgAAAAXAAACRQAAAhcAAANFAAACOgAAAEUAAANFAAABRQAAA0UAAABFAAABRQAAAkUAAANFAAAARQAAAjoAAABIAAAAFwAAA0sAAAMXAAACRQAAAUgAAABFAAACRQAAAEUAAAJFAAADRQAAAUUAAANFAAAARQAAAEUAAAJFAAACRQAAARcAAANIAAAAXwAAAF8AAABIAAAASAAAAEgAAABFAAAARQAAAEUAAAJFAAABRQAAAUUAAAJFAAADRQAAA18AAABfAAAAXwAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAIXAAACFwAAA18AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABFAAABRQAAAEUAAAFfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAARQAAAUgAAABFAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAAE6AAAARQAAAF8AAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAACRQAAAUUAAANfAAAAXwAAAF8AAABfAAAATwAAAFEAAAFfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAASAAAADoAAABFAAADTwAAAFAAAABQAAAATwAAAFEAAABPAAAAXwAAAA== + tiles: XwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAASAAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAEUAAAJfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABFAAACXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAFwAAAl8AAABeAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABeAAAAXwAAAEgAAABfAAAAXwAAAF8AAABFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAACXwAAAF8AAABFAAABFwAAAUUAAANFAAACRQAAAEUAAANFAAADRQAAAkUAAAJFAAAARQAAAkUAAAFFAAABSAAAAEgAAAAXAAACRQAAABcAAABFAAACOgAAAEUAAANFAAAARQAAAUUAAAJFAAAARQAAAEUAAABFAAABRQAAADoAAABIAAAAFwAAAEsAAAMXAAABRQAAAEgAAABFAAACRQAAAUUAAANFAAACRQAAA0UAAAFFAAACRQAAAkUAAAJFAAACRQAAAxcAAABIAAAAXwAAAF8AAABIAAAASAAAAEgAAABFAAABRQAAAEUAAANFAAAARQAAAEUAAABFAAACRQAAA18AAABfAAAAXwAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAIXAAACFwAAA18AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABFAAACRQAAAEUAAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAARQAAAEgAAABFAAABXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAAI6AAAARQAAAV8AAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAABRQAAAkUAAANfAAAAXwAAAF8AAABfAAAATwAAAFEAAANfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAASAAAADoAAABFAAADTwAAAFAAAABQAAAATwAAAFEAAAJPAAAAXwAAAA== 3,-2: ind: 3,-2 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABQAAAAUAAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAFFAAAARQAAAT0AAABfAAAAAAAAAAAAAABfAAAAUAAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAA7AAAAOwAAADsAAAA9AAAAXwAAAAAAAAAAAAAAXwAAAF8AAABfAAAATwAAAF8AAABQAAAAXwAAAF8AAABfAAAAOwAAADsAAAA7AAAAPQAAAF8AAAAAAAAAAAAAAF8AAABfAAAAUAAAAF8AAABfAAAATwAAAFAAAABfAAAAXwAAADsAAAA7AAAAOwAAAD0AAABfAAAAAAAAAAAAAABfAAAATwAAAE8AAABfAAAAXwAAABcAAAFfAAAAXwAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXwAAAE8AAABPAAAAUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAUQAAA08AAABfAAAAPQAAAF8AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABRAAAAXwAAAD0AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAATwAAAF8AAAA9AAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXwAAAF8AAABfAAAAPQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF8AAABfAAAAXwAAAD0AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXwAAABcAAANfAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: XwAAAF8AAABfAAAAXwAAAF8AAABQAAAAUAAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAANFAAACRQAAAD0AAABfAAAAAAAAAAAAAABfAAAAUAAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAA7AAAAOwAAADsAAAA9AAAAXwAAAAAAAAAAAAAAXwAAAF8AAABfAAAATwAAAF8AAABQAAAAXwAAAF8AAABfAAAAOwAAADsAAAA7AAAAPQAAAF8AAAAAAAAAAAAAAF8AAABfAAAAUAAAAF8AAABfAAAATwAAAFAAAABfAAAAXwAAADsAAAA7AAAAOwAAAD0AAABfAAAAAAAAAAAAAABfAAAATwAAAE8AAABfAAAAXwAAABcAAAFfAAAAXwAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXwAAAE8AAABPAAAAUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAUQAAA08AAABfAAAAPQAAAF8AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABRAAACXwAAAD0AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAATwAAAF8AAAA9AAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXwAAAF8AAABfAAAAPQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF8AAABfAAAAXwAAAD0AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXwAAABcAAANfAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAA== 0,2: ind: 0,2 - tiles: SAAAAE8AAABfAAAAXwAAAE8AAAABAAAAAQAAAEgAAAABAAAAAQAAAE8AAABfAAAAXwAAAF8AAABfAAAASAAAAEgAAABfAAAAXwAAAF8AAABfAAAATwAAAAMAAAABAAAAAQAAAAEAAAABAAAAXwAAAF8AAABfAAAAXwAAAEgAAABIAAAAXwAAAAAAAAAAAAAAXwAAAF8AAAABAAAAXwAAAAEAAAABAAAAXwAAAF8AAAAAAAAAAAAAAF8AAABIAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAA0gAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFAAAABFAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABIAAAARQAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABfAAAASAAAAEUAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAAABAAAAAQAAAIEAAAAAAAAAAAAAABeAAAAXwAAAF8AAAAAAAAAAAAAAAQAAAAEAAACBAAAAAQAAAEEAAAABAAAAgQAAAIEAAABBAAAAAQAAAEEAAABBAAAAQQAAAJfAAAAXwAAAF8AAAAEAAAABAAAAAQAAAEEAAACBAAAAgQAAAEEAAACBAAAAQQAAAIEAAABBAAAAQQAAAAEAAAARQAAA0UAAANfAAAABAAAAgQAAAIEAAAABAAAAQQAAAIEAAABBAAAAgQAAAEEAAAABAAAAQQAAAIEAAABBAAAAEUAAAFFAAABXwAAAAQAAAIEAAABBAAAAQQAAAAEAAACBAAAAQQAAAAEAAACBAAAAQQAAAIEAAABBAAAAgQAAAFFAAACRQAAAV8AAAAEAAACBAAAAAQAAAIEAAAABAAAAAQAAAAEAAABBAAAAAQAAAEEAAABBAAAAQQAAAEEAAACRQAAAEUAAANfAAAABAAAAAQAAAEEAAABBAAAAAQAAAAEAAACBAAAAAQAAAIEAAAABAAAAgQAAAEEAAACBAAAAg== + tiles: SAAAAE8AAABfAAAAXwAAAE8AAAABAAAAAQAAAEgAAAABAAAAAQAAAE8AAABfAAAAXwAAAF8AAABfAAAASAAAAEgAAABfAAAAXwAAAF8AAABfAAAATwAAAAMAAAABAAAAAQAAAAEAAAABAAAAXwAAAF8AAABfAAAAXwAAAEgAAABIAAAAXwAAAAAAAAAAAAAAXwAAAF8AAAABAAAAXwAAAAEAAAABAAAAXwAAAF8AAAAAAAAAAAAAAF8AAABIAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAUgAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFAAAABFAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABIAAAARQAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABfAAAASAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAABBAAAAgQAAAAEAAAAAAAAAAAAAABeAAAAXwAAAF8AAAAAAAAAAAAAAAQAAAEEAAAABAAAAQQAAAEEAAAABAAAAAQAAAEEAAABBAAAAQQAAAEEAAAABAAAAgQAAABfAAAAXwAAAF8AAAAEAAABBAAAAgQAAAIEAAACBAAAAAQAAAIEAAAABAAAAgQAAAAEAAABBAAAAgQAAAEEAAAARQAAAEUAAAFfAAAABAAAAgQAAAIEAAACBAAAAgQAAAIEAAACBAAAAAQAAAIEAAACBAAAAQQAAAAEAAAABAAAAEUAAAFFAAACXwAAAAQAAAEEAAACBAAAAgQAAAAEAAAABAAAAQQAAAAEAAABBAAAAQQAAAIEAAAABAAAAQQAAABFAAADRQAAA18AAAAEAAAABAAAAQQAAAEEAAACBAAAAQQAAAAEAAABBAAAAQQAAAAEAAACBAAAAgQAAAIEAAAARQAAA0UAAABfAAAABAAAAQQAAAAEAAACBAAAAAQAAAEEAAACBAAAAQQAAAEEAAAABAAAAQQAAAIEAAABBAAAAA== 1,3: ind: 1,3 - tiles: BAAAAgQAAAAEAAABBAAAAgQAAAEEAAACBAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAQAAAIEAAAABAAAAAQAAAAEAAAABAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAEAAABBAAAAAQAAAIEAAABBAAAAQQAAAEEAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAABAAAAgQAAAAEAAACBAAAAQQAAAEEAAACBAAAAAQAAAEEAAABAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAQAAAAEAAAABAAAAQQAAAAEAAABBAAAAQQAAAIEAAABBAAAAgAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAEAAABBAAAAgQAAAIEAAACBAAAAQQAAAIEAAACBAAAAgQAAAAEAAACAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAABAAAAQQAAAAEAAACBAAAAAQAAAEEAAACBAAAAgQAAAEEAAABBAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAUAAAAEAAAABAAAAQQAAAAEAAAABAAAAgQAAAAEAAACBAAAAAQAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAEAAABBAAAAAQAAAEEAAABBAAAAQQAAAIEAAACBAAAAgQAAAIAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAABAAAAgQAAAIEAAAABAAAAAQAAAIEAAAABAAAAAQAAAEEAAABAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAQAAAIEAAACBAAAAQQAAAEEAAACBAAAAAQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAEAAAABAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: BAAAAQQAAAEEAAACBAAAAAQAAAIEAAAABAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAQAAAIEAAAABAAAAQQAAAAEAAACBAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAEAAAABAAAAAQAAAIEAAAABAAAAQQAAAEEAAABBAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAQQAAAEEAAAABAAAAAQAAAEEAAABAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAQAAAIEAAABBAAAAQQAAAAEAAACBAAAAgQAAAEEAAAABAAAAQAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAEAAACBAAAAgQAAAIEAAAABAAAAQQAAAAEAAABBAAAAAQAAAIEAAACAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAABAAAAAQAAAEEAAAABAAAAAQAAAIEAAAABAAAAAQAAAIEAAAABAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAUAAAAEAAACBAAAAgQAAAIEAAABBAAAAAQAAAIEAAAABAAAAQQAAAIAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAEAAABBAAAAQQAAAAEAAACBAAAAgQAAAAEAAAABAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAABAAAAgQAAAAEAAABBAAAAAQAAAAEAAACBAAAAAQAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAQAAAIEAAABBAAAAgQAAAIEAAAABAAAAQQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAEAAAABAAAAQQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,3: ind: 0,3 - tiles: RQAAAkUAAANfAAAABAAAAQQAAABQAAAAUAAAAAQAAAEEAAACBAAAAQQAAAAEAAAABAAAAAQAAAEEAAAABAAAAkUAAAJFAAADXwAAAAQAAAIEAAAAUAAAAFAAAAAEAAAABAAAAAQAAAEEAAACBAAAAgQAAAAEAAACBAAAAgQAAAFFAAADRQAAAl8AAAAEAAACBAAAAQQAAAIEAAABBAAAAgQAAAEEAAACBAAAAgQAAAIEAAACBAAAAQQAAAIEAAABRQAAA0UAAAFfAAAABAAAAQQAAAIEAAACBAAAAAQAAAAEAAABBAAAAQQAAAAEAAAABAAAAgQAAAIEAAABBAAAAUUAAANFAAACXwAAAAQAAAEEAAAABAAAAAQAAAAEAAABBAAAAikAAAApAAAAKQAAACIAAAIEAAABBAAAAQQAAAEXAAAAFwAAAV8AAAAEAAACBAAAAgQAAAEpAAAAKQAAACkAAAApAAAAKQAAACkAAAApAAAAIgAAAAQAAAAEAAAARQAAA0UAAAJfAAAABAAAAQQAAAIEAAACKQAAACkAAAApAAAAKQAAACkAAAApAAAAKQAAACIAAAIiAAAABAAAAEUAAANFAAACXwAAAAQAAAEEAAABBAAAAgQAAAApAAAAKQAAACkAAAApAAAAKQAAACIAAAIEAAACBAAAAQQAAAJFAAADRQAAAV8AAABfAAAAAAAAAAQAAAEEAAAABAAAAgQAAAAEAAABBAAAACIAAAMEAAABBAAAAAQAAAAEAAAARQAAA0UAAABIAAAAXwAAAAAAAABeAAAAAAAAAAQAAAIEAAAABAAAAgQAAAIEAAAABAAAAQQAAAEEAAABBAAAAEUAAABFAAABSAAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAQAAAEEAAACBAAAAgQAAAAEAAABBAAAAQQAAAJFAAABRQAAAF8AAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAIEAAACXwAAAF8AAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: RQAAAkUAAAJfAAAABAAAAgQAAAJQAAAAUAAAAAQAAAEEAAACBAAAAgQAAAAEAAAABAAAAgQAAAEEAAACBAAAAkUAAAJFAAABXwAAAAQAAAAEAAAAUAAAAFAAAAAEAAABBAAAAQQAAAIEAAACBAAAAgQAAAIEAAAABAAAAgQAAAFFAAAARQAAA18AAAAEAAAABAAAAgQAAAEEAAABBAAAAQQAAAAEAAABBAAAAQQAAAEEAAAABAAAAQQAAAEEAAAARQAAAkUAAANfAAAABAAAAQQAAAEEAAACBAAAAgQAAAIEAAACBAAAAAQAAAEEAAABBAAAAQQAAAAEAAABBAAAAkUAAAJFAAAAXwAAAAQAAAEEAAABBAAAAgQAAAAEAAACBAAAAikAAAApAAAAKQAAACIAAAEEAAAABAAAAgQAAAEXAAABFwAAAl8AAAAEAAABBAAAAAQAAAApAAAAKQAAACkAAAApAAAAKQAAACkAAAApAAAAIgAAAAQAAAIEAAAARQAAAUUAAABfAAAABAAAAgQAAAIEAAAAKQAAACkAAAApAAAAKQAAACkAAAApAAAAKQAAACIAAAEiAAAABAAAAkUAAAJFAAADXwAAAAQAAAIEAAACBAAAAQQAAAEpAAAAKQAAACkAAAApAAAAKQAAACIAAAEEAAABBAAAAgQAAAJFAAADRQAAAV8AAABfAAAAAAAAAAQAAAEEAAACBAAAAQQAAAAEAAAABAAAAiIAAAAEAAABBAAAAQQAAAEEAAACRQAAA0UAAAFIAAAAXwAAAAAAAABeAAAAAAAAAAQAAAEEAAABBAAAAAQAAAEEAAACBAAAAAQAAAIEAAACBAAAAEUAAANFAAADSAAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAQAAAIEAAABBAAAAQQAAAIEAAAABAAAAgQAAAFFAAADRQAAAV8AAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAEEAAACXwAAAF8AAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,2: ind: -1,2 - tiles: RQAAAkUAAANfAAAAXAAAAFwAAANcAAACXwAAAEgAAABfAAAASAAAAF8AAABPAAAASAAAAEUAAAJQAAAARQAAAkUAAAJFAAABXwAAAFwAAABcAAACXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAEgAAABFAAAARQAAAkUAAABFAAADRQAAARcAAAFcAAABXAAAAF8AAABQAAAAUAAAAF8AAAAAAAAAAAAAAF8AAABIAAAASAAAAEgAAABIAAAARQAAAkUAAAJfAAAAXAAAAVwAAAFfAAAAUAAAAFAAAABfAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABFAAADRQAAARcAAAJFAAACRQAAAUUAAAFFAAABRQAAAV8AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAARQAAA0UAAAAXAAACRQAAAUUAAAFFAAABRQAAAkUAAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEUAAANFAAADFwAAAUUAAAJFAAABRQAAA0UAAAFFAAABXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAkUAAAEXAAAAFgAAABYAAAAWAAAAFgAAABYAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAJFAAAAXwAAABYAAAAWAAAAFgAAABYAAAAWAAAAXwAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAV8AAABfAAAAXwAAABYAAAAWAAAAXwAAAF8AAABfAAAAXwAAAFAAAABQAAAAUAAAAFAAAABQAAAARQAAA0UAAAAXAAADRQAAAUUAAANFAAAARQAAAUUAAAFFAAADRQAAAEUAAAFFAAABRQAAA0UAAABFAAAARQAAAEUAAAFFAAADFwAAAEUAAAJFAAAARQAAA0UAAAJFAAACRQAAAEUAAANFAAADRQAAAEUAAAFFAAABRQAAAkUAAABFAAACRQAAARcAAANFAAABRQAAAkUAAANFAAAARQAAAUUAAANFAAAARQAAAkUAAANFAAAARQAAAUUAAAFFAAACRQAAAkUAAAFfAAAAUQAAA1AAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAXwAAAF8AAABfAAAARQAAAA== + tiles: RQAAA0UAAANfAAAAXAAAAVwAAANcAAABXwAAAEgAAABfAAAASAAAAF8AAABPAAAASAAAAEUAAANQAAAARQAAAkUAAAFFAAABXwAAAFwAAANcAAABXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAEgAAABFAAABRQAAAkUAAAFFAAAARQAAAxcAAANcAAACXAAAAV8AAABQAAAAUAAAAF8AAAAAAAAAAAAAAF8AAABIAAAASAAAAEgAAABIAAAARQAAAUUAAANfAAAAXAAAA1wAAABfAAAAUAAAAFAAAABfAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABFAAACRQAAARcAAABFAAADRQAAAEUAAAFFAAAARQAAAl8AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAARQAAAUUAAAMXAAABRQAAAUUAAAFFAAAARQAAAkUAAAJfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEUAAANFAAABFwAAAEUAAAFFAAACRQAAA0UAAAJFAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAABRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAUUAAAAXAAABFgAAABYAAAAWAAAAFgAAABYAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAANFAAADXwAAABYAAAAWAAAAFgAAABYAAAAWAAAAXwAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAl8AAABfAAAAXwAAABYAAAAWAAAAXwAAAF8AAABfAAAAXwAAAFAAAABQAAAAUAAAAFAAAABQAAAARQAAAUUAAAMXAAAARQAAAEUAAAFFAAAARQAAAkUAAANFAAABRQAAAEUAAABFAAACRQAAAEUAAABFAAABRQAAA0UAAANFAAADFwAAA0UAAANFAAACRQAAAUUAAAFFAAAARQAAAkUAAABFAAADRQAAA0UAAABFAAADRQAAAEUAAABFAAAARQAAAhcAAAJFAAAARQAAAEUAAAFFAAACRQAAAEUAAABFAAAARQAAAkUAAAJFAAADRQAAAkUAAAFFAAADRQAAAEUAAAJfAAAAUQAAA1AAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAACXwAAAF8AAABfAAAARQAAAw== 4,1: ind: 4,1 - tiles: TwAAAF8AAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE8AAABfAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPAAAAXwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAF8AAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABPAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAUAAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAE8AAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABPAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAATwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAE8AAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFEAAAJfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAARQAAAF8AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAEUAAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAA== + tiles: TwAAAF8AAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE8AAABfAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPAAAAXwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAF8AAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABPAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAUAAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAE8AAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABPAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAATwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAE8AAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFEAAABfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAARQAAAF8AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAEUAAAJfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAA== 4,0: ind: 4,0 - tiles: XwAAAF8AAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABIAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAE8AAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABPAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAATwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFAAAABFAAABXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABQAAAARQAAAEUAAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAATwAAAF8AAABIAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAE8AAABIAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABQAAAAXwAAAEgAAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAATwAAAE8AAABIAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAE8AAABFAAADXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABPAAAAXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAATwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAEgAAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: XwAAAF8AAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABIAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAE8AAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABPAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAATwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFAAAABFAAADXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABQAAAARQAAAUUAAANfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAATwAAAF8AAABIAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAE8AAABIAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABQAAAAXwAAAEgAAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAATwAAAE8AAABIAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAE8AAABFAAACXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABPAAAAXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAATwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAEgAAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 4,-1: ind: 4,-1 - tiles: AAAAAAAAAABfAAAAFwAAA18AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAABcAAAJfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAADRQAAARcAAAAXAAAAFwAAARcAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAAJfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAACFwAAARcAAAMXAAAAFwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAACRQAAAV8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAkUAAAIpAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAFFAAACKQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAACkAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAANfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAJFAAABFwAAAxcAAAEXAAAAFwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAABXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAA1wAAAAXAAAAFwAAARcAAAFfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAFcAAADXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAXAAAAl8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAlwAAAFfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAABfAAAAFwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAABcAAAFfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAABRQAAAxcAAAMXAAACFwAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAA0UAAAFfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAADFwAAAhcAAAIXAAAAFwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAA18AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAkUAAAMpAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAABKQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAABRQAAACkAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAANfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAFFAAACFwAAARcAAAMXAAACFwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAABXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAVwAAAAXAAACFwAAAhcAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAJcAAACXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAADXAAAAl8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAlwAAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 4,-3: ind: 4,-3 - tiles: RQAAAUUAAANfAAAASAAAAEgAAABKAAADSgAAAUoAAAJKAAADSgAAAEgAAABFAAACRQAAAkUAAANfAAAAXgAAAEUAAAJFAAABFwAAARcAAAMXAAABFwAAAxcAAAMXAAABFwAAAxcAAAEXAAAAFwAAA0UAAABIAAAAXwAAAF4AAABFAAADRQAAARcAAAMXAAABFwAAARcAAAEXAAABFwAAAhcAAAIXAAACFwAAABcAAABIAAAASAAAAF8AAABeAAAARQAAAkUAAAJfAAAARQAAA0UAAANFAAACSAAAAEUAAANFAAACRQAAAxcAAAIXAAACSAAAAEgAAABfAAAAXgAAAEUAAAJFAAABXwAAAEUAAABFAAADRQAAA0UAAAJFAAAARQAAA0UAAAMXAAAAFwAAAUgAAABIAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAABcAAAFfAAAAXwAAAF8AAABeAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAABcAAAEXAAACXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF8AAAAXAAACFwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAAA7AAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAhcAAABfAAAAAAAAAAAAAABeAAAAAAAAAF8AAAA7AAAAOwAAADsAAABfAAAARQAAAkUAAANFAAABRQAAABcAAAEXAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAOwAAADsAAAA7AAAAFwAAA0UAAAFFAAADRQAAA0UAAAMXAAABFwAAAxcAAAIXAAAAFwAAARcAAABFAAAAXwAAAF8AAAA7AAAAOwAAAF8AAABFAAABRQAAARcAAAEXAAABFwAAAxcAAAMXAAADFwAAABcAAAMXAAABRQAAAEUAAABfAAAAXwAAAF8AAABfAAAARQAAAEgAAAAXAAAAFwAAARcAAAAXAAACXwAAAF8AAABfAAAAXwAAAEUAAAFFAAAAFwAAA0UAAANFAAACFwAAAUUAAAJIAAAAFwAAAxcAAAIXAAABFwAAAxcAAAIXAAABFwAAAhcAAAFFAAACRQAAAxcAAAJFAAABSAAAABcAAABFAAACRQAAAUUAAANFAAAAFwAAAxcAAAIXAAABFwAAAhcAAAEXAAAARQAAAEUAAAJfAAAAXwAAABcAAAFfAAAARQAAAkUAAAFFAAAARQAAAUUAAAJFAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: RQAAAEUAAABfAAAASAAAAEgAAABKAAADSgAAA0oAAAJKAAABSgAAAkgAAABFAAACRQAAAkUAAAJfAAAAXgAAAEUAAAJFAAACFwAAABcAAAIXAAABFwAAAhcAAAEXAAAAFwAAARcAAAIXAAAAFwAAAkUAAAFIAAAAXwAAAF4AAABFAAABRQAAABcAAAAXAAADFwAAAxcAAAEXAAAAFwAAAhcAAAEXAAADFwAAARcAAAJIAAAASAAAAF8AAABeAAAARQAAAkUAAABfAAAARQAAA0UAAAJFAAADSAAAAEUAAANFAAABRQAAARcAAAAXAAABSAAAAEgAAABfAAAAXgAAAEUAAAFFAAACXwAAAEUAAABFAAAARQAAAEUAAABFAAADRQAAA0UAAAEXAAABFwAAAkgAAABIAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAhcAAAJfAAAAXwAAAF8AAABeAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAABcAAAMXAAABXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF8AAAAXAAABFwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAAA7AAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAxcAAAFfAAAAAAAAAAAAAABeAAAAAAAAAF8AAAA7AAAAOwAAADsAAABfAAAARQAAAEUAAAFFAAACRQAAAxcAAAAXAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAOwAAADsAAAA7AAAAFwAAAUUAAABFAAAARQAAAkUAAAMXAAAAFwAAABcAAAMXAAABFwAAAhcAAABFAAAAXwAAAF8AAAA7AAAAOwAAAF8AAABFAAAARQAAABcAAAEXAAABFwAAABcAAAEXAAACFwAAARcAAAAXAAABRQAAA0UAAAFfAAAAXwAAAF8AAABfAAAARQAAAEgAAAAXAAADFwAAARcAAAAXAAABXwAAAF8AAABfAAAAXwAAAEUAAABFAAADFwAAAkUAAAFFAAABFwAAAEUAAAJIAAAAFwAAABcAAAAXAAACFwAAABcAAAIXAAADFwAAABcAAANFAAAARQAAABcAAAFFAAACSAAAABcAAABFAAACRQAAA0UAAAFFAAADFwAAAhcAAAIXAAADFwAAAhcAAAMXAAABRQAAA0UAAANfAAAAXwAAABcAAAJfAAAARQAAAUUAAAJFAAAARQAAA0UAAABFAAADXwAAAF8AAABfAAAAXwAAAA== 4,-2: ind: 4,-2 - tiles: RQAAA18AAABfAAAARQAAAkUAAABfAAAAXwAAAEUAAAJFAAABRQAAAUUAAANfAAAAXwAAAAAAAAAAAAAAXgAAAF8AAABfAAAAOwAAADsAAAA7AAAAOwAAAF8AAABfAAAAOwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAABfAAAARQAAADsAAABfAAAAXwAAAF8AAABfAAAAOwAAADsAAAA7AAAAXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAEUAAAE7AAAAXwAAAF8AAABfAAAAXwAAADsAAAA7AAAAOwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAOwAAAF8AAABfAAAAXwAAAF8AAABfAAAAOwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAAl8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: RQAAAV8AAABfAAAARQAAAUUAAABfAAAAXwAAAEUAAANFAAAARQAAAEUAAAFfAAAAXwAAAAAAAAAAAAAAXgAAAF8AAABfAAAAOwAAADsAAAA7AAAAOwAAAF8AAABfAAAAOwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAABfAAAARQAAADsAAABfAAAAXwAAAF8AAABfAAAAOwAAADsAAAA7AAAAXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAEUAAAE7AAAAXwAAAF8AAABfAAAAXwAAADsAAAA7AAAAOwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAOwAAAF8AAABfAAAAXwAAAF8AAABfAAAAOwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,-3: ind: 3,-3 - tiles: RQAAAkUAAAJFAAAARQAAA18AAAAmAAAAJgAAACYAAAAmAAAAJgAAAF8AAABFAAABRQAAAUUAAAMYAAABRQAAAUUAAABFAAABRQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAEYAAABGAAAAxgAAABFAAABRQAAAUUAAAJFAAAARQAAA0UAAAEXAAADTQAAA00AAAFNAAAAFwAAAUUAAAFFAAAARQAAABgAAABFAAAARQAAA0UAAAJFAAACRQAAAEUAAAFFAAAAFwAAAU0AAAJNAAACTQAAARcAAANFAAADRQAAAEUAAAJFAAADRQAAAEUAAABFAAABRQAAAEUAAANFAAAARQAAAl8AAABfAAAAXwAAABcAAAFfAAAARQAAA0UAAABFAAABRQAAA0UAAABFAAACRQAAA0UAAANFAAAARQAAA0UAAABfAAAAFwAAABcAAAIXAAAAXwAAAFAAAABfAAAARQAAAUUAAAFFAAADRQAAA0UAAANFAAACRQAAA0UAAAFFAAACFwAAAxcAAAAXAAADFwAAAl8AAABfAAAAXwAAABcAAAIXAAACXwAAAEUAAAJFAAADRQAAAkUAAABFAAABRQAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAFEAAABFAAACRQAAAF8AAABFAAADRQAAAUUAAABFAAADRQAAAUUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABRAAACRQAAAUUAAAFfAAAARQAAAEUAAAFFAAAARQAAAUUAAAJFAAAAXwAAAFAAAABfAAAAXwAAAF8AAABfAAAAUQAAA0UAAAFFAAABXwAAAEUAAAJFAAACRQAAA0UAAANFAAACXwAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAABFwAAA18AAABfAAAAXwAAAFAAAABfAAAAXwAAAFEAAAFRAAAAUQAAA18AAABfAAAAXwAAAF8AAABFAAABRQAAAkUAAAJFAAABRQAAAV8AAABfAAAATwAAAF8AAABRAAACTwAAAFEAAABfAAAAOwAAADsAAAA7AAAARQAAAEUAAABFAAABRQAAA18AAABFAAABXwAAAE8AAABfAAAAUQAAAFEAAAJRAAACXwAAADsAAAA7AAAAOwAAAEUAAAJFAAAARQAAAEUAAANQAAAAUAAAAF8AAABPAAAAXwAAAF8AAABQAAAAXwAAAF8AAAA7AAAAOwAAADsAAABFAAABRQAAAUUAAABFAAABXwAAAF8AAABRAAACUQAAAFAAAABfAAAAXwAAAF8AAABfAAAAOwAAADsAAAA7AAAARQAAAUUAAANFAAADRQAAAQ== + tiles: RQAAAUUAAANFAAADRQAAA18AAAAmAAAAJgAAACYAAAAmAAAAJgAAAF8AAABFAAABRQAAAEUAAAMYAAAARQAAA0UAAABFAAADRQAAAkUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAEYAAABGAAAABgAAAFFAAADRQAAAEUAAABFAAAARQAAAEUAAAIXAAAATQAAAE0AAANNAAACFwAAAUUAAAJFAAADRQAAABgAAAJFAAAARQAAAUUAAAJFAAAARQAAAkUAAAJFAAAAFwAAAE0AAAJNAAACTQAAAhcAAABFAAABRQAAAEUAAAFFAAABRQAAAEUAAAJFAAADRQAAA0UAAABFAAABRQAAA18AAABfAAAAXwAAABcAAABfAAAARQAAA0UAAAFFAAACRQAAAEUAAANFAAAARQAAAkUAAABFAAAARQAAAkUAAAJfAAAAFwAAAhcAAAIXAAAAXwAAAFAAAABfAAAARQAAAkUAAAJFAAACRQAAAkUAAAJFAAADRQAAAUUAAAFFAAAAFwAAABcAAAAXAAAAFwAAAF8AAABfAAAAXwAAABcAAAMXAAADXwAAAEUAAABFAAAARQAAA0UAAAJFAAAARQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFEAAABFAAABRQAAAF8AAABFAAAARQAAAUUAAANFAAACRQAAAkUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABRAAAARQAAAEUAAANfAAAARQAAA0UAAAFFAAABRQAAAkUAAANFAAADXwAAAFAAAABfAAAAXwAAAF8AAABfAAAAUQAAAUUAAANFAAABXwAAAEUAAAJFAAABRQAAAEUAAAJFAAABXwAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAACFwAAAl8AAABfAAAAXwAAAFAAAABfAAAAXwAAAFEAAAJRAAABUQAAA18AAABfAAAAXwAAAF8AAABFAAAARQAAAkUAAAFFAAACRQAAAV8AAABfAAAATwAAAF8AAABRAAAATwAAAFEAAABfAAAAOwAAADsAAAA7AAAARQAAAEUAAABFAAADRQAAAV8AAABFAAADXwAAAE8AAABfAAAAUQAAAlEAAAJRAAADXwAAADsAAAA7AAAAOwAAAEUAAAJFAAABRQAAAEUAAAJQAAAAUAAAAF8AAABPAAAAXwAAAF8AAABQAAAAXwAAAF8AAAA7AAAAOwAAADsAAABFAAAARQAAAUUAAAFFAAACXwAAAF8AAABRAAACUQAAA1AAAABfAAAAXwAAAF8AAABfAAAAOwAAADsAAAA7AAAARQAAAkUAAAFFAAAARQAAAg== 3,-4: ind: 3,-4 - tiles: AAAAAF4AAAAAAAAAAAAAAAAAAABfAAAAXwAAAFAAAABRAAADXwAAAFAAAABfAAAAXwAAAF8AAABfAAAAUAAAAF8AAABfAAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAFAAAABPAAAAUAAAAF8AAABPAAAATwAAAE8AAABPAAAAFwAAAkgAAABIAAAAXwAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABFAAABSAAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAABcAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABFAAACRQAAAkUAAANFAAACFwAAAEUAAABFAAACRQAAA0UAAAJfAAAAXwAAAAAAAABeAAAAXgAAAF4AAABeAAAARQAAAkUAAAJFAAADRQAAARcAAANIAAAASAAAAEgAAABfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAEUAAAJFAAACRQAAAkUAAAFfAAAAXwAAABcAAAAXAAADXwAAAAAAAAAAAAAAAAAAAF8AAAAXAAABFwAAAhcAAAJFAAADRQAAAEUAAAFFAAAARQAAAl8AAABPAAAAUAAAAF8AAAAAAAAAAAAAAF8AAABfAAAAPQAAAFAAAAA9AAAARQAAAEUAAAJFAAACRQAAAEUAAAJfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAXAAABPQAAAD0AAABQAAAAPQAAAEUAAAJFAAAARQAAAkUAAABFAAAARQAAAl8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAD0AAAA9AAAAPQAAAD0AAABFAAAARQAAAUUAAAFFAAADRQAAA0UAAABfAAAAAAAAAAAAAAAAAAAAFwAAAD0AAABQAAAAPQAAAFAAAAA9AAAARQAAAEUAAAJFAAABRQAAA0UAAANFAAABXwAAAF4AAAAAAAAAAAAAABcAAANQAAAAPQAAAFAAAAA9AAAAUAAAAEUAAAFFAAACRQAAAEUAAAFFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAV8AAABFAAACRQAAAUUAAAFFAAADXwAAAF8AAAAPAAAADwAAAA8AAAAPAAAAXwAAAEUAAANFAAABRQAAAEUAAABFAAACXwAAABcAAAIXAAACXwAAAF8AAAAmAAAAJgAAACYAAAAmAAAAJgAAABcAAAFFAAABRQAAAUUAAANFAAACRQAAAQ== + tiles: AAAAAF4AAAAAAAAAAAAAAAAAAABfAAAAXwAAAFAAAABRAAADXwAAAFAAAABfAAAAXwAAAF8AAABfAAAAUAAAAF8AAABfAAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAFAAAABPAAAAUAAAAF8AAABPAAAATwAAAE8AAABPAAAAFwAAAUgAAABIAAAAXwAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABFAAADSAAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAABcAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABFAAACRQAAAkUAAAFFAAABFwAAA0UAAANFAAACRQAAAkUAAAFfAAAAXwAAAAAAAABeAAAAXgAAAF4AAABeAAAARQAAA0UAAAFFAAACRQAAAxcAAAFIAAAASAAAAEgAAABfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAEUAAAJFAAABRQAAAUUAAAJfAAAAXwAAABcAAAIXAAAAXwAAAAAAAAAAAAAAAAAAAF8AAAAXAAACFwAAABcAAAJFAAABRQAAA0UAAABFAAADRQAAAF8AAABPAAAAUAAAAF8AAAAAAAAAAAAAAF8AAABfAAAAPQAAAFAAAAA9AAAARQAAAUUAAABFAAADRQAAA0UAAAFfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAXAAAAPQAAAD0AAABQAAAAPQAAAEUAAANFAAADRQAAAkUAAANFAAADRQAAAV8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAD0AAAA9AAAAPQAAAD0AAABFAAACRQAAAkUAAABFAAAARQAAAEUAAAFfAAAAAAAAAAAAAAAAAAAAFwAAAz0AAABQAAAAPQAAAFAAAAA9AAAARQAAAUUAAAFFAAADRQAAAEUAAAFFAAAAXwAAAF4AAAAAAAAAAAAAABcAAAJQAAAAPQAAAFAAAAA9AAAAUAAAAEUAAAJFAAAARQAAAkUAAABFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAF8AAABFAAAARQAAAUUAAABFAAABXwAAAF8AAAAPAAAADwAAAA8AAAAPAAAAXwAAAEUAAAJFAAABRQAAAUUAAABFAAADXwAAABcAAAMXAAADXwAAAF8AAAAmAAAAJgAAACYAAAAmAAAAJgAAABcAAABFAAADRQAAAEUAAAFFAAACRQAAAw== 4,-4: ind: 4,-4 - tiles: UAAAAF8AAABfAAAASAAAAE8AAABfAAAAXwAAAF8AAABfAAAABAAAAAQAAAIEAAABBAAAAQQAAAIEAAACBAAAAF8AAABfAAAAXwAAAFAAAABQAAAAXwAAAF8AAABPAAAAXwAAAAQAAAEEAAACBAAAAgQAAAIEAAACBAAAAgQAAAFfAAAAXwAAAFEAAANfAAAATwAAAE8AAABPAAAAXwAAAF8AAAAEAAABBAAAAgQAAAAEAAACBAAAAQQAAAEEAAACXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAABAAAAgQAAAIEAAACBAAAAgQAAAEEAAAABAAAAF4AAAAAAAAAAAAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAAQAAAAEAAAABAAAAAQAAAIEAAAABAAAAgQAAAJeAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAEAAAABAAAAQQAAAAEAAABXgAAAAAAAAAAAAAAAAAAAF8AAABPAAAAXwAAAF8AAABQAAAAUQAAA1EAAANfAAAAXwAAAAQAAAIEAAABBAAAAF8AAAAAAAAAAAAAAAAAAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAAAEAAABBAAAAgQAAABfAAAAXwAAAAAAAAAAAAAAXwAAAF8AAABPAAAATwAAAE8AAABfAAAAUQAAAl8AAABfAAAABAAAAAQAAAAEAAAAPQAAABcAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAAQAAAAEAAACBAAAAj0AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAEAAACBAAAAgQAAAJQAAAAPQAAABcAAAFeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAUAAAAF8AAABfAAAABAAAAQQAAAIEAAAAPQAAAFAAAAAXAAADXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFAAAABfAAAAXwAAAAQAAAAEAAAABAAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAABAAAAV4AAABFAAAARQAAA18AAABIAAAARQAAAkoAAAJKAAACSgAAAEoAAAJKAAADSAAAAEUAAABIAAAAXwAAAAQAAAFeAAAARQAAA0UAAAIXAAABRQAAAUgAAABKAAADSgAAAUoAAAFKAAAASgAAAUgAAABFAAACRQAAA18AAABfAAAAXgAAAA== + tiles: UAAAAF8AAABfAAAASAAAAE8AAABfAAAAXwAAAF8AAABfAAAABAAAAgQAAAAEAAAABAAAAQQAAAEEAAACBAAAAV8AAABfAAAAXwAAAFAAAABQAAAAXwAAAF8AAABPAAAAXwAAAAQAAAAEAAACBAAAAAQAAAAEAAACBAAAAAQAAAJfAAAAXwAAAFEAAANfAAAATwAAAE8AAABPAAAAXwAAAF8AAAAEAAABBAAAAgQAAAIEAAAABAAAAgQAAAEEAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAABAAAAQQAAAIEAAABBAAAAgQAAAEEAAABBAAAAF4AAAAAAAAAAAAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAAQAAAAEAAACBAAAAgQAAAEEAAAABAAAAAQAAAFeAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAEAAAABAAAAgQAAAIEAAAAXgAAAAAAAAAAAAAAAAAAAF8AAABPAAAAXwAAAF8AAABQAAAAUQAAAVEAAAJfAAAAXwAAAAQAAAIEAAABBAAAAl8AAAAAAAAAAAAAAAAAAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAAAEAAAABAAAAQQAAABfAAAAXwAAAAAAAAAAAAAAXwAAAF8AAABPAAAATwAAAE8AAABfAAAAUQAAA18AAABfAAAABAAAAgQAAAAEAAAAPQAAABcAAAEAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAAQAAAAEAAABBAAAAD0AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAEAAACBAAAAAQAAABQAAAAPQAAABcAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAUAAAAF8AAABfAAAABAAAAgQAAAIEAAAAPQAAAFAAAAAXAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFAAAABfAAAAXwAAAAQAAAEEAAAABAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAABAAAAF4AAABFAAAARQAAA18AAABIAAAARQAAA0oAAABKAAACSgAAAEoAAAFKAAADSAAAAEUAAAFIAAAAXwAAAAQAAAFeAAAARQAAA0UAAAAXAAAARQAAAUgAAABKAAABSgAAAkoAAAFKAAADSgAAA0gAAABFAAABRQAAA18AAABfAAAAXgAAAA== -3,-1: ind: -3,-1 - tiles: FwAAA18AAAAXAAACRQAAA18AAABFAAABRQAAAkUAAAFFAAAAXwAAAEUAAANFAAAARQAAAUUAAANfAAAASAAAABcAAAJfAAAAFwAAAkUAAANfAAAAXwAAABcAAAJfAAAAXwAAAF8AAABfAAAAFwAAAl8AAABfAAAAXwAAAEgAAAAXAAACXwAAABcAAANFAAABXwAAAE4AAABOAAADXwAAAEgAAABIAAAARQAAAkgAAABFAAAARQAAAF8AAABIAAAAFwAAAV8AAAAXAAAARQAAAl8AAABOAAADTgAAAV8AAABIAAAASAAAAEUAAABFAAABRQAAAEUAAANfAAAARQAAAxcAAABfAAAAFwAAAUgAAAAXAAADTgAAAk4AAAEXAAABSAAAAEgAAABKAAACSgAAA0UAAAJFAAACFwAAAUUAAAEXAAACXwAAABcAAAJFAAACFwAAAE4AAAFOAAABFwAAAUUAAAJFAAACSgAAA0oAAANIAAAARQAAARcAAAJFAAACFwAAAV8AAAAXAAADRQAAA18AAABOAAAATgAAAF8AAABFAAAARQAAAkoAAABKAAACRQAAAkUAAAFfAAAARQAAAhcAAAMXAAACFwAAA0UAAAFfAAAARQAAA0UAAANfAAAARQAAA0UAAAJKAAABSgAAAUUAAAFFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE4AAANOAAADXwAAAEUAAANFAAABSgAAAUoAAABFAAACRQAAAF8AAABCAAAATQAAAk0AAABNAAABTQAAARcAAAJOAAACTgAAAhcAAABFAAABRQAAAkoAAAJKAAABRQAAAEUAAABfAAAAXwAAAE0AAABNAAACTQAAAk0AAAIXAAACTgAAAU4AAAEXAAAARQAAAUUAAANFAAABRQAAA0UAAAJFAAAAXwAAAEIAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAASAAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFEAAABQAAAAXwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAJFAAADFwAAA0UAAAFFAAABRQAAAUUAAABFAAADRQAAAkUAAABFAAAARQAAAUUAAAJFAAACRQAAAw== + tiles: FwAAA18AAAAXAAAARQAAAV8AAABFAAACRQAAAkUAAANFAAADXwAAAEUAAANFAAABRQAAAkUAAANfAAAASAAAABcAAAJfAAAAFwAAA0UAAAJfAAAAXwAAABcAAANfAAAAXwAAAF8AAABfAAAAFwAAAl8AAABfAAAAXwAAAEgAAAAXAAADXwAAABcAAANFAAAAXwAAAE4AAABOAAABXwAAAEgAAABIAAAARQAAAEgAAABFAAACRQAAAl8AAABIAAAAFwAAA18AAAAXAAAARQAAAV8AAABOAAABTgAAAl8AAABIAAAASAAAAEUAAAJFAAACRQAAA0UAAANfAAAARQAAAhcAAAFfAAAAFwAAAkgAAAAXAAADTgAAA04AAAEXAAAASAAAAEgAAABKAAAASgAAA0UAAAJFAAACFwAAAkUAAAIXAAAAXwAAABcAAANFAAACFwAAAU4AAAFOAAACFwAAAEUAAAFFAAACSgAAAUoAAABIAAAARQAAABcAAABFAAABFwAAA18AAAAXAAAARQAAAl8AAABOAAABTgAAAF8AAABFAAADRQAAA0oAAABKAAABRQAAAUUAAABfAAAARQAAARcAAAMXAAABFwAAAEUAAAJfAAAARQAAAEUAAABfAAAARQAAAkUAAABKAAADSgAAAEUAAAFFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE4AAAJOAAACXwAAAEUAAAFFAAAASgAAAUoAAAJFAAAARQAAA18AAABCAAAATQAAAE0AAABNAAADTQAAARcAAABOAAADTgAAAhcAAANFAAABRQAAAEoAAAFKAAACRQAAA0UAAANfAAAAXwAAAE0AAAJNAAABTQAAAU0AAAAXAAACTgAAAU4AAAAXAAADRQAAA0UAAAFFAAADRQAAA0UAAAFFAAADXwAAAEIAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAASAAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFEAAANQAAAAXwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAANFAAABFwAAAkUAAABFAAADRQAAAEUAAANFAAABRQAAA0UAAANFAAABRQAAAUUAAANFAAAARQAAAw== -3,-2: ind: -3,-2 - tiles: XwAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAU8AAABPAAAAXwAAAEgAAABfAAAAXwAAAE8AAABPAAAATwAAAE8AAABfAAAAXwAAAF8AAABPAAAAXwAAABcAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAUQAAAFEAAANPAAAAXwAAAEgAAABIAAAAXwAAAF8AAABFAAADXwAAAF8AAABQAAAAUAAAAF8AAABfAAAAXwAAAFAAAABfAAAAUAAAAF8AAABIAAAASAAAAE8AAABfAAAARQAAAEgAAABfAAAAXwAAAFAAAABPAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAABcAAAJFAAADRQAAAUUAAABfAAAATwAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAASAAAAF8AAAAXAAABXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAE8AAABfAAAAXwAAAEUAAANFAAABSAAAAEUAAANIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAADQAAAALAAAATwAAAFAAAABPAAAAUAAAABcAAABQAAAAUAAAAF8AAABfAAAASAAAAF8AAABfAAAATwAAAF8AAAA0AAAARQAAAk8AAABQAAAATwAAAFAAAABfAAAAUAAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFPAAAARQAAAU8AAABFAAADXwAAAFAAAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUAAAAF8AAABFAAADRQAAAUUAAAJFAAACRQAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAl8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAANFAAAARQAAAl8AAABFAAACRQAAA0UAAAFFAAAAXwAAAEUAAAAXAAACFwAAARcAAAJFAAACXwAAAEUAAABFAAAARQAAAkUAAANfAAAARQAAAkUAAABFAAABRQAAAxcAAABFAAADFwAAAV8AAAAXAAADRQAAAl8AAABFAAAARQAAAkUAAANFAAADXwAAAEUAAAJFAAADRQAAAkUAAAMXAAACRQAAAA== + tiles: XwAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAE8AAABPAAAAXwAAAEgAAABfAAAAXwAAAE8AAABPAAAATwAAAE8AAABfAAAAXwAAAF8AAABPAAAAXwAAABcAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAUQAAAlEAAABPAAAAXwAAAEgAAABIAAAAXwAAAF8AAABFAAABXwAAAF8AAABQAAAAUAAAAF8AAABfAAAAXwAAAFAAAABfAAAAUAAAAF8AAABIAAAASAAAAE8AAABfAAAARQAAAkgAAABfAAAAXwAAAFAAAABPAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAABcAAABFAAADRQAAAkUAAAFfAAAATwAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAASAAAAF8AAAAXAAACXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAE8AAABfAAAAXwAAAEUAAAFFAAACSAAAAEUAAANIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAADQAAAALAAAATwAAAFAAAABPAAAAUAAAABcAAABQAAAAUAAAAF8AAABfAAAASAAAAF8AAABfAAAATwAAAF8AAAA0AAAARQAAAE8AAABQAAAATwAAAFAAAABfAAAAUAAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJPAAAARQAAA08AAABFAAAAXwAAAFAAAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUAAAAF8AAABFAAACRQAAAkUAAAJFAAABRQAAAV8AAABfAAAAFwAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAl8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAAFFAAACRQAAAF8AAABFAAADRQAAAUUAAAFFAAADXwAAAEUAAAMXAAAAFwAAARcAAABFAAACXwAAAEUAAAJFAAABRQAAAEUAAABfAAAARQAAAkUAAAFFAAABRQAAAhcAAAFFAAACFwAAA18AAAAXAAACRQAAA18AAABFAAABRQAAA0UAAABFAAADXwAAAEUAAABFAAADRQAAAkUAAAEXAAABRQAAAA== 2,-6: ind: 2,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAASAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAAJfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAF8AAABFAAABFwAAAxcAAAMXAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAABcAAAIXAAABSwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEgAAAApAAAAKQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAKQAAACkAAABFAAADKQAAACkAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAACkAAAApAAAARQAAACkAAAApAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAApAAAAKQAAAEUAAAMpAAAAKQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAKQAAACkAAABFAAACXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAASAAAABcAAAEXAAAAFwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAEXAAACFwAAA0sAAAJfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABFAAABXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAARQAAAQ== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAASAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAAFfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAABRQAAA18AAABFAAAAFwAAARcAAAIXAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAARcAAAAXAAACSwAAAl8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEgAAAApAAAAKQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAKQAAACkAAABFAAADKQAAACkAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAACkAAAApAAAARQAAAykAAAApAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAApAAAAKQAAAEUAAAEpAAAAKQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAKQAAACkAAABFAAABXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAASAAAABcAAAIXAAACFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAIXAAADFwAAAksAAANfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABFAAADXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAARQAAAg== 3,-6: ind: 3,-6 - tiles: FwAAAF8AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAkgAAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAANIAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAAARQAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAEUAAANfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAFFAAACXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAACSAAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAA0UAAAFfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAJFAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAABRQAAA18AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAEUAAAJfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAABFAAADXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAABSAAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAEUAAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: FwAAAF8AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAJfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAUgAAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAABIAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAAARQAAAl8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAA0UAAAJfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAFFAAACXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAACSAAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAA0UAAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAANFAAACXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAADRQAAAV8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAUUAAAJfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAABFAAABXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAABSAAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAA0UAAAJfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,-5: ind: 3,-5 - tiles: SwAAA0UAAAFfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAANFAAABXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAABRQAAAl8AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAxcAAANfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAABFAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAACSAAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAASwAAAkUAAAFIAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAEsAAANIAAAARQAAAl8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABFAAADRQAAA0UAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAFEAAAFPAAAAXwAAAF8AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUQAAAFAAAABPAAAAXwAAAF8AAABQAAAAUAAAAFAAAABIAAAAUAAAAFAAAABQAAAAXwAAAE8AAABQAAAAXwAAAF8AAABfAAAAUAAAAF8AAABfAAAAXwAAAFEAAAJfAAAAXwAAAFEAAANQAAAAUQAAA18AAABfAAAAXwAAAFAAAABfAAAAUAAAAF8AAABfAAAAXwAAAF8AAABIAAAASAAAAEgAAABQAAAAUAAAAFAAAABfAAAAUAAAAFAAAABfAAAAXwAAAF8AAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: SwAAAUUAAANfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAFFAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAABRQAAAV8AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAxcAAANfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAFFAAACXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAABSAAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAASwAAAkUAAAFIAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAEsAAABIAAAARQAAAV8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABFAAAARQAAAEUAAANfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAFEAAAFPAAAAXwAAAF8AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUQAAAVAAAABPAAAAXwAAAF8AAABQAAAAUAAAAFAAAABIAAAAUAAAAFAAAABQAAAAXwAAAE8AAABQAAAAXwAAAF8AAABfAAAAUAAAAF8AAABfAAAAXwAAAFEAAABfAAAAXwAAAFEAAABQAAAAUQAAAF8AAABfAAAAXwAAAFAAAABfAAAAUAAAAF8AAABfAAAAXwAAAF8AAABIAAAASAAAAEgAAABQAAAAUAAAAFAAAABfAAAAUAAAAFAAAABfAAAAXwAAAF8AAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== 4,-5: ind: 4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAF4AAAAEAAAABAAAAgQAAAEEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAIEAAABBAAAAgQAAAEEAAABBAAAAAQAAAEEAAABBAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAIEAAABBAAAAgQAAAEEAAAABAAAAAQAAAEEAAAABAAAAgQAAAEEAAABAAAAAAAAAAAAAAAABAAAAgQAAAIEAAAABAAAAAQAAAEEAAACBAAAAAQAAAAEAAAABAAAAgQAAAAEAAACBAAAAAQAAAAAAAAAAAAAAF8AAAAEAAACBAAAAl8AAAAXAAABXwAAAAQAAAEEAAABBAAAAgQAAAEEAAABBAAAAgQAAAEEAAACBAAAAAAAAABfAAAAXwAAAAQAAABfAAAAFwAAAV8AAAAEAAAABAAAAQQAAAAEAAACBAAAAQQAAAEEAAABBAAAAQQAAAEEAAABUAAAAF8AAABfAAAAXwAAABcAAAJfAAAAXwAAAF8AAAAEAAABBAAAAAQAAAIEAAACBAAAAQQAAAAEAAAABAAAAV8AAABfAAAAUAAAAF8AAABIAAAASAAAAEgAAABfAAAABAAAAQQAAAEEAAAABAAAAQQAAAIEAAAABAAAAgQAAABfAAAAXwAAAFEAAAFRAAAATwAAAFEAAAJIAAAAXwAAAAQAAAIEAAABBAAAAAQAAAEEAAACBAAAAQQAAAIEAAACTwAAAF8AAABIAAAAXwAAAE8AAABQAAAAUQAAAF8AAAAEAAABBAAAAQQAAAEEAAACBAAAAQQAAAEEAAABBAAAAQ== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAV4AAAAEAAACBAAAAQQAAAIEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAEEAAABBAAAAQQAAAAEAAACBAAAAAQAAAIEAAABBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAEEAAABBAAAAgQAAAIEAAACBAAAAQQAAAEEAAAABAAAAQQAAAIEAAACAAAAAAAAAAAAAAAABAAAAAQAAAEEAAABBAAAAgQAAAAEAAABBAAAAQQAAAAEAAAABAAAAQQAAAAEAAABBAAAAQQAAAAAAAAAAAAAAF8AAAAEAAAABAAAAV8AAAAXAAACXwAAAAQAAAIEAAABBAAAAQQAAAAEAAACBAAAAAQAAAIEAAAABAAAAAAAAABfAAAAXwAAAAQAAAFfAAAAFwAAAV8AAAAEAAABBAAAAgQAAAEEAAAABAAAAgQAAAEEAAACBAAAAgQAAAAEAAABUAAAAF8AAABfAAAAXwAAABcAAAFfAAAAXwAAAF8AAAAEAAAABAAAAAQAAAIEAAACBAAAAQQAAAIEAAABBAAAAF8AAABfAAAAUAAAAF8AAABIAAAASAAAAEgAAABfAAAABAAAAgQAAAIEAAAABAAAAgQAAAIEAAABBAAAAQQAAAJfAAAAXwAAAFEAAABRAAACTwAAAFEAAANIAAAAXwAAAAQAAAEEAAACBAAAAgQAAAIEAAACBAAAAAQAAAAEAAABTwAAAF8AAABIAAAAXwAAAE8AAABQAAAAUQAAAl8AAAAEAAACBAAAAAQAAAEEAAABBAAAAgQAAAIEAAABBAAAAA== -3,-3: ind: -3,-3 - tiles: XwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAFIAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAACwAAAEUAAAJFAAACRQAAA18AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAEUAAAFFAAABRQAAAkUAAAJfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAABRQAAAkgAAABFAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAEUAAANFAAACRQAAAV8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAABFAAABRQAAAF8AAABfAAAAXwAAABcAAANfAAAAXwAAAF8AAABfAAAARQAAAEUAAANFAAACRQAAAkUAAAFFAAAARQAAAEUAAAEXAAACRQAAAF8AAAAXAAADFwAAAV8AAABfAAAAXwAAAF8AAAAXAAACFwAAAhcAAAMXAAABXwAAAEUAAANFAAACFwAAAUUAAAJfAAAAXwAAAF8AAABfAAAAXwAAABcAAAFfAAAATwAAAE8AAABPAAAATwAAAF8AAABPAAAATwAAAF8AAABFAAAAXwAAAAAAAAAAAAAAXgAAAF8AAABFAAAAXwAAAE8AAABPAAAATwAAAE8AAABfAAAATwAAAF8AAABfAAAASAAAAF8AAAAAAAAAXwAAAF8AAABfAAAAFwAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAEUAAANfAAAAAAAAAF8AAABFAAACRQAAAAsAAABfAAAARQAAAAsAAABFAAACRQAAA0UAAABFAAADXwAAAF8AAAAXAAAAXwAAAF4AAABfAAAACwAAAEUAAAELAAAAXwAAAEUAAAFFAAADRQAAAQsAAABFAAAARQAAAF8AAABFAAAARQAAAl8AAAAAAAAAFwAAAUUAAAJIAAAARQAAAF8AAABFAAAARQAAAUgAAABFAAABRQAAAkUAAAIXAAAASAAAAEUAAANfAAAAAAAAAF8AAABIAAAARQAAA0gAAABfAAAARQAAAkUAAABFAAACRQAAAEUAAAJFAAADFwAAAEUAAABFAAABXwAAAAAAAABfAAAAXwAAAF8AAABIAAAAXwAAAEUAAAFFAAAARQAAAEUAAAFFAAACRQAAAF8AAABFAAACRQAAAA== + tiles: XwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAANIAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAACwAAAEUAAAFFAAAARQAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAEUAAAFFAAAARQAAA0UAAANfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAACRQAAAkgAAABFAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAA0UAAAJFAAACRQAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAANFAAADRQAAAV8AAABfAAAAXwAAABcAAANfAAAAXwAAAF8AAABfAAAARQAAAEUAAAJFAAAARQAAAEUAAABFAAADRQAAAkUAAAMXAAAARQAAAl8AAAAXAAACFwAAAl8AAABfAAAAXwAAAF8AAAAXAAAAFwAAAxcAAAAXAAADXwAAAEUAAABFAAABFwAAAkUAAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAANfAAAATwAAAE8AAABPAAAATwAAAF8AAABPAAAATwAAAF8AAABFAAADXwAAAAAAAAAAAAAAXgAAAF8AAABFAAADXwAAAE8AAABPAAAATwAAAE8AAABfAAAATwAAAF8AAABfAAAASAAAAF8AAAAAAAAAXwAAAF8AAABfAAAAFwAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAEUAAAJfAAAAAAAAAF8AAABFAAAARQAAAQsAAABfAAAARQAAAAsAAABFAAADRQAAAUUAAAFFAAAAXwAAAF8AAAAXAAABXwAAAF4AAABfAAAACwAAAEUAAAMLAAAAXwAAAEUAAANFAAABRQAAAAsAAABFAAACRQAAAF8AAABFAAADRQAAAl8AAAAAAAAAFwAAAEUAAAFIAAAARQAAA18AAABFAAAARQAAAkgAAABFAAAARQAAA0UAAAMXAAACSAAAAEUAAAJfAAAAAAAAAF8AAABIAAAARQAAAUgAAABfAAAARQAAAEUAAABFAAADRQAAAkUAAAFFAAAAFwAAAUUAAANFAAAAXwAAAAAAAABfAAAAXwAAAF8AAABIAAAAXwAAAEUAAANFAAAARQAAAUUAAAJFAAAARQAAA18AAABFAAAARQAAAw== -3,-4: ind: -3,-4 - tiles: XwAAAEUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABQAAAAXwAAADQAAAA0AAAAFwAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJfAAAARQAAAV8AAABfAAAAXwAAAF8AAABeAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAQsAAABfAAAAXwAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAABFAAAASAAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAACRQAAAEgAAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAF8AAABIAAAARQAAAkUAAAJFAAACXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAwsAAABfAAAARQAAAEUAAAJFAAACRQAAA18AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAACXwAAAF8AAABFAAABRQAAAUUAAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAACwAAAEUAAAJFAAACXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAABRQAAA18AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABSAAAAEUAAAJfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAANFAAAAXwAAAA== + tiles: XwAAAEUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABQAAAAXwAAADQAAAA0AAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFfAAAARQAAA18AAABfAAAAXwAAAF8AAABeAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABRQAAAgsAAABfAAAAXwAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAABFAAAASAAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAAARQAAA0gAAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABRQAAAl8AAABIAAAARQAAAEUAAABFAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAAsAAABfAAAARQAAA0UAAANFAAACRQAAA18AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAAXwAAAF8AAABFAAABRQAAA0UAAAJfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAACwAAAEUAAAFFAAABXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAABRQAAAl8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABSAAAAEUAAANfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAAJFAAABXwAAAA== -4,-3: ind: -4,-3 - tiles: AAAAAAAAAABeAAAAAAAAAAAAAABfAAAAUQAAAk8AAABQAAAAUAAAAF8AAAAAAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF8AAABPAAAASAAAAF8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAABfAAAATwAAAEgAAABfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXwAAAE8AAABIAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF8AAABPAAAATwAAAF8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAABfAAAASAAAAE8AAABfAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXwAAAF8AAABIAAAAXwAAAF8AAABfAAAAXgAAAF8AAABFAAAARQAAA0UAAAMAAAAAAAAAAF4AAAAAAAAAAAAAAF8AAABFAAADRQAAA0UAAANFAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAABeAAAAXgAAAF4AAABfAAAAUQAAAEUAAAJFAAACRQAAAF8AAAAAAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXwAAAEUAAAJIAAAARQAAAEUAAANfAAAAAAAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF8AAABFAAACRQAAAEUAAAJFAAADXwAAAAAAAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAkUAAABFAAAARQAAA18AAAAAAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAFwAAAV8AAABfAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE8AAABPAAAATwAAAEgAAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABPAAAATwAAAE8AAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: AAAAAAAAAABeAAAAAAAAAAAAAABfAAAAUQAAAU8AAABQAAAAUAAAAF8AAAAAAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF8AAABPAAAASAAAAF8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAABfAAAATwAAAEgAAABfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXwAAAE8AAABIAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF8AAABPAAAATwAAAF8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAABfAAAASAAAAE8AAABfAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXwAAAF8AAABIAAAAXwAAAF8AAABfAAAAXgAAAF8AAABFAAAARQAAA0UAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF8AAABFAAACRQAAAEUAAANFAAACXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAABeAAAAXgAAAF4AAABfAAAAUQAAA0UAAAJFAAABRQAAAl8AAAAAAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXwAAAEUAAABIAAAARQAAAkUAAABfAAAAAAAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF8AAABFAAAARQAAA0UAAANFAAAAXwAAAAAAAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAEUAAAFFAAACRQAAAF8AAAAAAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAFwAAAl8AAABfAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE8AAABPAAAATwAAAEgAAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABPAAAATwAAAE8AAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== -4,-4: ind: -4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAE8AAABPAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABFAAAARQAAAUUAAAFfAAAAXwAAAF8AAABRAAACXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAUAAAAFAAAABQAAAAXwAAAEUAAAFfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAFAAAABQAAAAUAAAAEUAAANfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABQAAAAUAAAAFAAAABfAAAARQAAARcAAAMXAAACFwAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAASAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXwAAAF8AAABPAAAAXwAAAF4AAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAABeAAAAFwAAABcAAAIXAAABTwAAAE8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAEgAAABPAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF8AAABPAAAATwAAAF8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAABfAAAATwAAAE8AAABfAAAAXwAAAF8AAAAAAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXwAAAE8AAABPAAAAUAAAAFAAAABfAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF8AAABPAAAASAAAAFAAAABQAAAAXwAAAAAAAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAAAAAAAAAAABfAAAATwAAAE8AAABQAAAAUAAAAF8AAAAAAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAE8AAABPAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABFAAADRQAAAEUAAAJfAAAAXwAAAF8AAABRAAACXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAUAAAAFAAAABQAAAAXwAAAEUAAAJfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAFAAAABQAAAAUAAAAEUAAAJfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABQAAAAUAAAAFAAAABfAAAARQAAABcAAAEXAAAAFwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAASAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXwAAAF8AAABPAAAAXwAAAF4AAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAABeAAAAFwAAABcAAAIXAAADTwAAAE8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAEgAAABPAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF8AAABPAAAATwAAAF8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAABfAAAATwAAAE8AAABfAAAAXwAAAF8AAAAAAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXwAAAE8AAABPAAAAUAAAAFAAAABfAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF8AAABPAAAASAAAAFAAAABQAAAAXwAAAAAAAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAAAAAAAAAAABfAAAATwAAAE8AAABQAAAAUAAAAF8AAAAAAAAAXwAAAF8AAABfAAAAXwAAAA== -3,0: ind: -3,0 - tiles: RQAAAUUAAANFAAAAFwAAAEUAAANFAAABRQAAAkUAAAFFAAACRQAAAkUAAANFAAAARQAAAkUAAAFFAAACRQAAAEUAAANFAAABRQAAAhcAAABFAAADRQAAAkUAAAJFAAAARQAAAEUAAAFFAAAARQAAAUUAAANFAAACRQAAA0UAAAAXAAADFwAAAxcAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAACFwAAAl8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAFFAAADRQAAA1AAAABfAAAAKQAAACkAAAApAAAATgAAAU4AAAApAAAAKQAAACkAAABfAAAAKQAAAEUAAANFAAABRQAAAEUAAANPAAAAXwAAACkAAAApAAAAKQAAAE4AAABOAAAAKQAAACkAAAApAAAAXwAAACkAAABFAAADRQAAA0UAAANFAAAATwAAAF8AAAApAAAAKQAAACkAAABOAAAATgAAASkAAAApAAAAKQAAAF8AAAApAAAARQAAAUUAAANFAAADRQAAAFAAAABfAAAAKQAAACkAAAApAAAATgAAAk4AAAApAAAAKQAAACkAAABfAAAAKQAAAEUAAAJFAAABRQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAAXAAABXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAEUAAAFFAAAAXwAAAFwAAAFfAAAAHAAAAxwAAAMcAAADHAAAARwAAAAcAAACXwAAABcAAAEXAAAAXwAAABcAAAMXAAAAXwAAAF8AAABcAAACXwAAABwAAAAcAAABHAAAAxwAAAIcAAAAHAAAAF8AAAAbAAAAGwAAAEUAAAFFAAACRQAAAl8AAABcAAADXAAAAl8AAAAcAAABHAAAAxwAAAAcAAABHAAAAxwAAABfAAAAGwAAABwAAABFAAABSAAAAEUAAAMXAAADXAAAAlwAAABfAAAAHAAAAhwAAAMcAAABHAAAAxwAAAAcAAADXwAAABsAAABfAAAARQAAAkUAAABFAAACXwAAAF8AAABfAAAAXwAAABwAAAAcAAACHAAAABwAAAMcAAACHAAAAl8AAABfAAAAXwAAAEUAAAJfAAAAFwAAAF8AAABfAAAASwAAAF8AAAAcAAACHAAAAxwAAAIcAAAAHAAAAhwAAAEXAAADFwAAA18AAABFAAACRQAAA0gAAABFAAADUAAAAEsAAANfAAAAHAAAAxwAAAEcAAAAHAAAARwAAAIcAAADFwAAAhcAAAEXAAADRQAAAkgAAABIAAAARQAAA18AAABLAAAAXwAAABwAAAIcAAAAHAAAARwAAAEcAAABHAAAABcAAAEXAAAAXwAAAA== + tiles: RQAAA0UAAAFFAAACFwAAAkUAAAFFAAADRQAAAUUAAAJFAAABRQAAAkUAAAJFAAABRQAAAkUAAAJFAAAARQAAAEUAAAJFAAACRQAAAhcAAAFFAAADRQAAA0UAAANFAAACRQAAAkUAAAFFAAADRQAAAUUAAABFAAACRQAAAUUAAAMXAAABFwAAARcAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAFwAAA18AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAJFAAABRQAAA1AAAABfAAAAKQAAACkAAAApAAAATgAAAU4AAAIpAAAAKQAAACkAAABfAAAAKQAAAEUAAAFFAAADRQAAAUUAAABPAAAAXwAAACkAAAApAAAAKQAAAE4AAAJOAAACKQAAACkAAAApAAAAXwAAACkAAABFAAADRQAAAEUAAAFFAAACTwAAAF8AAAApAAAAKQAAACkAAABOAAABTgAAAikAAAApAAAAKQAAAF8AAAApAAAARQAAAUUAAABFAAADRQAAAVAAAABfAAAAKQAAACkAAAApAAAATgAAA04AAAIpAAAAKQAAACkAAABfAAAAKQAAAEUAAAJFAAACRQAAA0UAAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAMXAAACXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAkUAAABFAAABXwAAAFwAAABfAAAAHAAAAhwAAAAcAAACHAAAARwAAAIcAAAAXwAAABcAAAMXAAABXwAAABcAAAEXAAACXwAAAF8AAABcAAAAXwAAABwAAAEcAAAAHAAAARwAAAIcAAABHAAAAl8AAAAbAAADGwAAA0UAAAFFAAADRQAAA18AAABcAAACXAAAAl8AAAAcAAAAHAAAABwAAAAcAAACHAAAABwAAABfAAAAGwAAABwAAAFFAAADSAAAAEUAAAMXAAACXAAAAlwAAAJfAAAAHAAAABwAAAIcAAACHAAAABwAAAIcAAAAXwAAABsAAABfAAAARQAAA0UAAAFFAAADXwAAAF8AAABfAAAAXwAAABwAAAAcAAACHAAAAxwAAAAcAAACHAAAAl8AAABfAAAAXwAAAEUAAAJfAAAAFwAAA18AAABfAAAASwAAAF8AAAAcAAABHAAAABwAAAIcAAACHAAAABwAAAIXAAAAFwAAAV8AAABFAAADRQAAAUgAAABFAAAAUAAAAEsAAABfAAAAHAAAAhwAAAEcAAABHAAAAhwAAAIcAAADFwAAAxcAAAIXAAADRQAAAEgAAABIAAAARQAAAV8AAABLAAAAXwAAABwAAAEcAAABHAAAAxwAAAMcAAACHAAAAxcAAAAXAAACXwAAAA== -3,1: ind: -3,1 - tiles: SAAAAEUAAANFAAADRQAAA18AAABLAAACXwAAAF8AAAAbAAAAGwAAAxsAAAAbAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAV8AAABfAAAARQAAAEsAAABfAAAAXwAAAF8AAABFAAACRQAAA18AAABFAAACRQAAAUUAAABFAAABRQAAAksAAANLAAACSwAAAEsAAABLAAAASwAAA0sAAABLAAAASwAAAksAAANfAAAARQAAA0UAAAFFAAAARQAAA0UAAAJLAAABHAAAAxwAAAEXAAADHAAAAhwAAAIXAAABHAAAABwAAAFLAAACXwAAAEUAAAFFAAACRQAAA0YAAANGAAAASwAAABwAAAIcAAABFwAAAhwAAAEcAAAAFwAAAxwAAAIcAAADSwAAAl8AAABFAAAARQAAAEUAAAFGAAAARgAAA0sAAAIXAAABFwAAABcAAAEXAAACFwAAAxcAAAIXAAADFwAAAUsAAAAXAAAASAAAAEUAAANFAAAARgAAAkYAAANLAAACHAAAAxwAAAIXAAADHAAAAhwAAAIXAAACHAAAAxwAAABLAAABFwAAAkgAAABFAAABRQAAAkUAAAJFAAADSwAAAxwAAAIcAAABFwAAABwAAAAcAAACFwAAAhwAAAMcAAABSwAAA18AAABFAAACRQAAAkUAAABFAAABRQAAAksAAANLAAABSwAAA0sAAAJLAAADSwAAAksAAAFLAAADSwAAAUsAAAFfAAAARQAAAkUAAAJFAAADRQAAA0UAAANFAAABRQAAAUUAAANFAAACRQAAA0UAAAFFAAAARQAAAkUAAAJFAAACRQAAA0UAAAFFAAABRQAAAkgAAABIAAAASAAAAEgAAABfAAAAXwAAAEUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAALAAAARQAAA0UAAAJfAAAAFwAAABcAAAJfAAAAXwAAAEgAAABIAAAASAAAAF8AAABFAAACRQAAAEUAAABfAAAAXwAAAF8AAAAXAAADRQAAAUgAAABIAAAARQAAAkUAAANFAAABRQAAAEUAAANfAAAARQAAAUUAAAJFAAACXwAAAEUAAANFAAABRQAAA0UAAAFFAAABRQAAAEUAAAFFAAADRQAAAEUAAANFAAAAFwAAA0UAAAFFAAADRQAAAl8AAABfAAAAXwAAAF8AAABFAAACRQAAAEsAAAFLAAACSwAAAUsAAAJLAAACRQAAAF8AAABFAAADRQAAAkUAAAFfAAAAXwAAAF8AAABfAAAARgAAAEYAAAFLAAABHAAAAhwAAAAcAAAASwAAAUUAAABfAAAARQAAAkUAAAFFAAADXwAAAF8AAABfAAAAXwAAAA== + tiles: SAAAAEUAAAFFAAAARQAAA18AAABLAAACXwAAAF8AAAAbAAADGwAAARsAAAMbAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAF8AAABfAAAARQAAAksAAANfAAAAXwAAAF8AAABFAAAARQAAAl8AAABFAAADRQAAAEUAAAFFAAADRQAAAUsAAAJLAAACSwAAAksAAANLAAADSwAAAEsAAAFLAAADSwAAAUsAAABfAAAARQAAA0UAAAJFAAAARQAAA0UAAAFLAAAAHAAAAxwAAAMXAAACHAAAARwAAAIXAAAAHAAAARwAAANLAAABXwAAAEUAAAFFAAAARQAAA0YAAAJGAAAASwAAAhwAAAEcAAACFwAAAxwAAAEcAAAAFwAAARwAAAEcAAADSwAAAF8AAABFAAABRQAAAEUAAANGAAAARgAAAEsAAAMXAAAAFwAAABcAAAAXAAAAFwAAARcAAAMXAAABFwAAAEsAAAIXAAABSAAAAEUAAABFAAABRgAAAUYAAAJLAAAAHAAAAxwAAAAXAAACHAAAABwAAAIXAAACHAAAAxwAAAFLAAADFwAAAkgAAABFAAABRQAAAkUAAABFAAADSwAAAhwAAAIcAAABFwAAAxwAAAMcAAACFwAAAhwAAAIcAAADSwAAA18AAABFAAABRQAAA0UAAANFAAAARQAAA0sAAAJLAAABSwAAA0sAAAFLAAACSwAAAksAAANLAAABSwAAAEsAAAJfAAAARQAAAkUAAAFFAAABRQAAAkUAAANFAAACRQAAA0UAAAFFAAACRQAAAUUAAABFAAABRQAAAUUAAABFAAACRQAAA0UAAAFFAAACRQAAAEgAAABIAAAASAAAAEgAAABfAAAAXwAAAEUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAALAAAARQAAAUUAAANfAAAAFwAAAhcAAAJfAAAAXwAAAEgAAABIAAAASAAAAF8AAABFAAAARQAAA0UAAAJfAAAAXwAAAF8AAAAXAAACRQAAAkgAAABIAAAARQAAA0UAAANFAAABRQAAAEUAAAJfAAAARQAAAUUAAAJFAAAAXwAAAEUAAABFAAABRQAAAEUAAAJFAAABRQAAAEUAAAFFAAAARQAAAkUAAAJFAAABFwAAAkUAAAJFAAACRQAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAUsAAABLAAACSwAAA0sAAABLAAADRQAAA18AAABFAAABRQAAAkUAAABfAAAAXwAAAF8AAABfAAAARgAAA0YAAAJLAAACHAAAAhwAAAEcAAACSwAAA0UAAABfAAAARQAAA0UAAAJFAAABXwAAAF8AAABfAAAAXwAAAA== -4,-1: ind: -4,-1 - tiles: AAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABFAAAARQAAAkUAAANFAAAAXwAAAF8AAABfAAAASAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAF8AAABfAAAARQAAAkUAAABFAAABRQAAAF8AAABRAAADUQAAA0UAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAEUAAANFAAAARQAAAkUAAABfAAAAUQAAAFEAAANFAAABAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABFAAABRQAAA0UAAAJFAAABXwAAAFEAAANRAAAARQAAAgAAAABeAAAAAAAAAAAAAABeAAAAAAAAAF8AAABfAAAARQAAAkUAAAJFAAAARQAAAV8AAABfAAAAXwAAAEUAAAEAAAAAXgAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAEgAAABFAAABRQAAAkUAAAFFAAADRQAAA18AAABIAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABFAAAARQAAAUgAAABFAAACRQAAAkUAAAFfAAAARQAAAwAAAABeAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAARQAAAkUAAABFAAABFwAAAkUAAABFAAACXwAAAEUAAAIAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAEUAAANFAAACRQAAAEUAAABFAAAARQAAAV8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXwAAAF8AAABFAAACRQAAAEUAAAJFAAABRQAAAUUAAAIXAAABTQAAA18AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEUAAABFAAACRQAAAUUAAAJFAAADFwAAAE0AAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAEgAAABPAAAATwAAAE8AAABPAAAAXwAAABcAAAJfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAXAAACXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAXAAAAFwAAABcAAAFPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: AAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABFAAADRQAAAkUAAANFAAADXwAAAF8AAABfAAAASAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAF8AAABfAAAARQAAAEUAAAFFAAADRQAAA18AAABRAAADUQAAA0UAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAEUAAAJFAAABRQAAAUUAAABfAAAAUQAAAlEAAAFFAAACAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABFAAABRQAAAkUAAAJFAAACXwAAAFEAAAJRAAACRQAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAF8AAABfAAAARQAAAUUAAANFAAADRQAAA18AAABfAAAAXwAAAEUAAAMAAAAAXgAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAEgAAABFAAABRQAAAkUAAANFAAABRQAAAl8AAABIAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABFAAABRQAAAUgAAABFAAAARQAAAUUAAAFfAAAARQAAAQAAAABeAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAARQAAA0UAAANFAAAAFwAAAUUAAAJFAAADXwAAAEUAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAEUAAAFFAAABRQAAAUUAAABFAAAARQAAAl8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXwAAAF8AAABFAAADRQAAAUUAAABFAAABRQAAAUUAAAIXAAABTQAAA18AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEUAAANFAAACRQAAAkUAAABFAAABFwAAA00AAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAEgAAABPAAAATwAAAE8AAABPAAAAXwAAABcAAAFfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAXAAADXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAXAAADFwAAARcAAAFPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== -4,-2: ind: -4,-2 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAFEAAAFIAAAAXwAAABcAAANFAAACRQAAAkUAAAJFAAAARQAAAUUAAABfAAAARQAAAUgAAABFAAADRQAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAANIAAAAXwAAAE8AAABfAAAAXwAAAE8AAABfAAAAXwAAAE8AAABPAAAACwAAAF8AAABfAAAAXwAAAEUAAANFAAAARQAAA18AAABIAAAAXwAAAEgAAABfAAAAXwAAAF8AAABPAAAATwAAAAsAAABfAAAAXwAAAF8AAABFAAAARQAAAkUAAANfAAAAXwAAAEgAAABfAAAAXwAAAFAAAABQAAAAXwAAAF8AAABFAAACXwAAAF8AAABfAAAAXwAAAF8AAAAXAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAA18AAABfAAAAXwAAAEUAAAFFAAAASAAAAEUAAAJFAAABRQAAA0UAAAJFAAAARQAAAEUAAAJfAAAARQAAAUgAAABFAAAASAAAABcAAABIAAAARQAAA0UAAAJFAAABRQAAAEUAAABFAAADRQAAAEUAAANIAAAAXwAAAEUAAANFAAAAXwAAAF8AAAAXAAACRQAAA0UAAABFAAABRQAAAEUAAAFFAAABRQAAA0UAAAFIAAAARQAAAAsAAABIAAAARQAAAV8AAABFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAANfAAAARQAAA0UAAABfAAAARQAAA0UAAABfAAAAUAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXwAAAE8AAABPAAAAXwAAABcAAAAXAAAAXwAAABcAAANfAAAAXwAAAFAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABPAAAATwAAAF8AAAALAAAACwAAAEgAAABFAAACRQAAA0UAAANFAAADAAAAAF4AAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAARQAAAEgAAABFAAAARQAAAEUAAANfAAAARQAAAwAAAABeAAAAAAAAAAAAAABeAAAAFwAAARcAAAEXAAABRQAAAUgAAABFAAAARQAAAUUAAAJIAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAEUAAAJFAAABRQAAAkUAAANFAAACRQAAAV8AAABFAAADAAAAAF4AAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABFAAABRQAAAUgAAABFAAAARQAAAEUAAANfAAAARQAAAw== + tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAFEAAANIAAAAXwAAABcAAAFFAAABRQAAAEUAAABFAAACRQAAA0UAAABfAAAARQAAAkgAAABFAAACRQAAAl8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAAJIAAAAXwAAAE8AAABfAAAAXwAAAE8AAABfAAAAXwAAAE8AAABPAAAACwAAAF8AAABfAAAAXwAAAEUAAAFFAAAARQAAAV8AAABIAAAAXwAAAEgAAABfAAAAXwAAAF8AAABPAAAATwAAAAsAAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAAFfAAAAXwAAAEgAAABfAAAAXwAAAFAAAABQAAAAXwAAAF8AAABFAAACXwAAAF8AAABfAAAAXwAAAF8AAAAXAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAA18AAABfAAAAXwAAAEUAAABFAAADSAAAAEUAAAJFAAADRQAAAEUAAANFAAACRQAAAkUAAABfAAAARQAAA0gAAABFAAABSAAAABcAAAFIAAAARQAAAUUAAAFFAAADRQAAAkUAAABFAAAARQAAAkUAAAJIAAAAXwAAAEUAAAJFAAABXwAAAF8AAAAXAAABRQAAA0UAAAFFAAADRQAAAkUAAANFAAAARQAAA0UAAABIAAAARQAAAgsAAABIAAAARQAAAV8AAABFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAFfAAAARQAAAUUAAABfAAAARQAAA0UAAANfAAAAUAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXwAAAE8AAABPAAAAXwAAABcAAAIXAAADXwAAABcAAANfAAAAXwAAAFAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABPAAAATwAAAF8AAAALAAAACwAAAEgAAABFAAAARQAAAkUAAAFFAAABAAAAAF4AAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAARQAAAUgAAABFAAABRQAAAUUAAAJfAAAARQAAAQAAAABeAAAAAAAAAAAAAABeAAAAFwAAAxcAAAAXAAABRQAAAEgAAABFAAACRQAAAkUAAAFIAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAEUAAANFAAAARQAAAEUAAAFFAAABRQAAAl8AAABFAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABFAAACRQAAAkgAAABFAAADRQAAAUUAAABfAAAARQAAAw== -5,-1: ind: -5,-1 tiles: XgAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABfAAAAXwAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXwAAAE8AAABfAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAXwAAAF8AAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAABfAAAAXwAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAXwAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXwAAAF8AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -5,-2: ind: -5,-2 - tiles: XgAAAF4AAAAAAAAAAAAAAF8AAABQAAAARQAAAlAAAABFAAACUAAAAF8AAAAXAAAATwAAAE8AAABPAAAAFwAAAF4AAAAAAAAAAAAAAAAAAABfAAAAUAAAAEUAAAJQAAAARQAAA1AAAABfAAAAFwAAAU8AAAAXAAAATwAAABcAAABeAAAAAAAAAAAAAAAAAAAAXwAAAFAAAABFAAAAUAAAAEUAAAFQAAAAXwAAABcAAAJfAAAAXwAAAF8AAAAXAAAAXgAAAAAAAAAAAAAAAAAAAF8AAABFAAABRQAAA0UAAAFFAAADRQAAAF8AAABIAAAAFwAAARcAAAAXAAAASAAAAF4AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAABcAAAEXAAADFwAAAEgAAABeAAAAXgAAAF4AAABfAAAAXwAAAEUAAAJFAAAARQAAAkUAAAFFAAABXwAAAEgAAAAXAAAAXwAAABcAAABIAAAAXgAAAAAAAAAAAAAAXgAAAF8AAABFAAADRQAAAkUAAAFFAAAARQAAAV8AAABIAAAAXwAAAF8AAABfAAAASAAAAF4AAAAAAAAAAAAAAF8AAABfAAAARQAAA0UAAABFAAADRQAAAkUAAAAXAAABSAAAABcAAAEXAAAAFwAAAUgAAABeAAAAAAAAAAAAAABfAAAAXwAAAEUAAABFAAAARQAAAkUAAABFAAACFwAAAUgAAAAXAAACFwAAARcAAAFIAAAAXgAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAF4AAABfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAABfAAAAXwAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAA== + tiles: XgAAAF4AAAAAAAAAAAAAAF8AAABQAAAARQAAAVAAAABFAAABUAAAAF8AAAAXAAACTwAAAE8AAABPAAAAFwAAAV4AAAAAAAAAAAAAAAAAAABfAAAAUAAAAEUAAABQAAAARQAAA1AAAABfAAAAFwAAAE8AAAAXAAADTwAAABcAAABeAAAAAAAAAAAAAAAAAAAAXwAAAFAAAABFAAAAUAAAAEUAAAFQAAAAXwAAABcAAABfAAAAXwAAAF8AAAAXAAADXgAAAAAAAAAAAAAAAAAAAF8AAABFAAACRQAAAUUAAAFFAAADRQAAAl8AAABIAAAAFwAAABcAAAMXAAACSAAAAF4AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAABcAAAIXAAAAFwAAAUgAAABeAAAAXgAAAF4AAABfAAAAXwAAAEUAAANFAAACRQAAAkUAAABFAAABXwAAAEgAAAAXAAADXwAAABcAAABIAAAAXgAAAAAAAAAAAAAAXgAAAF8AAABFAAABRQAAAkUAAANFAAACRQAAAV8AAABIAAAAXwAAAF8AAABfAAAASAAAAF4AAAAAAAAAAAAAAF8AAABfAAAARQAAAEUAAAFFAAADRQAAA0UAAAAXAAACSAAAABcAAAEXAAABFwAAAEgAAABeAAAAAAAAAAAAAABfAAAAXwAAAEUAAAJFAAAARQAAAUUAAANFAAACFwAAAkgAAAAXAAACFwAAAxcAAANIAAAAXgAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAF4AAABfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAABfAAAAXwAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAA== -5,-3: ind: -5,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAFAAAABQAAAAUAAAAFAAAABQAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABQAAAAUAAAAFAAAABQAAAAUAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAUAAAAFAAAABQAAAAUAAAAFAAAAAXAAAAFwAAAhcAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXwAAAFAAAABQAAAAUAAAAFAAAABQAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF8AAABQAAAAUAAAAFAAAABQAAAAUAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAAAXAAACXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABfAAAAFwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXwAAABcAAAFfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXwAAABcAAAJfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF8AAAAXAAABXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAAAAAAF8AAABFAAAARQAAAUUAAAFFAAACRQAAAF8AAAAXAAAAFwAAARcAAAMXAAACXwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAFAAAABQAAAAUAAAAFAAAABQAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABQAAAAUAAAAFAAAABQAAAAUAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAUAAAAFAAAABQAAAAUAAAAFAAAAAXAAABFwAAABcAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXwAAAFAAAABQAAAAUAAAAFAAAABQAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF8AAABQAAAAUAAAAFAAAABQAAAAUAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAAAXAAADXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABfAAAAFwAAA18AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXwAAABcAAAJfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXwAAABcAAAJfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF8AAAAXAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAAAAAAF8AAABFAAADRQAAA0UAAAJFAAACRQAAA18AAAAXAAACFwAAAhcAAAMXAAACXwAAAA== -4,-5: ind: -4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAABcAAAMXAAAAFwAAAUUAAANFAAADRQAAAgsAAABFAAAARQAAAl8AAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABIAAAACwAAAEUAAAJFAAABSAAAAEUAAABfAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAUQAAAF8AAABFAAABSAAAAEUAAANFAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEgAAAALAAAARQAAAUUAAAALAAAACwAAAFAAAABQAAAARQAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABIAAAARQAAAUUAAABfAAAARQAAAkgAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJIAAAARQAAAEUAAAFIAAAAXwAAAEgAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAADXwAAAF8AAABfAAAARQAAAUUAAAFRAAAASAAAAF8AAABIAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAASAAAAEUAAAFIAAAASAAAAF8AAABfAAAASAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAFwAAABcAAAEXAAABRQAAAkUAAAJFAAADSAAAAF8AAABfAAAASAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAsAAAALAAAARQAAAUUAAABfAAAASAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAASAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAASAAAAEgAAABIAAAAXwAAAF8AAABfAAAASAAAAEgAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABIAAAASAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABfAAAASAAAAEgAAABfAAAAXwAAAF8AAABFAAAARQAAAV8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF8AAABFAAADRQAAAV8AAABPAAAAXwAAAE8AAABPAAAAXwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAABcAAAIXAAABFwAAAEUAAAJFAAACRQAAAAsAAABFAAADRQAAAV8AAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABIAAAACwAAAEUAAAFFAAADSAAAAEUAAABfAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAUQAAA18AAABFAAADSAAAAEUAAANFAAABXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEgAAAALAAAARQAAAkUAAAMLAAAACwAAAFAAAABQAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABIAAAARQAAAUUAAAJfAAAARQAAA0gAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFIAAAARQAAAkUAAANIAAAAXwAAAEgAAABfAAAAAAAAAAAAAAAAAAAAAAAAABcAAAMXAAADXwAAAF8AAABfAAAARQAAAkUAAANRAAAASAAAAF8AAABIAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAASAAAAEUAAAJIAAAASAAAAF8AAABfAAAASAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAFwAAARcAAAMXAAAARQAAAEUAAAFFAAAASAAAAF8AAABfAAAASAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAsAAAALAAAARQAAAEUAAAJfAAAASAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAASAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAASAAAAEgAAABIAAAAXwAAAF8AAABfAAAASAAAAEgAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABIAAAASAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABfAAAASAAAAEgAAABfAAAAXwAAAF8AAABFAAADRQAAA18AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF8AAABFAAABRQAAA18AAABPAAAAXwAAAE8AAABPAAAAXwAAAA== -4,-6: ind: -4,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAXAAABFwAAAl8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABBAAAAFwAAARcAAABBAAAAQQAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAQQAAABcAAAEXAAACFwAAABcAAAAXAAADXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAEEAAAAXAAACFwAAAkEAAABBAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAFwAAAxcAAANfAAAAXwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABIAAAACwAAAF8AAAALAAAAXwAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAFwAAAxcAAAMXAAABXwAAAAsAAABFAAACSAAAAF8AAABfAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEUAAABfAAAARQAAAkUAAAJFAAAAXwAAAF8AAAAAAAAAXwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAXAAADFwAAAV8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABBAAAAFwAAAxcAAANBAAAAQQAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAQQAAABcAAAIXAAABFwAAARcAAAEXAAACXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAEEAAAAXAAACFwAAA0EAAABBAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAFwAAABcAAAJfAAAAXwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABIAAAACwAAAF8AAAALAAAAXwAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAFwAAABcAAAMXAAABXwAAAAsAAABFAAABSAAAAF8AAABfAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEUAAANfAAAARQAAAEUAAAFFAAAAXwAAAF8AAAAAAAAAXwAAAA== -3,-6: ind: -3,-6 - tiles: AAAAAAAAAAAAAAAAXwAAAF8AAABFAAAARQAAAV8AAABFAAADRQAAA0UAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAE8AAABPAAAAXwAAAFEAAAJfAAAAUQAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAE8AAABPAAAAXwAAAF8AAABPAAAAXwAAAE8AAABPAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAE8AAABPAAAASAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAEgAAABRAAACTwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAE8AAABRAAABSAAAAE8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAE8AAABPAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAASAAAAE8AAABFAAADXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAASAAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAABfAAAASAAAAEUAAAMLAAAARQAAAQsAAAALAAAACwAAAAsAAABIAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAASAAAAEgAAABfAAAACwAAAEUAAANIAAAARQAAAEUAAAMLAAAARQAAA0gAAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABIAAAASAAAAAsAAABFAAAARQAAAl8AAABIAAAARQAAA0UAAAFFAAADXwAAAF8AAAAAAAAAAAAAAAAAAABIAAAASAAAAF8AAAALAAAARQAAA0UAAAFFAAABUQAAAgsAAABFAAACRQAAAEgAAABfAAAAXgAAAF4AAABeAAAARQAAAwsAAABfAAAARQAAAgsAAAALAAAACwAAAAsAAAALAAAASAAAAEUAAAJFAAABXwAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAXwAAAF8AAABFAAAARQAAA18AAABFAAACRQAAAUUAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAE8AAABPAAAAXwAAAFEAAANfAAAAUQAAAl8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAE8AAABPAAAAXwAAAF8AAABPAAAAXwAAAE8AAABPAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAE8AAABPAAAASAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAEgAAABRAAABTwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAE8AAABRAAABSAAAAE8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAE8AAABPAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAASAAAAE8AAABFAAADXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAA18AAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAASAAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAABfAAAASAAAAEUAAAALAAAARQAAAAsAAAALAAAACwAAAAsAAABIAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAASAAAAEgAAABfAAAACwAAAEUAAANIAAAARQAAA0UAAAALAAAARQAAAUgAAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABIAAAASAAAAAsAAABFAAADRQAAAl8AAABIAAAARQAAA0UAAABFAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABIAAAASAAAAF8AAAALAAAARQAAAkUAAABFAAADUQAAAwsAAABFAAACRQAAA0gAAABfAAAAXgAAAF4AAABeAAAARQAAAQsAAABfAAAARQAAAgsAAAALAAAACwAAAAsAAAALAAAASAAAAEUAAABFAAABXwAAAAAAAAAAAAAAAAAAAA== -4,1: ind: -4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAIXAAACFwAAABcAAAAXAAADRQAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAACFwAAAhcAAAMXAAADFwAAAUYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABGAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAMXAAADFwAAABcAAAEXAAACRgAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAABFwAAABcAAAEXAAADFwAAAkUAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAABcAAAEXAAADXwAAAEUAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAABcAAAIXAAADFwAAABcAAABFAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAXAAABFwAAAxcAAAEXAAAARgAAAw== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAMXAAAAFwAAARcAAAIXAAABRQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAADFwAAARcAAAEXAAABFwAAAEYAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABGAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAMXAAADFwAAABcAAAEXAAACRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAACFwAAARcAAAAXAAADFwAAAEUAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAARQAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAABcAAAEXAAADXwAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAABcAAAIXAAABFwAAARcAAANFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAXAAACFwAAAxcAAAIXAAABRgAAAg== -4,0: ind: -4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAEgAAABPAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABPAAAATwAAAF8AAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAEgAAABfAAAARQAAAkUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABcAAAAXAAAAl8AAABFAAADRQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXAAAAVwAAAFfAAAARQAAA0UAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFwAAAFcAAACXwAAAEUAAANFAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAABXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAUUAAANFAAADRQAAAEUAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAABFAAACRQAAAUUAAAFFAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAFwAAAl8AAABFAAABRQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXAAAAVwAAAJfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFwAAANcAAACXwAAAEUAAAJFAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABcAAAAXAAAAl8AAABFAAAASAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAEgAAABPAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABPAAAATwAAAF8AAABFAAAARQAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAEgAAABfAAAARQAAAUUAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABcAAAAXAAAA18AAABFAAAARQAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXAAAAVwAAAJfAAAARQAAAkUAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFwAAAFcAAABXwAAAEUAAAFFAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAA0UAAANFAAABRQAAAkUAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAAJFAAADRQAAAkUAAANFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAFwAAAF8AAABFAAAARQAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXAAAAVwAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFwAAANcAAABXwAAAEUAAANFAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABcAAADXAAAAl8AAABFAAABSAAAAA== -2,2: ind: -2,2 - tiles: XwAAAF8AAABfAAAAXwAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAgAAAAAAAAAAAAAAAF8AAABPAAAAXwAAAFEAAAJPAAAAXwAAAF8AAABcAAACXAAAAFwAAAFcAAACXwAAAEUAAAMAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAAAXAAADXAAAA1wAAABcAAAAXAAAARcAAAJFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABQAAAAXwAAAFwAAANcAAAAXAAAAlwAAAJfAAAARQAAAVEAAAFRAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABfAAAAXwAAAE8AAABfAAAAUAAAAFAAAABfAAAASAAAAF8AAAASAAAAEgAAABIAAAASAAAAXwAAAFEAAAJFAAAAXAAAA18AAABIAAAAXwAAAEgAAABFAAADXwAAAF8AAAAXAAABEgAAABIAAAASAAAAEgAAAF8AAABQAAAARQAAA18AAABfAAAASAAAAF8AAABRAAADXwAAAF8AAABfAAAAXwAAABIAAAASAAAAEgAAAF8AAABfAAAAXwAAAEUAAABfAAAAXwAAAF8AAABRAAABUQAAA0gAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAAFFAAACAAAAAF8AAABRAAABUQAAA0UAAAJfAAAATwAAAF8AAAAXAAACXAAAAlwAAANcAAADXAAAAEUAAABFAAABRQAAAQAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAABcAAAAXAAAAFwAAANFAAABRQAAAEUAAAEAAAAAAAAAAF8AAAA1AAAANQAAADUAAABfAAAAXwAAAF8AAABcAAAAXAAAA1wAAABcAAAARQAAA0UAAAFFAAAAAAAAAAAAAABfAAAANQAAADUAAAA1AAAAXwAAAF8AAABfAAAAXAAAAlwAAABcAAABXwAAAEUAAABFAAABRQAAAAAAAAAAAAAAXwAAADUAAAA1AAAANQAAABcAAANfAAAAXwAAAFwAAAFcAAADXAAAABcAAABFAAACRQAAA0UAAAAAAAAAAAAAAF8AAAA1AAAANQAAADUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAJFAAACAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAADXAAAA1wAAANcAAABXwAAAEUAAAFFAAADRQAAAQ== + tiles: XwAAAF8AAABfAAAAXwAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAQAAAAAAAAAAAAAAAF8AAABPAAAAXwAAAFEAAANPAAAAXwAAAF8AAABcAAADXAAAAlwAAAJcAAADXwAAAEUAAAEAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAAAXAAAAXAAAAFwAAANcAAACXAAAAxcAAAJFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABQAAAAXwAAAFwAAAFcAAACXAAAAlwAAABfAAAARQAAAlEAAAJRAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABfAAAAXwAAAE8AAABfAAAAUAAAAFAAAABfAAAASAAAAF8AAAASAAAAEgAAABIAAAASAAAAXwAAAFEAAAJFAAABXAAAA18AAABIAAAAXwAAAEgAAABFAAADXwAAAF8AAAAXAAACEgAAABIAAAASAAAAEgAAAF8AAABQAAAARQAAAV8AAABfAAAASAAAAF8AAABRAAAAXwAAAF8AAABfAAAAXwAAABIAAAASAAAAEgAAAF8AAABfAAAAXwAAAEUAAAJfAAAAXwAAAF8AAABRAAACUQAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAAJFAAABAAAAAF8AAABRAAABUQAAAkUAAABfAAAATwAAAF8AAAAXAAABXAAAAlwAAAJcAAABXAAAAkUAAAJFAAABRQAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAANcAAACXAAAAFwAAAJFAAABRQAAAUUAAAEAAAAAAAAAAF8AAAA1AAAANQAAADUAAABfAAAAXwAAAF8AAABcAAAAXAAAAVwAAAJcAAADRQAAAEUAAABFAAADAAAAAAAAAABfAAAANQAAADUAAAA1AAAAXwAAAF8AAABfAAAAXAAAAlwAAAJcAAABXwAAAEUAAABFAAAARQAAAAAAAAAAAAAAXwAAADUAAAA1AAAANQAAABcAAANfAAAAXwAAAFwAAABcAAAAXAAAAxcAAABFAAAARQAAAUUAAAEAAAAAAAAAAF8AAAA1AAAANQAAADUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAFFAAABAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAABXAAAAVwAAABcAAABXwAAAEUAAANFAAADRQAAAQ== -2,3: ind: -2,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEgAAABfAAAAXAAAAVwAAANcAAADXwAAABcAAAEXAAAAFwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAkUAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAUUAAABFAAADRQAAAUUAAABFAAABAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAUQAAAV8AAABfAAAARQAAAUUAAAFFAAAARQAAAEUAAAFFAAABRQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFEAAABfAAAAXwAAAEUAAANFAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABIAAAAXwAAAF8AAABFAAACRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAASAAAAF8AAABfAAAARQAAA0UAAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAFEAAAJfAAAAXwAAAEUAAABFAAABXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAARQAAAUUAAANFAAABRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAARQAAAEUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAABFAAACXwAAAFEAAANfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAACRQAAAl8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAEUAAAJfAAAATwAAAFEAAANRAAACXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAABFAAACXwAAAFAAAABfAAAAXwAAAE8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAABRQAAAF8AAABfAAAATwAAAF8AAABPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAEUAAANfAAAATwAAAFAAAABfAAAATwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEgAAABfAAAAXAAAA1wAAABcAAABXwAAABcAAAIXAAAAFwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAkUAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAUUAAANFAAACRQAAAUUAAAJFAAADAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAUQAAAV8AAABfAAAARQAAAEUAAANFAAAARQAAA0UAAAFFAAABRQAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFEAAANfAAAAXwAAAEUAAAJFAAACXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABIAAAAXwAAAF8AAABFAAACRQAAAl8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAASAAAAF8AAABfAAAARQAAA0UAAANfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAFEAAAFfAAAAXwAAAEUAAAJFAAADXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAARQAAAUUAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAARQAAAEUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAAFFAAAAXwAAAFEAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAACRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAEUAAAJfAAAATwAAAFEAAABRAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAAJFAAABXwAAAFAAAABfAAAAXwAAAE8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAADRQAAAV8AAABfAAAATwAAAF8AAABPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAEUAAABfAAAATwAAAFAAAABfAAAATwAAAA== -1,3: ind: -1,3 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAKQAAACkAAAApAAAAKQAAACkAAAAKAAAAKQAAACkAAABfAAAARQAAAV8AAABPAAAAUQAAAk8AAABfAAAAKQAAACkAAAApAAAAKQAAACkAAAApAAAACgAAACkAAAApAAAAXwAAAEUAAAIXAAABRQAAAkUAAABFAAACXwAAACkAAAApAAAAKQAAACkAAAApAAAACgAAAAoAAAApAAAAKQAAAF8AAABFAAACFwAAAkUAAAJFAAAARQAAA18AAAApAAAAKQAAACkAAAApAAAAKQAAAAoAAAApAAAAKQAAACkAAABfAAAARQAAAF8AAABfAAAARQAAA0UAAAMXAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAKQAAACkAAAApAAAAXwAAAEUAAAMAAAAAXwAAAEUAAANFAAAAXwAAACkAAAApAAAAKQAAACkAAAAKAAAAKQAAACkAAAApAAAAKQAAAF8AAAAXAAAAAAAAAF8AAABFAAABRQAAAV8AAAApAAAAKQAAACkAAAApAAAACgAAACkAAAApAAAAKQAAACkAAABfAAAARQAAAwAAAABfAAAARQAAAkUAAABfAAAAKQAAACkAAAApAAAAKQAAAAoAAAApAAAAKQAAACkAAAApAAAAXwAAAEUAAAMAAAAAXwAAAEUAAANFAAADXwAAACkAAAApAAAAKQAAACkAAAAKAAAAKQAAACkAAAApAAAAKQAAAF8AAABFAAAAAAAAAF8AAABFAAABRQAAAl8AAABfAAAAXwAAAF8AAABfAAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAQAAAABfAAAARQAAAEUAAAEXAAABRQAAAUUAAABFAAAARQAAA0UAAAFFAAACRQAAAkUAAANFAAADRQAAAkUAAAJfAAAAXwAAAEUAAANFAAADFwAAA0UAAAJFAAADRQAAAkUAAAJFAAACRQAAAkUAAABFAAADRQAAAEUAAANFAAADTwAAAF8AAABFAAACRQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAACXwAAAE8AAABfAAAARQAAAkUAAAFfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAADRQAAAxcAAAFQAAAAXwAAAEUAAAFFAAACXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAA0UAAAEXAAADUAAAAF8AAABFAAACRQAAAl8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAXwAAABcAAABFAAACFwAAAQ== + tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAKQAAACkAAAApAAAAKQAAACkAAAAKAAAAKQAAACkAAABfAAAARQAAA18AAABPAAAAUQAAAE8AAABfAAAAKQAAACkAAAApAAAAKQAAACkAAAApAAAACgAAACkAAAApAAAAXwAAAEUAAAEXAAAARQAAAkUAAAJFAAACXwAAACkAAAApAAAAKQAAACkAAAApAAAACgAAAAoAAAApAAAAKQAAAF8AAABFAAABFwAAAkUAAANFAAAARQAAAV8AAAApAAAAKQAAACkAAAApAAAAKQAAAAoAAAApAAAAKQAAACkAAABfAAAARQAAAl8AAABfAAAARQAAAEUAAAAXAAADCgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAKQAAACkAAAApAAAAXwAAAEUAAAAAAAAAXwAAAEUAAABFAAADXwAAACkAAAApAAAAKQAAACkAAAAKAAAAKQAAACkAAAApAAAAKQAAAF8AAAAXAAACAAAAAF8AAABFAAADRQAAA18AAAApAAAAKQAAACkAAAApAAAACgAAACkAAAApAAAAKQAAACkAAABfAAAARQAAAQAAAABfAAAARQAAA0UAAABfAAAAKQAAACkAAAApAAAAKQAAAAoAAAApAAAAKQAAACkAAAApAAAAXwAAAEUAAAEAAAAAXwAAAEUAAABFAAACXwAAACkAAAApAAAAKQAAACkAAAAKAAAAKQAAACkAAAApAAAAKQAAAF8AAABFAAADAAAAAF8AAABFAAAARQAAA18AAABfAAAAXwAAAF8AAABfAAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAwAAAABfAAAARQAAA0UAAAMXAAADRQAAAEUAAANFAAADRQAAAUUAAAFFAAACRQAAAkUAAANFAAAARQAAAkUAAANfAAAAXwAAAEUAAANFAAADFwAAA0UAAAJFAAADRQAAA0UAAANFAAADRQAAAEUAAANFAAAARQAAAUUAAAJFAAAATwAAAF8AAABFAAABRQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAACXwAAAE8AAABfAAAARQAAAUUAAANfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAACRQAAABcAAABQAAAAXwAAAEUAAAJFAAABXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAA0UAAAMXAAADUAAAAF8AAABFAAACRQAAA18AAABfAAAAXwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAXwAAABcAAABFAAADFwAAAw== -3,2: ind: -3,2 - tiles: RgAAAkYAAABLAAADHAAAABwAAAIcAAADSwAAAkUAAABfAAAARQAAAUUAAAFFAAAAXwAAAF8AAABfAAAAXwAAAEYAAABGAAAASwAAARwAAAIcAAACHAAAAEsAAANFAAAAXwAAAEUAAABFAAAARQAAA18AAABeAAAAAAAAAAAAAABFAAABRQAAAEsAAAJLAAACSwAAAUsAAAJLAAADRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAADRQAAAUUAAABFAAACRQAAAEUAAAFfAAAAXwAAAEgAAABcAAACXwAAAF8AAABfAAAAXwAAAEUAAAJFAAABRQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAAXAAAAF8AAABfAAAAUQAAAFEAAAFfAAAAFwAAARcAAAJfAAAAUAAAAFAAAABQAAAAUAAAAF8AAABfAAAAXwAAAEgAAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAJIAAAAXwAAAE8AAABPAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAAkUAAABIAAAARQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUgAAABFAAAAXwAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXwAAABcAAABfAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAFFAAABRQAAAV8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAABXwAAAAAAAAAAAAAAAAAAAAAAAABLAAABSwAAAUsAAANfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAARQAAA0UAAANFAAACXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: RgAAA0YAAAJLAAACHAAAAhwAAAEcAAACSwAAAkUAAANfAAAARQAAAEUAAABFAAABXwAAAF8AAABfAAAAXwAAAEYAAABGAAAASwAAAhwAAAEcAAACHAAAAEsAAAFFAAADXwAAAEUAAAJFAAAARQAAAl8AAABeAAAAAAAAAAAAAABFAAABRQAAAksAAABLAAABSwAAA0sAAAFLAAABRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAARQAAA0UAAABFAAABRQAAAkUAAAJFAAAARQAAA0UAAABfAAAAXwAAAEgAAABcAAABXwAAAF8AAABfAAAAXwAAAEUAAAJFAAADRQAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAAXAAAAV8AAABfAAAAUQAAAFEAAAFfAAAAFwAAAxcAAABfAAAAUAAAAFAAAABQAAAAUAAAAF8AAABfAAAAXwAAAEgAAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAAFIAAAAXwAAAE8AAABPAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAAUUAAAJIAAAARQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAUgAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUgAAABFAAACXwAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXwAAABcAAANfAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAFFAAACRQAAA18AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAACXwAAAAAAAAAAAAAAAAAAAAAAAABLAAABSwAAAUsAAAJfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAA18AAAAAAAAAAAAAAAAAAAAAAAAARQAAAUUAAANFAAABXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -4,2: ind: -4,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAARgAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAFwAAAxcAAAAXAAABFwAAAUYAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAABcAAAIXAAABFwAAARcAAAFFAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAFwAAABcAAABfAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAFwAAABcAAABFAAABRQAAA0gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAhcAAAIXAAADSwAAAUsAAANLAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEgAAABFAAACSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAFwAAAV8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAABXwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAARgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAFwAAAhcAAAAXAAAAFwAAAEYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAABcAAAAXAAADFwAAABcAAAFFAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAFwAAAhcAAANfAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAEUAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAFwAAAhcAAAFFAAABRQAAA0gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAABcAAAEXAAADSwAAAksAAABLAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEgAAABFAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAFwAAA18AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAAFfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAAAXwAAAA== -3,3: ind: -3,3 - tiles: AAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAABAAAAgQAAAAEAAAABAAAAQQAAAAEAAACBAAAAAQAAAEEAAABAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAQAAAEEAAABBAAAAgQAAAEEAAACBAAAAQQAAAIFAAAABAAAAgQAAAIAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAEAAAABAAAAQQAAAIEAAAABAAAAAQAAAEEAAABBAAAAAQAAAIEAAABBAAAAQAAAAAAAAAAAAAAAF4AAAAAAAAABAAAAAQAAAIEAAABBQAAAAQAAAEEAAABBAAAAAQAAAAEAAABBAAAAgQAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAQAAAAEAAAABAAAAgQAAAAEAAABBAAAAgQAAAIEAAAABAAAAQQAAAAEAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAEAAABBAAAAQQAAAEEAAAABAAAAAQAAAIEAAAABAAAAQQAAAIEAAABBAAAAQQAAAEAAAAAAAAAAF4AAAAAAAAABAAAAgQAAAIEAAACBAAAAAQAAAAEAAABBAAAAgUAAAAEAAAABAAAAQQAAAIEAAAAAAAAAAAAAABeAAAAAAAAAAQAAAEEAAACBAAAAQQAAAIEAAABBAAAAgQAAAIEAAACBAAAAQQAAAEEAAAABAAAAAQAAAAAAAAAXgAAAAAAAAAEAAABBAAAAQQAAAIEAAABBAAAAQQAAAAEAAABBAAAAgQAAAEEAAACBAAAAgQAAAIEAAACAAAAAF4AAAAAAAAABAAAAAQAAAIEAAAABAAAAAQAAAIEAAAABAAAAQUAAAAEAAACBAAAAQQAAAIEAAACBAAAAAAAAABeAAAAAAAAAA== + tiles: AAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAABAAAAAQAAAEEAAAABAAAAAQAAAEEAAABBAAAAAQAAAEEAAACAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAQAAAIEAAACBAAAAQQAAAEEAAAABAAAAgQAAAIFAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAEAAAABAAAAAQAAAEEAAACBAAAAQQAAAAEAAACBAAAAgQAAAAEAAABBAAAAQAAAAAAAAAAAAAAAF4AAAAAAAAABAAAAAQAAAIEAAAABQAAAAQAAAAEAAACBAAAAQQAAAAEAAABBAAAAAQAAAIAAAAAAAAAAAAAAABeAAAAAAAAAAQAAAEEAAABBAAAAAQAAAAEAAACBAAAAAQAAAEEAAAABAAAAAQAAAIEAAACAAAAAAAAAAAAAAAAXgAAAAAAAAAEAAAABAAAAQQAAAAEAAACBAAAAAQAAAIEAAACBAAAAAQAAAAEAAABBAAAAgQAAAAAAAAAAAAAAF4AAAAAAAAABAAAAQQAAAAEAAABBAAAAgQAAAAEAAACBAAAAAUAAAAEAAACBAAAAQQAAAIEAAAAAAAAAAAAAABeAAAAAAAAAAQAAAIEAAAABAAAAAQAAAIEAAACBAAAAAQAAAIEAAAABAAAAAQAAAIEAAAABAAAAQQAAAAAAAAAXgAAAAAAAAAEAAACBAAAAgQAAAEEAAACBAAAAAQAAAIEAAAABAAAAgQAAAAEAAACBAAAAgQAAAEEAAAAAAAAAF4AAAAAAAAABAAAAQQAAAEEAAACBAAAAAQAAAEEAAAABAAAAQUAAAAEAAABBAAAAgQAAAEEAAACBAAAAAAAAABeAAAAAAAAAA== -4,3: ind: -4,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAEAAACBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAABAAAAQQAAAAEAAACBQAAAAQAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAQAAAIEAAACBAAAAAQAAAIEAAABAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAACBAAAAQQAAAAEAAABBAAAAQAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAACBAAAAgQAAAAEAAABBAAAAgQAAAIAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAgQAAAEEAAABBAAAAQQAAAEEAAACAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAEEAAAABAAAAgQAAAIEAAACBAAAAgAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAQQAAAEEAAACBAAAAQQAAAAEAAABBAAAAAQAAAIAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAEEAAABBAAAAQQAAAEEAAABBAAAAQQAAAAEAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAABBAAAAAQAAAEEAAAABAAAAAQAAAAEAAAABAAAAg== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAEAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAABAAAAAQAAAEEAAACBQAAAAQAAAEAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAQAAAEEAAACBAAAAgQAAAAEAAACAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAgQAAAAEAAACBAAAAgAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAgQAAAAEAAAABAAAAgQAAAEAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAQQAAAIEAAACBAAAAAQAAAAEAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAQAAAIEAAACBAAAAQAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAQQAAAEEAAACBAAAAQQAAAAEAAABBAAAAQQAAAEAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAAEAAAABAAAAQQAAAEEAAABBAAAAgQAAAAEAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAABAAAAgQAAAIEAAAABAAAAgQAAAEEAAAABAAAAAQAAAAEAAACBAAAAA== -3,4: ind: -3,4 - tiles: BAAAAgQAAAIEAAAABAAAAgQAAAEEAAACBAAAAQQAAAIEAAABBAAAAQQAAAAEAAACBAAAAQAAAABeAAAAAAAAAAQAAAEEAAABBAAAAQQAAAIEAAACBAAAAQQAAAEEAAAABAAAAgQAAAAEAAABBAAAAQQAAAAAAAAAXgAAAAAAAAAEAAABBAAAAAQAAAEEAAACBAAAAAQAAAEEAAAABAAAAgQAAAIEAAABBAAAAAQAAAEEAAACAAAAAF4AAAAAAAAABAAAAAQAAAEEAAACBAAAAgQAAAEEAAACBAAAAQQAAAEEAAACBAAAAAQAAAEEAAAABAAAAAAAAABeAAAAAAAAAAQAAAAEAAAABAAAAgQAAAIEAAACBAAAAQQAAAIEAAACBAAAAQQAAAAEAAACBAAAAgAAAAAAAAAAXgAAAAAAAAAAAAAABAAAAgQAAAAEAAABBAAAAQQAAAAEAAAABAAAAgQAAAEEAAAABAAAAgAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAAEAAABBAAAAAQAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: BAAAAgQAAAEEAAACBAAAAQQAAAEEAAACBAAAAQQAAAIEAAABBAAAAAQAAAEEAAABBAAAAAAAAABeAAAAAAAAAAQAAAAEAAACBAAAAgQAAAEEAAACBAAAAQQAAAEEAAACBAAAAQQAAAIEAAABBAAAAQQAAAIAAAAAXgAAAAAAAAAEAAABBAAAAgQAAAIEAAABBAAAAgQAAAAEAAACBAAAAAQAAAIEAAAABAAAAQQAAAAEAAACAAAAAF4AAAAAAAAABAAAAQQAAAAEAAABBAAAAAQAAAAEAAABBAAAAQQAAAIEAAAABAAAAAQAAAIEAAAABAAAAgAAAABeAAAAAAAAAAQAAAAEAAABBAAAAgQAAAIEAAABBAAAAQQAAAIEAAABBAAAAAQAAAAEAAAABAAAAgAAAAAAAAAAXgAAAAAAAAAAAAAABAAAAQQAAAEEAAABBAAAAgQAAAAEAAABBAAAAAQAAAEEAAABBAAAAgAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAAEAAACBAAAAQQAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -4,4: ind: -4,4 - tiles: AAAAAAAAAABeAAAAAAAAAAAAAAAEAAACBAAAAgQAAAEEAAACBAAAAQQAAAAEAAACBAAAAgQAAAIEAAACBAAAAQAAAAAAAAAAXgAAAAAAAAAAAAAABAAAAQQAAAIEAAACBAAAAAQAAAAEAAAABAAAAQQAAAEEAAAABAAAAgQAAAIAAAAAAAAAAF4AAAAAAAAABAAAAgQAAAEEAAABBAAAAgQAAAEEAAACBAAAAQQAAAIEAAACBAAAAgQAAAAEAAACAAAAAAAAAABeAAAAAAAAAAQAAAIEAAACBAAAAgQAAAEEAAAABAAAAQQAAAIEAAAABAAAAAQAAAEEAAACBAAAAgAAAAAAAAAAXgAAAAAAAAAEAAABBAAAAAQAAAIEAAACBAAAAgQAAAEEAAAABAAAAAQAAAAEAAABBAAAAgQAAAEAAAAAAAAAAF4AAAAAAAAABAAAAgQAAAAEAAAABAAAAQQAAAAEAAACBAAAAgQAAAIEAAABBAAAAQQAAAIEAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAEAAABBAAAAgQAAAAEAAABBAAAAQQAAAEEAAABBAAAAQQAAAEEAAABAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAAQAAAAEAAABBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAABeAAAAAAAAAAAAAAAEAAACBAAAAAQAAAEEAAACBAAAAAQAAAEEAAAABAAAAAQAAAEEAAAABAAAAgAAAAAAAAAAXgAAAAAAAAAAAAAABAAAAgQAAAEEAAACBAAAAgQAAAEEAAAABAAAAAQAAAEEAAAABAAAAQQAAAEAAAAAAAAAAF4AAAAAAAAABAAAAQQAAAIEAAABBAAAAgQAAAAEAAACBAAAAgQAAAAEAAACBAAAAgQAAAIEAAACAAAAAAAAAABeAAAAAAAAAAQAAAAEAAABBAAAAAQAAAIEAAAABAAAAgQAAAAEAAACBAAAAAQAAAIEAAABBAAAAgAAAAAAAAAAXgAAAAAAAAAEAAABBAAAAAQAAAAEAAACBAAAAgQAAAIEAAABBAAAAQQAAAAEAAABBAAAAgQAAAAAAAAAAAAAAF4AAAAAAAAABAAAAAQAAAAEAAABBAAAAAQAAAAEAAAABAAAAgQAAAIEAAABBAAAAgQAAAEEAAABAAAAAAAAAABeAAAAAAAAAAAAAAAEAAABBAAAAQQAAAIEAAAABAAAAQQAAAAEAAACBAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAAQAAAAEAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,-7: ind: 1,-7 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,2: ind: 3,2 - tiles: SAAAAFEAAANIAAAAXwAAAF8AAABfAAAAXAAAADIAAAAyAAAASAAAAF8AAABfAAAAAAAAAAAAAABfAAAAFwAAAlEAAABIAAAAUQAAAl8AAABfAAAAXwAAAFwAAAFcAAABSAAAAFwAAAFfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAEgAAABfAAAASAAAAF8AAAAAAAAAAAAAAAAAAABeAAAAUAAAAFAAAABfAAAATwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXgAAAEgAAABIAAAAXwAAAFAAAABQAAAAUAAAAE8AAABfAAAAUAAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABIAAAASAAAAF8AAABQAAAAUAAAAFAAAABPAAAAUQAAAFAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAASAAAAEUAAAJfAAAAXwAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAE8AAABfAAAAXwAAAF8AAABIAAAAXwAAAFEAAANfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAASAAAAEgAAABIAAAASAAAAF8AAABQAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABfAAAARQAAAEUAAABPAAAAXwAAAEUAAAJIAAAASAAAAEgAAABPAAAAXwAAAAQAAABfAAAAXwAAAAQAAAAAAAAAXwAAAEUAAAFPAAAATwAAAEgAAABIAAAASAAAAF8AAABFAAADTwAAAF8AAAAEAAABXwAAAF8AAAAEAAAAXwAAAF8AAABfAAAAUAAAAF8AAABQAAAAXwAAAFAAAABfAAAAUAAAAF8AAABfAAAABAAAAAQAAAIEAAACBAAAAEUAAAFFAAAAUAAAAFEAAAJQAAAAUQAAAVAAAABRAAABUAAAAFEAAAFQAAAAUQAAAlEAAAMEAAACBAAAAAQAAAFFAAAAXwAAAF8AAABFAAACXwAAAF8AAABfAAAARQAAA18AAABQAAAAXwAAAF8AAABIAAAABAAAAV8AAAAEAAACRQAAAUUAAANQAAAAUQAAAVAAAABRAAAAUAAAAFEAAAJQAAAAUQAAAlAAAABRAAABUQAAAwQAAAEEAAABBAAAAQ== + tiles: SAAAAFEAAAFIAAAAXwAAAF8AAABfAAAAXAAAAzIAAAAyAAAASAAAAF8AAABfAAAAAAAAAAAAAABfAAAAFwAAAVEAAANIAAAAUQAAAl8AAABfAAAAXwAAAFwAAAFcAAACSAAAAFwAAABfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAEgAAABfAAAASAAAAF8AAAAAAAAAAAAAAAAAAABeAAAAUAAAAFAAAABfAAAATwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXgAAAEgAAABIAAAAXwAAAFAAAABQAAAAUAAAAE8AAABfAAAAUAAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABIAAAASAAAAF8AAABQAAAAUAAAAFAAAABPAAAAUQAAAlAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAASAAAAEUAAABfAAAAXwAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAE8AAABfAAAAXwAAAF8AAABIAAAAXwAAAFEAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAASAAAAEgAAABIAAAASAAAAF8AAABQAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABfAAAARQAAAUUAAAFPAAAAXwAAAEUAAANIAAAASAAAAEgAAABPAAAAXwAAAAQAAAFfAAAAXwAAAAQAAAIAAAAAXwAAAEUAAABPAAAATwAAAEgAAABIAAAASAAAAF8AAABFAAADTwAAAF8AAAAEAAACXwAAAF8AAAAEAAACXwAAAF8AAABfAAAAUAAAAF8AAABQAAAAXwAAAFAAAABfAAAAUAAAAF8AAABfAAAABAAAAQQAAAAEAAAABAAAAEUAAAFFAAADUAAAAFEAAANQAAAAUQAAAFAAAABRAAABUAAAAFEAAAFQAAAAUQAAAlEAAAIEAAABBAAAAAQAAAJFAAABXwAAAF8AAABFAAAAXwAAAF8AAABfAAAARQAAAF8AAABQAAAAXwAAAF8AAABIAAAABAAAAV8AAAAEAAAARQAAAEUAAAJQAAAAUQAAAVAAAABRAAAAUAAAAFEAAANQAAAAUQAAAVAAAABRAAACUQAAAAQAAAEEAAACBAAAAA== 2,3: ind: 2,3 - tiles: XwAAAF8AAABfAAAARQAAA0UAAABFAAAAXwAAAEgAAABcAAABRQAAAEUAAANFAAACXwAAAEUAAANFAAABRQAAAQAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAABfAAAAXwAAAF8AAABFAAACRQAAA0UAAAMAAAAAAAAAAAAAAABfAAAARQAAA1wAAABcAAADRQAAAF8AAABcAAAAXwAAAAAAAABfAAAAXwAAAF8AAABFAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABFAAADRQAAA1wAAABcAAAAXAAAAl8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: XwAAAF8AAABfAAAARQAAAEUAAAFFAAADXwAAAEgAAABcAAACRQAAAUUAAAJFAAAAXwAAAEUAAAJFAAACRQAAAwAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAANfAAAAXwAAAF8AAABFAAADRQAAAUUAAAAAAAAAAAAAAAAAAABfAAAARQAAAlwAAAJcAAADRQAAA18AAABcAAACXwAAAAAAAABfAAAAXwAAAF8AAABFAAADAAAAAAAAAAAAAAAAXwAAAF8AAABFAAACRQAAAVwAAABcAAADXAAAA18AAAAAAAAAAAAAAAAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,3: ind: 3,3 - tiles: RQAAAl8AAABfAAAAUAAAAF8AAABQAAAAXwAAAFAAAABfAAAAUAAAAF8AAABfAAAAXwAAAAQAAAIEAAABBAAAAEUAAAJfAAAATwAAAE8AAABPAAAATwAAAEgAAABIAAAAXwAAAEUAAANPAAAAXwAAAF8AAABfAAAABAAAAAQAAAJFAAACXwAAAF8AAABPAAAASAAAAE8AAABIAAAARQAAAk8AAABPAAAARQAAAV8AAABfAAAAXwAAAF8AAAAEAAACXwAAAF8AAABPAAAAUQAAAEgAAABRAAAAXwAAAEUAAABFAAABRQAAA08AAABfAAAABAAAAAQAAAIEAAAABAAAAgAAAABfAAAAXwAAAFEAAABIAAAASAAAAF8AAABfAAAARQAAAEUAAAJPAAAAXwAAAAQAAAIEAAACBAAAAgQAAAIAAAAAXwAAAF8AAABfAAAARQAAAkUAAANIAAAARQAAA08AAABfAAAAXwAAAF8AAAAEAAAABAAAAAQAAAEEAAACAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAABAAAAgQAAAIEAAABBAAAAV4AAAAAAAAAXwAAAF8AAABFAAACXwAAABcAAAFfAAAARQAAAF8AAABfAAAAAAAAAAAAAAAEAAAABAAAAgQAAAFeAAAAAAAAAF8AAABPAAAATwAAAEgAAAAXAAADXwAAAEgAAABFAAADXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAFEAAAFFAAABFwAAAkgAAABfAAAAXwAAAF8AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXwAAAEgAAABFAAADRQAAAE8AAABRAAADRQAAAEgAAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABfAAAARQAAAVAAAABQAAAAUAAAAE8AAABfAAAAXwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXwAAAF8AAABQAAAAUAAAAFAAAABfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAA== + tiles: RQAAAl8AAABfAAAAUAAAAF8AAABQAAAAXwAAAFAAAABfAAAAUAAAAF8AAABfAAAAXwAAAAQAAAIEAAACBAAAAUUAAAFfAAAATwAAAE8AAABPAAAATwAAAEgAAABIAAAAXwAAAEUAAAJPAAAAXwAAAF8AAABfAAAABAAAAgQAAAFFAAAAXwAAAF8AAABPAAAASAAAAE8AAABIAAAARQAAA08AAABPAAAARQAAAl8AAABfAAAAXwAAAF8AAAAEAAACXwAAAF8AAABPAAAAUQAAAEgAAABRAAAAXwAAAEUAAAJFAAAARQAAAk8AAABfAAAABAAAAQQAAAEEAAABBAAAAQAAAABfAAAAXwAAAFEAAAFIAAAASAAAAF8AAABfAAAARQAAAEUAAAFPAAAAXwAAAAQAAAIEAAACBAAAAgQAAAIAAAAAXwAAAF8AAABfAAAARQAAAkUAAAFIAAAARQAAAk8AAABfAAAAXwAAAF8AAAAEAAACBAAAAgQAAAEEAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAABAAAAgQAAAIEAAABBAAAAl4AAAAAAAAAXwAAAF8AAABFAAADXwAAABcAAAFfAAAARQAAAF8AAABfAAAAAAAAAAAAAAAEAAACBAAAAgQAAABeAAAAAAAAAF8AAABPAAAATwAAAEgAAAAXAAACXwAAAEgAAABFAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAFEAAAFFAAACFwAAAUgAAABfAAAAXwAAAF8AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXwAAAEgAAABFAAABRQAAAk8AAABRAAABRQAAA0gAAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABfAAAARQAAA1AAAABQAAAAUAAAAE8AAABfAAAAXwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXwAAAF8AAABQAAAAUAAAAFAAAABfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAA== -2,4: ind: -2,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAA0UAAAFfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAAJFAAAAXwAAAEUAAAJFAAAARQAAAEUAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAAARQAAAxcAAAFKAAACSgAAAUoAAANKAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAkUAAANfAAAAUAAAAFAAAABKAAABUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAABFAAADXwAAAF8AAABfAAAAFwAAAl8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAADRQAAAl8AAAAAAAAAXwAAABcAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAARcAAAJfAAAAAAAAAF8AAAAXAAADXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAAAXAAABXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAAAXAAACFwAAAV8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAUAAAAFAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAAAXAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAADFwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAA0UAAAJfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAAJFAAACXwAAAEUAAAJFAAACRQAAA0UAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAABRQAAAhcAAAJKAAAASgAAAkoAAANKAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAUUAAAJfAAAAUAAAAFAAAABKAAABUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAANFAAACXwAAAF8AAABfAAAAFwAAAV8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAADRQAAA18AAAAAAAAAXwAAABcAAAJfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAABcAAABfAAAAAAAAAF8AAAAXAAABXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAAIXAAADXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAAAXAAACFwAAA18AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAUAAAAFAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAAEXAAABXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAACFwAAAV8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,4: ind: -1,4 - tiles: XwAAAF8AAABFAAADRQAAA18AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAAAXAAAAXwAAAEUAAAFfAAAARQAAAkUAAANfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAGwAAAhsAAAEXAAACRQAAARcAAAFKAAABFwAAAEUAAANFAAABXwAAAAAAAAAAAAAAXwAAAF8AAAAXAAADFwAAAi0AAAAtAAAALQAAAC0AAAAtAAAAUAAAAF8AAABFAAADRQAAAl8AAAAAAAAAAAAAAF8AAAAXAAADFwAAABcAAAMtAAAAGgAAABoAAAIaAAACGgAAAF8AAABfAAAARQAAAkUAAABfAAAAAAAAAAAAAABfAAAAFwAAAUUAAAMXAAAALQAAABoAAAIPAAAADwAAAA8AAAAAAAAAXwAAAEUAAAFFAAACXwAAAAAAAAAAAAAAXwAAABcAAAJFAAABFwAAAi0AAAAaAAABDwAAABcAAAIPAAAAAAAAAF8AAAAXAAAAFwAAAF8AAAAAAAAAAAAAAF8AAAAXAAADRQAAAhcAAAMtAAAAGgAAAQ8AAAAPAAAADwAAAAAAAABfAAAAFwAAAhcAAAJfAAAAAAAAAAAAAABfAAAAFwAAAkUAAAJFAAABLQAAABoAAAEaAAADGgAAARoAAAEAAAAAXwAAABcAAAMXAAADXwAAAAAAAAAAAAAAXwAAAF8AAAAXAAABRQAAAi0AAAAtAAAALQAAAC0AAAAtAAAAAAAAAF8AAABQAAAAUAAAAF8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAEUAAAFFAAACRQAAABcAAAJfAAAAFwAAAwAAAABfAAAAFwAAABcAAAJfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXwAAABcAAAAXAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: XwAAAF8AAABFAAACRQAAA18AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAAAXAAAAXwAAAEUAAANfAAAARQAAAEUAAAJfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAGwAAAxsAAAMXAAABRQAAAhcAAAFKAAACFwAAAUUAAANFAAABXwAAAAAAAAAAAAAAXwAAAF8AAAAXAAAAFwAAAy0AAAAtAAAALQAAAC0AAAAtAAAAUAAAAF8AAABFAAAARQAAAl8AAAAAAAAAAAAAAF8AAAAXAAADFwAAABcAAAItAAAAGgAAARoAAAEaAAABGgAAAF8AAABfAAAARQAAAkUAAABfAAAAAAAAAAAAAABfAAAAFwAAAEUAAAIXAAADLQAAABoAAAIPAAAADwAAAA8AAAAAAAAAXwAAAEUAAAFFAAACXwAAAAAAAAAAAAAAXwAAABcAAAFFAAADFwAAAC0AAAAaAAADDwAAABcAAAMPAAAAAAAAAF8AAAAXAAAAFwAAA18AAAAAAAAAAAAAAF8AAAAXAAABRQAAAhcAAAAtAAAAGgAAAQ8AAAAPAAAADwAAAAAAAABfAAAAFwAAARcAAAFfAAAAAAAAAAAAAABfAAAAFwAAAUUAAANFAAADLQAAABoAAAIaAAAAGgAAAhoAAAEAAAAAXwAAABcAAAEXAAACXwAAAAAAAAAAAAAAXwAAAF8AAAAXAAAARQAAAC0AAAAtAAAALQAAAC0AAAAtAAAAAAAAAF8AAABQAAAAUAAAAF8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAEUAAABFAAACRQAAAhcAAABfAAAAFwAAAQAAAABfAAAAFwAAABcAAANfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXwAAABcAAAIXAAACXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 4,3: ind: 4,3 - tiles: BAAAAgQAAAEEAAAABAAAAAQAAAEEAAAABAAAAgAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAAQAAAEEAAABBAAAAAQAAAIAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAAQAAAAEAAAABAAAAgQAAAIEAAACAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAAEAAACBAAAAQQAAAAEAAACBAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAACBAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAQQAAAEEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAEEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: BAAAAgQAAAEEAAAABAAAAAQAAAEEAAAABAAAAQAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAQQAAAEEAAAABAAAAQQAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAQQAAAAEAAACBAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAAEAAACBAAAAgQAAAIEAAACBAAAAgAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAABBAAAAgQAAAIEAAABAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAQQAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAEEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 4,2: ind: 4,2 - tiles: XwAAAAAAAABeAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF8AAABFAAADRQAAAUUAAAJFAAAARQAAAV8AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAARQAAAkUAAAFFAAACRQAAAkUAAAJfAAAAXwAAAF8AAABeAAAAAAAAAF4AAABeAAAAXgAAABcAAAIXAAAAFwAAAUUAAANFAAABRQAAAUUAAAJFAAABFwAAAxcAAAAXAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABFAAAARQAAAUUAAANFAAADRQAAAV8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAARQAAAUUAAABFAAABRQAAAUUAAABfAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAQAAAEEAAAABAAAAQQAAAEAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAEAAABBAAAAAQAAAEEAAABBAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAABAAAAQQAAAIEAAABBAAAAAQAAAIEAAABBAAAAgAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAQAAAAEAAACBAAAAgQAAAIEAAAABAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAEAAAABAAAAAQAAAEEAAAABAAAAQQAAAAEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAQQAAAIEAAACBAAAAQQAAAAEAAABBAAAAgAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: XwAAAAAAAABeAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF8AAABFAAACRQAAAUUAAABFAAABRQAAAl8AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAARQAAAEUAAAJFAAADRQAAA0UAAAJfAAAAXwAAAF8AAABeAAAAAAAAAF4AAABeAAAAXgAAABcAAAEXAAACFwAAAUUAAAFFAAACRQAAAkUAAANFAAADFwAAAhcAAAEXAAADXgAAAF4AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABFAAABRQAAAUUAAABFAAAARQAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAARQAAA0UAAAFFAAAARQAAAkUAAANfAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAQAAAAEAAAABAAAAgQAAAEAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAEAAAABAAAAAQAAAIEAAABBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAABAAAAAQAAAEEAAAABAAAAAQAAAIEAAABBAAAAgAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAQAAAEEAAACBAAAAAQAAAIEAAABBAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAEAAACBAAAAQQAAAIEAAAABAAAAgQAAAAEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAAQAAAAEAAACBAAAAAQAAAAEAAABBAAAAgAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,4: ind: 0,4 - tiles: XwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsAAAIbAAACXwAAAF8AAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAALQAAABcAAAAXAAABXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAC0AAAAXAAADFwAAAhcAAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAEtAAAAFwAAAkUAAAMXAAACXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAALQAAABcAAAJFAAABFwAAA18AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAC0AAAAXAAADRQAAAhcAAANfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAEtAAAARQAAAkUAAAAXAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAALQAAAEUAAAAXAAADXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAkUAAAFFAAAAXwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: XwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsAAAIbAAABXwAAAF8AAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAALQAAABcAAAMXAAABXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAS0AAAAXAAABFwAAAhcAAAJfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAEtAAAAFwAAAUUAAAMXAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAADLQAAABcAAAFFAAACFwAAAl8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAi0AAAAXAAADRQAAARcAAANfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAEtAAAARQAAA0UAAAEXAAACXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAALQAAAEUAAAIXAAACXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAUUAAAFFAAADXwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 5,2: ind: 5,2 tiles: AAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== @@ -382,22 +384,22 @@ entities: tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAA== -1,-7: ind: -1,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABFAAADFwAAAkUAAAFFAAABRQAAAl8AAABfAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAACFwAAABcAAANFAAADRQAAAkUAAAFFAAADXwAAAF4AAABeAAAAXgAAAEgAAABIAAAAXwAAAEUAAABFAAABRQAAA0UAAAJFAAAARQAAAkgAAABFAAACRQAAA18AAAAAAAAAAAAAAF4AAABIAAAASAAAAEgAAABFAAAARQAAAkUAAABFAAACSAAAAEgAAABFAAACRQAAAkUAAAFfAAAAAAAAAAAAAABeAAAATwAAAE8AAABfAAAARQAAA0UAAABFAAAARQAAAEUAAANFAAABRQAAAkUAAANFAAAAXwAAAF4AAABeAAAAXgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABFAAACFwAAAEUAAAFFAAABRQAAAV8AAABfAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAABFwAAAhcAAAJFAAADRQAAAUUAAAFFAAAAXwAAAF4AAABeAAAAXgAAAEgAAABIAAAAXwAAAEUAAAJFAAABRQAAA0UAAAJFAAACRQAAA0gAAABFAAADRQAAAV8AAAAAAAAAAAAAAF4AAABIAAAASAAAAEgAAABFAAABRQAAAEUAAANFAAACSAAAAEgAAABFAAADRQAAAEUAAAFfAAAAAAAAAAAAAABeAAAATwAAAE8AAABfAAAARQAAAkUAAANFAAABRQAAAEUAAABFAAABRQAAA0UAAAJFAAAAXwAAAF4AAABeAAAAXgAAAA== -2,-7: ind: -2,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEUAAAFFAAABRQAAA18AAABfAAAAXwAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAABFAAADRQAAAEUAAAFFAAAARQAAAV8AAABfAAAAXwAAAF8AAABPAAAATwAAAE8AAABPAAAASAAAAEUAAABIAAAASAAAAEgAAABIAAAASAAAAEUAAAJIAAAASAAAAEgAAAAXAAACSAAAAEgAAABIAAAASAAAAF8AAABFAAACSAAAAEgAAABIAAAASAAAAEgAAABFAAAAXwAAAEgAAABIAAAAXwAAAEgAAABIAAAAXwAAAEgAAABIAAAARQAAAEgAAABIAAAASAAAAFEAAAJIAAAARQAAAkgAAABPAAAAXwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEUAAAFFAAABRQAAA18AAABfAAAAXwAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAANFAAAARQAAAUUAAANFAAADRQAAA18AAABfAAAAXwAAAF8AAABPAAAATwAAAE8AAABPAAAASAAAAEUAAAJIAAAASAAAAEgAAABIAAAASAAAAEUAAAFIAAAASAAAAEgAAAAXAAADSAAAAEgAAABIAAAASAAAAF8AAABFAAACSAAAAEgAAABIAAAASAAAAEgAAABFAAACXwAAAEgAAABIAAAAXwAAAEgAAABIAAAAXwAAAEgAAABIAAAARQAAAEgAAABIAAAASAAAAFEAAABIAAAARQAAAUgAAABPAAAAXwAAAA== -3,-7: ind: -3,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAABcAAANfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAAAXAAACXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAFwAAA18AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABPAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABFAAAARQAAA1EAAABPAAAAXwAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAABcAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAAAXAAACXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAFwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABPAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABFAAACRQAAAFEAAAJPAAAAXwAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAA== -5,-4: ind: -5,-4 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== 5,-4: ind: 5,-4 - tiles: BAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: BAAAAgQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 5,-5: ind: 5,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - type: Broadphase - angularDamping: 0.05 @@ -7635,8 +7637,7 @@ entities: 19,-11: 0: 39423 16,-8: - 0: 62455 - 2: 3080 + 0: 65535 12,-12: 0: 65535 12,-11: @@ -7735,8 +7736,7 @@ entities: -7,-7: 0: 65535 -7,-6: - 0: 65023 - 3: 512 + 0: 65535 -10,-4: 0: 65535 -10,-3: @@ -8174,7 +8174,8 @@ entities: -10,4: 0: 65535 -10,5: - 0: 65535 + 0: 57343 + 6: 8192 -10,6: 0: 65535 -10,7: @@ -8308,9 +8309,7 @@ entities: -14,-23: 0: 65392 -14,-22: - 0: 32699 - 6: 4 - 3: 64 + 0: 32767 -14,-21: 0: 65535 -13,-23: @@ -8406,15 +8405,13 @@ entities: -13,9: 0: 39391 16,-7: - 0: 12003 - 2: 12 + 0: 12015 16,-6: 0: 44834 16,-5: 0: 64234 17,-8: - 0: 64766 - 2: 769 + 0: 65535 -12,1: 0: 65535 -12,2: @@ -9210,8 +9207,7 @@ entities: 21,-20: 0: 65024 17,-7: - 0: 4092 - 2: 3 + 0: 4095 18,-7: 0: 4087 19,-7: @@ -9441,11 +9437,11 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 27.809448 - - 104.6165 - 0 - 0 - 0 + - 6666.982 + - 0 - 0 - 0 - 0 @@ -9457,9 +9453,9 @@ entities: temperature: 293.15 moles: - 0 + - 6666.982 - 0 - 0 - - 6666.982 - 0 - 0 - 0 @@ -9471,7 +9467,6 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 0 - 6666.982 - 0 - 0 @@ -9483,11 +9478,12 @@ entities: - 0 - 0 - 0 + - 0 - volume: 2500 temperature: 293.15 moles: - - 6666.982 - - 0 + - 30.227661 + - 113.713585 - 0 - 0 - 0 @@ -9526,9 +9522,9 @@ entities: parent: 2 type: Transform - devices: - - 19322 + - 19323 - 775 - - 19120 + - 19121 - 14552 - 14614 - 14616 @@ -9552,8 +9548,8 @@ entities: parent: 2 type: Transform - devices: - - 19356 - - 19082 + - 19357 + - 19083 - 799 - 14563 - 14609 @@ -9568,10 +9564,10 @@ entities: parent: 2 type: Transform - devices: - - 19376 + - 19377 - 802 - - 19085 - - 19323 + - 19086 + - 19324 - 14502 - 14501 - 14589 @@ -9592,24 +9588,24 @@ entities: type: Transform - devices: - 815 - - 19384 - - 19156 - - 19393 + - 19385 - 19157 + - 19394 + - 19158 + - 19393 + - 19149 - 19392 - - 19148 - - 19391 - - 19150 - 19151 - - 19390 - 19152 - - 19389 + - 19391 - 19153 - - 19388 + - 19390 - 19154 - - 19387 + - 19389 - 19155 - - 19386 + - 19388 + - 19156 + - 19387 type: DeviceList - uid: 8 components: @@ -9618,8 +9614,8 @@ entities: type: Transform - devices: - 834 - - 19248 - - 19483 + - 19249 + - 19484 type: DeviceList - uid: 9 components: @@ -9628,8 +9624,8 @@ entities: type: Transform - devices: - 800 - - 19312 - - 19070 + - 19313 + - 19071 - 14747 - 14748 - 14745 @@ -9654,8 +9650,8 @@ entities: type: Transform - devices: - 804 - - 19081 - - 19363 + - 19082 + - 19364 - 14642 - 14600 - 14643 @@ -9674,8 +9670,8 @@ entities: type: Transform - devices: - 888 - - 19309 - - 19125 + - 19310 + - 19126 - 14574 type: DeviceList - uid: 12 @@ -9685,8 +9681,8 @@ entities: type: Transform - devices: - 839 - - 19434 - - 19198 + - 19435 + - 19199 - 14681 - 14699 - 14597 @@ -9706,8 +9702,8 @@ entities: parent: 2 type: Transform - devices: - - 19119 - - 19345 + - 19120 + - 19346 - 828 - 14574 - 14577 @@ -9728,8 +9724,8 @@ entities: type: Transform - devices: - 859 - - 19174 - - 19410 + - 19175 + - 19411 - 14663 - 14513 - 14512 @@ -9747,8 +9743,8 @@ entities: - 14408 - 14407 - 857 - - 19405 - - 19170 + - 19406 + - 19171 - 14659 type: DeviceList - uid: 16 @@ -9758,7 +9754,7 @@ entities: type: Transform - devices: - 814 - - 19181 + - 19182 type: DeviceList - uid: 17 components: @@ -9772,8 +9768,8 @@ entities: type: Transform - devices: - 820 - - 19504 - - 19270 + - 19505 + - 19271 - 14805 - 14804 - 14798 @@ -9790,9 +9786,9 @@ entities: parent: 2 type: Transform - devices: - - 19482 + - 19483 - 823 - - 19244 + - 19245 - 14446 - 14443 type: DeviceList @@ -9802,11 +9798,11 @@ entities: parent: 2 type: Transform - devices: - - 19486 - - 19078 + - 19487 + - 19079 - 779 - - 19251 - - 19313 + - 19252 + - 19314 - 14557 - 14618 - 14553 @@ -9835,8 +9831,8 @@ entities: parent: 2 type: Transform - devices: - - 19111 - - 19361 + - 19112 + - 19362 - 801 - 14545 - 14585 @@ -9864,10 +9860,10 @@ entities: parent: 2 type: Transform - devices: - - 19206 + - 19207 - 824 - - 19188 - - 19423 + - 19189 + - 19424 - 14718 - 14719 - 14720 @@ -9891,8 +9887,8 @@ entities: type: Transform - devices: - 825 - - 19073 - - 19306 + - 19074 + - 19307 - 14528 - 14558 - 14587 @@ -9910,8 +9906,8 @@ entities: type: Transform - devices: - 829 - - 19362 - - 19117 + - 19363 + - 19118 - 14769 - 14753 - 14752 @@ -9932,8 +9928,8 @@ entities: type: Transform - devices: - 777 - - 19336 - - 19103 + - 19337 + - 19104 - 14617 - 14623 - 14631 @@ -9959,8 +9955,8 @@ entities: parent: 2 type: Transform - devices: - - 19488 - - 19252 + - 19489 + - 19253 - 835 - 14700 - 14701 @@ -9972,8 +9968,8 @@ entities: type: Transform - devices: - 837 - - 19454 - - 19216 + - 19455 + - 19217 - 14413 - 14414 - 14674 @@ -9989,8 +9985,8 @@ entities: parent: 2 type: Transform - devices: - - 19335 - - 19071 + - 19336 + - 19072 - 778 - 14570 - 14387 @@ -10021,8 +10017,8 @@ entities: - 14359 - 14394 - 14389 - - 19367 - - 19132 + - 19368 + - 19133 - 840 type: DeviceList - uid: 30 @@ -10032,8 +10028,8 @@ entities: type: Transform - devices: - 816 - - 19199 - - 19438 + - 19200 + - 19439 - 14837 - 14838 - 14839 @@ -10052,8 +10048,8 @@ entities: - 14654 - 14653 - 813 - - 19168 - - 19403 + - 19169 + - 19404 type: DeviceList - uid: 32 components: @@ -10061,8 +10057,8 @@ entities: parent: 2 type: Transform - devices: - - 19485 - - 19250 + - 19486 + - 19251 - 798 - 14741 - 14742 @@ -10094,9 +10090,9 @@ entities: - 14584 - 14550 - 14551 - - 19328 + - 19329 - 841 - - 19129 + - 19130 type: DeviceList - uid: 34 components: @@ -10106,8 +10102,8 @@ entities: type: Transform - devices: - 826 - - 19091 - - 19344 + - 19092 + - 19345 - 14521 - 14554 - 14546 @@ -10127,8 +10123,8 @@ entities: type: Transform - devices: - 796 - - 19354 - - 19127 + - 19355 + - 19128 type: DeviceList - uid: 36 components: @@ -10137,8 +10133,8 @@ entities: type: Transform - devices: - 796 - - 19354 - - 19127 + - 19355 + - 19128 type: DeviceList - uid: 37 components: @@ -10146,13 +10142,13 @@ entities: parent: 2 type: Transform - devices: - - 19369 - - 19136 + - 19370 + - 19137 - 843 + - 19360 + - 19125 + - 19087 - 19359 - - 19124 - - 19086 - - 19358 type: DeviceList - uid: 38 components: @@ -10160,9 +10156,9 @@ entities: parent: 2 type: Transform - devices: - - 19141 + - 19142 - 782 - - 19375 + - 19376 - 14361 - 14359 - 14584 @@ -10180,9 +10176,9 @@ entities: parent: 2 type: Transform - devices: - - 19141 + - 19142 - 782 - - 19375 + - 19376 type: DeviceList - uid: 40 components: @@ -10190,9 +10186,9 @@ entities: parent: 2 type: Transform - devices: - - 19315 + - 19316 - 806 - - 19126 + - 19127 - 14610 - 14412 - 14756 @@ -10207,8 +10203,8 @@ entities: type: Transform - devices: - 811 - - 19160 - - 19400 + - 19161 + - 19401 - 14603 - 14577 - 14739 @@ -10235,8 +10231,8 @@ entities: - 14677 - 14680 - 844 - - 19239 - - 19471 + - 19240 + - 19472 type: DeviceList - uid: 43 components: @@ -10245,8 +10241,8 @@ entities: type: Transform - devices: - 845 - - 19241 - - 19480 + - 19242 + - 19481 - 14735 - 14731 - 14724 @@ -10259,8 +10255,8 @@ entities: parent: 2 type: Transform - devices: - - 19477 - - 19246 + - 19478 + - 19247 - 846 type: DeviceList - uid: 45 @@ -10269,8 +10265,8 @@ entities: parent: 2 type: Transform - devices: - - 19227 - - 19466 + - 19228 + - 19467 - 847 - 14824 - 14826 @@ -10282,7 +10278,7 @@ entities: parent: 2 type: Transform - devices: - - 19231 + - 19232 - 848 - 14824 - 14826 @@ -10294,9 +10290,9 @@ entities: parent: 2 type: Transform - devices: - - 19225 + - 19226 - 849 - - 19465 + - 19466 type: DeviceList - uid: 48 components: @@ -10304,8 +10300,8 @@ entities: parent: 2 type: Transform - devices: - - 19223 - - 19462 + - 19224 + - 19463 - 851 - 14717 - 14716 @@ -10324,7 +10320,7 @@ entities: type: Transform - devices: - 833 - - 19440 + - 19441 - 14707 - 14708 - 14695 @@ -10343,9 +10339,9 @@ entities: - 855 - 14697 - 14696 - - 19204 + - 19205 - 14454 - - 19443 + - 19444 - 14713 - 14765 type: DeviceList @@ -10356,8 +10352,8 @@ entities: type: Transform - devices: - 854 - - 19448 - - 19209 + - 19449 + - 19210 - 14423 - 14424 - 14764 @@ -10370,9 +10366,9 @@ entities: parent: 2 type: Transform - devices: - - 19450 + - 19451 - 853 - - 19212 + - 19213 - 14702 - 14703 - 14714 @@ -10386,8 +10382,8 @@ entities: type: Transform - devices: - 852 - - 19253 - - 19489 + - 19254 + - 19490 - 14482 - 14704 - 14516 @@ -10399,8 +10395,8 @@ entities: type: Transform - devices: - 856 - - 19441 - - 19202 + - 19442 + - 19203 type: DeviceList - uid: 55 components: @@ -10409,8 +10405,8 @@ entities: type: Transform - devices: - 819 - - 19406 - - 19169 + - 19407 + - 19170 - 14659 - 14662 - 14671 @@ -10428,9 +10424,9 @@ entities: parent: 2 type: Transform - devices: - - 19180 - - 19415 + - 19181 - 19416 + - 19417 - 818 - 14669 - 14670 @@ -10442,8 +10438,8 @@ entities: type: Transform - devices: - 14673 - - 19412 - - 19177 + - 19413 + - 19178 - 871 type: DeviceList - uid: 58 @@ -10453,8 +10449,8 @@ entities: type: Transform - devices: - 860 - - 19413 - - 19178 + - 19414 + - 19179 - 14664 type: DeviceList - uid: 59 @@ -10464,8 +10460,8 @@ entities: type: Transform - devices: - 864 - - 19220 - - 19461 + - 19221 + - 19462 - 14425 - 14426 - 14812 @@ -10477,8 +10473,8 @@ entities: parent: 2 type: Transform - devices: - - 19484 - - 19249 + - 19485 + - 19250 - 863 type: DeviceList - uid: 61 @@ -10487,10 +10483,10 @@ entities: parent: 2 type: Transform - devices: - - 19399 + - 19400 + - 19166 + - 19315 - 19165 - - 19314 - - 19164 - 812 - 14397 - 14386 @@ -10509,9 +10505,9 @@ entities: parent: 2 type: Transform - devices: - - 19352 + - 19353 - 810 - - 19095 + - 19096 - 14769 - 14753 - 14752 @@ -10525,8 +10521,8 @@ entities: type: Transform - devices: - 827 - - 19326 - - 19080 + - 19327 + - 19081 - 14375 - 14365 - 14363 @@ -10544,8 +10540,8 @@ entities: type: Transform - devices: - 787 - - 19341 - - 19076 + - 19342 + - 19077 - 14578 - 14628 - 14772 @@ -10556,8 +10552,8 @@ entities: parent: 2 type: Transform - devices: - - 19342 - - 19115 + - 19343 + - 19116 - 785 - 14762 - 14628 @@ -10570,8 +10566,8 @@ entities: type: Transform - devices: - 817 - - 19432 - - 19195 + - 19433 + - 19196 type: DeviceList - uid: 67 components: @@ -10579,8 +10575,8 @@ entities: parent: 2 type: Transform - devices: - - 19458 - - 19219 + - 19459 + - 19220 - 867 - 14715 type: DeviceList @@ -10596,8 +10592,8 @@ entities: type: Transform - devices: - 870 - - 19288 - - 19537 + - 19289 + - 19538 - 14844 - 14843 type: DeviceList @@ -10612,9 +10608,9 @@ entities: parent: 2 type: Transform - devices: - - 19495 + - 19496 - 872 - - 19260 + - 19261 - 14476 - 14473 - 14475 @@ -10640,8 +10636,8 @@ entities: type: Transform - devices: - 873 - - 19265 - - 19503 + - 19266 + - 19504 - 14790 - 14791 - 14792 @@ -10658,8 +10654,8 @@ entities: parent: 2 type: Transform - devices: - - 19508 - - 19266 + - 19509 + - 19267 - 821 - 14799 - 14777 @@ -10676,8 +10672,8 @@ entities: type: Transform - devices: - 822 - - 19271 - - 19509 + - 19272 + - 19510 - 14795 - 14794 - 14793 @@ -10691,8 +10687,8 @@ entities: parent: 2 type: Transform - devices: - - 19278 - - 19516 + - 19279 + - 19517 - 875 type: DeviceList - uid: 76 @@ -10702,8 +10698,8 @@ entities: type: Transform - devices: - 774 - - 19338 - - 19105 + - 19339 + - 19106 - 14369 - 14368 - 14367 @@ -10727,9 +10723,9 @@ entities: parent: 2 type: Transform - devices: - - 19371 + - 19372 - 784 - - 19137 + - 19138 - 14771 - 14762 - 14518 @@ -10742,8 +10738,8 @@ entities: type: Transform - devices: - 865 - - 19325 - - 19087 + - 19326 + - 19088 - 14618 - 14557 type: DeviceList @@ -10753,9 +10749,9 @@ entities: parent: 2 type: Transform - devices: - - 19365 + - 19366 - 842 - - 19128 + - 19129 - 14624 - 14400 type: DeviceList @@ -10765,8 +10761,8 @@ entities: parent: 2 type: Transform - devices: - - 19280 - - 19518 + - 19281 + - 19519 - 861 - 14484 - 14485 @@ -10785,7 +10781,7 @@ entities: - 14816 - 14817 - 878 - - 19520 + - 19521 type: DeviceList - uid: 82 components: @@ -10793,7 +10789,7 @@ entities: parent: 2 type: Transform - devices: - - 19283 + - 19284 - 862 - 14513 - 14512 @@ -10814,8 +10810,8 @@ entities: - 14604 - 14519 - 14598 - - 19310 - - 19077 + - 19311 + - 19078 - 797 type: DeviceList - uid: 84 @@ -10824,9 +10820,9 @@ entities: parent: 2 type: Transform - devices: - - 19425 + - 19426 - 831 - - 19190 + - 19191 - 14754 - 14560 - 14564 @@ -10841,8 +10837,8 @@ entities: type: Transform - devices: - 832 - - 19427 - - 19192 + - 19428 + - 19193 - 14564 - 14560 - 14738 @@ -10862,9 +10858,9 @@ entities: parent: 2 type: Transform - devices: - - 19535 + - 19536 - 886 - - 19297 + - 19298 - 14834 - 14835 - 14836 @@ -10879,8 +10875,8 @@ entities: type: Transform - devices: - 14830 - - 19298 - - 19534 + - 19299 + - 19535 - 887 type: DeviceList - uid: 88 @@ -10890,9 +10886,9 @@ entities: parent: 2 type: Transform - devices: - - 19295 + - 19296 - 869 - - 19436 + - 19437 - 14829 - 14831 - 14832 @@ -10906,8 +10902,8 @@ entities: type: Transform - devices: - 876 - - 19536 - - 19299 + - 19537 + - 19300 - 14840 - 14841 - 14842 @@ -10923,8 +10919,8 @@ entities: - 14648 - 14845 - 14750 - - 19301 - - 19539 + - 19302 + - 19540 type: DeviceList - uid: 91 components: @@ -10935,12 +10931,12 @@ entities: - devices: - 14651 - 14556 - - 19402 - - 19164 - - 812 - - 19314 + - 19403 - 19165 - - 19399 + - 812 + - 19315 + - 19166 + - 19400 - 14750 - 14810 - 14811 @@ -10961,8 +10957,8 @@ entities: - 14728 - 14727 - 14726 - - 19337 - - 19104 + - 19338 + - 19105 type: DeviceList - uid: 93 components: @@ -10971,8 +10967,8 @@ entities: parent: 2 type: Transform - devices: - - 19541 - - 19302 + - 19542 + - 19303 - 890 - 14847 - 14848 @@ -11044,54 +11040,35 @@ entities: pos: -44.5,11.5 parent: 2 type: Transform - - links: - - 20878 - type: DeviceLinkSink - uid: 106 components: - pos: -51.5,12.5 parent: 2 type: Transform - - invokeCounter: 3 - links: - - 25033 - type: DeviceLinkSink - uid: 107 components: - rot: 3.141592653589793 rad pos: -52.5,9.5 parent: 2 type: Transform - - links: - - 30685 - type: DeviceLinkSink - uid: 108 components: - rot: -1.5707963267948966 rad pos: -21.5,30.5 parent: 2 type: Transform - - links: - - 28610 - type: DeviceLinkSink - uid: 109 components: - rot: -1.5707963267948966 rad pos: -17.5,34.5 parent: 2 type: Transform - - links: - - 30686 - type: DeviceLinkSink - uid: 110 components: - rot: -1.5707963267948966 rad pos: -13.5,34.5 parent: 2 type: Transform - - links: - - 30687 - type: DeviceLinkSink - uid: 111 components: - rot: -1.5707963267948966 rad @@ -11704,12 +11681,6 @@ entities: pos: -43.5,-22.5 parent: 2 type: Transform - - uid: 12052 - components: - - rot: 3.141592653589793 rad - pos: -41.5,-19.5 - parent: 2 - type: Transform - proto: AirlockEngineeringLocked entities: - uid: 208 @@ -11961,6 +11932,11 @@ entities: pos: 6.5,-21.5 parent: 2 type: Transform + - uid: 19971 + components: + - pos: -41.5,-19.5 + parent: 2 + type: Transform - proto: AirlockExternalGlass entities: - uid: 247 @@ -12113,174 +12089,175 @@ entities: pos: 46.5,-89.5 parent: 2 type: Transform + - uid: 275 + components: + - rot: -1.5707963267948966 rad + pos: 67.5,-16.5 + parent: 2 + type: Transform - proto: AirlockExternalGlassLocked entities: - - uid: 275 + - uid: 276 components: - pos: -1.5,-84.5 parent: 2 type: Transform - - uid: 276 + - uid: 277 components: - pos: -60.5,-54.5 parent: 2 type: Transform - - uid: 277 + - uid: 278 components: - pos: 52.5,-16.5 parent: 2 type: Transform - - uid: 278 + - uid: 279 components: - pos: -57.5,-1.5 parent: 2 type: Transform - - uid: 279 + - uid: 280 components: - pos: -55.5,-1.5 parent: 2 type: Transform - - uid: 280 + - uid: 281 components: - rot: -1.5707963267948966 rad pos: -58.5,-18.5 parent: 2 type: Transform - - uid: 281 + - uid: 282 components: - pos: -58.5,-54.5 parent: 2 type: Transform - - uid: 282 + - uid: 283 components: - pos: -46.5,-41.5 parent: 2 type: Transform - - uid: 283 + - uid: 284 components: - pos: -49.5,20.5 parent: 2 type: Transform - - uid: 284 + - uid: 285 components: - pos: -49.5,22.5 parent: 2 type: Transform - - uid: 285 + - uid: 286 components: - pos: -49.5,33.5 parent: 2 type: Transform - - uid: 286 + - uid: 287 components: - pos: -49.5,31.5 parent: 2 type: Transform - - uid: 287 + - uid: 288 components: - pos: -52.5,33.5 parent: 2 type: Transform - - uid: 288 + - uid: 289 components: - pos: -52.5,31.5 parent: 2 type: Transform - - uid: 289 + - uid: 290 components: - pos: -72.5,-35.5 parent: 2 type: Transform - - uid: 290 + - uid: 291 components: - rot: -1.5707963267948966 rad pos: 63.5,30.5 parent: 2 type: Transform - - uid: 291 + - uid: 292 components: - pos: 69.5,36.5 parent: 2 type: Transform - - uid: 292 + - uid: 293 components: - pos: 75.5,36.5 parent: 2 type: Transform - - uid: 293 + - uid: 294 components: - pos: 77.5,36.5 parent: 2 type: Transform - - uid: 294 + - uid: 295 components: - pos: 67.5,36.5 parent: 2 type: Transform - - uid: 295 + - uid: 296 components: - pos: 63.5,32.5 parent: 2 type: Transform - - uid: 296 + - uid: 297 components: - pos: -37.5,43.5 parent: 2 type: Transform - - uid: 297 + - uid: 298 components: - pos: -37.5,41.5 parent: 2 type: Transform - - uid: 298 + - uid: 299 components: - pos: 29.5,41.5 parent: 2 type: Transform - - uid: 299 + - uid: 300 components: - pos: 29.5,43.5 parent: 2 type: Transform - - uid: 300 + - uid: 301 components: - pos: -12.5,71.5 parent: 2 type: Transform - - uid: 301 + - uid: 302 components: - pos: -13.5,71.5 parent: 2 type: Transform - - uid: 302 + - uid: 303 components: - pos: -21.5,71.5 parent: 2 type: Transform - - uid: 303 + - uid: 304 components: - pos: -22.5,71.5 parent: 2 type: Transform - - uid: 304 + - uid: 305 components: - rot: -1.5707963267948966 rad pos: -56.5,-18.5 parent: 2 type: Transform - - uid: 305 - components: - - pos: -35.5,-99.5 - parent: 2 - type: Transform - uid: 306 components: - - pos: -35.5,-101.5 + - pos: -35.5,-99.5 parent: 2 type: Transform - uid: 307 components: - - pos: 67.5,-16.5 + - pos: -35.5,-101.5 parent: 2 type: Transform - uid: 308 @@ -12426,83 +12403,59 @@ entities: - proto: AirlockExternalGlassShuttleLocked entities: - uid: 332 - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-71.5 - parent: 2 - type: Transform - - uid: 333 - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-73.5 - parent: 2 - type: Transform - - uid: 334 - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-79.5 - parent: 2 - type: Transform - - uid: 335 - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-81.5 - parent: 2 - type: Transform - - uid: 336 components: - pos: -54.5,-90.5 parent: 2 type: Transform - - uid: 337 + - uid: 333 components: - rot: 3.141592653589793 rad pos: -54.5,-84.5 parent: 2 type: Transform - - uid: 338 + - uid: 334 components: - rot: -1.5707963267948966 rad pos: -53.5,20.5 parent: 2 type: Transform - - uid: 339 + - uid: 335 components: - rot: -1.5707963267948966 rad pos: -53.5,22.5 parent: 2 type: Transform - - uid: 340 + - uid: 336 components: - rot: 3.141592653589793 rad pos: -13.5,75.5 parent: 2 type: Transform - - uid: 341 + - uid: 337 components: - rot: 3.141592653589793 rad pos: -12.5,75.5 parent: 2 type: Transform - - uid: 342 + - uid: 338 components: - rot: 3.141592653589793 rad pos: -21.5,75.5 parent: 2 type: Transform - - uid: 343 + - uid: 339 components: - rot: 3.141592653589793 rad pos: -22.5,75.5 parent: 2 type: Transform - - uid: 344 + - uid: 340 components: - rot: -1.5707963267948966 rad pos: -53.5,42.5 parent: 2 type: Transform - - uid: 345 + - uid: 341 components: - rot: -1.5707963267948966 rad pos: -53.5,43.5 @@ -12510,14 +12463,14 @@ entities: type: Transform - proto: AirlockFreezerKitchenHydroLocked entities: - - uid: 346 + - uid: 342 components: - pos: 0.5,10.5 parent: 2 type: Transform - proto: AirlockGlass entities: - - uid: 347 + - uid: 343 components: - name: lawyer office type: MetaData @@ -12525,59 +12478,59 @@ entities: pos: 35.5,-3.5 parent: 2 type: Transform - - uid: 348 + - uid: 344 components: - rot: 3.141592653589793 rad pos: -20.5,66.5 parent: 2 type: Transform - - uid: 349 + - uid: 345 components: - pos: 31.5,7.5 parent: 2 type: Transform - - uid: 350 + - uid: 346 components: - rot: 3.141592653589793 rad pos: 15.5,-38.5 parent: 2 type: Transform - - uid: 351 + - uid: 347 components: - pos: 19.5,-5.5 parent: 2 type: Transform - - uid: 352 + - uid: 348 components: - name: bar type: MetaData - pos: 10.5,4.5 parent: 2 type: Transform - - uid: 353 + - uid: 349 components: - rot: 1.5707963267948966 rad pos: 26.5,-15.5 parent: 2 type: Transform - - uid: 354 + - uid: 350 components: - rot: 1.5707963267948966 rad pos: 34.5,-19.5 parent: 2 type: Transform - - uid: 355 + - uid: 351 components: - rot: 3.141592653589793 rad pos: -0.5,-27.5 parent: 2 type: Transform - - uid: 356 + - uid: 352 components: - pos: -16.5,-42.5 parent: 2 type: Transform - - uid: 357 + - uid: 353 components: - name: youtool type: MetaData @@ -12585,118 +12538,118 @@ entities: pos: -21.5,-21.5 parent: 2 type: Transform - - uid: 358 + - uid: 354 components: - pos: 26.5,15.5 parent: 2 type: Transform - - uid: 359 + - uid: 355 components: - pos: 24.5,15.5 parent: 2 type: Transform - - uid: 360 + - uid: 356 components: - pos: -1.5,7.5 parent: 2 type: Transform - - uid: 361 + - uid: 357 components: - pos: 31.5,8.5 parent: 2 type: Transform - - uid: 362 + - uid: 358 components: - rot: -1.5707963267948966 rad pos: -3.5,-39.5 parent: 2 type: Transform - - uid: 363 + - uid: 359 components: - rot: -1.5707963267948966 rad pos: 24.5,-44.5 parent: 2 type: Transform - - uid: 364 + - uid: 360 components: - rot: -1.5707963267948966 rad pos: -5.5,-39.5 parent: 2 type: Transform - - uid: 365 + - uid: 361 components: - pos: 25.5,15.5 parent: 2 type: Transform - - uid: 366 + - uid: 362 components: - rot: -1.5707963267948966 rad pos: 15.5,7.5 parent: 2 type: Transform - - uid: 367 + - uid: 363 components: - rot: -1.5707963267948966 rad pos: 15.5,6.5 parent: 2 type: Transform - - uid: 368 + - uid: 364 components: - pos: 35.5,1.5 parent: 2 type: Transform - - uid: 369 + - uid: 365 components: - rot: 1.5707963267948966 rad pos: 16.5,-19.5 parent: 2 type: Transform - - uid: 370 + - uid: 366 components: - rot: 1.5707963267948966 rad pos: 15.5,-19.5 parent: 2 type: Transform - - uid: 371 + - uid: 367 components: - rot: 1.5707963267948966 rad pos: 14.5,-19.5 parent: 2 type: Transform - - uid: 372 + - uid: 368 components: - rot: 3.141592653589793 rad pos: 10.5,-27.5 parent: 2 type: Transform - - uid: 373 + - uid: 369 components: - rot: 3.141592653589793 rad pos: 10.5,-26.5 parent: 2 type: Transform - - uid: 374 + - uid: 370 components: - pos: 0.5,-50.5 parent: 2 type: Transform - - uid: 375 + - uid: 371 components: - pos: -0.5,-50.5 parent: 2 type: Transform - - uid: 376 + - uid: 372 components: - pos: 31.5,1.5 parent: 2 type: Transform - - uid: 377 + - uid: 373 components: - rot: 3.141592653589793 rad pos: 31.5,-6.5 parent: 2 type: Transform - - uid: 378 + - uid: 374 components: - name: lawyer office type: MetaData @@ -12704,244 +12657,244 @@ entities: pos: 38.5,-0.5 parent: 2 type: Transform - - uid: 379 + - uid: 375 components: - pos: -1.5,-50.5 parent: 2 type: Transform - - uid: 380 + - uid: 376 components: - rot: 3.141592653589793 rad pos: 10.5,-2.5 parent: 2 type: Transform - - uid: 381 + - uid: 377 components: - name: bar type: MetaData - pos: 11.5,4.5 parent: 2 type: Transform - - uid: 382 + - uid: 378 components: - rot: 1.5707963267948966 rad pos: 25.5,-15.5 parent: 2 type: Transform - - uid: 383 + - uid: 379 components: - pos: -16.5,-43.5 parent: 2 type: Transform - - uid: 384 + - uid: 380 components: - pos: -16.5,-41.5 parent: 2 type: Transform - - uid: 385 + - uid: 381 components: - rot: 3.141592653589793 rad pos: 10.5,-25.5 parent: 2 type: Transform - - uid: 386 + - uid: 382 components: - rot: 3.141592653589793 rad pos: -0.5,-25.5 parent: 2 type: Transform - - uid: 387 + - uid: 383 components: - rot: 1.5707963267948966 rad pos: 19.5,6.5 parent: 2 type: Transform - - uid: 388 + - uid: 384 components: - pos: 19.5,-4.5 parent: 2 type: Transform - - uid: 389 + - uid: 385 components: - pos: 19.5,-6.5 parent: 2 type: Transform - - uid: 390 + - uid: 386 components: - rot: -1.5707963267948966 rad pos: -4.5,-39.5 parent: 2 type: Transform - - uid: 391 + - uid: 387 components: - rot: 3.141592653589793 rad pos: 31.5,-4.5 parent: 2 type: Transform - - uid: 392 + - uid: 388 components: - rot: 1.5707963267948966 rad pos: 36.5,-19.5 parent: 2 type: Transform - - uid: 393 + - uid: 389 components: - pos: -20.5,-24.5 parent: 2 type: Transform - - uid: 394 + - uid: 390 components: - pos: 35.5,0.5 parent: 2 type: Transform - - uid: 395 + - uid: 391 components: - rot: 3.141592653589793 rad pos: 31.5,-5.5 parent: 2 type: Transform - - uid: 396 + - uid: 392 components: - pos: -3.5,-22.5 parent: 2 type: Transform - - uid: 397 + - uid: 393 components: - pos: -19.5,-24.5 parent: 2 type: Transform - - uid: 398 + - uid: 394 components: - rot: 1.5707963267948966 rad pos: 35.5,-19.5 parent: 2 type: Transform - - uid: 399 + - uid: 395 components: - pos: -5.5,-22.5 parent: 2 type: Transform - - uid: 400 + - uid: 396 components: - rot: 3.141592653589793 rad pos: 14.5,-38.5 parent: 2 type: Transform - - uid: 401 + - uid: 397 components: - rot: 1.5707963267948966 rad pos: 24.5,-15.5 parent: 2 type: Transform - - uid: 402 + - uid: 398 components: - rot: 3.141592653589793 rad pos: 11.5,-2.5 parent: 2 type: Transform - - uid: 403 + - uid: 399 components: - pos: 35.5,2.5 parent: 2 type: Transform - - uid: 404 + - uid: 400 components: - rot: -1.5707963267948966 rad pos: 25.5,-44.5 parent: 2 type: Transform - - uid: 405 + - uid: 401 components: - rot: -1.5707963267948966 rad pos: 26.5,-44.5 parent: 2 type: Transform - - uid: 406 + - uid: 402 components: - pos: 31.5,6.5 parent: 2 type: Transform - - uid: 407 + - uid: 403 components: - rot: 3.141592653589793 rad pos: 16.5,-38.5 parent: 2 type: Transform - - uid: 408 + - uid: 404 components: - pos: 1.5,53.5 parent: 2 type: Transform - - uid: 409 + - uid: 405 components: - pos: 0.5,53.5 parent: 2 type: Transform - - uid: 410 + - uid: 406 components: - pos: -0.5,53.5 parent: 2 type: Transform - - uid: 411 + - uid: 407 components: - pos: 40.5,-41.5 parent: 2 type: Transform - - uid: 412 + - uid: 408 components: - pos: 40.5,-42.5 parent: 2 type: Transform - - uid: 413 + - uid: 409 components: - pos: 40.5,-43.5 parent: 2 type: Transform - - uid: 414 + - uid: 410 components: - pos: 7.5,-43.5 parent: 2 type: Transform - - uid: 415 + - uid: 411 components: - pos: -4.5,-22.5 parent: 2 type: Transform - - uid: 416 + - uid: 412 components: - pos: 7.5,-42.5 parent: 2 type: Transform - - uid: 417 + - uid: 413 components: - pos: 7.5,-41.5 parent: 2 type: Transform - - uid: 418 + - uid: 414 components: - pos: -0.5,-26.5 parent: 2 type: Transform - - uid: 419 + - uid: 415 components: - name: Psychologist office type: MetaData - pos: -8.5,-40.5 parent: 2 type: Transform - - uid: 420 + - uid: 416 components: - rot: -1.5707963267948966 rad pos: -13.5,45.5 parent: 2 type: Transform - - uid: 421 + - uid: 417 components: - rot: -1.5707963267948966 rad pos: -13.5,46.5 parent: 2 type: Transform - - uid: 422 + - uid: 418 components: - name: visitor meeting type: MetaData @@ -12949,78 +12902,78 @@ entities: pos: 37.5,20.5 parent: 2 type: Transform - - uid: 423 + - uid: 419 components: - name: open library type: MetaData - pos: 43.5,19.5 parent: 2 type: Transform - - uid: 424 + - uid: 420 components: - name: open library type: MetaData - pos: 43.5,20.5 parent: 2 type: Transform - - uid: 425 + - uid: 421 components: - rot: 3.141592653589793 rad pos: 36.5,-38.5 parent: 2 type: Transform - - uid: 426 + - uid: 422 components: - rot: 3.141592653589793 rad pos: 35.5,-38.5 parent: 2 type: Transform - - uid: 427 + - uid: 423 components: - rot: 3.141592653589793 rad pos: 34.5,-38.5 parent: 2 type: Transform - - uid: 428 + - uid: 424 components: - rot: 3.141592653589793 rad pos: -14.5,66.5 parent: 2 type: Transform - - uid: 429 + - uid: 425 components: - rot: 3.141592653589793 rad pos: 51.5,-3.5 parent: 2 type: Transform - - uid: 430 + - uid: 426 components: - rot: 3.141592653589793 rad pos: 52.5,-3.5 parent: 2 type: Transform - - uid: 431 + - uid: 427 components: - rot: 3.141592653589793 rad pos: 53.5,-3.5 parent: 2 type: Transform - - uid: 432 + - uid: 428 components: - pos: -13.5,-27.5 parent: 2 type: Transform - - uid: 433 + - uid: 429 components: - pos: -13.5,-26.5 parent: 2 type: Transform - - uid: 434 + - uid: 430 components: - pos: -13.5,-25.5 parent: 2 type: Transform - - uid: 435 + - uid: 431 components: - name: courtroom type: MetaData @@ -13028,67 +12981,67 @@ entities: pos: 31.5,-57.5 parent: 2 type: Transform - - uid: 436 + - uid: 432 components: - pos: 30.5,-76.5 parent: 2 type: Transform - - uid: 437 + - uid: 433 components: - pos: 31.5,-76.5 parent: 2 type: Transform - - uid: 438 + - uid: 434 components: - pos: 29.5,-76.5 parent: 2 type: Transform - - uid: 439 + - uid: 435 components: - rot: 1.5707963267948966 rad pos: 32.5,-72.5 parent: 2 type: Transform - - uid: 440 + - uid: 436 components: - rot: 1.5707963267948966 rad pos: 46.5,-71.5 parent: 2 type: Transform - - uid: 441 + - uid: 437 components: - pos: 40.5,-69.5 parent: 2 type: Transform - - uid: 442 + - uid: 438 components: - pos: 39.5,-69.5 parent: 2 type: Transform - - uid: 443 + - uid: 439 components: - pos: 38.5,-69.5 parent: 2 type: Transform - - uid: 444 + - uid: 440 components: - rot: 3.141592653589793 rad pos: 35.5,-58.5 parent: 2 type: Transform - - uid: 445 + - uid: 441 components: - rot: 3.141592653589793 rad pos: 35.5,-59.5 parent: 2 type: Transform - - uid: 446 + - uid: 442 components: - rot: 3.141592653589793 rad pos: 35.5,-60.5 parent: 2 type: Transform - - uid: 447 + - uid: 443 components: - name: youtool type: MetaData @@ -13096,319 +13049,343 @@ entities: pos: 39.5,-57.5 parent: 2 type: Transform - - uid: 448 + - uid: 444 components: - pos: -7.5,-50.5 parent: 2 type: Transform - - uid: 449 + - uid: 445 components: - pos: -8.5,-50.5 parent: 2 type: Transform - - uid: 450 + - uid: 446 components: - pos: -9.5,-50.5 parent: 2 type: Transform - - uid: 451 + - uid: 447 components: - pos: -19.5,14.5 parent: 2 type: Transform - - uid: 452 + - uid: 448 components: - pos: -18.5,14.5 parent: 2 type: Transform - - uid: 453 + - uid: 449 components: - pos: -20.5,14.5 parent: 2 type: Transform - - uid: 454 + - uid: 450 components: - pos: -19.5,-39.5 parent: 2 type: Transform - - uid: 455 + - uid: 451 components: - pos: -20.5,-39.5 parent: 2 type: Transform - - uid: 456 + - uid: 452 components: - pos: -18.5,-39.5 parent: 2 type: Transform - - uid: 457 + - uid: 453 components: - pos: -18.5,-24.5 parent: 2 type: Transform - - uid: 458 + - uid: 454 components: - rot: -1.5707963267948966 rad pos: -18.5,-7.5 parent: 2 type: Transform - - uid: 459 + - uid: 455 components: - rot: -1.5707963267948966 rad pos: -19.5,-7.5 parent: 2 type: Transform - - uid: 460 + - uid: 456 components: - rot: -1.5707963267948966 rad pos: -20.5,-7.5 parent: 2 type: Transform - - uid: 461 + - uid: 457 components: - pos: -21.5,-12.5 parent: 2 type: Transform - - uid: 462 + - uid: 458 components: - pos: -21.5,-11.5 parent: 2 type: Transform - - uid: 463 + - uid: 459 components: - pos: -21.5,20.5 parent: 2 type: Transform - - uid: 464 + - uid: 460 components: - rot: -1.5707963267948966 rad pos: -17.5,29.5 parent: 2 type: Transform - - uid: 465 + - uid: 461 components: - rot: -1.5707963267948966 rad pos: -17.5,30.5 parent: 2 type: Transform - - uid: 466 + - uid: 462 components: - pos: -30.5,7.5 parent: 2 type: Transform - - uid: 467 + - uid: 463 components: - pos: -44.5,-0.5 parent: 2 type: Transform - - uid: 468 + - uid: 464 components: - pos: -4.5,-2.5 parent: 2 type: Transform - - uid: 469 + - uid: 465 components: - pos: -3.5,-2.5 parent: 2 type: Transform - - uid: 470 + - uid: 466 components: - pos: -44.5,1.5 parent: 2 type: Transform - - uid: 471 + - uid: 467 components: - pos: -44.5,0.5 parent: 2 type: Transform - - uid: 472 + - uid: 468 components: - pos: -38.5,2.5 parent: 2 type: Transform - - uid: 473 + - uid: 469 components: - pos: -37.5,2.5 parent: 2 type: Transform - - uid: 474 + - uid: 470 components: - pos: -27.5,1.5 parent: 2 type: Transform - - uid: 475 + - uid: 471 components: - pos: -27.5,0.5 parent: 2 type: Transform - - uid: 476 + - uid: 472 components: - pos: -27.5,-0.5 parent: 2 type: Transform - - uid: 477 + - uid: 473 components: - pos: -5.5,-2.5 parent: 2 type: Transform - - uid: 478 + - uid: 474 components: - pos: -21.5,21.5 parent: 2 type: Transform - - uid: 479 + - uid: 475 components: - pos: -46.5,2.5 parent: 2 type: Transform - - uid: 480 + - uid: 476 components: - pos: -47.5,2.5 parent: 2 type: Transform - - uid: 481 + - uid: 477 components: - pos: -45.5,2.5 parent: 2 type: Transform - - uid: 482 + - uid: 478 components: - rot: 3.141592653589793 rad pos: -45.5,9.5 parent: 2 type: Transform - - uid: 483 + - uid: 479 components: - rot: 3.141592653589793 rad pos: -46.5,9.5 parent: 2 type: Transform - - uid: 484 + - uid: 480 components: - rot: 1.5707963267948966 rad pos: 19.5,7.5 parent: 2 type: Transform - - uid: 485 + - uid: 481 components: - rot: -1.5707963267948966 rad pos: -17.5,48.5 parent: 2 type: Transform - - uid: 486 + - uid: 482 components: - rot: -1.5707963267948966 rad pos: -13.5,44.5 parent: 2 type: Transform - - uid: 487 + - uid: 483 components: - rot: -1.5707963267948966 rad pos: -18.5,48.5 parent: 2 type: Transform - - uid: 488 + - uid: 484 components: - rot: -1.5707963267948966 rad pos: -16.5,48.5 parent: 2 type: Transform - - uid: 489 + - uid: 485 components: - rot: 3.141592653589793 rad pos: -11.5,52.5 parent: 2 type: Transform - - uid: 490 + - uid: 486 components: - rot: 3.141592653589793 rad pos: -6.5,57.5 parent: 2 type: Transform - - uid: 491 + - uid: 487 components: - pos: -11.5,59.5 parent: 2 type: Transform - - uid: 492 + - uid: 488 components: - pos: -11.5,58.5 parent: 2 type: Transform - - uid: 493 + - uid: 489 components: - pos: -15.5,51.5 parent: 2 type: Transform - - uid: 494 + - uid: 490 components: - pos: -15.5,50.5 parent: 2 type: Transform - - uid: 495 + - uid: 491 components: - rot: 3.141592653589793 rad pos: -4.5,47.5 parent: 2 type: Transform - - uid: 496 + - uid: 492 components: - pos: 4.5,-28.5 parent: 2 type: Transform - - uid: 497 + - uid: 493 components: - pos: 47.5,-76.5 parent: 2 type: Transform - - uid: 498 + - uid: 494 components: - rot: 3.141592653589793 rad pos: 23.5,-83.5 parent: 2 type: Transform - - uid: 499 + - uid: 495 components: - rot: 3.141592653589793 rad pos: 20.5,-83.5 parent: 2 type: Transform - - uid: 500 + - uid: 496 components: - rot: 1.5707963267948966 rad pos: 46.5,-72.5 parent: 2 type: Transform - - uid: 501 + - uid: 497 components: - rot: 1.5707963267948966 rad pos: 32.5,-73.5 parent: 2 type: Transform - - uid: 502 + - uid: 498 components: - pos: 49.5,-76.5 parent: 2 type: Transform - - uid: 503 + - uid: 499 components: - rot: 1.5707963267948966 rad pos: 32.5,-71.5 parent: 2 type: Transform - - uid: 504 + - uid: 500 components: - rot: 1.5707963267948966 rad pos: 46.5,-73.5 parent: 2 type: Transform - - uid: 505 + - uid: 501 components: - pos: 48.5,-76.5 parent: 2 type: Transform - proto: AirlockGlassShuttle entities: + - uid: 502 + components: + - rot: -1.5707963267948966 rad + pos: -59.5,-71.5 + parent: 2 + type: Transform + - uid: 503 + components: + - rot: -1.5707963267948966 rad + pos: -59.5,-73.5 + parent: 2 + type: Transform + - uid: 504 + components: + - rot: -1.5707963267948966 rad + pos: -59.5,-81.5 + parent: 2 + type: Transform + - uid: 505 + components: + - rot: -1.5707963267948966 rad + pos: -59.5,-79.5 + parent: 2 + type: Transform - uid: 506 components: - rot: 1.5707963267948966 rad @@ -13610,6 +13587,12 @@ entities: pos: 8.5,-49.5 parent: 2 type: Transform + - uid: 21900 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-31.5 + parent: 2 + type: Transform - proto: AirlockMaintCommandLocked entities: - uid: 535 @@ -14973,9 +14956,6 @@ entities: - pos: -25.5,45.5 parent: 2 type: Transform - - links: - - 30689 - type: DeviceLinkSink - uid: 754 components: - name: theatre @@ -14990,9 +14970,6 @@ entities: - pos: -23.5,38.5 parent: 2 type: Transform - - links: - - 30688 - type: DeviceLinkSink - proto: AirlockVirologyGlass entities: - uid: 756 @@ -21344,6 +21321,8 @@ entities: pos: -37.58594,-17.279528 parent: 2 type: Transform + - nextSound: 475.4990282 + type: EmitSoundOnCollide - proto: BalloonCorgi entities: - uid: 1918 @@ -21380,16 +21359,22 @@ entities: - pos: -44.56904,61.76841 parent: 2 type: Transform + - nextSound: 1273.5708038 + type: EmitSoundOnCollide - uid: 1924 components: - pos: -45.38154,60.565285 parent: 2 type: Transform + - nextSound: 1274.8501887 + type: EmitSoundOnCollide - uid: 1925 components: - pos: -44.647163,61.39341 parent: 2 type: Transform + - nextSound: 1274.2344247 + type: EmitSoundOnCollide - proto: BannerCargo entities: - uid: 1926 @@ -21631,6 +21616,13 @@ entities: - pos: 33.5,48.5 parent: 2 type: Transform +- proto: BasaltRandom + entities: + - uid: 30705 + components: + - pos: 7.5,50.5 + parent: 2 + type: Transform - proto: Basketball entities: - uid: 1967 @@ -22124,7 +22116,7 @@ entities: - pos: 10.5,47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -227191.06 + - SecondsUntilStateChange: -224139.5 state: Closing type: Door - enabled: False @@ -22136,10 +22128,10 @@ entities: - inputs: Open: - port: On - uid: 23440 + uid: 23447 Close: - port: Off - uid: 23440 + uid: 23447 Toggle: [] type: SignalReceiver - uid: 2052 @@ -22147,7 +22139,7 @@ entities: - pos: 10.5,49.5 parent: 2 type: Transform - - SecondsUntilStateChange: -227191.06 + - SecondsUntilStateChange: -224139.5 state: Closing type: Door - enabled: False @@ -22159,10 +22151,10 @@ entities: - inputs: Open: - port: On - uid: 23440 + uid: 23447 Close: - port: Off - uid: 23440 + uid: 23447 Toggle: [] type: SignalReceiver - uid: 2053 @@ -22170,7 +22162,7 @@ entities: - pos: 10.5,48.5 parent: 2 type: Transform - - SecondsUntilStateChange: -227191.06 + - SecondsUntilStateChange: -224139.5 state: Closing type: Door - enabled: False @@ -22182,10 +22174,10 @@ entities: - inputs: Open: - port: On - uid: 23440 + uid: 23447 Close: - port: Off - uid: 23440 + uid: 23447 Toggle: [] type: SignalReceiver - proto: BlastDoorExterior1 @@ -22195,7 +22187,7 @@ entities: - pos: 18.5,-56.5 parent: 2 type: Transform - - SecondsUntilStateChange: -292620.47 + - SecondsUntilStateChange: -289568.94 state: Closing type: Door - enabled: False @@ -22207,10 +22199,10 @@ entities: - inputs: Open: - port: On - uid: 23414 + uid: 23421 Close: - port: Off - uid: 23414 + uid: 23421 Toggle: [] type: SignalReceiver - uid: 2055 @@ -22218,7 +22210,7 @@ entities: - pos: 47.5,-51.5 parent: 2 type: Transform - - SecondsUntilStateChange: -162001.27 + - SecondsUntilStateChange: -158949.7 state: Closing type: Door - enabled: False @@ -22230,10 +22222,10 @@ entities: - inputs: Open: - port: On - uid: 23410 + uid: 23417 Close: - port: Off - uid: 23410 + uid: 23417 Toggle: [] type: SignalReceiver - uid: 2056 @@ -22241,7 +22233,7 @@ entities: - pos: 47.5,-52.5 parent: 2 type: Transform - - SecondsUntilStateChange: -162001.27 + - SecondsUntilStateChange: -158949.7 state: Closing type: Door - enabled: False @@ -22253,10 +22245,10 @@ entities: - inputs: Open: - port: On - uid: 23410 + uid: 23417 Close: - port: Off - uid: 23410 + uid: 23417 Toggle: [] type: SignalReceiver - uid: 2057 @@ -22264,7 +22256,7 @@ entities: - pos: 47.5,-53.5 parent: 2 type: Transform - - SecondsUntilStateChange: -162001.27 + - SecondsUntilStateChange: -158949.7 state: Closing type: Door - enabled: False @@ -22276,10 +22268,10 @@ entities: - inputs: Open: - port: On - uid: 23410 + uid: 23417 Close: - port: Off - uid: 23410 + uid: 23417 Toggle: [] type: SignalReceiver - uid: 2058 @@ -22287,7 +22279,7 @@ entities: - pos: 47.5,-54.5 parent: 2 type: Transform - - SecondsUntilStateChange: -162001.27 + - SecondsUntilStateChange: -158949.7 state: Closing type: Door - enabled: False @@ -22299,10 +22291,10 @@ entities: - inputs: Open: - port: On - uid: 23410 + uid: 23417 Close: - port: Off - uid: 23410 + uid: 23417 Toggle: [] type: SignalReceiver - uid: 2059 @@ -22310,7 +22302,7 @@ entities: - pos: 52.5,-58.5 parent: 2 type: Transform - - SecondsUntilStateChange: -161988.94 + - SecondsUntilStateChange: -158937.38 state: Closing type: Door - enabled: False @@ -22322,10 +22314,10 @@ entities: - inputs: Open: - port: On - uid: 23411 + uid: 23418 Close: - port: Off - uid: 23411 + uid: 23418 Toggle: [] type: SignalReceiver - uid: 2060 @@ -22333,7 +22325,7 @@ entities: - pos: 50.5,-62.5 parent: 2 type: Transform - - SecondsUntilStateChange: -161991.47 + - SecondsUntilStateChange: -158939.9 state: Closing type: Door - enabled: False @@ -22345,10 +22337,10 @@ entities: - inputs: Open: - port: On - uid: 23446 + uid: 23453 Close: - port: Off - uid: 23446 + uid: 23453 Toggle: [] type: SignalReceiver - uid: 2061 @@ -22357,7 +22349,7 @@ entities: pos: 55.5,-56.5 parent: 2 type: Transform - - SecondsUntilStateChange: -161939.75 + - SecondsUntilStateChange: -158888.19 state: Closing type: Door - enabled: False @@ -22369,10 +22361,10 @@ entities: - inputs: Open: - port: On - uid: 23413 + uid: 23420 Close: - port: Off - uid: 23413 + uid: 23420 Toggle: [] type: SignalReceiver - uid: 2062 @@ -22381,7 +22373,7 @@ entities: pos: 54.5,-56.5 parent: 2 type: Transform - - SecondsUntilStateChange: -161939.75 + - SecondsUntilStateChange: -158888.19 state: Closing type: Door - enabled: False @@ -22393,10 +22385,10 @@ entities: - inputs: Open: - port: On - uid: 23413 + uid: 23420 Close: - port: Off - uid: 23413 + uid: 23420 Toggle: [] type: SignalReceiver - uid: 2063 @@ -22404,7 +22396,7 @@ entities: - pos: -45.5,-34.5 parent: 2 type: Transform - - SecondsUntilStateChange: -417468.9 + - SecondsUntilStateChange: -414417.38 state: Closing type: Door - enabled: False @@ -22416,10 +22408,10 @@ entities: - inputs: Open: - port: On - uid: 23417 + uid: 23424 Close: - port: Off - uid: 23417 + uid: 23424 Toggle: [] type: SignalReceiver - uid: 2064 @@ -22428,7 +22420,7 @@ entities: pos: -40.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -415819.25 + - SecondsUntilStateChange: -412767.72 state: Closing type: Door - enabled: False @@ -22440,10 +22432,10 @@ entities: - inputs: Open: - port: On - uid: 23418 + uid: 23425 Close: - port: Off - uid: 23418 + uid: 23425 Toggle: [] type: SignalReceiver - uid: 2065 @@ -22452,7 +22444,7 @@ entities: pos: -39.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -415819.25 + - SecondsUntilStateChange: -412767.72 state: Closing type: Door - enabled: False @@ -22464,10 +22456,10 @@ entities: - inputs: Open: - port: On - uid: 23418 + uid: 23425 Close: - port: Off - uid: 23418 + uid: 23425 Toggle: [] type: SignalReceiver - uid: 2066 @@ -22476,7 +22468,7 @@ entities: pos: -38.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -415819.25 + - SecondsUntilStateChange: -412767.72 state: Closing type: Door - enabled: False @@ -22488,10 +22480,10 @@ entities: - inputs: Open: - port: On - uid: 23418 + uid: 23425 Close: - port: Off - uid: 23418 + uid: 23425 Toggle: [] type: SignalReceiver - uid: 2067 @@ -22500,7 +22492,7 @@ entities: pos: -37.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -415819.25 + - SecondsUntilStateChange: -412767.72 state: Closing type: Door - enabled: False @@ -22512,10 +22504,10 @@ entities: - inputs: Open: - port: On - uid: 23418 + uid: 23425 Close: - port: Off - uid: 23418 + uid: 23425 Toggle: [] type: SignalReceiver - uid: 2068 @@ -22523,7 +22515,7 @@ entities: - pos: -49.5,19.5 parent: 2 type: Transform - - SecondsUntilStateChange: -295783.62 + - SecondsUntilStateChange: -292732.1 state: Closing type: Door - enabled: False @@ -22535,10 +22527,10 @@ entities: - inputs: Open: - port: On - uid: 23420 + uid: 23427 Close: - port: Off - uid: 23420 + uid: 23427 Toggle: [] type: SignalReceiver - uid: 2069 @@ -22546,7 +22538,7 @@ entities: - pos: -49.5,23.5 parent: 2 type: Transform - - SecondsUntilStateChange: -295783.62 + - SecondsUntilStateChange: -292732.1 state: Closing type: Door - enabled: False @@ -22558,10 +22550,10 @@ entities: - inputs: Open: - port: On - uid: 23420 + uid: 23427 Close: - port: Off - uid: 23420 + uid: 23427 Toggle: [] type: SignalReceiver - uid: 2070 @@ -22569,7 +22561,7 @@ entities: - pos: 51.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -257941.92 + - SecondsUntilStateChange: -254890.36 state: Closing type: Door - enabled: False @@ -22581,18 +22573,18 @@ entities: - inputs: Open: - port: Off - uid: 23430 - - port: Off - uid: 23428 + uid: 23437 - port: Off uid: 23435 + - port: Off + uid: 23442 Close: - port: On - uid: 23430 - - port: On - uid: 23428 + uid: 23437 - port: On uid: 23435 + - port: On + uid: 23442 Toggle: [] type: SignalReceiver - uid: 2071 @@ -22600,7 +22592,7 @@ entities: - pos: 54.5,45.5 parent: 2 type: Transform - - SecondsUntilStateChange: -257941.92 + - SecondsUntilStateChange: -254890.36 state: Closing type: Door - enabled: False @@ -22612,14 +22604,14 @@ entities: - inputs: Open: - port: On - uid: 23428 + uid: 23435 - port: Off - uid: 23426 + uid: 23433 Close: - port: Off - uid: 23428 + uid: 23435 - port: On - uid: 23426 + uid: 23433 Toggle: [] type: SignalReceiver - uid: 2072 @@ -22627,7 +22619,7 @@ entities: - pos: -52.5,34.5 parent: 2 type: Transform - - SecondsUntilStateChange: -89910.75 + - SecondsUntilStateChange: -86859.19 state: Closing type: Door - enabled: False @@ -22639,10 +22631,10 @@ entities: - inputs: Open: - port: On - uid: 23452 + uid: 23459 Close: - port: Off - uid: 23452 + uid: 23459 Toggle: [] type: SignalReceiver - uid: 2073 @@ -22650,7 +22642,7 @@ entities: - pos: -52.5,30.5 parent: 2 type: Transform - - SecondsUntilStateChange: -89883.04 + - SecondsUntilStateChange: -86831.48 state: Closing type: Door - enabled: False @@ -22662,10 +22654,10 @@ entities: - inputs: Open: - port: On - uid: 23412 + uid: 23419 Close: - port: Off - uid: 23412 + uid: 23419 Toggle: [] type: SignalReceiver - uid: 2074 @@ -22673,7 +22665,7 @@ entities: - pos: -53.5,23.5 parent: 2 type: Transform - - SecondsUntilStateChange: -89951.69 + - SecondsUntilStateChange: -86900.125 state: Closing type: Door - enabled: False @@ -22685,10 +22677,10 @@ entities: - inputs: Open: - port: On - uid: 23419 + uid: 23426 Close: - port: Off - uid: 23419 + uid: 23426 Toggle: [] type: SignalReceiver - uid: 2075 @@ -22696,7 +22688,7 @@ entities: - pos: -53.5,19.5 parent: 2 type: Transform - - SecondsUntilStateChange: -89951.69 + - SecondsUntilStateChange: -86900.125 state: Closing type: Door - enabled: False @@ -22708,10 +22700,10 @@ entities: - inputs: Open: - port: On - uid: 23419 + uid: 23426 Close: - port: Off - uid: 23419 + uid: 23426 Toggle: [] type: SignalReceiver - uid: 2076 @@ -22719,7 +22711,7 @@ entities: - pos: 53.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -256199.8 + - SecondsUntilStateChange: -253148.23 state: Closing type: Door - enabled: False @@ -22731,18 +22723,18 @@ entities: - inputs: Open: - port: On - uid: 23431 + uid: 23438 - port: Off - uid: 23422 + uid: 23429 - port: On - uid: 23439 + uid: 23446 Close: - port: Off - uid: 23431 + uid: 23438 - port: On - uid: 23422 + uid: 23429 - port: Off - uid: 23439 + uid: 23446 Toggle: [] type: SignalReceiver - uid: 2077 @@ -22750,7 +22742,7 @@ entities: - pos: 55.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -258202.19 + - SecondsUntilStateChange: -255150.62 state: Closing type: Door - enabled: False @@ -22762,14 +22754,14 @@ entities: - inputs: Open: - port: On - uid: 23426 + uid: 23433 - port: Off - uid: 23429 + uid: 23436 Close: - port: Off - uid: 23426 + uid: 23433 - port: On - uid: 23429 + uid: 23436 Toggle: [] type: SignalReceiver - uid: 2078 @@ -22777,7 +22769,7 @@ entities: - pos: 50.5,47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -257941.92 + - SecondsUntilStateChange: -254890.36 state: Closing type: Door - enabled: False @@ -22789,10 +22781,10 @@ entities: - inputs: Open: - port: On - uid: 23424 + uid: 23431 Close: - port: Off - uid: 23424 + uid: 23431 Toggle: [] type: SignalReceiver - uid: 2079 @@ -22800,7 +22792,7 @@ entities: - pos: 57.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -257941.92 + - SecondsUntilStateChange: -254890.36 state: Closing type: Door - enabled: False @@ -22812,10 +22804,10 @@ entities: - inputs: Open: - port: On - uid: 23430 + uid: 23437 Close: - port: Off - uid: 23430 + uid: 23437 Toggle: [] type: SignalReceiver - uid: 2080 @@ -22823,7 +22815,7 @@ entities: - pos: 56.5,47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -257941.92 + - SecondsUntilStateChange: -254890.36 state: Closing type: Door - enabled: False @@ -22835,10 +22827,10 @@ entities: - inputs: Open: - port: On - uid: 23421 + uid: 23428 Close: - port: Off - uid: 23421 + uid: 23428 Toggle: [] type: SignalReceiver - uid: 2081 @@ -22851,7 +22843,7 @@ entities: - pos: 53.5,48.5 parent: 2 type: Transform - - SecondsUntilStateChange: -256199.8 + - SecondsUntilStateChange: -253148.23 state: Closing type: Door - enabled: False @@ -22863,18 +22855,18 @@ entities: - inputs: Open: - port: Off - uid: 23421 + uid: 23428 - port: On - uid: 23436 + uid: 23443 - port: On - uid: 23439 + uid: 23446 Close: - port: On - uid: 23421 + uid: 23428 - port: Off - uid: 23436 + uid: 23443 - port: Off - uid: 23439 + uid: 23446 Toggle: [] type: SignalReceiver - uid: 2083 @@ -22885,10 +22877,10 @@ entities: - inputs: Open: - port: On - uid: 23436 + uid: 23443 Close: - port: Off - uid: 23436 + uid: 23443 Toggle: [] type: SignalReceiver - uid: 2084 @@ -22896,7 +22888,7 @@ entities: - pos: 58.5,47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -257941.92 + - SecondsUntilStateChange: -254890.36 state: Closing type: Door - enabled: False @@ -22908,10 +22900,10 @@ entities: - inputs: Open: - port: On - uid: 23422 + uid: 23429 Close: - port: Off - uid: 23422 + uid: 23429 Toggle: [] type: SignalReceiver - uid: 2085 @@ -22919,7 +22911,7 @@ entities: - pos: 52.5,45.5 parent: 2 type: Transform - - SecondsUntilStateChange: -258437.58 + - SecondsUntilStateChange: -255386.02 state: Closing type: Door - enabled: False @@ -22931,14 +22923,14 @@ entities: - inputs: Open: - port: On - uid: 23425 + uid: 23432 - port: Off - uid: 23434 + uid: 23441 Close: - port: Off - uid: 23425 + uid: 23432 - port: On - uid: 23434 + uid: 23441 Toggle: [] type: SignalReceiver - uid: 2086 @@ -22946,7 +22938,7 @@ entities: - pos: 53.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -256199.8 + - SecondsUntilStateChange: -253148.23 state: Closing type: Door - enabled: False @@ -22958,14 +22950,14 @@ entities: - inputs: Open: - port: Off - uid: 23432 - - port: On uid: 23439 + - port: On + uid: 23446 Close: - port: On - uid: 23432 - - port: Off uid: 23439 + - port: Off + uid: 23446 Toggle: [] type: SignalReceiver - uid: 2087 @@ -22973,7 +22965,7 @@ entities: - pos: 55.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -257941.92 + - SecondsUntilStateChange: -254890.36 state: Closing type: Door - enabled: False @@ -22985,14 +22977,14 @@ entities: - inputs: Open: - port: On - uid: 23432 + uid: 23439 - port: On - uid: 23435 + uid: 23442 Close: - port: Off - uid: 23432 + uid: 23439 - port: Off - uid: 23435 + uid: 23442 Toggle: [] type: SignalReceiver - uid: 2088 @@ -23000,7 +22992,7 @@ entities: - pos: 58.5,45.5 parent: 2 type: Transform - - SecondsUntilStateChange: -257941.92 + - SecondsUntilStateChange: -254890.36 state: Closing type: Door - enabled: False @@ -23012,10 +23004,10 @@ entities: - inputs: Open: - port: Off - uid: 23433 + uid: 23440 Close: - port: On - uid: 23433 + uid: 23440 Toggle: [] type: SignalReceiver - uid: 2089 @@ -23023,7 +23015,7 @@ entities: - pos: 57.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -257941.92 + - SecondsUntilStateChange: -254890.36 state: Closing type: Door - enabled: False @@ -23035,18 +23027,18 @@ entities: - inputs: Open: - port: Off - uid: 23425 + uid: 23432 - port: On - uid: 23427 + uid: 23434 - port: Off - uid: 23436 + uid: 23443 Close: - port: On - uid: 23425 + uid: 23432 - port: Off - uid: 23427 + uid: 23434 - port: On - uid: 23436 + uid: 23443 Toggle: [] type: SignalReceiver - uid: 2090 @@ -23059,7 +23051,7 @@ entities: - pos: 54.5,47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -257941.92 + - SecondsUntilStateChange: -254890.36 state: Closing type: Door - enabled: False @@ -23071,10 +23063,10 @@ entities: - inputs: Open: - port: On - uid: 23429 + uid: 23436 Close: - port: Off - uid: 23429 + uid: 23436 Toggle: [] type: SignalReceiver - uid: 2092 @@ -23082,7 +23074,7 @@ entities: - pos: 52.5,47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -257941.92 + - SecondsUntilStateChange: -254890.36 state: Closing type: Door - enabled: False @@ -23094,10 +23086,10 @@ entities: - inputs: Open: - port: Off - uid: 23431 + uid: 23438 Close: - port: On - uid: 23431 + uid: 23438 Toggle: [] type: SignalReceiver - uid: 2093 @@ -23105,7 +23097,7 @@ entities: - pos: 51.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -257941.92 + - SecondsUntilStateChange: -254890.36 state: Closing type: Door - enabled: False @@ -23117,14 +23109,14 @@ entities: - inputs: Open: - port: On - uid: 23435 + uid: 23442 - port: Off - uid: 23436 + uid: 23443 Close: - port: Off - uid: 23435 + uid: 23442 - port: On - uid: 23436 + uid: 23443 Toggle: [] type: SignalReceiver - uid: 2094 @@ -23132,7 +23124,7 @@ entities: - pos: 56.5,45.5 parent: 2 type: Transform - - SecondsUntilStateChange: -258296.28 + - SecondsUntilStateChange: -255244.72 state: Closing type: Door - enabled: False @@ -23144,14 +23136,14 @@ entities: - inputs: Open: - port: Off - uid: 23427 + uid: 23434 - port: On - uid: 23433 + uid: 23440 Close: - port: On - uid: 23427 + uid: 23434 - port: Off - uid: 23433 + uid: 23440 Toggle: [] type: SignalReceiver - uid: 2095 @@ -23159,7 +23151,7 @@ entities: - pos: 50.5,45.5 parent: 2 type: Transform - - SecondsUntilStateChange: -257941.92 + - SecondsUntilStateChange: -254890.36 state: Closing type: Door - enabled: False @@ -23171,14 +23163,14 @@ entities: - inputs: Open: - port: On - uid: 23434 + uid: 23441 - port: Off - uid: 23424 + uid: 23431 Close: - port: Off - uid: 23434 + uid: 23441 - port: On - uid: 23424 + uid: 23431 Toggle: [] type: SignalReceiver - uid: 2096 @@ -23186,7 +23178,7 @@ entities: - pos: -18.5,-96.5 parent: 2 type: Transform - - SecondsUntilStateChange: -204316.19 + - SecondsUntilStateChange: -201264.62 state: Closing type: Door - enabled: False @@ -23198,10 +23190,10 @@ entities: - inputs: Open: - port: On - uid: 23442 + uid: 23449 Close: - port: Off - uid: 23442 + uid: 23449 Toggle: [] type: SignalReceiver - uid: 2097 @@ -23209,7 +23201,7 @@ entities: - pos: -18.5,-98.5 parent: 2 type: Transform - - SecondsUntilStateChange: -204316.19 + - SecondsUntilStateChange: -201264.62 state: Closing type: Door - enabled: False @@ -23221,10 +23213,10 @@ entities: - inputs: Open: - port: On - uid: 23442 + uid: 23449 Close: - port: Off - uid: 23442 + uid: 23449 Toggle: [] type: SignalReceiver - uid: 2098 @@ -23232,7 +23224,7 @@ entities: - pos: -26.5,-96.5 parent: 2 type: Transform - - SecondsUntilStateChange: -204324.52 + - SecondsUntilStateChange: -201272.95 state: Closing type: Door - enabled: False @@ -23244,10 +23236,10 @@ entities: - inputs: Open: - port: On - uid: 23443 + uid: 23450 Close: - port: Off - uid: 23443 + uid: 23450 Toggle: [] type: SignalReceiver - uid: 2099 @@ -23255,7 +23247,7 @@ entities: - pos: -26.5,-98.5 parent: 2 type: Transform - - SecondsUntilStateChange: -204324.52 + - SecondsUntilStateChange: -201272.95 state: Closing type: Door - enabled: False @@ -23267,10 +23259,10 @@ entities: - inputs: Open: - port: On - uid: 23443 + uid: 23450 Close: - port: Off - uid: 23443 + uid: 23450 Toggle: [] type: SignalReceiver - uid: 2100 @@ -23278,7 +23270,7 @@ entities: - pos: 67.5,-39.5 parent: 2 type: Transform - - SecondsUntilStateChange: -160098.06 + - SecondsUntilStateChange: -157046.5 state: Closing type: Door - enabled: False @@ -23290,10 +23282,10 @@ entities: - inputs: Open: - port: On - uid: 23409 + uid: 23416 Close: - port: Off - uid: 23409 + uid: 23416 Toggle: [] type: SignalReceiver - uid: 2101 @@ -23305,10 +23297,10 @@ entities: - inputs: Open: - port: On - uid: 23447 + uid: 23454 Close: - port: Off - uid: 23447 + uid: 23454 Toggle: [] type: SignalReceiver - proto: BlastDoorExterior1Open @@ -23319,7 +23311,7 @@ entities: pos: 24.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -222179.1 + - SecondsUntilStateChange: -219127.53 state: Opening type: Door - enabled: True @@ -23331,10 +23323,10 @@ entities: - inputs: Open: - port: On - uid: 23441 + uid: 23448 Close: - port: Off - uid: 23441 + uid: 23448 Toggle: [] type: SignalReceiver - uid: 2103 @@ -23343,7 +23335,7 @@ entities: pos: 23.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -222179.1 + - SecondsUntilStateChange: -219127.53 state: Opening type: Door - enabled: True @@ -23355,10 +23347,10 @@ entities: - inputs: Open: - port: On - uid: 23441 + uid: 23448 Close: - port: Off - uid: 23441 + uid: 23448 Toggle: [] type: SignalReceiver - uid: 2104 @@ -23367,7 +23359,7 @@ entities: pos: 25.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -222179.1 + - SecondsUntilStateChange: -219127.53 state: Opening type: Door - enabled: True @@ -23379,10 +23371,10 @@ entities: - inputs: Open: - port: On - uid: 23441 + uid: 23448 Close: - port: Off - uid: 23441 + uid: 23448 Toggle: [] type: SignalReceiver - uid: 2105 @@ -23391,7 +23383,7 @@ entities: pos: 26.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -222179.1 + - SecondsUntilStateChange: -219127.53 state: Opening type: Door - enabled: True @@ -23403,10 +23395,10 @@ entities: - inputs: Open: - port: On - uid: 23441 + uid: 23448 Close: - port: Off - uid: 23441 + uid: 23448 Toggle: [] type: SignalReceiver - uid: 2106 @@ -23415,7 +23407,7 @@ entities: pos: 24.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -222179.1 + - SecondsUntilStateChange: -219127.53 state: Opening type: Door - enabled: True @@ -23427,10 +23419,10 @@ entities: - inputs: Open: - port: On - uid: 23441 + uid: 23448 Close: - port: Off - uid: 23441 + uid: 23448 Toggle: [] type: SignalReceiver - uid: 2107 @@ -23439,7 +23431,7 @@ entities: pos: 23.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -222179.1 + - SecondsUntilStateChange: -219127.53 state: Opening type: Door - enabled: True @@ -23451,10 +23443,10 @@ entities: - inputs: Open: - port: On - uid: 23441 + uid: 23448 Close: - port: Off - uid: 23441 + uid: 23448 Toggle: [] type: SignalReceiver - uid: 2108 @@ -23463,7 +23455,7 @@ entities: pos: 25.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -222179.1 + - SecondsUntilStateChange: -219127.53 state: Opening type: Door - enabled: True @@ -23475,10 +23467,10 @@ entities: - inputs: Open: - port: On - uid: 23441 + uid: 23448 Close: - port: Off - uid: 23441 + uid: 23448 Toggle: [] type: SignalReceiver - uid: 2109 @@ -23487,7 +23479,7 @@ entities: pos: 26.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -222179.1 + - SecondsUntilStateChange: -219127.53 state: Opening type: Door - enabled: True @@ -23499,10 +23491,10 @@ entities: - inputs: Open: - port: On - uid: 23441 + uid: 23448 Close: - port: Off - uid: 23441 + uid: 23448 Toggle: [] type: SignalReceiver - uid: 2110 @@ -23511,7 +23503,7 @@ entities: pos: 22.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -222179.1 + - SecondsUntilStateChange: -219127.53 state: Opening type: Door - enabled: True @@ -23523,10 +23515,10 @@ entities: - inputs: Open: - port: On - uid: 23441 + uid: 23448 Close: - port: Off - uid: 23441 + uid: 23448 Toggle: [] type: SignalReceiver - uid: 2111 @@ -23535,7 +23527,7 @@ entities: pos: 22.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -222179.1 + - SecondsUntilStateChange: -219127.53 state: Opening type: Door - enabled: True @@ -23547,10 +23539,10 @@ entities: - inputs: Open: - port: On - uid: 23441 + uid: 23448 Close: - port: Off - uid: 23441 + uid: 23448 Toggle: [] type: SignalReceiver - uid: 2112 @@ -23558,7 +23550,7 @@ entities: - pos: -8.5,-91.5 parent: 2 type: Transform - - SecondsUntilStateChange: -206073.17 + - SecondsUntilStateChange: -203021.61 state: Opening type: Door - enabled: True @@ -23570,14 +23562,14 @@ entities: - inputs: Open: - port: On - uid: 23444 + uid: 23451 - port: On - uid: 23445 + uid: 23452 Close: - port: Off - uid: 23444 + uid: 23451 - port: Off - uid: 23445 + uid: 23452 Toggle: [] type: SignalReceiver - uid: 2113 @@ -23585,7 +23577,7 @@ entities: - pos: -8.5,-92.5 parent: 2 type: Transform - - SecondsUntilStateChange: -206073.17 + - SecondsUntilStateChange: -203021.61 state: Opening type: Door - enabled: True @@ -23597,14 +23589,14 @@ entities: - inputs: Open: - port: On - uid: 23445 + uid: 23452 - port: On - uid: 23444 + uid: 23451 Close: - port: Off - uid: 23445 + uid: 23452 - port: Off - uid: 23444 + uid: 23451 Toggle: [] type: SignalReceiver - uid: 2114 @@ -23612,7 +23604,7 @@ entities: - pos: -8.5,-93.5 parent: 2 type: Transform - - SecondsUntilStateChange: -206073.17 + - SecondsUntilStateChange: -203021.61 state: Opening type: Door - enabled: True @@ -23624,14 +23616,14 @@ entities: - inputs: Open: - port: On - uid: 23445 + uid: 23452 - port: On - uid: 23444 + uid: 23451 Close: - port: Off - uid: 23445 + uid: 23452 - port: Off - uid: 23444 + uid: 23451 Toggle: [] type: SignalReceiver - uid: 2115 @@ -23639,7 +23631,7 @@ entities: - pos: -6.5,-91.5 parent: 2 type: Transform - - SecondsUntilStateChange: -206073.17 + - SecondsUntilStateChange: -203021.61 state: Opening type: Door - enabled: True @@ -23651,14 +23643,14 @@ entities: - inputs: Open: - port: On - uid: 23444 + uid: 23451 - port: On - uid: 23445 + uid: 23452 Close: - port: Off - uid: 23444 + uid: 23451 - port: Off - uid: 23445 + uid: 23452 Toggle: [] type: SignalReceiver - uid: 2116 @@ -23666,7 +23658,7 @@ entities: - pos: -6.5,-90.5 parent: 2 type: Transform - - SecondsUntilStateChange: -206073.17 + - SecondsUntilStateChange: -203021.61 state: Opening type: Door - enabled: True @@ -23678,14 +23670,14 @@ entities: - inputs: Open: - port: On - uid: 23444 + uid: 23451 - port: On - uid: 23445 + uid: 23452 Close: - port: Off - uid: 23444 + uid: 23451 - port: Off - uid: 23445 + uid: 23452 Toggle: [] type: SignalReceiver - uid: 2117 @@ -23693,7 +23685,7 @@ entities: - pos: -6.5,-92.5 parent: 2 type: Transform - - SecondsUntilStateChange: -206073.17 + - SecondsUntilStateChange: -203021.61 state: Opening type: Door - enabled: True @@ -23705,14 +23697,14 @@ entities: - inputs: Open: - port: On - uid: 23444 + uid: 23451 - port: On - uid: 23445 + uid: 23452 Close: - port: Off - uid: 23444 + uid: 23451 - port: Off - uid: 23445 + uid: 23452 Toggle: [] type: SignalReceiver - uid: 2118 @@ -23720,7 +23712,7 @@ entities: - pos: -6.5,-93.5 parent: 2 type: Transform - - SecondsUntilStateChange: -206073.17 + - SecondsUntilStateChange: -203021.61 state: Opening type: Door - enabled: True @@ -23732,14 +23724,14 @@ entities: - inputs: Open: - port: On - uid: 23444 + uid: 23451 - port: On - uid: 23445 + uid: 23452 Close: - port: Off - uid: 23444 + uid: 23451 - port: Off - uid: 23445 + uid: 23452 Toggle: [] type: SignalReceiver - uid: 2119 @@ -23747,7 +23739,7 @@ entities: - pos: -8.5,-90.5 parent: 2 type: Transform - - SecondsUntilStateChange: -206073.17 + - SecondsUntilStateChange: -203021.61 state: Opening type: Door - enabled: True @@ -23759,14 +23751,14 @@ entities: - inputs: Open: - port: On - uid: 23444 + uid: 23451 - port: On - uid: 23445 + uid: 23452 Close: - port: Off - uid: 23444 + uid: 23451 - port: Off - uid: 23445 + uid: 23452 Toggle: [] type: SignalReceiver - proto: BlastDoorExterior2 @@ -23776,7 +23768,7 @@ entities: - pos: -11.5,-11.5 parent: 2 type: Transform - - SecondsUntilStateChange: -51023.65 + - SecondsUntilStateChange: -47972.086 state: Closing type: Door - enabled: False @@ -23788,10 +23780,10 @@ entities: - inputs: Open: - port: On - uid: 23406 + uid: 23413 Close: - port: Off - uid: 23406 + uid: 23413 Toggle: [] type: SignalReceiver - proto: BlastDoorOpen @@ -23801,7 +23793,7 @@ entities: - pos: -56.5,-11.5 parent: 2 type: Transform - - SecondsUntilStateChange: -333749.1 + - SecondsUntilStateChange: -330697.56 state: Opening type: Door - enabled: True @@ -23813,10 +23805,10 @@ entities: - inputs: Open: - port: On - uid: 23416 + uid: 23423 Close: - port: Off - uid: 23416 + uid: 23423 Toggle: [] type: SignalReceiver - uid: 2122 @@ -23824,7 +23816,7 @@ entities: - pos: -56.5,-12.5 parent: 2 type: Transform - - SecondsUntilStateChange: -333749.1 + - SecondsUntilStateChange: -330697.56 state: Opening type: Door - enabled: True @@ -23836,10 +23828,10 @@ entities: - inputs: Open: - port: On - uid: 23416 + uid: 23423 Close: - port: Off - uid: 23416 + uid: 23423 Toggle: [] type: SignalReceiver - uid: 2123 @@ -23847,7 +23839,7 @@ entities: - pos: -56.5,-13.5 parent: 2 type: Transform - - SecondsUntilStateChange: -333749.1 + - SecondsUntilStateChange: -330697.56 state: Opening type: Door - enabled: True @@ -23859,10 +23851,10 @@ entities: - inputs: Open: - port: On - uid: 23416 + uid: 23423 Close: - port: Off - uid: 23416 + uid: 23423 Toggle: [] type: SignalReceiver - uid: 2124 @@ -23870,7 +23862,7 @@ entities: - pos: -56.5,-14.5 parent: 2 type: Transform - - SecondsUntilStateChange: -333749.1 + - SecondsUntilStateChange: -330697.56 state: Opening type: Door - enabled: True @@ -23882,10 +23874,10 @@ entities: - inputs: Open: - port: On - uid: 23416 + uid: 23423 Close: - port: Off - uid: 23416 + uid: 23423 Toggle: [] type: SignalReceiver - uid: 2125 @@ -23893,7 +23885,7 @@ entities: - pos: -56.5,-15.5 parent: 2 type: Transform - - SecondsUntilStateChange: -333749.1 + - SecondsUntilStateChange: -330697.56 state: Opening type: Door - enabled: True @@ -23905,10 +23897,10 @@ entities: - inputs: Open: - port: On - uid: 23416 + uid: 23423 Close: - port: Off - uid: 23416 + uid: 23423 Toggle: [] type: SignalReceiver - uid: 2126 @@ -23917,7 +23909,7 @@ entities: pos: -64.5,-22.5 parent: 2 type: Transform - - SecondsUntilStateChange: -102946.734 + - SecondsUntilStateChange: -99895.17 state: Opening type: Door - enabled: True @@ -23929,10 +23921,10 @@ entities: - inputs: Open: - port: On - uid: 23415 + uid: 23422 Close: - port: Off - uid: 23415 + uid: 23422 Toggle: [] type: SignalReceiver - uid: 2127 @@ -23941,7 +23933,7 @@ entities: pos: -65.5,-22.5 parent: 2 type: Transform - - SecondsUntilStateChange: -102946.734 + - SecondsUntilStateChange: -99895.17 state: Opening type: Door - enabled: True @@ -23953,10 +23945,10 @@ entities: - inputs: Open: - port: On - uid: 23415 + uid: 23422 Close: - port: Off - uid: 23415 + uid: 23422 Toggle: [] type: SignalReceiver - uid: 2128 @@ -23965,7 +23957,7 @@ entities: pos: -66.5,-22.5 parent: 2 type: Transform - - SecondsUntilStateChange: -102946.734 + - SecondsUntilStateChange: -99895.17 state: Opening type: Door - enabled: True @@ -23977,10 +23969,10 @@ entities: - inputs: Open: - port: On - uid: 23415 + uid: 23422 Close: - port: Off - uid: 23415 + uid: 23422 Toggle: [] type: SignalReceiver - uid: 2129 @@ -23989,7 +23981,7 @@ entities: pos: -67.5,-22.5 parent: 2 type: Transform - - SecondsUntilStateChange: -102946.734 + - SecondsUntilStateChange: -99895.17 state: Opening type: Door - enabled: True @@ -24001,10 +23993,10 @@ entities: - inputs: Open: - port: On - uid: 23415 + uid: 23422 Close: - port: Off - uid: 23415 + uid: 23422 Toggle: [] type: SignalReceiver - uid: 2130 @@ -24013,7 +24005,7 @@ entities: pos: -68.5,-22.5 parent: 2 type: Transform - - SecondsUntilStateChange: -102946.734 + - SecondsUntilStateChange: -99895.17 state: Opening type: Door - enabled: True @@ -24025,10 +24017,10 @@ entities: - inputs: Open: - port: On - uid: 23415 + uid: 23422 Close: - port: Off - uid: 23415 + uid: 23422 Toggle: [] type: SignalReceiver - proto: BlockGameArcadeComputerCircuitboard @@ -24527,107 +24519,116 @@ entities: - pos: 27.073633,32.655933 parent: 2 type: Transform + - uid: 2213 + components: + - pos: 27.052765,32.658382 + parent: 2 + type: Transform + - nextSound: 362.6134081 + type: EmitSoundOnCollide - proto: BoxSterileMask entities: - - uid: 2213 + - uid: 2214 components: - pos: -0.45298922,-61.30278 parent: 2 type: Transform - - uid: 2214 + - nextSound: 92.7682637 + type: EmitSoundOnCollide + - uid: 2215 components: - pos: -22.622793,-78.244446 parent: 2 type: Transform - - uid: 2215 + - uid: 2216 components: - pos: -20.619028,-78.321075 parent: 2 type: Transform - proto: BoxSyringe entities: - - uid: 2216 + - uid: 2217 components: - pos: 7.3840528,-47.15707 parent: 2 type: Transform - - uid: 2217 + - uid: 2218 components: - pos: 8.848293,-62.473377 parent: 2 type: Transform - - uid: 2218 + - uid: 2219 components: - pos: -22.337778,-78.539825 parent: 2 type: Transform - - uid: 2219 + - uid: 2220 components: - pos: -20.634653,-77.352325 parent: 2 type: Transform - - uid: 2220 + - uid: 2221 components: - pos: -26.571459,-84.31156 parent: 2 type: Transform - - uid: 2221 + - uid: 2222 components: - pos: -8.384587,-32.982723 parent: 2 type: Transform - proto: BoxZiptie entities: - - uid: 2222 + - uid: 2223 components: - pos: 15.609102,22.64932 parent: 2 type: Transform - proto: BrbSign entities: - - uid: 2223 + - uid: 2224 components: - pos: 27.671656,-37.713814 parent: 2 type: Transform - - uid: 2224 + - uid: 2225 components: - pos: -28.403494,21.398111 parent: 2 type: Transform - proto: BriefcaseBrown entities: - - uid: 2225 + - uid: 2226 components: - pos: 62.36704,-10.4423 parent: 2 type: Transform - - uid: 2226 + - uid: 2227 components: - rot: 1.5707963267948966 rad pos: -22.463455,11.6035385 parent: 2 type: Transform - - uid: 2227 + - uid: 2228 components: - pos: -43.482876,-88.91509 parent: 2 type: Transform - proto: BriefcaseBrownFilled entities: - - uid: 2228 + - uid: 2229 components: - pos: 43.51077,-2.4121785 parent: 2 type: Transform - - uid: 2229 + - uid: 2230 components: - pos: 32.38076,-48.30607 parent: 2 type: Transform - proto: BrigTimer entities: - - uid: 2230 + - uid: 2231 components: - name: cell 3 brig timer type: MetaData @@ -24638,14 +24639,14 @@ entities: - outputs: Start: - port: Close - uid: 30199 + uid: 30206 Timer: - port: AutoClose - uid: 30199 + uid: 30206 - port: Open - uid: 30199 + uid: 30206 type: SignalTransmitter - - uid: 2231 + - uid: 2232 components: - name: cell 1 brig timer type: MetaData @@ -24656,14 +24657,14 @@ entities: - outputs: Start: - port: Close - uid: 30191 + uid: 30198 Timer: - port: AutoClose - uid: 30191 + uid: 30198 - port: Open - uid: 30191 + uid: 30198 type: SignalTransmitter - - uid: 2232 + - uid: 2233 components: - name: cell 2 brig timer type: MetaData @@ -24674,14 +24675,14 @@ entities: - outputs: Start: - port: Close - uid: 30196 + uid: 30203 Timer: - port: AutoClose - uid: 30196 + uid: 30203 - port: Open - uid: 30196 + uid: 30203 type: SignalTransmitter - - uid: 2233 + - uid: 2234 components: - name: cell 4 brig timer type: MetaData @@ -24692,14 +24693,14 @@ entities: - outputs: Start: - port: Close - uid: 30192 + uid: 30199 Timer: - port: AutoClose - uid: 30192 + uid: 30199 - port: Open - uid: 30192 + uid: 30199 type: SignalTransmitter - - uid: 2234 + - uid: 2235 components: - name: cell 5 brig timer type: MetaData @@ -24710,23 +24711,25 @@ entities: - outputs: Start: - port: Close - uid: 30197 + uid: 30204 Timer: - port: AutoClose - uid: 30197 + uid: 30204 - port: Open - uid: 30197 + uid: 30204 type: SignalTransmitter - proto: BrigTimerElectronics entities: - - uid: 2235 + - uid: 2236 components: - pos: -8.633084,38.341637 parent: 2 type: Transform + - nextSound: 251.404285 + type: EmitSoundOnCollide - proto: BrokenBottle entities: - - uid: 2236 + - uid: 2237 components: - rot: -1.5707963267948966 rad pos: -6.571364,-73.41078 @@ -24734,69 +24737,69 @@ entities: type: Transform - proto: Brutepack entities: - - uid: 2237 + - uid: 2238 components: - rot: -1.5707963267948966 rad pos: 4.5876236,-9.851763 parent: 2 type: Transform - - uid: 2238 + - uid: 2239 components: - rot: -1.5707963267948966 rad pos: 4.7438736,-9.898638 parent: 2 type: Transform - - uid: 2239 + - uid: 2240 components: - pos: -9.633343,-56.47309 parent: 2 type: Transform - - uid: 2240 + - uid: 2241 components: - pos: -10.641302,-3.848185 parent: 2 type: Transform - - uid: 2241 + - uid: 2242 components: - pos: -10.266302,-3.785685 parent: 2 type: Transform - - uid: 2242 + - uid: 2243 components: - pos: -0.6646667,-56.50434 parent: 2 type: Transform - - uid: 2243 + - uid: 2244 components: - pos: -3.5865417,-56.488716 parent: 2 type: Transform - - uid: 2244 + - uid: 2245 components: - pos: -6.5713716,-56.519966 parent: 2 type: Transform - - uid: 2245 + - uid: 2246 components: - pos: -12.617692,-56.44184 parent: 2 type: Transform - - uid: 2246 + - uid: 2247 components: - pos: 30.05692,4.5786 parent: 2 type: Transform - - uid: 2247 + - uid: 2248 components: - pos: -6.3699856,-49.096176 parent: 2 type: Transform - - uid: 2248 + - uid: 2249 components: - - pos: -11.479405,-48.501934 + - pos: -6.6512356,-49.408676 parent: 2 type: Transform - - uid: 2249 + - uid: 2250 components: - rot: -1.5707963267948966 rad pos: 47.410034,4.616682 @@ -24804,72 +24807,63 @@ entities: type: Transform - proto: Bucket entities: - - uid: 2250 + - uid: 2251 components: - pos: 2.6959906,11.392093 parent: 2 type: Transform - - uid: 2251 + - uid: 2252 components: - pos: 55.336075,17.733736 parent: 2 type: Transform - - uid: 2252 + - uid: 2253 components: - pos: -29.554869,3.5549593 parent: 2 type: Transform - - uid: 2253 + - uid: 2254 components: - pos: 13.468333,-66.41357 parent: 2 type: Transform - - uid: 2254 + - uid: 2255 components: - pos: 55.53834,27.595942 parent: 2 type: Transform - - uid: 2255 + - uid: 2256 components: - pos: -4.262462,56.45376 parent: 2 type: Transform - - uid: 30716 - components: - - pos: -7.5253143,11.562103 - parent: 2 - type: Transform - - nextAttack: 49.7885232 - type: MeleeWeapon - - nextSound: 49.9885232 - type: EmitSoundOnCollide - - uid: 30717 + - uid: 21449 components: - - pos: -4.5110397,5.5954375 + - pos: -4.167221,5.7952065 parent: 2 type: Transform - - nextAttack: 59.2494659 + - nextAttack: 945.8470447 type: MeleeWeapon - - nextSound: 59.4494659 + - nextSound: 946.0470447 type: EmitSoundOnCollide - - uid: 30718 + - uid: 30704 components: - - pos: -2.4959726,11.545437 + - pos: -4.417221,5.4827065 parent: 2 type: Transform - - nextAttack: 66.4990814 + - nextAttack: 946.4372286 type: MeleeWeapon - - nextSound: 66.6990814 + - nextSound: 946.6372286 type: EmitSoundOnCollide - proto: BulletFoam entities: - - uid: 2256 + - uid: 2257 components: - rot: -1.5707963267948966 rad pos: -11.707516,41.19452 parent: 2 type: Transform - - uid: 2257 + - uid: 2258 components: - rot: 3.141592653589793 rad pos: -11.879391,41.47577 @@ -24877,55877 +24871,41057 @@ entities: type: Transform - proto: CableApcExtension entities: - - uid: 2258 + - uid: 534 components: - - pos: 18.5,-52.5 + - pos: -12.5,-33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2259 components: - - pos: -5.5,1.5 + - pos: 18.5,-52.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures + - enabled: True + type: AmbientSound - uid: 2260 components: - - pos: -7.5,-26.5 + - pos: -5.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 2261 components: - - pos: 33.5,-17.5 + - pos: -7.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 2262 components: - - pos: 15.5,-32.5 + - pos: 33.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 2263 components: - - pos: -10.5,-26.5 + - pos: 15.5,-32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 2264 + components: + - pos: -10.5,-26.5 + parent: 2 + type: Transform + - uid: 2265 components: - pos: 14.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2265 + - uid: 2266 components: - pos: 27.5,-60.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2266 + - uid: 2267 components: - pos: 7.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2267 + - uid: 2268 components: - pos: 7.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2268 + - uid: 2269 components: - pos: 15.5,-18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2269 + - uid: 2270 components: - pos: -47.5,38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2270 + - uid: 2271 components: - pos: 0.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2271 + - uid: 2272 components: - pos: -1.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2272 + - uid: 2273 components: - pos: 15.5,-10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2273 + - uid: 2274 components: - pos: 22.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2274 + - uid: 2275 components: - pos: -4.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2275 + - uid: 2276 components: - pos: 32.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2276 + - uid: 2277 components: - pos: 3.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2277 + - uid: 2278 components: - pos: -6.5,-75.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2278 + - uid: 2279 components: - pos: 32.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2279 + - uid: 2280 components: - pos: 15.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2280 + - uid: 2281 components: - pos: 6.5,-65.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2281 + - uid: 2282 components: - pos: -4.5,-37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2282 + - uid: 2283 components: - pos: 8.5,-17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2283 + - uid: 2284 components: - pos: -12.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2284 + - uid: 2285 components: - pos: 0.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2285 + - uid: 2286 components: - pos: 14.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2286 + - uid: 2287 components: - pos: 15.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2287 + - uid: 2288 components: - pos: 27.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2288 + - uid: 2289 components: - pos: 31.5,-16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2289 + - uid: 2290 components: - pos: 16.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2290 + - uid: 2291 components: - pos: 20.5,-52.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2291 + - uid: 2292 components: - pos: 21.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2292 + - uid: 2293 components: - pos: 15.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2293 + - uid: 2294 components: - pos: 16.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2294 + - uid: 2295 components: - pos: -8.5,3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2295 + - uid: 2296 components: - pos: -5.5,4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2296 + - uid: 2297 components: - pos: 30.5,-62.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2297 + - uid: 2298 components: - pos: 15.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2298 + - uid: 2299 components: - pos: 18.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2299 + - uid: 2300 components: - pos: 20.5,-53.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2300 + - uid: 2301 components: - pos: 6.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2301 + - uid: 2302 components: - pos: 19.5,-52.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2302 + - uid: 2303 components: - pos: 21.5,-8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2303 + - uid: 2304 components: - pos: 25.5,-57.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2304 + - uid: 2305 components: - pos: 15.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2305 + - uid: 2306 components: - pos: -0.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2306 + - uid: 2307 components: - pos: 0.5,10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2307 + - uid: 2308 components: - pos: 5.5,14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2308 + - uid: 2309 components: - pos: -1.5,14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2309 + - uid: 2310 components: - pos: 24.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2310 + - uid: 2311 components: - pos: 32.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2311 + - uid: 2312 components: - pos: 33.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2312 + - uid: 2313 components: - pos: 3.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2313 + - uid: 2314 components: - pos: 1.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2314 + - uid: 2315 components: - pos: 1.5,-7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2315 + - uid: 2316 components: - pos: 10.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2316 + - uid: 2317 components: - pos: -3.5,11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2317 + - uid: 2318 components: - pos: -4.5,6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2318 + - uid: 2319 components: - pos: -8.5,9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2319 + - uid: 2320 components: - pos: -4.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2320 + - uid: 2321 components: - pos: 1.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2321 + - uid: 2322 components: - pos: -1.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2322 + - uid: 2323 components: - pos: -1.5,-50.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2323 + - uid: 2324 components: - pos: 4.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2324 + - uid: 2325 components: - pos: 0.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2325 + - uid: 2326 components: - pos: -15.5,-61.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2326 + - uid: 2327 components: - pos: -6.5,-62.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2327 + - uid: 2328 components: - pos: -8.5,6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2328 + - uid: 2329 components: - pos: -0.5,14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2329 + - uid: 2330 components: - pos: -5.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2330 + - uid: 2331 components: - pos: 36.5,18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2331 + - uid: 2332 components: - pos: 29.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2332 + - uid: 2333 components: - pos: 62.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2333 + - uid: 2334 components: - pos: -1.5,-51.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2334 + - uid: 2335 components: - pos: 6.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2335 + - uid: 2336 components: - pos: -1.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2336 + - uid: 2337 components: - pos: -3.5,-52.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2337 + - uid: 2338 components: - pos: -4.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2338 + - uid: 2339 components: - pos: -7.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2339 + - uid: 2340 components: - pos: -9.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2340 + - uid: 2341 components: - pos: 1.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2341 + - uid: 2342 components: - pos: 2.5,-60.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2342 + - uid: 2343 components: - pos: -13.5,-62.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2343 + - uid: 2344 components: - pos: -14.5,-66.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2344 + - uid: 2345 components: - pos: -15.5,-65.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2345 + - uid: 2346 components: - pos: -15.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2346 + - uid: 2347 components: - pos: 2.5,-70.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2347 + - uid: 2348 components: - pos: 16.5,-29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2348 + - uid: 2349 components: - pos: 1.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2349 + - uid: 2350 components: - pos: 3.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2350 + - uid: 2351 components: - pos: 11.5,-17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2351 + - uid: 2352 components: - pos: 2.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2352 + - uid: 2353 components: - pos: -10.5,-21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2353 + - uid: 2354 components: - pos: -8.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2354 + - uid: 2355 components: - pos: 3.5,-62.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2355 + - uid: 2356 components: - pos: -5.5,-60.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2356 + - uid: 2357 components: - pos: -1.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2357 + - uid: 2358 components: - pos: -2.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2358 + - uid: 2359 components: - pos: 12.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2359 + - uid: 2360 components: - pos: 8.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2360 + - uid: 2361 components: - pos: 4.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2361 + - uid: 2362 components: - pos: -12.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2362 + - uid: 2363 components: - pos: 22.5,-36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2363 + - uid: 2364 components: - pos: -13.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2364 + - uid: 2365 components: - pos: 30.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2365 + - uid: 2366 components: - pos: 22.5,-29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2366 + - uid: 2367 components: - pos: 20.5,-23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2367 + - uid: 2368 components: - pos: 29.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2368 + - uid: 2369 components: - pos: 25.5,-23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2369 + - uid: 2370 components: - pos: 9.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2370 + - uid: 2371 components: - pos: 8.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2371 + - uid: 2372 components: - pos: 8.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2372 + - uid: 2373 components: - pos: 8.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2373 + - uid: 2374 components: - pos: 7.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2374 + - uid: 2375 components: - pos: 7.5,-7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2375 + - uid: 2376 components: - pos: 22.5,-40.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2376 + - uid: 2377 components: - pos: 4.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2377 + - uid: 2378 components: - pos: -6.5,-74.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2378 + - uid: 2379 components: - pos: -8.5,-75.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2379 + - uid: 2380 components: - pos: -10.5,-75.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2380 + - uid: 2381 components: - pos: 10.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2381 + - uid: 2382 components: - pos: 20.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2382 + - uid: 2383 components: - pos: 18.5,-48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2383 + - uid: 2384 components: - pos: 21.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2384 + - uid: 2385 components: - pos: 21.5,-50.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2385 + - uid: 2386 components: - pos: 21.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2386 + - uid: 2387 components: - pos: 23.5,-53.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2387 + - uid: 2388 components: - pos: 25.5,-52.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2388 + - uid: 2389 components: - pos: -4.5,-16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2389 + - uid: 2390 components: - pos: 6.5,8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2390 + - uid: 2391 components: - pos: 46.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2391 + - uid: 2392 components: - pos: 0.5,14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2392 + - uid: 2393 components: - pos: 9.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2393 + - uid: 2394 components: - pos: 18.5,-29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2394 + - uid: 2395 components: - pos: -8.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2395 + - uid: 2396 components: - pos: -4.5,14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2396 + - uid: 2397 components: - pos: -5.5,14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2397 + - uid: 2398 components: - pos: 3.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2398 + - uid: 2399 components: - pos: 26.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2399 + - uid: 2400 components: - pos: -33.5,-70.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2400 + - uid: 2401 components: - pos: -34.5,-70.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2401 + - uid: 2402 components: - pos: -12.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2402 + - uid: 2403 components: - pos: 31.5,-32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2403 + - uid: 2404 components: - pos: 24.5,4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2404 + - uid: 2405 components: - pos: 19.5,-31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2405 + - uid: 2406 components: - pos: -3.5,-74.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2406 + - uid: 2407 components: - pos: 8.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2407 + - uid: 2408 components: - pos: 8.5,-65.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2408 + - uid: 2409 components: - pos: -8.5,-66.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2409 + - uid: 2410 components: - pos: 26.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2410 + - uid: 2411 components: - pos: -9.5,-4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2411 + - uid: 2412 components: - pos: -7.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2412 + - uid: 2413 components: - pos: -12.5,-75.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2413 + - uid: 2414 components: - pos: -8.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2414 + - uid: 2415 components: - pos: -8.5,4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2415 + - uid: 2416 components: - pos: -14.5,-61.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2416 + - uid: 2417 components: - pos: -14.5,-55.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2417 + - uid: 2418 components: - pos: 12.5,-17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2418 + - uid: 2419 components: - pos: 24.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2419 + - uid: 2420 components: - pos: 46.5,-27.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2420 + - uid: 2421 components: - pos: 22.5,-39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2421 + - uid: 2422 components: - pos: 25.5,-39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2422 + - uid: 2423 components: - pos: 50.5,8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2423 + - uid: 2424 components: - pos: 50.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2424 + - uid: 2425 components: - pos: -8.5,13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2425 + - uid: 2426 components: - pos: -16.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2426 + - uid: 2427 components: - pos: -4.5,-40.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2427 + - uid: 2428 components: - pos: 30.5,-72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2428 + - uid: 2429 components: - pos: -9.5,-61.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2429 + - uid: 2430 components: - pos: -13.5,-64.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2430 + - uid: 2431 components: - pos: -16.5,-54.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2431 + - uid: 2432 components: - pos: -17.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2432 + - uid: 2433 components: - pos: -17.5,-55.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2433 + - uid: 2434 components: - pos: -18.5,-55.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2434 + - uid: 2435 components: - pos: -6.5,-64.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2435 + - uid: 2436 components: - pos: -6.5,-65.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2436 + - uid: 2437 components: - pos: -1.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2437 + - uid: 2438 components: - pos: -4.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2438 + - uid: 2439 components: - pos: 25.5,-14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2439 + - uid: 2440 components: - pos: 25.5,-7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2440 + - uid: 2441 components: - pos: 24.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2441 + - uid: 2442 components: - pos: 18.5,-12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2442 + - uid: 2443 components: - pos: 35.5,-40.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2443 + - uid: 2444 components: - pos: 17.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2444 + - uid: 2445 components: - pos: 9.5,-17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2445 + - uid: 2446 components: - pos: 15.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2446 + - uid: 2447 components: - pos: 14.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2447 + - uid: 2448 components: - pos: 14.5,-27.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2448 + - uid: 2449 components: - pos: 13.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2449 + - uid: 2450 components: - pos: -5.5,-73.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2450 + - uid: 2451 components: - pos: 8.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2451 + - uid: 2452 components: - pos: -2.5,-74.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2452 + - uid: 2453 components: - pos: 11.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2453 + - uid: 2454 components: - pos: 3.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2454 + - uid: 2455 components: - pos: -7.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2455 + - uid: 2456 components: - pos: -8.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2456 + - uid: 2457 components: - pos: -1.5,-75.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2457 + - uid: 2458 components: - pos: -3.5,8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2458 + - uid: 2459 components: - pos: -3.5,10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2459 + - uid: 2460 components: - pos: 28.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2460 + - uid: 2461 components: - pos: 32.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2461 + - uid: 2462 components: - pos: 32.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2462 + - uid: 2463 components: - pos: 1.5,-9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2463 + - uid: 2464 components: - pos: 2.5,8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2464 + - uid: 2465 components: - pos: 61.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2465 + - uid: 2466 components: - pos: 21.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2466 + - uid: 2467 components: - pos: 20.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2467 + - uid: 2468 components: - pos: -0.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2468 + - uid: 2469 components: - pos: 20.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2469 + - uid: 2470 components: - pos: 22.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2470 + - uid: 2471 components: - pos: 23.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2471 + - uid: 2472 components: - pos: 25.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2472 + - uid: 2473 components: - pos: 25.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2473 + - uid: 2474 components: - pos: 25.5,-12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2474 + - uid: 2475 components: - pos: 25.5,-8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2475 + - uid: 2476 components: - pos: 24.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2476 + - uid: 2477 components: - pos: 5.5,-60.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2477 + - uid: 2478 components: - pos: 5.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2478 + - uid: 2479 components: - pos: 2.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2479 + - uid: 2480 components: - pos: -14.5,-60.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2480 + - uid: 2481 components: - pos: -8.5,-65.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2481 + - uid: 2482 components: - pos: -7.5,-65.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2482 + - uid: 2483 components: - pos: -6.5,-60.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2483 + - uid: 2484 components: - pos: -3.5,-60.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2484 + - uid: 2485 components: - pos: -2.5,-60.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2485 + - uid: 2486 components: - pos: -0.5,-60.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2486 + - uid: 2487 components: - pos: 3.5,-63.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2487 + - uid: 2488 components: - pos: 3.5,-61.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2488 + - uid: 2489 components: - pos: 10.5,-17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2489 + - uid: 2490 components: - pos: 10.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2490 + - uid: 2491 components: - pos: 11.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2491 + - uid: 2492 components: - pos: 13.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2492 + - uid: 2493 components: - pos: 14.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2493 + - uid: 2494 components: - pos: 15.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2494 + - uid: 2495 components: - pos: 15.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2495 + - uid: 2496 components: - pos: 15.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2496 + - uid: 2497 components: - pos: 14.5,-2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2497 + - uid: 2498 components: - pos: -19.5,-56.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2498 + - uid: 2499 components: - pos: -19.5,-55.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2499 + - uid: 2500 components: - pos: 14.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2500 + - uid: 2501 components: - pos: 14.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2501 + - uid: 2502 components: - pos: 20.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2502 + - uid: 2503 components: - pos: -41.5,25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2503 + - uid: 2504 components: - pos: 32.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2504 + - uid: 2505 components: - pos: 14.5,-5.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2505 + - uid: 2506 components: - pos: -0.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2506 + - uid: 2507 components: - pos: 12.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2507 + - uid: 2508 components: - pos: -3.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2508 + - uid: 2509 components: - pos: -4.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2509 + - uid: 2510 components: - pos: -5.5,-70.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2510 + - uid: 2511 components: - pos: -1.5,-77.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2511 + - uid: 2512 components: - pos: -0.5,-69.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2512 + - uid: 2513 components: - pos: 10.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2513 + - uid: 2514 components: - pos: -5.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2514 + - uid: 2515 components: - pos: -14.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2515 + - uid: 2516 components: - pos: -13.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2516 + - uid: 2517 components: - pos: -10.5,-61.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2517 + - uid: 2518 components: - pos: -4.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2518 + - uid: 2519 components: - pos: 62.5,-9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2519 + - uid: 2520 components: - pos: 62.5,-7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2520 + - uid: 2521 components: - pos: 8.5,-8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2521 + - uid: 2522 components: - pos: 8.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2522 + - uid: 2523 components: - pos: 24.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2523 + - uid: 2524 components: - pos: 1.5,9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2524 + - uid: 2525 components: - pos: 2.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2525 + - uid: 2526 components: - pos: 22.5,-32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2526 + - uid: 2527 components: - pos: -15.5,-21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2527 + - uid: 2528 components: - pos: -2.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2528 + - uid: 2529 components: - pos: -9.5,10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2529 + - uid: 2530 components: - pos: 18.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2530 + - uid: 2531 components: - pos: 21.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2531 + - uid: 2532 components: - pos: -4.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2532 + - uid: 2533 components: - pos: 27.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2533 + - uid: 2534 components: - pos: 6.5,15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2534 + - uid: 2535 components: - pos: 5.5,15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2535 + - uid: 2536 components: - pos: 0.5,12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2536 + - uid: 2537 components: - pos: 5.5,12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2537 + - uid: 2538 components: - pos: 5.5,13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2538 + - uid: 2539 components: - pos: 21.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2539 + - uid: 2540 components: - pos: 32.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2540 + - uid: 2541 components: - pos: 1.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2541 + - uid: 2542 components: - pos: 13.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2542 + - uid: 2543 components: - pos: 13.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2543 + - uid: 2544 components: - pos: 12.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2544 + - uid: 2545 components: - pos: -13.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2545 + - uid: 2546 components: - pos: -14.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2546 + - uid: 2547 components: - pos: -2.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2547 + - uid: 2548 components: - pos: 27.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2548 + - uid: 2549 components: - pos: -2.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2549 + - uid: 2550 components: - pos: -3.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2550 + - uid: 2551 components: - pos: 29.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2551 + - uid: 2552 components: - pos: 15.5,-40.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2552 + - uid: 2553 components: - pos: 11.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2553 + - uid: 2554 components: - pos: 9.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2554 + - uid: 2555 components: - pos: 13.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2555 + - uid: 2556 components: - pos: 17.5,-54.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2556 + - uid: 2557 components: - pos: 34.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2557 + - uid: 2558 components: - pos: 36.5,-40.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2558 + - uid: 2559 components: - pos: 34.5,-40.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2559 + - uid: 2560 components: - pos: 12.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2560 + - uid: 2561 components: - pos: 11.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2561 + - uid: 2562 components: - pos: 1.5,-4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2562 + - uid: 2563 components: - pos: 4.5,5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2563 + - uid: 2564 components: - pos: 7.5,-17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2564 + - uid: 2565 components: - pos: 1.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2565 + - uid: 2566 components: - pos: 1.5,8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2566 + - uid: 2567 components: - pos: 3.5,8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2567 + - uid: 2568 components: - pos: -3.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2568 + - uid: 2569 components: - pos: -1.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2569 + - uid: 2570 components: - pos: -2.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2570 + - uid: 2571 components: - pos: -0.5,6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2571 + - uid: 2572 components: - pos: -0.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2572 + - uid: 2573 components: - pos: 0.5,6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2573 + - uid: 2574 components: - pos: 0.5,11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2574 + - uid: 2575 components: - pos: 0.5,13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2575 + - uid: 2576 components: - pos: 0.5,9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2576 + - uid: 2577 components: - pos: -8.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2577 + - uid: 2578 components: - pos: -7.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2578 + - uid: 2579 components: - pos: -6.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2579 + - uid: 2580 components: - pos: -5.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2580 + - uid: 2581 components: - pos: 2.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2581 + - uid: 2582 components: - pos: 10.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2582 + - uid: 2583 components: - pos: 7.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2583 + - uid: 2584 components: - pos: 8.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2584 + - uid: 2585 components: - pos: 2.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2585 + - uid: 2586 components: - pos: 10.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2586 + - uid: 2587 components: - pos: 42.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2587 + - uid: 2588 components: - pos: -8.5,-50.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2588 + - uid: 2589 components: - pos: 5.5,8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2589 + - uid: 2590 components: - pos: -8.5,-51.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2590 + - uid: 2591 components: - pos: -8.5,-52.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2591 + - uid: 2592 components: - pos: -7.5,-52.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2592 + - uid: 2593 components: - pos: -7.5,-53.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2593 + - uid: 2594 components: - pos: 6.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2594 + - uid: 2595 components: - pos: 31.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2595 + - uid: 2596 components: - pos: 32.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2596 + - uid: 2597 components: - pos: -4.5,-20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2597 + - uid: 2598 components: - pos: 5.5,11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2598 + - uid: 2599 components: - pos: 5.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2599 + - uid: 2600 components: - pos: 26.5,-39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2600 + - uid: 2601 components: - pos: 32.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2601 + - uid: 2602 components: - pos: 33.5,-40.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2602 + - uid: 2603 components: - pos: 34.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2603 + - uid: 2604 components: - pos: 0.5,-4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2604 + - uid: 2605 components: - pos: 23.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2605 + - uid: 2606 components: - pos: 21.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2606 + - uid: 2607 components: - pos: 8.5,-9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2607 + - uid: 2608 components: - pos: -20.5,-87.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2608 + - uid: 2609 components: - pos: 23.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2609 + - uid: 2610 components: - pos: -2.5,14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2610 + - uid: 2611 components: - pos: -3.5,14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2611 + - uid: 2612 components: - pos: 32.5,17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2612 + - uid: 2613 components: - pos: 27.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2613 + - uid: 2614 components: - pos: 28.5,-39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2614 + - uid: 2615 components: - pos: 26.5,-32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2615 + - uid: 2616 components: - pos: 25.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2616 + - uid: 2617 components: - pos: 27.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2617 + - uid: 2618 components: - pos: 35.5,-38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2618 + - uid: 2619 components: - pos: 35.5,-39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2619 + - uid: 2620 components: - pos: 23.5,-32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2620 + - uid: 2621 components: - pos: 20.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2621 + - uid: 2622 components: - pos: -7.5,-7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2622 + - uid: 2623 components: - pos: 16.5,-32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2623 + - uid: 2624 components: - pos: 1.5,10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2624 + - uid: 2625 components: - pos: -15.5,25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2625 + - uid: 2626 components: - pos: 7.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2626 + - uid: 2627 components: - pos: 55.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2627 + - uid: 2628 components: - pos: 32.5,-4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2628 + - uid: 2629 components: - pos: 26.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2629 + - uid: 2630 components: - pos: 25.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2630 + - uid: 2631 components: - pos: 24.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2631 + - uid: 2632 components: - pos: 23.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2632 + - uid: 2633 components: - pos: 21.5,-24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2633 + - uid: 2634 components: - pos: 21.5,-23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2634 + - uid: 2635 components: - pos: 21.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2635 + - uid: 2636 components: - pos: 26.5,-23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2636 + - uid: 2637 components: - pos: 27.5,-23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2637 + - uid: 2638 components: - pos: 28.5,-29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2638 + - uid: 2639 components: - pos: 27.5,-29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2639 + - uid: 2640 components: - pos: 27.5,-30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2640 + - uid: 2641 components: - pos: 27.5,-33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2641 + - uid: 2642 components: - pos: 27.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2642 + - uid: 2643 components: - pos: 28.5,-35.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2643 + - uid: 2644 components: - pos: 28.5,-36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2644 + - uid: 2645 components: - pos: 27.5,-36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2645 + - uid: 2646 components: - pos: 26.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2646 + - uid: 2647 components: - pos: 25.5,-30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2647 + - uid: 2648 components: - pos: 24.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2648 + - uid: 2649 components: - pos: 23.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2649 + - uid: 2650 components: - pos: 22.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2650 + - uid: 2651 components: - pos: 22.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2651 + - uid: 2652 components: - pos: 6.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2652 + - uid: 2653 components: - pos: 5.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2653 + - uid: 2654 components: - pos: 4.5,-3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2654 + - uid: 2655 components: - pos: 8.5,-4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2655 + - uid: 2656 components: - pos: 12.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2656 + - uid: 2657 components: - pos: 12.5,-9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2657 + - uid: 2658 components: - pos: -10.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2658 + - uid: 2659 components: - pos: -15.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2659 + - uid: 2660 components: - pos: -24.5,-16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2660 + - uid: 2661 components: - pos: -24.5,-15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2661 + - uid: 2662 components: - pos: -1.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2662 + - uid: 2663 components: - pos: 23.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2663 + - uid: 2664 components: - pos: 25.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2664 + - uid: 2665 components: - pos: 25.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2665 + - uid: 2666 components: - pos: 25.5,-9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2666 + - uid: 2667 components: - pos: 21.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2667 + - uid: 2668 components: - pos: 20.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2668 + - uid: 2669 components: - pos: 26.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2669 + - uid: 2670 components: - pos: 27.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2670 + - uid: 2671 components: - pos: 28.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2671 + - uid: 2672 components: - pos: 29.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2672 + - uid: 2673 components: - pos: 30.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2673 + - uid: 2674 components: - pos: 30.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2674 + - uid: 2675 components: - pos: 29.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2675 + - uid: 2676 components: - pos: 8.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2676 + - uid: 2677 components: - pos: 8.5,-2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2677 + - uid: 2678 components: - pos: 8.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2678 + - uid: 2679 components: - pos: 7.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2679 + - uid: 2680 components: - pos: 6.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2680 + - uid: 2681 components: - pos: 5.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2681 + - uid: 2682 components: - pos: 4.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2682 + - uid: 2683 components: - pos: 4.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2683 + - uid: 2684 components: - pos: 2.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2684 + - uid: 2685 components: - pos: 0.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2685 + - uid: 2686 components: - pos: -0.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2686 + - uid: 2687 components: - pos: -0.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2687 + - uid: 2688 components: - pos: 0.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2688 + - uid: 2689 components: - pos: 1.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2689 + - uid: 2690 components: - pos: 3.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2690 + - uid: 2691 components: - pos: 4.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2691 + - uid: 2692 components: - pos: 5.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2692 + - uid: 2693 components: - pos: 6.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2693 + - uid: 2694 components: - pos: 7.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2694 + - uid: 2695 components: - pos: 11.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2695 + - uid: 2696 components: - pos: -2.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2696 + - uid: 2697 components: - pos: -1.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2697 + - uid: 2698 components: - pos: -0.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2698 + - uid: 2699 components: - pos: 2.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2699 + - uid: 2700 components: - pos: 4.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2700 + - uid: 2701 components: - pos: -1.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2701 + - uid: 2702 components: - pos: -6.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2702 + - uid: 2703 components: - pos: -3.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2703 + - uid: 2704 components: - pos: -5.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2704 + - uid: 2705 components: - pos: -6.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2705 + - uid: 2706 components: - pos: -8.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2706 + - uid: 2707 components: - pos: -10.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2707 + - uid: 2708 components: - pos: -11.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2708 + - uid: 2709 components: - pos: 3.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2709 + - uid: 2710 components: - pos: 5.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2710 + - uid: 2711 components: - pos: 5.5,-57.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2711 + - uid: 2712 components: - pos: 5.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2712 + - uid: 2713 components: - pos: 5.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2713 + - uid: 2714 components: - pos: 6.5,-60.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2714 + - uid: 2715 components: - pos: 7.5,-60.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2715 + - uid: 2716 components: - pos: 4.5,-60.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2716 + - uid: 2717 components: - pos: 1.5,-60.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2717 + - uid: 2718 components: - pos: 0.5,-60.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2718 + - uid: 2719 components: - pos: -1.5,-61.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2719 + - uid: 2720 components: - pos: -1.5,-62.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2720 + - uid: 2721 components: - pos: -1.5,-64.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2721 + - uid: 2722 components: - pos: -7.5,-61.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2722 + - uid: 2723 components: - pos: -6.5,-61.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2723 + - uid: 2724 components: - pos: -11.5,-75.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2724 + - uid: 2725 components: - pos: -11.5,-61.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2725 + - uid: 2726 components: - pos: -12.5,-61.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2726 + - uid: 2727 components: - pos: -13.5,-61.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2727 + - uid: 2728 components: - pos: -13.5,-63.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2728 + - uid: 2729 components: - pos: -13.5,-65.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2729 + - uid: 2730 components: - pos: -13.5,-66.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2730 + - uid: 2731 components: - pos: -15.5,-64.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2731 + - uid: 2732 components: - pos: -21.5,-68.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2732 + - uid: 2733 components: - pos: -21.5,-69.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2733 + - uid: 2734 components: - pos: -21.5,-70.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2734 + - uid: 2735 components: - pos: -20.5,-70.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2735 + - uid: 2736 components: - pos: -19.5,-70.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2736 + - uid: 2737 components: - pos: -19.5,-69.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2737 + - uid: 2738 components: - pos: -19.5,-68.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2738 + - uid: 2739 components: - pos: -19.5,-72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2739 + - uid: 2740 components: - pos: -19.5,-73.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2740 + - uid: 2741 components: - pos: -18.5,-74.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2741 + - uid: 2742 components: - pos: -18.5,-76.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2742 + - uid: 2743 components: - pos: -18.5,-77.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2743 + - uid: 2744 components: - pos: -17.5,-77.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2744 + - uid: 2745 components: - pos: -19.5,-77.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2745 + - uid: 2746 components: - pos: -20.5,-85.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2746 + - uid: 2747 components: - pos: -25.5,-87.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2747 + - uid: 2748 components: - pos: -25.5,-88.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2748 + - uid: 2749 components: - pos: 22.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2749 + - uid: 2750 components: - pos: 8.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2750 + - uid: 2751 components: - pos: -7.5,-75.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2751 + - uid: 2752 components: - pos: 17.5,-32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2752 + - uid: 2753 components: - pos: -8.5,8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2753 + - uid: 2754 components: - pos: -8.5,10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2754 + - uid: 2755 components: - pos: -8.5,5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2755 + - uid: 2756 components: - pos: -3.5,9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2756 + - uid: 2757 components: - pos: 5.5,9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2757 + - uid: 2758 components: - pos: 9.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2758 + - uid: 2759 components: - pos: 1.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2759 + - uid: 2760 components: - pos: 1.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2760 + - uid: 2761 components: - pos: 32.5,16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2761 + - uid: 2762 components: - pos: 0.5,8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2762 + - uid: 2763 components: - pos: 0.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2763 + - uid: 2764 components: - pos: -0.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2764 + - uid: 2765 components: - pos: -8.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2765 + - uid: 2766 components: - pos: 1.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2766 + - uid: 2767 components: - pos: 6.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2767 + - uid: 2768 components: - pos: 7.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2768 + - uid: 2769 components: - pos: 12.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2769 + - uid: 2770 components: - pos: 14.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2770 + - uid: 2771 components: - pos: -7.5,13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2771 + - uid: 2772 components: - pos: 17.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2772 + - uid: 2773 components: - pos: 27.5,4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2773 + - uid: 2774 components: - pos: 27.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2774 + - uid: 2775 components: - pos: 25.5,4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2775 + - uid: 2776 components: - pos: 21.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2776 + - uid: 2777 components: - pos: 23.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2777 + - uid: 2778 components: - pos: 26.5,4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2778 + - uid: 2779 components: - pos: -4.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2779 + - uid: 2780 components: - pos: -20.5,-86.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2780 + - uid: 2781 components: - pos: 20.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2781 + - uid: 2782 components: - pos: -18.5,-60.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2782 + - uid: 2783 components: - pos: 8.5,-56.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2783 + - uid: 2784 components: - pos: -4.5,-60.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2784 + - uid: 2785 components: - pos: -1.5,-65.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2785 + - uid: 2786 components: - pos: -1.5,-60.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2786 + - uid: 2787 components: - pos: 3.5,-60.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2787 + - uid: 2788 components: - pos: -3.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2788 + - uid: 2789 components: - pos: 3.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2789 + - uid: 2790 components: - pos: 5.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2790 + - uid: 2791 components: - pos: 6.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2791 + - uid: 2792 components: - pos: -4.5,-50.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2792 + - uid: 2793 components: - pos: -4.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2793 + - uid: 2794 components: - pos: -6.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2794 + - uid: 2795 components: - pos: 22.5,-24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2795 + - uid: 2796 components: - pos: -6.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2796 + - uid: 2797 components: - pos: -9.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2797 + - uid: 2798 components: - pos: 10.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2798 + - uid: 2799 components: - pos: 16.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2799 + - uid: 2800 components: - pos: 14.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2800 + - uid: 2801 components: - pos: 25.5,-50.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2801 + - uid: 2802 components: - pos: 25.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2802 + - uid: 2803 components: - pos: 25.5,-55.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2803 + - uid: 2804 components: - pos: 25.5,-56.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2804 + - uid: 2805 components: - pos: -4.5,-14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2805 + - uid: 2806 components: - pos: -4.5,-18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2806 + - uid: 2807 components: - pos: 59.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2807 + - uid: 2808 components: - pos: 46.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2808 + - uid: 2809 components: - pos: 46.5,-24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2809 + - uid: 2810 components: - pos: 46.5,-29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2810 + - uid: 2811 components: - pos: 46.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2811 + - uid: 2812 components: - pos: 45.5,-27.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2812 + - uid: 2813 components: - pos: 43.5,-27.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2813 + - uid: 2814 components: - pos: 44.5,-27.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2814 + - uid: 2815 components: - pos: 43.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2815 + - uid: 2816 components: - pos: 5.5,10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2816 + - uid: 2817 components: - pos: 5.5,8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2817 + - uid: 2818 components: - pos: 10.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2818 + - uid: 2819 components: - pos: -18.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2819 + - uid: 2820 components: - pos: -4.5,-21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2820 + - uid: 2821 components: - pos: 17.5,-29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2821 + - uid: 2822 components: - pos: 24.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2822 + - uid: 2823 components: - pos: -6.5,14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2823 + - uid: 2824 components: - pos: -6.5,13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2824 + - uid: 2825 components: - pos: 24.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2825 + - uid: 2826 components: - pos: 27.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2826 + - uid: 2827 components: - pos: 25.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2827 + - uid: 2828 components: - pos: 28.5,-23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2828 + - uid: 2829 components: - pos: 29.5,-23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2829 + - uid: 2830 components: - pos: 30.5,-23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2830 + - uid: 2831 components: - pos: 28.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2831 + - uid: 2832 components: - pos: 7.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2832 + - uid: 2833 components: - pos: 25.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2833 + - uid: 2834 components: - pos: -16.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2834 + - uid: 2835 components: - pos: -13.5,-53.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2835 + - uid: 2836 components: - pos: 24.5,3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2836 + - uid: 2837 components: - pos: 7.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2837 + - uid: 2838 components: - pos: -13.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2838 + - uid: 2839 components: - pos: -7.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2839 + - uid: 2840 components: - pos: -29.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2840 + - uid: 2841 components: - pos: 18.5,-40.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2841 + - uid: 2842 components: - pos: -39.5,-68.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2842 + - uid: 2843 components: - pos: -36.5,-70.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2843 + - uid: 2844 components: - pos: 41.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2844 + - uid: 2845 components: - pos: -35.5,-70.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2845 + - uid: 2846 components: - pos: -37.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2846 + - uid: 2847 components: - pos: -9.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2847 + - uid: 2848 components: - pos: 12.5,-8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2848 + - uid: 2849 components: - pos: 8.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2849 + - uid: 2850 components: - pos: 3.5,-3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2850 + - uid: 2851 components: - pos: -8.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2851 + - uid: 2852 components: - pos: -11.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2852 + - uid: 2853 components: - pos: -15.5,-66.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2853 + - uid: 2854 components: - pos: -4.5,-12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2854 + - uid: 2855 components: - pos: 2.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2855 + - uid: 2856 components: - pos: 22.5,-32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2856 + - uid: 2857 components: - pos: -47.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2857 + - uid: 2858 components: - pos: -10.5,-19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2858 + - uid: 2859 components: - pos: 29.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2859 + - uid: 2860 components: - pos: 67.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2860 + - uid: 2861 components: - pos: 25.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2861 + - uid: 2862 components: - pos: -5.5,-72.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2862 + - uid: 2863 components: - pos: -7.5,10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2863 + - uid: 2864 components: - pos: 15.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2864 + - uid: 2865 components: - pos: 2.5,-68.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2865 + - uid: 2866 components: - pos: 7.5,-70.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2866 + - uid: 2867 components: - pos: -2.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2867 + - uid: 2868 components: - pos: 12.5,-7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2868 + - uid: 2869 components: - pos: 15.5,-39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2869 + - uid: 2870 components: - pos: 29.5,-60.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2870 + - uid: 2871 components: - pos: 30.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2871 + - uid: 2872 components: - pos: 3.5,-67.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2872 + - uid: 2873 components: - pos: 15.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2873 + - uid: 2874 components: - pos: 17.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2874 + - uid: 2875 components: - pos: -3.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2875 + - uid: 2876 components: - pos: 1.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2876 + - uid: 2877 components: - pos: -8.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2877 + - uid: 2878 components: - pos: -4.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2878 + - uid: 2879 components: - pos: 8.5,-70.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2879 + - uid: 2880 components: - pos: 30.5,-61.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2880 + - uid: 2881 components: - pos: -16.5,-21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2881 + - uid: 2882 components: - pos: -4.5,-24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2882 + - uid: 2883 components: - pos: -4.5,-23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2883 + - uid: 2884 components: - pos: -4.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2884 + - uid: 2885 components: - pos: -4.5,-29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2885 + - uid: 2886 components: - pos: -4.5,-31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2886 + - uid: 2887 components: - pos: -9.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2887 + - uid: 2888 components: - pos: -11.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2888 + - uid: 2889 components: - pos: -15.5,-20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2889 + - uid: 2890 components: - pos: -15.5,-19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2890 + - uid: 2891 components: - pos: -15.5,-16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2891 + - uid: 2892 components: - pos: 46.5,-23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2892 + - uid: 2893 components: - pos: 1.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2893 + - uid: 2894 components: - pos: 30.5,-60.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2894 + - uid: 2895 components: - pos: 9.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2895 + - uid: 2896 components: - pos: 38.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2896 + - uid: 2897 components: - pos: 41.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2897 + - uid: 2898 components: - pos: 14.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2898 + - uid: 2899 components: - pos: 24.5,-53.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2899 + - uid: 2900 components: - pos: 25.5,-51.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2900 + - uid: 2901 components: - pos: -3.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2901 + - uid: 2902 components: - pos: -9.5,-75.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2902 + - uid: 2903 components: - pos: 24.5,-39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2903 + - uid: 2904 components: - pos: 25.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2904 + - uid: 2905 components: - pos: 3.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2905 + - uid: 2906 components: - pos: 2.5,-67.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2906 + - uid: 2907 components: - pos: 1.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2907 + - uid: 2908 components: - pos: -5.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2908 + - uid: 2909 components: - pos: 25.5,-58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2909 + - uid: 2910 components: - pos: 25.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2910 + - uid: 2911 components: - pos: 26.5,-60.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2911 + - uid: 2912 components: - pos: 28.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2912 + - uid: 2913 components: - pos: 8.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2913 + - uid: 2914 components: - pos: 19.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2914 + - uid: 2915 components: - pos: 25.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2915 + - uid: 2916 components: - pos: -1.5,-74.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2916 + - uid: 2917 components: - pos: 30.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2917 + - uid: 2918 components: - pos: -1.5,-76.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2918 + - uid: 2919 components: - pos: -5.5,-74.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2919 + - uid: 2920 components: - pos: -5.5,-71.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2920 + - uid: 2921 components: - pos: 31.5,2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2921 + - uid: 2922 components: - pos: 19.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2922 + - uid: 2923 components: - pos: 44.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2923 + - uid: 2924 components: - pos: 4.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2924 + - uid: 2925 components: - pos: -17.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2925 + - uid: 2926 components: - pos: 10.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2926 + - uid: 2927 components: - pos: -14.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2927 + - uid: 2928 components: - pos: -12.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2928 + - uid: 2929 components: - pos: -13.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2929 + - uid: 2930 components: - pos: -13.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2930 + - uid: 2931 components: - pos: -13.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2931 + - uid: 2932 components: - pos: -12.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2932 + - uid: 2933 components: - pos: -10.5,-18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2933 + - uid: 2934 components: - pos: 21.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2934 + - uid: 2935 components: - pos: 20.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2935 + - uid: 2936 components: - pos: 20.5,-12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2936 + - uid: 2937 components: - pos: 22.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2937 + - uid: 2938 components: - pos: 19.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2938 + - uid: 2939 components: - pos: 22.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2939 + - uid: 2940 components: - pos: 62.5,-8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2940 + - uid: 2941 components: - pos: -3.5,-53.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2941 + - uid: 2942 components: - pos: -14.5,-58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2942 + - uid: 2943 components: - pos: 8.5,-60.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2943 + - uid: 2944 components: - pos: -8.5,-61.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2944 + - uid: 2945 components: - pos: -20.5,-88.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2945 + - uid: 2946 components: - pos: 28.5,-60.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2946 + - uid: 2947 components: - pos: -8.5,-24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2947 + - uid: 2948 components: - pos: -4.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2948 + - uid: 2949 components: - pos: 8.5,-54.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2949 + - uid: 2950 components: - pos: 8.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2950 + - uid: 2951 components: - pos: -17.5,-61.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2951 + - uid: 2952 components: - pos: -18.5,-61.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2952 + - uid: 2953 components: - pos: 20.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2953 + - uid: 2954 components: - pos: -12.5,-74.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2954 + - uid: 2955 components: - pos: 40.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2955 + - uid: 2956 components: - pos: 31.5,-62.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2956 + - uid: 2957 components: - pos: 22.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2957 + - uid: 2958 components: - pos: 25.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2958 + - uid: 2959 components: - pos: 5.5,-70.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2959 + - uid: 2960 components: - pos: 4.5,8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2960 + - uid: 2961 components: - pos: -31.5,30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2961 + - uid: 2962 components: - pos: 15.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2962 + - uid: 2963 components: - pos: 20.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2963 + - uid: 2964 components: - pos: -8.5,-23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2964 + - uid: 2965 components: - pos: 25.5,-60.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2965 + - uid: 2966 components: - pos: -1.5,-69.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2966 + - uid: 2967 components: - pos: 19.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2967 + - uid: 2968 components: - pos: -1.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2968 + - uid: 2969 components: - pos: -41.5,28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2969 + - uid: 2970 components: - pos: -37.5,-68.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2970 + - uid: 2971 components: - pos: 1.5,6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2971 + - uid: 2972 components: - pos: 0.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2972 + - uid: 2973 components: - pos: -10.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2973 + - uid: 2974 components: - pos: 4.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2974 + - uid: 2975 components: - pos: -8.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2975 + - uid: 2976 components: - pos: 17.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2976 + - uid: 2977 components: - pos: 18.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2977 + - uid: 2978 components: - pos: -6.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2978 + - uid: 2979 components: - pos: 24.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2979 + - uid: 2980 components: - pos: 14.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2980 + - uid: 2981 components: - pos: 17.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2981 + - uid: 2982 components: - pos: 17.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2982 + - uid: 2983 components: - pos: 15.5,-48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2983 + - uid: 2984 components: - pos: 4.5,-70.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2984 + - uid: 2985 components: - pos: 28.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2985 + - uid: 2986 components: - pos: 25.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2986 + - uid: 2987 components: - pos: -1.5,-71.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2987 + - uid: 2988 components: - pos: -6.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2988 + - uid: 2989 components: - pos: 15.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2989 + - uid: 2990 components: - pos: -2.5,11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2990 + - uid: 2991 components: - pos: 2.5,-4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2991 + - uid: 2992 components: - pos: 4.5,6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2992 + - uid: 2993 components: - pos: 46.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 2993 + - uid: 2994 components: - pos: 15.5,-35.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2994 + - uid: 2995 components: - pos: 15.5,-36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2995 + - uid: 2996 components: - pos: 20.5,-14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2996 + - uid: 2997 components: - pos: 20.5,-15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2997 + - uid: 2998 components: - pos: 20.5,-16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2998 + - uid: 2999 components: - pos: 20.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2999 + - uid: 3000 components: - pos: 19.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3000 + - uid: 3001 components: - pos: 17.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3001 + - uid: 3002 components: - pos: 23.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3002 + - uid: 3003 components: - pos: 25.5,-18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3003 + - uid: 3004 components: - pos: 27.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3004 + - uid: 3005 components: - pos: 27.5,-18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3005 + - uid: 3006 components: - pos: 23.5,-18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3006 + - uid: 3007 components: - pos: 28.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3007 + - uid: 3008 components: - pos: 29.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3008 + - uid: 3009 components: - pos: 30.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3009 + - uid: 3010 components: - pos: 30.5,-16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3010 + - uid: 3011 components: - pos: 32.5,-16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3011 + - uid: 3012 components: - pos: 32.5,-15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3012 + - uid: 3013 components: - pos: 32.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3013 + - uid: 3014 components: - pos: 32.5,-12.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3014 + - uid: 3015 components: - pos: 32.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3015 + - uid: 3016 components: - pos: 34.5,-18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3016 + - uid: 3017 components: - pos: 20.5,-8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3017 + - uid: 3018 components: - pos: 19.5,-8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3018 + - uid: 3019 components: - pos: 17.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3019 + - uid: 3020 components: - pos: 15.5,-8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3020 + - uid: 3021 components: - pos: 14.5,-7.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3021 + - uid: 3022 components: - pos: 9.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3022 + - uid: 3023 components: - pos: 26.5,-14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3023 + - uid: 3024 components: - pos: 29.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3024 + - uid: 3025 components: - pos: 27.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3025 + - uid: 3026 components: - pos: 30.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3026 + - uid: 3027 components: - pos: 31.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3027 + - uid: 3028 components: - pos: -4.5,-15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3028 + - uid: 3029 components: - pos: -15.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3029 + - uid: 3030 components: - pos: -12.5,-73.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3030 + - uid: 3031 components: - pos: -4.5,-19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3031 + - uid: 3032 components: - pos: -1.5,-63.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3032 + - uid: 3033 components: - pos: -7.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3033 + - uid: 3034 components: - pos: 25.5,-24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3034 + - uid: 3035 components: - pos: 23.5,-23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3035 + - uid: 3036 components: - pos: 20.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3036 + - uid: 3037 components: - pos: 30.5,-24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3037 + - uid: 3038 components: - pos: -8.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3038 + - uid: 3039 components: - pos: 27.5,-31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3039 + - uid: 3040 components: - pos: 22.5,-35.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3040 + - uid: 3041 components: - pos: 22.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3041 + - uid: 3042 components: - pos: 22.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3042 + - uid: 3043 components: - pos: 22.5,-31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3043 + - uid: 3044 components: - pos: -7.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3044 + - uid: 3045 components: - pos: -5.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3045 + - uid: 3046 components: - pos: -4.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3046 + - uid: 3047 components: - pos: -3.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3047 + - uid: 3048 components: - pos: 5.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3048 + - uid: 3049 components: - pos: 6.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3049 + - uid: 3050 components: - pos: -12.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3050 + - uid: 3051 components: - pos: 19.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3051 + - uid: 3052 components: - pos: -2.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3052 + - uid: 3053 components: - pos: -4.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3053 + - uid: 3054 components: - pos: -6.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3054 + - uid: 3055 components: - pos: -7.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3055 + - uid: 3056 components: - pos: -8.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3056 + - uid: 3057 components: - pos: -9.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3057 + - uid: 3058 components: - pos: -10.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3058 + - uid: 3059 components: - pos: -11.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3059 + - uid: 3060 components: - pos: -12.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3060 + - uid: 3061 components: - pos: 1.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3061 + - uid: 3062 components: - pos: 2.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3062 + - uid: 3063 components: - pos: 3.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3063 + - uid: 3064 components: - pos: 5.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3064 + - uid: 3065 components: - pos: 5.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3065 + - uid: 3066 components: - pos: -4.5,-38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3066 + - uid: 3067 components: - pos: -4.5,-36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3067 + - uid: 3068 components: - pos: -4.5,-35.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3068 + - uid: 3069 components: - pos: -4.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3069 + - uid: 3070 components: - pos: -12.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3070 + - uid: 3071 components: - pos: -12.5,-44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3071 + - uid: 3072 components: - pos: -12.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3072 + - uid: 3073 components: - pos: -5.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3073 + - uid: 3074 components: - pos: 26.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3074 + - uid: 3075 components: - pos: 3.5,-7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3075 + - uid: 3076 components: - pos: 30.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3076 + - uid: 3077 components: - pos: 18.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3077 + - uid: 3078 components: - pos: 8.5,-68.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3078 + - uid: 3079 components: - pos: 26.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3079 + - uid: 3080 components: - pos: -4.5,-27.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3080 + - uid: 3081 components: - pos: 29.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3081 + - uid: 3082 components: - pos: 25.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3082 + - uid: 3083 components: - pos: -4.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3083 + - uid: 3084 components: - pos: 27.5,-39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3084 + - uid: 3085 components: - pos: 28.5,-32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3085 + - uid: 3086 components: - pos: 30.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3086 + - uid: 3087 components: - pos: 30.5,-29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3087 + - uid: 3088 components: - pos: 30.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3088 + - uid: 3089 components: - pos: 62.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3089 + - uid: 3090 components: - pos: 9.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3090 + - uid: 3091 components: - pos: 2.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3091 + - uid: 3092 components: - pos: 27.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3092 + - uid: 3093 components: - pos: 62.5,-12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3093 + - uid: 3094 components: - pos: 3.5,-4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3094 + - uid: 3095 components: - pos: -4.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3095 + - uid: 3096 components: - pos: -4.5,-3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3096 + - uid: 3097 components: - pos: -4.5,-2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3097 + - uid: 3098 components: - pos: -4.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3098 + - uid: 3099 components: - pos: -4.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3099 + - uid: 3100 components: - pos: -8.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3100 + - uid: 3101 components: - pos: -8.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3101 + - uid: 3102 components: - pos: -3.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3102 + - uid: 3103 components: - pos: -0.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3103 + - uid: 3104 components: - pos: -4.5,-32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3104 + - uid: 3105 components: - pos: -6.5,-63.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3105 + - uid: 3106 components: - pos: 22.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3106 + - uid: 3107 components: - pos: -1.5,-78.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3107 + - uid: 3108 components: - pos: -4.5,-74.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3108 + - uid: 3109 components: - pos: 13.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3109 + - uid: 3110 components: - pos: 3.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3110 + - uid: 3111 components: - pos: 11.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3111 + - uid: 3112 components: - pos: 5.5,6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3112 + - uid: 3113 components: - pos: 20.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3113 + - uid: 3114 components: - pos: 35.5,-37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3114 + - uid: 3115 components: - pos: 9.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3115 + - uid: 3116 components: - pos: 37.5,13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3116 + - uid: 3117 components: - pos: -33.5,-55.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3117 + - uid: 3118 components: - pos: -38.5,-68.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3118 + - uid: 3119 components: - pos: -8.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3119 + - uid: 3120 components: - pos: -9.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3120 + - uid: 3121 components: - pos: -9.5,-3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3121 + - uid: 3122 components: - pos: -4.5,-39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3122 + - uid: 3123 components: - pos: 0.5,-40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3123 + - uid: 3124 components: - pos: 21.5,-32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3124 + - uid: 3125 components: - pos: 0.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3125 + - uid: 3126 components: - pos: -19.5,-65.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3126 + - uid: 3127 components: - pos: -19.5,-67.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3127 + - uid: 3128 components: - pos: -19.5,-71.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3128 + - uid: 3129 components: - pos: -18.5,-73.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3129 + - uid: 3130 components: - pos: -18.5,-75.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3130 + - uid: 3131 components: - pos: -16.5,-77.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3131 + - uid: 3132 components: - pos: -24.5,-14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3132 + - uid: 3133 components: - pos: 23.5,-24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3133 + - uid: 3134 components: - pos: 28.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3134 + - uid: 3135 components: - pos: 45.5,-24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3135 + - uid: 3136 components: - pos: -47.5,36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3136 + - uid: 3137 components: - pos: 12.5,-15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3137 + - uid: 3138 components: - pos: -14.5,-57.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3138 + - uid: 3139 components: - pos: 0.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3139 + - uid: 3140 components: - pos: 13.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3140 + - uid: 3141 components: - pos: 20.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3141 + - uid: 3142 components: - pos: 20.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3142 + - uid: 3143 components: - pos: 17.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3143 + - uid: 3144 components: - pos: 62.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3144 + - uid: 3145 components: - pos: -8.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3145 + - uid: 3146 components: - pos: -36.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3146 + - uid: 3147 components: - pos: 19.5,-32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3147 + - uid: 3148 components: - pos: 1.5,11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3148 + - uid: 3149 components: - pos: 22.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3149 + - uid: 3150 components: - pos: 24.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3150 + - uid: 3151 components: - pos: 25.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3151 + - uid: 3152 components: - pos: 26.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3152 + - uid: 3153 components: - pos: 17.5,-40.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3153 + - uid: 3154 components: - pos: -4.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3154 + - uid: 3155 components: - pos: 20.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3155 + - uid: 3156 components: - pos: -3.5,-68.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3156 + - uid: 3157 components: - pos: 6.5,-66.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3157 + - uid: 3158 components: - pos: 6.5,-67.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3158 + - uid: 3159 components: - pos: 5.5,-67.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3159 + - uid: 3160 components: - pos: 4.5,-67.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3160 + - uid: 3161 components: - pos: 6.5,-72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3161 + - uid: 3162 components: - pos: 3.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3162 + - uid: 3163 components: - pos: 6.5,-70.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3163 + - uid: 3164 components: - pos: -0.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3164 + - uid: 3165 components: - pos: -3.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3165 + - uid: 3166 components: - pos: -3.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3166 + - uid: 3167 components: - pos: 15.5,-46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3167 + - uid: 3168 components: - pos: 17.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3168 + - uid: 3169 components: - pos: 19.5,-48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3169 + - uid: 3170 components: - pos: 25.5,-53.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3170 + - uid: 3171 components: - pos: 18.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3171 + - uid: 3172 components: - pos: 16.5,-40.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3172 + - uid: 3173 components: - pos: -4.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3173 + - uid: 3174 components: - pos: 33.5,-32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3174 + - uid: 3175 components: - pos: 34.5,-32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3175 + - uid: 3176 components: - pos: 15.5,-31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3176 + - uid: 3177 components: - pos: 15.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3177 + - uid: 3178 components: - pos: 15.5,-29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3178 + - uid: 3179 components: - pos: 15.5,-21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3179 + - uid: 3180 components: - pos: 15.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3180 + - uid: 3181 components: - pos: 15.5,-23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3181 + - uid: 3182 components: - pos: 15.5,-24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3182 + - uid: 3183 components: - pos: 15.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3183 + - uid: 3184 components: - pos: 15.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3184 + - uid: 3185 components: - pos: 34.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3185 + - uid: 3186 components: - pos: 35.5,-18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3186 + - uid: 3187 components: - pos: 18.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3187 + - uid: 3188 components: - pos: 16.5,-8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3188 + - uid: 3189 components: - pos: 14.5,-8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3189 + - uid: 3190 components: - pos: 14.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3190 + - uid: 3191 components: - pos: 14.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3191 + - uid: 3192 components: - pos: 15.5,-9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3192 + - uid: 3193 components: - pos: 15.5,-12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3193 + - uid: 3194 components: - pos: 39.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3194 + - uid: 3195 components: - pos: 39.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3195 + - uid: 3196 components: - pos: -25.5,-86.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3196 + - uid: 3197 components: - pos: -25.5,-85.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3197 + - uid: 3198 components: - pos: 5.5,-53.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3198 + - uid: 3199 components: - pos: 6.5,-53.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3199 + - uid: 3200 components: - pos: 7.5,-53.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3200 + - uid: 3201 components: - pos: 8.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3201 + - uid: 3202 components: - pos: 8.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3202 + - uid: 3203 components: - pos: 9.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3203 + - uid: 3204 components: - pos: 10.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3204 + - uid: 3205 components: - pos: 10.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3205 + - uid: 3206 components: - pos: 15.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3206 + - uid: 3207 components: - pos: -16.5,-61.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3207 + - uid: 3208 components: - pos: -19.5,-64.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3208 + - uid: 3209 components: - pos: -19.5,-66.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3209 + - uid: 3210 components: - pos: -14.5,-67.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3210 + - uid: 3211 components: - pos: -28.5,-79.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3211 + - uid: 3212 components: - pos: -28.5,-78.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3212 + - uid: 3213 components: - pos: -27.5,-78.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3213 + - uid: 3214 components: - pos: -26.5,-78.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3214 + - uid: 3215 components: - pos: -26.5,-77.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3215 + - uid: 3216 components: - pos: -25.5,-77.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3216 + - uid: 3217 components: - pos: -22.5,-86.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3217 + - uid: 3218 components: - pos: -20.5,-85.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3218 + - uid: 3219 components: - pos: -21.5,-85.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3219 + - uid: 3220 components: - pos: -24.5,-85.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3220 + - uid: 3221 components: - pos: -23.5,-85.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3221 + - uid: 3222 components: - pos: -22.5,-85.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3222 + - uid: 3223 components: - pos: -22.5,-84.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3223 + - uid: 3224 components: - pos: -22.5,-81.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3224 + - uid: 3225 components: - pos: -22.5,-83.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3225 + - uid: 3226 components: - pos: -22.5,-82.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3226 + - uid: 3227 components: - pos: -22.5,-80.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3227 + - uid: 3228 components: - pos: -23.5,-80.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3228 + - uid: 3229 components: - pos: -23.5,-79.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3229 + - uid: 3230 components: - pos: -23.5,-78.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3230 + - uid: 3231 components: - pos: -23.5,-77.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3231 + - uid: 3232 components: - pos: -24.5,-77.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3232 + - uid: 3233 components: - pos: -24.5,-76.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3233 + - uid: 3234 components: - pos: -24.5,-75.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3234 + - uid: 3235 components: - pos: -24.5,-74.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3235 + - uid: 3236 components: - pos: -24.5,-73.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3236 + - uid: 3237 components: - pos: -24.5,-72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3237 + - uid: 3238 components: - pos: -23.5,-72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3238 + - uid: 3239 components: - pos: -22.5,-72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3239 + - uid: 3240 components: - pos: -21.5,-72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3240 + - uid: 3241 components: - pos: -21.5,-71.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3241 + - uid: 3242 components: - pos: -20.5,-79.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3242 + - uid: 3243 components: - pos: -19.5,-79.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3243 + - uid: 3244 components: - pos: -19.5,-78.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3244 + - uid: 3245 components: - pos: 33.5,3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3245 + - uid: 3246 components: - pos: 33.5,4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3246 + - uid: 3247 components: - pos: 33.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3247 + - uid: 3248 components: - pos: 33.5,6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3248 + - uid: 3249 components: - pos: 33.5,5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3249 + - uid: 3250 components: - pos: 26.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3250 + - uid: 3251 components: - pos: 33.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3251 + - uid: 3252 components: - pos: 33.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3252 + - uid: 3253 components: - pos: 33.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3253 + - uid: 3254 components: - pos: 33.5,-2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3254 + - uid: 3255 components: - pos: 33.5,-3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3255 + - uid: 3256 components: - pos: 33.5,-4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3256 + - uid: 3257 components: - pos: 33.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3257 + - uid: 3258 components: - pos: 27.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3258 + - uid: 3259 components: - pos: 28.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3259 + - uid: 3260 components: - pos: 29.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3260 + - uid: 3261 components: - pos: 30.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3261 + - uid: 3262 components: - pos: 31.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3262 + - uid: 3263 components: - pos: 32.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3263 + - uid: 3264 components: - pos: 26.5,8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3264 + - uid: 3265 components: - pos: 26.5,9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3265 + - uid: 3266 components: - pos: 26.5,10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3266 + - uid: 3267 components: - pos: 26.5,11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3267 + - uid: 3268 components: - pos: 26.5,12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3268 + - uid: 3269 components: - pos: 26.5,13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3269 + - uid: 3270 components: - pos: 25.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3270 + - uid: 3271 components: - pos: 24.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3271 + - uid: 3272 components: - pos: 23.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3272 + - uid: 3273 components: - pos: 22.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3273 + - uid: 3274 components: - pos: 21.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3274 + - uid: 3275 components: - pos: 34.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3275 + - uid: 3276 components: - pos: 37.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3276 + - uid: 3277 components: - pos: 36.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3277 + - uid: 3278 components: - pos: 36.5,-24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3278 + - uid: 3279 components: - pos: 36.5,-23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3279 + - uid: 3280 components: - pos: 36.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3280 + - uid: 3281 components: - pos: 35.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3281 + - uid: 3282 components: - pos: 35.5,-21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3282 + - uid: 3283 components: - pos: 35.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3283 + - uid: 3284 components: - pos: 34.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3284 + - uid: 3285 components: - pos: 35.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3285 + - uid: 3286 components: - pos: 35.5,-27.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3286 + - uid: 3287 components: - pos: 35.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3287 + - uid: 3288 components: - pos: 35.5,-29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3288 + - uid: 3289 components: - pos: 35.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3289 + - uid: 3290 components: - pos: 35.5,-31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3290 + - uid: 3291 components: - pos: 35.5,-32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3291 + - uid: 3292 components: - pos: 35.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3292 + - uid: 3293 components: - pos: 35.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3293 + - uid: 3294 components: - pos: 35.5,-35.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3294 + - uid: 3295 components: - pos: 35.5,-36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3295 + - uid: 3296 components: - pos: 36.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3296 + - uid: 3297 components: - pos: 37.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3297 + - uid: 3298 components: - pos: 38.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3298 + - uid: 3299 components: - pos: 39.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3299 + - uid: 3300 components: - pos: 31.5,-4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3300 + - uid: 3301 components: - pos: -4.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3301 + - uid: 3302 components: - pos: -4.5,-9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3302 + - uid: 3303 components: - pos: -4.5,-8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3303 + - uid: 3304 components: - pos: -4.5,-7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3304 + - uid: 3305 components: - pos: -4.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3305 + - uid: 3306 components: - pos: -4.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3306 + - uid: 3307 components: - pos: 63.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3307 + - uid: 3308 components: - pos: 62.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3308 + - uid: 3309 components: - pos: 21.5,15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3309 + - uid: 3310 components: - pos: 21.5,14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3310 + - uid: 3311 components: - pos: 21.5,13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3311 + - uid: 3312 components: - pos: 21.5,12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3312 + - uid: 3313 components: - pos: 21.5,11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3313 + - uid: 3314 components: - pos: 21.5,10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3314 + - uid: 3315 components: - pos: 20.5,14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3315 + - uid: 3316 components: - pos: 19.5,14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3316 + - uid: 3317 components: - pos: 18.5,14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3317 + - uid: 3318 components: - pos: 17.5,14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3318 + - uid: 3319 components: - pos: 17.5,13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3319 + - uid: 3320 components: - pos: 17.5,12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3320 + - uid: 3321 components: - pos: 17.5,11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3321 + - uid: 3322 components: - pos: 16.5,11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3322 + - uid: 3323 components: - pos: 15.5,11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3323 + - uid: 3324 components: - pos: 14.5,11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3324 + - uid: 3325 components: - pos: 13.5,11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3325 + - uid: 3326 components: - pos: 13.5,12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3326 + - uid: 3327 components: - pos: 13.5,13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3327 + - uid: 3328 components: - pos: 12.5,13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3328 + - uid: 3329 components: - pos: 11.5,13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3329 + - uid: 3330 components: - pos: 11.5,12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3330 + - uid: 3331 components: - pos: 11.5,11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3331 + - uid: 3332 components: - pos: 11.5,10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3332 + - uid: 3333 components: - pos: 11.5,9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3333 + - uid: 3334 components: - pos: 11.5,8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3334 + - uid: 3335 components: - pos: 11.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3335 + - uid: 3336 components: - pos: 11.5,6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3336 + - uid: 3337 components: - pos: 12.5,8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3337 + - uid: 3338 components: - pos: 13.5,8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3338 + - uid: 3339 components: - pos: 13.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3339 + - uid: 3340 components: - pos: 14.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3340 + - uid: 3341 components: - pos: 15.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3341 + - uid: 3342 components: - pos: 16.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3342 + - uid: 3343 components: - pos: 17.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3343 + - uid: 3344 components: - pos: 17.5,6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3344 + - uid: 3345 components: - pos: 17.5,5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3345 + - uid: 3346 components: - pos: 17.5,4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3346 + - uid: 3347 components: - pos: 17.5,3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3347 + - uid: 3348 components: - pos: 17.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3348 + - uid: 3349 components: - pos: 17.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3349 + - uid: 3350 components: - pos: 17.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3350 + - uid: 3351 components: - pos: 17.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3351 + - uid: 3352 components: - pos: 17.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3352 + - uid: 3353 components: - pos: 17.5,-2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3353 + - uid: 3354 components: - pos: 17.5,-3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3354 + - uid: 3355 components: - pos: 17.5,-4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3355 + - uid: 3356 components: - pos: 17.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3356 + - uid: 3357 components: - pos: 18.5,4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3357 + - uid: 3358 components: - pos: 16.5,-2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3358 + - uid: 3359 components: - pos: 10.5,8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3359 + - uid: 3360 components: - pos: 24.5,24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3360 + - uid: 3361 components: - pos: 24.5,23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3361 + - uid: 3362 components: - pos: 24.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3362 + - uid: 3363 components: - pos: 23.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3363 + - uid: 3364 components: - pos: 22.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3364 + - uid: 3365 components: - pos: 22.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3365 + - uid: 3366 components: - pos: 22.5,20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3366 + - uid: 3367 components: - pos: 22.5,19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3367 + - uid: 3368 components: - pos: 22.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3368 + - uid: 3369 components: - pos: 22.5,17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3369 + - uid: 3370 components: - pos: 21.5,17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3370 + - uid: 3371 components: - pos: 20.5,17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3371 + - uid: 3372 components: - pos: 19.5,17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3372 + - uid: 3373 components: - pos: 18.5,17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3373 + - uid: 3374 components: - pos: 17.5,17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3374 + - uid: 3375 components: - pos: 16.5,17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3375 + - uid: 3376 components: - pos: 15.5,17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3376 + - uid: 3377 components: - pos: 14.5,17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3377 + - uid: 3378 components: - pos: 13.5,17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3378 + - uid: 3379 components: - pos: 12.5,17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3379 + - uid: 3380 components: - pos: 11.5,17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3380 + - uid: 3381 components: - pos: 10.5,17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3381 + - uid: 3382 components: - pos: 9.5,17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3382 + - uid: 3383 components: - pos: 8.5,17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3383 + - uid: 3384 components: - pos: 7.5,17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3384 + - uid: 3385 components: - pos: 11.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3385 + - uid: 3386 components: - pos: 11.5,19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3386 + - uid: 3387 components: - pos: 11.5,20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3387 + - uid: 3388 components: - pos: 11.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3388 + - uid: 3389 components: - pos: 16.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3389 + - uid: 3390 components: - pos: 16.5,19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3390 + - uid: 3391 components: - pos: 16.5,20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3391 + - uid: 3392 components: - pos: 16.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3392 + - uid: 3393 components: - pos: 17.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3393 + - uid: 3394 components: - pos: 15.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3394 + - uid: 3395 components: - pos: 6.5,17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3395 + - uid: 3396 components: - pos: 6.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3396 + - uid: 3397 components: - pos: 6.5,19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3397 + - uid: 3398 components: - pos: 6.5,20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3398 + - uid: 3399 components: - pos: 6.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3399 + - uid: 3400 components: - pos: 7.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3400 + - uid: 3401 components: - pos: 5.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3401 + - uid: 3402 components: - pos: 5.5,17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3402 + - uid: 3403 components: - pos: 4.5,17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3403 + - uid: 3404 components: - pos: 2.5,17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3404 + - uid: 3405 components: - pos: 3.5,17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3405 + - uid: 3406 components: - pos: 1.5,17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3406 + - uid: 3407 components: - pos: 0.5,17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3407 + - uid: 3408 components: - pos: 0.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3408 + - uid: 3409 components: - pos: -0.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3409 + - uid: 3410 components: - pos: -0.5,19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3410 + - uid: 3411 components: - pos: -0.5,20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3411 + - uid: 3412 components: - pos: 0.5,20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3412 + - uid: 3413 components: - pos: 1.5,20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3413 + - uid: 3414 components: - pos: 24.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3414 + - uid: 3415 components: - pos: 25.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3415 + - uid: 3416 components: - pos: 26.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3416 + - uid: 3417 components: - pos: 27.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3417 + - uid: 3418 components: - pos: 28.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3418 + - uid: 3419 components: - pos: 23.5,17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3419 + - uid: 3420 components: - pos: 24.5,17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3420 + - uid: 3421 components: - pos: 25.5,17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3421 + - uid: 3422 components: - pos: 25.5,16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3422 + - uid: 3423 components: - pos: 26.5,17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3423 + - uid: 3424 components: - pos: 27.5,17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3424 + - uid: 3425 components: - pos: 28.5,17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3425 + - uid: 3426 components: - pos: 29.5,17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3426 + - uid: 3427 components: - pos: 40.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3427 + - uid: 3428 components: - pos: 29.5,15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3428 + - uid: 3429 components: - pos: 29.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3429 + - uid: 3430 components: - pos: 30.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3430 + - uid: 3431 components: - pos: 31.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3431 + - uid: 3432 components: - pos: 32.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3432 + - uid: 3433 components: - pos: 32.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3433 + - uid: 3434 components: - pos: 32.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3434 + - uid: 3435 components: - pos: 29.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3435 + - uid: 3436 components: - pos: 29.5,23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3436 + - uid: 3437 components: - pos: 29.5,24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3437 + - uid: 3438 components: - pos: 29.5,25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3438 + - uid: 3439 components: - pos: 29.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3439 + - uid: 3440 components: - pos: 29.5,27.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3440 + - uid: 3441 components: - pos: 29.5,28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3441 + - uid: 3442 components: - pos: 29.5,29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3442 + - uid: 3443 components: - pos: 29.5,30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3443 + - uid: 3444 components: - pos: 29.5,31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3444 + - uid: 3445 components: - pos: 30.5,31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3445 + - uid: 3446 components: - pos: 32.5,31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3446 + - uid: 3447 components: - pos: 31.5,31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3447 + - uid: 3448 components: - pos: 28.5,31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3448 + - uid: 3449 components: - pos: 27.5,31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3449 + - uid: 3450 components: - pos: 27.5,30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3450 + - uid: 3451 components: - pos: 27.5,29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3451 + - uid: 3452 components: - pos: 32.5,30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3452 + - uid: 3453 components: - pos: 32.5,29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3453 + - uid: 3454 components: - pos: 27.5,28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3454 + - uid: 3455 components: - pos: 32.5,28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3455 + - uid: 3456 components: - pos: -8.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3456 + - uid: 3457 components: - pos: -8.5,-40.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3457 + - uid: 3458 components: - pos: -8.5,-39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3458 + - uid: 3459 components: - pos: -8.5,-38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3459 + - uid: 3460 components: - pos: -8.5,-37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3460 + - uid: 3461 components: - pos: -8.5,-36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3461 + - uid: 3462 components: - pos: -9.5,-36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3462 + - uid: 3463 components: - pos: -10.5,-36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3463 + - uid: 3464 components: - pos: -11.5,-36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3464 + - uid: 3465 components: - pos: -12.5,-36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3465 + - uid: 3466 components: - pos: -12.5,-37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3466 + - uid: 3467 components: - pos: -12.5,-38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3467 + - uid: 3468 components: - pos: -13.5,-38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3468 + - uid: 3469 components: - pos: -14.5,-38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3469 + - uid: 3470 components: - pos: -15.5,-38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3470 + - uid: 3471 components: - pos: -11.5,-35.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3471 + - uid: 3472 components: - pos: -11.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3472 + - uid: 3473 components: - pos: -11.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3473 + - uid: 3474 components: - pos: -10.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3474 + - uid: 3475 components: - pos: -9.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3475 + - uid: 3476 components: - pos: -12.5,-39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3476 + - uid: 3477 components: - pos: -11.5,-39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3477 + - uid: 3478 components: - pos: 21.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3478 + - uid: 3479 components: - pos: -55.5,-27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3479 + - uid: 3480 components: - pos: -54.5,-27.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3480 + - uid: 3481 components: - pos: -53.5,-27.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3481 + - uid: 3482 components: - pos: 17.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3482 + - uid: 3483 components: - pos: 18.5,-51.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3483 + - uid: 3484 components: - pos: 21.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3484 + - uid: 3485 components: - pos: 21.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3485 + - uid: 3486 components: - pos: 20.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3486 + - uid: 3487 components: - pos: 27.5,3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3487 + - uid: 3488 components: - pos: 18.5,-50.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3488 + - uid: 3489 components: - pos: 17.5,-50.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3489 + - uid: 3490 components: - pos: -13.5,42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3490 + - uid: 3491 components: - pos: -7.5,-8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3491 + - uid: 3492 components: - pos: 34.5,18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3492 + - uid: 3493 components: - pos: 35.5,18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3493 + - uid: 3494 components: - pos: 46.5,5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3494 + - uid: 3495 components: - pos: 44.5,5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3495 + - uid: 3496 components: - pos: 45.5,5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3496 + - uid: 3497 components: - pos: 59.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3497 + - uid: 3498 components: - pos: 61.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3498 + - uid: 3499 components: - pos: 58.5,11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3499 + - uid: 3500 components: - pos: 58.5,12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3500 + - uid: 3501 components: - pos: 58.5,13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3501 + - uid: 3502 components: - pos: 58.5,14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3502 + - uid: 3503 components: - pos: 58.5,15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3503 + - uid: 3504 components: - pos: 58.5,16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3504 + - uid: 3505 components: - pos: 57.5,16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3505 + - uid: 3506 components: - pos: 57.5,17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3506 + - uid: 3507 components: - pos: 57.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3507 + - uid: 3508 components: - pos: 56.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3508 + - uid: 3509 components: - pos: 56.5,19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3509 + - uid: 3510 components: - pos: 56.5,20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3510 + - uid: 3511 components: - pos: 55.5,20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3511 + - uid: 3512 components: - pos: 54.5,20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3512 + - uid: 3513 components: - pos: 56.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3513 + - uid: 3514 components: - pos: 58.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3514 + - uid: 3515 components: - pos: 57.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3515 + - uid: 3516 components: - pos: 58.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3516 + - uid: 3517 components: - pos: 53.5,20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3517 + - uid: 3518 components: - pos: 52.5,20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3518 + - uid: 3519 components: - pos: 51.5,20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3519 + - uid: 3520 components: - pos: 50.5,20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3520 + - uid: 3521 components: - pos: 49.5,20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3521 + - uid: 3522 components: - pos: 48.5,20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3522 + - uid: 3523 components: - pos: 47.5,20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3523 + - uid: 3524 components: - pos: 46.5,20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3524 + - uid: 3525 components: - pos: 46.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3525 + - uid: 3526 components: - pos: 49.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3526 + - uid: 3527 components: - pos: 52.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3527 + - uid: 3528 components: - pos: 54.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3528 + - uid: 3529 components: - pos: 59.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3529 + - uid: 3530 components: - pos: 58.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3530 + - uid: 3531 components: - pos: 59.5,15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3531 + - uid: 3532 components: - pos: 60.5,13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3532 + - uid: 3533 components: - pos: 59.5,13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3533 + - uid: 3534 components: - pos: 61.5,13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3534 + - uid: 3535 components: - pos: 57.5,11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3535 + - uid: 3536 components: - pos: 56.5,11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3536 + - uid: 3537 components: - pos: 56.5,10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3537 + - uid: 3538 components: - pos: 56.5,9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3538 + - uid: 3539 components: - pos: 56.5,8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3539 + - uid: 3540 components: - pos: 56.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3540 + - uid: 3541 components: - pos: 56.5,6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3541 + - uid: 3542 components: - pos: 55.5,6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3542 + - uid: 3543 components: - pos: 54.5,6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3543 + - uid: 3544 components: - pos: 53.5,6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3544 + - uid: 3545 components: - pos: 52.5,6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3545 + - uid: 3546 components: - pos: 51.5,6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3546 + - uid: 3547 components: - pos: 50.5,6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3547 + - uid: 3548 components: - pos: 49.5,6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3548 + - uid: 3549 components: - pos: 48.5,6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3549 + - uid: 3550 components: - pos: 47.5,6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3550 + - uid: 3551 components: - pos: 47.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3551 + - uid: 3552 components: - pos: 47.5,8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3552 + - uid: 3553 components: - pos: 48.5,10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3553 + - uid: 3554 components: - pos: 47.5,10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3554 + - uid: 3555 components: - pos: 47.5,11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3555 + - uid: 3556 components: - pos: 47.5,12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3556 + - uid: 3557 components: - pos: 47.5,13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3557 + - uid: 3558 components: - pos: 47.5,14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3558 + - uid: 3559 components: - pos: 47.5,15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3559 + - uid: 3560 components: - pos: 48.5,13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3560 + - uid: 3561 components: - pos: 49.5,13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3561 + - uid: 3562 components: - pos: 49.5,14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3562 + - uid: 3563 components: - pos: 49.5,15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3563 + - uid: 3564 components: - pos: 49.5,16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3564 + - uid: 3565 components: - pos: 50.5,16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3565 + - uid: 3566 components: - pos: 51.5,16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3566 + - uid: 3567 components: - pos: 52.5,16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3567 + - uid: 3568 components: - pos: 53.5,16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3568 + - uid: 3569 components: - pos: 54.5,16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3569 + - uid: 3570 components: - pos: 55.5,16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3570 + - uid: 3571 components: - pos: 50.5,17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3571 + - uid: 3572 components: - pos: 50.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3572 + - uid: 3573 components: - pos: 49.5,12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3573 + - uid: 3574 components: - pos: 50.5,12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3574 + - uid: 3575 components: - pos: 50.5,11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3575 + - uid: 3576 components: - pos: 50.5,10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3576 + - uid: 3577 components: - pos: 50.5,9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3577 + - uid: 3578 components: - pos: 51.5,9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3578 + - uid: 3579 components: - pos: 52.5,9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3579 + - uid: 3580 components: - pos: 53.5,9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3580 + - uid: 3581 components: - pos: 53.5,10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3581 + - uid: 3582 components: - pos: 53.5,11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3582 + - uid: 3583 components: - pos: 53.5,12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3583 + - uid: 3584 components: - pos: 59.5,11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3584 + - uid: 3585 components: - pos: 59.5,10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3585 + - uid: 3586 components: - pos: 59.5,9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3586 + - uid: 3587 components: - pos: 60.5,9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3587 + - uid: 3588 components: - pos: 60.5,8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3588 + - uid: 3589 components: - pos: 60.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3589 + - uid: 3590 components: - pos: 60.5,6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3590 + - uid: 3591 components: - pos: 60.5,5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3591 + - uid: 3592 components: - pos: 60.5,4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3592 + - uid: 3593 components: - pos: 61.5,4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3593 + - uid: 3594 components: - pos: 62.5,4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3594 + - uid: 3595 components: - pos: 62.5,5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3595 + - uid: 3596 components: - pos: 60.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3596 + - uid: 3597 components: - pos: 45.5,20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3597 + - uid: 3598 components: - pos: 44.5,20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3598 + - uid: 3599 components: - pos: 43.5,20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3599 + - uid: 3600 components: - pos: 42.5,20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3600 + - uid: 3601 components: - pos: 41.5,20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3601 + - uid: 3602 components: - pos: 40.5,20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3602 + - uid: 3603 components: - pos: 39.5,20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3603 + - uid: 3604 components: - pos: 38.5,20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3604 + - uid: 3605 components: - pos: 37.5,20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3605 + - uid: 3606 components: - pos: 36.5,20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3606 + - uid: 3607 components: - pos: 35.5,20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3607 + - uid: 3608 components: - pos: 35.5,19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3608 + - uid: 3609 components: - pos: 46.5,11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3609 + - uid: 3610 components: - pos: 45.5,11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3610 + - uid: 3611 components: - pos: 43.5,11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3611 + - uid: 3612 components: - pos: 42.5,11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3612 + - uid: 3613 components: - pos: 41.5,11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3613 + - uid: 3614 components: - pos: 40.5,11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3614 + - uid: 3615 components: - pos: 41.5,10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3615 + - uid: 3616 components: - pos: 41.5,9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3616 + - uid: 3617 components: - pos: 41.5,8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3617 + - uid: 3618 components: - pos: 41.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3618 + - uid: 3619 components: - pos: 41.5,6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3619 + - uid: 3620 components: - pos: 41.5,5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3620 + - uid: 3621 components: - pos: 41.5,4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3621 + - uid: 3622 components: - pos: 40.5,12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3622 + - uid: 3623 components: - pos: 40.5,13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3623 + - uid: 3624 components: - pos: 40.5,14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3624 + - uid: 3625 components: - pos: 39.5,14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3625 + - uid: 3626 components: - pos: 38.5,14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3626 + - uid: 3627 components: - pos: 37.5,14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3627 + - uid: 3628 components: - pos: 36.5,14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3628 + - uid: 3629 components: - pos: 35.5,14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3629 + - uid: 3630 components: - pos: 34.5,14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3630 + - uid: 3631 components: - pos: 33.5,14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3631 + - uid: 3632 components: - pos: 32.5,14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3632 + - uid: 3633 components: - pos: 31.5,14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3633 + - uid: 3634 components: - pos: 35.5,15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3634 + - uid: 3635 components: - pos: 35.5,16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3635 + - uid: 3636 components: - pos: 32.5,13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3636 + - uid: 3637 components: - pos: 32.5,12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3637 + - uid: 3638 components: - pos: 32.5,11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3638 + - uid: 3639 components: - pos: 30.5,14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3639 + - uid: 3640 components: - pos: 29.5,14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3640 + - uid: 3641 components: - pos: 29.5,13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3641 + - uid: 3642 components: - pos: 29.5,12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3642 + - uid: 3643 components: - pos: 29.5,11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3643 + - uid: 3644 components: - pos: 35.5,13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3644 + - uid: 3645 components: - pos: 35.5,12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3645 + - uid: 3646 components: - pos: 35.5,11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3646 + - uid: 3647 components: - pos: 38.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3647 + - uid: 3648 components: - pos: 37.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3648 + - uid: 3649 components: - pos: 40.5,4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3649 + - uid: 3650 components: - pos: 39.5,4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3650 + - uid: 3651 components: - pos: 37.5,4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3651 + - uid: 3652 components: - pos: 38.5,4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3652 + - uid: 3653 components: - pos: -12.5,42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3653 + - uid: 3654 components: - pos: 51.5,11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3654 + - uid: 3655 components: - pos: 55.5,13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3655 + - uid: 3656 components: - pos: 55.5,14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3656 + - uid: 3657 components: - pos: 54.5,14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3657 + - uid: 3658 components: - pos: 53.5,14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3658 + - uid: 3659 components: - pos: 52.5,14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3659 + - uid: 3660 components: - pos: 51.5,14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3660 + - uid: 3661 components: - pos: 51.5,13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3661 + - uid: 3662 components: - pos: 51.5,12.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3662 + - uid: 3663 components: - pos: 49.5,10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3663 + - uid: 3664 components: - pos: 45.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3664 + - uid: 3665 components: - pos: 42.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3665 + - uid: 3666 components: - pos: 42.5,22.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3666 + - uid: 3667 components: - pos: 49.5,3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3667 + - uid: 3668 components: - pos: 49.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3668 + - uid: 3669 components: - pos: 48.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3669 + - uid: 3670 components: - pos: 48.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3670 + - uid: 3671 components: - pos: 47.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3671 + - uid: 3672 components: - pos: 46.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3672 + - uid: 3673 components: - pos: 45.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3673 + - uid: 3674 components: - pos: 44.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3674 + - uid: 3675 components: - pos: 43.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3675 + - uid: 3676 components: - pos: 42.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3676 + - uid: 3677 components: - pos: 42.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3677 + - uid: 3678 components: - pos: 42.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3678 + - uid: 3679 components: - pos: 42.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3679 + - uid: 3680 components: - pos: 42.5,-2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3680 + - uid: 3681 components: - pos: 42.5,-3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3681 + - uid: 3682 components: - pos: 41.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3682 + - uid: 3683 components: - pos: 40.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3683 + - uid: 3684 components: - pos: 39.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3684 + - uid: 3685 components: - pos: 38.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3685 + - uid: 3686 components: - pos: 37.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3686 + - uid: 3687 components: - pos: 37.5,-2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3687 + - uid: 3688 components: - pos: 37.5,-3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3688 + - uid: 3689 components: - pos: 43.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3689 + - uid: 3690 components: - pos: 44.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3690 + - uid: 3691 components: - pos: 44.5,-2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3691 + - uid: 3692 components: - pos: 38.5,-3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3692 + - uid: 3693 components: - pos: 38.5,-4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3693 + - uid: 3694 components: - pos: 38.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3694 + - uid: 3695 components: - pos: 38.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3695 + - uid: 3696 components: - pos: 38.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3696 + - uid: 3697 components: - pos: 38.5,-7.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3697 + - uid: 3698 components: - pos: 39.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3698 + - uid: 3699 components: - pos: 46.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3699 + - uid: 3700 components: - pos: 46.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3700 + - uid: 3701 components: - pos: 46.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3701 + - uid: 3702 components: - pos: 47.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3702 + - uid: 3703 components: - pos: 47.5,-2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3703 + - uid: 3704 components: - pos: 41.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3704 + - uid: 3705 components: - pos: 40.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3705 + - uid: 3706 components: - pos: 39.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3706 + - uid: 3707 components: - pos: 38.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3707 + - uid: 3708 components: - pos: 37.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3708 + - uid: 3709 components: - pos: 41.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3709 + - uid: 3710 components: - pos: 48.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3710 + - uid: 3711 components: - pos: 49.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3711 + - uid: 3712 components: - pos: 50.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3712 + - uid: 3713 components: - pos: 51.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3713 + - uid: 3714 components: - pos: 52.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3714 + - uid: 3715 components: - pos: 52.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3715 + - uid: 3716 components: - pos: 52.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3716 + - uid: 3717 components: - pos: 53.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3717 + - uid: 3718 components: - pos: 53.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3718 + - uid: 3719 components: - pos: 54.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3719 + - uid: 3720 components: - pos: 55.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3720 + - uid: 3721 components: - pos: 56.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3721 + - uid: 3722 components: - pos: 57.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3722 + - uid: 3723 components: - pos: 57.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3723 + - uid: 3724 components: - pos: 57.5,1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3724 + - uid: 3725 components: - pos: 58.5,1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3725 + - uid: 3726 components: - pos: 59.5,1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3726 + - uid: 3727 components: - pos: 60.5,1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3727 + - uid: 3728 components: - pos: 61.5,1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3728 + - uid: 3729 components: - pos: 62.5,1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3729 + - uid: 3730 components: - pos: 56.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3730 + - uid: 3731 components: - pos: 56.5,-2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3731 + - uid: 3732 components: - pos: 56.5,-3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3732 + - uid: 3733 components: - pos: 51.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3733 + - uid: 3734 components: - pos: 51.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3734 + - uid: 3735 components: - pos: 51.5,-2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3735 + - uid: 3736 components: - pos: 52.5,-2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3736 + - uid: 3737 components: - pos: 52.5,-3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3737 + - uid: 3738 components: - pos: 52.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3738 + - uid: 3739 components: - pos: 59.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3739 + - uid: 3740 components: - pos: 60.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3740 + - uid: 3741 components: - pos: 61.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3741 + - uid: 3742 components: - pos: 67.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3742 + - uid: 3743 components: - pos: 68.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3743 + - uid: 3744 components: - pos: 66.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3744 + - uid: 3745 components: - pos: 68.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3745 + - uid: 3746 components: - pos: 66.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3746 + - uid: 3747 components: - pos: 58.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3747 + - uid: 3748 components: - pos: 63.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3748 + - uid: 3749 components: - pos: 45.5,-39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3749 + - uid: 3750 components: - pos: 44.5,-39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3750 + - uid: 3751 components: - pos: 54.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3751 + - uid: 3752 components: - pos: 65.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3752 + - uid: 3753 components: - pos: 65.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3753 + - uid: 3754 components: - pos: 60.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3754 + - uid: 3755 components: - pos: 59.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3755 + - uid: 3756 components: - pos: 58.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3756 + - uid: 3757 components: - pos: 57.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3757 + - uid: 3758 components: - pos: 56.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3758 + - uid: 3759 components: - pos: 55.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3759 + - uid: 3760 components: - pos: 54.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3760 + - uid: 3761 components: - pos: 53.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3761 + - uid: 3762 components: - pos: 52.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3762 + - uid: 3763 components: - pos: 53.5,-12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3763 + - uid: 3764 components: - pos: 53.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3764 + - uid: 3765 components: - pos: 51.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3765 + - uid: 3766 components: - pos: 51.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3766 + - uid: 3767 components: - pos: 51.5,-9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3767 + - uid: 3768 components: - pos: 51.5,-8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3768 + - uid: 3769 components: - pos: 50.5,-8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3769 + - uid: 3770 components: - pos: 49.5,-8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3770 + - uid: 3771 components: - pos: 48.5,-8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3771 + - uid: 3772 components: - pos: 47.5,-8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3772 + - uid: 3773 components: - pos: 46.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3773 + - uid: 3774 components: - pos: 47.5,-7.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3774 + - uid: 3775 components: - pos: 46.5,-9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3775 + - uid: 3776 components: - pos: 46.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3776 + - uid: 3777 components: - pos: 46.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3777 + - uid: 3778 components: - pos: 45.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3778 + - uid: 3779 components: - pos: 44.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3779 + - uid: 3780 components: - pos: 43.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3780 + - uid: 3781 components: - pos: 42.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3781 + - uid: 3782 components: - pos: 41.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3782 + - uid: 3783 components: - pos: 40.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3783 + - uid: 3784 components: - pos: 40.5,-12.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3784 + - uid: 3785 components: - pos: 39.5,-12.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3785 + - uid: 3786 components: - pos: 38.5,-12.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3786 + - uid: 3787 components: - pos: 38.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3787 + - uid: 3788 components: - pos: 38.5,-14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3788 + - uid: 3789 components: - pos: 38.5,-15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3789 + - uid: 3790 components: - pos: 39.5,-14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3790 + - uid: 3791 components: - pos: 40.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3791 + - uid: 3792 components: - pos: 41.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3792 + - uid: 3793 components: - pos: 42.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3793 + - uid: 3794 components: - pos: 43.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3794 + - uid: 3795 components: - pos: 42.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3795 + - uid: 3796 components: - pos: 38.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3796 + - uid: 3797 components: - pos: 38.5,-10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3797 + - uid: 3798 components: - pos: 37.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3798 + - uid: 3799 components: - pos: 36.5,-8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3799 + - uid: 3800 components: - pos: 35.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3800 + - uid: 3801 components: - pos: 33.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3801 + - uid: 3802 components: - pos: 34.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3802 + - uid: 3803 components: - pos: 35.5,-9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3803 + - uid: 3804 components: - pos: 44.5,-10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3804 + - uid: 3805 components: - pos: 58.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3805 + - uid: 3806 components: - pos: 57.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3806 + - uid: 3807 components: - pos: 56.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3807 + - uid: 3808 components: - pos: 55.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3808 + - uid: 3809 components: - pos: 54.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3809 + - uid: 3810 components: - pos: 54.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3810 + - uid: 3811 components: - pos: 59.5,-3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3811 + - uid: 3812 components: - pos: 59.5,-2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3812 + - uid: 3813 components: - pos: 60.5,-2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3813 + - uid: 3814 components: - pos: 61.5,-2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3814 + - uid: 3815 components: - pos: 62.5,-2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3815 + - uid: 3816 components: - pos: 63.5,-2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3816 + - uid: 3817 components: - pos: 62.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3817 + - uid: 3818 components: - pos: 60.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3818 + - uid: 3819 components: - pos: 63.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3819 + - uid: 3820 components: - pos: 64.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3820 + - uid: 3821 components: - pos: 62.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3821 + - uid: 3822 components: - pos: 63.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3822 + - uid: 3823 components: - pos: 64.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3823 + - uid: 3824 components: - pos: 62.5,-14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3824 + - uid: 3825 components: - pos: 62.5,-15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3825 + - uid: 3826 components: - pos: 62.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3826 + - uid: 3827 components: - pos: 62.5,-17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3827 + - uid: 3828 components: - pos: 62.5,-18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3828 + - uid: 3829 components: - pos: 62.5,-19.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3829 + - uid: 3830 components: - pos: 62.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3830 + - uid: 3831 components: - pos: 62.5,-21.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3831 + - uid: 3832 components: - pos: 62.5,-22.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3832 + - uid: 3833 components: - pos: 62.5,-23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3833 + - uid: 3834 components: - pos: 62.5,-24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3834 + - uid: 3835 components: - pos: 62.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3835 + - uid: 3836 components: - pos: 62.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3836 + - uid: 3837 components: - pos: 62.5,-27.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3837 + - uid: 3838 components: - pos: 62.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3838 + - uid: 3839 components: - pos: 64.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3839 + - uid: 3840 components: - pos: 63.5,-3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3840 + - uid: 3841 components: - pos: 64.5,-3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3841 + - uid: 3842 components: - pos: 57.5,-12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3842 + - uid: 3843 components: - pos: 57.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3843 + - uid: 3844 components: - pos: 45.5,19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3844 + - uid: 3845 components: - pos: 55.5,-43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3845 + - uid: 3846 components: - pos: 55.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3846 + - uid: 3847 components: - pos: 55.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3847 + - uid: 3848 components: - pos: 54.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3848 + - uid: 3849 components: - pos: 53.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3849 + - uid: 3850 components: - pos: 53.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3850 + - uid: 3851 components: - pos: 52.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3851 + - uid: 3852 components: - pos: 51.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3852 + - uid: 3853 components: - pos: 50.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3853 + - uid: 3854 components: - pos: 49.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3854 + - uid: 3855 components: - pos: 48.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3855 + - uid: 3856 components: - pos: 47.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3856 + - uid: 3857 components: - pos: 46.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3857 + - uid: 3858 components: - pos: 45.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3858 + - uid: 3859 components: - pos: 44.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3859 + - uid: 3860 components: - pos: 43.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3860 + - uid: 3861 components: - pos: 42.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3861 + - uid: 3862 components: - pos: 46.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3862 + - uid: 3863 components: - pos: 46.5,-40.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3863 + - uid: 3864 components: - pos: 46.5,-39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3864 + - uid: 3865 components: - pos: 46.5,-38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3865 + - uid: 3866 components: - pos: 46.5,-37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3866 + - uid: 3867 components: - pos: 45.5,-37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3867 + - uid: 3868 components: - pos: 44.5,-37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3868 + - uid: 3869 components: - pos: 43.5,-37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3869 + - uid: 3870 components: - pos: 42.5,-37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3870 + - uid: 3871 components: - pos: 41.5,-37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3871 + - uid: 3872 components: - pos: 40.5,-37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3872 + - uid: 3873 components: - pos: 39.5,-37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3873 + - uid: 3874 components: - pos: 40.5,-36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3874 + - uid: 3875 components: - pos: 43.5,-36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3875 + - uid: 3876 components: - pos: 45.5,-36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3876 + - uid: 3877 components: - pos: 43.5,-38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3877 + - uid: 3878 components: - pos: 40.5,-38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3878 + - uid: 3879 components: - pos: 49.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3879 + - uid: 3880 components: - pos: 49.5,-40.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3880 + - uid: 3881 components: - pos: 49.5,-39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3881 + - uid: 3882 components: - pos: 49.5,-38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3882 + - uid: 3883 components: - pos: 50.5,-38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3883 + - uid: 3884 components: - pos: 51.5,-38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3884 + - uid: 3885 components: - pos: 49.5,-37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3885 + - uid: 3886 components: - pos: 55.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3886 + - uid: 3887 components: - pos: 56.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3887 + - uid: 3888 components: - pos: 57.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3888 + - uid: 3889 components: - pos: 58.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3889 + - uid: 3890 components: - pos: 59.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3890 + - uid: 3891 components: - pos: 60.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3891 + - uid: 3892 components: - pos: 61.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3892 + - uid: 3893 components: - pos: 62.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3893 + - uid: 3894 components: - pos: 62.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3894 + - uid: 3895 components: - pos: 62.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3895 + - uid: 3896 components: - pos: 62.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3896 + - uid: 3897 components: - pos: 62.5,-40.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3897 + - uid: 3898 components: - pos: 62.5,-39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3898 + - uid: 3899 components: - pos: 62.5,-37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3899 + - uid: 3900 components: - pos: 62.5,-36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3900 + - uid: 3901 components: - pos: 62.5,-35.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3901 + - uid: 3902 components: - pos: 62.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3902 + - uid: 3903 components: - pos: 63.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3903 + - uid: 3904 components: - pos: 64.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3904 + - uid: 3905 components: - pos: 65.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3905 + - uid: 3906 components: - pos: 62.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3906 + - uid: 3907 components: - pos: 62.5,-32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3907 + - uid: 3908 components: - pos: 62.5,-31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3908 + - uid: 3909 components: - pos: 61.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3909 + - uid: 3910 components: - pos: 60.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3910 + - uid: 3911 components: - pos: 59.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3911 + - uid: 3912 components: - pos: 64.5,-35.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3912 + - uid: 3913 components: - pos: 60.5,-35.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3913 + - uid: 3914 components: - pos: 63.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3914 + - uid: 3915 components: - pos: 62.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3915 + - uid: 3916 components: - pos: 62.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3916 + - uid: 3917 components: - pos: 62.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3917 + - uid: 3918 components: - pos: 62.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3918 + - uid: 3919 components: - pos: 62.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3919 + - uid: 3920 components: - pos: 62.5,-50.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3920 + - uid: 3921 components: - pos: 62.5,-51.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3921 + - uid: 3922 components: - pos: 62.5,-52.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3922 + - uid: 3923 components: - pos: 62.5,-53.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3923 + - uid: 3924 components: - pos: 62.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3924 + - uid: 3925 components: - pos: 63.5,-52.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3925 + - uid: 3926 components: - pos: 64.5,-52.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3926 + - uid: 3927 components: - pos: 61.5,-52.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3927 + - uid: 3928 components: - pos: 60.5,-52.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3928 + - uid: 3929 components: - pos: 63.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3929 + - uid: 3930 components: - pos: 64.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3930 + - uid: 3931 components: - pos: 65.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3931 + - uid: 3932 components: - pos: 66.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3932 + - uid: 3933 components: - pos: 68.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3933 + - uid: 3934 components: - pos: 69.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3934 + - uid: 3935 components: - pos: 70.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3935 + - uid: 3936 components: - pos: 71.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3936 + - uid: 3937 components: - pos: 72.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3937 + - uid: 3938 components: - pos: 69.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3938 + - uid: 3939 components: - pos: 69.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3939 + - uid: 3940 components: - pos: 69.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3940 + - uid: 3941 components: - pos: 69.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3941 + - uid: 3942 components: - pos: 69.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3942 + - uid: 3943 components: - pos: 71.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3943 + - uid: 3944 components: - pos: 71.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3944 + - uid: 3945 components: - pos: 73.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3945 + - uid: 3946 components: - pos: 73.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3946 + - uid: 3947 components: - pos: 73.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3947 + - uid: 3948 components: - pos: 49.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3948 + - uid: 3949 components: - pos: 49.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3949 + - uid: 3950 components: - pos: 49.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3950 + - uid: 3951 components: - pos: 49.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3951 + - uid: 3952 components: - pos: 49.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3952 + - uid: 3953 components: - pos: 49.5,-50.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3953 + - uid: 3954 components: - pos: 49.5,-51.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3954 + - uid: 3955 components: - pos: 49.5,-52.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3955 + - uid: 3956 components: - pos: 49.5,-53.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3956 + - uid: 3957 components: - pos: 49.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3957 + - uid: 3958 components: - pos: 48.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3958 + - uid: 3959 components: - pos: 47.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3959 + - uid: 3960 components: - pos: 46.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3960 + - uid: 3961 components: - pos: 45.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3961 + - uid: 3962 components: - pos: 45.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3962 + - uid: 3963 components: - pos: 45.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3963 + - uid: 3964 components: - pos: 45.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3964 + - uid: 3965 components: - pos: 44.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3965 + - uid: 3966 components: - pos: 43.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3966 + - uid: 3967 components: - pos: 43.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3967 + - uid: 3968 components: - pos: 43.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3968 + - uid: 3969 components: - pos: 42.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3969 + - uid: 3970 components: - pos: 41.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3970 + - uid: 3971 components: - pos: 40.5,-46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3971 + - uid: 3972 components: - pos: 39.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3972 + - uid: 3973 components: - pos: 41.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3973 + - uid: 3974 components: - pos: 40.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3974 + - uid: 3975 components: - pos: 39.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3975 + - uid: 3976 components: - pos: 38.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3976 + - uid: 3977 components: - pos: 37.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3977 + - uid: 3978 components: - pos: 59.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3978 + - uid: 3979 components: - pos: 55.5,-63.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3979 + - uid: 3980 components: - pos: 64.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3980 + - uid: 3981 components: - pos: -15.5,-18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3981 + - uid: 3982 components: - pos: -21.5,-59.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 3982 + - uid: 3983 components: - pos: 30.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3983 + - uid: 3984 components: - pos: 31.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3984 + - uid: 3985 components: - pos: 32.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3985 + - uid: 3986 components: - pos: 33.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3986 + - uid: 3987 components: - pos: 31.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3987 + - uid: 3988 components: - pos: 31.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3988 + - uid: 3989 components: - pos: 31.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3989 + - uid: 3990 components: - pos: 29.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3990 + - uid: 3991 components: - pos: 29.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3991 + - uid: 3992 components: - pos: 30.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3992 + - uid: 3993 components: - pos: 31.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3993 + - uid: 3994 components: - pos: 31.5,-50.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3994 + - uid: 3995 components: - pos: 31.5,-51.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3995 + - uid: 3996 components: - pos: 31.5,-52.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3996 + - uid: 3997 components: - pos: 30.5,-51.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3997 + - uid: 3998 components: - pos: 32.5,-51.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3998 + - uid: 3999 components: - pos: 31.5,-53.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 3999 + - uid: 4000 components: - pos: 31.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4000 + - uid: 4001 components: - pos: 31.5,-56.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4001 + - uid: 4002 components: - pos: 31.5,-55.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4002 + - uid: 4003 components: - pos: 30.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4003 + - uid: 4004 components: - pos: 29.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4004 + - uid: 4005 components: - pos: 32.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4005 + - uid: 4006 components: - pos: 33.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4006 + - uid: 4007 components: - pos: 30.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4007 + - uid: 4008 components: - pos: 32.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4008 + - uid: 4009 components: - pos: 29.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4009 + - uid: 4010 components: - pos: 33.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4010 + - uid: 4011 components: - pos: 48.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4011 + - uid: 4012 components: - pos: 47.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4012 + - uid: 4013 components: - pos: 46.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4013 + - uid: 4014 components: - pos: 49.5,-55.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4014 + - uid: 4015 components: - pos: 49.5,-56.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4015 + - uid: 4016 components: - pos: 49.5,-57.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4016 + - uid: 4017 components: - pos: 49.5,-58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4017 + - uid: 4018 components: - pos: 49.5,-59.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4018 + - uid: 4019 components: - pos: 49.5,-60.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4019 + - uid: 4020 components: - pos: 50.5,-60.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4020 + - uid: 4021 components: - pos: 50.5,-53.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4021 + - uid: 4022 components: - pos: 51.5,-53.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4022 + - uid: 4023 components: - pos: 52.5,-53.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4023 + - uid: 4024 components: - pos: 52.5,-52.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4024 + - uid: 4025 components: - pos: 52.5,-51.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4025 + - uid: 4026 components: - pos: 50.5,-50.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4026 + - uid: 4027 components: - pos: 48.5,-57.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4027 + - uid: 4028 components: - pos: 47.5,-57.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4028 + - uid: 4029 components: - pos: 46.5,-57.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4029 + - uid: 4030 components: - pos: 45.5,-57.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4030 + - uid: 4031 components: - pos: 51.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4031 + - uid: 4032 components: - pos: 51.5,-55.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4032 + - uid: 4033 components: - pos: 51.5,-56.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4033 + - uid: 4034 components: - pos: 49.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4034 + - uid: 4035 components: - pos: 32.5,15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4035 + - uid: 4036 components: - pos: -20.5,0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4036 + - uid: 4037 components: - pos: -21.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4037 + - uid: 4038 components: - pos: -21.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4038 + - uid: 4039 components: - pos: -20.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4039 + - uid: 4040 components: - pos: -19.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4040 + - uid: 4041 components: - pos: -19.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4041 + - uid: 4042 components: - pos: -18.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4042 + - uid: 4043 components: - pos: -17.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4043 + - uid: 4044 components: - pos: -17.5,3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4044 + - uid: 4045 components: - pos: -19.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4045 + - uid: 4046 components: - pos: -19.5,-2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4046 + - uid: 4047 components: - pos: -19.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4047 + - uid: 4048 components: - pos: -20.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4048 + - uid: 4049 components: - pos: -21.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4049 + - uid: 4050 components: - pos: -21.5,3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4050 + - uid: 4051 components: - pos: -18.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4051 + - uid: 4052 components: - pos: 57.5,6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4052 + - uid: 4053 components: - pos: 18.5,-81.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4053 + - uid: 4054 components: - pos: -29.5,-9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4054 + - uid: 4055 components: - pos: -29.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4055 + - uid: 4056 components: - pos: -29.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4056 + - uid: 4057 components: - pos: -29.5,-12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4057 + - uid: 4058 components: - pos: -28.5,-12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4058 + - uid: 4059 components: - pos: -27.5,-12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4059 + - uid: 4060 components: - pos: -26.5,-12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4060 + - uid: 4061 components: - pos: -25.5,-12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4061 + - uid: 4062 components: - pos: -24.5,-12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4062 + - uid: 4063 components: - pos: -23.5,-12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4063 + - uid: 4064 components: - pos: -22.5,-12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4064 + - uid: 4065 components: - pos: -21.5,-12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4065 + - uid: 4066 components: - pos: -20.5,-12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4066 + - uid: 4067 components: - pos: -19.5,-12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4067 + - uid: 4068 components: - pos: -24.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4068 + - uid: 4069 components: - pos: -24.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4069 + - uid: 4070 components: - pos: -24.5,-9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4070 + - uid: 4071 components: - pos: -19.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4071 + - uid: 4072 components: - pos: -19.5,-14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4072 + - uid: 4073 components: - pos: -19.5,-15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4073 + - uid: 4074 components: - pos: -19.5,-16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4074 + - uid: 4075 components: - pos: -19.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4075 + - uid: 4076 components: - pos: -19.5,-18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4076 + - uid: 4077 components: - pos: -19.5,-19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4077 + - uid: 4078 components: - pos: -19.5,-20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4078 + - uid: 4079 components: - pos: -19.5,-21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4079 + - uid: 4080 components: - pos: -19.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4080 + - uid: 4081 components: - pos: -20.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4081 + - uid: 4082 components: - pos: -21.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4082 + - uid: 4083 components: - pos: -23.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4083 + - uid: 4084 components: - pos: -24.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4084 + - uid: 4085 components: - pos: -25.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4085 + - uid: 4086 components: - pos: -26.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4086 + - uid: 4087 components: - pos: -27.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4087 + - uid: 4088 components: - pos: -28.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4088 + - uid: 4089 components: - pos: -29.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4089 + - uid: 4090 components: - pos: -20.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4090 + - uid: 4091 components: - pos: -21.5,-22.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4091 + - uid: 4092 components: - pos: -22.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4092 + - uid: 4093 components: - pos: -23.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4093 + - uid: 4094 components: - pos: -24.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4094 + - uid: 4095 components: - pos: -25.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4095 + - uid: 4096 components: - pos: -26.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4096 + - uid: 4097 components: - pos: -27.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4097 + - uid: 4098 components: - pos: -28.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4098 + - uid: 4099 components: - pos: -29.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4099 + - uid: 4100 components: - pos: -19.5,-23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4100 + - uid: 4101 components: - pos: -19.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4101 + - uid: 4102 components: - pos: -19.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4102 + - uid: 4103 components: - pos: -19.5,-9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4103 + - uid: 4104 components: - pos: -19.5,-8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4104 + - uid: 4105 components: - pos: -19.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4105 + - uid: 4106 components: - pos: -19.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4106 + - uid: 4107 components: - pos: -18.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4107 + - uid: 4108 components: - pos: -17.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4108 + - uid: 4109 components: - pos: -16.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4109 + - uid: 4110 components: - pos: -15.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4110 + - uid: 4111 components: - pos: -14.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4111 + - uid: 4112 components: - pos: -13.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4112 + - uid: 4113 components: - pos: -13.5,-4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4113 + - uid: 4114 components: - pos: -13.5,3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4114 + - uid: 4115 components: - pos: -19.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4115 + - uid: 4116 components: - pos: -20.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4116 + - uid: 4117 components: - pos: -21.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4117 + - uid: 4118 components: - pos: -22.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4118 + - uid: 4119 components: - pos: -20.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4119 + - uid: 4120 components: - pos: -21.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4120 + - uid: 4121 components: - pos: -22.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4121 + - uid: 4122 components: - pos: -23.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4122 + - uid: 4123 components: - pos: -24.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4123 + - uid: 4124 components: - pos: -25.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4124 + - uid: 4125 components: - pos: -25.5,-4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4125 + - uid: 4126 components: - pos: -25.5,-3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4126 + - uid: 4127 components: - pos: -25.5,-2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4127 + - uid: 4128 components: - pos: -25.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4128 + - uid: 4129 components: - pos: -25.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4129 + - uid: 4130 components: - pos: -25.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4130 + - uid: 4131 components: - pos: -24.5,-9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4131 + - uid: 4132 components: - pos: -23.5,-9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4132 + - uid: 4133 components: - pos: -29.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4133 + - uid: 4134 components: - pos: -29.5,-14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4134 + - uid: 4135 components: - pos: -29.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4135 + - uid: 4136 components: - pos: 45.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4136 + - uid: 4137 components: - pos: 30.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4137 + - uid: 4138 components: - pos: 31.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4138 + - uid: 4139 components: - pos: 32.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4139 + - uid: 4140 components: - pos: 33.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4140 + - uid: 4141 components: - pos: 34.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4141 + - uid: 4142 components: - pos: 38.5,-36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4142 + - uid: 4143 components: - pos: 38.5,-37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4143 + - uid: 4144 components: - pos: 51.5,-57.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4144 + - uid: 4145 components: - pos: 51.5,-58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4145 + - uid: 4146 components: - pos: 52.5,-58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4146 + - uid: 4147 components: - pos: 53.5,-58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4147 + - uid: 4148 components: - pos: 54.5,-58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4148 + - uid: 4149 components: - pos: 55.5,-58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4149 + - uid: 4150 components: - pos: 55.5,-59.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4150 + - uid: 4151 components: - pos: 55.5,-60.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4151 + - uid: 4152 components: - pos: 56.5,-60.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4152 + - uid: 4153 components: - pos: -35.5,-39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4153 + - uid: 4154 components: - pos: 29.5,-72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4154 + - uid: 4155 components: - pos: 47.5,-82.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4155 + - uid: 4156 components: - pos: 37.5,-57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4156 + - uid: 4157 components: - pos: 37.5,-58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4157 + - uid: 4158 components: - pos: 37.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4158 + - uid: 4159 components: - pos: 38.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4159 + - uid: 4160 components: - pos: 39.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4160 + - uid: 4161 components: - pos: 40.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4161 + - uid: 4162 components: - pos: 40.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4162 + - uid: 4163 components: - pos: 40.5,-60.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4163 + - uid: 4164 components: - pos: 40.5,-61.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4164 + - uid: 4165 components: - pos: 40.5,-62.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4165 + - uid: 4166 components: - pos: 40.5,-63.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4166 + - uid: 4167 components: - pos: 40.5,-64.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4167 + - uid: 4168 components: - pos: 40.5,-65.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4168 + - uid: 4169 components: - pos: 40.5,-66.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4169 + - uid: 4170 components: - pos: 40.5,-67.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4170 + - uid: 4171 components: - pos: 40.5,-68.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4171 + - uid: 4172 components: - pos: 40.5,-69.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4172 + - uid: 4173 components: - pos: 40.5,-70.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4173 + - uid: 4174 components: - pos: 40.5,-71.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4174 + - uid: 4175 components: - pos: 40.5,-72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4175 + - uid: 4176 components: - pos: 41.5,-72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4176 + - uid: 4177 components: - pos: 42.5,-72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4177 + - uid: 4178 components: - pos: 43.5,-72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4178 + - uid: 4179 components: - pos: 44.5,-72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4179 + - uid: 4180 components: - pos: 44.5,-73.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4180 + - uid: 4181 components: - pos: 44.5,-74.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4181 + - uid: 4182 components: - pos: 42.5,-73.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4182 + - uid: 4183 components: - pos: 42.5,-74.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4183 + - uid: 4184 components: - pos: 39.5,-72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4184 + - uid: 4185 components: - pos: 38.5,-72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4185 + - uid: 4186 components: - pos: 37.5,-72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4186 + - uid: 4187 components: - pos: 36.5,-72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4187 + - uid: 4188 components: - pos: 35.5,-72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4188 + - uid: 4189 components: - pos: 34.5,-72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4189 + - uid: 4190 components: - pos: 34.5,-73.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4190 + - uid: 4191 components: - pos: 34.5,-74.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4191 + - uid: 4192 components: - pos: 36.5,-73.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4192 + - uid: 4193 components: - pos: 36.5,-74.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4193 + - uid: 4194 components: - pos: 44.5,-71.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4194 + - uid: 4195 components: - pos: 44.5,-70.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4195 + - uid: 4196 components: - pos: 34.5,-71.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4196 + - uid: 4197 components: - pos: 34.5,-70.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4197 + - uid: 4198 components: - pos: 41.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4198 + - uid: 4199 components: - pos: 42.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4199 + - uid: 4200 components: - pos: 43.5,-59.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4200 + - uid: 4201 components: - pos: 39.5,-58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4201 + - uid: 4202 components: - pos: 39.5,-57.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4202 + - uid: 4203 components: - pos: 39.5,-56.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4203 + - uid: 4204 components: - pos: 39.5,-55.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4204 + - uid: 4205 components: - pos: 39.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4205 + - uid: 4206 components: - pos: 40.5,-55.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4206 + - uid: 4207 components: - pos: 36.5,-58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4207 + - uid: 4208 components: - pos: 36.5,-56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4208 + - uid: 4209 components: - pos: 36.5,-54.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4209 + - uid: 4210 components: - pos: 36.5,-57.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4210 + - uid: 4211 components: - pos: 36.5,-55.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4211 + - uid: 4212 components: - pos: 36.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4212 + - uid: 4213 components: - pos: 36.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4213 + - uid: 4214 components: - pos: 36.5,-51.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4214 + - uid: 4215 components: - pos: 37.5,-51.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4215 + - uid: 4216 components: - pos: 38.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4216 + - uid: 4217 components: - pos: 39.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4217 + - uid: 4218 components: - pos: 40.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4218 + - uid: 4219 components: - pos: 40.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4219 + - uid: 4220 components: - pos: 40.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4220 + - uid: 4221 components: - pos: 39.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4221 + - uid: 4222 components: - pos: 39.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4222 + - uid: 4223 components: - pos: 38.5,-48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4223 + - uid: 4224 components: - pos: 41.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4224 + - uid: 4225 components: - pos: 42.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4225 + - uid: 4226 components: - pos: 43.5,-51.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4226 + - uid: 4227 components: - pos: 43.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4227 + - uid: 4228 components: - pos: 43.5,-53.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4228 + - uid: 4229 components: - pos: 43.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4229 + - uid: 4230 components: - pos: 31.5,-72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4230 + - uid: 4231 components: - pos: 27.5,-72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4231 + - uid: 4232 components: - pos: 28.5,-72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4232 + - uid: 4233 components: - pos: 22.5,-83.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4233 + - uid: 4234 components: - pos: 23.5,-72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4234 + - uid: 4235 components: - pos: 25.5,-70.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4235 + - uid: 4236 components: - pos: 25.5,-69.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4236 + - uid: 4237 components: - pos: 13.5,-83.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4237 + - uid: 4238 components: - pos: 26.5,-72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4238 + - uid: 4239 components: - pos: 25.5,-72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4239 + - uid: 4240 components: - pos: 25.5,-71.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4240 + - uid: 4241 components: - pos: 20.5,-83.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4241 + - uid: 4242 components: - pos: 18.5,-83.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4242 + - uid: 4243 components: - pos: 24.5,-72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4243 + - uid: 4244 components: - pos: 13.5,-86.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4244 + - uid: 4245 components: - pos: 21.5,-83.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4245 + - uid: 4246 components: - pos: 14.5,-81.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4246 + - uid: 4247 components: - pos: 12.5,-81.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4247 + - uid: 4248 components: - pos: 17.5,-81.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4248 + - uid: 4249 components: - pos: 14.5,-86.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4249 + - uid: 4250 components: - pos: 10.5,-70.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4250 + - uid: 4251 components: - pos: 32.5,-72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4251 + - uid: 4252 components: - pos: 30.5,-75.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4252 + - uid: 4253 components: - pos: 30.5,-73.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4253 + - uid: 4254 components: - pos: 30.5,-76.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4254 + - uid: 4255 components: - pos: 30.5,-74.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4255 + - uid: 4256 components: - pos: 33.5,-72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4256 + - uid: 4257 components: - pos: 48.5,-73.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4257 + - uid: 4258 components: - pos: 42.5,-75.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4258 + - uid: 4259 components: - pos: 36.5,-75.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4259 + - uid: 4260 components: - pos: 30.5,-78.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4260 + - uid: 4261 components: - pos: 46.5,-82.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4261 + - uid: 4262 components: - pos: 48.5,-91.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4262 + - uid: 4263 components: - pos: 21.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4263 + - uid: 4264 components: - pos: 20.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4264 + - uid: 4265 components: - pos: 19.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4265 + - uid: 4266 components: - pos: 18.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4266 + - uid: 4267 components: - pos: 17.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4267 + - uid: 4268 components: - pos: 16.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4268 + - uid: 4269 components: - pos: 15.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4269 + - uid: 4270 components: - pos: 14.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4270 + - uid: 4271 components: - pos: 13.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4271 + - uid: 4272 components: - pos: 12.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4272 + - uid: 4273 components: - pos: 11.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4273 + - uid: 4274 components: - pos: 11.5,-72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4274 + - uid: 4275 components: - pos: 11.5,-71.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4275 + - uid: 4276 components: - pos: 11.5,-70.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4276 + - uid: 4277 components: - pos: 19.5,-83.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4277 + - uid: 4278 components: - pos: 48.5,-89.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4278 + - uid: 4279 components: - pos: 23.5,-83.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4279 + - uid: 4280 components: - pos: 9.5,-70.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4280 + - uid: 4281 components: - pos: 16.5,-86.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4281 + - uid: 4282 components: - pos: 15.5,-86.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4282 + - uid: 4283 components: - pos: 12.5,-86.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4283 + - uid: 4284 components: - pos: 17.5,-86.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4284 + - uid: 4285 components: - pos: -13.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4285 + - uid: 4286 components: - pos: -14.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4286 + - uid: 4287 components: - pos: -15.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4287 + - uid: 4288 components: - pos: -16.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4288 + - uid: 4289 components: - pos: -17.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4289 + - uid: 4290 components: - pos: -18.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4290 + - uid: 4291 components: - pos: -19.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4291 + - uid: 4292 components: - pos: -19.5,-27.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4292 + - uid: 4293 components: - pos: -19.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4293 + - uid: 4294 components: - pos: -19.5,-29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4294 + - uid: 4295 components: - pos: -19.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4295 + - uid: 4296 components: - pos: -19.5,-31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4296 + - uid: 4297 components: - pos: -19.5,-32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4297 + - uid: 4298 components: - pos: -19.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4298 + - uid: 4299 components: - pos: -19.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4299 + - uid: 4300 components: - pos: -19.5,-35.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4300 + - uid: 4301 components: - pos: -19.5,-36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4301 + - uid: 4302 components: - pos: -19.5,-37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4302 + - uid: 4303 components: - pos: -20.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4303 + - uid: 4304 components: - pos: -18.5,-29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4304 + - uid: 4305 components: - pos: -13.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4305 + - uid: 4306 components: - pos: -14.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4306 + - uid: 4307 components: - pos: -15.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4307 + - uid: 4308 components: - pos: -16.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4308 + - uid: 4309 components: - pos: -17.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4309 + - uid: 4310 components: - pos: -18.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4310 + - uid: 4311 components: - pos: -19.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4311 + - uid: 4312 components: - pos: -19.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4312 + - uid: 4313 components: - pos: -19.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4313 + - uid: 4314 components: - pos: -19.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4314 + - uid: 4315 components: - pos: -19.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4315 + - uid: 4316 components: - pos: -19.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4316 + - uid: 4317 components: - pos: -20.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4317 + - uid: 4318 components: - pos: -19.5,-48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4318 + - uid: 4319 components: - pos: -20.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4319 + - uid: 4320 components: - pos: -19.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4320 + - uid: 4321 components: - pos: 30.5,-89.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4321 + - uid: 4322 components: - pos: 48.5,-72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4322 + - uid: 4323 components: - pos: 30.5,-90.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4323 + - uid: 4324 components: - pos: -37.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4324 + - uid: 4325 components: - pos: -29.5,-21.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4325 + - uid: 4326 components: - pos: -30.5,-21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4326 + - uid: 4327 components: - pos: -31.5,-21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4327 + - uid: 4328 components: - pos: -32.5,-21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4328 + - uid: 4329 components: - pos: -32.5,-20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4329 + - uid: 4330 components: - pos: -32.5,-19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4330 + - uid: 4331 components: - pos: -32.5,-18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4331 + - uid: 4332 components: - pos: -32.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4332 + - uid: 4333 components: - pos: -32.5,-16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4333 + - uid: 4334 components: - pos: -32.5,-15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4334 + - uid: 4335 components: - pos: -32.5,-14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4335 + - uid: 4336 components: - pos: -32.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4336 + - uid: 4337 components: - pos: -32.5,-12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4337 + - uid: 4338 components: - pos: -32.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4338 + - uid: 4339 components: - pos: -32.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4339 + - uid: 4340 components: - pos: -38.5,-7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4340 + - uid: 4341 components: - pos: -31.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4341 + - uid: 4342 components: - pos: -33.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4342 + - uid: 4343 components: - pos: -34.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4343 + - uid: 4344 components: - pos: -35.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4344 + - uid: 4345 components: - pos: -36.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4345 + - uid: 4346 components: - pos: -37.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4346 + - uid: 4347 components: - pos: -38.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4347 + - uid: 4348 components: - pos: -39.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4348 + - uid: 4349 components: - pos: -37.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4349 + - uid: 4350 components: - pos: -37.5,-12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4350 + - uid: 4351 components: - pos: -37.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4351 + - uid: 4352 components: - pos: -38.5,-9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4352 + - uid: 4353 components: - pos: -35.5,-9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4353 + - uid: 4354 components: - pos: -43.5,-84.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4354 + - uid: 4355 components: - pos: -33.5,-16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4355 + - uid: 4356 components: - pos: -34.5,-16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4356 + - uid: 4357 components: - pos: -35.5,-16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4357 + - uid: 4358 components: - pos: -36.5,-16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4358 + - uid: 4359 components: - pos: -36.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4359 + - uid: 4360 components: - pos: -35.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4360 + - uid: 4361 components: - pos: -35.5,-12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4361 + - uid: 4362 components: - pos: -32.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4362 + - uid: 4363 components: - pos: -32.5,-23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4363 + - uid: 4364 components: - pos: -32.5,-24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4364 + - uid: 4365 components: - pos: -32.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4365 + - uid: 4366 components: - pos: -32.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4366 + - uid: 4367 components: - pos: -32.5,-27.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4367 + - uid: 4368 components: - pos: -32.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4368 + - uid: 4369 components: - pos: -40.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4369 + - uid: 4370 components: - pos: -41.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4370 + - uid: 4371 components: - pos: -41.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4371 + - uid: 4372 components: - pos: -41.5,-12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4372 + - uid: 4373 components: - pos: -41.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4373 + - uid: 4374 components: - pos: -41.5,-14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4374 + - uid: 4375 components: - pos: -41.5,-15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4375 + - uid: 4376 components: - pos: -41.5,-16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4376 + - uid: 4377 components: - pos: -40.5,-16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4377 + - uid: 4378 components: - pos: -31.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4378 + - uid: 4379 components: - pos: -30.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4379 + - uid: 4380 components: - pos: -29.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4380 + - uid: 4381 components: - pos: -28.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4381 + - uid: 4382 components: - pos: -27.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4382 + - uid: 4383 components: - pos: -26.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4383 + - uid: 4384 components: - pos: -25.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4384 + - uid: 4385 components: - pos: 3.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4385 + - uid: 4386 components: - pos: 3.5,-50.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4386 + - uid: 4387 components: - pos: -18.5,14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4387 + - uid: 4388 components: - pos: -18.5,13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4388 + - uid: 4389 components: - pos: -18.5,12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4389 + - uid: 4390 components: - pos: -18.5,11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4390 + - uid: 4391 components: - pos: -18.5,10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4391 + - uid: 4392 components: - pos: -18.5,9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4392 + - uid: 4393 components: - pos: -18.5,8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4393 + - uid: 4394 components: - pos: -18.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4394 + - uid: 4395 components: - pos: -17.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4395 + - uid: 4396 components: - pos: -16.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4396 + - uid: 4397 components: - pos: -15.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4397 + - uid: 4398 components: - pos: -14.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4398 + - uid: 4399 components: - pos: -13.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4399 + - uid: 4400 components: - pos: -12.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4400 + - uid: 4401 components: - pos: -12.5,6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4401 + - uid: 4402 components: - pos: -12.5,5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4402 + - uid: 4403 components: - pos: -12.5,4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4403 + - uid: 4404 components: - pos: -12.5,3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4404 + - uid: 4405 components: - pos: -12.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4405 + - uid: 4406 components: - pos: -12.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4406 + - uid: 4407 components: - pos: -12.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4407 + - uid: 4408 components: - pos: -12.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4408 + - uid: 4409 components: - pos: -12.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4409 + - uid: 4410 components: - pos: -12.5,-2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4410 + - uid: 4411 components: - pos: -13.5,-2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4411 + - uid: 4412 components: - pos: -12.5,-4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4412 + - uid: 4413 components: - pos: -23.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4413 + - uid: 4414 components: - pos: -24.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4414 + - uid: 4415 components: - pos: -25.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4415 + - uid: 4416 components: - pos: -25.5,6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4416 + - uid: 4417 components: - pos: -25.5,5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4417 + - uid: 4418 components: - pos: -25.5,4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4418 + - uid: 4419 components: - pos: -25.5,3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4419 + - uid: 4420 components: - pos: -25.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4420 + - uid: 4421 components: - pos: -17.5,10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4421 + - uid: 4422 components: - pos: -16.5,10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4422 + - uid: 4423 components: - pos: -15.5,10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4423 + - uid: 4424 components: - pos: -14.5,10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4424 + - uid: 4425 components: - pos: -14.5,11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4425 + - uid: 4426 components: - pos: -14.5,12.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4426 + - uid: 4427 components: - pos: -14.5,13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4427 + - uid: 4428 components: - pos: -14.5,14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4428 + - uid: 4429 components: - pos: -14.5,15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4429 + - uid: 4430 components: - pos: -13.5,15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4430 + - uid: 4431 components: - pos: -12.5,15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4431 + - uid: 4432 components: - pos: -11.5,15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4432 + - uid: 4433 components: - pos: -10.5,15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4433 + - uid: 4434 components: - pos: -9.5,15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4434 + - uid: 4435 components: - pos: -8.5,16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4435 + - uid: 4436 components: - pos: -7.5,16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4436 + - uid: 4437 components: - pos: -6.5,16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4437 + - uid: 4438 components: - pos: -5.5,16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4438 + - uid: 4439 components: - pos: -4.5,16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4439 + - uid: 4440 components: - pos: -42.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4440 + - uid: 4441 components: - pos: -43.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4441 + - uid: 4442 components: - pos: -44.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4442 + - uid: 4443 components: - pos: -45.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4443 + - uid: 4444 components: - pos: -46.5,-10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4444 + - uid: 4445 components: - pos: -46.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4445 + - uid: 4446 components: - pos: -46.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4446 + - uid: 4447 components: - pos: -46.5,-12.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4447 + - uid: 4448 components: - pos: -46.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4448 + - uid: 4449 components: - pos: -46.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4449 + - uid: 4450 components: - pos: -46.5,-15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4450 + - uid: 4451 components: - pos: -46.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4451 + - uid: 4452 components: - pos: -47.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4452 + - uid: 4453 components: - pos: -48.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4453 + - uid: 4454 components: - pos: -49.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4454 + - uid: 4455 components: - pos: -45.5,-16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4455 + - uid: 4456 components: - pos: -45.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4456 + - uid: 4457 components: - pos: -45.5,-18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4457 + - uid: 4458 components: - pos: -45.5,-19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4458 + - uid: 4459 components: - pos: -45.5,-20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4459 + - uid: 4460 components: - pos: -45.5,-21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4460 + - uid: 4461 components: - pos: -46.5,-20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4461 + - uid: 4462 components: - pos: -47.5,-20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4462 + - uid: 4463 components: - pos: -47.5,-21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4463 + - uid: 4464 components: - pos: -45.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4464 + - uid: 4465 components: - pos: -48.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4465 + - uid: 4466 components: - pos: -47.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4466 + - uid: 4467 components: - pos: -38.5,-8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4467 + - uid: 4468 components: - pos: -35.5,-7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4468 + - uid: 4469 components: - pos: -35.5,-8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4469 + - uid: 4470 components: - pos: -34.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4470 + - uid: 4471 components: - pos: -35.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4471 + - uid: 4472 components: - pos: -36.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4472 + - uid: 4473 components: - pos: -37.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4473 + - uid: 4474 components: - pos: -38.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4474 + - uid: 4475 components: - pos: -39.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4475 + - uid: 4476 components: - pos: -40.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4476 + - uid: 4477 components: - pos: -41.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4477 + - uid: 4478 components: - pos: -38.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4478 + - uid: 4479 components: - pos: -52.5,-31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4479 + - uid: 4480 components: - pos: -55.5,-28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4480 + - uid: 4481 components: - pos: -55.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4481 + - uid: 4482 components: - pos: -57.5,-28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4482 + - uid: 4483 components: - pos: -39.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4483 + - uid: 4484 components: - pos: -39.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4484 + - uid: 4485 components: - pos: -50.5,-15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4485 + - uid: 4486 components: - pos: -50.5,-16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4486 + - uid: 4487 components: - pos: -51.5,-16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4487 + - uid: 4488 components: - pos: -51.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4488 + - uid: 4489 components: - pos: -51.5,-18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4489 + - uid: 4490 components: - pos: -51.5,-19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4490 + - uid: 4491 components: - pos: -51.5,-20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4491 + - uid: 4492 components: - pos: -51.5,-21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4492 + - uid: 4493 components: - pos: -51.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4493 + - uid: 4494 components: - pos: -51.5,-23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4494 + - uid: 4495 components: - pos: -51.5,-24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4495 + - uid: 4496 components: - pos: -51.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4496 + - uid: 4497 components: - pos: -50.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4497 + - uid: 4498 components: - pos: -49.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4498 + - uid: 4499 components: - pos: -48.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4499 + - uid: 4500 components: - pos: -52.5,-19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4500 + - uid: 4501 components: - pos: -53.5,-19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4501 + - uid: 4502 components: - pos: -54.5,-19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4502 + - uid: 4503 components: - pos: -54.5,-20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4503 + - uid: 4504 components: - pos: -54.5,-21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4504 + - uid: 4505 components: - pos: -54.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4505 + - uid: 4506 components: - pos: -54.5,-23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4506 + - uid: 4507 components: - pos: -54.5,-24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4507 + - uid: 4508 components: - pos: -55.5,-24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4508 + - uid: 4509 components: - pos: -56.5,-24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4509 + - uid: 4510 components: - pos: -57.5,-24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4510 + - uid: 4511 components: - pos: -58.5,-24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4511 + - uid: 4512 components: - pos: -59.5,-24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4512 + - uid: 4513 components: - pos: -60.5,-24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4513 + - uid: 4514 components: - pos: -61.5,-24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4514 + - uid: 4515 components: - pos: -62.5,-24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4515 + - uid: 4516 components: - pos: -63.5,-24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4516 + - uid: 4517 components: - pos: -64.5,-24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4517 + - uid: 4518 components: - pos: -64.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4518 + - uid: 4519 components: - pos: -64.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4519 + - uid: 4520 components: - pos: -64.5,-27.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4520 + - uid: 4521 components: - pos: -64.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4521 + - uid: 4522 components: - pos: -64.5,-29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4522 + - uid: 4523 components: - pos: -64.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4523 + - uid: 4524 components: - pos: -65.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4524 + - uid: 4525 components: - pos: -66.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4525 + - uid: 4526 components: - pos: -67.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4526 + - uid: 4527 components: - pos: -68.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4527 + - uid: 4528 components: - pos: -65.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4528 + - uid: 4529 components: - pos: -65.5,-31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4529 + - uid: 4530 components: - pos: -65.5,-32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4530 + - uid: 4531 components: - pos: -68.5,-31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4531 + - uid: 4532 components: - pos: -68.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4532 + - uid: 4533 components: - pos: -68.5,-27.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4533 + - uid: 4534 components: - pos: -68.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4534 + - uid: 4535 components: - pos: -68.5,-29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4535 + - uid: 4536 components: - pos: -54.5,-18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4536 + - uid: 4537 components: - pos: -54.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4537 + - uid: 4538 components: - pos: -54.5,-16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4538 + - uid: 4539 components: - pos: -54.5,-15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4539 + - uid: 4540 components: - pos: -54.5,-14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4540 + - uid: 4541 components: - pos: -54.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4541 + - uid: 4542 components: - pos: -54.5,-12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4542 + - uid: 4543 components: - pos: -54.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4543 + - uid: 4544 components: - pos: -54.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4544 + - uid: 4545 components: - pos: -54.5,-9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4545 + - uid: 4546 components: - pos: -54.5,-8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4546 + - uid: 4547 components: - pos: -54.5,-7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4547 + - uid: 4548 components: - pos: -54.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4548 + - uid: 4549 components: - pos: -53.5,-7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4549 + - uid: 4550 components: - pos: -52.5,-7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4550 + - uid: 4551 components: - pos: -51.5,-7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4551 + - uid: 4552 components: - pos: -52.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4552 + - uid: 4553 components: - pos: -56.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4553 + - uid: 4554 components: - pos: -55.5,-29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4554 + - uid: 4555 components: - pos: -39.5,-70.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4555 + - uid: 4556 components: - pos: 55.5,10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4556 + - uid: 4557 components: - pos: -35.5,-31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4557 + - uid: 4558 components: - pos: -35.5,-32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4558 + - uid: 4559 components: - pos: -35.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4559 + - uid: 4560 components: - pos: -35.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4560 + - uid: 4561 components: - pos: -36.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4561 + - uid: 4562 components: - pos: -37.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4562 + - uid: 4563 components: - pos: -38.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4563 + - uid: 4564 components: - pos: -39.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4564 + - uid: 4565 components: - pos: -40.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4565 + - uid: 4566 components: - pos: -41.5,-34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4566 + - uid: 4567 components: - pos: -42.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4567 + - uid: 4568 components: - pos: -43.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4568 + - uid: 4569 components: - pos: -39.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4569 + - uid: 4570 components: - pos: -41.5,-35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4570 + - uid: 4571 components: - pos: -41.5,-36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4571 + - uid: 4572 components: - pos: -41.5,-37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4572 + - uid: 4573 components: - pos: -41.5,-38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4573 + - uid: 4574 components: - pos: -41.5,-39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4574 + - uid: 4575 components: - pos: -42.5,-39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4575 + - uid: 4576 components: - pos: -43.5,-39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4576 + - uid: 4577 components: - pos: -44.5,-39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4577 + - uid: 4578 components: - pos: -45.5,-39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4578 + - uid: 4579 components: - pos: -46.5,-39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4579 + - uid: 4580 components: - pos: -47.5,-39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4580 + - uid: 4581 components: - pos: -47.5,-40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4581 + - uid: 4582 components: - pos: -47.5,-41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4582 + - uid: 4583 components: - pos: -48.5,-41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4583 + - uid: 4584 components: - pos: -49.5,-41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4584 + - uid: 4585 components: - pos: -50.5,-41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4585 + - uid: 4586 components: - pos: -51.5,-41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4586 + - uid: 4587 components: - pos: -51.5,-42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4587 + - uid: 4588 components: - pos: -51.5,-43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4588 + - uid: 4589 components: - pos: -51.5,-44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4589 + - uid: 4590 components: - pos: -51.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4590 + - uid: 4591 components: - pos: -51.5,-46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4591 + - uid: 4592 components: - pos: -51.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4592 + - uid: 4593 components: - pos: -51.5,-48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4593 + - uid: 4594 components: - pos: -51.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4594 + - uid: 4595 components: - pos: -51.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4595 + - uid: 4596 components: - pos: -51.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4596 + - uid: 4597 components: - pos: -51.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4597 + - uid: 4598 components: - pos: -51.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4598 + - uid: 4599 components: - pos: -51.5,-54.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4599 + - uid: 4600 components: - pos: -51.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4600 + - uid: 4601 components: - pos: -50.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4601 + - uid: 4602 components: - pos: -49.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4602 + - uid: 4603 components: - pos: -48.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4603 + - uid: 4604 components: - pos: -47.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4604 + - uid: 4605 components: - pos: -50.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4605 + - uid: 4606 components: - pos: -49.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4606 + - uid: 4607 components: - pos: -48.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4607 + - uid: 4608 components: - pos: -47.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4608 + - uid: 4609 components: - pos: -50.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4609 + - uid: 4610 components: - pos: -49.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4610 + - uid: 4611 components: - pos: -48.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4611 + - uid: 4612 components: - pos: -47.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4612 + - uid: 4613 components: - pos: -50.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4613 + - uid: 4614 components: - pos: -49.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4614 + - uid: 4615 components: - pos: -48.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4615 + - uid: 4616 components: - pos: -47.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4616 + - uid: 4617 components: - pos: -50.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4617 + - uid: 4618 components: - pos: -49.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4618 + - uid: 4619 components: - pos: -48.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4619 + - uid: 4620 components: - pos: -47.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4620 + - uid: 4621 components: - pos: -50.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4621 + - uid: 4622 components: - pos: -49.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4622 + - uid: 4623 components: - pos: -48.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4623 + - uid: 4624 components: - pos: -47.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4624 + - uid: 4625 components: - pos: -50.5,-43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4625 + - uid: 4626 components: - pos: -49.5,-43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4626 + - uid: 4627 components: - pos: -48.5,-43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4627 + - uid: 4628 components: - pos: -47.5,-43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4628 + - uid: 4629 components: - pos: -38.5,-35.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4629 + - uid: 4630 components: - pos: -38.5,-36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4630 + - uid: 4631 components: - pos: -38.5,-37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4631 + - uid: 4632 components: - pos: -38.5,-38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4632 + - uid: 4633 components: - pos: -38.5,-39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4633 + - uid: 4634 components: - pos: -34.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4634 + - uid: 4635 components: - pos: -33.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4635 + - uid: 4636 components: - pos: -32.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4636 + - uid: 4637 components: - pos: -31.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4637 + - uid: 4638 components: - pos: -30.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4638 + - uid: 4639 components: - pos: -29.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4639 + - uid: 4640 components: - pos: -28.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4640 + - uid: 4641 components: - pos: -27.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4641 + - uid: 4642 components: - pos: -26.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4642 + - uid: 4643 components: - pos: -25.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4643 + - uid: 4644 components: - pos: -24.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4644 + - uid: 4645 components: - pos: -23.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4645 + - uid: 4646 components: - pos: -23.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4646 + - uid: 4647 components: - pos: -32.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4647 + - uid: 4648 components: - pos: -32.5,-32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4648 + - uid: 4649 components: - pos: -31.5,-35.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4649 + - uid: 4650 components: - pos: -31.5,-36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4650 + - uid: 4651 components: - pos: -31.5,-37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4651 + - uid: 4652 components: - pos: -31.5,-38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4652 + - uid: 4653 components: - pos: -31.5,-39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4653 + - uid: 4654 components: - pos: -31.5,-40.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4654 + - uid: 4655 components: - pos: -32.5,-40.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4655 + - uid: 4656 components: - pos: -33.5,-40.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4656 + - uid: 4657 components: - pos: -34.5,-40.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4657 + - uid: 4658 components: - pos: -35.5,-40.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4658 + - uid: 4659 components: - pos: -35.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4659 + - uid: 4660 components: - pos: -35.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4660 + - uid: 4661 components: - pos: -35.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4661 + - uid: 4662 components: - pos: -35.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4662 + - uid: 4663 components: - pos: -35.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4663 + - uid: 4664 components: - pos: -35.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4664 + - uid: 4665 components: - pos: -35.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4665 + - uid: 4666 components: - pos: -35.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4666 + - uid: 4667 components: - pos: -35.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4667 + - uid: 4668 components: - pos: -35.5,-50.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4668 + - uid: 4669 components: - pos: -35.5,-51.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4669 + - uid: 4670 components: - pos: -35.5,-52.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4670 + - uid: 4671 components: - pos: -35.5,-53.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4671 + - uid: 4672 components: - pos: -35.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4672 + - uid: 4673 components: - pos: -35.5,-55.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4673 + - uid: 4674 components: - pos: -36.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4674 + - uid: 4675 components: - pos: -37.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4675 + - uid: 4676 components: - pos: -36.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4676 + - uid: 4677 components: - pos: -37.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4677 + - uid: 4678 components: - pos: 55.5,11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4678 + - uid: 4679 components: - pos: -63.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4679 + - uid: 4680 components: - pos: -52.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4680 + - uid: 4681 components: - pos: -52.5,-29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4681 + - uid: 4682 components: - pos: -52.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4682 + - uid: 4683 components: - pos: -57.5,-18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4683 + - uid: 4684 components: - pos: -55.5,-18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4684 + - uid: 4685 components: - pos: -41.5,-40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4685 + - uid: 4686 components: - pos: -41.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4686 + - uid: 4687 components: - pos: -46.5,-40.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4687 + - uid: 4688 components: - pos: -46.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4688 + - uid: 4689 components: - pos: -46.5,-42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4689 + - uid: 4690 components: - pos: -46.5,-43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4690 + - uid: 4691 components: - pos: -46.5,-44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4691 + - uid: 4692 components: - pos: -46.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4692 + - uid: 4693 components: - pos: -25.5,-73.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4693 + - uid: 4694 components: - pos: -21.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4694 + - uid: 4695 components: - pos: -22.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4695 + - uid: 4696 components: - pos: -29.5,-73.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4696 + - uid: 4697 components: - pos: -39.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4697 + - uid: 4698 components: - pos: -29.5,-64.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4698 + - uid: 4699 components: - pos: -29.5,-65.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4699 + - uid: 4700 components: - pos: -29.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4700 + - uid: 4701 components: - pos: -30.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4701 + - uid: 4702 components: - pos: -31.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4702 + - uid: 4703 components: - pos: -32.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4703 + - uid: 4704 components: - pos: -33.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4704 + - uid: 4705 components: - pos: -34.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4705 + - uid: 4706 components: - pos: -35.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4706 + - uid: 4707 components: - pos: -35.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4707 + - uid: 4708 components: - pos: -36.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4708 + - uid: 4709 components: - pos: -37.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4709 + - uid: 4710 components: - pos: -38.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4710 + - uid: 4711 components: - pos: -39.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4711 + - uid: 4712 components: - pos: -39.5,-64.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4712 + - uid: 4713 components: - pos: -40.5,-64.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4713 + - uid: 4714 components: - pos: -41.5,-64.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4714 + - uid: 4715 components: - pos: -42.5,-64.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4715 + - uid: 4716 components: - pos: -43.5,-64.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4716 + - uid: 4717 components: - pos: -44.5,-64.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4717 + - uid: 4718 components: - pos: -45.5,-64.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4718 + - uid: 4719 components: - pos: -45.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4719 + - uid: 4720 components: - pos: -46.5,-63.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4720 + - uid: 4721 components: - pos: -47.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4721 + - uid: 4722 components: - pos: -47.5,-64.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4722 + - uid: 4723 components: - pos: -48.5,-64.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4723 + - uid: 4724 components: - pos: -49.5,-64.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4724 + - uid: 4725 components: - pos: -49.5,-65.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4725 + - uid: 4726 components: - pos: -49.5,-66.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4726 + - uid: 4727 components: - pos: -48.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4727 + - uid: 4728 components: - pos: -47.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4728 + - uid: 4729 components: - pos: -46.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4729 + - uid: 4730 components: - pos: -45.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4730 + - uid: 4731 components: - pos: -44.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4731 + - uid: 4732 components: - pos: -43.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4732 + - uid: 4733 components: - pos: -42.5,-66.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4733 + - uid: 4734 components: - pos: -42.5,-68.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4734 + - uid: 4735 components: - pos: -42.5,-69.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4735 + - uid: 4736 components: - pos: -42.5,-70.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4736 + - uid: 4737 components: - pos: -42.5,-71.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4737 + - uid: 4738 components: - pos: -43.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4738 + - uid: 4739 components: - pos: -44.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4739 + - uid: 4740 components: - pos: -45.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4740 + - uid: 4741 components: - pos: -45.5,-72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4741 + - uid: 4742 components: - pos: -45.5,-73.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4742 + - uid: 4743 components: - pos: -45.5,-74.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4743 + - uid: 4744 components: - pos: -45.5,-75.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4744 + - uid: 4745 components: - pos: -44.5,-75.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4745 + - uid: 4746 components: - pos: -43.5,-75.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4746 + - uid: 4747 components: - pos: -42.5,-76.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4747 + - uid: 4748 components: - pos: -42.5,-75.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4748 + - uid: 4749 components: - pos: -41.5,-76.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4749 + - uid: 4750 components: - pos: -40.5,-76.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4750 + - uid: 4751 components: - pos: -40.5,-75.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4751 + - uid: 4752 components: - pos: -39.5,-75.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4752 + - uid: 4753 components: - pos: -38.5,-75.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4753 + - uid: 4754 components: - pos: -37.5,-75.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4754 + - uid: 4755 components: - pos: -37.5,-76.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4755 + - uid: 4756 components: - pos: -37.5,-77.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4756 + - uid: 4757 components: - pos: -37.5,-78.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4757 + - uid: 4758 components: - pos: -37.5,-79.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4758 + - uid: 4759 components: - pos: -37.5,-80.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4759 + - uid: 4760 components: - pos: -37.5,-81.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4760 + - uid: 4761 components: - pos: -37.5,-82.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4761 + - uid: 4762 components: - pos: -38.5,-82.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4762 + - uid: 4763 components: - pos: -39.5,-82.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4763 + - uid: 4764 components: - pos: -40.5,-82.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4764 + - uid: 4765 components: - pos: -41.5,-82.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4765 + - uid: 4766 components: - pos: -42.5,-82.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4766 + - uid: 4767 components: - pos: -43.5,-82.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4767 + - uid: 4768 components: - pos: -44.5,-82.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4768 + - uid: 4769 components: - pos: -45.5,-82.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4769 + - uid: 4770 components: - pos: -46.5,-82.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4770 + - uid: 4771 components: - pos: -46.5,-83.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4771 + - uid: 4772 components: - pos: -42.5,-83.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4772 + - uid: 4773 components: - pos: -42.5,-84.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4773 + - uid: 4774 components: - pos: -37.5,-83.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4774 + - uid: 4775 components: - pos: -37.5,-84.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4775 + - uid: 4776 components: - pos: -46.5,-81.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4776 + - uid: 4777 components: - pos: -46.5,-80.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4777 + - uid: 4778 components: - pos: -46.5,-79.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4778 + - uid: 4779 components: - pos: -46.5,-78.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4779 + - uid: 4780 components: - pos: -46.5,-77.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4780 + - uid: 4781 components: - pos: -46.5,-76.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4781 + - uid: 4782 components: - pos: -47.5,-76.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4782 + - uid: 4783 components: - pos: -48.5,-76.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4783 + - uid: 4784 components: - pos: -49.5,-76.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4784 + - uid: 4785 components: - pos: -50.5,-76.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4785 + - uid: 4786 components: - pos: -51.5,-76.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4786 + - uid: 4787 components: - pos: -52.5,-76.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4787 + - uid: 4788 components: - pos: -53.5,-76.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4788 + - uid: 4789 components: - pos: -54.5,-76.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4789 + - uid: 4790 components: - pos: -55.5,-76.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4790 + - uid: 4791 components: - pos: -55.5,-77.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4791 + - uid: 4792 components: - pos: -55.5,-78.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4792 + - uid: 4793 components: - pos: -55.5,-79.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4793 + - uid: 4794 components: - pos: -55.5,-80.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4794 + - uid: 4795 components: - pos: -55.5,-81.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4795 + - uid: 4796 components: - pos: -55.5,-75.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4796 + - uid: 4797 components: - pos: -55.5,-74.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4797 + - uid: 4798 components: - pos: -55.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4798 + - uid: 4799 components: - pos: -55.5,-72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4799 + - uid: 4800 components: - pos: -55.5,-71.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4800 + - uid: 4801 components: - pos: -54.5,-73.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4801 + - uid: 4802 components: - pos: -53.5,-73.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4802 + - uid: 4803 components: - pos: -54.5,-79.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4803 + - uid: 4804 components: - pos: -53.5,-79.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4804 + - uid: 4805 components: - pos: -56.5,-71.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4805 + - uid: 4806 components: - pos: -57.5,-71.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4806 + - uid: 4807 components: - pos: -56.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4807 + - uid: 4808 components: - pos: -57.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4808 + - uid: 4809 components: - pos: -56.5,-79.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4809 + - uid: 4810 components: - pos: -57.5,-79.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4810 + - uid: 4811 components: - pos: -56.5,-81.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4811 + - uid: 4812 components: - pos: -57.5,-81.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4812 + - uid: 4813 components: - pos: -55.5,-82.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4813 + - uid: 4814 components: - pos: -29.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4814 + - uid: 4815 components: - pos: -28.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4815 + - uid: 4816 components: - pos: -28.5,-62.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4816 + - uid: 4817 components: - pos: -28.5,-61.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4817 + - uid: 4818 components: - pos: -28.5,-60.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4818 + - uid: 4819 components: - pos: -28.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4819 + - uid: 4820 components: - pos: -28.5,-58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4820 + - uid: 4821 components: - pos: -28.5,-57.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4821 + - uid: 4822 components: - pos: -28.5,-56.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4822 + - uid: 4823 components: - pos: -28.5,-55.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4823 + - uid: 4824 components: - pos: -28.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4824 + - uid: 4825 components: - pos: -27.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4825 + - uid: 4826 components: - pos: -26.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4826 + - uid: 4827 components: - pos: -25.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4827 + - uid: 4828 components: - pos: -25.5,-53.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4828 + - uid: 4829 components: - pos: -25.5,-52.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4829 + - uid: 4830 components: - pos: -25.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4830 + - uid: 4831 components: - pos: -24.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4831 + - uid: 4832 components: - pos: -27.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4832 + - uid: 4833 components: - pos: -27.5,-64.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4833 + - uid: 4834 components: - pos: -23.5,-64.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4834 + - uid: 4835 components: - pos: -24.5,-64.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4835 + - uid: 4836 components: - pos: -25.5,-64.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4836 + - uid: 4837 components: - pos: -26.5,-64.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4837 + - uid: 4838 components: - pos: -23.5,-66.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4838 + - uid: 4839 components: - pos: -23.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4839 + - uid: 4840 components: - pos: -42.5,-72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4840 + - uid: 4841 components: - pos: -41.5,-72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4841 + - uid: 4842 components: - pos: -40.5,-72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4842 + - uid: 4843 components: - pos: -39.5,-72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4843 + - uid: 4844 components: - pos: -38.5,-72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4844 + - uid: 4845 components: - pos: -23.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4845 + - uid: 4846 components: - pos: -23.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4846 + - uid: 4847 components: - pos: -23.5,-44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4847 + - uid: 4848 components: - pos: -23.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4848 + - uid: 4849 components: - pos: -23.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4849 + - uid: 4850 components: - pos: -23.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4850 + - uid: 4851 components: - pos: -23.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4851 + - uid: 4852 components: - pos: -23.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4852 + - uid: 4853 components: - pos: -24.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4853 + - uid: 4854 components: - pos: -25.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4854 + - uid: 4855 components: - pos: -26.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4855 + - uid: 4856 components: - pos: -27.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4856 + - uid: 4857 components: - pos: -27.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4857 + - uid: 4858 components: - pos: -27.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4858 + - uid: 4859 components: - pos: -27.5,-46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4859 + - uid: 4860 components: - pos: -26.5,-46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4860 + - uid: 4861 components: - pos: -25.5,-46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4861 + - uid: 4862 components: - pos: -25.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4862 + - uid: 4863 components: - pos: -25.5,-44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4863 + - uid: 4864 components: - pos: -25.5,-43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4864 + - uid: 4865 components: - pos: -25.5,-42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4865 + - uid: 4866 components: - pos: -25.5,-41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4866 + - uid: 4867 components: - pos: -25.5,-40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4867 + - uid: 4868 components: - pos: -25.5,-39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4868 + - uid: 4869 components: - pos: -26.5,-41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4869 + - uid: 4870 components: - pos: -27.5,-41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4870 + - uid: 4871 components: - pos: -28.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4871 + - uid: 4872 components: - pos: -27.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4872 + - uid: 4873 components: - pos: -27.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4873 + - uid: 4874 components: - pos: -28.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4874 + - uid: 4875 components: - pos: -29.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4875 + - uid: 4876 components: - pos: -30.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4876 + - uid: 4877 components: - pos: -31.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4877 + - uid: 4878 components: - pos: -31.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4878 + - uid: 4879 components: - pos: -31.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4879 + - uid: 4880 components: - pos: -31.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4880 + - uid: 4881 components: - pos: -23.5,-51.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4881 + - uid: 4882 components: - pos: -30.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4882 + - uid: 4883 components: - pos: -30.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4883 + - uid: 4884 components: - pos: -30.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4884 + - uid: 4885 components: - pos: -22.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4885 + - uid: 4886 components: - pos: -19.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4886 + - uid: 4887 components: - pos: -20.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4887 + - uid: 4888 components: - pos: -22.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4888 + - uid: 4889 components: - pos: -22.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4889 + - uid: 4890 components: - pos: -22.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4890 + - uid: 4891 components: - pos: -22.5,-55.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4891 + - uid: 4892 components: - pos: -21.5,-52.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4892 + - uid: 4893 components: - pos: -55.5,-60.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4893 + - uid: 4894 components: - pos: 30.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4894 + - uid: 4895 components: - pos: 29.5,-14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4895 + - uid: 4896 components: - pos: 30.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4896 + - uid: 4897 components: - pos: 30.5,-12.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4897 + - uid: 4898 components: - pos: -1.5,-79.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4898 + - uid: 4899 components: - pos: 28.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4899 + - uid: 4900 components: - pos: -34.5,-55.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4900 + - uid: 4901 components: - pos: -33.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4901 + - uid: 4902 components: - pos: -34.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4902 + - uid: 4903 components: - pos: -35.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4903 + - uid: 4904 components: - pos: -35.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4904 + - uid: 4905 components: - pos: -35.5,-24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4905 + - uid: 4906 components: - pos: -36.5,-24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4906 + - uid: 4907 components: - pos: -37.5,-24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4907 + - uid: 4908 components: - pos: -37.5,-23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4908 + - uid: 4909 components: - pos: -37.5,-22.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4909 + - uid: 4910 components: - pos: -37.5,-21.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4910 + - uid: 4911 components: - pos: -37.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4911 + - uid: 4912 components: - pos: -38.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4912 + - uid: 4913 components: - pos: -39.5,-22.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4913 + - uid: 4914 components: - pos: -39.5,-23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4914 + - uid: 4915 components: - pos: -39.5,-24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4915 + - uid: 4916 components: - pos: -40.5,-24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4916 + - uid: 4917 components: - pos: -41.5,-24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4917 + - uid: 4918 components: - pos: -41.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4918 + - uid: 4919 components: - pos: -41.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4919 + - uid: 4920 components: - pos: -43.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4920 + - uid: 4921 components: - pos: -42.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4921 + - uid: 4922 components: - pos: -40.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4922 + - uid: 4923 components: - pos: -39.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4923 + - uid: 4924 components: - pos: -38.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4924 + - uid: 4925 components: - pos: -37.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4925 + - uid: 4926 components: - pos: -37.5,-27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4926 + - uid: 4927 components: - pos: -37.5,-28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4927 + - uid: 4928 components: - pos: -36.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4928 + - uid: 4929 components: - pos: -35.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4929 + - uid: 4930 components: - pos: -35.5,-29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4930 + - uid: 4931 components: - pos: -35.5,-30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4931 + - uid: 4932 components: - pos: -44.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4932 + - uid: 4933 components: - pos: -44.5,-27.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4933 + - uid: 4934 components: - pos: -45.5,-27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4934 + - uid: 4935 components: - pos: -46.5,-27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4935 + - uid: 4936 components: - pos: -47.5,-27.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4936 + - uid: 4937 components: - pos: -48.5,-27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4937 + - uid: 4938 components: - pos: -48.5,-28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4938 + - uid: 4939 components: - pos: -48.5,-29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4939 + - uid: 4940 components: - pos: -48.5,-30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4940 + - uid: 4941 components: - pos: -48.5,-31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4941 + - uid: 4942 components: - pos: -48.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4942 + - uid: 4943 components: - pos: -49.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4943 + - uid: 4944 components: - pos: -50.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4944 + - uid: 4945 components: - pos: -51.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4945 + - uid: 4946 components: - pos: -52.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4946 + - uid: 4947 components: - pos: -53.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4947 + - uid: 4948 components: - pos: -54.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4948 + - uid: 4949 components: - pos: -55.5,-32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4949 + - uid: 4950 components: - pos: -55.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4950 + - uid: 4951 components: - pos: -55.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4951 + - uid: 4952 components: - pos: -55.5,-35.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4952 + - uid: 4953 components: - pos: -55.5,-36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4953 + - uid: 4954 components: - pos: -55.5,-37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4954 + - uid: 4955 components: - pos: -55.5,-38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4955 + - uid: 4956 components: - pos: -55.5,-39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4956 + - uid: 4957 components: - pos: -56.5,-39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4957 + - uid: 4958 components: - pos: -56.5,-40.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4958 + - uid: 4959 components: - pos: -56.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4959 + - uid: 4960 components: - pos: -56.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4960 + - uid: 4961 components: - pos: -56.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4961 + - uid: 4962 components: - pos: -56.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4962 + - uid: 4963 components: - pos: -56.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4963 + - uid: 4964 components: - pos: -56.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4964 + - uid: 4965 components: - pos: -56.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4965 + - uid: 4966 components: - pos: -56.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4966 + - uid: 4967 components: - pos: -56.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4967 + - uid: 4968 components: - pos: -56.5,-50.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4968 + - uid: 4969 components: - pos: -56.5,-51.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4969 + - uid: 4970 components: - pos: -56.5,-52.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4970 + - uid: 4971 components: - pos: -56.5,-53.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4971 + - uid: 4972 components: - pos: -56.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4972 + - uid: 4973 components: - pos: -56.5,-55.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4973 + - uid: 4974 components: - pos: -56.5,-56.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4974 + - uid: 4975 components: - pos: -56.5,-57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4975 + - uid: 4976 components: - pos: -56.5,-58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4976 + - uid: 4977 components: - pos: -57.5,-58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4977 + - uid: 4978 components: - pos: -57.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4978 + - uid: 4979 components: - pos: -50.5,-64.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4979 + - uid: 4980 components: - pos: -50.5,-63.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4980 + - uid: 4981 components: - pos: -51.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4981 + - uid: 4982 components: - pos: -55.5,-58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4982 + - uid: 4983 components: - pos: -55.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4983 + - uid: 4984 components: - pos: -55.5,-61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4984 + - uid: 4985 components: - pos: -36.5,-30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4985 + - uid: 4986 components: - pos: -37.5,-30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4986 + - uid: 4987 components: - pos: -38.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4987 + - uid: 4988 components: - pos: -39.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4988 + - uid: 4989 components: - pos: -40.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4989 + - uid: 4990 components: - pos: -41.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4990 + - uid: 4991 components: - pos: -42.5,-30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4991 + - uid: 4992 components: - pos: -56.5,-85.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4992 + - uid: 4993 components: - pos: -56.5,-86.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4993 + - uid: 4994 components: - pos: -56.5,-87.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4994 + - uid: 4995 components: - pos: -55.5,-87.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4995 + - uid: 4996 components: - pos: -54.5,-87.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4996 + - uid: 4997 components: - pos: -53.5,-87.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4997 + - uid: 4998 components: - pos: -52.5,-87.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4998 + - uid: 4999 components: - pos: -54.5,-86.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 4999 + - uid: 5000 components: - pos: -54.5,-85.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5000 + - uid: 5001 components: - pos: -54.5,-88.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5001 + - uid: 5002 components: - pos: -54.5,-89.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5002 + - uid: 5003 components: - pos: -55.5,-85.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5003 + - uid: 5004 components: - pos: 33.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5004 + - uid: 5005 components: - pos: 34.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5005 + - uid: 5006 components: - pos: 35.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5006 + - uid: 5007 components: - pos: 36.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5007 + - uid: 5008 components: - pos: 36.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5008 + - uid: 5009 components: - pos: 37.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5009 + - uid: 5010 components: - pos: 38.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5010 + - uid: 5011 components: - pos: 39.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5011 + - uid: 5012 components: - pos: 40.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5012 + - uid: 5013 components: - pos: 42.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5013 + - uid: 5014 components: - pos: 44.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5014 + - uid: 5015 components: - pos: 43.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5015 + - uid: 5016 components: - pos: 44.5,24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5016 + - uid: 5017 components: - pos: 44.5,25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5017 + - uid: 5018 components: - pos: 44.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5018 + - uid: 5019 components: - pos: 47.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5019 + - uid: 5020 components: - pos: 48.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5020 + - uid: 5021 components: - pos: 49.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5021 + - uid: 5022 components: - pos: 50.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5022 + - uid: 5023 components: - pos: 51.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5023 + - uid: 5024 components: - pos: 52.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5024 + - uid: 5025 components: - pos: 53.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5025 + - uid: 5026 components: - pos: 54.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5026 + - uid: 5027 components: - pos: 55.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5027 + - uid: 5028 components: - pos: 56.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5028 + - uid: 5029 components: - pos: 57.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5029 + - uid: 5030 components: - pos: 58.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5030 + - uid: 5031 components: - pos: 59.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5031 + - uid: 5032 components: - pos: 60.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5032 + - uid: 5033 components: - pos: 63.5,5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5033 + - uid: 5034 components: - pos: 64.5,5.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5034 + - uid: 5035 components: - pos: 65.5,5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5035 + - uid: 5036 components: - pos: 65.5,4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5036 + - uid: 5037 components: - pos: 65.5,6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5037 + - uid: 5038 components: - pos: 65.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5038 + - uid: 5039 components: - pos: 65.5,8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5039 + - uid: 5040 components: - pos: 65.5,9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5040 + - uid: 5041 components: - pos: 65.5,10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5041 + - uid: 5042 components: - pos: 65.5,11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5042 + - uid: 5043 components: - pos: 65.5,12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5043 + - uid: 5044 components: - pos: 65.5,13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5044 + - uid: 5045 components: - pos: 65.5,14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5045 + - uid: 5046 components: - pos: 65.5,15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5046 + - uid: 5047 components: - pos: 53.5,27.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5047 + - uid: 5048 components: - pos: -25.5,-27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5048 + - uid: 5049 components: - pos: -25.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5049 + - uid: 5050 components: - pos: -25.5,-29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5050 + - uid: 5051 components: - pos: -26.5,-29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5051 + - uid: 5052 components: - pos: -28.5,-29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5052 + - uid: 5053 components: - pos: -27.5,-29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5053 + - uid: 5054 components: - pos: -24.5,-29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5054 + - uid: 5055 components: - pos: 8.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5055 + - uid: 5056 components: - pos: 7.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5056 + - uid: 5057 components: - pos: 6.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5057 + - uid: 5058 components: - pos: 5.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5058 + - uid: 5059 components: - pos: 4.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5059 + - uid: 5060 components: - pos: 4.5,-15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5060 + - uid: 5061 components: - pos: 4.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5061 + - uid: 5062 components: - pos: 3.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5062 + - uid: 5063 components: - pos: 2.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5063 + - uid: 5064 components: - pos: 1.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5064 + - uid: 5065 components: - pos: 0.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5065 + - uid: 5066 components: - pos: 2.5,-14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5066 + - uid: 5067 components: - pos: 2.5,-14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5067 + - uid: 5068 components: - pos: 3.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5068 + - uid: 5069 components: - pos: 1.5,-14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5069 + - uid: 5070 components: - pos: 0.5,-14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5070 + - uid: 5071 components: - pos: -0.5,-14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5071 + - uid: 5072 components: - pos: -0.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5072 + - uid: 5073 components: - pos: -0.5,-12.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5073 + - uid: 5074 components: - pos: -0.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5074 + - uid: 5075 components: - pos: -0.5,-9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5075 + - uid: 5076 components: - pos: -0.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5076 + - uid: 5077 components: - pos: 0.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5077 + - uid: 5078 components: - pos: 0.5,34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5078 + - uid: 5079 components: - pos: 0.5,33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5079 + - uid: 5080 components: - pos: 0.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5080 + - uid: 5081 components: - pos: 1.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5081 + - uid: 5082 components: - pos: 2.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5082 + - uid: 5083 components: - pos: 13.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5083 + - uid: 5084 components: - pos: 14.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5084 + - uid: 5085 components: - pos: 15.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5085 + - uid: 5086 components: - pos: 16.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5086 + - uid: 5087 components: - pos: 16.5,33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5087 + - uid: 5088 components: - pos: 16.5,34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5088 + - uid: 5089 components: - pos: 16.5,31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5089 + - uid: 5090 components: - pos: 16.5,30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5090 + - uid: 5091 components: - pos: 16.5,29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5091 + - uid: 5092 components: - pos: 16.5,28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5092 + - uid: 5093 components: - pos: 16.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5093 + - uid: 5094 components: - pos: 16.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5094 + - uid: 5095 components: - pos: 16.5,25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5095 + - uid: 5096 components: - pos: 15.5,25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5096 + - uid: 5097 components: - pos: 14.5,25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5097 + - uid: 5098 components: - pos: 13.5,25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5098 + - uid: 5099 components: - pos: 12.5,25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5099 + - uid: 5100 components: - pos: 11.5,25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5100 + - uid: 5101 components: - pos: 11.5,24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5101 + - uid: 5102 components: - pos: 10.5,24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5102 + - uid: 5103 components: - pos: 9.5,24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5103 + - uid: 5104 components: - pos: 8.5,24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5104 + - uid: 5105 components: - pos: 7.5,24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5105 + - uid: 5106 components: - pos: 6.5,24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5106 + - uid: 5107 components: - pos: 5.5,24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5107 + - uid: 5108 components: - pos: 4.5,24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5108 + - uid: 5109 components: - pos: 3.5,24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5109 + - uid: 5110 components: - pos: 2.5,24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5110 + - uid: 5111 components: - pos: 1.5,24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5111 + - uid: 5112 components: - pos: 0.5,24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5112 + - uid: 5113 components: - pos: -0.5,24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5113 + - uid: 5114 components: - pos: -1.5,24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5114 + - uid: 5115 components: - pos: -0.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5115 + - uid: 5116 components: - pos: -1.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5116 + - uid: 5117 components: - pos: -2.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5117 + - uid: 5118 components: - pos: -3.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5118 + - uid: 5119 components: - pos: -4.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5119 + - uid: 5120 components: - pos: -5.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5120 + - uid: 5121 components: - pos: -6.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5121 + - uid: 5122 components: - pos: -7.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5122 + - uid: 5123 components: - pos: -8.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5123 + - uid: 5124 components: - pos: -8.5,31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5124 + - uid: 5125 components: - pos: -8.5,30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5125 + - uid: 5126 components: - pos: -8.5,29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5126 + - uid: 5127 components: - pos: -8.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5127 + - uid: 5128 components: - pos: -8.5,27.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5128 + - uid: 5129 components: - pos: -8.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5129 + - uid: 5130 components: - pos: -12.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5130 + - uid: 5131 components: - pos: -8.5,23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5131 + - uid: 5132 components: - pos: -1.5,33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5132 + - uid: 5133 components: - pos: -1.5,34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5133 + - uid: 5134 components: - pos: -1.5,31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5134 + - uid: 5135 components: - pos: -15.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5135 + - uid: 5136 components: - pos: -11.5,28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5136 + - uid: 5137 components: - pos: -11.5,29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5137 + - uid: 5138 components: - pos: -68.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5138 + - uid: 5139 components: - pos: -68.5,-24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5139 + - uid: 5140 components: - pos: -68.5,-23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5140 + - uid: 5141 components: - pos: -69.5,-23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5141 + - uid: 5142 components: - pos: -70.5,-23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5142 + - uid: 5143 components: - pos: -71.5,-23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5143 + - uid: 5144 components: - pos: -72.5,-23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5144 + - uid: 5145 components: - pos: -73.5,-23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5145 + - uid: 5146 components: - pos: -72.5,-24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5146 + - uid: 5147 components: - pos: -72.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5147 + - uid: 5148 components: - pos: -74.5,-23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5148 + - uid: 5149 components: - pos: -74.5,-24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5149 + - uid: 5150 components: - pos: -42.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5150 + - uid: 5151 components: - pos: -43.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5151 + - uid: 5152 components: - pos: -44.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5152 + - uid: 5153 components: - pos: -45.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5153 + - uid: 5154 components: - pos: -46.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5154 + - uid: 5155 components: - pos: -47.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5155 + - uid: 5156 components: - pos: -48.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5156 + - uid: 5157 components: - pos: -42.5,16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5157 + - uid: 5158 components: - pos: -9.5,24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5158 + - uid: 5159 components: - pos: -10.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5159 + - uid: 5160 components: - pos: -9.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5160 + - uid: 5161 components: - pos: -9.5,25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5161 + - uid: 5162 components: - pos: -9.5,23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5162 + - uid: 5163 components: - pos: -14.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5163 + - uid: 5164 components: - pos: -11.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5164 + - uid: 5165 components: - pos: 21.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5165 + - uid: 5166 components: - pos: 21.5,23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5166 + - uid: 5167 components: - pos: -18.5,15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5167 + - uid: 5168 components: - pos: -18.5,16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5168 + - uid: 5169 components: - pos: -18.5,17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5169 + - uid: 5170 components: - pos: -18.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5170 + - uid: 5171 components: - pos: -18.5,19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5171 + - uid: 5172 components: - pos: -18.5,20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5172 + - uid: 5173 components: - pos: -18.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5173 + - uid: 5174 components: - pos: -19.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5174 + - uid: 5175 components: - pos: -20.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5175 + - uid: 5176 components: - pos: -21.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5176 + - uid: 5177 components: - pos: -22.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5177 + - uid: 5178 components: - pos: -23.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5178 + - uid: 5179 components: - pos: -23.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5179 + - uid: 5180 components: - pos: -23.5,23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5180 + - uid: 5181 components: - pos: -23.5,24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5181 + - uid: 5182 components: - pos: -23.5,25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5182 + - uid: 5183 components: - pos: -23.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5183 + - uid: 5184 components: - pos: -24.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5184 + - uid: 5185 components: - pos: -25.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5185 + - uid: 5186 components: - pos: -26.5,21.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5186 + - uid: 5187 components: - pos: -27.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5187 + - uid: 5188 components: - pos: -28.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5188 + - uid: 5189 components: - pos: -28.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5189 + - uid: 5190 components: - pos: -29.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5190 + - uid: 5191 components: - pos: -30.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5191 + - uid: 5192 components: - pos: -31.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5192 + - uid: 5193 components: - pos: -32.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5193 + - uid: 5194 components: - pos: -32.5,23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5194 + - uid: 5195 components: - pos: -32.5,24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5195 + - uid: 5196 components: - pos: -32.5,25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5196 + - uid: 5197 components: - pos: -32.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5197 + - uid: 5198 components: - pos: -32.5,27.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5198 + - uid: 5199 components: - pos: -31.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5199 + - uid: 5200 components: - pos: -30.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5200 + - uid: 5201 components: - pos: -33.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5201 + - uid: 5202 components: - pos: -32.5,28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5202 + - uid: 5203 components: - pos: -32.5,29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5203 + - uid: 5204 components: - pos: -32.5,30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5204 + - uid: 5205 components: - pos: -33.5,30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5205 + - uid: 5206 components: - pos: -33.5,25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5206 + - uid: 5207 components: - pos: -34.5,25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5207 + - uid: 5208 components: - pos: -35.5,25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5208 + - uid: 5209 components: - pos: -36.5,25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5209 + - uid: 5210 components: - pos: -37.5,25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5210 + - uid: 5211 components: - pos: -38.5,25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5211 + - uid: 5212 components: - pos: -38.5,24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5212 + - uid: 5213 components: - pos: -38.5,23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5213 + - uid: 5214 components: - pos: -38.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5214 + - uid: 5215 components: - pos: -39.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5215 + - uid: 5216 components: - pos: -40.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5216 + - uid: 5217 components: - pos: -41.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5217 + - uid: 5218 components: - pos: -42.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5218 + - uid: 5219 components: - pos: -43.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5219 + - uid: 5220 components: - pos: -44.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5220 + - uid: 5221 components: - pos: -45.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5221 + - uid: 5222 components: - pos: -46.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5222 + - uid: 5223 components: - pos: -47.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5223 + - uid: 5224 components: - pos: -48.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5224 + - uid: 5225 components: - pos: -49.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5225 + - uid: 5226 components: - pos: -50.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5226 + - uid: 5227 components: - pos: -32.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5227 + - uid: 5228 components: - pos: -32.5,20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5228 + - uid: 5229 components: - pos: -32.5,19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5229 + - uid: 5230 components: - pos: -32.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5230 + - uid: 5231 components: - pos: -33.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5231 + - uid: 5232 components: - pos: -34.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5232 + - uid: 5233 components: - pos: -35.5,18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5233 + - uid: 5234 components: - pos: -36.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5234 + - uid: 5235 components: - pos: -37.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5235 + - uid: 5236 components: - pos: -38.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5236 + - uid: 5237 components: - pos: -39.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5237 + - uid: 5238 components: - pos: -40.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5238 + - uid: 5239 components: - pos: -41.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5239 + - uid: 5240 components: - pos: -42.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5240 + - uid: 5241 components: - pos: -43.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5241 + - uid: 5242 components: - pos: -44.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5242 + - uid: 5243 components: - pos: -45.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5243 + - uid: 5244 components: - pos: -46.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5244 + - uid: 5245 components: - pos: -47.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5245 + - uid: 5246 components: - pos: -37.5,19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5246 + - uid: 5247 components: - pos: -37.5,20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5247 + - uid: 5248 components: - pos: -37.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5248 + - uid: 5249 components: - pos: -36.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5249 + - uid: 5250 components: - pos: -36.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5250 + - uid: 5251 components: - pos: -47.5,19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5251 + - uid: 5252 components: - pos: -48.5,19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5252 + - uid: 5253 components: - pos: -49.5,19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5253 + - uid: 5254 components: - pos: -50.5,19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5254 + - uid: 5255 components: - pos: -46.5,23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5255 + - uid: 5256 components: - pos: -46.5,24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5256 + - uid: 5257 components: - pos: -46.5,25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5257 + - uid: 5258 components: - pos: -46.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5258 + - uid: 5259 components: - pos: -43.5,19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5259 + - uid: 5260 components: - pos: -41.5,19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5260 + - uid: 5261 components: - pos: -31.5,25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5261 + - uid: 5262 components: - pos: -30.5,25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5262 + - uid: 5263 components: - pos: -29.5,25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5263 + - uid: 5264 components: - pos: -28.5,25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5264 + - uid: 5265 components: - pos: -27.5,25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5265 + - uid: 5266 components: - pos: -25.5,20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5266 + - uid: 5267 components: - pos: -25.5,19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5267 + - uid: 5268 components: - pos: -25.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5268 + - uid: 5269 components: - pos: -26.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5269 + - uid: 5270 components: - pos: -27.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5270 + - uid: 5271 components: - pos: -29.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5271 + - uid: 5272 components: - pos: -28.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5272 + - uid: 5273 components: - pos: -18.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5273 + - uid: 5274 components: - pos: -18.5,23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5274 + - uid: 5275 components: - pos: -24.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5275 + - uid: 5276 components: - pos: -41.5,27.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5276 + - uid: 5277 components: - pos: -51.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5277 + - uid: 5278 components: - pos: -52.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5278 + - uid: 5279 components: - pos: -52.5,21.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5279 + - uid: 5280 components: - pos: -52.5,-27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5280 + - uid: 5281 components: - pos: -46.5,27.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5281 + - uid: 5282 components: - pos: -46.5,28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5282 + - uid: 5283 components: - pos: -46.5,29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5283 + - uid: 5284 components: - pos: -46.5,30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5284 + - uid: 5285 components: - pos: -46.5,31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5285 + - uid: 5286 components: - pos: -46.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5286 + - uid: 5287 components: - pos: -46.5,33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5287 + - uid: 5288 components: - pos: -47.5,33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5288 + - uid: 5289 components: - pos: -48.5,33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5289 + - uid: 5290 components: - pos: -49.5,33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5290 + - uid: 5291 components: - pos: -50.5,33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5291 + - uid: 5292 components: - pos: -51.5,33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5292 + - uid: 5293 components: - pos: -47.5,31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5293 + - uid: 5294 components: - pos: -48.5,31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5294 + - uid: 5295 components: - pos: -49.5,31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5295 + - uid: 5296 components: - pos: -50.5,31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5296 + - uid: 5297 components: - pos: -51.5,31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5297 + - uid: 5298 components: - pos: -45.5,30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5298 + - uid: 5299 components: - pos: -44.5,30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5299 + - uid: 5300 components: - pos: -43.5,30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5300 + - uid: 5301 components: - pos: -42.5,30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5301 + - uid: 5302 components: - pos: -41.5,30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5302 + - uid: 5303 components: - pos: -40.5,30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5303 + - uid: 5304 components: - pos: -40.5,31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5304 + - uid: 5305 components: - pos: -39.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5305 + - uid: 5306 components: - pos: -38.5,31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5306 + - uid: 5307 components: - pos: -37.5,31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5307 + - uid: 5308 components: - pos: -36.5,31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5308 + - uid: 5309 components: - pos: -37.5,30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5309 + - uid: 5310 components: - pos: -37.5,29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5310 + - uid: 5311 components: - pos: -44.5,31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5311 + - uid: 5312 components: - pos: -44.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5312 + - uid: 5313 components: - pos: -44.5,33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5313 + - uid: 5314 components: - pos: -44.5,34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5314 + - uid: 5315 components: - pos: -42.5,29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5315 + - uid: 5316 components: - pos: -42.5,28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5316 + - uid: 5317 components: - pos: -43.5,33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5317 + - uid: 5318 components: - pos: -44.5,35.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5318 + - uid: 5319 components: - pos: -45.5,35.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5319 + - uid: 5320 components: - pos: -46.5,35.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5320 + - uid: 5321 components: - pos: -47.5,35.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5321 + - uid: 5322 components: - pos: -23.5,17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5322 + - uid: 5323 components: - pos: -24.5,8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5323 + - uid: 5324 components: - pos: -24.5,9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5324 + - uid: 5325 components: - pos: -24.5,10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5325 + - uid: 5326 components: - pos: -25.5,10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5326 + - uid: 5327 components: - pos: -25.5,11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5327 + - uid: 5328 components: - pos: -25.5,12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5328 + - uid: 5329 components: - pos: -25.5,13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5329 + - uid: 5330 components: - pos: -25.5,14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5330 + - uid: 5331 components: - pos: -24.5,13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5331 + - uid: 5332 components: - pos: -23.5,13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5332 + - uid: 5333 components: - pos: -26.5,12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5333 + - uid: 5334 components: - pos: -27.5,12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5334 + - uid: 5335 components: - pos: -42.5,15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5335 + - uid: 5336 components: - pos: -42.5,2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5336 + - uid: 5337 components: - pos: -42.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5337 + - uid: 5338 components: - pos: -41.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5338 + - uid: 5339 components: - pos: -40.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5339 + - uid: 5340 components: - pos: -39.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5340 + - uid: 5341 components: - pos: -38.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5341 + - uid: 5342 components: - pos: -37.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5342 + - uid: 5343 components: - pos: -37.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5343 + - uid: 5344 components: - pos: -37.5,3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5344 + - uid: 5345 components: - pos: -37.5,4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5345 + - uid: 5346 components: - pos: -37.5,5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5346 + - uid: 5347 components: - pos: -37.5,6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5347 + - uid: 5348 components: - pos: -37.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5348 + - uid: 5349 components: - pos: -37.5,8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5349 + - uid: 5350 components: - pos: -37.5,9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5350 + - uid: 5351 components: - pos: -37.5,10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5351 + - uid: 5352 components: - pos: -37.5,11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5352 + - uid: 5353 components: - pos: -37.5,12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5353 + - uid: 5354 components: - pos: -37.5,13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5354 + - uid: 5355 components: - pos: -38.5,13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5355 + - uid: 5356 components: - pos: -39.5,13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5356 + - uid: 5357 components: - pos: -42.5,13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5357 + - uid: 5358 components: - pos: -42.5,14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5358 + - uid: 5359 components: - pos: -39.5,14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5359 + - uid: 5360 components: - pos: -39.5,15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5360 + - uid: 5361 components: - pos: -36.5,13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5361 + - uid: 5362 components: - pos: -35.5,13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5362 + - uid: 5363 components: - pos: -34.5,13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5363 + - uid: 5364 components: - pos: -33.5,13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5364 + - uid: 5365 components: - pos: -35.5,14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5365 + - uid: 5366 components: - pos: -35.5,15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5366 + - uid: 5367 components: - pos: -33.5,14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5367 + - uid: 5368 components: - pos: -32.5,14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5368 + - uid: 5369 components: - pos: -31.5,14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5369 + - uid: 5370 components: - pos: -30.5,14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5370 + - uid: 5371 components: - pos: -30.5,13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5371 + - uid: 5372 components: - pos: -30.5,12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5372 + - uid: 5373 components: - pos: -30.5,11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5373 + - uid: 5374 components: - pos: -30.5,10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5374 + - uid: 5375 components: - pos: -30.5,9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5375 + - uid: 5376 components: - pos: -30.5,8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5376 + - uid: 5377 components: - pos: -31.5,10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5377 + - uid: 5378 components: - pos: -32.5,10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5378 + - uid: 5379 components: - pos: -33.5,10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5379 + - uid: 5380 components: - pos: -29.5,9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5380 + - uid: 5381 components: - pos: -28.5,9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5381 + - uid: 5382 components: - pos: -30.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5382 + - uid: 5383 components: - pos: -37.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5383 + - uid: 5384 components: - pos: -37.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5384 + - uid: 5385 components: - pos: -37.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5385 + - uid: 5386 components: - pos: -37.5,-2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5386 + - uid: 5387 components: - pos: -38.5,-2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5387 + - uid: 5388 components: - pos: -39.5,-2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5388 + - uid: 5389 components: - pos: -40.5,-2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5389 + - uid: 5390 components: - pos: -41.5,-2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5390 + - uid: 5391 components: - pos: -42.5,-2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5391 + - uid: 5392 components: - pos: -42.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5392 + - uid: 5393 components: - pos: -43.5,-3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5393 + - uid: 5394 components: - pos: -44.5,-3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5394 + - uid: 5395 components: - pos: -45.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5395 + - uid: 5396 components: - pos: 55.5,12.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5396 + - uid: 5397 components: - pos: -36.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5397 + - uid: 5398 components: - pos: -35.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5398 + - uid: 5399 components: - pos: -34.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5399 + - uid: 5400 components: - pos: -33.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5400 + - uid: 5401 components: - pos: -32.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5401 + - uid: 5402 components: - pos: -31.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5402 + - uid: 5403 components: - pos: -30.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5403 + - uid: 5404 components: - pos: -29.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5404 + - uid: 5405 components: - pos: -29.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5405 + - uid: 5406 components: - pos: -29.5,-2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5406 + - uid: 5407 components: - pos: -29.5,-3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5407 + - uid: 5408 components: - pos: -28.5,-3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5408 + - uid: 5409 components: - pos: -28.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5409 + - uid: 5410 components: - pos: -28.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5410 + - uid: 5411 components: - pos: -28.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5411 + - uid: 5412 components: - pos: -30.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5412 + - uid: 5413 components: - pos: -30.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5413 + - uid: 5414 components: - pos: -23.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5414 + - uid: 5415 components: - pos: -41.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5415 + - uid: 5416 components: - pos: -2.5,24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5416 + - uid: 5417 components: - pos: -2.5,23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5417 + - uid: 5418 components: - pos: -3.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5418 + - uid: 5419 components: - pos: -3.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5419 + - uid: 5420 components: - pos: -4.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5420 + - uid: 5421 components: - pos: -5.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5421 + - uid: 5422 components: - pos: 65.5,-8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5422 + - uid: 5423 components: - pos: 65.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5423 + - uid: 5424 components: - pos: 65.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5424 + - uid: 5425 components: - pos: 68.5,-3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5425 + - uid: 5426 components: - pos: 65.5,-12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5426 + - uid: 5427 components: - pos: 65.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5427 + - uid: 5428 components: - pos: -42.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5428 + - uid: 5429 components: - pos: -43.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5429 + - uid: 5430 components: - pos: -44.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5430 + - uid: 5431 components: - pos: -45.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5431 + - uid: 5432 components: - pos: -46.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5432 + - uid: 5433 components: - pos: -46.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5433 + - uid: 5434 components: - pos: -46.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5434 + - uid: 5435 components: - pos: -46.5,3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5435 + - uid: 5436 components: - pos: -46.5,4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5436 + - uid: 5437 components: - pos: -46.5,5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5437 + - uid: 5438 components: - pos: -46.5,6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5438 + - uid: 5439 components: - pos: -46.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5439 + - uid: 5440 components: - pos: -46.5,8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5440 + - uid: 5441 components: - pos: -45.5,5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5441 + - uid: 5442 components: - pos: -44.5,5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5442 + - uid: 5443 components: - pos: -45.5,3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5443 + - uid: 5444 components: - pos: -44.5,3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5444 + - uid: 5445 components: - pos: -47.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5445 + - uid: 5446 components: - pos: -48.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5446 + - uid: 5447 components: - pos: -46.5,9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5447 + - uid: 5448 components: - pos: -46.5,10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5448 + - uid: 5449 components: - pos: -46.5,11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5449 + - uid: 5450 components: - pos: -47.5,11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5450 + - uid: 5451 components: - pos: -48.5,11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5451 + - uid: 5452 components: - pos: -49.5,11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5452 + - uid: 5453 components: - pos: -50.5,11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5453 + - uid: 5454 components: - pos: -51.5,11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5454 + - uid: 5455 components: - pos: -51.5,10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5455 + - uid: 5456 components: - pos: -52.5,10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5456 + - uid: 5457 components: - pos: -52.5,9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5457 + - uid: 5458 components: - pos: -52.5,8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5458 + - uid: 5459 components: - pos: -52.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5459 + - uid: 5460 components: - pos: -51.5,12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5460 + - uid: 5461 components: - pos: -51.5,13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5461 + - uid: 5462 components: - pos: -51.5,14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5462 + - uid: 5463 components: - pos: -48.5,12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5463 + - uid: 5464 components: - pos: -48.5,13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5464 + - uid: 5465 components: - pos: -48.5,14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5465 + - uid: 5466 components: - pos: -46.5,12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5466 + - uid: 5467 components: - pos: -46.5,13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5467 + - uid: 5468 components: - pos: -46.5,14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5468 + - uid: 5469 components: - pos: -45.5,11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5469 + - uid: 5470 components: - pos: -44.5,11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5470 + - uid: 5471 components: - pos: -43.5,11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5471 + - uid: 5472 components: - pos: -42.5,11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5472 + - uid: 5473 components: - pos: -42.5,10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5473 + - uid: 5474 components: - pos: -47.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5474 + - uid: 5475 components: - pos: -47.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5475 + - uid: 5476 components: - pos: -48.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5476 + - uid: 5477 components: - pos: -49.5,0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5477 + - uid: 5478 components: - pos: -49.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5478 + - uid: 5479 components: - pos: -49.5,-1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5479 + - uid: 5480 components: - pos: -49.5,-2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5480 + - uid: 5481 components: - pos: -49.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5481 + - uid: 5482 components: - pos: -50.5,-3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5482 + - uid: 5483 components: - pos: -51.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5483 + - uid: 5484 components: - pos: -52.5,-3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5484 + - uid: 5485 components: - pos: -53.5,-3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5485 + - uid: 5486 components: - pos: -54.5,-3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5486 + - uid: 5487 components: - pos: -53.5,-2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5487 + - uid: 5488 components: - pos: -53.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5488 + - uid: 5489 components: - pos: -54.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5489 + - uid: 5490 components: - pos: -55.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5490 + - uid: 5491 components: - pos: -56.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5491 + - uid: 5492 components: - pos: -51.5,-2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5492 + - uid: 5493 components: - pos: -51.5,-1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5493 + - uid: 5494 components: - pos: -51.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5494 + - uid: 5495 components: - pos: -51.5,0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5495 + - uid: 5496 components: - pos: -51.5,1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5496 + - uid: 5497 components: - pos: -51.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5497 + - uid: 5498 components: - pos: -51.5,3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5498 + - uid: 5499 components: - pos: -45.5,-2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5499 + - uid: 5500 components: - pos: -46.5,-2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5500 + - uid: 5501 components: - pos: -47.5,-2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5501 + - uid: 5502 components: - pos: 3.5,-64.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5502 + - uid: 5503 components: - pos: 68.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5503 + - uid: 5504 components: - pos: -19.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5504 + - uid: 5505 components: - pos: -20.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5505 + - uid: 5506 components: - pos: 67.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5506 + - uid: 5507 components: - pos: 66.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5507 + - uid: 5508 components: - pos: 65.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5508 + - uid: 5509 components: - pos: 65.5,-7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5509 + - uid: 5510 components: - pos: 65.5,-9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5510 + - uid: 5511 components: - pos: 66.5,-3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5511 + - uid: 5512 components: - pos: 65.5,-2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5512 + - uid: 5513 components: - pos: 67.5,-3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5513 + - uid: 5514 components: - pos: -28.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5514 + - uid: 5515 components: - pos: -27.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5515 + - uid: 5516 components: - pos: -27.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5516 + - uid: 5517 components: - pos: 22.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5517 + - uid: 5518 components: - pos: -11.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5518 + - uid: 5519 components: - pos: -13.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5519 + - uid: 5520 components: - pos: -26.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5520 + - uid: 5521 components: - pos: -8.5,14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5521 + - uid: 5522 components: - pos: -8.5,15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5522 + - uid: 5523 components: - pos: -1.5,-80.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5523 + - uid: 5524 components: - pos: -1.5,-81.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5524 + - uid: 5525 components: - pos: -1.5,-82.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5525 + - uid: 5526 components: - pos: -74.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5526 + - uid: 5527 components: - pos: -56.5,-18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5527 + - uid: 5528 components: - pos: -23.5,10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5528 + - uid: 5529 components: - pos: -22.5,10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5529 + - uid: 5530 components: - pos: -22.5,11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5530 + - uid: 5531 components: - pos: 41.5,14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5531 + - uid: 5532 components: - pos: 42.5,14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5532 + - uid: 5533 components: - pos: -75.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5533 + - uid: 5534 components: - pos: -75.5,-10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5534 + - uid: 5535 components: - pos: -75.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5535 + - uid: 5536 components: - pos: -75.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5536 + - uid: 5537 components: - pos: -75.5,-7.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5537 + - uid: 5538 components: - pos: -75.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5538 + - uid: 5539 components: - pos: -75.5,-5.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5539 + - uid: 5540 components: - pos: -75.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5540 + - uid: 5541 components: - pos: -74.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5541 + - uid: 5542 components: - pos: -73.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5542 + - uid: 5543 components: - pos: -72.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5543 + - uid: 5544 components: - pos: -71.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5544 + - uid: 5545 components: - pos: -70.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5545 + - uid: 5546 components: - pos: -69.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5546 + - uid: 5547 components: - pos: -68.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5547 + - uid: 5548 components: - pos: -67.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5548 + - uid: 5549 components: - pos: -66.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5549 + - uid: 5550 components: - pos: -65.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5550 + - uid: 5551 components: - pos: -64.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5551 + - uid: 5552 components: - pos: -47.5,39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5552 + - uid: 5553 components: - pos: -47.5,40.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5553 + - uid: 5554 components: - pos: -47.5,41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5554 + - uid: 5555 components: - pos: -46.5,41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5555 + - uid: 5556 components: - pos: -45.5,41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5556 + - uid: 5557 components: - pos: -45.5,42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5557 + - uid: 5558 components: - pos: -45.5,46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5558 + - uid: 5559 components: - pos: -45.5,47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5559 + - uid: 5560 components: - pos: -45.5,48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5560 + - uid: 5561 components: - pos: -45.5,49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5561 + - uid: 5562 components: - pos: -46.5,49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5562 + - uid: 5563 components: - pos: -46.5,50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5563 + - uid: 5564 components: - pos: -46.5,51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5564 + - uid: 5565 components: - pos: -46.5,52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5565 + - uid: 5566 components: - pos: -46.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5566 + - uid: 5567 components: - pos: -45.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5567 + - uid: 5568 components: - pos: -44.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5568 + - uid: 5569 components: - pos: -43.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5569 + - uid: 5570 components: - pos: -42.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5570 + - uid: 5571 components: - pos: -41.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5571 + - uid: 5572 components: - pos: -40.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5572 + - uid: 5573 components: - pos: -39.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5573 + - uid: 5574 components: - pos: -38.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5574 + - uid: 5575 components: - pos: -37.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5575 + - uid: 5576 components: - pos: -47.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5576 + - uid: 5577 components: - pos: -48.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5577 + - uid: 5578 components: - pos: -49.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5578 + - uid: 5579 components: - pos: -50.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5579 + - uid: 5580 components: - pos: -51.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5580 + - uid: 5581 components: - pos: -52.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5581 + - uid: 5582 components: - pos: 10.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5582 + - uid: 5583 components: - pos: 11.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5583 + - uid: 5584 components: - pos: 12.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5584 + - uid: 5585 components: - pos: 13.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5585 + - uid: 5586 components: - pos: 14.5,-65.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5586 + - uid: 5587 components: - pos: 26.5,31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5587 + - uid: 5588 components: - pos: 25.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5588 + - uid: 5589 components: - pos: 24.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5589 + - uid: 5590 components: - pos: 24.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5590 + - uid: 5591 components: - pos: 24.5,33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5591 + - uid: 5592 components: - pos: 24.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5592 + - uid: 5593 components: - pos: 54.5,28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5593 + - uid: 5594 components: - pos: 53.5,28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5594 + - uid: 5595 components: - pos: -62.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5595 + - uid: 5596 components: - pos: -61.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5596 + - uid: 5597 components: - pos: -60.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5597 + - uid: 5598 components: - pos: -40.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5598 + - uid: 5599 components: - pos: 48.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5599 + - uid: 5600 components: - pos: 48.5,-48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5600 + - uid: 5601 components: - pos: 28.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5601 + - uid: 5602 components: - pos: -24.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5602 + - uid: 5603 components: - pos: 65.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5603 + - uid: 5604 components: - pos: -52.5,-73.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5604 + - uid: 5605 components: - pos: -51.5,-73.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5605 + - uid: 5606 components: - pos: -51.5,-74.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5606 + - uid: 5607 components: - pos: -46.5,-75.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5607 + - uid: 5608 components: - pos: 59.5,-32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5608 + - uid: 5609 components: - pos: 52.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5609 + - uid: 5610 components: - pos: 52.5,-14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5610 + - uid: 5611 components: - pos: 52.5,-15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5611 + - uid: 5612 components: - pos: 65.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5612 + - uid: 5613 components: - pos: 65.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5613 + - uid: 5614 components: - pos: 65.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5614 + - uid: 5615 components: - pos: 65.5,-3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5615 + - uid: 5616 components: - pos: 11.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5616 + - uid: 5617 components: - pos: 10.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5617 + - uid: 5618 components: - pos: 9.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5618 + - uid: 5619 components: - pos: 9.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5619 + - uid: 5620 components: - pos: 10.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5620 + - uid: 5621 components: - pos: 9.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5621 + - uid: 5622 components: - pos: 17.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5622 + - uid: 5623 components: - pos: 18.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5623 + - uid: 5624 components: - pos: 16.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5624 + - uid: 5625 components: - pos: 11.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5625 + - uid: 5626 components: - pos: 33.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5626 + - uid: 5627 components: - pos: 34.5,-21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5627 + - uid: 5628 components: - pos: 32.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5628 + - uid: 5629 components: - pos: 34.5,-24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5629 + - uid: 5630 components: - pos: 34.5,-23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5630 + - uid: 5631 components: - pos: 34.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5631 + - uid: 5632 components: - pos: -7.5,5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5632 + - uid: 5633 components: - pos: 1.5,5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5633 + - uid: 5634 components: - pos: 11.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5634 + - uid: 5635 components: - pos: 2.5,5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5635 + - uid: 5636 components: - pos: -6.5,5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5636 + - uid: 5637 components: - pos: 3.5,5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5637 + - uid: 5638 components: - pos: -4.5,5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5638 + - uid: 5639 components: - pos: -3.5,3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5639 + - uid: 5640 components: - pos: -5.5,5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5640 + - uid: 5641 components: - pos: -4.5,3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5641 + - uid: 5642 components: - pos: -18.5,4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5642 + - uid: 5643 components: - pos: -5.5,3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5643 + - uid: 5644 components: - pos: -20.5,4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5644 + - uid: 5645 components: - pos: -17.5,4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5645 + - uid: 5646 components: - pos: -19.5,4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5646 + - uid: 5647 components: - pos: -21.5,4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5647 + - uid: 5648 components: - pos: -44.5,8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5648 + - uid: 5649 components: - pos: -44.5,4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5649 + - uid: 5650 components: - pos: -45.5,8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5650 + - uid: 5651 components: - pos: -44.5,6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5651 + - uid: 5652 components: - pos: -44.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5652 + - uid: 5653 components: - pos: -22.5,-9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5653 + - uid: 5654 components: - pos: -48.5,10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5654 + - uid: 5655 components: - pos: -22.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5655 + - uid: 5656 components: - pos: -50.5,10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5656 + - uid: 5657 components: - pos: -49.5,10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5657 + - uid: 5658 components: - pos: -22.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5658 + - uid: 5659 components: - pos: -2.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5659 + - uid: 5660 components: - pos: -37.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5660 + - uid: 5661 components: - pos: -3.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5661 + - uid: 5662 components: - pos: -37.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5662 + - uid: 5663 components: - pos: -38.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5663 + - uid: 5664 components: - pos: -39.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5664 + - uid: 5665 components: - pos: 52.5,-40.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5665 + - uid: 5666 components: - pos: 63.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5666 + - uid: 5667 components: - pos: 52.5,-39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5667 + - uid: 5668 components: - pos: 51.5,-39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5668 + - uid: 5669 components: - pos: 68.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5669 + - uid: 5670 components: - pos: 66.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5670 + - uid: 5671 components: - pos: 52.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5671 + - uid: 5672 components: - pos: 65.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5672 + - uid: 5673 components: - pos: 64.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5673 + - uid: 5674 components: - pos: -14.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5674 + - uid: 5675 components: - pos: -14.5,-71.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5675 + - uid: 5676 components: - pos: -15.5,-73.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5676 + - uid: 5677 components: - pos: -15.5,-72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5677 + - uid: 5678 components: - pos: -37.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5678 + - uid: 5679 components: - pos: -15.5,-71.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5679 + - uid: 5680 components: - pos: -11.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5680 + - uid: 5681 components: - pos: -12.5,-71.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5681 + - uid: 5682 components: - pos: -13.5,-71.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5682 + - uid: 5683 components: - pos: -45.5,33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5683 + - uid: 5684 components: - pos: -44.5,28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5684 + - uid: 5685 components: - pos: -10.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5685 + - uid: 5686 components: - pos: -45.5,28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5686 + - uid: 5687 components: - pos: -43.5,28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5687 + - uid: 5688 components: - pos: -41.5,31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5688 + - uid: 5689 components: - pos: -42.5,33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5689 + - uid: 5690 components: - pos: -41.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5690 + - uid: 5691 components: - pos: -41.5,33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5691 + - uid: 5692 components: - pos: -20.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5692 + - uid: 5693 components: - pos: -20.5,20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5693 + - uid: 5694 components: - pos: -20.5,16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5694 + - uid: 5695 components: - pos: -20.5,19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5695 + - uid: 5696 components: - pos: -20.5,17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5696 + - uid: 5697 components: - pos: -19.5,16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5697 + - uid: 5698 components: - pos: 53.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5698 + - uid: 5699 components: - pos: 52.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5699 + - uid: 5700 components: - pos: 51.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5700 + - uid: 5701 components: - pos: 51.5,-7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5701 + - uid: 5702 components: - pos: 5.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5702 + - uid: 5703 components: - pos: 6.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5703 + - uid: 5704 components: - pos: 7.5,15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5704 + - uid: 5705 components: - pos: 8.5,15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5705 + - uid: 5706 components: - pos: 2.5,20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5706 + - uid: 5707 components: - pos: 2.5,19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5707 + - uid: 5708 components: - pos: 2.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5708 + - uid: 5709 components: - pos: 42.5,15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5709 + - uid: 5710 components: - pos: 42.5,16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5710 + - uid: 5711 components: - pos: 41.5,16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5711 + - uid: 5712 components: - pos: 40.5,16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5712 + - uid: 5713 components: - pos: 39.5,16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5713 + - uid: 5714 components: - pos: 38.5,16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5714 + - uid: 5715 components: - pos: 37.5,16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5715 + - uid: 5716 components: - pos: 36.5,16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5716 + - uid: 5717 components: - pos: 34.5,16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5717 + - uid: 5718 components: - pos: 33.5,16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5718 + - uid: 5719 components: - pos: 42.5,13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5719 + - uid: 5720 components: - pos: 42.5,12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5720 + - uid: 5721 components: - pos: 28.5,28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5721 + - uid: 5722 components: - pos: 31.5,28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5722 + - uid: 5723 components: - pos: 30.5,28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5723 + - uid: 5724 components: - pos: -12.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5724 + - uid: 5725 components: - pos: -11.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5725 + - uid: 5726 components: - pos: -10.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5726 + - uid: 5727 components: - pos: -10.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5727 + - uid: 5728 components: - pos: -9.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5728 + - uid: 5729 components: - pos: -8.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5729 + - uid: 5730 components: - pos: -7.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5730 + - uid: 5731 components: - pos: -6.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5731 + - uid: 5732 components: - pos: -51.5,-75.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5732 + - uid: 5733 components: - pos: -51.5,-77.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5733 + - uid: 5734 components: - pos: -51.5,-78.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5734 + - uid: 5735 components: - pos: -51.5,-79.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5735 + - uid: 5736 components: - pos: -52.5,-79.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5736 + - uid: 5737 components: - pos: 38.5,17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5737 + - uid: 5738 components: - pos: 19.5,-29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5738 + - uid: 5739 components: - pos: 52.5,10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5739 + - uid: 5740 components: - pos: 45.5,-72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5740 + - uid: 5741 components: - pos: 29.5,-27.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5741 + - uid: 5742 components: - pos: 29.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5742 + - uid: 5743 components: - pos: 29.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5743 + - uid: 5744 components: - pos: 31.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5744 + - uid: 5745 components: - pos: 23.5,-39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5745 + - uid: 5746 components: - pos: 28.5,-40.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5746 + - uid: 5747 components: - pos: 30.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5747 + - uid: 5748 components: - pos: 28.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5748 + - uid: 5749 components: - pos: 38.5,-60.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5749 + - uid: 5750 components: - pos: 38.5,-61.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5750 + - uid: 5751 components: - pos: 38.5,-62.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5751 + - uid: 5752 components: - pos: 38.5,-63.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5752 + - uid: 5753 components: - pos: 38.5,-64.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5753 + - uid: 5754 components: - pos: 38.5,-65.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5754 + - uid: 5755 components: - pos: 38.5,-66.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5755 + - uid: 5756 components: - pos: 38.5,-67.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5756 + - uid: 5757 components: - pos: 38.5,-68.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5757 + - uid: 5758 components: - pos: 38.5,-69.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5758 + - uid: 5759 components: - pos: 38.5,-70.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5759 + - uid: 5760 components: - pos: 38.5,-71.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5760 + - uid: 5761 components: - pos: 14.5,-64.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5761 + - uid: 5762 components: - pos: 14.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5762 + - uid: 5763 components: - pos: 14.5,-62.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5763 + - uid: 5764 components: - pos: 14.5,-61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5764 + - uid: 5765 components: - pos: 14.5,-60.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5765 + - uid: 5766 components: - pos: 14.5,-59.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5766 + - uid: 5767 components: - pos: 14.5,-58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5767 + - uid: 5768 components: - pos: 10.5,-64.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5768 + - uid: 5769 components: - pos: 11.5,-64.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5769 + - uid: 5770 components: - pos: 12.5,-64.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5770 + - uid: 5771 components: - pos: 12.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5771 + - uid: 5772 components: - pos: 12.5,-62.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5772 + - uid: 5773 components: - pos: 12.5,-61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5773 + - uid: 5774 components: - pos: 12.5,-60.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5774 + - uid: 5775 components: - pos: 12.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5775 + - uid: 5776 components: - pos: 12.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5776 + - uid: 5777 components: - pos: 12.5,-57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5777 + - uid: 5778 components: - pos: 12.5,-56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5778 + - uid: 5779 components: - pos: 14.5,-57.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5779 + - uid: 5780 components: - pos: 13.5,-57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5780 + - uid: 5781 components: - pos: -33.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5781 + - uid: 5782 components: - pos: -33.5,-72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5782 + - uid: 5783 components: - pos: -26.5,-73.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5783 + - uid: 5784 components: - pos: -28.5,-73.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5784 + - uid: 5785 components: - pos: -29.5,-72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5785 + - uid: 5786 components: - pos: -29.5,-75.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5786 + - uid: 5787 components: - pos: -30.5,-71.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5787 + - uid: 5788 components: - pos: -30.5,-70.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5788 + - uid: 5789 components: - pos: -30.5,-69.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5789 + - uid: 5790 components: - pos: -29.5,-69.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5790 + - uid: 5791 components: - pos: -28.5,-69.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5791 + - uid: 5792 components: - pos: -27.5,-69.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5792 + - uid: 5793 components: - pos: -27.5,-70.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5793 + - uid: 5794 components: - pos: -27.5,-71.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5794 + - uid: 5795 components: - pos: -27.5,-73.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5795 + - uid: 5796 components: - pos: -27.5,-74.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5796 + - uid: 5797 components: - pos: -27.5,-75.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5797 + - uid: 5798 components: - pos: -28.5,-75.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5798 + - uid: 5799 components: - pos: -30.5,-75.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5799 + - uid: 5800 components: - pos: -30.5,-74.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5800 + - uid: 5801 components: - pos: -30.5,-73.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5801 + - uid: 5802 components: - pos: -28.5,-71.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5802 + - uid: 5803 components: - pos: -29.5,-72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5803 + - uid: 5804 components: - pos: -29.5,-71.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5804 + - uid: 5805 components: - pos: 52.5,38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5805 + - uid: 5806 components: - pos: 52.5,37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5806 + - uid: 5807 components: - pos: 52.5,36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5807 + - uid: 5808 components: - pos: 52.5,35.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5808 + - uid: 5809 components: - pos: 52.5,34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5809 + - uid: 5810 components: - pos: 52.5,33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5810 + - uid: 5811 components: - pos: 52.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5811 + - uid: 5812 components: - pos: 52.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5812 + - uid: 5813 components: - pos: 51.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5813 + - uid: 5814 components: - pos: 50.5,31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5814 + - uid: 5815 components: - pos: 49.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5815 + - uid: 5816 components: - pos: 48.5,31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5816 + - uid: 5817 components: - pos: 48.5,30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5817 + - uid: 5818 components: - pos: 48.5,29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5818 + - uid: 5819 components: - pos: 48.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5819 + - uid: 5820 components: - pos: 53.5,37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5820 + - uid: 5821 components: - pos: 54.5,37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5821 + - uid: 5822 components: - pos: 55.5,37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5822 + - uid: 5823 components: - pos: 56.5,37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5823 + - uid: 5824 components: - pos: 56.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5824 + - uid: 5825 components: - pos: 56.5,33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5825 + - uid: 5826 components: - pos: 56.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5826 + - uid: 5827 components: - pos: 56.5,31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5827 + - uid: 5828 components: - pos: 57.5,31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5828 + - uid: 5829 components: - pos: 57.5,30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5829 + - uid: 5830 components: - pos: 57.5,29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5830 + - uid: 5831 components: - pos: 57.5,28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5831 + - uid: 5832 components: - pos: 54.5,38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5832 + - uid: 5833 components: - pos: 54.5,39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5833 + - uid: 5834 components: - pos: 54.5,40.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5834 + - uid: 5835 components: - pos: 54.5,41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5835 + - uid: 5836 components: - pos: 54.5,42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5836 + - uid: 5837 components: - pos: 54.5,43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5837 + - uid: 5838 components: - pos: 54.5,44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5838 + - uid: 5839 components: - pos: 54.5,45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5839 + - uid: 5840 components: - pos: 54.5,46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5840 + - uid: 5841 components: - pos: 54.5,47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5841 + - uid: 5842 components: - pos: 54.5,48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5842 + - uid: 5843 components: - pos: 54.5,49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5843 + - uid: 5844 components: - pos: 54.5,50.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5844 + - uid: 5845 components: - pos: 53.5,42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5845 + - uid: 5846 components: - pos: 52.5,42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5846 + - uid: 5847 components: - pos: 51.5,42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5847 + - uid: 5848 components: - pos: 51.5,43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5848 + - uid: 5849 components: - pos: 51.5,44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5849 + - uid: 5850 components: - pos: 51.5,45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5850 + - uid: 5851 components: - pos: 51.5,46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5851 + - uid: 5852 components: - pos: 51.5,47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5852 + - uid: 5853 components: - pos: 51.5,48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5853 + - uid: 5854 components: - pos: 51.5,49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5854 + - uid: 5855 components: - pos: 51.5,50.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5855 + - uid: 5856 components: - pos: 55.5,42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5856 + - uid: 5857 components: - pos: 56.5,42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5857 + - uid: 5858 components: - pos: 57.5,42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5858 + - uid: 5859 components: - pos: 57.5,43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5859 + - uid: 5860 components: - pos: 57.5,44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5860 + - uid: 5861 components: - pos: 57.5,45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5861 + - uid: 5862 components: - pos: 57.5,46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5862 + - uid: 5863 components: - pos: 57.5,47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5863 + - uid: 5864 components: - pos: 57.5,48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5864 + - uid: 5865 components: - pos: 57.5,49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5865 + - uid: 5866 components: - pos: 57.5,50.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5866 + - uid: 5867 components: - pos: 56.5,50.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5867 + - uid: 5868 components: - pos: 55.5,50.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5868 + - uid: 5869 components: - pos: 53.5,50.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5869 + - uid: 5870 components: - pos: 52.5,50.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5870 + - uid: 5871 components: - pos: 56.5,51.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5871 + - uid: 5872 components: - pos: 56.5,52.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5872 + - uid: 5873 components: - pos: 52.5,51.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5873 + - uid: 5874 components: - pos: 52.5,52.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5874 + - uid: 5875 components: - pos: 56.5,53.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5875 + - uid: 5876 components: - pos: 55.5,53.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5876 + - uid: 5877 components: - pos: 54.5,53.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5877 + - uid: 5878 components: - pos: 52.5,53.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5878 + - uid: 5879 components: - pos: 53.5,53.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5879 + - uid: 5880 components: - pos: 54.5,54.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5880 + - uid: 5881 components: - pos: 54.5,55.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5881 + - uid: 5882 components: - pos: 54.5,57.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5882 + - uid: 5883 components: - pos: 54.5,56.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5883 + - uid: 5884 components: - pos: 54.5,58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5884 + - uid: 5885 components: - pos: 54.5,59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5885 + - uid: 5886 components: - pos: 53.5,57.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5886 + - uid: 5887 components: - pos: 52.5,57.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5887 + - uid: 5888 components: - pos: 51.5,57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5888 + - uid: 5889 components: - pos: 55.5,57.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5889 + - uid: 5890 components: - pos: 56.5,57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5890 + - uid: 5891 components: - pos: 57.5,57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5891 + - uid: 5892 components: - pos: 58.5,57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5892 + - uid: 5893 components: - pos: 58.5,58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5893 + - uid: 5894 components: - pos: 58.5,56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5894 + - uid: 5895 components: - pos: 50.5,57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5895 + - uid: 5896 components: - pos: 50.5,58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5896 + - uid: 5897 components: - pos: 50.5,56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5897 + - uid: 5898 components: - pos: 54.5,60.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5898 + - uid: 5899 components: - pos: 54.5,61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5899 + - uid: 5900 components: - pos: 53.5,61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5900 + - uid: 5901 components: - pos: 55.5,61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5901 + - uid: 5902 components: - pos: 50.5,45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5902 + - uid: 5903 components: - pos: 49.5,45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5903 + - uid: 5904 components: - pos: 48.5,45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5904 + - uid: 5905 components: - pos: 47.5,45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5905 + - uid: 5906 components: - pos: 46.5,45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5906 + - uid: 5907 components: - pos: 45.5,45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5907 + - uid: 5908 components: - pos: 44.5,45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5908 + - uid: 5909 components: - pos: 58.5,45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5909 + - uid: 5910 components: - pos: 59.5,45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5910 + - uid: 5911 components: - pos: 60.5,45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5911 + - uid: 5912 components: - pos: 60.5,46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5912 + - uid: 5913 components: - pos: 60.5,47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5913 + - uid: 5914 components: - pos: -18.5,24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5914 + - uid: 5915 components: - pos: -18.5,25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5915 + - uid: 5916 components: - pos: -18.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5916 + - uid: 5917 components: - pos: -18.5,27.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5917 + - uid: 5918 components: - pos: -18.5,28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5918 + - uid: 5919 components: - pos: -18.5,29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5919 + - uid: 5920 components: - pos: -18.5,30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5920 + - uid: 5921 components: - pos: -19.5,30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5921 + - uid: 5922 components: - pos: -20.5,30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5922 + - uid: 5923 components: - pos: -21.5,30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5923 + - uid: 5924 components: - pos: -22.5,30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5924 + - uid: 5925 components: - pos: -23.5,30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5925 + - uid: 5926 components: - pos: -20.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5926 + - uid: 5927 components: - pos: -20.5,23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5927 + - uid: 5928 components: - pos: -20.5,24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5928 + - uid: 5929 components: - pos: -20.5,25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5929 + - uid: 5930 components: - pos: -20.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5930 + - uid: 5931 components: - pos: -20.5,27.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5931 + - uid: 5932 components: - pos: -20.5,28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5932 + - uid: 5933 components: - pos: -20.5,29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5933 + - uid: 5934 components: - pos: 44.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5934 + - uid: 5935 components: - pos: 45.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5935 + - uid: 5936 components: - pos: 46.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5936 + - uid: 5937 components: - pos: 47.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5937 + - uid: 5938 components: - pos: 46.5,-14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5938 + - uid: 5939 components: - pos: 46.5,-15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5939 + - uid: 5940 components: - pos: 46.5,-16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5940 + - uid: 5941 components: - pos: 37.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5941 + - uid: 5942 components: - pos: 36.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5942 + - uid: 5943 components: - pos: 61.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5943 + - uid: 5944 components: - pos: 62.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5944 + - uid: 5945 components: - pos: 63.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5945 + - uid: 5946 components: - pos: 64.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5946 + - uid: 5947 components: - pos: 65.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5947 + - uid: 5948 components: - pos: 65.5,25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5948 + - uid: 5949 components: - pos: 64.5,15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5949 + - uid: 5950 components: - pos: 64.5,16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5950 + - uid: 5951 components: - pos: 64.5,17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5951 + - uid: 5952 components: - pos: 12.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5952 + - uid: 5953 components: - pos: 11.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5953 + - uid: 5954 components: - pos: 10.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5954 + - uid: 5955 components: - pos: 9.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5955 + - uid: 5956 components: - pos: 8.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5956 + - uid: 5957 components: - pos: 7.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5957 + - uid: 5958 components: - pos: 6.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5958 + - uid: 5959 components: - pos: 5.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5959 + - uid: 5960 components: - pos: 4.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5960 + - uid: 5961 components: - pos: 9.5,31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5961 + - uid: 5962 components: - pos: 9.5,30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5962 + - uid: 5963 components: - pos: 8.5,30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5963 + - uid: 5964 components: - pos: 7.5,30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5964 + - uid: 5965 components: - pos: 6.5,30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5965 + - uid: 5966 components: - pos: 6.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5966 + - uid: 5967 components: - pos: 6.5,33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5967 + - uid: 5968 components: - pos: 6.5,34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5968 + - uid: 5969 components: - pos: 7.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5969 + - uid: 5970 components: - pos: 8.5,34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5970 + - uid: 5971 components: - pos: 9.5,34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5971 + - uid: 5972 components: - pos: 9.5,33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5972 + - uid: 5973 components: - pos: 57.5,33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5973 + - uid: 5974 components: - pos: 58.5,33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5974 + - uid: 5975 components: - pos: 55.5,31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5975 + - uid: 5976 components: - pos: 54.5,31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5976 + - uid: 5977 components: - pos: -15.5,42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5977 + - uid: 5978 components: - pos: -16.5,42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5978 + - uid: 5979 components: - pos: -16.5,41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5979 + - uid: 5980 components: - pos: -16.5,40.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5980 + - uid: 5981 components: - pos: -16.5,39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5981 + - uid: 5982 components: - pos: -16.5,38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5982 + - uid: 5983 components: - pos: -16.5,37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5983 + - uid: 5984 components: - pos: -16.5,36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5984 + - uid: 5985 components: - pos: -16.5,35.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5985 + - uid: 5986 components: - pos: -16.5,34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5986 + - uid: 5987 components: - pos: -16.5,33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5987 + - uid: 5988 components: - pos: -16.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5988 + - uid: 5989 components: - pos: -16.5,31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5989 + - uid: 5990 components: - pos: -16.5,30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5990 + - uid: 5991 components: - pos: -16.5,29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5991 + - uid: 5992 components: - pos: -15.5,29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5992 + - uid: 5993 components: - pos: -14.5,29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5993 + - uid: 5994 components: - pos: -14.5,30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5994 + - uid: 5995 components: - pos: -14.5,31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5995 + - uid: 5996 components: - pos: -14.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5996 + - uid: 5997 components: - pos: -14.5,33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5997 + - uid: 5998 components: - pos: -14.5,34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5998 + - uid: 5999 components: - pos: -14.5,35.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 5999 + - uid: 6000 components: - pos: -14.5,36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6000 + - uid: 6001 components: - pos: -14.5,37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6001 + - uid: 6002 components: - pos: -14.5,38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6002 + - uid: 6003 components: - pos: -14.5,39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6003 + - uid: 6004 components: - pos: -14.5,40.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6004 + - uid: 6005 components: - pos: -14.5,41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6005 + - uid: 6006 components: - pos: -14.5,42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6006 + - uid: 6007 components: - pos: -17.5,41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6007 + - uid: 6008 components: - pos: -18.5,41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6008 + - uid: 6009 components: - pos: -18.5,42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6009 + - uid: 6010 components: - pos: -18.5,43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6010 + - uid: 6011 components: - pos: -18.5,44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6011 + - uid: 6012 components: - pos: -18.5,45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6012 + - uid: 6013 components: - pos: -19.5,45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6013 + - uid: 6014 components: - pos: -20.5,45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6014 + - uid: 6015 components: - pos: -21.5,45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6015 + - uid: 6016 components: - pos: -22.5,45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6016 + - uid: 6017 components: - pos: -21.5,44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6017 + - uid: 6018 components: - pos: -21.5,43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6018 + - uid: 6019 components: - pos: -21.5,42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6019 + - uid: 6020 components: - pos: -21.5,41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6020 + - uid: 6021 components: - pos: -21.5,40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6021 + - uid: 6022 components: - pos: -17.5,44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6022 + - uid: 6023 components: - pos: -16.5,44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6023 + - uid: 6024 components: - pos: -16.5,45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6024 + - uid: 6025 components: - pos: -16.5,46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6025 + - uid: 6026 components: - pos: -16.5,47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6026 + - uid: 6027 components: - pos: -16.5,48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6027 + - uid: 6028 components: - pos: -16.5,49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6028 + - uid: 6029 components: - pos: -16.5,50.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6029 + - uid: 6030 components: - pos: -16.5,51.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6030 + - uid: 6031 components: - pos: -17.5,51.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6031 + - uid: 6032 components: - pos: -18.5,51.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6032 + - uid: 6033 components: - pos: -18.5,50.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6033 + - uid: 6034 components: - pos: -18.5,49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6034 + - uid: 6035 components: - pos: -18.5,48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6035 + - uid: 6036 components: - pos: -18.5,47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6036 + - uid: 6037 components: - pos: -18.5,46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6037 + - uid: 6038 components: - pos: -13.5,39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6038 + - uid: 6039 components: - pos: -12.5,39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6039 + - uid: 6040 components: - pos: -11.5,39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6040 + - uid: 6041 components: - pos: -10.5,39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6041 + - uid: 6042 components: - pos: -9.5,39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6042 + - uid: 6043 components: - pos: -8.5,39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6043 + - uid: 6044 components: - pos: -8.5,38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6044 + - uid: 6045 components: - pos: -8.5,37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6045 + - uid: 6046 components: - pos: -9.5,37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6046 + - uid: 6047 components: - pos: -10.5,37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6047 + - uid: 6048 components: - pos: -11.5,37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6048 + - uid: 6049 components: - pos: -12.5,37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6049 + - uid: 6050 components: - pos: -13.5,37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6050 + - uid: 6051 components: - pos: -17.5,34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6051 + - uid: 6052 components: - pos: -18.5,34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6052 + - uid: 6053 components: - pos: -19.5,34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6053 + - uid: 6054 components: - pos: -20.5,34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6054 + - uid: 6055 components: - pos: -21.5,34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6055 + - uid: 6056 components: - pos: -13.5,34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6056 + - uid: 6057 components: - pos: -12.5,34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6057 + - uid: 6058 components: - pos: -11.5,34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6058 + - uid: 6059 components: - pos: -11.5,33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6059 + - uid: 6060 components: - pos: -11.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6060 + - uid: 6061 components: - pos: -11.5,31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6061 + - uid: 6062 components: - pos: -15.5,44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6062 + - uid: 6063 components: - pos: -41.5,23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6063 + - uid: 6064 components: - pos: -41.5,24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6064 + - uid: 6065 components: - pos: -14.5,44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6065 + - uid: 6066 components: - pos: -13.5,44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6066 + - uid: 6067 components: - pos: -12.5,44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6067 + - uid: 6068 components: - pos: -11.5,44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6068 + - uid: 6069 components: - pos: -10.5,44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6069 + - uid: 6070 components: - pos: -15.5,46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6070 + - uid: 6071 components: - pos: -14.5,46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6071 + - uid: 6072 components: - pos: -13.5,46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6072 + - uid: 6073 components: - pos: -12.5,46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6073 + - uid: 6074 components: - pos: -11.5,46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6074 + - uid: 6075 components: - pos: -10.5,46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6075 + - uid: 6076 components: - pos: 52.5,39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6076 + - uid: 6077 components: - pos: 51.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6077 + - uid: 6078 components: - pos: 49.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6078 + - uid: 6079 components: - pos: 48.5,39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6079 + - uid: 6080 components: - pos: 47.5,38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6080 + - uid: 6081 components: - pos: 47.5,39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6081 + - uid: 6082 components: - pos: 47.5,37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6082 + - uid: 6083 components: - pos: 46.5,37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6083 + - uid: 6084 components: - pos: 45.5,37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6084 + - uid: 6085 components: - pos: 45.5,36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6085 + - uid: 6086 components: - pos: 45.5,35.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6086 + - uid: 6087 components: - pos: 46.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6087 + - uid: 6088 components: - pos: 46.5,33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6088 + - uid: 6089 components: - pos: 46.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6089 + - uid: 6090 components: - pos: 47.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6090 + - uid: 6091 components: - pos: 48.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6091 + - uid: 6092 components: - pos: 49.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6092 + - uid: 6093 components: - pos: 52.5,40.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6093 + - uid: 6094 components: - pos: 52.5,41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6094 + - uid: 6095 components: - pos: 49.5,38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6095 + - uid: 6096 components: - pos: 49.5,37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6096 + - uid: 6097 components: - pos: 49.5,36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6097 + - uid: 6098 components: - pos: 6.5,48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6098 + - uid: 6099 components: - pos: 5.5,48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6099 + - uid: 6100 components: - pos: 4.5,48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6100 + - uid: 6101 components: - pos: 3.5,48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6101 + - uid: 6102 components: - pos: 3.5,49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6102 + - uid: 6103 components: - pos: 2.5,49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6103 + - uid: 6104 components: - pos: 1.5,49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6104 + - uid: 6105 components: - pos: 58.5,27.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6105 + - uid: 6106 components: - pos: 59.5,28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6106 + - uid: 6107 components: - pos: 58.5,28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6107 + - uid: 6108 components: - pos: 5.5,49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6108 + - uid: 6109 components: - pos: 5.5,50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6109 + - uid: 6110 components: - pos: 5.5,51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6110 + - uid: 6111 components: - pos: 6.5,51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6111 + - uid: 6112 components: - pos: 6.5,52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6112 + - uid: 6113 components: - pos: 7.5,52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6113 + - uid: 6114 components: - pos: 8.5,52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6114 + - uid: 6115 components: - pos: 63.5,27.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6115 + - uid: 6116 components: - pos: 63.5,28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6116 + - uid: 6117 components: - pos: 63.5,29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6117 + - uid: 6118 components: - pos: 16.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6118 + - uid: 6119 components: - pos: 16.5,36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6119 + - uid: 6120 components: - pos: 16.5,37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6120 + - uid: 6121 components: - pos: 16.5,38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6121 + - uid: 6122 components: - pos: 16.5,39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6122 + - uid: 6123 components: - pos: 15.5,39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6123 + - uid: 6124 components: - pos: 14.5,39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6124 + - uid: 6125 components: - pos: 14.5,38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6125 + - uid: 6126 components: - pos: 14.5,37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6126 + - uid: 6127 components: - pos: 14.5,36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6127 + - uid: 6128 components: - pos: 15.5,36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6128 + - uid: 6129 components: - pos: 17.5,39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6129 + - uid: 6130 components: - pos: 18.5,39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6130 + - uid: 6131 components: - pos: 18.5,38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6131 + - uid: 6132 components: - pos: 18.5,37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6132 + - uid: 6133 components: - pos: 18.5,36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6133 + - uid: 6134 components: - pos: 17.5,36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6134 + - uid: 6135 components: - pos: 16.5,40.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6135 + - uid: 6136 components: - pos: 63.5,30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6136 + - uid: 6137 components: - pos: 63.5,31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6137 + - uid: 6138 components: - pos: 63.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6138 + - uid: 6139 components: - pos: 63.5,33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6139 + - uid: 6140 components: - pos: 63.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6140 + - uid: 6141 components: - pos: 63.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6141 + - uid: 6142 components: - pos: 63.5,36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6142 + - uid: 6143 components: - pos: 64.5,36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6143 + - uid: 6144 components: - pos: 65.5,36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6144 + - uid: 6145 components: - pos: 66.5,36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6145 + - uid: 6146 components: - pos: 67.5,36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6146 + - uid: 6147 components: - pos: 68.5,36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6147 + - uid: 6148 components: - pos: 69.5,36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6148 + - uid: 6149 components: - pos: 70.5,36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6149 + - uid: 6150 components: - pos: 71.5,36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6150 + - uid: 6151 components: - pos: 72.5,36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6151 + - uid: 6152 components: - pos: 73.5,36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6152 + - uid: 6153 components: - pos: 74.5,36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6153 + - uid: 6154 components: - pos: 75.5,36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6154 + - uid: 6155 components: - pos: 76.5,36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6155 + - uid: 6156 components: - pos: 73.5,35.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6156 + - uid: 6157 components: - pos: 73.5,34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6157 + - uid: 6158 components: - pos: 71.5,35.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6158 + - uid: 6159 components: - pos: 71.5,34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6159 + - uid: 6160 components: - pos: 71.5,37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6160 + - uid: 6161 components: - pos: 71.5,38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6161 + - uid: 6162 components: - pos: 73.5,38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6162 + - uid: 6163 components: - pos: 73.5,37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6163 + - uid: 6164 components: - pos: 39.5,47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6164 + - uid: 6165 components: - pos: 43.5,45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6165 + - uid: 6166 components: - pos: 42.5,45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6166 + - uid: 6167 components: - pos: 41.5,45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6167 + - uid: 6168 components: - pos: 40.5,45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6168 + - uid: 6169 components: - pos: 39.5,45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6169 + - uid: 6170 components: - pos: 38.5,45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6170 + - uid: 6171 components: - pos: 37.5,45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6171 + - uid: 6172 components: - pos: 36.5,45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6172 + - uid: 6173 components: - pos: 35.5,45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6173 + - uid: 6174 components: - pos: 34.5,45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6174 + - uid: 6175 components: - pos: 39.5,46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6175 + - uid: 6176 components: - pos: 38.5,44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6176 + - uid: 6177 components: - pos: 38.5,43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6177 + - uid: 6178 components: - pos: 38.5,48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6178 + - uid: 6179 components: - pos: 38.5,49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6179 + - uid: 6180 components: - pos: 38.5,50.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6180 + - uid: 6181 components: - pos: 39.5,50.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6181 + - uid: 6182 components: - pos: 39.5,51.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6182 + - uid: 6183 components: - pos: 40.5,51.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6183 + - uid: 6184 components: - pos: 41.5,51.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6184 + - uid: 6185 components: - pos: 41.5,44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6185 + - uid: 6186 components: - pos: 41.5,46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6186 + - uid: 6187 components: - pos: 41.5,47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6187 + - uid: 6188 components: - pos: 34.5,46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6188 + - uid: 6189 components: - pos: 34.5,47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6189 + - uid: 6190 components: - pos: 35.5,44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6190 + - uid: 6191 components: - pos: 35.5,43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6191 + - uid: 6192 components: - pos: 45.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6192 + - uid: 6193 components: - pos: 45.5,31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6193 + - uid: 6194 components: - pos: 45.5,30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6194 + - uid: 6195 components: - pos: 45.5,29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6195 + - uid: 6196 components: - pos: 44.5,29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6196 + - uid: 6197 components: - pos: 43.5,29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6197 + - uid: 6198 components: - pos: 37.5,50.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6198 + - uid: 6199 components: - pos: -9.5,46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6199 + - uid: 6200 components: - pos: -8.5,46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6200 + - uid: 6201 components: - pos: -7.5,46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6201 + - uid: 6202 components: - pos: -6.5,46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6202 + - uid: 6203 components: - pos: -5.5,46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6203 + - uid: 6204 components: - pos: -4.5,46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6204 + - uid: 6205 components: - pos: -3.5,46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6205 + - uid: 6206 components: - pos: -2.5,46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6206 + - uid: 6207 components: - pos: -1.5,46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6207 + - uid: 6208 components: - pos: -0.5,46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6208 + - uid: 6209 components: - pos: -0.5,45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6209 + - uid: 6210 components: - pos: -0.5,44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6210 + - uid: 6211 components: - pos: -1.5,44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6211 + - uid: 6212 components: - pos: -2.5,44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6212 + - uid: 6213 components: - pos: -3.5,44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6213 + - uid: 6214 components: - pos: -4.5,44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6214 + - uid: 6215 components: - pos: -5.5,44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6215 + - uid: 6216 components: - pos: -6.5,44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6216 + - uid: 6217 components: - pos: -7.5,44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6217 + - uid: 6218 components: - pos: -8.5,44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6218 + - uid: 6219 components: - pos: -9.5,44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6219 + - uid: 6220 components: - pos: 0.5,46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6220 + - uid: 6221 components: - pos: 0.5,47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6221 + - uid: 6222 components: - pos: -0.5,48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6222 + - uid: 6223 components: - pos: -0.5,49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6223 + - uid: 6224 components: - pos: -0.5,50.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6224 + - uid: 6225 components: - pos: -0.5,51.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6225 + - uid: 6226 components: - pos: -0.5,52.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6226 + - uid: 6227 components: - pos: -0.5,53.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6227 + - uid: 6228 components: - pos: -0.5,54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6228 + - uid: 6229 components: - pos: 0.5,48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6229 + - uid: 6230 components: - pos: 1.5,48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6230 + - uid: 6231 components: - pos: 1.5,50.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6231 + - uid: 6232 components: - pos: 1.5,51.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6232 + - uid: 6233 components: - pos: 1.5,52.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6233 + - uid: 6234 components: - pos: 1.5,53.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6234 + - uid: 6235 components: - pos: 1.5,54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6235 + - uid: 6236 components: - pos: -10.5,23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6236 + - uid: 6237 components: - pos: -10.5,22.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6237 + - uid: 6238 components: - pos: -10.5,21.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6238 + - uid: 6239 components: - pos: -10.5,20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6239 + - uid: 6240 components: - pos: -10.5,19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6240 + - uid: 6241 components: - pos: -10.5,18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6241 + - uid: 6242 components: - pos: -11.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6242 + - uid: 6243 components: - pos: -12.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6243 + - uid: 6244 components: - pos: -13.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6244 + - uid: 6245 components: - pos: -13.5,19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6245 + - uid: 6246 components: - pos: -13.5,20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6246 + - uid: 6247 components: - pos: -13.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6247 + - uid: 6248 components: - pos: -9.5,18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6248 + - uid: 6249 components: - pos: -8.5,18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6249 + - uid: 6250 components: - pos: -7.5,18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6250 + - uid: 6251 components: - pos: -11.5,42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6251 + - uid: 6252 components: - pos: -10.5,42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6252 + - uid: 6253 components: - pos: -9.5,42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6253 + - uid: 6254 components: - pos: -9.5,43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6254 + - uid: 6255 components: - pos: 33.5,45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6255 + - uid: 6256 components: - pos: 32.5,45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6256 + - uid: 6257 components: - pos: 31.5,45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6257 + - uid: 6258 components: - pos: 30.5,45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6258 + - uid: 6259 components: - pos: 29.5,45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6259 + - uid: 6260 components: - pos: 29.5,44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6260 + - uid: 6261 components: - pos: 29.5,43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6261 + - uid: 6262 components: - pos: 29.5,42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6262 + - uid: 6263 components: - pos: 29.5,46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6263 + - uid: 6264 components: - pos: 29.5,47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6264 + - uid: 6265 components: - pos: -2.5,31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6265 + - uid: 6266 components: - pos: -2.5,30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6266 + - uid: 6267 components: - pos: -2.5,29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6267 + - uid: 6268 components: - pos: -2.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6268 + - uid: 6269 components: - pos: -2.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6269 + - uid: 6270 components: - pos: -2.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6270 + - uid: 6271 components: - pos: -2.5,25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6271 + - uid: 6272 components: - pos: 3.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6272 + - uid: 6273 components: - pos: -22.5,34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6273 + - uid: 6274 components: - pos: -23.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6274 + - uid: 6275 components: - pos: -24.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6275 + - uid: 6276 components: - pos: -24.5,35.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6276 + - uid: 6277 components: - pos: -24.5,36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6277 + - uid: 6278 components: - pos: -24.5,37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6278 + - uid: 6279 components: - pos: -24.5,38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6279 + - uid: 6280 components: - pos: -23.5,38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6280 + - uid: 6281 components: - pos: -22.5,38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6281 + - uid: 6282 components: - pos: -21.5,38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6282 + - uid: 6283 components: - pos: -20.5,38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6283 + - uid: 6284 components: - pos: -24.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6284 + - uid: 6285 components: - pos: -24.5,40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6285 + - uid: 6286 components: - pos: -24.5,41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6286 + - uid: 6287 components: - pos: -24.5,42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6287 + - uid: 6288 components: - pos: -24.5,43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6288 + - uid: 6289 components: - pos: -24.5,44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6289 + - uid: 6290 components: - pos: -24.5,45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6290 + - uid: 6291 components: - pos: -25.5,45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6291 + - uid: 6292 components: - pos: -26.5,45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6292 + - uid: 6293 components: - pos: -27.5,45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6293 + - uid: 6294 components: - pos: -27.5,44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6294 + - uid: 6295 components: - pos: -24.5,46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6295 + - uid: 6296 components: - pos: -24.5,47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6296 + - uid: 6297 components: - pos: -23.5,47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6297 + - uid: 6298 components: - pos: -22.5,47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6298 + - uid: 6299 components: - pos: -22.5,48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6299 + - uid: 6300 components: - pos: -21.5,48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6300 + - uid: 6301 components: - pos: -20.5,48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6301 + - uid: 6302 components: - pos: -20.5,50.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6302 + - uid: 6303 components: - pos: -19.5,50.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6303 + - uid: 6304 components: - pos: -20.5,49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6304 + - uid: 6305 components: - pos: -8.5,60.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6305 + - uid: 6306 components: - pos: -8.5,59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6306 + - uid: 6307 components: - pos: -7.5,58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6307 + - uid: 6308 components: - pos: -6.5,58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6308 + - uid: 6309 components: - pos: -5.5,58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6309 + - uid: 6310 components: - pos: -4.5,58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6310 + - uid: 6311 components: - pos: -3.5,58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6311 + - uid: 6312 components: - pos: -2.5,58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6312 + - uid: 6313 components: - pos: -1.5,58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6313 + - uid: 6314 components: - pos: -0.5,58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6314 + - uid: 6315 components: - pos: 0.5,58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6315 + - uid: 6316 components: - pos: 0.5,57.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6316 + - uid: 6317 components: - pos: 0.5,56.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6317 + - uid: 6318 components: - pos: 0.5,55.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6318 + - uid: 6319 components: - pos: -2.5,59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6319 + - uid: 6320 components: - pos: -2.5,60.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6320 + - uid: 6321 components: - pos: -2.5,61.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6321 + - uid: 6322 components: - pos: -2.5,62.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6322 + - uid: 6323 components: - pos: -1.5,62.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6323 + - uid: 6324 components: - pos: -1.5,63.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6324 + - uid: 6325 components: - pos: -1.5,65.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6325 + - uid: 6326 components: - pos: -1.5,64.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6326 + - uid: 6327 components: - pos: -0.5,59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6327 + - uid: 6328 components: - pos: -0.5,60.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6328 + - uid: 6329 components: - pos: -0.5,61.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6329 + - uid: 6330 components: - pos: -0.5,62.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6330 + - uid: 6331 components: - pos: -1.5,66.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6331 + - uid: 6332 components: - pos: -2.5,66.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6332 + - uid: 6333 components: - pos: -3.5,66.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6333 + - uid: 6334 components: - pos: -4.5,66.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6334 + - uid: 6335 components: - pos: -5.5,66.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6335 + - uid: 6336 components: - pos: -5.5,67.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6336 + - uid: 6337 components: - pos: -5.5,68.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6337 + - uid: 6338 components: - pos: -5.5,69.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6338 + - uid: 6339 components: - pos: -5.5,70.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6339 + - uid: 6340 components: - pos: -5.5,71.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6340 + - uid: 6341 components: - pos: -5.5,72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6341 + - uid: 6342 components: - pos: -4.5,72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6342 + - uid: 6343 components: - pos: -3.5,72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6343 + - uid: 6344 components: - pos: -2.5,72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6344 + - uid: 6345 components: - pos: -1.5,72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6345 + - uid: 6346 components: - pos: -0.5,72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6346 + - uid: 6347 components: - pos: 0.5,72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6347 + - uid: 6348 components: - pos: 1.5,72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6348 + - uid: 6349 components: - pos: 2.5,72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6349 + - uid: 6350 components: - pos: 2.5,71.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6350 + - uid: 6351 components: - pos: 2.5,70.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6351 + - uid: 6352 components: - pos: 2.5,69.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6352 + - uid: 6353 components: - pos: 2.5,68.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6353 + - uid: 6354 components: - pos: 2.5,67.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6354 + - uid: 6355 components: - pos: 2.5,66.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6355 + - uid: 6356 components: - pos: 1.5,66.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6356 + - uid: 6357 components: - pos: 0.5,66.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6357 + - uid: 6358 components: - pos: -0.5,66.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6358 + - uid: 6359 components: - pos: -1.5,67.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6359 + - uid: 6360 components: - pos: -1.5,68.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6360 + - uid: 6361 components: - pos: -1.5,69.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6361 + - uid: 6362 components: - pos: -7.5,59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6362 + - uid: 6363 components: - pos: -9.5,59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6363 + - uid: 6364 components: - pos: -10.5,59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6364 + - uid: 6365 components: - pos: -11.5,59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6365 + - uid: 6366 components: - pos: -12.5,59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6366 + - uid: 6367 components: - pos: -12.5,58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6367 + - uid: 6368 components: - pos: -12.5,57.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6368 + - uid: 6369 components: - pos: -12.5,56.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6369 + - uid: 6370 components: - pos: -12.5,55.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6370 + - uid: 6371 components: - pos: -12.5,54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6371 + - uid: 6372 components: - pos: -12.5,53.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6372 + - uid: 6373 components: - pos: -12.5,52.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6373 + - uid: 6374 components: - pos: -12.5,51.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6374 + - uid: 6375 components: - pos: -12.5,50.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6375 + - uid: 6376 components: - pos: -12.5,49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6376 + - uid: 6377 components: - pos: -13.5,49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6377 + - uid: 6378 components: - pos: -14.5,49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6378 + - uid: 6379 components: - pos: -14.5,50.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6379 + - uid: 6380 components: - pos: -14.5,51.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6380 + - uid: 6381 components: - pos: -13.5,51.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6381 + - uid: 6382 components: - pos: -12.5,60.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6382 + - uid: 6383 components: - pos: -12.5,61.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6383 + - uid: 6384 components: - pos: -12.5,62.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6384 + - uid: 6385 components: - pos: -12.5,63.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6385 + - uid: 6386 components: - pos: -12.5,64.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6386 + - uid: 6387 components: - pos: -12.5,65.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6387 + - uid: 6388 components: - pos: -12.5,66.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6388 + - uid: 6389 components: - pos: -12.5,67.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6389 + - uid: 6390 components: - pos: -12.5,68.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6390 + - uid: 6391 components: - pos: -12.5,69.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6391 + - uid: 6392 components: - pos: -12.5,70.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6392 + - uid: 6393 components: - pos: -12.5,71.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6393 + - uid: 6394 components: - pos: -12.5,72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6394 + - uid: 6395 components: - pos: -12.5,73.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6395 + - uid: 6396 components: - pos: -12.5,74.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6396 + - uid: 6397 components: - pos: -13.5,67.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6397 + - uid: 6398 components: - pos: -14.5,67.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6398 + - uid: 6399 components: - pos: -15.5,67.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6399 + - uid: 6400 components: - pos: -16.5,67.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6400 + - uid: 6401 components: - pos: -17.5,67.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6401 + - uid: 6402 components: - pos: -17.5,66.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6402 + - uid: 6403 components: - pos: -17.5,65.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6403 + - uid: 6404 components: - pos: -17.5,64.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6404 + - uid: 6405 components: - pos: -17.5,63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6405 + - uid: 6406 components: - pos: -17.5,62.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6406 + - uid: 6407 components: - pos: -17.5,61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6407 + - uid: 6408 components: - pos: -17.5,60.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6408 + - uid: 6409 components: - pos: -17.5,59.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6409 + - uid: 6410 components: - pos: -17.5,58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6410 + - uid: 6411 components: - pos: -17.5,57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6411 + - uid: 6412 components: - pos: -17.5,56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6412 + - uid: 6413 components: - pos: -17.5,55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6413 + - uid: 6414 components: - pos: -18.5,55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6414 + - uid: 6415 components: - pos: -19.5,55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6415 + - uid: 6416 components: - pos: -20.5,55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6416 + - uid: 6417 components: - pos: -21.5,55.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6417 + - uid: 6418 components: - pos: -22.5,55.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6418 + - uid: 6419 components: - pos: -22.5,54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6419 + - uid: 6420 components: - pos: -22.5,53.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6420 + - uid: 6421 components: - pos: -22.5,52.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6421 + - uid: 6422 components: - pos: -22.5,51.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6422 + - uid: 6423 components: - pos: -21.5,53.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6423 + - uid: 6424 components: - pos: -21.5,56.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6424 + - uid: 6425 components: - pos: -21.5,57.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6425 + - uid: 6426 components: - pos: -21.5,58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6426 + - uid: 6427 components: - pos: -21.5,59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6427 + - uid: 6428 components: - pos: -21.5,60.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6428 + - uid: 6429 components: - pos: -21.5,61.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6429 + - uid: 6430 components: - pos: -21.5,62.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6430 + - uid: 6431 components: - pos: -21.5,63.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6431 + - uid: 6432 components: - pos: -21.5,64.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6432 + - uid: 6433 components: - pos: -21.5,65.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6433 + - uid: 6434 components: - pos: -21.5,66.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6434 + - uid: 6435 components: - pos: -21.5,67.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6435 + - uid: 6436 components: - pos: -21.5,68.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6436 + - uid: 6437 components: - pos: -21.5,69.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6437 + - uid: 6438 components: - pos: -21.5,70.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6438 + - uid: 6439 components: - pos: -21.5,71.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6439 + - uid: 6440 components: - pos: -21.5,72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6440 + - uid: 6441 components: - pos: -21.5,73.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6441 + - uid: 6442 components: - pos: -21.5,74.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6442 + - uid: 6443 components: - pos: -17.5,68.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6443 + - uid: 6444 components: - pos: -17.5,69.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6444 + - uid: 6445 components: - pos: -17.5,70.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6445 + - uid: 6446 components: - pos: -17.5,54.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6446 + - uid: 6447 components: - pos: -17.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6447 + - uid: 6448 components: - pos: -25.5,41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6448 + - uid: 6449 components: - pos: -25.5,40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6449 + - uid: 6450 components: - pos: -26.5,41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6450 + - uid: 6451 components: - pos: -28.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6451 + - uid: 6452 components: - pos: -27.5,41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6452 + - uid: 6453 components: - pos: -28.5,40.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6453 + - uid: 6454 components: - pos: -28.5,41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6454 + - uid: 6455 components: - pos: -28.5,38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6455 + - uid: 6456 components: - pos: -29.5,38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6456 + - uid: 6457 components: - pos: -30.5,38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6457 + - uid: 6458 components: - pos: -31.5,38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6458 + - uid: 6459 components: - pos: -32.5,38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6459 + - uid: 6460 components: - pos: -32.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6460 + - uid: 6461 components: - pos: -33.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6461 + - uid: 6462 components: - pos: -34.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6462 + - uid: 6463 components: - pos: -35.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6463 + - uid: 6464 components: - pos: -36.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6464 + - uid: 6465 components: - pos: -37.5,39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6465 + - uid: 6466 components: - pos: -37.5,40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6466 + - uid: 6467 components: - pos: -37.5,41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6467 + - uid: 6468 components: - pos: -37.5,42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6468 + - uid: 6469 components: - pos: -38.5,39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6469 + - uid: 6470 components: - pos: -39.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6470 + - uid: 6471 components: - pos: -40.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6471 + - uid: 6472 components: - pos: -41.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6472 + - uid: 6473 components: - pos: -42.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6473 + - uid: 6474 components: - pos: -43.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6474 + - uid: 6475 components: - pos: -44.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6475 + - uid: 6476 components: - pos: -45.5,39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6476 + - uid: 6477 components: - pos: -46.5,39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6477 + - uid: 6478 components: - pos: -41.5,38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6478 + - uid: 6479 components: - pos: -29.5,37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6479 + - uid: 6480 components: - pos: -29.5,36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6480 + - uid: 6481 components: - pos: -30.5,36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6481 + - uid: 6482 components: - pos: -31.5,36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6482 + - uid: 6483 components: - pos: -32.5,36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6483 + - uid: 6484 components: - pos: -33.5,36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6484 + - uid: 6485 components: - pos: -34.5,36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6485 + - uid: 6486 components: - pos: -34.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6486 + - uid: 6487 components: - pos: -35.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6487 + - uid: 6488 components: - pos: -36.5,37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6488 + - uid: 6489 components: - pos: -37.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6489 + - uid: 6490 components: - pos: -37.5,36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6490 + - uid: 6491 components: - pos: -21.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6491 + - uid: 6492 components: - pos: -22.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6492 + - uid: 6493 components: - pos: -23.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6493 + - uid: 6494 components: - pos: -24.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6494 + - uid: 6495 components: - pos: -25.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6495 + - uid: 6496 components: - pos: -26.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6496 + - uid: 6497 components: - pos: -27.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6497 + - uid: 6498 components: - pos: -28.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6498 + - uid: 6499 components: - pos: -28.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6499 + - uid: 6500 components: - pos: -28.5,29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6500 + - uid: 6501 components: - pos: -28.5,30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6501 + - uid: 6502 components: - pos: -28.5,31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6502 + - uid: 6503 components: - pos: -27.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6503 + - uid: 6504 components: - pos: -27.5,33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6504 + - uid: 6505 components: - pos: -27.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6505 + - uid: 6506 components: - pos: -27.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6506 + - uid: 6507 components: - pos: -27.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6507 + - uid: 6508 components: - pos: -16.5,62.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6508 + - uid: 6509 components: - pos: -16.5,61.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6509 + - uid: 6510 components: - pos: -18.5,62.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6510 + - uid: 6511 components: - pos: -18.5,61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6511 + - uid: 6512 components: - pos: 56.5,36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6512 + - uid: 6513 components: - pos: 28.5,45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6513 + - uid: 6514 components: - pos: 27.5,45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6514 + - uid: 6515 components: - pos: 26.5,45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6515 + - uid: 6516 components: - pos: 25.5,45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6516 + - uid: 6517 components: - pos: 24.5,45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6517 + - uid: 6518 components: - pos: 23.5,45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6518 + - uid: 6519 components: - pos: 22.5,45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6519 + - uid: 6520 components: - pos: 21.5,45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6520 + - uid: 6521 components: - pos: -8.5,-76.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6521 + - uid: 6522 components: - pos: -8.5,-77.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6522 + - uid: 6523 components: - pos: -8.5,-78.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6523 + - uid: 6524 components: - pos: -8.5,-79.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6524 + - uid: 6525 components: - pos: -8.5,-80.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6525 + - uid: 6526 components: - pos: -8.5,-81.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6526 + - uid: 6527 components: - pos: -8.5,-82.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6527 + - uid: 6528 components: - pos: -8.5,-83.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6528 + - uid: 6529 components: - pos: -8.5,-84.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6529 + - uid: 6530 components: - pos: -8.5,-85.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6530 + - uid: 6531 components: - pos: -8.5,-86.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6531 + - uid: 6532 components: - pos: -7.5,-86.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6532 + - uid: 6533 components: - pos: -7.5,-87.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6533 + - uid: 6534 components: - pos: -7.5,-88.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6534 + - uid: 6535 components: - pos: -7.5,-89.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6535 + - uid: 6536 components: - pos: -7.5,-90.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6536 + - uid: 6537 components: - pos: -7.5,-91.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6537 + - uid: 6538 components: - pos: -7.5,-92.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6538 + - uid: 6539 components: - pos: -7.5,-93.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6539 + - uid: 6540 components: - pos: -7.5,-94.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6540 + - uid: 6541 components: - pos: -7.5,-95.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6541 + - uid: 6542 components: - pos: -7.5,-96.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6542 + - uid: 6543 components: - pos: -7.5,-97.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6543 + - uid: 6544 components: - pos: -8.5,-97.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6544 + - uid: 6545 components: - pos: -9.5,-97.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6545 + - uid: 6546 components: - pos: -10.5,-97.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6546 + - uid: 6547 components: - pos: -11.5,-97.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6547 + - uid: 6548 components: - pos: -12.5,-97.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6548 + - uid: 6549 components: - pos: -13.5,-97.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6549 + - uid: 6550 components: - pos: -14.5,-97.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6550 + - uid: 6551 components: - pos: -15.5,-97.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6551 + - uid: 6552 components: - pos: -16.5,-97.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6552 + - uid: 6553 components: - pos: -17.5,-97.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6553 + - uid: 6554 components: - pos: -18.5,-97.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6554 + - uid: 6555 components: - pos: -19.5,-97.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6555 + - uid: 6556 components: - pos: -20.5,-97.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6556 + - uid: 6557 components: - pos: -20.5,-96.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6557 + - uid: 6558 components: - pos: -20.5,-95.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6558 + - uid: 6559 components: - pos: -21.5,-95.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6559 + - uid: 6560 components: - pos: -22.5,-95.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6560 + - uid: 6561 components: - pos: -23.5,-95.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6561 + - uid: 6562 components: - pos: -24.5,-95.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6562 + - uid: 6563 components: - pos: -24.5,-96.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6563 + - uid: 6564 components: - pos: -24.5,-97.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6564 + - uid: 6565 components: - pos: -24.5,-98.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6565 + - uid: 6566 components: - pos: -24.5,-99.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6566 + - uid: 6567 components: - pos: -23.5,-99.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6567 + - uid: 6568 components: - pos: -22.5,-99.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6568 + - uid: 6569 components: - pos: -21.5,-99.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6569 + - uid: 6570 components: - pos: -20.5,-99.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6570 + - uid: 6571 components: - pos: -20.5,-98.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6571 + - uid: 6572 components: - pos: -15.5,-98.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6572 + - uid: 6573 components: - pos: -6.5,-97.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6573 + - uid: 6574 components: - pos: -5.5,-97.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6574 + - uid: 6575 components: - pos: -4.5,-97.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6575 + - uid: 6576 components: - pos: -7.5,-98.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6576 + - uid: 6577 components: - pos: -7.5,-99.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6577 + - uid: 6578 components: - pos: -7.5,-100.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6578 + - uid: 6579 components: - pos: -8.5,-95.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6579 + - uid: 6580 components: - pos: -43.5,-85.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6580 + - uid: 6581 components: - pos: -43.5,-86.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6581 + - uid: 6582 components: - pos: -43.5,-87.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6582 + - uid: 6583 components: - pos: -43.5,-88.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6583 + - uid: 6584 components: - pos: -43.5,-89.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6584 + - uid: 6585 components: - pos: -41.5,-84.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6585 + - uid: 6586 components: - pos: -40.5,-84.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6586 + - uid: 6587 components: - pos: -40.5,-85.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6587 + - uid: 6588 components: - pos: -40.5,-86.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6588 + - uid: 6589 components: - pos: -40.5,-87.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6589 + - uid: 6590 components: - pos: -40.5,-88.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6590 + - uid: 6591 components: - pos: -40.5,-89.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6591 + - uid: 6592 components: - pos: -40.5,-90.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6592 + - uid: 6593 components: - pos: -25.5,-97.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6593 + - uid: 6594 components: - pos: -26.5,-97.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6594 + - uid: 6595 components: - pos: -40.5,-91.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6595 + - uid: 6596 components: - pos: -43.5,-91.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6596 + - uid: 6597 components: - pos: -43.5,-92.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6597 + - uid: 6598 components: - pos: -42.5,-92.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6598 + - uid: 6599 components: - pos: -40.5,-92.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6599 + - uid: 6600 components: - pos: -41.5,-92.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6600 + - uid: 6601 components: - pos: -41.5,-93.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6601 + - uid: 6602 components: - pos: -41.5,-94.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6602 + - uid: 6603 components: - pos: -41.5,-95.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6603 + - uid: 6604 components: - pos: -42.5,-95.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6604 + - uid: 6605 components: - pos: -43.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6605 + - uid: 6606 components: - pos: -43.5,-96.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6606 + - uid: 6607 components: - pos: -43.5,-97.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6607 + - uid: 6608 components: - pos: -42.5,-97.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6608 + - uid: 6609 components: - pos: -41.5,-97.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6609 + - uid: 6610 components: - pos: -40.5,-97.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6610 + - uid: 6611 components: - pos: -39.5,-97.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6611 + - uid: 6612 components: - pos: -38.5,-97.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6612 + - uid: 6613 components: - pos: -37.5,-97.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6613 + - uid: 6614 components: - pos: -36.5,-97.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6614 + - uid: 6615 components: - pos: -35.5,-97.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6615 + - uid: 6616 components: - pos: -40.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6616 + - uid: 6617 components: - pos: -39.5,-95.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6617 + - uid: 6618 components: - pos: -38.5,-95.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6618 + - uid: 6619 components: - pos: -37.5,-95.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6619 + - uid: 6620 components: - pos: -36.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6620 + - uid: 6621 components: - pos: -35.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6621 + - uid: 6622 components: - pos: -35.5,-96.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6622 + - uid: 6623 components: - pos: -34.5,-97.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6623 + - uid: 6624 components: - pos: -33.5,-97.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6624 + - uid: 6625 components: - pos: -32.5,-97.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6625 + - uid: 6626 components: - pos: -31.5,-97.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6626 + - uid: 6627 components: - pos: -30.5,-97.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6627 + - uid: 6628 components: - pos: -29.5,-97.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6628 + - uid: 6629 components: - pos: -28.5,-97.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6629 + - uid: 6630 components: - pos: -43.5,-90.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6630 + - uid: 6631 components: - pos: -35.5,-98.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6631 + - uid: 6632 components: - pos: -35.5,-99.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6632 + - uid: 6633 components: - pos: -35.5,-100.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6633 + - uid: 6634 components: - pos: -35.5,-100.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6634 + - uid: 6635 components: - pos: -35.5,-99.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6635 + - uid: 6636 components: - pos: -35.5,-102.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6636 + - uid: 6637 components: - pos: -35.5,-103.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6637 + - uid: 6638 components: - pos: -35.5,-104.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6638 + - uid: 6639 components: - pos: -35.5,-105.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6639 + - uid: 6640 components: - pos: -36.5,-104.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6640 + - uid: 6641 components: - pos: 37.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6641 + - uid: 6642 components: - pos: 36.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6642 + - uid: 6643 components: - pos: 36.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6643 + - uid: 6644 components: - pos: 36.5,-46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6644 + - uid: 6645 components: - pos: -71.5,-31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6645 + - uid: 6646 components: - pos: -72.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6646 + - uid: 6647 components: - pos: -72.5,-27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6647 + - uid: 6648 components: - pos: -72.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6648 + - uid: 6649 components: - pos: -72.5,-29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6649 + - uid: 6650 components: - pos: -73.5,-31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6650 + - uid: 6651 components: - pos: -72.5,-31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6651 + - uid: 6652 components: - pos: -72.5,-32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6652 + - uid: 6653 components: - pos: -72.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6653 + - uid: 6654 components: - pos: -72.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6654 + - uid: 6655 components: - pos: -73.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6655 + - uid: 6656 components: - pos: -73.5,-29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6656 + - uid: 6657 components: - pos: -69.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6657 + - uid: 6658 components: - pos: -67.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6658 + - uid: 6659 components: - pos: -67.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6659 + - uid: 6660 components: - pos: -64.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6660 + - uid: 6661 components: - pos: -65.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6661 + - uid: 6662 components: - pos: -66.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6662 + - uid: 6663 components: - pos: -70.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6663 + - uid: 6664 components: - pos: -67.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6664 + - uid: 6665 components: - pos: -72.5,-42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6665 + - uid: 6666 components: - pos: -68.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6666 + - uid: 6667 components: - pos: -70.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6667 + - uid: 6668 components: - pos: -70.5,-40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6668 + - uid: 6669 components: - pos: -63.5,-43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6669 + - uid: 6670 components: - pos: -62.5,-43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6670 + - uid: 6671 components: - pos: -61.5,-43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6671 + - uid: 6672 components: - pos: -61.5,-44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6672 + - uid: 6673 components: - pos: -61.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6673 + - uid: 6674 components: - pos: -61.5,-46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6674 + - uid: 6675 components: - pos: -61.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6675 + - uid: 6676 components: - pos: -67.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6676 + - uid: 6677 components: - pos: -68.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6677 + - uid: 6678 components: - pos: -70.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6678 + - uid: 6679 components: - pos: -71.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6679 + - uid: 6680 components: - pos: -71.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6680 + - uid: 6681 components: - pos: -71.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6681 + - uid: 6682 components: - pos: -72.5,-43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6682 + - uid: 6683 components: - pos: -72.5,-44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6683 + - uid: 6684 components: - pos: -70.5,-46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6684 + - uid: 6685 components: - pos: -68.5,-46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6685 + - uid: 6686 components: - pos: -69.5,-46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6686 + - uid: 6687 components: - pos: 24.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6687 + - uid: 6688 components: - pos: 27.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6688 + - uid: 6689 components: - pos: -12.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6689 + - uid: 6690 components: - pos: 62.5,-29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6690 + - uid: 6691 components: - pos: 74.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6691 + - uid: 6692 components: - pos: 75.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6692 + - uid: 6693 components: - pos: 76.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6693 + - uid: 6694 components: - pos: 74.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6694 + - uid: 6695 components: - pos: 74.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6695 + - uid: 6696 components: - pos: 74.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6696 + - uid: 6697 components: - pos: 74.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6697 + - uid: 6698 components: - pos: 74.5,-40.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6698 + - uid: 6699 components: - pos: 74.5,-39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6699 + - uid: 6700 components: - pos: 74.5,-38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6700 + - uid: 6701 components: - pos: 76.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6701 + - uid: 6702 components: - pos: 76.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6702 + - uid: 6703 components: - pos: 76.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6703 + - uid: 6704 components: - pos: 76.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6704 + - uid: 6705 components: - pos: 73.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6705 + - uid: 6706 components: - pos: 74.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6706 + - uid: 6707 components: - pos: 74.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6707 + - uid: 6708 components: - pos: 75.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6708 + - uid: 6709 components: - pos: 74.5,-37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6709 + - uid: 6710 components: - pos: 75.5,-37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6710 + - uid: 6711 components: - pos: 76.5,-37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6711 + - uid: 6712 components: - pos: 77.5,-37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6712 + - uid: 6713 components: - pos: 78.5,-37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6713 + - uid: 6714 components: - pos: 78.5,-36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6714 + - uid: 6715 components: - pos: 78.5,-35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6715 + - uid: 6716 components: - pos: 78.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6716 + - uid: 6717 components: - pos: 78.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6717 + - uid: 6718 components: - pos: 77.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6718 + - uid: 6719 components: - pos: 76.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6719 + - uid: 6720 components: - pos: 75.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6720 + - uid: 6721 components: - pos: 74.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6721 + - uid: 6722 components: - pos: 74.5,-32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6722 + - uid: 6723 components: - pos: 73.5,-32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6723 + - uid: 6724 components: - pos: 72.5,-32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6724 + - uid: 6725 components: - pos: 71.5,-32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6725 + - uid: 6726 components: - pos: 70.5,-32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6726 + - uid: 6727 components: - pos: 70.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6727 + - uid: 6728 components: - pos: 70.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6728 + - uid: 6729 components: - pos: 70.5,-35.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6729 + - uid: 6730 components: - pos: 70.5,-36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6730 + - uid: 6731 components: - pos: 71.5,-36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6731 + - uid: 6732 components: - pos: 72.5,-37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6732 + - uid: 6733 components: - pos: 73.5,-37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6733 + - uid: 6734 components: - pos: 73.5,-36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6734 + - uid: 6735 components: - pos: 73.5,-35.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6735 + - uid: 6736 components: - pos: 69.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6736 + - uid: 6737 components: - pos: 68.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6737 + - uid: 6738 components: - pos: 67.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6738 + - uid: 6739 components: - pos: 66.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6739 + - uid: 6740 components: - pos: 65.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6740 + - uid: 6741 components: - pos: 62.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6741 + - uid: 6742 components: - pos: 65.5,-32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6742 + - uid: 6743 components: - pos: -21.5,-61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6743 + - uid: 6744 components: - pos: -16.5,-15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6744 + - uid: 6745 components: - pos: 70.5,-37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6745 + - uid: 6746 components: - pos: 69.5,-37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6746 + - uid: 6747 components: - pos: 68.5,-37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6747 + - uid: 6748 components: - pos: 67.5,-37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6748 + - uid: 6749 components: - pos: 67.5,-38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6749 + - uid: 6750 components: - pos: 54.5,10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6750 + - uid: 6751 components: - pos: -71.5,-29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6751 + - uid: 6752 components: - pos: -55.5,-62.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6752 + - uid: 6753 components: - pos: -54.5,-62.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6753 + - uid: 6754 components: - pos: -53.5,-62.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6754 + - uid: 6755 components: - pos: -54.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6755 + - uid: 6756 components: - pos: -53.5,-58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6756 + - uid: 6757 components: - pos: -52.5,-58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6757 + - uid: 6758 components: - pos: -51.5,-58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6758 + - uid: 6759 components: - pos: -56.5,-61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6759 + - uid: 6760 components: - pos: -54.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6760 + - uid: 6761 components: - pos: 72.5,-31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6761 + - uid: 6762 components: - pos: 72.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6762 + - uid: 6763 components: - pos: 72.5,-29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6763 + - uid: 6764 components: - pos: 72.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6764 + - uid: 6765 components: - pos: -53.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6765 + - uid: 6766 components: - pos: 56.5,34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6766 + - uid: 6767 components: - pos: -71.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6767 + - uid: 6768 components: - pos: 6.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6768 + - uid: 6769 components: - pos: 7.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6769 + - uid: 6770 components: - pos: 9.5,-40.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6770 + - uid: 6771 components: - pos: 9.5,-39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6771 + - uid: 6772 components: - pos: 8.5,-39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6772 + - uid: 6773 components: - pos: 8.5,-38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6773 + - uid: 6774 components: - pos: 8.5,-37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6774 + - uid: 6775 components: - pos: 8.5,-36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6775 + - uid: 6776 components: - pos: 8.5,-35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6776 + - uid: 6777 components: - pos: 8.5,-34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6777 + - uid: 6778 components: - pos: 8.5,-33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6778 + - uid: 6779 components: - pos: 8.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6779 + - uid: 6780 components: - pos: 8.5,-31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6780 + - uid: 6781 components: - pos: 8.5,-30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6781 + - uid: 6782 components: - pos: 8.5,-29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6782 + - uid: 6783 components: - pos: 9.5,-29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6783 + - uid: 6784 components: - pos: 10.5,-29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6784 + - uid: 6785 components: - pos: 11.5,-29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6785 + - uid: 6786 components: - pos: 7.5,-36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6786 + - uid: 6787 components: - pos: 6.5,-36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6787 + - uid: 6788 components: - pos: 6.5,-35.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6788 + - uid: 6789 components: - pos: 6.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6789 + - uid: 6790 components: - pos: 6.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6790 + - uid: 6791 components: - pos: 6.5,-32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6791 + - uid: 6792 components: - pos: 6.5,-31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6792 + - uid: 6793 components: - pos: 5.5,-31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6793 + - uid: 6794 components: - pos: 4.5,-31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6794 + - uid: 6795 components: - pos: 3.5,-31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6795 + - uid: 6796 components: - pos: 2.5,-31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6796 + - uid: 6797 components: - pos: 4.5,-32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6797 + - uid: 6798 components: - pos: 4.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6798 + - uid: 6799 components: - pos: 55.5,-62.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6799 + - uid: 6800 components: - pos: 6.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6800 + - uid: 6801 components: - pos: 54.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6801 + - uid: 6802 components: - pos: 53.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6802 + - uid: 6803 components: - pos: 52.5,-32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6803 + - uid: 6804 components: - pos: 55.5,-31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6804 + - uid: 6805 components: - pos: 55.5,-30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6805 + - uid: 6806 components: - pos: 55.5,-29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6806 + - uid: 6807 components: - pos: 55.5,-28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6807 + - uid: 6808 components: - pos: 55.5,-27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6808 + - uid: 6809 components: - pos: 55.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6809 + - uid: 6810 components: - pos: 61.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6810 + - uid: 6811 components: - pos: 60.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6811 + - uid: 6812 components: - pos: 59.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6812 + - uid: 6813 components: - pos: 58.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6813 + - uid: 6814 components: - pos: 57.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6814 + - uid: 6815 components: - pos: 57.5,-27.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6815 + - uid: 6816 components: - pos: 57.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6816 + - uid: 6817 components: - pos: 58.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6817 + - uid: 6818 components: - pos: 58.5,-29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6818 + - uid: 6819 components: - pos: 55.5,-35.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6819 + - uid: 6820 components: - pos: 54.5,-35.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6820 + - uid: 6821 components: - pos: 54.5,-36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6821 + - uid: 6822 components: - pos: 54.5,-37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6822 + - uid: 6823 components: - pos: 55.5,-37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6823 + - uid: 6824 components: - pos: 55.5,-38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6824 + - uid: 6825 components: - pos: 55.5,-39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6825 + - uid: 6826 components: - pos: 57.5,-38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6826 + - uid: 6827 components: - pos: 58.5,-38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6827 + - uid: 6828 components: - pos: 59.5,-38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6828 + - uid: 6829 components: - pos: 59.5,-39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6829 + - uid: 6830 components: - pos: 59.5,-40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6830 + - uid: 6831 components: - pos: 59.5,-41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6831 + - uid: 6832 components: - pos: 59.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6832 + - uid: 6833 components: - pos: 59.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6833 + - uid: 6834 components: - pos: 36.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6834 + - uid: 6835 components: - pos: 37.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6835 + - uid: 6836 components: - pos: 38.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6836 + - uid: 6837 components: - pos: 39.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6837 + - uid: 6838 components: - pos: 40.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6838 + - uid: 6839 components: - pos: 41.5,-33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6839 + - uid: 6840 components: - pos: 42.5,-33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6840 + - uid: 6841 components: - pos: 43.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6841 + - uid: 6842 components: - pos: 44.5,-33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6842 + - uid: 6843 components: - pos: 45.5,-33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6843 + - uid: 6844 components: - pos: 46.5,-33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6844 + - uid: 6845 components: - pos: 47.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6845 + - uid: 6846 components: - pos: 48.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6846 + - uid: 6847 components: - pos: 49.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6847 + - uid: 6848 components: - pos: 49.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6848 + - uid: 6849 components: - pos: 50.5,-34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6849 + - uid: 6850 components: - pos: 51.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6850 + - uid: 6851 components: - pos: 55.5,-64.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6851 + - uid: 6852 components: - pos: 55.5,-65.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6852 + - uid: 6853 components: - pos: 54.5,-65.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6853 + - uid: 6854 components: - pos: 53.5,-65.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6854 + - uid: 6855 components: - pos: 52.5,-65.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6855 + - uid: 6856 components: - pos: 51.5,-65.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6856 + - uid: 6857 components: - pos: 50.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6857 + - uid: 6858 components: - pos: 49.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6858 + - uid: 6859 components: - pos: 48.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6859 + - uid: 6860 components: - pos: 47.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6860 + - uid: 6861 components: - pos: 46.5,-65.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6861 + - uid: 6862 components: - pos: 45.5,-65.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6862 + - uid: 6863 components: - pos: 45.5,-64.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6863 + - uid: 6864 components: - pos: 44.5,-64.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6864 + - uid: 6865 components: - pos: 43.5,-64.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6865 + - uid: 6866 components: - pos: 45.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6866 + - uid: 6867 components: - pos: 43.5,-63.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6867 + - uid: 6868 components: - pos: 56.5,-65.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6868 + - uid: 6869 components: - pos: 57.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6869 + - uid: 6870 components: - pos: 58.5,-65.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6870 + - uid: 6871 components: - pos: 59.5,-65.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6871 + - uid: 6872 components: - pos: 60.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6872 + - uid: 6873 components: - pos: 61.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6873 + - uid: 6874 components: - pos: 61.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6874 + - uid: 6875 components: - pos: 61.5,-67.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6875 + - uid: 6876 components: - pos: 61.5,-68.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6876 + - uid: 6877 components: - pos: 62.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6877 + - uid: 6878 components: - pos: 63.5,-65.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6878 + - uid: 6879 components: - pos: 64.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6879 + - uid: 6880 components: - pos: 65.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6880 + - uid: 6881 components: - pos: 66.5,-65.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6881 + - uid: 6882 components: - pos: 61.5,-64.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6882 + - uid: 6883 components: - pos: 61.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6883 + - uid: 6884 components: - pos: 61.5,-62.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6884 + - uid: 6885 components: - pos: 62.5,-62.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6885 + - uid: 6886 components: - pos: 60.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6886 + - uid: 6887 components: - pos: 59.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6887 + - uid: 6888 components: - pos: 57.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6888 + - uid: 6889 components: - pos: 67.5,-65.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6889 + - uid: 6890 components: - pos: 68.5,-65.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6890 + - uid: 6891 components: - pos: 68.5,-66.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6891 + - uid: 6892 components: - pos: 68.5,-67.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6892 + - uid: 6893 components: - pos: 68.5,-68.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6893 + - uid: 6894 components: - pos: 68.5,-69.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6894 + - uid: 6895 components: - pos: 68.5,-70.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6895 + - uid: 6896 components: - pos: 68.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6896 + - uid: 6897 components: - pos: 69.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6897 + - uid: 6898 components: - pos: 70.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6898 + - uid: 6899 components: - pos: 71.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6899 + - uid: 6900 components: - pos: 72.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6900 + - uid: 6901 components: - pos: 72.5,-70.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6901 + - uid: 6902 components: - pos: 72.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6902 + - uid: 6903 components: - pos: 73.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6903 + - uid: 6904 components: - pos: 74.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6904 + - uid: 6905 components: - pos: 74.5,-68.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6905 + - uid: 6906 components: - pos: 74.5,-67.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6906 + - uid: 6907 components: - pos: 74.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6907 + - uid: 6908 components: - pos: 74.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6908 + - uid: 6909 components: - pos: 74.5,-64.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6909 + - uid: 6910 components: - pos: 74.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6910 + - uid: 6911 components: - pos: 68.5,-64.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6911 + - uid: 6912 components: - pos: 68.5,-63.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6912 + - uid: 6913 components: - pos: 68.5,-62.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6913 + - uid: 6914 components: - pos: 68.5,-61.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6914 + - uid: 6915 components: - pos: 69.5,-61.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6915 + - uid: 6916 components: - pos: 70.5,-61.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6916 + - uid: 6917 components: - pos: 71.5,-61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6917 + - uid: 6918 components: - pos: 71.5,-60.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6918 + - uid: 6919 components: - pos: 71.5,-59.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6919 + - uid: 6920 components: - pos: 71.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6920 + - uid: 6921 components: - pos: 71.5,-57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6921 + - uid: 6922 components: - pos: 72.5,-57.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6922 + - uid: 6923 components: - pos: 73.5,-57.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6923 + - uid: 6924 components: - pos: 74.5,-57.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6924 + - uid: 6925 components: - pos: 74.5,-56.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6925 + - uid: 6926 components: - pos: 74.5,-55.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6926 + - uid: 6927 components: - pos: 75.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6927 + - uid: 6928 components: - pos: 75.5,-54.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6928 + - uid: 6929 components: - pos: 75.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6929 + - uid: 6930 components: - pos: 75.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6930 + - uid: 6931 components: - pos: 56.5,-39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6931 + - uid: 6932 components: - pos: 57.5,-39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6932 + - uid: 6933 components: - pos: 55.5,-66.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6933 + - uid: 6934 components: - pos: 71.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6934 + - uid: 6935 components: - pos: 71.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6935 + - uid: 6936 components: - pos: 71.5,-42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6936 + - uid: 6937 components: - pos: 61.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6937 + - uid: 6938 components: - pos: 60.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6938 + - uid: 6939 components: - pos: 59.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6939 + - uid: 6940 components: - pos: 58.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6940 + - uid: 6941 components: - pos: 57.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6941 + - uid: 6942 components: - pos: 56.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6942 + - uid: 6943 components: - pos: 55.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6943 + - uid: 6944 components: - pos: 54.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6944 + - uid: 6945 components: - pos: 43.5,-39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6945 + - uid: 6946 components: - pos: 43.5,-40.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6946 + - uid: 6947 components: - pos: 43.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6947 + - uid: 6948 components: - pos: 19.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6948 + - uid: 6949 components: - pos: -0.5,-4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6949 + - uid: 6950 components: - pos: 16.5,10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6950 + - uid: 6951 components: - pos: 16.5,9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6951 + - uid: 6952 components: - pos: 43.5,10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6952 + - uid: 6953 components: - pos: 47.5,5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6953 + - uid: 6954 components: - pos: 58.5,6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6954 + - uid: 6955 components: - pos: 59.5,6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6955 + - uid: 6956 components: - pos: 12.5,-84.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6956 + - uid: 6957 components: - pos: 12.5,-82.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6957 + - uid: 6958 components: - pos: -15.5,24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6958 + - uid: 6959 components: - pos: 48.5,-92.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6959 + - uid: 6960 components: - pos: 48.5,-93.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6960 + - uid: 6961 components: - pos: 48.5,-76.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6961 + - uid: 6962 components: - pos: 46.5,-89.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6962 + - uid: 6963 components: - pos: 47.5,-89.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6963 + - uid: 6964 components: - pos: 43.5,9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6964 + - uid: 6965 components: - pos: 43.5,8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6965 + - uid: 6966 components: - pos: 43.5,7.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6966 + - uid: 6967 components: - pos: -11.5,-18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6967 + - uid: 6968 components: - pos: -11.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6968 + - uid: 6969 components: - pos: -11.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6969 + - uid: 6970 components: - pos: -11.5,-15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6970 + - uid: 6971 components: - pos: -11.5,-14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6971 + - uid: 6972 components: - pos: -11.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6972 + - uid: 6973 components: - pos: -11.5,-12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6973 + - uid: 6974 components: - pos: -11.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6974 + - uid: 6975 components: - pos: -11.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6975 + - uid: 6976 components: - pos: -12.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6976 + - uid: 6977 components: - pos: -13.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6977 + - uid: 6978 components: - pos: -14.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6978 + - uid: 6979 components: - pos: -13.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6979 + - uid: 6980 components: - pos: -14.5,-14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6980 + - uid: 6981 components: - pos: -15.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6981 + - uid: 6982 components: - pos: -16.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6982 + - uid: 6983 components: - pos: -10.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6983 + - uid: 6984 components: - pos: -9.5,-14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6984 + - uid: 6985 components: - pos: -8.5,-14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6985 + - uid: 6986 components: - pos: -8.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6986 + - uid: 6987 components: - pos: -7.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6987 + - uid: 6988 components: - pos: -7.5,-12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6988 + - uid: 6989 components: - pos: -7.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6989 + - uid: 6990 components: - pos: -7.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6990 + - uid: 6991 components: - pos: -8.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6991 + - uid: 6992 components: - pos: -7.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6992 + - uid: 6993 components: - pos: -9.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6993 + - uid: 6994 components: - pos: -10.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6994 + - uid: 6995 components: - pos: -11.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6995 + - uid: 6996 components: - pos: -12.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6996 + - uid: 6997 components: - pos: -13.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6997 + - uid: 6998 components: - pos: -14.5,-9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6998 + - uid: 6999 components: - pos: -15.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6999 + - uid: 7000 components: - pos: -42.5,17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7000 + - uid: 7001 components: - pos: -5.5,-19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7001 + - uid: 7002 components: - pos: -6.5,-19.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7002 + - uid: 7003 components: - pos: -7.5,-19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7003 + - uid: 7004 components: - pos: 18.5,-82.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7004 + - uid: 7005 components: - pos: 18.5,-84.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7005 + - uid: 7006 components: - pos: 18.5,-85.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7006 + - uid: 7007 components: - pos: 12.5,-83.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7007 + - uid: 7008 components: - pos: 4.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7008 + - uid: 7009 components: - pos: 6.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7009 + - uid: 7010 components: - pos: -8.5,-67.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7010 + - uid: 7011 components: - pos: -8.5,-68.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7011 + - uid: 7012 components: - pos: -8.5,-69.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7012 + - uid: 7013 components: - pos: -19.5,-60.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7013 + - uid: 7014 components: - pos: -20.5,-60.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7014 + - uid: 7015 components: - pos: -21.5,-60.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7015 + - uid: 7016 components: - pos: -22.5,-60.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7016 + - uid: 7017 components: - pos: -23.5,-60.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7017 + - uid: 7018 components: - pos: -24.5,-60.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7018 + - uid: 7019 components: - pos: -25.5,-60.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7019 + - uid: 7020 components: - pos: -24.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7020 + - uid: 7021 components: - pos: -24.5,-58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7021 + - uid: 7022 components: - pos: -24.5,-57.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7022 + - uid: 7023 components: - pos: -24.5,-61.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7023 + - uid: 7024 components: - pos: -24.5,-62.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7024 + - uid: 7025 components: - pos: 30.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7025 + - uid: 7026 components: - pos: 31.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7026 + - uid: 7027 components: - pos: 31.5,-21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7027 + - uid: 7028 components: - pos: 19.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7028 + - uid: 7029 components: - pos: 19.5,-21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7029 + - uid: 7030 components: - pos: -31.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7030 + - uid: 7031 components: - pos: -49.5,-33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7031 + - uid: 7032 components: - pos: -47.5,-33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7032 + - uid: 7033 components: - pos: -48.5,-33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7033 + - uid: 7034 components: - pos: -47.5,-34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7034 + - uid: 7035 components: - pos: -47.5,-38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7035 + - uid: 7036 components: - pos: -47.5,-35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7036 + - uid: 7037 components: - pos: -47.5,-36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7037 + - uid: 7038 components: - pos: -47.5,-37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7038 + - uid: 7039 components: - pos: -50.5,-33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7039 + - uid: 7040 components: - pos: -51.5,-33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7040 + - uid: 7041 components: - pos: -51.5,-34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7041 + - uid: 7042 components: - pos: -51.5,-35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7042 + - uid: 7043 components: - pos: -51.5,-36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7043 + - uid: 7044 components: - pos: -51.5,-37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7044 + - uid: 7045 components: - pos: -51.5,-38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7045 + - uid: 7046 components: - pos: -51.5,-39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7046 + - uid: 7047 components: - pos: 54.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7047 + - uid: 7048 components: - pos: 30.5,-88.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7048 + - uid: 7049 components: - pos: 30.5,-77.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7049 + - uid: 7050 components: - pos: 30.5,-80.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7050 + - uid: 7051 components: - pos: 30.5,-81.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7051 + - uid: 7052 components: - pos: 30.5,-84.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7052 + - uid: 7053 components: - pos: 30.5,-85.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7053 + - uid: 7054 components: - pos: 48.5,-90.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7054 + - uid: 7055 components: - pos: 31.5,-82.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7055 + - uid: 7056 components: - pos: 48.5,-74.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7056 + - uid: 7057 components: - pos: 48.5,-75.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7057 + - uid: 7058 components: - pos: 30.5,-91.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7058 + - uid: 7059 components: - pos: 27.5,-81.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7059 + - uid: 7060 components: - pos: 32.5,-82.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7060 + - uid: 7061 components: - pos: 30.5,-79.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7061 + - uid: 7062 components: - pos: 30.5,-92.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7062 + - uid: 7063 components: - pos: 16.5,-81.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7063 + - uid: 7064 components: - pos: 15.5,-81.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7064 + - uid: 7065 components: - pos: 18.5,-86.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7065 + - uid: 7066 components: - pos: 13.5,-81.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7066 + - uid: 7067 components: - pos: 30.5,-86.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7067 + - uid: 7068 components: - pos: 30.5,-87.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7068 + - uid: 7069 components: - pos: 30.5,-82.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7069 + - uid: 7070 components: - pos: 30.5,-83.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7070 + - uid: 7071 components: - pos: 27.5,-82.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7071 + - uid: 7072 components: - pos: 30.5,-93.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7072 + - uid: 7073 components: - pos: 31.5,-89.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7073 + - uid: 7074 components: - pos: 32.5,-89.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7074 + - uid: 7075 components: - pos: 26.5,-83.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7075 + - uid: 7076 components: - pos: 25.5,-83.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7076 + - uid: 7077 components: - pos: 24.5,-83.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7077 + - uid: 7078 components: - pos: 29.5,-83.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7078 + - uid: 7079 components: - pos: 12.5,-85.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7079 + - uid: 7080 components: - pos: 28.5,-83.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7080 + - uid: 7081 components: - pos: 27.5,-83.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7081 + - uid: 7082 components: - pos: 49.5,-72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7082 + - uid: 7083 components: - pos: 46.5,-72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7083 + - uid: 7084 components: - pos: 47.5,-72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7084 + - uid: 7085 components: - pos: 48.5,-88.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7085 + - uid: 7086 components: - pos: 48.5,-87.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7086 + - uid: 7087 components: - pos: 48.5,-86.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7087 + - uid: 7088 components: - pos: 48.5,-85.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7088 + - uid: 7089 components: - pos: 48.5,-84.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7089 + - uid: 7090 components: - pos: 48.5,-83.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7090 + - uid: 7091 components: - pos: 48.5,-82.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7091 + - uid: 7092 components: - pos: 48.5,-81.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7092 + - uid: 7093 components: - pos: 48.5,-80.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7093 + - uid: 7094 components: - pos: 48.5,-79.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7094 + - uid: 7095 components: - pos: 48.5,-78.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7095 + - uid: 7096 components: - pos: 48.5,-77.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7096 + - uid: 7097 components: - pos: 43.5,-74.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7097 + - uid: 7098 components: - pos: 43.5,-75.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7098 + - uid: 7099 components: - pos: 26.5,-84.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7099 + - uid: 7100 components: - pos: 26.5,-85.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7100 + - uid: 7101 components: - pos: 11.5,-18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7101 + - uid: 7102 components: - pos: 11.5,-19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7102 + - uid: 7103 components: - pos: 11.5,-20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7103 + - uid: 7104 components: - pos: 11.5,-21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7104 + - uid: 7105 components: - pos: 10.5,-21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7105 + - uid: 7106 components: - pos: 9.5,-21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7106 + - uid: 7107 components: - pos: 8.5,-21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7107 + - uid: 7108 components: - pos: 7.5,-21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7108 + - uid: 7109 components: - pos: 7.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7109 + - uid: 7110 components: - pos: 7.5,-23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7110 + - uid: 7111 components: - pos: 8.5,-23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7111 + - uid: 7112 components: - pos: 9.5,-23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7112 + - uid: 7113 components: - pos: 10.5,-23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7113 + - uid: 7114 components: - pos: 11.5,-23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7114 + - uid: 7115 components: - pos: 11.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7115 + - uid: 7116 components: - pos: 8.5,-20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7116 + - uid: 7117 components: - pos: 9.5,-20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7117 + - uid: 7118 components: - pos: 39.5,11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7118 + - uid: 7119 components: - pos: 38.5,11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7119 + - uid: 7120 components: - pos: 39.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7120 + - uid: 7121 components: - pos: 44.5,6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7121 + - uid: 7122 components: - pos: 46.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7122 + - uid: 7123 components: - pos: 3.5,-51.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7123 + - uid: 7124 components: - pos: 3.5,-52.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7124 + - uid: 7125 components: - pos: 3.5,-53.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7125 + - uid: 7126 components: - pos: 6.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7126 + - uid: 7127 components: - pos: 6.5,-74.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7127 + - uid: 7128 components: - pos: 6.5,-75.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7128 + - uid: 7129 components: - pos: 6.5,-76.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7129 + - uid: 7130 components: - pos: 6.5,-77.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7130 + - uid: 7131 components: - pos: 6.5,-78.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7131 + - uid: 7132 components: - pos: 6.5,-79.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7132 + - uid: 7133 components: - pos: 6.5,-80.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7133 + - uid: 7134 components: - pos: 6.5,-81.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7134 + - uid: 7135 components: - pos: 6.5,-82.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7135 + - uid: 7136 components: - pos: 6.5,-83.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7136 + - uid: 7137 components: - pos: 6.5,-84.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7137 + - uid: 7138 components: - pos: 7.5,-83.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7138 + - uid: 7139 components: - pos: 8.5,-83.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7139 + - uid: 7140 components: - pos: 5.5,-74.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7140 + - uid: 7141 components: - pos: 4.5,-74.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7141 + - uid: 7142 components: - pos: 3.5,-74.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7142 + - uid: 7143 components: - pos: 9.5,-83.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7143 + - uid: 7144 components: - pos: 2.5,-74.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7144 + - uid: 7145 components: - pos: 1.5,-74.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7145 + - uid: 7146 components: - pos: -46.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7146 + - uid: 7147 components: - pos: -46.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7147 + - uid: 7148 components: - pos: -46.5,-46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7148 + - uid: 7149 components: - pos: -46.5,-48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7149 + - uid: 7150 components: - pos: -46.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7150 + - uid: 7151 components: - pos: -46.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7151 + - uid: 7152 components: - pos: -46.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7152 + - uid: 7153 components: - pos: -46.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7153 + - uid: 7154 components: - pos: -46.5,-54.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7154 + - uid: 7155 components: - pos: -46.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7155 + - uid: 7156 components: - pos: -46.5,-56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7156 + - uid: 7157 components: - pos: -46.5,-57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7157 + - uid: 7158 components: - pos: -46.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7158 + - uid: 7159 components: - pos: -45.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7159 + - uid: 7160 components: - pos: -44.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7160 + - uid: 7161 components: - pos: -43.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7161 + - uid: 7162 components: - pos: -42.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7162 + - uid: 7163 components: - pos: -41.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7163 + - uid: 7164 components: - pos: -40.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7164 + - uid: 7165 components: - pos: -40.5,-59.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7165 + - uid: 7166 components: - pos: -39.5,-59.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7166 + - uid: 7167 components: - pos: -38.5,-59.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7167 + - uid: 7168 components: - pos: -37.5,-59.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7168 + - uid: 7169 components: - pos: -36.5,-59.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7169 + - uid: 7170 components: - pos: -36.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7170 + - uid: 7171 components: - pos: -35.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7171 + - uid: 7172 components: - pos: -35.5,-56.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7172 + - uid: 7173 components: - pos: -35.5,-57.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7173 + - uid: 7174 components: - pos: -48.5,42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7174 + - uid: 7175 components: - pos: -49.5,42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7175 + - uid: 7176 components: - pos: -49.5,43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7176 + - uid: 7177 components: - pos: -50.5,43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7177 + - uid: 7178 components: - pos: -52.5,43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7178 + - uid: 7179 components: - pos: -51.5,43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7179 + - uid: 7180 components: - pos: -49.5,44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7180 + - uid: 7181 components: - pos: -49.5,45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7181 + - uid: 7182 components: - pos: -49.5,46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7182 + - uid: 7183 components: - pos: -49.5,47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7183 + - uid: 7184 components: - pos: -49.5,48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7184 + - uid: 7185 components: - pos: -49.5,49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7185 + - uid: 7186 components: - pos: -48.5,49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7186 + - uid: 7187 components: - pos: -47.5,49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7187 + - uid: 7188 components: - pos: -47.5,42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7188 + - uid: 7189 components: - pos: 8.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7189 + - uid: 7190 components: - pos: 8.5,-58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7190 + - uid: 7191 components: - pos: 68.5,-32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7191 + - uid: 7192 components: - pos: 68.5,-31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7192 + - uid: 7193 components: - pos: 68.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7193 + - uid: 7194 components: - pos: 67.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7194 + - uid: 7195 components: - pos: 66.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 30711 + - uid: 30691 components: - pos: -13.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 30712 - components: - - pos: -14.5,-33.5 - parent: 2 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 30713 + - uid: 30692 components: - pos: -15.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 30714 - components: - - pos: -15.5,-34.5 - parent: 2 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 30715 + - enabled: True + type: AmbientSound + - uid: 30693 components: - - pos: -41.5,-17.5 + - pos: -16.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - proto: CableApcStack entities: - - uid: 7195 + - uid: 7196 components: - pos: -22.574043,-20.541626 parent: 2 type: Transform - - uid: 7196 + - uid: 7197 components: - pos: -66.19752,-32.620537 parent: 2 type: Transform - - uid: 7197 + - uid: 7198 components: - pos: -11.530048,37.577045 parent: 2 type: Transform - - uid: 7198 + - uid: 7199 components: - pos: 77.47492,-43.4493 parent: 2 type: Transform - proto: CableApcStack1 entities: - - uid: 7199 + - uid: 7200 components: - rot: 3.141592653589793 rad pos: 55.427982,45.52066 parent: 2 type: Transform - - uid: 7200 + - uid: 7201 components: - rot: 3.141592653589793 rad pos: 38.439327,47.51809 parent: 2 type: Transform - - uid: 7201 + - uid: 7202 components: - pos: -14.8449135,-96.398895 parent: 2 type: Transform - - uid: 7202 + - uid: 7203 components: - pos: 57.114487,42.493305 parent: 2 type: Transform + - uid: 30694 + components: + - pos: -14.677503,-33.453545 + parent: 2 + type: Transform + - nextSound: 587.5823044 + type: EmitSoundOnCollide - proto: CableHV entities: - - uid: 7203 + - uid: 7204 components: - pos: 15.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7204 + - uid: 7205 components: - pos: 7.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7205 + - uid: 7206 components: - pos: 27.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7206 + - uid: 7207 components: - pos: 8.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7207 + - uid: 7208 components: - pos: -1.5,-66.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7208 + - uid: 7209 components: - pos: 15.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7209 + - uid: 7210 components: - pos: 12.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7210 + - uid: 7211 components: - pos: -11.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7211 + - uid: 7212 components: - pos: 2.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7212 + - uid: 7213 components: - pos: 6.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7213 + - uid: 7214 components: - pos: 0.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7214 + - uid: 7215 components: - pos: 4.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7215 + - uid: 7216 components: - pos: -5.5,-39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7216 + - uid: 7217 components: - pos: 8.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7217 + - uid: 7218 components: - pos: -1.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7218 + - uid: 7219 components: - pos: -1.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7219 + - uid: 7220 components: - pos: 15.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7220 + - uid: 7221 components: - pos: -1.5,-64.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7221 + - uid: 7222 components: - pos: -12.5,-75.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7222 + - uid: 7223 components: - pos: 32.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7223 + - uid: 7224 components: - pos: 14.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7224 + - uid: 7225 components: - pos: 21.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7225 + - uid: 7226 components: - pos: 38.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7226 + - uid: 7227 components: - pos: -12.5,-71.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7227 + - uid: 7228 components: - pos: 4.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7228 + - uid: 7229 components: - pos: 3.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7229 + - uid: 7230 components: - pos: 2.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7230 + - uid: 7231 components: - pos: 1.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7231 + - uid: 7232 components: - pos: 1.5,-17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7232 + - uid: 7233 components: - pos: 0.5,-17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7233 + - uid: 7234 components: - pos: 39.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7234 + - uid: 7235 components: - pos: 25.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7235 + - uid: 7236 components: - pos: 24.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7236 + - uid: 7237 components: - pos: 23.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7237 + - uid: 7238 components: - pos: 22.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7238 + - uid: 7239 components: - pos: 25.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7239 + - uid: 7240 components: - pos: 24.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7240 + - uid: 7241 components: - pos: 12.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7241 + - uid: 7242 components: - pos: -14.5,34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7242 + - uid: 7243 components: - pos: 8.5,-16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7243 + - uid: 7244 components: - pos: 4.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7244 + - uid: 7245 components: - pos: -4.5,-18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7245 + - uid: 7246 components: - pos: 5.5,-92.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7246 + - uid: 7247 components: - pos: 4.5,-92.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7247 + - uid: 7248 components: - pos: 2.5,-92.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7248 + - uid: 7249 components: - pos: 12.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7249 + - uid: 7250 components: - pos: 10.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7250 + - uid: 7251 components: - pos: 9.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7251 + - uid: 7252 components: - pos: 8.5,-54.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7252 + - uid: 7253 components: - pos: 8.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7253 + - uid: 7254 components: - pos: 10.5,-55.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7254 + - uid: 7255 components: - pos: 11.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7255 + - uid: 7256 components: - pos: 12.5,-56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7256 + - uid: 7257 components: - pos: 14.5,-57.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7257 + - uid: 7258 components: - pos: 14.5,-58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7258 + - uid: 7259 components: - pos: 39.5,-29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7259 + - uid: 7260 components: - pos: 36.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7260 + - uid: 7261 components: - pos: 10.5,-92.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7261 + - uid: 7262 components: - pos: -11.5,-75.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7262 + - uid: 7263 components: - pos: 6.5,-92.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7263 + - uid: 7264 components: - pos: -7.5,-75.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7264 + - uid: 7265 components: - pos: -5.5,-75.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7265 + - uid: 7266 components: - pos: 25.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7266 + - uid: 7267 components: - pos: 0.5,-89.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7267 + - uid: 7268 components: - pos: -0.5,-89.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7268 + - uid: 7269 components: - pos: -1.5,-89.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7269 + - uid: 7270 components: - pos: -1.5,-88.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7270 + - uid: 7271 components: - pos: -1.5,-87.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7271 + - uid: 7272 components: - pos: 14.5,-98.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7272 + - uid: 7273 components: - pos: 12.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7273 + - uid: 7274 components: - pos: -4.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7274 + - uid: 7275 components: - pos: 10.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7275 + - uid: 7276 components: - pos: 15.5,-37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7276 + - uid: 7277 components: - pos: -15.5,-71.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7277 + - uid: 7278 components: - pos: 35.5,-40.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7278 + - uid: 7279 components: - pos: 13.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7279 + - uid: 7280 components: - pos: -4.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7280 + - uid: 7281 components: - pos: -5.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7281 + - uid: 7282 components: - pos: 6.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7282 + - uid: 7283 components: - pos: 5.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7283 + - uid: 7284 components: - pos: 3.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7284 + - uid: 7285 components: - pos: 2.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7285 + - uid: 7286 components: - pos: 1.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7286 + - uid: 7287 components: - pos: -17.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7287 + - uid: 7288 components: - pos: 12.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7288 + - uid: 7289 components: - pos: 15.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7289 + - uid: 7290 components: - pos: 13.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7290 + - uid: 7291 components: - pos: 10.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7291 + - uid: 7292 components: - pos: 7.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7292 + - uid: 7293 components: - pos: 8.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7293 + - uid: 7294 components: - pos: 25.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7294 + - uid: 7295 components: - pos: 25.5,-12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7295 + - uid: 7296 components: - pos: 25.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7296 + - uid: 7297 components: - pos: 25.5,-14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7297 + - uid: 7298 components: - pos: 2.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7298 + - uid: 7299 components: - pos: -12.5,-73.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7299 + - uid: 7300 components: - pos: 35.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7300 + - uid: 7301 components: - pos: 25.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7301 + - uid: 7302 components: - pos: 25.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7302 + - uid: 7303 components: - pos: 33.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7303 + - uid: 7304 components: - pos: -67.5,-25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7304 + - uid: 7305 components: - pos: -2.5,-61.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7305 + - uid: 7306 components: - pos: -2.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7306 + - uid: 7307 components: - pos: -6.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7307 + - uid: 7308 components: - pos: -8.5,-19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7308 + - uid: 7309 components: - pos: -15.5,-72.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7309 + - uid: 7310 components: - pos: 11.5,-92.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7310 + - uid: 7311 components: - pos: 18.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7311 + - uid: 7312 components: - pos: 12.5,-98.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7312 + - uid: 7313 components: - pos: -1.5,-77.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7313 + - uid: 7314 components: - pos: -1.5,-80.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7314 + - uid: 7315 components: - pos: -1.5,-68.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7315 + - uid: 7316 components: - pos: 12.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7316 + - uid: 7317 components: - pos: -12.5,-69.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7317 + - uid: 7318 components: - pos: 8.5,-92.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7318 + - uid: 7319 components: - pos: 23.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7319 + - uid: 7320 components: - pos: -14.5,-71.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7320 + - uid: 7321 components: - pos: -15.5,-73.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7321 + - uid: 7322 components: - pos: 15.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7322 + - uid: 7323 components: - pos: -2.5,-63.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7323 + - uid: 7324 components: - pos: 12.5,-57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7324 + - uid: 7325 components: - pos: 9.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7325 + - uid: 7326 components: - pos: 15.5,-40.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7326 + - uid: 7327 components: - pos: -4.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7327 + - uid: 7328 components: - pos: -1.5,-65.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7328 + - uid: 7329 components: - pos: 14.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7329 + - uid: 7330 components: - pos: 14.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7330 + - uid: 7331 components: - pos: -0.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7331 + - uid: 7332 components: - pos: 1.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7332 + - uid: 7333 components: - pos: 3.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7333 + - uid: 7334 components: - pos: 5.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7334 + - uid: 7335 components: - pos: 31.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7335 + - uid: 7336 components: - pos: 25.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7336 + - uid: 7337 components: - pos: -4.5,-24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7337 + - uid: 7338 components: - pos: -5.5,-40.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7338 + - uid: 7339 components: - pos: -5.5,-38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7339 + - uid: 7340 components: - pos: -5.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7340 + - uid: 7341 components: - pos: 18.5,-29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7341 + - uid: 7342 components: - pos: -0.5,-17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7342 + - uid: 7343 components: - pos: -1.5,-17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7343 + - uid: 7344 components: - pos: -1.5,-18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7344 + - uid: 7345 components: - pos: 30.5,-3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7345 + - uid: 7346 components: - pos: 30.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7346 + - uid: 7347 components: - pos: -24.5,-14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7347 + - uid: 7348 components: - pos: -6.5,-19.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7348 + - uid: 7349 components: - pos: -5.5,-19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7349 + - uid: 7350 components: - pos: -4.5,-19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7350 + - uid: 7351 components: - pos: -4.5,-21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7351 + - uid: 7352 components: - pos: -7.5,-19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7352 + - uid: 7353 components: - pos: 2.5,-91.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7353 + - uid: 7354 components: - pos: 11.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7354 + - uid: 7355 components: - pos: 13.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7355 + - uid: 7356 components: - pos: 11.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7356 + - uid: 7357 components: - pos: 7.5,-92.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7357 + - uid: 7358 components: - pos: -3.5,-75.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7358 + - uid: 7359 components: - pos: 20.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7359 + - uid: 7360 components: - pos: -65.5,-25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7360 + - uid: 7361 components: - pos: -24.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7361 + - uid: 7362 components: - pos: 2.5,-89.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7362 + - uid: 7363 components: - pos: -1.5,-84.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7363 + - uid: 7364 components: - pos: -1.5,-85.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7364 + - uid: 7365 components: - pos: 17.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7365 + - uid: 7366 components: - pos: 4.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7366 + - uid: 7367 components: - pos: 25.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7367 + - uid: 7368 components: - pos: 25.5,-9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7368 + - uid: 7369 components: - pos: 25.5,-8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7369 + - uid: 7370 components: - pos: 25.5,-7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7370 + - uid: 7371 components: - pos: 9.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7371 + - uid: 7372 components: - pos: 14.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7372 + - uid: 7373 components: - pos: 11.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7373 + - uid: 7374 components: - pos: 4.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7374 + - uid: 7375 components: - pos: -3.5,-20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7375 + - uid: 7376 components: - pos: 10.5,-98.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7376 + - uid: 7377 components: - pos: 7.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7377 + - uid: 7378 components: - pos: 15.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7378 + - uid: 7379 components: - pos: 15.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7379 + - uid: 7380 components: - pos: 15.5,-36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7380 + - uid: 7381 components: - pos: 15.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7381 + - uid: 7382 components: - pos: 15.5,-32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7382 + - uid: 7383 components: - pos: -3.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7383 + - uid: 7384 components: - pos: -5.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7384 + - uid: 7385 components: - pos: 14.5,-48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7385 + - uid: 7386 components: - pos: -6.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7386 + - uid: 7387 components: - pos: -6.5,-70.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7387 + - uid: 7388 components: - pos: -8.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7388 + - uid: 7389 components: - pos: -10.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7389 + - uid: 7390 components: - pos: 14.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7390 + - uid: 7391 components: - pos: 13.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7391 + - uid: 7392 components: - pos: 11.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7392 + - uid: 7393 components: - pos: -11.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7393 + - uid: 7394 components: - pos: 25.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7394 + - uid: 7395 components: - pos: 38.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7395 + - uid: 7396 components: - pos: 37.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7396 + - uid: 7397 components: - pos: 35.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7397 + - uid: 7398 components: - pos: 35.5,-29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7398 + - uid: 7399 components: - pos: 9.5,-101.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7399 + - uid: 7400 components: - pos: -11.5,58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7400 + - uid: 7401 components: - pos: -12.5,58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7401 + - uid: 7402 components: - pos: -15.5,44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7402 + - uid: 7403 components: - pos: -16.5,44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7403 + - uid: 7404 components: - pos: -17.5,44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7404 + - uid: 7405 components: - pos: -17.5,45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7405 + - uid: 7406 components: - pos: -17.5,46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7406 + - uid: 7407 components: - pos: -17.5,47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7407 + - uid: 7408 components: - pos: -17.5,48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7408 + - uid: 7409 components: - pos: -17.5,49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7409 + - uid: 7410 components: - pos: -17.5,50.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7410 + - uid: 7411 components: - pos: -16.5,50.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7411 + - uid: 7412 components: - pos: -13.5,50.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7412 + - uid: 7413 components: - pos: -15.5,50.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7413 + - uid: 7414 components: - pos: -14.5,50.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7414 + - uid: 7415 components: - pos: -13.5,58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7415 + - uid: 7416 components: - pos: -13.5,57.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7416 + - uid: 7417 components: - pos: -13.5,51.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7417 + - uid: 7418 components: - pos: -13.5,52.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7418 + - uid: 7419 components: - pos: -13.5,53.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7419 + - uid: 7420 components: - pos: -13.5,54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7420 + - uid: 7421 components: - pos: -13.5,55.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7421 + - uid: 7422 components: - pos: -13.5,56.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7422 + - uid: 7423 components: - pos: 15.5,-39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7423 + - uid: 7424 components: - pos: -6.5,-75.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7424 + - uid: 7425 components: - pos: 18.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7425 + - uid: 7426 components: - pos: -24.5,-15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7426 + - uid: 7427 components: - pos: 17.5,-29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7427 + - uid: 7428 components: - pos: 35.5,-38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7428 + - uid: 7429 components: - pos: 26.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7429 + - uid: 7430 components: - pos: -13.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7430 + - uid: 7431 components: - pos: -10.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7431 + - uid: 7432 components: - pos: -5.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7432 + - uid: 7433 components: - pos: -5.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7433 + - uid: 7434 components: - pos: 13.5,-57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7434 + - uid: 7435 components: - pos: 12.5,-55.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7435 + - uid: 7436 components: - pos: 8.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7436 + - uid: 7437 components: - pos: -11.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7437 + - uid: 7438 components: - pos: -8.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7438 + - uid: 7439 components: - pos: -13.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7439 + - uid: 7440 components: - pos: 25.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7440 + - uid: 7441 components: - pos: -5.5,-31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7441 + - uid: 7442 components: - pos: -5.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7442 + - uid: 7443 components: - pos: -14.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7443 + - uid: 7444 components: - pos: -15.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7444 + - uid: 7445 components: - pos: -3.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7445 + - uid: 7446 components: - pos: -2.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7446 + - uid: 7447 components: - pos: -0.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7447 + - uid: 7448 components: - pos: 9.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7448 + - uid: 7449 components: - pos: 13.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7449 + - uid: 7450 components: - pos: 15.5,-29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7450 + - uid: 7451 components: - pos: -4.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7451 + - uid: 7452 components: - pos: -7.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7452 + - uid: 7453 components: - pos: -8.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7453 + - uid: 7454 components: - pos: -10.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7454 + - uid: 7455 components: - pos: -12.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7455 + - uid: 7456 components: - pos: -13.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7456 + - uid: 7457 components: - pos: 10.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7457 + - uid: 7458 components: - pos: -15.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7458 + - uid: 7459 components: - pos: -12.5,-70.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7459 + - uid: 7460 components: - pos: -8.5,-75.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7460 + - uid: 7461 components: - pos: -18.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7461 + - uid: 7462 components: - pos: 15.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7462 + - uid: 7463 components: - pos: 25.5,-50.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7463 + - uid: 7464 components: - pos: 9.5,-92.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7464 + - uid: 7465 components: - pos: 13.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7465 + - uid: 7466 components: - pos: 34.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7466 + - uid: 7467 components: - pos: 35.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7467 + - uid: 7468 components: - pos: 25.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7468 + - uid: 7469 components: - pos: 35.5,-32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7469 + - uid: 7470 components: - pos: 35.5,-36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7470 + - uid: 7471 components: - pos: 70.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7471 + - uid: 7472 components: - pos: -12.5,-74.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7472 + - uid: 7473 components: - pos: -0.5,-72.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7473 + - uid: 7474 components: - pos: 11.5,-105.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7474 + - uid: 7475 components: - pos: -1.5,-86.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7475 + - uid: 7476 components: - pos: -16.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7476 + - uid: 7477 components: - pos: 11.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7477 + - uid: 7478 components: - pos: -17.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7478 + - uid: 7479 components: - pos: -9.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7479 + - uid: 7480 components: - pos: 6.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7480 + - uid: 7481 components: - pos: 19.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7481 + - uid: 7482 components: - pos: -4.5,-19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7482 + - uid: 7483 components: - pos: -5.5,-32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7483 + - uid: 7484 components: - pos: 25.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7484 + - uid: 7485 components: - pos: -9.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7485 + - uid: 7486 components: - pos: 25.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7486 + - uid: 7487 components: - pos: -5.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7487 + - uid: 7488 components: - pos: 19.5,-29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7488 + - uid: 7489 components: - pos: 15.5,-38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7489 + - uid: 7490 components: - pos: -5.5,-36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7490 + - uid: 7491 components: - pos: 25.5,-51.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7491 + - uid: 7492 components: - pos: 15.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7492 + - uid: 7493 components: - pos: 15.5,-31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7493 + - uid: 7494 components: - pos: 6.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7494 + - uid: 7495 components: - pos: 15.5,-35.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7495 + - uid: 7496 components: - pos: -16.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7496 + - uid: 7497 components: - pos: 15.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7497 + - uid: 7498 components: - pos: 10.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7498 + - uid: 7499 components: - pos: -1.5,-63.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7499 + - uid: 7500 components: - pos: -12.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7500 + - uid: 7501 components: - pos: 0.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7501 + - uid: 7502 components: - pos: 14.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7502 + - uid: 7503 components: - pos: 15.5,-27.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7503 + - uid: 7504 components: - pos: -6.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7504 + - uid: 7505 components: - pos: -3.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7505 + - uid: 7506 components: - pos: -2.5,-20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7506 + - uid: 7507 components: - pos: -1.5,-19.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7507 + - uid: 7508 components: - pos: -1.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7508 + - uid: 7509 components: - pos: 30.5,-2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7509 + - uid: 7510 components: - pos: 30.5,-4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7510 + - uid: 7511 components: - pos: -4.5,-75.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7511 + - uid: 7512 components: - pos: 24.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7512 + - uid: 7513 components: - pos: 25.5,-16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7513 + - uid: 7514 components: - pos: 25.5,-15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7514 + - uid: 7515 components: - pos: 17.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7515 + - uid: 7516 components: - pos: 32.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7516 + - uid: 7517 components: - pos: 35.5,-21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7517 + - uid: 7518 components: - pos: -13.5,-71.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7518 + - uid: 7519 components: - pos: 9.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7519 + - uid: 7520 components: - pos: 13.5,-98.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7520 + - uid: 7521 components: - pos: -2.5,-77.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7521 + - uid: 7522 components: - pos: -2.5,-78.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7522 + - uid: 7523 components: - pos: -1.5,-82.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7523 + - uid: 7524 components: - pos: -9.5,-75.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7524 + - uid: 7525 components: - pos: 28.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7525 + - uid: 7526 components: - pos: -4.5,-23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7526 + - uid: 7527 components: - pos: -5.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7527 + - uid: 7528 components: - pos: -5.5,-35.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7528 + - uid: 7529 components: - pos: 10.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7529 + - uid: 7530 components: - pos: 8.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7530 + - uid: 7531 components: - pos: -7.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7531 + - uid: 7532 components: - pos: 19.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7532 + - uid: 7533 components: - pos: -7.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7533 + - uid: 7534 components: - pos: -6.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7534 + - uid: 7535 components: - pos: -9.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7535 + - uid: 7536 components: - pos: 8.5,-98.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7536 + - uid: 7537 components: - pos: 2.5,-90.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7537 + - uid: 7538 components: - pos: 15.5,-31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7538 + - uid: 7539 components: - pos: 14.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7539 + - uid: 7540 components: - pos: -5.5,-37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7540 + - uid: 7541 components: - pos: -14.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7541 + - uid: 7542 components: - pos: 35.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7542 + - uid: 7543 components: - pos: -14.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7543 + - uid: 7544 components: - pos: 1.5,-89.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7544 + - uid: 7545 components: - pos: 3.5,-92.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7545 + - uid: 7546 components: - pos: 5.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7546 + - uid: 7547 components: - pos: 13.5,-101.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7547 + - uid: 7548 components: - pos: 9.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7548 + - uid: 7549 components: - pos: -4.5,-20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7549 + - uid: 7550 components: - pos: 16.5,-29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7550 + - uid: 7551 components: - pos: -4.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7551 + - uid: 7552 components: - pos: 16.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7552 + - uid: 7553 components: - pos: -2.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7553 + - uid: 7554 components: - pos: 16.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7554 + - uid: 7555 components: - pos: 7.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7555 + - uid: 7556 components: - pos: 12.5,-101.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7556 + - uid: 7557 components: - pos: 10.5,-101.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7557 + - uid: 7558 components: - pos: 8.5,-101.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7558 + - uid: 7559 components: - pos: 14.5,-101.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7559 + - uid: 7560 components: - pos: 9.5,-104.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7560 + - uid: 7561 components: - pos: 13.5,-104.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7561 + - uid: 7562 components: - pos: 9.5,-98.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7562 + - uid: 7563 components: - pos: -1.5,-83.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7563 + - uid: 7564 components: - pos: -1.5,-81.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7564 + - uid: 7565 components: - pos: -1.5,-79.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7565 + - uid: 7566 components: - pos: -2.5,-79.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7566 + - uid: 7567 components: - pos: -2.5,-75.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7567 + - uid: 7568 components: - pos: -2.5,-76.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7568 + - uid: 7569 components: - pos: -10.5,-75.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7569 + - uid: 7570 components: - pos: 15.5,-58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7570 + - uid: 7571 components: - pos: -5.5,-27.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7571 + - uid: 7572 components: - pos: -5.5,-29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7572 + - uid: 7573 components: - pos: 21.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7573 + - uid: 7574 components: - pos: 22.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7574 + - uid: 7575 components: - pos: 20.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7575 + - uid: 7576 components: - pos: 19.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7576 + - uid: 7577 components: - pos: 18.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7577 + - uid: 7578 components: - pos: 17.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7578 + - uid: 7579 components: - pos: 16.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7579 + - uid: 7580 components: - pos: 15.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7580 + - uid: 7581 components: - pos: 15.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7581 + - uid: 7582 components: - pos: 15.5,-18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7582 + - uid: 7583 components: - pos: 15.5,-19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7583 + - uid: 7584 components: - pos: 15.5,-20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7584 + - uid: 7585 components: - pos: 15.5,-21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7585 + - uid: 7586 components: - pos: 15.5,-23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7586 + - uid: 7587 components: - pos: 15.5,-24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7587 + - uid: 7588 components: - pos: 15.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7588 + - uid: 7589 components: - pos: 18.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7589 + - uid: 7590 components: - pos: 19.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7590 + - uid: 7591 components: - pos: 20.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7591 + - uid: 7592 components: - pos: 21.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7592 + - uid: 7593 components: - pos: 22.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7593 + - uid: 7594 components: - pos: 23.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7594 + - uid: 7595 components: - pos: 31.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7595 + - uid: 7596 components: - pos: 30.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7596 + - uid: 7597 components: - pos: 29.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7597 + - uid: 7598 components: - pos: 28.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7598 + - uid: 7599 components: - pos: 27.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7599 + - uid: 7600 components: - pos: 26.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7600 + - uid: 7601 components: - pos: 35.5,-20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7601 + - uid: 7602 components: - pos: 35.5,-19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7602 + - uid: 7603 components: - pos: 35.5,-18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7603 + - uid: 7604 components: - pos: 35.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7604 + - uid: 7605 components: - pos: 34.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7605 + - uid: 7606 components: - pos: 33.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7606 + - uid: 7607 components: - pos: 35.5,-27.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7607 + - uid: 7608 components: - pos: 35.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7608 + - uid: 7609 components: - pos: 35.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7609 + - uid: 7610 components: - pos: 35.5,-24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7610 + - uid: 7611 components: - pos: 35.5,-23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7611 + - uid: 7612 components: - pos: 35.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7612 + - uid: 7613 components: - pos: 30.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7613 + - uid: 7614 components: - pos: 29.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7614 + - uid: 7615 components: - pos: 28.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7615 + - uid: 7616 components: - pos: 27.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7616 + - uid: 7617 components: - pos: 26.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7617 + - uid: 7618 components: - pos: 33.5,-2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7618 + - uid: 7619 components: - pos: 33.5,-3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7619 + - uid: 7620 components: - pos: 33.5,-4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7620 + - uid: 7621 components: - pos: 33.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7621 + - uid: 7622 components: - pos: 32.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7622 + - uid: 7623 components: - pos: 39.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7623 + - uid: 7624 components: - pos: 35.5,-31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7624 + - uid: 7625 components: - pos: 35.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7625 + - uid: 7626 components: - pos: 35.5,-35.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7626 + - uid: 7627 components: - pos: 35.5,-37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7627 + - uid: 7628 components: - pos: 35.5,-39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7628 + - uid: 7629 components: - pos: 35.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7629 + - uid: 7630 components: - pos: 17.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7630 + - uid: 7631 components: - pos: 19.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7631 + - uid: 7632 components: - pos: 10.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7632 + - uid: 7633 components: - pos: 33.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7633 + - uid: 7634 components: - pos: 33.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7634 + - uid: 7635 components: - pos: 33.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7635 + - uid: 7636 components: - pos: 33.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7636 + - uid: 7637 components: - pos: 33.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7637 + - uid: 7638 components: - pos: 33.5,3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7638 + - uid: 7639 components: - pos: 33.5,4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7639 + - uid: 7640 components: - pos: 33.5,5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7640 + - uid: 7641 components: - pos: 33.5,6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7641 + - uid: 7642 components: - pos: 33.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7642 + - uid: 7643 components: - pos: 32.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7643 + - uid: 7644 components: - pos: 31.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7644 + - uid: 7645 components: - pos: 29.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7645 + - uid: 7646 components: - pos: 28.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7646 + - uid: 7647 components: - pos: 27.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7647 + - uid: 7648 components: - pos: 26.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7648 + - uid: 7649 components: - pos: 25.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7649 + - uid: 7650 components: - pos: 24.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7650 + - uid: 7651 components: - pos: 23.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7651 + - uid: 7652 components: - pos: 22.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7652 + - uid: 7653 components: - pos: 21.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7653 + - uid: 7654 components: - pos: 20.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7654 + - uid: 7655 components: - pos: 19.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7655 + - uid: 7656 components: - pos: 18.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7656 + - uid: 7657 components: - pos: 17.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7657 + - uid: 7658 components: - pos: 17.5,6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7658 + - uid: 7659 components: - pos: 17.5,5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7659 + - uid: 7660 components: - pos: 17.5,4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7660 + - uid: 7661 components: - pos: 17.5,3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7661 + - uid: 7662 components: - pos: 17.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7662 + - uid: 7663 components: - pos: 17.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7663 + - uid: 7664 components: - pos: 17.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7664 + - uid: 7665 components: - pos: 17.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7665 + - uid: 7666 components: - pos: 17.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7666 + - uid: 7667 components: - pos: 17.5,-2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7667 + - uid: 7668 components: - pos: 17.5,-3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7668 + - uid: 7669 components: - pos: 17.5,-4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7669 + - uid: 7670 components: - pos: -4.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7670 + - uid: 7671 components: - pos: -4.5,-16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7671 + - uid: 7672 components: - pos: -4.5,-15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7672 + - uid: 7673 components: - pos: -4.5,-14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7673 + - uid: 7674 components: - pos: -4.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7674 + - uid: 7675 components: - pos: -4.5,-12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7675 + - uid: 7676 components: - pos: -4.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7676 + - uid: 7677 components: - pos: -4.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7677 + - uid: 7678 components: - pos: -4.5,-9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7678 + - uid: 7679 components: - pos: -4.5,-8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7679 + - uid: 7680 components: - pos: -4.5,-7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7680 + - uid: 7681 components: - pos: -4.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7681 + - uid: 7682 components: - pos: -4.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7682 + - uid: 7683 components: - pos: -4.5,-4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7683 + - uid: 7684 components: - pos: -4.5,-3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7684 + - uid: 7685 components: - pos: -4.5,-2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7685 + - uid: 7686 components: - pos: -4.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7686 + - uid: 7687 components: - pos: -4.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7687 + - uid: 7688 components: - pos: -4.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7688 + - uid: 7689 components: - pos: -4.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7689 + - uid: 7690 components: - pos: 25.5,8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7690 + - uid: 7691 components: - pos: 25.5,9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7691 + - uid: 7692 components: - pos: 24.5,9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7692 + - uid: 7693 components: - pos: 24.5,10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7693 + - uid: 7694 components: - pos: 24.5,11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7694 + - uid: 7695 components: - pos: 24.5,12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7695 + - uid: 7696 components: - pos: 24.5,13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7696 + - uid: 7697 components: - pos: 24.5,14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7697 + - uid: 7698 components: - pos: 24.5,15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7698 + - uid: 7699 components: - pos: 24.5,16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7699 + - uid: 7700 components: - pos: 23.5,16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7700 + - uid: 7701 components: - pos: 22.5,16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7701 + - uid: 7702 components: - pos: 24.5,17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7702 + - uid: 7703 components: - pos: 24.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7703 + - uid: 7704 components: - pos: 25.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7704 + - uid: 7705 components: - pos: 26.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7705 + - uid: 7706 components: - pos: 27.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7706 + - uid: 7707 components: - pos: 28.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7707 + - uid: 7708 components: - pos: 29.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7708 + - uid: 7709 components: - pos: 29.5,20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7709 + - uid: 7710 components: - pos: 29.5,19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7710 + - uid: 7711 components: - pos: 29.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7711 + - uid: 7712 components: - pos: 30.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7712 + - uid: 7713 components: - pos: 31.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7713 + - uid: 7714 components: - pos: 32.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7714 + - uid: 7715 components: - pos: 32.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7715 + - uid: 7716 components: - pos: 32.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7716 + - uid: 7717 components: - pos: 32.5,24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7717 + - uid: 7718 components: - pos: 32.5,25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7718 + - uid: 7719 components: - pos: 22.5,17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7719 + - uid: 7720 components: - pos: 22.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7720 + - uid: 7721 components: - pos: 22.5,19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7721 + - uid: 7722 components: - pos: 22.5,20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7722 + - uid: 7723 components: - pos: 22.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7723 + - uid: 7724 components: - pos: 22.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7724 + - uid: 7725 components: - pos: 21.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7725 + - uid: 7726 components: - pos: 21.5,23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7726 + - uid: 7727 components: - pos: 21.5,24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7727 + - uid: 7728 components: - pos: 21.5,25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7728 + - uid: 7729 components: - pos: 20.5,25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7729 + - uid: 7730 components: - pos: 18.5,25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7730 + - uid: 7731 components: - pos: 19.5,25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7731 + - uid: 7732 components: - pos: 33.5,25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7732 + - uid: 7733 components: - pos: -4.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7733 + - uid: 7734 components: - pos: -5.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7734 + - uid: 7735 components: - pos: -6.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7735 + - uid: 7736 components: - pos: -7.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7736 + - uid: 7737 components: - pos: -8.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7737 + - uid: 7738 components: - pos: -9.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7738 + - uid: 7739 components: - pos: -10.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7739 + - uid: 7740 components: - pos: -11.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7740 + - uid: 7741 components: - pos: -12.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7741 + - uid: 7742 components: - pos: -13.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7742 + - uid: 7743 components: - pos: -2.5,-62.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7743 + - uid: 7744 components: - pos: 34.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7744 + - uid: 7745 components: - pos: 35.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7745 + - uid: 7746 components: - pos: 36.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7746 + - uid: 7747 components: - pos: 36.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7747 + - uid: 7748 components: - pos: 37.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7748 + - uid: 7749 components: - pos: 38.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7749 + - uid: 7750 components: - pos: 39.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7750 + - uid: 7751 components: - pos: 40.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7751 + - uid: 7752 components: - pos: 41.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7752 + - uid: 7753 components: - pos: 42.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7753 + - uid: 7754 components: - pos: 44.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7754 + - uid: 7755 components: - pos: 43.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7755 + - uid: 7756 components: - pos: -10.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7756 + - uid: 7757 components: - pos: -14.5,35.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7757 + - uid: 7758 components: - pos: -9.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7758 + - uid: 7759 components: - pos: -20.5,29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7759 + - uid: 7760 components: - pos: -18.5,29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7760 + - uid: 7761 components: - pos: -20.5,28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7761 + - uid: 7762 components: - pos: -14.5,31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7762 + - uid: 7763 components: - pos: -19.5,29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7763 + - uid: 7764 components: - pos: -14.5,33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7764 + - uid: 7765 components: - pos: -20.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7765 + - uid: 7766 components: - pos: -20.5,27.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7766 + - uid: 7767 components: - pos: -14.5,39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7767 + - uid: 7768 components: - pos: -14.5,40.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7768 + - uid: 7769 components: - pos: -9.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7769 + - uid: 7770 components: - pos: -9.5,29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7770 + - uid: 7771 components: - pos: -8.5,29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7771 + - uid: 7772 components: - pos: -8.5,30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7772 + - uid: 7773 components: - pos: -8.5,31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7773 + - uid: 7774 components: - pos: 16.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7774 + - uid: 7775 components: - pos: 16.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7775 + - uid: 7776 components: - pos: 16.5,25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7776 + - uid: 7777 components: - pos: 17.5,25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7777 + - uid: 7778 components: - pos: 45.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7778 + - uid: 7779 components: - pos: 46.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7779 + - uid: 7780 components: - pos: 47.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7780 + - uid: 7781 components: - pos: 48.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7781 + - uid: 7782 components: - pos: 49.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7782 + - uid: 7783 components: - pos: 50.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7783 + - uid: 7784 components: - pos: 51.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7784 + - uid: 7785 components: - pos: 52.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7785 + - uid: 7786 components: - pos: 52.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7786 + - uid: 7787 components: - pos: 52.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7787 + - uid: 7788 components: - pos: 52.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7788 + - uid: 7789 components: - pos: 53.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7789 + - uid: 7790 components: - pos: 54.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7790 + - uid: 7791 components: - pos: 55.5,1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7791 + - uid: 7792 components: - pos: 56.5,1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7792 + - uid: 7793 components: - pos: 57.5,1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7793 + - uid: 7794 components: - pos: 58.5,1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7794 + - uid: 7795 components: - pos: 59.5,1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7795 + - uid: 7796 components: - pos: 60.5,1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7796 + - uid: 7797 components: - pos: 61.5,1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7797 + - uid: 7798 components: - pos: 62.5,1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7798 + - uid: 7799 components: - pos: 62.5,2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7799 + - uid: 7800 components: - pos: 62.5,3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7800 + - uid: 7801 components: - pos: 62.5,4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7801 + - uid: 7802 components: - pos: 62.5,5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7802 + - uid: 7803 components: - pos: 62.5,6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7803 + - uid: 7804 components: - pos: 62.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7804 + - uid: 7805 components: - pos: 63.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7805 + - uid: 7806 components: - pos: 25.5,-52.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7806 + - uid: 7807 components: - pos: 25.5,-53.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7807 + - uid: 7808 components: - pos: 25.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7808 + - uid: 7809 components: - pos: 25.5,-55.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7809 + - uid: 7810 components: - pos: 25.5,-56.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7810 + - uid: 7811 components: - pos: 25.5,-57.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7811 + - uid: 7812 components: - pos: 25.5,-58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7812 + - uid: 7813 components: - pos: 25.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7813 + - uid: 7814 components: - pos: 26.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7814 + - uid: 7815 components: - pos: 27.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7815 + - uid: 7816 components: - pos: 28.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7816 + - uid: 7817 components: - pos: 29.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7817 + - uid: 7818 components: - pos: 30.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7818 + - uid: 7819 components: - pos: 31.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7819 + - uid: 7820 components: - pos: 32.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7820 + - uid: 7821 components: - pos: 33.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7821 + - uid: 7822 components: - pos: 34.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7822 + - uid: 7823 components: - pos: -13.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7823 + - uid: 7824 components: - pos: -13.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7824 + - uid: 7825 components: - pos: -13.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7825 + - uid: 7826 components: - pos: -13.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7826 + - uid: 7827 components: - pos: -13.5,-2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7827 + - uid: 7828 components: - pos: -13.5,-3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7828 + - uid: 7829 components: - pos: -13.5,-4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7829 + - uid: 7830 components: - pos: -13.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7830 + - uid: 7831 components: - pos: -14.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7831 + - uid: 7832 components: - pos: -15.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7832 + - uid: 7833 components: - pos: -16.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7833 + - uid: 7834 components: - pos: -17.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7834 + - uid: 7835 components: - pos: -18.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7835 + - uid: 7836 components: - pos: -19.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7836 + - uid: 7837 components: - pos: -19.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7837 + - uid: 7838 components: - pos: -19.5,-7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7838 + - uid: 7839 components: - pos: -19.5,-8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7839 + - uid: 7840 components: - pos: -19.5,-9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7840 + - uid: 7841 components: - pos: -19.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7841 + - uid: 7842 components: - pos: -19.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7842 + - uid: 7843 components: - pos: -19.5,-12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7843 + - uid: 7844 components: - pos: -19.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7844 + - uid: 7845 components: - pos: -19.5,-14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7845 + - uid: 7846 components: - pos: -19.5,-15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7846 + - uid: 7847 components: - pos: -19.5,-16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7847 + - uid: 7848 components: - pos: -19.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7848 + - uid: 7849 components: - pos: -19.5,-18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7849 + - uid: 7850 components: - pos: -19.5,-19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7850 + - uid: 7851 components: - pos: -19.5,-20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7851 + - uid: 7852 components: - pos: -19.5,-21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7852 + - uid: 7853 components: - pos: -19.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7853 + - uid: 7854 components: - pos: -19.5,-23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7854 + - uid: 7855 components: - pos: -19.5,-24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7855 + - uid: 7856 components: - pos: -19.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7856 + - uid: 7857 components: - pos: -19.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7857 + - uid: 7858 components: - pos: -19.5,-27.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7858 + - uid: 7859 components: - pos: -18.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7859 + - uid: 7860 components: - pos: 4.5,-15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7860 + - uid: 7861 components: - pos: 52.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7861 + - uid: 7862 components: - pos: 52.5,-2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7862 + - uid: 7863 components: - pos: 52.5,-3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7863 + - uid: 7864 components: - pos: 52.5,-4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7864 + - uid: 7865 components: - pos: 52.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7865 + - uid: 7866 components: - pos: 52.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7866 + - uid: 7867 components: - pos: 52.5,-7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7867 + - uid: 7868 components: - pos: 51.5,-7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7868 + - uid: 7869 components: - pos: 50.5,-7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7869 + - uid: 7870 components: - pos: 51.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7870 + - uid: 7871 components: - pos: 50.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7871 + - uid: 7872 components: - pos: 49.5,-1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7872 + - uid: 7873 components: - pos: 48.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7873 + - uid: 7874 components: - pos: 48.5,-2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7874 + - uid: 7875 components: - pos: 48.5,-3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7875 + - uid: 7876 components: - pos: 47.5,-3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7876 + - uid: 7877 components: - pos: 71.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7877 + - uid: 7878 components: - pos: 49.5,-7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7878 + - uid: 7879 components: - pos: 49.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7879 + - uid: 7880 components: - pos: 49.5,-5.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7880 + - uid: 7881 components: - pos: 48.5,-5.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7881 + - uid: 7882 components: - pos: 38.5,-44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7882 + - uid: 7883 components: - pos: -24.5,-16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7883 + - uid: 7884 components: - pos: 36.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7884 + - uid: 7885 components: - pos: 37.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7885 + - uid: 7886 components: - pos: 38.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7886 + - uid: 7887 components: - pos: 39.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7887 + - uid: 7888 components: - pos: 40.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7888 + - uid: 7889 components: - pos: 41.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7889 + - uid: 7890 components: - pos: 42.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7890 + - uid: 7891 components: - pos: 43.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7891 + - uid: 7892 components: - pos: 44.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7892 + - uid: 7893 components: - pos: 45.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7893 + - uid: 7894 components: - pos: 46.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7894 + - uid: 7895 components: - pos: 47.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7895 + - uid: 7896 components: - pos: 48.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7896 + - uid: 7897 components: - pos: 49.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7897 + - uid: 7898 components: - pos: 49.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7898 + - uid: 7899 components: - pos: 49.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7899 + - uid: 7900 components: - pos: 38.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7900 + - uid: 7901 components: - pos: 38.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7901 + - uid: 7902 components: - pos: 38.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7902 + - uid: 7903 components: - pos: -19.5,-4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7903 + - uid: 7904 components: - pos: -19.5,-3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7904 + - uid: 7905 components: - pos: -19.5,-2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7905 + - uid: 7906 components: - pos: -19.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7906 + - uid: 7907 components: - pos: -19.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7907 + - uid: 7908 components: - pos: -18.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7908 + - uid: 7909 components: - pos: -17.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7909 + - uid: 7910 components: - pos: -16.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7910 + - uid: 7911 components: - pos: -20.5,-12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7911 + - uid: 7912 components: - pos: -21.5,-12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7912 + - uid: 7913 components: - pos: -23.5,-12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7913 + - uid: 7914 components: - pos: -22.5,-12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7914 + - uid: 7915 components: - pos: -24.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7915 + - uid: 7916 components: - pos: -25.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7916 + - uid: 7917 components: - pos: -26.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7917 + - uid: 7918 components: - pos: -27.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7918 + - uid: 7919 components: - pos: -28.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7919 + - uid: 7920 components: - pos: -29.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7920 + - uid: 7921 components: - pos: -30.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7921 + - uid: 7922 components: - pos: -31.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7922 + - uid: 7923 components: - pos: -20.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7923 + - uid: 7924 components: - pos: -21.5,-22.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7924 + - uid: 7925 components: - pos: -22.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7925 + - uid: 7926 components: - pos: -23.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7926 + - uid: 7927 components: - pos: -24.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7927 + - uid: 7928 components: - pos: -25.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7928 + - uid: 7929 components: - pos: -26.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7929 + - uid: 7930 components: - pos: -27.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7930 + - uid: 7931 components: - pos: -28.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7931 + - uid: 7932 components: - pos: -28.5,-23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7932 + - uid: 7933 components: - pos: -24.5,-12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7933 + - uid: 7934 components: - pos: 35.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7934 + - uid: 7935 components: - pos: 36.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7935 + - uid: 7936 components: - pos: 37.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7936 + - uid: 7937 components: - pos: -18.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7937 + - uid: 7938 components: - pos: -18.5,-40.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7938 + - uid: 7939 components: - pos: -18.5,-39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7939 + - uid: 7940 components: - pos: -18.5,-38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7940 + - uid: 7941 components: - pos: -18.5,-37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7941 + - uid: 7942 components: - pos: -18.5,-36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7942 + - uid: 7943 components: - pos: -18.5,-35.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7943 + - uid: 7944 components: - pos: -18.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7944 + - uid: 7945 components: - pos: -18.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7945 + - uid: 7946 components: - pos: -18.5,-32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7946 + - uid: 7947 components: - pos: -18.5,-31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7947 + - uid: 7948 components: - pos: -18.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7948 + - uid: 7949 components: - pos: -19.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7949 + - uid: 7950 components: - pos: -19.5,-29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7950 + - uid: 7951 components: - pos: -19.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7951 + - uid: 7952 components: - pos: 38.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7952 + - uid: 7953 components: - pos: 39.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7953 + - uid: 7954 components: - pos: 40.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7954 + - uid: 7955 components: - pos: 40.5,-60.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7955 + - uid: 7956 components: - pos: 40.5,-61.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7956 + - uid: 7957 components: - pos: 40.5,-62.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7957 + - uid: 7958 components: - pos: 40.5,-63.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7958 + - uid: 7959 components: - pos: 40.5,-64.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7959 + - uid: 7960 components: - pos: 40.5,-65.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7960 + - uid: 7961 components: - pos: 40.5,-66.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7961 + - uid: 7962 components: - pos: 40.5,-67.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7962 + - uid: 7963 components: - pos: 40.5,-68.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7963 + - uid: 7964 components: - pos: 41.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7964 + - uid: 7965 components: - pos: 42.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7965 + - uid: 7966 components: - pos: 43.5,-59.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7966 + - uid: 7967 components: - pos: 43.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7967 + - uid: 7968 components: - pos: -31.5,-16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7968 + - uid: 7969 components: - pos: -31.5,-15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7969 + - uid: 7970 components: - pos: -31.5,-14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7970 + - uid: 7971 components: - pos: -31.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7971 + - uid: 7972 components: - pos: -31.5,-12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7972 + - uid: 7973 components: - pos: -31.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7973 + - uid: 7974 components: - pos: -32.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7974 + - uid: 7975 components: - pos: -33.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7975 + - uid: 7976 components: - pos: -34.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7976 + - uid: 7977 components: - pos: -35.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7977 + - uid: 7978 components: - pos: -36.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7978 + - uid: 7979 components: - pos: -37.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7979 + - uid: 7980 components: - pos: -38.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7980 + - uid: 7981 components: - pos: -39.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7981 + - uid: 7982 components: - pos: -40.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7982 + - uid: 7983 components: - pos: -41.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7983 + - uid: 7984 components: - pos: -42.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7984 + - uid: 7985 components: - pos: -2.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7985 + - uid: 7986 components: - pos: -1.5,-69.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7986 + - uid: 7987 components: - pos: -1.5,-67.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7987 + - uid: 7988 components: - pos: -2.5,-60.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7988 + - uid: 7989 components: - pos: -2.5,-58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7989 + - uid: 7990 components: - pos: -42.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7990 + - uid: 7991 components: - pos: -42.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7991 + - uid: 7992 components: - pos: -42.5,-7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7992 + - uid: 7993 components: - pos: -42.5,-8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 7993 + - uid: 7994 components: - pos: -46.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7994 + - uid: 7995 components: - pos: -46.5,-12.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7995 + - uid: 7996 components: - pos: -46.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7996 + - uid: 7997 components: - pos: -46.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7997 + - uid: 7998 components: - pos: -46.5,-10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7998 + - uid: 7999 components: - pos: -46.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7999 + - uid: 8000 components: - pos: -46.5,-15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8000 + - uid: 8001 components: - pos: -46.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8001 + - uid: 8002 components: - pos: -42.5,-9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8002 + - uid: 8003 components: - pos: -46.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8003 + - uid: 8004 components: - pos: -46.5,-18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8004 + - uid: 8005 components: - pos: -46.5,-19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8005 + - uid: 8006 components: - pos: -47.5,-19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8006 + - uid: 8007 components: - pos: -48.5,-19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8007 + - uid: 8008 components: - pos: -48.5,-20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8008 + - uid: 8009 components: - pos: -46.5,-20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8009 + - uid: 8010 components: - pos: -45.5,-19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8010 + - uid: 8011 components: - pos: -44.5,-19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8011 + - uid: 8012 components: - pos: -44.5,-20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8012 + - uid: 8013 components: - pos: -46.5,-21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8013 + - uid: 8014 components: - pos: -48.5,-21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8014 + - uid: 8015 components: - pos: -44.5,-21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8015 + - uid: 8016 components: - pos: -46.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8016 + - uid: 8017 components: - pos: -48.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8017 + - uid: 8018 components: - pos: -44.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8018 + - uid: 8019 components: - pos: -48.5,-23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8019 + - uid: 8020 components: - pos: -47.5,-23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8020 + - uid: 8021 components: - pos: -46.5,-23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8021 + - uid: 8022 components: - pos: -44.5,-23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8022 + - uid: 8023 components: - pos: -45.5,-23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8023 + - uid: 8024 components: - pos: -46.5,-24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8024 + - uid: 8025 components: - pos: -46.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8025 + - uid: 8026 components: - pos: -47.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8026 + - uid: 8027 components: - pos: -48.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8027 + - uid: 8028 components: - pos: -49.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8028 + - uid: 8029 components: - pos: -50.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8029 + - uid: 8030 components: - pos: -43.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8030 + - uid: 8031 components: - pos: -42.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8031 + - uid: 8032 components: - pos: -51.5,-21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8032 + - uid: 8033 components: - pos: -41.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8033 + - uid: 8034 components: - pos: -41.5,-21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8034 + - uid: 8035 components: - pos: -41.5,-20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8035 + - uid: 8036 components: - pos: -43.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8036 + - uid: 8037 components: - pos: -44.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8037 + - uid: 8038 components: - pos: -45.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8038 + - uid: 8039 components: - pos: -46.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8039 + - uid: 8040 components: - pos: -47.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8040 + - uid: 8041 components: - pos: -48.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8041 + - uid: 8042 components: - pos: -49.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8042 + - uid: 8043 components: - pos: -50.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8043 + - uid: 8044 components: - pos: -51.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8044 + - uid: 8045 components: - pos: -52.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8045 + - uid: 8046 components: - pos: -52.5,-7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8046 + - uid: 8047 components: - pos: -52.5,-8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8047 + - uid: 8048 components: - pos: -52.5,-9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8048 + - uid: 8049 components: - pos: -41.5,-12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8049 + - uid: 8050 components: - pos: -41.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8050 + - uid: 8051 components: - pos: -41.5,-14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8051 + - uid: 8052 components: - pos: -41.5,-15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8052 + - uid: 8053 components: - pos: -41.5,-18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8053 + - uid: 8054 components: - pos: -41.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8054 + - uid: 8055 components: - pos: -41.5,-19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8055 + - uid: 8056 components: - pos: -41.5,-16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8056 + - uid: 8057 components: - pos: -51.5,-9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8057 + - uid: 8058 components: - pos: -50.5,-9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8058 + - uid: 8059 components: - pos: -50.5,-8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8059 + - uid: 8060 components: - pos: -57.5,-20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8060 + - uid: 8061 components: - pos: -14.5,45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8061 + - uid: 8062 components: - pos: -14.5,44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8062 + - uid: 8063 components: - pos: -56.5,-24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8063 + - uid: 8064 components: - pos: -65.5,-25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8064 + - uid: 8065 components: - pos: -53.5,-19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8065 + - uid: 8066 components: - pos: -66.5,-25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8066 + - uid: 8067 components: - pos: -53.5,-21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8067 + - uid: 8068 components: - pos: -57.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8068 + - uid: 8069 components: - pos: -64.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8069 + - uid: 8070 components: - pos: -65.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8070 + - uid: 8071 components: - pos: -66.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8071 + - uid: 8072 components: - pos: -66.5,-27.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8072 + - uid: 8073 components: - pos: -66.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8073 + - uid: 8074 components: - pos: -64.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8074 + - uid: 8075 components: - pos: -14.5,36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8075 + - uid: 8076 components: - pos: -59.5,-23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8076 + - uid: 8077 components: - pos: -56.5,-23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8077 + - uid: 8078 components: - pos: -56.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8078 + - uid: 8079 components: - pos: -56.5,-21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8079 + - uid: 8080 components: - pos: -56.5,-20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8080 + - uid: 8081 components: - pos: -64.5,-29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8081 + - uid: 8082 components: - pos: -64.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8082 + - uid: 8083 components: - pos: -63.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8083 + - uid: 8084 components: - pos: -62.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8084 + - uid: 8085 components: - pos: -61.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8085 + - uid: 8086 components: - pos: -60.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8086 + - uid: 8087 components: - pos: -64.5,-31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8087 + - uid: 8088 components: - pos: -64.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8088 + - uid: 8089 components: - pos: -64.5,-33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8089 + - uid: 8090 components: - pos: -65.5,-33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8090 + - uid: 8091 components: - pos: -66.5,-33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8091 + - uid: 8092 components: - pos: -67.5,-33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8092 + - uid: 8093 components: - pos: -68.5,-33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8093 + - uid: 8094 components: - pos: -14.5,42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8094 + - uid: 8095 components: - pos: -60.5,-29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8095 + - uid: 8096 components: - pos: -60.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8096 + - uid: 8097 components: - pos: -60.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8097 + - uid: 8098 components: - pos: -59.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8098 + - uid: 8099 components: - pos: -58.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8099 + - uid: 8100 components: - pos: -56.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8100 + - uid: 8101 components: - pos: -58.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8101 + - uid: 8102 components: - pos: -52.5,-19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8102 + - uid: 8103 components: - pos: -51.5,-19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8103 + - uid: 8104 components: - pos: -50.5,-19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8104 + - uid: 8105 components: - pos: -49.5,-19.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8105 + - uid: 8106 components: - pos: -31.5,-18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8106 + - uid: 8107 components: - pos: -31.5,-19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8107 + - uid: 8108 components: - pos: -31.5,-20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8108 + - uid: 8109 components: - pos: -31.5,-21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8109 + - uid: 8110 components: - pos: -31.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8110 + - uid: 8111 components: - pos: -31.5,-23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8111 + - uid: 8112 components: - pos: -31.5,-24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8112 + - uid: 8113 components: - pos: -31.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8113 + - uid: 8114 components: - pos: -31.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8114 + - uid: 8115 components: - pos: -31.5,-27.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8115 + - uid: 8116 components: - pos: -31.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8116 + - uid: 8117 components: - pos: -31.5,-29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8117 + - uid: 8118 components: - pos: -31.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8118 + - uid: 8119 components: - pos: -31.5,-31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8119 + - uid: 8120 components: - pos: -31.5,-32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8120 + - uid: 8121 components: - pos: -31.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8121 + - uid: 8122 components: - pos: -31.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8122 + - uid: 8123 components: - pos: -30.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8123 + - uid: 8124 components: - pos: -29.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8124 + - uid: 8125 components: - pos: -28.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8125 + - uid: 8126 components: - pos: -28.5,-35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8126 + - uid: 8127 components: - pos: -28.5,-36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8127 + - uid: 8128 components: - pos: -28.5,-37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8128 + - uid: 8129 components: - pos: -27.5,-37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8129 + - uid: 8130 components: - pos: -60.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8130 + - uid: 8131 components: - pos: -71.5,-22.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8131 + - uid: 8132 components: - pos: -72.5,-22.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8132 + - uid: 8133 components: - pos: -73.5,-22.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8133 + - uid: 8134 components: - pos: -74.5,-22.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8134 + - uid: 8135 components: - pos: -75.5,-22.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8135 + - uid: 8136 components: - pos: -76.5,-22.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8136 + - uid: 8137 components: - pos: -76.5,-21.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8137 + - uid: 8138 components: - pos: -76.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8138 + - uid: 8139 components: - pos: -76.5,-19.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8139 + - uid: 8140 components: - pos: -76.5,-18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8140 + - uid: 8141 components: - pos: -76.5,-17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8141 + - uid: 8142 components: - pos: -76.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8142 + - uid: 8143 components: - pos: -76.5,-15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8143 + - uid: 8144 components: - pos: -76.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8144 + - uid: 8145 components: - pos: -76.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8145 + - uid: 8146 components: - pos: -76.5,-12.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8146 + - uid: 8147 components: - pos: -76.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8147 + - uid: 8148 components: - pos: -76.5,-10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8148 + - uid: 8149 components: - pos: -76.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8149 + - uid: 8150 components: - pos: -76.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8150 + - uid: 8151 components: - pos: -76.5,-7.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8151 + - uid: 8152 components: - pos: -76.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8152 + - uid: 8153 components: - pos: -76.5,-5.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8153 + - uid: 8154 components: - pos: -76.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8154 + - uid: 8155 components: - pos: -76.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8155 + - uid: 8156 components: - pos: -75.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8156 + - uid: 8157 components: - pos: -74.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8157 + - uid: 8158 components: - pos: -73.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8158 + - uid: 8159 components: - pos: -72.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8159 + - uid: 8160 components: - pos: -71.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8160 + - uid: 8161 components: - pos: -70.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8161 + - uid: 8162 components: - pos: -69.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8162 + - uid: 8163 components: - pos: -68.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8163 + - uid: 8164 components: - pos: -67.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8164 + - uid: 8165 components: - pos: -66.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8165 + - uid: 8166 components: - pos: -65.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8166 + - uid: 8167 components: - pos: -64.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8167 + - uid: 8168 components: - pos: -63.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8168 + - uid: 8169 components: - pos: -62.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8169 + - uid: 8170 components: - pos: -61.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8170 + - uid: 8171 components: - pos: -60.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8171 + - uid: 8172 components: - pos: -59.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8172 + - uid: 8173 components: - pos: -58.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8173 + - uid: 8174 components: - pos: -57.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8174 + - uid: 8175 components: - pos: -56.5,-3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8175 + - uid: 8176 components: - pos: -56.5,-4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8176 + - uid: 8177 components: - pos: -56.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8177 + - uid: 8178 components: - pos: -56.5,-5.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8178 + - uid: 8179 components: - pos: -76.5,-23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8179 + - uid: 8180 components: - pos: -76.5,-24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8180 + - uid: 8181 components: - pos: -76.5,-25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8181 + - uid: 8182 components: - pos: -53.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8182 + - uid: 8183 components: - pos: -51.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8183 + - uid: 8184 components: - pos: -71.5,-21.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8184 + - uid: 8185 components: - pos: -19.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8185 + - uid: 8186 components: - pos: -20.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8186 + - uid: 8187 components: - pos: -21.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8187 + - uid: 8188 components: - pos: -22.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8188 + - uid: 8189 components: - pos: -23.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8189 + - uid: 8190 components: - pos: -23.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8190 + - uid: 8191 components: - pos: -23.5,-44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8191 + - uid: 8192 components: - pos: -23.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8192 + - uid: 8193 components: - pos: -23.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8193 + - uid: 8194 components: - pos: -23.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8194 + - uid: 8195 components: - pos: -23.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8195 + - uid: 8196 components: - pos: -23.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8196 + - uid: 8197 components: - pos: -24.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8197 + - uid: 8198 components: - pos: -25.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8198 + - uid: 8199 components: - pos: -26.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8199 + - uid: 8200 components: - pos: -27.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8200 + - uid: 8201 components: - pos: -27.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8201 + - uid: 8202 components: - pos: -27.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8202 + - uid: 8203 components: - pos: -27.5,-46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8203 + - uid: 8204 components: - pos: -27.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8204 + - uid: 8205 components: - pos: -27.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8205 + - uid: 8206 components: - pos: -28.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8206 + - uid: 8207 components: - pos: -29.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8207 + - uid: 8208 components: - pos: -30.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8208 + - uid: 8209 components: - pos: -31.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8209 + - uid: 8210 components: - pos: -31.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8210 + - uid: 8211 components: - pos: -31.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8211 + - uid: 8212 components: - pos: -31.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8212 + - uid: 8213 components: - pos: -30.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8213 + - uid: 8214 components: - pos: -30.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8214 + - uid: 8215 components: - pos: -30.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8215 + - uid: 8216 components: - pos: -30.5,-50.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8216 + - uid: 8217 components: - pos: -30.5,-51.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8217 + - uid: 8218 components: - pos: -30.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8218 + - uid: 8219 components: - pos: -30.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8219 + - uid: 8220 components: - pos: -31.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8220 + - uid: 8221 components: - pos: -31.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8221 + - uid: 8222 components: - pos: -58.5,-88.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8222 + - uid: 8223 components: - pos: -57.5,-88.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8223 + - uid: 8224 components: - pos: -58.5,-86.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8224 + - uid: 8225 components: - pos: -57.5,-86.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8225 + - uid: 8226 components: - pos: -56.5,-88.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8226 + - uid: 8227 components: - pos: -57.5,-87.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8227 + - uid: 8228 components: - pos: -55.5,-88.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8228 + - uid: 8229 components: - pos: -55.5,-89.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8229 + - uid: 8230 components: - pos: -9.5,28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8230 + - uid: 8231 components: - pos: 14.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8231 + - uid: 8232 components: - pos: 13.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8232 + - uid: 8233 components: - pos: 2.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8233 + - uid: 8234 components: - pos: 1.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8234 + - uid: 8235 components: - pos: 0.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8235 + - uid: 8236 components: - pos: -0.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8236 + - uid: 8237 components: - pos: -1.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8237 + - uid: 8238 components: - pos: -2.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8238 + - uid: 8239 components: - pos: -3.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8239 + - uid: 8240 components: - pos: -4.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8240 + - uid: 8241 components: - pos: -5.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8241 + - uid: 8242 components: - pos: -6.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8242 + - uid: 8243 components: - pos: -7.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8243 + - uid: 8244 components: - pos: -8.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8244 + - uid: 8245 components: - pos: -8.5,33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8245 + - uid: 8246 components: - pos: -8.5,34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8246 + - uid: 8247 components: - pos: -8.5,35.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8247 + - uid: 8248 components: - pos: -14.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8248 + - uid: 8249 components: - pos: -14.5,30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8249 + - uid: 8250 components: - pos: -14.5,29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8250 + - uid: 8251 components: - pos: -16.5,29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8251 + - uid: 8252 components: - pos: -22.5,17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8252 + - uid: 8253 components: - pos: -21.5,17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8253 + - uid: 8254 components: - pos: -20.5,17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8254 + - uid: 8255 components: - pos: -22.5,16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8255 + - uid: 8256 components: - pos: -23.5,16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8256 + - uid: 8257 components: - pos: -23.5,15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8257 + - uid: 8258 components: - pos: -13.5,3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8258 + - uid: 8259 components: - pos: -13.5,4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8259 + - uid: 8260 components: - pos: -13.5,5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8260 + - uid: 8261 components: - pos: -13.5,6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8261 + - uid: 8262 components: - pos: -13.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8262 + - uid: 8263 components: - pos: -14.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8263 + - uid: 8264 components: - pos: -15.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8264 + - uid: 8265 components: - pos: -16.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8265 + - uid: 8266 components: - pos: -17.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8266 + - uid: 8267 components: - pos: -18.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8267 + - uid: 8268 components: - pos: -19.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8268 + - uid: 8269 components: - pos: -20.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8269 + - uid: 8270 components: - pos: -20.5,8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8270 + - uid: 8271 components: - pos: -20.5,9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8271 + - uid: 8272 components: - pos: -20.5,10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8272 + - uid: 8273 components: - pos: -20.5,11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8273 + - uid: 8274 components: - pos: -20.5,12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8274 + - uid: 8275 components: - pos: -20.5,13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8275 + - uid: 8276 components: - pos: -20.5,14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8276 + - uid: 8277 components: - pos: -20.5,15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8277 + - uid: 8278 components: - pos: -20.5,16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8278 + - uid: 8279 components: - pos: -71.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8279 + - uid: 8280 components: - pos: -72.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8280 + - uid: 8281 components: - pos: -73.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8281 + - uid: 8282 components: - pos: -73.5,-19.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8282 + - uid: 8283 components: - pos: -73.5,-18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8283 + - uid: 8284 components: - pos: -73.5,-17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8284 + - uid: 8285 components: - pos: -73.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8285 + - uid: 8286 components: - pos: -73.5,-15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8286 + - uid: 8287 components: - pos: -73.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8287 + - uid: 8288 components: - pos: -73.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8288 + - uid: 8289 components: - pos: -73.5,-12.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8289 + - uid: 8290 components: - pos: -73.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8290 + - uid: 8291 components: - pos: -73.5,-10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8291 + - uid: 8292 components: - pos: -73.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8292 + - uid: 8293 components: - pos: -73.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8293 + - uid: 8294 components: - pos: -73.5,-7.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8294 + - uid: 8295 components: - pos: -73.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8295 + - uid: 8296 components: - pos: -72.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8296 + - uid: 8297 components: - pos: -71.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8297 + - uid: 8298 components: - pos: -70.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8298 + - uid: 8299 components: - pos: -69.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8299 + - uid: 8300 components: - pos: -68.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8300 + - uid: 8301 components: - pos: -67.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8301 + - uid: 8302 components: - pos: -66.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8302 + - uid: 8303 components: - pos: -65.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8303 + - uid: 8304 components: - pos: -64.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8304 + - uid: 8305 components: - pos: -63.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8305 + - uid: 8306 components: - pos: -62.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8306 + - uid: 8307 components: - pos: -61.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8307 + - uid: 8308 components: - pos: -60.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8308 + - uid: 8309 components: - pos: -59.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8309 + - uid: 8310 components: - pos: -59.5,-7.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8310 + - uid: 8311 components: - pos: -59.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8311 + - uid: 8312 components: - pos: -59.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8312 + - uid: 8313 components: - pos: -59.5,-10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8313 + - uid: 8314 components: - pos: -59.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8314 + - uid: 8315 components: - pos: -59.5,-12.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8315 + - uid: 8316 components: - pos: -59.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8316 + - uid: 8317 components: - pos: -59.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8317 + - uid: 8318 components: - pos: -59.5,-15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8318 + - uid: 8319 components: - pos: -59.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8319 + - uid: 8320 components: - pos: -59.5,-17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8320 + - uid: 8321 components: - pos: -59.5,-18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8321 + - uid: 8322 components: - pos: -59.5,-19.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8322 + - uid: 8323 components: - pos: -59.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8323 + - uid: 8324 components: - pos: -60.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8324 + - uid: 8325 components: - pos: -61.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8325 + - uid: 8326 components: - pos: -62.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8326 + - uid: 8327 components: - pos: -63.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8327 + - uid: 8328 components: - pos: -64.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8328 + - uid: 8329 components: - pos: -65.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8329 + - uid: 8330 components: - pos: -66.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8330 + - uid: 8331 components: - pos: -67.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8331 + - uid: 8332 components: - pos: -68.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8332 + - uid: 8333 components: - pos: -69.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8333 + - uid: 8334 components: - pos: -70.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8334 + - uid: 8335 components: - pos: -20.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8335 + - uid: 8336 components: - pos: -21.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8336 + - uid: 8337 components: - pos: -22.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8337 + - uid: 8338 components: - pos: -23.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8338 + - uid: 8339 components: - pos: -24.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8339 + - uid: 8340 components: - pos: -25.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8340 + - uid: 8341 components: - pos: -25.5,-4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8341 + - uid: 8342 components: - pos: -25.5,-3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8342 + - uid: 8343 components: - pos: -25.5,-2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8343 + - uid: 8344 components: - pos: -25.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8344 + - uid: 8345 components: - pos: -25.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8345 + - uid: 8346 components: - pos: -26.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8346 + - uid: 8347 components: - pos: -27.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8347 + - uid: 8348 components: - pos: -28.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8348 + - uid: 8349 components: - pos: -29.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8349 + - uid: 8350 components: - pos: -30.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8350 + - uid: 8351 components: - pos: -31.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8351 + - uid: 8352 components: - pos: -32.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8352 + - uid: 8353 components: - pos: -33.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8353 + - uid: 8354 components: - pos: -34.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8354 + - uid: 8355 components: - pos: -35.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8355 + - uid: 8356 components: - pos: -36.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8356 + - uid: 8357 components: - pos: -37.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8357 + - uid: 8358 components: - pos: -37.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8358 + - uid: 8359 components: - pos: -37.5,-2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8359 + - uid: 8360 components: - pos: -36.5,-2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8360 + - uid: 8361 components: - pos: -35.5,-2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8361 + - uid: 8362 components: - pos: -34.5,-2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8362 + - uid: 8363 components: - pos: -34.5,-3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8363 + - uid: 8364 components: - pos: -20.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8364 + - uid: 8365 components: - pos: -20.5,19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8365 + - uid: 8366 components: - pos: -20.5,20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8366 + - uid: 8367 components: - pos: -20.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8367 + - uid: 8368 components: - pos: -20.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8368 + - uid: 8369 components: - pos: -20.5,23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8369 + - uid: 8370 components: - pos: -20.5,24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8370 + - uid: 8371 components: - pos: -20.5,25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8371 + - uid: 8372 components: - pos: 8.5,-104.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8372 + - uid: 8373 components: - pos: 7.5,-104.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8373 + - uid: 8374 components: - pos: 6.5,-104.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8374 + - uid: 8375 components: - pos: 5.5,-104.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8375 + - uid: 8376 components: - pos: 4.5,-104.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8376 + - uid: 8377 components: - pos: 14.5,-104.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8377 + - uid: 8378 components: - pos: 15.5,-104.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8378 + - uid: 8379 components: - pos: 16.5,-104.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8379 + - uid: 8380 components: - pos: 17.5,-104.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8380 + - uid: 8381 components: - pos: 18.5,-104.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8381 + - uid: 8382 components: - pos: 15.5,-101.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8382 + - uid: 8383 components: - pos: 16.5,-101.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8383 + - uid: 8384 components: - pos: 17.5,-101.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8384 + - uid: 8385 components: - pos: 18.5,-101.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8385 + - uid: 8386 components: - pos: 7.5,-101.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8386 + - uid: 8387 components: - pos: 6.5,-101.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8387 + - uid: 8388 components: - pos: 5.5,-101.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8388 + - uid: 8389 components: - pos: 4.5,-101.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8389 + - uid: 8390 components: - pos: 4.5,-98.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8390 + - uid: 8391 components: - pos: 5.5,-98.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8391 + - uid: 8392 components: - pos: 6.5,-98.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8392 + - uid: 8393 components: - pos: 7.5,-98.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8393 + - uid: 8394 components: - pos: 18.5,-98.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8394 + - uid: 8395 components: - pos: 17.5,-98.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8395 + - uid: 8396 components: - pos: 16.5,-98.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8396 + - uid: 8397 components: - pos: 15.5,-98.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8397 + - uid: 8398 components: - pos: -2.5,-57.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8398 + - uid: 8399 components: - pos: -2.5,-56.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8399 + - uid: 8400 components: - pos: -2.5,-55.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8400 + - uid: 8401 components: - pos: -2.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8401 + - uid: 8402 components: - pos: -2.5,-53.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8402 + - uid: 8403 components: - pos: -1.5,-53.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8403 + - uid: 8404 components: - pos: -0.5,-53.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8404 + - uid: 8405 components: - pos: -0.5,-52.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8405 + - uid: 8406 components: - pos: -0.5,-51.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8406 + - uid: 8407 components: - pos: -0.5,-50.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8407 + - uid: 8408 components: - pos: -0.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8408 + - uid: 8409 components: - pos: -0.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8409 + - uid: 8410 components: - pos: -0.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8410 + - uid: 8411 components: - pos: -0.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8411 + - uid: 8412 components: - pos: -0.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8412 + - uid: 8413 components: - pos: -0.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8413 + - uid: 8414 components: - pos: -0.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8414 + - uid: 8415 components: - pos: -53.5,-18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8415 + - uid: 8416 components: - pos: -53.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8416 + - uid: 8417 components: - pos: -53.5,-16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8417 + - uid: 8418 components: - pos: -53.5,-15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8418 + - uid: 8419 components: - pos: -53.5,-14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8419 + - uid: 8420 components: - pos: -53.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8420 + - uid: 8421 components: - pos: -54.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8421 + - uid: 8422 components: - pos: -55.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8422 + - uid: 8423 components: - pos: -55.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8423 + - uid: 8424 components: - pos: -56.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8424 + - uid: 8425 components: - pos: -57.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8425 + - uid: 8426 components: - pos: -60.5,-27.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8426 + - uid: 8427 components: - pos: -54.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8427 + - uid: 8428 components: - pos: -52.5,-25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8428 + - uid: 8429 components: - pos: -0.5,-79.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8429 + - uid: 8430 components: - pos: -14.5,38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8430 + - uid: 8431 components: - pos: -14.5,43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8431 + - uid: 8432 components: - pos: -14.5,41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8432 + - uid: 8433 components: - pos: -17.5,29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8433 + - uid: 8434 components: - pos: -14.5,37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8434 + - uid: 8435 components: - pos: -15.5,29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8435 + - uid: 8436 components: - pos: -0.5,-78.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8436 + - uid: 8437 components: - pos: -0.5,-77.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8437 + - uid: 8438 components: - pos: 12.5,-104.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8438 + - uid: 8439 components: - pos: 10.5,-104.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8439 + - uid: 8440 components: - pos: -47.5,-27.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8440 + - uid: 8441 components: - pos: -48.5,-27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8441 + - uid: 8442 components: - pos: -48.5,-28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8442 + - uid: 8443 components: - pos: -48.5,-29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8443 + - uid: 8444 components: - pos: -48.5,-31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8444 + - uid: 8445 components: - pos: -46.5,-27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8445 + - uid: 8446 components: - pos: -46.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8446 + - uid: 8447 components: - pos: -72.5,-35.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8447 + - uid: 8448 components: - pos: -72.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8448 + - uid: 8449 components: - pos: -72.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8449 + - uid: 8450 components: - pos: 19.5,-27.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8450 + - uid: 8451 components: - pos: 19.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8451 + - uid: 8452 components: - pos: 5.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8452 + - uid: 8453 components: - pos: 8.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8453 + - uid: 8454 components: - pos: 33.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8454 + - uid: 8455 components: - pos: 34.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8455 + - uid: 8456 components: - pos: 35.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8456 + - uid: 8457 components: - pos: 36.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8457 + - uid: 8458 components: - pos: 36.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8458 + - uid: 8459 components: - pos: 37.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8459 + - uid: 8460 components: - pos: 38.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8460 + - uid: 8461 components: - pos: 39.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8461 + - uid: 8462 components: - pos: 40.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8462 + - uid: 8463 components: - pos: 41.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8463 + - uid: 8464 components: - pos: 42.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8464 + - uid: 8465 components: - pos: 43.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8465 + - uid: 8466 components: - pos: 44.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8466 + - uid: 8467 components: - pos: 44.5,24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8467 + - uid: 8468 components: - pos: 44.5,25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8468 + - uid: 8469 components: - pos: 44.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8469 + - uid: 8470 components: - pos: 45.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8470 + - uid: 8471 components: - pos: 46.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8471 + - uid: 8472 components: - pos: 47.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8472 + - uid: 8473 components: - pos: 48.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8473 + - uid: 8474 components: - pos: 48.5,27.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8474 + - uid: 8475 components: - pos: 48.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8475 + - uid: 8476 components: - pos: 49.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8476 + - uid: 8477 components: - pos: 50.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8477 + - uid: 8478 components: - pos: 50.5,29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8478 + - uid: 8479 components: - pos: 91.5,36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8479 + - uid: 8480 components: - pos: 77.5,36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8480 + - uid: 8481 components: - pos: 76.5,36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8481 + - uid: 8482 components: - pos: 75.5,36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8482 + - uid: 8483 components: - pos: 74.5,36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8483 + - uid: 8484 components: - pos: 78.5,44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8484 + - uid: 8485 components: - pos: 78.5,43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8485 + - uid: 8486 components: - pos: 78.5,42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8486 + - uid: 8487 components: - pos: 78.5,41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8487 + - uid: 8488 components: - pos: 78.5,40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8488 + - uid: 8489 components: - pos: 78.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8489 + - uid: 8490 components: - pos: 78.5,38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8490 + - uid: 8491 components: - pos: 78.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8491 + - uid: 8492 components: - pos: 78.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8492 + - uid: 8493 components: - pos: 78.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8493 + - uid: 8494 components: - pos: 78.5,33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8494 + - uid: 8495 components: - pos: 78.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8495 + - uid: 8496 components: - pos: 78.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8496 + - uid: 8497 components: - pos: 78.5,30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8497 + - uid: 8498 components: - pos: 78.5,29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8498 + - uid: 8499 components: - pos: 78.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8499 + - uid: 8500 components: - pos: 81.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8500 + - uid: 8501 components: - pos: 81.5,29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8501 + - uid: 8502 components: - pos: 81.5,30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8502 + - uid: 8503 components: - pos: 81.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8503 + - uid: 8504 components: - pos: 81.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8504 + - uid: 8505 components: - pos: 81.5,33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8505 + - uid: 8506 components: - pos: 81.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8506 + - uid: 8507 components: - pos: 81.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8507 + - uid: 8508 components: - pos: 81.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8508 + - uid: 8509 components: - pos: 81.5,38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8509 + - uid: 8510 components: - pos: 81.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8510 + - uid: 8511 components: - pos: 81.5,40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8511 + - uid: 8512 components: - pos: 81.5,41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8512 + - uid: 8513 components: - pos: 81.5,42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8513 + - uid: 8514 components: - pos: 81.5,43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8514 + - uid: 8515 components: - pos: 81.5,44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8515 + - uid: 8516 components: - pos: 84.5,44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8516 + - uid: 8517 components: - pos: 84.5,43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8517 + - uid: 8518 components: - pos: 84.5,42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8518 + - uid: 8519 components: - pos: 84.5,41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8519 + - uid: 8520 components: - pos: 84.5,40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8520 + - uid: 8521 components: - pos: 84.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8521 + - uid: 8522 components: - pos: 84.5,38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8522 + - uid: 8523 components: - pos: 84.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8523 + - uid: 8524 components: - pos: 84.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8524 + - uid: 8525 components: - pos: 84.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8525 + - uid: 8526 components: - pos: 84.5,33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8526 + - uid: 8527 components: - pos: 84.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8527 + - uid: 8528 components: - pos: 84.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8528 + - uid: 8529 components: - pos: 84.5,30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8529 + - uid: 8530 components: - pos: 84.5,29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8530 + - uid: 8531 components: - pos: 84.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8531 + - uid: 8532 components: - pos: 87.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8532 + - uid: 8533 components: - pos: 87.5,29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8533 + - uid: 8534 components: - pos: 87.5,30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8534 + - uid: 8535 components: - pos: 87.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8535 + - uid: 8536 components: - pos: 87.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8536 + - uid: 8537 components: - pos: 87.5,33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8537 + - uid: 8538 components: - pos: 87.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8538 + - uid: 8539 components: - pos: 87.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8539 + - uid: 8540 components: - pos: 87.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8540 + - uid: 8541 components: - pos: 87.5,38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8541 + - uid: 8542 components: - pos: 87.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8542 + - uid: 8543 components: - pos: 87.5,40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8543 + - uid: 8544 components: - pos: 87.5,41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8544 + - uid: 8545 components: - pos: 87.5,42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8545 + - uid: 8546 components: - pos: 87.5,43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8546 + - uid: 8547 components: - pos: 87.5,44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8547 + - uid: 8548 components: - pos: 90.5,44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8548 + - uid: 8549 components: - pos: 90.5,43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8549 + - uid: 8550 components: - pos: 90.5,42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8550 + - uid: 8551 components: - pos: 90.5,41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8551 + - uid: 8552 components: - pos: 90.5,40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8552 + - uid: 8553 components: - pos: 90.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8553 + - uid: 8554 components: - pos: 90.5,38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8554 + - uid: 8555 components: - pos: 90.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8555 + - uid: 8556 components: - pos: 90.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8556 + - uid: 8557 components: - pos: 90.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8557 + - uid: 8558 components: - pos: 90.5,33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8558 + - uid: 8559 components: - pos: 90.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8559 + - uid: 8560 components: - pos: 90.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8560 + - uid: 8561 components: - pos: 90.5,30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8561 + - uid: 8562 components: - pos: 90.5,29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8562 + - uid: 8563 components: - pos: 90.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8563 + - uid: 8564 components: - pos: 74.5,37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8564 + - uid: 8565 components: - pos: 74.5,38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8565 + - uid: 8566 components: - pos: 73.5,38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8566 + - uid: 8567 components: - pos: 72.5,38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8567 + - uid: 8568 components: - pos: 74.5,35.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8568 + - uid: 8569 components: - pos: 74.5,34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8569 + - uid: 8570 components: - pos: 73.5,34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8570 + - uid: 8571 components: - pos: 72.5,34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8571 + - uid: 8572 components: - pos: 71.5,34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8572 + - uid: 8573 components: - pos: 70.5,34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8573 + - uid: 8574 components: - pos: 70.5,35.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8574 + - uid: 8575 components: - pos: 70.5,36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8575 + - uid: 8576 components: - pos: 69.5,36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8576 + - uid: 8577 components: - pos: 71.5,38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8577 + - uid: 8578 components: - pos: 70.5,38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8578 + - uid: 8579 components: - pos: 70.5,37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8579 + - uid: 8580 components: - pos: 68.5,36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8580 + - uid: 8581 components: - pos: 67.5,36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8581 + - uid: 8582 components: - pos: 66.5,36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8582 + - uid: 8583 components: - pos: 65.5,36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8583 + - uid: 8584 components: - pos: 64.5,36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8584 + - uid: 8585 components: - pos: 63.5,36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8585 + - uid: 8586 components: - pos: 63.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8586 + - uid: 8587 components: - pos: 63.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8587 + - uid: 8588 components: - pos: 63.5,33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8588 + - uid: 8589 components: - pos: 63.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8589 + - uid: 8590 components: - pos: 63.5,31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8590 + - uid: 8591 components: - pos: 63.5,30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8591 + - uid: 8592 components: - pos: 63.5,29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8592 + - uid: 8593 components: - pos: 63.5,28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8593 + - uid: 8594 components: - pos: 63.5,27.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8594 + - uid: 8595 components: - pos: 63.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8595 + - uid: 8596 components: - pos: 62.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8596 + - uid: 8597 components: - pos: 61.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8597 + - uid: 8598 components: - pos: 60.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8598 + - uid: 8599 components: - pos: 59.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8599 + - uid: 8600 components: - pos: 58.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8600 + - uid: 8601 components: - pos: 57.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8601 + - uid: 8602 components: - pos: 56.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8602 + - uid: 8603 components: - pos: 55.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8603 + - uid: 8604 components: - pos: 54.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8604 + - uid: 8605 components: - pos: 53.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8605 + - uid: 8606 components: - pos: 52.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8606 + - uid: 8607 components: - pos: 51.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8607 + - uid: 8608 components: - pos: 50.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8608 + - uid: 8609 components: - pos: 49.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8609 + - uid: 8610 components: - pos: -11.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8610 + - uid: 8611 components: - pos: -12.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8611 + - uid: 8612 components: - pos: -13.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8612 + - uid: 8613 components: - pos: -14.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8613 + - uid: 8614 components: - pos: -15.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8614 + - uid: 8615 components: - pos: -15.5,27.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8615 + - uid: 8616 components: - pos: -15.5,28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8616 + - uid: 8617 components: - pos: -1.5,69.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8617 + - uid: 8618 components: - pos: -1.5,68.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8618 + - uid: 8619 components: - pos: -1.5,67.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8619 + - uid: 8620 components: - pos: -1.5,66.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8620 + - uid: 8621 components: - pos: -1.5,65.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8621 + - uid: 8622 components: - pos: -1.5,64.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8622 + - uid: 8623 components: - pos: -1.5,63.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8623 + - uid: 8624 components: - pos: -1.5,62.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8624 + - uid: 8625 components: - pos: -1.5,61.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8625 + - uid: 8626 components: - pos: -1.5,60.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8626 + - uid: 8627 components: - pos: -1.5,59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8627 + - uid: 8628 components: - pos: -1.5,58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8628 + - uid: 8629 components: - pos: -2.5,58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8629 + - uid: 8630 components: - pos: -3.5,58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8630 + - uid: 8631 components: - pos: -4.5,58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8631 + - uid: 8632 components: - pos: -5.5,58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8632 + - uid: 8633 components: - pos: -6.5,58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8633 + - uid: 8634 components: - pos: -7.5,58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8634 + - uid: 8635 components: - pos: -8.5,58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8635 + - uid: 8636 components: - pos: -9.5,58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8636 + - uid: 8637 components: - pos: -10.5,58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8637 + - uid: 8638 components: - pos: -10.5,59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8638 + - uid: 8639 components: - pos: -10.5,60.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8639 + - uid: 8640 components: - pos: -10.5,61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8640 + - uid: 8641 components: - pos: -10.5,62.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8641 + - uid: 8642 components: - pos: -71.5,-23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8642 + - uid: 8643 components: - pos: -71.5,-24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8643 + - uid: 8644 components: - pos: -71.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8644 + - uid: 8645 components: - pos: -72.5,-25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8645 + - uid: 8646 components: - pos: -72.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8646 + - uid: 8647 components: - pos: -72.5,-27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8647 + - uid: 8648 components: - pos: -72.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8648 + - uid: 8649 components: - pos: -71.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8649 + - uid: 8650 components: - pos: -70.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8650 + - uid: 8651 components: - pos: -70.5,-29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8651 + - uid: 8652 components: - pos: -72.5,-29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8652 + - uid: 8653 components: - pos: -73.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8653 + - uid: 8654 components: - pos: -74.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8654 + - uid: 8655 components: - pos: -74.5,-29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8655 + - uid: 8656 components: - pos: -74.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8656 + - uid: 8657 components: - pos: -72.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8657 + - uid: 8658 components: - pos: -70.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8658 + - uid: 8659 components: - pos: -70.5,-31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8659 + - uid: 8660 components: - pos: -70.5,-32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8660 + - uid: 8661 components: - pos: -71.5,-32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8661 + - uid: 8662 components: - pos: -72.5,-32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8662 + - uid: 8663 components: - pos: -74.5,-31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8663 + - uid: 8664 components: - pos: -74.5,-32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8664 + - uid: 8665 components: - pos: -73.5,-32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8665 + - uid: 8666 components: - pos: -72.5,-31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8666 + - uid: 8667 components: - pos: -48.5,-30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8667 + - uid: 8668 components: - pos: -49.5,-31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8668 + - uid: 8669 components: - pos: -50.5,-31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8669 + - uid: 8670 components: - pos: -51.5,-31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8670 + - uid: 8671 components: - pos: -52.5,-31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8671 + - uid: 8672 components: - pos: -52.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8672 + - uid: 8673 components: - pos: -52.5,-29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8673 + - uid: 8674 components: - pos: -52.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8674 + - uid: 8675 components: - pos: -52.5,-27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8675 + - uid: 8676 components: - pos: -53.5,-27.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8676 + - uid: 8677 components: - pos: -54.5,-27.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8677 + - uid: 8678 components: - pos: -55.5,-27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8678 + - uid: 8679 components: - pos: -55.5,-28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8679 + - uid: 8680 components: - pos: -55.5,-29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8680 + - uid: 8681 components: - pos: -55.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8681 + - uid: 8682 components: - pos: -55.5,-31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8682 + - uid: 8683 components: - pos: -55.5,-32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8683 + - uid: 8684 components: - pos: -55.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8684 + - uid: 8685 components: - pos: -55.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8685 + - uid: 8686 components: - pos: -55.5,-35.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8686 + - uid: 8687 components: - pos: -55.5,-36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8687 + - uid: 8688 components: - pos: -55.5,-37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8688 + - uid: 8689 components: - pos: -56.5,-37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8689 + - uid: 8690 components: - pos: -56.5,-38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8690 + - uid: 8691 components: - pos: -56.5,-39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8691 + - uid: 8692 components: - pos: -56.5,-40.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8692 + - uid: 8693 components: - pos: -56.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8693 + - uid: 8694 components: - pos: -56.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8694 + - uid: 8695 components: - pos: -56.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8695 + - uid: 8696 components: - pos: -56.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8696 + - uid: 8697 components: - pos: -56.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8697 + - uid: 8698 components: - pos: -56.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8698 + - uid: 8699 components: - pos: -56.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8699 + - uid: 8700 components: - pos: -56.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8700 + - uid: 8701 components: - pos: -56.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8701 + - uid: 8702 components: - pos: -56.5,-50.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8702 + - uid: 8703 components: - pos: -56.5,-51.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8703 + - uid: 8704 components: - pos: -56.5,-52.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8704 + - uid: 8705 components: - pos: -56.5,-53.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8705 + - uid: 8706 components: - pos: -56.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8706 + - uid: 8707 components: - pos: -57.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8707 + - uid: 8708 components: - pos: -58.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8708 + - uid: 8709 components: - pos: -59.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8709 + - uid: 8710 components: - pos: -60.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8710 + - uid: 8711 components: - pos: -61.5,-54.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8711 + - uid: 8712 components: - pos: -61.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8712 + - uid: 8713 components: - pos: -61.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8713 + - uid: 8714 components: - pos: -61.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8714 + - uid: 8715 components: - pos: -61.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8715 + - uid: 8716 components: - pos: -61.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8716 + - uid: 8717 components: - pos: -61.5,-48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8717 + - uid: 8718 components: - pos: -61.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8718 + - uid: 8719 components: - pos: -61.5,-46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8719 + - uid: 8720 components: - pos: -61.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8720 + - uid: 8721 components: - pos: -61.5,-44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8721 + - uid: 8722 components: - pos: -61.5,-43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8722 + - uid: 8723 components: - pos: -61.5,-42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8723 + - uid: 8724 components: - pos: -61.5,-41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8724 + - uid: 8725 components: - pos: -61.5,-40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8725 + - uid: 8726 components: - pos: -61.5,-39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8726 + - uid: 8727 components: - pos: -61.5,-38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8727 + - uid: 8728 components: - pos: -61.5,-37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8728 + - uid: 8729 components: - pos: -61.5,-36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8729 + - uid: 8730 components: - pos: -62.5,-36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8730 + - uid: 8731 components: - pos: -63.5,-36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8731 + - uid: 8732 components: - pos: -64.5,-36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8732 + - uid: 8733 components: - pos: -65.5,-36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8733 + - uid: 8734 components: - pos: -66.5,-36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8734 + - uid: 8735 components: - pos: -67.5,-36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8735 + - uid: 8736 components: - pos: -68.5,-36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8736 + - uid: 8737 components: - pos: -69.5,-36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8737 + - uid: 8738 components: - pos: -70.5,-36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8738 + - uid: 8739 components: - pos: -71.5,-36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8739 + - uid: 8740 components: - pos: -72.5,-36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8740 + - uid: 8741 components: - pos: -69.5,-37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8741 + - uid: 8742 components: - pos: -69.5,-38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8742 + - uid: 8743 components: - pos: -69.5,-39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8743 + - uid: 8744 components: - pos: -69.5,-40.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8744 + - uid: 8745 components: - pos: -69.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8745 + - uid: 8746 components: - pos: -70.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8746 + - uid: 8747 components: - pos: -71.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8747 + - uid: 8748 components: - pos: 68.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8748 + - uid: 8749 components: - pos: 67.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8749 + - uid: 8750 components: - pos: 66.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8750 + - uid: 8751 components: - pos: 65.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8751 + - uid: 8752 components: - pos: 64.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8752 + - uid: 8753 components: - pos: 64.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8753 + - uid: 8754 components: - pos: 64.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8754 + - uid: 8755 components: - pos: 63.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8755 + - uid: 8756 components: - pos: 62.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8756 + - uid: 8757 components: - pos: 61.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8757 + - uid: 8758 components: - pos: 60.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8758 + - uid: 8759 components: - pos: 59.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8759 + - uid: 8760 components: - pos: 58.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8760 + - uid: 8761 components: - pos: 57.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8761 + - uid: 8762 components: - pos: 56.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8762 + - uid: 8763 components: - pos: 55.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8763 + - uid: 8764 components: - pos: 54.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8764 + - uid: 8765 components: - pos: 53.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8765 + - uid: 8766 components: - pos: 52.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8766 + - uid: 8767 components: - pos: 51.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8767 + - uid: 8768 components: - pos: 50.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8768 + - uid: 8769 components: - pos: 69.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8769 + - uid: 8770 components: - pos: 72.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8770 + - uid: 8771 components: - pos: 73.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8771 + - uid: 8772 components: - pos: 74.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8772 + - uid: 8773 components: - pos: 75.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8773 + - uid: 8774 components: - pos: 75.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8774 + - uid: 8775 components: - pos: 75.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8775 + - uid: 8776 components: - pos: 75.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8776 + - uid: 8777 components: - pos: 75.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8777 + - uid: 8778 components: - pos: 75.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8778 + - uid: 8779 components: - pos: 75.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8779 + - uid: 8780 components: - pos: 75.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8780 + - uid: 8781 components: - pos: 75.5,-54.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8781 + - uid: 8782 components: - pos: 75.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8782 + - uid: 8783 components: - pos: 75.5,-56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8783 + - uid: 8784 components: - pos: 74.5,-56.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8784 + - uid: 8785 components: - pos: 74.5,-57.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8785 + - uid: 8786 components: - pos: 73.5,-57.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8786 + - uid: 8787 components: - pos: 72.5,-57.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8787 + - uid: 8788 components: - pos: 71.5,-57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8788 + - uid: 8789 components: - pos: 71.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8789 + - uid: 8790 components: - pos: 71.5,-59.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8790 + - uid: 8791 components: - pos: 71.5,-60.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8791 + - uid: 8792 components: - pos: 71.5,-61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8792 + - uid: 8793 components: - pos: 70.5,-61.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8793 + - uid: 8794 components: - pos: 69.5,-61.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8794 + - uid: 8795 components: - pos: 68.5,-61.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8795 + - uid: 8796 components: - pos: 68.5,-60.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8796 + - uid: 8797 components: - pos: 68.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8797 + - uid: 8798 components: - pos: 69.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8798 + - uid: 8799 components: - pos: 12.5,-92.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8799 + - uid: 8800 components: - pos: 12.5,-91.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8800 + - uid: 8801 components: - pos: 12.5,-90.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8801 + - uid: 8802 components: - pos: 12.5,-89.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8802 + - uid: 8803 components: - pos: 11.5,-89.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8803 + - uid: 8804 components: - pos: 10.5,-89.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8804 + - uid: 8805 components: - pos: 9.5,-89.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8805 + - uid: 8806 components: - pos: 8.5,-89.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8806 + - uid: 8807 components: - pos: 7.5,-89.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8807 + - uid: 8808 components: - pos: 6.5,-89.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8808 + - uid: 8809 components: - pos: 5.5,-89.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8809 + - uid: 8810 components: - pos: 4.5,-89.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8810 + - uid: 8811 components: - pos: 3.5,-89.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8811 + - uid: 8812 components: - pos: 16.5,-24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8812 + - uid: 8813 components: - pos: 17.5,-24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8813 + - uid: 8814 components: - pos: 18.5,-24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8814 + - uid: 8815 components: - pos: 19.5,-24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8815 + - uid: 8816 components: - pos: 20.5,-24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8816 + - uid: 8817 components: - pos: 21.5,-24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8817 + - uid: 8818 components: - pos: 21.5,-23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8818 + - uid: 8819 components: - pos: 21.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8819 + - uid: 8820 components: - pos: 21.5,-21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8820 + - uid: 8821 components: - pos: -30.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8821 + - uid: 8822 components: - pos: -29.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8822 + - uid: 8823 components: - pos: -28.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8823 + - uid: 8824 components: - pos: -27.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8824 + - uid: 8825 components: - pos: 4.5,-21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8825 + - uid: 8826 components: - pos: 4.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8826 + - uid: 8827 components: - pos: 4.5,-19.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8827 + - uid: 8828 components: - pos: 4.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8828 + - uid: 8829 components: - pos: 10.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8829 + - uid: 8830 components: - pos: 11.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8830 + - uid: 8831 components: - pos: 12.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8831 + - uid: 8832 components: - pos: 12.5,-15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8832 + - uid: 8833 components: - pos: 12.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8833 + - uid: 8834 components: - pos: 11.5,-16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8834 + - uid: 8835 components: - pos: 10.5,-16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8835 + - uid: 8836 components: - pos: 9.5,-16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8836 + - uid: 8837 components: - pos: -76.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8837 + - uid: 8838 components: - pos: 4.5,-23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - proto: CableHVStack entities: - - uid: 8838 + - uid: 8839 components: - pos: -39.402794,-17.87967 parent: 2 type: Transform - - uid: 8839 + - uid: 8840 components: - pos: 71.74222,36.65267 parent: 2 type: Transform - - uid: 8840 + - uid: 8841 components: - pos: -0.5088408,-77.44958 parent: 2 type: Transform - proto: CableMV entities: - - uid: 8841 + - uid: 8842 components: - pos: -6.5,-70.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8842 + - uid: 8843 components: - pos: 18.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8843 + - uid: 8844 components: - pos: 10.5,-55.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8844 + - uid: 8845 components: - pos: 37.5,21.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8845 + - uid: 8846 components: - pos: 3.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8846 + - uid: 8847 components: - pos: 9.5,-44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8847 + - uid: 8848 components: - pos: 32.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8848 + - uid: 8849 components: - pos: 32.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8849 + - uid: 8850 components: - pos: -2.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8850 + - uid: 8851 components: - pos: -2.5,-52.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8851 + - uid: 8852 components: - pos: -2.5,-53.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8852 + - uid: 8853 components: - pos: 40.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8853 + - uid: 8854 components: - pos: 31.5,2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8854 + - uid: 8855 components: - pos: -6.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8855 + - uid: 8856 components: - pos: -6.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8856 + - uid: 8857 components: - pos: 27.5,-28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8857 + - uid: 8858 components: - pos: 4.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8858 + - uid: 8859 components: - pos: 3.5,-52.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8859 + - uid: 8860 components: - pos: -0.5,-53.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8860 + - uid: 8861 components: - pos: 8.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8861 + - uid: 8862 components: - pos: -14.5,-69.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8862 + - uid: 8863 components: - pos: 9.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8863 + - uid: 8864 components: - pos: 24.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8864 + - uid: 8865 components: - pos: 45.5,-64.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8865 + - uid: 8866 components: - pos: 5.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8866 + - uid: 8867 components: - pos: 5.5,-44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8867 + - uid: 8868 components: - pos: 4.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8868 + - uid: 8869 components: - pos: 3.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8869 + - uid: 8870 components: - pos: 3.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8870 + - uid: 8871 components: - pos: 2.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8871 + - uid: 8872 components: - pos: 1.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8872 + - uid: 8873 components: - pos: 0.5,-42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8873 + - uid: 8874 components: - pos: 0.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8874 + - uid: 8875 components: - pos: 0.5,-40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8875 + - uid: 8876 components: - pos: 15.5,-58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8876 + - uid: 8877 components: - pos: 15.5,-57.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8877 + - uid: 8878 components: - pos: 14.5,-57.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8878 + - uid: 8879 components: - pos: 12.5,-57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8879 + - uid: 8880 components: - pos: 12.5,-56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8880 + - uid: 8881 components: - pos: 11.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8881 + - uid: 8882 components: - pos: 12.5,-55.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8882 + - uid: 8883 components: - pos: 8.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8883 + - uid: 8884 components: - pos: 8.5,-54.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8884 + - uid: 8885 components: - pos: 8.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8885 + - uid: 8886 components: - pos: 7.5,-53.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8886 + - uid: 8887 components: - pos: 16.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8887 + - uid: 8888 components: - pos: 43.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8888 + - uid: 8889 components: - pos: 0.5,14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8889 + - uid: 8890 components: - pos: 37.5,13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8890 + - uid: 8891 components: - pos: 38.5,14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8891 + - uid: 8892 components: - pos: -5.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8892 + - uid: 8893 components: - pos: -6.5,18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8893 + - uid: 8894 components: - pos: 38.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8894 + - uid: 8895 components: - pos: 35.5,-29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8895 + - uid: 8896 components: - pos: 37.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8896 + - uid: 8897 components: - pos: -11.5,-70.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8897 + - uid: 8898 components: - pos: 21.5,15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8898 + - uid: 8899 components: - pos: 5.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8899 + - uid: 8900 components: - pos: 7.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8900 + - uid: 8901 components: - pos: 29.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8901 + - uid: 8902 components: - pos: 0.5,11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8902 + - uid: 8903 components: - pos: 28.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8903 + - uid: 8904 components: - pos: -11.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8904 + - uid: 8905 components: - pos: -7.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8905 + - uid: 8906 components: - pos: -3.5,-68.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8906 + - uid: 8907 components: - pos: -1.5,-53.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8907 + - uid: 8908 components: - pos: 9.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8908 + - uid: 8909 components: - pos: -19.5,25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8909 + - uid: 8910 components: - pos: 1.5,9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8910 + - uid: 8911 components: - pos: -11.5,-69.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8911 + - uid: 8912 components: - pos: -8.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8912 + - uid: 8913 components: - pos: -10.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8913 + - uid: 8914 components: - pos: 21.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8914 + - uid: 8915 components: - pos: 29.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8915 + - uid: 8916 components: - pos: 29.5,19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8916 + - uid: 8917 components: - pos: 21.5,17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8917 + - uid: 8918 components: - pos: 32.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8918 + - uid: 8919 components: - pos: 32.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8919 + - uid: 8920 components: - pos: 32.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8920 + - uid: 8921 components: - pos: 9.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8921 + - uid: 8922 components: - pos: 8.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8922 + - uid: 8923 components: - pos: 5.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8923 + - uid: 8924 components: - pos: 3.5,-50.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8924 + - uid: 8925 components: - pos: 13.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8925 + - uid: 8926 components: - pos: 5.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8926 + - uid: 8927 components: - pos: 9.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8927 + - uid: 8928 components: - pos: -3.5,14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8928 + - uid: 8929 components: - pos: -2.5,14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8929 + - uid: 8930 components: - pos: -1.5,14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8930 + - uid: 8931 components: - pos: -0.5,14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8931 + - uid: 8932 components: - pos: -5.5,14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8932 + - uid: 8933 components: - pos: -6.5,14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8933 + - uid: 8934 components: - pos: 1.5,10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8934 + - uid: 8935 components: - pos: 0.5,10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8935 + - uid: 8936 components: - pos: 19.5,-27.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8936 + - uid: 8937 components: - pos: 21.5,16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8937 + - uid: 8938 components: - pos: -19.5,24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8938 + - uid: 8939 components: - pos: 8.5,-15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8939 + - uid: 8940 components: - pos: 31.5,-4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8940 + - uid: 8941 components: - pos: 30.5,-4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8941 + - uid: 8942 components: - pos: 30.5,-3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8942 + - uid: 8943 components: - pos: 30.5,-2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8943 + - uid: 8944 components: - pos: -9.5,-21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8944 + - uid: 8945 components: - pos: -8.5,-19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8945 + - uid: 8946 components: - pos: -8.5,-20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8946 + - uid: 8947 components: - pos: -8.5,-21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8947 + - uid: 8948 components: - pos: -10.5,-21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8948 + - uid: 8949 components: - pos: -10.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8949 + - uid: 8950 components: - pos: 10.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8950 + - uid: 8951 components: - pos: 11.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8951 + - uid: 8952 components: - pos: 10.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8952 + - uid: 8953 components: - pos: 3.5,-51.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8953 + - uid: 8954 components: - pos: 3.5,-53.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8954 + - uid: 8955 components: - pos: 1.5,-53.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8955 + - uid: 8956 components: - pos: 0.5,-53.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8956 + - uid: 8957 components: - pos: 7.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8957 + - uid: 8958 components: - pos: -20.5,-69.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8958 + - uid: 8959 components: - pos: -21.5,-68.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8959 + - uid: 8960 components: - pos: -9.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8960 + - uid: 8961 components: - pos: -3.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8961 + - uid: 8962 components: - pos: 2.5,-53.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8962 + - uid: 8963 components: - pos: 18.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8963 + - uid: 8964 components: - pos: 17.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8964 + - uid: 8965 components: - pos: 44.5,-64.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8965 + - uid: 8966 components: - pos: 46.5,-65.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8966 + - uid: 8967 components: - pos: 38.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8967 + - uid: 8968 components: - pos: 36.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8968 + - uid: 8969 components: - pos: 28.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8969 + - uid: 8970 components: - pos: 35.5,-27.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8970 + - uid: 8971 components: - pos: 35.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8971 + - uid: 8972 components: - pos: 36.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8972 + - uid: 8973 components: - pos: 37.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8973 + - uid: 8974 components: - pos: 38.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8974 + - uid: 8975 components: - pos: 39.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8975 + - uid: 8976 components: - pos: 41.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8976 + - uid: 8977 components: - pos: 42.5,-26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8977 + - uid: 8978 components: - pos: 0.5,12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8978 + - uid: 8979 components: - pos: 0.5,13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8979 + - uid: 8980 components: - pos: 38.5,-29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8980 + - uid: 8981 components: - pos: 8.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8981 + - uid: 8982 components: - pos: 6.5,-19.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8982 + - uid: 8983 components: - pos: 6.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8983 + - uid: 8984 components: - pos: 7.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8984 + - uid: 8985 components: - pos: 8.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8985 + - uid: 8986 components: - pos: 8.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8986 + - uid: 8987 components: - pos: 8.5,-9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8987 + - uid: 8988 components: - pos: 8.5,-7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8988 + - uid: 8989 components: - pos: 8.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8989 + - uid: 8990 components: - pos: 8.5,-4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8990 + - uid: 8991 components: - pos: 8.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8991 + - uid: 8992 components: - pos: -21.5,-69.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8992 + - uid: 8993 components: - pos: 10.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8993 + - uid: 8994 components: - pos: -19.5,-69.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8994 + - uid: 8995 components: - pos: 9.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8995 + - uid: 8996 components: - pos: 15.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8996 + - uid: 8997 components: - pos: 12.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 8997 + - uid: 8998 components: - pos: -16.5,-69.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8998 + - uid: 8999 components: - pos: 8.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 8999 + - uid: 9000 components: - pos: 8.5,-8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9000 + - uid: 9001 components: - pos: -4.5,14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9001 + - enabled: True + type: AmbientSound + - uid: 9002 components: - pos: 10.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9002 + - uid: 9003 components: - pos: 19.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9003 + - uid: 9004 components: - pos: 17.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9004 + - uid: 9005 components: - pos: 15.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9005 + - uid: 9006 components: - pos: 14.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9006 + - uid: 9007 components: - pos: 14.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9007 + - uid: 9008 components: - pos: 14.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9008 + - uid: 9009 components: - pos: 13.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9009 + - uid: 9010 components: - pos: 11.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9010 + - uid: 9011 components: - pos: 19.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9011 + - uid: 9012 components: - pos: 16.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9012 + - uid: 9013 components: - pos: 17.5,-14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9013 + - uid: 9014 components: - pos: 17.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9014 + - uid: 9015 components: - pos: 17.5,-12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9015 + - uid: 9016 components: - pos: 19.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9016 + - uid: 9017 components: - pos: 21.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9017 + - uid: 9018 components: - pos: 5.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9018 + - uid: 9019 components: - pos: 19.5,-52.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9019 + - uid: 9020 components: - pos: 32.5,-4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9020 + - uid: 9021 components: - pos: 6.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9021 + - uid: 9022 components: - pos: 14.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9022 + - uid: 9023 components: - pos: 6.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9023 + - uid: 9024 components: - pos: 6.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9024 + - uid: 9025 components: - pos: 7.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9025 + - uid: 9026 components: - pos: 8.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9026 + - uid: 9027 components: - pos: 8.5,-16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9027 + - uid: 9028 components: - pos: 21.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9028 + - uid: 9029 components: - pos: 21.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9029 + - uid: 9030 components: - pos: 12.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9030 + - uid: 9031 components: - pos: 13.5,-57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9031 + - uid: 9032 components: - pos: 14.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9032 + - uid: 9033 components: - pos: 32.5,-2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9033 + - uid: 9034 components: - pos: 6.5,-12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9034 + - uid: 9035 components: - pos: -4.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9035 + - uid: 9036 components: - pos: 5.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9036 + - uid: 9037 components: - pos: 38.5,16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9037 + - uid: 9038 components: - pos: 37.5,14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9038 + - uid: 9039 components: - pos: 7.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9039 + - uid: 9040 components: - pos: 27.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9040 + - uid: 9041 components: - pos: 32.5,-3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9041 + - uid: 9042 components: - pos: -18.5,-69.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9042 + - uid: 9043 components: - pos: -13.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9043 + - uid: 9044 components: - pos: 26.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9044 + - uid: 9045 components: - pos: 25.5,-28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9045 + - uid: 9046 components: - pos: 23.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9046 + - uid: 9047 components: - pos: 22.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9047 + - uid: 9048 components: - pos: 20.5,-28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9048 + - uid: 9049 components: - pos: 7.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9049 + - uid: 9050 components: - pos: 11.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9050 + - uid: 9051 components: - pos: 11.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9051 + - uid: 9052 components: - pos: 20.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9052 + - uid: 9053 components: - pos: -17.5,-69.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9053 + - uid: 9054 components: - pos: 22.5,17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9054 + - uid: 9055 components: - pos: 23.5,17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9055 + - uid: 9056 components: - pos: 23.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9056 + - uid: 9057 components: - pos: 24.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9057 + - uid: 9058 components: - pos: 25.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9058 + - uid: 9059 components: - pos: 26.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9059 + - uid: 9060 components: - pos: 35.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9060 + - uid: 9061 components: - pos: 35.5,-30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9061 + - uid: 9062 components: - pos: -15.5,-69.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9062 + - uid: 9063 components: - pos: -12.5,-69.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9063 + - uid: 9064 components: - pos: 33.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9064 + - uid: 9065 components: - pos: 29.5,20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9065 + - uid: 9066 components: - pos: 29.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9066 + - uid: 9067 components: - pos: 28.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9067 + - uid: 9068 components: - pos: 27.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9068 + - uid: 9069 components: - pos: 26.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9069 + - uid: 9070 components: - pos: 25.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9070 + - uid: 9071 components: - pos: 25.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9071 + - uid: 9072 components: - pos: 25.5,23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9072 + - uid: 9073 components: - pos: 25.5,24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9073 + - uid: 9074 components: - pos: 24.5,24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9074 + - uid: 9075 components: - pos: 30.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9075 + - uid: 9076 components: - pos: 31.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9076 + - uid: 9077 components: - pos: 32.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9077 + - uid: 9078 components: - pos: 32.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9078 + - uid: 9079 components: - pos: 32.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9079 + - uid: 9080 components: - pos: 33.5,24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9080 + - uid: 9081 components: - pos: 33.5,25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9081 + - uid: 9082 components: - pos: 46.5,-64.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9082 + - uid: 9083 components: - pos: -13.5,42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9083 + - uid: 9084 components: - pos: -14.5,42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9084 + - uid: 9085 components: - pos: -19.5,23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9085 + - uid: 9086 components: - pos: -19.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9086 + - uid: 9087 components: - pos: 32.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9087 + - uid: 9088 components: - pos: 63.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9088 + - uid: 9089 components: - pos: 63.5,6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9089 + - uid: 9090 components: - pos: 63.5,5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9090 + - uid: 9091 components: - pos: 63.5,4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9091 + - uid: 9092 components: - pos: 62.5,4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9092 + - uid: 9093 components: - pos: 61.5,4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9093 + - uid: 9094 components: - pos: 60.5,4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9094 + - uid: 9095 components: - pos: 60.5,5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9095 + - uid: 9096 components: - pos: 60.5,6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9096 + - uid: 9097 components: - pos: 60.5,7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9097 + - uid: 9098 components: - pos: 60.5,8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9098 + - uid: 9099 components: - pos: 60.5,9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9099 + - uid: 9100 components: - pos: 59.5,9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9100 + - uid: 9101 components: - pos: 58.5,9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9101 + - uid: 9102 components: - pos: 58.5,10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9102 + - uid: 9103 components: - pos: 58.5,11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9103 + - uid: 9104 components: - pos: 38.5,15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9104 + - uid: 9105 components: - pos: 22.5,-8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9105 + - uid: 9106 components: - pos: 23.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9106 + - uid: 9107 components: - pos: 24.5,-8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9107 + - uid: 9108 components: - pos: 25.5,-8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9108 + - uid: 9109 components: - pos: 26.5,-8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9109 + - uid: 9110 components: - pos: 27.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9110 + - uid: 9111 components: - pos: 29.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9111 + - uid: 9112 components: - pos: 28.5,-8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9112 + - uid: 9113 components: - pos: 30.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9113 + - uid: 9114 components: - pos: 31.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9114 + - uid: 9115 components: - pos: 32.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9115 + - uid: 9116 components: - pos: 47.5,-3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9116 + - uid: 9117 components: - pos: 47.5,-2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9117 + - uid: 9118 components: - pos: 47.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9118 + - uid: 9119 components: - pos: 46.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9119 + - uid: 9120 components: - pos: 46.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9120 + - uid: 9121 components: - pos: 46.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9121 + - uid: 9122 components: - pos: 47.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9122 + - uid: 9123 components: - pos: 48.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9123 + - uid: 9124 components: - pos: 49.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9124 + - uid: 9125 components: - pos: 49.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9125 + - uid: 9126 components: - pos: 49.5,2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9126 + - uid: 9127 components: - pos: 49.5,3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9127 + - uid: 9128 components: - pos: 48.5,-5.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9128 + - uid: 9129 components: - pos: 47.5,-5.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9129 + - uid: 9130 components: - pos: 47.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9130 + - uid: 9131 components: - pos: 47.5,-7.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9131 + - uid: 9132 components: - pos: 47.5,-8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9132 + - uid: 9133 components: - pos: 48.5,-8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9133 + - uid: 9134 components: - pos: 49.5,-8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9134 + - uid: 9135 components: - pos: 50.5,-8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9135 + - uid: 9136 components: - pos: 51.5,-8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9136 + - uid: 9137 components: - pos: 52.5,-8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9137 + - uid: 9138 components: - pos: 52.5,-7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9138 + - uid: 9139 components: - pos: 52.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9139 + - uid: 9140 components: - pos: 53.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9140 + - uid: 9141 components: - pos: 53.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9141 + - uid: 9142 components: - pos: 54.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9142 + - uid: 9143 components: - pos: 55.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9143 + - uid: 9144 components: - pos: 56.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9144 + - uid: 9145 components: - pos: 57.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9145 + - uid: 9146 components: - pos: 58.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9146 + - uid: 9147 components: - pos: 59.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9147 + - uid: 9148 components: - pos: 59.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9148 + - uid: 9149 components: - pos: 43.5,-64.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9149 + - uid: 9150 components: - pos: 38.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9150 + - uid: 9151 components: - pos: 38.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9151 + - uid: 9152 components: - pos: 38.5,-44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9152 + - uid: 9153 components: - pos: 38.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9153 + - uid: 9154 components: - pos: 39.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9154 + - uid: 9155 components: - pos: 40.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9155 + - uid: 9156 components: - pos: 41.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9156 + - uid: 9157 components: - pos: 42.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9157 + - uid: 9158 components: - pos: 43.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9158 + - uid: 9159 components: - pos: 44.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9159 + - uid: 9160 components: - pos: 45.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9160 + - uid: 9161 components: - pos: 46.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9161 + - uid: 9162 components: - pos: 47.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9162 + - uid: 9163 components: - pos: 48.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9163 + - uid: 9164 components: - pos: 49.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9164 + - uid: 9165 components: - pos: 49.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9165 + - uid: 9166 components: - pos: 49.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9166 + - uid: 9167 components: - pos: 50.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9167 + - uid: 9168 components: - pos: 51.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9168 + - uid: 9169 components: - pos: 52.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9169 + - uid: 9170 components: - pos: 53.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9170 + - uid: 9171 components: - pos: 54.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9171 + - uid: 9172 components: - pos: 55.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9172 + - uid: 9173 components: - pos: 55.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9173 + - uid: 9174 components: - pos: 55.5,-43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9174 + - uid: 9175 components: - pos: 68.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9175 + - uid: 9176 components: - pos: 69.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9176 + - uid: 9177 components: - pos: 40.5,-62.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9177 + - uid: 9178 components: - pos: 40.5,-60.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9178 + - uid: 9179 components: - pos: 42.5,-64.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9179 + - uid: 9180 components: - pos: -16.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9180 + - uid: 9181 components: - pos: -17.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9181 + - uid: 9182 components: - pos: -18.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9182 + - uid: 9183 components: - pos: -19.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9183 + - uid: 9184 components: - pos: -20.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9184 + - uid: 9185 components: - pos: -20.5,0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9185 + - uid: 9186 components: - pos: -29.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9186 + - uid: 9187 components: - pos: -28.5,-23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9187 + - uid: 9188 components: - pos: -28.5,-22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9188 + - uid: 9189 components: - pos: -28.5,-21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9189 + - uid: 9190 components: - pos: -29.5,-21.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9190 + - uid: 9191 components: - pos: -30.5,-21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9191 + - uid: 9192 components: - pos: -31.5,-21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9192 + - uid: 9193 components: - pos: -31.5,-20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9193 + - uid: 9194 components: - pos: -31.5,-19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9194 + - uid: 9195 components: - pos: -31.5,-18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9195 + - uid: 9196 components: - pos: -31.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9196 + - uid: 9197 components: - pos: -31.5,-16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9197 + - uid: 9198 components: - pos: -31.5,-15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9198 + - uid: 9199 components: - pos: -31.5,-14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9199 + - uid: 9200 components: - pos: -31.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9200 + - uid: 9201 components: - pos: -31.5,-12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9201 + - uid: 9202 components: - pos: -31.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9202 + - uid: 9203 components: - pos: -31.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9203 + - uid: 9204 components: - pos: -30.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9204 + - uid: 9205 components: - pos: -29.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9205 + - uid: 9206 components: - pos: -29.5,-9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9206 + - uid: 9207 components: - pos: 43.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9207 + - uid: 9208 components: - pos: 43.5,-59.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9208 + - uid: 9209 components: - pos: 42.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9209 + - uid: 9210 components: - pos: 41.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9210 + - uid: 9211 components: - pos: 40.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9211 + - uid: 9212 components: - pos: 39.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9212 + - uid: 9213 components: - pos: 38.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9213 + - uid: 9214 components: - pos: 37.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9214 + - uid: 9215 components: - pos: 37.5,-58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9215 + - uid: 9216 components: - pos: 37.5,-57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9216 + - uid: 9217 components: - pos: 56.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9217 + - uid: 9218 components: - pos: 57.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9218 + - uid: 9219 components: - pos: 58.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9219 + - uid: 9220 components: - pos: 59.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9220 + - uid: 9221 components: - pos: 60.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9221 + - uid: 9222 components: - pos: 61.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9222 + - uid: 9223 components: - pos: 61.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9223 + - uid: 9224 components: - pos: 61.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9224 + - uid: 9225 components: - pos: 61.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9225 + - uid: 9226 components: - pos: 61.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9226 + - uid: 9227 components: - pos: 61.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9227 + - uid: 9228 components: - pos: 61.5,-51.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9228 + - uid: 9229 components: - pos: 60.5,-51.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9229 + - uid: 9230 components: - pos: 59.5,-51.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9230 + - uid: 9231 components: - pos: 58.5,-51.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9231 + - uid: 9232 components: - pos: 58.5,-52.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9232 + - uid: 9233 components: - pos: 58.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9233 + - uid: 9234 components: - pos: 59.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9234 + - uid: 9235 components: - pos: 59.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9235 + - uid: 9236 components: - pos: 59.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9236 + - uid: 9237 components: - pos: 60.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9237 + - uid: 9238 components: - pos: 60.5,-56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9238 + - uid: 9239 components: - pos: 61.5,-56.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9239 + - uid: 9240 components: - pos: 62.5,-56.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9240 + - uid: 9241 components: - pos: 63.5,-56.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9241 + - uid: 9242 components: - pos: 64.5,-56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9242 + - uid: 9243 components: - pos: 64.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9243 + - uid: 9244 components: - pos: 65.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9244 + - uid: 9245 components: - pos: 65.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9245 + - uid: 9246 components: - pos: 65.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9246 + - uid: 9247 components: - pos: 66.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9247 + - uid: 9248 components: - pos: 66.5,-52.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9248 + - uid: 9249 components: - pos: 66.5,-51.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9249 + - uid: 9250 components: - pos: 66.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9250 + - uid: 9251 components: - pos: 65.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9251 + - uid: 9252 components: - pos: 47.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9252 + - uid: 9253 components: - pos: -59.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9253 + - uid: 9254 components: - pos: -57.5,-20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9254 + - uid: 9255 components: - pos: -58.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9255 + - uid: 9256 components: - pos: -60.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9256 + - enabled: True + type: AmbientSound + - uid: 9257 components: - pos: -61.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9257 + - uid: 9258 components: - pos: -62.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9258 + - uid: 9259 components: - pos: -63.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9259 + - uid: 9260 components: - pos: -64.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9260 + - uid: 9261 components: - pos: -65.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9261 + - uid: 9262 components: - pos: -66.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9262 + - uid: 9263 components: - pos: -67.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9263 + - uid: 9264 components: - pos: -68.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9264 + - uid: 9265 components: - pos: -69.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9265 + - uid: 9266 components: - pos: -70.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9266 + - uid: 9267 components: - pos: -71.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9267 + - uid: 9268 components: - pos: -72.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9268 + - uid: 9269 components: - pos: -73.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9269 + - uid: 9270 components: - pos: -73.5,-19.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9270 + - uid: 9271 components: - pos: -73.5,-18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9271 + - uid: 9272 components: - pos: -73.5,-17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9272 + - uid: 9273 components: - pos: -73.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9273 + - uid: 9274 components: - pos: -73.5,-15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9274 + - uid: 9275 components: - pos: -73.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9275 + - uid: 9276 components: - pos: -73.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9276 + - uid: 9277 components: - pos: -73.5,-12.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9277 + - uid: 9278 components: - pos: -73.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9278 + - uid: 9279 components: - pos: -73.5,-10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9279 + - uid: 9280 components: - pos: -73.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9280 + - uid: 9281 components: - pos: -73.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9281 + - uid: 9282 components: - pos: -73.5,-7.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9282 + - uid: 9283 components: - pos: -73.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9283 + - uid: 9284 components: - pos: -72.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9284 + - uid: 9285 components: - pos: -71.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9285 + - uid: 9286 components: - pos: -70.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9286 + - uid: 9287 components: - pos: -69.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9287 + - uid: 9288 components: - pos: -68.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9288 + - uid: 9289 components: - pos: -67.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9289 + - uid: 9290 components: - pos: -66.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9290 + - uid: 9291 components: - pos: -65.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9291 + - uid: 9292 components: - pos: -64.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9292 + - uid: 9293 components: - pos: -63.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9293 + - uid: 9294 components: - pos: -62.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9294 + - uid: 9295 components: - pos: -61.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9295 + - uid: 9296 components: - pos: -60.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9296 + - uid: 9297 components: - pos: -59.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9297 + - uid: 9298 components: - pos: -59.5,-7.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9298 + - uid: 9299 components: - pos: -59.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9299 + - uid: 9300 components: - pos: -59.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9300 + - uid: 9301 components: - pos: -59.5,-10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9301 + - uid: 9302 components: - pos: -59.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9302 + - uid: 9303 components: - pos: -59.5,-12.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9303 + - uid: 9304 components: - pos: -59.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9304 + - uid: 9305 components: - pos: -59.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9305 + - uid: 9306 components: - pos: -59.5,-15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9306 + - uid: 9307 components: - pos: -59.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9307 + - uid: 9308 components: - pos: -59.5,-17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9308 + - uid: 9309 components: - pos: -59.5,-18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9309 + - uid: 9310 components: - pos: -59.5,-19.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9310 + - uid: 9311 components: - pos: -50.5,-8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9311 + - uid: 9312 components: - pos: -51.5,-8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9312 + - uid: 9313 components: - pos: -52.5,-8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9313 + - uid: 9314 components: - pos: -53.5,-8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9314 + - uid: 9315 components: - pos: -53.5,-9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9315 + - uid: 9316 components: - pos: -53.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9316 + - uid: 9317 components: - pos: -53.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9317 + - uid: 9318 components: - pos: -53.5,-12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9318 + - uid: 9319 components: - pos: -53.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9319 + - uid: 9320 components: - pos: -53.5,-14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9320 + - uid: 9321 components: - pos: -53.5,-15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9321 + - uid: 9322 components: - pos: -53.5,-16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9322 + - uid: 9323 components: - pos: -51.5,-16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9323 + - uid: 9324 components: - pos: -52.5,-16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9324 + - uid: 9325 components: - pos: -50.5,-16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9325 + - uid: 9326 components: - pos: -50.5,-15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9326 + - uid: 9327 components: - pos: -27.5,-37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9327 + - uid: 9328 components: - pos: -27.5,-36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9328 + - uid: 9329 components: - pos: -27.5,-35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9329 + - uid: 9330 components: - pos: -27.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9330 + - uid: 9331 components: - pos: -28.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9331 + - uid: 9332 components: - pos: -29.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9332 + - uid: 9333 components: - pos: -30.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9333 + - uid: 9334 components: - pos: -31.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9334 + - uid: 9335 components: - pos: -32.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9335 + - uid: 9336 components: - pos: -33.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9336 + - uid: 9337 components: - pos: -34.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9337 + - uid: 9338 components: - pos: -35.5,-34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9338 + - uid: 9339 components: - pos: -35.5,-33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9339 + - uid: 9340 components: - pos: -35.5,-32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9340 + - uid: 9341 components: - pos: -35.5,-31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9341 + - uid: 9342 components: - pos: -54.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9342 + - uid: 9343 components: - pos: -31.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9343 + - uid: 9344 components: - pos: -31.5,-55.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9344 + - uid: 9345 components: - pos: -30.5,-55.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9345 + - uid: 9346 components: - pos: -29.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9346 + - uid: 9347 components: - pos: -28.5,-55.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9347 + - uid: 9348 components: - pos: -28.5,-56.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9348 + - uid: 9349 components: - pos: -28.5,-57.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9349 + - uid: 9350 components: - pos: -28.5,-58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9350 + - uid: 9351 components: - pos: -28.5,-59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9351 + - uid: 9352 components: - pos: -28.5,-60.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9352 + - uid: 9353 components: - pos: -28.5,-61.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9353 + - uid: 9354 components: - pos: -28.5,-62.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9354 + - uid: 9355 components: - pos: -28.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9355 + - uid: 9356 components: - pos: -29.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9356 + - uid: 9357 components: - pos: -29.5,-64.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9357 + - uid: 9358 components: - pos: -30.5,-63.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9358 + - uid: 9359 components: - pos: 21.5,-8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9359 + - uid: 9360 components: - pos: 29.5,-28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9360 + - uid: 9361 components: - pos: -55.5,-89.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9361 + - uid: 9362 components: - pos: -54.5,-89.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9362 + - uid: 9363 components: - pos: -54.5,-88.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9363 + - uid: 9364 components: - pos: -54.5,-87.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9364 + - uid: 9365 components: - pos: -55.5,-87.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9365 + - uid: 9366 components: - pos: -55.5,-86.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9366 + - uid: 9367 components: - pos: -56.5,-86.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9367 + - uid: 9368 components: - pos: -56.5,-85.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9368 + - uid: 9369 components: - pos: -8.5,35.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9369 + - uid: 9370 components: - pos: -8.5,33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9370 + - uid: 9371 components: - pos: -8.5,34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9371 + - uid: 9372 components: - pos: -8.5,31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9372 + - uid: 9373 components: - pos: -8.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9373 + - uid: 9374 components: - pos: -7.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9374 + - uid: 9375 components: - pos: -6.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9375 + - uid: 9376 components: - pos: -5.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9376 + - uid: 9377 components: - pos: -4.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9377 + - uid: 9378 components: - pos: -3.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9378 + - uid: 9379 components: - pos: -2.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9379 + - uid: 9380 components: - pos: -1.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9380 + - uid: 9381 components: - pos: -0.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9381 + - uid: 9382 components: - pos: 0.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9382 + - uid: 9383 components: - pos: 0.5,33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9383 + - uid: 9384 components: - pos: 0.5,34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9384 + - uid: 9385 components: - pos: 0.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9385 + - uid: 9386 components: - pos: -23.5,15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9386 + - uid: 9387 components: - pos: -22.5,15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9387 + - uid: 9388 components: - pos: -21.5,15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9388 + - uid: 9389 components: - pos: -20.5,15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9389 + - uid: 9390 components: - pos: -19.5,15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9390 + - uid: 9391 components: - pos: -19.5,16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9391 + - uid: 9392 components: - pos: -19.5,17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9392 + - uid: 9393 components: - pos: -19.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9393 + - uid: 9394 components: - pos: -19.5,19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9394 + - uid: 9395 components: - pos: -19.5,20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9395 + - uid: 9396 components: - pos: -19.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9396 + - uid: 9397 components: - pos: -20.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9397 + - uid: 9398 components: - pos: -21.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9398 + - uid: 9399 components: - pos: -22.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9399 + - uid: 9400 components: - pos: -23.5,21.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9400 + - uid: 9401 components: - pos: -23.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9401 + - uid: 9402 components: - pos: -23.5,23.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9402 + - uid: 9403 components: - pos: -23.5,24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9403 + - uid: 9404 components: - pos: -23.5,25.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9404 + - uid: 9405 components: - pos: -23.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9405 + - uid: 9406 components: - pos: -9.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9406 + - uid: 9407 components: - pos: -34.5,-3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9407 + - uid: 9408 components: - pos: -34.5,-2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9408 + - uid: 9409 components: - pos: -35.5,-2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9409 + - uid: 9410 components: - pos: -36.5,-2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9410 + - uid: 9411 components: - pos: -37.5,-2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9411 + - uid: 9412 components: - pos: -37.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9412 + - uid: 9413 components: - pos: -37.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9413 + - uid: 9414 components: - pos: -37.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9414 + - uid: 9415 components: - pos: -38.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9415 + - uid: 9416 components: - pos: -39.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9416 + - uid: 9417 components: - pos: -40.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9417 + - uid: 9418 components: - pos: -41.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9418 + - uid: 9419 components: - pos: -42.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9419 + - uid: 9420 components: - pos: -42.5,1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9420 + - uid: 9421 components: - pos: -42.5,2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9421 + - uid: 9422 components: - pos: -9.5,25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9422 + - uid: 9423 components: - pos: -6.5,15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9423 + - uid: 9424 components: - pos: -6.5,16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9424 + - uid: 9425 components: - pos: -6.5,17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9425 + - uid: 9426 components: - pos: -7.5,18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9426 + - uid: 9427 components: - pos: -8.5,18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9427 + - uid: 9428 components: - pos: -9.5,18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9428 + - uid: 9429 components: - pos: -10.5,18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9429 + - uid: 9430 components: - pos: -11.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9430 + - uid: 9431 components: - pos: -12.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9431 + - uid: 9432 components: - pos: -12.5,19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9432 + - uid: 9433 components: - pos: -12.5,20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9433 + - uid: 9434 components: - pos: -12.5,21.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9434 + - uid: 9435 components: - pos: -12.5,22.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9435 + - uid: 9436 components: - pos: -12.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9436 + - uid: 9437 components: - pos: -12.5,24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9437 + - uid: 9438 components: - pos: -11.5,24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9438 + - uid: 9439 components: - pos: -10.5,24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9439 + - uid: 9440 components: - pos: -9.5,24.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9440 + - uid: 9441 components: - pos: -8.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9441 + - uid: 9442 components: - pos: -8.5,27.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9442 + - uid: 9443 components: - pos: -8.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9443 + - uid: 9444 components: - pos: -8.5,29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9444 + - uid: 9445 components: - pos: -8.5,30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9445 + - uid: 9446 components: - pos: -55.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9446 + - uid: 9447 components: - pos: 33.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9447 + - uid: 9448 components: - pos: 33.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9448 + - uid: 9449 components: - pos: 33.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9449 + - uid: 9450 components: - pos: 34.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9450 + - uid: 9451 components: - pos: 35.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9451 + - uid: 9452 components: - pos: 36.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9452 + - uid: 9453 components: - pos: 36.5,29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9453 + - uid: 9454 components: - pos: 36.5,30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9454 + - uid: 9455 components: - pos: 36.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9455 + - uid: 9456 components: - pos: 36.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9456 + - uid: 9457 components: - pos: 35.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9457 + - uid: 9458 components: - pos: 34.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9458 + - uid: 9459 components: - pos: 36.5,33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9459 + - uid: 9460 components: - pos: 34.5,33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9460 + - uid: 9461 components: - pos: 34.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9461 + - uid: 9462 components: - pos: 33.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9462 + - uid: 9463 components: - pos: 32.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9463 + - uid: 9464 components: - pos: 32.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9464 + - uid: 9465 components: - pos: 32.5,36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9465 + - uid: 9466 components: - pos: 32.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9466 + - uid: 9467 components: - pos: 33.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9467 + - uid: 9468 components: - pos: 31.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9468 + - uid: 9469 components: - pos: 30.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9469 + - uid: 9470 components: - pos: 29.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9470 + - uid: 9471 components: - pos: 28.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9471 + - uid: 9472 components: - pos: 27.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9472 + - uid: 9473 components: - pos: 26.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9473 + - uid: 9474 components: - pos: 25.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9474 + - uid: 9475 components: - pos: 24.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9475 + - uid: 9476 components: - pos: 23.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9476 + - uid: 9477 components: - pos: 22.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9477 + - uid: 9478 components: - pos: 21.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9478 + - uid: 9479 components: - pos: 26.5,36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9479 + - uid: 9480 components: - pos: 26.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9480 + - uid: 9481 components: - pos: 26.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9481 + - uid: 9482 components: - pos: 25.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9482 + - uid: 9483 components: - pos: 24.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9483 + - uid: 9484 components: - pos: 23.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9484 + - uid: 9485 components: - pos: 22.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9485 + - uid: 9486 components: - pos: 22.5,33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9486 + - uid: 9487 components: - pos: 22.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9487 + - uid: 9488 components: - pos: 22.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9488 + - uid: 9489 components: - pos: 22.5,30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9489 + - uid: 9490 components: - pos: 22.5,29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9490 + - uid: 9491 components: - pos: 22.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9491 + - uid: 9492 components: - pos: 22.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9492 + - uid: 9493 components: - pos: 22.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9493 + - uid: 9494 components: - pos: 34.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9494 + - uid: 9495 components: - pos: 35.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9495 + - uid: 9496 components: - pos: 36.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9496 + - uid: 9497 components: - pos: 36.5,36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9497 + - uid: 9498 components: - pos: 49.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9498 + - uid: 9499 components: - pos: 49.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9499 + - uid: 9500 components: - pos: 49.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9500 + - uid: 9501 components: - pos: 48.5,-48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9501 + - uid: 9502 components: - pos: -31.5,-63.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9502 + - uid: 9503 components: - pos: -32.5,-63.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9503 + - uid: 9504 components: - pos: -33.5,-63.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9504 + - uid: 9505 components: - pos: -34.5,-63.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9505 + - uid: 9506 components: - pos: -34.5,-64.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9506 + - uid: 9507 components: - pos: -34.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9507 + - uid: 9508 components: - pos: -35.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9508 + - uid: 9509 components: - pos: -36.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9509 + - uid: 9510 components: - pos: -37.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9510 + - uid: 9511 components: - pos: -37.5,-66.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9511 + - enabled: True + type: AmbientSound + - uid: 9512 components: - pos: -37.5,-67.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9512 + - uid: 9513 components: - pos: -37.5,-68.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9513 + - uid: 9514 components: - pos: -38.5,-68.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9514 + - uid: 9515 components: - pos: -39.5,-68.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9515 + - uid: 9516 components: - pos: -39.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9516 + - uid: 9517 components: - pos: -10.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9517 + - uid: 9518 components: - pos: -9.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9518 + - uid: 9519 components: - pos: -8.5,-58.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9519 + - uid: 9520 components: - pos: -8.5,-57.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9520 + - uid: 9521 components: - pos: -8.5,-56.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9521 + - uid: 9522 components: - pos: -7.5,-56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9522 + - uid: 9523 components: - pos: -6.5,-56.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9523 + - uid: 9524 components: - pos: -5.5,-56.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9524 + - uid: 9525 components: - pos: -4.5,-56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9525 + - uid: 9526 components: - pos: -3.5,-56.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9526 + - uid: 9527 components: - pos: -2.5,-56.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9527 + - uid: 9528 components: - pos: -1.5,-56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9528 + - uid: 9529 components: - pos: -0.5,-56.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9529 + - uid: 9530 components: - pos: 0.5,-56.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9530 + - uid: 9531 components: - pos: 1.5,-56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9531 + - uid: 9532 components: - pos: 2.5,-56.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9532 + - uid: 9533 components: - pos: 3.5,-56.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9533 + - uid: 9534 components: - pos: 4.5,-56.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9534 + - uid: 9535 components: - pos: 5.5,-56.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9535 + - uid: 9536 components: - pos: 6.5,-56.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9536 + - uid: 9537 components: - pos: 6.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9537 + - uid: 9538 components: - pos: 6.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9538 + - uid: 9539 components: - pos: 6.5,-53.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9539 + - uid: 9540 components: - pos: 34.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9540 + - uid: 9541 components: - pos: 35.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9541 + - uid: 9542 components: - pos: 35.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9542 + - uid: 9543 components: - pos: 36.5,22.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9543 + - uid: 9544 components: - pos: 37.5,22.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9544 + - uid: 9545 components: - pos: 37.5,20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9545 + - uid: 9546 components: - pos: 37.5,19.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9546 + - uid: 9547 components: - pos: 37.5,18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9547 + - uid: 9548 components: - pos: 38.5,18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9548 + - uid: 9549 components: - pos: 38.5,17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9549 + - uid: 9550 components: - pos: 29.5,-27.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9550 + - uid: 9551 components: - pos: 50.5,29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9551 + - uid: 9552 components: - pos: 50.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9552 + - uid: 9553 components: - pos: 49.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9553 + - uid: 9554 components: - pos: 48.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9554 + - uid: 9555 components: - pos: 48.5,29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9555 + - uid: 9556 components: - pos: 48.5,30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9556 + - uid: 9557 components: - pos: 48.5,31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9557 + - uid: 9558 components: - pos: 49.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9558 + - uid: 9559 components: - pos: 50.5,31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9559 + - uid: 9560 components: - pos: 51.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9560 + - uid: 9561 components: - pos: 52.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9561 + - uid: 9562 components: - pos: 52.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9562 + - uid: 9563 components: - pos: 52.5,33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9563 + - uid: 9564 components: - pos: 52.5,34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9564 + - uid: 9565 components: - pos: 52.5,35.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9565 + - uid: 9566 components: - pos: 52.5,36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9566 + - uid: 9567 components: - pos: 52.5,37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9567 + - uid: 9568 components: - pos: 52.5,38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9568 + - uid: 9569 components: - pos: 52.5,39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9569 + - uid: 9570 components: - pos: 52.5,40.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9570 + - uid: 9571 components: - pos: 52.5,41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9571 + - uid: 9572 components: - pos: 52.5,42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9572 + - uid: 9573 components: - pos: 53.5,42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9573 + - uid: 9574 components: - pos: 54.5,42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9574 + - uid: 9575 components: - pos: 55.5,42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9575 + - uid: 9576 components: - pos: 56.5,42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9576 + - uid: 9577 components: - pos: 57.5,42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9577 + - uid: 9578 components: - pos: 58.5,42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9578 + - uid: 9579 components: - pos: 58.5,43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9579 + - uid: 9580 components: - pos: 59.5,43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9580 + - uid: 9581 components: - pos: -19.5,26.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9581 + - uid: 9582 components: - pos: -19.5,27.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9582 + - uid: 9583 components: - pos: -19.5,28.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9583 + - uid: 9584 components: - pos: -19.5,29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9584 + - uid: 9585 components: - pos: -18.5,29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9585 + - uid: 9586 components: - pos: -17.5,29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9586 + - uid: 9587 components: - pos: -16.5,29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9587 + - uid: 9588 components: - pos: -15.5,29.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9588 + - uid: 9589 components: - pos: -15.5,30.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9589 + - uid: 9590 components: - pos: -15.5,31.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9590 + - uid: 9591 components: - pos: -15.5,32.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9591 + - uid: 9592 components: - pos: -15.5,33.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9592 + - uid: 9593 components: - pos: -15.5,34.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9593 + - uid: 9594 components: - pos: -15.5,35.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9594 + - uid: 9595 components: - pos: -15.5,36.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9595 + - uid: 9596 components: - pos: -15.5,37.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9596 + - uid: 9597 components: - pos: -15.5,38.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9597 + - uid: 9598 components: - pos: -15.5,39.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9598 + - uid: 9599 components: - pos: -15.5,40.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9599 + - uid: 9600 components: - pos: -15.5,41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9600 + - uid: 9601 components: - pos: -15.5,42.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9601 + - uid: 9602 components: - pos: -10.5,62.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9602 + - uid: 9603 components: - pos: -10.5,61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9603 + - uid: 9604 components: - pos: -10.5,60.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9604 + - uid: 9605 components: - pos: -10.5,59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9605 + - uid: 9606 components: - pos: -9.5,59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9606 + - uid: 9607 components: - pos: -8.5,59.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9607 + - uid: 9608 components: - pos: -8.5,60.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9608 + - uid: 9609 components: - pos: -71.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9609 + - uid: 9610 components: - pos: -70.5,-41.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9610 + - uid: 9611 components: - pos: -70.5,-40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9611 + - uid: 9612 components: - pos: 40.5,-61.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9612 + - uid: 9613 components: - pos: 40.5,-63.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9613 + - uid: 9614 components: - pos: 48.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9614 + - uid: 9615 components: - pos: 51.5,-65.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9615 + - uid: 9616 components: - pos: 50.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9616 + - uid: 9617 components: - pos: 49.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9617 + - uid: 9618 components: - pos: 40.5,-64.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9618 + - uid: 9619 components: - pos: 41.5,-64.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9619 + - uid: 9620 components: - pos: 52.5,-65.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9620 + - uid: 9621 components: - pos: 53.5,-65.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9621 + - uid: 9622 components: - pos: 54.5,-65.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9622 + - uid: 9623 components: - pos: 55.5,-65.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9623 + - uid: 9624 components: - pos: 55.5,-64.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9624 + - uid: 9625 components: - pos: 55.5,-63.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9625 + - uid: 9626 components: - pos: 55.5,-62.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9626 + - uid: 9627 components: - pos: 68.5,-60.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9627 + - uid: 9628 components: - pos: 68.5,-61.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9628 + - uid: 9629 components: - pos: 69.5,-61.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9629 + - uid: 9630 components: - pos: 70.5,-61.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9630 + - uid: 9631 components: - pos: 71.5,-61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9631 + - uid: 9632 components: - pos: 71.5,-60.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9632 + - uid: 9633 components: - pos: 71.5,-59.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9633 + - uid: 9634 components: - pos: 71.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9634 + - uid: 9635 components: - pos: 71.5,-57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9635 + - uid: 9636 components: - pos: 72.5,-57.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9636 + - uid: 9637 components: - pos: 73.5,-57.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9637 + - uid: 9638 components: - pos: 74.5,-57.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9638 + - uid: 9639 components: - pos: 74.5,-56.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9639 + - uid: 9640 components: - pos: 74.5,-55.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9640 + - uid: 9641 components: - pos: 74.5,-54.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9641 + - uid: 9642 components: - pos: 75.5,-54.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9642 + - uid: 9643 components: - pos: 75.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9643 + - uid: 9644 components: - pos: 75.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9644 + - uid: 9645 components: - pos: 75.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9645 + - uid: 9646 components: - pos: 75.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9646 + - uid: 9647 components: - pos: 75.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9647 + - uid: 9648 components: - pos: 75.5,-48.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9648 + - uid: 9649 components: - pos: 75.5,-47.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9649 + - uid: 9650 components: - pos: 75.5,-46.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9650 + - uid: 9651 components: - pos: 75.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9651 + - uid: 9652 components: - pos: 74.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9652 + - uid: 9653 components: - pos: 73.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9653 + - uid: 9654 components: - pos: 72.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9654 + - uid: 9655 components: - pos: 71.5,-45.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9655 + - uid: 9656 components: - pos: 71.5,-44.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9656 + - uid: 9657 components: - pos: 71.5,-43.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9657 + - uid: 9658 components: - pos: 71.5,-42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9658 + - uid: 9659 components: - pos: 4.5,-19.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9659 + - uid: 9660 components: - pos: 7.5,-19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9660 + - uid: 9661 components: - pos: 5.5,-19.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9661 + - uid: 9662 components: - pos: 7.5,-20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9662 + - uid: 9663 components: - pos: 8.5,-20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9663 + - uid: 9664 components: - pos: 9.5,-20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9664 + - uid: 9665 components: - pos: 10.5,-20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9665 + - uid: 9666 components: - pos: 11.5,-20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9666 + - uid: 9667 components: - pos: 11.5,-19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9667 + - uid: 9668 components: - pos: 11.5,-18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9668 + - uid: 9669 components: - pos: 6.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9669 + - uid: 9670 components: - pos: 7.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9670 + - uid: 9671 components: - pos: 9.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9671 + - uid: 9672 components: - pos: 8.5,-49.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9672 + - uid: 9673 components: - pos: 31.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9673 + - uid: 9674 components: - pos: 30.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9674 + - uid: 9675 components: - pos: 29.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9675 + - uid: 9676 components: - pos: 28.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9676 + - uid: 9677 components: - pos: 27.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - proto: CableMVStack entities: - - uid: 9677 + - uid: 9678 components: - pos: -39.41842,-18.34842 parent: 2 type: Transform - - uid: 9678 + - uid: 9679 components: - pos: -36.572292,-8.416974 parent: 2 type: Transform - proto: CableTerminal entities: - - uid: 9679 + - uid: 9680 components: - rot: 3.141592653589793 rad pos: -2.5,-79.5 parent: 2 type: Transform - - uid: 9680 + - uid: 9681 components: - pos: 48.5,-2.5 parent: 2 type: Transform - - uid: 9681 + - uid: 9682 components: - pos: -48.5,-20.5 parent: 2 type: Transform - - uid: 9682 + - uid: 9683 components: - pos: -46.5,-20.5 parent: 2 type: Transform - - uid: 9683 + - uid: 9684 components: - pos: -44.5,-20.5 parent: 2 type: Transform - - uid: 9684 + - uid: 9685 components: - rot: 1.5707963267948966 rad pos: -51.5,-9.5 parent: 2 type: Transform - - uid: 9685 + - uid: 9686 components: - rot: 3.141592653589793 rad pos: -56.5,-21.5 parent: 2 type: Transform - - uid: 9686 + - uid: 9687 components: - pos: -28.5,-36.5 parent: 2 type: Transform - - uid: 9687 + - uid: 9688 components: - rot: 1.5707963267948966 rad pos: -56.5,-88.5 parent: 2 type: Transform - - uid: 9688 + - uid: 9689 components: - rot: -1.5707963267948966 rad pos: 74.5,38.5 parent: 2 type: Transform - - uid: 9689 + - uid: 9690 components: - rot: -1.5707963267948966 rad pos: 74.5,34.5 parent: 2 type: Transform - - uid: 9690 + - uid: 9691 components: - rot: 3.141592653589793 rad pos: -0.5,-79.5 parent: 2 type: Transform - - uid: 9691 + - uid: 9692 components: - pos: -74.5,-29.5 parent: 2 type: Transform - - uid: 9692 + - uid: 9693 components: - pos: -72.5,-29.5 parent: 2 type: Transform - - uid: 9693 + - uid: 9694 components: - pos: -70.5,-29.5 parent: 2 type: Transform - - uid: 9694 + - uid: 9695 components: - rot: 3.141592653589793 rad pos: 4.5,-21.5 @@ -80755,537 +65929,537 @@ entities: type: Transform - proto: CapacitorStockPart entities: - - uid: 9695 + - uid: 9696 components: - pos: 38.490074,-35.297806 parent: 2 type: Transform - - uid: 9696 + - uid: 9697 components: - pos: 38.302574,-35.672806 parent: 2 type: Transform - - uid: 9697 + - uid: 9698 components: - pos: 38.521324,-35.53218 parent: 2 type: Transform - - uid: 9698 + - uid: 9699 components: - pos: -50.47893,-28.448412 parent: 2 type: Transform - proto: CaptainIDCard entities: - - uid: 9699 + - uid: 9700 components: - pos: 30.440884,-27.198164 parent: 2 type: Transform - proto: CarbonDioxideCanister entities: - - uid: 9700 + - uid: 9701 components: - pos: -40.5,-38.5 parent: 2 type: Transform - - uid: 9701 + - uid: 9702 components: - pos: -50.5,-50.5 parent: 2 type: Transform - - uid: 9702 + - uid: 9703 components: - pos: -52.5,-62.5 parent: 2 type: Transform - - uid: 9703 + - uid: 9704 components: - pos: 55.5,-55.5 parent: 2 type: Transform - proto: Carpet entities: - - uid: 9704 + - uid: 9705 components: - rot: 3.141592653589793 rad pos: 5.5,20.5 parent: 2 type: Transform - - uid: 9705 + - uid: 9706 components: - rot: 3.141592653589793 rad pos: 4.5,22.5 parent: 2 type: Transform - - uid: 9706 + - uid: 9707 components: - rot: 3.141592653589793 rad pos: 4.5,21.5 parent: 2 type: Transform - - uid: 9707 + - uid: 9708 components: - rot: 3.141592653589793 rad pos: 4.5,20.5 parent: 2 type: Transform - - uid: 9708 + - uid: 9709 components: - rot: 3.141592653589793 rad pos: 6.5,22.5 parent: 2 type: Transform - - uid: 9709 + - uid: 9710 components: - rot: 3.141592653589793 rad pos: 6.5,21.5 parent: 2 type: Transform - - uid: 9710 + - uid: 9711 components: - rot: 3.141592653589793 rad pos: 6.5,20.5 parent: 2 type: Transform - - uid: 9711 + - uid: 9712 components: - rot: 3.141592653589793 rad pos: 7.5,22.5 parent: 2 type: Transform - - uid: 9712 + - uid: 9713 components: - rot: 3.141592653589793 rad pos: 7.5,21.5 parent: 2 type: Transform - - uid: 9713 + - uid: 9714 components: - rot: 3.141592653589793 rad pos: 7.5,20.5 parent: 2 type: Transform - - uid: 9714 + - uid: 9715 components: - rot: 3.141592653589793 rad pos: 8.5,22.5 parent: 2 type: Transform - - uid: 9715 + - uid: 9716 components: - rot: 3.141592653589793 rad pos: 8.5,21.5 parent: 2 type: Transform - - uid: 9716 + - uid: 9717 components: - rot: 3.141592653589793 rad pos: 8.5,20.5 parent: 2 type: Transform - - uid: 9717 + - uid: 9718 components: - pos: 39.5,-5.5 parent: 2 type: Transform - - uid: 9718 + - uid: 9719 components: - pos: 43.5,-5.5 parent: 2 type: Transform - - uid: 9719 + - uid: 9720 components: - pos: 44.5,-5.5 parent: 2 type: Transform - - uid: 9720 + - uid: 9721 components: - pos: 42.5,-5.5 parent: 2 type: Transform - - uid: 9721 + - uid: 9722 components: - pos: 42.5,-2.5 parent: 2 type: Transform - - uid: 9722 + - uid: 9723 components: - pos: 42.5,-3.5 parent: 2 type: Transform - - uid: 9723 + - uid: 9724 components: - pos: 42.5,-4.5 parent: 2 type: Transform - - uid: 9724 + - uid: 9725 components: - pos: 43.5,-2.5 parent: 2 type: Transform - - uid: 9725 + - uid: 9726 components: - pos: 43.5,-3.5 parent: 2 type: Transform - - uid: 9726 + - uid: 9727 components: - pos: 43.5,-4.5 parent: 2 type: Transform - - uid: 9727 + - uid: 9728 components: - pos: 44.5,-2.5 parent: 2 type: Transform - - uid: 9728 + - uid: 9729 components: - pos: 44.5,-3.5 parent: 2 type: Transform - - uid: 9729 + - uid: 9730 components: - pos: 44.5,-4.5 parent: 2 type: Transform - - uid: 9730 + - uid: 9731 components: - pos: 37.5,-2.5 parent: 2 type: Transform - - uid: 9731 + - uid: 9732 components: - pos: 38.5,-2.5 parent: 2 type: Transform - - uid: 9732 + - uid: 9733 components: - pos: 39.5,-2.5 parent: 2 type: Transform - - uid: 9733 + - uid: 9734 components: - pos: 37.5,-3.5 parent: 2 type: Transform - - uid: 9734 + - uid: 9735 components: - pos: 37.5,-4.5 parent: 2 type: Transform - - uid: 9735 + - uid: 9736 components: - pos: 38.5,-3.5 parent: 2 type: Transform - - uid: 9736 + - uid: 9737 components: - pos: 38.5,-4.5 parent: 2 type: Transform - - uid: 9737 + - uid: 9738 components: - pos: 39.5,-3.5 parent: 2 type: Transform - - uid: 9738 + - uid: 9739 components: - pos: 39.5,-4.5 parent: 2 type: Transform - - uid: 9739 + - uid: 9740 components: - pos: 38.5,-5.5 parent: 2 type: Transform - - uid: 9740 + - uid: 9741 components: - pos: 37.5,-5.5 parent: 2 type: Transform - - uid: 9741 + - uid: 9742 components: - rot: 3.141592653589793 rad pos: 28.5,-50.5 parent: 2 type: Transform - - uid: 9742 + - uid: 9743 components: - rot: 3.141592653589793 rad pos: 28.5,-51.5 parent: 2 type: Transform - - uid: 9743 + - uid: 9744 components: - rot: 3.141592653589793 rad pos: 29.5,-50.5 parent: 2 type: Transform - - uid: 9744 + - uid: 9745 components: - rot: 3.141592653589793 rad pos: 29.5,-51.5 parent: 2 type: Transform - - uid: 9745 + - uid: 9746 components: - rot: 3.141592653589793 rad pos: 30.5,-50.5 parent: 2 type: Transform - - uid: 9746 + - uid: 9747 components: - rot: 3.141592653589793 rad pos: 30.5,-51.5 parent: 2 type: Transform - - uid: 9747 + - uid: 9748 components: - rot: -1.5707963267948966 rad pos: -38.5,15.5 parent: 2 type: Transform - - uid: 9748 + - uid: 9749 components: - rot: -1.5707963267948966 rad pos: -38.5,14.5 parent: 2 type: Transform - - uid: 9749 + - uid: 9750 components: - rot: -1.5707963267948966 rad pos: -38.5,13.5 parent: 2 type: Transform - - uid: 9750 + - uid: 9751 components: - rot: -1.5707963267948966 rad pos: -38.5,12.5 parent: 2 type: Transform - - uid: 9751 + - uid: 9752 components: - rot: -1.5707963267948966 rad pos: -38.5,11.5 parent: 2 type: Transform - - uid: 9752 + - uid: 9753 components: - rot: -1.5707963267948966 rad pos: -38.5,10.5 parent: 2 type: Transform - - uid: 9753 + - uid: 9754 components: - rot: -1.5707963267948966 rad pos: -38.5,9.5 parent: 2 type: Transform - - uid: 9754 + - uid: 9755 components: - rot: -1.5707963267948966 rad pos: -38.5,8.5 parent: 2 type: Transform - - uid: 9755 + - uid: 9756 components: - rot: -1.5707963267948966 rad pos: -37.5,15.5 parent: 2 type: Transform - - uid: 9756 + - uid: 9757 components: - rot: -1.5707963267948966 rad pos: -37.5,14.5 parent: 2 type: Transform - - uid: 9757 + - uid: 9758 components: - rot: -1.5707963267948966 rad pos: -37.5,13.5 parent: 2 type: Transform - - uid: 9758 + - uid: 9759 components: - rot: -1.5707963267948966 rad pos: -37.5,12.5 parent: 2 type: Transform - - uid: 9759 + - uid: 9760 components: - rot: -1.5707963267948966 rad pos: -37.5,11.5 parent: 2 type: Transform - - uid: 9760 + - uid: 9761 components: - rot: -1.5707963267948966 rad pos: -37.5,10.5 parent: 2 type: Transform - - uid: 9761 + - uid: 9762 components: - rot: -1.5707963267948966 rad pos: -37.5,9.5 parent: 2 type: Transform - - uid: 9762 + - uid: 9763 components: - rot: -1.5707963267948966 rad pos: -37.5,8.5 parent: 2 type: Transform - - uid: 9763 + - uid: 9764 components: - rot: -1.5707963267948966 rad pos: -34.5,15.5 parent: 2 type: Transform - - uid: 9764 + - uid: 9765 components: - rot: -1.5707963267948966 rad pos: -34.5,14.5 parent: 2 type: Transform - - uid: 9765 + - uid: 9766 components: - rot: -1.5707963267948966 rad pos: -34.5,13.5 parent: 2 type: Transform - - uid: 9766 + - uid: 9767 components: - rot: -1.5707963267948966 rad pos: -33.5,15.5 parent: 2 type: Transform - - uid: 9767 + - uid: 9768 components: - rot: -1.5707963267948966 rad pos: -33.5,14.5 parent: 2 type: Transform - - uid: 9768 + - uid: 9769 components: - rot: -1.5707963267948966 rad pos: -33.5,13.5 parent: 2 type: Transform - - uid: 9769 + - uid: 9770 components: - pos: -30.5,14.5 parent: 2 type: Transform - - uid: 9770 + - uid: 9771 components: - pos: -30.5,13.5 parent: 2 type: Transform - - uid: 9771 + - uid: 9772 components: - pos: -30.5,12.5 parent: 2 type: Transform - - uid: 9772 + - uid: 9773 components: - pos: 64.5,-0.5 parent: 2 type: Transform - - uid: 9773 + - uid: 9774 components: - pos: 64.5,-1.5 parent: 2 type: Transform - - uid: 9774 + - uid: 9775 components: - pos: 65.5,-0.5 parent: 2 type: Transform - - uid: 9775 + - uid: 9776 components: - pos: 65.5,-1.5 parent: 2 type: Transform - - uid: 9776 + - uid: 9777 components: - rot: 3.141592653589793 rad pos: 61.5,-63.5 parent: 2 type: Transform - - uid: 9777 + - uid: 9778 components: - rot: 3.141592653589793 rad pos: 61.5,-64.5 parent: 2 type: Transform - - uid: 9778 + - uid: 9779 components: - rot: 3.141592653589793 rad pos: 61.5,-65.5 parent: 2 type: Transform - - uid: 9779 + - uid: 9780 components: - rot: 3.141592653589793 rad pos: 61.5,-66.5 parent: 2 type: Transform - - uid: 9780 + - uid: 9781 components: - rot: 3.141592653589793 rad pos: 61.5,-67.5 parent: 2 type: Transform - - uid: 9781 + - uid: 9782 components: - rot: 3.141592653589793 rad pos: 61.5,-68.5 parent: 2 type: Transform - - uid: 9782 + - uid: 9783 components: - rot: 1.5707963267948966 rad pos: 1.5,21.5 parent: 2 type: Transform - - uid: 9783 + - uid: 9784 components: - rot: 1.5707963267948966 rad pos: 1.5,20.5 parent: 2 type: Transform - - uid: 9784 + - uid: 9785 components: - rot: 1.5707963267948966 rad pos: 1.5,19.5 parent: 2 type: Transform - - uid: 9785 + - uid: 9786 components: - rot: 1.5707963267948966 rad pos: 2.5,21.5 parent: 2 type: Transform - - uid: 9786 + - uid: 9787 components: - rot: 1.5707963267948966 rad pos: 2.5,20.5 parent: 2 type: Transform - - uid: 9787 + - uid: 9788 components: - rot: 1.5707963267948966 rad pos: 2.5,19.5 parent: 2 type: Transform - - uid: 9788 + - uid: 9789 components: - rot: 3.141592653589793 rad pos: 5.5,21.5 parent: 2 type: Transform - - uid: 9789 + - uid: 9790 components: - rot: 3.141592653589793 rad pos: 5.5,22.5 @@ -81293,91 +66467,91 @@ entities: type: Transform - proto: CarpetBlack entities: - - uid: 9790 + - uid: 9791 components: - pos: -7.5,-36.5 parent: 2 type: Transform - - uid: 9791 + - uid: 9792 components: - pos: -7.5,-37.5 parent: 2 type: Transform - - uid: 9792 + - uid: 9793 components: - pos: -7.5,-38.5 parent: 2 type: Transform - - uid: 9793 + - uid: 9794 components: - pos: -11.5,-39.5 parent: 2 type: Transform - - uid: 9794 + - uid: 9795 components: - pos: -10.5,-39.5 parent: 2 type: Transform - - uid: 9795 + - uid: 9796 components: - pos: -9.5,-39.5 parent: 2 type: Transform - - uid: 9796 + - uid: 9797 components: - rot: 3.141592653589793 rad pos: 31.5,-53.5 parent: 2 type: Transform - - uid: 9797 + - uid: 9798 components: - rot: 3.141592653589793 rad pos: 31.5,-54.5 parent: 2 type: Transform - - uid: 9798 + - uid: 9799 components: - rot: 3.141592653589793 rad pos: 31.5,-55.5 parent: 2 type: Transform - - uid: 9799 + - uid: 9800 components: - rot: 3.141592653589793 rad pos: 31.5,-56.5 parent: 2 type: Transform - - uid: 9800 + - uid: 9801 components: - rot: 3.141592653589793 rad pos: -12.5,32.5 parent: 2 type: Transform - - uid: 9801 + - uid: 9802 components: - rot: 3.141592653589793 rad pos: -12.5,31.5 parent: 2 type: Transform - - uid: 9802 + - uid: 9803 components: - rot: 3.141592653589793 rad pos: -11.5,32.5 parent: 2 type: Transform - - uid: 9803 + - uid: 9804 components: - rot: 3.141592653589793 rad pos: -11.5,31.5 parent: 2 type: Transform - - uid: 9804 + - uid: 9805 components: - rot: 3.141592653589793 rad pos: -10.5,32.5 parent: 2 type: Transform - - uid: 9805 + - uid: 9806 components: - rot: 3.141592653589793 rad pos: -10.5,31.5 @@ -81385,315 +66559,315 @@ entities: type: Transform - proto: CarpetBlue entities: - - uid: 9806 + - uid: 9807 components: - rot: -1.5707963267948966 rad pos: 9.5,5.5 parent: 2 type: Transform - - uid: 9807 + - uid: 9808 components: - pos: -18.5,-56.5 parent: 2 type: Transform - - uid: 9808 + - uid: 9809 components: - pos: -18.5,-55.5 parent: 2 type: Transform - - uid: 9809 + - uid: 9810 components: - pos: -20.5,-55.5 parent: 2 type: Transform - - uid: 9810 + - uid: 9811 components: - pos: -20.5,-54.5 parent: 2 type: Transform - - uid: 9811 + - uid: 9812 components: - pos: -19.5,-54.5 parent: 2 type: Transform - - uid: 9812 + - uid: 9813 components: - pos: -17.5,-56.5 parent: 2 type: Transform - - uid: 9813 + - uid: 9814 components: - pos: -20.5,-56.5 parent: 2 type: Transform - - uid: 9814 + - uid: 9815 components: - pos: -17.5,-54.5 parent: 2 type: Transform - - uid: 9815 + - uid: 9816 components: - pos: -17.5,-55.5 parent: 2 type: Transform - - uid: 9816 + - uid: 9817 components: - pos: -19.5,-55.5 parent: 2 type: Transform - - uid: 9817 + - uid: 9818 components: - pos: -19.5,-56.5 parent: 2 type: Transform - - uid: 9818 + - uid: 9819 components: - pos: -18.5,-54.5 parent: 2 type: Transform - - uid: 9819 + - uid: 9820 components: - rot: -1.5707963267948966 rad pos: 8.5,5.5 parent: 2 type: Transform - - uid: 9820 + - uid: 9821 components: - rot: 3.141592653589793 rad pos: 17.5,13.5 parent: 2 type: Transform - - uid: 9821 + - uid: 9822 components: - rot: 3.141592653589793 rad pos: 17.5,12.5 parent: 2 type: Transform - - uid: 9822 + - uid: 9823 components: - rot: 3.141592653589793 rad pos: 17.5,11.5 parent: 2 type: Transform - - uid: 9823 + - uid: 9824 components: - pos: 17.5,9.5 parent: 2 type: Transform - - uid: 9824 + - uid: 9825 components: - pos: 17.5,14.5 parent: 2 type: Transform - - uid: 9825 + - uid: 9826 components: - pos: 17.5,10.5 parent: 2 type: Transform - proto: CarpetChapel entities: - - uid: 9826 + - uid: 9827 components: - rot: -1.5707963267948966 rad pos: -36.5,10.5 parent: 2 type: Transform - - uid: 9827 + - uid: 9828 components: - rot: 3.141592653589793 rad pos: -35.5,10.5 parent: 2 type: Transform - - uid: 9828 + - uid: 9829 components: - rot: 1.5707963267948966 rad pos: -35.5,9.5 parent: 2 type: Transform - - uid: 9829 + - uid: 9830 components: - pos: -36.5,9.5 parent: 2 type: Transform - - uid: 9830 + - uid: 9831 components: - pos: -36.5,11.5 parent: 2 type: Transform - - uid: 9831 + - uid: 9832 components: - rot: 1.5707963267948966 rad pos: -35.5,11.5 parent: 2 type: Transform - - uid: 9832 + - uid: 9833 components: - rot: -1.5707963267948966 rad pos: -36.5,12.5 parent: 2 type: Transform - - uid: 9833 + - uid: 9834 components: - rot: 3.141592653589793 rad pos: -35.5,12.5 parent: 2 type: Transform - - uid: 9834 + - uid: 9835 components: - rot: 3.141592653589793 rad pos: -39.5,12.5 parent: 2 type: Transform - - uid: 9835 + - uid: 9836 components: - rot: 1.5707963267948966 rad pos: -39.5,11.5 parent: 2 type: Transform - - uid: 9836 + - uid: 9837 components: - pos: -40.5,11.5 parent: 2 type: Transform - - uid: 9837 + - uid: 9838 components: - rot: -1.5707963267948966 rad pos: -40.5,10.5 parent: 2 type: Transform - - uid: 9838 + - uid: 9839 components: - rot: 3.141592653589793 rad pos: -39.5,10.5 parent: 2 type: Transform - - uid: 9839 + - uid: 9840 components: - pos: -40.5,9.5 parent: 2 type: Transform - - uid: 9840 + - uid: 9841 components: - rot: 1.5707963267948966 rad pos: -39.5,9.5 parent: 2 type: Transform - - uid: 9841 + - uid: 9842 components: - rot: -1.5707963267948966 rad pos: -40.5,12.5 parent: 2 type: Transform - - uid: 9842 + - uid: 9843 components: - rot: -1.5707963267948966 rad pos: 59.5,-65.5 parent: 2 type: Transform - - uid: 9843 + - uid: 9844 components: - rot: 3.141592653589793 rad pos: 60.5,-65.5 parent: 2 type: Transform - - uid: 9844 + - uid: 9845 components: - pos: 59.5,-66.5 parent: 2 type: Transform - - uid: 9845 + - uid: 9846 components: - rot: -1.5707963267948966 rad pos: 62.5,-65.5 parent: 2 type: Transform - - uid: 9846 + - uid: 9847 components: - pos: 62.5,-66.5 parent: 2 type: Transform - - uid: 9847 + - uid: 9848 components: - rot: 3.141592653589793 rad pos: 63.5,-65.5 parent: 2 type: Transform - - uid: 9848 + - uid: 9849 components: - rot: 1.5707963267948966 rad pos: 63.5,-66.5 parent: 2 type: Transform - - uid: 9849 + - uid: 9850 components: - rot: -1.5707963267948966 rad pos: 62.5,-63.5 parent: 2 type: Transform - - uid: 9850 + - uid: 9851 components: - rot: 3.141592653589793 rad pos: 63.5,-63.5 parent: 2 type: Transform - - uid: 9851 + - uid: 9852 components: - rot: 1.5707963267948966 rad pos: 63.5,-64.5 parent: 2 type: Transform - - uid: 9852 + - uid: 9853 components: - pos: 62.5,-64.5 parent: 2 type: Transform - - uid: 9853 + - uid: 9854 components: - rot: 3.141592653589793 rad pos: 60.5,-63.5 parent: 2 type: Transform - - uid: 9854 + - uid: 9855 components: - rot: -1.5707963267948966 rad pos: 59.5,-63.5 parent: 2 type: Transform - - uid: 9855 + - uid: 9856 components: - pos: 59.5,-64.5 parent: 2 type: Transform - - uid: 9856 + - uid: 9857 components: - rot: 1.5707963267948966 rad pos: 60.5,-64.5 parent: 2 type: Transform - - uid: 9857 + - uid: 9858 components: - pos: 60.5,-68.5 parent: 2 type: Transform - - uid: 9858 + - uid: 9859 components: - rot: 1.5707963267948966 rad pos: 62.5,-68.5 parent: 2 type: Transform - - uid: 9859 + - uid: 9860 components: - rot: -1.5707963267948966 rad pos: 60.5,-67.5 parent: 2 type: Transform - - uid: 9860 + - uid: 9861 components: - rot: 3.141592653589793 rad pos: 62.5,-67.5 parent: 2 type: Transform - - uid: 9861 + - uid: 9862 components: - rot: 1.5707963267948966 rad pos: 60.5,-66.5 @@ -81701,411 +66875,411 @@ entities: type: Transform - proto: CarpetGreen entities: - - uid: 9862 + - uid: 9863 components: - rot: -1.5707963267948966 rad pos: 13.5,-10.5 parent: 2 type: Transform - - uid: 9863 + - uid: 9864 components: - rot: -1.5707963267948966 rad pos: 9.5,-10.5 parent: 2 type: Transform - - uid: 9864 + - uid: 9865 components: - rot: -1.5707963267948966 rad pos: 10.5,-10.5 parent: 2 type: Transform - - uid: 9865 + - uid: 9866 components: - rot: -1.5707963267948966 rad pos: 9.5,-12.5 parent: 2 type: Transform - - uid: 9866 + - uid: 9867 components: - rot: -1.5707963267948966 rad pos: 10.5,-12.5 parent: 2 type: Transform - - uid: 9867 + - uid: 9868 components: - rot: -1.5707963267948966 rad pos: 10.5,-11.5 parent: 2 type: Transform - - uid: 9868 + - uid: 9869 components: - rot: -1.5707963267948966 rad pos: 11.5,-11.5 parent: 2 type: Transform - - uid: 9869 + - uid: 9870 components: - rot: -1.5707963267948966 rad pos: 12.5,-11.5 parent: 2 type: Transform - - uid: 9870 + - uid: 9871 components: - rot: -1.5707963267948966 rad pos: 13.5,-11.5 parent: 2 type: Transform - - uid: 9871 + - uid: 9872 components: - rot: -1.5707963267948966 rad pos: 11.5,-10.5 parent: 2 type: Transform - - uid: 9872 + - uid: 9873 components: - rot: -1.5707963267948966 rad pos: 12.5,-10.5 parent: 2 type: Transform - - uid: 9873 + - uid: 9874 components: - rot: -1.5707963267948966 rad pos: 11.5,-12.5 parent: 2 type: Transform - - uid: 9874 + - uid: 9875 components: - pos: 20.5,13.5 parent: 2 type: Transform - - uid: 9875 + - uid: 9876 components: - pos: 14.5,9.5 parent: 2 type: Transform - - uid: 9876 + - uid: 9877 components: - pos: 9.5,-11.5 parent: 2 type: Transform - - uid: 9877 + - uid: 9878 components: - rot: -1.5707963267948966 rad pos: 12.5,-12.5 parent: 2 type: Transform - - uid: 9878 + - uid: 9879 components: - rot: -1.5707963267948966 rad pos: 13.5,-12.5 parent: 2 type: Transform - - uid: 9879 + - uid: 9880 components: - rot: 1.5707963267948966 rad pos: 8.5,8.5 parent: 2 type: Transform - - uid: 9880 + - uid: 9881 components: - rot: 3.141592653589793 rad pos: 14.5,13.5 parent: 2 type: Transform - - uid: 9881 + - uid: 9882 components: - rot: 3.141592653589793 rad pos: 14.5,12.5 parent: 2 type: Transform - - uid: 9882 + - uid: 9883 components: - rot: 3.141592653589793 rad pos: 14.5,11.5 parent: 2 type: Transform - - uid: 9883 + - uid: 9884 components: - rot: 3.141592653589793 rad pos: 14.5,10.5 parent: 2 type: Transform - - uid: 9884 + - uid: 9885 components: - rot: 1.5707963267948966 rad pos: 8.5,9.5 parent: 2 type: Transform - - uid: 9885 + - uid: 9886 components: - pos: -5.5,-49.5 parent: 2 type: Transform - - uid: 9886 + - uid: 9887 components: - pos: -4.5,-49.5 parent: 2 type: Transform - - uid: 9887 + - uid: 9888 components: - pos: -3.5,-49.5 parent: 2 type: Transform - - uid: 9888 + - uid: 9889 components: - pos: -3.5,-50.5 parent: 2 type: Transform - - uid: 9889 + - uid: 9890 components: - pos: -4.5,-50.5 parent: 2 type: Transform - - uid: 9890 + - uid: 9891 components: - pos: -5.5,-50.5 parent: 2 type: Transform - - uid: 9891 + - uid: 9892 components: - pos: 21.5,13.5 parent: 2 type: Transform - - uid: 9892 + - uid: 9893 components: - pos: 21.5,10.5 parent: 2 type: Transform - - uid: 9893 + - uid: 9894 components: - pos: 20.5,10.5 parent: 2 type: Transform - - uid: 9894 + - uid: 9895 components: - pos: 20.5,12.5 parent: 2 type: Transform - - uid: 9895 + - uid: 9896 components: - pos: 20.5,11.5 parent: 2 type: Transform - - uid: 9896 + - uid: 9897 components: - pos: 21.5,11.5 parent: 2 type: Transform - - uid: 9897 + - uid: 9898 components: - pos: 21.5,12.5 parent: 2 type: Transform - - uid: 9898 + - uid: 9899 components: - pos: -22.5,45.5 parent: 2 type: Transform - - uid: 9899 + - uid: 9900 components: - pos: -22.5,44.5 parent: 2 type: Transform - - uid: 9900 + - uid: 9901 components: - pos: -22.5,43.5 parent: 2 type: Transform - - uid: 9901 + - uid: 9902 components: - pos: -22.5,42.5 parent: 2 type: Transform - - uid: 9902 + - uid: 9903 components: - pos: -21.5,45.5 parent: 2 type: Transform - - uid: 9903 + - uid: 9904 components: - pos: -21.5,44.5 parent: 2 type: Transform - - uid: 9904 + - uid: 9905 components: - rot: 3.141592653589793 rad pos: 32.5,-50.5 parent: 2 type: Transform - - uid: 9905 + - uid: 9906 components: - rot: 3.141592653589793 rad pos: 32.5,-51.5 parent: 2 type: Transform - - uid: 9906 + - uid: 9907 components: - rot: 3.141592653589793 rad pos: 33.5,-50.5 parent: 2 type: Transform - - uid: 9907 + - uid: 9908 components: - rot: 3.141592653589793 rad pos: 33.5,-51.5 parent: 2 type: Transform - - uid: 9908 + - uid: 9909 components: - rot: 3.141592653589793 rad pos: 34.5,-50.5 parent: 2 type: Transform - - uid: 9909 + - uid: 9910 components: - rot: 3.141592653589793 rad pos: 34.5,-51.5 parent: 2 type: Transform - - uid: 9910 + - uid: 9911 components: - pos: -21.5,42.5 parent: 2 type: Transform - - uid: 9911 + - uid: 9912 components: - pos: -21.5,43.5 parent: 2 type: Transform - - uid: 9912 + - uid: 9913 components: - rot: 1.5707963267948966 rad pos: -22.5,30.5 parent: 2 type: Transform - - uid: 9913 + - uid: 9914 components: - rot: 1.5707963267948966 rad pos: -23.5,30.5 parent: 2 type: Transform - - uid: 9914 + - uid: 9915 components: - pos: -23.5,31.5 parent: 2 type: Transform - - uid: 9915 + - uid: 9916 components: - pos: -23.5,29.5 parent: 2 type: Transform - - uid: 9916 + - uid: 9917 components: - pos: -22.5,31.5 parent: 2 type: Transform - - uid: 9917 + - uid: 9918 components: - pos: -22.5,29.5 parent: 2 type: Transform - - uid: 9918 + - uid: 9919 components: - rot: 1.5707963267948966 rad pos: -19.5,33.5 parent: 2 type: Transform - - uid: 9919 + - uid: 9920 components: - rot: 1.5707963267948966 rad pos: -19.5,34.5 parent: 2 type: Transform - - uid: 9920 + - uid: 9921 components: - rot: 1.5707963267948966 rad pos: -19.5,35.5 parent: 2 type: Transform - - uid: 9921 + - uid: 9922 components: - rot: 1.5707963267948966 rad pos: -18.5,33.5 parent: 2 type: Transform - - uid: 9922 + - uid: 9923 components: - rot: 1.5707963267948966 rad pos: -18.5,34.5 parent: 2 type: Transform - - uid: 9923 + - uid: 9924 components: - rot: 1.5707963267948966 rad pos: -18.5,35.5 parent: 2 type: Transform - - uid: 9924 + - uid: 9925 components: - rot: 1.5707963267948966 rad pos: 8.5,7.5 parent: 2 type: Transform - - uid: 9925 + - uid: 9926 components: - rot: 1.5707963267948966 rad pos: 13.5,-79.5 parent: 2 type: Transform - - uid: 9926 + - uid: 9927 components: - rot: 1.5707963267948966 rad pos: 14.5,-79.5 parent: 2 type: Transform - - uid: 9927 + - uid: 9928 components: - rot: 1.5707963267948966 rad pos: 15.5,-79.5 parent: 2 type: Transform - - uid: 9928 + - uid: 9929 components: - rot: 1.5707963267948966 rad pos: 16.5,-79.5 parent: 2 type: Transform - - uid: 9929 + - uid: 9930 components: - rot: 1.5707963267948966 rad pos: 17.5,-79.5 parent: 2 type: Transform - - uid: 9930 + - uid: 9931 components: - rot: 1.5707963267948966 rad pos: 13.5,-87.5 parent: 2 type: Transform - - uid: 9931 + - uid: 9932 components: - rot: 1.5707963267948966 rad pos: 14.5,-87.5 parent: 2 type: Transform - - uid: 9932 + - uid: 9933 components: - rot: 1.5707963267948966 rad pos: 15.5,-87.5 parent: 2 type: Transform - - uid: 9933 + - uid: 9934 components: - rot: 1.5707963267948966 rad pos: 16.5,-87.5 parent: 2 type: Transform - - uid: 9934 + - uid: 9935 components: - rot: 1.5707963267948966 rad pos: 17.5,-87.5 @@ -82113,464 +67287,464 @@ entities: type: Transform - proto: CarpetOrange entities: - - uid: 9935 + - uid: 9936 components: - rot: -1.5707963267948966 rad pos: 8.5,-6.5 parent: 2 type: Transform - - uid: 9936 + - uid: 9937 components: - rot: -1.5707963267948966 rad pos: 9.5,-5.5 parent: 2 type: Transform - - uid: 9937 + - uid: 9938 components: - rot: 3.141592653589793 rad pos: 12.5,11.5 parent: 2 type: Transform - - uid: 9938 + - uid: 9939 components: - rot: 1.5707963267948966 rad pos: 10.5,7.5 parent: 2 type: Transform - - uid: 9939 + - uid: 9940 components: - rot: -1.5707963267948966 rad pos: 11.5,-6.5 parent: 2 type: Transform - - uid: 9940 + - uid: 9941 components: - rot: -1.5707963267948966 rad pos: 11.5,-7.5 parent: 2 type: Transform - - uid: 9941 + - uid: 9942 components: - rot: -1.5707963267948966 rad pos: 11.5,-8.5 parent: 2 type: Transform - - uid: 9942 + - uid: 9943 components: - rot: -1.5707963267948966 rad pos: 10.5,-8.5 parent: 2 type: Transform - - uid: 9943 + - uid: 9944 components: - rot: -1.5707963267948966 rad pos: 9.5,-8.5 parent: 2 type: Transform - - uid: 9944 + - uid: 9945 components: - rot: -1.5707963267948966 rad pos: 8.5,-8.5 parent: 2 type: Transform - - uid: 9945 + - uid: 9946 components: - rot: -1.5707963267948966 rad pos: 8.5,-7.5 parent: 2 type: Transform - - uid: 9946 + - uid: 9947 components: - rot: -1.5707963267948966 rad pos: 8.5,-5.5 parent: 2 type: Transform - - uid: 9947 + - uid: 9948 components: - rot: -1.5707963267948966 rad pos: 9.5,-6.5 parent: 2 type: Transform - - uid: 9948 + - uid: 9949 components: - rot: -1.5707963267948966 rad pos: 10.5,-6.5 parent: 2 type: Transform - - uid: 9949 + - uid: 9950 components: - rot: -1.5707963267948966 rad pos: 10.5,-7.5 parent: 2 type: Transform - - uid: 9950 + - uid: 9951 components: - rot: -1.5707963267948966 rad pos: 9.5,-7.5 parent: 2 type: Transform - - uid: 9951 + - uid: 9952 components: - rot: 1.5707963267948966 rad pos: 12.5,7.5 parent: 2 type: Transform - - uid: 9952 + - uid: 9953 components: - rot: -1.5707963267948966 rad pos: 10.5,-5.5 parent: 2 type: Transform - - uid: 9953 + - uid: 9954 components: - rot: -1.5707963267948966 rad pos: 11.5,-5.5 parent: 2 type: Transform - - uid: 9954 + - uid: 9955 components: - rot: 1.5707963267948966 rad pos: 12.5,8.5 parent: 2 type: Transform - - uid: 9955 + - uid: 9956 components: - rot: 3.141592653589793 rad pos: 12.5,10.5 parent: 2 type: Transform - - uid: 9956 + - uid: 9957 components: - rot: 1.5707963267948966 rad pos: 10.5,8.5 parent: 2 type: Transform - - uid: 9957 + - uid: 9958 components: - rot: 1.5707963267948966 rad pos: 11.5,7.5 parent: 2 type: Transform - - uid: 9958 + - uid: 9959 components: - rot: 1.5707963267948966 rad pos: 11.5,8.5 parent: 2 type: Transform - - uid: 9959 + - uid: 9960 components: - rot: 3.141592653589793 rad pos: 11.5,11.5 parent: 2 type: Transform - - uid: 9960 + - uid: 9961 components: - rot: 3.141592653589793 rad pos: 11.5,12.5 parent: 2 type: Transform - - uid: 9961 + - uid: 9962 components: - pos: -12.5,-35.5 parent: 2 type: Transform - - uid: 9962 + - uid: 9963 components: - pos: -12.5,-36.5 parent: 2 type: Transform - - uid: 9963 + - uid: 9964 components: - pos: -12.5,-37.5 parent: 2 type: Transform - - uid: 9964 + - uid: 9965 components: - pos: -11.5,-35.5 parent: 2 type: Transform - - uid: 9965 + - uid: 9966 components: - pos: -11.5,-36.5 parent: 2 type: Transform - - uid: 9966 + - uid: 9967 components: - pos: -11.5,-37.5 parent: 2 type: Transform - - uid: 9967 + - uid: 9968 components: - pos: -10.5,-35.5 parent: 2 type: Transform - - uid: 9968 + - uid: 9969 components: - pos: -10.5,-36.5 parent: 2 type: Transform - - uid: 9969 + - uid: 9970 components: - pos: -10.5,-37.5 parent: 2 type: Transform - - uid: 9970 + - uid: 9971 components: - pos: -9.5,-35.5 parent: 2 type: Transform - - uid: 9971 + - uid: 9972 components: - pos: -9.5,-36.5 parent: 2 type: Transform - - uid: 9972 + - uid: 9973 components: - pos: -9.5,-37.5 parent: 2 type: Transform - - uid: 9973 + - uid: 9974 components: - rot: 3.141592653589793 rad pos: 12.5,12.5 parent: 2 type: Transform - - uid: 9974 + - uid: 9975 components: - rot: 3.141592653589793 rad pos: -37.5,-15.5 parent: 2 type: Transform - - uid: 9975 + - uid: 9976 components: - rot: 3.141592653589793 rad pos: -37.5,-16.5 parent: 2 type: Transform - - uid: 9976 + - uid: 9977 components: - rot: 3.141592653589793 rad pos: -37.5,-17.5 parent: 2 type: Transform - - uid: 9977 + - uid: 9978 components: - rot: 3.141592653589793 rad pos: -37.5,-18.5 parent: 2 type: Transform - - uid: 9978 + - uid: 9979 components: - rot: 3.141592653589793 rad pos: -36.5,-16.5 parent: 2 type: Transform - - uid: 9979 + - uid: 9980 components: - rot: 3.141592653589793 rad pos: -36.5,-17.5 parent: 2 type: Transform - - uid: 9980 + - uid: 9981 components: - rot: 3.141592653589793 rad pos: -36.5,-18.5 parent: 2 type: Transform - - uid: 9981 + - uid: 9982 components: - rot: 3.141592653589793 rad pos: -35.5,-15.5 parent: 2 type: Transform - - uid: 9982 + - uid: 9983 components: - rot: 3.141592653589793 rad pos: -35.5,-16.5 parent: 2 type: Transform - - uid: 9983 + - uid: 9984 components: - rot: 3.141592653589793 rad pos: -35.5,-17.5 parent: 2 type: Transform - - uid: 9984 + - uid: 9985 components: - rot: 3.141592653589793 rad pos: -35.5,-18.5 parent: 2 type: Transform - - uid: 9985 + - uid: 9986 components: - rot: 3.141592653589793 rad pos: -34.5,31.5 parent: 2 type: Transform - - uid: 9986 + - uid: 9987 components: - pos: -34.5,30.5 parent: 2 type: Transform - - uid: 9987 + - uid: 9988 components: - rot: 3.141592653589793 rad pos: -34.5,29.5 parent: 2 type: Transform - - uid: 9988 + - uid: 9989 components: - rot: 3.141592653589793 rad pos: -33.5,31.5 parent: 2 type: Transform - - uid: 9989 + - uid: 9990 components: - rot: 3.141592653589793 rad pos: -33.5,30.5 parent: 2 type: Transform - - uid: 9990 + - uid: 9991 components: - rot: 3.141592653589793 rad pos: -33.5,29.5 parent: 2 type: Transform - - uid: 9991 + - uid: 9992 components: - rot: 3.141592653589793 rad pos: -32.5,31.5 parent: 2 type: Transform - - uid: 9992 + - uid: 9993 components: - rot: 3.141592653589793 rad pos: -32.5,30.5 parent: 2 type: Transform - - uid: 9993 + - uid: 9994 components: - rot: 3.141592653589793 rad pos: -32.5,29.5 parent: 2 type: Transform - - uid: 9994 + - uid: 9995 components: - rot: 3.141592653589793 rad pos: -31.5,31.5 parent: 2 type: Transform - - uid: 9995 + - uid: 9996 components: - rot: 3.141592653589793 rad pos: -31.5,30.5 parent: 2 type: Transform - - uid: 9996 + - uid: 9997 components: - rot: 3.141592653589793 rad pos: -31.5,29.5 parent: 2 type: Transform - - uid: 9997 + - uid: 9998 components: - rot: 3.141592653589793 rad pos: -30.5,31.5 parent: 2 type: Transform - - uid: 9998 + - uid: 9999 components: - rot: 3.141592653589793 rad pos: -30.5,30.5 parent: 2 type: Transform - - uid: 9999 + - uid: 10000 components: - rot: 3.141592653589793 rad pos: -30.5,29.5 parent: 2 type: Transform - - uid: 10000 + - uid: 10001 components: - pos: -70.5,-42.5 parent: 2 type: Transform - - uid: 10001 + - uid: 10002 components: - pos: -70.5,-43.5 parent: 2 type: Transform - - uid: 10002 + - uid: 10003 components: - pos: -70.5,-44.5 parent: 2 type: Transform - - uid: 10003 + - uid: 10004 components: - pos: -70.5,-45.5 parent: 2 type: Transform - - uid: 10004 + - uid: 10005 components: - pos: -69.5,-42.5 parent: 2 type: Transform - - uid: 10005 + - uid: 10006 components: - pos: -69.5,-43.5 parent: 2 type: Transform - - uid: 10006 + - uid: 10007 components: - pos: -69.5,-44.5 parent: 2 type: Transform - - uid: 10007 + - uid: 10008 components: - pos: -69.5,-45.5 parent: 2 type: Transform - - uid: 10008 + - uid: 10009 components: - pos: -68.5,-42.5 parent: 2 type: Transform - - uid: 10009 + - uid: 10010 components: - pos: -68.5,-43.5 parent: 2 type: Transform - - uid: 10010 + - uid: 10011 components: - pos: -68.5,-44.5 parent: 2 type: Transform - - uid: 10011 + - uid: 10012 components: - pos: -68.5,-45.5 parent: 2 type: Transform - - uid: 10012 + - uid: 10013 components: - pos: -67.5,-42.5 parent: 2 type: Transform - - uid: 10013 + - uid: 10014 components: - pos: -67.5,-43.5 parent: 2 type: Transform - - uid: 10014 + - uid: 10015 components: - pos: -67.5,-44.5 parent: 2 type: Transform - - uid: 10015 + - uid: 10016 components: - pos: -67.5,-45.5 parent: 2 type: Transform - - uid: 10016 + - uid: 10017 components: - rot: 3.141592653589793 rad pos: 11.5,10.5 @@ -82578,82 +67752,82 @@ entities: type: Transform - proto: CarpetPink entities: - - uid: 10017 + - uid: 10018 components: - rot: 1.5707963267948966 rad pos: 2.5,-10.5 parent: 2 type: Transform - - uid: 10018 + - uid: 10019 components: - rot: 1.5707963267948966 rad pos: 3.5,-10.5 parent: 2 type: Transform - - uid: 10019 + - uid: 10020 components: - rot: 1.5707963267948966 rad pos: 2.5,-11.5 parent: 2 type: Transform - - uid: 10020 + - uid: 10021 components: - pos: 21.5,-29.5 parent: 2 type: Transform - - uid: 10021 + - uid: 10022 components: - rot: 1.5707963267948966 rad pos: 3.5,-11.5 parent: 2 type: Transform - - uid: 10022 + - uid: 10023 components: - pos: 23.5,-29.5 parent: 2 type: Transform - - uid: 10023 + - uid: 10024 components: - pos: 22.5,-29.5 parent: 2 type: Transform - - uid: 10024 + - uid: 10025 components: - pos: 22.5,-28.5 parent: 2 type: Transform - - uid: 10025 + - uid: 10026 components: - pos: 21.5,-28.5 parent: 2 type: Transform - - uid: 10026 + - uid: 10027 components: - pos: 22.5,-29.5 parent: 2 type: Transform - - uid: 10027 + - uid: 10028 components: - pos: 23.5,-29.5 parent: 2 type: Transform - - uid: 10028 + - uid: 10029 components: - pos: 24.5,-29.5 parent: 2 type: Transform - - uid: 10029 + - uid: 10030 components: - pos: 23.5,-28.5 parent: 2 type: Transform - - uid: 10030 + - uid: 10031 components: - rot: -1.5707963267948966 rad pos: 22.5,-28.5 parent: 2 type: Transform - - uid: 10031 + - uid: 10032 components: - rot: -1.5707963267948966 rad pos: 24.5,-28.5 @@ -82661,127 +67835,127 @@ entities: type: Transform - proto: CarpetPurple entities: - - uid: 10032 + - uid: 10033 components: - pos: -16.5,-38.5 parent: 2 type: Transform - - uid: 10033 + - uid: 10034 components: - pos: -16.5,-39.5 parent: 2 type: Transform - - uid: 10034 + - uid: 10035 components: - pos: -15.5,-38.5 parent: 2 type: Transform - - uid: 10035 + - uid: 10036 components: - pos: -15.5,-39.5 parent: 2 type: Transform - - uid: 10036 + - uid: 10037 components: - pos: -14.5,-38.5 parent: 2 type: Transform - - uid: 10037 + - uid: 10038 components: - pos: -14.5,-39.5 parent: 2 type: Transform - - uid: 10038 + - uid: 10039 components: - rot: -1.5707963267948966 rad pos: -49.5,7.5 parent: 2 type: Transform - - uid: 10039 + - uid: 10040 components: - rot: -1.5707963267948966 rad pos: -49.5,6.5 parent: 2 type: Transform - - uid: 10040 + - uid: 10041 components: - rot: -1.5707963267948966 rad pos: -49.5,5.5 parent: 2 type: Transform - - uid: 10041 + - uid: 10042 components: - rot: -1.5707963267948966 rad pos: -49.5,4.5 parent: 2 type: Transform - - uid: 10042 + - uid: 10043 components: - rot: -1.5707963267948966 rad pos: -48.5,7.5 parent: 2 type: Transform - - uid: 10043 + - uid: 10044 components: - rot: -1.5707963267948966 rad pos: -48.5,6.5 parent: 2 type: Transform - - uid: 10044 + - uid: 10045 components: - rot: -1.5707963267948966 rad pos: -48.5,5.5 parent: 2 type: Transform - - uid: 10045 + - uid: 10046 components: - rot: -1.5707963267948966 rad pos: -48.5,4.5 parent: 2 type: Transform - - uid: 10046 + - uid: 10047 components: - rot: -1.5707963267948966 rad pos: -47.5,7.5 parent: 2 type: Transform - - uid: 10047 + - uid: 10048 components: - rot: -1.5707963267948966 rad pos: -47.5,6.5 parent: 2 type: Transform - - uid: 10048 + - uid: 10049 components: - rot: -1.5707963267948966 rad pos: -47.5,5.5 parent: 2 type: Transform - - uid: 10049 + - uid: 10050 components: - rot: -1.5707963267948966 rad pos: -47.5,4.5 parent: 2 type: Transform - - uid: 10050 + - uid: 10051 components: - rot: -1.5707963267948966 rad pos: -46.5,7.5 parent: 2 type: Transform - - uid: 10051 + - uid: 10052 components: - rot: -1.5707963267948966 rad pos: -46.5,6.5 parent: 2 type: Transform - - uid: 10052 + - uid: 10053 components: - rot: -1.5707963267948966 rad pos: -46.5,5.5 parent: 2 type: Transform - - uid: 10053 + - uid: 10054 components: - rot: -1.5707963267948966 rad pos: -46.5,4.5 @@ -82789,9184 +67963,9184 @@ entities: type: Transform - proto: CarpetSBlue entities: - - uid: 10054 + - uid: 10055 components: - pos: 28.5,-37.5 parent: 2 type: Transform - - uid: 10055 + - uid: 10056 components: - pos: 21.5,-22.5 parent: 2 type: Transform - - uid: 10056 + - uid: 10057 components: - pos: 21.5,-23.5 parent: 2 type: Transform - - uid: 10057 + - uid: 10058 components: - pos: 23.5,-23.5 parent: 2 type: Transform - - uid: 10058 + - uid: 10059 components: - pos: 24.5,-25.5 parent: 2 type: Transform - - uid: 10059 + - uid: 10060 components: - pos: 26.5,-24.5 parent: 2 type: Transform - - uid: 10060 + - uid: 10061 components: - pos: 26.5,-25.5 parent: 2 type: Transform - - uid: 10061 + - uid: 10062 components: - pos: 29.5,-23.5 parent: 2 type: Transform - - uid: 10062 + - uid: 10063 components: - pos: 28.5,-22.5 parent: 2 type: Transform - - uid: 10063 + - uid: 10064 components: - pos: 29.5,-23.5 parent: 2 type: Transform - - uid: 10064 + - uid: 10065 components: - pos: 25.5,-25.5 parent: 2 type: Transform - - uid: 10065 + - uid: 10066 components: - rot: -1.5707963267948966 rad pos: 27.5,-35.5 parent: 2 type: Transform - - uid: 10066 + - uid: 10067 components: - rot: 3.141592653589793 rad pos: 23.5,-34.5 parent: 2 type: Transform - - uid: 10067 + - uid: 10068 components: - rot: 3.141592653589793 rad pos: 22.5,-35.5 parent: 2 type: Transform - - uid: 10068 + - uid: 10069 components: - rot: -1.5707963267948966 rad pos: 28.5,-36.5 parent: 2 type: Transform - - uid: 10069 + - uid: 10070 components: - rot: -1.5707963267948966 rad pos: 28.5,-35.5 parent: 2 type: Transform - - uid: 10070 + - uid: 10071 components: - rot: 3.141592653589793 rad pos: 22.5,-34.5 parent: 2 type: Transform - - uid: 10071 + - uid: 10072 components: - pos: 27.5,-37.5 parent: 2 type: Transform - - uid: 10072 + - uid: 10073 components: - rot: 3.141592653589793 rad pos: 21.5,-35.5 parent: 2 type: Transform - - uid: 10073 + - uid: 10074 components: - pos: 22.5,-36.5 parent: 2 type: Transform - - uid: 10074 + - uid: 10075 components: - pos: 29.5,-22.5 parent: 2 type: Transform - - uid: 10075 + - uid: 10076 components: - pos: 21.5,-36.5 parent: 2 type: Transform - - uid: 10076 + - uid: 10077 components: - pos: 26.5,-37.5 parent: 2 type: Transform - - uid: 10077 + - uid: 10078 components: - pos: 27.5,-22.5 parent: 2 type: Transform - - uid: 10078 + - uid: 10079 components: - pos: 26.5,-22.5 parent: 2 type: Transform - - uid: 10079 + - uid: 10080 components: - pos: 24.5,-24.5 parent: 2 type: Transform - - uid: 10080 + - uid: 10081 components: - pos: 24.5,-23.5 parent: 2 type: Transform - - uid: 10081 + - uid: 10082 components: - rot: 3.141592653589793 rad pos: 21.5,-34.5 parent: 2 type: Transform - - uid: 10082 + - uid: 10083 components: - pos: 24.5,-22.5 parent: 2 type: Transform - - uid: 10083 + - uid: 10084 components: - rot: 3.141592653589793 rad pos: 23.5,-35.5 parent: 2 type: Transform - - uid: 10084 + - uid: 10085 components: - pos: 25.5,-24.5 parent: 2 type: Transform - - uid: 10085 + - uid: 10086 components: - rot: -1.5707963267948966 rad pos: 26.5,-35.5 parent: 2 type: Transform - - uid: 10086 + - uid: 10087 components: - rot: -1.5707963267948966 rad pos: 27.5,-36.5 parent: 2 type: Transform - - uid: 10087 + - uid: 10088 components: - rot: -1.5707963267948966 rad pos: 26.5,-36.5 parent: 2 type: Transform - - uid: 10088 + - uid: 10089 components: - pos: 28.5,-23.5 parent: 2 type: Transform - - uid: 10089 + - uid: 10090 components: - pos: 22.5,-23.5 parent: 2 type: Transform - - uid: 10090 + - uid: 10091 components: - pos: 22.5,-22.5 parent: 2 type: Transform - - uid: 10091 + - uid: 10092 components: - pos: 23.5,-22.5 parent: 2 type: Transform - - uid: 10092 + - uid: 10093 components: - pos: 25.5,-23.5 parent: 2 type: Transform - - uid: 10093 + - uid: 10094 components: - pos: 25.5,-22.5 parent: 2 type: Transform - - uid: 10094 + - uid: 10095 components: - pos: 26.5,-23.5 parent: 2 type: Transform - - uid: 10095 + - uid: 10096 components: - rot: 3.141592653589793 rad pos: 30.5,-47.5 parent: 2 type: Transform - - uid: 10096 + - uid: 10097 components: - rot: 3.141592653589793 rad pos: 30.5,-48.5 parent: 2 type: Transform - - uid: 10097 + - uid: 10098 components: - rot: 3.141592653589793 rad pos: 31.5,-47.5 parent: 2 type: Transform - - uid: 10098 + - uid: 10099 components: - rot: 3.141592653589793 rad pos: 31.5,-48.5 parent: 2 type: Transform - - uid: 10099 + - uid: 10100 components: - rot: 3.141592653589793 rad pos: 32.5,-47.5 parent: 2 type: Transform - - uid: 10100 + - uid: 10101 components: - rot: 3.141592653589793 rad pos: 32.5,-48.5 parent: 2 type: Transform - - uid: 10101 + - uid: 10102 components: - pos: 30.5,-28.5 parent: 2 type: Transform - - uid: 10102 + - uid: 10103 components: - pos: 30.5,-29.5 parent: 2 type: Transform - - uid: 10103 + - uid: 10104 components: - pos: 31.5,-27.5 parent: 2 type: Transform - - uid: 10104 + - uid: 10105 components: - pos: 31.5,-28.5 parent: 2 type: Transform - - uid: 10105 + - uid: 10106 components: - pos: 31.5,-29.5 parent: 2 type: Transform - - uid: 10106 + - uid: 10107 components: - pos: 32.5,-27.5 parent: 2 type: Transform - - uid: 10107 + - uid: 10108 components: - pos: 32.5,-28.5 parent: 2 type: Transform - - uid: 10108 + - uid: 10109 components: - pos: 32.5,-29.5 parent: 2 type: Transform - - uid: 10109 + - uid: 10110 components: - pos: 30.5,-27.5 parent: 2 type: Transform - - uid: 10110 + - uid: 10111 components: - pos: 31.5,-30.5 parent: 2 type: Transform - - uid: 10111 + - uid: 10112 components: - pos: 30.5,-30.5 parent: 2 type: Transform - - uid: 10112 + - uid: 10113 components: - pos: 59.5,-0.5 parent: 2 type: Transform - - uid: 10113 + - uid: 10114 components: - pos: 59.5,-1.5 parent: 2 type: Transform - - uid: 10114 + - uid: 10115 components: - pos: 60.5,-0.5 parent: 2 type: Transform - - uid: 10115 + - uid: 10116 components: - pos: 60.5,-1.5 parent: 2 type: Transform - - uid: 10116 + - uid: 10117 components: - pos: 61.5,-0.5 parent: 2 type: Transform - - uid: 10117 + - uid: 10118 components: - pos: 61.5,-1.5 parent: 2 type: Transform - - uid: 10118 + - uid: 10119 components: - pos: 62.5,-0.5 parent: 2 type: Transform - - uid: 10119 + - uid: 10120 components: - pos: 62.5,-1.5 parent: 2 type: Transform - - uid: 10120 + - uid: 10121 components: - rot: -1.5707963267948966 rad pos: 23.5,-36.5 parent: 2 type: Transform - - uid: 10121 + - uid: 10122 components: - pos: 32.5,-30.5 parent: 2 type: Transform - - uid: 10122 + - uid: 10123 components: - pos: 27.5,-23.5 parent: 2 type: Transform - proto: Catwalk entities: - - uid: 10123 + - uid: 10124 components: - rot: 1.5707963267948966 rad pos: -59.5,56.5 parent: 2 type: Transform - - uid: 10124 + - uid: 10125 components: - rot: 1.5707963267948966 rad pos: -57.5,56.5 parent: 2 type: Transform - - uid: 10125 + - uid: 10126 components: - rot: 1.5707963267948966 rad pos: -55.5,56.5 parent: 2 type: Transform - - uid: 10126 + - uid: 10127 components: - rot: 1.5707963267948966 rad pos: -54.5,55.5 parent: 2 type: Transform - - uid: 10127 + - uid: 10128 components: - rot: 3.141592653589793 rad pos: -0.5,-71.5 parent: 2 type: Transform - - uid: 10128 + - uid: 10129 components: - rot: 3.141592653589793 rad pos: 14.5,-47.5 parent: 2 type: Transform - - uid: 10129 + - uid: 10130 components: - pos: 65.5,-25.5 parent: 2 type: Transform - - uid: 10130 + - uid: 10131 components: - rot: 3.141592653589793 rad pos: 79.5,-26.5 parent: 2 type: Transform - - uid: 10131 + - uid: 10132 components: - pos: 31.5,-14.5 parent: 2 type: Transform - - uid: 10132 + - uid: 10133 components: - pos: -11.5,-15.5 parent: 2 type: Transform - - uid: 10133 + - uid: 10134 components: - pos: -7.5,-75.5 parent: 2 type: Transform - - uid: 10134 + - uid: 10135 components: - pos: 32.5,-11.5 parent: 2 type: Transform - - uid: 10135 + - uid: 10136 components: - pos: -1.5,-83.5 parent: 2 type: Transform - - uid: 10136 + - uid: 10137 components: - pos: -12.5,-15.5 parent: 2 type: Transform - - uid: 10137 + - uid: 10138 components: - pos: -5.5,-69.5 parent: 2 type: Transform - - uid: 10138 + - uid: 10139 components: - pos: 2.5,-90.5 parent: 2 type: Transform - - uid: 10139 + - uid: 10140 components: - pos: -1.5,-88.5 parent: 2 type: Transform - - uid: 10140 + - uid: 10141 components: - pos: -0.5,-89.5 parent: 2 type: Transform - - uid: 10141 + - uid: 10142 components: - pos: 0.5,-89.5 parent: 2 type: Transform - - uid: 10142 + - uid: 10143 components: - pos: 3.5,-92.5 parent: 2 type: Transform - - uid: 10143 + - uid: 10144 components: - pos: 8.5,-53.5 parent: 2 type: Transform - - uid: 10144 + - uid: 10145 components: - pos: 4.5,-92.5 parent: 2 type: Transform - - uid: 10145 + - uid: 10146 components: - pos: -46.5,-50.5 parent: 2 type: Transform - - uid: 10146 + - uid: 10147 components: - rot: 3.141592653589793 rad pos: 0.5,-71.5 parent: 2 type: Transform - - uid: 10147 + - uid: 10148 components: - pos: 2.5,-91.5 parent: 2 type: Transform - - uid: 10148 + - uid: 10149 components: - pos: -1.5,-89.5 parent: 2 type: Transform - - uid: 10149 + - uid: 10150 components: - pos: 4.5,-89.5 parent: 2 type: Transform - - uid: 10150 + - uid: 10151 components: - pos: -6.5,-75.5 parent: 2 type: Transform - - uid: 10151 + - uid: 10152 components: - pos: -8.5,-75.5 parent: 2 type: Transform - - uid: 10152 + - uid: 10153 components: - rot: -1.5707963267948966 rad pos: 28.5,-32.5 parent: 2 type: Transform - - uid: 10153 + - uid: 10154 components: - pos: 30.5,-14.5 parent: 2 type: Transform - - uid: 10154 + - uid: 10155 components: - pos: -5.5,-75.5 parent: 2 type: Transform - - uid: 10155 + - uid: 10156 components: - pos: -4.5,-75.5 parent: 2 type: Transform - - uid: 10156 + - uid: 10157 components: - pos: -3.5,-75.5 parent: 2 type: Transform - - uid: 10157 + - uid: 10158 components: - pos: -14.5,-73.5 parent: 2 type: Transform - - uid: 10158 + - uid: 10159 components: - pos: 30.5,-10.5 parent: 2 type: Transform - - uid: 10159 + - uid: 10160 components: - pos: -13.5,-73.5 parent: 2 type: Transform - - uid: 10160 + - uid: 10161 components: - pos: 9.5,-47.5 parent: 2 type: Transform - - uid: 10161 + - uid: 10162 components: - rot: 3.141592653589793 rad pos: 18.5,-52.5 parent: 2 type: Transform - - uid: 10162 + - uid: 10163 components: - rot: 3.141592653589793 rad pos: 14.5,-53.5 parent: 2 type: Transform - - uid: 10163 + - uid: 10164 components: - rot: 3.141592653589793 rad pos: 14.5,-52.5 parent: 2 type: Transform - - uid: 10164 + - uid: 10165 components: - rot: 3.141592653589793 rad pos: 21.5,-53.5 parent: 2 type: Transform - - uid: 10165 + - uid: 10166 components: - rot: 3.141592653589793 rad pos: 15.5,-53.5 parent: 2 type: Transform - - uid: 10166 + - uid: 10167 components: - rot: 3.141592653589793 rad pos: 15.5,-52.5 parent: 2 type: Transform - - uid: 10167 + - uid: 10168 components: - rot: 3.141592653589793 rad pos: 16.5,-52.5 parent: 2 type: Transform - - uid: 10168 + - uid: 10169 components: - rot: 3.141592653589793 rad pos: 17.5,-52.5 parent: 2 type: Transform - - uid: 10169 + - uid: 10170 components: - rot: 3.141592653589793 rad pos: 17.5,-53.5 parent: 2 type: Transform - - uid: 10170 + - uid: 10171 components: - pos: -46.5,-43.5 parent: 2 type: Transform - - uid: 10171 + - uid: 10172 components: - pos: 32.5,-10.5 parent: 2 type: Transform - - uid: 10172 + - uid: 10173 components: - pos: 32.5,-13.5 parent: 2 type: Transform - - uid: 10173 + - uid: 10174 components: - rot: -1.5707963267948966 rad pos: 29.5,-32.5 parent: 2 type: Transform - - uid: 10174 + - uid: 10175 components: - rot: -1.5707963267948966 rad pos: 27.5,-32.5 parent: 2 type: Transform - - uid: 10175 + - uid: 10176 components: - rot: -1.5707963267948966 rad pos: 24.5,-32.5 parent: 2 type: Transform - - uid: 10176 + - uid: 10177 components: - rot: -1.5707963267948966 rad pos: 23.5,-32.5 parent: 2 type: Transform - - uid: 10177 + - uid: 10178 components: - rot: 3.141592653589793 rad pos: 12.5,-16.5 parent: 2 type: Transform - - uid: 10178 + - uid: 10179 components: - rot: -1.5707963267948966 rad pos: 21.5,-32.5 parent: 2 type: Transform - - uid: 10179 + - uid: 10180 components: - pos: -17.5,-52.5 parent: 2 type: Transform - - uid: 10180 + - uid: 10181 components: - pos: -8.5,-13.5 parent: 2 type: Transform - - uid: 10181 + - uid: 10182 components: - pos: -6.5,-70.5 parent: 2 type: Transform - - uid: 10182 + - uid: 10183 components: - pos: 11.5,-17.5 parent: 2 type: Transform - - uid: 10183 + - uid: 10184 components: - pos: -19.5,-52.5 parent: 2 type: Transform - - uid: 10184 + - uid: 10185 components: - rot: 3.141592653589793 rad pos: 9.5,-92.5 parent: 2 type: Transform - - uid: 10185 + - uid: 10186 components: - rot: 3.141592653589793 rad pos: 10.5,-92.5 parent: 2 type: Transform - - uid: 10186 + - uid: 10187 components: - pos: -1.5,-82.5 parent: 2 type: Transform - - uid: 10187 + - uid: 10188 components: - rot: 3.141592653589793 rad pos: 14.5,-45.5 parent: 2 type: Transform - - uid: 10188 + - uid: 10189 components: - rot: -1.5707963267948966 rad pos: 25.5,-32.5 parent: 2 type: Transform - - uid: 10189 + - uid: 10190 components: - pos: 32.5,-12.5 parent: 2 type: Transform - - uid: 10190 + - uid: 10191 components: - pos: 32.5,-14.5 parent: 2 type: Transform - - uid: 10191 + - uid: 10192 components: - pos: -1.5,-85.5 parent: 2 type: Transform - - uid: 10192 + - uid: 10193 components: - pos: -1.5,-87.5 parent: 2 type: Transform - - uid: 10193 + - uid: 10194 components: - rot: 3.141592653589793 rad pos: 11.5,-105.5 parent: 2 type: Transform - - uid: 10194 + - uid: 10195 components: - pos: -12.5,-14.5 parent: 2 type: Transform - - uid: 10196 + - uid: 10197 components: - pos: 4.5,-67.5 parent: 2 type: Transform - - uid: 10197 + - uid: 10198 components: - pos: 1.5,-89.5 parent: 2 type: Transform - - uid: 10198 + - uid: 10199 components: - pos: 8.5,-55.5 parent: 2 type: Transform - - uid: 10199 + - uid: 10200 components: - rot: 3.141592653589793 rad pos: 11.5,-92.5 parent: 2 type: Transform - - uid: 10200 + - uid: 10201 components: - pos: 3.5,-67.5 parent: 2 type: Transform - - uid: 10201 + - uid: 10202 components: - pos: 5.5,-67.5 parent: 2 type: Transform - - uid: 10202 + - uid: 10203 components: - pos: 8.5,-54.5 parent: 2 type: Transform - - uid: 10203 + - uid: 10204 components: - rot: 1.5707963267948966 rad pos: -24.5,53.5 parent: 2 type: Transform - - uid: 10204 + - uid: 10205 components: - rot: 1.5707963267948966 rad pos: -24.5,50.5 parent: 2 type: Transform - - uid: 10205 + - uid: 10206 components: - rot: 1.5707963267948966 rad pos: -24.5,51.5 parent: 2 type: Transform - - uid: 10206 + - uid: 10207 components: - rot: 1.5707963267948966 rad pos: -24.5,52.5 parent: 2 type: Transform - - uid: 10207 + - uid: 10208 components: - rot: 1.5707963267948966 rad pos: -24.5,49.5 parent: 2 type: Transform - - uid: 10208 + - uid: 10209 components: - rot: 3.141592653589793 rad pos: 2.5,-71.5 parent: 2 type: Transform - - uid: 10209 + - uid: 10210 components: - pos: 30.5,-11.5 parent: 2 type: Transform - - uid: 10210 + - uid: 10211 components: - rot: -1.5707963267948966 rad pos: 26.5,-32.5 parent: 2 type: Transform - - uid: 10211 + - uid: 10212 components: - rot: -1.5707963267948966 rad pos: 22.5,-32.5 parent: 2 type: Transform - - uid: 10212 + - uid: 10213 components: - rot: 3.141592653589793 rad pos: 14.5,-48.5 parent: 2 type: Transform - - uid: 10213 + - uid: 10214 components: - rot: -1.5707963267948966 rad pos: 20.5,-32.5 parent: 2 type: Transform - - uid: 10214 + - uid: 10215 components: - pos: -1.5,-81.5 parent: 2 type: Transform - - uid: 10215 + - uid: 10216 components: - pos: -1.5,-86.5 parent: 2 type: Transform - - uid: 10216 + - uid: 10217 components: - pos: 2.5,-89.5 parent: 2 type: Transform - - uid: 10217 + - uid: 10218 components: - pos: 7.5,-92.5 parent: 2 type: Transform - - uid: 10218 + - uid: 10219 components: - pos: 2.5,-92.5 parent: 2 type: Transform - - uid: 10219 + - uid: 10220 components: - pos: 11.5,-100.5 parent: 2 type: Transform - - uid: 10220 + - uid: 10221 components: - rot: 3.141592653589793 rad pos: 8.5,-92.5 parent: 2 type: Transform - - uid: 10221 + - uid: 10222 components: - pos: 6.5,-92.5 parent: 2 type: Transform - - uid: 10222 + - uid: 10223 components: - pos: 5.5,-92.5 parent: 2 type: Transform - - uid: 10223 + - uid: 10224 components: - pos: -9.5,-75.5 parent: 2 type: Transform - - uid: 10224 + - uid: 10225 components: - rot: 3.141592653589793 rad pos: 20.5,-53.5 parent: 2 type: Transform - - uid: 10225 + - uid: 10226 components: - pos: 30.5,-12.5 parent: 2 type: Transform - - uid: 10226 + - uid: 10227 components: - pos: 60.5,-58.5 parent: 2 type: Transform - - uid: 10227 + - uid: 10228 components: - pos: -4.5,-69.5 parent: 2 type: Transform - - uid: 10228 + - uid: 10229 components: - pos: -13.5,-31.5 parent: 2 type: Transform - - uid: 10229 + - uid: 10230 components: - pos: -3.5,-69.5 parent: 2 type: Transform - - uid: 10230 + - uid: 10231 components: - pos: -9.5,-13.5 parent: 2 type: Transform - - uid: 10231 + - uid: 10232 components: - pos: -12.5,-13.5 parent: 2 type: Transform - - uid: 10232 + - uid: 10233 components: - pos: -10.5,-13.5 parent: 2 type: Transform - - uid: 10233 + - uid: 10234 components: - pos: -10.5,-14.5 parent: 2 type: Transform - - uid: 10234 + - uid: 10235 components: - pos: -10.5,-15.5 parent: 2 type: Transform - - uid: 10235 + - uid: 10236 components: - pos: -13.5,-14.5 parent: 2 type: Transform - - uid: 10236 + - uid: 10237 components: - pos: -7.5,-13.5 parent: 2 type: Transform - - uid: 10237 + - uid: 10238 components: - pos: -14.5,-31.5 parent: 2 type: Transform - - uid: 10238 + - uid: 10239 components: - pos: -15.5,-31.5 parent: 2 type: Transform - - uid: 10239 + - uid: 10240 components: - pos: -2.5,-69.5 parent: 2 type: Transform - - uid: 10240 + - uid: 10241 components: - pos: -16.5,-31.5 parent: 2 type: Transform - - uid: 10243 + - uid: 10244 components: - pos: -6.5,-69.5 parent: 2 type: Transform - - uid: 10244 + - uid: 10245 components: - pos: -12.5,15.5 parent: 2 type: Transform - - uid: 10245 + - uid: 10246 components: - pos: -13.5,15.5 parent: 2 type: Transform - - uid: 10246 + - uid: 10247 components: - pos: -14.5,15.5 parent: 2 type: Transform - - uid: 10247 + - uid: 10248 components: - pos: -6.5,-71.5 parent: 2 type: Transform - - uid: 10248 + - uid: 10249 components: - pos: -7.5,-71.5 parent: 2 type: Transform - - uid: 10249 + - uid: 10250 components: - pos: -8.5,-71.5 parent: 2 type: Transform - - uid: 10250 + - uid: 10251 components: - pos: -9.5,-71.5 parent: 2 type: Transform - - uid: 10251 + - uid: 10252 components: - pos: -10.5,-71.5 parent: 2 type: Transform - - uid: 10252 + - uid: 10253 components: - pos: -11.5,-71.5 parent: 2 type: Transform - - uid: 10253 + - uid: 10254 components: - pos: 3.5,-16.5 parent: 2 type: Transform - - uid: 10254 + - uid: 10255 components: - pos: 2.5,-16.5 parent: 2 type: Transform - - uid: 10255 + - uid: 10256 components: - pos: 1.5,-16.5 parent: 2 type: Transform - - uid: 10256 + - uid: 10257 components: - pos: 1.5,-17.5 parent: 2 type: Transform - - uid: 10257 + - uid: 10258 components: - pos: 0.5,-17.5 parent: 2 type: Transform - - uid: 10258 + - uid: 10259 components: - pos: -0.5,-17.5 parent: 2 type: Transform - - uid: 10259 + - uid: 10260 components: - pos: -0.5,-17.5 parent: 2 type: Transform - - uid: 10260 + - uid: 10261 components: - pos: -1.5,-17.5 parent: 2 type: Transform - - uid: 10261 + - uid: 10262 components: - pos: -1.5,-18.5 parent: 2 type: Transform - - uid: 10262 + - uid: 10263 components: - pos: -1.5,-19.5 parent: 2 type: Transform - - uid: 10263 + - uid: 10264 components: - pos: -1.5,-20.5 parent: 2 type: Transform - - uid: 10264 + - uid: 10265 components: - pos: 14.5,-14.5 parent: 2 type: Transform - - uid: 10265 + - uid: 10266 components: - pos: 13.5,-14.5 parent: 2 type: Transform - - uid: 10266 + - uid: 10267 components: - pos: 12.5,-14.5 parent: 2 type: Transform - - uid: 10267 + - uid: 10268 components: - pos: 11.5,-14.5 parent: 2 type: Transform - - uid: 10268 + - uid: 10269 components: - pos: 10.5,-14.5 parent: 2 type: Transform - - uid: 10269 + - uid: 10270 components: - pos: 9.5,-14.5 parent: 2 type: Transform - - uid: 10270 + - uid: 10271 components: - pos: 8.5,-14.5 parent: 2 type: Transform - - uid: 10271 + - uid: 10272 components: - pos: 7.5,-14.5 parent: 2 type: Transform - - uid: 10272 + - uid: 10273 components: - pos: 14.5,-5.5 parent: 2 type: Transform - - uid: 10273 + - uid: 10274 components: - pos: 14.5,-6.5 parent: 2 type: Transform - - uid: 10274 + - uid: 10275 components: - pos: 14.5,-4.5 parent: 2 type: Transform - - uid: 10275 + - uid: 10276 components: - pos: 56.5,1.5 parent: 2 type: Transform - - uid: 10276 + - uid: 10277 components: - pos: 57.5,2.5 parent: 2 type: Transform - - uid: 10277 + - uid: 10278 components: - pos: 56.5,2.5 parent: 2 type: Transform - - uid: 10278 + - uid: 10279 components: - pos: 57.5,1.5 parent: 2 type: Transform - - uid: 10279 + - uid: 10280 components: - pos: 58.5,1.5 parent: 2 type: Transform - - uid: 10280 + - uid: 10281 components: - pos: 59.5,1.5 parent: 2 type: Transform - - uid: 10281 + - uid: 10282 components: - pos: 60.5,1.5 parent: 2 type: Transform - - uid: 10282 + - uid: 10283 components: - pos: 61.5,1.5 parent: 2 type: Transform - - uid: 10283 + - uid: 10284 components: - pos: 62.5,1.5 parent: 2 type: Transform - - uid: 10284 + - uid: 10285 components: - pos: 62.5,2.5 parent: 2 type: Transform - - uid: 10285 + - uid: 10286 components: - pos: 12.5,-17.5 parent: 2 type: Transform - - uid: 10286 + - uid: 10287 components: - pos: 10.5,-17.5 parent: 2 type: Transform - - uid: 10287 + - uid: 10288 components: - pos: 9.5,-17.5 parent: 2 type: Transform - - uid: 10288 + - uid: 10289 components: - pos: 8.5,-17.5 parent: 2 type: Transform - - uid: 10289 + - uid: 10290 components: - pos: 7.5,-17.5 parent: 2 type: Transform - - uid: 10290 + - uid: 10291 components: - rot: -1.5707963267948966 rad pos: 59.5,-19.5 parent: 2 type: Transform - - uid: 10291 + - uid: 10292 components: - rot: -1.5707963267948966 rad pos: 59.5,-20.5 parent: 2 type: Transform - - uid: 10292 + - uid: 10293 components: - rot: -1.5707963267948966 rad pos: 59.5,-21.5 parent: 2 type: Transform - - uid: 10293 + - uid: 10294 components: - rot: -1.5707963267948966 rad pos: 58.5,-19.5 parent: 2 type: Transform - - uid: 10294 + - uid: 10295 components: - rot: -1.5707963267948966 rad pos: 57.5,-19.5 parent: 2 type: Transform - - uid: 10295 + - uid: 10296 components: - rot: -1.5707963267948966 rad pos: 57.5,-18.5 parent: 2 type: Transform - - uid: 10296 + - uid: 10297 components: - rot: -1.5707963267948966 rad pos: 57.5,-17.5 parent: 2 type: Transform - - uid: 10297 + - uid: 10298 components: - rot: -1.5707963267948966 rad pos: 52.5,-17.5 parent: 2 type: Transform - - uid: 10298 + - uid: 10299 components: - rot: -1.5707963267948966 rad pos: 53.5,-17.5 parent: 2 type: Transform - - uid: 10299 + - uid: 10300 components: - rot: -1.5707963267948966 rad pos: 54.5,-17.5 parent: 2 type: Transform - - uid: 10300 + - uid: 10301 components: - rot: -1.5707963267948966 rad pos: 55.5,-17.5 parent: 2 type: Transform - - uid: 10301 + - uid: 10302 components: - rot: -1.5707963267948966 rad pos: 56.5,-17.5 parent: 2 type: Transform - - uid: 10302 + - uid: 10303 components: - pos: 61.5,-58.5 parent: 2 type: Transform - - uid: 10303 + - uid: 10304 components: - pos: 62.5,-58.5 parent: 2 type: Transform - - uid: 10304 + - uid: 10305 components: - pos: 63.5,-58.5 parent: 2 type: Transform - - uid: 10305 + - uid: 10306 components: - pos: 79.5,-43.5 parent: 2 type: Transform - - uid: 10306 + - uid: 10307 components: - pos: 79.5,-42.5 parent: 2 type: Transform - - uid: 10307 + - uid: 10308 components: - pos: -46.5,-55.5 parent: 2 type: Transform - - uid: 10308 + - uid: 10309 components: - pos: -16.5,-0.5 parent: 2 type: Transform - - uid: 10309 + - uid: 10310 components: - pos: -17.5,-0.5 parent: 2 type: Transform - - uid: 10310 + - uid: 10311 components: - pos: -18.5,-0.5 parent: 2 type: Transform - - uid: 10311 + - uid: 10312 components: - pos: -19.5,-0.5 parent: 2 type: Transform - - uid: 10312 + - uid: 10313 components: - pos: -20.5,-0.5 parent: 2 type: Transform - - uid: 10313 + - uid: 10314 components: - pos: -21.5,-0.5 parent: 2 type: Transform - - uid: 10314 + - uid: 10315 components: - pos: -22.5,-0.5 parent: 2 type: Transform - - uid: 10315 + - uid: 10316 components: - rot: 3.141592653589793 rad pos: 52.5,-85.5 parent: 2 type: Transform - - uid: 10316 + - uid: 10317 components: - rot: 3.141592653589793 rad pos: 52.5,-86.5 parent: 2 type: Transform - - uid: 10317 + - uid: 10318 components: - rot: 3.141592653589793 rad pos: 52.5,-87.5 parent: 2 type: Transform - - uid: 10318 + - uid: 10319 components: - rot: 3.141592653589793 rad pos: 52.5,-88.5 parent: 2 type: Transform - - uid: 10319 + - uid: 10320 components: - rot: 3.141592653589793 rad pos: 52.5,-89.5 parent: 2 type: Transform - - uid: 10320 + - uid: 10321 components: - rot: 3.141592653589793 rad pos: 52.5,-90.5 parent: 2 type: Transform - - uid: 10321 + - uid: 10322 components: - rot: 3.141592653589793 rad pos: 52.5,-92.5 parent: 2 type: Transform - - uid: 10322 + - uid: 10323 components: - rot: 3.141592653589793 rad pos: 52.5,-77.5 parent: 2 type: Transform - - uid: 10323 + - uid: 10324 components: - rot: 3.141592653589793 rad pos: 14.5,-89.5 parent: 2 type: Transform - - uid: 10324 + - uid: 10325 components: - rot: 3.141592653589793 rad pos: 52.5,-78.5 parent: 2 type: Transform - - uid: 10325 + - uid: 10326 components: - rot: 3.141592653589793 rad pos: 15.5,-89.5 parent: 2 type: Transform - - uid: 10326 + - uid: 10327 components: - rot: 3.141592653589793 rad pos: 26.5,-89.5 parent: 2 type: Transform - - uid: 10327 + - uid: 10328 components: - rot: 3.141592653589793 rad pos: 24.5,-89.5 parent: 2 type: Transform - - uid: 10328 + - uid: 10329 components: - rot: 3.141592653589793 rad pos: 25.5,-89.5 parent: 2 type: Transform - - uid: 10329 + - uid: 10330 components: - rot: 3.141592653589793 rad pos: 52.5,-84.5 parent: 2 type: Transform - - uid: 10330 + - uid: 10331 components: - rot: 3.141592653589793 rad pos: 52.5,-94.5 parent: 2 type: Transform - - uid: 10331 + - uid: 10332 components: - rot: 3.141592653589793 rad pos: 52.5,-79.5 parent: 2 type: Transform - - uid: 10332 + - uid: 10333 components: - rot: 3.141592653589793 rad pos: 16.5,-89.5 parent: 2 type: Transform - - uid: 10333 + - uid: 10334 components: - rot: 3.141592653589793 rad pos: 17.5,-89.5 parent: 2 type: Transform - - uid: 10334 + - uid: 10335 components: - rot: 3.141592653589793 rad pos: 18.5,-89.5 parent: 2 type: Transform - - uid: 10335 + - uid: 10336 components: - rot: 3.141592653589793 rad pos: 19.5,-89.5 parent: 2 type: Transform - - uid: 10336 + - uid: 10337 components: - rot: 3.141592653589793 rad pos: 20.5,-89.5 parent: 2 type: Transform - - uid: 10337 + - uid: 10338 components: - rot: 3.141592653589793 rad pos: 21.5,-89.5 parent: 2 type: Transform - - uid: 10338 + - uid: 10339 components: - rot: 3.141592653589793 rad pos: 22.5,-89.5 parent: 2 type: Transform - - uid: 10339 + - uid: 10340 components: - rot: 3.141592653589793 rad pos: 27.5,-89.5 parent: 2 type: Transform - - uid: 10340 + - uid: 10341 components: - rot: 3.141592653589793 rad pos: 57.5,-74.5 parent: 2 type: Transform - - uid: 10341 + - uid: 10342 components: - rot: 3.141592653589793 rad pos: 27.5,-93.5 parent: 2 type: Transform - - uid: 10342 + - uid: 10343 components: - rot: 3.141592653589793 rad pos: 27.5,-94.5 parent: 2 type: Transform - - uid: 10343 + - uid: 10344 components: - rot: 3.141592653589793 rad pos: 27.5,-91.5 parent: 2 type: Transform - - uid: 10344 + - uid: 10345 components: - rot: 3.141592653589793 rad pos: 27.5,-92.5 parent: 2 type: Transform - - uid: 10345 + - uid: 10346 components: - rot: 3.141592653589793 rad pos: 52.5,-91.5 parent: 2 type: Transform - - uid: 10346 + - uid: 10347 components: - rot: 1.5707963267948966 rad pos: 22.5,-75.5 parent: 2 type: Transform - - uid: 10347 + - uid: 10348 components: - pos: 20.5,-73.5 parent: 2 type: Transform - - uid: 10348 + - uid: 10349 components: - pos: 19.5,-73.5 parent: 2 type: Transform - - uid: 10349 + - uid: 10350 components: - pos: 18.5,-73.5 parent: 2 type: Transform - - uid: 10350 + - uid: 10351 components: - pos: 17.5,-73.5 parent: 2 type: Transform - - uid: 10351 + - uid: 10352 components: - pos: 16.5,-73.5 parent: 2 type: Transform - - uid: 10352 + - uid: 10353 components: - pos: 15.5,-73.5 parent: 2 type: Transform - - uid: 10353 + - uid: 10354 components: - pos: 14.5,-73.5 parent: 2 type: Transform - - uid: 10354 + - uid: 10355 components: - pos: 13.5,-73.5 parent: 2 type: Transform - - uid: 10355 + - uid: 10356 components: - pos: 12.5,-73.5 parent: 2 type: Transform - - uid: 10356 + - uid: 10357 components: - pos: 11.5,-73.5 parent: 2 type: Transform - - uid: 10357 + - uid: 10358 components: - pos: 43.5,-59.5 parent: 2 type: Transform - - uid: 10358 + - uid: 10359 components: - pos: -46.5,-48.5 parent: 2 type: Transform - - uid: 10359 + - uid: 10360 components: - pos: -46.5,-45.5 parent: 2 type: Transform - - uid: 10360 + - uid: 10361 components: - pos: -46.5,-46.5 parent: 2 type: Transform - - uid: 10361 + - uid: 10362 components: - pos: -46.5,-52.5 parent: 2 type: Transform - - uid: 10362 + - uid: 10363 components: - rot: 1.5707963267948966 rad pos: -19.5,-45.5 parent: 2 type: Transform - - uid: 10363 + - uid: 10364 components: - rot: 1.5707963267948966 rad pos: -19.5,-46.5 parent: 2 type: Transform - - uid: 10364 + - uid: 10365 components: - rot: 1.5707963267948966 rad pos: -19.5,-47.5 parent: 2 type: Transform - - uid: 10365 + - uid: 10366 components: - rot: 3.141592653589793 rad pos: 27.5,-95.5 parent: 2 type: Transform - - uid: 10366 + - uid: 10367 components: - rot: 3.141592653589793 rad pos: 28.5,-95.5 parent: 2 type: Transform - - uid: 10367 + - uid: 10368 components: - rot: 3.141592653589793 rad pos: 56.5,-74.5 parent: 2 type: Transform - - uid: 10368 + - uid: 10369 components: - pos: -46.5,-47.5 parent: 2 type: Transform - - uid: 10369 + - uid: 10370 components: - pos: -46.5,-49.5 parent: 2 type: Transform - - uid: 10370 + - uid: 10371 components: - pos: -46.5,-44.5 parent: 2 type: Transform - - uid: 10371 + - uid: 10372 components: - pos: -46.5,-51.5 parent: 2 type: Transform - - uid: 10372 + - uid: 10373 components: - pos: 79.5,-50.5 parent: 2 type: Transform - - uid: 10373 + - uid: 10374 components: - pos: 79.5,-49.5 parent: 2 type: Transform - - uid: 10374 + - uid: 10375 components: - pos: 79.5,-44.5 parent: 2 type: Transform - - uid: 10375 + - uid: 10376 components: - pos: 79.5,-45.5 parent: 2 type: Transform - - uid: 10376 + - uid: 10377 components: - pos: 79.5,-46.5 parent: 2 type: Transform - - uid: 10377 + - uid: 10378 components: - pos: 79.5,-47.5 parent: 2 type: Transform - - uid: 10378 + - uid: 10379 components: - pos: 79.5,-48.5 parent: 2 type: Transform - - uid: 10379 + - uid: 10380 components: - pos: 79.5,-41.5 parent: 2 type: Transform - - uid: 10380 + - uid: 10381 components: - pos: 68.5,-74.5 parent: 2 type: Transform - - uid: 10381 + - uid: 10382 components: - pos: 68.5,-73.5 parent: 2 type: Transform - - uid: 10382 + - uid: 10383 components: - pos: -23.5,-26.5 parent: 2 type: Transform - - uid: 10383 + - uid: 10384 components: - pos: -24.5,-26.5 parent: 2 type: Transform - - uid: 10384 + - uid: 10385 components: - pos: -25.5,-26.5 parent: 2 type: Transform - - uid: 10385 + - uid: 10386 components: - pos: -26.5,-26.5 parent: 2 type: Transform - - uid: 10386 + - uid: 10387 components: - pos: -27.5,-26.5 parent: 2 type: Transform - - uid: 10387 + - uid: 10388 components: - pos: -28.5,-26.5 parent: 2 type: Transform - - uid: 10388 + - uid: 10389 components: - pos: 68.5,-72.5 parent: 2 type: Transform - - uid: 10389 + - uid: 10390 components: - pos: 68.5,-71.5 parent: 2 type: Transform - - uid: 10390 + - uid: 10391 components: - pos: 36.5,-56.5 parent: 2 type: Transform - - uid: 10391 + - uid: 10392 components: - pos: 36.5,-54.5 parent: 2 type: Transform - - uid: 10392 + - uid: 10393 components: - pos: 36.5,-53.5 parent: 2 type: Transform - - uid: 10393 + - uid: 10394 components: - pos: 36.5,-52.5 parent: 2 type: Transform - - uid: 10394 + - uid: 10395 components: - pos: 38.5,-51.5 parent: 2 type: Transform - - uid: 10395 + - uid: 10396 components: - pos: 39.5,-51.5 parent: 2 type: Transform - - uid: 10396 + - uid: 10397 components: - pos: 40.5,-51.5 parent: 2 type: Transform - - uid: 10397 + - uid: 10398 components: - pos: 41.5,-51.5 parent: 2 type: Transform - - uid: 10398 + - uid: 10399 components: - pos: 13.5,-47.5 parent: 2 type: Transform - - uid: 10399 + - uid: 10400 components: - pos: 13.5,-45.5 parent: 2 type: Transform - - uid: 10400 + - uid: 10401 components: - pos: 15.5,-45.5 parent: 2 type: Transform - - uid: 10401 + - uid: 10402 components: - pos: 16.5,-45.5 parent: 2 type: Transform - - uid: 10402 + - uid: 10403 components: - pos: 17.5,-45.5 parent: 2 type: Transform - - uid: 10403 + - uid: 10404 components: - rot: 3.141592653589793 rad pos: -1.5,-71.5 parent: 2 type: Transform - - uid: 10404 + - uid: 10405 components: - pos: 8.5,-56.5 parent: 2 type: Transform - - uid: 10405 + - uid: 10406 components: - pos: 62.5,-15.5 parent: 2 type: Transform - - uid: 10406 + - uid: 10407 components: - pos: 62.5,-16.5 parent: 2 type: Transform - - uid: 10407 + - uid: 10408 components: - pos: 62.5,-17.5 parent: 2 type: Transform - - uid: 10408 + - uid: 10409 components: - pos: 62.5,-18.5 parent: 2 type: Transform - - uid: 10409 + - uid: 10410 components: - pos: 62.5,-19.5 parent: 2 type: Transform - - uid: 10410 + - uid: 10411 components: - pos: 62.5,-20.5 parent: 2 type: Transform - - uid: 10411 + - uid: 10412 components: - pos: 62.5,-21.5 parent: 2 type: Transform - - uid: 10412 + - uid: 10413 components: - pos: 62.5,-22.5 parent: 2 type: Transform - - uid: 10413 + - uid: 10414 components: - pos: 62.5,-23.5 parent: 2 type: Transform - - uid: 10414 + - uid: 10415 components: - pos: -46.5,-9.5 parent: 2 type: Transform - - uid: 10415 + - uid: 10416 components: - pos: -46.5,-10.5 parent: 2 type: Transform - - uid: 10416 + - uid: 10417 components: - pos: -46.5,-11.5 parent: 2 type: Transform - - uid: 10417 + - uid: 10418 components: - pos: -46.5,-12.5 parent: 2 type: Transform - - uid: 10418 + - uid: 10419 components: - pos: -46.5,-13.5 parent: 2 type: Transform - - uid: 10419 + - uid: 10420 components: - pos: -46.5,-14.5 parent: 2 type: Transform - - uid: 10420 + - uid: 10421 components: - pos: -46.5,-15.5 parent: 2 type: Transform - - uid: 10421 + - uid: 10422 components: - pos: -46.5,-16.5 parent: 2 type: Transform - - uid: 10422 + - uid: 10423 components: - rot: -1.5707963267948966 rad pos: -59.5,-12.5 parent: 2 type: Transform - - uid: 10423 + - uid: 10424 components: - rot: -1.5707963267948966 rad pos: -59.5,-13.5 parent: 2 type: Transform - - uid: 10424 + - uid: 10425 components: - rot: -1.5707963267948966 rad pos: -59.5,-14.5 parent: 2 type: Transform - - uid: 10425 + - uid: 10426 components: - rot: -1.5707963267948966 rad pos: -59.5,-15.5 parent: 2 type: Transform - - uid: 10426 + - uid: 10427 components: - rot: -1.5707963267948966 rad pos: -59.5,-16.5 parent: 2 type: Transform - - uid: 10427 + - uid: 10428 components: - rot: -1.5707963267948966 rad pos: -59.5,-17.5 parent: 2 type: Transform - - uid: 10428 + - uid: 10429 components: - rot: -1.5707963267948966 rad pos: -59.5,-18.5 parent: 2 type: Transform - - uid: 10429 + - uid: 10430 components: - rot: -1.5707963267948966 rad pos: -59.5,-19.5 parent: 2 type: Transform - - uid: 10430 + - uid: 10431 components: - rot: -1.5707963267948966 rad pos: -59.5,-20.5 parent: 2 type: Transform - - uid: 10431 + - uid: 10432 components: - rot: -1.5707963267948966 rad pos: -60.5,-20.5 parent: 2 type: Transform - - uid: 10432 + - uid: 10433 components: - rot: -1.5707963267948966 rad pos: -61.5,-20.5 parent: 2 type: Transform - - uid: 10433 + - uid: 10434 components: - rot: -1.5707963267948966 rad pos: -62.5,-20.5 parent: 2 type: Transform - - uid: 10434 + - uid: 10435 components: - rot: -1.5707963267948966 rad pos: -63.5,-20.5 parent: 2 type: Transform - - uid: 10435 + - uid: 10436 components: - rot: -1.5707963267948966 rad pos: -64.5,-20.5 parent: 2 type: Transform - - uid: 10436 + - uid: 10437 components: - rot: -1.5707963267948966 rad pos: -65.5,-20.5 parent: 2 type: Transform - - uid: 10437 + - uid: 10438 components: - rot: -1.5707963267948966 rad pos: -66.5,-20.5 parent: 2 type: Transform - - uid: 10438 + - uid: 10439 components: - rot: -1.5707963267948966 rad pos: -67.5,-20.5 parent: 2 type: Transform - - uid: 10439 + - uid: 10440 components: - rot: -1.5707963267948966 rad pos: -68.5,-20.5 parent: 2 type: Transform - - uid: 10440 + - uid: 10441 components: - rot: -1.5707963267948966 rad pos: -69.5,-20.5 parent: 2 type: Transform - - uid: 10441 + - uid: 10442 components: - rot: -1.5707963267948966 rad pos: -70.5,-20.5 parent: 2 type: Transform - - uid: 10442 + - uid: 10443 components: - rot: -1.5707963267948966 rad pos: -71.5,-20.5 parent: 2 type: Transform - - uid: 10443 + - uid: 10444 components: - rot: -1.5707963267948966 rad pos: -72.5,-20.5 parent: 2 type: Transform - - uid: 10444 + - uid: 10445 components: - rot: -1.5707963267948966 rad pos: -73.5,-20.5 parent: 2 type: Transform - - uid: 10445 + - uid: 10446 components: - rot: -1.5707963267948966 rad pos: -73.5,-19.5 parent: 2 type: Transform - - uid: 10446 + - uid: 10447 components: - rot: -1.5707963267948966 rad pos: -73.5,-18.5 parent: 2 type: Transform - - uid: 10447 + - uid: 10448 components: - rot: -1.5707963267948966 rad pos: -73.5,-17.5 parent: 2 type: Transform - - uid: 10448 + - uid: 10449 components: - rot: -1.5707963267948966 rad pos: -73.5,-16.5 parent: 2 type: Transform - - uid: 10449 + - uid: 10450 components: - rot: -1.5707963267948966 rad pos: -73.5,-15.5 parent: 2 type: Transform - - uid: 10450 + - uid: 10451 components: - rot: -1.5707963267948966 rad pos: -73.5,-14.5 parent: 2 type: Transform - - uid: 10451 + - uid: 10452 components: - rot: -1.5707963267948966 rad pos: -73.5,-13.5 parent: 2 type: Transform - - uid: 10452 + - uid: 10453 components: - rot: -1.5707963267948966 rad pos: -73.5,-12.5 parent: 2 type: Transform - - uid: 10453 + - uid: 10454 components: - rot: -1.5707963267948966 rad pos: -73.5,-11.5 parent: 2 type: Transform - - uid: 10454 + - uid: 10455 components: - rot: -1.5707963267948966 rad pos: -73.5,-10.5 parent: 2 type: Transform - - uid: 10455 + - uid: 10456 components: - rot: -1.5707963267948966 rad pos: -73.5,-9.5 parent: 2 type: Transform - - uid: 10456 + - uid: 10457 components: - rot: -1.5707963267948966 rad pos: -73.5,-8.5 parent: 2 type: Transform - - uid: 10457 + - uid: 10458 components: - rot: -1.5707963267948966 rad pos: -73.5,-7.5 parent: 2 type: Transform - - uid: 10458 + - uid: 10459 components: - rot: -1.5707963267948966 rad pos: -73.5,-6.5 parent: 2 type: Transform - - uid: 10459 + - uid: 10460 components: - rot: -1.5707963267948966 rad pos: -72.5,-6.5 parent: 2 type: Transform - - uid: 10460 + - uid: 10461 components: - rot: -1.5707963267948966 rad pos: -71.5,-6.5 parent: 2 type: Transform - - uid: 10461 + - uid: 10462 components: - rot: -1.5707963267948966 rad pos: -70.5,-6.5 parent: 2 type: Transform - - uid: 10462 + - uid: 10463 components: - rot: -1.5707963267948966 rad pos: -69.5,-6.5 parent: 2 type: Transform - - uid: 10463 + - uid: 10464 components: - rot: -1.5707963267948966 rad pos: -68.5,-6.5 parent: 2 type: Transform - - uid: 10464 + - uid: 10465 components: - rot: -1.5707963267948966 rad pos: -67.5,-6.5 parent: 2 type: Transform - - uid: 10465 + - uid: 10466 components: - rot: -1.5707963267948966 rad pos: -66.5,-6.5 parent: 2 type: Transform - - uid: 10466 + - uid: 10467 components: - rot: -1.5707963267948966 rad pos: -65.5,-6.5 parent: 2 type: Transform - - uid: 10467 + - uid: 10468 components: - rot: -1.5707963267948966 rad pos: -64.5,-6.5 parent: 2 type: Transform - - uid: 10468 + - uid: 10469 components: - rot: -1.5707963267948966 rad pos: -63.5,-6.5 parent: 2 type: Transform - - uid: 10469 + - uid: 10470 components: - rot: -1.5707963267948966 rad pos: -62.5,-6.5 parent: 2 type: Transform - - uid: 10470 + - uid: 10471 components: - rot: -1.5707963267948966 rad pos: -61.5,-6.5 parent: 2 type: Transform - - uid: 10471 + - uid: 10472 components: - rot: -1.5707963267948966 rad pos: -60.5,-6.5 parent: 2 type: Transform - - uid: 10472 + - uid: 10473 components: - rot: -1.5707963267948966 rad pos: -59.5,-6.5 parent: 2 type: Transform - - uid: 10473 + - uid: 10474 components: - rot: -1.5707963267948966 rad pos: -59.5,-7.5 parent: 2 type: Transform - - uid: 10474 + - uid: 10475 components: - rot: -1.5707963267948966 rad pos: -59.5,-8.5 parent: 2 type: Transform - - uid: 10475 + - uid: 10476 components: - rot: -1.5707963267948966 rad pos: -59.5,-9.5 parent: 2 type: Transform - - uid: 10476 + - uid: 10477 components: - rot: -1.5707963267948966 rad pos: -59.5,-10.5 parent: 2 type: Transform - - uid: 10477 + - uid: 10478 components: - rot: -1.5707963267948966 rad pos: -59.5,-11.5 parent: 2 type: Transform - - uid: 10478 + - uid: 10479 components: - rot: -1.5707963267948966 rad pos: -79.5,-1.5 parent: 2 type: Transform - - uid: 10479 + - uid: 10480 components: - rot: -1.5707963267948966 rad pos: -79.5,-2.5 parent: 2 type: Transform - - uid: 10480 + - uid: 10481 components: - rot: -1.5707963267948966 rad pos: -79.5,-3.5 parent: 2 type: Transform - - uid: 10481 + - uid: 10482 components: - rot: -1.5707963267948966 rad pos: -79.5,-4.5 parent: 2 type: Transform - - uid: 10482 + - uid: 10483 components: - rot: -1.5707963267948966 rad pos: -79.5,-5.5 parent: 2 type: Transform - - uid: 10483 + - uid: 10484 components: - rot: -1.5707963267948966 rad pos: -79.5,-6.5 parent: 2 type: Transform - - uid: 10484 + - uid: 10485 components: - rot: -1.5707963267948966 rad pos: -79.5,-7.5 parent: 2 type: Transform - - uid: 10485 + - uid: 10486 components: - rot: -1.5707963267948966 rad pos: -79.5,-8.5 parent: 2 type: Transform - - uid: 10486 + - uid: 10487 components: - rot: -1.5707963267948966 rad pos: -79.5,-9.5 parent: 2 type: Transform - - uid: 10487 + - uid: 10488 components: - rot: -1.5707963267948966 rad pos: -79.5,-10.5 parent: 2 type: Transform - - uid: 10488 + - uid: 10489 components: - rot: -1.5707963267948966 rad pos: -79.5,-11.5 parent: 2 type: Transform - - uid: 10489 + - uid: 10490 components: - rot: -1.5707963267948966 rad pos: -79.5,-15.5 parent: 2 type: Transform - - uid: 10490 + - uid: 10491 components: - rot: -1.5707963267948966 rad pos: -79.5,-19.5 parent: 2 type: Transform - - uid: 10491 + - uid: 10492 components: - rot: -1.5707963267948966 rad pos: -79.5,-22.5 parent: 2 type: Transform - - uid: 10492 + - uid: 10493 components: - rot: -1.5707963267948966 rad pos: -79.5,-26.5 parent: 2 type: Transform - - uid: 10493 + - uid: 10494 components: - rot: -1.5707963267948966 rad pos: -78.5,-1.5 parent: 2 type: Transform - - uid: 10494 + - uid: 10495 components: - rot: -1.5707963267948966 rad pos: -77.5,-1.5 parent: 2 type: Transform - - uid: 10495 + - uid: 10496 components: - rot: -1.5707963267948966 rad pos: -76.5,-1.5 parent: 2 type: Transform - - uid: 10496 + - uid: 10497 components: - rot: -1.5707963267948966 rad pos: -75.5,-1.5 parent: 2 type: Transform - - uid: 10497 + - uid: 10498 components: - rot: -1.5707963267948966 rad pos: -74.5,-1.5 parent: 2 type: Transform - - uid: 10498 + - uid: 10499 components: - rot: -1.5707963267948966 rad pos: -73.5,-1.5 parent: 2 type: Transform - - uid: 10499 + - uid: 10500 components: - rot: -1.5707963267948966 rad pos: -72.5,-1.5 parent: 2 type: Transform - - uid: 10500 + - uid: 10501 components: - rot: -1.5707963267948966 rad pos: -71.5,-1.5 parent: 2 type: Transform - - uid: 10501 + - uid: 10502 components: - rot: -1.5707963267948966 rad pos: -70.5,-1.5 parent: 2 type: Transform - - uid: 10502 + - uid: 10503 components: - rot: -1.5707963267948966 rad pos: -69.5,-1.5 parent: 2 type: Transform - - uid: 10503 + - uid: 10504 components: - rot: -1.5707963267948966 rad pos: -68.5,-1.5 parent: 2 type: Transform - - uid: 10504 + - uid: 10505 components: - rot: -1.5707963267948966 rad pos: -67.5,-1.5 parent: 2 type: Transform - - uid: 10505 + - uid: 10506 components: - rot: -1.5707963267948966 rad pos: -66.5,-1.5 parent: 2 type: Transform - - uid: 10506 + - uid: 10507 components: - rot: -1.5707963267948966 rad pos: -65.5,-1.5 parent: 2 type: Transform - - uid: 10507 + - uid: 10508 components: - rot: -1.5707963267948966 rad pos: -64.5,-1.5 parent: 2 type: Transform - - uid: 10508 + - uid: 10509 components: - rot: -1.5707963267948966 rad pos: -63.5,-1.5 parent: 2 type: Transform - - uid: 10509 + - uid: 10510 components: - rot: -1.5707963267948966 rad pos: -62.5,-1.5 parent: 2 type: Transform - - uid: 10510 + - uid: 10511 components: - rot: -1.5707963267948966 rad pos: -61.5,-1.5 parent: 2 type: Transform - - uid: 10511 + - uid: 10512 components: - rot: -1.5707963267948966 rad pos: -60.5,-1.5 parent: 2 type: Transform - - uid: 10512 + - uid: 10513 components: - rot: -1.5707963267948966 rad pos: -59.5,-1.5 parent: 2 type: Transform - - uid: 10513 + - uid: 10514 components: - rot: -1.5707963267948966 rad pos: -58.5,-1.5 parent: 2 type: Transform - - uid: 10514 + - uid: 10515 components: - pos: -25.5,-58.5 parent: 2 type: Transform - - uid: 10515 + - uid: 10516 components: - pos: -28.5,-66.5 parent: 2 type: Transform - - uid: 10516 + - uid: 10517 components: - pos: -29.5,-66.5 parent: 2 type: Transform - - uid: 10517 + - uid: 10518 components: - pos: -30.5,-66.5 parent: 2 type: Transform - - uid: 10518 + - uid: 10519 components: - pos: -31.5,-66.5 parent: 2 type: Transform - - uid: 10519 + - uid: 10520 components: - pos: -32.5,-66.5 parent: 2 type: Transform - - uid: 10520 + - uid: 10521 components: - pos: -33.5,-66.5 parent: 2 type: Transform - - uid: 10521 + - uid: 10522 components: - pos: -34.5,-66.5 parent: 2 type: Transform - - uid: 10522 + - uid: 10523 components: - pos: -35.5,-66.5 parent: 2 type: Transform - - uid: 10523 + - uid: 10524 components: - pos: -24.5,-51.5 parent: 2 type: Transform - - uid: 10524 + - uid: 10525 components: - pos: -25.5,-51.5 parent: 2 type: Transform - - uid: 10525 + - uid: 10526 components: - pos: -26.5,-51.5 parent: 2 type: Transform - - uid: 10526 + - uid: 10527 components: - pos: -27.5,-51.5 parent: 2 type: Transform - - uid: 10527 + - uid: 10528 components: - pos: -28.5,-51.5 parent: 2 type: Transform - - uid: 10528 + - uid: 10529 components: - pos: -29.5,-51.5 parent: 2 type: Transform - - uid: 10529 + - uid: 10530 components: - pos: -25.5,-41.5 parent: 2 type: Transform - - uid: 10530 + - uid: 10531 components: - pos: -25.5,-42.5 parent: 2 type: Transform - - uid: 10531 + - uid: 10532 components: - pos: -25.5,-43.5 parent: 2 type: Transform - - uid: 10532 + - uid: 10533 components: - pos: -25.5,-44.5 parent: 2 type: Transform - - uid: 10533 + - uid: 10534 components: - pos: -25.5,-45.5 parent: 2 type: Transform - - uid: 10534 + - uid: 10535 components: - pos: -25.5,-46.5 parent: 2 type: Transform - - uid: 10535 + - uid: 10536 components: - pos: -26.5,-46.5 parent: 2 type: Transform - - uid: 10536 + - uid: 10537 components: - pos: -25.5,-47.5 parent: 2 type: Transform - - uid: 10537 + - uid: 10538 components: - pos: -25.5,-47.5 parent: 2 type: Transform - - uid: 10538 + - uid: 10539 components: - pos: -26.5,-47.5 parent: 2 type: Transform - - uid: 10539 + - uid: 10540 components: - pos: -26.5,-39.5 parent: 2 type: Transform - - uid: 10540 + - uid: 10541 components: - pos: -26.5,-40.5 parent: 2 type: Transform - - uid: 10541 + - uid: 10542 components: - pos: -25.5,-40.5 parent: 2 type: Transform - - uid: 10542 + - uid: 10543 components: - pos: -25.5,-39.5 parent: 2 type: Transform - - uid: 10543 + - uid: 10544 components: - pos: -56.5,-68.5 parent: 2 type: Transform - - uid: 10544 + - uid: 10545 components: - pos: -55.5,-68.5 parent: 2 type: Transform - - uid: 10545 + - uid: 10546 components: - pos: -54.5,-68.5 parent: 2 type: Transform - - uid: 10546 + - uid: 10547 components: - pos: -53.5,-68.5 parent: 2 type: Transform - - uid: 10547 + - uid: 10548 components: - pos: -52.5,-68.5 parent: 2 type: Transform - - uid: 10548 + - uid: 10549 components: - pos: -52.5,-67.5 parent: 2 type: Transform - - uid: 10549 + - uid: 10550 components: - pos: -53.5,-67.5 parent: 2 type: Transform - - uid: 10550 + - uid: 10551 components: - pos: -47.5,-67.5 parent: 2 type: Transform - - uid: 10551 + - uid: 10552 components: - pos: -47.5,-66.5 parent: 2 type: Transform - - uid: 10552 + - uid: 10553 components: - pos: -47.5,-68.5 parent: 2 type: Transform - - uid: 10553 + - uid: 10554 components: - pos: -46.5,-66.5 parent: 2 type: Transform - - uid: 10554 + - uid: 10555 components: - pos: -46.5,-67.5 parent: 2 type: Transform - - uid: 10555 + - uid: 10556 components: - pos: -46.5,-68.5 parent: 2 type: Transform - - uid: 10556 + - uid: 10557 components: - pos: 46.5,-11.5 parent: 2 type: Transform - - uid: 10557 + - uid: 10558 components: - pos: 45.5,-11.5 parent: 2 type: Transform - - uid: 10558 + - uid: 10559 components: - pos: 44.5,-11.5 parent: 2 type: Transform - - uid: 10559 + - uid: 10560 components: - pos: 43.5,-11.5 parent: 2 type: Transform - - uid: 10560 + - uid: 10561 components: - pos: 42.5,-11.5 parent: 2 type: Transform - - uid: 10561 + - uid: 10562 components: - pos: 40.5,-7.5 parent: 2 type: Transform - - uid: 10562 + - uid: 10563 components: - pos: 40.5,-8.5 parent: 2 type: Transform - - uid: 10563 + - uid: 10564 components: - pos: 40.5,-9.5 parent: 2 type: Transform - - uid: 10564 + - uid: 10565 components: - pos: 40.5,-10.5 parent: 2 type: Transform - - uid: 10565 + - uid: 10566 components: - pos: 40.5,-11.5 parent: 2 type: Transform - - uid: 10566 + - uid: 10567 components: - pos: 30.5,-8.5 parent: 2 type: Transform - - uid: 10567 + - uid: 10568 components: - pos: 31.5,-8.5 parent: 2 type: Transform - - uid: 10568 + - uid: 10569 components: - pos: 33.5,-8.5 parent: 2 type: Transform - - uid: 10569 + - uid: 10570 components: - pos: 34.5,-8.5 parent: 2 type: Transform - - uid: 10570 + - uid: 10571 components: - pos: 35.5,-8.5 parent: 2 type: Transform - - uid: 10571 + - uid: 10572 components: - pos: 30.5,-13.5 parent: 2 type: Transform - - uid: 10572 + - uid: 10573 components: - pos: 37.5,-8.5 parent: 2 type: Transform - - uid: 10573 + - uid: 10574 components: - pos: -46.5,-42.5 parent: 2 type: Transform - - uid: 10574 + - uid: 10575 components: - pos: -20.5,-52.5 parent: 2 type: Transform - - uid: 10575 + - uid: 10576 components: - pos: -37.5,-20.5 parent: 2 type: Transform - - uid: 10576 + - uid: 10577 components: - pos: -37.5,-21.5 parent: 2 type: Transform - - uid: 10577 + - uid: 10578 components: - pos: -37.5,-22.5 parent: 2 type: Transform - - uid: 10578 + - uid: 10579 components: - pos: -37.5,-23.5 parent: 2 type: Transform - - uid: 10579 + - uid: 10580 components: - pos: -37.5,-24.5 parent: 2 type: Transform - - uid: 10580 + - uid: 10581 components: - pos: -43.5,-26.5 parent: 2 type: Transform - - uid: 10581 + - uid: 10582 components: - pos: -42.5,-26.5 parent: 2 type: Transform - - uid: 10582 + - uid: 10583 components: - pos: -41.5,-26.5 parent: 2 type: Transform - - uid: 10583 + - uid: 10584 components: - pos: -40.5,-26.5 parent: 2 type: Transform - - uid: 10584 + - uid: 10585 components: - pos: -39.5,-26.5 parent: 2 type: Transform - - uid: 10585 + - uid: 10586 components: - pos: -38.5,-26.5 parent: 2 type: Transform - - uid: 10586 + - uid: 10587 components: - pos: -48.5,-27.5 parent: 2 type: Transform - - uid: 10587 + - uid: 10588 components: - pos: -48.5,-28.5 parent: 2 type: Transform - - uid: 10588 + - uid: 10589 components: - pos: -48.5,-29.5 parent: 2 type: Transform - - uid: 10589 + - uid: 10590 components: - pos: -48.5,-30.5 parent: 2 type: Transform - - uid: 10590 + - uid: 10591 components: - pos: -48.5,-31.5 parent: 2 type: Transform - - uid: 10591 + - uid: 10592 components: - pos: -48.5,-32.5 parent: 2 type: Transform - - uid: 10592 + - uid: 10593 components: - pos: -49.5,-32.5 parent: 2 type: Transform - - uid: 10593 + - uid: 10594 components: - pos: -50.5,-32.5 parent: 2 type: Transform - - uid: 10594 + - uid: 10595 components: - pos: -51.5,-32.5 parent: 2 type: Transform - - uid: 10595 + - uid: 10596 components: - pos: -52.5,-32.5 parent: 2 type: Transform - - uid: 10596 + - uid: 10597 components: - pos: 69.5,3.5 parent: 2 type: Transform - - uid: 10597 + - uid: 10598 components: - pos: -2.5,29.5 parent: 2 type: Transform - - uid: 10598 + - uid: 10599 components: - rot: 3.141592653589793 rad pos: 14.5,32.5 parent: 2 type: Transform - - uid: 10599 + - uid: 10600 components: - rot: 3.141592653589793 rad pos: 13.5,32.5 parent: 2 type: Transform - - uid: 10600 + - uid: 10601 components: - rot: 3.141592653589793 rad pos: 2.5,32.5 parent: 2 type: Transform - - uid: 10601 + - uid: 10602 components: - rot: 3.141592653589793 rad pos: 19.5,25.5 parent: 2 type: Transform - - uid: 10602 + - uid: 10603 components: - rot: 3.141592653589793 rad pos: 18.5,25.5 parent: 2 type: Transform - - uid: 10603 + - uid: 10604 components: - rot: 3.141592653589793 rad pos: 17.5,25.5 parent: 2 type: Transform - - uid: 10604 + - uid: 10605 components: - rot: 3.141592653589793 rad pos: 16.5,25.5 parent: 2 type: Transform - - uid: 10605 + - uid: 10606 components: - rot: 3.141592653589793 rad pos: 15.5,25.5 parent: 2 type: Transform - - uid: 10606 + - uid: 10607 components: - rot: 3.141592653589793 rad pos: 14.5,25.5 parent: 2 type: Transform - - uid: 10607 + - uid: 10608 components: - rot: 3.141592653589793 rad pos: 13.5,25.5 parent: 2 type: Transform - - uid: 10608 + - uid: 10609 components: - rot: 3.141592653589793 rad pos: 16.5,27.5 parent: 2 type: Transform - - uid: 10609 + - uid: 10610 components: - rot: 3.141592653589793 rad pos: 16.5,26.5 parent: 2 type: Transform - - uid: 10610 + - uid: 10611 components: - rot: 3.141592653589793 rad pos: 9.5,24.5 parent: 2 type: Transform - - uid: 10611 + - uid: 10612 components: - rot: 3.141592653589793 rad pos: 8.5,24.5 parent: 2 type: Transform - - uid: 10612 + - uid: 10613 components: - rot: 3.141592653589793 rad pos: 7.5,24.5 parent: 2 type: Transform - - uid: 10613 + - uid: 10614 components: - rot: 3.141592653589793 rad pos: 6.5,24.5 parent: 2 type: Transform - - uid: 10614 + - uid: 10615 components: - rot: 3.141592653589793 rad pos: 5.5,24.5 parent: 2 type: Transform - - uid: 10615 + - uid: 10616 components: - rot: 3.141592653589793 rad pos: 4.5,24.5 parent: 2 type: Transform - - uid: 10616 + - uid: 10617 components: - rot: 3.141592653589793 rad pos: 3.5,24.5 parent: 2 type: Transform - - uid: 10617 + - uid: 10618 components: - rot: 3.141592653589793 rad pos: 2.5,24.5 parent: 2 type: Transform - - uid: 10618 + - uid: 10619 components: - rot: 3.141592653589793 rad pos: 1.5,24.5 parent: 2 type: Transform - - uid: 10619 + - uid: 10620 components: - rot: 3.141592653589793 rad pos: 0.5,24.5 parent: 2 type: Transform - - uid: 10620 + - uid: 10621 components: - rot: 3.141592653589793 rad pos: -3.5,23.5 parent: 2 type: Transform - - uid: 10621 + - uid: 10622 components: - rot: 3.141592653589793 rad pos: -4.5,23.5 parent: 2 type: Transform - - uid: 10622 + - uid: 10623 components: - rot: 3.141592653589793 rad pos: -5.5,23.5 parent: 2 type: Transform - - uid: 10623 + - uid: 10624 components: - rot: 3.141592653589793 rad pos: -6.5,23.5 parent: 2 type: Transform - - uid: 10624 + - uid: 10625 components: - rot: 3.141592653589793 rad pos: -7.5,23.5 parent: 2 type: Transform - - uid: 10625 + - uid: 10626 components: - pos: -6.5,18.5 parent: 2 type: Transform - - uid: 10626 + - uid: 10627 components: - pos: -7.5,18.5 parent: 2 type: Transform - - uid: 10627 + - uid: 10628 components: - pos: -8.5,18.5 parent: 2 type: Transform - - uid: 10628 + - uid: 10629 components: - pos: -9.5,18.5 parent: 2 type: Transform - - uid: 10629 + - uid: 10630 components: - pos: -10.5,18.5 parent: 2 type: Transform - - uid: 10630 + - uid: 10631 components: - pos: -11.5,18.5 parent: 2 type: Transform - - uid: 10631 + - uid: 10632 components: - pos: -11.5,15.5 parent: 2 type: Transform - - uid: 10632 + - uid: 10633 components: - pos: -6.5,14.5 parent: 2 type: Transform - - uid: 10633 + - uid: 10634 components: - pos: -5.5,14.5 parent: 2 type: Transform - - uid: 10634 + - uid: 10635 components: - pos: -4.5,14.5 parent: 2 type: Transform - - uid: 10635 + - uid: 10636 components: - pos: -3.5,14.5 parent: 2 type: Transform - - uid: 10636 + - uid: 10637 components: - pos: -6.5,13.5 parent: 2 type: Transform - - uid: 10637 + - uid: 10638 components: - pos: -7.5,13.5 parent: 2 type: Transform - - uid: 10638 + - uid: 10639 components: - pos: -12.5,24.5 parent: 2 type: Transform - - uid: 10639 + - uid: 10640 components: - rot: -1.5707963267948966 rad pos: 65.5,-24.5 parent: 2 type: Transform - - uid: 10640 + - uid: 10641 components: - rot: -1.5707963267948966 rad pos: 65.5,-23.5 parent: 2 type: Transform - - uid: 10641 + - uid: 10642 components: - rot: -1.5707963267948966 rad pos: 65.5,-22.5 parent: 2 type: Transform - - uid: 10642 + - uid: 10643 components: - rot: -1.5707963267948966 rad pos: 65.5,-21.5 parent: 2 type: Transform - - uid: 10643 + - uid: 10644 components: - pos: 67.5,-18.5 parent: 2 type: Transform - - uid: 10644 + - uid: 10645 components: - pos: -45.5,46.5 parent: 2 type: Transform - - uid: 10645 + - uid: 10646 components: - pos: -45.5,47.5 parent: 2 type: Transform - - uid: 10646 + - uid: 10647 components: - pos: -45.5,48.5 parent: 2 type: Transform - - uid: 10647 + - uid: 10648 components: - pos: -45.5,49.5 parent: 2 type: Transform - - uid: 10648 + - uid: 10649 components: - rot: -1.5707963267948966 rad pos: -41.5,46.5 parent: 2 type: Transform - - uid: 10649 + - uid: 10650 components: - rot: -1.5707963267948966 rad pos: -42.5,46.5 parent: 2 type: Transform - - uid: 10650 + - uid: 10651 components: - rot: -1.5707963267948966 rad pos: -43.5,46.5 parent: 2 type: Transform - - uid: 10651 + - uid: 10652 components: - rot: -1.5707963267948966 rad pos: -44.5,46.5 parent: 2 type: Transform - - uid: 10652 + - uid: 10653 components: - pos: -40.5,45.5 parent: 2 type: Transform - - uid: 10653 + - uid: 10654 components: - pos: -39.5,45.5 parent: 2 type: Transform - - uid: 10654 + - uid: 10655 components: - pos: -38.5,45.5 parent: 2 type: Transform - - uid: 10655 + - uid: 10656 components: - pos: -40.5,46.5 parent: 2 type: Transform - - uid: 10656 + - uid: 10657 components: - pos: -40.5,47.5 parent: 2 type: Transform - - uid: 10657 + - uid: 10658 components: - pos: -40.5,48.5 parent: 2 type: Transform - - uid: 10658 + - uid: 10659 components: - pos: -40.5,49.5 parent: 2 type: Transform - - uid: 10659 + - uid: 10660 components: - pos: -40.5,50.5 parent: 2 type: Transform - - uid: 10660 + - uid: 10661 components: - pos: -40.5,51.5 parent: 2 type: Transform - - uid: 10661 + - uid: 10662 components: - pos: -40.5,52.5 parent: 2 type: Transform - - uid: 10662 + - uid: 10663 components: - pos: -40.5,53.5 parent: 2 type: Transform - - uid: 10663 + - uid: 10664 components: - pos: -48.5,53.5 parent: 2 type: Transform - - uid: 10664 + - uid: 10665 components: - pos: -47.5,53.5 parent: 2 type: Transform - - uid: 10665 + - uid: 10666 components: - pos: -46.5,53.5 parent: 2 type: Transform - - uid: 10666 + - uid: 10667 components: - pos: -45.5,53.5 parent: 2 type: Transform - - uid: 10667 + - uid: 10668 components: - pos: -44.5,53.5 parent: 2 type: Transform - - uid: 10668 + - uid: 10669 components: - pos: -43.5,53.5 parent: 2 type: Transform - - uid: 10669 + - uid: 10670 components: - pos: -42.5,53.5 parent: 2 type: Transform - - uid: 10670 + - uid: 10671 components: - pos: -41.5,53.5 parent: 2 type: Transform - - uid: 10671 + - uid: 10672 components: - pos: -40.5,53.5 parent: 2 type: Transform - - uid: 10672 + - uid: 10673 components: - pos: -39.5,53.5 parent: 2 type: Transform - - uid: 10673 + - uid: 10674 components: - pos: -49.5,0.5 parent: 2 type: Transform - - uid: 10674 + - uid: 10675 components: - pos: -49.5,-0.5 parent: 2 type: Transform - - uid: 10675 + - uid: 10676 components: - pos: -49.5,-1.5 parent: 2 type: Transform - - uid: 10676 + - uid: 10677 components: - pos: -49.5,-2.5 parent: 2 type: Transform - - uid: 10677 + - uid: 10678 components: - pos: -49.5,-3.5 parent: 2 type: Transform - - uid: 10678 + - uid: 10679 components: - pos: -50.5,-3.5 parent: 2 type: Transform - - uid: 10679 + - uid: 10680 components: - pos: -51.5,-3.5 parent: 2 type: Transform - - uid: 10680 + - uid: 10681 components: - pos: -51.5,-2.5 parent: 2 type: Transform - - uid: 10681 + - uid: 10682 components: - pos: -51.5,-1.5 parent: 2 type: Transform - - uid: 10682 + - uid: 10683 components: - pos: -51.5,-0.5 parent: 2 type: Transform - - uid: 10683 + - uid: 10684 components: - pos: -51.5,0.5 parent: 2 type: Transform - - uid: 10684 + - uid: 10685 components: - pos: -51.5,1.5 parent: 2 type: Transform - - uid: 10685 + - uid: 10686 components: - pos: -41.5,-2.5 parent: 2 type: Transform - - uid: 10686 + - uid: 10687 components: - pos: -40.5,-2.5 parent: 2 type: Transform - - uid: 10687 + - uid: 10688 components: - pos: -39.5,-2.5 parent: 2 type: Transform - - uid: 10688 + - uid: 10689 components: - pos: -38.5,-2.5 parent: 2 type: Transform - - uid: 10689 + - uid: 10690 components: - pos: -37.5,-2.5 parent: 2 type: Transform - - uid: 10690 + - uid: 10691 components: - pos: -36.5,-2.5 parent: 2 type: Transform - - uid: 10691 + - uid: 10692 components: - rot: -1.5707963267948966 rad pos: -38.5,53.5 parent: 2 type: Transform - - uid: 10692 + - uid: 10693 components: - rot: -1.5707963267948966 rad pos: -37.5,53.5 parent: 2 type: Transform - - uid: 10693 + - uid: 10694 components: - rot: -1.5707963267948966 rad pos: -36.5,53.5 parent: 2 type: Transform - - uid: 10694 + - uid: 10695 components: - rot: -1.5707963267948966 rad pos: -35.5,53.5 parent: 2 type: Transform - - uid: 10695 + - uid: 10696 components: - rot: -1.5707963267948966 rad pos: -34.5,53.5 parent: 2 type: Transform - - uid: 10696 + - uid: 10697 components: - rot: -1.5707963267948966 rad pos: -33.5,53.5 parent: 2 type: Transform - - uid: 10697 + - uid: 10698 components: - rot: -1.5707963267948966 rad pos: -33.5,54.5 parent: 2 type: Transform - - uid: 10698 + - uid: 10699 components: - rot: -1.5707963267948966 rad pos: -33.5,55.5 parent: 2 type: Transform - - uid: 10699 + - uid: 10700 components: - rot: -1.5707963267948966 rad pos: -33.5,56.5 parent: 2 type: Transform - - uid: 10700 + - uid: 10701 components: - rot: -1.5707963267948966 rad pos: -33.5,57.5 parent: 2 type: Transform - - uid: 10701 + - uid: 10702 components: - rot: -1.5707963267948966 rad pos: -33.5,58.5 parent: 2 type: Transform - - uid: 10702 + - uid: 10703 components: - rot: -1.5707963267948966 rad pos: -33.5,59.5 parent: 2 type: Transform - - uid: 10703 + - uid: 10704 components: - rot: -1.5707963267948966 rad pos: -33.5,60.5 parent: 2 type: Transform - - uid: 10704 + - uid: 10705 components: - rot: -1.5707963267948966 rad pos: -33.5,61.5 parent: 2 type: Transform - - uid: 10705 + - uid: 10706 components: - rot: -1.5707963267948966 rad pos: -33.5,62.5 parent: 2 type: Transform - - uid: 10706 + - uid: 10707 components: - rot: -1.5707963267948966 rad pos: -33.5,63.5 parent: 2 type: Transform - - uid: 10707 + - uid: 10708 components: - rot: -1.5707963267948966 rad pos: -33.5,64.5 parent: 2 type: Transform - - uid: 10708 + - uid: 10709 components: - rot: -1.5707963267948966 rad pos: -33.5,65.5 parent: 2 type: Transform - - uid: 10709 + - uid: 10710 components: - rot: -1.5707963267948966 rad pos: -33.5,66.5 parent: 2 type: Transform - - uid: 10710 + - uid: 10711 components: - rot: -1.5707963267948966 rad pos: -33.5,67.5 parent: 2 type: Transform - - uid: 10711 + - uid: 10712 components: - rot: -1.5707963267948966 rad pos: -33.5,68.5 parent: 2 type: Transform - - uid: 10712 + - uid: 10713 components: - rot: -1.5707963267948966 rad pos: -33.5,69.5 parent: 2 type: Transform - - uid: 10713 + - uid: 10714 components: - rot: -1.5707963267948966 rad pos: -33.5,70.5 parent: 2 type: Transform - - uid: 10714 + - uid: 10715 components: - rot: -1.5707963267948966 rad pos: -33.5,71.5 parent: 2 type: Transform - - uid: 10715 + - uid: 10716 components: - rot: -1.5707963267948966 rad pos: -33.5,72.5 parent: 2 type: Transform - - uid: 10716 + - uid: 10717 components: - rot: -1.5707963267948966 rad pos: -34.5,72.5 parent: 2 type: Transform - - uid: 10717 + - uid: 10718 components: - rot: -1.5707963267948966 rad pos: -35.5,72.5 parent: 2 type: Transform - - uid: 10718 + - uid: 10719 components: - rot: -1.5707963267948966 rad pos: -36.5,72.5 parent: 2 type: Transform - - uid: 10719 + - uid: 10720 components: - rot: -1.5707963267948966 rad pos: -37.5,72.5 parent: 2 type: Transform - - uid: 10720 + - uid: 10721 components: - rot: -1.5707963267948966 rad pos: -38.5,72.5 parent: 2 type: Transform - - uid: 10721 + - uid: 10722 components: - rot: -1.5707963267948966 rad pos: -39.5,72.5 parent: 2 type: Transform - - uid: 10722 + - uid: 10723 components: - rot: -1.5707963267948966 rad pos: -40.5,72.5 parent: 2 type: Transform - - uid: 10723 + - uid: 10724 components: - rot: -1.5707963267948966 rad pos: -41.5,72.5 parent: 2 type: Transform - - uid: 10724 + - uid: 10725 components: - rot: -1.5707963267948966 rad pos: -42.5,72.5 parent: 2 type: Transform - - uid: 10725 + - uid: 10726 components: - rot: -1.5707963267948966 rad pos: -43.5,72.5 parent: 2 type: Transform - - uid: 10726 + - uid: 10727 components: - rot: -1.5707963267948966 rad pos: -44.5,72.5 parent: 2 type: Transform - - uid: 10727 + - uid: 10728 components: - rot: -1.5707963267948966 rad pos: -45.5,72.5 parent: 2 type: Transform - - uid: 10728 + - uid: 10729 components: - rot: -1.5707963267948966 rad pos: -46.5,72.5 parent: 2 type: Transform - - uid: 10729 + - uid: 10730 components: - rot: -1.5707963267948966 rad pos: -47.5,72.5 parent: 2 type: Transform - - uid: 10730 + - uid: 10731 components: - rot: -1.5707963267948966 rad pos: -48.5,72.5 parent: 2 type: Transform - - uid: 10731 + - uid: 10732 components: - rot: -1.5707963267948966 rad pos: -49.5,72.5 parent: 2 type: Transform - - uid: 10732 + - uid: 10733 components: - rot: -1.5707963267948966 rad pos: -50.5,72.5 parent: 2 type: Transform - - uid: 10733 + - uid: 10734 components: - rot: -1.5707963267948966 rad pos: -51.5,72.5 parent: 2 type: Transform - - uid: 10734 + - uid: 10735 components: - rot: -1.5707963267948966 rad pos: -52.5,72.5 parent: 2 type: Transform - - uid: 10735 + - uid: 10736 components: - rot: -1.5707963267948966 rad pos: -53.5,72.5 parent: 2 type: Transform - - uid: 10736 + - uid: 10737 components: - rot: -1.5707963267948966 rad pos: -54.5,72.5 parent: 2 type: Transform - - uid: 10737 + - uid: 10738 components: - rot: -1.5707963267948966 rad pos: -55.5,72.5 parent: 2 type: Transform - - uid: 10738 + - uid: 10739 components: - rot: -1.5707963267948966 rad pos: -56.5,72.5 parent: 2 type: Transform - - uid: 10739 + - uid: 10740 components: - rot: -1.5707963267948966 rad pos: -57.5,72.5 parent: 2 type: Transform - - uid: 10740 + - uid: 10741 components: - rot: -1.5707963267948966 rad pos: -58.5,72.5 parent: 2 type: Transform - - uid: 10741 + - uid: 10742 components: - rot: -1.5707963267948966 rad pos: -59.5,72.5 parent: 2 type: Transform - - uid: 10742 + - uid: 10743 components: - rot: -1.5707963267948966 rad pos: -60.5,72.5 parent: 2 type: Transform - - uid: 10743 + - uid: 10744 components: - rot: -1.5707963267948966 rad pos: -61.5,72.5 parent: 2 type: Transform - - uid: 10744 + - uid: 10745 components: - rot: -1.5707963267948966 rad pos: -61.5,71.5 parent: 2 type: Transform - - uid: 10745 + - uid: 10746 components: - rot: -1.5707963267948966 rad pos: -61.5,70.5 parent: 2 type: Transform - - uid: 10746 + - uid: 10747 components: - rot: -1.5707963267948966 rad pos: -61.5,69.5 parent: 2 type: Transform - - uid: 10747 + - uid: 10748 components: - rot: -1.5707963267948966 rad pos: -61.5,68.5 parent: 2 type: Transform - - uid: 10748 + - uid: 10749 components: - rot: -1.5707963267948966 rad pos: -61.5,67.5 parent: 2 type: Transform - - uid: 10749 + - uid: 10750 components: - rot: -1.5707963267948966 rad pos: -61.5,66.5 parent: 2 type: Transform - - uid: 10750 + - uid: 10751 components: - rot: -1.5707963267948966 rad pos: -61.5,65.5 parent: 2 type: Transform - - uid: 10751 + - uid: 10752 components: - rot: -1.5707963267948966 rad pos: -61.5,64.5 parent: 2 type: Transform - - uid: 10752 + - uid: 10753 components: - rot: -1.5707963267948966 rad pos: -61.5,63.5 parent: 2 type: Transform - - uid: 10753 + - uid: 10754 components: - rot: -1.5707963267948966 rad pos: -61.5,62.5 parent: 2 type: Transform - - uid: 10754 + - uid: 10755 components: - rot: -1.5707963267948966 rad pos: -61.5,61.5 parent: 2 type: Transform - - uid: 10755 + - uid: 10756 components: - rot: -1.5707963267948966 rad pos: -61.5,60.5 parent: 2 type: Transform - - uid: 10756 + - uid: 10757 components: - rot: -1.5707963267948966 rad pos: -61.5,59.5 parent: 2 type: Transform - - uid: 10757 + - uid: 10758 components: - rot: -1.5707963267948966 rad pos: -61.5,58.5 parent: 2 type: Transform - - uid: 10758 + - uid: 10759 components: - rot: -1.5707963267948966 rad pos: -61.5,57.5 parent: 2 type: Transform - - uid: 10759 + - uid: 10760 components: - rot: -1.5707963267948966 rad pos: -61.5,56.5 parent: 2 type: Transform - - uid: 10760 + - uid: 10761 components: - rot: 1.5707963267948966 rad pos: -53.5,53.5 parent: 2 type: Transform - - uid: 10761 + - uid: 10762 components: - rot: 1.5707963267948966 rad pos: -53.5,54.5 parent: 2 type: Transform - - uid: 10762 + - uid: 10763 components: - rot: 1.5707963267948966 rad pos: -53.5,55.5 parent: 2 type: Transform - - uid: 10763 + - uid: 10764 components: - rot: 1.5707963267948966 rad pos: -54.5,56.5 parent: 2 type: Transform - - uid: 10764 + - uid: 10765 components: - rot: 1.5707963267948966 rad pos: -56.5,56.5 parent: 2 type: Transform - - uid: 10765 + - uid: 10766 components: - rot: 1.5707963267948966 rad pos: -58.5,56.5 parent: 2 type: Transform - - uid: 10766 + - uid: 10767 components: - rot: 1.5707963267948966 rad pos: -60.5,56.5 parent: 2 type: Transform - - uid: 10767 + - uid: 10768 components: - rot: -1.5707963267948966 rad pos: -52.5,53.5 parent: 2 type: Transform - - uid: 10768 + - uid: 10769 components: - rot: -1.5707963267948966 rad pos: -51.5,53.5 parent: 2 type: Transform - - uid: 10769 + - uid: 10770 components: - rot: -1.5707963267948966 rad pos: -50.5,53.5 parent: 2 type: Transform - - uid: 10770 + - uid: 10771 components: - rot: -1.5707963267948966 rad pos: -49.5,53.5 parent: 2 type: Transform - - uid: 10771 + - uid: 10772 components: - pos: 12.5,-92.5 parent: 2 type: Transform - - uid: 10772 + - uid: 10773 components: - pos: 11.5,-99.5 parent: 2 type: Transform - - uid: 10773 + - uid: 10774 components: - rot: 3.141592653589793 rad pos: 1.5,-71.5 parent: 2 type: Transform - - uid: 10774 + - uid: 10775 components: - rot: 3.141592653589793 rad pos: 2.5,-67.5 parent: 2 type: Transform - - uid: 10775 + - uid: 10776 components: - rot: 3.141592653589793 rad pos: 3.5,-71.5 parent: 2 type: Transform - - uid: 10776 + - uid: 10777 components: - rot: 3.141592653589793 rad pos: 4.5,-71.5 parent: 2 type: Transform - - uid: 10777 + - uid: 10778 components: - rot: 3.141592653589793 rad pos: 2.5,-68.5 parent: 2 type: Transform - - uid: 10778 + - uid: 10779 components: - rot: -1.5707963267948966 rad pos: -79.5,-25.5 parent: 2 type: Transform - - uid: 10779 + - uid: 10780 components: - rot: -1.5707963267948966 rad pos: -79.5,-24.5 parent: 2 type: Transform - - uid: 10780 + - uid: 10781 components: - rot: -1.5707963267948966 rad pos: -79.5,-23.5 parent: 2 type: Transform - - uid: 10781 + - uid: 10782 components: - rot: -1.5707963267948966 rad pos: -79.5,-21.5 parent: 2 type: Transform - - uid: 10782 + - uid: 10783 components: - rot: -1.5707963267948966 rad pos: -79.5,-20.5 parent: 2 type: Transform - - uid: 10783 + - uid: 10784 components: - rot: -1.5707963267948966 rad pos: -79.5,-18.5 parent: 2 type: Transform - - uid: 10784 + - uid: 10785 components: - rot: -1.5707963267948966 rad pos: -79.5,-17.5 parent: 2 type: Transform - - uid: 10785 + - uid: 10786 components: - rot: -1.5707963267948966 rad pos: -79.5,-16.5 parent: 2 type: Transform - - uid: 10786 + - uid: 10787 components: - rot: -1.5707963267948966 rad pos: -79.5,-14.5 parent: 2 type: Transform - - uid: 10787 + - uid: 10788 components: - rot: -1.5707963267948966 rad pos: -79.5,-12.5 parent: 2 type: Transform - - uid: 10788 + - uid: 10789 components: - rot: -1.5707963267948966 rad pos: -79.5,-13.5 parent: 2 type: Transform - - uid: 10789 + - uid: 10790 components: - pos: -13.5,-8.5 parent: 2 type: Transform - - uid: 10790 + - uid: 10791 components: - rot: 3.141592653589793 rad pos: 23.5,-89.5 parent: 2 type: Transform - - uid: 10791 + - uid: 10792 components: - pos: 36.5,23.5 parent: 2 type: Transform - - uid: 10792 + - uid: 10793 components: - pos: 37.5,23.5 parent: 2 type: Transform - - uid: 10793 + - uid: 10794 components: - pos: 38.5,23.5 parent: 2 type: Transform - - uid: 10794 + - uid: 10795 components: - pos: 39.5,23.5 parent: 2 type: Transform - - uid: 10795 + - uid: 10796 components: - pos: 40.5,23.5 parent: 2 type: Transform - - uid: 10796 + - uid: 10797 components: - pos: 41.5,23.5 parent: 2 type: Transform - - uid: 10797 + - uid: 10798 components: - pos: 42.5,23.5 parent: 2 type: Transform - - uid: 10798 + - uid: 10799 components: - pos: 35.5,23.5 parent: 2 type: Transform - - uid: 10799 + - uid: 10800 components: - pos: 43.5,23.5 parent: 2 type: Transform - - uid: 10800 + - uid: 10801 components: - pos: 46.5,26.5 parent: 2 type: Transform - - uid: 10801 + - uid: 10802 components: - pos: 47.5,26.5 parent: 2 type: Transform - - uid: 10802 + - uid: 10803 components: - pos: 48.5,26.5 parent: 2 type: Transform - - uid: 10803 + - uid: 10804 components: - pos: 11.5,-97.5 parent: 2 type: Transform - - uid: 10804 + - uid: 10805 components: - pos: 11.5,-93.5 parent: 2 type: Transform - - uid: 10805 + - uid: 10806 components: - pos: 11.5,-94.5 parent: 2 type: Transform - - uid: 10806 + - uid: 10807 components: - pos: 11.5,-95.5 parent: 2 type: Transform - - uid: 10807 + - uid: 10808 components: - pos: 11.5,-98.5 parent: 2 type: Transform - - uid: 10808 + - uid: 10809 components: - pos: 11.5,-96.5 parent: 2 type: Transform - - uid: 10809 + - uid: 10810 components: - pos: 11.5,-104.5 parent: 2 type: Transform - - uid: 10810 + - uid: 10811 components: - pos: 11.5,-103.5 parent: 2 type: Transform - - uid: 10811 + - uid: 10812 components: - pos: 11.5,-102.5 parent: 2 type: Transform - - uid: 10812 + - uid: 10813 components: - pos: 11.5,-101.5 parent: 2 type: Transform - - uid: 10813 + - uid: 10814 components: - rot: 3.141592653589793 rad pos: 19.5,-53.5 parent: 2 type: Transform - - uid: 10814 + - uid: 10815 components: - rot: 3.141592653589793 rad pos: 18.5,-53.5 parent: 2 type: Transform - - uid: 10815 + - uid: 10816 components: - rot: 3.141592653589793 rad pos: 22.5,-53.5 parent: 2 type: Transform - - uid: 10816 + - uid: 10817 components: - pos: -79.5,-27.5 parent: 2 type: Transform - - uid: 10817 + - uid: 10818 components: - pos: -79.5,-28.5 parent: 2 type: Transform - - uid: 10818 + - uid: 10819 components: - pos: -79.5,-29.5 parent: 2 type: Transform - - uid: 10819 + - uid: 10820 components: - pos: -79.5,-30.5 parent: 2 type: Transform - - uid: 10820 + - uid: 10821 components: - pos: -79.5,-31.5 parent: 2 type: Transform - - uid: 10821 + - uid: 10822 components: - pos: -78.5,-31.5 parent: 2 type: Transform - - uid: 10822 + - uid: 10823 components: - pos: -78.5,-32.5 parent: 2 type: Transform - - uid: 10823 + - uid: 10824 components: - pos: -78.5,-33.5 parent: 2 type: Transform - - uid: 10824 + - uid: 10825 components: - pos: -77.5,-33.5 parent: 2 type: Transform - - uid: 10825 + - uid: 10826 components: - pos: -76.5,-33.5 parent: 2 type: Transform - - uid: 10826 + - uid: 10827 components: - pos: -76.5,-34.5 parent: 2 type: Transform - - uid: 10827 + - uid: 10828 components: - pos: -76.5,-35.5 parent: 2 type: Transform - - uid: 10828 + - uid: 10829 components: - pos: -61.5,-36.5 parent: 2 type: Transform - - uid: 10829 + - uid: 10830 components: - pos: -61.5,-37.5 parent: 2 type: Transform - - uid: 10830 + - uid: 10831 components: - pos: -61.5,-38.5 parent: 2 type: Transform - - uid: 10831 + - uid: 10832 components: - pos: -61.5,-39.5 parent: 2 type: Transform - - uid: 10832 + - uid: 10833 components: - pos: -61.5,-40.5 parent: 2 type: Transform - - uid: 10833 + - uid: 10834 components: - pos: -61.5,-41.5 parent: 2 type: Transform - - uid: 10834 + - uid: 10835 components: - pos: -61.5,-42.5 parent: 2 type: Transform - - uid: 10835 + - uid: 10836 components: - pos: -61.5,-43.5 parent: 2 type: Transform - - uid: 10836 + - uid: 10837 components: - pos: -61.5,-44.5 parent: 2 type: Transform - - uid: 10837 + - uid: 10838 components: - pos: -61.5,-45.5 parent: 2 type: Transform - - uid: 10838 + - uid: 10839 components: - pos: -61.5,-46.5 parent: 2 type: Transform - - uid: 10839 + - uid: 10840 components: - pos: -61.5,-47.5 parent: 2 type: Transform - - uid: 10840 + - uid: 10841 components: - pos: -61.5,-48.5 parent: 2 type: Transform - - uid: 10841 + - uid: 10842 components: - pos: -61.5,-49.5 parent: 2 type: Transform - - uid: 10842 + - uid: 10843 components: - pos: -61.5,-50.5 parent: 2 type: Transform - - uid: 10843 + - uid: 10844 components: - pos: -61.5,-51.5 parent: 2 type: Transform - - uid: 10844 + - uid: 10845 components: - pos: -61.5,-52.5 parent: 2 type: Transform - - uid: 10845 + - uid: 10846 components: - pos: -61.5,-53.5 parent: 2 type: Transform - - uid: 10846 + - uid: 10847 components: - pos: -61.5,-54.5 parent: 2 type: Transform - - uid: 10847 + - uid: 10848 components: - pos: -61.5,-55.5 parent: 2 type: Transform - - uid: 10848 + - uid: 10849 components: - pos: -18.5,-52.5 parent: 2 type: Transform - - uid: 10849 + - uid: 10850 components: - rot: -1.5707963267948966 rad pos: 14.5,-60.5 parent: 2 type: Transform - - uid: 10850 + - uid: 10851 components: - rot: -1.5707963267948966 rad pos: 14.5,-61.5 parent: 2 type: Transform - - uid: 10851 + - uid: 10852 components: - rot: -1.5707963267948966 rad pos: 14.5,-62.5 parent: 2 type: Transform - - uid: 10852 + - uid: 10853 components: - rot: -1.5707963267948966 rad pos: 14.5,-63.5 parent: 2 type: Transform - - uid: 10853 + - uid: 10854 components: - rot: -1.5707963267948966 rad pos: 14.5,-64.5 parent: 2 type: Transform - - uid: 10854 + - uid: 10855 components: - rot: -1.5707963267948966 rad pos: 8.5,-67.5 parent: 2 type: Transform - - uid: 10855 + - uid: 10856 components: - rot: -1.5707963267948966 rad pos: 9.5,-67.5 parent: 2 type: Transform - - uid: 10856 + - uid: 10857 components: - rot: -1.5707963267948966 rad pos: 10.5,-67.5 parent: 2 type: Transform - - uid: 10857 + - uid: 10858 components: - rot: -1.5707963267948966 rad pos: 11.5,-67.5 parent: 2 type: Transform - - uid: 10858 + - uid: 10859 components: - rot: -1.5707963267948966 rad pos: 12.5,-67.5 parent: 2 type: Transform - - uid: 10859 + - uid: 10860 components: - rot: -1.5707963267948966 rad pos: 13.5,-67.5 parent: 2 type: Transform - - uid: 10860 + - uid: 10861 components: - rot: -1.5707963267948966 rad pos: 14.5,-67.5 parent: 2 type: Transform - - uid: 10861 + - uid: 10862 components: - rot: 1.5707963267948966 rad pos: 42.5,-13.5 parent: 2 type: Transform - - uid: 10862 + - uid: 10863 components: - rot: 1.5707963267948966 rad pos: 43.5,-13.5 parent: 2 type: Transform - - uid: 10863 + - uid: 10864 components: - rot: 1.5707963267948966 rad pos: 44.5,-13.5 parent: 2 type: Transform - - uid: 10864 + - uid: 10865 components: - rot: 1.5707963267948966 rad pos: 45.5,-13.5 parent: 2 type: Transform - - uid: 10865 + - uid: 10866 components: - rot: 1.5707963267948966 rad pos: 46.5,-13.5 parent: 2 type: Transform - - uid: 10866 + - uid: 10867 components: - rot: 1.5707963267948966 rad pos: 47.5,-13.5 parent: 2 type: Transform - - uid: 10867 + - uid: 10868 components: - rot: 1.5707963267948966 rad pos: 48.5,-13.5 parent: 2 type: Transform - - uid: 10868 + - uid: 10869 components: - pos: 49.5,26.5 parent: 2 type: Transform - - uid: 10869 + - uid: 10870 components: - pos: 50.5,26.5 parent: 2 type: Transform - - uid: 10870 + - uid: 10871 components: - pos: 51.5,26.5 parent: 2 type: Transform - - uid: 10871 + - uid: 10872 components: - pos: 52.5,26.5 parent: 2 type: Transform - - uid: 10872 + - uid: 10873 components: - pos: 53.5,26.5 parent: 2 type: Transform - - uid: 10873 + - uid: 10874 components: - rot: 3.141592653589793 rad pos: 49.5,38.5 parent: 2 type: Transform - - uid: 10874 + - uid: 10875 components: - rot: 3.141592653589793 rad pos: 49.5,37.5 parent: 2 type: Transform - - uid: 10875 + - uid: 10876 components: - rot: 3.141592653589793 rad pos: 49.5,36.5 parent: 2 type: Transform - - uid: 10876 + - uid: 10877 components: - rot: 3.141592653589793 rad pos: 49.5,35.5 parent: 2 type: Transform - - uid: 10877 + - uid: 10878 components: - rot: 3.141592653589793 rad pos: 48.5,35.5 parent: 2 type: Transform - - uid: 10878 + - uid: 10879 components: - rot: 3.141592653589793 rad pos: 47.5,35.5 parent: 2 type: Transform - - uid: 10879 + - uid: 10880 components: - rot: 3.141592653589793 rad pos: 52.5,31.5 parent: 2 type: Transform - - uid: 10880 + - uid: 10881 components: - rot: 3.141592653589793 rad pos: 52.5,32.5 parent: 2 type: Transform - - uid: 10881 + - uid: 10882 components: - rot: 3.141592653589793 rad pos: 52.5,33.5 parent: 2 type: Transform - - uid: 10882 + - uid: 10883 components: - pos: 81.5,36.5 parent: 2 type: Transform - - uid: 10883 + - uid: 10884 components: - pos: 80.5,36.5 parent: 2 type: Transform - - uid: 10884 + - uid: 10885 components: - pos: 86.5,36.5 parent: 2 type: Transform - - uid: 10885 + - uid: 10886 components: - pos: 87.5,36.5 parent: 2 type: Transform - - uid: 10886 + - uid: 10887 components: - pos: 79.5,36.5 parent: 2 type: Transform - - uid: 10887 + - uid: 10888 components: - pos: 78.5,36.5 parent: 2 type: Transform - - uid: 10888 + - uid: 10889 components: - pos: 88.5,36.5 parent: 2 type: Transform - - uid: 10889 + - uid: 10890 components: - pos: 82.5,36.5 parent: 2 type: Transform - - uid: 10890 + - uid: 10891 components: - pos: -24.5,47.5 parent: 2 type: Transform - - uid: 10891 + - uid: 10892 components: - pos: -24.5,46.5 parent: 2 type: Transform - - uid: 10892 + - uid: 10893 components: - pos: -24.5,45.5 parent: 2 type: Transform - - uid: 10893 + - uid: 10894 components: - pos: -24.5,44.5 parent: 2 type: Transform - - uid: 10894 + - uid: 10895 components: - pos: -24.5,43.5 parent: 2 type: Transform - - uid: 10895 + - uid: 10896 components: - pos: -24.5,42.5 parent: 2 type: Transform - - uid: 10896 + - uid: 10897 components: - pos: -24.5,41.5 parent: 2 type: Transform - - uid: 10897 + - uid: 10898 components: - pos: -24.5,40.5 parent: 2 type: Transform - - uid: 10898 + - uid: 10899 components: - pos: -24.5,39.5 parent: 2 type: Transform - - uid: 10899 + - uid: 10900 components: - pos: -24.5,38.5 parent: 2 type: Transform - - uid: 10900 + - uid: 10901 components: - pos: -31.5,39.5 parent: 2 type: Transform - - uid: 10901 + - uid: 10902 components: - pos: -32.5,39.5 parent: 2 type: Transform - - uid: 10902 + - uid: 10903 components: - pos: -33.5,39.5 parent: 2 type: Transform - - uid: 10903 + - uid: 10904 components: - pos: -34.5,39.5 parent: 2 type: Transform - - uid: 10904 + - uid: 10905 components: - pos: -35.5,39.5 parent: 2 type: Transform - - uid: 10905 + - uid: 10906 components: - pos: -36.5,39.5 parent: 2 type: Transform - - uid: 10906 + - uid: 10907 components: - pos: -39.5,39.5 parent: 2 type: Transform - - uid: 10907 + - uid: 10908 components: - pos: -40.5,39.5 parent: 2 type: Transform - - uid: 10908 + - uid: 10909 components: - pos: -41.5,39.5 parent: 2 type: Transform - - uid: 10909 + - uid: 10910 components: - pos: -42.5,39.5 parent: 2 type: Transform - - uid: 10910 + - uid: 10911 components: - pos: -43.5,39.5 parent: 2 type: Transform - - uid: 10911 + - uid: 10912 components: - pos: -2.5,28.5 parent: 2 type: Transform - - uid: 10912 + - uid: 10913 components: - pos: -2.5,27.5 parent: 2 type: Transform - - uid: 10913 + - uid: 10914 components: - pos: -2.5,26.5 parent: 2 type: Transform - - uid: 10914 + - uid: 10915 components: - pos: -2.5,25.5 parent: 2 type: Transform - - uid: 10915 + - uid: 10916 components: - pos: -12.5,26.5 parent: 2 type: Transform - - uid: 10916 + - uid: 10917 components: - pos: -11.5,26.5 parent: 2 type: Transform - - uid: 10917 + - uid: 10918 components: - pos: -10.5,26.5 parent: 2 type: Transform - - uid: 10918 + - uid: 10919 components: - pos: -10.5,24.5 parent: 2 type: Transform - - uid: 10919 + - uid: 10920 components: - pos: -37.5,45.5 parent: 2 type: Transform - - uid: 10920 + - uid: 10921 components: - pos: -37.5,44.5 parent: 2 type: Transform - - uid: 10921 + - uid: 10922 components: - pos: -17.5,58.5 parent: 2 type: Transform - - uid: 10922 + - uid: 10923 components: - pos: -17.5,57.5 parent: 2 type: Transform - - uid: 10923 + - uid: 10924 components: - pos: -17.5,56.5 parent: 2 type: Transform - - uid: 10924 + - uid: 10925 components: - pos: -17.5,55.5 parent: 2 type: Transform - - uid: 10925 + - uid: 10926 components: - pos: -17.5,54.5 parent: 2 type: Transform - - uid: 10926 + - uid: 10927 components: - pos: -17.5,53.5 parent: 2 type: Transform - - uid: 10927 + - uid: 10928 components: - rot: 1.5707963267948966 rad pos: -11.5,24.5 parent: 2 type: Transform - - uid: 10928 + - uid: 10929 components: - rot: 3.141592653589793 rad pos: 66.5,36.5 parent: 2 type: Transform - - uid: 10929 + - uid: 10930 components: - rot: 3.141592653589793 rad pos: 65.5,36.5 parent: 2 type: Transform - - uid: 10930 + - uid: 10931 components: - rot: 3.141592653589793 rad pos: 64.5,36.5 parent: 2 type: Transform - - uid: 10931 + - uid: 10932 components: - rot: 3.141592653589793 rad pos: 63.5,36.5 parent: 2 type: Transform - - uid: 10932 + - uid: 10933 components: - rot: 3.141592653589793 rad pos: 63.5,35.5 parent: 2 type: Transform - - uid: 10933 + - uid: 10934 components: - rot: 3.141592653589793 rad pos: 63.5,34.5 parent: 2 type: Transform - - uid: 10934 + - uid: 10935 components: - rot: 3.141592653589793 rad pos: 63.5,33.5 parent: 2 type: Transform - - uid: 10935 + - uid: 10936 components: - pos: 83.5,36.5 parent: 2 type: Transform - - uid: 10936 + - uid: 10937 components: - pos: 84.5,36.5 parent: 2 type: Transform - - uid: 10937 + - uid: 10938 components: - pos: 85.5,36.5 parent: 2 type: Transform - - uid: 10938 + - uid: 10939 components: - pos: 89.5,36.5 parent: 2 type: Transform - - uid: 10939 + - uid: 10940 components: - pos: 90.5,36.5 parent: 2 type: Transform - - uid: 10940 + - uid: 10941 components: - pos: -22.5,27.5 parent: 2 type: Transform - - uid: 10941 + - uid: 10942 components: - pos: -23.5,27.5 parent: 2 type: Transform - - uid: 10942 + - uid: 10943 components: - pos: -24.5,27.5 parent: 2 type: Transform - - uid: 10943 + - uid: 10944 components: - pos: -25.5,27.5 parent: 2 type: Transform - - uid: 10944 + - uid: 10945 components: - pos: -26.5,27.5 parent: 2 type: Transform - - uid: 10945 + - uid: 10946 components: - pos: -27.5,27.5 parent: 2 type: Transform - - uid: 10946 + - uid: 10947 components: - pos: -28.5,27.5 parent: 2 type: Transform - - uid: 10947 + - uid: 10948 components: - pos: 29.5,55.5 parent: 2 type: Transform - - uid: 10948 + - uid: 10949 components: - pos: 29.5,56.5 parent: 2 type: Transform - - uid: 10949 + - uid: 10950 components: - pos: 29.5,57.5 parent: 2 type: Transform - - uid: 10950 + - uid: 10951 components: - pos: 29.5,58.5 parent: 2 type: Transform - - uid: 10951 + - uid: 10952 components: - pos: 29.5,59.5 parent: 2 type: Transform - - uid: 10952 + - uid: 10953 components: - pos: 29.5,60.5 parent: 2 type: Transform - - uid: 10953 + - uid: 10954 components: - pos: 29.5,61.5 parent: 2 type: Transform - - uid: 10954 + - uid: 10955 components: - pos: 29.5,62.5 parent: 2 type: Transform - - uid: 10955 + - uid: 10956 components: - pos: 28.5,62.5 parent: 2 type: Transform - - uid: 10956 + - uid: 10957 components: - pos: 27.5,62.5 parent: 2 type: Transform - - uid: 10957 + - uid: 10958 components: - pos: 26.5,62.5 parent: 2 type: Transform - - uid: 10958 + - uid: 10959 components: - pos: 25.5,62.5 parent: 2 type: Transform - - uid: 10959 + - uid: 10960 components: - pos: 24.5,62.5 parent: 2 type: Transform - - uid: 10960 + - uid: 10961 components: - pos: 23.5,62.5 parent: 2 type: Transform - - uid: 10961 + - uid: 10962 components: - pos: 22.5,62.5 parent: 2 type: Transform - - uid: 10962 + - uid: 10963 components: - pos: 21.5,62.5 parent: 2 type: Transform - - uid: 10963 + - uid: 10964 components: - pos: 20.5,62.5 parent: 2 type: Transform - - uid: 10964 + - uid: 10965 components: - pos: 19.5,62.5 parent: 2 type: Transform - - uid: 10965 + - uid: 10966 components: - pos: 18.5,62.5 parent: 2 type: Transform - - uid: 10966 + - uid: 10967 components: - pos: 17.5,62.5 parent: 2 type: Transform - - uid: 10967 + - uid: 10968 components: - pos: 16.5,62.5 parent: 2 type: Transform - - uid: 10968 + - uid: 10969 components: - pos: 15.5,62.5 parent: 2 type: Transform - - uid: 10969 + - uid: 10970 components: - pos: 14.5,62.5 parent: 2 type: Transform - - uid: 10970 + - uid: 10971 components: - pos: 13.5,62.5 parent: 2 type: Transform - - uid: 10971 + - uid: 10972 components: - pos: 12.5,62.5 parent: 2 type: Transform - - uid: 10972 + - uid: 10973 components: - pos: 11.5,62.5 parent: 2 type: Transform - - uid: 10973 + - uid: 10974 components: - pos: 10.5,62.5 parent: 2 type: Transform - - uid: 10974 + - uid: 10975 components: - pos: 9.5,62.5 parent: 2 type: Transform - - uid: 10975 + - uid: 10976 components: - pos: 8.5,62.5 parent: 2 type: Transform - - uid: 10976 + - uid: 10977 components: - pos: 7.5,62.5 parent: 2 type: Transform - - uid: 10977 + - uid: 10978 components: - pos: 7.5,63.5 parent: 2 type: Transform - - uid: 10978 + - uid: 10979 components: - pos: 7.5,64.5 parent: 2 type: Transform - - uid: 10979 + - uid: 10980 components: - pos: 7.5,65.5 parent: 2 type: Transform - - uid: 10980 + - uid: 10981 components: - pos: 7.5,66.5 parent: 2 type: Transform - - uid: 10981 + - uid: 10982 components: - pos: 7.5,67.5 parent: 2 type: Transform - - uid: 10982 + - uid: 10983 components: - pos: 7.5,68.5 parent: 2 type: Transform - - uid: 10983 + - uid: 10984 components: - pos: 7.5,69.5 parent: 2 type: Transform - - uid: 10984 + - uid: 10985 components: - pos: 7.5,70.5 parent: 2 type: Transform - - uid: 10985 + - uid: 10986 components: - pos: 7.5,71.5 parent: 2 type: Transform - - uid: 10986 + - uid: 10987 components: - pos: 7.5,72.5 parent: 2 type: Transform - - uid: 10987 + - uid: 10988 components: - pos: 7.5,73.5 parent: 2 type: Transform - - uid: 10988 + - uid: 10989 components: - pos: 7.5,74.5 parent: 2 type: Transform - - uid: 10989 + - uid: 10990 components: - pos: 7.5,75.5 parent: 2 type: Transform - - uid: 10990 + - uid: 10991 components: - pos: 6.5,75.5 parent: 2 type: Transform - - uid: 10991 + - uid: 10992 components: - pos: 5.5,75.5 parent: 2 type: Transform - - uid: 10992 + - uid: 10993 components: - pos: 4.5,75.5 parent: 2 type: Transform - - uid: 10993 + - uid: 10994 components: - pos: 3.5,75.5 parent: 2 type: Transform - - uid: 10994 + - uid: 10995 components: - pos: 2.5,75.5 parent: 2 type: Transform - - uid: 10995 + - uid: 10996 components: - pos: 1.5,75.5 parent: 2 type: Transform - - uid: 10996 + - uid: 10997 components: - pos: 0.5,75.5 parent: 2 type: Transform - - uid: 10997 + - uid: 10998 components: - pos: -0.5,75.5 parent: 2 type: Transform - - uid: 10998 + - uid: 10999 components: - pos: -1.5,75.5 parent: 2 type: Transform - - uid: 10999 + - uid: 11000 components: - pos: -2.5,75.5 parent: 2 type: Transform - - uid: 11000 + - uid: 11001 components: - pos: -3.5,75.5 parent: 2 type: Transform - - uid: 11001 + - uid: 11002 components: - pos: -4.5,75.5 parent: 2 type: Transform - - uid: 11002 + - uid: 11003 components: - pos: -5.5,75.5 parent: 2 type: Transform - - uid: 11003 + - uid: 11004 components: - pos: -6.5,75.5 parent: 2 type: Transform - - uid: 11004 + - uid: 11005 components: - pos: -7.5,75.5 parent: 2 type: Transform - - uid: 11005 + - uid: 11006 components: - pos: -8.5,75.5 parent: 2 type: Transform - - uid: 11006 + - uid: 11007 components: - pos: -9.5,75.5 parent: 2 type: Transform - - uid: 11007 + - uid: 11008 components: - pos: -10.5,75.5 parent: 2 type: Transform - - uid: 11008 + - uid: 11009 components: - pos: 1.5,-92.5 parent: 2 type: Transform - - uid: 11009 + - uid: 11010 components: - pos: 0.5,-92.5 parent: 2 type: Transform - - uid: 11010 + - uid: 11011 components: - pos: -0.5,-92.5 parent: 2 type: Transform - - uid: 11011 + - uid: 11012 components: - pos: -0.5,-93.5 parent: 2 type: Transform - - uid: 11012 + - uid: 11013 components: - pos: -0.5,-94.5 parent: 2 type: Transform - - uid: 11013 + - uid: 11014 components: - pos: -0.5,-95.5 parent: 2 type: Transform - - uid: 11014 + - uid: 11015 components: - pos: -0.5,-96.5 parent: 2 type: Transform - - uid: 11015 + - uid: 11016 components: - pos: -0.5,-97.5 parent: 2 type: Transform - - uid: 11016 + - uid: 11017 components: - pos: -0.5,-98.5 parent: 2 type: Transform - - uid: 11017 + - uid: 11018 components: - pos: -0.5,-99.5 parent: 2 type: Transform - - uid: 11018 + - uid: 11019 components: - pos: -0.5,-100.5 parent: 2 type: Transform - - uid: 11019 + - uid: 11020 components: - pos: -0.5,-101.5 parent: 2 type: Transform - - uid: 11020 + - uid: 11021 components: - pos: -0.5,-102.5 parent: 2 type: Transform - - uid: 11021 + - uid: 11022 components: - pos: -0.5,-103.5 parent: 2 type: Transform - - uid: 11022 + - uid: 11023 components: - pos: -0.5,-104.5 parent: 2 type: Transform - - uid: 11023 + - uid: 11024 components: - pos: -0.5,-105.5 parent: 2 type: Transform - - uid: 11024 + - uid: 11025 components: - pos: -28.5,-105.5 parent: 2 type: Transform - - uid: 11025 + - uid: 11026 components: - pos: -29.5,-105.5 parent: 2 type: Transform - - uid: 11026 + - uid: 11027 components: - pos: -30.5,-105.5 parent: 2 type: Transform - - uid: 11027 + - uid: 11028 components: - pos: -31.5,-105.5 parent: 2 type: Transform - - uid: 11028 + - uid: 11029 components: - pos: -32.5,-105.5 parent: 2 type: Transform - - uid: 11029 + - uid: 11030 components: - pos: -33.5,-105.5 parent: 2 type: Transform - - uid: 11030 + - uid: 11031 components: - pos: -34.5,-105.5 parent: 2 type: Transform - - uid: 11031 + - uid: 11032 components: - pos: -35.5,-105.5 parent: 2 type: Transform - - uid: 11032 + - uid: 11033 components: - pos: -1.5,-105.5 parent: 2 type: Transform - - uid: 11033 + - uid: 11034 components: - pos: -2.5,-105.5 parent: 2 type: Transform - - uid: 11034 + - uid: 11035 components: - pos: -3.5,-105.5 parent: 2 type: Transform - - uid: 11035 + - uid: 11036 components: - pos: -4.5,-105.5 parent: 2 type: Transform - - uid: 11036 + - uid: 11037 components: - pos: -5.5,-105.5 parent: 2 type: Transform - - uid: 11037 + - uid: 11038 components: - pos: -6.5,-105.5 parent: 2 type: Transform - - uid: 11038 + - uid: 11039 components: - pos: -7.5,-105.5 parent: 2 type: Transform - - uid: 11039 + - uid: 11040 components: - pos: -8.5,-105.5 parent: 2 type: Transform - - uid: 11040 + - uid: 11041 components: - pos: -9.5,-105.5 parent: 2 type: Transform - - uid: 11041 + - uid: 11042 components: - pos: -10.5,-105.5 parent: 2 type: Transform - - uid: 11042 + - uid: 11043 components: - pos: -11.5,-105.5 parent: 2 type: Transform - - uid: 11043 + - uid: 11044 components: - pos: -12.5,-105.5 parent: 2 type: Transform - - uid: 11044 + - uid: 11045 components: - pos: -13.5,-105.5 parent: 2 type: Transform - - uid: 11045 + - uid: 11046 components: - pos: -14.5,-105.5 parent: 2 type: Transform - - uid: 11046 + - uid: 11047 components: - pos: -15.5,-105.5 parent: 2 type: Transform - - uid: 11047 + - uid: 11048 components: - pos: -16.5,-105.5 parent: 2 type: Transform - - uid: 11048 + - uid: 11049 components: - pos: -17.5,-105.5 parent: 2 type: Transform - - uid: 11049 + - uid: 11050 components: - pos: -18.5,-105.5 parent: 2 type: Transform - - uid: 11050 + - uid: 11051 components: - pos: -19.5,-105.5 parent: 2 type: Transform - - uid: 11051 + - uid: 11052 components: - pos: -20.5,-105.5 parent: 2 type: Transform - - uid: 11052 + - uid: 11053 components: - pos: -21.5,-105.5 parent: 2 type: Transform - - uid: 11053 + - uid: 11054 components: - pos: -22.5,-105.5 parent: 2 type: Transform - - uid: 11054 + - uid: 11055 components: - pos: -23.5,-105.5 parent: 2 type: Transform - - uid: 11055 + - uid: 11056 components: - pos: -24.5,-105.5 parent: 2 type: Transform - - uid: 11056 + - uid: 11057 components: - pos: -25.5,-105.5 parent: 2 type: Transform - - uid: 11057 + - uid: 11058 components: - pos: -26.5,-105.5 parent: 2 type: Transform - - uid: 11058 + - uid: 11059 components: - pos: -27.5,-105.5 parent: 2 type: Transform - - uid: 11059 + - uid: 11060 components: - pos: -35.5,-104.5 parent: 2 type: Transform - - uid: 11060 + - uid: 11061 components: - pos: -35.5,-103.5 parent: 2 type: Transform - - uid: 11061 + - uid: 11062 components: - pos: -35.5,-102.5 parent: 2 type: Transform - - uid: 11062 + - uid: 11063 components: - pos: 67.5,-17.5 parent: 2 type: Transform - - uid: 11063 + - uid: 11064 components: - pos: -62.5,-36.5 parent: 2 type: Transform - - uid: 11064 + - uid: 11065 components: - pos: -63.5,-36.5 parent: 2 type: Transform - - uid: 11065 + - uid: 11066 components: - pos: -64.5,-36.5 parent: 2 type: Transform - - uid: 11066 + - uid: 11067 components: - pos: -65.5,-36.5 parent: 2 type: Transform - - uid: 11067 + - uid: 11068 components: - pos: -66.5,-36.5 parent: 2 type: Transform - - uid: 11068 + - uid: 11069 components: - pos: -67.5,-36.5 parent: 2 type: Transform - - uid: 11069 + - uid: 11070 components: - pos: -68.5,-36.5 parent: 2 type: Transform - - uid: 11070 + - uid: 11071 components: - pos: -69.5,-36.5 parent: 2 type: Transform - - uid: 11071 + - uid: 11072 components: - pos: -70.5,-36.5 parent: 2 type: Transform - - uid: 11072 + - uid: 11073 components: - pos: -71.5,-36.5 parent: 2 type: Transform - - uid: 11073 + - uid: 11074 components: - pos: -72.5,-36.5 parent: 2 type: Transform - - uid: 11074 + - uid: 11075 components: - pos: -73.5,-36.5 parent: 2 type: Transform - - uid: 11075 + - uid: 11076 components: - pos: -74.5,-36.5 parent: 2 type: Transform - - uid: 11076 + - uid: 11077 components: - pos: -75.5,-36.5 parent: 2 type: Transform - - uid: 11077 + - uid: 11078 components: - pos: -76.5,-36.5 parent: 2 type: Transform - - uid: 11078 + - uid: 11079 components: - pos: -69.5,-37.5 parent: 2 type: Transform - - uid: 11079 + - uid: 11080 components: - pos: -62.5,-43.5 parent: 2 type: Transform - - uid: 11080 + - uid: 11081 components: - pos: -63.5,-43.5 parent: 2 type: Transform - - uid: 11081 + - uid: 11082 components: - pos: -74.5,-37.5 parent: 2 type: Transform - - uid: 11082 + - uid: 11083 components: - pos: -74.5,-38.5 parent: 2 type: Transform - - uid: 11083 + - uid: 11084 components: - pos: -74.5,-39.5 parent: 2 type: Transform - - uid: 11084 + - uid: 11085 components: - pos: -74.5,-40.5 parent: 2 type: Transform - - uid: 11085 + - uid: 11086 components: - pos: -74.5,-41.5 parent: 2 type: Transform - - uid: 11086 + - uid: 11087 components: - pos: -74.5,-42.5 parent: 2 type: Transform - - uid: 11087 + - uid: 11088 components: - pos: -74.5,-43.5 parent: 2 type: Transform - - uid: 11088 + - uid: 11089 components: - pos: -74.5,-44.5 parent: 2 type: Transform - - uid: 11089 + - uid: 11090 components: - pos: -74.5,-45.5 parent: 2 type: Transform - - uid: 11090 + - uid: 11091 components: - pos: -74.5,-46.5 parent: 2 type: Transform - - uid: 11091 + - uid: 11092 components: - pos: -74.5,-47.5 parent: 2 type: Transform - - uid: 11092 + - uid: 11093 components: - pos: -74.5,-48.5 parent: 2 type: Transform - - uid: 11093 + - uid: 11094 components: - pos: -73.5,-48.5 parent: 2 type: Transform - - uid: 11094 + - uid: 11095 components: - pos: -72.5,-48.5 parent: 2 type: Transform - - uid: 11095 + - uid: 11096 components: - pos: -71.5,-48.5 parent: 2 type: Transform - - uid: 11096 + - uid: 11097 components: - pos: -70.5,-48.5 parent: 2 type: Transform - - uid: 11097 + - uid: 11098 components: - pos: -69.5,-48.5 parent: 2 type: Transform - - uid: 11098 + - uid: 11099 components: - pos: -68.5,-48.5 parent: 2 type: Transform - - uid: 11099 + - uid: 11100 components: - pos: -67.5,-48.5 parent: 2 type: Transform - - uid: 11100 + - uid: 11101 components: - pos: -66.5,-48.5 parent: 2 type: Transform - - uid: 11101 + - uid: 11102 components: - pos: -65.5,-48.5 parent: 2 type: Transform - - uid: 11102 + - uid: 11103 components: - pos: -64.5,-48.5 parent: 2 type: Transform - - uid: 11103 + - uid: 11104 components: - pos: -63.5,-48.5 parent: 2 type: Transform - - uid: 11104 + - uid: 11105 components: - pos: -62.5,-48.5 parent: 2 type: Transform - - uid: 11105 + - uid: 11106 components: - rot: 3.141592653589793 rad pos: 55.5,-74.5 parent: 2 type: Transform - - uid: 11106 + - uid: 11107 components: - rot: 3.141592653589793 rad pos: 79.5,-27.5 parent: 2 type: Transform - - uid: 11107 + - uid: 11108 components: - rot: 3.141592653589793 rad pos: 79.5,-28.5 parent: 2 type: Transform - - uid: 11108 + - uid: 11109 components: - pos: 79.5,-29.5 parent: 2 type: Transform - - uid: 11109 + - uid: 11110 components: - pos: 79.5,-30.5 parent: 2 type: Transform - - uid: 11110 + - uid: 11111 components: - pos: 79.5,-31.5 parent: 2 type: Transform - - uid: 11111 + - uid: 11112 components: - pos: 79.5,-40.5 parent: 2 type: Transform - - uid: 11112 + - uid: 11113 components: - pos: 79.5,-39.5 parent: 2 type: Transform - - uid: 11113 + - uid: 11114 components: - rot: 1.5707963267948966 rad pos: -61.5,-56.5 parent: 2 type: Transform - - uid: 11114 + - uid: 11115 components: - rot: 1.5707963267948966 rad pos: -61.5,-57.5 parent: 2 type: Transform - - uid: 11115 + - uid: 11116 components: - rot: 1.5707963267948966 rad pos: -60.5,-57.5 parent: 2 type: Transform - - uid: 11116 + - uid: 11117 components: - rot: 1.5707963267948966 rad pos: -59.5,-57.5 parent: 2 type: Transform - - uid: 11117 + - uid: 11118 components: - rot: 1.5707963267948966 rad pos: -59.5,-58.5 parent: 2 type: Transform - - uid: 11118 + - uid: 11119 components: - rot: 1.5707963267948966 rad pos: -59.5,-59.5 parent: 2 type: Transform - - uid: 11119 + - uid: 11120 components: - rot: 1.5707963267948966 rad pos: -59.5,-60.5 parent: 2 type: Transform - - uid: 11120 + - uid: 11121 components: - rot: 1.5707963267948966 rad pos: -59.5,-61.5 parent: 2 type: Transform - - uid: 11121 + - uid: 11122 components: - rot: 1.5707963267948966 rad pos: -59.5,-62.5 parent: 2 type: Transform - - uid: 11122 + - uid: 11123 components: - rot: 1.5707963267948966 rad pos: -59.5,-63.5 parent: 2 type: Transform - - uid: 11123 + - uid: 11124 components: - rot: 1.5707963267948966 rad pos: -59.5,-64.5 parent: 2 type: Transform - - uid: 11124 + - uid: 11125 components: - rot: 1.5707963267948966 rad pos: -59.5,-65.5 parent: 2 type: Transform - - uid: 11125 + - uid: 11126 components: - rot: 1.5707963267948966 rad pos: -59.5,-66.5 parent: 2 type: Transform - - uid: 11126 + - uid: 11127 components: - rot: 1.5707963267948966 rad pos: -59.5,-67.5 parent: 2 type: Transform - - uid: 11127 + - uid: 11128 components: - rot: 1.5707963267948966 rad pos: -59.5,-68.5 parent: 2 type: Transform - - uid: 11128 + - uid: 11129 components: - rot: 1.5707963267948966 rad pos: -59.5,-69.5 parent: 2 type: Transform - - uid: 11129 + - uid: 11130 components: - pos: 8.5,-35.5 parent: 2 type: Transform - - uid: 11130 + - uid: 11131 components: - pos: 8.5,-34.5 parent: 2 type: Transform - - uid: 11131 + - uid: 11132 components: - pos: 8.5,-32.5 parent: 2 type: Transform - - uid: 11132 + - uid: 11133 components: - pos: 8.5,-33.5 parent: 2 type: Transform - - uid: 11133 + - uid: 11134 components: - pos: 46.5,-33.5 parent: 2 type: Transform - - uid: 11134 + - uid: 11135 components: - pos: 45.5,-33.5 parent: 2 type: Transform - - uid: 11135 + - uid: 11136 components: - pos: 44.5,-33.5 parent: 2 type: Transform - - uid: 11136 + - uid: 11137 components: - pos: 8.5,-31.5 parent: 2 type: Transform - - uid: 11137 + - uid: 11138 components: - pos: 8.5,-30.5 parent: 2 type: Transform - - uid: 11138 + - uid: 11139 components: - pos: 68.5,-70.5 parent: 2 type: Transform - - uid: 11139 + - uid: 11140 components: - pos: 69.5,-71.5 parent: 2 type: Transform - - uid: 11140 + - uid: 11141 components: - pos: 70.5,-71.5 parent: 2 type: Transform - - uid: 11141 + - uid: 11142 components: - pos: 71.5,-71.5 parent: 2 type: Transform - - uid: 11142 + - uid: 11143 components: - pos: 71.5,-71.5 parent: 2 type: Transform - - uid: 11143 + - uid: 11144 components: - pos: 71.5,-70.5 parent: 2 type: Transform - - uid: 11144 + - uid: 11145 components: - pos: 72.5,-70.5 parent: 2 type: Transform - - uid: 11145 + - uid: 11146 components: - pos: 72.5,-69.5 parent: 2 type: Transform - - uid: 11146 + - uid: 11147 components: - pos: 73.5,-69.5 parent: 2 type: Transform - - uid: 11147 + - uid: 11148 components: - pos: 74.5,-69.5 parent: 2 type: Transform - - uid: 11148 + - uid: 11149 components: - pos: 74.5,-68.5 parent: 2 type: Transform - - uid: 11149 + - uid: 11150 components: - pos: 74.5,-67.5 parent: 2 type: Transform - - uid: 11150 + - uid: 11151 components: - pos: 74.5,-66.5 parent: 2 type: Transform - - uid: 11151 + - uid: 11152 components: - pos: 74.5,-65.5 parent: 2 type: Transform - - uid: 11152 + - uid: 11153 components: - pos: 74.5,-64.5 parent: 2 type: Transform - - uid: 11153 + - uid: 11154 components: - pos: 74.5,-63.5 parent: 2 type: Transform - - uid: 11154 + - uid: 11155 components: - pos: 75.5,-63.5 parent: 2 type: Transform - - uid: 11155 + - uid: 11156 components: - pos: 76.5,-63.5 parent: 2 type: Transform - - uid: 11156 + - uid: 11157 components: - pos: 77.5,-63.5 parent: 2 type: Transform - - uid: 11157 + - uid: 11158 components: - pos: 78.5,-63.5 parent: 2 type: Transform - - uid: 11158 + - uid: 11159 components: - pos: 79.5,-63.5 parent: 2 type: Transform - - uid: 11159 + - uid: 11160 components: - pos: 79.5,-51.5 parent: 2 type: Transform - - uid: 11160 + - uid: 11161 components: - pos: 79.5,-52.5 parent: 2 type: Transform - - uid: 11161 + - uid: 11162 components: - pos: 79.5,-53.5 parent: 2 type: Transform - - uid: 11162 + - uid: 11163 components: - pos: 79.5,-54.5 parent: 2 type: Transform - - uid: 11163 + - uid: 11164 components: - pos: 79.5,-55.5 parent: 2 type: Transform - - uid: 11164 + - uid: 11165 components: - pos: 79.5,-56.5 parent: 2 type: Transform - - uid: 11165 + - uid: 11166 components: - pos: 79.5,-57.5 parent: 2 type: Transform - - uid: 11166 + - uid: 11167 components: - pos: 79.5,-58.5 parent: 2 type: Transform - - uid: 11167 + - uid: 11168 components: - pos: 79.5,-59.5 parent: 2 type: Transform - - uid: 11168 + - uid: 11169 components: - pos: 79.5,-60.5 parent: 2 type: Transform - - uid: 11169 + - uid: 11170 components: - pos: 79.5,-61.5 parent: 2 type: Transform - - uid: 11170 + - uid: 11171 components: - pos: 79.5,-62.5 parent: 2 type: Transform - - uid: 11171 + - uid: 11172 components: - pos: 72.5,-71.5 parent: 2 type: Transform - - uid: 11172 + - uid: 11173 components: - pos: 71.5,-69.5 parent: 2 type: Transform - - uid: 11173 + - uid: 11174 components: - pos: 55.5,-32.5 parent: 2 type: Transform - - uid: 11174 + - uid: 11175 components: - pos: 54.5,-32.5 parent: 2 type: Transform - - uid: 11175 + - uid: 11176 components: - pos: 53.5,-32.5 parent: 2 type: Transform - - uid: 11176 + - uid: 11177 components: - pos: 67.5,-74.5 parent: 2 type: Transform - - uid: 11177 + - uid: 11178 components: - pos: 66.5,-74.5 parent: 2 type: Transform - - uid: 11178 + - uid: 11179 components: - pos: 65.5,-74.5 parent: 2 type: Transform - - uid: 11179 + - uid: 11180 components: - pos: 64.5,-74.5 parent: 2 type: Transform - - uid: 11180 + - uid: 11181 components: - pos: 63.5,-74.5 parent: 2 type: Transform - - uid: 11181 + - uid: 11182 components: - pos: 62.5,-74.5 parent: 2 type: Transform - - uid: 11182 + - uid: 11183 components: - pos: 61.5,-74.5 parent: 2 type: Transform - - uid: 11183 + - uid: 11184 components: - pos: 60.5,-74.5 parent: 2 type: Transform - - uid: 11184 + - uid: 11185 components: - pos: 59.5,-74.5 parent: 2 type: Transform - - uid: 11185 + - uid: 11186 components: - pos: 58.5,-74.5 parent: 2 type: Transform - - uid: 11186 + - uid: 11187 components: - pos: 55.5,-30.5 parent: 2 type: Transform - - uid: 11187 + - uid: 11188 components: - pos: 55.5,-31.5 parent: 2 type: Transform - - uid: 11188 + - uid: 11189 components: - pos: 59.5,-22.5 parent: 2 type: Transform - - uid: 11189 + - uid: 11190 components: - pos: 59.5,-41.5 parent: 2 type: Transform - - uid: 11190 + - uid: 11191 components: - pos: 59.5,-40.5 parent: 2 type: Transform - - uid: 11191 + - uid: 11192 components: - pos: 59.5,-39.5 parent: 2 type: Transform - - uid: 11192 + - uid: 11193 components: - pos: 58.5,-39.5 parent: 2 type: Transform - - uid: 11193 + - uid: 11194 components: - pos: 57.5,-39.5 parent: 2 type: Transform - - uid: 11194 + - uid: 11195 components: - pos: 56.5,-39.5 parent: 2 type: Transform - - uid: 11195 + - uid: 11196 components: - pos: 59.5,-23.5 parent: 2 type: Transform - - uid: 11196 + - uid: 11197 components: - pos: 59.5,-24.5 parent: 2 type: Transform - - uid: 11197 + - uid: 11198 components: - rot: 3.141592653589793 rad pos: 65.5,-20.5 parent: 2 type: Transform - - uid: 11198 + - uid: 11199 components: - rot: 3.141592653589793 rad pos: 65.5,-19.5 parent: 2 type: Transform - - uid: 11199 + - uid: 11200 components: - rot: 3.141592653589793 rad pos: 65.5,-18.5 parent: 2 type: Transform - - uid: 11200 + - uid: 11201 components: - rot: 3.141592653589793 rad pos: 66.5,-18.5 parent: 2 type: Transform - - uid: 11201 + - uid: 11202 components: - pos: 75.5,-51.5 parent: 2 type: Transform - - uid: 11202 + - uid: 11203 components: - pos: 75.5,-52.5 parent: 2 type: Transform - - uid: 11203 + - uid: 11204 components: - pos: 75.5,-53.5 parent: 2 type: Transform - - uid: 11204 + - uid: 11205 components: - pos: 75.5,-54.5 parent: 2 type: Transform - - uid: 11205 + - uid: 11206 components: - pos: 75.5,-55.5 parent: 2 type: Transform - - uid: 11206 + - uid: 11207 components: - pos: 75.5,-56.5 parent: 2 type: Transform - - uid: 11207 + - uid: 11208 components: - pos: 60.5,-26.5 parent: 2 type: Transform - - uid: 11208 + - uid: 11209 components: - pos: 59.5,-26.5 parent: 2 type: Transform - - uid: 11209 + - uid: 11210 components: - pos: 58.5,-26.5 parent: 2 type: Transform - - uid: 11210 + - uid: 11211 components: - pos: 57.5,-26.5 parent: 2 type: Transform - - uid: 11211 + - uid: 11212 components: - pos: 56.5,-26.5 parent: 2 type: Transform - - uid: 11212 + - uid: 11213 components: - pos: 64.5,-58.5 parent: 2 type: Transform - - uid: 11213 + - uid: 11214 components: - pos: 71.5,-57.5 parent: 2 type: Transform - - uid: 11214 + - uid: 11215 components: - pos: 71.5,-58.5 parent: 2 type: Transform - - uid: 11215 + - uid: 11216 components: - pos: 71.5,-59.5 parent: 2 type: Transform - - uid: 11216 + - uid: 11217 components: - pos: 71.5,-60.5 parent: 2 type: Transform - - uid: 11217 + - uid: 11218 components: - pos: 71.5,-61.5 parent: 2 type: Transform - - uid: 11218 + - uid: 11219 components: - pos: 47.5,-65.5 parent: 2 type: Transform - - uid: 11219 + - uid: 11220 components: - pos: 48.5,-65.5 parent: 2 type: Transform - - uid: 11220 + - uid: 11221 components: - pos: 49.5,-65.5 parent: 2 type: Transform - - uid: 11221 + - uid: 11222 components: - pos: 50.5,-65.5 parent: 2 type: Transform - - uid: 11222 + - uid: 11223 components: - pos: 52.5,-66.5 parent: 2 type: Transform - - uid: 11223 + - uid: 11224 components: - pos: 69.5,-63.5 parent: 2 type: Transform - - uid: 11224 + - uid: 11225 components: - pos: 67.5,-66.5 parent: 2 type: Transform - - uid: 11225 + - uid: 11226 components: - pos: 11.5,-89.5 parent: 2 type: Transform - - uid: 11226 + - uid: 11227 components: - pos: 12.5,-89.5 parent: 2 type: Transform - - uid: 11227 + - uid: 11228 components: - pos: 12.5,-90.5 parent: 2 type: Transform - - uid: 11228 + - uid: 11229 components: - pos: 12.5,-91.5 parent: 2 type: Transform - - uid: 11229 + - uid: 11230 components: - pos: 5.5,-89.5 parent: 2 type: Transform - - uid: 11230 + - uid: 11231 components: - pos: 6.5,-89.5 parent: 2 type: Transform - - uid: 11231 + - uid: 11232 components: - pos: 7.5,-89.5 parent: 2 type: Transform - - uid: 11232 + - uid: 11233 components: - pos: 8.5,-89.5 parent: 2 type: Transform - - uid: 11233 + - uid: 11234 components: - pos: 9.5,-89.5 parent: 2 type: Transform - - uid: 11234 + - uid: 11235 components: - pos: 10.5,-89.5 parent: 2 type: Transform - - uid: 11235 + - uid: 11236 components: - pos: 3.5,-89.5 parent: 2 type: Transform - - uid: 11236 + - uid: 11237 components: - pos: 70.5,-25.5 parent: 2 type: Transform - - uid: 11237 + - uid: 11238 components: - pos: 69.5,-25.5 parent: 2 type: Transform - - uid: 11238 + - uid: 11239 components: - pos: 68.5,-25.5 parent: 2 type: Transform - - uid: 11239 + - uid: 11240 components: - pos: 66.5,-25.5 parent: 2 type: Transform - - uid: 11240 + - uid: 11241 components: - pos: 67.5,-25.5 parent: 2 type: Transform - - uid: 11241 + - uid: 11242 components: - pos: 71.5,-26.5 parent: 2 type: Transform - - uid: 11242 + - uid: 11243 components: - pos: 72.5,-26.5 parent: 2 type: Transform - - uid: 11243 + - uid: 11244 components: - pos: 73.5,-26.5 parent: 2 type: Transform - - uid: 11244 + - uid: 11245 components: - pos: 74.5,-26.5 parent: 2 type: Transform - - uid: 11245 + - uid: 11246 components: - pos: 75.5,-26.5 parent: 2 type: Transform - - uid: 11246 + - uid: 11247 components: - pos: 76.5,-26.5 parent: 2 type: Transform - - uid: 11247 + - uid: 11248 components: - pos: 77.5,-26.5 parent: 2 type: Transform - - uid: 11248 + - uid: 11249 components: - pos: 78.5,-26.5 parent: 2 type: Transform - - uid: 11249 + - uid: 11250 components: - pos: -46.5,-53.5 parent: 2 type: Transform - - uid: 11250 + - uid: 11251 components: - pos: -46.5,-54.5 parent: 2 type: Transform - - uid: 11251 + - uid: 11252 components: - pos: 6.5,-88.5 parent: 2 type: Transform - - uid: 11252 + - uid: 11253 components: - pos: 6.5,-87.5 parent: 2 type: Transform - - uid: 11253 + - uid: 11254 components: - pos: 8.5,-75.5 parent: 2 type: Transform - - uid: 11254 + - uid: 11255 components: - pos: 9.5,-75.5 parent: 2 type: Transform - - uid: 11255 + - uid: 11256 components: - pos: 10.5,-75.5 parent: 2 type: Transform - - uid: 11256 + - uid: 11257 components: - pos: 11.5,-75.5 parent: 2 type: Transform - - uid: 11257 + - uid: 11258 components: - pos: 12.5,-75.5 parent: 2 type: Transform - - uid: 11258 + - uid: 11259 components: - pos: 13.5,-75.5 parent: 2 type: Transform - - uid: 11259 + - uid: 11260 components: - pos: 14.5,-75.5 parent: 2 type: Transform - - uid: 11260 + - uid: 11261 components: - pos: 15.5,-75.5 parent: 2 type: Transform - - uid: 11261 + - uid: 11262 components: - pos: 16.5,-75.5 parent: 2 type: Transform - - uid: 11262 + - uid: 11263 components: - pos: 17.5,-75.5 parent: 2 type: Transform - - uid: 11263 + - uid: 11264 components: - pos: 18.5,-75.5 parent: 2 type: Transform - - uid: 11264 + - uid: 11265 components: - pos: 19.5,-75.5 parent: 2 type: Transform - - uid: 11265 + - uid: 11266 components: - pos: 20.5,-75.5 parent: 2 type: Transform - - uid: 11266 + - uid: 11267 components: - pos: 21.5,-75.5 parent: 2 type: Transform - - uid: 11267 + - uid: 11268 components: - pos: 69.5,4.5 parent: 2 type: Transform - - uid: 11268 + - uid: 11269 components: - pos: 69.5,2.5 parent: 2 type: Transform - - uid: 11269 + - uid: 11270 components: - pos: 69.5,1.5 parent: 2 type: Transform - - uid: 11270 + - uid: 11271 components: - pos: 69.5,0.5 parent: 2 type: Transform - - uid: 11271 + - uid: 11272 components: - pos: 69.5,-0.5 parent: 2 type: Transform - - uid: 11272 + - uid: 11273 components: - pos: 69.5,-1.5 parent: 2 type: Transform - - uid: 11273 + - uid: 11274 components: - pos: 69.5,31.5 parent: 2 type: Transform - - uid: 11274 + - uid: 11275 components: - pos: 69.5,30.5 parent: 2 type: Transform - - uid: 11275 + - uid: 11276 components: - pos: 69.5,29.5 parent: 2 type: Transform - - uid: 11276 + - uid: 11277 components: - pos: 69.5,28.5 parent: 2 type: Transform - - uid: 11277 + - uid: 11278 components: - pos: 69.5,27.5 parent: 2 type: Transform - - uid: 11278 + - uid: 11279 components: - pos: 69.5,26.5 parent: 2 type: Transform - - uid: 11279 + - uid: 11280 components: - pos: 69.5,25.5 parent: 2 type: Transform - - uid: 11280 + - uid: 11281 components: - pos: 69.5,24.5 parent: 2 type: Transform - - uid: 11281 + - uid: 11282 components: - pos: 69.5,23.5 parent: 2 type: Transform - - uid: 11282 + - uid: 11283 components: - pos: 69.5,22.5 parent: 2 type: Transform - - uid: 11283 + - uid: 11284 components: - pos: 69.5,21.5 parent: 2 type: Transform - - uid: 11284 + - uid: 11285 components: - pos: 69.5,20.5 parent: 2 type: Transform - - uid: 11285 + - uid: 11286 components: - pos: 69.5,19.5 parent: 2 type: Transform - - uid: 11286 + - uid: 11287 components: - pos: 69.5,18.5 parent: 2 type: Transform - - uid: 11287 + - uid: 11288 components: - pos: 69.5,17.5 parent: 2 type: Transform - - uid: 11288 + - uid: 11289 components: - pos: 69.5,16.5 parent: 2 type: Transform - - uid: 11289 + - uid: 11290 components: - pos: 69.5,15.5 parent: 2 type: Transform - - uid: 11290 + - uid: 11291 components: - pos: 69.5,14.5 parent: 2 type: Transform - - uid: 11291 + - uid: 11292 components: - pos: 69.5,13.5 parent: 2 type: Transform - - uid: 11292 + - uid: 11293 components: - pos: 69.5,12.5 parent: 2 type: Transform - - uid: 11293 + - uid: 11294 components: - pos: 69.5,11.5 parent: 2 type: Transform - - uid: 11294 + - uid: 11295 components: - pos: 69.5,10.5 parent: 2 type: Transform - - uid: 11295 + - uid: 11296 components: - pos: 69.5,9.5 parent: 2 type: Transform - - uid: 11296 + - uid: 11297 components: - pos: 69.5,8.5 parent: 2 type: Transform - - uid: 11297 + - uid: 11298 components: - pos: 69.5,7.5 parent: 2 type: Transform - - uid: 11298 + - uid: 11299 components: - pos: 69.5,6.5 parent: 2 type: Transform - - uid: 11299 + - uid: 11300 components: - pos: 69.5,5.5 parent: 2 type: Transform - - uid: 11300 + - uid: 11301 components: - pos: 75.5,43.5 parent: 2 type: Transform - - uid: 11301 + - uid: 11302 components: - pos: 63.5,37.5 parent: 2 type: Transform - - uid: 11302 + - uid: 11303 components: - pos: 63.5,38.5 parent: 2 type: Transform - - uid: 11303 + - uid: 11304 components: - pos: 63.5,39.5 parent: 2 type: Transform - - uid: 11304 + - uid: 11305 components: - pos: 64.5,39.5 parent: 2 type: Transform - - uid: 11305 + - uid: 11306 components: - pos: 65.5,39.5 parent: 2 type: Transform - - uid: 11306 + - uid: 11307 components: - pos: 66.5,39.5 parent: 2 type: Transform - - uid: 11307 + - uid: 11308 components: - pos: 67.5,39.5 parent: 2 type: Transform - - uid: 11308 + - uid: 11309 components: - pos: 67.5,40.5 parent: 2 type: Transform - - uid: 11309 + - uid: 11310 components: - pos: 67.5,41.5 parent: 2 type: Transform - - uid: 11310 + - uid: 11311 components: - pos: 68.5,41.5 parent: 2 type: Transform - - uid: 11311 + - uid: 11312 components: - pos: 69.5,41.5 parent: 2 type: Transform - - uid: 11312 + - uid: 11313 components: - pos: 70.5,41.5 parent: 2 type: Transform - - uid: 11313 + - uid: 11314 components: - pos: 71.5,41.5 parent: 2 type: Transform - - uid: 11314 + - uid: 11315 components: - pos: 72.5,41.5 parent: 2 type: Transform - - uid: 11315 + - uid: 11316 components: - pos: 72.5,42.5 parent: 2 type: Transform - - uid: 11316 + - uid: 11317 components: - pos: 73.5,42.5 parent: 2 type: Transform - - uid: 11317 + - uid: 11318 components: - pos: 74.5,42.5 parent: 2 type: Transform - - uid: 11318 + - uid: 11319 components: - pos: 75.5,42.5 parent: 2 type: Transform - - uid: 11319 + - uid: 11320 components: - pos: 75.5,44.5 parent: 2 type: Transform - - uid: 11320 + - uid: 11321 components: - pos: 75.5,45.5 parent: 2 type: Transform - - uid: 11321 + - uid: 11322 components: - pos: 75.5,46.5 parent: 2 type: Transform - - uid: 11322 + - uid: 11323 components: - pos: 74.5,46.5 parent: 2 type: Transform - - uid: 11323 + - uid: 11324 components: - pos: 74.5,47.5 parent: 2 type: Transform - - uid: 11324 + - uid: 11325 components: - pos: 74.5,48.5 parent: 2 type: Transform - - uid: 11325 + - uid: 11326 components: - pos: 74.5,49.5 parent: 2 type: Transform - - uid: 11326 + - uid: 11327 components: - pos: 74.5,50.5 parent: 2 type: Transform - - uid: 11327 + - uid: 11328 components: - pos: 74.5,51.5 parent: 2 type: Transform - - uid: 11328 + - uid: 11329 components: - pos: 74.5,52.5 parent: 2 type: Transform - - uid: 11329 + - uid: 11330 components: - pos: 74.5,53.5 parent: 2 type: Transform - - uid: 11330 + - uid: 11331 components: - pos: 74.5,54.5 parent: 2 type: Transform - - uid: 11331 + - uid: 11332 components: - pos: 74.5,55.5 parent: 2 type: Transform - - uid: 11332 + - uid: 11333 components: - pos: 74.5,56.5 parent: 2 type: Transform - - uid: 11333 + - uid: 11334 components: - pos: 74.5,57.5 parent: 2 type: Transform - - uid: 11334 + - uid: 11335 components: - pos: 60.5,58.5 parent: 2 type: Transform - - uid: 11335 + - uid: 11336 components: - pos: 73.5,57.5 parent: 2 type: Transform - - uid: 11336 + - uid: 11337 components: - pos: 72.5,57.5 parent: 2 type: Transform - - uid: 11337 + - uid: 11338 components: - pos: 71.5,57.5 parent: 2 type: Transform - - uid: 11338 + - uid: 11339 components: - pos: 70.5,57.5 parent: 2 type: Transform - - uid: 11339 + - uid: 11340 components: - pos: 69.5,57.5 parent: 2 type: Transform - - uid: 11340 + - uid: 11341 components: - pos: 68.5,57.5 parent: 2 type: Transform - - uid: 11341 + - uid: 11342 components: - pos: 67.5,57.5 parent: 2 type: Transform - - uid: 11342 + - uid: 11343 components: - pos: 66.5,57.5 parent: 2 type: Transform - - uid: 11343 + - uid: 11344 components: - pos: 65.5,57.5 parent: 2 type: Transform - - uid: 11344 + - uid: 11345 components: - pos: 64.5,57.5 parent: 2 type: Transform - - uid: 11345 + - uid: 11346 components: - pos: 63.5,57.5 parent: 2 type: Transform - - uid: 11346 + - uid: 11347 components: - pos: 62.5,57.5 parent: 2 type: Transform - - uid: 11347 + - uid: 11348 components: - pos: 61.5,57.5 parent: 2 type: Transform - - uid: 11348 + - uid: 11349 components: - pos: 60.5,57.5 parent: 2 type: Transform - - uid: 11349 + - uid: 11350 components: - pos: 60.5,59.5 parent: 2 type: Transform - - uid: 11350 + - uid: 11351 components: - pos: 60.5,60.5 parent: 2 type: Transform - - uid: 11351 + - uid: 11352 components: - pos: 60.5,61.5 parent: 2 type: Transform - - uid: 11352 + - uid: 11353 components: - pos: 60.5,62.5 parent: 2 type: Transform - - uid: 11353 + - uid: 11354 components: - pos: 60.5,63.5 parent: 2 type: Transform - - uid: 11354 + - uid: 11355 components: - pos: 47.5,55.5 parent: 2 type: Transform - - uid: 11355 + - uid: 11356 components: - pos: 59.5,63.5 parent: 2 type: Transform - - uid: 11356 + - uid: 11357 components: - pos: 58.5,63.5 parent: 2 type: Transform - - uid: 11357 + - uid: 11358 components: - pos: 57.5,63.5 parent: 2 type: Transform - - uid: 11358 + - uid: 11359 components: - pos: 56.5,63.5 parent: 2 type: Transform - - uid: 11359 + - uid: 11360 components: - pos: 55.5,63.5 parent: 2 type: Transform - - uid: 11360 + - uid: 11361 components: - pos: 54.5,63.5 parent: 2 type: Transform - - uid: 11361 + - uid: 11362 components: - pos: 53.5,63.5 parent: 2 type: Transform - - uid: 11362 + - uid: 11363 components: - pos: 52.5,63.5 parent: 2 type: Transform - - uid: 11363 + - uid: 11364 components: - pos: 51.5,63.5 parent: 2 type: Transform - - uid: 11364 + - uid: 11365 components: - pos: 50.5,63.5 parent: 2 type: Transform - - uid: 11365 + - uid: 11366 components: - pos: 49.5,63.5 parent: 2 type: Transform - - uid: 11366 + - uid: 11367 components: - pos: 48.5,63.5 parent: 2 type: Transform - - uid: 11367 + - uid: 11368 components: - pos: 48.5,62.5 parent: 2 type: Transform - - uid: 11368 + - uid: 11369 components: - pos: 48.5,61.5 parent: 2 type: Transform - - uid: 11369 + - uid: 11370 components: - pos: 48.5,60.5 parent: 2 type: Transform - - uid: 11370 + - uid: 11371 components: - pos: 48.5,59.5 parent: 2 type: Transform - - uid: 11371 + - uid: 11372 components: - pos: 48.5,58.5 parent: 2 type: Transform - - uid: 11372 + - uid: 11373 components: - pos: 48.5,57.5 parent: 2 type: Transform - - uid: 11373 + - uid: 11374 components: - pos: 48.5,56.5 parent: 2 type: Transform - - uid: 11374 + - uid: 11375 components: - pos: 48.5,55.5 parent: 2 type: Transform - - uid: 11375 + - uid: 11376 components: - pos: 46.5,55.5 parent: 2 type: Transform - - uid: 11376 + - uid: 11377 components: - pos: 45.5,55.5 parent: 2 type: Transform - - uid: 11377 + - uid: 11378 components: - pos: 44.5,55.5 parent: 2 type: Transform - - uid: 11378 + - uid: 11379 components: - pos: 43.5,55.5 parent: 2 type: Transform - - uid: 11379 + - uid: 11380 components: - pos: 42.5,55.5 parent: 2 type: Transform - - uid: 11380 + - uid: 11381 components: - pos: 41.5,55.5 parent: 2 type: Transform - - uid: 11381 + - uid: 11382 components: - pos: 40.5,55.5 parent: 2 type: Transform - - uid: 11382 + - uid: 11383 components: - pos: 39.5,55.5 parent: 2 type: Transform - - uid: 11383 + - uid: 11384 components: - pos: 38.5,55.5 parent: 2 type: Transform - - uid: 11384 + - uid: 11385 components: - pos: 37.5,55.5 parent: 2 type: Transform - - uid: 11385 + - uid: 11386 components: - pos: 36.5,55.5 parent: 2 type: Transform - - uid: 11386 + - uid: 11387 components: - pos: 35.5,55.5 parent: 2 type: Transform - - uid: 11387 + - uid: 11388 components: - pos: 34.5,55.5 parent: 2 type: Transform - - uid: 11388 + - uid: 11389 components: - pos: 33.5,55.5 parent: 2 type: Transform - - uid: 11389 + - uid: 11390 components: - pos: 32.5,55.5 parent: 2 type: Transform - - uid: 11390 + - uid: 11391 components: - pos: 31.5,55.5 parent: 2 type: Transform - - uid: 11391 + - uid: 11392 components: - pos: 30.5,55.5 parent: 2 type: Transform - - uid: 11392 + - uid: 11393 components: - pos: 66.5,35.5 parent: 2 type: Transform - - uid: 11393 + - uid: 11394 components: - pos: 66.5,34.5 parent: 2 type: Transform - - uid: 11394 + - uid: 11395 components: - pos: 66.5,33.5 parent: 2 type: Transform - - uid: 11395 + - uid: 11396 components: - pos: 66.5,32.5 parent: 2 type: Transform - - uid: 11396 + - uid: 11397 components: - pos: 66.5,31.5 parent: 2 type: Transform - - uid: 11397 + - uid: 11398 components: - pos: 67.5,31.5 parent: 2 type: Transform - - uid: 11398 + - uid: 11399 components: - pos: 68.5,31.5 parent: 2 type: Transform - - uid: 11399 + - uid: 11400 components: - rot: 3.141592653589793 rad pos: 27.5,-90.5 parent: 2 type: Transform - - uid: 11400 + - uid: 11401 components: - rot: 3.141592653589793 rad pos: 13.5,-89.5 parent: 2 type: Transform - - uid: 11401 + - uid: 11402 components: - pos: -7.5,-9.5 parent: 2 type: Transform - - uid: 11402 + - uid: 11403 components: - pos: -8.5,-9.5 parent: 2 type: Transform - - uid: 11403 + - uid: 11404 components: - pos: -9.5,-9.5 parent: 2 type: Transform - - uid: 11404 + - uid: 11405 components: - pos: -10.5,-9.5 parent: 2 type: Transform - - uid: 11405 + - uid: 11406 components: - pos: -11.5,-9.5 parent: 2 type: Transform - - uid: 11406 + - uid: 11407 components: - pos: -12.5,-9.5 parent: 2 type: Transform - - uid: 11407 + - uid: 11408 components: - pos: -13.5,-9.5 parent: 2 type: Transform - - uid: 11408 + - uid: 11409 components: - pos: -15.5,-14.5 parent: 2 type: Transform - - uid: 11409 + - uid: 11410 components: - pos: -16.5,-14.5 parent: 2 type: Transform - - uid: 11410 + - uid: 11411 components: - pos: -46.5,52.5 parent: 2 type: Transform - - uid: 11411 + - uid: 11412 components: - pos: -46.5,51.5 parent: 2 type: Transform - - uid: 11412 + - uid: 11413 components: - pos: -46.5,50.5 parent: 2 type: Transform - - uid: 11413 + - uid: 11414 components: - pos: -46.5,49.5 parent: 2 type: Transform - - uid: 11414 + - uid: 11415 components: - pos: -46.5,-56.5 parent: 2 type: Transform - - uid: 11415 + - uid: 11416 components: - pos: -46.5,-57.5 parent: 2 type: Transform - - uid: 11416 + - uid: 11417 components: - pos: -46.5,-58.5 parent: 2 type: Transform - - uid: 11417 + - uid: 11418 components: - pos: -47.5,-58.5 parent: 2 type: Transform - - uid: 11418 + - uid: 11419 components: - pos: -48.5,-58.5 parent: 2 type: Transform - - uid: 11419 + - uid: 11420 components: - pos: -49.5,-58.5 parent: 2 type: Transform - - uid: 11420 + - uid: 11421 components: - pos: -29.5,-19.5 parent: 2 type: Transform - - uid: 11421 + - uid: 11422 components: - pos: -29.5,-20.5 parent: 2 type: Transform - - uid: 11422 + - uid: 11423 components: - pos: -29.5,-21.5 parent: 2 type: Transform - - uid: 11423 + - uid: 11424 components: - rot: 1.5707963267948966 rad pos: -25.5,-60.5 parent: 2 type: Transform - - uid: 11424 + - uid: 11425 components: - rot: 1.5707963267948966 rad pos: -24.5,-60.5 parent: 2 type: Transform - - uid: 11425 + - uid: 11426 components: - rot: 1.5707963267948966 rad pos: -23.5,-60.5 parent: 2 type: Transform - - uid: 11426 + - uid: 11427 components: - rot: 1.5707963267948966 rad pos: -23.5,-58.5 parent: 2 type: Transform - - uid: 11427 + - uid: 11428 components: - pos: 63.5,2.5 parent: 2 type: Transform - - uid: 11428 + - uid: 11429 components: - pos: -2.5,14.5 parent: 2 type: Transform - - uid: 11429 + - uid: 11430 components: - rot: 3.141592653589793 rad pos: 52.5,-93.5 parent: 2 type: Transform - - uid: 11430 + - uid: 11431 components: - rot: 3.141592653589793 rad pos: 52.5,-80.5 parent: 2 type: Transform - - uid: 11431 + - uid: 11432 components: - rot: 3.141592653589793 rad pos: 52.5,-81.5 parent: 2 type: Transform - - uid: 11432 + - uid: 11433 components: - rot: 3.141592653589793 rad pos: 52.5,-76.5 parent: 2 type: Transform - - uid: 11433 + - uid: 11434 components: - rot: 3.141592653589793 rad pos: 51.5,-95.5 parent: 2 type: Transform - - uid: 11434 + - uid: 11435 components: - rot: 3.141592653589793 rad pos: 52.5,-95.5 parent: 2 type: Transform - - uid: 11435 + - uid: 11436 components: - pos: 6.5,-73.5 parent: 2 type: Transform - - uid: 11436 + - uid: 11437 components: - rot: 3.141592653589793 rad pos: 50.5,-95.5 parent: 2 type: Transform - - uid: 11437 + - uid: 11438 components: - rot: 3.141592653589793 rad pos: 52.5,-75.5 parent: 2 type: Transform - - uid: 11438 + - uid: 11439 components: - rot: 3.141592653589793 rad pos: 52.5,-74.5 parent: 2 type: Transform - - uid: 11439 + - uid: 11440 components: - rot: 3.141592653589793 rad pos: 54.5,-74.5 parent: 2 type: Transform - - uid: 11440 + - uid: 11441 components: - rot: 3.141592653589793 rad pos: 53.5,-74.5 parent: 2 type: Transform - - uid: 11441 + - uid: 11442 components: - rot: 3.141592653589793 rad pos: 52.5,-82.5 parent: 2 type: Transform - - uid: 11442 + - uid: 11443 components: - rot: 3.141592653589793 rad pos: 52.5,-83.5 parent: 2 type: Transform - - uid: 11443 + - uid: 11444 components: - rot: 1.5707963267948966 rad pos: -19.5,-48.5 parent: 2 type: Transform - - uid: 11444 + - uid: 11445 components: - rot: 1.5707963267948966 rad pos: -19.5,-49.5 parent: 2 type: Transform - - uid: 11445 + - uid: 11446 components: - rot: 3.141592653589793 rad pos: 5.5,-19.5 parent: 2 type: Transform - - uid: 11446 + - uid: 11447 components: - rot: 3.141592653589793 rad pos: 5.5,-20.5 parent: 2 type: Transform - - uid: 11447 + - uid: 11448 components: - rot: 3.141592653589793 rad pos: 5.5,-21.5 parent: 2 type: Transform - - uid: 11448 + - uid: 11449 components: - rot: 3.141592653589793 rad pos: 5.5,-22.5 parent: 2 type: Transform - - uid: 11449 + - uid: 11450 components: - rot: 3.141592653589793 rad pos: 4.5,-16.5 parent: 2 type: Transform - - uid: 11450 + - uid: 11451 components: - rot: 3.141592653589793 rad pos: 6.5,-14.5 parent: 2 type: Transform - - uid: 11451 + - uid: 11452 components: - rot: 3.141592653589793 rad pos: 5.5,-14.5 parent: 2 type: Transform - - uid: 11452 + - uid: 11453 components: - rot: 3.141592653589793 rad pos: 4.5,-14.5 parent: 2 type: Transform - - uid: 11453 + - uid: 11454 components: - rot: 1.5707963267948966 rad pos: -20.5,-49.5 parent: 2 type: Transform - - uid: 11454 + - uid: 11455 components: - pos: 6.5,-74.5 parent: 2 type: Transform - - uid: 11455 + - uid: 11456 components: - pos: 6.5,-75.5 parent: 2 type: Transform - - uid: 11456 + - uid: 11457 components: - pos: 6.5,-76.5 parent: 2 type: Transform - - uid: 11457 + - uid: 11458 components: - pos: 6.5,-77.5 parent: 2 type: Transform - - uid: 11458 + - uid: 11459 components: - pos: 6.5,-78.5 parent: 2 type: Transform - - uid: 11459 + - uid: 11460 components: - pos: 6.5,-79.5 parent: 2 type: Transform - - uid: 11460 + - uid: 11461 components: - pos: 6.5,-80.5 parent: 2 type: Transform - - uid: 11461 + - uid: 11462 components: - pos: 6.5,-81.5 parent: 2 type: Transform - - uid: 11462 + - uid: 11463 components: - pos: 6.5,-82.5 parent: 2 type: Transform - - uid: 11463 + - uid: 11464 components: - rot: -1.5707963267948966 rad pos: -47.5,49.5 parent: 2 type: Transform - - uid: 11464 + - uid: 11465 components: - rot: -1.5707963267948966 rad pos: -48.5,49.5 parent: 2 type: Transform - - uid: 11465 + - uid: 11466 components: - rot: -1.5707963267948966 rad pos: -49.5,49.5 parent: 2 type: Transform - - uid: 11466 + - uid: 11467 components: - rot: -1.5707963267948966 rad pos: -49.5,48.5 parent: 2 type: Transform - - uid: 11467 + - uid: 11468 components: - pos: 71.5,-25.5 parent: 2 type: Transform - proto: Cautery entities: - - uid: 11468 + - uid: 11469 components: - rot: -1.5707963267948966 rad pos: 0.5414771,-66.9678 parent: 2 type: Transform - - uid: 11469 + - uid: 11470 components: - pos: 73.52661,-47.78304 parent: 2 type: Transform - proto: Chair entities: - - uid: 11470 + - uid: 11471 components: - rot: -1.5707963267948966 rad pos: 18.5,-72.5 parent: 2 type: Transform - - uid: 11471 + - uid: 11472 components: - rot: -1.5707963267948966 rad pos: -51.5,-75.5 parent: 2 type: Transform - - uid: 11472 + - uid: 11473 components: - pos: 14.5,-72.5 parent: 2 type: Transform - - uid: 11473 + - uid: 11474 components: - rot: -1.5707963267948966 rad pos: -51.5,-79.5 parent: 2 type: Transform - - uid: 11474 + - uid: 11475 components: - rot: -1.5707963267948966 rad pos: -51.5,-78.5 parent: 2 type: Transform - - uid: 11475 + - uid: 11476 components: - rot: -1.5707963267948966 rad pos: -51.5,-77.5 parent: 2 type: Transform - - uid: 11476 + - uid: 11477 components: - rot: -1.5707963267948966 rad pos: -51.5,-74.5 parent: 2 type: Transform - - uid: 11477 + - uid: 11478 components: - rot: -1.5707963267948966 rad pos: -51.5,-73.5 parent: 2 type: Transform - - uid: 11478 + - uid: 11479 components: - pos: -23.5,-38.5 parent: 2 type: Transform - - uid: 11479 + - uid: 11480 components: - pos: 1.5,-52.5 parent: 2 type: Transform - - uid: 11480 + - uid: 11481 components: - rot: 3.141592653589793 rad pos: 27.5,-4.5 parent: 2 type: Transform - - uid: 11481 + - uid: 11482 components: - pos: -5.5,-45.5 parent: 2 type: Transform - - uid: 11482 + - uid: 11483 components: - pos: -2.5,-32.5 parent: 2 type: Transform - - uid: 11483 + - uid: 11484 components: - rot: 1.5707963267948966 rad pos: 17.5,-65.5 parent: 2 type: Transform - - uid: 11484 + - uid: 11485 components: - rot: 1.5707963267948966 rad pos: 17.5,-66.5 parent: 2 type: Transform - - uid: 11485 + - uid: 11486 components: - rot: 1.5707963267948966 rad pos: 18.5,-0.5 parent: 2 type: Transform - - uid: 11486 + - uid: 11487 components: - pos: -14.5,-52.5 parent: 2 type: Transform - - uid: 11487 + - uid: 11488 components: - pos: 2.5,-52.5 parent: 2 type: Transform - - uid: 11488 + - uid: 11489 components: - pos: -12.5,-52.5 parent: 2 type: Transform - - uid: 11489 + - uid: 11490 components: - pos: -11.5,-52.5 parent: 2 type: Transform - - uid: 11490 + - uid: 11491 components: - pos: 16.5,-67.5 parent: 2 type: Transform - - uid: 11491 + - uid: 11492 components: - rot: 1.5707963267948966 rad pos: 18.5,2.5 parent: 2 type: Transform - - uid: 11492 + - uid: 11493 components: - pos: 27.5,6.5 parent: 2 type: Transform - - uid: 11493 + - uid: 11494 components: - pos: 26.5,6.5 parent: 2 type: Transform - - uid: 11494 + - uid: 11495 components: - rot: 1.5707963267948966 rad pos: 7.5,13.5 parent: 2 type: Transform - - uid: 11495 + - uid: 11496 components: - rot: 1.5707963267948966 rad pos: 7.5,14.5 parent: 2 type: Transform - - uid: 11496 + - uid: 11497 components: - pos: -4.5,-45.5 parent: 2 type: Transform - - uid: 11497 + - uid: 11498 components: - pos: -3.5,-45.5 parent: 2 type: Transform - - uid: 11498 + - uid: 11499 components: - rot: 3.141592653589793 rad pos: 23.5,-4.5 parent: 2 type: Transform - - uid: 11499 + - uid: 11500 components: - rot: 3.141592653589793 rad pos: 26.5,-4.5 parent: 2 type: Transform - - uid: 11500 + - uid: 11501 components: - pos: 22.5,6.5 parent: 2 type: Transform - - uid: 11501 + - uid: 11502 components: - pos: 25.5,6.5 parent: 2 type: Transform - - uid: 11502 + - uid: 11503 components: - pos: 21.5,6.5 parent: 2 type: Transform - - uid: 11503 + - uid: 11504 components: - rot: 3.141592653589793 rad pos: -2.5,-34.5 parent: 2 type: Transform - - uid: 11504 + - uid: 11505 components: - pos: 15.5,-67.5 parent: 2 type: Transform - - uid: 11505 + - uid: 11506 components: - rot: 3.141592653589793 rad pos: 22.5,-4.5 parent: 2 type: Transform - - uid: 11506 + - uid: 11507 components: - rot: 3.141592653589793 rad pos: 21.5,-4.5 parent: 2 type: Transform - - uid: 11507 + - uid: 11508 components: - rot: -1.5707963267948966 rad pos: 65.5,-9.5 parent: 2 type: Transform - - uid: 11508 + - uid: 11509 components: - rot: -1.5707963267948966 rad pos: -7.5,-36.5 parent: 2 type: Transform - - uid: 11509 + - uid: 11510 components: - rot: -1.5707963267948966 rad pos: -7.5,-37.5 parent: 2 type: Transform - - uid: 11510 + - uid: 11511 components: - rot: -1.5707963267948966 rad pos: -7.5,-38.5 parent: 2 type: Transform - - uid: 11511 + - uid: 11512 components: - pos: 17.5,23.5 parent: 2 type: Transform - - uid: 11512 + - uid: 11513 components: - pos: 15.5,23.5 parent: 2 type: Transform - - uid: 11513 + - uid: 11514 components: - rot: 3.141592653589793 rad pos: 16.5,20.5 parent: 2 type: Transform - - uid: 11514 + - uid: 11515 components: - pos: 35.5,19.5 parent: 2 type: Transform - - uid: 11515 + - uid: 11516 components: - rot: 3.141592653589793 rad pos: 35.5,17.5 parent: 2 type: Transform - - uid: 11516 + - uid: 11517 components: - rot: -1.5707963267948966 rad pos: 18.5,29.5 parent: 2 type: Transform - - uid: 11517 + - uid: 11518 components: - rot: -1.5707963267948966 rad pos: 18.5,28.5 parent: 2 type: Transform - - uid: 11518 + - uid: 11519 components: - pos: 48.5,19.5 parent: 2 type: Transform - - uid: 11519 + - uid: 11520 components: - pos: 52.5,8.5 parent: 2 type: Transform - - uid: 11520 + - uid: 11521 components: - rot: 3.141592653589793 rad pos: 52.5,5.5 parent: 2 type: Transform - - uid: 11521 + - uid: 11522 components: - pos: 51.5,8.5 parent: 2 type: Transform - - uid: 11522 + - uid: 11523 components: - rot: 3.141592653589793 rad pos: 51.5,5.5 parent: 2 type: Transform - - uid: 11523 + - uid: 11524 components: - pos: 58.5,21.5 parent: 2 type: Transform - - uid: 11524 + - uid: 11525 components: - pos: 57.5,21.5 parent: 2 type: Transform - - uid: 11525 + - uid: 11526 components: - rot: 3.141592653589793 rad pos: 58.5,18.5 parent: 2 type: Transform - - uid: 11526 + - uid: 11527 components: - rot: 3.141592653589793 rad pos: 57.5,18.5 parent: 2 type: Transform - - uid: 11527 + - uid: 11528 components: - rot: 1.5707963267948966 rad pos: 42.5,-3.5 parent: 2 type: Transform - - uid: 11528 + - uid: 11529 components: - pos: 59.5,-10.5 parent: 2 type: Transform - - uid: 11529 + - uid: 11530 components: - pos: 58.5,-10.5 parent: 2 type: Transform - - uid: 11530 + - uid: 11531 components: - pos: 57.5,-10.5 parent: 2 type: Transform - - uid: 11531 + - uid: 11532 components: - pos: 56.5,-10.5 parent: 2 type: Transform - - uid: 11532 + - uid: 11533 components: - pos: 55.5,-10.5 parent: 2 type: Transform - - uid: 11533 + - uid: 11534 components: - rot: 3.141592653589793 rad pos: 55.5,-6.5 parent: 2 type: Transform - - uid: 11534 + - uid: 11535 components: - rot: 3.141592653589793 rad pos: 56.5,-6.5 parent: 2 type: Transform - - uid: 11535 + - uid: 11536 components: - rot: 3.141592653589793 rad pos: 57.5,-6.5 parent: 2 type: Transform - - uid: 11536 + - uid: 11537 components: - rot: 3.141592653589793 rad pos: 58.5,-6.5 parent: 2 type: Transform - - uid: 11537 + - uid: 11538 components: - rot: 3.141592653589793 rad pos: 59.5,-6.5 parent: 2 type: Transform - - uid: 11538 + - uid: 11539 components: - pos: 55.5,-14.5 parent: 2 type: Transform - - uid: 11539 + - uid: 11540 components: - pos: 56.5,-14.5 parent: 2 type: Transform - - uid: 11540 + - uid: 11541 components: - pos: 59.5,-14.5 parent: 2 type: Transform - - uid: 11541 + - uid: 11542 components: - pos: 58.5,-14.5 parent: 2 type: Transform - - uid: 11542 + - uid: 11543 components: - pos: 61.5,-10.5 parent: 2 type: Transform - - uid: 11543 + - uid: 11544 components: - pos: 60.5,-10.5 parent: 2 type: Transform - - uid: 11544 + - uid: 11545 components: - pos: 44.5,-48.5 parent: 2 type: Transform - - uid: 11545 + - uid: 11546 components: - pos: 46.5,-48.5 parent: 2 type: Transform - - uid: 11546 + - uid: 11547 components: - rot: 3.141592653589793 rad pos: 28.5,-55.5 parent: 2 type: Transform - - uid: 11547 + - uid: 11548 components: - rot: 3.141592653589793 rad pos: 29.5,-55.5 parent: 2 type: Transform - - uid: 11548 + - uid: 11549 components: - rot: 3.141592653589793 rad pos: 30.5,-55.5 parent: 2 type: Transform - - uid: 11549 + - uid: 11550 components: - rot: 3.141592653589793 rad pos: 30.5,-54.5 parent: 2 type: Transform - - uid: 11550 + - uid: 11551 components: - rot: 3.141592653589793 rad pos: 29.5,-54.5 parent: 2 type: Transform - - uid: 11551 + - uid: 11552 components: - rot: 3.141592653589793 rad pos: 28.5,-54.5 parent: 2 type: Transform - - uid: 11552 + - uid: 11553 components: - rot: 3.141592653589793 rad pos: 32.5,-54.5 parent: 2 type: Transform - - uid: 11553 + - uid: 11554 components: - rot: 3.141592653589793 rad pos: 33.5,-54.5 parent: 2 type: Transform - - uid: 11554 + - uid: 11555 components: - rot: 3.141592653589793 rad pos: 34.5,-54.5 parent: 2 type: Transform - - uid: 11555 + - uid: 11556 components: - rot: 3.141592653589793 rad pos: 34.5,-55.5 parent: 2 type: Transform - - uid: 11556 + - uid: 11557 components: - rot: 3.141592653589793 rad pos: 33.5,-55.5 parent: 2 type: Transform - - uid: 11557 + - uid: 11558 components: - rot: 3.141592653589793 rad pos: 32.5,-55.5 parent: 2 type: Transform - - uid: 11558 + - uid: 11559 components: - rot: 3.141592653589793 rad pos: 32.5,-53.5 parent: 2 type: Transform - - uid: 11559 + - uid: 11560 components: - rot: 3.141592653589793 rad pos: 33.5,-53.5 parent: 2 type: Transform - - uid: 11560 + - uid: 11561 components: - rot: 3.141592653589793 rad pos: 34.5,-53.5 parent: 2 type: Transform - - uid: 11561 + - uid: 11562 components: - rot: 3.141592653589793 rad pos: 30.5,-53.5 parent: 2 type: Transform - - uid: 11562 + - uid: 11563 components: - rot: 3.141592653589793 rad pos: 29.5,-53.5 parent: 2 type: Transform - - uid: 11563 + - uid: 11564 components: - rot: 3.141592653589793 rad pos: 28.5,-53.5 parent: 2 type: Transform - - uid: 11564 + - uid: 11565 components: - pos: 33.5,-48.5 parent: 2 type: Transform - - uid: 11565 + - uid: 11566 components: - rot: 1.5707963267948966 rad pos: 29.5,-48.5 parent: 2 type: Transform - - uid: 11566 + - uid: 11567 components: - rot: -1.5707963267948966 rad pos: -22.5,-9.5 parent: 2 type: Transform - - uid: 11567 + - uid: 11568 components: - rot: -1.5707963267948966 rad pos: -22.5,-10.5 parent: 2 type: Transform - - uid: 11568 + - uid: 11569 components: - rot: -1.5707963267948966 rad pos: -22.5,-13.5 parent: 2 type: Transform - - uid: 11569 + - uid: 11570 components: - rot: -1.5707963267948966 rad pos: -22.5,-14.5 parent: 2 type: Transform - - uid: 11570 + - uid: 11571 components: - rot: 3.141592653589793 rad pos: -48.5,10.5 parent: 2 type: Transform - - uid: 11571 + - uid: 11572 components: - pos: 44.5,-70.5 parent: 2 type: Transform - - uid: 11572 + - uid: 11573 components: - pos: 43.5,-70.5 parent: 2 type: Transform - - uid: 11573 + - uid: 11574 components: - pos: 42.5,-70.5 parent: 2 type: Transform - - uid: 11574 + - uid: 11575 components: - pos: 41.5,-70.5 parent: 2 type: Transform - - uid: 11575 + - uid: 11576 components: - pos: 37.5,-70.5 parent: 2 type: Transform - - uid: 11576 + - uid: 11577 components: - pos: 36.5,-70.5 parent: 2 type: Transform - - uid: 11577 + - uid: 11578 components: - pos: 35.5,-70.5 parent: 2 type: Transform - - uid: 11578 + - uid: 11579 components: - pos: 34.5,-70.5 parent: 2 type: Transform - - uid: 11579 + - uid: 11580 components: - rot: 3.141592653589793 rad pos: -49.5,10.5 parent: 2 type: Transform - - uid: 11580 + - uid: 11581 components: - rot: 3.141592653589793 rad pos: 23.5,16.5 parent: 2 type: Transform - - uid: 11581 + - uid: 11582 components: - rot: 1.5707963267948966 rad pos: -56.5,-75.5 parent: 2 type: Transform - - uid: 11582 + - uid: 11583 components: - rot: 1.5707963267948966 rad pos: -56.5,-76.5 parent: 2 type: Transform - - uid: 11583 + - uid: 11584 components: - rot: 1.5707963267948966 rad pos: -56.5,-77.5 parent: 2 type: Transform - - uid: 11584 + - uid: 11585 components: - rot: 3.141592653589793 rad pos: -53.5,-82.5 parent: 2 type: Transform - - uid: 11585 + - uid: 11586 components: - rot: 3.141592653589793 rad pos: -55.5,-82.5 parent: 2 type: Transform - - uid: 11586 + - uid: 11587 components: - pos: -53.5,-70.5 parent: 2 type: Transform - - uid: 11587 + - uid: 11588 components: - pos: -54.5,-70.5 parent: 2 type: Transform - - uid: 11588 + - uid: 11589 components: - pos: -55.5,-70.5 parent: 2 type: Transform - - uid: 11589 + - uid: 11590 components: - rot: -1.5707963267948966 rad pos: -36.5,-81.5 parent: 2 type: Transform - - uid: 11590 + - uid: 11591 components: - rot: -1.5707963267948966 rad pos: -36.5,-82.5 parent: 2 type: Transform - - uid: 11591 + - uid: 11592 components: - rot: -1.5707963267948966 rad pos: -36.5,-83.5 parent: 2 type: Transform - - uid: 11592 + - uid: 11593 components: - rot: 1.5707963267948966 rad pos: -47.5,-81.5 parent: 2 type: Transform - - uid: 11593 + - uid: 11594 components: - rot: 1.5707963267948966 rad pos: -47.5,-82.5 parent: 2 type: Transform - - uid: 11594 + - uid: 11595 components: - rot: 1.5707963267948966 rad pos: -47.5,-83.5 parent: 2 type: Transform - - uid: 11595 + - uid: 11596 components: - pos: -54.5,-58.5 parent: 2 type: Transform - - uid: 11596 + - uid: 11597 components: - rot: 1.5707963267948966 rad pos: 69.5,-56.5 parent: 2 type: Transform - - uid: 11597 + - uid: 11598 components: - rot: 3.141592653589793 rad pos: 34.5,-36.5 parent: 2 type: Transform - - uid: 11598 + - uid: 11599 components: - pos: 70.5,-55.5 parent: 2 type: Transform - - uid: 11599 + - uid: 11600 components: - rot: -1.5707963267948966 rad pos: -57.5,-51.5 parent: 2 type: Transform - - uid: 11600 + - uid: 11601 components: - rot: -1.5707963267948966 rad pos: -57.5,-52.5 parent: 2 type: Transform - - uid: 11601 + - uid: 11602 components: - rot: -1.5707963267948966 rad pos: -22.5,24.5 parent: 2 type: Transform - - uid: 11602 + - uid: 11603 components: - rot: -1.5707963267948966 rad pos: -22.5,23.5 parent: 2 type: Transform - - uid: 11603 + - uid: 11604 components: - rot: -1.5707963267948966 rad pos: -22.5,22.5 parent: 2 type: Transform - - uid: 11604 + - uid: 11605 components: - rot: -1.5707963267948966 rad pos: -22.5,19.5 parent: 2 type: Transform - - uid: 11605 + - uid: 11606 components: - rot: -1.5707963267948966 rad pos: -22.5,18.5 parent: 2 type: Transform - - uid: 11606 + - uid: 11607 components: - rot: 3.141592653589793 rad pos: -0.5,34.5 parent: 2 type: Transform - - uid: 11607 + - uid: 11608 components: - rot: 3.141592653589793 rad pos: -1.5,34.5 parent: 2 type: Transform - - uid: 11608 + - uid: 11609 components: - rot: 3.141592653589793 rad pos: -2.5,34.5 parent: 2 type: Transform - - uid: 11609 + - uid: 11610 components: - pos: 4.5,-52.5 parent: 2 type: Transform - - uid: 11610 + - uid: 11611 components: - rot: -1.5707963267948966 rad pos: 65.5,-7.5 parent: 2 type: Transform - - uid: 11611 + - uid: 11612 components: - rot: 3.141592653589793 rad pos: 61.5,-6.5 parent: 2 type: Transform - - uid: 11612 + - uid: 11613 components: - rot: 3.141592653589793 rad pos: 60.5,-6.5 parent: 2 type: Transform - - uid: 11613 + - uid: 11614 components: - pos: 31.5,-60.5 parent: 2 type: Transform - - uid: 11614 + - uid: 11615 components: - rot: 3.141592653589793 rad pos: 30.5,-62.5 parent: 2 type: Transform - - uid: 11615 + - uid: 11616 components: - pos: 30.5,-60.5 parent: 2 type: Transform - - uid: 11616 + - uid: 11617 components: - rot: -1.5707963267948966 rad pos: 65.5,-8.5 parent: 2 type: Transform - - uid: 11617 + - uid: 11618 components: - rot: 3.141592653589793 rad pos: -50.5,10.5 parent: 2 type: Transform - - uid: 11618 + - uid: 11619 components: - rot: 3.141592653589793 rad pos: 25.5,-4.5 parent: 2 type: Transform - - uid: 11619 + - uid: 11620 components: - pos: 71.5,-55.5 parent: 2 type: Transform - - uid: 11620 + - uid: 11621 components: - pos: 23.5,6.5 parent: 2 type: Transform - - uid: 11621 + - uid: 11622 components: - rot: 3.141592653589793 rad pos: -5.5,-16.5 parent: 2 type: Transform - - uid: 11622 + - uid: 11623 components: - rot: 3.141592653589793 rad pos: 30.5,-43.5 parent: 2 type: Transform - - uid: 11623 + - uid: 11624 components: - rot: 3.141592653589793 rad pos: 29.5,-43.5 parent: 2 type: Transform - - uid: 11624 + - uid: 11625 components: - rot: 3.141592653589793 rad pos: 28.5,-43.5 parent: 2 type: Transform - - uid: 11625 + - uid: 11626 components: - rot: 3.141592653589793 rad pos: 18.5,-43.5 parent: 2 type: Transform - - uid: 11626 + - uid: 11627 components: - rot: 3.141592653589793 rad pos: 17.5,-43.5 parent: 2 type: Transform - - uid: 11627 + - uid: 11628 components: - rot: 3.141592653589793 rad pos: 16.5,-43.5 parent: 2 type: Transform - - uid: 11628 + - uid: 11629 components: - rot: 3.141592653589793 rad pos: 44.5,-43.5 parent: 2 type: Transform - - uid: 11629 + - uid: 11630 components: - rot: 3.141592653589793 rad pos: 43.5,-43.5 parent: 2 type: Transform - - uid: 11630 + - uid: 11631 components: - rot: 3.141592653589793 rad pos: 42.5,-43.5 parent: 2 type: Transform - - uid: 11631 + - uid: 11632 components: - pos: 34.5,-34.5 parent: 2 type: Transform - - uid: 11632 + - uid: 11633 components: - pos: 3.5,-40.5 parent: 2 type: Transform - - uid: 11633 + - uid: 11634 components: - pos: -14.5,8.5 parent: 2 type: Transform - - uid: 11634 + - uid: 11635 components: - pos: -15.5,8.5 parent: 2 type: Transform - - uid: 11635 + - uid: 11636 components: - pos: -16.5,8.5 parent: 2 type: Transform - - uid: 11636 + - uid: 11637 components: - rot: 3.141592653589793 rad pos: -40.5,-0.5 parent: 2 type: Transform - - uid: 11637 + - uid: 11638 components: - rot: 3.141592653589793 rad pos: -39.5,-0.5 parent: 2 type: Transform - - uid: 11638 + - uid: 11639 components: - rot: 3.141592653589793 rad pos: -38.5,-0.5 parent: 2 type: Transform - - uid: 11639 + - uid: 11640 components: - rot: 3.141592653589793 rad pos: -36.5,-0.5 parent: 2 type: Transform - - uid: 11640 + - uid: 11641 components: - rot: 3.141592653589793 rad pos: -35.5,-0.5 parent: 2 type: Transform - - uid: 11641 + - uid: 11642 components: - rot: 3.141592653589793 rad pos: -34.5,-0.5 parent: 2 type: Transform - - uid: 11642 + - uid: 11643 components: - rot: -1.5707963267948966 rad pos: -17.5,-70.5 parent: 2 type: Transform - - uid: 11643 + - uid: 11644 components: - rot: -1.5707963267948966 rad pos: -17.5,-71.5 parent: 2 type: Transform - - uid: 11644 + - uid: 11645 components: - rot: 3.141592653589793 rad pos: 31.5,-62.5 parent: 2 type: Transform - - uid: 11645 + - uid: 11646 components: - rot: -1.5707963267948966 rad pos: -18.5,-34.5 parent: 2 type: Transform - - uid: 11646 + - uid: 11647 components: - rot: -1.5707963267948966 rad pos: -18.5,-33.5 parent: 2 type: Transform - - uid: 11647 + - uid: 11648 components: - rot: -1.5707963267948966 rad pos: -18.5,-32.5 parent: 2 type: Transform - - uid: 11648 + - uid: 11649 components: - rot: 1.5707963267948966 rad pos: -34.5,-67.5 parent: 2 type: Transform - - uid: 11649 + - uid: 11650 components: - rot: 3.141592653589793 rad pos: 22.5,16.5 parent: 2 type: Transform - - uid: 11650 + - uid: 11651 components: - rot: 3.141592653589793 rad pos: 21.5,16.5 parent: 2 type: Transform - - uid: 11651 + - uid: 11652 components: - rot: 3.141592653589793 rad pos: 32.5,-18.5 parent: 2 type: Transform - - uid: 11652 + - uid: 11653 components: - rot: 3.141592653589793 rad pos: 31.5,-18.5 parent: 2 type: Transform - - uid: 11653 + - uid: 11654 components: - rot: 3.141592653589793 rad pos: 30.5,-18.5 parent: 2 type: Transform - - uid: 11654 + - uid: 11655 components: - rot: 3.141592653589793 rad pos: 20.5,-18.5 parent: 2 type: Transform - - uid: 11655 + - uid: 11656 components: - rot: 3.141592653589793 rad pos: 19.5,-18.5 parent: 2 type: Transform - - uid: 11656 + - uid: 11657 components: - rot: 3.141592653589793 rad pos: 18.5,-18.5 parent: 2 type: Transform - - uid: 11657 + - uid: 11658 components: - rot: 1.5707963267948966 rad pos: 18.5,1.5 parent: 2 type: Transform - - uid: 11658 + - uid: 11659 components: - rot: 1.5707963267948966 rad pos: 18.5,0.5 parent: 2 type: Transform - - uid: 11659 + - uid: 11660 components: - rot: -1.5707963267948966 rad pos: 57.5,58.5 parent: 2 type: Transform - - uid: 11660 + - uid: 11661 components: - rot: -1.5707963267948966 rad pos: 57.5,57.5 parent: 2 type: Transform - - uid: 11661 + - uid: 11662 components: - rot: -1.5707963267948966 rad pos: 57.5,56.5 parent: 2 type: Transform - - uid: 11662 + - uid: 11663 components: - rot: 1.5707963267948966 rad pos: 51.5,58.5 parent: 2 type: Transform - - uid: 11663 + - uid: 11664 components: - rot: 1.5707963267948966 rad pos: 51.5,57.5 parent: 2 type: Transform - - uid: 11664 + - uid: 11665 components: - rot: 1.5707963267948966 rad pos: 51.5,56.5 parent: 2 type: Transform - - uid: 11665 + - uid: 11666 components: - rot: -1.5707963267948966 rad pos: 55.5,29.5 parent: 2 type: Transform - - uid: 11666 + - uid: 11667 components: - rot: -1.5707963267948966 rad pos: 55.5,28.5 parent: 2 type: Transform - - uid: 11667 + - uid: 11668 components: - rot: 1.5707963267948966 rad pos: 52.5,29.5 parent: 2 type: Transform - - uid: 11668 + - uid: 11669 components: - rot: 1.5707963267948966 rad pos: 52.5,28.5 parent: 2 type: Transform - - uid: 11669 + - uid: 11670 components: - pos: -18.5,67.5 parent: 2 type: Transform - - uid: 11670 + - uid: 11671 components: - pos: -16.5,67.5 parent: 2 type: Transform - - uid: 11671 + - uid: 11672 components: - pos: 6.5,34.5 parent: 2 type: Transform - - uid: 11672 + - uid: 11673 components: - pos: 10.5,34.5 parent: 2 type: Transform - - uid: 11673 + - uid: 11674 components: - pos: -1.5,43.5 parent: 2 type: Transform - - uid: 11674 + - uid: 11675 components: - pos: -3.5,43.5 parent: 2 type: Transform - - uid: 11675 + - uid: 11676 components: - pos: -16.5,63.5 parent: 2 type: Transform - - uid: 11676 + - uid: 11677 components: - pos: -17.5,63.5 parent: 2 type: Transform - - uid: 11677 + - uid: 11678 components: - pos: -18.5,63.5 parent: 2 type: Transform - - uid: 11678 + - uid: 11679 components: - rot: -1.5707963267948966 rad pos: -15.5,62.5 parent: 2 type: Transform - - uid: 11679 + - uid: 11680 components: - rot: -1.5707963267948966 rad pos: -15.5,61.5 parent: 2 type: Transform - - uid: 11680 + - uid: 11681 components: - rot: 1.5707963267948966 rad pos: -19.5,62.5 parent: 2 type: Transform - - uid: 11681 + - uid: 11682 components: - rot: 1.5707963267948966 rad pos: -19.5,61.5 parent: 2 type: Transform - - uid: 11682 + - uid: 11683 components: - rot: 3.141592653589793 rad pos: -18.5,60.5 parent: 2 type: Transform - - uid: 11683 + - uid: 11684 components: - rot: 3.141592653589793 rad pos: -17.5,60.5 parent: 2 type: Transform - - uid: 11684 + - uid: 11685 components: - rot: 3.141592653589793 rad pos: -16.5,60.5 parent: 2 type: Transform - - uid: 11685 + - uid: 11686 components: - rot: -1.5707963267948966 rad pos: -40.5,-90.5 parent: 2 type: Transform - - uid: 11686 + - uid: 11687 components: - rot: -1.5707963267948966 rad pos: -40.5,-89.5 parent: 2 type: Transform - - uid: 11687 + - uid: 11688 components: - rot: 1.5707963267948966 rad pos: -43.5,-89.5 parent: 2 type: Transform - - uid: 11688 + - uid: 11689 components: - rot: 1.5707963267948966 rad pos: -43.5,-90.5 parent: 2 type: Transform - - uid: 11689 + - uid: 11690 components: - pos: -42.5,-97.5 parent: 2 type: Transform - - uid: 11690 + - uid: 11691 components: - rot: -1.5707963267948966 rad pos: -4.5,-99.5 parent: 2 type: Transform - - uid: 11691 + - uid: 11692 components: - pos: -68.5,-42.5 parent: 2 type: Transform - - uid: 11692 + - uid: 11693 components: - pos: -69.5,-42.5 parent: 2 type: Transform - - uid: 11693 + - uid: 11694 components: - rot: 1.5707963267948966 rad pos: -70.5,-43.5 parent: 2 type: Transform - - uid: 11694 + - uid: 11695 components: - rot: 1.5707963267948966 rad pos: -70.5,-44.5 parent: 2 type: Transform - - uid: 11695 + - uid: 11696 components: - rot: 1.5707963267948966 rad pos: 62.5,-7.5 parent: 2 type: Transform - - uid: 11696 + - uid: 11697 components: - rot: 1.5707963267948966 rad pos: 62.5,-8.5 parent: 2 type: Transform - - uid: 11697 + - uid: 11698 components: - rot: 1.5707963267948966 rad pos: 62.5,-9.5 parent: 2 type: Transform - - uid: 11698 + - uid: 11699 components: - pos: 2.5,-40.5 parent: 2 type: Transform - - uid: 11699 + - uid: 11700 components: - pos: 60.5,-64.5 parent: 2 type: Transform - - uid: 11700 + - uid: 11701 components: - pos: 64.5,-66.5 parent: 2 type: Transform - - uid: 11701 + - uid: 11702 components: - pos: 64.5,-64.5 parent: 2 type: Transform - - uid: 11702 + - uid: 11703 components: - pos: 62.5,-66.5 parent: 2 type: Transform - - uid: 11703 + - uid: 11704 components: - pos: 63.5,-66.5 parent: 2 type: Transform - - uid: 11704 + - uid: 11705 components: - pos: 59.5,-66.5 parent: 2 type: Transform - - uid: 11705 + - uid: 11706 components: - pos: 58.5,-66.5 parent: 2 type: Transform - - uid: 11706 + - uid: 11707 components: - pos: 62.5,-62.5 parent: 2 type: Transform - - uid: 11707 + - uid: 11708 components: - pos: 63.5,-62.5 parent: 2 type: Transform - - uid: 11708 + - uid: 11709 components: - pos: 59.5,-62.5 parent: 2 type: Transform - - uid: 11709 + - uid: 11710 components: - pos: 58.5,-62.5 parent: 2 type: Transform - - uid: 11710 + - uid: 11711 components: - pos: 58.5,-64.5 parent: 2 type: Transform - - uid: 11711 + - uid: 11712 components: - pos: 59.5,-64.5 parent: 2 type: Transform - - uid: 11712 + - uid: 11713 components: - pos: 62.5,-64.5 parent: 2 type: Transform - - uid: 11713 + - uid: 11714 components: - pos: 63.5,-64.5 parent: 2 type: Transform - - uid: 11714 + - uid: 11715 components: - pos: 64.5,-62.5 parent: 2 type: Transform - - uid: 11715 + - uid: 11716 components: - pos: 60.5,-62.5 parent: 2 type: Transform - - uid: 11716 + - uid: 11717 components: - pos: 50.5,-32.5 parent: 2 type: Transform - - uid: 11717 + - uid: 11718 components: - pos: 60.5,-66.5 parent: 2 type: Transform - - uid: 11718 + - uid: 11719 components: - rot: 1.5707963267948966 rad pos: 69.5,-57.5 parent: 2 type: Transform - - uid: 11719 + - uid: 11720 components: - rot: -1.5707963267948966 rad pos: 56.5,-67.5 parent: 2 type: Transform - - uid: 11720 + - uid: 11721 components: - rot: 1.5707963267948966 rad pos: 54.5,-67.5 parent: 2 type: Transform - - uid: 11721 + - uid: 11722 components: - rot: 3.141592653589793 rad pos: 45.5,-43.5 parent: 2 type: Transform - - uid: 11722 + - uid: 11723 components: - pos: -5.5,-14.5 parent: 2 type: Transform - - uid: 11723 + - uid: 11724 components: - rot: 3.141592653589793 rad pos: 25.5,-69.5 parent: 2 type: Transform - - uid: 11724 + - uid: 11725 components: - rot: 3.141592653589793 rad pos: 26.5,-69.5 parent: 2 type: Transform - - uid: 11725 + - uid: 11726 components: - pos: 50.5,-71.5 parent: 2 type: Transform - - uid: 11726 + - uid: 11727 components: - rot: 3.141592653589793 rad pos: 50.5,-73.5 parent: 2 type: Transform - - uid: 11727 + - uid: 11728 components: - pos: -37.5,-45.5 parent: 2 type: Transform - - uid: 11728 + - uid: 11729 components: - pos: -36.5,-45.5 parent: 2 type: Transform - proto: ChairFolding entities: - - uid: 11729 + - uid: 11730 components: - rot: -1.5707963267948966 rad pos: 28.5,1.5 parent: 2 type: Transform - - uid: 11730 + - uid: 11731 components: - rot: -1.5707963267948966 rad pos: 28.5,3.5 parent: 2 type: Transform - - uid: 11731 + - uid: 11732 components: - rot: -1.5707963267948966 rad pos: 29.5,1.5 parent: 2 type: Transform - - uid: 11732 + - uid: 11733 components: - rot: -1.5707963267948966 rad pos: 29.5,2.5 parent: 2 type: Transform - - uid: 11733 + - uid: 11734 components: - rot: -1.5707963267948966 rad pos: 29.5,-0.5 parent: 2 type: Transform - - uid: 11734 + - uid: 11735 components: - rot: -1.5707963267948966 rad pos: 28.5,-0.5 parent: 2 type: Transform - - uid: 11735 + - uid: 11736 components: - rot: -1.5707963267948966 rad pos: 28.5,0.5 parent: 2 type: Transform - - uid: 11736 + - uid: 11737 components: - rot: -1.5707963267948966 rad pos: 29.5,0.5 parent: 2 type: Transform - - uid: 11737 + - uid: 11738 components: - rot: -1.5707963267948966 rad pos: 28.5,-1.5 parent: 2 type: Transform - - uid: 11738 + - uid: 11739 components: - rot: -1.5707963267948966 rad pos: 28.5,2.5 parent: 2 type: Transform - - uid: 11739 + - uid: 11740 components: - rot: -1.5707963267948966 rad pos: 18.5,26.5 parent: 2 type: Transform - - uid: 11740 + - uid: 11741 components: - rot: 1.5707963267948966 rad pos: -25.5,53.5 parent: 2 type: Transform - - uid: 11741 + - uid: 11742 components: - pos: -27.5,-28.5 parent: 2 type: Transform - - uid: 11742 + - uid: 11743 components: - pos: -34.5,-69.5 parent: 2 type: Transform - - uid: 11743 + - uid: 11744 components: - pos: -24.5,-95.5 parent: 2 type: Transform - - uid: 11744 + - uid: 11745 components: - pos: -25.5,-95.5 parent: 2 type: Transform - - uid: 11745 + - uid: 11746 components: - pos: -19.5,-95.5 parent: 2 type: Transform - - uid: 11746 + - uid: 11747 components: - pos: -29.5,-28.5 parent: 2 type: Transform - proto: ChairOfficeDark entities: - - uid: 11747 + - uid: 11748 components: - rot: 1.5707963267948966 rad pos: -25.5,54.5 parent: 2 type: Transform - - uid: 11748 + - uid: 11749 components: - rot: -1.5707963267948966 rad pos: 38.5,-3.5 parent: 2 type: Transform - - uid: 11749 + - uid: 11750 components: - rot: -1.5707963267948966 rad pos: 38.5,-4.5 parent: 2 type: Transform - - uid: 11750 + - uid: 11751 components: - rot: -1.5707963267948966 rad pos: 71.5,-36.5 parent: 2 type: Transform - - uid: 11751 + - uid: 11752 components: - rot: 3.141592653589793 rad pos: 68.5,-44.5 parent: 2 type: Transform - - uid: 11752 + - uid: 11753 components: - rot: 1.5707963267948966 rad pos: -27.5,-12.5 parent: 2 type: Transform - - uid: 11753 + - uid: 11754 components: - rot: 3.141592653589793 rad pos: 50.5,-53.5 parent: 2 type: Transform - - uid: 11754 + - uid: 11755 components: - rot: 1.5707963267948966 rad pos: -22.5,-34.5 parent: 2 type: Transform - - uid: 11755 + - uid: 11756 components: - rot: 3.141592653589793 rad pos: 21.5,-45.5 parent: 2 type: Transform - - uid: 11756 + - uid: 11757 components: - rot: -1.5707963267948966 rad pos: -16.5,25.5 parent: 2 type: Transform - - uid: 11757 + - uid: 11758 components: - rot: -1.5707963267948966 rad pos: -27.5,22.5 parent: 2 type: Transform - - uid: 11758 + - uid: 11759 components: - pos: -32.5,30.5 parent: 2 type: Transform - - uid: 11759 + - uid: 11760 components: - rot: 1.5707963267948966 rad pos: 1.5,20.5 parent: 2 type: Transform - - uid: 11760 + - uid: 11761 components: - pos: -33.5,-69.5 parent: 2 type: Transform - - uid: 11761 + - uid: 11762 components: - rot: 1.5707963267948966 rad pos: 72.5,37.5 parent: 2 type: Transform - - uid: 11762 + - uid: 11763 components: - rot: -1.5707963267948966 rad pos: -4.5,-97.5 parent: 2 type: Transform - - uid: 11763 + - uid: 11764 components: - rot: 1.5707963267948966 rad pos: -13.5,-18.5 parent: 2 type: Transform - - uid: 11764 + - uid: 11765 components: - rot: 3.141592653589793 rad pos: 62.5,-31.5 parent: 2 type: Transform - - uid: 11765 + - uid: 11766 components: - rot: 3.141592653589793 rad pos: 73.5,-32.5 parent: 2 type: Transform - - uid: 11766 + - uid: 11767 components: - rot: -1.5707963267948966 rad pos: -16.5,-22.5 @@ -91974,91 +77148,91 @@ entities: type: Transform - proto: ChairOfficeLight entities: - - uid: 11767 + - uid: 11768 components: - rot: 3.141592653589793 rad pos: 27.5,-22.5 parent: 2 type: Transform - - uid: 11768 + - uid: 11769 components: - rot: 3.141592653589793 rad pos: 29.5,-22.5 parent: 2 type: Transform - - uid: 11769 + - uid: 11770 components: - pos: 28.5,-37.5 parent: 2 type: Transform - - uid: 11770 + - uid: 11771 components: - rot: 3.141592653589793 rad pos: 23.5,-22.5 parent: 2 type: Transform - - uid: 11771 + - uid: 11772 components: - rot: 3.141592653589793 rad pos: 21.5,-22.5 parent: 2 type: Transform - - uid: 11772 + - uid: 11773 components: - pos: -23.5,-70.5 parent: 2 type: Transform - - uid: 11773 + - uid: 11774 components: - rot: 3.141592653589793 rad pos: -4.5,-49.5 parent: 2 type: Transform - - uid: 11774 + - uid: 11775 components: - rot: 3.141592653589793 rad pos: 25.5,-25.5 parent: 2 type: Transform - - uid: 11775 + - uid: 11776 components: - pos: -10.5,-36.5 parent: 2 type: Transform - - uid: 11776 + - uid: 11777 components: - rot: 3.141592653589793 rad pos: 17.5,20.5 parent: 2 type: Transform - - uid: 11777 + - uid: 11778 components: - rot: 3.141592653589793 rad pos: 53.5,12.5 parent: 2 type: Transform - - uid: 11778 + - uid: 11779 components: - rot: -1.5707963267948966 rad pos: 52.5,-41.5 parent: 2 type: Transform - - uid: 11779 + - uid: 11780 components: - pos: 42.5,-39.5 parent: 2 type: Transform - - uid: 11780 + - uid: 11781 components: - pos: -26.5,15.5 parent: 2 type: Transform - - uid: 11781 + - uid: 11782 components: - pos: -23.5,12.5 parent: 2 type: Transform - - uid: 11782 + - uid: 11783 components: - rot: 1.5707963267948966 rad pos: 47.5,6.5 @@ -92066,510 +77240,510 @@ entities: type: Transform - proto: ChairPilotSeat entities: - - uid: 11783 + - uid: 11784 components: - rot: 3.141592653589793 rad pos: 25.5,-22.5 parent: 2 type: Transform - - uid: 11784 + - uid: 11785 components: - rot: 3.141592653589793 rad pos: 16.5,23.5 parent: 2 type: Transform - - uid: 11785 + - uid: 11786 components: - pos: 25.5,20.5 parent: 2 type: Transform - - uid: 11786 + - uid: 11787 components: - rot: 3.141592653589793 rad pos: 62.5,-54.5 parent: 2 type: Transform - - uid: 11787 + - uid: 11788 components: - rot: 3.141592653589793 rad pos: 31.5,-47.5 parent: 2 type: Transform - - uid: 11788 + - uid: 11789 components: - pos: 62.5,-0.5 parent: 2 type: Transform - - uid: 11789 + - uid: 11790 components: - pos: 59.5,-0.5 parent: 2 type: Transform - - uid: 11790 + - uid: 11791 components: - pos: 61.5,-0.5 parent: 2 type: Transform - - uid: 11791 + - uid: 11792 components: - pos: 60.5,-0.5 parent: 2 type: Transform - - uid: 11792 + - uid: 11793 components: - rot: -1.5707963267948966 rad pos: -54.5,-13.5 parent: 2 type: Transform - - uid: 11793 + - uid: 11794 components: - rot: -1.5707963267948966 rad pos: 31.5,-28.5 parent: 2 type: Transform - - uid: 11794 + - uid: 11795 components: - rot: 1.5707963267948966 rad pos: -52.5,-87.5 parent: 2 type: Transform - - uid: 11795 + - uid: 11796 components: - pos: 54.5,58.5 parent: 2 type: Transform - proto: ChairWood entities: - - uid: 11796 + - uid: 11797 components: - pos: 9.5,-5.5 parent: 2 type: Transform - - uid: 11797 + - uid: 11798 components: - rot: 1.5707963267948966 rad pos: 8.5,-6.5 parent: 2 type: Transform - - uid: 11798 + - uid: 11799 components: - rot: 1.5707963267948966 rad pos: 8.5,-7.5 parent: 2 type: Transform - - uid: 11799 + - uid: 11800 components: - rot: -1.5707963267948966 rad pos: 3.5,1.5 parent: 2 type: Transform - - uid: 11800 + - uid: 11801 components: - rot: 1.5707963267948966 rad pos: 1.5,1.5 parent: 2 type: Transform - - uid: 11801 + - uid: 11802 components: - rot: -1.5707963267948966 rad pos: 11.5,-7.5 parent: 2 type: Transform - - uid: 11802 + - uid: 11803 components: - pos: 10.5,-5.5 parent: 2 type: Transform - - uid: 11803 + - uid: 11804 components: - rot: 3.141592653589793 rad pos: 10.5,-8.5 parent: 2 type: Transform - - uid: 11804 + - uid: 11805 components: - rot: 1.5707963267948966 rad pos: 10.5,7.5 parent: 2 type: Transform - - uid: 11805 + - uid: 11806 components: - rot: 3.141592653589793 rad pos: 9.5,-8.5 parent: 2 type: Transform - - uid: 11806 + - uid: 11807 components: - rot: -1.5707963267948966 rad pos: 11.5,-6.5 parent: 2 type: Transform - - uid: 11807 + - uid: 11808 components: - rot: 1.5707963267948966 rad pos: 1.5,0.5 parent: 2 type: Transform - - uid: 11808 + - uid: 11809 components: - rot: -1.5707963267948966 rad pos: 3.5,0.5 parent: 2 type: Transform - - uid: 11809 + - uid: 11810 components: - rot: -1.5707963267948966 rad pos: 12.5,8.5 parent: 2 type: Transform - - uid: 11810 + - uid: 11811 components: - rot: -1.5707963267948966 rad pos: 18.5,27.5 parent: 2 type: Transform - - uid: 11811 + - uid: 11812 components: - pos: -1.5,-16.5 parent: 2 type: Transform - - uid: 11812 + - uid: 11813 components: - pos: 11.5,12.5 parent: 2 type: Transform - - uid: 11813 + - uid: 11814 components: - pos: 12.5,12.5 parent: 2 type: Transform - - uid: 11814 + - uid: 11815 components: - rot: -1.5707963267948966 rad pos: 12.5,7.5 parent: 2 type: Transform - - uid: 11815 + - uid: 11816 components: - rot: 3.141592653589793 rad pos: 12.5,10.5 parent: 2 type: Transform - - uid: 11816 + - uid: 11817 components: - rot: 3.141592653589793 rad pos: 11.5,10.5 parent: 2 type: Transform - - uid: 11817 + - uid: 11818 components: - rot: 1.5707963267948966 rad pos: -9.5,1.5 parent: 2 type: Transform - - uid: 11818 + - uid: 11819 components: - rot: 1.5707963267948966 rad pos: -9.5,0.5 parent: 2 type: Transform - - uid: 11819 + - uid: 11820 components: - rot: 1.5707963267948966 rad pos: 10.5,8.5 parent: 2 type: Transform - - uid: 11820 + - uid: 11821 components: - rot: 1.5707963267948966 rad pos: 53.5,-26.5 parent: 2 type: Transform - - uid: 11821 + - uid: 11822 components: - rot: -1.5707963267948966 rad pos: -32.5,-67.5 parent: 2 type: Transform - - uid: 11822 + - uid: 11823 components: - rot: 3.141592653589793 rad pos: -36.5,9.5 parent: 2 type: Transform - - uid: 11823 + - uid: 11824 components: - rot: 3.141592653589793 rad pos: -35.5,9.5 parent: 2 type: Transform - - uid: 11824 + - uid: 11825 components: - rot: 3.141592653589793 rad pos: -36.5,10.5 parent: 2 type: Transform - - uid: 11825 + - uid: 11826 components: - rot: 3.141592653589793 rad pos: -35.5,10.5 parent: 2 type: Transform - - uid: 11826 + - uid: 11827 components: - rot: 3.141592653589793 rad pos: -35.5,11.5 parent: 2 type: Transform - - uid: 11827 + - uid: 11828 components: - rot: 3.141592653589793 rad pos: -36.5,11.5 parent: 2 type: Transform - - uid: 11828 + - uid: 11829 components: - rot: 3.141592653589793 rad pos: -36.5,12.5 parent: 2 type: Transform - - uid: 11829 + - uid: 11830 components: - rot: 3.141592653589793 rad pos: -35.5,12.5 parent: 2 type: Transform - - uid: 11830 + - uid: 11831 components: - rot: 3.141592653589793 rad pos: -39.5,12.5 parent: 2 type: Transform - - uid: 11831 + - uid: 11832 components: - rot: 3.141592653589793 rad pos: -40.5,11.5 parent: 2 type: Transform - - uid: 11832 + - uid: 11833 components: - rot: 3.141592653589793 rad pos: -39.5,11.5 parent: 2 type: Transform - - uid: 11833 + - uid: 11834 components: - rot: 3.141592653589793 rad pos: -40.5,10.5 parent: 2 type: Transform - - uid: 11834 + - uid: 11835 components: - rot: 3.141592653589793 rad pos: -39.5,10.5 parent: 2 type: Transform - - uid: 11835 + - uid: 11836 components: - rot: 3.141592653589793 rad pos: -40.5,9.5 parent: 2 type: Transform - - uid: 11836 + - uid: 11837 components: - rot: 3.141592653589793 rad pos: -39.5,9.5 parent: 2 type: Transform - - uid: 11837 + - uid: 11838 components: - rot: 3.141592653589793 rad pos: -40.5,12.5 parent: 2 type: Transform - - uid: 11838 + - uid: 11839 components: - rot: 3.141592653589793 rad pos: -3.5,51.5 parent: 2 type: Transform - - uid: 11839 + - uid: 11840 components: - pos: -3.5,53.5 parent: 2 type: Transform - - uid: 11840 + - uid: 11841 components: - pos: -17.5,43.5 parent: 2 type: Transform - - uid: 11841 + - uid: 11842 components: - pos: -16.5,43.5 parent: 2 type: Transform - - uid: 11842 + - uid: 11843 components: - rot: 3.141592653589793 rad pos: -17.5,40.5 parent: 2 type: Transform - - uid: 11843 + - uid: 11844 components: - rot: -1.5707963267948966 rad pos: -7.5,1.5 parent: 2 type: Transform - - uid: 11844 + - uid: 11845 components: - rot: -1.5707963267948966 rad pos: -7.5,0.5 parent: 2 type: Transform - - uid: 11845 + - uid: 11846 components: - rot: 1.5707963267948966 rad pos: -5.5,1.5 parent: 2 type: Transform - - uid: 11846 + - uid: 11847 components: - rot: 1.5707963267948966 rad pos: -5.5,0.5 parent: 2 type: Transform - - uid: 11847 + - uid: 11848 components: - rot: -1.5707963267948966 rad pos: -3.5,1.5 parent: 2 type: Transform - - uid: 11848 + - uid: 11849 components: - rot: -1.5707963267948966 rad pos: -3.5,0.5 parent: 2 type: Transform - - uid: 11849 + - uid: 11850 components: - rot: 3.141592653589793 rad pos: -16.5,40.5 parent: 2 type: Transform - - uid: 11850 + - uid: 11851 components: - rot: 1.5707963267948966 rad pos: -15.5,47.5 parent: 2 type: Transform - - uid: 11851 + - uid: 11852 components: - rot: -1.5707963267948966 rad pos: 46.5,-16.5 parent: 2 type: Transform - - uid: 11852 + - uid: 11853 components: - rot: -1.5707963267948966 rad pos: 9.5,32.5 parent: 2 type: Transform - - uid: 11853 + - uid: 11854 components: - rot: 1.5707963267948966 rad pos: 7.5,32.5 parent: 2 type: Transform - - uid: 11854 + - uid: 11855 components: - rot: 3.141592653589793 rad pos: -11.5,34.5 parent: 2 type: Transform - - uid: 11855 + - uid: 11856 components: - rot: -1.5707963267948966 rad pos: 41.5,43.5 parent: 2 type: Transform - - uid: 11856 + - uid: 11857 components: - rot: -1.5707963267948966 rad pos: 39.5,46.5 parent: 2 type: Transform - - uid: 11857 + - uid: 11858 components: - rot: -1.5707963267948966 rad pos: 39.5,45.5 parent: 2 type: Transform - - uid: 11858 + - uid: 11859 components: - rot: 1.5707963267948966 rad pos: 36.5,46.5 parent: 2 type: Transform - - uid: 11859 + - uid: 11860 components: - rot: 1.5707963267948966 rad pos: 36.5,45.5 parent: 2 type: Transform - - uid: 11860 + - uid: 11861 components: - rot: 3.141592653589793 rad pos: 42.5,47.5 parent: 2 type: Transform - - uid: 11861 + - uid: 11862 components: - rot: 3.141592653589793 rad pos: 43.5,47.5 parent: 2 type: Transform - - uid: 11862 + - uid: 11863 components: - rot: -1.5707963267948966 rad pos: 33.5,47.5 parent: 2 type: Transform - - uid: 11863 + - uid: 11864 components: - rot: -1.5707963267948966 rad pos: 33.5,46.5 parent: 2 type: Transform - - uid: 11864 + - uid: 11865 components: - rot: 1.5707963267948966 rad pos: 32.5,44.5 parent: 2 type: Transform - - uid: 11865 + - uid: 11866 components: - rot: -1.5707963267948966 rad pos: 34.5,44.5 parent: 2 type: Transform - - uid: 11866 + - uid: 11867 components: - rot: 1.5707963267948966 rad pos: 39.5,43.5 parent: 2 type: Transform - - uid: 11867 + - uid: 11868 components: - pos: -41.5,-97.5 parent: 2 type: Transform - - uid: 11868 + - uid: 11869 components: - rot: -1.5707963267948966 rad pos: 4.5,-35.5 parent: 2 type: Transform - - uid: 11869 + - uid: 11870 components: - rot: 1.5707963267948966 rad pos: 2.5,-35.5 @@ -92577,98 +77751,98 @@ entities: type: Transform - proto: CheapLighter entities: - - uid: 11871 + - uid: 11872 components: - flags: InContainer type: MetaData - - parent: 11870 + - parent: 11871 type: Transform - canCollide: False type: Physics - - uid: 11872 + - uid: 11873 components: - pos: 1.9080955,23.554485 parent: 2 type: Transform - proto: CheapRollerBed entities: - - uid: 11873 + - uid: 11874 components: - pos: -9.460541,-47.24853 parent: 2 type: Transform - - uid: 11874 + - uid: 11875 components: - pos: -9.476166,-48.27978 parent: 2 type: Transform - proto: chem_master entities: - - uid: 11875 + - uid: 11876 components: - pos: 2.5,-45.5 parent: 2 type: Transform - - uid: 11876 + - uid: 11877 components: - pos: 2.5,-50.5 parent: 2 type: Transform - - uid: 11877 + - uid: 11878 components: - pos: 2.5,-47.5 parent: 2 type: Transform - proto: ChemDispenser entities: - - uid: 11878 + - uid: 11879 components: - pos: 4.5,-45.5 parent: 2 type: Transform - - uid: 11879 + - uid: 11880 components: - pos: 4.5,-47.5 parent: 2 type: Transform - - uid: 11880 + - uid: 11881 components: - pos: 2.5,-49.5 parent: 2 type: Transform - proto: ChemistryHotplate entities: - - uid: 11881 + - uid: 11882 components: - pos: 4.5,-50.5 parent: 2 type: Transform - proto: ChessBoard entities: - - uid: 11882 + - uid: 11883 components: - pos: 52.446415,7.1683345 parent: 2 type: Transform - - uid: 11883 + - uid: 11884 components: - rot: 3.141592653589793 rad pos: -5.5158696,-15.414865 parent: 2 type: Transform - - uid: 11884 + - uid: 11885 components: - rot: 1.5707963267948966 rad pos: 8.516274,32.607613 parent: 2 type: Transform - - uid: 11885 + - uid: 11886 components: - rot: 3.141592653589793 rad pos: -3.4812293,52.59116 parent: 2 type: Transform - - uid: 11886 + - uid: 11887 components: - rot: 3.141592653589793 rad pos: 50.48214,-72.40164 @@ -92676,7 +77850,7 @@ entities: type: Transform - proto: ChurchOrganInstrument entities: - - uid: 11887 + - uid: 11888 components: - rot: -1.5707963267948966 rad pos: -34.5,13.5 @@ -92684,98 +77858,86 @@ entities: type: Transform - proto: Cigar entities: - - uid: 11888 + - uid: 11889 components: - pos: 13.506795,-34.413578 parent: 2 type: Transform - - uid: 11889 + - uid: 11890 components: - pos: 13.55367,-32.429203 parent: 2 type: Transform - - uid: 11890 + - uid: 11891 components: - pos: 13.49117,-32.382328 parent: 2 type: Transform - - uid: 11891 + - uid: 11892 components: - pos: 13.444295,-34.351078 parent: 2 type: Transform - proto: CigarCase entities: - - uid: 11892 + - uid: 11893 components: - pos: -12.420865,-35.409706 parent: 2 type: Transform - - uid: 11893 + - uid: 11894 components: - pos: 15.66736,-87.50202 parent: 2 type: Transform - proto: Cigarette entities: - - uid: 11894 + - uid: 11895 components: - pos: 15.438844,-64.32231 parent: 2 type: Transform - - uid: 11895 + - uid: 11896 components: - pos: 63.44384,24.664883 parent: 2 type: Transform - - uid: 11896 + - uid: 11897 components: - rot: -1.5707963267948966 rad pos: 2.361197,23.616985 parent: 2 type: Transform -- proto: CigaretteSyndicate - entities: - - uid: 30697 - components: - - pos: -16.578083,-33.262604 - parent: 2 - type: Transform - - uid: 30698 - components: - - pos: -16.390583,-33.46573 - parent: 2 - type: Transform - proto: CigarGold entities: - - uid: 11897 + - uid: 11898 components: - rot: -1.5707963267948966 rad pos: 45.625916,-26.476032 parent: 2 type: Transform - - uid: 11898 + - uid: 11899 components: - pos: 65.5063,-0.5499393 parent: 2 type: Transform - proto: CigarGoldCase entities: - - uid: 11899 + - uid: 11900 components: - pos: 61.545517,-1.3427625 parent: 2 type: Transform - proto: CigPackBlue entities: - - uid: 11900 + - uid: 11901 components: - pos: 47.844124,50.55344 parent: 2 type: Transform - proto: CircuitImprinter entities: - - uid: 11901 + - uid: 11902 components: - pos: 44.5,-35.5 parent: 2 @@ -92787,14 +77949,14 @@ entities: type: MaterialStorage - proto: ClockworkShield entities: - - uid: 11902 + - uid: 11903 components: - pos: 57.48767,32.508053 parent: 2 type: Transform - proto: ClosetBombFilled entities: - - uid: 11903 + - uid: 11904 components: - pos: 26.5,31.5 parent: 2 @@ -92817,39 +77979,16 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11904 + - uid: 11905 components: - pos: 51.5,-49.5 parent: 2 type: Transform - proto: ClosetEmergencyFilledRandom entities: - - uid: 11905 - components: - - pos: -52.5,-80.5 - parent: 2 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 11906 components: - - pos: -12.5,10.5 + - pos: -52.5,-80.5 parent: 2 type: Transform - air: @@ -92872,7 +78011,7 @@ entities: type: EntityStorage - uid: 11907 components: - - pos: -18.5,-51.5 + - pos: -12.5,10.5 parent: 2 type: Transform - air: @@ -92895,7 +78034,7 @@ entities: type: EntityStorage - uid: 11908 components: - - pos: 21.5,-52.5 + - pos: -18.5,-51.5 parent: 2 type: Transform - air: @@ -92918,7 +78057,7 @@ entities: type: EntityStorage - uid: 11909 components: - - pos: 24.5,-56.5 + - pos: 21.5,-52.5 parent: 2 type: Transform - air: @@ -92941,7 +78080,7 @@ entities: type: EntityStorage - uid: 11910 components: - - pos: -5.5,-68.5 + - pos: 24.5,-56.5 parent: 2 type: Transform - air: @@ -92964,7 +78103,7 @@ entities: type: EntityStorage - uid: 11911 components: - - pos: 38.5,-32.5 + - pos: -5.5,-68.5 parent: 2 type: Transform - air: @@ -92987,7 +78126,7 @@ entities: type: EntityStorage - uid: 11912 components: - - pos: -25.5,52.5 + - pos: 38.5,-32.5 parent: 2 type: Transform - air: @@ -93010,7 +78149,7 @@ entities: type: EntityStorage - uid: 11913 components: - - pos: 5.5,-69.5 + - pos: -25.5,52.5 parent: 2 type: Transform - air: @@ -93033,7 +78172,7 @@ entities: type: EntityStorage - uid: 11914 components: - - pos: -11.5,-30.5 + - pos: 5.5,-69.5 parent: 2 type: Transform - air: @@ -93054,7 +78193,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11915 + - uid: 11916 components: - pos: 57.5,-14.5 parent: 2 @@ -93077,7 +78216,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11916 + - uid: 11917 components: - pos: 52.5,-50.5 parent: 2 @@ -93100,7 +78239,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11917 + - uid: 11918 components: - pos: -2.5,-11.5 parent: 2 @@ -93123,12 +78262,12 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11918 + - uid: 11919 components: - pos: 43.5,-74.5 parent: 2 type: Transform - - uid: 11919 + - uid: 11920 components: - pos: 11.5,-69.5 parent: 2 @@ -93151,12 +78290,12 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11920 + - uid: 11921 components: - pos: 27.5,-80.5 parent: 2 type: Transform - - uid: 11921 + - uid: 11922 components: - pos: -23.5,-31.5 parent: 2 @@ -93179,12 +78318,12 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11922 + - uid: 11923 components: - pos: 47.5,-92.5 parent: 2 type: Transform - - uid: 11923 + - uid: 11924 components: - pos: -54.5,-5.5 parent: 2 @@ -93207,12 +78346,12 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11924 + - uid: 11925 components: - pos: 31.5,-92.5 parent: 2 type: Transform - - uid: 11925 + - uid: 11926 components: - pos: -57.5,-32.5 parent: 2 @@ -93235,7 +78374,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11926 + - uid: 11927 components: - pos: 17.5,34.5 parent: 2 @@ -93258,7 +78397,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11927 + - uid: 11928 components: - pos: 63.5,-5.5 parent: 2 @@ -93281,7 +78420,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11928 + - uid: 11929 components: - pos: 18.5,-39.5 parent: 2 @@ -93304,7 +78443,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11929 + - uid: 11930 components: - pos: 3.5,-25.5 parent: 2 @@ -93327,7 +78466,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11930 + - uid: 11931 components: - pos: -22.5,-6.5 parent: 2 @@ -93350,7 +78489,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11931 + - uid: 11932 components: - pos: 47.5,-15.5 parent: 2 @@ -93373,7 +78512,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11932 + - uid: 11933 components: - pos: 16.5,-5.5 parent: 2 @@ -93396,7 +78535,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11933 + - uid: 11934 components: - pos: -31.5,-0.5 parent: 2 @@ -93419,7 +78558,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11934 + - uid: 11935 components: - pos: -17.5,38.5 parent: 2 @@ -93442,7 +78581,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11935 + - uid: 11936 components: - pos: -12.5,47.5 parent: 2 @@ -93465,7 +78604,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11936 + - uid: 11937 components: - pos: 50.5,40.5 parent: 2 @@ -93488,7 +78627,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11937 + - uid: 11938 components: - pos: 65.5,1.5 parent: 2 @@ -93511,17 +78650,17 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11938 + - uid: 11939 components: - pos: -15.5,67.5 parent: 2 type: Transform - - uid: 11939 + - uid: 11940 components: - pos: -19.5,67.5 parent: 2 type: Transform - - uid: 11940 + - uid: 11941 components: - pos: -12.5,49.5 parent: 2 @@ -93544,7 +78683,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11941 + - uid: 11942 components: - pos: -26.5,28.5 parent: 2 @@ -93567,7 +78706,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11942 + - uid: 11943 components: - pos: -36.5,-93.5 parent: 2 @@ -93590,7 +78729,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11943 + - uid: 11944 components: - pos: 9.5,-36.5 parent: 2 @@ -93613,7 +78752,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11944 + - uid: 11945 components: - pos: 74.5,-51.5 parent: 2 @@ -93636,7 +78775,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11945 + - uid: 11946 components: - pos: 42.5,-62.5 parent: 2 @@ -93659,7 +78798,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11946 + - uid: 11947 components: - pos: -10.5,-8.5 parent: 2 @@ -93682,7 +78821,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11947 + - uid: 11948 components: - pos: 41.5,-27.5 parent: 2 @@ -93705,19 +78844,24 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11948 + - uid: 11949 components: - pos: 20.5,-21.5 parent: 2 type: Transform - - uid: 11949 + - uid: 11950 components: - pos: -47.5,41.5 parent: 2 type: Transform + - uid: 23696 + components: + - pos: -10.5,-30.5 + parent: 2 + type: Transform - proto: ClosetFireFilled entities: - - uid: 11950 + - uid: 11951 components: - pos: -13.5,10.5 parent: 2 @@ -93740,7 +78884,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11951 + - uid: 11952 components: - pos: -11.5,-45.5 parent: 2 @@ -93763,7 +78907,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11952 + - uid: 11953 components: - pos: -11.5,-73.5 parent: 2 @@ -93786,7 +78930,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11953 + - uid: 11954 components: - pos: 22.5,-52.5 parent: 2 @@ -93809,7 +78953,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11954 + - uid: 11955 components: - pos: 24.5,-55.5 parent: 2 @@ -93832,7 +78976,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11955 + - uid: 11956 components: - pos: -25.5,51.5 parent: 2 @@ -93855,7 +78999,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11956 + - uid: 11957 components: - pos: -12.5,-30.5 parent: 2 @@ -93878,7 +79022,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11957 + - uid: 11958 components: - pos: -2.5,-12.5 parent: 2 @@ -93901,7 +79045,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11958 + - uid: 11959 components: - pos: -52.5,-72.5 parent: 2 @@ -93924,7 +79068,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11959 + - uid: 11960 components: - pos: -55.5,-66.5 parent: 2 @@ -93947,7 +79091,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11960 + - uid: 11961 components: - pos: -57.5,-45.5 parent: 2 @@ -93970,7 +79114,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11961 + - uid: 11962 components: - pos: -23.5,-41.5 parent: 2 @@ -93993,7 +79137,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11962 + - uid: 11963 components: - pos: 22.5,-8.5 parent: 2 @@ -94016,7 +79160,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11963 + - uid: 11964 components: - pos: 62.5,-5.5 parent: 2 @@ -94039,7 +79183,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11964 + - uid: 11965 components: - pos: 19.5,-39.5 parent: 2 @@ -94062,7 +79206,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11965 + - uid: 11966 components: - pos: -23.5,-6.5 parent: 2 @@ -94085,7 +79229,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11966 + - uid: 11967 components: - pos: 16.5,-6.5 parent: 2 @@ -94108,7 +79252,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11967 + - uid: 11968 components: - pos: -32.5,-0.5 parent: 2 @@ -94131,7 +79275,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11968 + - uid: 11969 components: - pos: 2.5,-25.5 parent: 2 @@ -94154,7 +79298,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11969 + - uid: 11970 components: - pos: -11.5,47.5 parent: 2 @@ -94177,7 +79321,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11970 + - uid: 11971 components: - pos: 49.5,40.5 parent: 2 @@ -94200,7 +79344,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11971 + - uid: 11972 components: - pos: -43.5,37.5 parent: 2 @@ -94223,7 +79367,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11972 + - uid: 11973 components: - pos: -31.5,-41.5 parent: 2 @@ -94246,7 +79390,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11973 + - uid: 11974 components: - pos: -27.5,28.5 parent: 2 @@ -94269,7 +79413,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11974 + - uid: 11975 components: - pos: -35.5,-93.5 parent: 2 @@ -94292,7 +79436,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11975 + - uid: 11976 components: - pos: 9.5,-37.5 parent: 2 @@ -94315,7 +79459,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11976 + - uid: 11977 components: - pos: 74.5,-52.5 parent: 2 @@ -94338,7 +79482,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11977 + - uid: 11978 components: - pos: 64.5,-31.5 parent: 2 @@ -94361,7 +79505,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11978 + - uid: 11979 components: - pos: 35.5,-74.5 parent: 2 @@ -94384,24 +79528,24 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11979 + - uid: 11980 components: - pos: 29.5,-92.5 parent: 2 type: Transform - - uid: 11980 + - uid: 11981 components: - pos: 49.5,-92.5 parent: 2 type: Transform - - uid: 11981 + - uid: 11982 components: - pos: 28.5,-80.5 parent: 2 type: Transform - proto: ClosetJanitorFilled entities: - - uid: 11982 + - uid: 11983 components: - pos: -10.5,-18.5 parent: 2 @@ -94426,7 +79570,7 @@ entities: type: EntityStorage - proto: ClosetL3JanitorFilled entities: - - uid: 11983 + - uid: 11984 components: - pos: -10.5,-17.5 parent: 2 @@ -94451,7 +79595,7 @@ entities: type: EntityStorage - proto: ClosetL3VirologyFilled entities: - - uid: 11984 + - uid: 11985 components: - pos: -18.5,-63.5 parent: 2 @@ -94474,7 +79618,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11985 + - uid: 11986 components: - pos: -22.5,-79.5 parent: 2 @@ -94499,7 +79643,7 @@ entities: type: EntityStorage - proto: ClosetMaintenance entities: - - uid: 11986 + - uid: 11987 components: - pos: -22.5,-38.5 parent: 2 @@ -94522,7 +79666,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11987 + - uid: 11988 components: - pos: -44.5,-31.5 parent: 2 @@ -94545,7 +79689,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11988 + - uid: 11989 components: - pos: -41.5,-30.5 parent: 2 @@ -94568,7 +79712,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11989 + - uid: 11990 components: - pos: 14.5,39.5 parent: 2 @@ -94591,7 +79735,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11990 + - uid: 11991 components: - pos: -19.5,56.5 parent: 2 @@ -94616,12 +79760,12 @@ entities: type: EntityStorage - proto: ClosetMaintenanceFilledRandom entities: - - uid: 11991 + - uid: 11992 components: - pos: 12.5,-51.5 parent: 2 type: Transform - - uid: 11992 + - uid: 11993 components: - pos: 6.5,-9.5 parent: 2 @@ -94644,7 +79788,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11993 + - uid: 11994 components: - pos: -5.5,-73.5 parent: 2 @@ -94667,7 +79811,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11994 + - uid: 11995 components: - pos: -19.5,58.5 parent: 2 @@ -94690,7 +79834,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11995 + - uid: 11996 components: - pos: 16.5,-72.5 parent: 2 @@ -94713,7 +79857,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11996 + - uid: 11997 components: - pos: -15.5,-12.5 parent: 2 @@ -94736,7 +79880,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11997 + - uid: 11998 components: - pos: -54.5,-66.5 parent: 2 @@ -94759,7 +79903,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11998 + - uid: 11999 components: - pos: -37.5,-67.5 parent: 2 @@ -94782,7 +79926,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11999 + - uid: 12000 components: - pos: -29.5,-57.5 parent: 2 @@ -94805,7 +79949,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12000 + - uid: 12001 components: - pos: -29.5,-39.5 parent: 2 @@ -94828,7 +79972,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12001 + - uid: 12002 components: - pos: -28.5,-67.5 parent: 2 @@ -94851,7 +79995,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12002 + - uid: 12003 components: - pos: -56.5,-32.5 parent: 2 @@ -94874,7 +80018,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12003 + - uid: 12004 components: - pos: 36.5,-12.5 parent: 2 @@ -94897,7 +80041,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12004 + - uid: 12005 components: - pos: -22.5,-28.5 parent: 2 @@ -94920,7 +80064,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12005 + - uid: 12006 components: - pos: 11.5,25.5 parent: 2 @@ -94943,7 +80087,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12006 + - uid: 12007 components: - pos: 0.5,34.5 parent: 2 @@ -94966,7 +80110,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12007 + - uid: 12008 components: - pos: -3.5,19.5 parent: 2 @@ -94989,7 +80133,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12008 + - uid: 12009 components: - pos: 55.5,-3.5 parent: 2 @@ -95012,7 +80156,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12009 + - uid: 12010 components: - pos: -27.5,-67.5 parent: 2 @@ -95035,7 +80179,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12010 + - uid: 12011 components: - pos: 39.5,-15.5 parent: 2 @@ -95058,7 +80202,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12011 + - uid: 12012 components: - pos: 58.5,29.5 parent: 2 @@ -95081,7 +80225,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12012 + - uid: 12013 components: - pos: -31.5,38.5 parent: 2 @@ -95104,7 +80248,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12013 + - uid: 12014 components: - pos: -12.5,29.5 parent: 2 @@ -95127,7 +80271,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12014 + - uid: 12015 components: - pos: -43.5,-94.5 parent: 2 @@ -95150,7 +80294,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12015 + - uid: 12016 components: - pos: 48.5,-35.5 parent: 2 @@ -95173,7 +80317,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12016 + - uid: 12017 components: - pos: 72.5,-55.5 parent: 2 @@ -95196,7 +80340,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12017 + - uid: 12018 components: - pos: -9.5,-8.5 parent: 2 @@ -95219,14 +80363,14 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12018 + - uid: 12019 components: - pos: 7.5,-78.5 parent: 2 type: Transform - proto: ClosetRadiationSuitFilled entities: - - uid: 12019 + - uid: 12020 components: - pos: -59.5,-23.5 parent: 2 @@ -95236,8 +80380,8 @@ entities: immutable: False temperature: 293.14957 moles: - - 2.418213 - - 9.097087 + - 8.402782 + - 31.610466 - 0 - 0 - 0 @@ -95249,7 +80393,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12020 + - uid: 12021 components: - pos: -60.5,-23.5 parent: 2 @@ -95272,7 +80416,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12021 + - uid: 12022 components: - pos: 70.5,-35.5 parent: 2 @@ -95297,7 +80441,7 @@ entities: type: EntityStorage - proto: ClosetToolFilled entities: - - uid: 12022 + - uid: 12023 components: - pos: -26.5,-21.5 parent: 2 @@ -95307,8 +80451,8 @@ entities: immutable: False temperature: 293.14957 moles: - - 2.418213 - - 9.097087 + - 8.402782 + - 31.610466 - 0 - 0 - 0 @@ -95320,7 +80464,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12023 + - uid: 12024 components: - pos: -22.5,-31.5 parent: 2 @@ -95330,7 +80474,7 @@ entities: type: EntityStorage - proto: ClosetWall entities: - - uid: 12024 + - uid: 12025 components: - pos: 53.5,-33.5 parent: 2 @@ -95353,7 +80497,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12025 + - uid: 12026 components: - pos: 47.5,-64.5 parent: 2 @@ -95376,7 +80520,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12026 + - uid: 12027 components: - pos: 45.5,-32.5 parent: 2 @@ -95401,7 +80545,7 @@ entities: type: EntityStorage - proto: ClosetWallMaintenanceFilledRandom entities: - - uid: 12028 + - uid: 12029 components: - pos: -52.5,-26.5 parent: 2 @@ -95426,905 +80570,915 @@ entities: type: EntityStorage - proto: ClothingBackpack entities: - - uid: 12029 + - uid: 12030 components: - pos: -56.640278,-27.45032 parent: 2 type: Transform - proto: ClothingBackpackDuffelCaptain entities: - - uid: 12030 + - uid: 12031 components: - pos: 30.440884,-27.760664 parent: 2 type: Transform - proto: ClothingBackpackDuffelMedical entities: - - uid: 12031 + - uid: 12032 components: - pos: -2.4848266,-48.830677 parent: 2 type: Transform - - uid: 12032 + - uid: 12033 components: - pos: -16.552103,-49.311478 parent: 2 type: Transform - proto: ClothingBackpackDuffelSecurity entities: - - uid: 12033 + - uid: 12034 components: - pos: 5.4199524,15.682768 parent: 2 type: Transform - proto: ClothingBackpackDuffelSurgeryFilled entities: - - uid: 10195 - components: - - pos: -16.53388,-35.408203 - parent: 2 - type: Transform - - uid: 12034 + - uid: 12035 components: - pos: -6.4692874,-100.35278 parent: 2 type: Transform - - uid: 12035 + - uid: 12036 components: - pos: -3.4849787,-66.40156 parent: 2 type: Transform - proto: ClothingBackpackMedical entities: - - uid: 12036 + - uid: 12037 components: - pos: 0.5470823,-61.419598 parent: 2 type: Transform - proto: ClothingBackpackSatchel entities: - - uid: 12037 + - uid: 12038 components: - pos: -48.296333,5.808547 parent: 2 type: Transform - proto: ClothingBackpackSatchelMedical entities: - - uid: 12038 + - uid: 12039 components: - pos: -11.364604,-50.389603 parent: 2 type: Transform - proto: ClothingBackpackVirology entities: - - uid: 12039 + - uid: 12040 components: - pos: -31.439095,-73.39239 parent: 2 type: Transform - proto: ClothingBeltMedicalFilled entities: - - uid: 12040 + - uid: 12041 components: - pos: -11.470623,-49.143177 parent: 2 type: Transform - proto: ClothingBeltUtility entities: - - uid: 12041 + - uid: 12042 components: - pos: 47.423275,49.588562 parent: 2 type: Transform - - uid: 12042 + - uid: 12043 components: - pos: -34.379585,-20.389349 parent: 2 type: Transform - - uid: 12043 + - uid: 12044 components: - pos: -46.524574,-30.537275 parent: 2 type: Transform - - uid: 12044 + - uid: 12045 components: - pos: -3.42201,34.480587 parent: 2 type: Transform - - uid: 12045 + - uid: 12046 components: - pos: -4.6075964,19.605381 parent: 2 type: Transform - proto: ClothingBeltUtilityFilled entities: - - uid: 12046 + - uid: 12047 components: - pos: 41.37638,-39.3584 parent: 2 type: Transform - - uid: 12047 + - uid: 12048 components: - pos: -23.834581,-24.4156 parent: 2 type: Transform - - uid: 12048 + - uid: 12049 components: - pos: -30.494818,-37.432365 parent: 2 type: Transform - - uid: 12049 + - uid: 12050 components: - pos: -21.644775,-100.24527 parent: 2 type: Transform - - uid: 12050 + - uid: 12051 components: - pos: -34.48208,26.5042 parent: 2 type: Transform - proto: ClothingEyesGlasses entities: - - uid: 12051 + - uid: 12052 components: - pos: -57.484028,-27.38782 parent: 2 type: Transform -- proto: ClothingEyesGlassesMeson +- proto: ClothingEyesGlassesBeer entities: - uid: 12053 components: - - pos: -52.538578,-12.210998 + - pos: -41.966873,-78.417305 parent: 2 type: Transform +- proto: ClothingEyesGlassesMeson + entities: - uid: 12054 components: - - pos: -56.32557,-25.518402 + - pos: -52.538578,-12.210998 parent: 2 type: Transform - uid: 12055 components: - - pos: -68.50666,-43.34528 + - pos: -56.32557,-25.518402 parent: 2 type: Transform - uid: 12056 + components: + - pos: -68.50666,-43.34528 + parent: 2 + type: Transform + - uid: 12057 components: - pos: 2.454368,-75.40744 parent: 2 type: Transform - proto: ClothingEyesGlassesSecurity entities: - - uid: 12057 + - uid: 12058 components: - pos: 22.490807,-47.25673 parent: 2 type: Transform - proto: ClothingHandsGlovesBoxingBlue entities: - - uid: 12058 + - uid: 12059 components: - pos: 21.737816,3.36442 parent: 2 type: Transform - - uid: 12059 + - uid: 12060 components: - pos: -39.808826,-84.16531 parent: 2 type: Transform - proto: ClothingHandsGlovesBoxingGreen entities: - - uid: 12060 + - uid: 12061 components: - pos: 30.201283,4.7139225 parent: 2 type: Transform - nextAttack: 563.1029674 type: MeleeWeapon + - nextSound: 563.3029674 + type: EmitSoundOnCollide - proto: ClothingHandsGlovesBoxingRed entities: - - uid: 12061 + - uid: 12062 components: - pos: 26.321266,-1.3645767 parent: 2 type: Transform - - uid: 12062 + - uid: 12063 components: - pos: -44.121326,-80.72781 parent: 2 type: Transform - proto: ClothingHandsGlovesBoxingYellow entities: - - uid: 12063 + - uid: 12064 components: - pos: 30.232533,4.5889225 parent: 2 type: Transform - nextAttack: 565.7787129 type: MeleeWeapon + - nextSound: 565.9787129 + type: EmitSoundOnCollide - proto: ClothingHandsGlovesColorBlack entities: - - uid: 12064 + - uid: 12065 components: - pos: -47.515083,6.5429225 parent: 2 type: Transform - proto: ClothingHandsGlovesColorOrange entities: - - uid: 12065 + - uid: 12066 components: - pos: -57.515278,-30.528444 parent: 2 type: Transform - proto: ClothingHandsGlovesColorYellow entities: - - uid: 12066 + - uid: 12067 components: - pos: -25.384478,-19.487955 parent: 2 type: Transform - - uid: 12067 + - uid: 12068 components: - pos: -27.461733,-11.246322 parent: 2 type: Transform - - uid: 12068 + - uid: 12069 components: - pos: -28.54305,-20.538445 parent: 2 type: Transform - - uid: 12069 + - uid: 12070 components: - pos: -56.97646,-35.48593 parent: 2 type: Transform - - uid: 12070 + - uid: 12071 components: - pos: -25.966612,-52.421177 parent: 2 type: Transform - - uid: 12071 + - uid: 12072 components: - pos: 54.45896,60.637554 parent: 2 type: Transform - - uid: 12072 + - uid: 12073 components: - pos: 22.516106,51.47508 parent: 2 type: Transform - proto: ClothingHandsGlovesColorYellowBudget entities: - - uid: 12073 + - uid: 12074 components: - rot: 12.566370614359172 rad pos: 71.23901,-43.34667 parent: 2 type: Transform - - uid: 12074 + - uid: 12075 components: - pos: 30.46846,46.718662 parent: 2 type: Transform - - uid: 12075 + - uid: 12076 components: - pos: 70.37232,-66.37016 parent: 2 type: Transform - proto: ClothingHandsGlovesLatex entities: - - uid: 12076 + - uid: 12077 components: - pos: -19.466316,-85.552505 parent: 2 type: Transform - - uid: 12077 + - uid: 12078 components: - pos: -5.563123,-96.94655 parent: 2 type: Transform - proto: ClothingHeadFishCap entities: - - uid: 12078 + - uid: 12079 components: - pos: -24.484636,34.673782 parent: 2 type: Transform - proto: ClothingHeadHatAnimalCatBlack entities: - - uid: 12079 + - uid: 12080 components: - pos: -51.4974,8.551356 parent: 2 type: Transform - proto: ClothingHeadHatAnimalHeadslime entities: - - uid: 12080 + - uid: 12081 components: - pos: -48.252262,60.451523 parent: 2 type: Transform - proto: ClothingHeadHatBeaverHat entities: - - uid: 12081 + - uid: 12082 components: - pos: 22.537655,11.563517 parent: 2 type: Transform - proto: ClothingHeadHatBunny entities: - - uid: 12082 + - uid: 12083 components: - pos: 57.503056,-8.485766 parent: 2 type: Transform - proto: ClothingHeadHatCake entities: - - uid: 12083 + - uid: 12084 components: - pos: -23.42545,-67.41026 parent: 2 type: Transform - proto: ClothingHeadHatCardborg entities: - - uid: 12084 + - uid: 12085 components: - pos: 72.844894,-43.422203 parent: 2 type: Transform - proto: ClothingHeadHatChickenhead entities: - - uid: 12085 + - uid: 12086 components: - pos: -38.364468,56.565044 parent: 2 type: Transform - - uid: 12086 + - uid: 12087 components: - pos: 69.487785,-66.37648 parent: 2 type: Transform - proto: ClothingHeadHatCone entities: - - uid: 12087 + - uid: 12088 components: - pos: 20.465803,-52.422585 parent: 2 type: Transform - - uid: 12088 + - uid: 12089 components: - pos: -40.213425,-17.545645 parent: 2 type: Transform - - uid: 12089 + - uid: 12090 components: - pos: -28.525217,-54.052208 parent: 2 type: Transform - proto: ClothingHeadHatFedoraBrown entities: - - uid: 12090 + - uid: 12091 components: - pos: -42.4974,8.520106 parent: 2 type: Transform - proto: ClothingHeadHatFedoraGrey entities: - - uid: 12091 + - uid: 12092 components: - pos: -22.922485,11.607702 parent: 2 type: Transform - proto: ClothingHeadHatFez entities: - - uid: 12092 + - uid: 12093 components: - pos: 20.326727,12.833071 parent: 2 type: Transform - proto: ClothingHeadHatGreensoft entities: - - uid: 12093 + - uid: 12094 components: - pos: 31.51696,-61.276703 parent: 2 type: Transform - proto: ClothingHeadHatHardhatOrange entities: - - uid: 12094 + - uid: 12095 components: - pos: 15.782594,-64.08794 parent: 2 type: Transform - proto: ClothingHeadHatHetmanHat entities: - - uid: 12095 + - uid: 12096 components: - pos: -40.407463,-78.02446 parent: 2 type: Transform - proto: ClothingHeadHatHoodMoth entities: - - uid: 12096 + - uid: 12097 components: - pos: -14.455677,-96.43048 parent: 2 type: Transform - proto: ClothingHeadHatHoodNunHood entities: - - uid: 12097 + - uid: 12098 components: - pos: -38.629223,16.497232 parent: 2 type: Transform - proto: ClothingHeadHatJesterAlt entities: - - uid: 12098 + - uid: 12099 components: - pos: -15.170754,12.526345 parent: 2 type: Transform - proto: ClothingHeadHatPlaguedoctor entities: - - uid: 12099 + - uid: 12100 components: - pos: -31.265268,5.276951 parent: 2 type: Transform - proto: ClothingHeadHatPumpkin entities: - - uid: 12100 + - uid: 12101 components: - pos: -6.603641,4.509495 parent: 2 type: Transform - proto: ClothingHeadHatRedwizard entities: - - uid: 12101 + - uid: 12102 components: - pos: -68.50815,-34.45745 parent: 2 type: Transform - proto: ClothingHeadHatRichard entities: - - uid: 12102 + - uid: 12103 components: - pos: -16.484713,20.572138 parent: 2 type: Transform - proto: ClothingHeadHatSantahat entities: - - uid: 12103 + - uid: 12104 components: - pos: 70.456535,-65.50148 parent: 2 type: Transform - proto: ClothingHeadHatShrineMaidenWig entities: - - uid: 12104 + - uid: 12105 components: - pos: 73.5263,-65.23457 parent: 2 type: Transform - proto: ClothingHeadHatSquid entities: - - uid: 12105 + - uid: 12106 components: - pos: 9.466757,-12.457433 parent: 2 type: Transform - proto: ClothingHeadHatTophat entities: - - uid: 12106 + - uid: 12107 components: - pos: 22.506405,10.969767 parent: 2 type: Transform - - uid: 12107 + - uid: 12108 components: - pos: -19.575691,-87.365005 parent: 2 type: Transform - proto: ClothingHeadHatTrucker entities: - - uid: 12108 + - uid: 12109 components: - pos: -35.471638,-48.0912 parent: 2 type: Transform - proto: ClothingHeadHatUshanka entities: - - uid: 12109 + - uid: 12110 components: - pos: 20.592352,12.520571 parent: 2 type: Transform - - uid: 12110 + - uid: 12111 components: - pos: 63.56368,11.408342 parent: 2 type: Transform - - uid: 12111 + - uid: 12112 components: - pos: -39.523006,-76.44785 parent: 2 type: Transform - - uid: 12112 + - uid: 12113 components: - pos: -43.43965,-78.05615 parent: 2 type: Transform - proto: ClothingHeadHatVioletwizard entities: - - uid: 12113 + - uid: 12114 components: - pos: 18.520521,50.50226 parent: 2 type: Transform - proto: ClothingHeadHatWelding entities: - - uid: 12114 + - uid: 12115 components: - pos: -35.502888,-47.3412 parent: 2 type: Transform - - uid: 12115 + - uid: 12116 components: - pos: -12.456746,17.595669 parent: 2 type: Transform - - uid: 12116 + - uid: 12117 components: - pos: 42.55075,-32.360874 parent: 2 type: Transform - proto: ClothingHeadHatWeldingMaskFlameBlue entities: - - uid: 12117 + - uid: 12118 components: - pos: 0.64530456,23.439005 parent: 2 type: Transform - - uid: 12118 + - uid: 12119 components: - pos: -20.443554,-51.52769 parent: 2 type: Transform - proto: ClothingHeadHatWizard entities: - - uid: 12119 + - uid: 12120 components: - pos: -27.578125,55.49253 parent: 2 type: Transform - proto: ClothingHeadHelmetCosmonaut entities: - - uid: 12120 + - uid: 12121 components: - pos: -31.517996,-64.46434 parent: 2 type: Transform - - uid: 12121 + - uid: 12122 components: - pos: -37.48917,27.661566 parent: 2 type: Transform - proto: ClothingHeadHelmetEVA entities: - - uid: 12122 + - uid: 12123 components: - pos: -71.04211,-26.39878 parent: 2 type: Transform - proto: ClothingHeadHelmetScaf entities: - - uid: 12123 + - uid: 12124 components: - pos: -31.458502,-43.474 parent: 2 type: Transform - proto: ClothingHeadHelmetTemplar entities: - - uid: 12124 + - uid: 12125 components: - pos: 38.423565,-15.642361 parent: 2 type: Transform - proto: ClothingHeadNurseHat entities: - - uid: 12125 + - uid: 12126 components: - pos: 2.5095897,-65.392746 parent: 2 type: Transform - proto: ClothingHeadSafari entities: - - uid: 12126 + - uid: 12127 components: - pos: -3.5832248,52.757553 parent: 2 type: Transform - proto: ClothingMaskBat entities: - - uid: 12127 + - uid: 12128 components: - pos: -28.497562,8.541992 parent: 2 type: Transform - proto: ClothingMaskBear entities: - - uid: 12128 + - uid: 12129 components: - pos: -38.62821,28.538465 parent: 2 type: Transform - proto: ClothingMaskBee entities: - - uid: 12129 + - uid: 12130 components: - pos: -3.4901123,53.561974 parent: 2 type: Transform -- proto: ClothingMaskBreath +- proto: ClothingMaskBreathMedical entities: - - uid: 10241 + - uid: 12028 components: - - pos: -14.676882,-35.30204 + - pos: -16.243101,-35.3368 parent: 2 type: Transform + - nextSound: 520.6643475 + type: EmitSoundOnCollide - proto: ClothingMaskClown entities: - - uid: 12130 + - uid: 12131 components: - pos: 52.5169,59.485374 parent: 2 type: Transform - proto: ClothingMaskFox entities: - - uid: 12131 + - uid: 12132 components: - pos: 30.331896,-28.644527 parent: 2 type: Transform - proto: ClothingMaskGas entities: - - uid: 12132 + - uid: 12133 components: - pos: -35.537254,-49.709976 parent: 2 type: Transform - - uid: 12133 + - uid: 12134 components: - pos: -70.49962,-26.436932 parent: 2 type: Transform - - uid: 12134 + - uid: 12135 components: - pos: -24.43692,-6.4687095 parent: 2 type: Transform - - uid: 12135 + - uid: 12136 components: - pos: -8.705846,-15.426237 parent: 2 type: Transform - proto: ClothingMaskGasAtmos entities: - - uid: 12136 + - uid: 12137 components: - pos: 3.1338544,-75.35811 parent: 2 type: Transform - proto: ClothingMaskGasExplorer entities: - - uid: 12137 + - uid: 12138 components: - pos: -43.401073,35.593018 parent: 2 type: Transform - proto: ClothingMaskJackal entities: - - uid: 12138 + - uid: 12139 components: - pos: 16.67739,21.87369 parent: 2 type: Transform - proto: ClothingMaskMuzzle entities: - - uid: 30696 + - uid: 28617 components: - - pos: -16.518003,-34.068638 + - pos: -15.336851,-35.602425 parent: 2 type: Transform + - nextSound: 488.1258247 + type: EmitSoundOnCollide - proto: ClothingMaskPlague entities: - - uid: 12139 + - uid: 12140 components: - pos: -31.093393,5.386326 parent: 2 type: Transform - proto: ClothingMaskRat entities: - - uid: 12140 + - uid: 12141 components: - pos: -9.217388,-10.5028515 parent: 2 type: Transform - proto: ClothingMaskRaven entities: - - uid: 12141 + - uid: 12142 components: - pos: 12.510361,-6.449043 parent: 2 type: Transform - proto: ClothingNeckAromanticPin entities: - - uid: 12142 + - uid: 12143 components: - pos: -16.507944,41.79273 parent: 2 type: Transform - proto: ClothingNeckAsexualPin entities: - - uid: 12143 + - uid: 12144 components: - pos: -16.289194,41.51148 parent: 2 type: Transform - proto: ClothingNeckBisexualPin entities: - - uid: 12144 + - uid: 12145 components: - pos: -42.7372,8.687558 parent: 2 type: Transform - proto: ClothingNeckBling entities: - - uid: 12145 + - uid: 12146 components: - pos: 48.258717,-21.370115 parent: 2 type: Transform - proto: ClothingNeckCloakMoth entities: - - uid: 12146 + - uid: 12147 components: - pos: -8.662971,-82.55483 parent: 2 type: Transform - proto: ClothingNeckCloakTrans entities: - - uid: 12147 + - uid: 12148 components: - pos: -9.4988165,23.574131 parent: 2 type: Transform - proto: ClothingNeckIntersexPin entities: - - uid: 12148 + - uid: 12149 components: - pos: -12.691556,31.94308 parent: 2 type: Transform - proto: ClothingNeckLawyerbadge entities: - - uid: 12149 + - uid: 12150 components: - pos: 43.39902,-3.8456278 parent: 2 type: Transform - proto: ClothingNeckLesbianPin entities: - - uid: 12150 + - uid: 12151 components: - pos: -51.700592,8.465523 parent: 2 type: Transform - proto: ClothingNeckLGBTPin entities: - - uid: 12151 + - uid: 12152 components: - pos: -10.776614,43.48699 parent: 2 type: Transform - proto: ClothingNeckMantleCE entities: - - uid: 12152 + - uid: 12153 components: - pos: -35.467106,-17.222797 parent: 2 type: Transform - proto: ClothingNeckMantleCMO entities: - - uid: 12153 + - uid: 12154 components: - pos: -20.144634,-56.34305 parent: 2 type: Transform - proto: ClothingNeckMantleHOP entities: - - uid: 12154 + - uid: 12155 components: - pos: 26.64564,-37.47807 parent: 2 type: Transform - proto: ClothingNeckMantleHOS entities: - - uid: 12155 + - uid: 12156 components: - pos: 5.905226,20.807451 parent: 2 type: Transform - proto: ClothingNeckMantleRD entities: - - uid: 12156 + - uid: 12157 components: - pos: 63.464256,-53.431217 parent: 2 type: Transform - proto: ClothingNeckNonBinaryPin entities: - - uid: 12157 + - uid: 12158 components: - pos: -21.722902,35.752502 parent: 2 type: Transform - - uid: 12158 + - uid: 12159 components: - pos: -47.78141,6.181047 parent: 2 type: Transform - proto: ClothingNeckPansexualPin entities: - - uid: 12159 + - uid: 12160 components: - pos: -1.5377516,30.493696 parent: 2 type: Transform - proto: ClothingNeckScarfStripedZebra entities: - - uid: 12160 + - uid: 12161 components: - pos: -28.25746,44.644928 parent: 2 type: Transform - proto: ClothingNeckTransPin entities: - - uid: 12161 + - uid: 12162 components: - pos: 65.36391,-1.4805084 parent: 2 type: Transform - proto: ClothingOuterCardborg entities: - - uid: 12162 + - uid: 12163 components: - pos: 73.548645,-43.410946 parent: 2 type: Transform - proto: ClothingOuterCoatBomber entities: - - uid: 12163 + - uid: 12164 components: - pos: 15.5274105,-50.516087 parent: 2 type: Transform - proto: ClothingOuterCoatDetective entities: - - uid: 12164 + - uid: 12165 components: - pos: -32.515205,-59.44035 parent: 2 type: Transform - proto: ClothingOuterCoatGentle entities: - - uid: 12165 + - uid: 12166 components: - pos: 59.512882,24.492107 parent: 2 type: Transform - proto: ClothingOuterCoatJensen entities: - - uid: 11870 + - uid: 11871 components: - pos: 62.5886,15.642659 parent: 2 @@ -96334,290 +81488,278 @@ entities: showEnts: False occludes: True ents: - - 11871 + - 11872 type: ContainerContainer - proto: ClothingOuterDameDane entities: - - uid: 12166 + - uid: 12167 components: - pos: -30.207304,-98.49032 parent: 2 type: Transform - proto: ClothingOuterHardsuitEVA entities: - - uid: 12167 + - uid: 12168 components: - pos: -71.62023,-26.30503 parent: 2 type: Transform - proto: ClothingOuterHoodieChaplain entities: - - uid: 12168 + - uid: 12169 components: - pos: -39.238598,16.669107 parent: 2 type: Transform - proto: ClothingOuterPlagueSuit entities: - - uid: 12169 + - uid: 12170 components: - pos: -31.046518,5.058201 parent: 2 type: Transform - proto: ClothingOuterStraightjacket entities: - - uid: 30695 + - uid: 10242 components: - - pos: -16.502378,-34.459263 + - pos: -15.008726,-35.30555 parent: 2 type: Transform + - nextSound: 467.7237253 + type: EmitSoundOnCollide - proto: ClothingOuterSuitChicken entities: - - uid: 12170 + - uid: 12171 components: - pos: -41.535904,57.643673 parent: 2 type: Transform - proto: ClothingOuterSuitMonkey entities: - - uid: 12171 + - uid: 12172 components: - pos: -23.4853,-87.30585 parent: 2 type: Transform - proto: ClothingOuterSuitShrineMaiden entities: - - uid: 12172 + - uid: 12173 components: - pos: -40.48903,63.987423 parent: 2 type: Transform - - uid: 12173 + - uid: 12174 components: - pos: 73.55755,-64.51582 parent: 2 type: Transform - proto: ClothingOuterWinterRobo entities: - - uid: 12174 + - uid: 12175 components: - pos: 77.51138,-47.408936 parent: 2 type: Transform - proto: ClothingOuterWinterViro entities: - - uid: 12175 + - uid: 12176 components: - pos: -31.470345,-74.22051 parent: 2 type: Transform - proto: ClothingOuterWizard entities: - - uid: 12176 + - uid: 12177 components: - pos: -41.58894,41.559685 parent: 2 type: Transform - proto: ClothingOuterWizardRed entities: - - uid: 12177 + - uid: 12178 components: - pos: -59.983215,-45.447025 parent: 2 type: Transform - proto: ClothingOuterWizardViolet entities: - - uid: 12178 + - uid: 12179 components: - pos: 19.504896,49.611633 parent: 2 type: Transform - proto: ClothingShoesBling entities: - - uid: 12179 + - uid: 12180 components: - pos: 47.782166,-25.351032 parent: 2 type: Transform - proto: ClothingShoesBootsJack entities: - - uid: 12180 + - uid: 12181 components: - pos: -1.4635531,17.609518 parent: 2 type: Transform - proto: ClothingShoesBootsLaceup entities: - - uid: 12181 + - uid: 12182 components: - pos: 45.797165,49.377663 parent: 2 type: Transform - proto: ClothingShoesBootsMag entities: - - uid: 12182 + - uid: 12183 components: - pos: -34.59344,-13.376695 parent: 2 type: Transform - - uid: 12183 + - uid: 12184 components: - pos: -41.919106,35.62894 parent: 2 type: Transform - - uid: 12184 + - uid: 12185 components: - pos: 33.46236,-13.4915285 parent: 2 type: Transform - - uid: 12185 + - nextSound: 688.308763 + type: EmitSoundOnCollide + - uid: 12186 components: - pos: 27.480814,29.301416 parent: 2 type: Transform - - uid: 12186 + - nextSound: 41.6429854 + type: EmitSoundOnCollide + - uid: 12187 components: - pos: 27.527689,27.317041 parent: 2 type: Transform - - uid: 12187 + - nextSound: 42.8151827 + type: EmitSoundOnCollide + - uid: 12188 components: - pos: 31.527689,27.285791 parent: 2 type: Transform - - uid: 12188 + - nextSound: 43.6326202 + type: EmitSoundOnCollide + - uid: 12189 components: - pos: 31.512064,29.317041 parent: 2 type: Transform - - uid: 12189 + - nextSound: 44.2030005 + type: EmitSoundOnCollide + - uid: 12190 components: - pos: 31.516712,-13.514931 parent: 2 type: Transform - - uid: 12190 + - nextSound: 49.824151 + type: EmitSoundOnCollide + - uid: 12191 components: - pos: 31.501087,-11.577431 parent: 2 type: Transform - - uid: 12191 + - nextSound: 50.5353917 + type: EmitSoundOnCollide + - uid: 12192 components: - pos: 33.563587,-11.530556 parent: 2 type: Transform - - uid: 12192 + - nextSound: 51.1960441 + type: EmitSoundOnCollide + - uid: 12193 components: - pos: 29.610462,-11.499306 parent: 2 type: Transform - - uid: 12193 + - nextSound: 51.9803309 + type: EmitSoundOnCollide + - uid: 12194 components: - pos: 29.532337,-13.577431 parent: 2 type: Transform + - nextSound: 52.6901865 + type: EmitSoundOnCollide - proto: ClothingShoesColorWhite entities: - - uid: 12194 + - uid: 12195 components: - pos: -16.54276,-45.461185 parent: 2 type: Transform - proto: ClothingShoesDameDane entities: - - uid: 12195 + - uid: 12196 components: - pos: -22.591383,-96.25594 parent: 2 type: Transform - proto: ClothingShoesFlippers entities: - - uid: 12196 + - uid: 12197 components: - pos: -3.5418344,21.579527 parent: 2 type: Transform - proto: ClothingShoeSlippersDuck entities: - - uid: 12197 + - uid: 12198 components: - pos: 15.423054,34.567764 parent: 2 type: Transform -- proto: ClothingShoesSwat - entities: - - uid: 30693 - components: - - flags: InContainer - type: MetaData - - parent: 20781 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 30694 - components: - - flags: InContainer - type: MetaData - - parent: 20781 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: ClothingUnderSocksBee entities: - - uid: 12198 + - uid: 12199 components: - pos: 62.522377,-58.450882 parent: 2 type: Transform - proto: ClothingUniformJumpskirtJanimaidmini entities: - - uid: 12199 + - uid: 12200 components: - pos: -13.518242,-15.499978 parent: 2 type: Transform - nextUpdate: 265.1189424 type: SuitSensor -- proto: ClothingUniformJumpskirtOperative - entities: - - uid: 30691 - components: - - flags: InContainer - type: MetaData - - parent: 20781 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage + - nextSound: 265.3189424 + type: EmitSoundOnCollide - proto: ClothingUniformJumpsuitCossack entities: - - uid: 12200 + - uid: 12201 components: - pos: -40.657463,-77.46196 parent: 2 type: Transform - proto: ClothingUniformJumpsuitDameDane entities: - - uid: 12201 + - uid: 12202 components: - pos: -15.484091,-96.41976 parent: 2 type: Transform - proto: ClothingUniformJumpsuitJesterAlt entities: - - uid: 12202 + - uid: 12203 components: - pos: 62.426746,53.491627 parent: 2 type: Transform - proto: ClothingUniformJumpsuitMonasticRobeDark entities: - - uid: 12203 - components: - - pos: -32.383476,8.575315 - parent: 2 - type: Transform - uid: 12204 components: - pos: -32.383476,8.575315 @@ -96638,16 +81780,16 @@ entities: - pos: -32.383476,8.575315 parent: 2 type: Transform -- proto: ClothingUniformJumpsuitMonasticRobeLight - entities: - uid: 12208 components: - - pos: -22.894775,-100.24527 + - pos: -32.383476,8.575315 parent: 2 type: Transform +- proto: ClothingUniformJumpsuitMonasticRobeLight + entities: - uid: 12209 components: - - pos: -33.11785,8.55969 + - pos: -22.894775,-100.24527 parent: 2 type: Transform - uid: 12210 @@ -96670,351 +81812,345 @@ entities: - pos: -33.11785,8.55969 parent: 2 type: Transform -- proto: ClothingUniformJumpsuitOperative - entities: - - uid: 30692 + - uid: 12214 components: - - flags: InContainer - type: MetaData - - parent: 20781 + - pos: -33.11785,8.55969 + parent: 2 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: ClothingUniformJumpsuitPsychologist entities: - - uid: 12214 + - uid: 12215 components: - pos: -14.569605,-39.387264 parent: 2 type: Transform - proto: ClothingUniformJumpsuitReporter entities: - - uid: 12215 + - uid: 12216 components: - pos: -27.443762,14.534213 parent: 2 type: Transform - proto: ClothingUniformJumpsuitSafari entities: - - uid: 12216 + - uid: 12217 components: - pos: -3.4738498,52.42943 parent: 2 type: Transform - proto: ComfyChair entities: - - uid: 12217 + - uid: 12218 components: - pos: -19.5,-55.5 parent: 2 type: Transform - - uid: 12218 + - uid: 12219 components: - rot: 1.5707963267948966 rad pos: 13.5,-35.5 parent: 2 type: Transform - - uid: 12219 + - uid: 12220 components: - pos: 20.5,-11.5 parent: 2 type: Transform - - uid: 12220 + - uid: 12221 components: - rot: 1.5707963267948966 rad pos: 13.5,-33.5 parent: 2 type: Transform - - uid: 12221 + - uid: 12222 components: - pos: 6.5,21.5 parent: 2 type: Transform - - uid: 12222 + - uid: 12223 components: - rot: -1.5707963267948966 rad pos: 24.5,-28.5 parent: 2 type: Transform - - uid: 12223 + - uid: 12224 components: - rot: 1.5707963267948966 rad pos: 21.5,-28.5 parent: 2 type: Transform - - uid: 12224 + - uid: 12225 components: - rot: 1.5707963267948966 rad pos: 13.5,-31.5 parent: 2 type: Transform - - uid: 12225 + - uid: 12226 components: - rot: 3.141592653589793 rad pos: 20.5,11.5 parent: 2 type: Transform - - uid: 12226 + - uid: 12227 components: - pos: 20.5,13.5 parent: 2 type: Transform - - uid: 12227 + - uid: 12228 components: - pos: -15.5,-37.5 parent: 2 type: Transform - - uid: 12228 + - uid: 12229 components: - rot: -1.5707963267948966 rad pos: 24.5,-29.5 parent: 2 type: Transform - - uid: 12229 + - uid: 12230 components: - rot: 1.5707963267948966 rad pos: 21.5,-29.5 parent: 2 type: Transform - - uid: 12230 + - uid: 12231 components: - rot: -1.5707963267948966 rad pos: 44.5,-3.5 parent: 2 type: Transform - - uid: 12231 + - uid: 12232 components: - rot: 3.141592653589793 rad pos: 33.5,-51.5 parent: 2 type: Transform - - uid: 12232 + - uid: 12233 components: - rot: 3.141592653589793 rad pos: 29.5,-51.5 parent: 2 type: Transform - - uid: 12233 + - uid: 12234 components: - pos: 32.5,-47.5 parent: 2 type: Transform - - uid: 12234 + - uid: 12235 components: - pos: 30.5,-47.5 parent: 2 type: Transform - - uid: 12235 + - uid: 12236 components: - pos: 25.5,-81.5 parent: 2 type: Transform - - uid: 12236 + - uid: 12237 components: - rot: 1.5707963267948966 rad pos: -36.5,-16.5 parent: 2 type: Transform - - uid: 12237 + - uid: 12238 components: - pos: -48.5,7.5 parent: 2 type: Transform - - uid: 12238 + - uid: 12239 components: - pos: -47.5,7.5 parent: 2 type: Transform - - uid: 12239 + - uid: 12240 components: - rot: 1.5707963267948966 rad pos: -49.5,6.5 parent: 2 type: Transform - - uid: 12240 + - uid: 12241 components: - rot: 1.5707963267948966 rad pos: -49.5,5.5 parent: 2 type: Transform - - uid: 12241 + - uid: 12242 components: - rot: 3.141592653589793 rad pos: -48.5,4.5 parent: 2 type: Transform - - uid: 12242 + - uid: 12243 components: - rot: 3.141592653589793 rad pos: -47.5,4.5 parent: 2 type: Transform - - uid: 12243 + - uid: 12244 components: - rot: -1.5707963267948966 rad pos: -46.5,6.5 parent: 2 type: Transform - - uid: 12244 + - uid: 12245 components: - rot: -1.5707963267948966 rad pos: -46.5,5.5 parent: 2 type: Transform - - uid: 12245 + - uid: 12246 components: - rot: 3.141592653589793 rad pos: 25.5,-85.5 parent: 2 type: Transform - - uid: 12246 + - uid: 12247 components: - rot: 3.141592653589793 rad pos: 67.5,7.5 parent: 2 type: Transform - - uid: 12247 + - uid: 12248 components: - pos: 67.5,11.5 parent: 2 type: Transform - - uid: 12248 + - uid: 12249 components: - pos: 44.5,33.5 parent: 2 type: Transform - - uid: 12249 + - uid: 12250 components: - pos: 43.5,33.5 parent: 2 type: Transform - - uid: 12250 + - uid: 12251 components: - pos: 42.5,33.5 parent: 2 type: Transform - - uid: 12251 + - uid: 12252 components: - rot: 1.5707963267948966 rad pos: 64.5,-0.5 parent: 2 type: Transform - - uid: 12252 + - uid: 12253 components: - rot: 1.5707963267948966 rad pos: 64.5,-1.5 parent: 2 type: Transform - - uid: 12253 + - uid: 12254 components: - rot: 3.141592653589793 rad pos: 44.5,28.5 parent: 2 type: Transform - - uid: 12254 + - uid: 12255 components: - rot: 3.141592653589793 rad pos: 45.5,28.5 parent: 2 type: Transform - - uid: 12255 + - uid: 12256 components: - rot: 3.141592653589793 rad pos: 46.5,28.5 parent: 2 type: Transform - - uid: 12256 + - uid: 12257 components: - rot: -1.5707963267948966 rad pos: -54.5,-48.5 parent: 2 type: Transform - - uid: 12257 + - uid: 12258 components: - rot: -1.5707963267948966 rad pos: -54.5,-49.5 parent: 2 type: Transform - - uid: 12258 + - uid: 12259 components: - pos: -55.5,-47.5 parent: 2 type: Transform - - uid: 12259 + - uid: 12260 components: - rot: 3.141592653589793 rad pos: -55.5,-50.5 parent: 2 type: Transform - - uid: 12260 + - uid: 12261 components: - rot: -1.5707963267948966 rad pos: -4.5,-98.5 parent: 2 type: Transform - - uid: 12261 + - uid: 12262 components: - rot: -1.5707963267948966 rad pos: -21.5,-97.5 parent: 2 type: Transform - - uid: 12262 + - uid: 12263 components: - rot: 1.5707963267948966 rad pos: -23.5,-97.5 parent: 2 type: Transform - - uid: 12263 + - uid: 12264 components: - pos: -0.5,-73.5 parent: 2 type: Transform - - uid: 12264 + - uid: 12265 components: - pos: 16.5,-79.5 parent: 2 type: Transform - - uid: 12265 + - uid: 12266 components: - pos: 14.5,-79.5 parent: 2 type: Transform - - uid: 12266 + - uid: 12267 components: - pos: 13.5,-79.5 parent: 2 type: Transform - - uid: 12267 + - uid: 12268 components: - pos: 17.5,-79.5 parent: 2 type: Transform - - uid: 12268 + - uid: 12269 components: - rot: 3.141592653589793 rad pos: 14.5,-87.5 parent: 2 type: Transform - - uid: 12269 + - uid: 12270 components: - rot: 3.141592653589793 rad pos: 13.5,-87.5 parent: 2 type: Transform - - uid: 12270 + - uid: 12271 components: - rot: 3.141592653589793 rad pos: 17.5,-87.5 parent: 2 type: Transform - - uid: 12271 + - uid: 12272 components: - rot: 3.141592653589793 rad pos: 16.5,-87.5 parent: 2 type: Transform - - uid: 12272 + - uid: 12273 components: - rot: -1.5707963267948966 rad pos: 7.5,-79.5 @@ -97022,18 +82158,18 @@ entities: type: Transform - proto: ComputerAlert entities: - - uid: 12273 + - uid: 12274 components: - pos: 27.5,-21.5 parent: 2 type: Transform - - uid: 12274 + - uid: 12275 components: - rot: 1.5707963267948966 rad pos: -55.5,-12.5 parent: 2 type: Transform - - uid: 12275 + - uid: 12276 components: - rot: 3.141592653589793 rad pos: -36.5,-46.5 @@ -97041,7 +82177,7 @@ entities: type: Transform - proto: ComputerAnalysisConsole entities: - - uid: 12276 + - uid: 12277 components: - pos: 73.5,-31.5 parent: 2 @@ -97049,17 +82185,17 @@ entities: - outputs: ArtifactAnalyzerSender: - port: ArtifactAnalyzerReceiver - uid: 20794 + uid: 20798 type: SignalTransmitter - proto: computerBodyScanner entities: - - uid: 12277 + - uid: 12278 components: - rot: -1.5707963267948966 rad pos: 4.5,-65.5 parent: 2 type: Transform - - uid: 12278 + - uid: 12279 components: - rot: 1.5707963267948966 rad pos: -26.5,-60.5 @@ -97067,48 +82203,48 @@ entities: type: Transform - proto: ComputerBroken entities: - - uid: 12279 + - uid: 12280 components: - rot: -1.5707963267948966 rad pos: 52.5,37.5 parent: 2 type: Transform - - uid: 12280 + - uid: 12281 components: - pos: 51.5,36.5 parent: 2 type: Transform - - uid: 12281 + - uid: 12282 components: - rot: -1.5707963267948966 rad pos: 51.5,37.5 parent: 2 type: Transform - - uid: 12282 + - uid: 12283 components: - rot: -1.5707963267948966 rad pos: -51.5,-87.5 parent: 2 type: Transform - - uid: 12283 + - uid: 12284 components: - rot: 1.5707963267948966 rad pos: -0.5,73.5 parent: 2 type: Transform - - uid: 12284 + - uid: 12285 components: - rot: -1.5707963267948966 rad pos: -2.5,73.5 parent: 2 type: Transform - - uid: 12285 + - uid: 12286 components: - rot: 1.5707963267948966 rad pos: 2.5,69.5 parent: 2 type: Transform - - uid: 12286 + - uid: 12287 components: - rot: -1.5707963267948966 rad pos: -5.5,69.5 @@ -97116,30 +82252,30 @@ entities: type: Transform - proto: ComputerCargoOrders entities: - - uid: 12287 + - uid: 12288 components: - pos: 29.5,-21.5 parent: 2 type: Transform - - uid: 12288 + - uid: 12289 components: - pos: -27.5,23.5 parent: 2 type: Transform - - uid: 12289 + - uid: 12290 components: - rot: 3.141592653589793 rad pos: -30.5,29.5 parent: 2 type: Transform - - uid: 12290 + - uid: 12291 components: - pos: -44.5,35.5 parent: 2 type: Transform - proto: ComputerCargoShuttle entities: - - uid: 12291 + - uid: 12292 components: - rot: 3.141592653589793 rad pos: -27.5,21.5 @@ -97147,12 +82283,12 @@ entities: type: Transform - proto: ComputerComms entities: - - uid: 12292 + - uid: 12293 components: - pos: 25.5,-21.5 parent: 2 type: Transform - - uid: 12293 + - uid: 12294 components: - rot: 1.5707963267948966 rad pos: 28.5,-30.5 @@ -97160,64 +82296,64 @@ entities: type: Transform - proto: ComputerCrewMonitoring entities: - - uid: 12294 + - uid: 12295 components: - pos: 23.5,-21.5 parent: 2 type: Transform - - uid: 12295 + - uid: 12296 components: - rot: -1.5707963267948966 rad pos: 29.5,-36.5 parent: 2 type: Transform - - uid: 12296 + - uid: 12297 components: - pos: 54.5,13.5 parent: 2 type: Transform - proto: ComputerCriminalRecords entities: - - uid: 12297 + - uid: 12298 components: - rot: -1.5707963267948966 rad pos: 22.5,-45.5 parent: 2 type: Transform - - uid: 12298 + - uid: 12299 components: - pos: -16.5,26.5 parent: 2 type: Transform - proto: ComputerFrame entities: - - uid: 12299 + - uid: 12300 components: - pos: -8.5,-63.5 parent: 2 type: Transform - - uid: 12300 + - uid: 12301 components: - rot: 1.5707963267948966 rad pos: 70.5,-36.5 parent: 2 type: Transform - - uid: 12301 + - uid: 12302 components: - pos: 51.5,35.5 parent: 2 type: Transform - - uid: 12302 + - uid: 12303 components: - pos: -10.5,37.5 parent: 2 type: Transform - - uid: 12303 + - uid: 12304 components: - pos: -29.5,-96.5 parent: 2 type: Transform - - uid: 12304 + - uid: 12305 components: - rot: -1.5707963267948966 rad pos: -67.5,-45.5 @@ -97225,32 +82361,32 @@ entities: type: Transform - proto: ComputerId entities: - - uid: 12305 + - uid: 12306 components: - rot: -1.5707963267948966 rad pos: 29.5,-37.5 parent: 2 type: Transform - - uid: 12306 + - uid: 12307 components: - pos: 25.5,-24.5 parent: 2 type: Transform - proto: ComputerMedicalRecords entities: - - uid: 12307 + - uid: 12308 components: - rot: 1.5707963267948966 rad pos: -20.5,-55.5 parent: 2 type: Transform - - uid: 12308 + - uid: 12309 components: - rot: -1.5707963267948966 rad pos: -3.5,-50.5 parent: 2 type: Transform - - uid: 12309 + - uid: 12310 components: - rot: 3.141592653589793 rad pos: 47.5,5.5 @@ -97258,24 +82394,24 @@ entities: type: Transform - proto: ComputerPowerMonitoring entities: - - uid: 12310 + - uid: 12311 components: - pos: 21.5,-21.5 parent: 2 type: Transform - - uid: 12311 + - uid: 12312 components: - rot: 3.141592653589793 rad pos: -27.5,-13.5 parent: 2 type: Transform - - uid: 12312 + - uid: 12313 components: - rot: 1.5707963267948966 rad pos: -55.5,-13.5 parent: 2 type: Transform - - uid: 12313 + - uid: 12314 components: - rot: 1.5707963267948966 rad pos: -47.5,-23.5 @@ -97283,7 +82419,7 @@ entities: type: Transform - proto: ComputerRadar entities: - - uid: 12314 + - uid: 12315 components: - rot: 1.5707963267948966 rad pos: -48.5,32.5 @@ -97291,49 +82427,49 @@ entities: type: Transform - proto: ComputerResearchAndDevelopment entities: - - uid: 12315 + - uid: 12316 components: - rot: 3.141592653589793 rad pos: 61.5,-55.5 parent: 2 type: Transform - - uid: 12316 + - uid: 12317 components: - rot: -1.5707963267948966 rad pos: 43.5,-39.5 parent: 2 type: Transform - - uid: 12317 + - uid: 12318 components: - pos: 68.5,-43.5 parent: 2 type: Transform - - uid: 12318 + - uid: 12319 components: - pos: 50.5,-52.5 parent: 2 type: Transform - - uid: 12319 + - uid: 12320 components: - rot: 3.141592653589793 rad pos: 60.5,-36.5 parent: 2 type: Transform - - uid: 12320 + - uid: 12321 components: - pos: 74.5,-31.5 parent: 2 type: Transform - proto: ComputerSalvageExpedition entities: - - uid: 12321 + - uid: 12322 components: - pos: -46.5,44.5 parent: 2 type: Transform - proto: ComputerShuttleCargo entities: - - uid: 12322 + - uid: 12323 components: - rot: 1.5707963267948966 rad pos: -48.5,21.5 @@ -97341,60 +82477,60 @@ entities: type: Transform - proto: ComputerShuttleSalvage entities: - - uid: 12323 + - uid: 12324 components: - pos: -47.5,44.5 parent: 2 type: Transform - proto: ComputerSolarControl entities: - - uid: 12324 + - uid: 12325 components: - rot: 1.5707963267948966 rad pos: -2.5,-77.5 parent: 2 type: Transform - - uid: 12325 + - uid: 12326 components: - pos: 72.5,38.5 parent: 2 type: Transform - proto: ComputerStationRecords entities: - - uid: 12326 + - uid: 12327 components: - rot: 1.5707963267948966 rad pos: 2.5,-57.5 parent: 2 type: Transform - - uid: 12327 + - uid: 12328 components: - pos: 18.5,-10.5 parent: 2 type: Transform - - uid: 12328 + - uid: 12329 components: - pos: 24.5,-24.5 parent: 2 type: Transform - - uid: 12329 + - uid: 12330 components: - rot: -1.5707963267948966 rad pos: 26.5,20.5 parent: 2 type: Transform - - uid: 12330 + - uid: 12331 components: - pos: 47.5,7.5 parent: 2 type: Transform - - uid: 12331 + - uid: 12332 components: - rot: 3.141592653589793 rad pos: 20.5,-47.5 parent: 2 type: Transform - - uid: 12332 + - uid: 12333 components: - rot: 3.141592653589793 rad pos: -16.5,-23.5 @@ -97402,69 +82538,69 @@ entities: type: Transform - proto: ComputerSurveillanceCameraMonitor entities: - - uid: 12333 + - uid: 12334 components: - pos: 26.5,-24.5 parent: 2 type: Transform - - uid: 12334 + - uid: 12335 components: - rot: 3.141592653589793 rad pos: 18.5,-12.5 parent: 2 type: Transform - - uid: 12335 + - uid: 12336 components: - rot: 1.5707963267948966 rad pos: 24.5,20.5 parent: 2 type: Transform - - uid: 12336 + - uid: 12337 components: - pos: 53.5,13.5 parent: 2 type: Transform - - uid: 12337 + - uid: 12338 components: - rot: 3.141592653589793 rad pos: 52.5,-42.5 parent: 2 type: Transform - - uid: 12338 + - uid: 12339 components: - rot: 1.5707963267948966 rad pos: -55.5,-14.5 parent: 2 type: Transform - - uid: 12339 + - uid: 12340 components: - rot: -1.5707963267948966 rad pos: -22.5,12.5 parent: 2 type: Transform - - uid: 12340 + - uid: 12341 components: - pos: -23.5,-69.5 parent: 2 type: Transform - - uid: 12341 + - uid: 12342 components: - rot: 1.5707963267948966 rad pos: -71.5,-42.5 parent: 2 type: Transform - - uid: 12342 + - uid: 12343 components: - pos: -11.5,-14.5 parent: 2 type: Transform - - uid: 12343 + - uid: 12344 components: - rot: 1.5707963267948966 rad pos: -21.5,-49.5 parent: 2 type: Transform - - uid: 12344 + - uid: 12345 components: - rot: 3.141592653589793 rad pos: -37.5,-46.5 @@ -97472,115 +82608,115 @@ entities: type: Transform - proto: ComputerTechnologyDiskTerminal entities: - - uid: 12345 + - uid: 12346 components: - pos: 56.5,-47.5 parent: 2 type: Transform - proto: ComputerTelevision entities: - - uid: 12346 + - uid: 12347 components: - pos: -6.5,-48.5 parent: 2 type: Transform - - uid: 12347 + - uid: 12348 components: - pos: -28.5,43.5 parent: 2 type: Transform - - uid: 12348 + - uid: 12349 components: - pos: 23.5,23.5 parent: 2 type: Transform - - uid: 12349 + - uid: 12350 components: - pos: 15.5,9.5 parent: 2 type: Transform - - uid: 12350 + - uid: 12351 components: - pos: -22.5,31.5 parent: 2 type: Transform - - uid: 12351 + - uid: 12352 components: - pos: -18.5,35.5 parent: 2 type: Transform - - uid: 12352 + - uid: 12353 components: - pos: -11.5,35.5 parent: 2 type: Transform - - uid: 12353 + - uid: 12354 components: - pos: -21.5,39.5 parent: 2 type: Transform - proto: ComputerTelevisionCircuitboard entities: - - uid: 12354 + - uid: 12355 components: - pos: 41.546516,-53.695484 parent: 2 type: Transform - - uid: 12355 + - uid: 12356 components: - pos: -8.937697,37.5244 parent: 2 type: Transform - - uid: 12356 + - uid: 12357 components: - - pos: -9.52837,37.67306 + - pos: -9.312697,37.696274 parent: 2 type: Transform - proto: ContainmentFieldGenerator entities: - - uid: 12357 + - uid: 12358 components: - pos: -70.5,-9.5 parent: 2 type: Transform - - uid: 12358 + - uid: 12359 components: - pos: -62.5,-9.5 parent: 2 type: Transform - - uid: 12359 + - uid: 12360 components: - pos: -62.5,-17.5 parent: 2 type: Transform - - uid: 12360 + - uid: 12361 components: - pos: -70.5,-17.5 parent: 2 type: Transform - - uid: 12361 + - uid: 12362 components: - pos: -74.5,-26.5 parent: 2 type: Transform - - uid: 12362 + - uid: 12363 components: - pos: -73.5,-26.5 parent: 2 type: Transform - - uid: 12363 + - uid: 12364 components: - pos: -74.5,-23.5 parent: 2 type: Transform - - uid: 12364 + - uid: 12365 components: - pos: -73.5,-23.5 parent: 2 type: Transform - proto: ConveyorBelt entities: - - uid: 12365 + - uid: 12366 components: - rot: 1.5707963267948966 rad pos: 16.5,-55.5 @@ -97589,15 +82725,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25047 + uid: 25054 Forward: - port: Left - uid: 25047 + uid: 25054 Off: - port: Middle - uid: 25047 + uid: 25054 type: SignalReceiver - - uid: 12366 + - uid: 12367 components: - pos: 18.5,-56.5 parent: 2 @@ -97605,15 +82741,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25047 + uid: 25054 Forward: - port: Left - uid: 25047 + uid: 25054 Off: - port: Middle - uid: 25047 + uid: 25054 type: SignalReceiver - - uid: 12367 + - uid: 12368 components: - rot: 1.5707963267948966 rad pos: 17.5,-55.5 @@ -97622,15 +82758,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25047 + uid: 25054 Forward: - port: Left - uid: 25047 + uid: 25054 Off: - port: Middle - uid: 25047 + uid: 25054 type: SignalReceiver - - uid: 12368 + - uid: 12369 components: - rot: 1.5707963267948966 rad pos: 15.5,-55.5 @@ -97639,15 +82775,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25047 + uid: 25054 Forward: - port: Left - uid: 25047 + uid: 25054 Off: - port: Middle - uid: 25047 + uid: 25054 type: SignalReceiver - - uid: 12369 + - uid: 12370 components: - pos: 18.5,-55.5 parent: 2 @@ -97655,15 +82791,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25047 + uid: 25054 Forward: - port: Left - uid: 25047 + uid: 25054 Off: - port: Middle - uid: 25047 + uid: 25054 type: SignalReceiver - - uid: 12370 + - uid: 12371 components: - rot: -1.5707963267948966 rad pos: -12.5,-10.5 @@ -97672,15 +82808,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25060 + uid: 25067 - port: Left - uid: 25060 + uid: 25067 Forward: [] Off: - port: Middle - uid: 25060 + uid: 25067 type: SignalReceiver - - uid: 12371 + - uid: 12372 components: - pos: 15.5,-54.5 parent: 2 @@ -97688,15 +82824,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25047 + uid: 25054 Forward: - port: Left - uid: 25047 + uid: 25054 Off: - port: Middle - uid: 25047 + uid: 25054 type: SignalReceiver - - uid: 12372 + - uid: 12373 components: - pos: 18.5,-57.5 parent: 2 @@ -97704,15 +82840,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25047 + uid: 25054 Forward: - port: Left - uid: 25047 + uid: 25054 Off: - port: Middle - uid: 25047 + uid: 25054 type: SignalReceiver - - uid: 12373 + - uid: 12374 components: - rot: -1.5707963267948966 rad pos: 17.5,-54.5 @@ -97721,15 +82857,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25047 + uid: 25054 Forward: - port: Left - uid: 25047 + uid: 25054 Off: - port: Middle - uid: 25047 + uid: 25054 type: SignalReceiver - - uid: 12374 + - uid: 12375 components: - rot: -1.5707963267948966 rad pos: 16.5,-54.5 @@ -97738,15 +82874,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25047 + uid: 25054 Forward: - port: Left - uid: 25047 + uid: 25054 Off: - port: Middle - uid: 25047 + uid: 25054 type: SignalReceiver - - uid: 12375 + - uid: 12376 components: - rot: -1.5707963267948966 rad pos: 18.5,-54.5 @@ -97755,15 +82891,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25047 + uid: 25054 Forward: - port: Left - uid: 25047 + uid: 25054 Off: - port: Middle - uid: 25047 + uid: 25054 type: SignalReceiver - - uid: 12376 + - uid: 12377 components: - rot: -1.5707963267948966 rad pos: -14.5,-10.5 @@ -97772,15 +82908,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25060 + uid: 25067 - port: Left - uid: 25060 + uid: 25067 Forward: [] Off: - port: Middle - uid: 25060 + uid: 25067 type: SignalReceiver - - uid: 12377 + - uid: 12378 components: - rot: -1.5707963267948966 rad pos: -13.5,-10.5 @@ -97789,15 +82925,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25060 + uid: 25067 - port: Left - uid: 25060 + uid: 25067 Forward: [] Off: - port: Middle - uid: 25060 + uid: 25067 type: SignalReceiver - - uid: 12378 + - uid: 12379 components: - rot: 3.141592653589793 rad pos: -11.5,-10.5 @@ -97806,15 +82942,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25060 + uid: 25067 - port: Left - uid: 25060 + uid: 25067 Forward: [] Off: - port: Middle - uid: 25060 + uid: 25067 type: SignalReceiver - - uid: 12379 + - uid: 12380 components: - rot: 1.5707963267948966 rad pos: -25.5,25.5 @@ -97823,15 +82959,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25048 + uid: 25055 Forward: - port: Left - uid: 25048 + uid: 25055 Off: - port: Middle - uid: 25048 + uid: 25055 type: SignalReceiver - - uid: 12380 + - uid: 12381 components: - rot: 1.5707963267948966 rad pos: -26.5,25.5 @@ -97840,15 +82976,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25048 + uid: 25055 Forward: - port: Left - uid: 25048 + uid: 25055 Off: - port: Middle - uid: 25048 + uid: 25055 type: SignalReceiver - - uid: 12381 + - uid: 12382 components: - rot: 1.5707963267948966 rad pos: -27.5,25.5 @@ -97857,15 +82993,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25048 + uid: 25055 Forward: - port: Left - uid: 25048 + uid: 25055 Off: - port: Middle - uid: 25048 + uid: 25055 type: SignalReceiver - - uid: 12382 + - uid: 12383 components: - rot: 1.5707963267948966 rad pos: -28.5,25.5 @@ -97874,15 +83010,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25048 + uid: 25055 Forward: - port: Left - uid: 25048 + uid: 25055 Off: - port: Middle - uid: 25048 + uid: 25055 type: SignalReceiver - - uid: 12383 + - uid: 12384 components: - rot: 1.5707963267948966 rad pos: -30.5,25.5 @@ -97891,15 +83027,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25048 + uid: 25055 Forward: - port: Left - uid: 25048 + uid: 25055 Off: - port: Middle - uid: 25048 + uid: 25055 type: SignalReceiver - - uid: 12384 + - uid: 12385 components: - rot: 1.5707963267948966 rad pos: -29.5,25.5 @@ -97908,15 +83044,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25048 + uid: 25055 Forward: - port: Left - uid: 25048 + uid: 25055 Off: - port: Middle - uid: 25048 + uid: 25055 type: SignalReceiver - - uid: 12385 + - uid: 12386 components: - rot: 1.5707963267948966 rad pos: -35.5,25.5 @@ -97925,15 +83061,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25052 + uid: 25059 Forward: - port: Left - uid: 25052 + uid: 25059 Off: - port: Middle - uid: 25052 + uid: 25059 type: SignalReceiver - - uid: 12386 + - uid: 12387 components: - rot: 1.5707963267948966 rad pos: -34.5,25.5 @@ -97942,15 +83078,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25052 + uid: 25059 Forward: - port: Left - uid: 25052 + uid: 25059 Off: - port: Middle - uid: 25052 + uid: 25059 type: SignalReceiver - - uid: 12387 + - uid: 12388 components: - rot: 1.5707963267948966 rad pos: -36.5,25.5 @@ -97959,15 +83095,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25052 + uid: 25059 Forward: - port: Left - uid: 25052 + uid: 25059 Off: - port: Middle - uid: 25052 + uid: 25059 type: SignalReceiver - - uid: 12388 + - uid: 12389 components: - rot: 1.5707963267948966 rad pos: -37.5,25.5 @@ -97976,15 +83112,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25052 + uid: 25059 Forward: - port: Left - uid: 25052 + uid: 25059 Off: - port: Middle - uid: 25052 + uid: 25059 type: SignalReceiver - - uid: 12389 + - uid: 12390 components: - rot: 1.5707963267948966 rad pos: -38.5,25.5 @@ -97993,15 +83129,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25052 + uid: 25059 Forward: - port: Left - uid: 25052 + uid: 25059 Off: - port: Middle - uid: 25052 + uid: 25059 type: SignalReceiver - - uid: 12390 + - uid: 12391 components: - rot: 1.5707963267948966 rad pos: -48.5,19.5 @@ -98010,15 +83146,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25051 + uid: 25058 Forward: - port: Left - uid: 25051 + uid: 25058 Off: - port: Middle - uid: 25051 + uid: 25058 type: SignalReceiver - - uid: 12391 + - uid: 12392 components: - rot: 1.5707963267948966 rad pos: -49.5,19.5 @@ -98027,15 +83163,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25051 + uid: 25058 Forward: - port: Left - uid: 25051 + uid: 25058 Off: - port: Middle - uid: 25051 + uid: 25058 type: SignalReceiver - - uid: 12392 + - uid: 12393 components: - rot: 1.5707963267948966 rad pos: -50.5,19.5 @@ -98044,15 +83180,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25051 + uid: 25058 Forward: - port: Left - uid: 25051 + uid: 25058 Off: - port: Middle - uid: 25051 + uid: 25058 type: SignalReceiver - - uid: 12393 + - uid: 12394 components: - rot: 1.5707963267948966 rad pos: -51.5,19.5 @@ -98061,15 +83197,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25051 + uid: 25058 Forward: - port: Left - uid: 25051 + uid: 25058 Off: - port: Middle - uid: 25051 + uid: 25058 type: SignalReceiver - - uid: 12394 + - uid: 12395 components: - rot: 1.5707963267948966 rad pos: -48.5,23.5 @@ -98078,15 +83214,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25050 + uid: 25057 Forward: - port: Left - uid: 25050 + uid: 25057 Off: - port: Middle - uid: 25050 + uid: 25057 type: SignalReceiver - - uid: 12395 + - uid: 12396 components: - rot: 1.5707963267948966 rad pos: -49.5,23.5 @@ -98095,15 +83231,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25050 + uid: 25057 Forward: - port: Left - uid: 25050 + uid: 25057 Off: - port: Middle - uid: 25050 + uid: 25057 type: SignalReceiver - - uid: 12396 + - uid: 12397 components: - rot: 1.5707963267948966 rad pos: -50.5,23.5 @@ -98112,15 +83248,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25050 + uid: 25057 Forward: - port: Left - uid: 25050 + uid: 25057 Off: - port: Middle - uid: 25050 + uid: 25057 type: SignalReceiver - - uid: 12397 + - uid: 12398 components: - rot: 1.5707963267948966 rad pos: -51.5,23.5 @@ -98129,15 +83265,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25050 + uid: 25057 Forward: - port: Left - uid: 25050 + uid: 25057 Off: - port: Middle - uid: 25050 + uid: 25057 type: SignalReceiver - - uid: 12398 + - uid: 12399 components: - rot: 1.5707963267948966 rad pos: -52.5,19.5 @@ -98146,15 +83282,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25051 + uid: 25058 Forward: - port: Left - uid: 25051 + uid: 25058 Off: - port: Middle - uid: 25051 + uid: 25058 type: SignalReceiver - - uid: 12399 + - uid: 12400 components: - rot: 1.5707963267948966 rad pos: -53.5,19.5 @@ -98163,15 +83299,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25051 + uid: 25058 Forward: - port: Left - uid: 25051 + uid: 25058 Off: - port: Middle - uid: 25051 + uid: 25058 type: SignalReceiver - - uid: 12400 + - uid: 12401 components: - rot: 1.5707963267948966 rad pos: -47.5,19.5 @@ -98180,15 +83316,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25051 + uid: 25058 Forward: - port: Left - uid: 25051 + uid: 25058 Off: - port: Middle - uid: 25051 + uid: 25058 type: SignalReceiver - - uid: 12401 + - uid: 12402 components: - rot: 1.5707963267948966 rad pos: -46.5,19.5 @@ -98197,15 +83333,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25051 + uid: 25058 Forward: - port: Left - uid: 25051 + uid: 25058 Off: - port: Middle - uid: 25051 + uid: 25058 type: SignalReceiver - - uid: 12402 + - uid: 12403 components: - rot: 1.5707963267948966 rad pos: -47.5,23.5 @@ -98214,15 +83350,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25050 + uid: 25057 Forward: - port: Left - uid: 25050 + uid: 25057 Off: - port: Middle - uid: 25050 + uid: 25057 type: SignalReceiver - - uid: 12403 + - uid: 12404 components: - rot: 1.5707963267948966 rad pos: -46.5,23.5 @@ -98231,15 +83367,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25050 + uid: 25057 Forward: - port: Left - uid: 25050 + uid: 25057 Off: - port: Middle - uid: 25050 + uid: 25057 type: SignalReceiver - - uid: 12404 + - uid: 12405 components: - rot: 1.5707963267948966 rad pos: -53.5,23.5 @@ -98248,15 +83384,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25050 + uid: 25057 Forward: - port: Left - uid: 25050 + uid: 25057 Off: - port: Middle - uid: 25050 + uid: 25057 type: SignalReceiver - - uid: 12405 + - uid: 12406 components: - rot: 1.5707963267948966 rad pos: -52.5,23.5 @@ -98265,15 +83401,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25050 + uid: 25057 Forward: - port: Left - uid: 25050 + uid: 25057 Off: - port: Middle - uid: 25050 + uid: 25057 type: SignalReceiver - - uid: 12406 + - uid: 12407 components: - rot: 3.141592653589793 rad pos: -42.5,14.5 @@ -98282,15 +83418,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25049 + uid: 25056 Forward: - port: Left - uid: 25049 + uid: 25056 Off: - port: Middle - uid: 25049 + uid: 25056 type: SignalReceiver - - uid: 12407 + - uid: 12408 components: - rot: 1.5707963267948966 rad pos: -51.5,30.5 @@ -98299,15 +83435,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25054 + uid: 25061 Forward: - port: Left - uid: 25054 + uid: 25061 Off: - port: Middle - uid: 25054 + uid: 25061 type: SignalReceiver - - uid: 12408 + - uid: 12409 components: - rot: 1.5707963267948966 rad pos: -52.5,30.5 @@ -98316,15 +83452,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25054 + uid: 25061 Forward: - port: Left - uid: 25054 + uid: 25061 Off: - port: Middle - uid: 25054 + uid: 25061 type: SignalReceiver - - uid: 12409 + - uid: 12410 components: - rot: 1.5707963267948966 rad pos: -50.5,30.5 @@ -98333,15 +83469,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25054 + uid: 25061 Forward: - port: Left - uid: 25054 + uid: 25061 Off: - port: Middle - uid: 25054 + uid: 25061 type: SignalReceiver - - uid: 12410 + - uid: 12411 components: - rot: 1.5707963267948966 rad pos: -49.5,30.5 @@ -98350,15 +83486,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25054 + uid: 25061 Forward: - port: Left - uid: 25054 + uid: 25061 Off: - port: Middle - uid: 25054 + uid: 25061 type: SignalReceiver - - uid: 12411 + - uid: 12412 components: - rot: 1.5707963267948966 rad pos: -48.5,30.5 @@ -98367,15 +83503,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25054 + uid: 25061 Forward: - port: Left - uid: 25054 + uid: 25061 Off: - port: Middle - uid: 25054 + uid: 25061 type: SignalReceiver - - uid: 12412 + - uid: 12413 components: - rot: 1.5707963267948966 rad pos: -52.5,34.5 @@ -98384,15 +83520,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25055 + uid: 25062 Forward: - port: Left - uid: 25055 + uid: 25062 Off: - port: Middle - uid: 25055 + uid: 25062 type: SignalReceiver - - uid: 12413 + - uid: 12414 components: - rot: 1.5707963267948966 rad pos: -51.5,34.5 @@ -98401,15 +83537,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25055 + uid: 25062 Forward: - port: Left - uid: 25055 + uid: 25062 Off: - port: Middle - uid: 25055 + uid: 25062 type: SignalReceiver - - uid: 12414 + - uid: 12415 components: - rot: 1.5707963267948966 rad pos: -50.5,34.5 @@ -98418,15 +83554,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25055 + uid: 25062 Forward: - port: Left - uid: 25055 + uid: 25062 Off: - port: Middle - uid: 25055 + uid: 25062 type: SignalReceiver - - uid: 12415 + - uid: 12416 components: - rot: 1.5707963267948966 rad pos: -49.5,34.5 @@ -98435,15 +83571,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25055 + uid: 25062 Forward: - port: Left - uid: 25055 + uid: 25062 Off: - port: Middle - uid: 25055 + uid: 25062 type: SignalReceiver - - uid: 12416 + - uid: 12417 components: - rot: 1.5707963267948966 rad pos: -48.5,34.5 @@ -98452,15 +83588,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25055 + uid: 25062 Forward: - port: Left - uid: 25055 + uid: 25062 Off: - port: Middle - uid: 25055 + uid: 25062 type: SignalReceiver - - uid: 12417 + - uid: 12418 components: - rot: 1.5707963267948966 rad pos: -53.5,34.5 @@ -98469,15 +83605,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25055 + uid: 25062 Forward: - port: Left - uid: 25055 + uid: 25062 Off: - port: Middle - uid: 25055 + uid: 25062 type: SignalReceiver - - uid: 12418 + - uid: 12419 components: - rot: 1.5707963267948966 rad pos: -53.5,30.5 @@ -98486,15 +83622,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25054 + uid: 25061 Forward: - port: Left - uid: 25054 + uid: 25061 Off: - port: Middle - uid: 25054 + uid: 25061 type: SignalReceiver - - uid: 12419 + - uid: 12420 components: - rot: 1.5707963267948966 rad pos: -47.5,34.5 @@ -98503,15 +83639,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25055 + uid: 25062 Forward: - port: Left - uid: 25055 + uid: 25062 Off: - port: Middle - uid: 25055 + uid: 25062 type: SignalReceiver - - uid: 12420 + - uid: 12421 components: - rot: 1.5707963267948966 rad pos: -47.5,30.5 @@ -98520,15 +83656,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25054 + uid: 25061 Forward: - port: Left - uid: 25054 + uid: 25061 Off: - port: Middle - uid: 25054 + uid: 25061 type: SignalReceiver - - uid: 12421 + - uid: 12422 components: - rot: -1.5707963267948966 rad pos: -12.5,27.5 @@ -98537,15 +83673,15 @@ entities: - inputs: Reverse: - port: Left - uid: 25053 + uid: 25060 Forward: - port: Right - uid: 25053 + uid: 25060 Off: - port: Middle - uid: 25053 + uid: 25060 type: SignalReceiver - - uid: 12422 + - uid: 12423 components: - pos: -10.5,28.5 parent: 2 @@ -98553,15 +83689,15 @@ entities: - inputs: Reverse: - port: Left - uid: 25053 + uid: 25060 Forward: - port: Right - uid: 25053 + uid: 25060 Off: - port: Middle - uid: 25053 + uid: 25060 type: SignalReceiver - - uid: 12423 + - uid: 12424 components: - rot: -1.5707963267948966 rad pos: -9.5,28.5 @@ -98570,15 +83706,15 @@ entities: - inputs: Reverse: - port: Left - uid: 25053 + uid: 25060 Forward: - port: Right - uid: 25053 + uid: 25060 Off: - port: Middle - uid: 25053 + uid: 25060 type: SignalReceiver - - uid: 12424 + - uid: 12425 components: - rot: 3.141592653589793 rad pos: -42.5,15.5 @@ -98587,15 +83723,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25049 + uid: 25056 Forward: - port: Left - uid: 25049 + uid: 25056 Off: - port: Middle - uid: 25049 + uid: 25056 type: SignalReceiver - - uid: 12425 + - uid: 12426 components: - rot: 3.141592653589793 rad pos: -42.5,17.5 @@ -98604,15 +83740,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25049 + uid: 25056 Forward: - port: Left - uid: 25049 + uid: 25056 Off: - port: Middle - uid: 25049 + uid: 25056 type: SignalReceiver - - uid: 12426 + - uid: 12427 components: - rot: 3.141592653589793 rad pos: -42.5,13.5 @@ -98621,15 +83757,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25049 + uid: 25056 Forward: - port: Left - uid: 25049 + uid: 25056 Off: - port: Middle - uid: 25049 + uid: 25056 type: SignalReceiver - - uid: 12427 + - uid: 12428 components: - pos: -47.5,13.5 parent: 2 @@ -98637,15 +83773,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25056 + uid: 25063 Forward: - port: Left - uid: 25056 + uid: 25063 Off: - port: Middle - uid: 25056 + uid: 25063 type: SignalReceiver - - uid: 12428 + - uid: 12429 components: - pos: -47.5,14.5 parent: 2 @@ -98653,15 +83789,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25056 + uid: 25063 Forward: - port: Left - uid: 25056 + uid: 25063 Off: - port: Middle - uid: 25056 + uid: 25063 type: SignalReceiver - - uid: 12429 + - uid: 12430 components: - pos: -47.5,12.5 parent: 2 @@ -98669,15 +83805,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25056 + uid: 25063 Forward: - port: Left - uid: 25056 + uid: 25063 Off: - port: Middle - uid: 25056 + uid: 25063 type: SignalReceiver - - uid: 12430 + - uid: 12431 components: - rot: 1.5707963267948966 rad pos: -8.5,22.5 @@ -98686,15 +83822,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25053 + uid: 25060 Forward: - port: Left - uid: 25053 + uid: 25060 Off: - port: Middle - uid: 25053 + uid: 25060 type: SignalReceiver - - uid: 12431 + - uid: 12432 components: - rot: 1.5707963267948966 rad pos: -7.5,22.5 @@ -98703,15 +83839,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25053 + uid: 25060 Forward: - port: Left - uid: 25053 + uid: 25060 Off: - port: Middle - uid: 25053 + uid: 25060 type: SignalReceiver - - uid: 12432 + - uid: 12433 components: - rot: 1.5707963267948966 rad pos: -6.5,22.5 @@ -98720,15 +83856,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25053 + uid: 25060 Forward: - port: Left - uid: 25053 + uid: 25060 Off: - port: Middle - uid: 25053 + uid: 25060 type: SignalReceiver - - uid: 12433 + - uid: 12434 components: - rot: 1.5707963267948966 rad pos: 43.5,37.5 @@ -98737,15 +83873,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25057 + uid: 25064 Forward: - port: Left - uid: 25057 + uid: 25064 Off: - port: Middle - uid: 25057 + uid: 25064 type: SignalReceiver - - uid: 12434 + - uid: 12435 components: - rot: 1.5707963267948966 rad pos: 44.5,37.5 @@ -98754,15 +83890,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25057 + uid: 25064 Forward: - port: Left - uid: 25057 + uid: 25064 Off: - port: Middle - uid: 25057 + uid: 25064 type: SignalReceiver - - uid: 12435 + - uid: 12436 components: - rot: 1.5707963267948966 rad pos: 45.5,37.5 @@ -98771,15 +83907,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25057 + uid: 25064 Forward: - port: Left - uid: 25057 + uid: 25064 Off: - port: Middle - uid: 25057 + uid: 25064 type: SignalReceiver - - uid: 12436 + - uid: 12437 components: - pos: 46.5,37.5 parent: 2 @@ -98787,15 +83923,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25057 + uid: 25064 Forward: - port: Left - uid: 25057 + uid: 25064 Off: - port: Middle - uid: 25057 + uid: 25064 type: SignalReceiver - - uid: 12437 + - uid: 12438 components: - rot: 1.5707963267948966 rad pos: 46.5,36.5 @@ -98804,15 +83940,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25057 + uid: 25064 Forward: - port: Left - uid: 25057 + uid: 25064 Off: - port: Middle - uid: 25057 + uid: 25064 type: SignalReceiver - - uid: 12438 + - uid: 12439 components: - rot: 1.5707963267948966 rad pos: 47.5,36.5 @@ -98821,15 +83957,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25057 + uid: 25064 Forward: - port: Left - uid: 25057 + uid: 25064 Off: - port: Middle - uid: 25057 + uid: 25064 type: SignalReceiver - - uid: 12439 + - uid: 12440 components: - rot: 3.141592653589793 rad pos: 48.5,36.5 @@ -98838,15 +83974,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25057 + uid: 25064 Forward: - port: Left - uid: 25057 + uid: 25064 Off: - port: Middle - uid: 25057 + uid: 25064 type: SignalReceiver - - uid: 12440 + - uid: 12441 components: - rot: 3.141592653589793 rad pos: 48.5,37.5 @@ -98855,15 +83991,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25057 + uid: 25064 Forward: - port: Left - uid: 25057 + uid: 25064 Off: - port: Middle - uid: 25057 + uid: 25064 type: SignalReceiver - - uid: 12441 + - uid: 12442 components: - rot: 1.5707963267948966 rad pos: -9.5,22.5 @@ -98872,15 +84008,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25053 + uid: 25060 Forward: - port: Left - uid: 25053 + uid: 25060 Off: - port: Middle - uid: 25053 + uid: 25060 type: SignalReceiver - - uid: 12442 + - uid: 12443 components: - pos: -9.5,27.5 parent: 2 @@ -98888,15 +84024,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25053 + uid: 25060 Forward: - port: Left - uid: 25053 + uid: 25060 Off: - port: Middle - uid: 25053 + uid: 25060 type: SignalReceiver - - uid: 12443 + - uid: 12444 components: - pos: -9.5,26.5 parent: 2 @@ -98904,15 +84040,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25053 + uid: 25060 Forward: - port: Left - uid: 25053 + uid: 25060 Off: - port: Middle - uid: 25053 + uid: 25060 type: SignalReceiver - - uid: 12444 + - uid: 12445 components: - pos: -9.5,25.5 parent: 2 @@ -98920,15 +84056,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25053 + uid: 25060 Forward: - port: Left - uid: 25053 + uid: 25060 Off: - port: Middle - uid: 25053 + uid: 25060 type: SignalReceiver - - uid: 12445 + - uid: 12446 components: - pos: -9.5,24.5 parent: 2 @@ -98936,15 +84072,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25053 + uid: 25060 Forward: - port: Left - uid: 25053 + uid: 25060 Off: - port: Middle - uid: 25053 + uid: 25060 type: SignalReceiver - - uid: 12446 + - uid: 12447 components: - pos: -9.5,23.5 parent: 2 @@ -98952,16 +84088,16 @@ entities: - inputs: Reverse: - port: Right - uid: 25053 + uid: 25060 Forward: - port: Left - uid: 25053 + uid: 25060 Off: - port: Middle - uid: 25053 + uid: 25060 type: SignalReceiver - type: ActiveConveyor - - uid: 12447 + - uid: 12448 components: - rot: 3.141592653589793 rad pos: -10.5,22.5 @@ -98970,15 +84106,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25053 + uid: 25060 Forward: - port: Left - uid: 25053 + uid: 25060 Off: - port: Middle - uid: 25053 + uid: 25060 type: SignalReceiver - - uid: 12448 + - uid: 12449 components: - rot: 1.5707963267948966 rad pos: -10.5,23.5 @@ -98987,15 +84123,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25053 + uid: 25060 Forward: - port: Left - uid: 25053 + uid: 25060 Off: - port: Middle - uid: 25053 + uid: 25060 type: SignalReceiver - - uid: 12449 + - uid: 12450 components: - rot: -1.5707963267948966 rad pos: -10.5,27.5 @@ -99004,15 +84140,15 @@ entities: - inputs: Reverse: - port: Left - uid: 25053 + uid: 25060 Forward: - port: Right - uid: 25053 + uid: 25060 Off: - port: Middle - uid: 25053 + uid: 25060 type: SignalReceiver - - uid: 12450 + - uid: 12451 components: - rot: -1.5707963267948966 rad pos: -11.5,27.5 @@ -99021,15 +84157,15 @@ entities: - inputs: Reverse: - port: Left - uid: 25053 + uid: 25060 Forward: - port: Right - uid: 25053 + uid: 25060 Off: - port: Middle - uid: 25053 + uid: 25060 type: SignalReceiver - - uid: 12451 + - uid: 12452 components: - rot: 3.141592653589793 rad pos: 48.5,38.5 @@ -99038,15 +84174,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25057 + uid: 25064 Forward: - port: Left - uid: 25057 + uid: 25064 Off: - port: Middle - uid: 25057 + uid: 25064 type: SignalReceiver - - uid: 12452 + - uid: 12453 components: - rot: 3.141592653589793 rad pos: -37.5,-99.5 @@ -99055,21 +84191,21 @@ entities: - inputs: Reverse: - port: Right - uid: 25058 + uid: 25065 - port: Right - uid: 25059 + uid: 25066 Forward: - port: Left - uid: 25058 + uid: 25065 - port: Left - uid: 25059 + uid: 25066 Off: - port: Middle - uid: 25058 + uid: 25065 - port: Middle - uid: 25059 + uid: 25066 type: SignalReceiver - - uid: 12453 + - uid: 12454 components: - rot: 3.141592653589793 rad pos: -37.5,-98.5 @@ -99078,21 +84214,21 @@ entities: - inputs: Reverse: - port: Right - uid: 25058 + uid: 25065 - port: Right - uid: 25059 + uid: 25066 Forward: - port: Left - uid: 25058 + uid: 25065 - port: Left - uid: 25059 + uid: 25066 Off: - port: Middle - uid: 25058 + uid: 25065 - port: Middle - uid: 25059 + uid: 25066 type: SignalReceiver - - uid: 12454 + - uid: 12455 components: - rot: 3.141592653589793 rad pos: -37.5,-100.5 @@ -99101,21 +84237,21 @@ entities: - inputs: Reverse: - port: Right - uid: 25058 + uid: 25065 - port: Right - uid: 25059 + uid: 25066 Forward: - port: Left - uid: 25058 + uid: 25065 - port: Left - uid: 25059 + uid: 25066 Off: - port: Middle - uid: 25058 + uid: 25065 - port: Middle - uid: 25059 + uid: 25066 type: SignalReceiver - - uid: 12455 + - uid: 12456 components: - rot: 3.141592653589793 rad pos: -37.5,-101.5 @@ -99124,21 +84260,21 @@ entities: - inputs: Reverse: - port: Right - uid: 25058 + uid: 25065 - port: Right - uid: 25059 + uid: 25066 Forward: - port: Left - uid: 25058 + uid: 25065 - port: Left - uid: 25059 + uid: 25066 Off: - port: Middle - uid: 25058 + uid: 25065 - port: Middle - uid: 25059 + uid: 25066 type: SignalReceiver - - uid: 12456 + - uid: 12457 components: - rot: 3.141592653589793 rad pos: -37.5,-102.5 @@ -99147,21 +84283,21 @@ entities: - inputs: Reverse: - port: Right - uid: 25058 + uid: 25065 - port: Right - uid: 25059 + uid: 25066 Forward: - port: Left - uid: 25058 + uid: 25065 - port: Left - uid: 25059 + uid: 25066 Off: - port: Middle - uid: 25058 + uid: 25065 - port: Middle - uid: 25059 + uid: 25066 type: SignalReceiver - - uid: 12457 + - uid: 12458 components: - rot: 3.141592653589793 rad pos: -37.5,-103.5 @@ -99170,21 +84306,21 @@ entities: - inputs: Reverse: - port: Right - uid: 25058 + uid: 25065 - port: Right - uid: 25059 + uid: 25066 Forward: - port: Left - uid: 25058 + uid: 25065 - port: Left - uid: 25059 + uid: 25066 Off: - port: Middle - uid: 25058 + uid: 25065 - port: Middle - uid: 25059 + uid: 25066 type: SignalReceiver - - uid: 12458 + - uid: 12459 components: - rot: 3.141592653589793 rad pos: -37.5,-104.5 @@ -99193,21 +84329,21 @@ entities: - inputs: Reverse: - port: Right - uid: 25058 + uid: 25065 - port: Right - uid: 25059 + uid: 25066 Forward: - port: Left - uid: 25058 + uid: 25065 - port: Left - uid: 25059 + uid: 25066 Off: - port: Middle - uid: 25058 + uid: 25065 - port: Middle - uid: 25059 + uid: 25066 type: SignalReceiver - - uid: 12459 + - uid: 12460 components: - rot: -1.5707963267948966 rad pos: -37.5,-105.5 @@ -99216,21 +84352,21 @@ entities: - inputs: Reverse: - port: Right - uid: 25058 + uid: 25065 - port: Right - uid: 25059 + uid: 25066 Forward: - port: Left - uid: 25058 + uid: 25065 - port: Left - uid: 25059 + uid: 25066 Off: - port: Middle - uid: 25058 + uid: 25065 - port: Middle - uid: 25059 + uid: 25066 type: SignalReceiver - - uid: 12460 + - uid: 12461 components: - rot: -1.5707963267948966 rad pos: -36.5,-105.5 @@ -99239,21 +84375,21 @@ entities: - inputs: Reverse: - port: Right - uid: 25058 + uid: 25065 - port: Right - uid: 25059 + uid: 25066 Forward: - port: Left - uid: 25058 + uid: 25065 - port: Left - uid: 25059 + uid: 25066 Off: - port: Middle - uid: 25058 + uid: 25065 - port: Middle - uid: 25059 + uid: 25066 type: SignalReceiver - - uid: 12461 + - uid: 12462 components: - rot: 3.141592653589793 rad pos: -38.5,-105.5 @@ -99262,21 +84398,21 @@ entities: - inputs: Reverse: - port: Right - uid: 25058 + uid: 25065 - port: Right - uid: 25059 + uid: 25066 Forward: - port: Left - uid: 25058 + uid: 25065 - port: Left - uid: 25059 + uid: 25066 Off: - port: Middle - uid: 25058 + uid: 25065 - port: Middle - uid: 25059 + uid: 25066 type: SignalReceiver - - uid: 12462 + - uid: 12463 components: - rot: 1.5707963267948966 rad pos: -38.5,-104.5 @@ -99285,21 +84421,21 @@ entities: - inputs: Reverse: - port: Right - uid: 25058 + uid: 25065 - port: Right - uid: 25059 + uid: 25066 Forward: - port: Left - uid: 25058 + uid: 25065 - port: Left - uid: 25059 + uid: 25066 Off: - port: Middle - uid: 25058 + uid: 25065 - port: Middle - uid: 25059 + uid: 25066 type: SignalReceiver - - uid: 12463 + - uid: 12464 components: - rot: 3.141592653589793 rad pos: -11.5,-11.5 @@ -99308,15 +84444,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25060 + uid: 25067 - port: Left - uid: 25060 + uid: 25067 Forward: [] Off: - port: Middle - uid: 25060 + uid: 25067 type: SignalReceiver - - uid: 12464 + - uid: 12465 components: - rot: 3.141592653589793 rad pos: -11.5,-12.5 @@ -99325,15 +84461,15 @@ entities: - inputs: Reverse: - port: Right - uid: 25060 + uid: 25067 - port: Left - uid: 25060 + uid: 25067 Forward: [] Off: - port: Middle - uid: 25060 + uid: 25067 type: SignalReceiver - - uid: 12465 + - uid: 12466 components: - rot: 3.141592653589793 rad pos: -42.5,16.5 @@ -99342,29 +84478,29 @@ entities: - inputs: Reverse: - port: Right - uid: 25049 + uid: 25056 Forward: - port: Left - uid: 25049 + uid: 25056 Off: - port: Middle - uid: 25049 + uid: 25056 type: SignalReceiver - proto: ConveyorBeltAssembly entities: - - uid: 12466 + - uid: 12467 components: - pos: -27.603226,-31.351301 parent: 2 type: Transform - proto: CounterWoodFrame entities: - - uid: 12467 + - uid: 12468 components: - pos: -47.5,-64.5 parent: 2 type: Transform - - uid: 12468 + - uid: 12469 components: - rot: 1.5707963267948966 rad pos: 3.5,-35.5 @@ -99372,7 +84508,7 @@ entities: type: Transform - proto: CrateArtifactContainer entities: - - uid: 12469 + - uid: 12470 components: - pos: 73.5,-36.5 parent: 2 @@ -99397,7 +84533,7 @@ entities: type: EntityStorage - proto: CrateEmergencyFire entities: - - uid: 12470 + - uid: 12471 components: - pos: -39.5,-15.5 parent: 2 @@ -99420,18 +84556,36 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12471 + - uid: 12472 components: - pos: -38.5,23.5 parent: 2 type: Transform + - fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 190 + hard: True + restitution: 0 + friction: 0.4 + type: Fixtures - air: volume: 200 immutable: False temperature: 293.14957 moles: - - 8.402782 - - 31.610466 - 0 - 0 - 0 @@ -99442,52 +84596,53 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + open: True + removedMasks: 20 type: EntityStorage + - isPlaceable: True + type: PlaceableSurface - proto: CrateEmptySpawner entities: - - uid: 12472 - components: - - pos: -43.5,23.5 - parent: 2 - type: Transform - uid: 12473 components: - - pos: -44.5,22.5 + - pos: -43.5,23.5 parent: 2 type: Transform - uid: 12474 components: - - pos: -40.5,20.5 + - pos: -44.5,22.5 parent: 2 type: Transform - uid: 12475 components: - - pos: -38.5,19.5 + - pos: -40.5,20.5 parent: 2 type: Transform - uid: 12476 components: - - pos: 6.5,49.5 + - pos: -38.5,19.5 parent: 2 type: Transform - uid: 12477 components: - - pos: -35.5,-96.5 + - pos: 6.5,49.5 parent: 2 type: Transform - uid: 12478 components: - - pos: -36.5,-96.5 + - pos: -35.5,-96.5 parent: 2 type: Transform - uid: 12479 components: - - pos: -46.5,44.5 + - pos: -36.5,-96.5 parent: 2 type: Transform - proto: CrateEngineeringAMEJar entities: - - uid: 12480 + - uid: 12481 components: - pos: -50.5,-13.5 parent: 2 @@ -99512,7 +84667,7 @@ entities: type: EntityStorage - proto: CrateEngineeringAMEShielding entities: - - uid: 12481 + - uid: 12482 components: - pos: -50.5,-14.5 parent: 2 @@ -99535,7 +84690,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12482 + - uid: 12483 components: - pos: -50.5,-12.5 parent: 2 @@ -99560,7 +84715,7 @@ entities: type: EntityStorage - proto: CrateEngineeringCableLV entities: - - uid: 12483 + - uid: 12484 components: - pos: -42.5,-15.5 parent: 2 @@ -99585,7 +84740,7 @@ entities: type: EntityStorage - proto: CrateEngineeringElectricalSupplies entities: - - uid: 12484 + - uid: 12485 components: - pos: 22.5,-49.5 parent: 2 @@ -99608,7 +84763,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12485 + - uid: 12486 components: - pos: -36.5,-63.5 parent: 2 @@ -99633,36 +84788,36 @@ entities: type: EntityStorage - proto: CrateEngineeringGear entities: - - uid: 12486 + - uid: 12487 components: - pos: 44.5,-7.5 parent: 2 type: Transform - proto: CrateFilledSpawner entities: - - uid: 12487 + - uid: 12488 components: - pos: -31.5,-48.5 parent: 2 type: Transform - - uid: 12488 + - uid: 12489 components: - pos: -71.5,-45.5 parent: 2 type: Transform - - uid: 12489 + - uid: 12490 components: - pos: 72.5,-56.5 parent: 2 type: Transform - - uid: 12490 + - uid: 12491 components: - pos: 71.5,-62.5 parent: 2 type: Transform - proto: CrateFoodCooking entities: - - uid: 12491 + - uid: 12492 components: - pos: -47.5,-80.5 parent: 2 @@ -99687,7 +84842,7 @@ entities: type: EntityStorage - proto: CrateFunBoardGames entities: - - uid: 12492 + - uid: 12493 components: - pos: 63.5,6.5 parent: 2 @@ -99712,14 +84867,14 @@ entities: type: EntityStorage - proto: CrateFunToyBox entities: - - uid: 12493 + - uid: 12494 components: - pos: 2.5,-9.5 parent: 2 type: Transform - proto: CrateHydroponicsSeeds entities: - - uid: 12494 + - uid: 12495 components: - pos: 12.5,-52.5 parent: 2 @@ -99744,7 +84899,7 @@ entities: type: EntityStorage - proto: CrateHydroponicsSeedsExotic entities: - - uid: 12495 + - uid: 12496 components: - pos: -47.5,-70.5 parent: 2 @@ -99769,14 +84924,14 @@ entities: type: EntityStorage - proto: CrateMaterialGlass entities: - - uid: 12496 + - uid: 12497 components: - pos: 43.5,-7.5 parent: 2 type: Transform - proto: CrateMousetrapBoxes entities: - - uid: 12497 + - uid: 12498 components: - pos: 60.5,42.5 parent: 2 @@ -99801,7 +84956,7 @@ entities: type: EntityStorage - proto: CrateNPCCow entities: - - uid: 12498 + - uid: 12499 components: - pos: -0.5,9.5 parent: 2 @@ -99826,7 +84981,7 @@ entities: type: EntityStorage - proto: CrateScience entities: - - uid: 12499 + - uid: 12500 components: - pos: 73.5,-34.5 parent: 2 @@ -99851,7 +85006,7 @@ entities: type: EntityStorage - proto: CrateSecurityNonlethal entities: - - uid: 12500 + - uid: 12501 components: - pos: 29.5,29.5 parent: 2 @@ -99876,7 +85031,7 @@ entities: type: EntityStorage - proto: CrateServiceJanitorialSupplies entities: - - uid: 12501 + - uid: 12502 components: - pos: -9.5,-21.5 parent: 2 @@ -99901,7 +85056,7 @@ entities: type: EntityStorage - proto: CrateServiceSmokeables entities: - - uid: 12502 + - uid: 12503 components: - pos: 56.5,59.5 parent: 2 @@ -99926,17 +85081,17 @@ entities: type: EntityStorage - proto: CrayonBox entities: - - uid: 12503 + - uid: 12504 components: - pos: 4.384584,-10.869311 parent: 2 type: Transform - - uid: 12504 + - uid: 12505 components: - pos: -29.428709,8.545935 parent: 2 type: Transform - - uid: 12505 + - uid: 12506 components: - rot: 3.141592653589793 rad pos: 54.561592,-64.4996 @@ -99944,14 +85099,14 @@ entities: type: Transform - proto: CrayonMime entities: - - uid: 12506 + - uid: 12507 components: - pos: -28.463287,46.56972 parent: 2 type: Transform - proto: Crematorium entities: - - uid: 12507 + - uid: 12508 components: - pos: -33.5,11.5 parent: 2 @@ -99976,130 +85131,134 @@ entities: type: EntityStorage - proto: CrewMonitoringComputerCircuitboard entities: - - uid: 12508 + - uid: 12509 components: - pos: 53.35249,35.65033 parent: 2 type: Transform - - uid: 12509 + - uid: 12510 components: - pos: -12.410412,37.664482 parent: 2 type: Transform + - nextSound: 227.6176855 + type: EmitSoundOnCollide - proto: CrewMonitoringServer entities: - - uid: 12510 + - uid: 12511 components: - pos: 8.5,-58.5 parent: 2 type: Transform - proto: CrewMonitoringServerMachineCircuitboard entities: - - uid: 12511 + - uid: 12512 components: - pos: -12.176037,37.430107 parent: 2 type: Transform + - nextSound: 230.1346415 + type: EmitSoundOnCollide - proto: Crowbar entities: - - uid: 12512 + - uid: 12513 components: - pos: 73.47424,-38.51016 parent: 2 type: Transform - - uid: 12513 + - uid: 12514 components: - pos: -29.495306,-23.60064 parent: 2 type: Transform - - uid: 12514 + - uid: 12515 components: - pos: 40.56214,-53.476734 parent: 2 type: Transform - - uid: 12515 + - uid: 12516 components: - pos: -56.61051,-70.40599 parent: 2 type: Transform - - uid: 12516 + - uid: 12517 components: - pos: -23.432364,-28.473803 parent: 2 type: Transform - - uid: 12517 + - uid: 12518 components: - pos: -36.564224,18.558977 parent: 2 type: Transform - - uid: 12518 + - uid: 12519 components: - rot: 6.283185307179586 rad pos: 57.539654,47.47334 parent: 2 type: Transform - - uid: 12519 + - uid: 12520 components: - pos: -9.421157,-15.518739 parent: 2 type: Transform - proto: CrowbarRed entities: - - uid: 12520 + - uid: 12521 components: - pos: 4.478334,-12.322436 parent: 2 type: Transform - - uid: 12521 + - uid: 12522 components: - pos: 52.637024,11.413784 parent: 2 type: Transform - - uid: 12522 + - uid: 12523 components: - pos: -16.370653,65.49348 parent: 2 type: Transform - proto: CryoPod entities: - - uid: 12523 + - uid: 12524 components: - pos: -24.5,-59.5 parent: 2 type: Transform - proto: CultAltarSpawner entities: - - uid: 12524 + - uid: 12525 components: - pos: -56.5,-62.5 parent: 2 type: Transform - proto: d10Dice entities: - - uid: 12525 + - uid: 12526 components: - pos: 9.458234,-7.2284737 parent: 2 type: Transform - - uid: 12526 + - uid: 12527 components: - pos: -29.44911,-46.43667 parent: 2 type: Transform - proto: d6Dice entities: - - uid: 12527 + - uid: 12528 components: - pos: -1.2845753,31.100819 parent: 2 type: Transform - - uid: 12528 + - uid: 12529 components: - rot: 1.5707963267948966 rad pos: 54.383816,29.301033 parent: 2 type: Transform - - uid: 12529 + - uid: 12530 components: - rot: 1.5707963267948966 rad pos: 54.165066,28.926033 @@ -100107,14 +85266,14 @@ entities: type: Transform - proto: d8Dice entities: - - uid: 12530 + - uid: 12531 components: - pos: 10.036359,-7.0722237 parent: 2 type: Transform - proto: DefibrillatorCabinet entities: - - uid: 12531 + - uid: 12532 components: - rot: 1.5707963267948966 rad pos: 19.5,21.5 @@ -100122,106 +85281,106 @@ entities: type: Transform - proto: DefibrillatorCabinetFilled entities: - - uid: 12532 + - uid: 12533 components: - rot: 1.5707963267948966 rad pos: -26.5,-72.5 parent: 2 type: Transform - - uid: 12533 + - uid: 12534 components: - pos: 44.5,16.5 parent: 2 type: Transform - - uid: 12534 + - uid: 12535 components: - pos: -1.5,-58.5 parent: 2 type: Transform - - uid: 12535 + - uid: 12536 components: - pos: -4.5,-58.5 parent: 2 type: Transform - - uid: 12536 + - uid: 12537 components: - pos: -7.5,-58.5 parent: 2 type: Transform - - uid: 12537 + - uid: 12538 components: - rot: -1.5707963267948966 rad pos: -30.5,-38.5 parent: 2 type: Transform - - uid: 12538 + - uid: 12539 components: - pos: -32.5,-8.5 parent: 2 type: Transform - - uid: 12539 + - uid: 12540 components: - pos: -28.5,20.5 parent: 2 type: Transform - - uid: 12540 + - uid: 12541 components: - pos: -9.5,47.5 parent: 2 type: Transform - - uid: 12541 + - uid: 12542 components: - rot: -1.5707963267948966 rad pos: 33.5,18.5 parent: 2 type: Transform - - uid: 12542 + - uid: 12543 components: - pos: -5.5,-51.5 parent: 2 type: Transform - - uid: 12543 + - uid: 12544 components: - pos: 29.5,-3.5 parent: 2 type: Transform - - uid: 12544 + - uid: 12545 components: - pos: 33.5,-70.5 parent: 2 type: Transform - - uid: 12545 + - uid: 12546 components: - pos: 56.5,-43.5 parent: 2 type: Transform - - uid: 12546 + - uid: 12547 components: - pos: 24.5,-38.5 parent: 2 type: Transform - - uid: 12547 + - uid: 12548 components: - pos: 6.5,-24.5 parent: 2 type: Transform - - uid: 12548 + - uid: 12549 components: - pos: 32.5,-23.5 parent: 2 type: Transform - - uid: 12549 + - uid: 12550 components: - rot: 3.141592653589793 rad pos: 2.5,-2.5 parent: 2 type: Transform - - uid: 12550 + - uid: 12551 components: - pos: -48.5,45.5 parent: 2 type: Transform - - uid: 12551 + - uid: 12552 components: - rot: -1.5707963267948966 rad pos: 66.5,-10.5 @@ -100229,31 +85388,19 @@ entities: type: Transform - proto: DeployableBarrier entities: - - uid: 12552 - components: - - anchored: False - pos: 29.5,25.5 - parent: 2 - type: Transform - uid: 12553 components: - anchored: False - pos: 32.5,19.5 + pos: 29.5,25.5 parent: 2 type: Transform - uid: 12554 - components: - - anchored: False - pos: 31.5,19.5 - parent: 2 - type: Transform - - uid: 12555 components: - anchored: False pos: -16.5,27.5 parent: 2 type: Transform - - uid: 12556 + - uid: 12555 components: - anchored: False pos: 62.5,7.5 @@ -100261,7 +85408,7 @@ entities: type: Transform - proto: DeskBell entities: - - uid: 12557 + - uid: 12556 components: - pos: 26.493649,19.578499 parent: 2 @@ -100270,49 +85417,49 @@ entities: type: MeleeWeapon missingComponents: - Item - - uid: 12558 + - uid: 12557 components: - pos: -26.393543,22.737104 parent: 2 type: Transform missingComponents: - Item - - uid: 12559 + - uid: 12558 components: - pos: 2.482698,4.566377 parent: 2 type: Transform missingComponents: - Item - - uid: 12560 + - uid: 12559 components: - pos: 7.4455647,7.463886 parent: 2 type: Transform missingComponents: - Item - - uid: 12561 + - uid: 12560 components: - pos: 15.491525,13.615058 parent: 2 type: Transform missingComponents: - Item - - uid: 12562 + - uid: 12561 components: - pos: -2.9507003,-48.39704 parent: 2 type: Transform missingComponents: - Item - - uid: 12563 + - uid: 12562 components: - pos: 42.281975,-40.51448 parent: 2 type: Transform missingComponents: - Item - - uid: 12564 + - uid: 12563 components: - pos: 29.278196,-39.552807 parent: 2 @@ -100321,669 +85468,669 @@ entities: - Item - proto: DiceBag entities: - - uid: 12565 + - uid: 12564 components: - pos: 10.645734,-7.4315987 parent: 2 type: Transform - - uid: 12566 + - uid: 12565 components: - pos: 23.269382,-29.34838 parent: 2 type: Transform - - uid: 12567 + - uid: 12566 components: - pos: -0.45645034,30.694569 parent: 2 type: Transform - - uid: 12568 + - uid: 12567 components: - pos: -16.724815,61.696495 parent: 2 type: Transform - - uid: 12569 + - uid: 12568 components: - pos: -18.55294,62.55587 parent: 2 type: Transform - proto: DiseaseDiagnoser entities: - - uid: 12570 + - uid: 12569 components: - pos: -22.5,-75.5 parent: 2 type: Transform - proto: DisposalBend entities: - - uid: 12571 + - uid: 12570 components: - rot: 1.5707963267948966 rad pos: -0.5,1.5 parent: 2 type: Transform - - uid: 12572 + - uid: 12571 components: - pos: 21.5,-29.5 parent: 2 type: Transform - - uid: 12573 + - uid: 12572 components: - rot: -1.5707963267948966 rad pos: 25.5,-36.5 parent: 2 type: Transform - - uid: 12574 + - uid: 12573 components: - rot: 1.5707963267948966 rad pos: -19.5,-60.5 parent: 2 type: Transform - - uid: 12575 + - uid: 12574 components: - pos: 13.5,2.5 parent: 2 type: Transform - - uid: 12576 + - uid: 12575 components: - pos: 4.5,-3.5 parent: 2 type: Transform - - uid: 12577 + - uid: 12576 components: - pos: 34.5,8.5 parent: 2 type: Transform - - uid: 12578 + - uid: 12577 components: - rot: 1.5707963267948966 rad pos: -14.5,-9.5 parent: 2 type: Transform - - uid: 12579 + - uid: 12578 components: - rot: 1.5707963267948966 rad pos: 16.5,-18.5 parent: 2 type: Transform - - uid: 12580 + - uid: 12579 components: - pos: 0.5,0.5 parent: 2 type: Transform - - uid: 12581 + - uid: 12580 components: - rot: 1.5707963267948966 rad pos: 0.5,2.5 parent: 2 type: Transform - - uid: 12582 + - uid: 12581 components: - rot: 3.141592653589793 rad pos: 8.5,13.5 parent: 2 type: Transform - - uid: 12583 + - uid: 12582 components: - rot: 1.5707963267948966 rad pos: 17.5,7.5 parent: 2 type: Transform - - uid: 12584 + - uid: 12583 components: - rot: -1.5707963267948966 rad pos: 22.5,7.5 parent: 2 type: Transform - - uid: 12585 + - uid: 12584 components: - rot: 1.5707963267948966 rad pos: 22.5,8.5 parent: 2 type: Transform - - uid: 12586 + - uid: 12585 components: - rot: -1.5707963267948966 rad pos: 20.5,-25.5 parent: 2 type: Transform - - uid: 12587 + - uid: 12586 components: - pos: 36.5,-17.5 parent: 2 type: Transform - - uid: 12588 + - uid: 12587 components: - pos: 1.5,-53.5 parent: 2 type: Transform - - uid: 12589 + - uid: 12588 components: - rot: -1.5707963267948966 rad pos: 34.5,-6.5 parent: 2 type: Transform - - uid: 12590 + - uid: 12589 components: - pos: 18.5,-49.5 parent: 2 type: Transform - - uid: 12591 + - uid: 12590 components: - rot: 3.141592653589793 rad pos: 15.5,-45.5 parent: 2 type: Transform - - uid: 12592 + - uid: 12591 components: - rot: 3.141592653589793 rad pos: -4.5,-12.5 parent: 2 type: Transform - - uid: 12593 + - uid: 12592 components: - rot: 1.5707963267948966 rad pos: -15.5,-53.5 parent: 2 type: Transform - - uid: 12594 + - uid: 12593 components: - rot: -1.5707963267948966 rad pos: -15.5,-54.5 parent: 2 type: Transform - - uid: 12595 + - uid: 12594 components: - rot: 1.5707963267948966 rad pos: -17.5,-54.5 parent: 2 type: Transform - - uid: 12596 + - uid: 12595 components: - pos: 18.5,1.5 parent: 2 type: Transform - - uid: 12597 + - uid: 12596 components: - rot: 3.141592653589793 rad pos: 10.5,-3.5 parent: 2 type: Transform - - uid: 12598 + - uid: 12597 components: - rot: -1.5707963267948966 rad pos: 0.5,1.5 parent: 2 type: Transform - - uid: 12599 + - uid: 12598 components: - rot: 3.141592653589793 rad pos: 0.5,-0.5 parent: 2 type: Transform - - uid: 12600 + - uid: 12599 components: - pos: 12.5,13.5 parent: 2 type: Transform - - uid: 12601 + - uid: 12600 components: - rot: 3.141592653589793 rad pos: 22.5,-11.5 parent: 2 type: Transform - - uid: 12602 + - uid: 12601 components: - rot: 3.141592653589793 rad pos: 18.5,-6.5 parent: 2 type: Transform - - uid: 12603 + - uid: 12602 components: - rot: 3.141592653589793 rad pos: 3.5,-3.5 parent: 2 type: Transform - - uid: 12604 + - uid: 12603 components: - rot: 3.141592653589793 rad pos: -23.5,-84.5 parent: 2 type: Transform - - uid: 12605 + - uid: 12604 components: - rot: -1.5707963267948966 rad pos: 17.5,0.5 parent: 2 type: Transform - - uid: 12606 + - uid: 12605 components: - pos: 17.5,-45.5 parent: 2 type: Transform - - uid: 12607 + - uid: 12606 components: - rot: -1.5707963267948966 rad pos: 24.5,-18.5 parent: 2 type: Transform - - uid: 12608 + - uid: 12607 components: - rot: -1.5707963267948966 rad pos: -17.5,-60.5 parent: 2 type: Transform - - uid: 12609 + - uid: 12608 components: - rot: -1.5707963267948966 rad pos: 13.5,-0.5 parent: 2 type: Transform - - uid: 12610 + - uid: 12609 components: - rot: 1.5707963267948966 rad pos: -23.5,-73.5 parent: 2 type: Transform - - uid: 12611 + - uid: 12610 components: - pos: 15.5,19.5 parent: 2 type: Transform - - uid: 12612 + - uid: 12611 components: - pos: -3.5,-12.5 parent: 2 type: Transform - - uid: 12613 + - uid: 12612 components: - pos: 15.5,-25.5 parent: 2 type: Transform - - uid: 12614 + - uid: 12613 components: - rot: 3.141592653589793 rad pos: 17.5,-49.5 parent: 2 type: Transform - - uid: 12615 + - uid: 12614 components: - rot: -1.5707963267948966 rad pos: 34.5,16.5 parent: 2 type: Transform - - uid: 12616 + - uid: 12615 components: - pos: 29.5,17.5 parent: 2 type: Transform - - uid: 12617 + - uid: 12616 components: - rot: 3.141592653589793 rad pos: 29.5,16.5 parent: 2 type: Transform - - uid: 12618 + - uid: 12617 components: - pos: 41.5,6.5 parent: 2 type: Transform - - uid: 12619 + - uid: 12618 components: - rot: 3.141592653589793 rad pos: 52.5,-13.5 parent: 2 type: Transform - - uid: 12620 + - uid: 12619 components: - pos: 54.5,-13.5 parent: 2 type: Transform - - uid: 12621 + - uid: 12620 components: - pos: 49.5,-43.5 parent: 2 type: Transform - - uid: 12622 + - uid: 12621 components: - rot: -1.5707963267948966 rad pos: 49.5,-50.5 parent: 2 type: Transform - - uid: 12623 + - uid: 12622 components: - pos: 67.5,-45.5 parent: 2 type: Transform - - uid: 12624 + - uid: 12623 components: - pos: 49.5,-55.5 parent: 2 type: Transform - - uid: 12625 + - uid: 12624 components: - rot: -1.5707963267948966 rad pos: -6.5,-66.5 parent: 2 type: Transform - - uid: 12626 + - uid: 12625 components: - rot: 3.141592653589793 rad pos: -23.5,-15.5 parent: 2 type: Transform - - uid: 12627 + - uid: 12626 components: - rot: 3.141592653589793 rad pos: 25.5,-60.5 parent: 2 type: Transform - - uid: 12628 + - uid: 12627 components: - pos: 39.5,-60.5 parent: 2 type: Transform - - uid: 12629 + - uid: 12628 components: - rot: 3.141592653589793 rad pos: -19.5,-43.5 parent: 2 type: Transform - - uid: 12630 + - uid: 12629 components: - rot: -1.5707963267948966 rad pos: 39.5,-73.5 parent: 2 type: Transform - - uid: 12631 + - uid: 12630 components: - rot: -1.5707963267948966 rad pos: -13.5,-6.5 parent: 2 type: Transform - - uid: 12632 + - uid: 12631 components: - pos: -13.5,8.5 parent: 2 type: Transform - - uid: 12633 + - uid: 12632 components: - rot: -1.5707963267948966 rad pos: -19.5,6.5 parent: 2 type: Transform - - uid: 12634 + - uid: 12633 components: - rot: 3.141592653589793 rad pos: -25.5,-6.5 parent: 2 type: Transform - - uid: 12635 + - uid: 12634 components: - rot: 3.141592653589793 rad pos: -32.5,-13.5 parent: 2 type: Transform - - uid: 12636 + - uid: 12635 components: - pos: -32.5,-10.5 parent: 2 type: Transform - - uid: 12637 + - uid: 12636 components: - rot: 3.141592653589793 rad pos: -36.5,-10.5 parent: 2 type: Transform - - uid: 12638 + - uid: 12637 components: - pos: -36.5,-5.5 parent: 2 type: Transform - - uid: 12639 + - uid: 12638 components: - rot: 3.141592653589793 rad pos: -38.5,-5.5 parent: 2 type: Transform - - uid: 12640 + - uid: 12639 components: - rot: 1.5707963267948966 rad pos: -19.5,-75.5 parent: 2 type: Transform - - uid: 12641 + - uid: 12640 components: - rot: -1.5707963267948966 rad pos: -19.5,-77.5 parent: 2 type: Transform - - uid: 12642 + - uid: 12641 components: - rot: 1.5707963267948966 rad pos: -36.5,-77.5 parent: 2 type: Transform - - uid: 12643 + - uid: 12642 components: - rot: 3.141592653589793 rad pos: -42.5,23.5 parent: 2 type: Transform - - uid: 12644 + - uid: 12643 components: - rot: 1.5707963267948966 rad pos: -42.5,19.5 parent: 2 type: Transform - - uid: 12645 + - uid: 12644 components: - rot: 1.5707963267948966 rad pos: -45.5,5.5 parent: 2 type: Transform - - uid: 12646 + - uid: 12645 components: - rot: 3.141592653589793 rad pos: -45.5,-0.5 parent: 2 type: Transform - - uid: 12647 + - uid: 12646 components: - pos: 2.5,-61.5 parent: 2 type: Transform - - uid: 12648 + - uid: 12647 components: - rot: 1.5707963267948966 rad pos: -13.5,-61.5 parent: 2 type: Transform - - uid: 12649 + - uid: 12648 components: - rot: -1.5707963267948966 rad pos: -13.5,-67.5 parent: 2 type: Transform - - uid: 12650 + - uid: 12649 components: - rot: -1.5707963267948966 rad pos: -12.5,5.5 parent: 2 type: Transform - - uid: 12651 + - uid: 12650 components: - rot: -1.5707963267948966 rad pos: -45.5,11.5 parent: 2 type: Transform - - uid: 12652 + - uid: 12651 components: - rot: 1.5707963267948966 rad pos: -45.5,18.5 parent: 2 type: Transform - - uid: 12653 + - uid: 12652 components: - rot: -1.5707963267948966 rad pos: 20.5,-40.5 parent: 2 type: Transform - - uid: 12654 + - uid: 12653 components: - rot: 1.5707963267948966 rad pos: 19.5,-40.5 parent: 2 type: Transform - - uid: 12655 + - uid: 12654 components: - rot: 1.5707963267948966 rad pos: -19.5,29.5 parent: 2 type: Transform - - uid: 12656 + - uid: 12655 components: - rot: -1.5707963267948966 rad pos: -15.5,29.5 parent: 2 type: Transform - - uid: 12657 + - uid: 12656 components: - rot: 3.141592653589793 rad pos: -17.5,44.5 parent: 2 type: Transform - - uid: 12658 + - uid: 12657 components: - pos: -4.5,44.5 parent: 2 type: Transform - - uid: 12659 + - uid: 12658 components: - pos: -13.5,50.5 parent: 2 type: Transform - - uid: 12660 + - uid: 12659 components: - rot: 1.5707963267948966 rad pos: -17.5,50.5 parent: 2 type: Transform - - uid: 12661 + - uid: 12660 components: - rot: -1.5707963267948966 rad pos: 75.5,-47.5 parent: 2 type: Transform - - uid: 12662 + - uid: 12661 components: - pos: -5.5,-13.5 parent: 2 type: Transform - - uid: 12663 + - uid: 12662 components: - rot: 3.141592653589793 rad pos: -10.5,-13.5 parent: 2 type: Transform - - uid: 12664 + - uid: 12663 components: - rot: 3.141592653589793 rad pos: -18.5,-14.5 parent: 2 type: Transform - - uid: 12665 + - uid: 12664 components: - rot: -1.5707963267948966 rad pos: -12.5,-14.5 parent: 2 type: Transform - - uid: 12666 + - uid: 12665 components: - pos: -18.5,-4.5 parent: 2 type: Transform - - uid: 12667 + - uid: 12666 components: - rot: 3.141592653589793 rad pos: -24.5,-4.5 parent: 2 type: Transform - - uid: 12668 + - uid: 12667 components: - rot: 1.5707963267948966 rad pos: -24.5,8.5 parent: 2 type: Transform - - uid: 12669 + - uid: 12668 components: - rot: -1.5707963267948966 rad pos: -20.5,8.5 parent: 2 type: Transform - - uid: 12670 + - uid: 12669 components: - pos: -20.5,20.5 parent: 2 type: Transform - - uid: 12671 + - uid: 12670 components: - rot: 1.5707963267948966 rad pos: -25.5,20.5 parent: 2 type: Transform - - uid: 12672 + - uid: 12671 components: - rot: -1.5707963267948966 rad pos: -25.5,19.5 parent: 2 type: Transform - - uid: 12673 + - uid: 12672 components: - rot: 1.5707963267948966 rad pos: -46.5,11.5 parent: 2 type: Transform - - uid: 12674 + - uid: 12673 components: - rot: 3.141592653589793 rad pos: -46.5,0.5 parent: 2 type: Transform - - uid: 12675 + - uid: 12674 components: - pos: -26.5,0.5 parent: 2 type: Transform - - uid: 12676 + - uid: 12675 components: - rot: 3.141592653589793 rad pos: -26.5,-5.5 parent: 2 type: Transform - - uid: 12677 + - uid: 12676 components: - pos: -20.5,-5.5 parent: 2 type: Transform - - uid: 12678 + - uid: 12677 components: - rot: 3.141592653589793 rad pos: -20.5,-25.5 parent: 2 type: Transform - - uid: 12679 + - uid: 12678 components: - rot: -1.5707963267948966 rad pos: 30.5,-86.5 parent: 2 type: Transform - - uid: 12680 + - uid: 12679 components: - rot: 1.5707963267948966 rad pos: 24.5,-73.5 parent: 2 type: Transform - - uid: 12681 + - uid: 12680 components: - rot: 3.141592653589793 rad pos: 15.5,17.5 @@ -100991,165 +86138,165 @@ entities: type: Transform - proto: DisposalJunction entities: - - uid: 12682 + - uid: 12681 components: - rot: -1.5707963267948966 rad pos: 19.5,-43.5 parent: 2 type: Transform - - uid: 12683 + - uid: 12682 components: - rot: -1.5707963267948966 rad pos: 25.5,8.5 parent: 2 type: Transform - - uid: 12684 + - uid: 12683 components: - rot: 3.141592653589793 rad pos: 21.5,-36.5 parent: 2 type: Transform - - uid: 12685 + - uid: 12684 components: - rot: 1.5707963267948966 rad pos: -7.5,0.5 parent: 2 type: Transform - - uid: 12686 + - uid: 12685 components: - rot: -1.5707963267948966 rad pos: 12.5,2.5 parent: 2 type: Transform - - uid: 12687 + - uid: 12686 components: - rot: -1.5707963267948966 rad pos: 6.5,2.5 parent: 2 type: Transform - - uid: 12688 + - uid: 12687 components: - rot: -1.5707963267948966 rad pos: -0.5,0.5 parent: 2 type: Transform - - uid: 12689 + - uid: 12688 components: - rot: 3.141592653589793 rad pos: 24.5,-10.5 parent: 2 type: Transform - - uid: 12690 + - uid: 12689 components: - rot: -1.5707963267948966 rad pos: 18.5,-29.5 parent: 2 type: Transform - - uid: 12691 + - uid: 12690 components: - rot: 3.141592653589793 rad pos: 34.5,6.5 parent: 2 type: Transform - - uid: 12692 + - uid: 12691 components: - rot: 1.5707963267948966 rad pos: -13.5,-43.5 parent: 2 type: Transform - - uid: 12693 + - uid: 12692 components: - rot: 1.5707963267948966 rad pos: -5.5,-53.5 parent: 2 type: Transform - - uid: 12694 + - uid: 12693 components: - rot: 3.141592653589793 rad pos: 16.5,-29.5 parent: 2 type: Transform - - uid: 12695 + - uid: 12694 components: - rot: -1.5707963267948966 rad pos: 18.5,7.5 parent: 2 type: Transform - - uid: 12696 + - uid: 12695 components: - rot: 1.5707963267948966 rad pos: -4.5,-27.5 parent: 2 type: Transform - - uid: 12697 + - uid: 12696 components: - rot: -1.5707963267948966 rad pos: 36.5,-43.5 parent: 2 type: Transform - - uid: 12698 + - uid: 12697 components: - rot: -1.5707963267948966 rad pos: 41.5,1.5 parent: 2 type: Transform - - uid: 12699 + - uid: 12698 components: - rot: -1.5707963267948966 rad pos: 46.5,-43.5 parent: 2 type: Transform - - uid: 12700 + - uid: 12699 components: - rot: 3.141592653589793 rad pos: 49.5,-45.5 parent: 2 type: Transform - - uid: 12701 + - uid: 12700 components: - rot: 3.141592653589793 rad pos: 49.5,-47.5 parent: 2 type: Transform - - uid: 12702 + - uid: 12701 components: - rot: 3.141592653589793 rad pos: 67.5,-47.5 parent: 2 type: Transform - - uid: 12703 + - uid: 12702 components: - rot: 1.5707963267948966 rad pos: -23.5,-13.5 parent: 2 type: Transform - - uid: 12704 + - uid: 12703 components: - pos: -19.5,-13.5 parent: 2 type: Transform - - uid: 12705 + - uid: 12704 components: - pos: -25.5,-0.5 parent: 2 type: Transform - - uid: 12706 + - uid: 12705 components: - pos: -19.5,23.5 parent: 2 type: Transform - - uid: 12707 + - uid: 12706 components: - rot: 1.5707963267948966 rad pos: -6.5,-61.5 parent: 2 type: Transform - - uid: 12708 + - uid: 12707 components: - pos: -15.5,37.5 parent: 2 type: Transform - - uid: 12709 + - uid: 12708 components: - rot: 1.5707963267948966 rad pos: 30.5,-73.5 @@ -101157,155 +86304,155 @@ entities: type: Transform - proto: DisposalJunctionFlipped entities: - - uid: 12710 + - uid: 12709 components: - rot: 1.5707963267948966 rad pos: -9.5,0.5 parent: 2 type: Transform - - uid: 12711 + - uid: 12710 components: - rot: -1.5707963267948966 rad pos: -0.5,-43.5 parent: 2 type: Transform - - uid: 12712 + - uid: 12711 components: - pos: 24.5,-17.5 parent: 2 type: Transform - - uid: 12713 + - uid: 12712 components: - rot: 1.5707963267948966 rad pos: 21.5,17.5 parent: 2 type: Transform - - uid: 12714 + - uid: 12713 components: - rot: -1.5707963267948966 rad pos: 3.5,-0.5 parent: 2 type: Transform - - uid: 12715 + - uid: 12714 components: - pos: 36.5,-18.5 parent: 2 type: Transform - - uid: 12716 + - uid: 12715 components: - pos: 16.5,-25.5 parent: 2 type: Transform - - uid: 12717 + - uid: 12716 components: - rot: 1.5707963267948966 rad pos: -5.5,-25.5 parent: 2 type: Transform - - uid: 12718 + - uid: 12717 components: - rot: 3.141592653589793 rad pos: -0.5,-45.5 parent: 2 type: Transform - - uid: 12719 + - uid: 12718 components: - pos: 34.5,1.5 parent: 2 type: Transform - - uid: 12720 + - uid: 12719 components: - rot: 3.141592653589793 rad pos: -17.5,-57.5 parent: 2 type: Transform - - uid: 12721 + - uid: 12720 components: - pos: 12.5,5.5 parent: 2 type: Transform - - uid: 12722 + - uid: 12721 components: - pos: 13.5,0.5 parent: 2 type: Transform - - uid: 12723 + - uid: 12722 components: - rot: -1.5707963267948966 rad pos: 10.5,-0.5 parent: 2 type: Transform - - uid: 12724 + - uid: 12723 components: - rot: -1.5707963267948966 rad pos: 6.5,-0.5 parent: 2 type: Transform - - uid: 12725 + - uid: 12724 components: - rot: -1.5707963267948966 rad pos: 24.5,-6.5 parent: 2 type: Transform - - uid: 12726 + - uid: 12725 components: - rot: 3.141592653589793 rad pos: 24.5,-11.5 parent: 2 type: Transform - - uid: 12727 + - uid: 12726 components: - rot: 3.141592653589793 rad pos: -4.5,-33.5 parent: 2 type: Transform - - uid: 12728 + - uid: 12727 components: - rot: -1.5707963267948966 rad pos: 6.5,-43.5 parent: 2 type: Transform - - uid: 12729 + - uid: 12728 components: - pos: 17.5,1.5 parent: 2 type: Transform - - uid: 12730 + - uid: 12729 components: - rot: 1.5707963267948966 rad pos: -10.5,-27.5 parent: 2 type: Transform - - uid: 12731 + - uid: 12730 components: - rot: -1.5707963267948966 rad pos: 25.5,-43.5 parent: 2 type: Transform - - uid: 12732 + - uid: 12731 components: - rot: 3.141592653589793 rad pos: -23.5,-75.5 parent: 2 type: Transform - - uid: 12733 + - uid: 12732 components: - rot: -1.5707963267948966 rad pos: 29.5,-60.5 parent: 2 type: Transform - - uid: 12734 + - uid: 12733 components: - pos: -13.5,5.5 parent: 2 type: Transform - - uid: 12735 + - uid: 12734 components: - rot: 1.5707963267948966 rad pos: -22.5,23.5 parent: 2 type: Transform - - uid: 12736 + - uid: 12735 components: - rot: -1.5707963267948966 rad pos: -3.5,-61.5 @@ -101313,6465 +86460,6470 @@ entities: type: Transform - proto: DisposalMachineFrame entities: - - uid: 12737 + - uid: 12736 components: - pos: 46.5,44.5 parent: 2 type: Transform - - uid: 12738 + - uid: 12737 components: - pos: -57.5,-41.5 parent: 2 type: Transform - - uid: 12739 + - uid: 12738 components: - pos: -22.5,-24.5 parent: 2 type: Transform - - uid: 12740 + - uid: 12739 components: - pos: -19.5,-99.5 parent: 2 type: Transform - proto: DisposalPipe entities: - - uid: 12741 + - uid: 12740 components: - rot: 1.5707963267948966 rad pos: -6.5,-9.5 parent: 2 type: Transform - - uid: 12742 + - uid: 12741 components: - pos: 12.5,6.5 parent: 2 type: Transform - - uid: 12743 + - uid: 12742 components: - rot: -1.5707963267948966 rad pos: 1.5,2.5 parent: 2 type: Transform - - uid: 12744 + - uid: 12743 components: - pos: 36.5,-25.5 parent: 2 type: Transform - - uid: 12745 + - uid: 12744 components: - pos: 36.5,-22.5 parent: 2 type: Transform - - uid: 12746 + - uid: 12745 components: - rot: -1.5707963267948966 rad pos: 25.5,-6.5 parent: 2 type: Transform - - uid: 12747 + - uid: 12746 components: - pos: 16.5,-42.5 parent: 2 type: Transform - - uid: 12748 + - uid: 12747 components: - pos: 16.5,-41.5 parent: 2 type: Transform - - uid: 12749 + - uid: 12748 components: - rot: -1.5707963267948966 rad pos: 20.5,-43.5 parent: 2 type: Transform - - uid: 12750 + - uid: 12749 components: - rot: 1.5707963267948966 rad pos: 13.5,-43.5 parent: 2 type: Transform - - uid: 12751 + - uid: 12750 components: - rot: 1.5707963267948966 rad pos: 12.5,-43.5 parent: 2 type: Transform - - uid: 12752 + - uid: 12751 components: - rot: 1.5707963267948966 rad pos: 8.5,-43.5 parent: 2 type: Transform - - uid: 12753 + - uid: 12752 components: - rot: 1.5707963267948966 rad pos: 4.5,-43.5 parent: 2 type: Transform - - uid: 12754 + - uid: 12753 components: - rot: -1.5707963267948966 rad pos: 0.5,-43.5 parent: 2 type: Transform - - uid: 12755 + - uid: 12754 components: - rot: -1.5707963267948966 rad pos: 17.5,-29.5 parent: 2 type: Transform - - uid: 12756 + - uid: 12755 components: - pos: 21.5,-33.5 parent: 2 type: Transform - - uid: 12757 + - uid: 12756 components: - pos: 21.5,-35.5 parent: 2 type: Transform - - uid: 12758 + - uid: 12757 components: - rot: 1.5707963267948966 rad pos: -13.5,-27.5 parent: 2 type: Transform - - uid: 12759 + - uid: 12758 components: - rot: -1.5707963267948966 rad pos: 31.5,-17.5 parent: 2 type: Transform - - uid: 12760 + - uid: 12759 components: - pos: 21.5,-30.5 parent: 2 type: Transform - - uid: 12761 + - uid: 12760 components: - pos: 21.5,-31.5 parent: 2 type: Transform - - uid: 12762 + - uid: 12761 components: - pos: 21.5,-34.5 parent: 2 type: Transform - - uid: 12763 + - uid: 12762 components: - rot: -1.5707963267948966 rad pos: 33.5,-17.5 parent: 2 type: Transform - - uid: 12764 + - uid: 12763 components: - rot: -1.5707963267948966 rad pos: 32.5,8.5 parent: 2 type: Transform - - uid: 12765 + - uid: 12764 components: - rot: -1.5707963267948966 rad pos: -6.5,-43.5 parent: 2 type: Transform - - uid: 12766 + - uid: 12765 components: - rot: -1.5707963267948966 rad pos: -8.5,-43.5 parent: 2 type: Transform - - uid: 12767 + - uid: 12766 components: - pos: -13.5,-45.5 parent: 2 type: Transform - - uid: 12768 + - uid: 12767 components: - pos: -17.5,-55.5 parent: 2 type: Transform - - uid: 12769 + - uid: 12768 components: - rot: -1.5707963267948966 rad pos: -18.5,-60.5 parent: 2 type: Transform - - uid: 12770 + - uid: 12769 components: - pos: -19.5,-61.5 parent: 2 type: Transform - - uid: 12771 + - uid: 12770 components: - rot: 1.5707963267948966 rad pos: -6.5,-53.5 parent: 2 type: Transform - - uid: 12772 + - uid: 12771 components: - rot: -1.5707963267948966 rad pos: 11.5,-0.5 parent: 2 type: Transform - - uid: 12773 + - uid: 12772 components: - rot: 1.5707963267948966 rad pos: 8.5,2.5 parent: 2 type: Transform - - uid: 12774 + - uid: 12773 components: - rot: 3.141592653589793 rad pos: -4.5,-1.5 parent: 2 type: Transform - - uid: 12775 + - uid: 12774 components: - rot: 3.141592653589793 rad pos: 8.5,14.5 parent: 2 type: Transform - - uid: 12776 + - uid: 12775 components: - rot: 3.141592653589793 rad pos: 3.5,-2.5 parent: 2 type: Transform - - uid: 12777 + - uid: 12776 components: - pos: 19.5,-41.5 parent: 2 type: Transform - - uid: 12778 + - uid: 12777 components: - pos: -9.5,1.5 parent: 2 type: Transform - - uid: 12779 + - uid: 12778 components: - pos: -9.5,4.5 parent: 2 type: Transform - - uid: 12780 + - uid: 12779 components: - pos: -9.5,3.5 parent: 2 type: Transform - - uid: 12781 + - uid: 12780 components: - pos: -9.5,2.5 parent: 2 type: Transform - - uid: 12782 + - uid: 12781 components: - rot: -1.5707963267948966 rad pos: 10.5,13.5 parent: 2 type: Transform - - uid: 12783 + - uid: 12782 components: - pos: 24.5,-9.5 parent: 2 type: Transform - - uid: 12784 + - uid: 12783 components: - rot: 1.5707963267948966 rad pos: 23.5,-6.5 parent: 2 type: Transform - - uid: 12785 + - uid: 12784 components: - pos: 24.5,-7.5 parent: 2 type: Transform - - uid: 12786 + - uid: 12785 components: - rot: -1.5707963267948966 rad pos: 3.5,2.5 parent: 2 type: Transform - - uid: 12787 + - uid: 12786 components: - rot: 1.5707963267948966 rad pos: -5.5,0.5 parent: 2 type: Transform - - uid: 12788 + - uid: 12787 components: - pos: -23.5,-74.5 parent: 2 type: Transform - - uid: 12789 + - uid: 12788 components: - pos: 12.5,11.5 parent: 2 type: Transform - - uid: 12790 + - uid: 12789 components: - rot: -1.5707963267948966 rad pos: -14.5,-43.5 parent: 2 type: Transform - - uid: 12791 + - uid: 12790 components: - rot: 1.5707963267948966 rad pos: -8.5,0.5 parent: 2 type: Transform - - uid: 12792 + - uid: 12791 components: - rot: 1.5707963267948966 rad pos: -8.5,-27.5 parent: 2 type: Transform - - uid: 12793 + - uid: 12792 components: - rot: 1.5707963267948966 rad pos: -9.5,-9.5 parent: 2 type: Transform - - uid: 12794 + - uid: 12793 components: - rot: 1.5707963267948966 rad pos: -2.5,0.5 parent: 2 type: Transform - - uid: 12795 + - uid: 12794 components: - rot: -1.5707963267948966 rad pos: 21.5,7.5 parent: 2 type: Transform - - uid: 12796 + - uid: 12795 components: - pos: 36.5,-24.5 parent: 2 type: Transform - - uid: 12797 + - uid: 12796 components: - pos: 34.5,-4.5 parent: 2 type: Transform - - uid: 12798 + - uid: 12797 components: - pos: 34.5,-2.5 parent: 2 type: Transform - - uid: 12799 + - uid: 12798 components: - rot: 3.141592653589793 rad pos: 34.5,5.5 parent: 2 type: Transform - - uid: 12800 + - uid: 12799 components: - rot: -1.5707963267948966 rad pos: 39.5,6.5 parent: 2 type: Transform - - uid: 12801 + - uid: 12800 components: - rot: -1.5707963267948966 rad pos: 28.5,-6.5 parent: 2 type: Transform - - uid: 12802 + - uid: 12801 components: - rot: -1.5707963267948966 rad pos: 26.5,-6.5 parent: 2 type: Transform - - uid: 12803 + - uid: 12802 components: - rot: 1.5707963267948966 rad pos: 11.5,-43.5 parent: 2 type: Transform - - uid: 12804 + - uid: 12803 components: - rot: 1.5707963267948966 rad pos: 9.5,-43.5 parent: 2 type: Transform - - uid: 12805 + - uid: 12804 components: - rot: 1.5707963267948966 rad pos: 10.5,-43.5 parent: 2 type: Transform - - uid: 12806 + - uid: 12805 components: - rot: 1.5707963267948966 rad pos: 7.5,-43.5 parent: 2 type: Transform - - uid: 12807 + - uid: 12806 components: - rot: 1.5707963267948966 rad pos: 5.5,-43.5 parent: 2 type: Transform - - uid: 12808 + - uid: 12807 components: - rot: -1.5707963267948966 rad pos: 1.5,-43.5 parent: 2 type: Transform - - uid: 12809 + - uid: 12808 components: - pos: 6.5,-44.5 parent: 2 type: Transform - - uid: 12810 + - uid: 12809 components: - pos: 21.5,-32.5 parent: 2 type: Transform - - uid: 12811 + - uid: 12810 components: - rot: 1.5707963267948966 rad pos: 20.5,-18.5 parent: 2 type: Transform - - uid: 12812 + - uid: 12811 components: - pos: 24.5,-13.5 parent: 2 type: Transform - - uid: 12813 + - uid: 12812 components: - rot: 1.5707963267948966 rad pos: 22.5,17.5 parent: 2 type: Transform - - uid: 12814 + - uid: 12813 components: - rot: -1.5707963267948966 rad pos: 28.5,17.5 parent: 2 type: Transform - - uid: 12815 + - uid: 12814 components: - pos: 25.5,15.5 parent: 2 type: Transform - - uid: 12816 + - uid: 12815 components: - rot: 1.5707963267948966 rad pos: 21.5,-6.5 parent: 2 type: Transform - - uid: 12817 + - uid: 12816 components: - rot: -1.5707963267948966 rad pos: 26.5,8.5 parent: 2 type: Transform - - uid: 12818 + - uid: 12817 components: - rot: -1.5707963267948966 rad pos: 11.5,2.5 parent: 2 type: Transform - - uid: 12819 + - uid: 12818 components: - pos: 6.5,4.5 parent: 2 type: Transform - - uid: 12820 + - uid: 12819 components: - rot: 1.5707963267948966 rad pos: -17.5,-27.5 parent: 2 type: Transform - - uid: 12821 + - uid: 12820 components: - rot: 1.5707963267948966 rad pos: -15.5,-27.5 parent: 2 type: Transform - - uid: 12822 + - uid: 12821 components: - rot: 1.5707963267948966 rad pos: -16.5,-27.5 parent: 2 type: Transform - - uid: 12823 + - uid: 12822 components: - rot: 1.5707963267948966 rad pos: -6.5,-27.5 parent: 2 type: Transform - - uid: 12824 + - uid: 12823 components: - rot: 1.5707963267948966 rad pos: -5.5,-27.5 parent: 2 type: Transform - - uid: 12825 + - uid: 12824 components: - rot: 1.5707963267948966 rad pos: -14.5,-27.5 parent: 2 type: Transform - - uid: 12826 + - uid: 12825 components: - rot: -1.5707963267948966 rad pos: -5.5,-33.5 parent: 2 type: Transform - - uid: 12827 + - uid: 12826 components: - pos: -19.5,-63.5 parent: 2 type: Transform - - uid: 12828 + - uid: 12827 components: - rot: 1.5707963267948966 rad pos: 8.5,-27.5 parent: 2 type: Transform - - uid: 12829 + - uid: 12828 components: - rot: 1.5707963267948966 rad pos: 7.5,-27.5 parent: 2 type: Transform - - uid: 12830 + - uid: 12829 components: - rot: 1.5707963267948966 rad pos: 5.5,-27.5 parent: 2 type: Transform - - uid: 12831 + - uid: 12830 components: - rot: 1.5707963267948966 rad pos: 3.5,-27.5 parent: 2 type: Transform - - uid: 12832 + - uid: 12831 components: - rot: 1.5707963267948966 rad pos: 2.5,-27.5 parent: 2 type: Transform - - uid: 12833 + - uid: 12832 components: - pos: -23.5,-77.5 parent: 2 type: Transform - - uid: 12834 + - uid: 12833 components: - rot: 1.5707963267948966 rad pos: 1.5,-27.5 parent: 2 type: Transform - - uid: 12835 + - uid: 12834 components: - rot: 1.5707963267948966 rad pos: -0.5,-27.5 parent: 2 type: Transform - - uid: 12836 + - uid: 12835 components: - rot: 1.5707963267948966 rad pos: -2.5,-27.5 parent: 2 type: Transform - - uid: 12837 + - uid: 12836 components: - rot: 1.5707963267948966 rad pos: 2.5,-0.5 parent: 2 type: Transform - - uid: 12838 + - uid: 12837 components: - pos: 18.5,-2.5 parent: 2 type: Transform - - uid: 12839 + - uid: 12838 components: - rot: -1.5707963267948966 rad pos: 27.5,17.5 parent: 2 type: Transform - - uid: 12840 + - uid: 12839 components: - rot: 3.141592653589793 rad pos: 16.5,-34.5 parent: 2 type: Transform - - uid: 12841 + - uid: 12840 components: - rot: 3.141592653589793 rad pos: 16.5,-32.5 parent: 2 type: Transform - - uid: 12842 + - uid: 12841 components: - rot: 3.141592653589793 rad pos: 16.5,-30.5 parent: 2 type: Transform - - uid: 12843 + - uid: 12842 components: - rot: 3.141592653589793 rad pos: 16.5,-28.5 parent: 2 type: Transform - - uid: 12844 + - uid: 12843 components: - rot: -1.5707963267948966 rad pos: 28.5,8.5 parent: 2 type: Transform - - uid: 12845 + - uid: 12844 components: - rot: 1.5707963267948966 rad pos: 7.5,-0.5 parent: 2 type: Transform - - uid: 12846 + - uid: 12845 components: - rot: 3.141592653589793 rad pos: 18.5,-26.5 parent: 2 type: Transform - - uid: 12847 + - uid: 12846 components: - pos: 18.5,-3.5 parent: 2 type: Transform - - uid: 12848 + - uid: 12847 components: - rot: 1.5707963267948966 rad pos: 0.5,-27.5 parent: 2 type: Transform - - uid: 12849 + - uid: 12848 components: - rot: 1.5707963267948966 rad pos: -1.5,-27.5 parent: 2 type: Transform - - uid: 12850 + - uid: 12849 components: - rot: 3.141592653589793 rad pos: 16.5,-33.5 parent: 2 type: Transform - - uid: 12851 + - uid: 12850 components: - rot: 3.141592653589793 rad pos: 16.5,-31.5 parent: 2 type: Transform - - uid: 12852 + - uid: 12851 components: - rot: -1.5707963267948966 rad pos: 26.5,-17.5 parent: 2 type: Transform - - uid: 12853 + - uid: 12852 components: - rot: 1.5707963267948966 rad pos: 5.5,-0.5 parent: 2 type: Transform - - uid: 12854 + - uid: 12853 components: - rot: 1.5707963267948966 rad pos: -12.5,-53.5 parent: 2 type: Transform - - uid: 12855 + - uid: 12854 components: - rot: 1.5707963267948966 rad pos: 6.5,-27.5 parent: 2 type: Transform - - uid: 12856 + - uid: 12855 components: - pos: 24.5,-15.5 parent: 2 type: Transform - - uid: 12857 + - uid: 12856 components: - rot: 1.5707963267948966 rad pos: 22.5,-18.5 parent: 2 type: Transform - - uid: 12858 + - uid: 12857 components: - rot: 1.5707963267948966 rad pos: 18.5,-18.5 parent: 2 type: Transform - - uid: 12859 + - uid: 12858 components: - pos: 12.5,7.5 parent: 2 type: Transform - - uid: 12860 + - uid: 12859 components: - rot: 3.141592653589793 rad pos: 17.5,3.5 parent: 2 type: Transform - - uid: 12861 + - uid: 12860 components: - rot: 1.5707963267948966 rad pos: -1.5,0.5 parent: 2 type: Transform - - uid: 12862 + - uid: 12861 components: - rot: 1.5707963267948966 rad pos: -3.5,0.5 parent: 2 type: Transform - - uid: 12863 + - uid: 12862 components: - pos: 10.5,-2.5 parent: 2 type: Transform - - uid: 12864 + - uid: 12863 components: - rot: -1.5707963267948966 rad pos: 14.5,0.5 parent: 2 type: Transform - - uid: 12865 + - uid: 12864 components: - rot: -1.5707963267948966 rad pos: 16.5,0.5 parent: 2 type: Transform - - uid: 12866 + - uid: 12865 components: - rot: 3.141592653589793 rad pos: -4.5,-7.5 parent: 2 type: Transform - - uid: 12867 + - uid: 12866 components: - rot: 3.141592653589793 rad pos: -3.5,-18.5 parent: 2 type: Transform - - uid: 12868 + - uid: 12867 components: - rot: 3.141592653589793 rad pos: 18.5,-51.5 parent: 2 type: Transform - - uid: 12869 + - uid: 12868 components: - rot: 3.141592653589793 rad pos: 18.5,-50.5 parent: 2 type: Transform - - uid: 12870 + - uid: 12869 components: - rot: 3.141592653589793 rad pos: 15.5,-42.5 parent: 2 type: Transform - - uid: 12871 + - uid: 12870 components: - pos: -4.5,-42.5 parent: 2 type: Transform - - uid: 12872 + - uid: 12871 components: - pos: -4.5,-40.5 parent: 2 type: Transform - - uid: 12873 + - uid: 12872 components: - pos: -4.5,-38.5 parent: 2 type: Transform - - uid: 12874 + - uid: 12873 components: - pos: -4.5,-36.5 parent: 2 type: Transform - - uid: 12875 + - uid: 12874 components: - pos: -4.5,-34.5 parent: 2 type: Transform - - uid: 12876 + - uid: 12875 components: - pos: -4.5,-32.5 parent: 2 type: Transform - - uid: 12877 + - uid: 12876 components: - pos: -4.5,-30.5 parent: 2 type: Transform - - uid: 12878 + - uid: 12877 components: - rot: -1.5707963267948966 rad pos: -17.5,-43.5 parent: 2 type: Transform - - uid: 12879 + - uid: 12878 components: - rot: -1.5707963267948966 rad pos: -16.5,-43.5 parent: 2 type: Transform - - uid: 12880 + - uid: 12879 components: - rot: 1.5707963267948966 rad pos: 11.5,-27.5 parent: 2 type: Transform - - uid: 12881 + - uid: 12880 components: - rot: 1.5707963267948966 rad pos: 9.5,-27.5 parent: 2 type: Transform - - uid: 12882 + - uid: 12881 components: - rot: 1.5707963267948966 rad pos: 10.5,-27.5 parent: 2 type: Transform - - uid: 12883 + - uid: 12882 components: - rot: 1.5707963267948966 rad pos: -9.5,-27.5 parent: 2 type: Transform - - uid: 12884 + - uid: 12883 components: - rot: 1.5707963267948966 rad pos: -7.5,-27.5 parent: 2 type: Transform - - uid: 12885 + - uid: 12884 components: - rot: 1.5707963267948966 rad pos: 15.5,-27.5 parent: 2 type: Transform - - uid: 12886 + - uid: 12885 components: - rot: 1.5707963267948966 rad pos: 14.5,-27.5 parent: 2 type: Transform - - uid: 12887 + - uid: 12886 components: - rot: 1.5707963267948966 rad pos: 13.5,-27.5 parent: 2 type: Transform - - uid: 12888 + - uid: 12887 components: - rot: 1.5707963267948966 rad pos: -12.5,-27.5 parent: 2 type: Transform - - uid: 12889 + - uid: 12888 components: - rot: 1.5707963267948966 rad pos: -11.5,-27.5 parent: 2 type: Transform - - uid: 12890 + - uid: 12889 components: - pos: 17.5,-48.5 parent: 2 type: Transform - - uid: 12891 + - uid: 12890 components: - pos: 4.5,-6.5 parent: 2 type: Transform - - uid: 12892 + - uid: 12891 components: - rot: -1.5707963267948966 rad pos: 1.5,-0.5 parent: 2 type: Transform - - uid: 12893 + - uid: 12892 components: - rot: -1.5707963267948966 rad pos: 2.5,2.5 parent: 2 type: Transform - - uid: 12894 + - uid: 12893 components: - rot: -1.5707963267948966 rad pos: 11.5,13.5 parent: 2 type: Transform - - uid: 12895 + - uid: 12894 components: - pos: 12.5,12.5 parent: 2 type: Transform - - uid: 12896 + - uid: 12895 components: - rot: 1.5707963267948966 rad pos: 23.5,17.5 parent: 2 type: Transform - - uid: 12897 + - uid: 12896 components: - rot: -1.5707963267948966 rad pos: 35.5,-17.5 parent: 2 type: Transform - - uid: 12898 + - uid: 12897 components: - pos: 36.5,-19.5 parent: 2 type: Transform - - uid: 12899 + - uid: 12898 components: - rot: 1.5707963267948966 rad pos: 22.5,-36.5 parent: 2 type: Transform - - uid: 12900 + - uid: 12899 components: - rot: 1.5707963267948966 rad pos: 24.5,-36.5 parent: 2 type: Transform - - uid: 12901 + - uid: 12900 components: - rot: -1.5707963267948966 rad pos: 30.5,8.5 parent: 2 type: Transform - - uid: 12902 + - uid: 12901 components: - rot: -1.5707963267948966 rad pos: 27.5,8.5 parent: 2 type: Transform - - uid: 12903 + - uid: 12902 components: - rot: -1.5707963267948966 rad pos: 29.5,8.5 parent: 2 type: Transform - - uid: 12904 + - uid: 12903 components: - rot: -1.5707963267948966 rad pos: 31.5,8.5 parent: 2 type: Transform - - uid: 12905 + - uid: 12904 components: - rot: -1.5707963267948966 rad pos: 26.5,-10.5 parent: 2 type: Transform - - uid: 12906 + - uid: 12905 components: - rot: 1.5707963267948966 rad pos: 23.5,-11.5 parent: 2 type: Transform - - uid: 12907 + - uid: 12906 components: - rot: -1.5707963267948966 rad pos: 20.5,7.5 parent: 2 type: Transform - - uid: 12908 + - uid: 12907 components: - rot: -1.5707963267948966 rad pos: 19.5,7.5 parent: 2 type: Transform - - uid: 12909 + - uid: 12908 components: - rot: -1.5707963267948966 rad pos: 23.5,8.5 parent: 2 type: Transform - - uid: 12910 + - uid: 12909 components: - rot: -1.5707963267948966 rad pos: 24.5,8.5 parent: 2 type: Transform - - uid: 12911 + - uid: 12910 components: - pos: 25.5,9.5 parent: 2 type: Transform - - uid: 12912 + - uid: 12911 components: - pos: 25.5,10.5 parent: 2 type: Transform - - uid: 12913 + - uid: 12912 components: - pos: 25.5,11.5 parent: 2 type: Transform - - uid: 12914 + - uid: 12913 components: - pos: 25.5,12.5 parent: 2 type: Transform - - uid: 12915 + - uid: 12914 components: - pos: 25.5,13.5 parent: 2 type: Transform - - uid: 12916 + - uid: 12915 components: - pos: 25.5,14.5 parent: 2 type: Transform - - uid: 12917 + - uid: 12916 components: - pos: 25.5,16.5 parent: 2 type: Transform - - uid: 12918 + - uid: 12917 components: - rot: -1.5707963267948966 rad pos: 26.5,17.5 parent: 2 type: Transform - - uid: 12919 + - uid: 12918 components: - rot: -1.5707963267948966 rad pos: 24.5,17.5 parent: 2 type: Transform - - uid: 12920 + - uid: 12919 components: - pos: 21.5,18.5 parent: 2 type: Transform - - uid: 12921 + - uid: 12920 components: - pos: 21.5,19.5 parent: 2 type: Transform - - uid: 12922 + - uid: 12921 components: - pos: 24.5,-12.5 parent: 2 type: Transform - - uid: 12923 + - uid: 12922 components: - rot: 1.5707963267948966 rad pos: 19.5,-18.5 parent: 2 type: Transform - - uid: 12924 + - uid: 12923 components: - rot: 1.5707963267948966 rad pos: 17.5,-18.5 parent: 2 type: Transform - - uid: 12925 + - uid: 12924 components: - pos: 16.5,-20.5 parent: 2 type: Transform - - uid: 12926 + - uid: 12925 components: - pos: 16.5,-21.5 parent: 2 type: Transform - - uid: 12927 + - uid: 12926 components: - pos: 16.5,-22.5 parent: 2 type: Transform - - uid: 12928 + - uid: 12927 components: - pos: 16.5,-23.5 parent: 2 type: Transform - - uid: 12929 + - uid: 12928 components: - pos: 16.5,-24.5 parent: 2 type: Transform - - uid: 12930 + - uid: 12929 components: - rot: -1.5707963267948966 rad pos: 17.5,-25.5 parent: 2 type: Transform - - uid: 12931 + - uid: 12930 components: - rot: -1.5707963267948966 rad pos: 19.5,-25.5 parent: 2 type: Transform - - uid: 12932 + - uid: 12931 components: - pos: 20.5,-24.5 parent: 2 type: Transform - - uid: 12933 + - uid: 12932 components: - rot: -1.5707963267948966 rad pos: 25.5,-17.5 parent: 2 type: Transform - - uid: 12934 + - uid: 12933 components: - rot: -1.5707963267948966 rad pos: 27.5,-17.5 parent: 2 type: Transform - - uid: 12935 + - uid: 12934 components: - rot: -1.5707963267948966 rad pos: 29.5,-17.5 parent: 2 type: Transform - - uid: 12936 + - uid: 12935 components: - rot: -1.5707963267948966 rad pos: 28.5,-17.5 parent: 2 type: Transform - - uid: 12937 + - uid: 12936 components: - rot: -1.5707963267948966 rad pos: 30.5,-17.5 parent: 2 type: Transform - - uid: 12938 + - uid: 12937 components: - rot: -1.5707963267948966 rad pos: 32.5,-17.5 parent: 2 type: Transform - - uid: 12939 + - uid: 12938 components: - rot: 3.141592653589793 rad pos: 16.5,-26.5 parent: 2 type: Transform - - uid: 12940 + - uid: 12939 components: - rot: -1.5707963267948966 rad pos: 19.5,-29.5 parent: 2 type: Transform - - uid: 12941 + - uid: 12940 components: - rot: -1.5707963267948966 rad pos: 20.5,-29.5 parent: 2 type: Transform - - uid: 12942 + - uid: 12941 components: - pos: 25.5,-35.5 parent: 2 type: Transform - - uid: 12943 + - uid: 12942 components: - rot: -1.5707963267948966 rad pos: 34.5,-17.5 parent: 2 type: Transform - - uid: 12944 + - uid: 12943 components: - rot: 3.141592653589793 rad pos: 36.5,-20.5 parent: 2 type: Transform - - uid: 12945 + - uid: 12944 components: - rot: 3.141592653589793 rad pos: 36.5,-21.5 parent: 2 type: Transform - - uid: 12946 + - uid: 12945 components: - rot: -1.5707963267948966 rad pos: 33.5,8.5 parent: 2 type: Transform - - uid: 12947 + - uid: 12946 components: - rot: 3.141592653589793 rad pos: -4.5,-10.5 parent: 2 type: Transform - - uid: 12948 + - uid: 12947 components: - rot: -1.5707963267948966 rad pos: 7.5,-25.5 parent: 2 type: Transform - - uid: 12949 + - uid: 12948 components: - pos: -7.5,-1.5 parent: 2 type: Transform - - uid: 12950 + - uid: 12949 components: - rot: -1.5707963267948966 rad pos: 20.5,17.5 parent: 2 type: Transform - - uid: 12951 + - uid: 12950 components: - rot: -1.5707963267948966 rad pos: 19.5,17.5 parent: 2 type: Transform - - uid: 12952 + - uid: 12951 components: - rot: -1.5707963267948966 rad pos: -4.5,-25.5 parent: 2 type: Transform - - uid: 12953 + - uid: 12952 components: - pos: 16.5,-35.5 parent: 2 type: Transform - - uid: 12954 + - uid: 12953 components: - pos: 16.5,-36.5 parent: 2 type: Transform - - uid: 12955 + - uid: 12954 components: - pos: 16.5,-37.5 parent: 2 type: Transform - - uid: 12956 + - uid: 12955 components: - pos: 16.5,-38.5 parent: 2 type: Transform - - uid: 12957 + - uid: 12956 components: - pos: 16.5,-39.5 parent: 2 type: Transform - - uid: 12958 + - uid: 12957 components: - pos: 16.5,-40.5 parent: 2 type: Transform - - uid: 12959 + - uid: 12958 components: - rot: 3.141592653589793 rad pos: 1.5,-58.5 parent: 2 type: Transform - - uid: 12960 + - uid: 12959 components: - rot: 3.141592653589793 rad pos: 1.5,-57.5 parent: 2 type: Transform - - uid: 12961 + - uid: 12960 components: - rot: 3.141592653589793 rad pos: 1.5,-56.5 parent: 2 type: Transform - - uid: 12962 + - uid: 12961 components: - rot: 3.141592653589793 rad pos: 1.5,-55.5 parent: 2 type: Transform - - uid: 12963 + - uid: 12962 components: - rot: 3.141592653589793 rad pos: 1.5,-54.5 parent: 2 type: Transform - - uid: 12964 + - uid: 12963 components: - rot: -1.5707963267948966 rad pos: 0.5,-53.5 parent: 2 type: Transform - - uid: 12965 + - uid: 12964 components: - rot: -1.5707963267948966 rad pos: -1.5,-45.5 parent: 2 type: Transform - - uid: 12966 + - uid: 12965 components: - rot: 3.141592653589793 rad pos: -0.5,-52.5 parent: 2 type: Transform - - uid: 12967 + - uid: 12966 components: - rot: 3.141592653589793 rad pos: -0.5,-51.5 parent: 2 type: Transform - - uid: 12968 + - uid: 12967 components: - rot: 3.141592653589793 rad pos: -0.5,-50.5 parent: 2 type: Transform - - uid: 12969 + - uid: 12968 components: - rot: 3.141592653589793 rad pos: -0.5,-48.5 parent: 2 type: Transform - - uid: 12970 + - uid: 12969 components: - rot: 3.141592653589793 rad pos: -0.5,-47.5 parent: 2 type: Transform - - uid: 12971 + - uid: 12970 components: - pos: -0.5,-44.5 parent: 2 type: Transform - - uid: 12972 + - uid: 12971 components: - rot: -1.5707963267948966 rad pos: 27.5,-6.5 parent: 2 type: Transform - - uid: 12973 + - uid: 12972 components: - rot: -1.5707963267948966 rad pos: 29.5,-6.5 parent: 2 type: Transform - - uid: 12974 + - uid: 12973 components: - rot: -1.5707963267948966 rad pos: 30.5,-6.5 parent: 2 type: Transform - - uid: 12975 + - uid: 12974 components: - rot: -1.5707963267948966 rad pos: 31.5,-6.5 parent: 2 type: Transform - - uid: 12976 + - uid: 12975 components: - rot: -1.5707963267948966 rad pos: 32.5,-6.5 parent: 2 type: Transform - - uid: 12977 + - uid: 12976 components: - rot: -1.5707963267948966 rad pos: 33.5,-6.5 parent: 2 type: Transform - - uid: 12978 + - uid: 12977 components: - rot: 3.141592653589793 rad pos: 34.5,7.5 parent: 2 type: Transform - - uid: 12979 + - uid: 12978 components: - rot: -1.5707963267948966 rad pos: 35.5,6.5 parent: 2 type: Transform - - uid: 12980 + - uid: 12979 components: - rot: -1.5707963267948966 rad pos: 36.5,6.5 parent: 2 type: Transform - - uid: 12981 + - uid: 12980 components: - rot: -1.5707963267948966 rad pos: 37.5,6.5 parent: 2 type: Transform - - uid: 12982 + - uid: 12981 components: - rot: -1.5707963267948966 rad pos: 38.5,6.5 parent: 2 type: Transform - - uid: 12983 + - uid: 12982 components: - rot: -1.5707963267948966 rad pos: 40.5,6.5 parent: 2 type: Transform - - uid: 12984 + - uid: 12983 components: - rot: 3.141592653589793 rad pos: 34.5,3.5 parent: 2 type: Transform - - uid: 12985 + - uid: 12984 components: - pos: 34.5,-0.5 parent: 2 type: Transform - - uid: 12986 + - uid: 12985 components: - pos: 34.5,-1.5 parent: 2 type: Transform - - uid: 12987 + - uid: 12986 components: - pos: 36.5,-27.5 parent: 2 type: Transform - - uid: 12988 + - uid: 12987 components: - pos: 36.5,-28.5 parent: 2 type: Transform - - uid: 12989 + - uid: 12988 components: - rot: 3.141592653589793 rad pos: 15.5,-44.5 parent: 2 type: Transform - - uid: 12990 + - uid: 12989 components: - rot: 1.5707963267948966 rad pos: 16.5,-45.5 parent: 2 type: Transform - - uid: 12991 + - uid: 12990 components: - pos: 17.5,-46.5 parent: 2 type: Transform - - uid: 12992 + - uid: 12991 components: - rot: 1.5707963267948966 rad pos: 17.5,-43.5 parent: 2 type: Transform - - uid: 12993 + - uid: 12992 components: - rot: 1.5707963267948966 rad pos: 18.5,-43.5 parent: 2 type: Transform - - uid: 12994 + - uid: 12993 components: - pos: 19.5,-42.5 parent: 2 type: Transform - - uid: 12995 + - uid: 12994 components: - pos: 18.5,-27.5 parent: 2 type: Transform - - uid: 12996 + - uid: 12995 components: - pos: -23.5,-80.5 parent: 2 type: Transform - - uid: 12997 + - uid: 12996 components: - rot: 1.5707963267948966 rad pos: 23.5,-36.5 parent: 2 type: Transform - - uid: 12998 + - uid: 12997 components: - rot: -1.5707963267948966 rad pos: -2.5,-25.5 parent: 2 type: Transform - - uid: 12999 + - uid: 12998 components: - rot: -1.5707963267948966 rad pos: -3.5,-25.5 parent: 2 type: Transform - - uid: 13000 + - uid: 12999 components: - rot: 3.141592653589793 rad pos: -4.5,-2.5 parent: 2 type: Transform - - uid: 13001 + - uid: 13000 components: - rot: -1.5707963267948966 rad pos: -1.5,-25.5 parent: 2 type: Transform - - uid: 13002 + - uid: 13001 components: - rot: 3.141592653589793 rad pos: 15.5,-33.5 parent: 2 type: Transform - - uid: 13003 + - uid: 13002 components: - rot: -1.5707963267948966 rad pos: -1.5,-43.5 parent: 2 type: Transform - - uid: 13004 + - uid: 13003 components: - rot: -1.5707963267948966 rad pos: -2.5,-43.5 parent: 2 type: Transform - - uid: 13005 + - uid: 13004 components: - rot: -1.5707963267948966 rad pos: -3.5,-43.5 parent: 2 type: Transform - - uid: 13006 + - uid: 13005 components: - rot: -1.5707963267948966 rad pos: -5.5,-43.5 parent: 2 type: Transform - - uid: 13007 + - uid: 13006 components: - rot: -1.5707963267948966 rad pos: -7.5,-43.5 parent: 2 type: Transform - - uid: 13008 + - uid: 13007 components: - rot: -1.5707963267948966 rad pos: -9.5,-43.5 parent: 2 type: Transform - - uid: 13009 + - uid: 13008 components: - rot: -1.5707963267948966 rad pos: -10.5,-43.5 parent: 2 type: Transform - - uid: 13010 + - uid: 13009 components: - rot: -1.5707963267948966 rad pos: -11.5,-43.5 parent: 2 type: Transform - - uid: 13011 + - uid: 13010 components: - rot: -1.5707963267948966 rad pos: -12.5,-43.5 parent: 2 type: Transform - - uid: 13012 + - uid: 13011 components: - pos: -13.5,-44.5 parent: 2 type: Transform - - uid: 13013 + - uid: 13012 components: - pos: -13.5,-46.5 parent: 2 type: Transform - - uid: 13014 + - uid: 13013 components: - pos: -13.5,-47.5 parent: 2 type: Transform - - uid: 13015 + - uid: 13014 components: - pos: -13.5,-48.5 parent: 2 type: Transform - - uid: 13016 + - uid: 13015 components: - pos: -13.5,-49.5 parent: 2 type: Transform - - uid: 13017 + - uid: 13016 components: - pos: -13.5,-50.5 parent: 2 type: Transform - - uid: 13018 + - uid: 13017 components: - pos: -13.5,-51.5 parent: 2 type: Transform - - uid: 13019 + - uid: 13018 components: - pos: -13.5,-52.5 parent: 2 type: Transform - - uid: 13020 + - uid: 13019 components: - rot: 1.5707963267948966 rad pos: -14.5,-53.5 parent: 2 type: Transform - - uid: 13021 + - uid: 13020 components: - rot: 1.5707963267948966 rad pos: -16.5,-54.5 parent: 2 type: Transform - - uid: 13022 + - uid: 13021 components: - pos: -17.5,-56.5 parent: 2 type: Transform - - uid: 13023 + - uid: 13022 components: - rot: 3.141592653589793 rad pos: -17.5,-58.5 parent: 2 type: Transform - - uid: 13024 + - uid: 13023 components: - rot: 3.141592653589793 rad pos: -17.5,-59.5 parent: 2 type: Transform - - uid: 13025 + - uid: 13024 components: - rot: 1.5707963267948966 rad pos: -18.5,-57.5 parent: 2 type: Transform - - uid: 13026 + - uid: 13025 components: - rot: 1.5707963267948966 rad pos: -19.5,-57.5 parent: 2 type: Transform - - uid: 13027 + - uid: 13026 components: - pos: -19.5,-69.5 parent: 2 type: Transform - - uid: 13028 + - uid: 13027 components: - pos: -19.5,-70.5 parent: 2 type: Transform - - uid: 13029 + - uid: 13028 components: - pos: -19.5,-71.5 parent: 2 type: Transform - - uid: 13030 + - uid: 13029 components: - pos: -19.5,-72.5 parent: 2 type: Transform - - uid: 13031 + - uid: 13030 components: - rot: 1.5707963267948966 rad pos: -18.5,-73.5 parent: 2 type: Transform - - uid: 13032 + - uid: 13031 components: - rot: 1.5707963267948966 rad pos: -21.5,-73.5 parent: 2 type: Transform - - uid: 13033 + - uid: 13032 components: - rot: -1.5707963267948966 rad pos: -22.5,-73.5 parent: 2 type: Transform - - uid: 13034 + - uid: 13033 components: - pos: -23.5,-82.5 parent: 2 type: Transform - - uid: 13035 + - uid: 13034 components: - rot: 1.5707963267948966 rad pos: -9.5,-53.5 parent: 2 type: Transform - - uid: 13036 + - uid: 13035 components: - rot: 1.5707963267948966 rad pos: -2.5,-53.5 parent: 2 type: Transform - - uid: 13037 + - uid: 13036 components: - pos: 18.5,-4.5 parent: 2 type: Transform - - uid: 13038 + - uid: 13037 components: - rot: -1.5707963267948966 rad pos: 9.5,13.5 parent: 2 type: Transform - - uid: 13039 + - uid: 13038 components: - rot: -1.5707963267948966 rad pos: 1.5,-25.5 parent: 2 type: Transform - - uid: 13040 + - uid: 13039 components: - pos: 30.5,-77.5 parent: 2 type: Transform - - uid: 13041 + - uid: 13040 components: - pos: -4.5,-29.5 parent: 2 type: Transform - - uid: 13042 + - uid: 13041 components: - rot: 3.141592653589793 rad pos: 17.5,6.5 parent: 2 type: Transform - - uid: 13043 + - uid: 13042 components: - pos: 12.5,10.5 parent: 2 type: Transform - - uid: 13044 + - uid: 13043 components: - pos: 18.5,-0.5 parent: 2 type: Transform - - uid: 13045 + - uid: 13044 components: - pos: 12.5,9.5 parent: 2 type: Transform - - uid: 13046 + - uid: 13045 components: - pos: 12.5,3.5 parent: 2 type: Transform - - uid: 13047 + - uid: 13046 components: - rot: 3.141592653589793 rad pos: 17.5,4.5 parent: 2 type: Transform - - uid: 13048 + - uid: 13047 components: - rot: 3.141592653589793 rad pos: 17.5,2.5 parent: 2 type: Transform - - uid: 13049 + - uid: 13048 components: - pos: 18.5,-1.5 parent: 2 type: Transform - - uid: 13050 + - uid: 13049 components: - rot: -1.5707963267948966 rad pos: 15.5,0.5 parent: 2 type: Transform - - uid: 13051 + - uid: 13050 components: - pos: 10.5,-1.5 parent: 2 type: Transform - - uid: 13052 + - uid: 13051 components: - pos: 6.5,-1.5 parent: 2 type: Transform - - uid: 13053 + - uid: 13052 components: - pos: 13.5,1.5 parent: 2 type: Transform - - uid: 13054 + - uid: 13053 components: - rot: 1.5707963267948966 rad pos: 8.5,-0.5 parent: 2 type: Transform - - uid: 13055 + - uid: 13054 components: - rot: -1.5707963267948966 rad pos: 2.5,-25.5 parent: 2 type: Transform - - uid: 13056 + - uid: 13055 components: - rot: 1.5707963267948966 rad pos: 4.5,2.5 parent: 2 type: Transform - - uid: 13057 + - uid: 13056 components: - rot: 1.5707963267948966 rad pos: 5.5,2.5 parent: 2 type: Transform - - uid: 13058 + - uid: 13057 components: - rot: 1.5707963267948966 rad pos: -11.5,-53.5 parent: 2 type: Transform - - uid: 13059 + - uid: 13058 components: - rot: 1.5707963267948966 rad pos: -22.5,-84.5 parent: 2 type: Transform - - uid: 13060 + - uid: 13059 components: - pos: -23.5,-83.5 parent: 2 type: Transform - - uid: 13061 + - uid: 13060 components: - pos: -23.5,-78.5 parent: 2 type: Transform - - uid: 13062 + - uid: 13061 components: - rot: 1.5707963267948966 rad pos: 7.5,2.5 parent: 2 type: Transform - - uid: 13063 + - uid: 13062 components: - rot: -1.5707963267948966 rad pos: 11.5,-25.5 parent: 2 type: Transform - - uid: 13064 + - uid: 13063 components: - pos: 24.5,-16.5 parent: 2 type: Transform - - uid: 13065 + - uid: 13064 components: - rot: -1.5707963267948966 rad pos: -15.5,-43.5 parent: 2 type: Transform - - uid: 13066 + - uid: 13065 components: - rot: -1.5707963267948966 rad pos: 11.5,2.5 parent: 2 type: Transform - - uid: 13067 + - uid: 13066 components: - pos: 4.5,-5.5 parent: 2 type: Transform - - uid: 13068 + - uid: 13067 components: - pos: 4.5,-4.5 parent: 2 type: Transform - - uid: 13069 + - uid: 13068 components: - rot: 1.5707963267948966 rad pos: 22.5,-6.5 parent: 2 type: Transform - - uid: 13070 + - uid: 13069 components: - pos: 24.5,-8.5 parent: 2 type: Transform - - uid: 13071 + - uid: 13070 components: - rot: -1.5707963267948966 rad pos: 25.5,-10.5 parent: 2 type: Transform - - uid: 13072 + - uid: 13071 components: - pos: 16.5,-19.5 parent: 2 type: Transform - - uid: 13073 + - uid: 13072 components: - rot: -1.5707963267948966 rad pos: 6.5,-25.5 parent: 2 type: Transform - - uid: 13074 + - uid: 13073 components: - rot: -1.5707963267948966 rad pos: 5.5,-25.5 parent: 2 type: Transform - - uid: 13075 + - uid: 13074 components: - rot: -1.5707963267948966 rad pos: -0.5,-25.5 parent: 2 type: Transform - - uid: 13076 + - uid: 13075 components: - pos: -7.5,-0.5 parent: 2 type: Transform - - uid: 13077 + - uid: 13076 components: - rot: 3.141592653589793 rad pos: -5.5,-22.5 parent: 2 type: Transform - - uid: 13078 + - uid: 13077 components: - rot: -1.5707963267948966 rad pos: 10.5,-25.5 parent: 2 type: Transform - - uid: 13079 + - uid: 13078 components: - rot: 3.141592653589793 rad pos: -0.5,-49.5 parent: 2 type: Transform - - uid: 13080 + - uid: 13079 components: - rot: 3.141592653589793 rad pos: -0.5,-46.5 parent: 2 type: Transform - - uid: 13081 + - uid: 13080 components: - rot: 3.141592653589793 rad pos: 15.5,-28.5 parent: 2 type: Transform - - uid: 13082 + - uid: 13081 components: - pos: 18.5,-5.5 parent: 2 type: Transform - - uid: 13083 + - uid: 13082 components: - rot: 3.141592653589793 rad pos: 18.5,8.5 parent: 2 type: Transform - - uid: 13084 + - uid: 13083 components: - rot: 1.5707963267948966 rad pos: 19.5,-6.5 parent: 2 type: Transform - - uid: 13085 + - uid: 13084 components: - rot: -1.5707963267948966 rad pos: 4.5,-25.5 parent: 2 type: Transform - - uid: 13086 + - uid: 13085 components: - rot: 1.5707963267948966 rad pos: 4.5,-0.5 parent: 2 type: Transform - - uid: 13087 + - uid: 13086 components: - rot: 3.141592653589793 rad pos: -4.5,-5.5 parent: 2 type: Transform - - uid: 13088 + - uid: 13087 components: - rot: 3.141592653589793 rad pos: -3.5,-25.5 parent: 2 type: Transform - - uid: 13089 + - uid: 13088 components: - rot: 1.5707963267948966 rad pos: 12.5,-27.5 parent: 2 type: Transform - - uid: 13090 + - uid: 13089 components: - pos: 18.5,-28.5 parent: 2 type: Transform - - uid: 13091 + - uid: 13090 components: - pos: -23.5,-79.5 parent: 2 type: Transform - - uid: 13092 + - uid: 13091 components: - rot: 1.5707963267948966 rad pos: -24.5,-75.5 parent: 2 type: Transform - - uid: 13093 + - uid: 13092 components: - rot: 1.5707963267948966 rad pos: -7.5,-53.5 parent: 2 type: Transform - - uid: 13094 + - uid: 13093 components: - rot: 1.5707963267948966 rad pos: 9.5,-0.5 parent: 2 type: Transform - - uid: 13095 + - uid: 13094 components: - rot: 1.5707963267948966 rad pos: -5.5,-9.5 parent: 2 type: Transform - - uid: 13096 + - uid: 13095 components: - pos: 6.5,3.5 parent: 2 type: Transform - - uid: 13097 + - uid: 13096 components: - rot: -1.5707963267948966 rad pos: 3.5,-25.5 parent: 2 type: Transform - - uid: 13098 + - uid: 13097 components: - pos: 18.5,0.5 parent: 2 type: Transform - - uid: 13099 + - uid: 13098 components: - rot: 3.141592653589793 rad pos: 3.5,-1.5 parent: 2 type: Transform - - uid: 13100 + - uid: 13099 components: - rot: 3.141592653589793 rad pos: -3.5,-24.5 parent: 2 type: Transform - - uid: 13101 + - uid: 13100 components: - rot: 1.5707963267948966 rad pos: 15.5,-43.5 parent: 2 type: Transform - - uid: 13102 + - uid: 13101 components: - rot: 3.141592653589793 rad pos: -5.5,-21.5 parent: 2 type: Transform - - uid: 13103 + - uid: 13102 components: - rot: 1.5707963267948966 rad pos: 11.5,-3.5 parent: 2 type: Transform - - uid: 13104 + - uid: 13103 components: - rot: -1.5707963267948966 rad pos: 8.5,-25.5 parent: 2 type: Transform - - uid: 13105 + - uid: 13104 components: - rot: 1.5707963267948966 rad pos: 20.5,-6.5 parent: 2 type: Transform - - uid: 13106 + - uid: 13105 components: - rot: 3.141592653589793 rad pos: 15.5,-41.5 parent: 2 type: Transform - - uid: 13107 + - uid: 13106 components: - pos: -5.5,-54.5 parent: 2 type: Transform - - uid: 13108 + - uid: 13107 components: - rot: -1.5707963267948966 rad pos: 2.5,-43.5 parent: 2 type: Transform - - uid: 13109 + - uid: 13108 components: - pos: -4.5,-35.5 parent: 2 type: Transform - - uid: 13110 + - uid: 13109 components: - pos: -4.5,-31.5 parent: 2 type: Transform - - uid: 13111 + - uid: 13110 components: - pos: -4.5,-28.5 parent: 2 type: Transform - - uid: 13112 + - uid: 13111 components: - pos: -19.5,-65.5 parent: 2 type: Transform - - uid: 13113 + - uid: 13112 components: - pos: 36.5,-26.5 parent: 2 type: Transform - - uid: 13114 + - uid: 13113 components: - pos: 36.5,-23.5 parent: 2 type: Transform - - uid: 13115 + - uid: 13114 components: - pos: 34.5,-5.5 parent: 2 type: Transform - - uid: 13116 + - uid: 13115 components: - pos: 34.5,0.5 parent: 2 type: Transform - - uid: 13117 + - uid: 13116 components: - rot: 3.141592653589793 rad pos: 34.5,2.5 parent: 2 type: Transform - - uid: 13118 + - uid: 13117 components: - rot: 3.141592653589793 rad pos: 34.5,4.5 parent: 2 type: Transform - - uid: 13119 + - uid: 13118 components: - pos: 34.5,-3.5 parent: 2 type: Transform - - uid: 13120 + - uid: 13119 components: - rot: 1.5707963267948966 rad pos: 14.5,-43.5 parent: 2 type: Transform - - uid: 13121 + - uid: 13120 components: - rot: 1.5707963267948966 rad pos: 3.5,-43.5 parent: 2 type: Transform - - uid: 13122 + - uid: 13121 components: - rot: 1.5707963267948966 rad pos: 22.5,-43.5 parent: 2 type: Transform - - uid: 13123 + - uid: 13122 components: - rot: 3.141592653589793 rad pos: -3.5,-19.5 parent: 2 type: Transform - - uid: 13124 + - uid: 13123 components: - rot: 3.141592653589793 rad pos: -4.5,-6.5 parent: 2 type: Transform - - uid: 13125 + - uid: 13124 components: - rot: 1.5707963267948966 rad pos: 21.5,-18.5 parent: 2 type: Transform - - uid: 13126 + - uid: 13125 components: - rot: 1.5707963267948966 rad pos: 23.5,-18.5 parent: 2 type: Transform - - uid: 13127 + - uid: 13126 components: - pos: 24.5,-14.5 parent: 2 type: Transform - - uid: 13128 + - uid: 13127 components: - rot: 1.5707963267948966 rad pos: 9.5,2.5 parent: 2 type: Transform - - uid: 13129 + - uid: 13128 components: - rot: 1.5707963267948966 rad pos: 26.5,-43.5 parent: 2 type: Transform - - uid: 13130 + - uid: 13129 components: - rot: 1.5707963267948966 rad pos: -20.5,-73.5 parent: 2 type: Transform - - uid: 13131 + - uid: 13130 components: - pos: -23.5,-76.5 parent: 2 type: Transform - - uid: 13132 + - uid: 13131 components: - pos: -19.5,-64.5 parent: 2 type: Transform - - uid: 13133 + - uid: 13132 components: - pos: -19.5,-62.5 parent: 2 type: Transform - - uid: 13134 + - uid: 13133 components: - pos: -19.5,-66.5 parent: 2 type: Transform - - uid: 13135 + - uid: 13134 components: - pos: -19.5,-68.5 parent: 2 type: Transform - - uid: 13136 + - uid: 13135 components: - pos: -19.5,-67.5 parent: 2 type: Transform - - uid: 13137 + - uid: 13136 components: - rot: 3.141592653589793 rad pos: -3.5,-20.5 parent: 2 type: Transform - - uid: 13138 + - uid: 13137 components: - rot: 3.141592653589793 rad pos: 15.5,-26.5 parent: 2 type: Transform - - uid: 13139 + - uid: 13138 components: - rot: 1.5707963267948966 rad pos: -6.5,0.5 parent: 2 type: Transform - - uid: 13140 + - uid: 13139 components: - rot: 3.141592653589793 rad pos: -5.5,-23.5 parent: 2 type: Transform - - uid: 13141 + - uid: 13140 components: - rot: 3.141592653589793 rad pos: -5.5,-24.5 parent: 2 type: Transform - - uid: 13142 + - uid: 13141 components: - rot: -1.5707963267948966 rad pos: 13.5,5.5 parent: 2 type: Transform - - uid: 13143 + - uid: 13142 components: - pos: 12.5,8.5 parent: 2 type: Transform - - uid: 13144 + - uid: 13143 components: - rot: 3.141592653589793 rad pos: 17.5,5.5 parent: 2 type: Transform - - uid: 13145 + - uid: 13144 components: - pos: 17.5,9.5 parent: 2 type: Transform - - uid: 13146 + - uid: 13145 components: - pos: 12.5,4.5 parent: 2 type: Transform - - uid: 13147 + - uid: 13146 components: - rot: -1.5707963267948966 rad pos: 12.5,-0.5 parent: 2 type: Transform - - uid: 13148 + - uid: 13147 components: - pos: -4.5,-41.5 parent: 2 type: Transform - - uid: 13149 + - uid: 13148 components: - pos: -4.5,-39.5 parent: 2 type: Transform - - uid: 13150 + - uid: 13149 components: - pos: -4.5,-37.5 parent: 2 type: Transform - - uid: 13151 + - uid: 13150 components: - rot: 1.5707963267948966 rad pos: 4.5,-27.5 parent: 2 type: Transform - - uid: 13152 + - uid: 13151 components: - rot: -1.5707963267948966 rad pos: -18.5,-43.5 parent: 2 type: Transform - - uid: 13153 + - uid: 13152 components: - rot: 1.5707963267948966 rad pos: 33.5,-43.5 parent: 2 type: Transform - - uid: 13154 + - uid: 13153 components: - rot: 3.141592653589793 rad pos: -6.5,-65.5 parent: 2 type: Transform - - uid: 13155 + - uid: 13154 components: - rot: 1.5707963267948966 rad pos: -7.5,-66.5 parent: 2 type: Transform - - uid: 13156 + - uid: 13155 components: - rot: 3.141592653589793 rad pos: 18.5,-52.5 parent: 2 type: Transform - - uid: 13157 + - uid: 13156 components: - pos: -10.5,-24.5 parent: 2 type: Transform - - uid: 13158 + - uid: 13157 components: - pos: -10.5,-25.5 parent: 2 type: Transform - - uid: 13159 + - uid: 13158 components: - pos: -10.5,-26.5 parent: 2 type: Transform - - uid: 13160 + - uid: 13159 components: - rot: 1.5707963267948966 rad pos: 21.5,-43.5 parent: 2 type: Transform - - uid: 13161 + - uid: 13160 components: - rot: 3.141592653589793 rad pos: 25.5,-46.5 parent: 2 type: Transform - - uid: 13162 + - uid: 13161 components: - rot: 3.141592653589793 rad pos: 25.5,-45.5 parent: 2 type: Transform - - uid: 13163 + - uid: 13162 components: - rot: 3.141592653589793 rad pos: 25.5,-44.5 parent: 2 type: Transform - - uid: 13164 + - uid: 13163 components: - rot: 1.5707963267948966 rad pos: 24.5,-43.5 parent: 2 type: Transform - - uid: 13165 + - uid: 13164 components: - rot: 1.5707963267948966 rad pos: 23.5,-43.5 parent: 2 type: Transform - - uid: 13166 + - uid: 13165 components: - rot: 1.5707963267948966 rad pos: 32.5,-43.5 parent: 2 type: Transform - - uid: 13167 + - uid: 13166 components: - rot: 1.5707963267948966 rad pos: 31.5,-43.5 parent: 2 type: Transform - - uid: 13168 + - uid: 13167 components: - rot: 1.5707963267948966 rad pos: 30.5,-43.5 parent: 2 type: Transform - - uid: 13169 + - uid: 13168 components: - rot: 1.5707963267948966 rad pos: 29.5,-43.5 parent: 2 type: Transform - - uid: 13170 + - uid: 13169 components: - rot: 1.5707963267948966 rad pos: 28.5,-43.5 parent: 2 type: Transform - - uid: 13171 + - uid: 13170 components: - rot: 1.5707963267948966 rad pos: 27.5,-43.5 parent: 2 type: Transform - - uid: 13172 + - uid: 13171 components: - rot: 1.5707963267948966 rad pos: 34.5,-43.5 parent: 2 type: Transform - - uid: 13173 + - uid: 13172 components: - rot: 1.5707963267948966 rad pos: -13.5,-9.5 parent: 2 type: Transform - - uid: 13174 + - uid: 13173 components: - rot: 1.5707963267948966 rad pos: -1.5,-53.5 parent: 2 type: Transform - - uid: 13175 + - uid: 13174 components: - rot: 1.5707963267948966 rad pos: -8.5,-53.5 parent: 2 type: Transform - - uid: 13176 + - uid: 13175 components: - rot: 1.5707963267948966 rad pos: -10.5,-53.5 parent: 2 type: Transform - - uid: 13177 + - uid: 13176 components: - rot: 1.5707963267948966 rad pos: -4.5,-53.5 parent: 2 type: Transform - - uid: 13178 + - uid: 13177 components: - rot: 1.5707963267948966 rad pos: -3.5,-53.5 parent: 2 type: Transform - - uid: 13179 + - uid: 13178 components: - pos: 36.5,-29.5 parent: 2 type: Transform - - uid: 13180 + - uid: 13179 components: - pos: 36.5,-30.5 parent: 2 type: Transform - - uid: 13181 + - uid: 13180 components: - pos: 36.5,-31.5 parent: 2 type: Transform - - uid: 13182 + - uid: 13181 components: - pos: 36.5,-32.5 parent: 2 type: Transform - - uid: 13183 + - uid: 13182 components: - pos: 36.5,-33.5 parent: 2 type: Transform - - uid: 13184 + - uid: 13183 components: - pos: 36.5,-34.5 parent: 2 type: Transform - - uid: 13185 + - uid: 13184 components: - pos: 36.5,-35.5 parent: 2 type: Transform - - uid: 13186 + - uid: 13185 components: - pos: 36.5,-36.5 parent: 2 type: Transform - - uid: 13187 + - uid: 13186 components: - pos: 36.5,-37.5 parent: 2 type: Transform - - uid: 13188 + - uid: 13187 components: - pos: 36.5,-38.5 parent: 2 type: Transform - - uid: 13189 + - uid: 13188 components: - pos: 36.5,-39.5 parent: 2 type: Transform - - uid: 13190 + - uid: 13189 components: - pos: 36.5,-40.5 parent: 2 type: Transform - - uid: 13191 + - uid: 13190 components: - pos: 36.5,-41.5 parent: 2 type: Transform - - uid: 13192 + - uid: 13191 components: - pos: 36.5,-42.5 parent: 2 type: Transform - - uid: 13193 + - uid: 13192 components: - rot: -1.5707963267948966 rad pos: 35.5,-43.5 parent: 2 type: Transform - - uid: 13194 + - uid: 13193 components: - rot: -1.5707963267948966 rad pos: 37.5,-43.5 parent: 2 type: Transform - - uid: 13195 + - uid: 13194 components: - rot: -1.5707963267948966 rad pos: 38.5,-43.5 parent: 2 type: Transform - - uid: 13196 + - uid: 13195 components: - rot: -1.5707963267948966 rad pos: 39.5,-43.5 parent: 2 type: Transform - - uid: 13197 + - uid: 13196 components: - rot: -1.5707963267948966 rad pos: 40.5,-43.5 parent: 2 type: Transform - - uid: 13198 + - uid: 13197 components: - rot: -1.5707963267948966 rad pos: 41.5,-43.5 parent: 2 type: Transform - - uid: 13199 + - uid: 13198 components: - rot: -1.5707963267948966 rad pos: 35.5,1.5 parent: 2 type: Transform - - uid: 13200 + - uid: 13199 components: - rot: -1.5707963267948966 rad pos: 36.5,1.5 parent: 2 type: Transform - - uid: 13201 + - uid: 13200 components: - rot: -1.5707963267948966 rad pos: 37.5,1.5 parent: 2 type: Transform - - uid: 13202 + - uid: 13201 components: - rot: -1.5707963267948966 rad pos: 38.5,1.5 parent: 2 type: Transform - - uid: 13203 + - uid: 13202 components: - rot: -1.5707963267948966 rad pos: 39.5,1.5 parent: 2 type: Transform - - uid: 13204 + - uid: 13203 components: - rot: -1.5707963267948966 rad pos: 17.5,17.5 parent: 2 type: Transform - - uid: 13205 + - uid: 13204 components: - rot: -1.5707963267948966 rad pos: 18.5,17.5 parent: 2 type: Transform - - uid: 13206 + - uid: 13205 components: - rot: -1.5707963267948966 rad pos: 16.5,17.5 parent: 2 type: Transform - - uid: 13207 + - uid: 13206 components: - pos: 15.5,18.5 parent: 2 type: Transform - - uid: 13208 + - uid: 13207 components: - rot: 1.5707963267948966 rad pos: -10.5,0.5 parent: 2 type: Transform - - uid: 13209 + - uid: 13208 components: - rot: 1.5707963267948966 rad pos: -11.5,0.5 parent: 2 type: Transform - - uid: 13210 + - uid: 13209 components: - rot: 1.5707963267948966 rad pos: -12.5,0.5 parent: 2 type: Transform - - uid: 13211 + - uid: 13210 components: - rot: 3.141592653589793 rad pos: 15.5,-34.5 parent: 2 type: Transform - - uid: 13212 + - uid: 13211 components: - rot: 3.141592653589793 rad pos: -3.5,-21.5 parent: 2 type: Transform - - uid: 13213 + - uid: 13212 components: - rot: -1.5707963267948966 rad pos: 12.5,-25.5 parent: 2 type: Transform - - uid: 13214 + - uid: 13213 components: - rot: -1.5707963267948966 rad pos: 13.5,-25.5 parent: 2 type: Transform - - uid: 13215 + - uid: 13214 components: - rot: 3.141592653589793 rad pos: -4.5,-8.5 parent: 2 type: Transform - - uid: 13216 + - uid: 13215 components: - rot: -1.5707963267948966 rad pos: 0.5,-25.5 parent: 2 type: Transform - - uid: 13217 + - uid: 13216 components: - rot: 1.5707963267948966 rad pos: -8.5,-9.5 parent: 2 type: Transform - - uid: 13218 + - uid: 13217 components: - rot: 1.5707963267948966 rad pos: -11.5,-9.5 parent: 2 type: Transform - - uid: 13219 + - uid: 13218 components: - rot: 1.5707963267948966 rad pos: -10.5,-9.5 parent: 2 type: Transform - - uid: 13220 + - uid: 13219 components: - rot: 1.5707963267948966 rad pos: -12.5,-9.5 parent: 2 type: Transform - - uid: 13221 + - uid: 13220 components: - pos: -4.5,-0.5 parent: 2 type: Transform - - uid: 13222 + - uid: 13221 components: - rot: 3.141592653589793 rad pos: 15.5,-32.5 parent: 2 type: Transform - - uid: 13223 + - uid: 13222 components: - rot: 3.141592653589793 rad pos: -4.5,-11.5 parent: 2 type: Transform - - uid: 13224 + - uid: 13223 components: - rot: 3.141592653589793 rad pos: 15.5,-29.5 parent: 2 type: Transform - - uid: 13225 + - uid: 13224 components: - rot: 3.141592653589793 rad pos: 15.5,-36.5 parent: 2 type: Transform - - uid: 13226 + - uid: 13225 components: - rot: 3.141592653589793 rad pos: 15.5,-35.5 parent: 2 type: Transform - - uid: 13227 + - uid: 13226 components: - rot: 3.141592653589793 rad pos: 15.5,-27.5 parent: 2 type: Transform - - uid: 13228 + - uid: 13227 components: - rot: -1.5707963267948966 rad pos: 9.5,-25.5 parent: 2 type: Transform - - uid: 13229 + - uid: 13228 components: - rot: -1.5707963267948966 rad pos: 14.5,-25.5 parent: 2 type: Transform - - uid: 13230 + - uid: 13229 components: - rot: 3.141592653589793 rad pos: -3.5,-14.5 parent: 2 type: Transform - - uid: 13231 + - uid: 13230 components: - rot: 3.141592653589793 rad pos: -3.5,-17.5 parent: 2 type: Transform - - uid: 13232 + - uid: 13231 components: - rot: 3.141592653589793 rad pos: -3.5,-15.5 parent: 2 type: Transform - - uid: 13233 + - uid: 13232 components: - pos: 17.5,-47.5 parent: 2 type: Transform - - uid: 13234 + - uid: 13233 components: - rot: 1.5707963267948966 rad pos: 33.5,16.5 parent: 2 type: Transform - - uid: 13235 + - uid: 13234 components: - rot: 1.5707963267948966 rad pos: 32.5,16.5 parent: 2 type: Transform - - uid: 13236 + - uid: 13235 components: - rot: 1.5707963267948966 rad pos: 31.5,16.5 parent: 2 type: Transform - - uid: 13237 + - uid: 13236 components: - rot: 1.5707963267948966 rad pos: 30.5,16.5 parent: 2 type: Transform - - uid: 13238 + - uid: 13237 components: - rot: 3.141592653589793 rad pos: 41.5,5.5 parent: 2 type: Transform - - uid: 13239 + - uid: 13238 components: - rot: 3.141592653589793 rad pos: 41.5,4.5 parent: 2 type: Transform - - uid: 13240 + - uid: 13239 components: - rot: 3.141592653589793 rad pos: 41.5,3.5 parent: 2 type: Transform - - uid: 13241 + - uid: 13240 components: - rot: 3.141592653589793 rad pos: 41.5,2.5 parent: 2 type: Transform - - uid: 13242 + - uid: 13241 components: - rot: -1.5707963267948966 rad pos: 40.5,1.5 parent: 2 type: Transform - - uid: 13243 + - uid: 13242 components: - rot: -1.5707963267948966 rad pos: 42.5,1.5 parent: 2 type: Transform - - uid: 13244 + - uid: 13243 components: - rot: -1.5707963267948966 rad pos: 43.5,1.5 parent: 2 type: Transform - - uid: 13245 + - uid: 13244 components: - rot: -1.5707963267948966 rad pos: 44.5,1.5 parent: 2 type: Transform - - uid: 13246 + - uid: 13245 components: - rot: -1.5707963267948966 rad pos: 45.5,1.5 parent: 2 type: Transform - - uid: 13247 + - uid: 13246 components: - rot: -1.5707963267948966 rad pos: 46.5,1.5 parent: 2 type: Transform - - uid: 13248 + - uid: 13247 components: - rot: -1.5707963267948966 rad pos: 47.5,1.5 parent: 2 type: Transform - - uid: 13249 + - uid: 13248 components: - rot: -1.5707963267948966 rad pos: 48.5,1.5 parent: 2 type: Transform - - uid: 13250 + - uid: 13249 components: - rot: -1.5707963267948966 rad pos: 49.5,1.5 parent: 2 type: Transform - - uid: 13251 + - uid: 13250 components: - rot: -1.5707963267948966 rad pos: 50.5,1.5 parent: 2 type: Transform - - uid: 13252 + - uid: 13251 components: - rot: -1.5707963267948966 rad pos: 51.5,1.5 parent: 2 type: Transform - - uid: 13253 + - uid: 13252 components: - rot: 3.141592653589793 rad pos: 52.5,2.5 parent: 2 type: Transform - - uid: 13254 + - uid: 13253 components: - rot: 3.141592653589793 rad pos: 52.5,0.5 parent: 2 type: Transform - - uid: 13255 + - uid: 13254 components: - rot: 3.141592653589793 rad pos: 52.5,-0.5 parent: 2 type: Transform - - uid: 13256 + - uid: 13255 components: - rot: 3.141592653589793 rad pos: 52.5,-1.5 parent: 2 type: Transform - - uid: 13257 + - uid: 13256 components: - rot: 3.141592653589793 rad pos: 52.5,-2.5 parent: 2 type: Transform - - uid: 13258 + - uid: 13257 components: - rot: 3.141592653589793 rad pos: 52.5,-3.5 parent: 2 type: Transform - - uid: 13259 + - uid: 13258 components: - rot: 3.141592653589793 rad pos: 52.5,-4.5 parent: 2 type: Transform - - uid: 13260 + - uid: 13259 components: - rot: 3.141592653589793 rad pos: 52.5,-5.5 parent: 2 type: Transform - - uid: 13261 + - uid: 13260 components: - rot: 3.141592653589793 rad pos: 52.5,-6.5 parent: 2 type: Transform - - uid: 13262 + - uid: 13261 components: - rot: 3.141592653589793 rad pos: 52.5,-7.5 parent: 2 type: Transform - - uid: 13263 + - uid: 13262 components: - rot: 3.141592653589793 rad pos: 52.5,-8.5 parent: 2 type: Transform - - uid: 13264 + - uid: 13263 components: - pos: 25.5,-47.5 parent: 2 type: Transform - - uid: 13265 + - uid: 13264 components: - pos: 25.5,-48.5 parent: 2 type: Transform - - uid: 13266 + - uid: 13265 components: - pos: 25.5,-49.5 parent: 2 type: Transform - - uid: 13267 + - uid: 13266 components: - pos: 25.5,-50.5 parent: 2 type: Transform - - uid: 13268 + - uid: 13267 components: - pos: 25.5,-51.5 parent: 2 type: Transform - - uid: 13269 + - uid: 13268 components: - pos: 25.5,-52.5 parent: 2 type: Transform - - uid: 13270 + - uid: 13269 components: - rot: 3.141592653589793 rad pos: 15.5,-37.5 parent: 2 type: Transform - - uid: 13271 + - uid: 13270 components: - pos: 25.5,-54.5 parent: 2 type: Transform - - uid: 13272 + - uid: 13271 components: - pos: 25.5,-55.5 parent: 2 type: Transform - - uid: 13273 + - uid: 13272 components: - pos: 25.5,-56.5 parent: 2 type: Transform - - uid: 13274 + - uid: 13273 components: - pos: 25.5,-57.5 parent: 2 type: Transform - - uid: 13275 + - uid: 13274 components: - pos: 25.5,-58.5 parent: 2 type: Transform - - uid: 13276 + - uid: 13275 components: - rot: 3.141592653589793 rad pos: -3.5,-16.5 parent: 2 type: Transform - - uid: 13277 + - uid: 13276 components: - rot: 3.141592653589793 rad pos: 15.5,-43.5 parent: 2 type: Transform - - uid: 13278 + - uid: 13277 components: - pos: 52.5,-9.5 parent: 2 type: Transform - - uid: 13279 + - uid: 13278 components: - pos: 52.5,-10.5 parent: 2 type: Transform - - uid: 13280 + - uid: 13279 components: - pos: 52.5,-11.5 parent: 2 type: Transform - - uid: 13281 + - uid: 13280 components: - pos: 52.5,-12.5 parent: 2 type: Transform - - uid: 13282 + - uid: 13281 components: - rot: -1.5707963267948966 rad pos: 53.5,-13.5 parent: 2 type: Transform - - uid: 13283 + - uid: 13282 components: - rot: -1.5707963267948966 rad pos: 42.5,-43.5 parent: 2 type: Transform - - uid: 13284 + - uid: 13283 components: - rot: -1.5707963267948966 rad pos: 43.5,-43.5 parent: 2 type: Transform - - uid: 13285 + - uid: 13284 components: - rot: -1.5707963267948966 rad pos: 44.5,-43.5 parent: 2 type: Transform - - uid: 13286 + - uid: 13285 components: - rot: -1.5707963267948966 rad pos: 45.5,-43.5 parent: 2 type: Transform - - uid: 13287 + - uid: 13286 components: - rot: -1.5707963267948966 rad pos: 47.5,-43.5 parent: 2 type: Transform - - uid: 13288 + - uid: 13287 components: - rot: -1.5707963267948966 rad pos: 48.5,-43.5 parent: 2 type: Transform - - uid: 13289 + - uid: 13288 components: - pos: 49.5,-44.5 parent: 2 type: Transform - - uid: 13290 + - uid: 13289 components: - rot: 3.141592653589793 rad pos: 49.5,-46.5 parent: 2 type: Transform - - uid: 13291 + - uid: 13290 components: - rot: 1.5707963267948966 rad pos: 50.5,-47.5 parent: 2 type: Transform - - uid: 13292 + - uid: 13291 components: - pos: 49.5,-48.5 parent: 2 type: Transform - - uid: 13293 + - uid: 13292 components: - pos: 49.5,-49.5 parent: 2 type: Transform - - uid: 13294 + - uid: 13293 components: - rot: -1.5707963267948966 rad pos: 50.5,-45.5 parent: 2 type: Transform - - uid: 13295 + - uid: 13294 components: - rot: -1.5707963267948966 rad pos: 51.5,-45.5 parent: 2 type: Transform - - uid: 13296 + - uid: 13295 components: - rot: -1.5707963267948966 rad pos: 52.5,-45.5 parent: 2 type: Transform - - uid: 13297 + - uid: 13296 components: - rot: -1.5707963267948966 rad pos: 53.5,-45.5 parent: 2 type: Transform - - uid: 13298 + - uid: 13297 components: - rot: -1.5707963267948966 rad pos: 54.5,-45.5 parent: 2 type: Transform - - uid: 13299 + - uid: 13298 components: - rot: -1.5707963267948966 rad pos: 55.5,-45.5 parent: 2 type: Transform - - uid: 13300 + - uid: 13299 components: - rot: -1.5707963267948966 rad pos: 56.5,-45.5 parent: 2 type: Transform - - uid: 13301 + - uid: 13300 components: - rot: -1.5707963267948966 rad pos: 57.5,-45.5 parent: 2 type: Transform - - uid: 13302 + - uid: 13301 components: - rot: -1.5707963267948966 rad pos: 58.5,-45.5 parent: 2 type: Transform - - uid: 13303 + - uid: 13302 components: - rot: -1.5707963267948966 rad pos: 59.5,-45.5 parent: 2 type: Transform - - uid: 13304 + - uid: 13303 components: - rot: -1.5707963267948966 rad pos: 60.5,-45.5 parent: 2 type: Transform - - uid: 13305 + - uid: 13304 components: - rot: -1.5707963267948966 rad pos: 61.5,-45.5 parent: 2 type: Transform - - uid: 13306 + - uid: 13305 components: - rot: -1.5707963267948966 rad pos: 62.5,-45.5 parent: 2 type: Transform - - uid: 13307 + - uid: 13306 components: - rot: -1.5707963267948966 rad pos: 63.5,-45.5 parent: 2 type: Transform - - uid: 13308 + - uid: 13307 components: - rot: 3.141592653589793 rad pos: 46.5,-42.5 parent: 2 type: Transform - - uid: 13309 + - uid: 13308 components: - rot: 3.141592653589793 rad pos: 46.5,-41.5 parent: 2 type: Transform - - uid: 13310 + - uid: 13309 components: - rot: 3.141592653589793 rad pos: 46.5,-40.5 parent: 2 type: Transform - - uid: 13311 + - uid: 13310 components: - rot: 3.141592653589793 rad pos: 46.5,-39.5 parent: 2 type: Transform - - uid: 13312 + - uid: 13311 components: - rot: 3.141592653589793 rad pos: 46.5,-38.5 parent: 2 type: Transform - - uid: 13313 + - uid: 13312 components: - rot: 3.141592653589793 rad pos: 46.5,-37.5 parent: 2 type: Transform - - uid: 13314 + - uid: 13313 components: - rot: 3.141592653589793 rad pos: 46.5,-36.5 parent: 2 type: Transform - - uid: 13315 + - uid: 13314 components: - rot: -1.5707963267948966 rad pos: 64.5,-45.5 parent: 2 type: Transform - - uid: 13316 + - uid: 13315 components: - rot: -1.5707963267948966 rad pos: 65.5,-45.5 parent: 2 type: Transform - - uid: 13317 + - uid: 13316 components: - rot: -1.5707963267948966 rad pos: 66.5,-45.5 parent: 2 type: Transform - - uid: 13318 + - uid: 13317 components: - pos: 67.5,-46.5 parent: 2 type: Transform - - uid: 13319 + - uid: 13318 components: - pos: 67.5,-48.5 parent: 2 type: Transform - - uid: 13320 + - uid: 13319 components: - pos: 49.5,-56.5 parent: 2 type: Transform - - uid: 13321 + - uid: 13320 components: - pos: 49.5,-57.5 parent: 2 type: Transform - - uid: 13322 + - uid: 13321 components: - pos: 49.5,-58.5 parent: 2 type: Transform - - uid: 13323 + - uid: 13322 components: - pos: 49.5,-59.5 parent: 2 type: Transform - - uid: 13324 + - uid: 13323 components: - rot: 3.141592653589793 rad pos: -3.5,-13.5 parent: 2 type: Transform - - uid: 13325 + - uid: 13324 components: - pos: 29.5,-61.5 parent: 2 type: Transform - - uid: 13326 + - uid: 13325 components: - rot: 3.141592653589793 rad pos: 25.5,-59.5 parent: 2 type: Transform - - uid: 13327 + - uid: 13326 components: - rot: 1.5707963267948966 rad pos: 26.5,-60.5 parent: 2 type: Transform - - uid: 13328 + - uid: 13327 components: - rot: 1.5707963267948966 rad pos: 27.5,-60.5 parent: 2 type: Transform - - uid: 13329 + - uid: 13328 components: - rot: 1.5707963267948966 rad pos: 28.5,-60.5 parent: 2 type: Transform - - uid: 13330 + - uid: 13329 components: - rot: 1.5707963267948966 rad pos: 30.5,-60.5 parent: 2 type: Transform - - uid: 13331 + - uid: 13330 components: - rot: 1.5707963267948966 rad pos: 31.5,-60.5 parent: 2 type: Transform - - uid: 13332 + - uid: 13331 components: - rot: 1.5707963267948966 rad pos: 32.5,-60.5 parent: 2 type: Transform - - uid: 13333 + - uid: 13332 components: - rot: 1.5707963267948966 rad pos: 33.5,-60.5 parent: 2 type: Transform - - uid: 13334 + - uid: 13333 components: - rot: 1.5707963267948966 rad pos: 34.5,-60.5 parent: 2 type: Transform - - uid: 13335 + - uid: 13334 components: - rot: 1.5707963267948966 rad pos: 35.5,-60.5 parent: 2 type: Transform - - uid: 13336 + - uid: 13335 components: - rot: 1.5707963267948966 rad pos: 36.5,-60.5 parent: 2 type: Transform - - uid: 13337 + - uid: 13336 components: - rot: 3.141592653589793 rad pos: -23.5,-14.5 parent: 2 type: Transform - - uid: 13338 + - uid: 13337 components: - rot: 1.5707963267948966 rad pos: -22.5,-13.5 parent: 2 type: Transform - - uid: 13339 + - uid: 13338 components: - rot: 1.5707963267948966 rad pos: -21.5,-13.5 parent: 2 type: Transform - - uid: 13340 + - uid: 13339 components: - rot: 1.5707963267948966 rad pos: -20.5,-13.5 parent: 2 type: Transform - - uid: 13341 + - uid: 13340 components: - pos: -19.5,-14.5 parent: 2 type: Transform - - uid: 13342 + - uid: 13341 components: - pos: -19.5,-15.5 parent: 2 type: Transform - - uid: 13343 + - uid: 13342 components: - pos: -19.5,-16.5 parent: 2 type: Transform - - uid: 13344 + - uid: 13343 components: - pos: -19.5,-17.5 parent: 2 type: Transform - - uid: 13345 + - uid: 13344 components: - pos: -19.5,-18.5 parent: 2 type: Transform - - uid: 13346 + - uid: 13345 components: - pos: -19.5,-19.5 parent: 2 type: Transform - - uid: 13347 + - uid: 13346 components: - pos: -19.5,-20.5 parent: 2 type: Transform - - uid: 13348 + - uid: 13347 components: - pos: -19.5,-21.5 parent: 2 type: Transform - - uid: 13349 + - uid: 13348 components: - pos: -19.5,-22.5 parent: 2 type: Transform - - uid: 13350 + - uid: 13349 components: - pos: -19.5,-23.5 parent: 2 type: Transform - - uid: 13351 + - uid: 13350 components: - pos: -19.5,-24.5 parent: 2 type: Transform - - uid: 13352 + - uid: 13351 components: - pos: -19.5,-25.5 parent: 2 type: Transform - - uid: 13353 + - uid: 13352 components: - pos: -19.5,-26.5 parent: 2 type: Transform - - uid: 13354 + - uid: 13353 components: - rot: 1.5707963267948966 rad pos: -18.5,-27.5 parent: 2 type: Transform - - uid: 13355 + - uid: 13354 components: - pos: -19.5,-28.5 parent: 2 type: Transform - - uid: 13356 + - uid: 13355 components: - pos: -19.5,-29.5 parent: 2 type: Transform - - uid: 13357 + - uid: 13356 components: - pos: -19.5,-30.5 parent: 2 type: Transform - - uid: 13358 + - uid: 13357 components: - pos: -19.5,-31.5 parent: 2 type: Transform - - uid: 13359 + - uid: 13358 components: - pos: -19.5,-32.5 parent: 2 type: Transform - - uid: 13360 + - uid: 13359 components: - rot: -1.5707963267948966 rad pos: -24.5,-13.5 parent: 2 type: Transform - - uid: 13361 + - uid: 13360 components: - rot: -1.5707963267948966 rad pos: -25.5,-13.5 parent: 2 type: Transform - - uid: 13362 + - uid: 13361 components: - rot: -1.5707963267948966 rad pos: -26.5,-13.5 parent: 2 type: Transform - - uid: 13363 + - uid: 13362 components: - rot: -1.5707963267948966 rad pos: -27.5,-13.5 parent: 2 type: Transform - - uid: 13364 + - uid: 13363 components: - rot: -1.5707963267948966 rad pos: -28.5,-13.5 parent: 2 type: Transform - - uid: 13365 + - uid: 13364 components: - rot: -1.5707963267948966 rad pos: -29.5,-13.5 parent: 2 type: Transform - - uid: 13366 + - uid: 13365 components: - rot: -1.5707963267948966 rad pos: -30.5,-13.5 parent: 2 type: Transform - - uid: 13367 + - uid: 13366 components: - rot: -1.5707963267948966 rad pos: -31.5,-13.5 parent: 2 type: Transform - - uid: 13368 + - uid: 13367 components: - rot: 3.141592653589793 rad pos: 15.5,-39.5 parent: 2 type: Transform - - uid: 13369 + - uid: 13368 components: - rot: 1.5707963267948966 rad pos: 37.5,-60.5 parent: 2 type: Transform - - uid: 13370 + - uid: 13369 components: - rot: 1.5707963267948966 rad pos: 38.5,-60.5 parent: 2 type: Transform - - uid: 13371 + - uid: 13370 components: - pos: 39.5,-61.5 parent: 2 type: Transform - - uid: 13372 + - uid: 13371 components: - pos: 39.5,-62.5 parent: 2 type: Transform - - uid: 13373 + - uid: 13372 components: - pos: 39.5,-63.5 parent: 2 type: Transform - - uid: 13374 + - uid: 13373 components: - pos: 39.5,-64.5 parent: 2 type: Transform - - uid: 13375 + - uid: 13374 components: - pos: 39.5,-65.5 parent: 2 type: Transform - - uid: 13376 + - uid: 13375 components: - pos: 39.5,-66.5 parent: 2 type: Transform - - uid: 13377 + - uid: 13376 components: - pos: 39.5,-67.5 parent: 2 type: Transform - - uid: 13378 + - uid: 13377 components: - pos: 39.5,-68.5 parent: 2 type: Transform - - uid: 13379 + - uid: 13378 components: - rot: 3.141592653589793 rad pos: -19.5,-33.5 parent: 2 type: Transform - - uid: 13380 + - uid: 13379 components: - rot: 3.141592653589793 rad pos: -19.5,-34.5 parent: 2 type: Transform - - uid: 13381 + - uid: 13380 components: - rot: 3.141592653589793 rad pos: -19.5,-35.5 parent: 2 type: Transform - - uid: 13382 + - uid: 13381 components: - rot: 3.141592653589793 rad pos: -19.5,-36.5 parent: 2 type: Transform - - uid: 13383 + - uid: 13382 components: - rot: 3.141592653589793 rad pos: -19.5,-37.5 parent: 2 type: Transform - - uid: 13384 + - uid: 13383 components: - rot: 3.141592653589793 rad pos: -19.5,-38.5 parent: 2 type: Transform - - uid: 13385 + - uid: 13384 components: - rot: 3.141592653589793 rad pos: -19.5,-39.5 parent: 2 type: Transform - - uid: 13386 + - uid: 13385 components: - rot: 3.141592653589793 rad pos: -19.5,-40.5 parent: 2 type: Transform - - uid: 13387 + - uid: 13386 components: - rot: 3.141592653589793 rad pos: -19.5,-41.5 parent: 2 type: Transform - - uid: 13388 + - uid: 13387 components: - rot: 3.141592653589793 rad pos: -19.5,-42.5 parent: 2 type: Transform - - uid: 13389 + - uid: 13388 components: - pos: 30.5,-80.5 parent: 2 type: Transform - - uid: 13390 + - uid: 13389 components: - pos: 30.5,-78.5 parent: 2 type: Transform - - uid: 13391 + - uid: 13390 components: - pos: 30.5,-79.5 parent: 2 type: Transform - - uid: 13392 + - uid: 13391 components: - pos: 39.5,-69.5 parent: 2 type: Transform - - uid: 13393 + - uid: 13392 components: - pos: 39.5,-70.5 parent: 2 type: Transform - - uid: 13394 + - uid: 13393 components: - pos: 39.5,-71.5 parent: 2 type: Transform - - uid: 13395 + - uid: 13394 components: - pos: 39.5,-72.5 parent: 2 type: Transform - - uid: 13396 + - uid: 13395 components: - rot: 1.5707963267948966 rad pos: 25.5,-73.5 parent: 2 type: Transform - - uid: 13397 + - uid: 13396 components: - pos: 30.5,-83.5 parent: 2 type: Transform - - uid: 13398 + - uid: 13397 components: - pos: 30.5,-84.5 parent: 2 type: Transform - - uid: 13399 + - uid: 13398 components: - rot: 1.5707963267948966 rad pos: 29.5,-86.5 parent: 2 type: Transform - - uid: 13400 + - uid: 13399 components: - pos: 30.5,-85.5 parent: 2 type: Transform - - uid: 13401 + - uid: 13400 components: - pos: -13.5,1.5 parent: 2 type: Transform - - uid: 13402 + - uid: 13401 components: - pos: -13.5,-0.5 parent: 2 type: Transform - - uid: 13403 + - uid: 13402 components: - pos: -13.5,-1.5 parent: 2 type: Transform - - uid: 13404 + - uid: 13403 components: - pos: -13.5,-2.5 parent: 2 type: Transform - - uid: 13405 + - uid: 13404 components: - pos: -13.5,-3.5 parent: 2 type: Transform - - uid: 13406 + - uid: 13405 components: - pos: -13.5,-4.5 parent: 2 type: Transform - - uid: 13407 + - uid: 13406 components: - pos: -13.5,-5.5 parent: 2 type: Transform - - uid: 13408 + - uid: 13407 components: - pos: -13.5,2.5 parent: 2 type: Transform - - uid: 13409 + - uid: 13408 components: - pos: -13.5,3.5 parent: 2 type: Transform - - uid: 13410 + - uid: 13409 components: - pos: -13.5,4.5 parent: 2 type: Transform - - uid: 13411 + - uid: 13410 components: - pos: -13.5,6.5 parent: 2 type: Transform - - uid: 13412 + - uid: 13411 components: - pos: -13.5,7.5 parent: 2 type: Transform - - uid: 13413 + - uid: 13412 components: - rot: -1.5707963267948966 rad pos: -14.5,-6.5 parent: 2 type: Transform - - uid: 13414 + - uid: 13413 components: - rot: -1.5707963267948966 rad pos: -15.5,-6.5 parent: 2 type: Transform - - uid: 13415 + - uid: 13414 components: - rot: -1.5707963267948966 rad pos: -16.5,-6.5 parent: 2 type: Transform - - uid: 13416 + - uid: 13415 components: - rot: -1.5707963267948966 rad pos: -17.5,-6.5 parent: 2 type: Transform - - uid: 13417 + - uid: 13416 components: - rot: -1.5707963267948966 rad pos: -18.5,-6.5 parent: 2 type: Transform - - uid: 13418 + - uid: 13417 components: - pos: -19.5,-12.5 parent: 2 type: Transform - - uid: 13419 + - uid: 13418 components: - pos: -19.5,-11.5 parent: 2 type: Transform - - uid: 13420 + - uid: 13419 components: - pos: -19.5,-10.5 parent: 2 type: Transform - - uid: 13421 + - uid: 13420 components: - pos: -19.5,-9.5 parent: 2 type: Transform - - uid: 13422 + - uid: 13421 components: - pos: -19.5,-8.5 parent: 2 type: Transform - - uid: 13423 + - uid: 13422 components: - pos: -19.5,-7.5 parent: 2 type: Transform - - uid: 13424 + - uid: 13423 components: - rot: -1.5707963267948966 rad pos: -14.5,8.5 parent: 2 type: Transform - - uid: 13425 + - uid: 13424 components: - rot: -1.5707963267948966 rad pos: -15.5,8.5 parent: 2 type: Transform - - uid: 13426 + - uid: 13425 components: - rot: -1.5707963267948966 rad pos: -16.5,8.5 parent: 2 type: Transform - - uid: 13427 + - uid: 13426 components: - rot: -1.5707963267948966 rad pos: -17.5,8.5 parent: 2 type: Transform - - uid: 13428 + - uid: 13427 components: - rot: -1.5707963267948966 rad pos: -18.5,8.5 parent: 2 type: Transform - - uid: 13429 + - uid: 13428 components: - rot: 3.141592653589793 rad pos: -19.5,7.5 parent: 2 type: Transform - - uid: 13430 + - uid: 13429 components: - rot: -1.5707963267948966 rad pos: -20.5,6.5 parent: 2 type: Transform - - uid: 13431 + - uid: 13430 components: - rot: -1.5707963267948966 rad pos: -21.5,6.5 parent: 2 type: Transform - - uid: 13432 + - uid: 13431 components: - rot: -1.5707963267948966 rad pos: -22.5,6.5 parent: 2 type: Transform - - uid: 13433 + - uid: 13432 components: - rot: -1.5707963267948966 rad pos: -23.5,6.5 parent: 2 type: Transform - - uid: 13434 + - uid: 13433 components: - rot: -1.5707963267948966 rad pos: -24.5,6.5 parent: 2 type: Transform - - uid: 13435 + - uid: 13434 components: - rot: -1.5707963267948966 rad pos: -20.5,-6.5 parent: 2 type: Transform - - uid: 13436 + - uid: 13435 components: - rot: -1.5707963267948966 rad pos: -21.5,-6.5 parent: 2 type: Transform - - uid: 13437 + - uid: 13436 components: - rot: -1.5707963267948966 rad pos: -22.5,-6.5 parent: 2 type: Transform - - uid: 13438 + - uid: 13437 components: - rot: -1.5707963267948966 rad pos: -23.5,-6.5 parent: 2 type: Transform - - uid: 13439 + - uid: 13438 components: - rot: -1.5707963267948966 rad pos: -24.5,-6.5 parent: 2 type: Transform - - uid: 13440 + - uid: 13439 components: - pos: -25.5,5.5 parent: 2 type: Transform - - uid: 13441 + - uid: 13440 components: - pos: -25.5,4.5 parent: 2 type: Transform - - uid: 13442 + - uid: 13441 components: - pos: -25.5,3.5 parent: 2 type: Transform - - uid: 13443 + - uid: 13442 components: - pos: -25.5,2.5 parent: 2 type: Transform - - uid: 13444 + - uid: 13443 components: - pos: -25.5,1.5 parent: 2 type: Transform - - uid: 13445 + - uid: 13444 components: - pos: -25.5,0.5 parent: 2 type: Transform - - uid: 13446 + - uid: 13445 components: - pos: -25.5,-1.5 parent: 2 type: Transform - - uid: 13447 + - uid: 13446 components: - pos: -25.5,-2.5 parent: 2 type: Transform - - uid: 13448 + - uid: 13447 components: - pos: -25.5,-3.5 parent: 2 type: Transform - - uid: 13449 + - uid: 13448 components: - pos: -25.5,-4.5 parent: 2 type: Transform - - uid: 13450 + - uid: 13449 components: - pos: -25.5,-5.5 parent: 2 type: Transform - - uid: 13451 + - uid: 13450 components: - pos: -19.5,9.5 parent: 2 type: Transform - - uid: 13452 + - uid: 13451 components: - pos: -19.5,10.5 parent: 2 type: Transform - - uid: 13453 + - uid: 13452 components: - pos: -19.5,11.5 parent: 2 type: Transform - - uid: 13454 + - uid: 13453 components: - pos: -19.5,12.5 parent: 2 type: Transform - - uid: 13455 + - uid: 13454 components: - rot: 1.5707963267948966 rad pos: -26.5,6.5 parent: 2 type: Transform - - uid: 13456 + - uid: 13455 components: - rot: 3.141592653589793 rad pos: -32.5,-12.5 parent: 2 type: Transform - - uid: 13457 + - uid: 13456 components: - rot: 3.141592653589793 rad pos: -32.5,-11.5 parent: 2 type: Transform - - uid: 13458 + - uid: 13457 components: - rot: -1.5707963267948966 rad pos: -33.5,-10.5 parent: 2 type: Transform - - uid: 13459 + - uid: 13458 components: - rot: -1.5707963267948966 rad pos: -34.5,-10.5 parent: 2 type: Transform - - uid: 13460 + - uid: 13459 components: - rot: -1.5707963267948966 rad pos: -35.5,-10.5 parent: 2 type: Transform - - uid: 13461 + - uid: 13460 components: - pos: -36.5,-9.5 parent: 2 type: Transform - - uid: 13462 + - uid: 13461 components: - pos: -36.5,-8.5 parent: 2 type: Transform - - uid: 13463 + - uid: 13462 components: - pos: -36.5,-7.5 parent: 2 type: Transform - - uid: 13464 + - uid: 13463 components: - pos: -36.5,-6.5 parent: 2 type: Transform - - uid: 13465 + - uid: 13464 components: - rot: -1.5707963267948966 rad pos: -37.5,-5.5 parent: 2 type: Transform - - uid: 13466 + - uid: 13465 components: - rot: -1.5707963267948966 rad pos: -26.5,-0.5 parent: 2 type: Transform - - uid: 13467 + - uid: 13466 components: - rot: -1.5707963267948966 rad pos: -27.5,-0.5 parent: 2 type: Transform - - uid: 13468 + - uid: 13467 components: - rot: -1.5707963267948966 rad pos: -28.5,-0.5 parent: 2 type: Transform - - uid: 13469 + - uid: 13468 components: - rot: -1.5707963267948966 rad pos: -29.5,-0.5 parent: 2 type: Transform - - uid: 13470 + - uid: 13469 components: - rot: -1.5707963267948966 rad pos: -30.5,-0.5 parent: 2 type: Transform - - uid: 13471 + - uid: 13470 components: - rot: -1.5707963267948966 rad pos: -0.5,-75.5 parent: 2 type: Transform - - uid: 13472 + - uid: 13471 components: - rot: -1.5707963267948966 rad pos: -1.5,-75.5 parent: 2 type: Transform - - uid: 13473 + - uid: 13472 components: - rot: -1.5707963267948966 rad pos: -2.5,-75.5 parent: 2 type: Transform - - uid: 13474 + - uid: 13473 components: - rot: -1.5707963267948966 rad pos: -3.5,-75.5 parent: 2 type: Transform - - uid: 13475 + - uid: 13474 components: - rot: -1.5707963267948966 rad pos: -4.5,-75.5 parent: 2 type: Transform - - uid: 13476 + - uid: 13475 components: - rot: -1.5707963267948966 rad pos: -5.5,-75.5 parent: 2 type: Transform - - uid: 13477 + - uid: 13476 components: - rot: -1.5707963267948966 rad pos: -6.5,-75.5 parent: 2 type: Transform - - uid: 13478 + - uid: 13477 components: - rot: -1.5707963267948966 rad pos: -7.5,-75.5 parent: 2 type: Transform - - uid: 13479 + - uid: 13478 components: - rot: -1.5707963267948966 rad pos: -8.5,-75.5 parent: 2 type: Transform - - uid: 13480 + - uid: 13479 components: - rot: -1.5707963267948966 rad pos: -9.5,-75.5 parent: 2 type: Transform - - uid: 13481 + - uid: 13480 components: - rot: -1.5707963267948966 rad pos: -10.5,-75.5 parent: 2 type: Transform - - uid: 13482 + - uid: 13481 components: - rot: -1.5707963267948966 rad pos: -11.5,-75.5 parent: 2 type: Transform - - uid: 13483 + - uid: 13482 components: - rot: -1.5707963267948966 rad pos: -12.5,-75.5 parent: 2 type: Transform - - uid: 13484 + - uid: 13483 components: - rot: -1.5707963267948966 rad pos: -13.5,-75.5 parent: 2 type: Transform - - uid: 13485 + - uid: 13484 components: - rot: -1.5707963267948966 rad pos: -14.5,-75.5 parent: 2 type: Transform - - uid: 13486 + - uid: 13485 components: - rot: -1.5707963267948966 rad pos: -15.5,-75.5 parent: 2 type: Transform - - uid: 13487 + - uid: 13486 components: - rot: -1.5707963267948966 rad pos: -16.5,-75.5 parent: 2 type: Transform - - uid: 13488 + - uid: 13487 components: - rot: -1.5707963267948966 rad pos: -17.5,-75.5 parent: 2 type: Transform - - uid: 13489 + - uid: 13488 components: - rot: -1.5707963267948966 rad pos: -18.5,-75.5 parent: 2 type: Transform - - uid: 13490 + - uid: 13489 components: - rot: 3.141592653589793 rad pos: -19.5,-76.5 parent: 2 type: Transform - - uid: 13491 + - uid: 13490 components: - rot: 1.5707963267948966 rad pos: -20.5,-77.5 parent: 2 type: Transform - - uid: 13492 + - uid: 13491 components: - rot: 1.5707963267948966 rad pos: -21.5,-77.5 parent: 2 type: Transform - - uid: 13493 + - uid: 13492 components: - rot: 1.5707963267948966 rad pos: -22.5,-77.5 parent: 2 type: Transform - - uid: 13494 + - uid: 13493 components: - rot: 1.5707963267948966 rad pos: -23.5,-77.5 parent: 2 type: Transform - - uid: 13495 + - uid: 13494 components: - rot: 1.5707963267948966 rad pos: -24.5,-77.5 parent: 2 type: Transform - - uid: 13496 + - uid: 13495 components: - rot: 1.5707963267948966 rad pos: -25.5,-77.5 parent: 2 type: Transform - - uid: 13497 + - uid: 13496 components: - rot: 1.5707963267948966 rad pos: -26.5,-77.5 parent: 2 type: Transform - - uid: 13498 + - uid: 13497 components: - rot: 1.5707963267948966 rad pos: -27.5,-77.5 parent: 2 type: Transform - - uid: 13499 + - uid: 13498 components: - rot: 1.5707963267948966 rad pos: -28.5,-77.5 parent: 2 type: Transform - - uid: 13500 + - uid: 13499 components: - rot: 1.5707963267948966 rad pos: -29.5,-77.5 parent: 2 type: Transform - - uid: 13501 + - uid: 13500 components: - rot: 1.5707963267948966 rad pos: -30.5,-77.5 parent: 2 type: Transform - - uid: 13502 + - uid: 13501 components: - rot: 1.5707963267948966 rad pos: -31.5,-77.5 parent: 2 type: Transform - - uid: 13503 + - uid: 13502 components: - rot: 1.5707963267948966 rad pos: -32.5,-77.5 parent: 2 type: Transform - - uid: 13504 + - uid: 13503 components: - rot: 1.5707963267948966 rad pos: -33.5,-77.5 parent: 2 type: Transform - - uid: 13505 + - uid: 13504 components: - rot: 1.5707963267948966 rad pos: -34.5,-77.5 parent: 2 type: Transform - - uid: 13506 + - uid: 13505 components: - rot: 1.5707963267948966 rad pos: -35.5,-77.5 parent: 2 type: Transform - - uid: 13507 + - uid: 13506 components: - pos: -36.5,-78.5 parent: 2 type: Transform - - uid: 13508 + - uid: 13507 components: - pos: -36.5,-79.5 parent: 2 type: Transform - - uid: 13509 + - uid: 13508 components: - rot: 3.141592653589793 rad pos: -19.5,13.5 parent: 2 type: Transform - - uid: 13510 + - uid: 13509 components: - rot: 3.141592653589793 rad pos: -19.5,14.5 parent: 2 type: Transform - - uid: 13511 + - uid: 13510 components: - rot: 3.141592653589793 rad pos: -19.5,15.5 parent: 2 type: Transform - - uid: 13512 + - uid: 13511 components: - rot: 3.141592653589793 rad pos: -19.5,16.5 parent: 2 type: Transform - - uid: 13513 + - uid: 13512 components: - rot: 3.141592653589793 rad pos: -19.5,17.5 parent: 2 type: Transform - - uid: 13514 + - uid: 13513 components: - rot: 3.141592653589793 rad pos: -19.5,18.5 parent: 2 type: Transform - - uid: 13515 + - uid: 13514 components: - rot: 3.141592653589793 rad pos: -19.5,19.5 parent: 2 type: Transform - - uid: 13516 + - uid: 13515 components: - rot: 3.141592653589793 rad pos: -19.5,20.5 parent: 2 type: Transform - - uid: 13517 + - uid: 13516 components: - rot: 3.141592653589793 rad pos: -19.5,21.5 parent: 2 type: Transform - - uid: 13518 + - uid: 13517 components: - rot: 3.141592653589793 rad pos: -19.5,22.5 parent: 2 type: Transform - - uid: 13519 + - uid: 13518 components: - rot: -1.5707963267948966 rad pos: -20.5,23.5 parent: 2 type: Transform - - uid: 13520 + - uid: 13519 components: - rot: -1.5707963267948966 rad pos: -21.5,23.5 parent: 2 type: Transform - - uid: 13521 + - uid: 13520 components: - rot: 3.141592653589793 rad pos: -22.5,24.5 parent: 2 type: Transform - - uid: 13522 + - uid: 13521 components: - rot: -1.5707963267948966 rad pos: -41.5,19.5 parent: 2 type: Transform - - uid: 13523 + - uid: 13522 components: - rot: -1.5707963267948966 rad pos: -35.5,19.5 parent: 2 type: Transform - - uid: 13524 + - uid: 13523 components: - rot: 1.5707963267948966 rad pos: -23.5,23.5 parent: 2 type: Transform - - uid: 13525 + - uid: 13524 components: - rot: 1.5707963267948966 rad pos: -24.5,23.5 parent: 2 type: Transform - - uid: 13526 + - uid: 13525 components: - rot: 1.5707963267948966 rad pos: -25.5,23.5 parent: 2 type: Transform - - uid: 13527 + - uid: 13526 components: - rot: 1.5707963267948966 rad pos: -26.5,23.5 parent: 2 type: Transform - - uid: 13528 + - uid: 13527 components: - rot: 1.5707963267948966 rad pos: -27.5,23.5 parent: 2 type: Transform - - uid: 13529 + - uid: 13528 components: - rot: 1.5707963267948966 rad pos: -28.5,23.5 parent: 2 type: Transform - - uid: 13530 + - uid: 13529 components: - rot: 1.5707963267948966 rad pos: -29.5,23.5 parent: 2 type: Transform - - uid: 13531 + - uid: 13530 components: - rot: 1.5707963267948966 rad pos: -30.5,23.5 parent: 2 type: Transform - - uid: 13532 + - uid: 13531 components: - rot: 1.5707963267948966 rad pos: -31.5,23.5 parent: 2 type: Transform - - uid: 13533 + - uid: 13532 components: - rot: 1.5707963267948966 rad pos: -32.5,23.5 parent: 2 type: Transform - - uid: 13534 + - uid: 13533 components: - rot: 1.5707963267948966 rad pos: -33.5,23.5 parent: 2 type: Transform - - uid: 13535 + - uid: 13534 components: - rot: 1.5707963267948966 rad pos: -34.5,23.5 parent: 2 type: Transform - - uid: 13536 + - uid: 13535 components: - rot: 1.5707963267948966 rad pos: -35.5,23.5 parent: 2 type: Transform - - uid: 13537 + - uid: 13536 components: - rot: 1.5707963267948966 rad pos: -36.5,23.5 parent: 2 type: Transform - - uid: 13538 + - uid: 13537 components: - rot: 1.5707963267948966 rad pos: -37.5,23.5 parent: 2 type: Transform - - uid: 13539 + - uid: 13538 components: - rot: 1.5707963267948966 rad pos: -38.5,23.5 parent: 2 type: Transform - - uid: 13540 + - uid: 13539 components: - rot: 3.141592653589793 rad pos: -46.5,10.5 parent: 2 type: Transform - - uid: 13541 + - uid: 13540 components: - rot: 1.5707963267948966 rad pos: -40.5,23.5 parent: 2 type: Transform - - uid: 13542 + - uid: 13541 components: - rot: 1.5707963267948966 rad pos: -41.5,23.5 parent: 2 type: Transform - - uid: 13543 + - uid: 13542 components: - rot: 3.141592653589793 rad pos: -42.5,24.5 parent: 2 type: Transform - - uid: 13544 + - uid: 13543 components: - rot: 3.141592653589793 rad pos: -42.5,25.5 parent: 2 type: Transform - - uid: 13545 + - uid: 13544 components: - rot: 3.141592653589793 rad pos: -42.5,26.5 parent: 2 type: Transform - - uid: 13546 + - uid: 13545 components: - rot: -1.5707963267948966 rad pos: -38.5,19.5 parent: 2 type: Transform - - uid: 13547 + - uid: 13546 components: - pos: -42.5,18.5 parent: 2 type: Transform - - uid: 13548 + - uid: 13547 components: - pos: -42.5,17.5 parent: 2 type: Transform - - uid: 13549 + - uid: 13548 components: - pos: -42.5,15.5 parent: 2 type: Transform - - uid: 13550 + - uid: 13549 components: - pos: -42.5,16.5 parent: 2 type: Transform - - uid: 13551 + - uid: 13550 components: - rot: 3.141592653589793 rad pos: -5.5,-19.5 parent: 2 type: Transform - - uid: 13552 + - uid: 13551 components: - rot: 3.141592653589793 rad pos: -5.5,-17.5 parent: 2 type: Transform - - uid: 13553 + - uid: 13552 components: - rot: -1.5707963267948966 rad pos: -44.5,5.5 parent: 2 type: Transform - - uid: 13554 + - uid: 13553 components: - pos: -45.5,4.5 parent: 2 type: Transform - - uid: 13555 + - uid: 13554 components: - pos: -45.5,3.5 parent: 2 type: Transform - - uid: 13556 + - uid: 13555 components: - pos: -45.5,2.5 parent: 2 type: Transform - - uid: 13557 + - uid: 13556 components: - pos: -45.5,1.5 parent: 2 type: Transform - - uid: 13558 + - uid: 13557 components: - pos: -45.5,0.5 parent: 2 type: Transform - - uid: 13559 + - uid: 13558 components: - rot: -1.5707963267948966 rad pos: -31.5,-0.5 parent: 2 type: Transform - - uid: 13560 + - uid: 13559 components: - rot: -1.5707963267948966 rad pos: -32.5,-0.5 parent: 2 type: Transform - - uid: 13561 + - uid: 13560 components: - rot: -1.5707963267948966 rad pos: -33.5,-0.5 parent: 2 type: Transform - - uid: 13562 + - uid: 13561 components: - rot: -1.5707963267948966 rad pos: -34.5,-0.5 parent: 2 type: Transform - - uid: 13563 + - uid: 13562 components: - rot: -1.5707963267948966 rad pos: -35.5,-0.5 parent: 2 type: Transform - - uid: 13564 + - uid: 13563 components: - rot: -1.5707963267948966 rad pos: -36.5,-0.5 parent: 2 type: Transform - - uid: 13565 + - uid: 13564 components: - rot: -1.5707963267948966 rad pos: -37.5,-0.5 parent: 2 type: Transform - - uid: 13566 + - uid: 13565 components: - rot: -1.5707963267948966 rad pos: -38.5,-0.5 parent: 2 type: Transform - - uid: 13567 + - uid: 13566 components: - rot: -1.5707963267948966 rad pos: -39.5,-0.5 parent: 2 type: Transform - - uid: 13568 + - uid: 13567 components: - rot: -1.5707963267948966 rad pos: -40.5,-0.5 parent: 2 type: Transform - - uid: 13569 + - uid: 13568 components: - rot: -1.5707963267948966 rad pos: -41.5,-0.5 parent: 2 type: Transform - - uid: 13570 + - uid: 13569 components: - rot: -1.5707963267948966 rad pos: -42.5,-0.5 parent: 2 type: Transform - - uid: 13571 + - uid: 13570 components: - rot: -1.5707963267948966 rad pos: -43.5,-0.5 parent: 2 type: Transform - - uid: 13572 + - uid: 13571 components: - rot: -1.5707963267948966 rad pos: -44.5,-0.5 parent: 2 type: Transform - - uid: 13573 + - uid: 13572 components: - rot: 3.141592653589793 rad pos: -5.5,-20.5 parent: 2 type: Transform - - uid: 13574 + - uid: 13573 components: - rot: 3.141592653589793 rad pos: -5.5,-18.5 parent: 2 type: Transform - - uid: 13575 + - uid: 13574 components: - rot: -1.5707963267948966 rad pos: -42.5,18.5 parent: 2 type: Transform - - uid: 13576 + - uid: 13575 components: - rot: 3.141592653589793 rad pos: -3.5,-22.5 parent: 2 type: Transform - - uid: 13577 + - uid: 13576 components: - rot: 3.141592653589793 rad pos: -3.5,-23.5 parent: 2 type: Transform - - uid: 13578 + - uid: 13577 components: - rot: 1.5707963267948966 rad pos: -7.5,-9.5 parent: 2 type: Transform - - uid: 13579 + - uid: 13578 components: - rot: 1.5707963267948966 rad pos: 28.5,-86.5 parent: 2 type: Transform - - uid: 13580 + - uid: 13579 components: - rot: 3.141592653589793 rad pos: 15.5,-30.5 parent: 2 type: Transform - - uid: 13581 + - uid: 13580 components: - rot: 3.141592653589793 rad pos: 25.5,-53.5 parent: 2 type: Transform - - uid: 13582 + - uid: 13581 components: - rot: 3.141592653589793 rad pos: 18.5,-53.5 parent: 2 type: Transform - - uid: 13583 + - uid: 13582 components: - rot: 3.141592653589793 rad pos: 15.5,-40.5 parent: 2 type: Transform - - uid: 13584 + - uid: 13583 components: - rot: 3.141592653589793 rad pos: 15.5,-38.5 parent: 2 type: Transform - - uid: 13585 + - uid: 13584 components: - pos: -5.5,-55.5 parent: 2 type: Transform - - uid: 13586 + - uid: 13585 components: - pos: -5.5,-56.5 parent: 2 type: Transform - - uid: 13587 + - uid: 13586 components: - pos: -5.5,-57.5 parent: 2 type: Transform - - uid: 13588 + - uid: 13587 components: - pos: -5.5,-58.5 parent: 2 type: Transform - - uid: 13589 + - uid: 13588 components: - pos: -5.5,-59.5 parent: 2 type: Transform - - uid: 13590 + - uid: 13589 components: - pos: -5.5,-60.5 parent: 2 type: Transform - - uid: 13591 + - uid: 13590 components: - pos: -6.5,-62.5 parent: 2 type: Transform - - uid: 13592 + - uid: 13591 components: - pos: -6.5,-63.5 parent: 2 type: Transform - - uid: 13593 + - uid: 13592 components: - pos: -6.5,-64.5 parent: 2 type: Transform - - uid: 13594 + - uid: 13593 components: - rot: 1.5707963267948966 rad pos: -8.5,-66.5 parent: 2 type: Transform - - uid: 13595 + - uid: 13594 components: - rot: 3.141592653589793 rad pos: -3.5,-66.5 parent: 2 type: Transform - - uid: 13596 + - uid: 13595 components: - rot: 3.141592653589793 rad pos: -3.5,-65.5 parent: 2 type: Transform - - uid: 13597 + - uid: 13596 components: - rot: 3.141592653589793 rad pos: -3.5,-64.5 parent: 2 type: Transform - - uid: 13598 + - uid: 13597 components: - rot: 3.141592653589793 rad pos: -3.5,-63.5 parent: 2 type: Transform - - uid: 13599 + - uid: 13598 components: - rot: 3.141592653589793 rad pos: -3.5,-62.5 parent: 2 type: Transform - - uid: 13600 + - uid: 13599 components: - rot: -1.5707963267948966 rad pos: -4.5,-61.5 parent: 2 type: Transform - - uid: 13601 + - uid: 13600 components: - rot: -1.5707963267948966 rad pos: -2.5,-61.5 parent: 2 type: Transform - - uid: 13602 + - uid: 13601 components: - rot: -1.5707963267948966 rad pos: -1.5,-61.5 parent: 2 type: Transform - - uid: 13603 + - uid: 13602 components: - rot: -1.5707963267948966 rad pos: -0.5,-61.5 parent: 2 type: Transform - - uid: 13604 + - uid: 13603 components: - rot: -1.5707963267948966 rad pos: 0.5,-61.5 parent: 2 type: Transform - - uid: 13605 + - uid: 13604 components: - rot: -1.5707963267948966 rad pos: 1.5,-61.5 parent: 2 type: Transform - - uid: 13606 + - uid: 13605 components: - pos: 2.5,-62.5 parent: 2 type: Transform - - uid: 13607 + - uid: 13606 components: - rot: -1.5707963267948966 rad pos: -7.5,-61.5 parent: 2 type: Transform - - uid: 13608 + - uid: 13607 components: - rot: -1.5707963267948966 rad pos: -8.5,-61.5 parent: 2 type: Transform - - uid: 13609 + - uid: 13608 components: - rot: -1.5707963267948966 rad pos: -9.5,-61.5 parent: 2 type: Transform - - uid: 13610 + - uid: 13609 components: - rot: -1.5707963267948966 rad pos: -10.5,-61.5 parent: 2 type: Transform - - uid: 13611 + - uid: 13610 components: - rot: -1.5707963267948966 rad pos: -11.5,-61.5 parent: 2 type: Transform - - uid: 13612 + - uid: 13611 components: - rot: -1.5707963267948966 rad pos: -12.5,-61.5 parent: 2 type: Transform - - uid: 13613 + - uid: 13612 components: - pos: -13.5,-62.5 parent: 2 type: Transform - - uid: 13614 + - uid: 13613 components: - rot: 3.141592653589793 rad pos: -13.5,-63.5 parent: 2 type: Transform - - uid: 13615 + - uid: 13614 components: - rot: 3.141592653589793 rad pos: -13.5,-64.5 parent: 2 type: Transform - - uid: 13616 + - uid: 13615 components: - rot: 3.141592653589793 rad pos: -13.5,-65.5 parent: 2 type: Transform - - uid: 13617 + - uid: 13616 components: - rot: 3.141592653589793 rad pos: -13.5,-66.5 parent: 2 type: Transform - - uid: 13618 + - uid: 13617 components: - rot: 1.5707963267948966 rad pos: -14.5,-67.5 parent: 2 type: Transform - - uid: 13619 + - uid: 13618 components: - rot: 1.5707963267948966 rad pos: -15.5,-67.5 parent: 2 type: Transform - - uid: 13620 + - uid: 13619 components: - rot: 3.141592653589793 rad pos: -3.5,-26.5 parent: 2 type: Transform - - uid: 13621 + - uid: 13620 components: - rot: 3.141592653589793 rad pos: -12.5,6.5 parent: 2 type: Transform - - uid: 13622 + - uid: 13621 components: - rot: 3.141592653589793 rad pos: -12.5,7.5 parent: 2 type: Transform - - uid: 13623 + - uid: 13622 components: - pos: -45.5,12.5 parent: 2 type: Transform - - uid: 13624 + - uid: 13623 components: - pos: -45.5,13.5 parent: 2 type: Transform - - uid: 13625 + - uid: 13624 components: - rot: 1.5707963267948966 rad pos: -44.5,18.5 parent: 2 type: Transform - - uid: 13626 + - uid: 13625 components: - rot: -1.5707963267948966 rad pos: -39.5,23.5 parent: 2 type: Transform - - uid: 13627 + - uid: 13626 components: - pos: -45.5,14.5 parent: 2 type: Transform - - uid: 13628 + - uid: 13627 components: - pos: -45.5,15.5 parent: 2 type: Transform - - uid: 13629 + - uid: 13628 components: - pos: -45.5,16.5 parent: 2 type: Transform - - uid: 13630 + - uid: 13629 components: - pos: -45.5,17.5 parent: 2 type: Transform - - uid: 13631 + - uid: 13630 components: - rot: -1.5707963267948966 rad pos: -43.5,18.5 parent: 2 type: Transform - - uid: 13632 + - uid: 13631 components: - pos: -19.5,24.5 parent: 2 type: Transform - - uid: 13633 + - uid: 13632 components: - pos: -19.5,25.5 parent: 2 type: Transform - - uid: 13634 + - uid: 13633 components: - pos: -19.5,26.5 parent: 2 type: Transform - - uid: 13635 + - uid: 13634 components: - pos: -19.5,27.5 parent: 2 type: Transform - - uid: 13636 + - uid: 13635 components: - pos: -19.5,28.5 parent: 2 type: Transform - - uid: 13637 + - uid: 13636 components: - rot: 1.5707963267948966 rad pos: -18.5,29.5 parent: 2 type: Transform - - uid: 13638 + - uid: 13637 components: - rot: 1.5707963267948966 rad pos: -17.5,29.5 parent: 2 type: Transform - - uid: 13639 + - uid: 13638 components: - rot: 1.5707963267948966 rad pos: -16.5,29.5 parent: 2 type: Transform - - uid: 13640 + - uid: 13639 components: - rot: 3.141592653589793 rad pos: -15.5,30.5 parent: 2 type: Transform - - uid: 13641 + - uid: 13640 components: - rot: 3.141592653589793 rad pos: -15.5,31.5 parent: 2 type: Transform - - uid: 13642 + - uid: 13641 components: - rot: 3.141592653589793 rad pos: -15.5,32.5 parent: 2 type: Transform - - uid: 13643 + - uid: 13642 components: - rot: 3.141592653589793 rad pos: -15.5,33.5 parent: 2 type: Transform - - uid: 13644 + - uid: 13643 components: - rot: 3.141592653589793 rad pos: -15.5,34.5 parent: 2 type: Transform - - uid: 13645 + - uid: 13644 components: - rot: 3.141592653589793 rad pos: -15.5,35.5 parent: 2 type: Transform - - uid: 13646 + - uid: 13645 components: - rot: 3.141592653589793 rad pos: -15.5,36.5 parent: 2 type: Transform - - uid: 13647 + - uid: 13646 components: - rot: -1.5707963267948966 rad pos: -16.5,37.5 parent: 2 type: Transform - - uid: 13648 + - uid: 13647 components: - pos: -15.5,38.5 parent: 2 type: Transform - - uid: 13649 + - uid: 13648 components: - pos: -15.5,39.5 parent: 2 type: Transform - - uid: 13650 + - uid: 13649 components: - pos: -15.5,40.5 parent: 2 type: Transform - - uid: 13651 + - uid: 13650 components: - pos: -15.5,41.5 parent: 2 type: Transform - - uid: 13652 + - uid: 13651 components: - pos: -15.5,42.5 parent: 2 type: Transform - - uid: 13653 + - uid: 13652 components: - pos: -15.5,43.5 parent: 2 type: Transform - - uid: 13654 + - uid: 13653 components: - rot: -1.5707963267948966 rad pos: -14.5,44.5 parent: 2 type: Transform - - uid: 13655 + - uid: 13654 components: - rot: -1.5707963267948966 rad pos: -13.5,44.5 parent: 2 type: Transform - - uid: 13656 + - uid: 13655 components: - rot: -1.5707963267948966 rad pos: -12.5,44.5 parent: 2 type: Transform - - uid: 13657 + - uid: 13656 components: - rot: -1.5707963267948966 rad pos: -11.5,44.5 parent: 2 type: Transform - - uid: 13658 + - uid: 13657 components: - rot: -1.5707963267948966 rad pos: -16.5,44.5 parent: 2 type: Transform - - uid: 13659 + - uid: 13658 components: - rot: 3.141592653589793 rad pos: -17.5,45.5 parent: 2 type: Transform - - uid: 13660 + - uid: 13659 components: - rot: 3.141592653589793 rad pos: -17.5,46.5 parent: 2 type: Transform - - uid: 13661 + - uid: 13660 components: - rot: 3.141592653589793 rad pos: -17.5,47.5 parent: 2 type: Transform - - uid: 13662 + - uid: 13661 components: - rot: 3.141592653589793 rad pos: -17.5,48.5 parent: 2 type: Transform - - uid: 13663 + - uid: 13662 components: - rot: 3.141592653589793 rad pos: -17.5,49.5 parent: 2 type: Transform - - uid: 13664 + - uid: 13663 components: - rot: -1.5707963267948966 rad pos: -5.5,44.5 parent: 2 type: Transform - - uid: 13665 + - uid: 13664 components: - rot: -1.5707963267948966 rad pos: -6.5,44.5 parent: 2 type: Transform - - uid: 13666 + - uid: 13665 components: - rot: -1.5707963267948966 rad pos: -7.5,44.5 parent: 2 type: Transform - - uid: 13667 + - uid: 13666 components: - rot: -1.5707963267948966 rad pos: -8.5,44.5 parent: 2 type: Transform - - uid: 13668 + - uid: 13667 components: - rot: -1.5707963267948966 rad pos: -9.5,44.5 parent: 2 type: Transform - - uid: 13669 + - uid: 13668 components: - rot: -1.5707963267948966 rad pos: -10.5,44.5 parent: 2 type: Transform - - uid: 13670 + - uid: 13669 components: - rot: -1.5707963267948966 rad pos: -14.5,50.5 parent: 2 type: Transform - - uid: 13671 + - uid: 13670 components: - rot: -1.5707963267948966 rad pos: -16.5,50.5 parent: 2 type: Transform - - uid: 13672 + - uid: 13671 components: - rot: -1.5707963267948966 rad pos: -15.5,50.5 parent: 2 type: Transform - - uid: 13673 + - uid: 13672 components: - pos: -37.5,-94.5 parent: 2 type: Transform - - uid: 13674 + - uid: 13673 components: - rot: -1.5707963267948966 rad pos: -39.5,-95.5 parent: 2 type: Transform - - uid: 13675 + - uid: 13674 components: - rot: -1.5707963267948966 rad pos: -40.5,-95.5 parent: 2 type: Transform - - uid: 13676 + - uid: 13675 components: - rot: 3.141592653589793 rad pos: -41.5,-94.5 parent: 2 type: Transform - - uid: 13677 + - uid: 13676 components: - rot: 3.141592653589793 rad pos: -41.5,-93.5 parent: 2 type: Transform - - uid: 13678 + - uid: 13677 components: - rot: 3.141592653589793 rad pos: -41.5,-92.5 parent: 2 type: Transform - - uid: 13679 + - uid: 13678 components: - rot: 3.141592653589793 rad pos: -41.5,-91.5 parent: 2 type: Transform - - uid: 13680 + - uid: 13679 components: - rot: 3.141592653589793 rad pos: -41.5,-90.5 parent: 2 type: Transform - - uid: 13681 + - uid: 13680 components: - rot: 3.141592653589793 rad pos: -41.5,-89.5 parent: 2 type: Transform - - uid: 13682 + - uid: 13681 components: - rot: 3.141592653589793 rad pos: -41.5,-88.5 parent: 2 type: Transform - - uid: 13683 + - uid: 13682 components: - rot: 1.5707963267948966 rad pos: 68.5,-47.5 parent: 2 type: Transform - - uid: 13684 + - uid: 13683 components: - rot: 1.5707963267948966 rad pos: 69.5,-47.5 parent: 2 type: Transform - - uid: 13685 + - uid: 13684 components: - rot: 1.5707963267948966 rad pos: 70.5,-47.5 parent: 2 type: Transform - - uid: 13686 + - uid: 13685 components: - rot: 1.5707963267948966 rad pos: 71.5,-47.5 parent: 2 type: Transform - - uid: 13687 + - uid: 13686 components: - rot: 1.5707963267948966 rad pos: 72.5,-47.5 parent: 2 type: Transform - - uid: 13688 + - uid: 13687 components: - rot: 1.5707963267948966 rad pos: 73.5,-47.5 parent: 2 type: Transform - - uid: 13689 + - uid: 13688 components: - rot: 1.5707963267948966 rad pos: 74.5,-47.5 parent: 2 type: Transform - - uid: 13690 + - uid: 13689 components: - rot: 3.141592653589793 rad pos: 75.5,-46.5 parent: 2 type: Transform - - uid: 13691 + - uid: 13690 components: - rot: 3.141592653589793 rad pos: 75.5,-45.5 parent: 2 type: Transform - - uid: 13692 + - uid: 13691 components: - rot: 3.141592653589793 rad pos: 75.5,-44.5 parent: 2 type: Transform - - uid: 13693 + - uid: 13692 components: - rot: 3.141592653589793 rad pos: 75.5,-43.5 parent: 2 type: Transform - - uid: 13694 + - uid: 13693 components: - rot: 3.141592653589793 rad pos: 75.5,-42.5 parent: 2 type: Transform - - uid: 13695 + - uid: 13694 components: - rot: 3.141592653589793 rad pos: 75.5,-41.5 parent: 2 type: Transform - - uid: 13696 + - uid: 13695 components: - rot: 3.141592653589793 rad pos: 75.5,-40.5 parent: 2 type: Transform - - uid: 13697 + - uid: 13696 components: - rot: 3.141592653589793 rad pos: 75.5,-39.5 parent: 2 type: Transform - - uid: 13698 + - uid: 13697 components: - rot: 3.141592653589793 rad pos: 75.5,-38.5 parent: 2 type: Transform - - uid: 13699 + - uid: 13698 components: - rot: 3.141592653589793 rad pos: 75.5,-37.5 parent: 2 type: Transform - - uid: 13700 + - uid: 13699 components: - rot: 3.141592653589793 rad pos: 75.5,-36.5 parent: 2 type: Transform - - uid: 13701 + - uid: 13700 components: - rot: 3.141592653589793 rad pos: 75.5,-35.5 parent: 2 type: Transform - - uid: 13702 + - uid: 13701 components: - rot: 3.141592653589793 rad pos: 75.5,-34.5 parent: 2 type: Transform - - uid: 13703 + - uid: 13702 components: - rot: 3.141592653589793 rad pos: 75.5,-33.5 parent: 2 type: Transform - - uid: 13704 + - uid: 13703 components: - rot: 3.141592653589793 rad pos: -4.5,-3.5 parent: 2 type: Transform - - uid: 13705 + - uid: 13704 components: - rot: 3.141592653589793 rad pos: -4.5,-4.5 parent: 2 type: Transform - - uid: 13706 + - uid: 13705 components: - rot: 3.141592653589793 rad pos: 15.5,-31.5 parent: 2 type: Transform - - uid: 13707 + - uid: 13706 components: - pos: -42.5,14.5 parent: 2 type: Transform - - uid: 13708 + - uid: 13707 components: - rot: 1.5707963267948966 rad pos: -53.5,-64.5 parent: 2 type: Transform - - uid: 13709 + - uid: 13708 components: - pos: 30.5,-81.5 parent: 2 type: Transform - - uid: 13710 + - uid: 13709 components: - rot: 3.141592653589793 rad pos: -5.5,-16.5 parent: 2 type: Transform - - uid: 13711 + - uid: 13710 components: - rot: 3.141592653589793 rad pos: -5.5,-15.5 parent: 2 type: Transform - - uid: 13712 + - uid: 13711 components: - rot: 3.141592653589793 rad pos: -5.5,-14.5 parent: 2 type: Transform - - uid: 13713 + - uid: 13712 components: - rot: -1.5707963267948966 rad pos: -6.5,-13.5 parent: 2 type: Transform - - uid: 13714 + - uid: 13713 components: - rot: -1.5707963267948966 rad pos: -7.5,-13.5 parent: 2 type: Transform - - uid: 13715 + - uid: 13714 components: - rot: -1.5707963267948966 rad pos: -8.5,-13.5 parent: 2 type: Transform - - uid: 13716 + - uid: 13715 components: - rot: -1.5707963267948966 rad pos: -9.5,-13.5 parent: 2 type: Transform - - uid: 13717 + - uid: 13716 components: - pos: -12.5,-13.5 parent: 2 type: Transform - - uid: 13718 + - uid: 13717 components: - rot: -1.5707963267948966 rad pos: -13.5,-14.5 parent: 2 type: Transform - - uid: 13719 + - uid: 13718 components: - rot: -1.5707963267948966 rad pos: -14.5,-14.5 parent: 2 type: Transform - - uid: 13720 + - uid: 13719 components: - rot: -1.5707963267948966 rad pos: -15.5,-14.5 parent: 2 type: Transform - - uid: 13721 + - uid: 13720 components: - rot: -1.5707963267948966 rad pos: -16.5,-14.5 parent: 2 type: Transform - - uid: 13722 + - uid: 13721 components: - rot: -1.5707963267948966 rad pos: -17.5,-14.5 parent: 2 type: Transform - - uid: 13723 + - uid: 13722 components: - rot: 3.141592653589793 rad pos: -18.5,-13.5 parent: 2 type: Transform - - uid: 13724 + - uid: 13723 components: - rot: 3.141592653589793 rad pos: -18.5,-12.5 parent: 2 type: Transform - - uid: 13725 + - uid: 13724 components: - rot: 3.141592653589793 rad pos: -18.5,-11.5 parent: 2 type: Transform - - uid: 13726 + - uid: 13725 components: - rot: 3.141592653589793 rad pos: -18.5,-10.5 parent: 2 type: Transform - - uid: 13727 + - uid: 13726 components: - rot: 3.141592653589793 rad pos: -18.5,-9.5 parent: 2 type: Transform - - uid: 13728 + - uid: 13727 components: - rot: 3.141592653589793 rad pos: -18.5,-8.5 parent: 2 type: Transform - - uid: 13729 + - uid: 13728 components: - rot: 3.141592653589793 rad pos: -18.5,-7.5 parent: 2 type: Transform - - uid: 13730 + - uid: 13729 components: - rot: 3.141592653589793 rad pos: -18.5,-6.5 parent: 2 type: Transform - - uid: 13731 + - uid: 13730 components: - rot: 3.141592653589793 rad pos: -18.5,-5.5 parent: 2 type: Transform - - uid: 13732 + - uid: 13731 components: - rot: -1.5707963267948966 rad pos: -19.5,-4.5 parent: 2 type: Transform - - uid: 13733 + - uid: 13732 components: - rot: -1.5707963267948966 rad pos: -20.5,-4.5 parent: 2 type: Transform - - uid: 13734 + - uid: 13733 components: - rot: -1.5707963267948966 rad pos: -21.5,-4.5 parent: 2 type: Transform - - uid: 13735 + - uid: 13734 components: - rot: -1.5707963267948966 rad pos: -22.5,-4.5 parent: 2 type: Transform - - uid: 13736 + - uid: 13735 components: - rot: -1.5707963267948966 rad pos: -23.5,-4.5 parent: 2 type: Transform - - uid: 13737 + - uid: 13736 components: - rot: 3.141592653589793 rad pos: -24.5,-3.5 parent: 2 type: Transform - - uid: 13738 + - uid: 13737 components: - rot: 3.141592653589793 rad pos: -24.5,-2.5 parent: 2 type: Transform - - uid: 13739 + - uid: 13738 components: - rot: 3.141592653589793 rad pos: -24.5,-1.5 parent: 2 type: Transform - - uid: 13740 + - uid: 13739 components: - rot: 3.141592653589793 rad pos: -24.5,-0.5 parent: 2 type: Transform - - uid: 13741 + - uid: 13740 components: - rot: 3.141592653589793 rad pos: -24.5,0.5 parent: 2 type: Transform - - uid: 13742 + - uid: 13741 components: - rot: 3.141592653589793 rad pos: -24.5,1.5 parent: 2 type: Transform - - uid: 13743 + - uid: 13742 components: - rot: 3.141592653589793 rad pos: -24.5,2.5 parent: 2 type: Transform - - uid: 13744 + - uid: 13743 components: - rot: 3.141592653589793 rad pos: -24.5,3.5 parent: 2 type: Transform - - uid: 13745 + - uid: 13744 components: - rot: 3.141592653589793 rad pos: -24.5,4.5 parent: 2 type: Transform - - uid: 13746 + - uid: 13745 components: - rot: 3.141592653589793 rad pos: -24.5,5.5 parent: 2 type: Transform - - uid: 13747 + - uid: 13746 components: - rot: 3.141592653589793 rad pos: -24.5,6.5 parent: 2 type: Transform - - uid: 13748 + - uid: 13747 components: - rot: 3.141592653589793 rad pos: -24.5,7.5 parent: 2 type: Transform - - uid: 13749 + - uid: 13748 components: - rot: 1.5707963267948966 rad pos: -23.5,8.5 parent: 2 type: Transform - - uid: 13750 + - uid: 13749 components: - rot: 1.5707963267948966 rad pos: -22.5,8.5 parent: 2 type: Transform - - uid: 13751 + - uid: 13750 components: - rot: 1.5707963267948966 rad pos: -21.5,8.5 parent: 2 type: Transform - - uid: 13752 + - uid: 13751 components: - rot: 3.141592653589793 rad pos: -20.5,9.5 parent: 2 type: Transform - - uid: 13753 + - uid: 13752 components: - rot: 3.141592653589793 rad pos: -20.5,10.5 parent: 2 type: Transform - - uid: 13754 + - uid: 13753 components: - rot: 3.141592653589793 rad pos: -20.5,11.5 parent: 2 type: Transform - - uid: 13755 + - uid: 13754 components: - rot: 3.141592653589793 rad pos: -20.5,12.5 parent: 2 type: Transform - - uid: 13756 + - uid: 13755 components: - rot: 3.141592653589793 rad pos: -20.5,13.5 parent: 2 type: Transform - - uid: 13757 + - uid: 13756 components: - rot: 3.141592653589793 rad pos: -20.5,14.5 parent: 2 type: Transform - - uid: 13758 + - uid: 13757 components: - rot: 3.141592653589793 rad pos: -20.5,15.5 parent: 2 type: Transform - - uid: 13759 + - uid: 13758 components: - rot: 3.141592653589793 rad pos: -20.5,16.5 parent: 2 type: Transform - - uid: 13760 + - uid: 13759 components: - rot: 3.141592653589793 rad pos: -20.5,17.5 parent: 2 type: Transform - - uid: 13761 + - uid: 13760 components: - rot: 3.141592653589793 rad pos: -20.5,18.5 parent: 2 type: Transform - - uid: 13762 + - uid: 13761 components: - rot: 3.141592653589793 rad pos: -20.5,19.5 parent: 2 type: Transform - - uid: 13763 + - uid: 13762 components: - rot: -1.5707963267948966 rad pos: -21.5,20.5 parent: 2 type: Transform - - uid: 13764 + - uid: 13763 components: - rot: -1.5707963267948966 rad pos: -22.5,20.5 parent: 2 type: Transform - - uid: 13765 + - uid: 13764 components: - rot: -1.5707963267948966 rad pos: -23.5,20.5 parent: 2 type: Transform - - uid: 13766 + - uid: 13765 components: - rot: -1.5707963267948966 rad pos: -24.5,20.5 parent: 2 type: Transform - - uid: 13767 + - uid: 13766 components: - rot: -1.5707963267948966 rad pos: -26.5,19.5 parent: 2 type: Transform - - uid: 13768 + - uid: 13767 components: - rot: -1.5707963267948966 rad pos: -27.5,19.5 parent: 2 type: Transform - - uid: 13769 + - uid: 13768 components: - rot: -1.5707963267948966 rad pos: -28.5,19.5 parent: 2 type: Transform - - uid: 13770 + - uid: 13769 components: - rot: -1.5707963267948966 rad pos: -29.5,19.5 parent: 2 type: Transform - - uid: 13771 + - uid: 13770 components: - rot: -1.5707963267948966 rad pos: -30.5,19.5 parent: 2 type: Transform - - uid: 13772 + - uid: 13771 components: - rot: -1.5707963267948966 rad pos: -31.5,19.5 parent: 2 type: Transform - - uid: 13773 + - uid: 13772 components: - rot: -1.5707963267948966 rad pos: -32.5,19.5 parent: 2 type: Transform - - uid: 13774 + - uid: 13773 components: - rot: -1.5707963267948966 rad pos: -33.5,19.5 parent: 2 type: Transform - - uid: 13775 + - uid: 13774 components: - rot: -1.5707963267948966 rad pos: -34.5,19.5 parent: 2 type: Transform - - uid: 13776 + - uid: 13775 components: - rot: -1.5707963267948966 rad pos: -36.5,19.5 parent: 2 type: Transform - - uid: 13777 + - uid: 13776 components: - rot: -1.5707963267948966 rad pos: -39.5,19.5 parent: 2 type: Transform - - uid: 13778 + - uid: 13777 components: - rot: -1.5707963267948966 rad pos: -40.5,19.5 parent: 2 type: Transform - - uid: 13779 + - uid: 13778 components: - rot: -1.5707963267948966 rad pos: -37.5,19.5 parent: 2 type: Transform - - uid: 13780 + - uid: 13779 components: - rot: 3.141592653589793 rad pos: -46.5,9.5 parent: 2 type: Transform - - uid: 13781 + - uid: 13780 components: - rot: 3.141592653589793 rad pos: -46.5,8.5 parent: 2 type: Transform - - uid: 13782 + - uid: 13781 components: - rot: 3.141592653589793 rad pos: -46.5,7.5 parent: 2 type: Transform - - uid: 13783 + - uid: 13782 components: - rot: 3.141592653589793 rad pos: -46.5,6.5 parent: 2 type: Transform - - uid: 13784 + - uid: 13783 components: - rot: 3.141592653589793 rad pos: -46.5,5.5 parent: 2 type: Transform - - uid: 13785 + - uid: 13784 components: - rot: 3.141592653589793 rad pos: -46.5,4.5 parent: 2 type: Transform - - uid: 13786 + - uid: 13785 components: - rot: 3.141592653589793 rad pos: -46.5,3.5 parent: 2 type: Transform - - uid: 13787 + - uid: 13786 components: - rot: 3.141592653589793 rad pos: -46.5,2.5 parent: 2 type: Transform - - uid: 13788 + - uid: 13787 components: - rot: 3.141592653589793 rad pos: -46.5,1.5 parent: 2 type: Transform - - uid: 13789 + - uid: 13788 components: - rot: 1.5707963267948966 rad pos: -45.5,0.5 parent: 2 type: Transform - - uid: 13790 + - uid: 13789 components: - rot: 1.5707963267948966 rad pos: -44.5,0.5 parent: 2 type: Transform - - uid: 13791 + - uid: 13790 components: - rot: 1.5707963267948966 rad pos: -43.5,0.5 parent: 2 type: Transform - - uid: 13792 + - uid: 13791 components: - rot: 1.5707963267948966 rad pos: -42.5,0.5 parent: 2 type: Transform - - uid: 13793 + - uid: 13792 components: - rot: 1.5707963267948966 rad pos: -41.5,0.5 parent: 2 type: Transform - - uid: 13794 + - uid: 13793 components: - rot: 1.5707963267948966 rad pos: -40.5,0.5 parent: 2 type: Transform - - uid: 13795 + - uid: 13794 components: - rot: 1.5707963267948966 rad pos: -39.5,0.5 parent: 2 type: Transform - - uid: 13796 + - uid: 13795 components: - rot: 1.5707963267948966 rad pos: -38.5,0.5 parent: 2 type: Transform - - uid: 13797 + - uid: 13796 components: - rot: 1.5707963267948966 rad pos: -37.5,0.5 parent: 2 type: Transform - - uid: 13798 + - uid: 13797 components: - rot: 1.5707963267948966 rad pos: -36.5,0.5 parent: 2 type: Transform - - uid: 13799 + - uid: 13798 components: - rot: 1.5707963267948966 rad pos: -35.5,0.5 parent: 2 type: Transform - - uid: 13800 + - uid: 13799 components: - rot: 1.5707963267948966 rad pos: -34.5,0.5 parent: 2 type: Transform - - uid: 13801 + - uid: 13800 components: - rot: 1.5707963267948966 rad pos: -33.5,0.5 parent: 2 type: Transform - - uid: 13802 + - uid: 13801 components: - rot: 1.5707963267948966 rad pos: -32.5,0.5 parent: 2 type: Transform - - uid: 13803 + - uid: 13802 components: - rot: 1.5707963267948966 rad pos: -31.5,0.5 parent: 2 type: Transform - - uid: 13804 + - uid: 13803 components: - rot: 1.5707963267948966 rad pos: -30.5,0.5 parent: 2 type: Transform - - uid: 13805 + - uid: 13804 components: - rot: 1.5707963267948966 rad pos: -29.5,0.5 parent: 2 type: Transform - - uid: 13806 + - uid: 13805 components: - rot: 1.5707963267948966 rad pos: -28.5,0.5 parent: 2 type: Transform - - uid: 13807 + - uid: 13806 components: - rot: 1.5707963267948966 rad pos: -27.5,0.5 parent: 2 type: Transform - - uid: 13808 + - uid: 13807 components: - pos: -26.5,-0.5 parent: 2 type: Transform - - uid: 13809 + - uid: 13808 components: - pos: -26.5,-1.5 parent: 2 type: Transform - - uid: 13810 + - uid: 13809 components: - pos: -26.5,-2.5 parent: 2 type: Transform - - uid: 13811 + - uid: 13810 components: - pos: -26.5,-3.5 parent: 2 type: Transform - - uid: 13812 + - uid: 13811 components: - pos: -26.5,-4.5 parent: 2 type: Transform - - uid: 13813 + - uid: 13812 components: - rot: 1.5707963267948966 rad pos: -25.5,-5.5 parent: 2 type: Transform - - uid: 13814 + - uid: 13813 components: - rot: 1.5707963267948966 rad pos: -24.5,-5.5 parent: 2 type: Transform - - uid: 13815 + - uid: 13814 components: - rot: 1.5707963267948966 rad pos: -23.5,-5.5 parent: 2 type: Transform - - uid: 13816 + - uid: 13815 components: - rot: 1.5707963267948966 rad pos: -22.5,-5.5 parent: 2 type: Transform - - uid: 13817 + - uid: 13816 components: - rot: 1.5707963267948966 rad pos: -21.5,-5.5 parent: 2 type: Transform - - uid: 13818 + - uid: 13817 components: - pos: -20.5,-6.5 parent: 2 type: Transform - - uid: 13819 + - uid: 13818 components: - pos: -20.5,-7.5 parent: 2 type: Transform - - uid: 13820 + - uid: 13819 components: - pos: -20.5,-8.5 parent: 2 type: Transform - - uid: 13821 + - uid: 13820 components: - pos: -20.5,-9.5 parent: 2 type: Transform - - uid: 13822 + - uid: 13821 components: - pos: -20.5,-10.5 parent: 2 type: Transform - - uid: 13823 + - uid: 13822 components: - pos: -20.5,-11.5 parent: 2 type: Transform - - uid: 13824 + - uid: 13823 components: - pos: -20.5,-12.5 parent: 2 type: Transform - - uid: 13825 + - uid: 13824 components: - pos: -20.5,-13.5 parent: 2 type: Transform - - uid: 13826 + - uid: 13825 components: - pos: -20.5,-14.5 parent: 2 type: Transform - - uid: 13827 + - uid: 13826 components: - pos: -20.5,-15.5 parent: 2 type: Transform - - uid: 13828 + - uid: 13827 components: - pos: -20.5,-16.5 parent: 2 type: Transform - - uid: 13829 + - uid: 13828 components: - pos: -20.5,-17.5 parent: 2 type: Transform - - uid: 13830 + - uid: 13829 components: - pos: -20.5,-18.5 parent: 2 type: Transform - - uid: 13831 + - uid: 13830 components: - pos: -20.5,-19.5 parent: 2 type: Transform - - uid: 13832 + - uid: 13831 components: - pos: -20.5,-20.5 parent: 2 type: Transform - - uid: 13833 + - uid: 13832 components: - pos: -20.5,-21.5 parent: 2 type: Transform - - uid: 13834 + - uid: 13833 components: - pos: -20.5,-22.5 parent: 2 type: Transform - - uid: 13835 + - uid: 13834 components: - pos: -20.5,-23.5 parent: 2 type: Transform - - uid: 13836 + - uid: 13835 components: - pos: -20.5,-24.5 parent: 2 type: Transform - - uid: 13837 + - uid: 13836 components: - rot: 1.5707963267948966 rad pos: -19.5,-25.5 parent: 2 type: Transform - - uid: 13838 + - uid: 13837 components: - rot: 1.5707963267948966 rad pos: -18.5,-25.5 parent: 2 type: Transform - - uid: 13839 + - uid: 13838 components: - rot: 1.5707963267948966 rad pos: -17.5,-25.5 parent: 2 type: Transform - - uid: 13840 + - uid: 13839 components: - rot: 1.5707963267948966 rad pos: -16.5,-25.5 parent: 2 type: Transform - - uid: 13841 + - uid: 13840 components: - rot: 1.5707963267948966 rad pos: -15.5,-25.5 parent: 2 type: Transform - - uid: 13842 + - uid: 13841 components: - rot: 1.5707963267948966 rad pos: -14.5,-25.5 parent: 2 type: Transform - - uid: 13843 + - uid: 13842 components: - rot: 1.5707963267948966 rad pos: -13.5,-25.5 parent: 2 type: Transform - - uid: 13844 + - uid: 13843 components: - rot: 1.5707963267948966 rad pos: -12.5,-25.5 parent: 2 type: Transform - - uid: 13845 + - uid: 13844 components: - rot: 1.5707963267948966 rad pos: -11.5,-25.5 parent: 2 type: Transform - - uid: 13846 + - uid: 13845 components: - rot: 1.5707963267948966 rad pos: -10.5,-25.5 parent: 2 type: Transform - - uid: 13847 + - uid: 13846 components: - rot: 1.5707963267948966 rad pos: -9.5,-25.5 parent: 2 type: Transform - - uid: 13848 + - uid: 13847 components: - rot: 1.5707963267948966 rad pos: -8.5,-25.5 parent: 2 type: Transform - - uid: 13849 + - uid: 13848 components: - rot: 1.5707963267948966 rad pos: -7.5,-25.5 parent: 2 type: Transform - - uid: 13850 + - uid: 13849 components: - rot: 1.5707963267948966 rad pos: -6.5,-25.5 parent: 2 type: Transform - - uid: 13851 + - uid: 13850 components: - rot: -1.5707963267948966 rad pos: -41.5,18.5 parent: 2 type: Transform - - uid: 13852 + - uid: 13851 components: - pos: 30.5,-74.5 parent: 2 type: Transform - - uid: 13853 + - uid: 13852 components: - rot: 1.5707963267948966 rad pos: 26.5,-73.5 parent: 2 type: Transform - - uid: 13854 + - uid: 13853 components: - rot: 1.5707963267948966 rad pos: 27.5,-73.5 parent: 2 type: Transform - - uid: 13855 + - uid: 13854 components: - rot: 1.5707963267948966 rad pos: 28.5,-73.5 parent: 2 type: Transform - - uid: 13856 + - uid: 13855 components: - rot: 1.5707963267948966 rad pos: 29.5,-73.5 parent: 2 type: Transform - - uid: 13857 + - uid: 13856 components: - pos: 30.5,-76.5 parent: 2 type: Transform - - uid: 13858 + - uid: 13857 components: - pos: 30.5,-75.5 parent: 2 type: Transform - - uid: 13859 + - uid: 13858 components: - pos: 30.5,-82.5 parent: 2 type: Transform - - uid: 13860 + - uid: 13859 components: - rot: 1.5707963267948966 rad pos: 31.5,-73.5 parent: 2 type: Transform - - uid: 13861 + - uid: 13860 components: - rot: 1.5707963267948966 rad pos: 32.5,-73.5 parent: 2 type: Transform - - uid: 13862 + - uid: 13861 components: - rot: 1.5707963267948966 rad pos: 33.5,-73.5 parent: 2 type: Transform - - uid: 13863 + - uid: 13862 components: - rot: 1.5707963267948966 rad pos: 34.5,-73.5 parent: 2 type: Transform - - uid: 13864 + - uid: 13863 components: - rot: 1.5707963267948966 rad pos: 35.5,-73.5 parent: 2 type: Transform - - uid: 13865 + - uid: 13864 components: - rot: 1.5707963267948966 rad pos: 36.5,-73.5 parent: 2 type: Transform - - uid: 13866 + - uid: 13865 components: - rot: 1.5707963267948966 rad pos: 37.5,-73.5 parent: 2 type: Transform - - uid: 13867 + - uid: 13866 components: - rot: 1.5707963267948966 rad pos: 38.5,-73.5 parent: 2 type: Transform - - uid: 13868 + - uid: 13867 components: - rot: -1.5707963267948966 rad pos: 10.5,2.5 parent: 2 type: Transform + - uid: 13868 + components: + - pos: -23.5,-81.5 + parent: 2 + type: Transform - proto: DisposalRouterFlipped entities: - uid: 13869 @@ -108999,6 +94151,8 @@ entities: type: Transform - nextAttack: 1193.4079773 type: MeleeWeapon + - nextSound: 1193.6079772 + type: EmitSoundOnCollide - proto: DrinkSpaceUpGlass entities: - uid: 14086 @@ -109008,6 +94162,8 @@ entities: type: Transform - nextAttack: 1196.3724161 type: MeleeWeapon + - nextSound: 1196.5724161 + type: EmitSoundOnCollide - proto: DrinkToxinsSpecialGlass entities: - uid: 14087 @@ -110644,8 +95800,8 @@ entities: type: Transform - devices: - 771 - - 19311 - - 19089 + - 19312 + - 19090 - 14380 - 14548 - 14636 @@ -114543,6 +99699,13 @@ entities: type: Transform - fixtures: {} type: Fixtures + - uid: 25040 + components: + - pos: -15.5,-34.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures - proto: FloorTileItemFreezer entities: - uid: 14888 @@ -114913,6 +100076,8 @@ entities: - pos: 5.023752,11.565053 parent: 2 type: Transform + - nextSound: 407.8793681 + type: EmitSoundOnCollide - proto: FoodPizzaMoldySlice entities: - uid: 14945 @@ -115095,6 +100260,8 @@ entities: - pos: -10.5823765,11.42968 parent: 2 type: Transform + - nextSound: 1023.6627345 + type: EmitSoundOnCollide - proto: GasAnalyzer entities: - uid: 14971 @@ -115122,96 +100289,103 @@ entities: - pos: 4.481148,-75.45175 parent: 2 type: Transform + - uid: 14976 + components: + - pos: -55.480183,-48.446095 + parent: 2 + type: Transform + - nextSound: 657.3607922 + type: EmitSoundOnCollide - proto: GasCanisterBrokenBase entities: - - uid: 14976 + - uid: 14977 components: - pos: -28.5,-21.5 parent: 2 type: Transform - proto: GasFilterFlipped entities: - - uid: 14977 + - uid: 14978 components: - rot: 3.141592653589793 rad pos: 45.5,-59.5 parent: 2 type: Transform - - uid: 14978 + - uid: 14979 components: - pos: -44.5,-46.5 parent: 2 type: Transform - - uid: 14979 + - uid: 14980 components: - pos: -44.5,-44.5 parent: 2 type: Transform - - uid: 14980 + - uid: 14981 components: - pos: -44.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 14981 + - uid: 14982 components: - pos: -44.5,-48.5 parent: 2 type: Transform - - uid: 14982 + - uid: 14983 components: - pos: -44.5,-50.5 parent: 2 type: Transform - - uid: 14983 + - uid: 14984 components: - pos: -44.5,-52.5 parent: 2 type: Transform - - uid: 14984 + - uid: 14985 components: - pos: -44.5,-54.5 parent: 2 type: Transform - proto: GasMinerCarbonDioxide entities: - - uid: 14985 + - uid: 14986 components: - pos: -49.5,-50.5 parent: 2 type: Transform - proto: GasMinerNitrogenStationLarge entities: - - uid: 14986 + - uid: 14987 components: - pos: -49.5,-54.5 parent: 2 type: Transform - proto: GasMinerOxygenStationLarge entities: - - uid: 14987 + - uid: 14988 components: - pos: -49.5,-52.5 parent: 2 type: Transform - proto: GasMinerPlasma entities: - - uid: 14988 + - uid: 14989 components: - pos: -49.5,-46.5 parent: 2 type: Transform - proto: GasMinerWaterVapor entities: - - uid: 14989 + - uid: 14990 components: - pos: -49.5,-48.5 parent: 2 type: Transform - proto: GasMixer entities: - - uid: 14990 + - uid: 14991 components: - rot: 1.5707963267948966 rad pos: 55.5,-59.5 @@ -115219,7 +100393,7 @@ entities: type: Transform - proto: GasMixerFlipped entities: - - uid: 14991 + - uid: 14992 components: - pos: -42.5,-51.5 parent: 2 @@ -115227,7 +100401,7 @@ entities: - inletTwoConcentration: 0 inletOneConcentration: 1 type: GasMixer - - uid: 14992 + - uid: 14993 components: - pos: -42.5,-52.5 parent: 2 @@ -115235,7 +100409,7 @@ entities: - inletTwoConcentration: 1 inletOneConcentration: 0 type: GasMixer - - uid: 14993 + - uid: 14994 components: - rot: -1.5707963267948966 rad pos: -42.5,-55.5 @@ -115246,7 +100420,7 @@ entities: type: GasMixer - color: '#03FCD3FF' type: AtmosPipeColor - - uid: 14994 + - uid: 14995 components: - pos: -42.5,-49.5 parent: 2 @@ -115254,7 +100428,7 @@ entities: - inletTwoConcentration: 0 inletOneConcentration: 1 type: GasMixer - - uid: 14995 + - uid: 14996 components: - pos: -42.5,-47.5 parent: 2 @@ -115262,7 +100436,7 @@ entities: - inletTwoConcentration: 0 inletOneConcentration: 1 type: GasMixer - - uid: 14996 + - uid: 14997 components: - pos: -42.5,-45.5 parent: 2 @@ -115270,7 +100444,7 @@ entities: - inletTwoConcentration: 0 inletOneConcentration: 1 type: GasMixer - - uid: 14997 + - uid: 14998 components: - pos: -42.5,-43.5 parent: 2 @@ -115280,80 +100454,80 @@ entities: type: GasMixer - proto: GasOutletInjector entities: - - uid: 14998 + - uid: 14999 components: - rot: 1.5707963267948966 rad pos: -48.5,-54.5 parent: 2 type: Transform - - uid: 14999 + - uid: 15000 components: - rot: 1.5707963267948966 rad pos: -48.5,-52.5 parent: 2 type: Transform - - uid: 15000 + - uid: 15001 components: - rot: 1.5707963267948966 rad pos: -48.5,-50.5 parent: 2 type: Transform - - uid: 15001 + - uid: 15002 components: - rot: 1.5707963267948966 rad pos: -48.5,-48.5 parent: 2 type: Transform - - uid: 15002 + - uid: 15003 components: - rot: 1.5707963267948966 rad pos: -48.5,-46.5 parent: 2 type: Transform - - uid: 15003 + - uid: 15004 components: - rot: 1.5707963267948966 rad pos: -48.5,-44.5 parent: 2 type: Transform - - uid: 15004 + - uid: 15005 components: - rot: 1.5707963267948966 rad pos: -48.5,-42.5 parent: 2 type: Transform - - uid: 15005 + - uid: 15006 components: - pos: -42.5,-35.5 parent: 2 type: Transform - proto: GasPassiveVent entities: - - uid: 15006 + - uid: 15007 components: - pos: -50.5,-52.5 parent: 2 type: Transform - - uid: 15007 + - uid: 15008 components: - pos: 73.5,-26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15008 + - uid: 15009 components: - rot: 3.141592653589793 rad pos: 51.5,-60.5 parent: 2 type: Transform - - uid: 15009 + - uid: 15010 components: - rot: 3.141592653589793 rad pos: 48.5,-60.5 parent: 2 type: Transform - - uid: 15010 + - uid: 15011 components: - rot: 3.141592653589793 rad pos: 49.5,-63.5 @@ -115361,63 +100535,63 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15011 + - uid: 15012 components: - pos: -50.5,-54.5 parent: 2 type: Transform - - uid: 15012 + - uid: 15013 components: - pos: -50.5,-50.5 parent: 2 type: Transform - - uid: 15013 + - uid: 15014 components: - pos: -50.5,-48.5 parent: 2 type: Transform - - uid: 15014 + - uid: 15015 components: - pos: -50.5,-46.5 parent: 2 type: Transform - - uid: 15015 + - uid: 15016 components: - pos: -50.5,-44.5 parent: 2 type: Transform - - uid: 15016 + - uid: 15017 components: - pos: -50.5,-42.5 parent: 2 type: Transform - - uid: 15017 + - uid: 15018 components: - pos: -44.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15018 + - uid: 15019 components: - rot: 3.141592653589793 rad pos: -38.5,-60.5 parent: 2 type: Transform - - uid: 15019 + - uid: 15020 components: - pos: 1.5,26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15020 + - uid: 15021 components: - rot: 3.141592653589793 rad pos: 70.5,32.5 parent: 2 type: Transform - - uid: 15021 + - uid: 15022 components: - rot: 3.141592653589793 rad pos: 3.5,64.5 @@ -115425,7 +100599,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15022 + - uid: 15023 components: - rot: 3.141592653589793 rad pos: 2.5,63.5 @@ -115433,7 +100607,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15023 + - uid: 15024 components: - rot: 3.141592653589793 rad pos: -5.5,63.5 @@ -115441,7 +100615,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15024 + - uid: 15025 components: - rot: 3.141592653589793 rad pos: -6.5,64.5 @@ -115449,7 +100623,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15025 + - uid: 15026 components: - rot: 1.5707963267948966 rad pos: -0.5,69.5 @@ -115457,7 +100631,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15026 + - uid: 15027 components: - rot: -1.5707963267948966 rad pos: -2.5,69.5 @@ -115465,13 +100639,13 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15027 + - uid: 15028 components: - rot: 1.5707963267948966 rad pos: -73.5,-44.5 parent: 2 type: Transform - - uid: 15028 + - uid: 15029 components: - rot: 3.141592653589793 rad pos: 66.5,-40.5 @@ -115479,27 +100653,27 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15029 + - uid: 15030 components: - pos: 72.5,-29.5 parent: 2 type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 15030 + - uid: 15031 components: - rot: 3.141592653589793 rad pos: -55.5,-63.5 parent: 2 type: Transform - - uid: 15031 + - uid: 15032 components: - pos: 71.5,-29.5 parent: 2 type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 15032 + - uid: 15033 components: - rot: 1.5707963267948966 rad pos: 68.5,-38.5 @@ -115507,13 +100681,13 @@ entities: type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 15033 + - uid: 15034 components: - rot: 3.141592653589793 rad pos: 55.5,-51.5 parent: 2 type: Transform - - uid: 15034 + - uid: 15035 components: - rot: 1.5707963267948966 rad pos: 68.5,-37.5 @@ -115521,7 +100695,7 @@ entities: type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 15035 + - uid: 15036 components: - rot: -1.5707963267948966 rad pos: -44.5,-35.5 @@ -115529,7 +100703,7 @@ entities: type: Transform - proto: GasPipeBend entities: - - uid: 15036 + - uid: 15037 components: - rot: -1.5707963267948966 rad pos: 35.5,3.5 @@ -115539,7 +100713,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15037 + - uid: 15038 components: - rot: 3.141592653589793 rad pos: 20.5,-42.5 @@ -115547,7 +100721,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15038 + - uid: 15039 components: - rot: 1.5707963267948966 rad pos: -3.5,-53.5 @@ -115555,7 +100729,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15039 + - uid: 15040 components: - rot: 1.5707963267948966 rad pos: -1.5,-46.5 @@ -115563,21 +100737,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15040 + - uid: 15041 components: - pos: -7.5,-46.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15041 + - uid: 15042 components: - pos: -6.5,-63.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15042 + - uid: 15043 components: - rot: -1.5707963267948966 rad pos: 22.5,-5.5 @@ -115585,7 +100759,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15043 + - uid: 15044 components: - rot: 3.141592653589793 rad pos: 7.5,13.5 @@ -115593,21 +100767,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15044 + - uid: 15045 components: - pos: 36.5,5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15045 + - uid: 15046 components: - pos: 4.5,-3.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15046 + - uid: 15047 components: - rot: -1.5707963267948966 rad pos: 4.5,-6.5 @@ -115615,7 +100789,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15047 + - uid: 15048 components: - rot: 1.5707963267948966 rad pos: 3.5,-6.5 @@ -115623,14 +100797,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15048 + - uid: 15049 components: - pos: 29.5,21.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15049 + - uid: 15050 components: - rot: 3.141592653589793 rad pos: 29.5,18.5 @@ -115638,7 +100812,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15050 + - uid: 15051 components: - rot: 3.141592653589793 rad pos: -12.5,5.5 @@ -115646,7 +100820,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15051 + - uid: 15052 components: - rot: 1.5707963267948966 rad pos: -9.5,-1.5 @@ -115654,14 +100828,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15052 + - uid: 15053 components: - pos: -4.5,-60.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15053 + - uid: 15054 components: - rot: 1.5707963267948966 rad pos: -6.5,-60.5 @@ -115669,7 +100843,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15054 + - uid: 15055 components: - rot: -1.5707963267948966 rad pos: -6.5,-61.5 @@ -115677,7 +100851,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15055 + - uid: 15056 components: - rot: 1.5707963267948966 rad pos: 26.5,-22.5 @@ -115685,7 +100859,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15056 + - uid: 15057 components: - rot: 3.141592653589793 rad pos: 36.5,11.5 @@ -115695,7 +100869,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15057 + - uid: 15058 components: - rot: 1.5707963267948966 rad pos: 28.5,10.5 @@ -115703,14 +100877,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15058 + - uid: 15059 components: - pos: -12.5,7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15059 + - uid: 15060 components: - rot: 3.141592653589793 rad pos: 5.5,12.5 @@ -115718,14 +100892,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15060 + - uid: 15061 components: - pos: 34.5,5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15061 + - uid: 15062 components: - rot: 3.141592653589793 rad pos: 11.5,-43.5 @@ -115733,7 +100907,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15062 + - uid: 15063 components: - rot: 1.5707963267948966 rad pos: -14.5,-41.5 @@ -115741,7 +100915,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15063 + - uid: 15064 components: - rot: 1.5707963267948966 rad pos: -9.5,-53.5 @@ -115749,7 +100923,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15064 + - uid: 15065 components: - rot: 3.141592653589793 rad pos: -7.5,-63.5 @@ -115757,7 +100931,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15065 + - uid: 15066 components: - pos: 35.5,9.5 parent: 2 @@ -115766,7 +100940,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15066 + - uid: 15067 components: - rot: 3.141592653589793 rad pos: 17.5,-5.5 @@ -115774,7 +100948,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15067 + - uid: 15068 components: - rot: 1.5707963267948966 rad pos: 31.5,10.5 @@ -115782,7 +100956,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15068 + - uid: 15069 components: - rot: 3.141592653589793 rad pos: 29.5,15.5 @@ -115790,14 +100964,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15069 + - uid: 15070 components: - pos: 29.5,17.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15070 + - uid: 15071 components: - rot: 1.5707963267948966 rad pos: 25.5,12.5 @@ -115805,21 +100979,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15071 + - uid: 15072 components: - pos: 14.5,-27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15072 + - uid: 15073 components: - pos: 11.5,12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15073 + - uid: 15074 components: - rot: -1.5707963267948966 rad pos: 23.5,16.5 @@ -115827,7 +101001,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15074 + - uid: 15075 components: - rot: 3.141592653589793 rad pos: 26.5,9.5 @@ -115835,7 +101009,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15075 + - uid: 15076 components: - rot: 3.141592653589793 rad pos: 28.5,-35.5 @@ -115843,7 +101017,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15076 + - uid: 15077 components: - rot: 3.141592653589793 rad pos: 21.5,7.5 @@ -115851,7 +101025,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15077 + - uid: 15078 components: - rot: -1.5707963267948966 rad pos: 20.5,7.5 @@ -115859,7 +101033,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15078 + - uid: 15079 components: - rot: 1.5707963267948966 rad pos: 18.5,7.5 @@ -115867,14 +101041,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15079 + - uid: 15080 components: - pos: 1.5,1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15080 + - uid: 15081 components: - rot: 1.5707963267948966 rad pos: 1.5,-9.5 @@ -115882,7 +101056,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15081 + - uid: 15082 components: - rot: -1.5707963267948966 rad pos: 10.5,2.5 @@ -115890,7 +101064,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15082 + - uid: 15083 components: - rot: 1.5707963267948966 rad pos: 9.5,2.5 @@ -115898,7 +101072,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15083 + - uid: 15084 components: - rot: 3.141592653589793 rad pos: 9.5,-1.5 @@ -115906,14 +101080,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15084 + - uid: 15085 components: - pos: 11.5,-1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15085 + - uid: 15086 components: - rot: -1.5707963267948966 rad pos: 11.5,-9.5 @@ -115921,7 +101095,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15086 + - uid: 15087 components: - rot: 1.5707963267948966 rad pos: 19.5,21.5 @@ -115931,7 +101105,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15087 + - uid: 15088 components: - rot: 1.5707963267948966 rad pos: 23.5,20.5 @@ -115939,7 +101113,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15088 + - uid: 15089 components: - rot: -1.5707963267948966 rad pos: 25.5,20.5 @@ -115947,7 +101121,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15089 + - uid: 15090 components: - rot: -1.5707963267948966 rad pos: -23.5,-16.5 @@ -115955,7 +101129,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15090 + - uid: 15091 components: - rot: 1.5707963267948966 rad pos: 26.5,-6.5 @@ -115963,7 +101137,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15091 + - uid: 15092 components: - rot: 3.141592653589793 rad pos: 25.5,-7.5 @@ -115971,7 +101145,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15092 + - uid: 15093 components: - rot: 3.141592653589793 rad pos: 20.5,-23.5 @@ -115979,7 +101153,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15093 + - uid: 15094 components: - rot: 3.141592653589793 rad pos: 24.5,-52.5 @@ -115987,7 +101161,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15094 + - uid: 15095 components: - rot: -1.5707963267948966 rad pos: -10.5,5.5 @@ -115995,7 +101169,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15095 + - uid: 15096 components: - rot: 1.5707963267948966 rad pos: -10.5,7.5 @@ -116003,7 +101177,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15096 + - uid: 15097 components: - rot: 3.141592653589793 rad pos: -9.5,-5.5 @@ -116011,7 +101185,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15097 + - uid: 15098 components: - rot: 3.141592653589793 rad pos: -10.5,-6.5 @@ -116019,7 +101193,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15098 + - uid: 15099 components: - rot: 3.141592653589793 rad pos: -4.5,-61.5 @@ -116027,14 +101201,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15099 + - uid: 15100 components: - pos: 11.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15100 + - uid: 15101 components: - rot: 1.5707963267948966 rad pos: -21.5,-84.5 @@ -116042,14 +101216,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15101 + - uid: 15102 components: - pos: 36.5,8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15102 + - uid: 15103 components: - rot: -1.5707963267948966 rad pos: -3.5,7.5 @@ -116057,7 +101231,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15103 + - uid: 15104 components: - rot: 3.141592653589793 rad pos: -3.5,-60.5 @@ -116065,7 +101239,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15104 + - uid: 15105 components: - rot: 1.5707963267948966 rad pos: -7.5,-59.5 @@ -116073,7 +101247,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15105 + - uid: 15106 components: - rot: -1.5707963267948966 rad pos: -2.5,10.5 @@ -116081,14 +101255,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15106 + - uid: 15107 components: - pos: 1.5,7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15107 + - uid: 15108 components: - rot: 1.5707963267948966 rad pos: 34.5,10.5 @@ -116096,7 +101270,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15108 + - uid: 15109 components: - rot: 3.141592653589793 rad pos: 4.5,16.5 @@ -116104,7 +101278,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15109 + - uid: 15110 components: - pos: -4.5,14.5 parent: 2 @@ -116113,7 +101287,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15110 + - uid: 15111 components: - rot: 1.5707963267948966 rad pos: -6.5,14.5 @@ -116123,7 +101297,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15111 + - uid: 15112 components: - rot: -1.5707963267948966 rad pos: -6.5,8.5 @@ -116131,7 +101305,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15112 + - uid: 15113 components: - rot: 3.141592653589793 rad pos: -16.5,-38.5 @@ -116139,14 +101313,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15113 + - uid: 15114 components: - pos: -2.5,11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15114 + - uid: 15115 components: - rot: 3.141592653589793 rad pos: 1.5,5.5 @@ -116154,14 +101328,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15115 + - uid: 15116 components: - pos: 8.5,13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15116 + - uid: 15117 components: - rot: -1.5707963267948966 rad pos: 19.5,17.5 @@ -116169,7 +101343,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15117 + - uid: 15118 components: - rot: -1.5707963267948966 rad pos: 24.5,-31.5 @@ -116179,7 +101353,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15118 + - uid: 15119 components: - rot: 3.141592653589793 rad pos: 41.5,-27.5 @@ -116187,7 +101361,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15119 + - uid: 15120 components: - rot: 1.5707963267948966 rad pos: 23.5,-31.5 @@ -116197,7 +101371,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15120 + - uid: 15121 components: - rot: -1.5707963267948966 rad pos: -16.5,30.5 @@ -116205,7 +101379,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15121 + - uid: 15122 components: - rot: 1.5707963267948966 rad pos: -3.5,10.5 @@ -116213,7 +101387,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15122 + - uid: 15123 components: - rot: -1.5707963267948966 rad pos: 2.5,-14.5 @@ -116221,7 +101395,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15123 + - uid: 15124 components: - pos: 36.5,12.5 parent: 2 @@ -116230,7 +101404,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15124 + - uid: 15125 components: - rot: 3.141592653589793 rad pos: 0.5,7.5 @@ -116238,21 +101412,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15125 + - uid: 15126 components: - pos: 2.5,5.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15126 + - uid: 15127 components: - pos: 4.5,0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15127 + - uid: 15128 components: - rot: 3.141592653589793 rad pos: 4.5,-0.5 @@ -116260,7 +101434,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15128 + - uid: 15129 components: - rot: -1.5707963267948966 rad pos: -7.5,-53.5 @@ -116268,7 +101442,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15129 + - uid: 15130 components: - rot: 1.5707963267948966 rad pos: -8.5,8.5 @@ -116276,7 +101450,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15130 + - uid: 15131 components: - rot: 3.141592653589793 rad pos: 26.5,-18.5 @@ -116284,7 +101458,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15131 + - uid: 15132 components: - rot: 3.141592653589793 rad pos: 21.5,-18.5 @@ -116292,7 +101466,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15132 + - uid: 15133 components: - rot: 1.5707963267948966 rad pos: 10.5,11.5 @@ -116300,14 +101474,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15133 + - uid: 15134 components: - pos: 24.5,-23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15134 + - uid: 15135 components: - rot: -1.5707963267948966 rad pos: 3.5,-9.5 @@ -116315,7 +101489,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15135 + - uid: 15136 components: - rot: 3.141592653589793 rad pos: 1.5,-3.5 @@ -116323,7 +101497,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15136 + - uid: 15137 components: - rot: -1.5707963267948966 rad pos: -15.5,29.5 @@ -116331,7 +101505,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15137 + - uid: 15138 components: - rot: -1.5707963267948966 rad pos: 26.5,-35.5 @@ -116339,7 +101513,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15138 + - uid: 15139 components: - rot: 1.5707963267948966 rad pos: -24.5,-85.5 @@ -116347,7 +101521,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15139 + - uid: 15140 components: - rot: -1.5707963267948966 rad pos: 34.5,-6.5 @@ -116355,7 +101529,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15140 + - uid: 15141 components: - rot: 1.5707963267948966 rad pos: 15.5,-17.5 @@ -116363,7 +101537,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15141 + - uid: 15142 components: - rot: -1.5707963267948966 rad pos: -1.5,-53.5 @@ -116371,7 +101545,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15142 + - uid: 15143 components: - rot: 1.5707963267948966 rad pos: -23.5,-73.5 @@ -116379,7 +101553,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15143 + - uid: 15144 components: - rot: -1.5707963267948966 rad pos: 30.5,-22.5 @@ -116387,21 +101561,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15144 + - uid: 15145 components: - pos: 36.5,-16.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15145 + - uid: 15146 components: - pos: 34.5,-18.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15146 + - uid: 15147 components: - rot: 1.5707963267948966 rad pos: 41.5,-24.5 @@ -116409,7 +101583,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15147 + - uid: 15148 components: - rot: -1.5707963267948966 rad pos: 47.5,-28.5 @@ -116417,14 +101591,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15148 + - uid: 15149 components: - pos: 46.5,-23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15149 + - uid: 15150 components: - rot: 3.141592653589793 rad pos: 44.5,-28.5 @@ -116432,7 +101606,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15150 + - uid: 15151 components: - rot: 1.5707963267948966 rad pos: 44.5,-23.5 @@ -116440,7 +101614,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15151 + - uid: 15152 components: - rot: -1.5707963267948966 rad pos: -27.5,-79.5 @@ -116448,7 +101622,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15152 + - uid: 15153 components: - rot: 1.5707963267948966 rad pos: -25.5,-72.5 @@ -116456,7 +101630,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15153 + - uid: 15154 components: - rot: 1.5707963267948966 rad pos: -20.5,-61.5 @@ -116464,7 +101638,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15154 + - uid: 15155 components: - rot: 1.5707963267948966 rad pos: 32.5,-41.5 @@ -116472,7 +101646,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15155 + - uid: 15156 components: - rot: -1.5707963267948966 rad pos: 32.5,-42.5 @@ -116480,7 +101654,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15156 + - uid: 15157 components: - rot: 3.141592653589793 rad pos: 30.5,14.5 @@ -116488,7 +101662,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15157 + - uid: 15158 components: - rot: 3.141592653589793 rad pos: 47.5,21.5 @@ -116496,7 +101670,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15158 + - uid: 15159 components: - rot: 3.141592653589793 rad pos: 50.5,13.5 @@ -116504,7 +101678,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15159 + - uid: 15160 components: - rot: 3.141592653589793 rad pos: 49.5,12.5 @@ -116512,7 +101686,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15160 + - uid: 15161 components: - rot: -1.5707963267948966 rad pos: 58.5,12.5 @@ -116520,7 +101694,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15161 + - uid: 15162 components: - rot: 3.141592653589793 rad pos: 59.5,11.5 @@ -116528,7 +101702,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15162 + - uid: 15163 components: - rot: -1.5707963267948966 rad pos: 44.5,-3.5 @@ -116536,7 +101710,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15163 + - uid: 15164 components: - rot: 3.141592653589793 rad pos: 25.5,-60.5 @@ -116544,7 +101718,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15164 + - uid: 15165 components: - rot: 3.141592653589793 rad pos: 52.5,-11.5 @@ -116552,7 +101726,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15165 + - uid: 15166 components: - rot: 3.141592653589793 rad pos: 55.5,-12.5 @@ -116560,28 +101734,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15166 + - uid: 15167 components: - pos: 57.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15167 + - uid: 15168 components: - pos: 49.5,-52.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15168 + - uid: 15169 components: - pos: 63.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15169 + - uid: 15170 components: - rot: 3.141592653589793 rad pos: 62.5,-42.5 @@ -116589,7 +101763,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15170 + - uid: 15171 components: - rot: 1.5707963267948966 rad pos: 62.5,-35.5 @@ -116597,14 +101771,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15171 + - uid: 15172 components: - pos: 61.5,-35.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15172 + - uid: 15173 components: - rot: -1.5707963267948966 rad pos: 64.5,-35.5 @@ -116612,14 +101786,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15173 + - uid: 15174 components: - pos: 64.5,-32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15174 + - uid: 15175 components: - rot: 3.141592653589793 rad pos: 60.5,-35.5 @@ -116627,7 +101801,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15175 + - uid: 15176 components: - rot: -1.5707963267948966 rad pos: 61.5,-32.5 @@ -116635,7 +101809,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15176 + - uid: 15177 components: - rot: 3.141592653589793 rad pos: 63.5,-32.5 @@ -116643,7 +101817,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15177 + - uid: 15178 components: - rot: 1.5707963267948966 rad pos: 61.5,-10.5 @@ -116651,7 +101825,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15178 + - uid: 15179 components: - rot: -1.5707963267948966 rad pos: 62.5,-10.5 @@ -116659,14 +101833,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15179 + - uid: 15180 components: - pos: 64.5,-46.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15180 + - uid: 15181 components: - rot: 1.5707963267948966 rad pos: 60.5,-46.5 @@ -116674,7 +101848,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15181 + - uid: 15182 components: - rot: 1.5707963267948966 rad pos: 42.5,-45.5 @@ -116682,7 +101856,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15182 + - uid: 15183 components: - rot: 3.141592653589793 rad pos: 26.5,-58.5 @@ -116690,7 +101864,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15183 + - uid: 15184 components: - rot: -1.5707963267948966 rad pos: 34.5,-52.5 @@ -116698,7 +101872,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15184 + - uid: 15185 components: - rot: 3.141592653589793 rad pos: 28.5,-49.5 @@ -116706,19 +101880,19 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15185 + - uid: 15186 components: - rot: 3.141592653589793 rad pos: 50.5,-58.5 parent: 2 type: Transform - - uid: 15186 + - uid: 15187 components: - rot: 3.141592653589793 rad pos: 47.5,-58.5 parent: 2 type: Transform - - uid: 15187 + - uid: 15188 components: - rot: 1.5707963267948966 rad pos: -24.5,-22.5 @@ -116726,7 +101900,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15188 + - uid: 15189 components: - rot: 1.5707963267948966 rad pos: -23.5,-21.5 @@ -116734,7 +101908,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15189 + - uid: 15190 components: - rot: -1.5707963267948966 rad pos: -25.5,-17.5 @@ -116742,7 +101916,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15190 + - uid: 15191 components: - rot: 3.141592653589793 rad pos: 50.5,-54.5 @@ -116750,14 +101924,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15191 + - uid: 15192 components: - pos: 52.5,-54.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15192 + - uid: 15193 components: - rot: 3.141592653589793 rad pos: 52.5,-57.5 @@ -116765,28 +101939,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15193 + - uid: 15194 components: - pos: -14.5,6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15194 + - uid: 15195 components: - pos: -18.5,-4.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15195 + - uid: 15196 components: - pos: -20.5,-5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15196 + - uid: 15197 components: - rot: -1.5707963267948966 rad pos: -18.5,-46.5 @@ -116794,7 +101968,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15197 + - uid: 15198 components: - rot: 3.141592653589793 rad pos: -20.5,-47.5 @@ -116802,7 +101976,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15198 + - uid: 15199 components: - rot: 1.5707963267948966 rad pos: 2.5,-56.5 @@ -116810,7 +101984,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15199 + - uid: 15200 components: - rot: 3.141592653589793 rad pos: -42.5,-15.5 @@ -116818,7 +101992,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15200 + - uid: 15201 components: - rot: 1.5707963267948966 rad pos: -26.5,6.5 @@ -116826,7 +102000,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15201 + - uid: 15202 components: - rot: 3.141592653589793 rad pos: -26.5,-5.5 @@ -116834,7 +102008,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15202 + - uid: 15203 components: - rot: 3.141592653589793 rad pos: -24.5,-4.5 @@ -116842,7 +102016,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15203 + - uid: 15204 components: - rot: 1.5707963267948966 rad pos: -24.5,7.5 @@ -116850,7 +102024,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15204 + - uid: 15205 components: - rot: 1.5707963267948966 rad pos: -44.5,-11.5 @@ -116858,7 +102032,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15205 + - uid: 15206 components: - rot: 3.141592653589793 rad pos: -44.5,-10.5 @@ -116866,28 +102040,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15206 + - uid: 15207 components: - pos: -42.5,-6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15207 + - uid: 15208 components: - pos: -41.5,-5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15208 + - uid: 15209 components: - pos: -31.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15209 + - uid: 15210 components: - rot: 1.5707963267948966 rad pos: -53.5,-5.5 @@ -116895,7 +102069,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15210 + - uid: 15211 components: - rot: 1.5707963267948966 rad pos: -52.5,-6.5 @@ -116903,21 +102077,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15211 + - uid: 15212 components: - pos: -50.5,-17.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15212 + - uid: 15213 components: - pos: -51.5,-19.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15213 + - uid: 15214 components: - rot: 3.141592653589793 rad pos: -51.5,-25.5 @@ -116925,7 +102099,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15214 + - uid: 15215 components: - rot: 3.141592653589793 rad pos: -50.5,-24.5 @@ -116933,7 +102107,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15215 + - uid: 15216 components: - rot: -1.5707963267948966 rad pos: -47.5,-24.5 @@ -116943,7 +102117,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15216 + - uid: 15217 components: - rot: -1.5707963267948966 rad pos: -45.5,-25.5 @@ -116953,7 +102127,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15217 + - uid: 15218 components: - rot: 1.5707963267948966 rad pos: -54.5,-17.5 @@ -116961,7 +102135,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15218 + - uid: 15219 components: - rot: -1.5707963267948966 rad pos: -54.5,-23.5 @@ -116969,7 +102143,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15219 + - uid: 15220 components: - rot: -1.5707963267948966 rad pos: -53.5,-25.5 @@ -116977,7 +102151,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15220 + - uid: 15221 components: - rot: 3.141592653589793 rad pos: -50.5,-55.5 @@ -116985,7 +102159,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 15221 + - uid: 15222 components: - rot: 3.141592653589793 rad pos: -50.5,-53.5 @@ -116993,7 +102167,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 15222 + - uid: 15223 components: - rot: 3.141592653589793 rad pos: -50.5,-51.5 @@ -117001,7 +102175,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 15223 + - uid: 15224 components: - rot: 3.141592653589793 rad pos: -50.5,-49.5 @@ -117009,7 +102183,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 15224 + - uid: 15225 components: - rot: 3.141592653589793 rad pos: -50.5,-47.5 @@ -117017,7 +102191,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 15225 + - uid: 15226 components: - rot: 3.141592653589793 rad pos: -50.5,-45.5 @@ -117025,7 +102199,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 15226 + - uid: 15227 components: - rot: 3.141592653589793 rad pos: -50.5,-43.5 @@ -117033,7 +102207,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 15227 + - uid: 15228 components: - rot: 1.5707963267948966 rad pos: -43.5,-52.5 @@ -117041,7 +102215,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 15228 + - uid: 15229 components: - rot: 3.141592653589793 rad pos: -44.5,-57.5 @@ -117049,7 +102223,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 15229 + - uid: 15230 components: - pos: -37.5,-48.5 parent: 2 @@ -117058,7 +102232,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15230 + - uid: 15231 components: - rot: 1.5707963267948966 rad pos: -40.5,-48.5 @@ -117068,7 +102242,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15231 + - uid: 15232 components: - rot: -1.5707963267948966 rad pos: -34.5,-57.5 @@ -117076,7 +102250,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15232 + - uid: 15233 components: - rot: 1.5707963267948966 rad pos: -34.5,-40.5 @@ -117084,7 +102258,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15233 + - uid: 15234 components: - rot: -1.5707963267948966 rad pos: -32.5,-40.5 @@ -117092,7 +102266,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15234 + - uid: 15235 components: - rot: 1.5707963267948966 rad pos: -35.5,-41.5 @@ -117100,7 +102274,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15235 + - uid: 15236 components: - rot: -1.5707963267948966 rad pos: -31.5,-41.5 @@ -117108,14 +102282,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15236 + - uid: 15237 components: - pos: -38.5,-35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15237 + - uid: 15238 components: - rot: 3.141592653589793 rad pos: -40.5,-35.5 @@ -117123,14 +102297,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15238 + - uid: 15239 components: - pos: -40.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15239 + - uid: 15240 components: - rot: 3.141592653589793 rad pos: -20.5,-60.5 @@ -117138,7 +102312,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15240 + - uid: 15241 components: - rot: 1.5707963267948966 rad pos: -42.5,-69.5 @@ -117146,7 +102320,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15241 + - uid: 15242 components: - pos: -20.5,-58.5 parent: 2 @@ -117155,7 +102329,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15242 + - uid: 15243 components: - rot: 1.5707963267948966 rad pos: -25.5,-57.5 @@ -117163,21 +102337,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15243 + - uid: 15244 components: - pos: -41.5,31.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15244 + - uid: 15245 components: - pos: -40.5,33.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15245 + - uid: 15246 components: - rot: -1.5707963267948966 rad pos: -49.5,31.5 @@ -117185,7 +102359,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15246 + - uid: 15247 components: - rot: 1.5707963267948966 rad pos: -37.5,13.5 @@ -117193,7 +102367,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15247 + - uid: 15248 components: - rot: 1.5707963267948966 rad pos: -38.5,14.5 @@ -117201,19 +102375,19 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15248 + - uid: 15249 components: - rot: -1.5707963267948966 rad pos: -33.5,-53.5 parent: 2 type: Transform - - uid: 15249 + - uid: 15250 components: - rot: -1.5707963267948966 rad pos: -33.5,-55.5 parent: 2 type: Transform - - uid: 15250 + - uid: 15251 components: - rot: 1.5707963267948966 rad pos: 19.5,-53.5 @@ -117223,7 +102397,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15251 + - uid: 15252 components: - rot: 1.5707963267948966 rad pos: -45.5,-71.5 @@ -117233,7 +102407,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15252 + - uid: 15253 components: - rot: -1.5707963267948966 rad pos: -45.5,-76.5 @@ -117241,7 +102415,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15253 + - uid: 15254 components: - rot: -1.5707963267948966 rad pos: -40.5,-72.5 @@ -117249,7 +102423,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15254 + - uid: 15255 components: - rot: 1.5707963267948966 rad pos: -46.5,-72.5 @@ -117257,7 +102431,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15255 + - uid: 15256 components: - rot: -1.5707963267948966 rad pos: -46.5,-75.5 @@ -117265,7 +102439,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15256 + - uid: 15257 components: - rot: 3.141592653589793 rad pos: -54.5,-75.5 @@ -117273,7 +102447,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15257 + - uid: 15258 components: - rot: 1.5707963267948966 rad pos: -54.5,-76.5 @@ -117281,7 +102455,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15258 + - uid: 15259 components: - rot: -1.5707963267948966 rad pos: -19.5,-43.5 @@ -117289,7 +102463,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15259 + - uid: 15260 components: - rot: 1.5707963267948966 rad pos: -19.5,-41.5 @@ -117297,14 +102471,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15260 + - uid: 15261 components: - pos: -15.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15261 + - uid: 15262 components: - rot: 3.141592653589793 rad pos: -15.5,-43.5 @@ -117312,7 +102486,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15262 + - uid: 15263 components: - rot: -1.5707963267948966 rad pos: 2.5,11.5 @@ -117320,7 +102494,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15263 + - uid: 15264 components: - rot: 3.141592653589793 rad pos: 1.5,11.5 @@ -117328,7 +102502,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15264 + - uid: 15265 components: - rot: 1.5707963267948966 rad pos: -72.5,-23.5 @@ -117336,14 +102510,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15265 + - uid: 15266 components: - pos: -5.5,-64.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15266 + - uid: 15267 components: - rot: 1.5707963267948966 rad pos: 45.5,27.5 @@ -117353,7 +102527,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15267 + - uid: 15268 components: - rot: 1.5707963267948966 rad pos: 44.5,26.5 @@ -117361,7 +102535,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15268 + - uid: 15269 components: - rot: -1.5707963267948966 rad pos: 52.5,27.5 @@ -117369,7 +102543,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15269 + - uid: 15270 components: - rot: -1.5707963267948966 rad pos: 54.5,26.5 @@ -117377,14 +102551,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15270 + - uid: 15271 components: - pos: -15.5,45.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15271 + - uid: 15272 components: - rot: 3.141592653589793 rad pos: -17.5,45.5 @@ -117392,7 +102566,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15272 + - uid: 15273 components: - rot: 1.5707963267948966 rad pos: 47.5,50.5 @@ -117400,7 +102574,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15273 + - uid: 15274 components: - rot: 1.5707963267948966 rad pos: 45.5,49.5 @@ -117408,7 +102582,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15274 + - uid: 15275 components: - rot: -1.5707963267948966 rad pos: 47.5,46.5 @@ -117416,7 +102590,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15275 + - uid: 15276 components: - rot: -1.5707963267948966 rad pos: 45.5,45.5 @@ -117424,7 +102598,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15276 + - uid: 15277 components: - rot: 3.141592653589793 rad pos: 2.5,69.5 @@ -117432,7 +102606,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15277 + - uid: 15278 components: - rot: -1.5707963267948966 rad pos: -5.5,69.5 @@ -117440,14 +102614,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15278 + - uid: 15279 components: - pos: 3.5,69.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15279 + - uid: 15280 components: - rot: 1.5707963267948966 rad pos: -6.5,69.5 @@ -117455,7 +102629,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15280 + - uid: 15281 components: - rot: -1.5707963267948966 rad pos: -1.5,67.5 @@ -117463,7 +102637,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15281 + - uid: 15282 components: - rot: 1.5707963267948966 rad pos: -2.5,67.5 @@ -117471,7 +102645,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15282 + - uid: 15283 components: - rot: -1.5707963267948966 rad pos: -0.5,46.5 @@ -117479,7 +102653,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15283 + - uid: 15284 components: - rot: -1.5707963267948966 rad pos: 1.5,44.5 @@ -117487,7 +102661,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15284 + - uid: 15285 components: - rot: 3.141592653589793 rad pos: -21.5,51.5 @@ -117495,7 +102669,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15285 + - uid: 15286 components: - rot: 3.141592653589793 rad pos: -22.5,50.5 @@ -117503,7 +102677,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15286 + - uid: 15287 components: - rot: -1.5707963267948966 rad pos: -13.5,51.5 @@ -117511,7 +102685,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15287 + - uid: 15288 components: - rot: -1.5707963267948966 rad pos: -12.5,50.5 @@ -117519,28 +102693,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15288 + - uid: 15289 components: - pos: 1.5,59.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15289 + - uid: 15290 components: - pos: -0.5,58.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15290 + - uid: 15291 components: - pos: 40.5,47.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15291 + - uid: 15292 components: - rot: -1.5707963267948966 rad pos: 40.5,44.5 @@ -117548,7 +102722,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15292 + - uid: 15293 components: - rot: 1.5707963267948966 rad pos: 29.5,47.5 @@ -117556,7 +102730,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15293 + - uid: 15294 components: - rot: 1.5707963267948966 rad pos: 23.5,46.5 @@ -117564,7 +102738,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15294 + - uid: 15295 components: - rot: 3.141592653589793 rad pos: 29.5,44.5 @@ -117572,7 +102746,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15295 + - uid: 15296 components: - rot: 3.141592653589793 rad pos: -22.5,-98.5 @@ -117580,7 +102754,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15296 + - uid: 15297 components: - rot: -1.5707963267948966 rad pos: -6.5,-93.5 @@ -117588,34 +102762,34 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15297 + - uid: 15298 components: - rot: -1.5707963267948966 rad pos: -70.5,-43.5 parent: 2 type: Transform - - uid: 15298 + - uid: 15299 components: - pos: 62.5,-6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15299 + - uid: 15300 components: - pos: 75.5,-33.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15300 + - uid: 15301 components: - pos: 74.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15301 + - uid: 15302 components: - rot: -1.5707963267948966 rad pos: 73.5,-48.5 @@ -117623,7 +102797,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15302 + - uid: 15303 components: - rot: -1.5707963267948966 rad pos: 75.5,-46.5 @@ -117631,7 +102805,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15303 + - uid: 15304 components: - rot: 1.5707963267948966 rad pos: 73.5,-46.5 @@ -117639,7 +102813,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15304 + - uid: 15305 components: - rot: -1.5707963267948966 rad pos: 71.5,-47.5 @@ -117647,7 +102821,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15305 + - uid: 15306 components: - rot: 1.5707963267948966 rad pos: 71.5,-45.5 @@ -117655,7 +102829,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15306 + - uid: 15307 components: - rot: -1.5707963267948966 rad pos: 74.5,-45.5 @@ -117663,14 +102837,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15307 + - uid: 15308 components: - pos: 72.5,-36.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15308 + - uid: 15309 components: - rot: 3.141592653589793 rad pos: 72.5,-37.5 @@ -117678,7 +102852,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15309 + - uid: 15310 components: - rot: -1.5707963267948966 rad pos: 67.5,-37.5 @@ -117686,18 +102860,18 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15310 + - uid: 15311 components: - pos: -56.5,-58.5 parent: 2 type: Transform - - uid: 15311 + - uid: 15312 components: - rot: 3.141592653589793 rad pos: -57.5,-60.5 parent: 2 type: Transform - - uid: 15312 + - uid: 15313 components: - rot: 3.141592653589793 rad pos: -56.5,-61.5 @@ -117705,25 +102879,25 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 15313 + - uid: 15314 components: - pos: -55.5,-61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 15314 + - uid: 15315 components: - pos: 55.5,-48.5 parent: 2 type: Transform - - uid: 15315 + - uid: 15316 components: - rot: 3.141592653589793 rad pos: 53.5,-48.5 parent: 2 type: Transform - - uid: 15316 + - uid: 15317 components: - rot: 3.141592653589793 rad pos: 53.5,-6.5 @@ -117731,7 +102905,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15317 + - uid: 15318 components: - rot: 1.5707963267948966 rad pos: 67.5,-36.5 @@ -117739,7 +102913,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15318 + - uid: 15319 components: - rot: 3.141592653589793 rad pos: -10.5,-21.5 @@ -117747,14 +102921,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15319 + - uid: 15320 components: - pos: -8.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15320 + - uid: 15321 components: - rot: 3.141592653589793 rad pos: -25.5,-60.5 @@ -117764,7 +102938,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15321 + - uid: 15322 components: - rot: -1.5707963267948966 rad pos: -22.5,-62.5 @@ -117772,7 +102946,7 @@ entities: type: Transform - color: '#97C3FCCC' type: AtmosPipeColor - - uid: 15322 + - uid: 15323 components: - rot: 3.141592653589793 rad pos: -23.5,-62.5 @@ -117780,7 +102954,7 @@ entities: type: Transform - color: '#97C3FCCC' type: AtmosPipeColor - - uid: 15323 + - uid: 15324 components: - rot: 1.5707963267948966 rad pos: -48.5,-35.5 @@ -117788,7 +102962,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 15324 + - uid: 15325 components: - rot: 1.5707963267948966 rad pos: 18.5,-82.5 @@ -117796,7 +102970,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15325 + - uid: 15326 components: - rot: 3.141592653589793 rad pos: 25.5,-72.5 @@ -117804,7 +102978,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15326 + - uid: 15327 components: - rot: 3.141592653589793 rad pos: 24.5,-73.5 @@ -117812,7 +102986,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15327 + - uid: 15328 components: - rot: 3.141592653589793 rad pos: 29.5,-85.5 @@ -117820,7 +102994,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15328 + - uid: 15329 components: - rot: 3.141592653589793 rad pos: 47.5,-86.5 @@ -117828,7 +103002,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15329 + - uid: 15330 components: - rot: -1.5707963267948966 rad pos: 45.5,6.5 @@ -117836,7 +103010,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15330 + - uid: 15331 components: - rot: 3.141592653589793 rad pos: -45.5,33.5 @@ -117844,7 +103018,9 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15331 + - nextSound: 1362.0315417 + type: EmitSoundOnCollide + - uid: 15332 components: - rot: 3.141592653589793 rad pos: -47.5,31.5 @@ -117852,7 +103028,9 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15332 + - nextSound: 1374.2225868 + type: EmitSoundOnCollide + - uid: 15333 components: - rot: -1.5707963267948966 rad pos: -46.5,34.5 @@ -117860,7 +103038,9 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15333 + - nextSound: 1376.9106127 + type: EmitSoundOnCollide + - uid: 15334 components: - rot: 1.5707963267948966 rad pos: -47.5,34.5 @@ -117868,58 +103048,60 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor + - nextSound: 1378.3321626 + type: EmitSoundOnCollide - proto: GasPipeFourway entities: - - uid: 15334 + - uid: 15335 components: - pos: 38.5,1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15335 + - uid: 15336 components: - pos: 31.5,12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15336 + - uid: 15337 components: - pos: 21.5,16.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15337 + - uid: 15338 components: - pos: 31.5,15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15338 + - uid: 15339 components: - pos: 21.5,12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15339 + - uid: 15340 components: - pos: 17.5,17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15340 + - uid: 15341 components: - pos: 34.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15341 + - uid: 15342 components: - pos: -24.5,-60.5 parent: 2 @@ -117928,177 +103110,179 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15342 + - uid: 15343 components: - pos: 26.5,-30.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15343 + - uid: 15344 components: - pos: -5.5,-27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15344 + - uid: 15345 components: - pos: -33.5,20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15345 + - uid: 15346 components: - pos: -3.5,-25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15346 + - uid: 15347 components: - pos: 30.5,-18.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15347 + - uid: 15348 components: - pos: -32.5,23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15348 + - uid: 15349 components: - pos: 24.5,-29.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15349 + - uid: 15350 components: - pos: -18.5,29.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15350 + - uid: 15351 components: - pos: 49.5,20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15351 + - uid: 15352 components: - pos: 50.5,21.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15352 + - uid: 15353 components: - pos: 42.5,1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15353 + - uid: 15354 components: - pos: 44.5,-1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15354 + - uid: 15355 components: - pos: 64.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15355 + - uid: 15356 components: - pos: 29.5,-47.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15356 + - uid: 15357 components: - pos: -41.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15357 + - uid: 15358 components: - pos: -42.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15358 + - uid: 15359 components: - pos: -20.5,30.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15359 + - uid: 15360 components: - pos: -31.5,-34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15360 + - uid: 15361 components: - pos: -32.5,-33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15361 + - uid: 15362 components: - pos: -45.5,11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15362 + - uid: 15363 components: - pos: -5.5,-14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15363 + - uid: 15364 components: - pos: -16.5,43.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15364 + - uid: 15365 components: - pos: -15.5,44.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15365 + - uid: 15366 components: - pos: 68.5,-33.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor + - nextSound: 696.6078358 + type: EmitSoundOnCollide - proto: GasPipeStraight entities: - - uid: 15366 + - uid: 15367 components: - rot: 1.5707963267948966 rad pos: -11.5,5.5 @@ -118108,7 +103292,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15367 + - uid: 15368 components: - rot: 3.141592653589793 rad pos: 38.5,10.5 @@ -118116,7 +103300,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15368 + - uid: 15369 components: - rot: 3.141592653589793 rad pos: 26.5,-26.5 @@ -118126,7 +103310,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15369 + - uid: 15370 components: - rot: 1.5707963267948966 rad pos: 32.5,9.5 @@ -118136,7 +103320,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15370 + - uid: 15371 components: - pos: 28.5,-31.5 parent: 2 @@ -118145,7 +103329,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15371 + - uid: 15372 components: - rot: 3.141592653589793 rad pos: 42.5,10.5 @@ -118153,21 +103337,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15372 + - uid: 15373 components: - pos: -18.5,31.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15373 + - uid: 15374 components: - pos: 46.5,-25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15374 + - uid: 15375 components: - rot: 3.141592653589793 rad pos: 34.5,-36.5 @@ -118175,14 +103359,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15375 + - uid: 15376 components: - pos: 46.5,-24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15376 + - uid: 15377 components: - rot: -1.5707963267948966 rad pos: 24.5,-42.5 @@ -118190,14 +103374,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15377 + - uid: 15378 components: - pos: 34.5,-21.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15378 + - uid: 15379 components: - rot: 3.141592653589793 rad pos: -9.5,-40.5 @@ -118207,7 +103391,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15379 + - uid: 15380 components: - rot: 3.141592653589793 rad pos: -5.5,-34.5 @@ -118215,7 +103399,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15380 + - uid: 15381 components: - rot: -1.5707963267948966 rad pos: -12.5,-41.5 @@ -118223,7 +103407,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15381 + - uid: 15382 components: - rot: 3.141592653589793 rad pos: -14.5,-42.5 @@ -118231,7 +103415,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15382 + - uid: 15383 components: - rot: 3.141592653589793 rad pos: -14.5,-44.5 @@ -118241,7 +103425,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15383 + - uid: 15384 components: - rot: 1.5707963267948966 rad pos: -14.5,-60.5 @@ -118249,7 +103433,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15384 + - uid: 15385 components: - rot: 3.141592653589793 rad pos: -12.5,-44.5 @@ -118259,7 +103443,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15385 + - uid: 15386 components: - rot: 1.5707963267948966 rad pos: -10.5,-42.5 @@ -118267,42 +103451,42 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15386 + - uid: 15387 components: - pos: -7.5,-48.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15387 + - uid: 15388 components: - pos: -7.5,-47.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15388 + - uid: 15389 components: - pos: -0.5,-45.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15389 + - uid: 15390 components: - pos: -0.5,-44.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15390 + - uid: 15391 components: - pos: -0.5,-43.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15391 + - uid: 15392 components: - rot: -1.5707963267948966 rad pos: 1.5,-41.5 @@ -118310,14 +103494,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15392 + - uid: 15393 components: - pos: -8.5,-45.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15393 + - uid: 15394 components: - rot: 3.141592653589793 rad pos: 3.5,-44.5 @@ -118327,14 +103511,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15394 + - uid: 15395 components: - pos: -12.5,-61.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15395 + - uid: 15396 components: - rot: 3.141592653589793 rad pos: -7.5,-62.5 @@ -118344,7 +103528,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15396 + - uid: 15397 components: - rot: -1.5707963267948966 rad pos: -4.5,-59.5 @@ -118352,7 +103536,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15397 + - uid: 15398 components: - rot: -1.5707963267948966 rad pos: -6.5,-59.5 @@ -118360,7 +103544,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15398 + - uid: 15399 components: - rot: -1.5707963267948966 rad pos: 27.5,-6.5 @@ -118368,7 +103552,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15399 + - uid: 15400 components: - rot: -1.5707963267948966 rad pos: 29.5,-6.5 @@ -118376,7 +103560,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15400 + - uid: 15401 components: - rot: 3.141592653589793 rad pos: 40.5,6.5 @@ -118384,7 +103568,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15401 + - uid: 15402 components: - pos: 46.5,-26.5 parent: 2 @@ -118393,28 +103577,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15402 + - uid: 15403 components: - pos: 46.5,-27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15403 + - uid: 15404 components: - pos: 46.5,-28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15404 + - uid: 15405 components: - pos: 46.5,-29.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15405 + - uid: 15406 components: - pos: 8.5,11.5 parent: 2 @@ -118423,14 +103607,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15406 + - uid: 15407 components: - pos: 8.5,7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15407 + - uid: 15408 components: - rot: -1.5707963267948966 rad pos: -12.5,-38.5 @@ -118438,7 +103622,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15408 + - uid: 15409 components: - rot: 3.141592653589793 rad pos: 34.5,-32.5 @@ -118446,7 +103630,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15409 + - uid: 15410 components: - rot: 1.5707963267948966 rad pos: 9.5,17.5 @@ -118454,7 +103638,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15410 + - uid: 15411 components: - rot: 1.5707963267948966 rad pos: 6.5,8.5 @@ -118462,7 +103646,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15411 + - uid: 15412 components: - rot: -1.5707963267948966 rad pos: 45.5,-23.5 @@ -118470,14 +103654,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15412 + - uid: 15413 components: - pos: 30.5,-21.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15413 + - uid: 15414 components: - rot: 3.141592653589793 rad pos: 34.5,-35.5 @@ -118485,7 +103669,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15414 + - uid: 15415 components: - rot: 3.141592653589793 rad pos: -5.5,-35.5 @@ -118493,7 +103677,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15415 + - uid: 15416 components: - rot: 1.5707963267948966 rad pos: 3.5,-3.5 @@ -118501,7 +103685,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15416 + - uid: 15417 components: - rot: 3.141592653589793 rad pos: 4.5,-5.5 @@ -118509,21 +103693,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15417 + - uid: 15418 components: - pos: 3.5,-7.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15418 + - uid: 15419 components: - pos: 3.5,-8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15419 + - uid: 15420 components: - rot: -1.5707963267948966 rad pos: 20.5,21.5 @@ -118531,7 +103715,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15420 + - uid: 15421 components: - rot: 1.5707963267948966 rad pos: 23.5,21.5 @@ -118539,7 +103723,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15421 + - uid: 15422 components: - rot: 1.5707963267948966 rad pos: 24.5,21.5 @@ -118547,7 +103731,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15422 + - uid: 15423 components: - rot: 1.5707963267948966 rad pos: 25.5,21.5 @@ -118555,7 +103739,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15423 + - uid: 15424 components: - rot: 1.5707963267948966 rad pos: 28.5,21.5 @@ -118563,21 +103747,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15424 + - uid: 15425 components: - pos: 29.5,20.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15425 + - uid: 15426 components: - pos: 29.5,19.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15426 + - uid: 15427 components: - rot: 3.141592653589793 rad pos: 30.5,17.5 @@ -118585,14 +103769,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15427 + - uid: 15428 components: - pos: 24.5,-25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15428 + - uid: 15429 components: - rot: -1.5707963267948966 rad pos: 2.5,-61.5 @@ -118600,7 +103784,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15429 + - uid: 15430 components: - rot: 1.5707963267948966 rad pos: 4.5,-61.5 @@ -118608,7 +103792,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15430 + - uid: 15431 components: - rot: -1.5707963267948966 rad pos: -7.5,-61.5 @@ -118616,7 +103800,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15431 + - uid: 15432 components: - pos: -8.5,-62.5 parent: 2 @@ -118625,7 +103809,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15432 + - uid: 15433 components: - rot: 3.141592653589793 rad pos: -0.5,-63.5 @@ -118633,7 +103817,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15433 + - uid: 15434 components: - rot: 1.5707963267948966 rad pos: -2.5,-60.5 @@ -118641,7 +103825,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15434 + - uid: 15435 components: - rot: -1.5707963267948966 rad pos: 5.5,-60.5 @@ -118649,7 +103833,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15435 + - uid: 15436 components: - rot: -1.5707963267948966 rad pos: 6.5,-60.5 @@ -118657,7 +103841,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15436 + - uid: 15437 components: - rot: -1.5707963267948966 rad pos: 7.5,-60.5 @@ -118665,7 +103849,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15437 + - uid: 15438 components: - rot: -1.5707963267948966 rad pos: 8.5,-60.5 @@ -118673,7 +103857,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15438 + - uid: 15439 components: - rot: -1.5707963267948966 rad pos: 5.5,-61.5 @@ -118681,7 +103865,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15439 + - uid: 15440 components: - rot: -1.5707963267948966 rad pos: 7.5,-61.5 @@ -118691,7 +103875,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15440 + - uid: 15441 components: - rot: -1.5707963267948966 rad pos: 8.5,-61.5 @@ -118699,7 +103883,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15441 + - uid: 15442 components: - rot: 3.141592653589793 rad pos: -5.5,-28.5 @@ -118707,14 +103891,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15442 + - uid: 15443 components: - pos: -3.5,-35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15443 + - uid: 15444 components: - rot: -1.5707963267948966 rad pos: 28.5,-43.5 @@ -118722,7 +103906,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15444 + - uid: 15445 components: - rot: 1.5707963267948966 rad pos: -36.5,20.5 @@ -118730,14 +103914,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15445 + - uid: 15446 components: - pos: -20.5,-83.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15446 + - uid: 15447 components: - pos: -20.5,-74.5 parent: 2 @@ -118746,21 +103930,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15447 + - uid: 15448 components: - pos: -25.5,-75.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15448 + - uid: 15449 components: - pos: -25.5,-73.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15449 + - uid: 15450 components: - rot: 1.5707963267948966 rad pos: -24.5,-72.5 @@ -118768,7 +103952,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15450 + - uid: 15451 components: - pos: 35.5,6.5 parent: 2 @@ -118777,7 +103961,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15451 + - uid: 15452 components: - rot: 1.5707963267948966 rad pos: 33.5,9.5 @@ -118787,7 +103971,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15452 + - uid: 15453 components: - rot: 3.141592653589793 rad pos: 2.5,-3.5 @@ -118795,7 +103979,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15453 + - uid: 15454 components: - rot: 1.5707963267948966 rad pos: -25.5,-80.5 @@ -118803,7 +103987,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15454 + - uid: 15455 components: - rot: 3.141592653589793 rad pos: 5.5,13.5 @@ -118811,28 +103995,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15455 + - uid: 15456 components: - pos: -3.5,-29.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15456 + - uid: 15457 components: - pos: -3.5,-28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15457 + - uid: 15458 components: - pos: -3.5,-26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15458 + - uid: 15459 components: - rot: 1.5707963267948966 rad pos: -5.5,-25.5 @@ -118840,7 +104024,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15459 + - uid: 15460 components: - rot: 3.141592653589793 rad pos: -11.5,-26.5 @@ -118848,7 +104032,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15460 + - uid: 15461 components: - rot: 1.5707963267948966 rad pos: -6.5,-27.5 @@ -118856,7 +104040,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15461 + - uid: 15462 components: - rot: 1.5707963267948966 rad pos: 0.5,-25.5 @@ -118864,7 +104048,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15462 + - uid: 15463 components: - pos: 3.5,-28.5 parent: 2 @@ -118873,7 +104057,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15463 + - uid: 15464 components: - rot: 1.5707963267948966 rad pos: 3.5,-25.5 @@ -118881,7 +104065,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15464 + - uid: 15465 components: - rot: 1.5707963267948966 rad pos: 1.5,-25.5 @@ -118889,7 +104073,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15465 + - uid: 15466 components: - rot: 3.141592653589793 rad pos: -5.5,-36.5 @@ -118897,7 +104081,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15466 + - uid: 15467 components: - rot: 3.141592653589793 rad pos: -5.5,-37.5 @@ -118905,7 +104089,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15467 + - uid: 15468 components: - rot: 3.141592653589793 rad pos: -5.5,-38.5 @@ -118913,7 +104097,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15468 + - uid: 15469 components: - rot: 3.141592653589793 rad pos: -5.5,-39.5 @@ -118921,7 +104105,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15469 + - uid: 15470 components: - rot: 3.141592653589793 rad pos: -5.5,-40.5 @@ -118929,7 +104113,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15470 + - uid: 15471 components: - rot: 1.5707963267948966 rad pos: 9.5,-27.5 @@ -118937,7 +104121,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15471 + - uid: 15472 components: - rot: 3.141592653589793 rad pos: 14.5,-28.5 @@ -118945,7 +104129,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15472 + - uid: 15473 components: - rot: 1.5707963267948966 rad pos: 13.5,-27.5 @@ -118953,7 +104137,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15473 + - uid: 15474 components: - rot: 1.5707963267948966 rad pos: 13.5,-25.5 @@ -118961,7 +104145,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15474 + - uid: 15475 components: - rot: 3.141592653589793 rad pos: 14.5,-35.5 @@ -118969,14 +104153,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15475 + - uid: 15476 components: - pos: 15.5,-37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15476 + - uid: 15477 components: - rot: 1.5707963267948966 rad pos: 22.5,-43.5 @@ -118984,7 +104168,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15477 + - uid: 15478 components: - rot: 1.5707963267948966 rad pos: 12.5,-25.5 @@ -118992,7 +104176,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15478 + - uid: 15479 components: - rot: 1.5707963267948966 rad pos: 21.5,-43.5 @@ -119000,7 +104184,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15479 + - uid: 15480 components: - rot: 1.5707963267948966 rad pos: 30.5,-43.5 @@ -119008,14 +104192,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15480 + - uid: 15481 components: - pos: 20.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15481 + - uid: 15482 components: - pos: 20.5,-19.5 parent: 2 @@ -119024,7 +104208,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15482 + - uid: 15483 components: - rot: -1.5707963267948966 rad pos: 23.5,-12.5 @@ -119034,7 +104218,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15483 + - uid: 15484 components: - rot: -1.5707963267948966 rad pos: 25.5,-12.5 @@ -119042,7 +104226,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15484 + - uid: 15485 components: - rot: 1.5707963267948966 rad pos: 4.5,19.5 @@ -119050,7 +104234,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15485 + - uid: 15486 components: - rot: -1.5707963267948966 rad pos: 21.5,21.5 @@ -119058,7 +104242,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15486 + - uid: 15487 components: - pos: 19.5,20.5 parent: 2 @@ -119067,7 +104251,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15487 + - uid: 15488 components: - rot: -1.5707963267948966 rad pos: 35.5,12.5 @@ -119075,7 +104259,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15488 + - uid: 15489 components: - rot: 1.5707963267948966 rad pos: 16.5,-43.5 @@ -119083,7 +104267,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15489 + - uid: 15490 components: - rot: 1.5707963267948966 rad pos: 18.5,-43.5 @@ -119091,7 +104275,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15490 + - uid: 15491 components: - pos: 0.5,15.5 parent: 2 @@ -119100,7 +104284,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15491 + - uid: 15492 components: - rot: 3.141592653589793 rad pos: 40.5,4.5 @@ -119108,7 +104292,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15492 + - uid: 15493 components: - rot: 3.141592653589793 rad pos: 42.5,8.5 @@ -119116,7 +104300,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15493 + - uid: 15494 components: - rot: 1.5707963267948966 rad pos: 16.5,-41.5 @@ -119124,7 +104308,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15494 + - uid: 15495 components: - rot: 1.5707963267948966 rad pos: 18.5,-41.5 @@ -119132,14 +104316,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15495 + - uid: 15496 components: - pos: -3.5,-40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15496 + - uid: 15497 components: - rot: 3.141592653589793 rad pos: 29.5,16.5 @@ -119147,7 +104331,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15497 + - uid: 15498 components: - rot: 1.5707963267948966 rad pos: 27.5,17.5 @@ -119155,7 +104339,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15498 + - uid: 15499 components: - rot: 1.5707963267948966 rad pos: 10.5,-25.5 @@ -119163,7 +104347,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15499 + - uid: 15500 components: - rot: -1.5707963267948966 rad pos: 13.5,17.5 @@ -119171,7 +104355,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15500 + - uid: 15501 components: - rot: 1.5707963267948966 rad pos: 1.5,17.5 @@ -119179,14 +104363,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15501 + - uid: 15502 components: - pos: 0.5,16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15502 + - uid: 15503 components: - rot: 1.5707963267948966 rad pos: -2.5,13.5 @@ -119196,7 +104380,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15503 + - uid: 15504 components: - rot: -1.5707963267948966 rad pos: -5.5,14.5 @@ -119206,7 +104390,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15504 + - uid: 15505 components: - pos: -6.5,13.5 parent: 2 @@ -119215,63 +104399,63 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15505 + - uid: 15506 components: - pos: -6.5,11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15506 + - uid: 15507 components: - pos: -6.5,10.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15507 + - uid: 15508 components: - pos: -8.5,4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15508 + - uid: 15509 components: - pos: 3.5,-29.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15509 + - uid: 15510 components: - pos: 15.5,-40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15510 + - uid: 15511 components: - pos: 15.5,-32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15511 + - uid: 15512 components: - pos: 15.5,-24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15512 + - uid: 15513 components: - pos: -23.5,-77.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15513 + - uid: 15514 components: - pos: 17.5,18.5 parent: 2 @@ -119280,7 +104464,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15514 + - uid: 15515 components: - rot: 1.5707963267948966 rad pos: 9.5,8.5 @@ -119288,21 +104472,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15515 + - uid: 15516 components: - pos: 2.5,-9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15516 + - uid: 15517 components: - pos: 2.5,-7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15517 + - uid: 15518 components: - rot: 1.5707963267948966 rad pos: 0.5,-1.5 @@ -119310,7 +104494,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15518 + - uid: 15519 components: - pos: -18.5,32.5 parent: 2 @@ -119319,42 +104503,42 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15519 + - uid: 15520 components: - pos: -20.5,28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15520 + - uid: 15521 components: - pos: 34.5,-24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15521 + - uid: 15522 components: - pos: 31.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15522 + - uid: 15523 components: - pos: 24.5,-27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15523 + - uid: 15524 components: - pos: 36.5,-26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15524 + - uid: 15525 components: - rot: -1.5707963267948966 rad pos: 28.5,-18.5 @@ -119362,14 +104546,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15525 + - uid: 15526 components: - pos: 47.5,-24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15526 + - uid: 15527 components: - rot: 3.141592653589793 rad pos: 34.5,-38.5 @@ -119377,7 +104561,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15527 + - uid: 15528 components: - pos: 21.5,15.5 parent: 2 @@ -119386,14 +104570,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15528 + - uid: 15529 components: - pos: 8.5,8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15529 + - uid: 15530 components: - rot: 1.5707963267948966 rad pos: 29.5,-22.5 @@ -119401,7 +104585,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15530 + - uid: 15531 components: - rot: 3.141592653589793 rad pos: 38.5,6.5 @@ -119411,28 +104595,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15531 + - uid: 15532 components: - pos: -20.5,31.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15532 + - uid: 15533 components: - pos: 8.5,9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15533 + - uid: 15534 components: - pos: -18.5,30.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15534 + - uid: 15535 components: - rot: 1.5707963267948966 rad pos: -4.5,-1.5 @@ -119440,7 +104624,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15535 + - uid: 15536 components: - rot: 3.141592653589793 rad pos: -5.5,-32.5 @@ -119448,7 +104632,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15536 + - uid: 15537 components: - rot: -1.5707963267948966 rad pos: 6.5,-41.5 @@ -119456,56 +104640,56 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15537 + - uid: 15538 components: - pos: 15.5,-30.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15538 + - uid: 15539 components: - pos: -3.5,-13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15539 + - uid: 15540 components: - pos: -3.5,-9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15540 + - uid: 15541 components: - pos: -3.5,-8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15541 + - uid: 15542 components: - pos: -3.5,-7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15542 + - uid: 15543 components: - pos: -3.5,-5.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15543 + - uid: 15544 components: - pos: -5.5,-7.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15544 + - uid: 15545 components: - rot: -1.5707963267948966 rad pos: 24.5,10.5 @@ -119513,7 +104697,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15545 + - uid: 15546 components: - rot: 1.5707963267948966 rad pos: 17.5,-29.5 @@ -119523,7 +104707,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15546 + - uid: 15547 components: - rot: 1.5707963267948966 rad pos: 18.5,-29.5 @@ -119531,7 +104715,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15547 + - uid: 15548 components: - rot: -1.5707963267948966 rad pos: 20.5,-29.5 @@ -119541,7 +104725,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15548 + - uid: 15549 components: - rot: -1.5707963267948966 rad pos: 22.5,-29.5 @@ -119549,7 +104733,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15549 + - uid: 15550 components: - rot: 1.5707963267948966 rad pos: -15.5,-42.5 @@ -119557,7 +104741,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15550 + - uid: 15551 components: - rot: 1.5707963267948966 rad pos: -14.5,-42.5 @@ -119565,7 +104749,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15551 + - uid: 15552 components: - rot: 3.141592653589793 rad pos: -14.5,-45.5 @@ -119573,7 +104757,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15552 + - uid: 15553 components: - rot: 3.141592653589793 rad pos: -17.5,-58.5 @@ -119583,7 +104767,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15553 + - uid: 15554 components: - rot: 3.141592653589793 rad pos: -17.5,-59.5 @@ -119591,7 +104775,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15554 + - uid: 15555 components: - rot: 1.5707963267948966 rad pos: -16.5,-60.5 @@ -119599,7 +104783,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15555 + - uid: 15556 components: - rot: 1.5707963267948966 rad pos: -15.5,-60.5 @@ -119607,7 +104791,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15556 + - uid: 15557 components: - rot: 3.141592653589793 rad pos: -12.5,-46.5 @@ -119615,7 +104799,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15557 + - uid: 15558 components: - rot: 3.141592653589793 rad pos: -12.5,-43.5 @@ -119623,7 +104807,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15558 + - uid: 15559 components: - rot: 1.5707963267948966 rad pos: -13.5,-42.5 @@ -119631,7 +104815,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15559 + - uid: 15560 components: - rot: 1.5707963267948966 rad pos: -11.5,-42.5 @@ -119639,14 +104823,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15560 + - uid: 15561 components: - pos: -9.5,-59.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15561 + - uid: 15562 components: - pos: -9.5,-58.5 parent: 2 @@ -119655,21 +104839,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15562 + - uid: 15563 components: - pos: -9.5,-57.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15563 + - uid: 15564 components: - pos: -9.5,-56.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15564 + - uid: 15565 components: - pos: -9.5,-55.5 parent: 2 @@ -119678,7 +104862,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15565 + - uid: 15566 components: - rot: 3.141592653589793 rad pos: -1.5,-52.5 @@ -119686,42 +104870,42 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15566 + - uid: 15567 components: - pos: -7.5,-52.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15567 + - uid: 15568 components: - pos: -7.5,-51.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15568 + - uid: 15569 components: - pos: -7.5,-50.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15569 + - uid: 15570 components: - pos: -7.5,-49.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15570 + - uid: 15571 components: - pos: -0.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15571 + - uid: 15572 components: - rot: -1.5707963267948966 rad pos: 0.5,-41.5 @@ -119729,7 +104913,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15572 + - uid: 15573 components: - rot: -1.5707963267948966 rad pos: 2.5,-41.5 @@ -119737,21 +104921,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15573 + - uid: 15574 components: - pos: -8.5,-44.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15574 + - uid: 15575 components: - pos: -8.5,-43.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15575 + - uid: 15576 components: - rot: 3.141592653589793 rad pos: 5.5,-43.5 @@ -119759,7 +104943,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15576 + - uid: 15577 components: - rot: -1.5707963267948966 rad pos: -9.5,-60.5 @@ -119767,7 +104951,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15577 + - uid: 15578 components: - rot: -1.5707963267948966 rad pos: -8.5,-60.5 @@ -119775,14 +104959,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15578 + - uid: 15579 components: - pos: -6.5,-64.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15579 + - uid: 15580 components: - rot: 3.141592653589793 rad pos: -7.5,-61.5 @@ -119790,7 +104974,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15580 + - uid: 15581 components: - rot: -1.5707963267948966 rad pos: -5.5,-59.5 @@ -119798,14 +104982,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15581 + - uid: 15582 components: - pos: 34.5,1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15582 + - uid: 15583 components: - rot: 1.5707963267948966 rad pos: 29.5,9.5 @@ -119815,7 +104999,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15583 + - uid: 15584 components: - rot: 1.5707963267948966 rad pos: 37.5,0.5 @@ -119823,7 +105007,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15584 + - uid: 15585 components: - rot: 1.5707963267948966 rad pos: 7.5,8.5 @@ -119831,14 +105015,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15585 + - uid: 15586 components: - pos: 17.5,-3.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15586 + - uid: 15587 components: - rot: -1.5707963267948966 rad pos: 11.5,-0.5 @@ -119846,7 +105030,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15587 + - uid: 15588 components: - rot: -1.5707963267948966 rad pos: 15.5,-0.5 @@ -119854,7 +105038,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15588 + - uid: 15589 components: - rot: -1.5707963267948966 rad pos: 38.5,15.5 @@ -119862,7 +105046,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15589 + - uid: 15590 components: - rot: -1.5707963267948966 rad pos: 36.5,15.5 @@ -119870,7 +105054,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15590 + - uid: 15591 components: - rot: -1.5707963267948966 rad pos: 34.5,1.5 @@ -119878,7 +105062,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15591 + - uid: 15592 components: - rot: -1.5707963267948966 rad pos: 30.5,1.5 @@ -119886,7 +105070,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15592 + - uid: 15593 components: - rot: -1.5707963267948966 rad pos: 31.5,1.5 @@ -119894,7 +105078,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15593 + - uid: 15594 components: - rot: -1.5707963267948966 rad pos: 32.5,1.5 @@ -119902,7 +105086,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15594 + - uid: 15595 components: - rot: -1.5707963267948966 rad pos: 36.5,1.5 @@ -119910,14 +105094,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15595 + - uid: 15596 components: - pos: 42.5,14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15596 + - uid: 15597 components: - rot: 1.5707963267948966 rad pos: 22.5,16.5 @@ -119925,7 +105109,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15597 + - uid: 15598 components: - rot: 1.5707963267948966 rad pos: 24.5,17.5 @@ -119933,7 +105117,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15598 + - uid: 15599 components: - rot: 1.5707963267948966 rad pos: 25.5,17.5 @@ -119941,7 +105125,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15599 + - uid: 15600 components: - rot: 1.5707963267948966 rad pos: 26.5,17.5 @@ -119949,35 +105133,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15600 + - uid: 15601 components: - pos: 38.5,2.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15601 + - uid: 15602 components: - pos: 38.5,4.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15602 + - uid: 15603 components: - pos: 25.5,10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15603 + - uid: 15604 components: - pos: 25.5,11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15604 + - uid: 15605 components: - rot: 1.5707963267948966 rad pos: 26.5,12.5 @@ -119985,14 +105169,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15605 + - uid: 15606 components: - pos: 21.5,11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15606 + - uid: 15607 components: - rot: 1.5707963267948966 rad pos: 27.5,9.5 @@ -120002,7 +105186,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15607 + - uid: 15608 components: - rot: 1.5707963267948966 rad pos: -6.5,-1.5 @@ -120010,21 +105194,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15608 + - uid: 15609 components: - pos: -5.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15609 + - uid: 15610 components: - pos: -5.5,-17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15610 + - uid: 15611 components: - rot: -1.5707963267948966 rad pos: 29.5,-42.5 @@ -120032,7 +105216,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15611 + - uid: 15612 components: - rot: 3.141592653589793 rad pos: 17.5,-2.5 @@ -120040,7 +105224,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15612 + - uid: 15613 components: - rot: 3.141592653589793 rad pos: 38.5,9.5 @@ -120050,7 +105234,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15613 + - uid: 15614 components: - rot: -1.5707963267948966 rad pos: 7.5,12.5 @@ -120058,7 +105242,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15614 + - uid: 15615 components: - rot: 3.141592653589793 rad pos: -3.5,-56.5 @@ -120066,7 +105250,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15615 + - uid: 15616 components: - rot: 3.141592653589793 rad pos: -3.5,-57.5 @@ -120074,7 +105258,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15616 + - uid: 15617 components: - rot: 3.141592653589793 rad pos: -1.5,-47.5 @@ -120082,42 +105266,42 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15617 + - uid: 15618 components: - pos: 15.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15618 + - uid: 15619 components: - pos: -3.5,-23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15619 + - uid: 15620 components: - pos: -3.5,-24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15620 + - uid: 15621 components: - pos: -3.5,-22.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15621 + - uid: 15622 components: - pos: -3.5,-18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15622 + - uid: 15623 components: - rot: 1.5707963267948966 rad pos: 10.5,-27.5 @@ -120125,7 +105309,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15623 + - uid: 15624 components: - rot: -1.5707963267948966 rad pos: 7.5,-27.5 @@ -120133,7 +105317,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15624 + - uid: 15625 components: - rot: 1.5707963267948966 rad pos: 6.5,-27.5 @@ -120141,7 +105325,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15625 + - uid: 15626 components: - rot: 1.5707963267948966 rad pos: 11.5,-25.5 @@ -120149,14 +105333,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15626 + - uid: 15627 components: - pos: -20.5,29.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15627 + - uid: 15628 components: - rot: -1.5707963267948966 rad pos: 19.5,-43.5 @@ -120164,7 +105348,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15628 + - uid: 15629 components: - rot: 1.5707963267948966 rad pos: 26.5,-16.5 @@ -120172,7 +105356,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15629 + - uid: 15630 components: - rot: 1.5707963267948966 rad pos: 32.5,-16.5 @@ -120180,7 +105364,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15630 + - uid: 15631 components: - rot: 1.5707963267948966 rad pos: -6.5,1.5 @@ -120188,7 +105372,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15631 + - uid: 15632 components: - rot: 1.5707963267948966 rad pos: -7.5,1.5 @@ -120196,21 +105380,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15632 + - uid: 15633 components: - pos: -8.5,5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15633 + - uid: 15634 components: - pos: -8.5,6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15634 + - uid: 15635 components: - rot: 1.5707963267948966 rad pos: 11.5,17.5 @@ -120218,7 +105402,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15635 + - uid: 15636 components: - rot: -1.5707963267948966 rad pos: 23.5,10.5 @@ -120228,14 +105412,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15636 + - uid: 15637 components: - pos: -23.5,-82.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15637 + - uid: 15638 components: - rot: 1.5707963267948966 rad pos: 30.5,-16.5 @@ -120243,7 +105427,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15638 + - uid: 15639 components: - rot: 3.141592653589793 rad pos: 8.5,1.5 @@ -120251,7 +105435,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15639 + - uid: 15640 components: - rot: 3.141592653589793 rad pos: 30.5,-19.5 @@ -120261,14 +105445,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15640 + - uid: 15641 components: - pos: -5.5,-23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15641 + - uid: 15642 components: - rot: -1.5707963267948966 rad pos: 4.5,-42.5 @@ -120276,7 +105460,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15642 + - uid: 15643 components: - rot: 1.5707963267948966 rad pos: -10.5,-27.5 @@ -120284,7 +105468,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15643 + - uid: 15644 components: - rot: -1.5707963267948966 rad pos: 1.5,-14.5 @@ -120292,7 +105476,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15644 + - uid: 15645 components: - rot: 1.5707963267948966 rad pos: -6.5,-25.5 @@ -120300,7 +105484,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15645 + - uid: 15646 components: - rot: 1.5707963267948966 rad pos: -4.5,-25.5 @@ -120308,7 +105492,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15646 + - uid: 15647 components: - rot: -1.5707963267948966 rad pos: 29.5,-18.5 @@ -120316,7 +105500,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15647 + - uid: 15648 components: - rot: -1.5707963267948966 rad pos: 27.5,-18.5 @@ -120324,7 +105508,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15648 + - uid: 15649 components: - rot: 1.5707963267948966 rad pos: 28.5,-16.5 @@ -120332,7 +105516,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15649 + - uid: 15650 components: - rot: 1.5707963267948966 rad pos: 25.5,-16.5 @@ -120340,7 +105524,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15650 + - uid: 15651 components: - rot: 3.141592653589793 rad pos: 14.5,-29.5 @@ -120348,7 +105532,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15651 + - uid: 15652 components: - rot: 1.5707963267948966 rad pos: 8.5,-27.5 @@ -120356,7 +105540,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15652 + - uid: 15653 components: - rot: 1.5707963267948966 rad pos: 11.5,-27.5 @@ -120364,14 +105548,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15653 + - uid: 15654 components: - pos: -3.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15654 + - uid: 15655 components: - rot: 3.141592653589793 rad pos: 36.5,-29.5 @@ -120379,14 +105563,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15655 + - uid: 15656 components: - pos: 47.5,-25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15656 + - uid: 15657 components: - rot: -1.5707963267948966 rad pos: 9.5,16.5 @@ -120394,7 +105578,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15657 + - uid: 15658 components: - rot: -1.5707963267948966 rad pos: 13.5,16.5 @@ -120402,7 +105586,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15658 + - uid: 15659 components: - rot: -1.5707963267948966 rad pos: 35.5,1.5 @@ -120410,7 +105594,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15659 + - uid: 15660 components: - rot: -1.5707963267948966 rad pos: 29.5,1.5 @@ -120418,7 +105602,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15660 + - uid: 15661 components: - rot: -1.5707963267948966 rad pos: 34.5,15.5 @@ -120426,7 +105610,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15661 + - uid: 15662 components: - rot: -1.5707963267948966 rad pos: 32.5,15.5 @@ -120434,7 +105618,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15662 + - uid: 15663 components: - rot: -1.5707963267948966 rad pos: 41.5,15.5 @@ -120442,7 +105626,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15663 + - uid: 15664 components: - rot: -1.5707963267948966 rad pos: 13.5,-0.5 @@ -120450,7 +105634,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15664 + - uid: 15665 components: - rot: -1.5707963267948966 rad pos: 30.5,-42.5 @@ -120458,7 +105642,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15665 + - uid: 15666 components: - rot: -1.5707963267948966 rad pos: -7.5,-42.5 @@ -120466,7 +105650,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15666 + - uid: 15667 components: - rot: 1.5707963267948966 rad pos: -5.5,-42.5 @@ -120474,7 +105658,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15667 + - uid: 15668 components: - rot: -1.5707963267948966 rad pos: 2.5,-42.5 @@ -120482,7 +105666,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15668 + - uid: 15669 components: - rot: 3.141592653589793 rad pos: 14.5,-33.5 @@ -120490,7 +105674,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15669 + - uid: 15670 components: - rot: -1.5707963267948966 rad pos: 10.5,-42.5 @@ -120498,7 +105682,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15670 + - uid: 15671 components: - rot: 3.141592653589793 rad pos: -5.5,-33.5 @@ -120506,7 +105690,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15671 + - uid: 15672 components: - rot: 3.141592653589793 rad pos: -5.5,-31.5 @@ -120514,7 +105698,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15672 + - uid: 15673 components: - rot: 3.141592653589793 rad pos: -5.5,-29.5 @@ -120522,7 +105706,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15673 + - uid: 15674 components: - rot: 1.5707963267948966 rad pos: 19.5,-5.5 @@ -120530,14 +105714,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15674 + - uid: 15675 components: - pos: 10.5,7.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15675 + - uid: 15676 components: - rot: 3.141592653589793 rad pos: 42.5,7.5 @@ -120545,7 +105729,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15676 + - uid: 15677 components: - rot: 3.141592653589793 rad pos: 8.5,4.5 @@ -120555,7 +105739,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15677 + - uid: 15678 components: - rot: 3.141592653589793 rad pos: 38.5,7.5 @@ -120563,14 +105747,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15678 + - uid: 15679 components: - pos: 34.5,-25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15679 + - uid: 15680 components: - pos: 10.5,18.5 parent: 2 @@ -120579,21 +105763,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15680 + - uid: 15681 components: - pos: -5.5,-26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15681 + - uid: 15682 components: - pos: -9.5,-4.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15682 + - uid: 15683 components: - rot: -1.5707963267948966 rad pos: 6.5,-61.5 @@ -120601,21 +105785,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15683 + - uid: 15684 components: - pos: 0.5,14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15684 + - uid: 15685 components: - pos: 34.5,4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15685 + - uid: 15686 components: - rot: 3.141592653589793 rad pos: 28.5,-32.5 @@ -120623,7 +105807,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15686 + - uid: 15687 components: - rot: 3.141592653589793 rad pos: 26.5,-32.5 @@ -120631,7 +105815,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15687 + - uid: 15688 components: - rot: 1.5707963267948966 rad pos: 15.5,-30.5 @@ -120639,7 +105823,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15688 + - uid: 15689 components: - rot: 1.5707963267948966 rad pos: 17.5,-30.5 @@ -120649,14 +105833,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15689 + - uid: 15690 components: - pos: 28.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15690 + - uid: 15691 components: - rot: -1.5707963267948966 rad pos: 14.5,16.5 @@ -120664,7 +105848,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15691 + - uid: 15692 components: - rot: -1.5707963267948966 rad pos: 10.5,16.5 @@ -120672,7 +105856,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15692 + - uid: 15693 components: - rot: -1.5707963267948966 rad pos: 8.5,16.5 @@ -120680,28 +105864,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15693 + - uid: 15694 components: - pos: 21.5,10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15694 + - uid: 15695 components: - pos: 21.5,9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15695 + - uid: 15696 components: - pos: 21.5,8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15696 + - uid: 15697 components: - rot: 1.5707963267948966 rad pos: 27.5,12.5 @@ -120711,21 +105895,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15697 + - uid: 15698 components: - pos: 25.5,9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15698 + - uid: 15699 components: - pos: 25.5,8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15699 + - uid: 15700 components: - rot: -1.5707963267948966 rad pos: 22.5,7.5 @@ -120733,7 +105917,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15700 + - uid: 15701 components: - rot: -1.5707963267948966 rad pos: 23.5,7.5 @@ -120741,7 +105925,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15701 + - uid: 15702 components: - rot: 1.5707963267948966 rad pos: 24.5,7.5 @@ -120749,7 +105933,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15702 + - uid: 15703 components: - pos: 38.5,3.5 parent: 2 @@ -120758,21 +105942,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15703 + - uid: 15704 components: - pos: 31.5,13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15704 + - uid: 15705 components: - pos: 31.5,14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15705 + - uid: 15706 components: - rot: -1.5707963267948966 rad pos: 30.5,15.5 @@ -120780,7 +105964,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15706 + - uid: 15707 components: - rot: 1.5707963267948966 rad pos: 20.5,-5.5 @@ -120788,21 +105972,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15707 + - uid: 15708 components: - pos: 20.5,12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15708 + - uid: 15709 components: - pos: 20.5,11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15709 + - uid: 15710 components: - pos: 20.5,9.5 parent: 2 @@ -120811,14 +105995,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15710 + - uid: 15711 components: - pos: 20.5,8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15711 + - uid: 15712 components: - rot: 1.5707963267948966 rad pos: 19.5,7.5 @@ -120826,7 +106010,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15712 + - uid: 15713 components: - rot: 3.141592653589793 rad pos: 18.5,6.5 @@ -120834,7 +106018,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15713 + - uid: 15714 components: - rot: 3.141592653589793 rad pos: 18.5,5.5 @@ -120842,7 +106026,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15714 + - uid: 15715 components: - rot: 3.141592653589793 rad pos: 18.5,4.5 @@ -120850,7 +106034,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15715 + - uid: 15716 components: - rot: 1.5707963267948966 rad pos: 19.5,13.5 @@ -120860,7 +106044,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15716 + - uid: 15717 components: - rot: 1.5707963267948966 rad pos: 18.5,13.5 @@ -120868,7 +106052,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15717 + - uid: 15718 components: - rot: 3.141592653589793 rad pos: 17.5,14.5 @@ -120876,7 +106060,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15718 + - uid: 15719 components: - rot: 3.141592653589793 rad pos: 17.5,15.5 @@ -120884,7 +106068,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15719 + - uid: 15720 components: - rot: 3.141592653589793 rad pos: 17.5,16.5 @@ -120892,7 +106076,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15720 + - uid: 15721 components: - rot: 3.141592653589793 rad pos: 5.5,18.5 @@ -120902,7 +106086,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15721 + - uid: 15722 components: - rot: 1.5707963267948966 rad pos: 14.5,17.5 @@ -120910,7 +106094,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15722 + - uid: 15723 components: - rot: 1.5707963267948966 rad pos: 3.5,17.5 @@ -120918,7 +106102,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15723 + - uid: 15724 components: - rot: 1.5707963267948966 rad pos: 2.5,17.5 @@ -120926,7 +106110,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15724 + - uid: 15725 components: - rot: 1.5707963267948966 rad pos: -3.5,13.5 @@ -120934,14 +106118,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15725 + - uid: 15726 components: - pos: -8.5,3.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15726 + - uid: 15727 components: - rot: 1.5707963267948966 rad pos: -4.5,1.5 @@ -120949,7 +106133,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15727 + - uid: 15728 components: - rot: 1.5707963267948966 rad pos: -3.5,1.5 @@ -120957,7 +106141,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15728 + - uid: 15729 components: - rot: 1.5707963267948966 rad pos: -2.5,1.5 @@ -120965,7 +106149,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15729 + - uid: 15730 components: - rot: 1.5707963267948966 rad pos: -1.5,1.5 @@ -120975,7 +106159,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15730 + - uid: 15731 components: - rot: 1.5707963267948966 rad pos: -0.5,1.5 @@ -120983,7 +106167,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15731 + - uid: 15732 components: - rot: 1.5707963267948966 rad pos: 0.5,1.5 @@ -120991,35 +106175,35 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15732 + - uid: 15733 components: - pos: 1.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15733 + - uid: 15734 components: - pos: 1.5,-0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15734 + - uid: 15735 components: - pos: 1.5,-1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15735 + - uid: 15736 components: - pos: 1.5,-2.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15736 + - uid: 15737 components: - rot: 1.5707963267948966 rad pos: 2.5,-3.5 @@ -121027,7 +106211,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15737 + - uid: 15738 components: - rot: 1.5707963267948966 rad pos: 2.5,-9.5 @@ -121035,35 +106219,35 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15738 + - uid: 15739 components: - pos: 1.5,-10.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15739 + - uid: 15740 components: - pos: 1.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15740 + - uid: 15741 components: - pos: 9.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15741 + - uid: 15742 components: - pos: 9.5,-0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15742 + - uid: 15743 components: - rot: 1.5707963267948966 rad pos: 10.5,-1.5 @@ -121071,56 +106255,56 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15743 + - uid: 15744 components: - pos: 11.5,-2.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15744 + - uid: 15745 components: - pos: 11.5,-3.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15745 + - uid: 15746 components: - pos: 11.5,-4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15746 + - uid: 15747 components: - pos: 11.5,-5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15747 + - uid: 15748 components: - pos: 11.5,-6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15748 + - uid: 15749 components: - pos: 11.5,-7.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15749 + - uid: 15750 components: - pos: 11.5,-8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15750 + - uid: 15751 components: - rot: -1.5707963267948966 rad pos: 9.5,-9.5 @@ -121128,7 +106312,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15751 + - uid: 15752 components: - rot: 3.141592653589793 rad pos: 19.5,19.5 @@ -121138,7 +106322,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15752 + - uid: 15753 components: - rot: 1.5707963267948966 rad pos: 26.5,21.5 @@ -121146,7 +106330,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15753 + - uid: 15754 components: - rot: 1.5707963267948966 rad pos: 27.5,21.5 @@ -121154,14 +106338,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15754 + - uid: 15755 components: - pos: 23.5,18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15755 + - uid: 15756 components: - pos: 23.5,19.5 parent: 2 @@ -121170,7 +106354,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15756 + - uid: 15757 components: - rot: 1.5707963267948966 rad pos: 24.5,20.5 @@ -121178,7 +106362,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15757 + - uid: 15758 components: - rot: 3.141592653589793 rad pos: 25.5,21.5 @@ -121186,7 +106370,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15758 + - uid: 15759 components: - rot: -1.5707963267948966 rad pos: -15.5,-38.5 @@ -121194,7 +106378,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15759 + - uid: 15760 components: - rot: -1.5707963267948966 rad pos: -14.5,-38.5 @@ -121202,21 +106386,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15760 + - uid: 15761 components: - pos: 7.5,17.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15761 + - uid: 15762 components: - pos: 17.5,19.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15762 + - uid: 15763 components: - rot: 3.141592653589793 rad pos: 16.5,19.5 @@ -121224,14 +106408,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15763 + - uid: 15764 components: - pos: 34.5,2.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15764 + - uid: 15765 components: - rot: -1.5707963267948966 rad pos: 30.5,0.5 @@ -121239,7 +106423,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15765 + - uid: 15766 components: - rot: 1.5707963267948966 rad pos: -6.5,-64.5 @@ -121247,14 +106431,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15766 + - uid: 15767 components: - pos: 21.5,-12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15767 + - uid: 15768 components: - rot: 3.141592653589793 rad pos: 34.5,-0.5 @@ -121262,7 +106446,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15768 + - uid: 15769 components: - rot: 3.141592653589793 rad pos: 34.5,-1.5 @@ -121270,7 +106454,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15769 + - uid: 15770 components: - rot: 3.141592653589793 rad pos: 34.5,-2.5 @@ -121278,7 +106462,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15770 + - uid: 15771 components: - rot: 3.141592653589793 rad pos: 34.5,-3.5 @@ -121286,7 +106470,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15771 + - uid: 15772 components: - rot: 3.141592653589793 rad pos: 34.5,-4.5 @@ -121294,7 +106478,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15772 + - uid: 15773 components: - rot: 3.141592653589793 rad pos: 34.5,-5.5 @@ -121302,7 +106486,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15773 + - uid: 15774 components: - rot: -1.5707963267948966 rad pos: 33.5,-6.5 @@ -121310,7 +106494,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15774 + - uid: 15775 components: - rot: -1.5707963267948966 rad pos: 32.5,-6.5 @@ -121318,7 +106502,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15775 + - uid: 15776 components: - rot: -1.5707963267948966 rad pos: 30.5,-6.5 @@ -121326,7 +106510,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15776 + - uid: 15777 components: - rot: -1.5707963267948966 rad pos: 28.5,-6.5 @@ -121334,7 +106518,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15777 + - uid: 15778 components: - rot: 1.5707963267948966 rad pos: 5.5,19.5 @@ -121342,7 +106526,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15778 + - uid: 15779 components: - rot: 1.5707963267948966 rad pos: 3.5,19.5 @@ -121352,7 +106536,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15779 + - uid: 15780 components: - rot: 1.5707963267948966 rad pos: 2.5,19.5 @@ -121360,7 +106544,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15780 + - uid: 15781 components: - rot: -1.5707963267948966 rad pos: 1.5,19.5 @@ -121368,21 +106552,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15781 + - uid: 15782 components: - pos: 26.5,-9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15782 + - uid: 15783 components: - pos: 26.5,-10.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15783 + - uid: 15784 components: - rot: -1.5707963267948966 rad pos: 24.5,-12.5 @@ -121390,7 +106574,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15784 + - uid: 15785 components: - rot: -1.5707963267948966 rad pos: 22.5,-12.5 @@ -121398,7 +106582,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15785 + - uid: 15786 components: - rot: 3.141592653589793 rad pos: 26.5,-14.5 @@ -121406,7 +106590,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15786 + - uid: 15787 components: - rot: 3.141592653589793 rad pos: 26.5,-15.5 @@ -121414,7 +106598,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15787 + - uid: 15788 components: - rot: 3.141592653589793 rad pos: 26.5,-17.5 @@ -121422,7 +106606,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15788 + - uid: 15789 components: - rot: 1.5707963267948966 rad pos: 23.5,-23.5 @@ -121430,7 +106614,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15789 + - uid: 15790 components: - rot: 1.5707963267948966 rad pos: 22.5,-23.5 @@ -121438,7 +106622,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15790 + - uid: 15791 components: - rot: 1.5707963267948966 rad pos: 28.5,-22.5 @@ -121446,7 +106630,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15791 + - uid: 15792 components: - rot: 3.141592653589793 rad pos: 21.5,-15.5 @@ -121454,7 +106638,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15792 + - uid: 15793 components: - rot: 1.5707963267948966 rad pos: 21.5,-23.5 @@ -121462,7 +106646,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15793 + - uid: 15794 components: - pos: 24.5,-26.5 parent: 2 @@ -121471,14 +106655,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15794 + - uid: 15795 components: - pos: 24.5,-28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15795 + - uid: 15796 components: - rot: 3.141592653589793 rad pos: 26.5,-25.5 @@ -121486,7 +106670,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15796 + - uid: 15797 components: - rot: 3.141592653589793 rad pos: 26.5,-28.5 @@ -121494,7 +106678,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15797 + - uid: 15798 components: - rot: 3.141592653589793 rad pos: 26.5,-29.5 @@ -121502,7 +106686,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15798 + - uid: 15799 components: - rot: -1.5707963267948966 rad pos: 28.5,-30.5 @@ -121510,7 +106694,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15799 + - uid: 15800 components: - rot: -1.5707963267948966 rad pos: 26.5,-29.5 @@ -121518,7 +106702,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15800 + - uid: 15801 components: - pos: 28.5,-33.5 parent: 2 @@ -121527,21 +106711,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15801 + - uid: 15802 components: - pos: 22.5,-32.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15802 + - uid: 15803 components: - pos: 22.5,-33.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15803 + - uid: 15804 components: - rot: 3.141592653589793 rad pos: 21.5,-29.5 @@ -121549,28 +106733,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15804 + - uid: 15805 components: - pos: 22.5,-35.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15805 + - uid: 15806 components: - pos: -11.5,-25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15806 + - uid: 15807 components: - pos: -8.5,-24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15807 + - uid: 15808 components: - rot: 1.5707963267948966 rad pos: 2.5,-25.5 @@ -121578,14 +106762,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15808 + - uid: 15809 components: - pos: 2.5,-11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15809 + - uid: 15810 components: - rot: 1.5707963267948966 rad pos: -6.5,7.5 @@ -121593,7 +106777,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15810 + - uid: 15811 components: - rot: 1.5707963267948966 rad pos: -7.5,7.5 @@ -121601,7 +106785,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15811 + - uid: 15812 components: - rot: 1.5707963267948966 rad pos: -8.5,7.5 @@ -121609,7 +106793,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15812 + - uid: 15813 components: - rot: 1.5707963267948966 rad pos: -9.5,7.5 @@ -121617,7 +106801,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15813 + - uid: 15814 components: - rot: -1.5707963267948966 rad pos: -9.5,1.5 @@ -121625,7 +106809,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15814 + - uid: 15815 components: - rot: -1.5707963267948966 rad pos: -11.5,1.5 @@ -121635,7 +106819,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15815 + - uid: 15816 components: - rot: -1.5707963267948966 rad pos: -12.5,1.5 @@ -121643,63 +106827,63 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15816 + - uid: 15817 components: - pos: -9.5,-2.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15817 + - uid: 15818 components: - pos: -9.5,-3.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15818 + - uid: 15819 components: - pos: -10.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15819 + - uid: 15820 components: - pos: -10.5,-0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15820 + - uid: 15821 components: - pos: -10.5,-1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15821 + - uid: 15822 components: - pos: -10.5,-3.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15822 + - uid: 15823 components: - pos: -10.5,-4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15823 + - uid: 15824 components: - pos: -10.5,-5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15824 + - uid: 15825 components: - rot: 3.141592653589793 rad pos: -2.5,-64.5 @@ -121707,7 +106891,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15825 + - uid: 15826 components: - rot: 3.141592653589793 rad pos: -2.5,-63.5 @@ -121715,7 +106899,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15826 + - uid: 15827 components: - rot: 3.141592653589793 rad pos: -2.5,-62.5 @@ -121723,7 +106907,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15827 + - uid: 15828 components: - rot: -1.5707963267948966 rad pos: -3.5,-61.5 @@ -121731,7 +106915,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15828 + - uid: 15829 components: - rot: -1.5707963267948966 rad pos: -0.5,-61.5 @@ -121739,7 +106923,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15829 + - uid: 15830 components: - rot: -1.5707963267948966 rad pos: 0.5,-61.5 @@ -121747,7 +106931,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15830 + - uid: 15831 components: - rot: -1.5707963267948966 rad pos: 1.5,-61.5 @@ -121755,14 +106939,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15831 + - uid: 15832 components: - pos: -8.5,-63.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15832 + - uid: 15833 components: - rot: -1.5707963267948966 rad pos: -10.5,-61.5 @@ -121770,7 +106954,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15833 + - uid: 15834 components: - rot: -1.5707963267948966 rad pos: -11.5,-61.5 @@ -121778,7 +106962,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15834 + - uid: 15835 components: - rot: -1.5707963267948966 rad pos: -12.5,-61.5 @@ -121786,7 +106970,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15835 + - uid: 15836 components: - rot: -1.5707963267948966 rad pos: -13.5,-61.5 @@ -121794,7 +106978,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15836 + - uid: 15837 components: - rot: -1.5707963267948966 rad pos: -14.5,-61.5 @@ -121802,7 +106986,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15837 + - uid: 15838 components: - pos: -15.5,-62.5 parent: 2 @@ -121811,21 +106995,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15838 + - uid: 15839 components: - pos: -15.5,-63.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15839 + - uid: 15840 components: - pos: -15.5,-64.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15840 + - uid: 15841 components: - rot: 3.141592653589793 rad pos: -0.5,-61.5 @@ -121833,7 +107017,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15841 + - uid: 15842 components: - rot: 3.141592653589793 rad pos: -0.5,-62.5 @@ -121843,7 +107027,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15842 + - uid: 15843 components: - rot: 3.141592653589793 rad pos: -0.5,-64.5 @@ -121851,7 +107035,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15843 + - uid: 15844 components: - rot: -1.5707963267948966 rad pos: -10.5,-60.5 @@ -121859,7 +107043,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15844 + - uid: 15845 components: - rot: -1.5707963267948966 rad pos: -11.5,-60.5 @@ -121867,7 +107051,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15845 + - uid: 15846 components: - pos: -12.5,-62.5 parent: 2 @@ -121876,21 +107060,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15846 + - uid: 15847 components: - pos: -12.5,-63.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15847 + - uid: 15848 components: - pos: -12.5,-64.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15848 + - uid: 15849 components: - rot: -1.5707963267948966 rad pos: 0.5,-60.5 @@ -121898,7 +107082,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15849 + - uid: 15850 components: - rot: -1.5707963267948966 rad pos: 1.5,-60.5 @@ -121906,7 +107090,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15850 + - uid: 15851 components: - rot: 1.5707963267948966 rad pos: 3.5,-60.5 @@ -121914,7 +107098,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15851 + - uid: 15852 components: - rot: -1.5707963267948966 rad pos: 4.5,-60.5 @@ -121922,7 +107106,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15852 + - uid: 15853 components: - rot: 3.141592653589793 rad pos: 5.5,-44.5 @@ -121932,7 +107116,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15853 + - uid: 15854 components: - rot: 3.141592653589793 rad pos: 5.5,-42.5 @@ -121940,7 +107124,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15854 + - uid: 15855 components: - rot: 3.141592653589793 rad pos: 3.5,-43.5 @@ -121948,7 +107132,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15855 + - uid: 15856 components: - rot: -1.5707963267948966 rad pos: 1.5,-42.5 @@ -121956,7 +107140,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15856 + - uid: 15857 components: - rot: -1.5707963267948966 rad pos: 0.5,-42.5 @@ -121964,7 +107148,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15857 + - uid: 15858 components: - rot: -1.5707963267948966 rad pos: -0.5,-42.5 @@ -121972,7 +107156,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15858 + - uid: 15859 components: - rot: -1.5707963267948966 rad pos: -1.5,-42.5 @@ -121980,7 +107164,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15859 + - uid: 15860 components: - rot: -1.5707963267948966 rad pos: -2.5,-42.5 @@ -121988,7 +107172,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15860 + - uid: 15861 components: - rot: -1.5707963267948966 rad pos: 4.5,-41.5 @@ -121996,7 +107180,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15861 + - uid: 15862 components: - rot: 3.141592653589793 rad pos: -1.5,-51.5 @@ -122004,7 +107188,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15862 + - uid: 15863 components: - rot: 3.141592653589793 rad pos: -9.5,-60.5 @@ -122012,7 +107196,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15863 + - uid: 15864 components: - rot: 1.5707963267948966 rad pos: -13.5,-60.5 @@ -122020,7 +107204,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15864 + - uid: 15865 components: - rot: -1.5707963267948966 rad pos: -13.5,-41.5 @@ -122028,7 +107212,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15865 + - uid: 15866 components: - rot: -1.5707963267948966 rad pos: 19.5,-29.5 @@ -122036,7 +107220,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15866 + - uid: 15867 components: - rot: -1.5707963267948966 rad pos: 21.5,10.5 @@ -122044,7 +107228,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15867 + - uid: 15868 components: - rot: 1.5707963267948966 rad pos: 6.5,-25.5 @@ -122052,7 +107236,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15868 + - uid: 15869 components: - rot: 1.5707963267948966 rad pos: -4.5,-27.5 @@ -122060,7 +107244,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15869 + - uid: 15870 components: - rot: 1.5707963267948966 rad pos: -3.5,-27.5 @@ -122068,7 +107252,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15870 + - uid: 15871 components: - rot: 1.5707963267948966 rad pos: -2.5,-27.5 @@ -122076,7 +107260,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15871 + - uid: 15872 components: - rot: 1.5707963267948966 rad pos: 0.5,-27.5 @@ -122084,7 +107268,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15872 + - uid: 15873 components: - rot: 1.5707963267948966 rad pos: -9.5,-27.5 @@ -122092,42 +107276,42 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15873 + - uid: 15874 components: - pos: -3.5,-33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15874 + - uid: 15875 components: - pos: -3.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15875 + - uid: 15876 components: - pos: -3.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15876 + - uid: 15877 components: - pos: -3.5,-37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15877 + - uid: 15878 components: - pos: -3.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15878 + - uid: 15879 components: - rot: 1.5707963267948966 rad pos: 17.5,-41.5 @@ -122135,7 +107319,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15879 + - uid: 15880 components: - rot: 1.5707963267948966 rad pos: 23.5,-43.5 @@ -122143,7 +107327,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15880 + - uid: 15881 components: - rot: -1.5707963267948966 rad pos: 25.5,-43.5 @@ -122151,7 +107335,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15881 + - uid: 15882 components: - rot: -1.5707963267948966 rad pos: 26.5,-43.5 @@ -122159,7 +107343,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15882 + - uid: 15883 components: - rot: -1.5707963267948966 rad pos: 27.5,-43.5 @@ -122167,7 +107351,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15883 + - uid: 15884 components: - rot: -1.5707963267948966 rad pos: 29.5,-43.5 @@ -122175,7 +107359,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15884 + - uid: 15885 components: - rot: -1.5707963267948966 rad pos: 21.5,-12.5 @@ -122183,7 +107367,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15885 + - uid: 15886 components: - rot: 3.141592653589793 rad pos: -11.5,-40.5 @@ -122193,7 +107377,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15886 + - uid: 15887 components: - pos: 35.5,7.5 parent: 2 @@ -122202,7 +107386,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15887 + - uid: 15888 components: - rot: 1.5707963267948966 rad pos: -34.5,20.5 @@ -122210,7 +107394,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15888 + - uid: 15889 components: - rot: 1.5707963267948966 rad pos: -32.5,20.5 @@ -122218,7 +107402,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15889 + - uid: 15890 components: - rot: -1.5707963267948966 rad pos: -26.5,-77.5 @@ -122226,7 +107410,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15890 + - uid: 15891 components: - rot: 3.141592653589793 rad pos: -18.5,-74.5 @@ -122234,7 +107418,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15891 + - uid: 15892 components: - rot: 3.141592653589793 rad pos: -18.5,-77.5 @@ -122242,7 +107426,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15892 + - uid: 15893 components: - rot: 1.5707963267948966 rad pos: -24.5,-78.5 @@ -122250,7 +107434,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15893 + - uid: 15894 components: - rot: 1.5707963267948966 rad pos: -25.5,-78.5 @@ -122258,7 +107442,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15894 + - uid: 15895 components: - rot: 1.5707963267948966 rad pos: -17.5,-61.5 @@ -122266,7 +107450,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15895 + - uid: 15896 components: - rot: 1.5707963267948966 rad pos: -16.5,-61.5 @@ -122274,14 +107458,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15896 + - uid: 15897 components: - pos: -24.5,-87.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15897 + - uid: 15898 components: - rot: 1.5707963267948966 rad pos: -18.5,-61.5 @@ -122289,14 +107473,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15898 + - uid: 15899 components: - pos: -3.5,-4.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15899 + - uid: 15900 components: - pos: 35.5,4.5 parent: 2 @@ -122305,21 +107489,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15900 + - uid: 15901 components: - pos: 17.5,-4.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15901 + - uid: 15902 components: - pos: 17.5,-1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15902 + - uid: 15903 components: - rot: -1.5707963267948966 rad pos: 16.5,-0.5 @@ -122327,7 +107511,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15903 + - uid: 15904 components: - rot: -1.5707963267948966 rad pos: 12.5,-0.5 @@ -122335,7 +107519,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15904 + - uid: 15905 components: - rot: -1.5707963267948966 rad pos: 35.5,15.5 @@ -122343,7 +107527,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15905 + - uid: 15906 components: - rot: -1.5707963267948966 rad pos: 33.5,15.5 @@ -122351,7 +107535,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15906 + - uid: 15907 components: - rot: 3.141592653589793 rad pos: 21.5,13.5 @@ -122359,14 +107543,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15907 + - uid: 15908 components: - pos: 23.5,-35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15908 + - uid: 15909 components: - rot: 1.5707963267948966 rad pos: 30.5,9.5 @@ -122376,7 +107560,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15909 + - uid: 15910 components: - pos: 2.5,-8.5 parent: 2 @@ -122385,7 +107569,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15910 + - uid: 15911 components: - rot: -1.5707963267948966 rad pos: 0.5,-14.5 @@ -122393,14 +107577,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15911 + - uid: 15912 components: - pos: 2.5,-6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15912 + - uid: 15913 components: - rot: -1.5707963267948966 rad pos: -4.5,7.5 @@ -122408,21 +107592,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15913 + - uid: 15914 components: - pos: -3.5,9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15914 + - uid: 15915 components: - pos: 7.5,15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15915 + - uid: 15916 components: - rot: 1.5707963267948966 rad pos: -1.5,-1.5 @@ -122430,7 +107614,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15916 + - uid: 15917 components: - rot: 3.141592653589793 rad pos: 2.5,4.5 @@ -122438,14 +107622,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15917 + - uid: 15918 components: - pos: 0.5,9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15918 + - uid: 15919 components: - rot: 1.5707963267948966 rad pos: -1.5,11.5 @@ -122455,7 +107639,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15919 + - uid: 15920 components: - rot: 1.5707963267948966 rad pos: -7.5,-1.5 @@ -122463,7 +107647,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15920 + - uid: 15921 components: - rot: 1.5707963267948966 rad pos: 1.5,-1.5 @@ -122471,28 +107655,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15921 + - uid: 15922 components: - pos: 10.5,4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15922 + - uid: 15923 components: - pos: 10.5,6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15923 + - uid: 15924 components: - pos: 10.5,5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15924 + - uid: 15925 components: - rot: 3.141592653589793 rad pos: -21.5,-86.5 @@ -122500,14 +107684,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15925 + - uid: 15926 components: - pos: -19.5,-58.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15926 + - uid: 15927 components: - rot: 1.5707963267948966 rad pos: 24.5,-16.5 @@ -122515,7 +107699,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15927 + - uid: 15928 components: - rot: 1.5707963267948966 rad pos: 29.5,-16.5 @@ -122523,14 +107707,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15928 + - uid: 15929 components: - pos: 31.5,-17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15929 + - uid: 15930 components: - pos: 31.5,-15.5 parent: 2 @@ -122539,7 +107723,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15930 + - uid: 15931 components: - rot: 3.141592653589793 rad pos: 10.5,-3.5 @@ -122547,7 +107731,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15931 + - uid: 15932 components: - rot: 3.141592653589793 rad pos: 10.5,-2.5 @@ -122555,7 +107739,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15932 + - uid: 15933 components: - rot: -1.5707963267948966 rad pos: 7.5,-0.5 @@ -122563,7 +107747,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15933 + - uid: 15934 components: - rot: 3.141592653589793 rad pos: 10.5,-1.5 @@ -122571,7 +107755,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15934 + - uid: 15935 components: - rot: 1.5707963267948966 rad pos: 18.5,12.5 @@ -122579,7 +107763,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15935 + - uid: 15936 components: - rot: 1.5707963267948966 rad pos: 19.5,12.5 @@ -122589,7 +107773,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15936 + - uid: 15937 components: - rot: -1.5707963267948966 rad pos: 5.5,-0.5 @@ -122597,7 +107781,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15937 + - uid: 15938 components: - rot: -1.5707963267948966 rad pos: 6.5,-0.5 @@ -122605,7 +107789,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15938 + - uid: 15939 components: - rot: -1.5707963267948966 rad pos: 9.5,-0.5 @@ -122613,7 +107797,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15939 + - uid: 15940 components: - rot: 3.141592653589793 rad pos: -9.5,-41.5 @@ -122621,14 +107805,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15940 + - uid: 15941 components: - pos: 8.5,6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15941 + - uid: 15942 components: - rot: 3.141592653589793 rad pos: 21.5,14.5 @@ -122636,28 +107820,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15942 + - uid: 15943 components: - pos: -3.5,-30.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15943 + - uid: 15944 components: - pos: -3.5,-31.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15944 + - uid: 15945 components: - pos: -3.5,-32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15945 + - uid: 15946 components: - rot: 1.5707963267948966 rad pos: -0.5,-1.5 @@ -122665,7 +107849,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15946 + - uid: 15947 components: - rot: 1.5707963267948966 rad pos: 9.5,-25.5 @@ -122673,7 +107857,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15947 + - uid: 15948 components: - rot: 1.5707963267948966 rad pos: 8.5,-25.5 @@ -122681,7 +107865,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15948 + - uid: 15949 components: - rot: -1.5707963267948966 rad pos: 18.5,17.5 @@ -122689,7 +107873,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15949 + - uid: 15950 components: - rot: 1.5707963267948966 rad pos: -0.5,13.5 @@ -122697,7 +107881,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15950 + - uid: 15951 components: - pos: -6.5,12.5 parent: 2 @@ -122706,21 +107890,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15951 + - uid: 15952 components: - pos: -6.5,9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15952 + - uid: 15953 components: - pos: 15.5,-41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15953 + - uid: 15954 components: - rot: 1.5707963267948966 rad pos: 4.5,-27.5 @@ -122728,7 +107912,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15954 + - uid: 15955 components: - rot: 1.5707963267948966 rad pos: 5.5,-27.5 @@ -122736,7 +107920,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15955 + - uid: 15956 components: - rot: 1.5707963267948966 rad pos: 13.5,-43.5 @@ -122744,7 +107928,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15956 + - uid: 15957 components: - rot: -1.5707963267948966 rad pos: 6.5,-42.5 @@ -122752,7 +107936,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15957 + - uid: 15958 components: - rot: 3.141592653589793 rad pos: 14.5,-36.5 @@ -122760,7 +107944,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15958 + - uid: 15959 components: - rot: -1.5707963267948966 rad pos: 11.5,-41.5 @@ -122768,7 +107952,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15959 + - uid: 15960 components: - rot: 3.141592653589793 rad pos: 14.5,-39.5 @@ -122776,7 +107960,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15960 + - uid: 15961 components: - rot: 3.141592653589793 rad pos: 14.5,-40.5 @@ -122784,7 +107968,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15961 + - uid: 15962 components: - rot: -1.5707963267948966 rad pos: 12.5,-41.5 @@ -122792,7 +107976,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15962 + - uid: 15963 components: - rot: 3.141592653589793 rad pos: 14.5,-38.5 @@ -122800,7 +107984,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15963 + - uid: 15964 components: - rot: -1.5707963267948966 rad pos: 13.5,-41.5 @@ -122808,14 +107992,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15964 + - uid: 15965 components: - pos: 15.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15965 + - uid: 15966 components: - rot: -1.5707963267948966 rad pos: 8.5,-41.5 @@ -122823,7 +108007,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15966 + - uid: 15967 components: - rot: -1.5707963267948966 rad pos: 7.5,-41.5 @@ -122831,7 +108015,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15967 + - uid: 15968 components: - rot: -1.5707963267948966 rad pos: 9.5,-41.5 @@ -122839,14 +108023,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15968 + - uid: 15969 components: - pos: 15.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15969 + - uid: 15970 components: - rot: 3.141592653589793 rad pos: 40.5,-72.5 @@ -122854,7 +108038,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15970 + - uid: 15971 components: - rot: 3.141592653589793 rad pos: 16.5,17.5 @@ -122862,7 +108046,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15971 + - uid: 15972 components: - rot: 3.141592653589793 rad pos: 16.5,18.5 @@ -122870,7 +108054,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15972 + - uid: 15973 components: - rot: 3.141592653589793 rad pos: 16.5,20.5 @@ -122878,7 +108062,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15973 + - uid: 15974 components: - rot: 3.141592653589793 rad pos: 16.5,21.5 @@ -122886,7 +108070,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15974 + - uid: 15975 components: - rot: -1.5707963267948966 rad pos: 33.5,0.5 @@ -122894,7 +108078,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15975 + - uid: 15976 components: - rot: -1.5707963267948966 rad pos: 32.5,0.5 @@ -122902,7 +108086,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15976 + - uid: 15977 components: - rot: -1.5707963267948966 rad pos: 31.5,0.5 @@ -122912,7 +108096,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15977 + - uid: 15978 components: - rot: -1.5707963267948966 rad pos: 29.5,0.5 @@ -122920,7 +108104,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15978 + - uid: 15979 components: - rot: -1.5707963267948966 rad pos: 28.5,0.5 @@ -122928,7 +108112,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15979 + - uid: 15980 components: - rot: 3.141592653589793 rad pos: 14.5,-34.5 @@ -122936,14 +108120,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15980 + - uid: 15981 components: - pos: 15.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15981 + - uid: 15982 components: - rot: 3.141592653589793 rad pos: 14.5,-31.5 @@ -122951,49 +108135,49 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15982 + - uid: 15983 components: - pos: 15.5,-33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15983 + - uid: 15984 components: - pos: 15.5,-35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15984 + - uid: 15985 components: - pos: 15.5,-31.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15985 + - uid: 15986 components: - pos: 15.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15986 + - uid: 15987 components: - pos: 15.5,-20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15987 + - uid: 15988 components: - pos: 15.5,-19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15988 + - uid: 15989 components: - rot: 1.5707963267948966 rad pos: 19.5,-17.5 @@ -123001,14 +108185,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15989 + - uid: 15990 components: - pos: 15.5,-18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15990 + - uid: 15991 components: - rot: 1.5707963267948966 rad pos: 16.5,-17.5 @@ -123016,7 +108200,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15991 + - uid: 15992 components: - rot: 1.5707963267948966 rad pos: 17.5,-17.5 @@ -123024,7 +108208,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15992 + - uid: 15993 components: - rot: 1.5707963267948966 rad pos: 18.5,-17.5 @@ -123032,7 +108216,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15993 + - uid: 15994 components: - rot: 3.141592653589793 rad pos: 15.5,-27.5 @@ -123040,14 +108224,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15994 + - uid: 15995 components: - pos: 26.5,-8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15995 + - uid: 15996 components: - rot: 1.5707963267948966 rad pos: -2.5,-25.5 @@ -123055,7 +108239,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15996 + - uid: 15997 components: - rot: -1.5707963267948966 rad pos: 20.5,-30.5 @@ -123065,7 +108249,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15997 + - uid: 15998 components: - rot: -1.5707963267948966 rad pos: 19.5,-30.5 @@ -123073,14 +108257,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15998 + - uid: 15999 components: - pos: 22.5,-34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15999 + - uid: 16000 components: - rot: -1.5707963267948966 rad pos: 23.5,-30.5 @@ -123088,14 +108272,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16000 + - uid: 16001 components: - pos: 28.5,-30.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16001 + - uid: 16002 components: - rot: 3.141592653589793 rad pos: 15.5,-28.5 @@ -123103,14 +108287,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16002 + - uid: 16003 components: - pos: -3.5,-16.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16003 + - uid: 16004 components: - rot: 1.5707963267948966 rad pos: 16.5,-30.5 @@ -123118,7 +108302,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16004 + - uid: 16005 components: - rot: 1.5707963267948966 rad pos: -1.5,-25.5 @@ -123126,7 +108310,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16005 + - uid: 16006 components: - rot: 3.141592653589793 rad pos: 15.5,-26.5 @@ -123134,14 +108318,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16006 + - uid: 16007 components: - pos: -3.5,-19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16007 + - uid: 16008 components: - rot: 1.5707963267948966 rad pos: -29.5,-80.5 @@ -123149,7 +108333,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16008 + - uid: 16009 components: - rot: -1.5707963267948966 rad pos: -20.5,-73.5 @@ -123157,14 +108341,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16009 + - uid: 16010 components: - pos: -3.5,8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16010 + - uid: 16011 components: - rot: -1.5707963267948966 rad pos: -8.5,-41.5 @@ -123172,21 +108356,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16011 + - uid: 16012 components: - pos: -23.5,-76.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16012 + - uid: 16013 components: - pos: -23.5,-75.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16013 + - uid: 16014 components: - rot: -1.5707963267948966 rad pos: -19.5,-73.5 @@ -123194,7 +108378,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16014 + - uid: 16015 components: - rot: -1.5707963267948966 rad pos: 8.5,12.5 @@ -123202,7 +108386,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16015 + - uid: 16016 components: - rot: 3.141592653589793 rad pos: 8.5,12.5 @@ -123210,7 +108394,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16016 + - uid: 16017 components: - rot: -1.5707963267948966 rad pos: -9.5,-41.5 @@ -123218,7 +108402,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16017 + - uid: 16018 components: - rot: 3.141592653589793 rad pos: -12.5,-45.5 @@ -123226,14 +108410,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16018 + - uid: 16019 components: - pos: -9.5,-54.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16019 + - uid: 16020 components: - rot: 3.141592653589793 rad pos: -3.5,-54.5 @@ -123241,7 +108425,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16020 + - uid: 16021 components: - rot: 3.141592653589793 rad pos: -3.5,-55.5 @@ -123249,7 +108433,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16021 + - uid: 16022 components: - rot: 3.141592653589793 rad pos: -1.5,-49.5 @@ -123257,7 +108441,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16022 + - uid: 16023 components: - rot: -1.5707963267948966 rad pos: -1.5,-41.5 @@ -123265,7 +108449,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16023 + - uid: 16024 components: - rot: -1.5707963267948966 rad pos: -2.5,-41.5 @@ -123273,35 +108457,35 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16024 + - uid: 16025 components: - pos: -5.5,-16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16025 + - uid: 16026 components: - pos: 2.5,-13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16026 + - uid: 16027 components: - pos: -5.5,-13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16027 + - uid: 16028 components: - pos: -5.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16028 + - uid: 16029 components: - rot: -1.5707963267948966 rad pos: -6.5,-41.5 @@ -123309,84 +108493,84 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16029 + - uid: 16030 components: - pos: -5.5,-6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16030 + - uid: 16031 components: - pos: -5.5,-4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16031 + - uid: 16032 components: - pos: -5.5,-3.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16032 + - uid: 16033 components: - pos: -5.5,-1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16033 + - uid: 16034 components: - pos: -5.5,-0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16034 + - uid: 16035 components: - pos: -5.5,-12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16035 + - uid: 16036 components: - pos: -5.5,-21.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16036 + - uid: 16037 components: - pos: -5.5,-15.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16037 + - uid: 16038 components: - pos: -5.5,-20.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16038 + - uid: 16039 components: - pos: -5.5,-19.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16039 + - uid: 16040 components: - pos: -5.5,-5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16040 + - uid: 16041 components: - rot: 1.5707963267948966 rad pos: -1.5,13.5 @@ -123396,7 +108580,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16041 + - uid: 16042 components: - rot: 3.141592653589793 rad pos: -1.5,-48.5 @@ -123404,7 +108588,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16042 + - uid: 16043 components: - rot: 3.141592653589793 rad pos: -21.5,-88.5 @@ -123412,7 +108596,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16043 + - uid: 16044 components: - rot: 3.141592653589793 rad pos: 34.5,-31.5 @@ -123420,7 +108604,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16044 + - uid: 16045 components: - rot: -1.5707963267948966 rad pos: -1.5,-14.5 @@ -123428,7 +108612,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16045 + - uid: 16046 components: - rot: 3.141592653589793 rad pos: 34.5,-30.5 @@ -123436,7 +108620,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16046 + - uid: 16047 components: - rot: 1.5707963267948966 rad pos: 43.5,-24.5 @@ -123444,7 +108628,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16047 + - uid: 16048 components: - rot: 1.5707963267948966 rad pos: -28.5,-78.5 @@ -123452,7 +108636,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16048 + - uid: 16049 components: - rot: 1.5707963267948966 rad pos: -29.5,-78.5 @@ -123460,7 +108644,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16049 + - uid: 16050 components: - rot: -1.5707963267948966 rad pos: -21.5,30.5 @@ -123468,7 +108652,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16050 + - uid: 16051 components: - rot: 3.141592653589793 rad pos: 34.5,-37.5 @@ -123476,7 +108660,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16051 + - uid: 16052 components: - rot: 3.141592653589793 rad pos: 34.5,-33.5 @@ -123484,14 +108668,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16052 + - uid: 16053 components: - pos: 24.5,-30.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16053 + - uid: 16054 components: - rot: -1.5707963267948966 rad pos: 30.5,12.5 @@ -123501,7 +108685,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16054 + - uid: 16055 components: - rot: -1.5707963267948966 rad pos: 19.5,16.5 @@ -123509,7 +108693,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16055 + - uid: 16056 components: - rot: 3.141592653589793 rad pos: -12.5,6.5 @@ -123517,7 +108701,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16056 + - uid: 16057 components: - rot: -1.5707963267948966 rad pos: 32.5,12.5 @@ -123525,7 +108709,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16057 + - uid: 16058 components: - rot: 3.141592653589793 rad pos: 30.5,-20.5 @@ -123535,7 +108719,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16058 + - uid: 16059 components: - rot: 3.141592653589793 rad pos: 10.5,10.5 @@ -123543,7 +108727,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16059 + - uid: 16060 components: - rot: 1.5707963267948966 rad pos: 8.5,8.5 @@ -123551,7 +108735,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16060 + - uid: 16061 components: - rot: -1.5707963267948966 rad pos: -22.5,30.5 @@ -123559,7 +108743,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16061 + - uid: 16062 components: - rot: -1.5707963267948966 rad pos: -20.5,29.5 @@ -123567,28 +108751,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16062 + - uid: 16063 components: - pos: -20.5,26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16063 + - uid: 16064 components: - pos: 26.5,-31.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16064 + - uid: 16065 components: - pos: 26.5,-27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16065 + - uid: 16066 components: - rot: 3.141592653589793 rad pos: 2.5,-2.5 @@ -123598,42 +108782,42 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16066 + - uid: 16067 components: - pos: 2.5,-5.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16067 + - uid: 16068 components: - pos: -3.5,-3.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16068 + - uid: 16069 components: - pos: -3.5,-2.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16069 + - uid: 16070 components: - pos: -3.5,-15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16070 + - uid: 16071 components: - pos: 47.5,-27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16071 + - uid: 16072 components: - rot: 3.141592653589793 rad pos: 8.5,5.5 @@ -123641,7 +108825,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16072 + - uid: 16073 components: - rot: -1.5707963267948966 rad pos: 29.5,12.5 @@ -123649,7 +108833,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16073 + - uid: 16074 components: - rot: 3.141592653589793 rad pos: 40.5,3.5 @@ -123659,7 +108843,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16074 + - uid: 16075 components: - rot: 1.5707963267948966 rad pos: 42.5,-27.5 @@ -123667,7 +108851,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16075 + - uid: 16076 components: - rot: 1.5707963267948966 rad pos: 17.5,12.5 @@ -123675,7 +108859,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16076 + - uid: 16077 components: - rot: 1.5707963267948966 rad pos: 43.5,-27.5 @@ -123683,7 +108867,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16077 + - uid: 16078 components: - rot: -1.5707963267948966 rad pos: 10.5,12.5 @@ -123691,21 +108875,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16078 + - uid: 16079 components: - pos: 26.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16079 + - uid: 16080 components: - pos: 26.5,-16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16080 + - uid: 16081 components: - rot: -1.5707963267948966 rad pos: 27.5,-30.5 @@ -123715,7 +108899,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16081 + - uid: 16082 components: - rot: -1.5707963267948966 rad pos: 22.5,-42.5 @@ -123723,7 +108907,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16082 + - uid: 16083 components: - rot: -1.5707963267948966 rad pos: 23.5,-42.5 @@ -123731,7 +108915,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16083 + - uid: 16084 components: - rot: -1.5707963267948966 rad pos: 27.5,-42.5 @@ -123739,7 +108923,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16084 + - uid: 16085 components: - rot: 3.141592653589793 rad pos: 8.5,2.5 @@ -123747,14 +108931,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16085 + - uid: 16086 components: - pos: -11.5,-24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16086 + - uid: 16087 components: - rot: 3.141592653589793 rad pos: -8.5,-23.5 @@ -123762,7 +108946,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16087 + - uid: 16088 components: - rot: 3.141592653589793 rad pos: 10.5,9.5 @@ -123770,14 +108954,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16088 + - uid: 16089 components: - pos: 2.5,-12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16089 + - uid: 16090 components: - rot: -1.5707963267948966 rad pos: 20.5,16.5 @@ -123785,14 +108969,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16090 + - uid: 16091 components: - pos: 23.5,-33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16091 + - uid: 16092 components: - rot: 1.5707963267948966 rad pos: 23.5,-54.5 @@ -123802,28 +108986,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16092 + - uid: 16093 components: - pos: -3.5,-17.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16093 + - uid: 16094 components: - pos: -5.5,-22.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16094 + - uid: 16095 components: - pos: -5.5,-18.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16095 + - uid: 16096 components: - rot: -1.5707963267948966 rad pos: -23.5,30.5 @@ -123831,7 +109015,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16096 + - uid: 16097 components: - rot: -1.5707963267948966 rad pos: -16.5,29.5 @@ -123839,7 +109023,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16097 + - uid: 16098 components: - rot: -1.5707963267948966 rad pos: -19.5,29.5 @@ -123847,7 +109031,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16098 + - uid: 16099 components: - rot: -1.5707963267948966 rad pos: 10.5,-9.5 @@ -123855,7 +109039,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16099 + - uid: 16100 components: - rot: 3.141592653589793 rad pos: 34.5,-34.5 @@ -123863,7 +109047,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16100 + - uid: 16101 components: - rot: 1.5707963267948966 rad pos: 6.5,19.5 @@ -123871,7 +109055,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16101 + - uid: 16102 components: - rot: 3.141592653589793 rad pos: 40.5,1.5 @@ -123879,21 +109063,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16102 + - uid: 16103 components: - pos: 0.5,8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16103 + - uid: 16104 components: - pos: 0.5,10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16104 + - uid: 16105 components: - rot: 1.5707963267948966 rad pos: -0.5,11.5 @@ -123901,7 +109085,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16105 + - uid: 16106 components: - rot: 3.141592653589793 rad pos: 2.5,3.5 @@ -123909,12 +109093,12 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16106 + - uid: 16107 components: - pos: 2.5,12.5 parent: 2 type: Transform - - uid: 16107 + - uid: 16108 components: - rot: 3.141592653589793 rad pos: 8.5,3.5 @@ -123922,26 +109106,26 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16108 + - uid: 16109 components: - pos: 34.5,-27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16109 + - uid: 16110 components: - pos: 2.5,13.5 parent: 2 type: Transform - - uid: 16110 + - uid: 16111 components: - pos: 2.5,-0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16111 + - uid: 16112 components: - rot: 1.5707963267948966 rad pos: 3.5,0.5 @@ -123949,7 +109133,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16112 + - uid: 16113 components: - rot: 1.5707963267948966 rad pos: -2.5,-1.5 @@ -123957,7 +109141,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16113 + - uid: 16114 components: - rot: 1.5707963267948966 rad pos: -5.5,-1.5 @@ -123965,7 +109149,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16114 + - uid: 16115 components: - rot: 3.141592653589793 rad pos: -1.5,-50.5 @@ -123973,7 +109157,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16115 + - uid: 16116 components: - rot: -1.5707963267948966 rad pos: 37.5,11.5 @@ -123981,7 +109165,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16116 + - uid: 16117 components: - rot: 1.5707963267948966 rad pos: 8.5,17.5 @@ -123989,7 +109173,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16117 + - uid: 16118 components: - rot: 1.5707963267948966 rad pos: 7.5,17.5 @@ -123997,7 +109181,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16118 + - uid: 16119 components: - rot: 1.5707963267948966 rad pos: 6.5,17.5 @@ -124005,14 +109189,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16119 + - uid: 16120 components: - pos: -8.5,7.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16120 + - uid: 16121 components: - rot: 1.5707963267948966 rad pos: 12.5,17.5 @@ -124020,7 +109204,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16121 + - uid: 16122 components: - rot: 3.141592653589793 rad pos: -3.5,-58.5 @@ -124030,14 +109214,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16122 + - uid: 16123 components: - pos: -3.5,-20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16123 + - uid: 16124 components: - rot: -1.5707963267948966 rad pos: -6.5,-42.5 @@ -124045,7 +109229,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16124 + - uid: 16125 components: - rot: 3.141592653589793 rad pos: 2.5,2.5 @@ -124053,7 +109237,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16125 + - uid: 16126 components: - rot: -1.5707963267948966 rad pos: 18.5,-12.5 @@ -124061,7 +109245,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16126 + - uid: 16127 components: - rot: 1.5707963267948966 rad pos: 22.5,-16.5 @@ -124069,7 +109253,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16127 + - uid: 16128 components: - rot: 1.5707963267948966 rad pos: 23.5,-16.5 @@ -124077,7 +109261,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16128 + - uid: 16129 components: - rot: 1.5707963267948966 rad pos: 27.5,-16.5 @@ -124085,7 +109269,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16129 + - uid: 16130 components: - rot: 1.5707963267948966 rad pos: 31.5,-16.5 @@ -124093,28 +109277,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16130 + - uid: 16131 components: - pos: 21.5,-13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16131 + - uid: 16132 components: - pos: 21.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16132 + - uid: 16133 components: - pos: 21.5,-11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16133 + - uid: 16134 components: - pos: 21.5,-9.5 parent: 2 @@ -124123,7 +109307,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16134 + - uid: 16135 components: - pos: 21.5,-7.5 parent: 2 @@ -124132,28 +109316,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16135 + - uid: 16136 components: - pos: 21.5,-8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16136 + - uid: 16137 components: - pos: 21.5,-6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16137 + - uid: 16138 components: - pos: 22.5,-36.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16138 + - uid: 16139 components: - rot: 3.141592653589793 rad pos: 26.5,-23.5 @@ -124161,7 +109345,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16139 + - uid: 16140 components: - rot: 1.5707963267948966 rad pos: 27.5,-22.5 @@ -124169,14 +109353,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16140 + - uid: 16141 components: - pos: 20.5,-22.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16141 + - uid: 16142 components: - rot: 3.141592653589793 rad pos: 26.5,-13.5 @@ -124184,14 +109368,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16142 + - uid: 16143 components: - pos: 31.5,-16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16143 + - uid: 16144 components: - pos: 33.5,-15.5 parent: 2 @@ -124200,21 +109384,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16144 + - uid: 16145 components: - pos: -5.5,-25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16145 + - uid: 16146 components: - pos: -5.5,-24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16146 + - uid: 16147 components: - rot: -1.5707963267948966 rad pos: 28.5,-42.5 @@ -124222,7 +109406,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16147 + - uid: 16148 components: - pos: 26.5,-33.5 parent: 2 @@ -124231,7 +109415,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16148 + - uid: 16149 components: - rot: -1.5707963267948966 rad pos: 25.5,-29.5 @@ -124241,7 +109425,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16149 + - uid: 16150 components: - rot: -1.5707963267948966 rad pos: 6.5,12.5 @@ -124249,7 +109433,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16150 + - uid: 16151 components: - rot: -1.5707963267948966 rad pos: 9.5,12.5 @@ -124259,7 +109443,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16151 + - uid: 16152 components: - rot: -1.5707963267948966 rad pos: 20.5,-12.5 @@ -124267,7 +109451,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16152 + - uid: 16153 components: - rot: 1.5707963267948966 rad pos: 15.5,-41.5 @@ -124275,7 +109459,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16153 + - uid: 16154 components: - rot: -1.5707963267948966 rad pos: -17.5,29.5 @@ -124283,7 +109467,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16154 + - uid: 16155 components: - rot: -1.5707963267948966 rad pos: -17.5,30.5 @@ -124291,7 +109475,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16155 + - uid: 16156 components: - rot: -1.5707963267948966 rad pos: -18.5,30.5 @@ -124299,7 +109483,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16156 + - uid: 16157 components: - rot: -1.5707963267948966 rad pos: -19.5,30.5 @@ -124307,7 +109491,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16157 + - uid: 16158 components: - rot: -1.5707963267948966 rad pos: -22.5,29.5 @@ -124315,7 +109499,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16158 + - uid: 16159 components: - rot: -1.5707963267948966 rad pos: -21.5,29.5 @@ -124325,28 +109509,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16159 + - uid: 16160 components: - pos: 36.5,-24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16160 + - uid: 16161 components: - pos: 36.5,-23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16161 + - uid: 16162 components: - pos: 23.5,-32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16162 + - uid: 16163 components: - rot: 3.141592653589793 rad pos: -10.5,6.5 @@ -124354,21 +109538,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16163 + - uid: 16164 components: - pos: -18.5,27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16164 + - uid: 16165 components: - pos: 36.5,-22.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16165 + - uid: 16166 components: - pos: 47.5,-26.5 parent: 2 @@ -124377,7 +109561,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16166 + - uid: 16167 components: - rot: -1.5707963267948966 rad pos: 25.5,-30.5 @@ -124387,7 +109571,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16167 + - uid: 16168 components: - rot: 3.141592653589793 rad pos: 34.5,-29.5 @@ -124395,7 +109579,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16168 + - uid: 16169 components: - rot: -1.5707963267948966 rad pos: 19.5,-12.5 @@ -124403,7 +109587,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16169 + - uid: 16170 components: - rot: -1.5707963267948966 rad pos: -1.5,-61.5 @@ -124411,7 +109595,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16170 + - uid: 16171 components: - pos: -10.5,-2.5 parent: 2 @@ -124420,7 +109604,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16171 + - uid: 16172 components: - rot: -1.5707963267948966 rad pos: 24.5,-30.5 @@ -124428,14 +109612,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16172 + - uid: 16173 components: - pos: 26.5,-34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16173 + - uid: 16174 components: - rot: 1.5707963267948966 rad pos: 16.5,17.5 @@ -124443,7 +109627,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16174 + - uid: 16175 components: - rot: 1.5707963267948966 rad pos: 18.5,-5.5 @@ -124451,7 +109635,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16175 + - uid: 16176 components: - rot: -1.5707963267948966 rad pos: 15.5,16.5 @@ -124459,7 +109643,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16176 + - uid: 16177 components: - rot: -1.5707963267948966 rad pos: 18.5,16.5 @@ -124467,7 +109651,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16177 + - uid: 16178 components: - rot: -1.5707963267948966 rad pos: 17.5,16.5 @@ -124475,7 +109659,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16178 + - uid: 16179 components: - rot: -1.5707963267948966 rad pos: 33.5,12.5 @@ -124485,7 +109669,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16179 + - uid: 16180 components: - rot: 3.141592653589793 rad pos: 40.5,2.5 @@ -124493,21 +109677,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16180 + - uid: 16181 components: - pos: -20.5,27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16181 + - uid: 16182 components: - pos: 22.5,-31.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16182 + - uid: 16183 components: - pos: -20.5,32.5 parent: 2 @@ -124516,7 +109700,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16183 + - uid: 16184 components: - rot: 1.5707963267948966 rad pos: 46.5,-28.5 @@ -124524,14 +109708,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16184 + - uid: 16185 components: - pos: 36.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16185 + - uid: 16186 components: - rot: 1.5707963267948966 rad pos: 42.5,-24.5 @@ -124539,7 +109723,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16186 + - uid: 16187 components: - rot: 1.5707963267948966 rad pos: -7.5,-64.5 @@ -124547,14 +109731,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16187 + - uid: 16188 components: - pos: -23.5,-81.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16188 + - uid: 16189 components: - rot: 1.5707963267948966 rad pos: -27.5,-80.5 @@ -124562,7 +109746,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16189 + - uid: 16190 components: - rot: -1.5707963267948966 rad pos: 8.5,-42.5 @@ -124570,14 +109754,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16190 + - uid: 16191 components: - pos: -23.5,-79.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16191 + - uid: 16192 components: - rot: 1.5707963267948966 rad pos: -28.5,-80.5 @@ -124585,7 +109769,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16192 + - uid: 16193 components: - rot: 1.5707963267948966 rad pos: -26.5,-80.5 @@ -124593,7 +109777,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16193 + - uid: 16194 components: - rot: -1.5707963267948966 rad pos: 7.5,-42.5 @@ -124601,7 +109785,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16194 + - uid: 16195 components: - rot: -1.5707963267948966 rad pos: 5.5,-42.5 @@ -124609,7 +109793,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16195 + - uid: 16196 components: - rot: 3.141592653589793 rad pos: 14.5,-37.5 @@ -124617,7 +109801,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16196 + - uid: 16197 components: - rot: 1.5707963267948966 rad pos: 12.5,-43.5 @@ -124625,7 +109809,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16197 + - uid: 16198 components: - rot: 1.5707963267948966 rad pos: 14.5,-25.5 @@ -124633,7 +109817,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16198 + - uid: 16199 components: - rot: 1.5707963267948966 rad pos: 14.5,-43.5 @@ -124641,14 +109825,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16199 + - uid: 16200 components: - pos: 15.5,-39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16200 + - uid: 16201 components: - rot: 3.141592653589793 rad pos: 5.5,14.5 @@ -124656,7 +109840,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16201 + - uid: 16202 components: - rot: 3.141592653589793 rad pos: 5.5,15.5 @@ -124664,21 +109848,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16202 + - uid: 16203 components: - pos: -3.5,-27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16203 + - uid: 16204 components: - pos: 20.5,-18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16204 + - uid: 16205 components: - pos: 20.5,-20.5 parent: 2 @@ -124687,7 +109871,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16205 + - uid: 16206 components: - rot: -1.5707963267948966 rad pos: 39.5,15.5 @@ -124695,7 +109879,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16206 + - uid: 16207 components: - rot: -1.5707963267948966 rad pos: 14.5,-0.5 @@ -124703,7 +109887,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16207 + - uid: 16208 components: - rot: -1.5707963267948966 rad pos: 37.5,15.5 @@ -124711,7 +109895,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16208 + - uid: 16209 components: - rot: 3.141592653589793 rad pos: -21.5,-85.5 @@ -124719,7 +109903,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16209 + - uid: 16210 components: - rot: 3.141592653589793 rad pos: -21.5,-87.5 @@ -124727,7 +109911,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16210 + - uid: 16211 components: - rot: -1.5707963267948966 rad pos: -22.5,-88.5 @@ -124735,7 +109919,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16211 + - uid: 16212 components: - rot: -1.5707963267948966 rad pos: -23.5,-88.5 @@ -124743,14 +109927,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16212 + - uid: 16213 components: - pos: -24.5,-86.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16213 + - uid: 16214 components: - rot: -1.5707963267948966 rad pos: 27.5,-29.5 @@ -124760,14 +109944,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16214 + - uid: 16215 components: - pos: 23.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16215 + - uid: 16216 components: - rot: -1.5707963267948966 rad pos: 31.5,-6.5 @@ -124775,28 +109959,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16216 + - uid: 16217 components: - pos: -3.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16217 + - uid: 16218 components: - pos: -3.5,-6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16218 + - uid: 16219 components: - pos: -5.5,-8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16219 + - uid: 16220 components: - rot: -1.5707963267948966 rad pos: 22.5,10.5 @@ -124804,7 +109988,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16220 + - uid: 16221 components: - rot: -1.5707963267948966 rad pos: 25.5,10.5 @@ -124812,7 +109996,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16221 + - uid: 16222 components: - rot: -1.5707963267948966 rad pos: 16.5,-29.5 @@ -124820,7 +110004,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16222 + - uid: 16223 components: - rot: -1.5707963267948966 rad pos: 21.5,-29.5 @@ -124828,7 +110012,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16223 + - uid: 16224 components: - rot: -1.5707963267948966 rad pos: -10.5,-41.5 @@ -124836,7 +110020,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16224 + - uid: 16225 components: - rot: 3.141592653589793 rad pos: -5.5,-30.5 @@ -124844,28 +110028,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16225 + - uid: 16226 components: - pos: -3.5,-41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16226 + - uid: 16227 components: - pos: -19.5,-60.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16227 + - uid: 16228 components: - pos: -19.5,-59.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16228 + - uid: 16229 components: - rot: 1.5707963267948966 rad pos: 19.5,-41.5 @@ -124873,7 +110057,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16229 + - uid: 16230 components: - rot: 1.5707963267948966 rad pos: -0.5,-25.5 @@ -124881,7 +110065,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16230 + - uid: 16231 components: - rot: 1.5707963267948966 rad pos: -0.5,-27.5 @@ -124889,7 +110073,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16231 + - uid: 16232 components: - rot: 1.5707963267948966 rad pos: -1.5,-27.5 @@ -124897,7 +110081,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16232 + - uid: 16233 components: - rot: 1.5707963267948966 rad pos: 1.5,-27.5 @@ -124905,7 +110089,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16233 + - uid: 16234 components: - rot: 1.5707963267948966 rad pos: -7.5,-27.5 @@ -124913,14 +110097,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16234 + - uid: 16235 components: - pos: -3.5,-39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16235 + - uid: 16236 components: - rot: 3.141592653589793 rad pos: 34.5,-39.5 @@ -124928,7 +110112,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16236 + - uid: 16237 components: - rot: 3.141592653589793 rad pos: 34.5,-40.5 @@ -124936,28 +110120,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16237 + - uid: 16238 components: - pos: 34.5,-22.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16238 + - uid: 16239 components: - pos: -18.5,28.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16239 + - uid: 16240 components: - pos: -18.5,26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16240 + - uid: 16241 components: - rot: -1.5707963267948966 rad pos: 3.5,-41.5 @@ -124965,7 +110149,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16241 + - uid: 16242 components: - rot: -1.5707963267948966 rad pos: -7.5,-41.5 @@ -124973,7 +110157,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16242 + - uid: 16243 components: - rot: 1.5707963267948966 rad pos: -3.5,-41.5 @@ -124981,7 +110165,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16243 + - uid: 16244 components: - rot: -1.5707963267948966 rad pos: -2.5,-14.5 @@ -124991,7 +110175,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16244 + - uid: 16245 components: - rot: -1.5707963267948966 rad pos: 31.5,-42.5 @@ -124999,7 +110183,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16245 + - uid: 16246 components: - pos: -23.5,-74.5 parent: 2 @@ -125008,7 +110192,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16246 + - uid: 16247 components: - rot: -1.5707963267948966 rad pos: -22.5,-73.5 @@ -125016,7 +110200,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16247 + - uid: 16248 components: - rot: 1.5707963267948966 rad pos: 33.5,-18.5 @@ -125024,7 +110208,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16248 + - uid: 16249 components: - rot: 1.5707963267948966 rad pos: 32.5,-18.5 @@ -125032,7 +110216,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16249 + - uid: 16250 components: - rot: 3.141592653589793 rad pos: 34.5,-19.5 @@ -125040,7 +110224,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16250 + - uid: 16251 components: - rot: 3.141592653589793 rad pos: 34.5,-20.5 @@ -125048,7 +110232,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16251 + - uid: 16252 components: - rot: 3.141592653589793 rad pos: 36.5,-20.5 @@ -125056,7 +110240,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16252 + - uid: 16253 components: - rot: 3.141592653589793 rad pos: 36.5,-19.5 @@ -125064,7 +110248,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16253 + - uid: 16254 components: - rot: 3.141592653589793 rad pos: 36.5,-18.5 @@ -125072,7 +110256,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16254 + - uid: 16255 components: - rot: 3.141592653589793 rad pos: 36.5,-17.5 @@ -125080,7 +110264,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16255 + - uid: 16256 components: - rot: -1.5707963267948966 rad pos: 35.5,-16.5 @@ -125088,7 +110272,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16256 + - uid: 16257 components: - rot: -1.5707963267948966 rad pos: 34.5,-16.5 @@ -125096,14 +110280,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16257 + - uid: 16258 components: - pos: 25.5,-6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16258 + - uid: 16259 components: - rot: 3.141592653589793 rad pos: 24.5,-45.5 @@ -125111,7 +110295,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16259 + - uid: 16260 components: - rot: 3.141592653589793 rad pos: 24.5,-44.5 @@ -125119,7 +110303,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16260 + - uid: 16261 components: - rot: 3.141592653589793 rad pos: 26.5,-45.5 @@ -125127,7 +110311,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16261 + - uid: 16262 components: - rot: 3.141592653589793 rad pos: 26.5,-44.5 @@ -125135,7 +110319,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16262 + - uid: 16263 components: - rot: 3.141592653589793 rad pos: 26.5,-43.5 @@ -125143,14 +110327,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16263 + - uid: 16264 components: - pos: 23.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16264 + - uid: 16265 components: - rot: -1.5707963267948966 rad pos: 40.5,-25.5 @@ -125158,7 +110342,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16265 + - uid: 16266 components: - rot: -1.5707963267948966 rad pos: 35.5,-26.5 @@ -125166,7 +110350,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16266 + - uid: 16267 components: - rot: -1.5707963267948966 rad pos: 36.5,-26.5 @@ -125174,7 +110358,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16267 + - uid: 16268 components: - rot: -1.5707963267948966 rad pos: 37.5,-26.5 @@ -125182,7 +110366,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16268 + - uid: 16269 components: - rot: -1.5707963267948966 rad pos: 38.5,-26.5 @@ -125190,7 +110374,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16269 + - uid: 16270 components: - rot: -1.5707963267948966 rad pos: 39.5,-26.5 @@ -125198,7 +110382,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16270 + - uid: 16271 components: - rot: -1.5707963267948966 rad pos: 40.5,-26.5 @@ -125206,14 +110390,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16271 + - uid: 16272 components: - pos: 36.5,-28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16272 + - uid: 16273 components: - rot: -1.5707963267948966 rad pos: 39.5,-25.5 @@ -125221,7 +110405,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16273 + - uid: 16274 components: - rot: -1.5707963267948966 rad pos: 38.5,-25.5 @@ -125229,7 +110413,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16274 + - uid: 16275 components: - rot: -1.5707963267948966 rad pos: 37.5,-25.5 @@ -125237,21 +110421,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16275 + - uid: 16276 components: - pos: 34.5,-28.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16276 + - uid: 16277 components: - pos: 36.5,-27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16277 + - uid: 16278 components: - rot: 1.5707963267948966 rad pos: 45.5,-28.5 @@ -125259,63 +110443,63 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16278 + - uid: 16279 components: - pos: -27.5,-78.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16279 + - uid: 16280 components: - pos: -20.5,-82.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16280 + - uid: 16281 components: - pos: -20.5,-81.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16281 + - uid: 16282 components: - pos: -20.5,-79.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16282 + - uid: 16283 components: - pos: -20.5,-78.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16283 + - uid: 16284 components: - pos: -20.5,-77.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16284 + - uid: 16285 components: - pos: -20.5,-76.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16285 + - uid: 16286 components: - pos: -20.5,-73.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16286 + - uid: 16287 components: - pos: -25.5,-74.5 parent: 2 @@ -125324,7 +110508,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16287 + - uid: 16288 components: - rot: 1.5707963267948966 rad pos: -23.5,-72.5 @@ -125332,7 +110516,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16288 + - uid: 16289 components: - rot: 1.5707963267948966 rad pos: -22.5,-72.5 @@ -125340,7 +110524,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16289 + - uid: 16290 components: - rot: 3.141592653589793 rad pos: -20.5,-71.5 @@ -125348,7 +110532,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16290 + - uid: 16291 components: - rot: 1.5707963267948966 rad pos: -21.5,-72.5 @@ -125356,21 +110540,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16291 + - uid: 16292 components: - pos: -23.5,-84.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16292 + - uid: 16293 components: - pos: -23.5,-83.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16293 + - uid: 16294 components: - rot: 1.5707963267948966 rad pos: -27.5,-78.5 @@ -125378,7 +110562,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16294 + - uid: 16295 components: - rot: 1.5707963267948966 rad pos: -26.5,-78.5 @@ -125386,7 +110570,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16295 + - uid: 16296 components: - rot: 3.141592653589793 rad pos: -18.5,-76.5 @@ -125394,7 +110578,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16296 + - uid: 16297 components: - rot: 3.141592653589793 rad pos: -18.5,-75.5 @@ -125402,7 +110586,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16297 + - uid: 16298 components: - rot: -1.5707963267948966 rad pos: -21.5,-73.5 @@ -125410,7 +110594,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16298 + - uid: 16299 components: - rot: 3.141592653589793 rad pos: -25.5,-76.5 @@ -125418,14 +110602,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16299 + - uid: 16300 components: - pos: -20.5,-80.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16300 + - uid: 16301 components: - rot: 3.141592653589793 rad pos: -18.5,-70.5 @@ -125433,14 +110617,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16301 + - uid: 16302 components: - pos: 9.5,-43.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16302 + - uid: 16303 components: - pos: 9.5,-44.5 parent: 2 @@ -125449,28 +110633,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16303 + - uid: 16304 components: - pos: 9.5,-45.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16304 + - uid: 16305 components: - pos: 10.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16305 + - uid: 16306 components: - pos: 10.5,-43.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16306 + - uid: 16307 components: - pos: 10.5,-44.5 parent: 2 @@ -125479,7 +110663,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16307 + - uid: 16308 components: - pos: 10.5,-45.5 parent: 2 @@ -125488,7 +110672,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16308 + - uid: 16309 components: - rot: -1.5707963267948966 rad pos: -21.5,-88.5 @@ -125496,7 +110680,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16309 + - uid: 16310 components: - rot: 3.141592653589793 rad pos: -18.5,-69.5 @@ -125504,7 +110688,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16310 + - uid: 16311 components: - rot: 3.141592653589793 rad pos: -18.5,-68.5 @@ -125514,7 +110698,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16311 + - uid: 16312 components: - rot: 3.141592653589793 rad pos: -20.5,-68.5 @@ -125524,7 +110708,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16312 + - uid: 16313 components: - rot: 3.141592653589793 rad pos: -20.5,-67.5 @@ -125532,7 +110716,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16313 + - uid: 16314 components: - rot: 3.141592653589793 rad pos: -18.5,-66.5 @@ -125540,7 +110724,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16314 + - uid: 16315 components: - rot: 3.141592653589793 rad pos: -18.5,-65.5 @@ -125550,7 +110734,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16315 + - uid: 16316 components: - rot: 3.141592653589793 rad pos: -20.5,-65.5 @@ -125560,7 +110744,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16316 + - uid: 16317 components: - rot: 3.141592653589793 rad pos: -20.5,-64.5 @@ -125568,7 +110752,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16317 + - uid: 16318 components: - pos: -20.5,-62.5 parent: 2 @@ -125577,14 +110761,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16318 + - uid: 16319 components: - pos: -18.5,-63.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16319 + - uid: 16320 components: - pos: -18.5,-62.5 parent: 2 @@ -125593,14 +110777,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16320 + - uid: 16321 components: - pos: -18.5,-61.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16321 + - uid: 16322 components: - rot: 3.141592653589793 rad pos: 36.5,-30.5 @@ -125608,7 +110792,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16322 + - uid: 16323 components: - rot: 3.141592653589793 rad pos: 36.5,-32.5 @@ -125616,7 +110800,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16323 + - uid: 16324 components: - rot: 3.141592653589793 rad pos: 36.5,-33.5 @@ -125624,7 +110808,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16324 + - uid: 16325 components: - rot: 3.141592653589793 rad pos: 36.5,-34.5 @@ -125632,7 +110816,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16325 + - uid: 16326 components: - rot: 3.141592653589793 rad pos: 36.5,-35.5 @@ -125640,7 +110824,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16326 + - uid: 16327 components: - rot: 3.141592653589793 rad pos: 36.5,-36.5 @@ -125648,7 +110832,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16327 + - uid: 16328 components: - rot: 3.141592653589793 rad pos: 36.5,-37.5 @@ -125656,7 +110840,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16328 + - uid: 16329 components: - rot: 3.141592653589793 rad pos: 36.5,-38.5 @@ -125664,7 +110848,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16329 + - uid: 16330 components: - rot: 3.141592653589793 rad pos: 36.5,-39.5 @@ -125672,7 +110856,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16330 + - uid: 16331 components: - rot: 3.141592653589793 rad pos: 36.5,-40.5 @@ -125680,7 +110864,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16331 + - uid: 16332 components: - rot: 3.141592653589793 rad pos: 36.5,-41.5 @@ -125688,7 +110872,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16332 + - uid: 16333 components: - rot: 3.141592653589793 rad pos: 36.5,-42.5 @@ -125696,7 +110880,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16333 + - uid: 16334 components: - rot: 1.5707963267948966 rad pos: 35.5,-43.5 @@ -125704,7 +110888,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16334 + - uid: 16335 components: - rot: 1.5707963267948966 rad pos: 34.5,-43.5 @@ -125712,7 +110896,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16335 + - uid: 16336 components: - rot: 1.5707963267948966 rad pos: 33.5,-43.5 @@ -125720,7 +110904,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16336 + - uid: 16337 components: - rot: 1.5707963267948966 rad pos: 32.5,-43.5 @@ -125728,7 +110912,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16337 + - uid: 16338 components: - rot: -1.5707963267948966 rad pos: 35.5,0.5 @@ -125736,7 +110920,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16338 + - uid: 16339 components: - rot: -1.5707963267948966 rad pos: 36.5,0.5 @@ -125744,7 +110928,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16339 + - uid: 16340 components: - rot: 1.5707963267948966 rad pos: 37.5,1.5 @@ -125752,7 +110936,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16340 + - uid: 16341 components: - rot: -1.5707963267948966 rad pos: 38.5,0.5 @@ -125760,7 +110944,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16341 + - uid: 16342 components: - rot: -1.5707963267948966 rad pos: 39.5,0.5 @@ -125768,7 +110952,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16342 + - uid: 16343 components: - rot: 1.5707963267948966 rad pos: 20.5,12.5 @@ -125776,21 +110960,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16343 + - uid: 16344 components: - pos: 11.5,18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16344 + - uid: 16345 components: - pos: 11.5,17.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16345 + - uid: 16346 components: - rot: 3.141592653589793 rad pos: 7.5,18.5 @@ -125800,7 +110984,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16346 + - uid: 16347 components: - rot: 3.141592653589793 rad pos: -11.5,-37.5 @@ -125808,7 +110992,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16347 + - uid: 16348 components: - rot: 3.141592653589793 rad pos: -11.5,-36.5 @@ -125816,7 +111000,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16348 + - uid: 16349 components: - rot: 3.141592653589793 rad pos: -11.5,-35.5 @@ -125824,7 +111008,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16349 + - uid: 16350 components: - rot: 3.141592653589793 rad pos: -11.5,-34.5 @@ -125832,7 +111016,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16350 + - uid: 16351 components: - rot: 3.141592653589793 rad pos: -11.5,-33.5 @@ -125840,7 +111024,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16351 + - uid: 16352 components: - rot: 3.141592653589793 rad pos: -9.5,-38.5 @@ -125848,7 +111032,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16352 + - uid: 16353 components: - rot: -1.5707963267948966 rad pos: -10.5,-37.5 @@ -125856,7 +111040,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16353 + - uid: 16354 components: - rot: -1.5707963267948966 rad pos: -11.5,-37.5 @@ -125864,7 +111048,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16354 + - uid: 16355 components: - rot: -1.5707963267948966 rad pos: -12.5,-37.5 @@ -125872,7 +111056,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16355 + - uid: 16356 components: - rot: -1.5707963267948966 rad pos: -13.5,-37.5 @@ -125882,7 +111066,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16356 + - uid: 16357 components: - rot: 3.141592653589793 rad pos: -9.5,-36.5 @@ -125890,7 +111074,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16357 + - uid: 16358 components: - rot: 3.141592653589793 rad pos: -9.5,-35.5 @@ -125898,7 +111082,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16358 + - uid: 16359 components: - rot: 3.141592653589793 rad pos: -9.5,-34.5 @@ -125908,7 +111092,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16359 + - uid: 16360 components: - rot: 3.141592653589793 rad pos: -9.5,-33.5 @@ -125916,7 +111100,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16360 + - uid: 16361 components: - rot: -1.5707963267948966 rad pos: -13.5,-38.5 @@ -125924,14 +111108,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16361 + - uid: 16362 components: - pos: 11.5,10.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16362 + - uid: 16363 components: - rot: 1.5707963267948966 rad pos: -4.5,-10.5 @@ -125939,7 +111123,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16363 + - uid: 16364 components: - rot: 1.5707963267948966 rad pos: -3.5,-10.5 @@ -125947,7 +111131,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16364 + - uid: 16365 components: - rot: 1.5707963267948966 rad pos: -2.5,-10.5 @@ -125957,7 +111141,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16365 + - uid: 16366 components: - rot: 1.5707963267948966 rad pos: -1.5,-10.5 @@ -125967,7 +111151,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16366 + - uid: 16367 components: - rot: -1.5707963267948966 rad pos: 35.5,-41.5 @@ -125975,7 +111159,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16367 + - uid: 16368 components: - rot: -1.5707963267948966 rad pos: 36.5,-41.5 @@ -125983,7 +111167,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16368 + - uid: 16369 components: - rot: -1.5707963267948966 rad pos: 37.5,-41.5 @@ -125991,7 +111175,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16369 + - uid: 16370 components: - rot: -1.5707963267948966 rad pos: 39.5,-41.5 @@ -125999,7 +111183,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16370 + - uid: 16371 components: - rot: -1.5707963267948966 rad pos: 38.5,-41.5 @@ -126007,7 +111191,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16371 + - uid: 16372 components: - rot: -1.5707963267948966 rad pos: 40.5,-41.5 @@ -126015,7 +111199,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16372 + - uid: 16373 components: - rot: -1.5707963267948966 rad pos: 41.5,-41.5 @@ -126023,7 +111207,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16373 + - uid: 16374 components: - rot: -1.5707963267948966 rad pos: 37.5,-43.5 @@ -126031,7 +111215,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16374 + - uid: 16375 components: - rot: -1.5707963267948966 rad pos: 38.5,-43.5 @@ -126039,7 +111223,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16375 + - uid: 16376 components: - rot: -1.5707963267948966 rad pos: 39.5,-43.5 @@ -126047,7 +111231,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16376 + - uid: 16377 components: - rot: -1.5707963267948966 rad pos: 40.5,-43.5 @@ -126055,7 +111239,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16377 + - uid: 16378 components: - rot: -1.5707963267948966 rad pos: 41.5,-43.5 @@ -126063,35 +111247,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16378 + - uid: 16379 components: - pos: 21.5,-43.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16379 + - uid: 16380 components: - pos: 21.5,-45.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16380 + - uid: 16381 components: - pos: 20.5,-45.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16381 + - uid: 16382 components: - pos: 20.5,-46.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16382 + - uid: 16383 components: - rot: 3.141592653589793 rad pos: 40.5,7.5 @@ -126099,7 +111283,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16383 + - uid: 16384 components: - rot: 3.141592653589793 rad pos: 30.5,16.5 @@ -126107,7 +111291,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16384 + - uid: 16385 components: - rot: 3.141592653589793 rad pos: 30.5,15.5 @@ -126115,7 +111299,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16385 + - uid: 16386 components: - rot: 3.141592653589793 rad pos: 30.5,20.5 @@ -126123,7 +111307,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16386 + - uid: 16387 components: - rot: 3.141592653589793 rad pos: 30.5,21.5 @@ -126131,7 +111315,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16387 + - uid: 16388 components: - rot: 3.141592653589793 rad pos: 30.5,22.5 @@ -126139,7 +111323,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16388 + - uid: 16389 components: - rot: 3.141592653589793 rad pos: 30.5,23.5 @@ -126147,7 +111331,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16389 + - uid: 16390 components: - rot: 3.141592653589793 rad pos: 30.5,24.5 @@ -126155,7 +111339,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16390 + - uid: 16391 components: - rot: 3.141592653589793 rad pos: 30.5,25.5 @@ -126163,7 +111347,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16391 + - uid: 16392 components: - rot: 3.141592653589793 rad pos: 30.5,26.5 @@ -126171,7 +111355,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16392 + - uid: 16393 components: - rot: 3.141592653589793 rad pos: 30.5,27.5 @@ -126179,7 +111363,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16393 + - uid: 16394 components: - rot: 3.141592653589793 rad pos: 28.5,18.5 @@ -126187,7 +111371,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16394 + - uid: 16395 components: - rot: 3.141592653589793 rad pos: 28.5,19.5 @@ -126195,7 +111379,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16395 + - uid: 16396 components: - rot: 3.141592653589793 rad pos: 28.5,20.5 @@ -126203,7 +111387,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16396 + - uid: 16397 components: - rot: 3.141592653589793 rad pos: 28.5,21.5 @@ -126211,7 +111395,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16397 + - uid: 16398 components: - rot: 3.141592653589793 rad pos: 28.5,23.5 @@ -126219,7 +111403,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16398 + - uid: 16399 components: - rot: 3.141592653589793 rad pos: 28.5,24.5 @@ -126227,7 +111411,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16399 + - uid: 16400 components: - rot: 3.141592653589793 rad pos: 28.5,25.5 @@ -126235,7 +111419,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16400 + - uid: 16401 components: - rot: 3.141592653589793 rad pos: 28.5,26.5 @@ -126243,7 +111427,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16401 + - uid: 16402 components: - rot: 3.141592653589793 rad pos: 28.5,27.5 @@ -126251,7 +111435,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16402 + - uid: 16403 components: - rot: 1.5707963267948966 rad pos: 40.5,15.5 @@ -126259,7 +111443,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16403 + - uid: 16404 components: - rot: -1.5707963267948966 rad pos: 43.5,15.5 @@ -126267,7 +111451,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16404 + - uid: 16405 components: - rot: -1.5707963267948966 rad pos: 43.5,14.5 @@ -126275,7 +111459,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16405 + - uid: 16406 components: - rot: -1.5707963267948966 rad pos: 42.5,14.5 @@ -126283,7 +111467,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16406 + - uid: 16407 components: - rot: -1.5707963267948966 rad pos: 40.5,14.5 @@ -126291,7 +111475,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16407 + - uid: 16408 components: - rot: -1.5707963267948966 rad pos: 39.5,14.5 @@ -126299,7 +111483,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16408 + - uid: 16409 components: - rot: -1.5707963267948966 rad pos: 38.5,14.5 @@ -126307,7 +111491,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16409 + - uid: 16410 components: - rot: -1.5707963267948966 rad pos: 37.5,14.5 @@ -126315,7 +111499,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16410 + - uid: 16411 components: - rot: -1.5707963267948966 rad pos: 36.5,14.5 @@ -126323,7 +111507,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16411 + - uid: 16412 components: - rot: -1.5707963267948966 rad pos: 35.5,14.5 @@ -126331,7 +111515,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16412 + - uid: 16413 components: - rot: -1.5707963267948966 rad pos: 34.5,14.5 @@ -126339,7 +111523,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16413 + - uid: 16414 components: - rot: -1.5707963267948966 rad pos: 33.5,14.5 @@ -126347,7 +111531,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16414 + - uid: 16415 components: - rot: -1.5707963267948966 rad pos: 32.5,14.5 @@ -126355,7 +111539,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16415 + - uid: 16416 components: - rot: -1.5707963267948966 rad pos: 31.5,14.5 @@ -126363,7 +111547,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16416 + - uid: 16417 components: - rot: 1.5707963267948966 rad pos: 44.5,14.5 @@ -126371,7 +111555,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16417 + - uid: 16418 components: - rot: 1.5707963267948966 rad pos: 45.5,15.5 @@ -126379,7 +111563,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16418 + - uid: 16419 components: - rot: 1.5707963267948966 rad pos: 46.5,15.5 @@ -126387,7 +111571,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16419 + - uid: 16420 components: - rot: 1.5707963267948966 rad pos: 46.5,14.5 @@ -126395,7 +111579,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16420 + - uid: 16421 components: - rot: 1.5707963267948966 rad pos: 48.5,15.5 @@ -126403,7 +111587,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16421 + - uid: 16422 components: - rot: 1.5707963267948966 rad pos: 48.5,14.5 @@ -126411,7 +111595,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16422 + - uid: 16423 components: - rot: -1.5707963267948966 rad pos: 49.5,14.5 @@ -126419,7 +111603,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16423 + - uid: 16424 components: - rot: 3.141592653589793 rad pos: 49.5,16.5 @@ -126427,7 +111611,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16424 + - uid: 16425 components: - rot: 3.141592653589793 rad pos: 49.5,17.5 @@ -126435,7 +111619,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16425 + - uid: 16426 components: - rot: 3.141592653589793 rad pos: 49.5,18.5 @@ -126443,7 +111627,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16426 + - uid: 16427 components: - rot: 3.141592653589793 rad pos: 49.5,19.5 @@ -126451,7 +111635,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16427 + - uid: 16428 components: - rot: -1.5707963267948966 rad pos: 50.5,20.5 @@ -126459,7 +111643,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16428 + - uid: 16429 components: - rot: 3.141592653589793 rad pos: 50.5,20.5 @@ -126467,7 +111651,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16429 + - uid: 16430 components: - rot: 3.141592653589793 rad pos: 50.5,18.5 @@ -126475,7 +111659,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16430 + - uid: 16431 components: - rot: 3.141592653589793 rad pos: 50.5,17.5 @@ -126483,7 +111667,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16431 + - uid: 16432 components: - rot: 3.141592653589793 rad pos: 50.5,16.5 @@ -126491,7 +111675,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16432 + - uid: 16433 components: - rot: 3.141592653589793 rad pos: 50.5,15.5 @@ -126499,7 +111683,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16433 + - uid: 16434 components: - rot: 1.5707963267948966 rad pos: 48.5,20.5 @@ -126507,7 +111691,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16434 + - uid: 16435 components: - rot: 1.5707963267948966 rad pos: 47.5,20.5 @@ -126515,7 +111699,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16435 + - uid: 16436 components: - rot: 1.5707963267948966 rad pos: 49.5,21.5 @@ -126523,7 +111707,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16436 + - uid: 16437 components: - rot: 1.5707963267948966 rad pos: 48.5,21.5 @@ -126531,7 +111715,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16437 + - uid: 16438 components: - rot: 3.141592653589793 rad pos: 49.5,21.5 @@ -126539,7 +111723,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16438 + - uid: 16439 components: - rot: 3.141592653589793 rad pos: 49.5,22.5 @@ -126547,7 +111731,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16439 + - uid: 16440 components: - rot: 3.141592653589793 rad pos: 50.5,22.5 @@ -126555,7 +111739,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16440 + - uid: 16441 components: - rot: 3.141592653589793 rad pos: 46.5,21.5 @@ -126563,7 +111747,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16441 + - uid: 16442 components: - rot: 3.141592653589793 rad pos: 46.5,22.5 @@ -126571,7 +111755,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16442 + - uid: 16443 components: - rot: 3.141592653589793 rad pos: 47.5,22.5 @@ -126579,7 +111763,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16443 + - uid: 16444 components: - rot: 1.5707963267948966 rad pos: 51.5,21.5 @@ -126587,7 +111771,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16444 + - uid: 16445 components: - rot: 1.5707963267948966 rad pos: 52.5,21.5 @@ -126595,7 +111779,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16445 + - uid: 16446 components: - rot: 3.141592653589793 rad pos: 53.5,22.5 @@ -126603,7 +111787,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16446 + - uid: 16447 components: - rot: 3.141592653589793 rad pos: 52.5,22.5 @@ -126611,7 +111795,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16447 + - uid: 16448 components: - rot: 3.141592653589793 rad pos: 52.5,21.5 @@ -126619,7 +111803,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16448 + - uid: 16449 components: - rot: 1.5707963267948966 rad pos: 51.5,20.5 @@ -126627,7 +111811,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16449 + - uid: 16450 components: - rot: 1.5707963267948966 rad pos: 53.5,20.5 @@ -126635,7 +111819,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16450 + - uid: 16451 components: - rot: 1.5707963267948966 rad pos: 54.5,20.5 @@ -126643,7 +111827,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16451 + - uid: 16452 components: - rot: 1.5707963267948966 rad pos: 56.5,20.5 @@ -126651,7 +111835,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16452 + - uid: 16453 components: - rot: 1.5707963267948966 rad pos: 57.5,20.5 @@ -126659,7 +111843,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16453 + - uid: 16454 components: - rot: 3.141592653589793 rad pos: 55.5,21.5 @@ -126667,7 +111851,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16454 + - uid: 16455 components: - rot: 3.141592653589793 rad pos: 55.5,22.5 @@ -126675,7 +111859,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16455 + - uid: 16456 components: - rot: 3.141592653589793 rad pos: 58.5,21.5 @@ -126683,7 +111867,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16456 + - uid: 16457 components: - rot: 3.141592653589793 rad pos: 58.5,22.5 @@ -126691,7 +111875,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16457 + - uid: 16458 components: - rot: 1.5707963267948966 rad pos: 54.5,21.5 @@ -126699,7 +111883,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16458 + - uid: 16459 components: - rot: 1.5707963267948966 rad pos: 55.5,21.5 @@ -126707,7 +111891,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16459 + - uid: 16460 components: - rot: 1.5707963267948966 rad pos: 57.5,21.5 @@ -126715,7 +111899,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16460 + - uid: 16461 components: - rot: 1.5707963267948966 rad pos: 58.5,21.5 @@ -126723,7 +111907,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16461 + - uid: 16462 components: - rot: 3.141592653589793 rad pos: 56.5,22.5 @@ -126731,7 +111915,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16462 + - uid: 16463 components: - rot: 3.141592653589793 rad pos: 59.5,22.5 @@ -126739,7 +111923,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16463 + - uid: 16464 components: - rot: 3.141592653589793 rad pos: 59.5,20.5 @@ -126747,7 +111931,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16464 + - uid: 16465 components: - rot: 3.141592653589793 rad pos: 59.5,19.5 @@ -126755,7 +111939,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16465 + - uid: 16466 components: - rot: 1.5707963267948966 rad pos: 60.5,18.5 @@ -126763,7 +111947,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16466 + - uid: 16467 components: - rot: -1.5707963267948966 rad pos: 59.5,19.5 @@ -126771,7 +111955,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16467 + - uid: 16468 components: - rot: -1.5707963267948966 rad pos: 60.5,19.5 @@ -126779,7 +111963,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16468 + - uid: 16469 components: - rot: -1.5707963267948966 rad pos: 60.5,16.5 @@ -126787,7 +111971,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16469 + - uid: 16470 components: - rot: -1.5707963267948966 rad pos: 59.5,16.5 @@ -126795,7 +111979,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16470 + - uid: 16471 components: - rot: -1.5707963267948966 rad pos: 60.5,15.5 @@ -126803,21 +111987,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16471 + - uid: 16472 components: - pos: 49.5,14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16472 + - uid: 16473 components: - pos: 49.5,13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16473 + - uid: 16474 components: - rot: -1.5707963267948966 rad pos: 51.5,13.5 @@ -126827,7 +112011,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16474 + - uid: 16475 components: - rot: -1.5707963267948966 rad pos: 50.5,12.5 @@ -126835,7 +112019,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16475 + - uid: 16476 components: - rot: -1.5707963267948966 rad pos: 51.5,12.5 @@ -126845,14 +112029,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16476 + - uid: 16477 components: - pos: 58.5,18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16477 + - uid: 16478 components: - pos: 58.5,17.5 parent: 2 @@ -126861,63 +112045,63 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16478 + - uid: 16479 components: - pos: 59.5,17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16479 + - uid: 16480 components: - pos: 59.5,16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16480 + - uid: 16481 components: - pos: 58.5,15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16481 + - uid: 16482 components: - pos: 58.5,14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16482 + - uid: 16483 components: - pos: 58.5,13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16483 + - uid: 16484 components: - pos: 59.5,14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16484 + - uid: 16485 components: - pos: 59.5,13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16485 + - uid: 16486 components: - pos: 59.5,12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16486 + - uid: 16487 components: - rot: 1.5707963267948966 rad pos: 44.5,20.5 @@ -126925,7 +112109,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16487 + - uid: 16488 components: - rot: 1.5707963267948966 rad pos: 43.5,20.5 @@ -126933,7 +112117,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16488 + - uid: 16489 components: - rot: 1.5707963267948966 rad pos: 42.5,20.5 @@ -126941,7 +112125,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16489 + - uid: 16490 components: - rot: 1.5707963267948966 rad pos: 41.5,20.5 @@ -126949,7 +112133,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16490 + - uid: 16491 components: - rot: -1.5707963267948966 rad pos: 39.5,20.5 @@ -126957,7 +112141,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16491 + - uid: 16492 components: - rot: -1.5707963267948966 rad pos: 38.5,20.5 @@ -126965,7 +112149,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16492 + - uid: 16493 components: - rot: -1.5707963267948966 rad pos: 37.5,20.5 @@ -126973,7 +112157,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16493 + - uid: 16494 components: - rot: -1.5707963267948966 rad pos: 36.5,20.5 @@ -126981,7 +112165,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16494 + - uid: 16495 components: - rot: -1.5707963267948966 rad pos: 35.5,20.5 @@ -126989,7 +112173,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16495 + - uid: 16496 components: - rot: -1.5707963267948966 rad pos: 49.5,19.5 @@ -126997,7 +112181,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16496 + - uid: 16497 components: - rot: -1.5707963267948966 rad pos: 48.5,19.5 @@ -127005,7 +112189,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16497 + - uid: 16498 components: - rot: -1.5707963267948966 rad pos: 47.5,19.5 @@ -127013,7 +112197,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16498 + - uid: 16499 components: - rot: -1.5707963267948966 rad pos: 46.5,19.5 @@ -127021,7 +112205,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16499 + - uid: 16500 components: - rot: -1.5707963267948966 rad pos: 45.5,19.5 @@ -127029,7 +112213,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16500 + - uid: 16501 components: - rot: -1.5707963267948966 rad pos: 43.5,19.5 @@ -127037,7 +112221,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16501 + - uid: 16502 components: - rot: -1.5707963267948966 rad pos: 42.5,19.5 @@ -127045,7 +112229,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16502 + - uid: 16503 components: - rot: -1.5707963267948966 rad pos: 41.5,19.5 @@ -127053,7 +112237,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16503 + - uid: 16504 components: - rot: -1.5707963267948966 rad pos: 40.5,19.5 @@ -127061,7 +112245,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16504 + - uid: 16505 components: - rot: -1.5707963267948966 rad pos: 38.5,19.5 @@ -127069,7 +112253,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16505 + - uid: 16506 components: - rot: -1.5707963267948966 rad pos: 37.5,19.5 @@ -127079,7 +112263,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16506 + - uid: 16507 components: - rot: -1.5707963267948966 rad pos: 36.5,19.5 @@ -127087,7 +112271,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16507 + - uid: 16508 components: - rot: -1.5707963267948966 rad pos: 35.5,19.5 @@ -127095,7 +112279,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16508 + - uid: 16509 components: - rot: -1.5707963267948966 rad pos: 39.5,1.5 @@ -127103,7 +112287,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16509 + - uid: 16510 components: - rot: -1.5707963267948966 rad pos: 40.5,1.5 @@ -127111,7 +112295,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16510 + - uid: 16511 components: - rot: -1.5707963267948966 rad pos: 41.5,1.5 @@ -127119,7 +112303,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16511 + - uid: 16512 components: - rot: -1.5707963267948966 rad pos: 43.5,1.5 @@ -127127,7 +112311,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16512 + - uid: 16513 components: - rot: -1.5707963267948966 rad pos: 41.5,0.5 @@ -127135,7 +112319,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16513 + - uid: 16514 components: - rot: -1.5707963267948966 rad pos: 42.5,0.5 @@ -127143,7 +112327,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16514 + - uid: 16515 components: - rot: -1.5707963267948966 rad pos: 43.5,0.5 @@ -127151,7 +112335,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16515 + - uid: 16516 components: - rot: -1.5707963267948966 rad pos: 44.5,1.5 @@ -127159,7 +112343,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16516 + - uid: 16517 components: - rot: -1.5707963267948966 rad pos: 45.5,1.5 @@ -127167,7 +112351,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16517 + - uid: 16518 components: - rot: -1.5707963267948966 rad pos: 46.5,1.5 @@ -127175,7 +112359,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16518 + - uid: 16519 components: - rot: -1.5707963267948966 rad pos: 47.5,1.5 @@ -127183,7 +112367,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16519 + - uid: 16520 components: - rot: -1.5707963267948966 rad pos: 48.5,1.5 @@ -127191,7 +112375,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16520 + - uid: 16521 components: - rot: -1.5707963267948966 rad pos: 49.5,1.5 @@ -127199,7 +112383,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16521 + - uid: 16522 components: - rot: -1.5707963267948966 rad pos: 50.5,1.5 @@ -127207,7 +112391,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16522 + - uid: 16523 components: - rot: -1.5707963267948966 rad pos: 51.5,1.5 @@ -127215,7 +112399,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16523 + - uid: 16524 components: - rot: -1.5707963267948966 rad pos: 46.5,0.5 @@ -127223,7 +112407,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16524 + - uid: 16525 components: - rot: -1.5707963267948966 rad pos: 47.5,0.5 @@ -127231,7 +112415,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16525 + - uid: 16526 components: - rot: -1.5707963267948966 rad pos: 48.5,0.5 @@ -127239,7 +112423,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16526 + - uid: 16527 components: - rot: -1.5707963267948966 rad pos: 49.5,0.5 @@ -127247,7 +112431,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16527 + - uid: 16528 components: - rot: -1.5707963267948966 rad pos: 50.5,0.5 @@ -127255,7 +112439,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16528 + - uid: 16529 components: - rot: -1.5707963267948966 rad pos: 51.5,0.5 @@ -127263,7 +112447,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16529 + - uid: 16530 components: - rot: -1.5707963267948966 rad pos: 52.5,0.5 @@ -127271,7 +112455,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16530 + - uid: 16531 components: - rot: -1.5707963267948966 rad pos: 54.5,0.5 @@ -127279,7 +112463,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16531 + - uid: 16532 components: - rot: -1.5707963267948966 rad pos: 55.5,0.5 @@ -127289,7 +112473,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16532 + - uid: 16533 components: - rot: -1.5707963267948966 rad pos: 56.5,0.5 @@ -127299,7 +112483,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16533 + - uid: 16534 components: - rot: -1.5707963267948966 rad pos: 53.5,1.5 @@ -127307,7 +112491,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16534 + - uid: 16535 components: - rot: -1.5707963267948966 rad pos: 54.5,1.5 @@ -127315,7 +112499,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16535 + - uid: 16536 components: - rot: -1.5707963267948966 rad pos: 55.5,1.5 @@ -127325,105 +112509,105 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16536 + - uid: 16537 components: - pos: 52.5,0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16537 + - uid: 16538 components: - pos: 52.5,-0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16538 + - uid: 16539 components: - pos: 52.5,-1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16539 + - uid: 16540 components: - pos: 52.5,-2.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16540 + - uid: 16541 components: - pos: 52.5,-3.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16541 + - uid: 16542 components: - pos: 52.5,-4.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16542 + - uid: 16543 components: - pos: 52.5,-5.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16543 + - uid: 16544 components: - pos: 52.5,-6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16544 + - uid: 16545 components: - pos: 52.5,-7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16545 + - uid: 16546 components: - pos: 53.5,-0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16546 + - uid: 16547 components: - pos: 53.5,-1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16547 + - uid: 16548 components: - pos: 53.5,-2.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16548 + - uid: 16549 components: - pos: 53.5,-3.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16549 + - uid: 16550 components: - pos: 53.5,-4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16550 + - uid: 16551 components: - rot: 1.5707963267948966 rad pos: 54.5,-5.5 @@ -127431,7 +112615,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16551 + - uid: 16552 components: - rot: 1.5707963267948966 rad pos: 55.5,-5.5 @@ -127439,14 +112623,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16552 + - uid: 16553 components: - pos: 42.5,0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16553 + - uid: 16554 components: - pos: 42.5,-0.5 parent: 2 @@ -127455,7 +112639,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16554 + - uid: 16555 components: - rot: 3.141592653589793 rad pos: 44.5,-0.5 @@ -127465,7 +112649,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16555 + - uid: 16556 components: - rot: 3.141592653589793 rad pos: 44.5,-2.5 @@ -127473,7 +112657,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16556 + - uid: 16557 components: - rot: 1.5707963267948966 rad pos: 43.5,-3.5 @@ -127481,7 +112665,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16557 + - uid: 16558 components: - rot: 1.5707963267948966 rad pos: 42.5,-3.5 @@ -127489,7 +112673,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16558 + - uid: 16559 components: - rot: 1.5707963267948966 rad pos: 41.5,-3.5 @@ -127497,7 +112681,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16559 + - uid: 16560 components: - rot: 1.5707963267948966 rad pos: 40.5,-3.5 @@ -127507,7 +112691,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16560 + - uid: 16561 components: - rot: 1.5707963267948966 rad pos: 39.5,-3.5 @@ -127515,7 +112699,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16561 + - uid: 16562 components: - rot: 1.5707963267948966 rad pos: 38.5,-3.5 @@ -127523,7 +112707,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16562 + - uid: 16563 components: - rot: 1.5707963267948966 rad pos: 37.5,-3.5 @@ -127531,7 +112715,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16563 + - uid: 16564 components: - rot: 1.5707963267948966 rad pos: 41.5,-2.5 @@ -127539,7 +112723,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16564 + - uid: 16565 components: - rot: 1.5707963267948966 rad pos: 40.5,-2.5 @@ -127549,7 +112733,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16565 + - uid: 16566 components: - rot: 1.5707963267948966 rad pos: 39.5,-2.5 @@ -127557,7 +112741,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16566 + - uid: 16567 components: - rot: 1.5707963267948966 rad pos: 38.5,-2.5 @@ -127565,7 +112749,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16567 + - uid: 16568 components: - rot: 1.5707963267948966 rad pos: 37.5,-2.5 @@ -127573,56 +112757,56 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16568 + - uid: 16569 components: - pos: 42.5,13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16569 + - uid: 16570 components: - pos: 42.5,12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16570 + - uid: 16571 components: - pos: 41.5,13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16571 + - uid: 16572 components: - pos: 41.5,12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16572 + - uid: 16573 components: - pos: 41.5,11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16573 + - uid: 16574 components: - pos: 41.5,9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16574 + - uid: 16575 components: - pos: 42.5,11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16575 + - uid: 16576 components: - rot: -1.5707963267948966 rad pos: 39.5,10.5 @@ -127632,49 +112816,49 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16576 + - uid: 16577 components: - pos: 24.5,-46.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16577 + - uid: 16578 components: - pos: 24.5,-47.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16578 + - uid: 16579 components: - pos: 24.5,-48.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16579 + - uid: 16580 components: - pos: 24.5,-49.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16580 + - uid: 16581 components: - pos: 24.5,-50.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16581 + - uid: 16582 components: - pos: 24.5,-51.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16582 + - uid: 16583 components: - rot: 3.141592653589793 rad pos: 25.5,-59.5 @@ -127682,7 +112866,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16583 + - uid: 16584 components: - rot: 3.141592653589793 rad pos: 25.5,-53.5 @@ -127690,7 +112874,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16584 + - uid: 16585 components: - rot: 3.141592653589793 rad pos: 25.5,-54.5 @@ -127698,77 +112882,77 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16585 + - uid: 16586 components: - pos: 26.5,-46.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16586 + - uid: 16587 components: - pos: 26.5,-47.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16587 + - uid: 16588 components: - pos: 26.5,-48.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16588 + - uid: 16589 components: - pos: 26.5,-49.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16589 + - uid: 16590 components: - pos: 26.5,-50.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16590 + - uid: 16591 components: - pos: 26.5,-51.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16591 + - uid: 16592 components: - pos: 26.5,-52.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16592 + - uid: 16593 components: - pos: 26.5,-54.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16593 + - uid: 16594 components: - pos: 26.5,-55.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16594 + - uid: 16595 components: - pos: 26.5,-57.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16595 + - uid: 16596 components: - rot: 1.5707963267948966 rad pos: 43.5,-2.5 @@ -127776,7 +112960,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16596 + - uid: 16597 components: - rot: 1.5707963267948966 rad pos: 44.5,-2.5 @@ -127784,7 +112968,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16597 + - uid: 16598 components: - rot: 1.5707963267948966 rad pos: 45.5,-2.5 @@ -127794,7 +112978,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16598 + - uid: 16599 components: - rot: 1.5707963267948966 rad pos: 45.5,-1.5 @@ -127804,28 +112988,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16599 + - uid: 16600 components: - pos: 52.5,-8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16600 + - uid: 16601 components: - pos: 52.5,-9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16601 + - uid: 16602 components: - pos: 52.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16602 + - uid: 16603 components: - rot: 1.5707963267948966 rad pos: 53.5,-11.5 @@ -127833,7 +113017,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16603 + - uid: 16604 components: - rot: 1.5707963267948966 rad pos: 54.5,-11.5 @@ -127841,7 +113025,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16604 + - uid: 16605 components: - rot: 1.5707963267948966 rad pos: 56.5,-12.5 @@ -127849,7 +113033,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16605 + - uid: 16606 components: - rot: 1.5707963267948966 rad pos: 56.5,-5.5 @@ -127857,21 +113041,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16606 + - uid: 16607 components: - pos: 62.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16607 + - uid: 16608 components: - pos: 62.5,-37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16608 + - uid: 16609 components: - pos: 73.5,-27.5 parent: 2 @@ -127880,14 +113064,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16609 + - uid: 16610 components: - pos: 49.5,-56.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16610 + - uid: 16611 components: - rot: 1.5707963267948966 rad pos: 42.5,-43.5 @@ -127895,7 +113079,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16611 + - uid: 16612 components: - rot: 1.5707963267948966 rad pos: 43.5,-41.5 @@ -127903,7 +113087,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16612 + - uid: 16613 components: - rot: 1.5707963267948966 rad pos: 45.5,-41.5 @@ -127911,7 +113095,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16613 + - uid: 16614 components: - rot: 1.5707963267948966 rad pos: 46.5,-41.5 @@ -127919,7 +113103,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16614 + - uid: 16615 components: - rot: 1.5707963267948966 rad pos: 47.5,-41.5 @@ -127927,7 +113111,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16615 + - uid: 16616 components: - rot: 1.5707963267948966 rad pos: 48.5,-41.5 @@ -127935,7 +113119,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16616 + - uid: 16617 components: - rot: 1.5707963267948966 rad pos: 44.5,-43.5 @@ -127943,7 +113127,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16617 + - uid: 16618 components: - rot: 1.5707963267948966 rad pos: 46.5,-43.5 @@ -127951,7 +113135,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16618 + - uid: 16619 components: - rot: 1.5707963267948966 rad pos: 47.5,-43.5 @@ -127959,7 +113143,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16619 + - uid: 16620 components: - rot: 1.5707963267948966 rad pos: 48.5,-43.5 @@ -127967,63 +113151,63 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16620 + - uid: 16621 components: - pos: 43.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16621 + - uid: 16622 components: - pos: 43.5,-40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16622 + - uid: 16623 components: - pos: 43.5,-41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16623 + - uid: 16624 components: - pos: 43.5,-39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16624 + - uid: 16625 components: - pos: 43.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16625 + - uid: 16626 components: - pos: 42.5,-39.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16626 + - uid: 16627 components: - pos: 42.5,-40.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16627 + - uid: 16628 components: - pos: 42.5,-38.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16628 + - uid: 16629 components: - rot: 3.141592653589793 rad pos: 49.5,-44.5 @@ -128031,7 +113215,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16629 + - uid: 16630 components: - rot: 1.5707963267948966 rad pos: 51.5,-41.5 @@ -128039,7 +113223,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16630 + - uid: 16631 components: - rot: 1.5707963267948966 rad pos: 52.5,-41.5 @@ -128047,7 +113231,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16631 + - uid: 16632 components: - rot: 1.5707963267948966 rad pos: 53.5,-41.5 @@ -128055,7 +113239,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16632 + - uid: 16633 components: - rot: 1.5707963267948966 rad pos: 54.5,-41.5 @@ -128063,7 +113247,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16633 + - uid: 16634 components: - rot: 1.5707963267948966 rad pos: 55.5,-41.5 @@ -128071,21 +113255,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16634 + - uid: 16635 components: - pos: 57.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16635 + - uid: 16636 components: - pos: 57.5,-43.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16636 + - uid: 16637 components: - rot: 1.5707963267948966 rad pos: 50.5,-45.5 @@ -128093,7 +113277,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16637 + - uid: 16638 components: - rot: 1.5707963267948966 rad pos: 51.5,-45.5 @@ -128101,7 +113285,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16638 + - uid: 16639 components: - rot: -1.5707963267948966 rad pos: 52.5,-45.5 @@ -128109,7 +113293,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16639 + - uid: 16640 components: - rot: 1.5707963267948966 rad pos: 53.5,-45.5 @@ -128117,7 +113301,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16640 + - uid: 16641 components: - rot: 1.5707963267948966 rad pos: 54.5,-45.5 @@ -128125,7 +113309,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16641 + - uid: 16642 components: - rot: 3.141592653589793 rad pos: 55.5,-44.5 @@ -128133,7 +113317,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16642 + - uid: 16643 components: - rot: 3.141592653589793 rad pos: 55.5,-43.5 @@ -128143,56 +113327,56 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16643 + - uid: 16644 components: - pos: 50.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16644 + - uid: 16645 components: - pos: 50.5,-43.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16645 + - uid: 16646 components: - pos: 50.5,-44.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16646 + - uid: 16647 components: - pos: 50.5,-45.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16647 + - uid: 16648 components: - pos: 50.5,-47.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16648 + - uid: 16649 components: - pos: 50.5,-48.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16649 + - uid: 16650 components: - pos: 49.5,-53.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16650 + - uid: 16651 components: - rot: -1.5707963267948966 rad pos: 48.5,-45.5 @@ -128200,7 +113384,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16651 + - uid: 16652 components: - rot: -1.5707963267948966 rad pos: 47.5,-45.5 @@ -128208,7 +113392,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16652 + - uid: 16653 components: - rot: -1.5707963267948966 rad pos: 46.5,-45.5 @@ -128216,7 +113400,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16653 + - uid: 16654 components: - rot: -1.5707963267948966 rad pos: 45.5,-45.5 @@ -128224,7 +113408,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16654 + - uid: 16655 components: - rot: 1.5707963267948966 rad pos: 49.5,-46.5 @@ -128232,7 +113416,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16655 + - uid: 16656 components: - rot: 1.5707963267948966 rad pos: 48.5,-46.5 @@ -128240,7 +113424,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16656 + - uid: 16657 components: - rot: 1.5707963267948966 rad pos: 47.5,-46.5 @@ -128248,7 +113432,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16657 + - uid: 16658 components: - rot: 1.5707963267948966 rad pos: 46.5,-46.5 @@ -128256,7 +113440,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16658 + - uid: 16659 components: - rot: 1.5707963267948966 rad pos: 45.5,-46.5 @@ -128264,7 +113448,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16659 + - uid: 16660 components: - rot: 3.141592653589793 rad pos: 73.5,-32.5 @@ -128272,7 +113456,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16660 + - uid: 16661 components: - rot: -1.5707963267948966 rad pos: 58.5,-44.5 @@ -128280,7 +113464,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16661 + - uid: 16662 components: - rot: -1.5707963267948966 rad pos: 59.5,-44.5 @@ -128288,7 +113472,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16662 + - uid: 16663 components: - rot: -1.5707963267948966 rad pos: 60.5,-44.5 @@ -128296,7 +113480,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16663 + - uid: 16664 components: - rot: -1.5707963267948966 rad pos: 57.5,-45.5 @@ -128304,7 +113488,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16664 + - uid: 16665 components: - rot: -1.5707963267948966 rad pos: 58.5,-45.5 @@ -128312,7 +113496,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16665 + - uid: 16666 components: - rot: -1.5707963267948966 rad pos: 59.5,-45.5 @@ -128320,7 +113504,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16666 + - uid: 16667 components: - rot: -1.5707963267948966 rad pos: 60.5,-45.5 @@ -128328,7 +113512,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16667 + - uid: 16668 components: - rot: -1.5707963267948966 rad pos: 61.5,-45.5 @@ -128336,7 +113520,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16668 + - uid: 16669 components: - rot: -1.5707963267948966 rad pos: 62.5,-45.5 @@ -128344,7 +113528,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16669 + - uid: 16670 components: - rot: 3.141592653589793 rad pos: 61.5,-43.5 @@ -128352,7 +113536,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16670 + - uid: 16671 components: - rot: 3.141592653589793 rad pos: 61.5,-42.5 @@ -128360,7 +113544,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16671 + - uid: 16672 components: - rot: 3.141592653589793 rad pos: 61.5,-41.5 @@ -128368,7 +113552,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16672 + - uid: 16673 components: - rot: 3.141592653589793 rad pos: 61.5,-40.5 @@ -128376,7 +113560,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16673 + - uid: 16674 components: - rot: 3.141592653589793 rad pos: 61.5,-39.5 @@ -128384,7 +113568,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16674 + - uid: 16675 components: - rot: 3.141592653589793 rad pos: 61.5,-37.5 @@ -128392,7 +113576,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16675 + - uid: 16676 components: - rot: 3.141592653589793 rad pos: 61.5,-36.5 @@ -128400,7 +113584,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16676 + - uid: 16677 components: - rot: 3.141592653589793 rad pos: 63.5,-44.5 @@ -128408,7 +113592,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16677 + - uid: 16678 components: - rot: 3.141592653589793 rad pos: 63.5,-43.5 @@ -128416,28 +113600,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16678 + - uid: 16679 components: - pos: 62.5,-41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16679 + - uid: 16680 components: - pos: 62.5,-40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16680 + - uid: 16681 components: - pos: 62.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16681 + - uid: 16682 components: - rot: -1.5707963267948966 rad pos: 63.5,-35.5 @@ -128445,7 +113629,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16682 + - uid: 16683 components: - rot: 3.141592653589793 rad pos: 61.5,-45.5 @@ -128453,7 +113637,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16683 + - uid: 16684 components: - rot: 1.5707963267948966 rad pos: 62.5,-34.5 @@ -128461,7 +113645,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16684 + - uid: 16685 components: - rot: 1.5707963267948966 rad pos: 61.5,-34.5 @@ -128469,21 +113653,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16685 + - uid: 16686 components: - pos: 64.5,-33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16686 + - uid: 16687 components: - pos: 60.5,-34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16687 + - uid: 16688 components: - rot: 3.141592653589793 rad pos: 63.5,-30.5 @@ -128491,7 +113675,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16688 + - uid: 16689 components: - rot: 3.141592653589793 rad pos: 63.5,-29.5 @@ -128499,7 +113683,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16689 + - uid: 16690 components: - rot: 3.141592653589793 rad pos: 63.5,-28.5 @@ -128507,7 +113691,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16690 + - uid: 16691 components: - rot: 3.141592653589793 rad pos: 63.5,-27.5 @@ -128517,7 +113701,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16691 + - uid: 16692 components: - rot: 3.141592653589793 rad pos: 61.5,-31.5 @@ -128525,7 +113709,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16692 + - uid: 16693 components: - rot: 3.141592653589793 rad pos: 61.5,-30.5 @@ -128533,7 +113717,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16693 + - uid: 16694 components: - rot: 3.141592653589793 rad pos: 61.5,-29.5 @@ -128541,7 +113725,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16694 + - uid: 16695 components: - rot: 3.141592653589793 rad pos: 61.5,-28.5 @@ -128549,7 +113733,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16695 + - uid: 16696 components: - rot: 3.141592653589793 rad pos: 61.5,-27.5 @@ -128559,7 +113743,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16696 + - uid: 16697 components: - rot: 3.141592653589793 rad pos: 61.5,-26.5 @@ -128567,7 +113751,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16697 + - uid: 16698 components: - rot: 3.141592653589793 rad pos: 61.5,-25.5 @@ -128577,7 +113761,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16698 + - uid: 16699 components: - pos: 61.5,-23.5 parent: 2 @@ -128586,7 +113770,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16699 + - uid: 16700 components: - pos: 61.5,-22.5 parent: 2 @@ -128595,7 +113779,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16700 + - uid: 16701 components: - pos: 61.5,-21.5 parent: 2 @@ -128604,7 +113788,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16701 + - uid: 16702 components: - pos: 61.5,-20.5 parent: 2 @@ -128613,7 +113797,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16702 + - uid: 16703 components: - pos: 61.5,-19.5 parent: 2 @@ -128622,7 +113806,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16703 + - uid: 16704 components: - pos: 61.5,-18.5 parent: 2 @@ -128631,7 +113815,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16704 + - uid: 16705 components: - pos: 61.5,-17.5 parent: 2 @@ -128640,7 +113824,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16705 + - uid: 16706 components: - pos: 61.5,-16.5 parent: 2 @@ -128649,7 +113833,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16706 + - uid: 16707 components: - pos: 61.5,-15.5 parent: 2 @@ -128658,7 +113842,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16707 + - uid: 16708 components: - pos: 61.5,-14.5 parent: 2 @@ -128667,56 +113851,56 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16708 + - uid: 16709 components: - pos: 61.5,-13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16709 + - uid: 16710 components: - pos: 61.5,-12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16710 + - uid: 16711 components: - pos: 61.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16711 + - uid: 16712 components: - pos: 62.5,-7.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16712 + - uid: 16713 components: - pos: 62.5,-8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16713 + - uid: 16714 components: - pos: 62.5,-9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16714 + - uid: 16715 components: - pos: 61.5,-5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16715 + - uid: 16716 components: - pos: 61.5,-4.5 parent: 2 @@ -128725,14 +113909,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16716 + - uid: 16717 components: - pos: 61.5,-3.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16717 + - uid: 16718 components: - pos: 63.5,-25.5 parent: 2 @@ -128741,7 +113925,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16718 + - uid: 16719 components: - pos: 63.5,-24.5 parent: 2 @@ -128750,7 +113934,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16719 + - uid: 16720 components: - pos: 63.5,-23.5 parent: 2 @@ -128759,7 +113943,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16720 + - uid: 16721 components: - pos: 63.5,-22.5 parent: 2 @@ -128768,7 +113952,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16721 + - uid: 16722 components: - pos: 63.5,-21.5 parent: 2 @@ -128777,7 +113961,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16722 + - uid: 16723 components: - pos: 63.5,-20.5 parent: 2 @@ -128786,7 +113970,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16723 + - uid: 16724 components: - pos: 63.5,-19.5 parent: 2 @@ -128795,7 +113979,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16724 + - uid: 16725 components: - pos: 63.5,-18.5 parent: 2 @@ -128804,7 +113988,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16725 + - uid: 16726 components: - pos: 63.5,-17.5 parent: 2 @@ -128813,7 +113997,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16726 + - uid: 16727 components: - pos: 63.5,-16.5 parent: 2 @@ -128822,7 +114006,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16727 + - uid: 16728 components: - pos: 63.5,-15.5 parent: 2 @@ -128831,7 +114015,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16728 + - uid: 16729 components: - pos: 63.5,-14.5 parent: 2 @@ -128840,63 +114024,63 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16729 + - uid: 16730 components: - pos: 63.5,-13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16730 + - uid: 16731 components: - pos: 63.5,-12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16731 + - uid: 16732 components: - pos: 63.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16732 + - uid: 16733 components: - pos: 63.5,-9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16733 + - uid: 16734 components: - pos: 63.5,-8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16734 + - uid: 16735 components: - pos: 63.5,-7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16735 + - uid: 16736 components: - pos: 63.5,-6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16736 + - uid: 16737 components: - pos: 63.5,-5.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16737 + - uid: 16738 components: - pos: 63.5,-4.5 parent: 2 @@ -128905,28 +114089,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16738 + - uid: 16739 components: - pos: 63.5,-3.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16739 + - uid: 16740 components: - pos: 64.5,-48.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16740 + - uid: 16741 components: - pos: 64.5,-49.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16741 + - uid: 16742 components: - pos: 64.5,-50.5 parent: 2 @@ -128935,28 +114119,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16742 + - uid: 16743 components: - pos: 64.5,-51.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16743 + - uid: 16744 components: - pos: 60.5,-47.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16744 + - uid: 16745 components: - pos: 60.5,-49.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16745 + - uid: 16746 components: - pos: 60.5,-50.5 parent: 2 @@ -128965,35 +114149,35 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16746 + - uid: 16747 components: - pos: 60.5,-51.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16747 + - uid: 16748 components: - pos: 50.5,-49.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16748 + - uid: 16749 components: - pos: 49.5,-57.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16749 + - uid: 16750 components: - pos: 49.5,-58.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16750 + - uid: 16751 components: - pos: 49.5,-59.5 parent: 2 @@ -129002,28 +114186,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16751 + - uid: 16752 components: - pos: 50.5,-50.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16752 + - uid: 16753 components: - pos: 50.5,-51.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16753 + - uid: 16754 components: - pos: 49.5,-55.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16754 + - uid: 16755 components: - rot: 1.5707963267948966 rad pos: 44.5,-45.5 @@ -129031,7 +114215,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16755 + - uid: 16756 components: - rot: 1.5707963267948966 rad pos: 43.5,-45.5 @@ -129039,7 +114223,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16756 + - uid: 16757 components: - rot: 1.5707963267948966 rad pos: 65.5,-47.5 @@ -129047,7 +114231,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16757 + - uid: 16758 components: - rot: 1.5707963267948966 rad pos: 66.5,-47.5 @@ -129057,7 +114241,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16758 + - uid: 16759 components: - rot: 1.5707963267948966 rad pos: 67.5,-47.5 @@ -129065,7 +114249,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16759 + - uid: 16760 components: - rot: 1.5707963267948966 rad pos: 68.5,-47.5 @@ -129073,7 +114257,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16760 + - uid: 16761 components: - rot: 1.5707963267948966 rad pos: 68.5,-48.5 @@ -129081,7 +114265,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16761 + - uid: 16762 components: - rot: 1.5707963267948966 rad pos: 67.5,-48.5 @@ -129089,7 +114273,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16762 + - uid: 16763 components: - rot: 1.5707963267948966 rad pos: 66.5,-48.5 @@ -129097,7 +114281,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16763 + - uid: 16764 components: - rot: 1.5707963267948966 rad pos: 65.5,-48.5 @@ -129105,7 +114289,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16764 + - uid: 16765 components: - rot: 1.5707963267948966 rad pos: 64.5,-48.5 @@ -129113,7 +114297,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16765 + - uid: 16766 components: - rot: 1.5707963267948966 rad pos: 63.5,-48.5 @@ -129121,7 +114305,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16766 + - uid: 16767 components: - rot: 1.5707963267948966 rad pos: 62.5,-48.5 @@ -129129,7 +114313,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16767 + - uid: 16768 components: - rot: 1.5707963267948966 rad pos: 61.5,-48.5 @@ -129137,7 +114321,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16768 + - uid: 16769 components: - rot: 1.5707963267948966 rad pos: 70.5,-48.5 @@ -129145,7 +114329,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16769 + - uid: 16770 components: - rot: 1.5707963267948966 rad pos: 69.5,-48.5 @@ -129153,7 +114337,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16770 + - uid: 16771 components: - rot: 3.141592653589793 rad pos: 25.5,-55.5 @@ -129161,7 +114345,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16771 + - uid: 16772 components: - rot: 1.5707963267948966 rad pos: 27.5,-58.5 @@ -129169,7 +114353,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16772 + - uid: 16773 components: - rot: 1.5707963267948966 rad pos: 28.5,-58.5 @@ -129177,7 +114361,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16773 + - uid: 16774 components: - rot: 3.141592653589793 rad pos: 25.5,-56.5 @@ -129185,7 +114369,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16774 + - uid: 16775 components: - rot: 1.5707963267948966 rad pos: 26.5,-60.5 @@ -129193,7 +114377,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16775 + - uid: 16776 components: - rot: 1.5707963267948966 rad pos: 27.5,-60.5 @@ -129201,7 +114385,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16776 + - uid: 16777 components: - rot: 1.5707963267948966 rad pos: 28.5,-60.5 @@ -129209,7 +114393,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16777 + - uid: 16778 components: - rot: 1.5707963267948966 rad pos: 29.5,-60.5 @@ -129217,7 +114401,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16778 + - uid: 16779 components: - rot: 1.5707963267948966 rad pos: 30.5,-60.5 @@ -129225,7 +114409,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16779 + - uid: 16780 components: - rot: 1.5707963267948966 rad pos: 31.5,-60.5 @@ -129233,7 +114417,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16780 + - uid: 16781 components: - rot: 3.141592653589793 rad pos: 29.5,-57.5 @@ -129243,56 +114427,56 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16781 + - uid: 16782 components: - pos: 29.5,-55.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16782 + - uid: 16783 components: - pos: 29.5,-54.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16783 + - uid: 16784 components: - pos: 29.5,-53.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16784 + - uid: 16785 components: - pos: 29.5,-51.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16785 + - uid: 16786 components: - pos: 29.5,-50.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16786 + - uid: 16787 components: - pos: 29.5,-49.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16787 + - uid: 16788 components: - pos: 29.5,-48.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16788 + - uid: 16789 components: - rot: -1.5707963267948966 rad pos: 30.5,-47.5 @@ -129300,7 +114484,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16789 + - uid: 16790 components: - rot: -1.5707963267948966 rad pos: 31.5,-47.5 @@ -129308,7 +114492,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16790 + - uid: 16791 components: - rot: -1.5707963267948966 rad pos: 32.5,-47.5 @@ -129316,7 +114500,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16791 + - uid: 16792 components: - rot: 3.141592653589793 rad pos: 29.5,-46.5 @@ -129324,7 +114508,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16792 + - uid: 16793 components: - rot: 1.5707963267948966 rad pos: 30.5,-58.5 @@ -129332,21 +114516,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16793 + - uid: 16794 components: - pos: 32.5,-59.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16794 + - uid: 16795 components: - pos: 32.5,-58.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16795 + - uid: 16796 components: - pos: 32.5,-57.5 parent: 2 @@ -129355,28 +114539,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16796 + - uid: 16797 components: - pos: 32.5,-55.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16797 + - uid: 16798 components: - pos: 32.5,-54.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16798 + - uid: 16799 components: - pos: 32.5,-53.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16799 + - uid: 16800 components: - rot: 1.5707963267948966 rad pos: 33.5,-52.5 @@ -129384,7 +114568,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16800 + - uid: 16801 components: - rot: 3.141592653589793 rad pos: 34.5,-51.5 @@ -129392,7 +114576,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16801 + - uid: 16802 components: - rot: 3.141592653589793 rad pos: 34.5,-50.5 @@ -129400,7 +114584,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16802 + - uid: 16803 components: - rot: -1.5707963267948966 rad pos: 33.5,-49.5 @@ -129408,7 +114592,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16803 + - uid: 16804 components: - rot: 3.141592653589793 rad pos: 34.5,-47.5 @@ -129416,7 +114600,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16804 + - uid: 16805 components: - rot: 3.141592653589793 rad pos: 34.5,-46.5 @@ -129424,7 +114608,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16805 + - uid: 16806 components: - rot: -1.5707963267948966 rad pos: 32.5,-49.5 @@ -129432,7 +114616,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16806 + - uid: 16807 components: - rot: -1.5707963267948966 rad pos: 31.5,-49.5 @@ -129440,7 +114624,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16807 + - uid: 16808 components: - rot: -1.5707963267948966 rad pos: 30.5,-49.5 @@ -129448,7 +114632,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16808 + - uid: 16809 components: - rot: -1.5707963267948966 rad pos: 29.5,-49.5 @@ -129456,7 +114640,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16809 + - uid: 16810 components: - rot: 3.141592653589793 rad pos: 48.5,-59.5 @@ -129464,20 +114648,20 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 16810 + - uid: 16811 components: - rot: 3.141592653589793 rad pos: 51.5,-59.5 parent: 2 type: Transform - - uid: 16811 + - uid: 16812 components: - pos: 49.5,-60.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16812 + - uid: 16813 components: - pos: 49.5,-62.5 parent: 2 @@ -129486,7 +114670,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16813 + - uid: 16814 components: - rot: -1.5707963267948966 rad pos: -14.5,7.5 @@ -129494,7 +114678,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16814 + - uid: 16815 components: - rot: -1.5707963267948966 rad pos: -15.5,7.5 @@ -129502,7 +114686,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16815 + - uid: 16816 components: - rot: -1.5707963267948966 rad pos: -16.5,7.5 @@ -129510,7 +114694,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16816 + - uid: 16817 components: - rot: -1.5707963267948966 rad pos: -17.5,7.5 @@ -129518,7 +114702,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16817 + - uid: 16818 components: - rot: -1.5707963267948966 rad pos: -18.5,7.5 @@ -129526,7 +114710,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16818 + - uid: 16819 components: - rot: 1.5707963267948966 rad pos: -15.5,1.5 @@ -129536,7 +114720,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16819 + - uid: 16820 components: - rot: 1.5707963267948966 rad pos: -16.5,1.5 @@ -129544,14 +114728,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16820 + - uid: 16821 components: - pos: -19.5,6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16821 + - uid: 16822 components: - pos: -19.5,5.5 parent: 2 @@ -129560,7 +114744,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16822 + - uid: 16823 components: - rot: 1.5707963267948966 rad pos: -9.5,-25.5 @@ -129568,7 +114752,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16823 + - uid: 16824 components: - rot: 1.5707963267948966 rad pos: -10.5,-25.5 @@ -129576,7 +114760,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16824 + - uid: 16825 components: - rot: 1.5707963267948966 rad pos: -11.5,-25.5 @@ -129584,7 +114768,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16825 + - uid: 16826 components: - rot: 1.5707963267948966 rad pos: -12.5,-25.5 @@ -129592,7 +114776,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16826 + - uid: 16827 components: - rot: 1.5707963267948966 rad pos: -13.5,-25.5 @@ -129600,7 +114784,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16827 + - uid: 16828 components: - rot: 1.5707963267948966 rad pos: -14.5,-25.5 @@ -129608,7 +114792,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16828 + - uid: 16829 components: - rot: 1.5707963267948966 rad pos: -15.5,-25.5 @@ -129616,7 +114800,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16829 + - uid: 16830 components: - rot: 1.5707963267948966 rad pos: -16.5,-25.5 @@ -129624,7 +114808,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16830 + - uid: 16831 components: - rot: 1.5707963267948966 rad pos: -17.5,-25.5 @@ -129632,7 +114816,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16831 + - uid: 16832 components: - rot: 1.5707963267948966 rad pos: -12.5,-27.5 @@ -129640,7 +114824,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16832 + - uid: 16833 components: - rot: 1.5707963267948966 rad pos: -13.5,-27.5 @@ -129648,7 +114832,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16833 + - uid: 16834 components: - rot: 1.5707963267948966 rad pos: -14.5,-27.5 @@ -129656,7 +114840,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16834 + - uid: 16835 components: - rot: 1.5707963267948966 rad pos: -15.5,-27.5 @@ -129664,7 +114848,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16835 + - uid: 16836 components: - rot: 1.5707963267948966 rad pos: -16.5,-27.5 @@ -129672,7 +114856,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16836 + - uid: 16837 components: - rot: 1.5707963267948966 rad pos: -17.5,-27.5 @@ -129680,7 +114864,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16837 + - uid: 16838 components: - rot: -1.5707963267948966 rad pos: -18.5,-27.5 @@ -129688,7 +114872,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16838 + - uid: 16839 components: - rot: -1.5707963267948966 rad pos: -19.5,-27.5 @@ -129696,7 +114880,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16839 + - uid: 16840 components: - rot: 3.141592653589793 rad pos: -18.5,-26.5 @@ -129704,7 +114888,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16840 + - uid: 16841 components: - rot: 3.141592653589793 rad pos: -18.5,-27.5 @@ -129712,7 +114896,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16841 + - uid: 16842 components: - rot: 3.141592653589793 rad pos: -18.5,-28.5 @@ -129720,7 +114904,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16842 + - uid: 16843 components: - rot: 3.141592653589793 rad pos: -18.5,-29.5 @@ -129728,7 +114912,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16843 + - uid: 16844 components: - rot: 3.141592653589793 rad pos: -18.5,-30.5 @@ -129736,7 +114920,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16844 + - uid: 16845 components: - rot: 3.141592653589793 rad pos: -20.5,-28.5 @@ -129744,7 +114928,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16845 + - uid: 16846 components: - rot: 3.141592653589793 rad pos: -20.5,-29.5 @@ -129752,7 +114936,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16846 + - uid: 16847 components: - rot: 3.141592653589793 rad pos: -20.5,-30.5 @@ -129760,7 +114944,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16847 + - uid: 16848 components: - rot: 3.141592653589793 rad pos: -20.5,-31.5 @@ -129768,7 +114952,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16848 + - uid: 16849 components: - rot: 3.141592653589793 rad pos: -20.5,-32.5 @@ -129776,7 +114960,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16849 + - uid: 16850 components: - rot: 3.141592653589793 rad pos: -20.5,-26.5 @@ -129784,7 +114968,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16850 + - uid: 16851 components: - rot: 3.141592653589793 rad pos: -20.5,-25.5 @@ -129792,7 +114976,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16851 + - uid: 16852 components: - rot: 3.141592653589793 rad pos: -20.5,-24.5 @@ -129800,7 +114984,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16852 + - uid: 16853 components: - rot: 3.141592653589793 rad pos: -20.5,-23.5 @@ -129808,7 +114992,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16853 + - uid: 16854 components: - rot: 3.141592653589793 rad pos: -18.5,-24.5 @@ -129816,7 +115000,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16854 + - uid: 16855 components: - rot: 3.141592653589793 rad pos: -18.5,-23.5 @@ -129824,7 +115008,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16855 + - uid: 16856 components: - rot: 3.141592653589793 rad pos: -18.5,-22.5 @@ -129832,7 +115016,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16856 + - uid: 16857 components: - rot: 3.141592653589793 rad pos: -18.5,-20.5 @@ -129840,7 +115024,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16857 + - uid: 16858 components: - rot: 3.141592653589793 rad pos: -20.5,-21.5 @@ -129848,7 +115032,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16858 + - uid: 16859 components: - rot: 3.141592653589793 rad pos: -20.5,-20.5 @@ -129856,7 +115040,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16859 + - uid: 16860 components: - rot: 3.141592653589793 rad pos: -20.5,-19.5 @@ -129864,7 +115048,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16860 + - uid: 16861 components: - rot: 3.141592653589793 rad pos: -18.5,-18.5 @@ -129872,7 +115056,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16861 + - uid: 16862 components: - rot: 3.141592653589793 rad pos: -18.5,-17.5 @@ -129880,14 +115064,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16862 + - uid: 16863 components: - pos: -23.5,-15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16863 + - uid: 16864 components: - rot: 3.141592653589793 rad pos: -20.5,-17.5 @@ -129895,7 +115079,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16864 + - uid: 16865 components: - rot: 3.141592653589793 rad pos: -20.5,-16.5 @@ -129903,7 +115087,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16865 + - uid: 16866 components: - rot: 3.141592653589793 rad pos: -20.5,-15.5 @@ -129911,7 +115095,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16866 + - uid: 16867 components: - rot: 3.141592653589793 rad pos: -18.5,-15.5 @@ -129919,7 +115103,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16867 + - uid: 16868 components: - rot: 3.141592653589793 rad pos: -18.5,-14.5 @@ -129927,7 +115111,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16868 + - uid: 16869 components: - rot: 3.141592653589793 rad pos: -18.5,-13.5 @@ -129935,7 +115119,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16869 + - uid: 16870 components: - rot: 3.141592653589793 rad pos: -18.5,-12.5 @@ -129943,7 +115127,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16870 + - uid: 16871 components: - rot: 3.141592653589793 rad pos: -18.5,-11.5 @@ -129951,7 +115135,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16871 + - uid: 16872 components: - rot: -1.5707963267948966 rad pos: -21.5,-13.5 @@ -129961,7 +115145,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16872 + - uid: 16873 components: - rot: -1.5707963267948966 rad pos: -22.5,-13.5 @@ -129969,7 +115153,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16873 + - uid: 16874 components: - rot: -1.5707963267948966 rad pos: -23.5,-13.5 @@ -129977,7 +115161,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16874 + - uid: 16875 components: - rot: -1.5707963267948966 rad pos: -19.5,-10.5 @@ -129985,7 +115169,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16875 + - uid: 16876 components: - rot: -1.5707963267948966 rad pos: -20.5,-10.5 @@ -129993,7 +115177,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16876 + - uid: 16877 components: - rot: -1.5707963267948966 rad pos: -21.5,-10.5 @@ -130003,7 +115187,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16877 + - uid: 16878 components: - rot: -1.5707963267948966 rad pos: -22.5,-10.5 @@ -130011,7 +115195,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16878 + - uid: 16879 components: - rot: -1.5707963267948966 rad pos: -25.5,-10.5 @@ -130019,7 +115203,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16879 + - uid: 16880 components: - rot: -1.5707963267948966 rad pos: -26.5,-10.5 @@ -130029,7 +115213,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16880 + - uid: 16881 components: - rot: -1.5707963267948966 rad pos: -27.5,-10.5 @@ -130037,7 +115221,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16881 + - uid: 16882 components: - rot: 1.5707963267948966 rad pos: -26.5,-13.5 @@ -130047,7 +115231,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16882 + - uid: 16883 components: - rot: 1.5707963267948966 rad pos: -27.5,-13.5 @@ -130055,91 +115239,91 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16883 + - uid: 16884 components: - pos: -20.5,-12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16884 + - uid: 16885 components: - pos: -20.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16885 + - uid: 16886 components: - pos: -20.5,-10.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16886 + - uid: 16887 components: - pos: -20.5,-9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16887 + - uid: 16888 components: - pos: -20.5,-8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16888 + - uid: 16889 components: - pos: -20.5,-7.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16889 + - uid: 16890 components: - pos: -20.5,-6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16890 + - uid: 16891 components: - pos: -18.5,-9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16891 + - uid: 16892 components: - pos: -18.5,-8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16892 + - uid: 16893 components: - pos: -18.5,-7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16893 + - uid: 16894 components: - pos: -18.5,-6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16894 + - uid: 16895 components: - pos: -18.5,-5.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16895 + - uid: 16896 components: - rot: -1.5707963267948966 rad pos: -21.5,-22.5 @@ -130149,7 +115333,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16896 + - uid: 16897 components: - rot: -1.5707963267948966 rad pos: -22.5,-22.5 @@ -130157,7 +115341,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16897 + - uid: 16898 components: - rot: -1.5707963267948966 rad pos: -23.5,-22.5 @@ -130165,7 +115349,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16898 + - uid: 16899 components: - rot: -1.5707963267948966 rad pos: -19.5,-21.5 @@ -130173,7 +115357,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16899 + - uid: 16900 components: - rot: -1.5707963267948966 rad pos: -20.5,-21.5 @@ -130181,7 +115365,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16900 + - uid: 16901 components: - rot: -1.5707963267948966 rad pos: -21.5,-21.5 @@ -130189,7 +115373,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16901 + - uid: 16902 components: - rot: -1.5707963267948966 rad pos: -22.5,-21.5 @@ -130197,28 +115381,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16902 + - uid: 16903 components: - pos: -25.5,-15.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16903 + - uid: 16904 components: - pos: -25.5,-16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16904 + - uid: 16905 components: - pos: -25.5,-14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16905 + - uid: 16906 components: - rot: 1.5707963267948966 rad pos: -26.5,-17.5 @@ -130226,7 +115410,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16906 + - uid: 16907 components: - rot: 1.5707963267948966 rad pos: -27.5,-17.5 @@ -130234,7 +115418,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16907 + - uid: 16908 components: - rot: 3.141592653589793 rad pos: -20.5,-18.5 @@ -130242,42 +115426,42 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16908 + - uid: 16909 components: - pos: -23.5,-14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16909 + - uid: 16910 components: - pos: -23.5,-13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16910 + - uid: 16911 components: - pos: -23.5,-12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16911 + - uid: 16912 components: - pos: -23.5,-11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16912 + - uid: 16913 components: - pos: -18.5,-16.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16913 + - uid: 16914 components: - rot: -1.5707963267948966 rad pos: -24.5,-16.5 @@ -130285,7 +115469,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16914 + - uid: 16915 components: - rot: -1.5707963267948966 rad pos: -25.5,-16.5 @@ -130293,7 +115477,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16915 + - uid: 16916 components: - rot: -1.5707963267948966 rad pos: -26.5,-16.5 @@ -130301,7 +115485,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16916 + - uid: 16917 components: - rot: -1.5707963267948966 rad pos: -27.5,-16.5 @@ -130309,7 +115493,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16917 + - uid: 16918 components: - rot: -1.5707963267948966 rad pos: -28.5,-16.5 @@ -130317,7 +115501,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16918 + - uid: 16919 components: - rot: -1.5707963267948966 rad pos: -17.5,-42.5 @@ -130325,7 +115509,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16919 + - uid: 16920 components: - rot: -1.5707963267948966 rad pos: -16.5,-42.5 @@ -130333,7 +115517,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16920 + - uid: 16921 components: - rot: 1.5707963267948966 rad pos: 31.5,-58.5 @@ -130341,7 +115525,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16921 + - uid: 16922 components: - rot: 1.5707963267948966 rad pos: 32.5,-58.5 @@ -130349,7 +115533,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16922 + - uid: 16923 components: - rot: 1.5707963267948966 rad pos: 33.5,-58.5 @@ -130357,7 +115541,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16923 + - uid: 16924 components: - rot: 1.5707963267948966 rad pos: 34.5,-58.5 @@ -130365,7 +115549,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16924 + - uid: 16925 components: - rot: 1.5707963267948966 rad pos: 35.5,-58.5 @@ -130373,7 +115557,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16925 + - uid: 16926 components: - rot: 1.5707963267948966 rad pos: 36.5,-58.5 @@ -130381,7 +115565,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16926 + - uid: 16927 components: - rot: 1.5707963267948966 rad pos: 33.5,-60.5 @@ -130389,7 +115573,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16927 + - uid: 16928 components: - rot: 1.5707963267948966 rad pos: 34.5,-60.5 @@ -130397,7 +115581,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16928 + - uid: 16929 components: - rot: 1.5707963267948966 rad pos: 35.5,-60.5 @@ -130405,7 +115589,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16929 + - uid: 16930 components: - rot: 1.5707963267948966 rad pos: 36.5,-60.5 @@ -130413,7 +115597,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16930 + - uid: 16931 components: - rot: 1.5707963267948966 rad pos: 37.5,-60.5 @@ -130421,7 +115605,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16931 + - uid: 16932 components: - rot: -1.5707963267948966 rad pos: 50.5,-61.5 @@ -130429,7 +115613,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16932 + - uid: 16933 components: - rot: -1.5707963267948966 rad pos: 51.5,-61.5 @@ -130437,7 +115621,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16933 + - uid: 16934 components: - rot: -1.5707963267948966 rad pos: 52.5,-61.5 @@ -130445,7 +115629,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16934 + - uid: 16935 components: - rot: -1.5707963267948966 rad pos: 53.5,-61.5 @@ -130453,7 +115637,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16935 + - uid: 16936 components: - rot: -1.5707963267948966 rad pos: 37.5,-58.5 @@ -130461,7 +115645,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16936 + - uid: 16937 components: - rot: -1.5707963267948966 rad pos: 38.5,-60.5 @@ -130469,7 +115653,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16937 + - uid: 16938 components: - rot: -1.5707963267948966 rad pos: 39.5,-60.5 @@ -130477,7 +115661,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16938 + - uid: 16939 components: - rot: 3.141592653589793 rad pos: 38.5,-57.5 @@ -130487,7 +115671,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16939 + - uid: 16940 components: - rot: 3.141592653589793 rad pos: 38.5,-56.5 @@ -130495,7 +115679,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16940 + - uid: 16941 components: - rot: 3.141592653589793 rad pos: 40.5,-59.5 @@ -130503,7 +115687,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16941 + - uid: 16942 components: - rot: 3.141592653589793 rad pos: 40.5,-58.5 @@ -130511,7 +115695,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16942 + - uid: 16943 components: - rot: 3.141592653589793 rad pos: 40.5,-57.5 @@ -130521,7 +115705,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16943 + - uid: 16944 components: - rot: 3.141592653589793 rad pos: 40.5,-56.5 @@ -130529,7 +115713,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16944 + - uid: 16945 components: - rot: 3.141592653589793 rad pos: 38.5,-59.5 @@ -130537,7 +115721,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16945 + - uid: 16946 components: - rot: 3.141592653589793 rad pos: 38.5,-60.5 @@ -130545,7 +115729,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16946 + - uid: 16947 components: - rot: 3.141592653589793 rad pos: 38.5,-61.5 @@ -130553,7 +115737,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16947 + - uid: 16948 components: - rot: 3.141592653589793 rad pos: 38.5,-62.5 @@ -130561,7 +115745,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16948 + - uid: 16949 components: - rot: 3.141592653589793 rad pos: 40.5,-61.5 @@ -130569,7 +115753,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16949 + - uid: 16950 components: - rot: 3.141592653589793 rad pos: 40.5,-62.5 @@ -130577,7 +115761,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16950 + - uid: 16951 components: - rot: 3.141592653589793 rad pos: 40.5,-63.5 @@ -130585,7 +115769,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16951 + - uid: 16952 components: - rot: 3.141592653589793 rad pos: 40.5,-64.5 @@ -130593,7 +115777,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16952 + - uid: 16953 components: - rot: 3.141592653589793 rad pos: 38.5,-64.5 @@ -130601,7 +115785,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16953 + - uid: 16954 components: - rot: 3.141592653589793 rad pos: 38.5,-65.5 @@ -130609,7 +115793,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16954 + - uid: 16955 components: - rot: 3.141592653589793 rad pos: 38.5,-66.5 @@ -130617,7 +115801,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16955 + - uid: 16956 components: - rot: 3.141592653589793 rad pos: 38.5,-67.5 @@ -130625,7 +115809,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16956 + - uid: 16957 components: - rot: 3.141592653589793 rad pos: 38.5,-68.5 @@ -130633,7 +115817,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16957 + - uid: 16958 components: - rot: 3.141592653589793 rad pos: 40.5,-66.5 @@ -130641,7 +115825,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16958 + - uid: 16959 components: - rot: 3.141592653589793 rad pos: 40.5,-67.5 @@ -130649,7 +115833,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16959 + - uid: 16960 components: - rot: 3.141592653589793 rad pos: 40.5,-68.5 @@ -130657,14 +115841,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16960 + - uid: 16961 components: - pos: 50.5,-53.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16961 + - uid: 16962 components: - rot: 3.141592653589793 rad pos: 52.5,-56.5 @@ -130674,7 +115858,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16962 + - uid: 16963 components: - rot: 3.141592653589793 rad pos: 52.5,-55.5 @@ -130682,7 +115866,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16963 + - uid: 16964 components: - rot: 1.5707963267948966 rad pos: 51.5,-54.5 @@ -130690,7 +115874,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16964 + - uid: 16965 components: - rot: 3.141592653589793 rad pos: -14.5,2.5 @@ -130698,7 +115882,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16965 + - uid: 16966 components: - rot: 3.141592653589793 rad pos: -14.5,3.5 @@ -130706,7 +115890,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16966 + - uid: 16967 components: - rot: 3.141592653589793 rad pos: -14.5,4.5 @@ -130714,7 +115898,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16967 + - uid: 16968 components: - rot: 3.141592653589793 rad pos: -14.5,5.5 @@ -130722,7 +115906,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16968 + - uid: 16969 components: - rot: -1.5707963267948966 rad pos: -15.5,6.5 @@ -130730,7 +115914,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16969 + - uid: 16970 components: - rot: -1.5707963267948966 rad pos: -16.5,6.5 @@ -130738,7 +115922,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16970 + - uid: 16971 components: - rot: -1.5707963267948966 rad pos: -17.5,6.5 @@ -130746,7 +115930,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16971 + - uid: 16972 components: - rot: 3.141592653589793 rad pos: -18.5,7.5 @@ -130754,7 +115938,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16972 + - uid: 16973 components: - rot: 3.141592653589793 rad pos: -18.5,8.5 @@ -130762,7 +115946,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16973 + - uid: 16974 components: - rot: 3.141592653589793 rad pos: -18.5,9.5 @@ -130770,7 +115954,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16974 + - uid: 16975 components: - rot: 3.141592653589793 rad pos: -18.5,10.5 @@ -130778,7 +115962,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16975 + - uid: 16976 components: - rot: 3.141592653589793 rad pos: -18.5,11.5 @@ -130786,7 +115970,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16976 + - uid: 16977 components: - rot: 3.141592653589793 rad pos: -20.5,8.5 @@ -130794,7 +115978,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16977 + - uid: 16978 components: - rot: 3.141592653589793 rad pos: -20.5,9.5 @@ -130802,7 +115986,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16978 + - uid: 16979 components: - rot: 3.141592653589793 rad pos: -20.5,10.5 @@ -130810,7 +115994,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16979 + - uid: 16980 components: - rot: 3.141592653589793 rad pos: -20.5,11.5 @@ -130818,7 +116002,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16980 + - uid: 16981 components: - rot: -1.5707963267948966 rad pos: -19.5,-4.5 @@ -130826,7 +116010,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16981 + - uid: 16982 components: - rot: -1.5707963267948966 rad pos: -20.5,-4.5 @@ -130834,7 +116018,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16982 + - uid: 16983 components: - rot: -1.5707963267948966 rad pos: -21.5,-4.5 @@ -130842,7 +116026,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16983 + - uid: 16984 components: - rot: -1.5707963267948966 rad pos: -22.5,-4.5 @@ -130850,7 +116034,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16984 + - uid: 16985 components: - rot: -1.5707963267948966 rad pos: -23.5,-4.5 @@ -130858,7 +116042,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16985 + - uid: 16986 components: - rot: -1.5707963267948966 rad pos: -21.5,-5.5 @@ -130866,7 +116050,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16986 + - uid: 16987 components: - rot: -1.5707963267948966 rad pos: -22.5,-5.5 @@ -130874,7 +116058,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16987 + - uid: 16988 components: - rot: -1.5707963267948966 rad pos: -23.5,-5.5 @@ -130882,7 +116066,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16988 + - uid: 16989 components: - rot: -1.5707963267948966 rad pos: -24.5,-5.5 @@ -130890,7 +116074,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16989 + - uid: 16990 components: - rot: -1.5707963267948966 rad pos: -25.5,-5.5 @@ -130898,7 +116082,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16990 + - uid: 16991 components: - rot: -1.5707963267948966 rad pos: -29.5,-13.5 @@ -130906,7 +116090,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16991 + - uid: 16992 components: - rot: -1.5707963267948966 rad pos: -30.5,-13.5 @@ -130916,7 +116100,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16992 + - uid: 16993 components: - rot: -1.5707963267948966 rad pos: -29.5,-10.5 @@ -130924,7 +116108,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16993 + - uid: 16994 components: - rot: -1.5707963267948966 rad pos: -30.5,-10.5 @@ -130932,7 +116116,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16994 + - uid: 16995 components: - rot: -1.5707963267948966 rad pos: -31.5,-10.5 @@ -130940,13 +116124,13 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16995 + - uid: 16996 components: - rot: -1.5707963267948966 rad pos: 51.5,-60.5 parent: 2 type: Transform - - uid: 16996 + - uid: 16997 components: - rot: -1.5707963267948966 rad pos: 52.5,-60.5 @@ -130954,126 +116138,126 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 16997 + - uid: 16998 components: - pos: -18.5,-41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16998 + - uid: 16999 components: - pos: -18.5,-40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16999 + - uid: 17000 components: - pos: -18.5,-39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17000 + - uid: 17001 components: - pos: -18.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17001 + - uid: 17002 components: - pos: -18.5,-37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17002 + - uid: 17003 components: - pos: -18.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17003 + - uid: 17004 components: - pos: -18.5,-35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17004 + - uid: 17005 components: - pos: -18.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17005 + - uid: 17006 components: - pos: -18.5,-33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17006 + - uid: 17007 components: - pos: -18.5,-32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17007 + - uid: 17008 components: - pos: -20.5,-34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17008 + - uid: 17009 components: - pos: -20.5,-35.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17009 + - uid: 17010 components: - pos: -20.5,-36.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17010 + - uid: 17011 components: - pos: -20.5,-37.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17011 + - uid: 17012 components: - pos: -20.5,-38.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17012 + - uid: 17013 components: - pos: -20.5,-39.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17013 + - uid: 17014 components: - pos: -20.5,-40.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17014 + - uid: 17015 components: - pos: -18.5,-44.5 parent: 2 @@ -131082,14 +116266,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17015 + - uid: 17016 components: - pos: -18.5,-45.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17016 + - uid: 17017 components: - rot: 3.141592653589793 rad pos: -20.5,-42.5 @@ -131097,7 +116281,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17017 + - uid: 17018 components: - rot: 3.141592653589793 rad pos: -20.5,-44.5 @@ -131107,7 +116291,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17018 + - uid: 17019 components: - rot: 3.141592653589793 rad pos: -20.5,-45.5 @@ -131115,7 +116299,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17019 + - uid: 17020 components: - rot: 3.141592653589793 rad pos: -20.5,-46.5 @@ -131123,7 +116307,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17020 + - uid: 17021 components: - rot: 1.5707963267948966 rad pos: 45.5,-72.5 @@ -131131,7 +116315,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17021 + - uid: 17022 components: - rot: 3.141592653589793 rad pos: 29.5,-79.5 @@ -131139,7 +116323,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17022 + - uid: 17023 components: - rot: 3.141592653589793 rad pos: 29.5,-84.5 @@ -131147,7 +116331,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17023 + - uid: 17024 components: - rot: 3.141592653589793 rad pos: 48.5,-79.5 @@ -131155,7 +116339,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17024 + - uid: 17025 components: - rot: 3.141592653589793 rad pos: 48.5,-75.5 @@ -131163,7 +116347,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17025 + - uid: 17026 components: - rot: 1.5707963267948966 rad pos: 41.5,-72.5 @@ -131171,7 +116355,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17026 + - uid: 17027 components: - rot: 1.5707963267948966 rad pos: 39.5,-72.5 @@ -131179,35 +116363,35 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17027 + - uid: 17028 components: - pos: 38.5,-70.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17028 + - uid: 17029 components: - pos: 38.5,-69.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17029 + - uid: 17030 components: - pos: 40.5,-69.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17030 + - uid: 17031 components: - pos: 40.5,-70.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17031 + - uid: 17032 components: - rot: 1.5707963267948966 rad pos: 44.5,-73.5 @@ -131215,7 +116399,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17032 + - uid: 17033 components: - rot: 1.5707963267948966 rad pos: 43.5,-73.5 @@ -131223,7 +116407,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17033 + - uid: 17034 components: - rot: 1.5707963267948966 rad pos: 42.5,-73.5 @@ -131231,7 +116415,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17034 + - uid: 17035 components: - rot: 3.141592653589793 rad pos: 30.5,-81.5 @@ -131239,7 +116423,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17035 + - uid: 17036 components: - rot: 3.141592653589793 rad pos: 29.5,-80.5 @@ -131247,7 +116431,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17036 + - uid: 17037 components: - rot: 1.5707963267948966 rad pos: 46.5,-72.5 @@ -131255,7 +116439,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17037 + - uid: 17038 components: - rot: 3.141592653589793 rad pos: 47.5,-79.5 @@ -131263,7 +116447,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17038 + - uid: 17039 components: - rot: 1.5707963267948966 rad pos: 40.5,-72.5 @@ -131271,7 +116455,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17039 + - uid: 17040 components: - rot: 3.141592653589793 rad pos: 47.5,-73.5 @@ -131279,7 +116463,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17040 + - uid: 17041 components: - rot: 3.141592653589793 rad pos: 29.5,-78.5 @@ -131287,7 +116471,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17041 + - uid: 17042 components: - rot: 3.141592653589793 rad pos: 30.5,-73.5 @@ -131295,7 +116479,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17042 + - uid: 17043 components: - rot: 3.141592653589793 rad pos: 29.5,-81.5 @@ -131303,7 +116487,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17043 + - uid: 17044 components: - rot: 3.141592653589793 rad pos: 2.5,-59.5 @@ -131311,7 +116495,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17044 + - uid: 17045 components: - rot: 3.141592653589793 rad pos: 2.5,-58.5 @@ -131321,7 +116505,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17045 + - uid: 17046 components: - rot: 3.141592653589793 rad pos: 3.5,-60.5 @@ -131329,7 +116513,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17046 + - uid: 17047 components: - rot: 3.141592653589793 rad pos: 3.5,-59.5 @@ -131337,7 +116521,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17047 + - uid: 17048 components: - rot: 3.141592653589793 rad pos: 3.5,-58.5 @@ -131345,7 +116529,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17048 + - uid: 17049 components: - rot: 3.141592653589793 rad pos: 2.5,-57.5 @@ -131353,7 +116537,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17049 + - uid: 17050 components: - rot: 3.141592653589793 rad pos: -41.5,-7.5 @@ -131361,14 +116545,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17050 + - uid: 17051 components: - pos: -31.5,-12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17051 + - uid: 17052 components: - rot: 1.5707963267948966 rad pos: -29.5,-17.5 @@ -131376,7 +116560,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17052 + - uid: 17053 components: - rot: 1.5707963267948966 rad pos: -30.5,-17.5 @@ -131384,7 +116568,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17053 + - uid: 17054 components: - rot: -1.5707963267948966 rad pos: -30.5,-16.5 @@ -131392,7 +116576,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17054 + - uid: 17055 components: - rot: -1.5707963267948966 rad pos: -31.5,-16.5 @@ -131400,28 +116584,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17055 + - uid: 17056 components: - pos: -31.5,-18.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17056 + - uid: 17057 components: - pos: -31.5,-16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17057 + - uid: 17058 components: - pos: -31.5,-14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17058 + - uid: 17059 components: - rot: 3.141592653589793 rad pos: -32.5,-11.5 @@ -131429,7 +116613,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17059 + - uid: 17060 components: - rot: 3.141592653589793 rad pos: -32.5,-12.5 @@ -131437,7 +116621,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17060 + - uid: 17061 components: - rot: 3.141592653589793 rad pos: -32.5,-13.5 @@ -131445,7 +116629,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17061 + - uid: 17062 components: - rot: 3.141592653589793 rad pos: -32.5,-14.5 @@ -131453,7 +116637,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17062 + - uid: 17063 components: - rot: 3.141592653589793 rad pos: -32.5,-15.5 @@ -131461,7 +116645,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17063 + - uid: 17064 components: - rot: 1.5707963267948966 rad pos: -32.5,-11.5 @@ -131469,7 +116653,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17064 + - uid: 17065 components: - rot: 1.5707963267948966 rad pos: -33.5,-11.5 @@ -131477,7 +116661,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17065 + - uid: 17066 components: - rot: 1.5707963267948966 rad pos: -34.5,-11.5 @@ -131485,7 +116669,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17066 + - uid: 17067 components: - rot: 1.5707963267948966 rad pos: -35.5,-11.5 @@ -131493,7 +116677,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17067 + - uid: 17068 components: - rot: 1.5707963267948966 rad pos: -33.5,-10.5 @@ -131501,7 +116685,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17068 + - uid: 17069 components: - rot: 1.5707963267948966 rad pos: -34.5,-10.5 @@ -131509,112 +116693,112 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17069 + - uid: 17070 components: - pos: -32.5,-18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17070 + - uid: 17071 components: - pos: -32.5,-19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17071 + - uid: 17072 components: - pos: -32.5,-20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17072 + - uid: 17073 components: - pos: -31.5,-19.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17073 + - uid: 17074 components: - pos: -31.5,-20.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17074 + - uid: 17075 components: - pos: -31.5,-21.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17075 + - uid: 17076 components: - pos: -32.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17076 + - uid: 17077 components: - pos: -32.5,-22.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17077 + - uid: 17078 components: - pos: -32.5,-23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17078 + - uid: 17079 components: - pos: -32.5,-24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17079 + - uid: 17080 components: - pos: -31.5,-22.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17080 + - uid: 17081 components: - pos: -31.5,-23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17081 + - uid: 17082 components: - pos: -31.5,-24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17082 + - uid: 17083 components: - pos: -31.5,-25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17083 + - uid: 17084 components: - pos: -31.5,-26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17084 + - uid: 17085 components: - rot: 3.141592653589793 rad pos: -32.5,-26.5 @@ -131622,7 +116806,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17085 + - uid: 17086 components: - rot: 3.141592653589793 rad pos: -32.5,-27.5 @@ -131630,7 +116814,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17086 + - uid: 17087 components: - rot: 3.141592653589793 rad pos: -32.5,-28.5 @@ -131638,7 +116822,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17087 + - uid: 17088 components: - rot: 3.141592653589793 rad pos: -32.5,-29.5 @@ -131646,7 +116830,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17088 + - uid: 17089 components: - rot: 3.141592653589793 rad pos: -32.5,-30.5 @@ -131654,7 +116838,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17089 + - uid: 17090 components: - rot: 3.141592653589793 rad pos: -31.5,-28.5 @@ -131662,7 +116846,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17090 + - uid: 17091 components: - rot: 3.141592653589793 rad pos: -31.5,-29.5 @@ -131670,7 +116854,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17091 + - uid: 17092 components: - rot: 3.141592653589793 rad pos: -31.5,-30.5 @@ -131678,7 +116862,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17092 + - uid: 17093 components: - rot: 1.5707963267948966 rad pos: -32.5,-15.5 @@ -131686,7 +116870,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17093 + - uid: 17094 components: - rot: 1.5707963267948966 rad pos: -33.5,-15.5 @@ -131696,7 +116880,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17094 + - uid: 17095 components: - rot: 1.5707963267948966 rad pos: -33.5,-17.5 @@ -131704,7 +116888,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17095 + - uid: 17096 components: - rot: -1.5707963267948966 rad pos: -37.5,-11.5 @@ -131712,7 +116896,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17096 + - uid: 17097 components: - rot: -1.5707963267948966 rad pos: -38.5,-11.5 @@ -131720,7 +116904,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17097 + - uid: 17098 components: - rot: -1.5707963267948966 rad pos: -39.5,-11.5 @@ -131728,7 +116912,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17098 + - uid: 17099 components: - rot: -1.5707963267948966 rad pos: -40.5,-11.5 @@ -131736,7 +116920,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17099 + - uid: 17100 components: - rot: -1.5707963267948966 rad pos: -36.5,-10.5 @@ -131744,7 +116928,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17100 + - uid: 17101 components: - rot: -1.5707963267948966 rad pos: -37.5,-10.5 @@ -131752,7 +116936,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17101 + - uid: 17102 components: - rot: -1.5707963267948966 rad pos: -38.5,-10.5 @@ -131760,7 +116944,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17102 + - uid: 17103 components: - rot: -1.5707963267948966 rad pos: -39.5,-10.5 @@ -131768,7 +116952,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17103 + - uid: 17104 components: - rot: -1.5707963267948966 rad pos: -40.5,-10.5 @@ -131776,7 +116960,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17104 + - uid: 17105 components: - rot: -1.5707963267948966 rad pos: -41.5,-10.5 @@ -131784,28 +116968,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17105 + - uid: 17106 components: - pos: -42.5,-11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17106 + - uid: 17107 components: - pos: -42.5,-12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17107 + - uid: 17108 components: - pos: -42.5,-13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17108 + - uid: 17109 components: - pos: -42.5,-14.5 parent: 2 @@ -131814,42 +116998,42 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17109 + - uid: 17110 components: - pos: -41.5,-12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17110 + - uid: 17111 components: - pos: -41.5,-13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17111 + - uid: 17112 components: - pos: -41.5,-14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17112 + - uid: 17113 components: - pos: -41.5,-15.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17113 + - uid: 17114 components: - pos: -20.5,12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17114 + - uid: 17115 components: - rot: -1.5707963267948966 rad pos: -19.5,6.5 @@ -131857,7 +117041,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17115 + - uid: 17116 components: - rot: -1.5707963267948966 rad pos: -20.5,6.5 @@ -131865,7 +117049,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17116 + - uid: 17117 components: - rot: -1.5707963267948966 rad pos: -21.5,6.5 @@ -131873,7 +117057,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17117 + - uid: 17118 components: - rot: -1.5707963267948966 rad pos: -22.5,6.5 @@ -131881,7 +117065,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17118 + - uid: 17119 components: - rot: -1.5707963267948966 rad pos: -23.5,6.5 @@ -131889,7 +117073,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17119 + - uid: 17120 components: - rot: -1.5707963267948966 rad pos: -21.5,7.5 @@ -131897,7 +117081,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17120 + - uid: 17121 components: - rot: -1.5707963267948966 rad pos: -22.5,7.5 @@ -131905,7 +117089,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17121 + - uid: 17122 components: - rot: -1.5707963267948966 rad pos: -23.5,7.5 @@ -131913,7 +117097,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17122 + - uid: 17123 components: - rot: -1.5707963267948966 rad pos: -24.5,6.5 @@ -131921,7 +117105,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17123 + - uid: 17124 components: - rot: -1.5707963267948966 rad pos: -25.5,6.5 @@ -131929,7 +117113,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17124 + - uid: 17125 components: - rot: 3.141592653589793 rad pos: -26.5,-3.5 @@ -131937,7 +117121,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17125 + - uid: 17126 components: - rot: 3.141592653589793 rad pos: -26.5,-2.5 @@ -131945,7 +117129,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17126 + - uid: 17127 components: - rot: 3.141592653589793 rad pos: -26.5,-1.5 @@ -131953,7 +117137,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17127 + - uid: 17128 components: - rot: 3.141592653589793 rad pos: -26.5,-0.5 @@ -131961,7 +117145,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17128 + - uid: 17129 components: - rot: 3.141592653589793 rad pos: -26.5,0.5 @@ -131969,7 +117153,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17129 + - uid: 17130 components: - rot: 3.141592653589793 rad pos: -26.5,2.5 @@ -131977,7 +117161,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17130 + - uid: 17131 components: - rot: 3.141592653589793 rad pos: -26.5,3.5 @@ -131985,7 +117169,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17131 + - uid: 17132 components: - rot: 3.141592653589793 rad pos: -26.5,4.5 @@ -131993,7 +117177,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17132 + - uid: 17133 components: - rot: 3.141592653589793 rad pos: -26.5,5.5 @@ -132001,7 +117185,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17133 + - uid: 17134 components: - rot: 3.141592653589793 rad pos: -24.5,6.5 @@ -132009,7 +117193,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17134 + - uid: 17135 components: - rot: 3.141592653589793 rad pos: -24.5,5.5 @@ -132017,7 +117201,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17135 + - uid: 17136 components: - rot: 3.141592653589793 rad pos: -24.5,4.5 @@ -132025,7 +117209,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17136 + - uid: 17137 components: - rot: 3.141592653589793 rad pos: -24.5,3.5 @@ -132033,7 +117217,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17137 + - uid: 17138 components: - rot: 3.141592653589793 rad pos: -24.5,2.5 @@ -132041,7 +117225,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17138 + - uid: 17139 components: - rot: 3.141592653589793 rad pos: -24.5,1.5 @@ -132049,7 +117233,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17139 + - uid: 17140 components: - rot: 3.141592653589793 rad pos: -24.5,-0.5 @@ -132057,7 +117241,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17140 + - uid: 17141 components: - rot: 3.141592653589793 rad pos: -24.5,-1.5 @@ -132065,7 +117249,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17141 + - uid: 17142 components: - rot: 3.141592653589793 rad pos: -24.5,-3.5 @@ -132073,7 +117257,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17142 + - uid: 17143 components: - rot: -1.5707963267948966 rad pos: -43.5,-10.5 @@ -132081,7 +117265,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17143 + - uid: 17144 components: - rot: -1.5707963267948966 rad pos: -42.5,-11.5 @@ -132089,7 +117273,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17144 + - uid: 17145 components: - rot: -1.5707963267948966 rad pos: -43.5,-11.5 @@ -132097,7 +117281,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17145 + - uid: 17146 components: - rot: 3.141592653589793 rad pos: -41.5,-10.5 @@ -132105,7 +117289,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17146 + - uid: 17147 components: - rot: 3.141592653589793 rad pos: -42.5,-7.5 @@ -132113,7 +117297,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17147 + - uid: 17148 components: - rot: 1.5707963267948966 rad pos: -42.5,-5.5 @@ -132121,7 +117305,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17148 + - uid: 17149 components: - rot: 1.5707963267948966 rad pos: -43.5,-5.5 @@ -132129,7 +117313,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17149 + - uid: 17150 components: - rot: 1.5707963267948966 rad pos: -44.5,-5.5 @@ -132137,7 +117321,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17150 + - uid: 17151 components: - rot: 1.5707963267948966 rad pos: -45.5,-5.5 @@ -132145,7 +117329,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17151 + - uid: 17152 components: - rot: 3.141592653589793 rad pos: -41.5,-9.5 @@ -132153,7 +117337,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17152 + - uid: 17153 components: - rot: 3.141592653589793 rad pos: -42.5,-9.5 @@ -132161,7 +117345,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17153 + - uid: 17154 components: - rot: 3.141592653589793 rad pos: -42.5,-8.5 @@ -132169,7 +117353,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17154 + - uid: 17155 components: - rot: 1.5707963267948966 rad pos: -43.5,-6.5 @@ -132177,7 +117361,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17155 + - uid: 17156 components: - rot: 1.5707963267948966 rad pos: -44.5,-6.5 @@ -132185,7 +117369,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17156 + - uid: 17157 components: - rot: 1.5707963267948966 rad pos: -45.5,-6.5 @@ -132193,7 +117377,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17157 + - uid: 17158 components: - rot: 1.5707963267948966 rad pos: -46.5,-6.5 @@ -132201,7 +117385,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17158 + - uid: 17159 components: - rot: 1.5707963267948966 rad pos: -47.5,-5.5 @@ -132209,7 +117393,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17159 + - uid: 17160 components: - rot: 1.5707963267948966 rad pos: -48.5,-5.5 @@ -132217,7 +117401,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17160 + - uid: 17161 components: - rot: 1.5707963267948966 rad pos: -49.5,-5.5 @@ -132225,7 +117409,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17161 + - uid: 17162 components: - rot: 1.5707963267948966 rad pos: -50.5,-5.5 @@ -132233,7 +117417,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17162 + - uid: 17163 components: - rot: 1.5707963267948966 rad pos: -51.5,-5.5 @@ -132241,7 +117425,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17163 + - uid: 17164 components: - rot: 1.5707963267948966 rad pos: -52.5,-5.5 @@ -132249,7 +117433,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17164 + - uid: 17165 components: - rot: 1.5707963267948966 rad pos: -48.5,-6.5 @@ -132257,7 +117441,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17165 + - uid: 17166 components: - rot: 1.5707963267948966 rad pos: -49.5,-6.5 @@ -132265,7 +117449,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17166 + - uid: 17167 components: - rot: 1.5707963267948966 rad pos: -50.5,-6.5 @@ -132273,7 +117457,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17167 + - uid: 17168 components: - rot: 1.5707963267948966 rad pos: -51.5,-6.5 @@ -132281,119 +117465,119 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17168 + - uid: 17169 components: - pos: -53.5,-6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17169 + - uid: 17170 components: - pos: -53.5,-7.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17170 + - uid: 17171 components: - pos: -53.5,-8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17171 + - uid: 17172 components: - pos: -53.5,-9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17172 + - uid: 17173 components: - pos: -53.5,-10.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17173 + - uid: 17174 components: - pos: -53.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17174 + - uid: 17175 components: - pos: -53.5,-12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17175 + - uid: 17176 components: - pos: -52.5,-7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17176 + - uid: 17177 components: - pos: -52.5,-8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17177 + - uid: 17178 components: - pos: -52.5,-9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17178 + - uid: 17179 components: - pos: -52.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17179 + - uid: 17180 components: - pos: -52.5,-11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17180 + - uid: 17181 components: - pos: -52.5,-12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17181 + - uid: 17182 components: - pos: -52.5,-13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17182 + - uid: 17183 components: - pos: -52.5,-14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17183 + - uid: 17184 components: - pos: -52.5,-15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17184 + - uid: 17185 components: - rot: 3.141592653589793 rad pos: -53.5,-14.5 @@ -132401,7 +117585,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17185 + - uid: 17186 components: - rot: 3.141592653589793 rad pos: -53.5,-15.5 @@ -132409,7 +117593,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17186 + - uid: 17187 components: - rot: 3.141592653589793 rad pos: -53.5,-16.5 @@ -132417,7 +117601,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17187 + - uid: 17188 components: - rot: 3.141592653589793 rad pos: -53.5,-17.5 @@ -132425,7 +117609,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17188 + - uid: 17189 components: - rot: 3.141592653589793 rad pos: -53.5,-18.5 @@ -132433,7 +117617,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17189 + - uid: 17190 components: - rot: 1.5707963267948966 rad pos: -51.5,-17.5 @@ -132441,7 +117625,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17190 + - uid: 17191 components: - rot: 1.5707963267948966 rad pos: -52.5,-19.5 @@ -132449,28 +117633,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17191 + - uid: 17192 components: - pos: -50.5,-18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17192 + - uid: 17193 components: - pos: -50.5,-19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17193 + - uid: 17194 components: - pos: -50.5,-20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17194 + - uid: 17195 components: - pos: -50.5,-21.5 parent: 2 @@ -132479,42 +117663,42 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17195 + - uid: 17196 components: - pos: -50.5,-22.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17196 + - uid: 17197 components: - pos: -51.5,-20.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17197 + - uid: 17198 components: - pos: -51.5,-21.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17198 + - uid: 17199 components: - pos: -51.5,-22.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17199 + - uid: 17200 components: - pos: -51.5,-23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17200 + - uid: 17201 components: - rot: 1.5707963267948966 rad pos: -50.5,-25.5 @@ -132522,7 +117706,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17201 + - uid: 17202 components: - rot: 1.5707963267948966 rad pos: -49.5,-25.5 @@ -132530,7 +117714,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17202 + - uid: 17203 components: - rot: 1.5707963267948966 rad pos: -48.5,-25.5 @@ -132538,7 +117722,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17203 + - uid: 17204 components: - rot: 1.5707963267948966 rad pos: -49.5,-24.5 @@ -132548,7 +117732,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17204 + - uid: 17205 components: - rot: 1.5707963267948966 rad pos: -48.5,-24.5 @@ -132558,7 +117742,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17205 + - uid: 17206 components: - rot: 1.5707963267948966 rad pos: -47.5,-25.5 @@ -132566,7 +117750,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17206 + - uid: 17207 components: - rot: 1.5707963267948966 rad pos: -46.5,-25.5 @@ -132574,7 +117758,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17207 + - uid: 17208 components: - rot: 3.141592653589793 rad pos: -47.5,-23.5 @@ -132582,7 +117766,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17208 + - uid: 17209 components: - rot: 3.141592653589793 rad pos: -45.5,-24.5 @@ -132592,7 +117776,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17209 + - uid: 17210 components: - rot: 3.141592653589793 rad pos: -45.5,-23.5 @@ -132600,7 +117784,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17210 + - uid: 17211 components: - rot: 3.141592653589793 rad pos: -41.5,-6.5 @@ -132608,7 +117792,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17211 + - uid: 17212 components: - rot: -1.5707963267948966 rad pos: -60.5,-23.5 @@ -132616,7 +117800,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17212 + - uid: 17213 components: - rot: -1.5707963267948966 rad pos: -62.5,-23.5 @@ -132624,77 +117808,77 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17213 + - uid: 17214 components: - pos: -53.5,-20.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17214 + - uid: 17215 components: - pos: -53.5,-21.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17215 + - uid: 17216 components: - pos: -53.5,-22.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17216 + - uid: 17217 components: - pos: -53.5,-23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17217 + - uid: 17218 components: - pos: -53.5,-24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17218 + - uid: 17219 components: - pos: -54.5,-18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17219 + - uid: 17220 components: - pos: -54.5,-19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17220 + - uid: 17221 components: - pos: -54.5,-20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17221 + - uid: 17222 components: - pos: -54.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17222 + - uid: 17223 components: - pos: -54.5,-22.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17223 + - uid: 17224 components: - rot: -1.5707963267948966 rad pos: -53.5,-17.5 @@ -132702,7 +117886,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17224 + - uid: 17225 components: - rot: 1.5707963267948966 rad pos: -54.5,-25.5 @@ -132710,7 +117894,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17225 + - uid: 17226 components: - rot: 1.5707963267948966 rad pos: -55.5,-25.5 @@ -132718,7 +117902,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17226 + - uid: 17227 components: - rot: 1.5707963267948966 rad pos: -56.5,-25.5 @@ -132726,7 +117910,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17227 + - uid: 17228 components: - rot: 1.5707963267948966 rad pos: -57.5,-25.5 @@ -132734,7 +117918,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17228 + - uid: 17229 components: - rot: 1.5707963267948966 rad pos: -58.5,-25.5 @@ -132742,7 +117926,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17229 + - uid: 17230 components: - rot: 1.5707963267948966 rad pos: -55.5,-23.5 @@ -132750,7 +117934,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17230 + - uid: 17231 components: - rot: 1.5707963267948966 rad pos: -57.5,-23.5 @@ -132758,7 +117942,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17231 + - uid: 17232 components: - rot: 1.5707963267948966 rad pos: -58.5,-23.5 @@ -132766,7 +117950,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17232 + - uid: 17233 components: - rot: -1.5707963267948966 rad pos: -59.5,-23.5 @@ -132774,7 +117958,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17233 + - uid: 17234 components: - rot: -1.5707963267948966 rad pos: -61.5,-23.5 @@ -132782,7 +117966,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17234 + - uid: 17235 components: - rot: -1.5707963267948966 rad pos: -63.5,-23.5 @@ -132790,7 +117974,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17235 + - uid: 17236 components: - rot: -1.5707963267948966 rad pos: -64.5,-23.5 @@ -132798,7 +117982,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17236 + - uid: 17237 components: - rot: -1.5707963267948966 rad pos: -65.5,-23.5 @@ -132806,7 +117990,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17237 + - uid: 17238 components: - rot: -1.5707963267948966 rad pos: -66.5,-23.5 @@ -132814,7 +117998,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17238 + - uid: 17239 components: - rot: -1.5707963267948966 rad pos: -67.5,-23.5 @@ -132822,49 +118006,49 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17239 + - uid: 17240 components: - pos: -68.5,-24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17240 + - uid: 17241 components: - pos: -68.5,-25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17241 + - uid: 17242 components: - pos: -68.5,-26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17242 + - uid: 17243 components: - pos: -68.5,-28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17243 + - uid: 17244 components: - pos: -68.5,-29.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17244 + - uid: 17245 components: - pos: -68.5,-30.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17245 + - uid: 17246 components: - rot: -1.5707963267948966 rad pos: -60.5,-25.5 @@ -132872,7 +118056,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17246 + - uid: 17247 components: - rot: -1.5707963267948966 rad pos: -61.5,-25.5 @@ -132880,7 +118064,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17247 + - uid: 17248 components: - rot: -1.5707963267948966 rad pos: -62.5,-25.5 @@ -132888,7 +118072,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17248 + - uid: 17249 components: - rot: -1.5707963267948966 rad pos: -63.5,-25.5 @@ -132898,14 +118082,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17249 + - uid: 17250 components: - pos: -64.5,-26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17250 + - uid: 17251 components: - rot: 3.141592653589793 rad pos: -64.5,-28.5 @@ -132913,7 +118097,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17251 + - uid: 17252 components: - rot: 3.141592653589793 rad pos: -64.5,-29.5 @@ -132921,7 +118105,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17252 + - uid: 17253 components: - rot: 3.141592653589793 rad pos: -64.5,-30.5 @@ -132929,7 +118113,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17253 + - uid: 17254 components: - rot: 1.5707963267948966 rad pos: -47.5,-42.5 @@ -132937,7 +118121,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17254 + - uid: 17255 components: - rot: 1.5707963267948966 rad pos: -47.5,-44.5 @@ -132945,7 +118129,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17255 + - uid: 17256 components: - rot: 1.5707963267948966 rad pos: -47.5,-46.5 @@ -132953,7 +118137,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17256 + - uid: 17257 components: - rot: 1.5707963267948966 rad pos: -47.5,-48.5 @@ -132961,7 +118145,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17257 + - uid: 17258 components: - rot: 1.5707963267948966 rad pos: -47.5,-50.5 @@ -132969,7 +118153,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17258 + - uid: 17259 components: - rot: 1.5707963267948966 rad pos: -47.5,-52.5 @@ -132977,7 +118161,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17259 + - uid: 17260 components: - rot: 1.5707963267948966 rad pos: -47.5,-54.5 @@ -132985,7 +118169,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17260 + - uid: 17261 components: - rot: 1.5707963267948966 rad pos: -49.5,-55.5 @@ -132993,7 +118177,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17261 + - uid: 17262 components: - rot: 1.5707963267948966 rad pos: -48.5,-55.5 @@ -133001,7 +118185,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17262 + - uid: 17263 components: - rot: 1.5707963267948966 rad pos: -47.5,-55.5 @@ -133009,7 +118193,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17263 + - uid: 17264 components: - rot: 1.5707963267948966 rad pos: -49.5,-53.5 @@ -133017,7 +118201,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17264 + - uid: 17265 components: - rot: 1.5707963267948966 rad pos: -48.5,-53.5 @@ -133025,7 +118209,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17265 + - uid: 17266 components: - rot: 1.5707963267948966 rad pos: -47.5,-53.5 @@ -133033,7 +118217,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17266 + - uid: 17267 components: - rot: 1.5707963267948966 rad pos: -49.5,-51.5 @@ -133041,7 +118225,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17267 + - uid: 17268 components: - rot: 1.5707963267948966 rad pos: -48.5,-51.5 @@ -133049,7 +118233,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17268 + - uid: 17269 components: - rot: 1.5707963267948966 rad pos: -47.5,-51.5 @@ -133057,7 +118241,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17269 + - uid: 17270 components: - rot: 1.5707963267948966 rad pos: -49.5,-49.5 @@ -133065,7 +118249,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17270 + - uid: 17271 components: - rot: 1.5707963267948966 rad pos: -48.5,-49.5 @@ -133073,7 +118257,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17271 + - uid: 17272 components: - rot: 1.5707963267948966 rad pos: -47.5,-49.5 @@ -133081,7 +118265,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17272 + - uid: 17273 components: - rot: 1.5707963267948966 rad pos: -49.5,-47.5 @@ -133089,7 +118273,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17273 + - uid: 17274 components: - rot: 1.5707963267948966 rad pos: -48.5,-47.5 @@ -133097,7 +118281,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17274 + - uid: 17275 components: - rot: 1.5707963267948966 rad pos: -47.5,-47.5 @@ -133105,7 +118289,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17275 + - uid: 17276 components: - rot: 1.5707963267948966 rad pos: -49.5,-45.5 @@ -133113,7 +118297,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17276 + - uid: 17277 components: - rot: 1.5707963267948966 rad pos: -48.5,-45.5 @@ -133121,7 +118305,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17277 + - uid: 17278 components: - rot: 1.5707963267948966 rad pos: -47.5,-45.5 @@ -133129,7 +118313,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17278 + - uid: 17279 components: - rot: 1.5707963267948966 rad pos: -49.5,-43.5 @@ -133137,7 +118321,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17279 + - uid: 17280 components: - rot: 1.5707963267948966 rad pos: -48.5,-43.5 @@ -133145,7 +118329,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17280 + - uid: 17281 components: - rot: 1.5707963267948966 rad pos: -47.5,-43.5 @@ -133153,7 +118337,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17281 + - uid: 17282 components: - rot: 1.5707963267948966 rad pos: -46.5,-52.5 @@ -133161,7 +118345,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17282 + - uid: 17283 components: - rot: 1.5707963267948966 rad pos: -45.5,-52.5 @@ -133169,7 +118353,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17283 + - uid: 17284 components: - rot: 1.5707963267948966 rad pos: -46.5,-54.5 @@ -133177,7 +118361,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17284 + - uid: 17285 components: - rot: 1.5707963267948966 rad pos: -45.5,-54.5 @@ -133185,7 +118369,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17285 + - uid: 17286 components: - rot: 1.5707963267948966 rad pos: -46.5,-50.5 @@ -133193,7 +118377,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17286 + - uid: 17287 components: - rot: 1.5707963267948966 rad pos: -45.5,-50.5 @@ -133201,7 +118385,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17287 + - uid: 17288 components: - rot: 1.5707963267948966 rad pos: -46.5,-48.5 @@ -133209,7 +118393,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17288 + - uid: 17289 components: - rot: 1.5707963267948966 rad pos: -45.5,-48.5 @@ -133217,7 +118401,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17289 + - uid: 17290 components: - rot: 1.5707963267948966 rad pos: -46.5,-46.5 @@ -133225,7 +118409,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17290 + - uid: 17291 components: - rot: 1.5707963267948966 rad pos: -45.5,-46.5 @@ -133233,7 +118417,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17291 + - uid: 17292 components: - rot: 1.5707963267948966 rad pos: -46.5,-44.5 @@ -133241,7 +118425,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17292 + - uid: 17293 components: - rot: 1.5707963267948966 rad pos: -45.5,-44.5 @@ -133249,7 +118433,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17293 + - uid: 17294 components: - rot: 1.5707963267948966 rad pos: -46.5,-42.5 @@ -133257,7 +118441,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17294 + - uid: 17295 components: - rot: 1.5707963267948966 rad pos: -45.5,-42.5 @@ -133265,7 +118449,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17295 + - uid: 17296 components: - rot: 1.5707963267948966 rad pos: -45.5,-55.5 @@ -133273,7 +118457,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17296 + - uid: 17297 components: - rot: 1.5707963267948966 rad pos: -46.5,-55.5 @@ -133281,7 +118465,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17297 + - uid: 17298 components: - rot: 1.5707963267948966 rad pos: -46.5,-53.5 @@ -133289,7 +118473,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17298 + - uid: 17299 components: - rot: 1.5707963267948966 rad pos: -45.5,-53.5 @@ -133297,7 +118481,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17299 + - uid: 17300 components: - rot: 1.5707963267948966 rad pos: -43.5,-53.5 @@ -133305,7 +118489,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17300 + - uid: 17301 components: - rot: 1.5707963267948966 rad pos: -46.5,-51.5 @@ -133313,7 +118497,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17301 + - uid: 17302 components: - rot: 1.5707963267948966 rad pos: -45.5,-51.5 @@ -133321,7 +118505,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17302 + - uid: 17303 components: - rot: 1.5707963267948966 rad pos: -43.5,-51.5 @@ -133329,7 +118513,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17303 + - uid: 17304 components: - rot: 1.5707963267948966 rad pos: -46.5,-49.5 @@ -133337,7 +118521,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17304 + - uid: 17305 components: - rot: 1.5707963267948966 rad pos: -45.5,-49.5 @@ -133345,7 +118529,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17305 + - uid: 17306 components: - rot: 1.5707963267948966 rad pos: -43.5,-49.5 @@ -133353,7 +118537,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17306 + - uid: 17307 components: - rot: 1.5707963267948966 rad pos: -46.5,-47.5 @@ -133361,7 +118545,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17307 + - uid: 17308 components: - rot: 1.5707963267948966 rad pos: -45.5,-47.5 @@ -133369,7 +118553,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17308 + - uid: 17309 components: - rot: 1.5707963267948966 rad pos: -43.5,-47.5 @@ -133377,7 +118561,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17309 + - uid: 17310 components: - rot: 1.5707963267948966 rad pos: -46.5,-45.5 @@ -133385,7 +118569,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17310 + - uid: 17311 components: - rot: 1.5707963267948966 rad pos: -45.5,-45.5 @@ -133393,7 +118577,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17311 + - uid: 17312 components: - rot: 1.5707963267948966 rad pos: -43.5,-45.5 @@ -133401,7 +118585,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17312 + - uid: 17313 components: - rot: 1.5707963267948966 rad pos: -46.5,-43.5 @@ -133409,7 +118593,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17313 + - uid: 17314 components: - rot: 1.5707963267948966 rad pos: -45.5,-43.5 @@ -133417,7 +118601,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17314 + - uid: 17315 components: - rot: 1.5707963267948966 rad pos: -43.5,-43.5 @@ -133425,7 +118609,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17315 + - uid: 17316 components: - rot: 3.141592653589793 rad pos: -42.5,-54.5 @@ -133433,7 +118617,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17316 + - uid: 17317 components: - rot: 3.141592653589793 rad pos: -43.5,-54.5 @@ -133441,7 +118625,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17317 + - uid: 17318 components: - rot: 3.141592653589793 rad pos: -43.5,-53.5 @@ -133449,98 +118633,98 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17318 + - uid: 17319 components: - pos: -42.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17319 + - uid: 17320 components: - pos: -42.5,-48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17320 + - uid: 17321 components: - pos: -42.5,-46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17321 + - uid: 17322 components: - pos: -42.5,-44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17322 + - uid: 17323 components: - pos: -42.5,-42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17323 + - uid: 17324 components: - pos: -44.5,-43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17324 + - uid: 17325 components: - pos: -44.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17325 + - uid: 17326 components: - pos: -44.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17326 + - uid: 17327 components: - pos: -44.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17327 + - uid: 17328 components: - pos: -44.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17328 + - uid: 17329 components: - pos: -44.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17329 + - uid: 17330 components: - pos: -44.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17330 + - uid: 17331 components: - pos: -44.5,-56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17331 + - uid: 17332 components: - rot: 1.5707963267948966 rad pos: -43.5,-57.5 @@ -133548,7 +118732,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17332 + - uid: 17333 components: - rot: 1.5707963267948966 rad pos: -42.5,-57.5 @@ -133556,7 +118740,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17333 + - uid: 17334 components: - rot: 1.5707963267948966 rad pos: -41.5,-57.5 @@ -133564,7 +118748,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17334 + - uid: 17335 components: - rot: 1.5707963267948966 rad pos: -40.5,-57.5 @@ -133572,7 +118756,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17335 + - uid: 17336 components: - rot: 1.5707963267948966 rad pos: -41.5,-55.5 @@ -133582,7 +118766,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17336 + - uid: 17337 components: - rot: 3.141592653589793 rad pos: -44.5,-39.5 @@ -133592,7 +118776,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17337 + - uid: 17338 components: - rot: 1.5707963267948966 rad pos: -36.5,-57.5 @@ -133600,31 +118784,31 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17338 + - uid: 17339 components: - rot: 3.141592653589793 rad pos: -42.5,-39.5 parent: 2 type: Transform - - uid: 17339 + - uid: 17340 components: - rot: 3.141592653589793 rad pos: -42.5,-38.5 parent: 2 type: Transform - - uid: 17340 + - uid: 17341 components: - rot: 3.141592653589793 rad pos: -42.5,-37.5 parent: 2 type: Transform - - uid: 17341 + - uid: 17342 components: - rot: 3.141592653589793 rad pos: -42.5,-36.5 parent: 2 type: Transform - - uid: 17342 + - uid: 17343 components: - rot: 3.141592653589793 rad pos: -38.5,-59.5 @@ -133632,7 +118816,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17343 + - uid: 17344 components: - rot: 3.141592653589793 rad pos: -40.5,-52.5 @@ -133642,7 +118826,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17344 + - uid: 17345 components: - rot: 3.141592653589793 rad pos: -37.5,-52.5 @@ -133652,7 +118836,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17345 + - uid: 17346 components: - rot: 1.5707963267948966 rad pos: -37.5,-55.5 @@ -133662,7 +118846,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17346 + - uid: 17347 components: - rot: -1.5707963267948966 rad pos: -38.5,-55.5 @@ -133672,7 +118856,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17347 + - uid: 17348 components: - rot: 1.5707963267948966 rad pos: -39.5,-48.5 @@ -133682,7 +118866,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17348 + - uid: 17349 components: - rot: 3.141592653589793 rad pos: -38.5,-47.5 @@ -133692,7 +118876,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17349 + - uid: 17350 components: - rot: 3.141592653589793 rad pos: -38.5,-46.5 @@ -133702,7 +118886,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17350 + - uid: 17351 components: - rot: 1.5707963267948966 rad pos: -35.5,-57.5 @@ -133710,35 +118894,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17351 + - uid: 17352 components: - pos: -31.5,-31.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17352 + - uid: 17353 components: - pos: -32.5,-31.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17353 + - uid: 17354 components: - pos: -32.5,-32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17354 + - uid: 17355 components: - pos: -31.5,-32.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17355 + - uid: 17356 components: - rot: 3.141592653589793 rad pos: -31.5,-33.5 @@ -133746,7 +118930,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17356 + - uid: 17357 components: - rot: 3.141592653589793 rad pos: -32.5,-34.5 @@ -133754,7 +118938,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17357 + - uid: 17358 components: - rot: 1.5707963267948966 rad pos: -31.5,-33.5 @@ -133762,7 +118946,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17358 + - uid: 17359 components: - rot: 1.5707963267948966 rad pos: -30.5,-33.5 @@ -133770,7 +118954,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17359 + - uid: 17360 components: - rot: 1.5707963267948966 rad pos: -29.5,-33.5 @@ -133778,7 +118962,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17360 + - uid: 17361 components: - rot: 1.5707963267948966 rad pos: -28.5,-33.5 @@ -133786,7 +118970,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17361 + - uid: 17362 components: - rot: 1.5707963267948966 rad pos: -27.5,-33.5 @@ -133794,7 +118978,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17362 + - uid: 17363 components: - rot: 1.5707963267948966 rad pos: -26.5,-33.5 @@ -133802,7 +118986,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17363 + - uid: 17364 components: - rot: 1.5707963267948966 rad pos: -25.5,-33.5 @@ -133810,7 +118994,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17364 + - uid: 17365 components: - rot: 1.5707963267948966 rad pos: -34.5,-33.5 @@ -133818,7 +119002,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17365 + - uid: 17366 components: - rot: 1.5707963267948966 rad pos: -35.5,-33.5 @@ -133826,7 +119010,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17366 + - uid: 17367 components: - rot: 1.5707963267948966 rad pos: -36.5,-33.5 @@ -133834,7 +119018,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17367 + - uid: 17368 components: - rot: 1.5707963267948966 rad pos: -37.5,-33.5 @@ -133842,7 +119026,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17368 + - uid: 17369 components: - rot: 1.5707963267948966 rad pos: -32.5,-34.5 @@ -133850,7 +119034,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17369 + - uid: 17370 components: - rot: 1.5707963267948966 rad pos: -33.5,-34.5 @@ -133858,7 +119042,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17370 + - uid: 17371 components: - rot: 1.5707963267948966 rad pos: -34.5,-34.5 @@ -133866,7 +119050,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17371 + - uid: 17372 components: - rot: 1.5707963267948966 rad pos: -35.5,-34.5 @@ -133874,7 +119058,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17372 + - uid: 17373 components: - rot: 1.5707963267948966 rad pos: -36.5,-34.5 @@ -133882,7 +119066,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17373 + - uid: 17374 components: - rot: 1.5707963267948966 rad pos: -37.5,-34.5 @@ -133890,70 +119074,70 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17374 + - uid: 17375 components: - pos: -32.5,-35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17375 + - uid: 17376 components: - pos: -32.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17376 + - uid: 17377 components: - pos: -32.5,-39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17377 + - uid: 17378 components: - pos: -31.5,-35.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17378 + - uid: 17379 components: - pos: -31.5,-36.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17379 + - uid: 17380 components: - pos: -31.5,-38.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17380 + - uid: 17381 components: - pos: -31.5,-37.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17381 + - uid: 17382 components: - pos: -31.5,-40.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17382 + - uid: 17383 components: - pos: -32.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17383 + - uid: 17384 components: - rot: -1.5707963267948966 rad pos: -29.5,-34.5 @@ -133961,7 +119145,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17384 + - uid: 17385 components: - rot: -1.5707963267948966 rad pos: -28.5,-34.5 @@ -133969,7 +119153,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17385 + - uid: 17386 components: - rot: -1.5707963267948966 rad pos: -27.5,-34.5 @@ -133977,7 +119161,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17386 + - uid: 17387 components: - rot: -1.5707963267948966 rad pos: -26.5,-34.5 @@ -133985,7 +119169,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17387 + - uid: 17388 components: - rot: -1.5707963267948966 rad pos: -25.5,-34.5 @@ -133993,7 +119177,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17388 + - uid: 17389 components: - rot: -1.5707963267948966 rad pos: -24.5,-34.5 @@ -134001,7 +119185,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17389 + - uid: 17390 components: - pos: -37.5,-55.5 parent: 2 @@ -134010,7 +119194,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17390 + - uid: 17391 components: - pos: -37.5,-56.5 parent: 2 @@ -134019,7 +119203,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17391 + - uid: 17392 components: - rot: 1.5707963267948966 rad pos: -36.5,-55.5 @@ -134027,7 +119211,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17392 + - uid: 17393 components: - rot: 3.141592653589793 rad pos: -35.5,-54.5 @@ -134035,7 +119219,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17393 + - uid: 17394 components: - rot: 3.141592653589793 rad pos: -35.5,-52.5 @@ -134043,7 +119227,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17394 + - uid: 17395 components: - rot: 3.141592653589793 rad pos: -35.5,-51.5 @@ -134051,7 +119235,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17395 + - uid: 17396 components: - rot: 3.141592653589793 rad pos: -35.5,-50.5 @@ -134059,7 +119243,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17396 + - uid: 17397 components: - rot: 3.141592653589793 rad pos: -35.5,-49.5 @@ -134067,7 +119251,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17397 + - uid: 17398 components: - rot: 3.141592653589793 rad pos: -35.5,-48.5 @@ -134075,7 +119259,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17398 + - uid: 17399 components: - rot: 3.141592653589793 rad pos: -35.5,-47.5 @@ -134083,7 +119267,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17399 + - uid: 17400 components: - rot: 3.141592653589793 rad pos: -35.5,-46.5 @@ -134091,7 +119275,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17400 + - uid: 17401 components: - rot: 3.141592653589793 rad pos: -35.5,-45.5 @@ -134099,7 +119283,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17401 + - uid: 17402 components: - rot: 3.141592653589793 rad pos: -35.5,-43.5 @@ -134107,7 +119291,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17402 + - uid: 17403 components: - rot: 3.141592653589793 rad pos: -35.5,-42.5 @@ -134115,7 +119299,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17403 + - uid: 17404 components: - rot: 3.141592653589793 rad pos: -34.5,-56.5 @@ -134123,7 +119307,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17404 + - uid: 17405 components: - rot: 3.141592653589793 rad pos: -34.5,-55.5 @@ -134131,7 +119315,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17405 + - uid: 17406 components: - rot: 3.141592653589793 rad pos: -34.5,-54.5 @@ -134139,7 +119323,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17406 + - uid: 17407 components: - rot: 3.141592653589793 rad pos: -34.5,-53.5 @@ -134147,7 +119331,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17407 + - uid: 17408 components: - rot: 3.141592653589793 rad pos: -34.5,-52.5 @@ -134155,7 +119339,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17408 + - uid: 17409 components: - rot: 3.141592653589793 rad pos: -34.5,-51.5 @@ -134163,7 +119347,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17409 + - uid: 17410 components: - rot: 3.141592653589793 rad pos: -34.5,-50.5 @@ -134171,7 +119355,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17410 + - uid: 17411 components: - rot: 3.141592653589793 rad pos: -34.5,-49.5 @@ -134179,7 +119363,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17411 + - uid: 17412 components: - rot: 3.141592653589793 rad pos: -34.5,-48.5 @@ -134187,7 +119371,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17412 + - uid: 17413 components: - rot: 3.141592653589793 rad pos: -34.5,-47.5 @@ -134195,7 +119379,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17413 + - uid: 17414 components: - rot: 3.141592653589793 rad pos: -34.5,-46.5 @@ -134203,7 +119387,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17414 + - uid: 17415 components: - rot: -1.5707963267948966 rad pos: -33.5,-40.5 @@ -134211,14 +119395,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17415 + - uid: 17416 components: - pos: -34.5,-41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17416 + - uid: 17417 components: - rot: -1.5707963267948966 rad pos: -34.5,-41.5 @@ -134226,7 +119410,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17417 + - uid: 17418 components: - rot: -1.5707963267948966 rad pos: -33.5,-41.5 @@ -134234,7 +119418,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17418 + - uid: 17419 components: - rot: -1.5707963267948966 rad pos: -32.5,-41.5 @@ -134242,7 +119426,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17419 + - uid: 17420 components: - pos: -38.5,-44.5 parent: 2 @@ -134251,7 +119435,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17420 + - uid: 17421 components: - pos: -38.5,-43.5 parent: 2 @@ -134260,35 +119444,35 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17421 + - uid: 17422 components: - pos: -38.5,-41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17422 + - uid: 17423 components: - pos: -38.5,-40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17423 + - uid: 17424 components: - pos: -38.5,-39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17424 + - uid: 17425 components: - pos: -38.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17425 + - uid: 17426 components: - pos: -38.5,-37.5 parent: 2 @@ -134297,14 +119481,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17426 + - uid: 17427 components: - pos: -38.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17427 + - uid: 17428 components: - rot: -1.5707963267948966 rad pos: -39.5,-35.5 @@ -134312,7 +119496,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17428 + - uid: 17429 components: - rot: -1.5707963267948966 rad pos: -41.5,-34.5 @@ -134322,7 +119506,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17429 + - uid: 17430 components: - rot: -1.5707963267948966 rad pos: -42.5,-34.5 @@ -134330,7 +119514,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17430 + - uid: 17431 components: - rot: 3.141592653589793 rad pos: -41.5,-8.5 @@ -134338,7 +119522,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17431 + - uid: 17432 components: - rot: -1.5707963267948966 rad pos: -23.5,-57.5 @@ -134346,7 +119530,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17432 + - uid: 17433 components: - rot: -1.5707963267948966 rad pos: -22.5,-57.5 @@ -134354,7 +119538,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17433 + - uid: 17434 components: - rot: -1.5707963267948966 rad pos: -20.5,-57.5 @@ -134362,7 +119546,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17434 + - uid: 17435 components: - rot: -1.5707963267948966 rad pos: -21.5,-57.5 @@ -134372,7 +119556,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17435 + - uid: 17436 components: - rot: -1.5707963267948966 rad pos: -19.5,-60.5 @@ -134380,7 +119564,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17436 + - uid: 17437 components: - rot: -1.5707963267948966 rad pos: -19.5,-71.5 @@ -134388,7 +119572,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17437 + - uid: 17438 components: - rot: -1.5707963267948966 rad pos: -20.5,-71.5 @@ -134396,7 +119580,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17438 + - uid: 17439 components: - rot: -1.5707963267948966 rad pos: -21.5,-71.5 @@ -134404,7 +119588,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17439 + - uid: 17440 components: - rot: -1.5707963267948966 rad pos: -22.5,-71.5 @@ -134412,7 +119596,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17440 + - uid: 17441 components: - rot: -1.5707963267948966 rad pos: -23.5,-71.5 @@ -134420,7 +119604,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17441 + - uid: 17442 components: - rot: -1.5707963267948966 rad pos: -24.5,-71.5 @@ -134428,7 +119612,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17442 + - uid: 17443 components: - rot: -1.5707963267948966 rad pos: -25.5,-71.5 @@ -134436,7 +119620,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17443 + - uid: 17444 components: - rot: -1.5707963267948966 rad pos: -26.5,-71.5 @@ -134446,7 +119630,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17444 + - uid: 17445 components: - rot: 3.141592653589793 rad pos: -28.5,-71.5 @@ -134454,7 +119638,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17445 + - uid: 17446 components: - rot: -1.5707963267948966 rad pos: -27.5,-71.5 @@ -134462,7 +119646,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17446 + - uid: 17447 components: - rot: 3.141592653589793 rad pos: -28.5,-70.5 @@ -134470,7 +119654,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17447 + - uid: 17448 components: - rot: -1.5707963267948966 rad pos: -31.5,-71.5 @@ -134478,7 +119662,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17448 + - uid: 17449 components: - rot: -1.5707963267948966 rad pos: -32.5,-71.5 @@ -134488,7 +119672,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17449 + - uid: 17450 components: - rot: -1.5707963267948966 rad pos: -33.5,-71.5 @@ -134498,7 +119682,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17450 + - uid: 17451 components: - rot: -1.5707963267948966 rad pos: -34.5,-71.5 @@ -134506,7 +119690,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17451 + - uid: 17452 components: - rot: -1.5707963267948966 rad pos: -35.5,-71.5 @@ -134516,7 +119700,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17452 + - uid: 17453 components: - rot: -1.5707963267948966 rad pos: -36.5,-71.5 @@ -134526,7 +119710,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17453 + - uid: 17454 components: - rot: -1.5707963267948966 rad pos: -37.5,-71.5 @@ -134536,7 +119720,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17454 + - uid: 17455 components: - rot: -1.5707963267948966 rad pos: -38.5,-71.5 @@ -134544,7 +119728,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17455 + - uid: 17456 components: - rot: -1.5707963267948966 rad pos: -39.5,-71.5 @@ -134554,7 +119738,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17456 + - uid: 17457 components: - rot: -1.5707963267948966 rad pos: -21.5,-69.5 @@ -134562,7 +119746,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17457 + - uid: 17458 components: - rot: -1.5707963267948966 rad pos: -22.5,-69.5 @@ -134570,7 +119754,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17458 + - uid: 17459 components: - rot: -1.5707963267948966 rad pos: -23.5,-69.5 @@ -134578,7 +119762,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17459 + - uid: 17460 components: - rot: -1.5707963267948966 rad pos: -24.5,-69.5 @@ -134586,7 +119770,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17460 + - uid: 17461 components: - rot: -1.5707963267948966 rad pos: -25.5,-69.5 @@ -134594,7 +119778,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17461 + - uid: 17462 components: - rot: -1.5707963267948966 rad pos: -26.5,-69.5 @@ -134604,7 +119788,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17462 + - uid: 17463 components: - rot: -1.5707963267948966 rad pos: -28.5,-71.5 @@ -134612,7 +119796,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17463 + - uid: 17464 components: - rot: -1.5707963267948966 rad pos: -29.5,-69.5 @@ -134620,7 +119804,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17464 + - uid: 17465 components: - rot: -1.5707963267948966 rad pos: -31.5,-69.5 @@ -134628,7 +119812,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17465 + - uid: 17466 components: - rot: -1.5707963267948966 rad pos: -32.5,-69.5 @@ -134636,7 +119820,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17466 + - uid: 17467 components: - rot: -1.5707963267948966 rad pos: -33.5,-69.5 @@ -134644,7 +119828,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17467 + - uid: 17468 components: - rot: -1.5707963267948966 rad pos: -34.5,-69.5 @@ -134652,7 +119836,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17468 + - uid: 17469 components: - rot: -1.5707963267948966 rad pos: -35.5,-69.5 @@ -134662,7 +119846,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17469 + - uid: 17470 components: - rot: -1.5707963267948966 rad pos: -36.5,-69.5 @@ -134672,7 +119856,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17470 + - uid: 17471 components: - rot: -1.5707963267948966 rad pos: -37.5,-69.5 @@ -134682,7 +119866,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17471 + - uid: 17472 components: - rot: -1.5707963267948966 rad pos: -38.5,-69.5 @@ -134692,7 +119876,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17472 + - uid: 17473 components: - rot: -1.5707963267948966 rad pos: -39.5,-69.5 @@ -134702,7 +119886,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17473 + - uid: 17474 components: - rot: -1.5707963267948966 rad pos: -40.5,-69.5 @@ -134712,7 +119896,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17474 + - uid: 17475 components: - rot: -1.5707963267948966 rad pos: -41.5,-69.5 @@ -134720,14 +119904,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17475 + - uid: 17476 components: - pos: -42.5,-70.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17476 + - uid: 17477 components: - rot: 1.5707963267948966 rad pos: -22.5,-58.5 @@ -134735,7 +119919,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17477 + - uid: 17478 components: - rot: 1.5707963267948966 rad pos: -21.5,-58.5 @@ -134745,7 +119929,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17478 + - uid: 17479 components: - rot: 3.141592653589793 rad pos: 21.5,-28.5 @@ -134753,14 +119937,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17479 + - uid: 17480 components: - pos: 23.5,-28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17480 + - uid: 17481 components: - rot: 1.5707963267948966 rad pos: -35.5,20.5 @@ -134770,7 +119954,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17481 + - uid: 17482 components: - rot: -1.5707963267948966 rad pos: -13.5,39.5 @@ -134778,7 +119962,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17482 + - uid: 17483 components: - rot: -1.5707963267948966 rad pos: -15.5,39.5 @@ -134786,7 +119970,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17483 + - uid: 17484 components: - rot: -1.5707963267948966 rad pos: -14.5,39.5 @@ -134794,7 +119978,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17484 + - uid: 17485 components: - rot: -1.5707963267948966 rad pos: -20.5,23.5 @@ -134802,91 +119986,91 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17485 + - uid: 17486 components: - pos: -20.5,14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17486 + - uid: 17487 components: - pos: -20.5,15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17487 + - uid: 17488 components: - pos: -20.5,17.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17488 + - uid: 17489 components: - pos: -20.5,18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17489 + - uid: 17490 components: - pos: -20.5,19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17490 + - uid: 17491 components: - pos: -18.5,13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17491 + - uid: 17492 components: - pos: -18.5,14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17492 + - uid: 17493 components: - pos: -18.5,15.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17493 + - uid: 17494 components: - pos: -18.5,16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17494 + - uid: 17495 components: - pos: -18.5,17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17495 + - uid: 17496 components: - pos: -18.5,18.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17496 + - uid: 17497 components: - pos: -18.5,20.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17497 + - uid: 17498 components: - rot: 3.141592653589793 rad pos: -18.5,21.5 @@ -134894,7 +120078,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17498 + - uid: 17499 components: - rot: -1.5707963267948966 rad pos: -21.5,20.5 @@ -134902,7 +120086,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17499 + - uid: 17500 components: - rot: -1.5707963267948966 rad pos: -22.5,20.5 @@ -134910,7 +120094,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17500 + - uid: 17501 components: - rot: 3.141592653589793 rad pos: -18.5,22.5 @@ -134918,7 +120102,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17501 + - uid: 17502 components: - rot: -1.5707963267948966 rad pos: -19.5,23.5 @@ -134926,7 +120110,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17502 + - uid: 17503 components: - rot: -1.5707963267948966 rad pos: -21.5,23.5 @@ -134936,7 +120120,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17503 + - uid: 17504 components: - rot: -1.5707963267948966 rad pos: -22.5,23.5 @@ -134944,7 +120128,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17504 + - uid: 17505 components: - rot: -1.5707963267948966 rad pos: -23.5,23.5 @@ -134952,7 +120136,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17505 + - uid: 17506 components: - rot: -1.5707963267948966 rad pos: -25.5,23.5 @@ -134960,7 +120144,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17506 + - uid: 17507 components: - rot: -1.5707963267948966 rad pos: -26.5,23.5 @@ -134970,7 +120154,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17507 + - uid: 17508 components: - rot: -1.5707963267948966 rad pos: -27.5,23.5 @@ -134978,7 +120162,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17508 + - uid: 17509 components: - rot: 1.5707963267948966 rad pos: -27.5,20.5 @@ -134988,7 +120172,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17509 + - uid: 17510 components: - rot: 1.5707963267948966 rad pos: -26.5,20.5 @@ -134998,7 +120182,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17510 + - uid: 17511 components: - rot: 1.5707963267948966 rad pos: -25.5,20.5 @@ -135006,7 +120190,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17511 + - uid: 17512 components: - rot: 1.5707963267948966 rad pos: -24.5,20.5 @@ -135014,7 +120198,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17512 + - uid: 17513 components: - rot: 1.5707963267948966 rad pos: -29.5,23.5 @@ -135024,7 +120208,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17513 + - uid: 17514 components: - rot: 1.5707963267948966 rad pos: -30.5,23.5 @@ -135032,7 +120216,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17514 + - uid: 17515 components: - rot: 1.5707963267948966 rad pos: -31.5,23.5 @@ -135040,7 +120224,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17515 + - uid: 17516 components: - rot: 1.5707963267948966 rad pos: -29.5,20.5 @@ -135050,7 +120234,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17516 + - uid: 17517 components: - rot: 1.5707963267948966 rad pos: -30.5,20.5 @@ -135058,7 +120242,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17517 + - uid: 17518 components: - rot: 1.5707963267948966 rad pos: -31.5,20.5 @@ -135066,7 +120250,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17518 + - uid: 17519 components: - rot: 1.5707963267948966 rad pos: -33.5,23.5 @@ -135074,7 +120258,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17519 + - uid: 17520 components: - rot: 1.5707963267948966 rad pos: -34.5,23.5 @@ -135082,7 +120266,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17520 + - uid: 17521 components: - rot: 1.5707963267948966 rad pos: -35.5,23.5 @@ -135092,7 +120276,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17521 + - uid: 17522 components: - rot: 1.5707963267948966 rad pos: -36.5,23.5 @@ -135100,77 +120284,77 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17522 + - uid: 17523 components: - pos: -32.5,24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17523 + - uid: 17524 components: - pos: -32.5,25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17524 + - uid: 17525 components: - pos: -32.5,26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17525 + - uid: 17526 components: - pos: -32.5,27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17526 + - uid: 17527 components: - pos: -33.5,21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17527 + - uid: 17528 components: - pos: -33.5,22.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17528 + - uid: 17529 components: - pos: -33.5,23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17529 + - uid: 17530 components: - pos: -33.5,24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17530 + - uid: 17531 components: - pos: -33.5,25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17531 + - uid: 17532 components: - pos: -33.5,26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17532 + - uid: 17533 components: - pos: -33.5,27.5 parent: 2 @@ -135179,7 +120363,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17533 + - uid: 17534 components: - rot: 1.5707963267948966 rad pos: -37.5,23.5 @@ -135187,7 +120371,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17534 + - uid: 17535 components: - rot: 1.5707963267948966 rad pos: -38.5,23.5 @@ -135195,7 +120379,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17535 + - uid: 17536 components: - rot: 1.5707963267948966 rad pos: -39.5,23.5 @@ -135203,7 +120387,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17536 + - uid: 17537 components: - rot: 1.5707963267948966 rad pos: -37.5,20.5 @@ -135211,7 +120395,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17537 + - uid: 17538 components: - rot: 1.5707963267948966 rad pos: -38.5,20.5 @@ -135219,7 +120403,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17538 + - uid: 17539 components: - rot: 1.5707963267948966 rad pos: -39.5,20.5 @@ -135227,7 +120411,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17539 + - uid: 17540 components: - rot: 1.5707963267948966 rad pos: -40.5,20.5 @@ -135235,21 +120419,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17540 + - uid: 17541 components: - pos: -40.5,24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17541 + - uid: 17542 components: - pos: -40.5,25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17542 + - uid: 17543 components: - pos: -40.5,26.5 parent: 2 @@ -135258,63 +120442,63 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17543 + - uid: 17544 components: - pos: -40.5,27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17544 + - uid: 17545 components: - pos: -41.5,21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17545 + - uid: 17546 components: - pos: -41.5,22.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17546 + - uid: 17547 components: - pos: -41.5,23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17547 + - uid: 17548 components: - pos: -41.5,24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17548 + - uid: 17549 components: - pos: -41.5,25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17549 + - uid: 17550 components: - pos: -41.5,26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17550 + - uid: 17551 components: - pos: -41.5,27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17551 + - uid: 17552 components: - rot: -1.5707963267948966 rad pos: -12.5,39.5 @@ -135322,49 +120506,49 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17552 + - uid: 17553 components: - pos: -40.5,32.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17553 + - uid: 17554 components: - pos: -40.5,31.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17554 + - uid: 17555 components: - pos: -41.5,30.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17555 + - uid: 17556 components: - pos: -40.5,29.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17556 + - uid: 17557 components: - pos: -40.5,28.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17557 + - uid: 17558 components: - pos: -41.5,28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17558 + - uid: 17559 components: - rot: -1.5707963267948966 rad pos: -40.5,29.5 @@ -135372,7 +120556,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17559 + - uid: 17560 components: - rot: -1.5707963267948966 rad pos: -39.5,29.5 @@ -135380,7 +120564,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17560 + - uid: 17561 components: - rot: -1.5707963267948966 rad pos: -38.5,29.5 @@ -135388,7 +120572,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17561 + - uid: 17562 components: - rot: -1.5707963267948966 rad pos: -39.5,30.5 @@ -135398,7 +120582,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17562 + - uid: 17563 components: - rot: -1.5707963267948966 rad pos: -38.5,30.5 @@ -135406,7 +120590,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17563 + - uid: 17564 components: - rot: -1.5707963267948966 rad pos: -41.5,33.5 @@ -135414,7 +120598,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17564 + - uid: 17565 components: - rot: -1.5707963267948966 rad pos: -42.5,33.5 @@ -135422,7 +120606,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17565 + - uid: 17566 components: - rot: -1.5707963267948966 rad pos: -43.5,33.5 @@ -135430,7 +120614,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17566 + - uid: 17567 components: - rot: -1.5707963267948966 rad pos: -42.5,31.5 @@ -135438,7 +120622,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17567 + - uid: 17568 components: - rot: -1.5707963267948966 rad pos: -43.5,31.5 @@ -135446,7 +120630,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17568 + - uid: 17569 components: - pos: -49.5,32.5 parent: 2 @@ -135455,7 +120639,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17569 + - uid: 17570 components: - rot: 1.5707963267948966 rad pos: -48.5,33.5 @@ -135463,7 +120647,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17570 + - uid: 17571 components: - rot: 1.5707963267948966 rad pos: -47.5,33.5 @@ -135471,7 +120655,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17571 + - uid: 17572 components: - rot: 1.5707963267948966 rad pos: -46.5,33.5 @@ -135479,7 +120663,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17572 + - uid: 17573 components: - rot: 1.5707963267948966 rad pos: -45.5,31.5 @@ -135487,7 +120671,9 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17573 + - nextSound: 1370.6480644 + type: EmitSoundOnCollide + - uid: 17574 components: - rot: -1.5707963267948966 rad pos: -21.5,13.5 @@ -135497,7 +120683,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17574 + - uid: 17575 components: - rot: -1.5707963267948966 rad pos: -22.5,13.5 @@ -135505,7 +120691,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17575 + - uid: 17576 components: - rot: -1.5707963267948966 rad pos: -23.5,13.5 @@ -135513,7 +120699,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17576 + - uid: 17577 components: - rot: -1.5707963267948966 rad pos: -24.5,13.5 @@ -135521,7 +120707,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17577 + - uid: 17578 components: - rot: -1.5707963267948966 rad pos: -19.5,12.5 @@ -135529,7 +120715,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17578 + - uid: 17579 components: - rot: -1.5707963267948966 rad pos: -20.5,12.5 @@ -135537,7 +120723,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17579 + - uid: 17580 components: - rot: -1.5707963267948966 rad pos: -21.5,12.5 @@ -135547,7 +120733,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17580 + - uid: 17581 components: - rot: -1.5707963267948966 rad pos: -22.5,12.5 @@ -135555,7 +120741,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17581 + - uid: 17582 components: - rot: -1.5707963267948966 rad pos: -23.5,12.5 @@ -135563,7 +120749,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17582 + - uid: 17583 components: - rot: -1.5707963267948966 rad pos: -24.5,12.5 @@ -135571,7 +120757,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17583 + - uid: 17584 components: - rot: -1.5707963267948966 rad pos: -25.5,12.5 @@ -135579,7 +120765,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17584 + - uid: 17585 components: - pos: 71.5,-30.5 parent: 2 @@ -135588,7 +120774,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17585 + - uid: 17586 components: - rot: -1.5707963267948966 rad pos: -27.5,1.5 @@ -135596,7 +120782,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17586 + - uid: 17587 components: - rot: -1.5707963267948966 rad pos: -29.5,1.5 @@ -135604,7 +120790,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17587 + - uid: 17588 components: - rot: -1.5707963267948966 rad pos: -30.5,1.5 @@ -135612,7 +120798,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17588 + - uid: 17589 components: - rot: -1.5707963267948966 rad pos: -31.5,1.5 @@ -135620,7 +120806,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17589 + - uid: 17590 components: - rot: -1.5707963267948966 rad pos: -32.5,1.5 @@ -135628,7 +120814,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17590 + - uid: 17591 components: - rot: -1.5707963267948966 rad pos: -33.5,1.5 @@ -135636,7 +120822,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17591 + - uid: 17592 components: - rot: -1.5707963267948966 rad pos: -34.5,1.5 @@ -135644,7 +120830,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17592 + - uid: 17593 components: - rot: -1.5707963267948966 rad pos: -35.5,1.5 @@ -135652,7 +120838,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17593 + - uid: 17594 components: - rot: -1.5707963267948966 rad pos: -36.5,1.5 @@ -135660,7 +120846,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17594 + - uid: 17595 components: - rot: -1.5707963267948966 rad pos: -25.5,0.5 @@ -135668,7 +120854,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17595 + - uid: 17596 components: - rot: -1.5707963267948966 rad pos: -26.5,0.5 @@ -135676,7 +120862,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17596 + - uid: 17597 components: - rot: -1.5707963267948966 rad pos: -27.5,0.5 @@ -135684,7 +120870,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17597 + - uid: 17598 components: - rot: -1.5707963267948966 rad pos: -28.5,0.5 @@ -135692,7 +120878,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17598 + - uid: 17599 components: - rot: -1.5707963267948966 rad pos: -30.5,0.5 @@ -135700,7 +120886,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17599 + - uid: 17600 components: - rot: -1.5707963267948966 rad pos: -31.5,0.5 @@ -135708,7 +120894,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17600 + - uid: 17601 components: - rot: -1.5707963267948966 rad pos: -32.5,0.5 @@ -135716,7 +120902,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17601 + - uid: 17602 components: - rot: -1.5707963267948966 rad pos: -33.5,0.5 @@ -135724,7 +120910,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17602 + - uid: 17603 components: - rot: -1.5707963267948966 rad pos: -34.5,0.5 @@ -135732,7 +120918,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17603 + - uid: 17604 components: - rot: -1.5707963267948966 rad pos: -35.5,0.5 @@ -135740,7 +120926,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17604 + - uid: 17605 components: - rot: -1.5707963267948966 rad pos: -36.5,0.5 @@ -135748,7 +120934,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17605 + - uid: 17606 components: - rot: -1.5707963267948966 rad pos: -37.5,0.5 @@ -135756,21 +120942,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17606 + - uid: 17607 components: - pos: -28.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17607 + - uid: 17608 components: - pos: -28.5,-0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17608 + - uid: 17609 components: - pos: -28.5,-1.5 parent: 2 @@ -135779,35 +120965,35 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17609 + - uid: 17610 components: - pos: -28.5,-2.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17610 + - uid: 17611 components: - pos: -29.5,-0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17611 + - uid: 17612 components: - pos: -29.5,-1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17612 + - uid: 17613 components: - pos: -29.5,-2.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17613 + - uid: 17614 components: - rot: 3.141592653589793 rad pos: -37.5,2.5 @@ -135815,7 +121001,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17614 + - uid: 17615 components: - rot: 3.141592653589793 rad pos: -37.5,3.5 @@ -135823,7 +121009,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17615 + - uid: 17616 components: - rot: 3.141592653589793 rad pos: -37.5,4.5 @@ -135831,7 +121017,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17616 + - uid: 17617 components: - rot: 3.141592653589793 rad pos: -37.5,6.5 @@ -135839,7 +121025,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17617 + - uid: 17618 components: - rot: 3.141592653589793 rad pos: -37.5,7.5 @@ -135847,7 +121033,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17618 + - uid: 17619 components: - rot: 3.141592653589793 rad pos: -38.5,1.5 @@ -135855,7 +121041,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17619 + - uid: 17620 components: - rot: 3.141592653589793 rad pos: -38.5,2.5 @@ -135863,7 +121049,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17620 + - uid: 17621 components: - rot: 3.141592653589793 rad pos: -38.5,4.5 @@ -135871,7 +121057,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17621 + - uid: 17622 components: - rot: 3.141592653589793 rad pos: -38.5,5.5 @@ -135879,7 +121065,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17622 + - uid: 17623 components: - rot: 3.141592653589793 rad pos: -38.5,6.5 @@ -135887,7 +121073,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17623 + - uid: 17624 components: - rot: 3.141592653589793 rad pos: -38.5,7.5 @@ -135895,7 +121081,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17624 + - uid: 17625 components: - rot: 3.141592653589793 rad pos: -37.5,9.5 @@ -135903,7 +121089,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17625 + - uid: 17626 components: - rot: 3.141592653589793 rad pos: -37.5,10.5 @@ -135911,7 +121097,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17626 + - uid: 17627 components: - rot: 3.141592653589793 rad pos: -37.5,11.5 @@ -135919,7 +121105,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17627 + - uid: 17628 components: - rot: 3.141592653589793 rad pos: -37.5,12.5 @@ -135927,7 +121113,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17628 + - uid: 17629 components: - rot: 3.141592653589793 rad pos: -38.5,9.5 @@ -135935,7 +121121,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17629 + - uid: 17630 components: - rot: 3.141592653589793 rad pos: -38.5,10.5 @@ -135943,7 +121129,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17630 + - uid: 17631 components: - rot: 3.141592653589793 rad pos: -38.5,11.5 @@ -135951,7 +121137,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17631 + - uid: 17632 components: - rot: 3.141592653589793 rad pos: -38.5,12.5 @@ -135959,14 +121145,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17632 + - uid: 17633 components: - pos: -38.5,13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17633 + - uid: 17634 components: - rot: 1.5707963267948966 rad pos: -37.5,14.5 @@ -135974,7 +121160,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17634 + - uid: 17635 components: - rot: 1.5707963267948966 rad pos: -36.5,14.5 @@ -135982,7 +121168,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17635 + - uid: 17636 components: - rot: 1.5707963267948966 rad pos: -35.5,14.5 @@ -135990,7 +121176,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17636 + - uid: 17637 components: - rot: 1.5707963267948966 rad pos: -34.5,14.5 @@ -135998,7 +121184,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17637 + - uid: 17638 components: - rot: 1.5707963267948966 rad pos: -33.5,14.5 @@ -136006,7 +121192,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17638 + - uid: 17639 components: - rot: 1.5707963267948966 rad pos: -32.5,14.5 @@ -136014,7 +121200,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17639 + - uid: 17640 components: - rot: 1.5707963267948966 rad pos: -31.5,14.5 @@ -136022,7 +121208,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17640 + - uid: 17641 components: - rot: 1.5707963267948966 rad pos: -36.5,13.5 @@ -136030,7 +121216,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17641 + - uid: 17642 components: - rot: 1.5707963267948966 rad pos: -35.5,13.5 @@ -136038,7 +121224,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17642 + - uid: 17643 components: - rot: 1.5707963267948966 rad pos: -34.5,13.5 @@ -136046,7 +121232,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17643 + - uid: 17644 components: - rot: 1.5707963267948966 rad pos: -33.5,13.5 @@ -136054,7 +121240,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17644 + - uid: 17645 components: - rot: 1.5707963267948966 rad pos: -32.5,13.5 @@ -136064,7 +121250,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17645 + - uid: 17646 components: - rot: 1.5707963267948966 rad pos: -31.5,13.5 @@ -136072,7 +121258,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17646 + - uid: 17647 components: - rot: -1.5707963267948966 rad pos: -38.5,1.5 @@ -136080,7 +121266,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17647 + - uid: 17648 components: - rot: -1.5707963267948966 rad pos: -39.5,1.5 @@ -136088,7 +121274,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17648 + - uid: 17649 components: - rot: -1.5707963267948966 rad pos: -40.5,1.5 @@ -136096,7 +121282,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17649 + - uid: 17650 components: - rot: -1.5707963267948966 rad pos: -40.5,0.5 @@ -136104,7 +121290,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17650 + - uid: 17651 components: - rot: -1.5707963267948966 rad pos: -41.5,0.5 @@ -136112,7 +121298,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17651 + - uid: 17652 components: - rot: -1.5707963267948966 rad pos: -42.5,0.5 @@ -136120,7 +121306,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17652 + - uid: 17653 components: - rot: -1.5707963267948966 rad pos: -43.5,0.5 @@ -136128,7 +121314,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17653 + - uid: 17654 components: - rot: -1.5707963267948966 rad pos: -42.5,1.5 @@ -136136,7 +121322,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17654 + - uid: 17655 components: - rot: -1.5707963267948966 rad pos: -43.5,1.5 @@ -136144,7 +121330,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17655 + - uid: 17656 components: - rot: -1.5707963267948966 rad pos: -30.5,13.5 @@ -136152,7 +121338,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17656 + - uid: 17657 components: - rot: 3.141592653589793 rad pos: -30.5,13.5 @@ -136160,7 +121346,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17657 + - uid: 17658 components: - rot: 3.141592653589793 rad pos: -30.5,12.5 @@ -136168,7 +121354,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17658 + - uid: 17659 components: - rot: 3.141592653589793 rad pos: -30.5,11.5 @@ -136176,7 +121362,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17659 + - uid: 17660 components: - rot: 3.141592653589793 rad pos: -30.5,10.5 @@ -136184,7 +121370,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17660 + - uid: 17661 components: - rot: 3.141592653589793 rad pos: -29.5,12.5 @@ -136192,7 +121378,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17661 + - uid: 17662 components: - rot: 3.141592653589793 rad pos: -29.5,11.5 @@ -136202,7 +121388,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17662 + - uid: 17663 components: - rot: 3.141592653589793 rad pos: -29.5,10.5 @@ -136210,7 +121396,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17663 + - uid: 17664 components: - rot: 3.141592653589793 rad pos: -29.5,14.5 @@ -136218,7 +121404,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17664 + - uid: 17665 components: - rot: -1.5707963267948966 rad pos: -44.5,1.5 @@ -136226,7 +121412,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17665 + - uid: 17666 components: - rot: -1.5707963267948966 rad pos: -44.5,0.5 @@ -136234,7 +121420,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17666 + - uid: 17667 components: - rot: -1.5707963267948966 rad pos: -45.5,0.5 @@ -136242,7 +121428,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17667 + - uid: 17668 components: - rot: -1.5707963267948966 rad pos: -46.5,0.5 @@ -136250,49 +121436,49 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17668 + - uid: 17669 components: - pos: -45.5,2.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17669 + - uid: 17670 components: - pos: -45.5,3.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17670 + - uid: 17671 components: - pos: -45.5,4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17671 + - uid: 17672 components: - pos: -45.5,5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17672 + - uid: 17673 components: - pos: -47.5,1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17673 + - uid: 17674 components: - pos: -47.5,2.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17674 + - uid: 17675 components: - rot: 3.141592653589793 rad pos: -47.5,4.5 @@ -136300,7 +121486,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17675 + - uid: 17676 components: - rot: 3.141592653589793 rad pos: -47.5,5.5 @@ -136308,7 +121494,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17676 + - uid: 17677 components: - rot: 3.141592653589793 rad pos: -47.5,6.5 @@ -136316,7 +121502,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17677 + - uid: 17678 components: - rot: 3.141592653589793 rad pos: -47.5,7.5 @@ -136324,7 +121510,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17678 + - uid: 17679 components: - rot: 3.141592653589793 rad pos: -47.5,8.5 @@ -136332,7 +121518,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17679 + - uid: 17680 components: - rot: 3.141592653589793 rad pos: -47.5,9.5 @@ -136342,7 +121528,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17680 + - uid: 17681 components: - rot: -1.5707963267948966 rad pos: -48.5,10.5 @@ -136350,7 +121536,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17681 + - uid: 17682 components: - rot: 3.141592653589793 rad pos: -46.5,11.5 @@ -136358,7 +121544,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17682 + - uid: 17683 components: - rot: 3.141592653589793 rad pos: -46.5,12.5 @@ -136366,7 +121552,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17683 + - uid: 17684 components: - rot: 3.141592653589793 rad pos: -46.5,13.5 @@ -136376,7 +121562,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17684 + - uid: 17685 components: - rot: 1.5707963267948966 rad pos: -49.5,10.5 @@ -136384,7 +121570,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17685 + - uid: 17686 components: - rot: 1.5707963267948966 rad pos: -50.5,10.5 @@ -136392,14 +121578,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17686 + - uid: 17687 components: - pos: -52.5,11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17687 + - uid: 17688 components: - pos: -52.5,12.5 parent: 2 @@ -136408,28 +121594,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17688 + - uid: 17689 components: - pos: -52.5,13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17689 + - uid: 17690 components: - pos: -52.5,9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17690 + - uid: 17691 components: - pos: -52.5,8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17691 + - uid: 17692 components: - rot: -1.5707963267948966 rad pos: -45.5,10.5 @@ -136437,7 +121623,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17692 + - uid: 17693 components: - rot: -1.5707963267948966 rad pos: -44.5,10.5 @@ -136447,7 +121633,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17693 + - uid: 17694 components: - rot: -1.5707963267948966 rad pos: -43.5,10.5 @@ -136455,7 +121641,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17694 + - uid: 17695 components: - rot: 1.5707963267948966 rad pos: -46.5,7.5 @@ -136463,7 +121649,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17695 + - uid: 17696 components: - rot: 1.5707963267948966 rad pos: -47.5,7.5 @@ -136471,7 +121657,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17696 + - uid: 17697 components: - rot: 1.5707963267948966 rad pos: -48.5,7.5 @@ -136479,7 +121665,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17697 + - uid: 17698 components: - rot: 1.5707963267948966 rad pos: -49.5,7.5 @@ -136487,7 +121673,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17698 + - uid: 17699 components: - rot: 1.5707963267948966 rad pos: -50.5,7.5 @@ -136497,28 +121683,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17699 + - uid: 17700 components: - pos: -45.5,8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17700 + - uid: 17701 components: - pos: -45.5,9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17701 + - uid: 17702 components: - pos: -45.5,10.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17702 + - uid: 17703 components: - rot: 3.141592653589793 rad pos: -45.5,12.5 @@ -136526,7 +121712,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17703 + - uid: 17704 components: - rot: 3.141592653589793 rad pos: -45.5,13.5 @@ -136534,7 +121720,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17704 + - uid: 17705 components: - rot: 1.5707963267948966 rad pos: -44.5,11.5 @@ -136542,7 +121728,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17705 + - uid: 17706 components: - rot: 1.5707963267948966 rad pos: -46.5,11.5 @@ -136550,7 +121736,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17706 + - uid: 17707 components: - rot: 1.5707963267948966 rad pos: -47.5,11.5 @@ -136558,7 +121744,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17707 + - uid: 17708 components: - rot: 1.5707963267948966 rad pos: -48.5,11.5 @@ -136566,7 +121752,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17708 + - uid: 17709 components: - rot: -1.5707963267948966 rad pos: -49.5,11.5 @@ -136574,7 +121760,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17709 + - uid: 17710 components: - rot: 1.5707963267948966 rad pos: -50.5,11.5 @@ -136582,7 +121768,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17710 + - uid: 17711 components: - rot: 3.141592653589793 rad pos: -51.5,12.5 @@ -136590,7 +121776,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17711 + - uid: 17712 components: - rot: 3.141592653589793 rad pos: -51.5,13.5 @@ -136598,14 +121784,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17712 + - uid: 17713 components: - pos: -46.5,14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17713 + - uid: 17714 components: - rot: 3.141592653589793 rad pos: -18.5,25.5 @@ -136613,7 +121799,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17714 + - uid: 17715 components: - rot: 3.141592653589793 rad pos: -20.5,21.5 @@ -136621,7 +121807,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17715 + - uid: 17716 components: - rot: 3.141592653589793 rad pos: -20.5,22.5 @@ -136629,7 +121815,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17716 + - uid: 17717 components: - rot: 3.141592653589793 rad pos: -20.5,23.5 @@ -136637,7 +121823,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17717 + - uid: 17718 components: - rot: 3.141592653589793 rad pos: -20.5,24.5 @@ -136645,7 +121831,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17718 + - uid: 17719 components: - rot: 1.5707963267948966 rad pos: 37.5,-72.5 @@ -136653,7 +121839,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17719 + - uid: 17720 components: - rot: 1.5707963267948966 rad pos: 22.5,-54.5 @@ -136661,7 +121847,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17720 + - uid: 17721 components: - rot: 1.5707963267948966 rad pos: 25.5,-53.5 @@ -136669,7 +121855,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17721 + - uid: 17722 components: - rot: 1.5707963267948966 rad pos: 24.5,-53.5 @@ -136677,7 +121863,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17722 + - uid: 17723 components: - rot: 1.5707963267948966 rad pos: 23.5,-53.5 @@ -136685,7 +121871,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17723 + - uid: 17724 components: - rot: 1.5707963267948966 rad pos: 22.5,-53.5 @@ -136695,7 +121881,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17724 + - uid: 17725 components: - rot: 1.5707963267948966 rad pos: 21.5,-53.5 @@ -136705,7 +121891,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17725 + - uid: 17726 components: - rot: 1.5707963267948966 rad pos: 20.5,-53.5 @@ -136713,7 +121899,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17726 + - uid: 17727 components: - rot: -1.5707963267948966 rad pos: -43.5,-71.5 @@ -136723,7 +121909,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17727 + - uid: 17728 components: - rot: -1.5707963267948966 rad pos: -44.5,-71.5 @@ -136733,35 +121919,35 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17728 + - uid: 17729 components: - pos: -45.5,-72.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17729 + - uid: 17730 components: - pos: -45.5,-73.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17730 + - uid: 17731 components: - pos: -45.5,-74.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17731 + - uid: 17732 components: - pos: -45.5,-75.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17732 + - uid: 17733 components: - rot: -1.5707963267948966 rad pos: -46.5,-76.5 @@ -136771,7 +121957,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17733 + - uid: 17734 components: - rot: -1.5707963267948966 rad pos: -47.5,-76.5 @@ -136779,7 +121965,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17734 + - uid: 17735 components: - rot: -1.5707963267948966 rad pos: -48.5,-76.5 @@ -136787,7 +121973,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17735 + - uid: 17736 components: - rot: -1.5707963267948966 rad pos: -49.5,-76.5 @@ -136795,7 +121981,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17736 + - uid: 17737 components: - rot: -1.5707963267948966 rad pos: -50.5,-76.5 @@ -136803,7 +121989,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17737 + - uid: 17738 components: - rot: -1.5707963267948966 rad pos: -51.5,-76.5 @@ -136811,7 +121997,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17738 + - uid: 17739 components: - rot: -1.5707963267948966 rad pos: -52.5,-76.5 @@ -136819,7 +122005,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17739 + - uid: 17740 components: - rot: -1.5707963267948966 rad pos: -53.5,-76.5 @@ -136827,7 +122013,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17740 + - uid: 17741 components: - rot: -1.5707963267948966 rad pos: -41.5,-72.5 @@ -136835,7 +122021,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17741 + - uid: 17742 components: - rot: -1.5707963267948966 rad pos: -42.5,-72.5 @@ -136843,7 +122029,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17742 + - uid: 17743 components: - rot: -1.5707963267948966 rad pos: -43.5,-72.5 @@ -136851,7 +122037,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17743 + - uid: 17744 components: - rot: -1.5707963267948966 rad pos: -44.5,-72.5 @@ -136859,7 +122045,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17744 + - uid: 17745 components: - rot: -1.5707963267948966 rad pos: -45.5,-72.5 @@ -136867,7 +122053,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17745 + - uid: 17746 components: - rot: 3.141592653589793 rad pos: -46.5,-73.5 @@ -136875,7 +122061,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17746 + - uid: 17747 components: - rot: 3.141592653589793 rad pos: -46.5,-74.5 @@ -136883,7 +122069,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17747 + - uid: 17748 components: - rot: 1.5707963267948966 rad pos: -47.5,-75.5 @@ -136891,7 +122077,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17748 + - uid: 17749 components: - rot: 1.5707963267948966 rad pos: -48.5,-75.5 @@ -136901,7 +122087,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17749 + - uid: 17750 components: - rot: 1.5707963267948966 rad pos: -49.5,-75.5 @@ -136911,7 +122097,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17750 + - uid: 17751 components: - rot: 1.5707963267948966 rad pos: -50.5,-75.5 @@ -136921,7 +122107,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17751 + - uid: 17752 components: - rot: 1.5707963267948966 rad pos: -51.5,-75.5 @@ -136929,7 +122115,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17752 + - uid: 17753 components: - rot: 1.5707963267948966 rad pos: -52.5,-75.5 @@ -136937,7 +122123,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17753 + - uid: 17754 components: - rot: 1.5707963267948966 rad pos: -53.5,-75.5 @@ -136947,7 +122133,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17754 + - uid: 17755 components: - rot: 1.5707963267948966 rad pos: -18.5,-41.5 @@ -136955,7 +122141,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17755 + - uid: 17756 components: - rot: 1.5707963267948966 rad pos: -17.5,-41.5 @@ -136963,7 +122149,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17756 + - uid: 17757 components: - rot: 1.5707963267948966 rad pos: -16.5,-41.5 @@ -136971,21 +122157,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17757 + - uid: 17758 components: - pos: -15.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17758 + - uid: 17759 components: - pos: -19.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17759 + - uid: 17760 components: - rot: 3.141592653589793 rad pos: 1.5,12.5 @@ -136993,7 +122179,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17760 + - uid: 17761 components: - rot: 3.141592653589793 rad pos: 1.5,13.5 @@ -137001,7 +122187,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17761 + - uid: 17762 components: - rot: 3.141592653589793 rad pos: 1.5,14.5 @@ -137009,7 +122195,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17762 + - uid: 17763 components: - rot: 3.141592653589793 rad pos: 1.5,15.5 @@ -137019,7 +122205,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17763 + - uid: 17764 components: - rot: 3.141592653589793 rad pos: 1.5,16.5 @@ -137027,7 +122213,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17764 + - uid: 17765 components: - rot: 3.141592653589793 rad pos: 1.5,17.5 @@ -137035,7 +122221,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17765 + - uid: 17766 components: - rot: 3.141592653589793 rad pos: 1.5,18.5 @@ -137043,7 +122229,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17766 + - uid: 17767 components: - rot: 3.141592653589793 rad pos: 1.5,19.5 @@ -137051,7 +122237,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17767 + - uid: 17768 components: - rot: 3.141592653589793 rad pos: 1.5,20.5 @@ -137059,7 +122245,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17768 + - uid: 17769 components: - rot: 3.141592653589793 rad pos: 1.5,21.5 @@ -137067,7 +122253,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17769 + - uid: 17770 components: - rot: 3.141592653589793 rad pos: 1.5,22.5 @@ -137077,7 +122263,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17770 + - uid: 17771 components: - rot: 3.141592653589793 rad pos: 1.5,23.5 @@ -137085,7 +122271,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17771 + - uid: 17772 components: - rot: 3.141592653589793 rad pos: 1.5,24.5 @@ -137095,7 +122281,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17772 + - uid: 17773 components: - rot: 3.141592653589793 rad pos: 1.5,25.5 @@ -137105,7 +122291,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17773 + - uid: 17774 components: - rot: -1.5707963267948966 rad pos: 28.5,1.5 @@ -137113,14 +122299,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17774 + - uid: 17775 components: - pos: -20.5,-59.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17775 + - uid: 17776 components: - rot: -1.5707963267948966 rad pos: -69.5,-23.5 @@ -137128,7 +122314,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17776 + - uid: 17777 components: - rot: -1.5707963267948966 rad pos: -70.5,-23.5 @@ -137136,7 +122322,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17777 + - uid: 17778 components: - rot: -1.5707963267948966 rad pos: -71.5,-23.5 @@ -137144,7 +122330,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17778 + - uid: 17779 components: - rot: -1.5707963267948966 rad pos: -65.5,-25.5 @@ -137154,7 +122340,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17779 + - uid: 17780 components: - rot: -1.5707963267948966 rad pos: -66.5,-25.5 @@ -137164,7 +122350,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17780 + - uid: 17781 components: - rot: -1.5707963267948966 rad pos: -67.5,-25.5 @@ -137174,7 +122360,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17781 + - uid: 17782 components: - rot: -1.5707963267948966 rad pos: -68.5,-25.5 @@ -137182,7 +122368,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17782 + - uid: 17783 components: - rot: -1.5707963267948966 rad pos: -69.5,-25.5 @@ -137192,7 +122378,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17783 + - uid: 17784 components: - rot: -1.5707963267948966 rad pos: -70.5,-25.5 @@ -137200,7 +122386,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17784 + - uid: 17785 components: - rot: 1.5707963267948966 rad pos: 18.5,-30.5 @@ -137208,7 +122394,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17785 + - uid: 17786 components: - rot: 3.141592653589793 rad pos: -23.5,-61.5 @@ -137216,7 +122402,7 @@ entities: type: Transform - color: '#97C3FCCC' type: AtmosPipeColor - - uid: 17786 + - uid: 17787 components: - rot: 3.141592653589793 rad pos: 30.5,-83.5 @@ -137224,7 +122410,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17787 + - uid: 17788 components: - rot: 3.141592653589793 rad pos: 25.5,-58.5 @@ -137232,7 +122418,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17788 + - uid: 17789 components: - rot: 3.141592653589793 rad pos: 25.5,-57.5 @@ -137240,7 +122426,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17789 + - uid: 17790 components: - rot: 3.141592653589793 rad pos: 47.5,-80.5 @@ -137248,7 +122434,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17790 + - uid: 17791 components: - rot: 3.141592653589793 rad pos: 42.5,5.5 @@ -137256,7 +122442,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17791 + - uid: 17792 components: - rot: 3.141592653589793 rad pos: 42.5,2.5 @@ -137264,7 +122450,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17792 + - uid: 17793 components: - rot: 3.141592653589793 rad pos: 42.5,4.5 @@ -137272,7 +122458,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17793 + - uid: 17794 components: - rot: 3.141592653589793 rad pos: 42.5,3.5 @@ -137280,7 +122466,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17794 + - uid: 17795 components: - rot: -1.5707963267948966 rad pos: 25.5,-42.5 @@ -137288,7 +122474,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17795 + - uid: 17796 components: - rot: 3.141592653589793 rad pos: 45.5,21.5 @@ -137296,7 +122482,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17796 + - uid: 17797 components: - rot: 3.141592653589793 rad pos: 45.5,22.5 @@ -137306,7 +122492,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17797 + - uid: 17798 components: - rot: 3.141592653589793 rad pos: 45.5,23.5 @@ -137316,7 +122502,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17798 + - uid: 17799 components: - rot: 3.141592653589793 rad pos: 45.5,24.5 @@ -137326,7 +122512,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17799 + - uid: 17800 components: - rot: 3.141592653589793 rad pos: 45.5,25.5 @@ -137336,7 +122522,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17800 + - uid: 17801 components: - rot: 3.141592653589793 rad pos: 45.5,26.5 @@ -137344,7 +122530,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17801 + - uid: 17802 components: - rot: 3.141592653589793 rad pos: 44.5,21.5 @@ -137352,7 +122538,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17802 + - uid: 17803 components: - rot: 3.141592653589793 rad pos: 44.5,22.5 @@ -137362,7 +122548,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17803 + - uid: 17804 components: - rot: 3.141592653589793 rad pos: 44.5,23.5 @@ -137372,7 +122558,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17804 + - uid: 17805 components: - rot: 3.141592653589793 rad pos: 44.5,24.5 @@ -137380,7 +122566,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17805 + - uid: 17806 components: - rot: 3.141592653589793 rad pos: 44.5,25.5 @@ -137388,7 +122574,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17806 + - uid: 17807 components: - rot: 3.141592653589793 rad pos: 44.5,20.5 @@ -137396,7 +122582,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17807 + - uid: 17808 components: - rot: 1.5707963267948966 rad pos: 46.5,27.5 @@ -137406,7 +122592,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17808 + - uid: 17809 components: - rot: 1.5707963267948966 rad pos: 47.5,27.5 @@ -137416,7 +122602,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17809 + - uid: 17810 components: - rot: 1.5707963267948966 rad pos: 45.5,26.5 @@ -137424,7 +122610,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17810 + - uid: 17811 components: - rot: 1.5707963267948966 rad pos: 46.5,26.5 @@ -137432,7 +122618,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17811 + - uid: 17812 components: - rot: 1.5707963267948966 rad pos: 47.5,26.5 @@ -137440,7 +122626,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17812 + - uid: 17813 components: - rot: 1.5707963267948966 rad pos: 48.5,26.5 @@ -137448,7 +122634,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17813 + - uid: 17814 components: - rot: 1.5707963267948966 rad pos: 49.5,26.5 @@ -137456,7 +122642,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17814 + - uid: 17815 components: - rot: 1.5707963267948966 rad pos: 50.5,26.5 @@ -137464,7 +122650,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17815 + - uid: 17816 components: - rot: 1.5707963267948966 rad pos: 51.5,26.5 @@ -137472,7 +122658,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17816 + - uid: 17817 components: - rot: 1.5707963267948966 rad pos: 52.5,26.5 @@ -137480,7 +122666,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17817 + - uid: 17818 components: - rot: 1.5707963267948966 rad pos: 53.5,26.5 @@ -137488,7 +122674,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17818 + - uid: 17819 components: - rot: 1.5707963267948966 rad pos: 48.5,27.5 @@ -137496,7 +122682,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17819 + - uid: 17820 components: - rot: 1.5707963267948966 rad pos: 49.5,27.5 @@ -137506,7 +122692,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17820 + - uid: 17821 components: - rot: 1.5707963267948966 rad pos: 50.5,27.5 @@ -137516,7 +122702,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17821 + - uid: 17822 components: - rot: 1.5707963267948966 rad pos: 51.5,27.5 @@ -137526,7 +122712,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17822 + - uid: 17823 components: - rot: 3.141592653589793 rad pos: 52.5,28.5 @@ -137534,7 +122720,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17823 + - uid: 17824 components: - rot: 3.141592653589793 rad pos: 52.5,29.5 @@ -137542,7 +122728,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17824 + - uid: 17825 components: - rot: 3.141592653589793 rad pos: 52.5,30.5 @@ -137552,7 +122738,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17825 + - uid: 17826 components: - rot: 3.141592653589793 rad pos: 52.5,31.5 @@ -137562,7 +122748,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17826 + - uid: 17827 components: - rot: 3.141592653589793 rad pos: 52.5,32.5 @@ -137572,7 +122758,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17827 + - uid: 17828 components: - rot: 3.141592653589793 rad pos: 52.5,33.5 @@ -137582,7 +122768,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17828 + - uid: 17829 components: - rot: 3.141592653589793 rad pos: 52.5,34.5 @@ -137590,7 +122776,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17829 + - uid: 17830 components: - rot: 3.141592653589793 rad pos: 52.5,35.5 @@ -137598,7 +122784,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17830 + - uid: 17831 components: - rot: 3.141592653589793 rad pos: 52.5,36.5 @@ -137606,7 +122792,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17831 + - uid: 17832 components: - rot: 3.141592653589793 rad pos: 52.5,37.5 @@ -137614,7 +122800,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17832 + - uid: 17833 components: - rot: 3.141592653589793 rad pos: 52.5,38.5 @@ -137624,7 +122810,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17833 + - uid: 17834 components: - rot: 3.141592653589793 rad pos: 52.5,39.5 @@ -137632,7 +122818,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17834 + - uid: 17835 components: - rot: 3.141592653589793 rad pos: 52.5,40.5 @@ -137640,7 +122826,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17835 + - uid: 17836 components: - rot: 3.141592653589793 rad pos: 52.5,41.5 @@ -137650,7 +122836,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17836 + - uid: 17837 components: - rot: 3.141592653589793 rad pos: 52.5,42.5 @@ -137658,7 +122844,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17837 + - uid: 17838 components: - rot: 3.141592653589793 rad pos: 54.5,27.5 @@ -137666,7 +122852,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17838 + - uid: 17839 components: - rot: 3.141592653589793 rad pos: 54.5,28.5 @@ -137674,7 +122860,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17839 + - uid: 17840 components: - rot: 3.141592653589793 rad pos: 54.5,29.5 @@ -137682,7 +122868,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17840 + - uid: 17841 components: - rot: 3.141592653589793 rad pos: 54.5,30.5 @@ -137692,7 +122878,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17841 + - uid: 17842 components: - rot: 3.141592653589793 rad pos: 54.5,31.5 @@ -137700,7 +122886,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17842 + - uid: 17843 components: - rot: 3.141592653589793 rad pos: 54.5,32.5 @@ -137708,7 +122894,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17843 + - uid: 17844 components: - rot: 3.141592653589793 rad pos: 54.5,33.5 @@ -137716,7 +122902,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17844 + - uid: 17845 components: - rot: 3.141592653589793 rad pos: 54.5,34.5 @@ -137726,7 +122912,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17845 + - uid: 17846 components: - rot: 3.141592653589793 rad pos: 54.5,35.5 @@ -137734,7 +122920,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17846 + - uid: 17847 components: - rot: 3.141592653589793 rad pos: 54.5,36.5 @@ -137742,7 +122928,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17847 + - uid: 17848 components: - rot: 3.141592653589793 rad pos: 54.5,37.5 @@ -137750,7 +122936,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17848 + - uid: 17849 components: - rot: 3.141592653589793 rad pos: 54.5,38.5 @@ -137758,7 +122944,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17849 + - uid: 17850 components: - rot: 3.141592653589793 rad pos: 54.5,39.5 @@ -137766,7 +122952,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17850 + - uid: 17851 components: - rot: 3.141592653589793 rad pos: 54.5,40.5 @@ -137774,7 +122960,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17851 + - uid: 17852 components: - rot: 3.141592653589793 rad pos: 54.5,41.5 @@ -137782,7 +122968,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17852 + - uid: 17853 components: - rot: 3.141592653589793 rad pos: 54.5,42.5 @@ -137790,7 +122976,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17853 + - uid: 17854 components: - rot: 3.141592653589793 rad pos: 54.5,44.5 @@ -137800,7 +122986,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17854 + - uid: 17855 components: - rot: 3.141592653589793 rad pos: 54.5,45.5 @@ -137808,7 +122994,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17855 + - uid: 17856 components: - rot: 3.141592653589793 rad pos: 54.5,46.5 @@ -137818,7 +123004,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17856 + - uid: 17857 components: - rot: 3.141592653589793 rad pos: 54.5,47.5 @@ -137826,7 +123012,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17857 + - uid: 17858 components: - rot: 3.141592653589793 rad pos: 54.5,48.5 @@ -137836,7 +123022,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17858 + - uid: 17859 components: - rot: 3.141592653589793 rad pos: 54.5,49.5 @@ -137844,7 +123030,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17859 + - uid: 17860 components: - rot: 3.141592653589793 rad pos: 54.5,51.5 @@ -137854,7 +123040,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17860 + - uid: 17861 components: - rot: 3.141592653589793 rad pos: 54.5,52.5 @@ -137864,7 +123050,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17861 + - uid: 17862 components: - rot: 3.141592653589793 rad pos: 54.5,53.5 @@ -137872,7 +123058,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17862 + - uid: 17863 components: - rot: 3.141592653589793 rad pos: 54.5,54.5 @@ -137882,7 +123068,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17863 + - uid: 17864 components: - rot: 3.141592653589793 rad pos: 54.5,55.5 @@ -137890,7 +123076,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17864 + - uid: 17865 components: - rot: 3.141592653589793 rad pos: 52.5,44.5 @@ -137900,7 +123086,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17865 + - uid: 17866 components: - rot: 3.141592653589793 rad pos: 52.5,45.5 @@ -137908,7 +123094,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17866 + - uid: 17867 components: - rot: 3.141592653589793 rad pos: 52.5,46.5 @@ -137918,7 +123104,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17867 + - uid: 17868 components: - rot: 3.141592653589793 rad pos: 52.5,47.5 @@ -137926,7 +123112,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17868 + - uid: 17869 components: - rot: 3.141592653589793 rad pos: 52.5,48.5 @@ -137936,7 +123122,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17869 + - uid: 17870 components: - rot: 3.141592653589793 rad pos: 52.5,50.5 @@ -137944,7 +123130,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17870 + - uid: 17871 components: - rot: 3.141592653589793 rad pos: 52.5,51.5 @@ -137952,7 +123138,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17871 + - uid: 17872 components: - rot: 3.141592653589793 rad pos: 52.5,52.5 @@ -137960,7 +123146,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17872 + - uid: 17873 components: - rot: 3.141592653589793 rad pos: 52.5,53.5 @@ -137968,7 +123154,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17873 + - uid: 17874 components: - rot: 3.141592653589793 rad pos: 52.5,54.5 @@ -137978,7 +123164,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17874 + - uid: 17875 components: - rot: 3.141592653589793 rad pos: 52.5,55.5 @@ -137986,49 +123172,49 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17875 + - uid: 17876 components: - pos: -16.5,31.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17876 + - uid: 17877 components: - pos: -15.5,30.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17877 + - uid: 17878 components: - pos: -15.5,31.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17878 + - uid: 17879 components: - pos: -15.5,32.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17879 + - uid: 17880 components: - pos: -16.5,32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17880 + - uid: 17881 components: - pos: -16.5,33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17881 + - uid: 17882 components: - rot: 1.5707963267948966 rad pos: -15.5,34.5 @@ -138036,7 +123222,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17882 + - uid: 17883 components: - rot: 1.5707963267948966 rad pos: -14.5,34.5 @@ -138044,7 +123230,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17883 + - uid: 17884 components: - rot: 1.5707963267948966 rad pos: -13.5,34.5 @@ -138052,7 +123238,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17884 + - uid: 17885 components: - rot: 1.5707963267948966 rad pos: -14.5,33.5 @@ -138060,7 +123246,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17885 + - uid: 17886 components: - rot: 1.5707963267948966 rad pos: -13.5,33.5 @@ -138070,133 +123256,133 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17886 + - uid: 17887 components: - pos: -16.5,35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17887 + - uid: 17888 components: - pos: -16.5,36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17888 + - uid: 17889 components: - pos: -16.5,37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17889 + - uid: 17890 components: - pos: -16.5,38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17890 + - uid: 17891 components: - pos: -16.5,40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17891 + - uid: 17892 components: - pos: -16.5,41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17892 + - uid: 17893 components: - pos: -16.5,42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17893 + - uid: 17894 components: - pos: -15.5,34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17894 + - uid: 17895 components: - pos: -15.5,35.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17895 + - uid: 17896 components: - pos: -15.5,36.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17896 + - uid: 17897 components: - pos: -15.5,37.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17897 + - uid: 17898 components: - pos: -15.5,39.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17898 + - uid: 17899 components: - pos: -15.5,40.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17899 + - uid: 17900 components: - pos: -15.5,41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17900 + - uid: 17901 components: - pos: -15.5,42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17901 + - uid: 17902 components: - pos: -15.5,43.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17902 + - uid: 17903 components: - pos: -16.5,44.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17903 + - uid: 17904 components: - pos: -16.5,45.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17904 + - uid: 17905 components: - rot: 1.5707963267948966 rad pos: -17.5,43.5 @@ -138204,7 +123390,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17905 + - uid: 17906 components: - rot: 1.5707963267948966 rad pos: -18.5,43.5 @@ -138212,7 +123398,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17906 + - uid: 17907 components: - rot: 1.5707963267948966 rad pos: -19.5,43.5 @@ -138220,7 +123406,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17907 + - uid: 17908 components: - rot: 1.5707963267948966 rad pos: -16.5,44.5 @@ -138228,7 +123414,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17908 + - uid: 17909 components: - rot: 1.5707963267948966 rad pos: -17.5,44.5 @@ -138236,7 +123422,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17909 + - uid: 17910 components: - rot: 1.5707963267948966 rad pos: -18.5,44.5 @@ -138244,7 +123430,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17910 + - uid: 17911 components: - rot: 1.5707963267948966 rad pos: -19.5,44.5 @@ -138254,7 +123440,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17911 + - uid: 17912 components: - rot: -1.5707963267948966 rad pos: -16.5,45.5 @@ -138262,7 +123448,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17912 + - uid: 17913 components: - rot: 3.141592653589793 rad pos: -17.5,46.5 @@ -138270,7 +123456,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17913 + - uid: 17914 components: - rot: 3.141592653589793 rad pos: -17.5,47.5 @@ -138278,7 +123464,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17914 + - uid: 17915 components: - rot: 3.141592653589793 rad pos: -17.5,48.5 @@ -138286,7 +123472,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17915 + - uid: 17916 components: - rot: 3.141592653589793 rad pos: -17.5,49.5 @@ -138294,7 +123480,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17916 + - uid: 17917 components: - rot: 3.141592653589793 rad pos: -16.5,47.5 @@ -138302,7 +123488,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17917 + - uid: 17918 components: - rot: 3.141592653589793 rad pos: -16.5,48.5 @@ -138310,7 +123496,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17918 + - uid: 17919 components: - rot: 3.141592653589793 rad pos: -16.5,49.5 @@ -138318,7 +123504,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17919 + - uid: 17920 components: - rot: 1.5707963267948966 rad pos: -15.5,43.5 @@ -138326,7 +123512,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17920 + - uid: 17921 components: - rot: -1.5707963267948966 rad pos: -15.5,46.5 @@ -138334,7 +123520,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17921 + - uid: 17922 components: - rot: -1.5707963267948966 rad pos: -14.5,46.5 @@ -138342,7 +123528,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17922 + - uid: 17923 components: - rot: -1.5707963267948966 rad pos: -13.5,46.5 @@ -138350,7 +123536,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17923 + - uid: 17924 components: - rot: -1.5707963267948966 rad pos: -12.5,46.5 @@ -138358,7 +123544,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17924 + - uid: 17925 components: - rot: -1.5707963267948966 rad pos: -13.5,44.5 @@ -138366,7 +123552,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17925 + - uid: 17926 components: - rot: -1.5707963267948966 rad pos: -12.5,44.5 @@ -138374,26 +123560,26 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17926 + - uid: 17927 components: - pos: 1.5,47.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17927 + - uid: 17928 components: - rot: 3.141592653589793 rad pos: 70.5,35.5 parent: 2 type: Transform - - uid: 17928 + - uid: 17929 components: - rot: 3.141592653589793 rad pos: 70.5,34.5 parent: 2 type: Transform - - uid: 17929 + - uid: 17930 components: - rot: 3.141592653589793 rad pos: 70.5,33.5 @@ -138401,7 +123587,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17930 + - uid: 17931 components: - rot: -1.5707963267948966 rad pos: -14.5,38.5 @@ -138409,7 +123595,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17931 + - uid: 17932 components: - rot: -1.5707963267948966 rad pos: -13.5,38.5 @@ -138417,7 +123603,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17932 + - uid: 17933 components: - rot: -1.5707963267948966 rad pos: -12.5,38.5 @@ -138425,7 +123611,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17933 + - uid: 17934 components: - rot: -1.5707963267948966 rad pos: 53.5,50.5 @@ -138433,7 +123619,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17934 + - uid: 17935 components: - rot: -1.5707963267948966 rad pos: 52.5,50.5 @@ -138441,7 +123627,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17935 + - uid: 17936 components: - rot: -1.5707963267948966 rad pos: 51.5,50.5 @@ -138449,7 +123635,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17936 + - uid: 17937 components: - rot: -1.5707963267948966 rad pos: 50.5,50.5 @@ -138459,7 +123645,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17937 + - uid: 17938 components: - rot: -1.5707963267948966 rad pos: 49.5,50.5 @@ -138469,7 +123655,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17938 + - uid: 17939 components: - rot: -1.5707963267948966 rad pos: 48.5,50.5 @@ -138477,7 +123663,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17939 + - uid: 17940 components: - rot: -1.5707963267948966 rad pos: 51.5,49.5 @@ -138485,7 +123671,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17940 + - uid: 17941 components: - rot: -1.5707963267948966 rad pos: 50.5,49.5 @@ -138493,7 +123679,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17941 + - uid: 17942 components: - rot: -1.5707963267948966 rad pos: 49.5,49.5 @@ -138503,7 +123689,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17942 + - uid: 17943 components: - rot: -1.5707963267948966 rad pos: 48.5,49.5 @@ -138511,7 +123697,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17943 + - uid: 17944 components: - rot: -1.5707963267948966 rad pos: 47.5,49.5 @@ -138519,7 +123705,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17944 + - uid: 17945 components: - rot: -1.5707963267948966 rad pos: 46.5,49.5 @@ -138527,21 +123713,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17945 + - uid: 17946 components: - pos: 47.5,49.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17946 + - uid: 17947 components: - pos: 47.5,48.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17947 + - uid: 17948 components: - pos: 47.5,47.5 parent: 2 @@ -138550,21 +123736,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17948 + - uid: 17949 components: - pos: 45.5,48.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17949 + - uid: 17950 components: - pos: 45.5,47.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17950 + - uid: 17951 components: - pos: 45.5,46.5 parent: 2 @@ -138573,7 +123759,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17951 + - uid: 17952 components: - rot: -1.5707963267948966 rad pos: 46.5,46.5 @@ -138581,7 +123767,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17952 + - uid: 17953 components: - rot: -1.5707963267948966 rad pos: 45.5,46.5 @@ -138591,7 +123777,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17953 + - uid: 17954 components: - rot: -1.5707963267948966 rad pos: 43.5,46.5 @@ -138599,7 +123785,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17954 + - uid: 17955 components: - rot: -1.5707963267948966 rad pos: 44.5,46.5 @@ -138607,7 +123793,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17955 + - uid: 17956 components: - rot: -1.5707963267948966 rad pos: 42.5,46.5 @@ -138617,7 +123803,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17956 + - uid: 17957 components: - rot: -1.5707963267948966 rad pos: 41.5,46.5 @@ -138627,7 +123813,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17957 + - uid: 17958 components: - rot: -1.5707963267948966 rad pos: 44.5,45.5 @@ -138635,7 +123821,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17958 + - uid: 17959 components: - rot: -1.5707963267948966 rad pos: 43.5,45.5 @@ -138643,7 +123829,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17959 + - uid: 17960 components: - rot: -1.5707963267948966 rad pos: 42.5,45.5 @@ -138651,7 +123837,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17960 + - uid: 17961 components: - rot: -1.5707963267948966 rad pos: 41.5,45.5 @@ -138661,7 +123847,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17961 + - uid: 17962 components: - rot: 3.141592653589793 rad pos: 2.5,67.5 @@ -138669,7 +123855,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17962 + - uid: 17963 components: - rot: 3.141592653589793 rad pos: 2.5,66.5 @@ -138677,7 +123863,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17963 + - uid: 17964 components: - rot: 3.141592653589793 rad pos: 2.5,65.5 @@ -138687,7 +123873,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17964 + - uid: 17965 components: - rot: 3.141592653589793 rad pos: 2.5,64.5 @@ -138697,7 +123883,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17965 + - uid: 17966 components: - rot: 3.141592653589793 rad pos: -5.5,67.5 @@ -138705,7 +123891,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17966 + - uid: 17967 components: - rot: 3.141592653589793 rad pos: -5.5,66.5 @@ -138713,7 +123899,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17967 + - uid: 17968 components: - rot: 3.141592653589793 rad pos: -5.5,65.5 @@ -138723,7 +123909,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17968 + - uid: 17969 components: - rot: 3.141592653589793 rad pos: -5.5,64.5 @@ -138733,7 +123919,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17969 + - uid: 17970 components: - rot: 3.141592653589793 rad pos: -6.5,68.5 @@ -138741,7 +123927,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17970 + - uid: 17971 components: - rot: 3.141592653589793 rad pos: -6.5,67.5 @@ -138749,7 +123935,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17971 + - uid: 17972 components: - rot: 3.141592653589793 rad pos: -6.5,66.5 @@ -138757,7 +123943,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17972 + - uid: 17973 components: - rot: 3.141592653589793 rad pos: -6.5,65.5 @@ -138767,7 +123953,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17973 + - uid: 17974 components: - rot: 3.141592653589793 rad pos: 3.5,68.5 @@ -138775,7 +123961,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17974 + - uid: 17975 components: - rot: 3.141592653589793 rad pos: 3.5,67.5 @@ -138783,7 +123969,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17975 + - uid: 17976 components: - rot: 3.141592653589793 rad pos: 3.5,66.5 @@ -138791,7 +123977,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17976 + - uid: 17977 components: - rot: 3.141592653589793 rad pos: 3.5,65.5 @@ -138801,7 +123987,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17977 + - uid: 17978 components: - rot: 1.5707963267948966 rad pos: 0.5,69.5 @@ -138809,7 +123995,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17978 + - uid: 17979 components: - rot: 1.5707963267948966 rad pos: -3.5,69.5 @@ -138817,21 +124003,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17979 + - uid: 17980 components: - pos: -2.5,66.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17980 + - uid: 17981 components: - pos: -2.5,65.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17981 + - uid: 17982 components: - pos: -2.5,64.5 parent: 2 @@ -138840,21 +124026,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17982 + - uid: 17983 components: - pos: -2.5,63.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17983 + - uid: 17984 components: - pos: -2.5,61.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17984 + - uid: 17985 components: - pos: -2.5,60.5 parent: 2 @@ -138863,49 +124049,49 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17985 + - uid: 17986 components: - pos: -2.5,59.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17986 + - uid: 17987 components: - pos: -1.5,65.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17987 + - uid: 17988 components: - pos: -1.5,64.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17988 + - uid: 17989 components: - pos: -1.5,63.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17989 + - uid: 17990 components: - pos: -1.5,62.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17990 + - uid: 17991 components: - pos: -1.5,60.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17991 + - uid: 17992 components: - rot: -1.5707963267948966 rad pos: -11.5,46.5 @@ -138913,7 +124099,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17992 + - uid: 17993 components: - rot: -1.5707963267948966 rad pos: -10.5,46.5 @@ -138921,7 +124107,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17993 + - uid: 17994 components: - rot: -1.5707963267948966 rad pos: -9.5,46.5 @@ -138929,7 +124115,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17994 + - uid: 17995 components: - rot: -1.5707963267948966 rad pos: -8.5,46.5 @@ -138937,7 +124123,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17995 + - uid: 17996 components: - rot: -1.5707963267948966 rad pos: -7.5,46.5 @@ -138945,7 +124131,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17996 + - uid: 17997 components: - rot: -1.5707963267948966 rad pos: -6.5,46.5 @@ -138953,7 +124139,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17997 + - uid: 17998 components: - rot: -1.5707963267948966 rad pos: -5.5,46.5 @@ -138961,7 +124147,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17998 + - uid: 17999 components: - rot: -1.5707963267948966 rad pos: -4.5,46.5 @@ -138969,7 +124155,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17999 + - uid: 18000 components: - rot: -1.5707963267948966 rad pos: -3.5,46.5 @@ -138977,7 +124163,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18000 + - uid: 18001 components: - rot: -1.5707963267948966 rad pos: -2.5,46.5 @@ -138985,7 +124171,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18001 + - uid: 18002 components: - rot: -1.5707963267948966 rad pos: -1.5,46.5 @@ -138993,7 +124179,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18002 + - uid: 18003 components: - rot: -1.5707963267948966 rad pos: -11.5,44.5 @@ -139001,7 +124187,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18003 + - uid: 18004 components: - rot: -1.5707963267948966 rad pos: -10.5,44.5 @@ -139009,7 +124195,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18004 + - uid: 18005 components: - rot: -1.5707963267948966 rad pos: -9.5,44.5 @@ -139017,7 +124203,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18005 + - uid: 18006 components: - rot: -1.5707963267948966 rad pos: -8.5,44.5 @@ -139025,7 +124211,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18006 + - uid: 18007 components: - rot: -1.5707963267948966 rad pos: -7.5,44.5 @@ -139033,7 +124219,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18007 + - uid: 18008 components: - rot: -1.5707963267948966 rad pos: -6.5,44.5 @@ -139041,7 +124227,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18008 + - uid: 18009 components: - rot: -1.5707963267948966 rad pos: -5.5,44.5 @@ -139049,7 +124235,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18009 + - uid: 18010 components: - rot: -1.5707963267948966 rad pos: -4.5,44.5 @@ -139057,7 +124243,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18010 + - uid: 18011 components: - rot: -1.5707963267948966 rad pos: -3.5,44.5 @@ -139065,7 +124251,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18011 + - uid: 18012 components: - rot: -1.5707963267948966 rad pos: -2.5,44.5 @@ -139073,7 +124259,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18012 + - uid: 18013 components: - rot: -1.5707963267948966 rad pos: -1.5,44.5 @@ -139081,7 +124267,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18013 + - uid: 18014 components: - rot: -1.5707963267948966 rad pos: -0.5,44.5 @@ -139089,7 +124275,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18014 + - uid: 18015 components: - rot: -1.5707963267948966 rad pos: 0.5,44.5 @@ -139097,7 +124283,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18015 + - uid: 18016 components: - rot: 3.141592653589793 rad pos: 1.5,45.5 @@ -139105,7 +124291,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18016 + - uid: 18017 components: - rot: 3.141592653589793 rad pos: -0.5,47.5 @@ -139113,98 +124299,98 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18017 + - uid: 18018 components: - pos: 1.5,48.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18018 + - uid: 18019 components: - pos: 1.5,49.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18019 + - uid: 18020 components: - pos: 1.5,50.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18020 + - uid: 18021 components: - pos: 1.5,51.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18021 + - uid: 18022 components: - pos: 1.5,52.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18022 + - uid: 18023 components: - pos: 1.5,53.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18023 + - uid: 18024 components: - pos: 1.5,54.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18024 + - uid: 18025 components: - pos: -0.5,49.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18025 + - uid: 18026 components: - pos: -0.5,50.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18026 + - uid: 18027 components: - pos: -0.5,51.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18027 + - uid: 18028 components: - pos: -0.5,52.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18028 + - uid: 18029 components: - pos: -0.5,53.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18029 + - uid: 18030 components: - pos: -0.5,54.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18030 + - uid: 18031 components: - rot: -1.5707963267948966 rad pos: -17.5,51.5 @@ -139212,7 +124398,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18031 + - uid: 18032 components: - rot: -1.5707963267948966 rad pos: -18.5,51.5 @@ -139220,7 +124406,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18032 + - uid: 18033 components: - rot: -1.5707963267948966 rad pos: -19.5,51.5 @@ -139228,7 +124414,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18033 + - uid: 18034 components: - rot: -1.5707963267948966 rad pos: -18.5,50.5 @@ -139236,7 +124422,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18034 + - uid: 18035 components: - rot: -1.5707963267948966 rad pos: -19.5,50.5 @@ -139244,7 +124430,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18035 + - uid: 18036 components: - rot: -1.5707963267948966 rad pos: -20.5,50.5 @@ -139252,7 +124438,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18036 + - uid: 18037 components: - rot: 3.141592653589793 rad pos: -20.5,50.5 @@ -139260,7 +124446,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18037 + - uid: 18038 components: - rot: 3.141592653589793 rad pos: -20.5,49.5 @@ -139270,7 +124456,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18038 + - uid: 18039 components: - rot: 3.141592653589793 rad pos: -21.5,49.5 @@ -139280,7 +124466,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18039 + - uid: 18040 components: - rot: 3.141592653589793 rad pos: -16.5,50.5 @@ -139288,7 +124474,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18040 + - uid: 18041 components: - rot: 1.5707963267948966 rad pos: -16.5,50.5 @@ -139296,7 +124482,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18041 + - uid: 18042 components: - rot: 1.5707963267948966 rad pos: -15.5,50.5 @@ -139304,7 +124490,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18042 + - uid: 18043 components: - rot: 1.5707963267948966 rad pos: -14.5,50.5 @@ -139312,7 +124498,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18043 + - uid: 18044 components: - rot: 1.5707963267948966 rad pos: -13.5,50.5 @@ -139320,7 +124506,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18044 + - uid: 18045 components: - rot: 1.5707963267948966 rad pos: -15.5,51.5 @@ -139328,7 +124514,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18045 + - uid: 18046 components: - rot: 1.5707963267948966 rad pos: -14.5,51.5 @@ -139336,140 +124522,140 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18046 + - uid: 18047 components: - pos: -21.5,52.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18047 + - uid: 18048 components: - pos: -21.5,53.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18048 + - uid: 18049 components: - pos: -21.5,54.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18049 + - uid: 18050 components: - pos: -21.5,55.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18050 + - uid: 18051 components: - pos: -21.5,56.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18051 + - uid: 18052 components: - pos: -21.5,57.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18052 + - uid: 18053 components: - pos: -22.5,51.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18053 + - uid: 18054 components: - pos: -22.5,52.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18054 + - uid: 18055 components: - pos: -22.5,53.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18055 + - uid: 18056 components: - pos: -22.5,54.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18056 + - uid: 18057 components: - pos: -22.5,55.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18057 + - uid: 18058 components: - pos: -22.5,56.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18058 + - uid: 18059 components: - pos: -22.5,57.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18059 + - uid: 18060 components: - pos: -22.5,58.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18060 + - uid: 18061 components: - pos: -22.5,59.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18061 + - uid: 18062 components: - pos: -21.5,59.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18062 + - uid: 18063 components: - pos: -21.5,60.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18063 + - uid: 18064 components: - pos: -21.5,61.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18064 + - uid: 18065 components: - pos: -22.5,62.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18065 + - uid: 18066 components: - rot: -1.5707963267948966 rad pos: -20.5,62.5 @@ -139479,7 +124665,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18066 + - uid: 18067 components: - rot: -1.5707963267948966 rad pos: -19.5,62.5 @@ -139489,7 +124675,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18067 + - uid: 18068 components: - rot: -1.5707963267948966 rad pos: -18.5,62.5 @@ -139497,7 +124683,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18068 + - uid: 18069 components: - rot: -1.5707963267948966 rad pos: -21.5,61.5 @@ -139505,7 +124691,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18069 + - uid: 18070 components: - rot: -1.5707963267948966 rad pos: -20.5,61.5 @@ -139515,7 +124701,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18070 + - uid: 18071 components: - rot: -1.5707963267948966 rad pos: -19.5,61.5 @@ -139523,7 +124709,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18071 + - uid: 18072 components: - rot: -1.5707963267948966 rad pos: -18.5,61.5 @@ -139533,140 +124719,140 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18072 + - uid: 18073 components: - pos: -22.5,63.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18073 + - uid: 18074 components: - pos: -22.5,64.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18074 + - uid: 18075 components: - pos: -22.5,65.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18075 + - uid: 18076 components: - pos: -22.5,67.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18076 + - uid: 18077 components: - pos: -22.5,68.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18077 + - uid: 18078 components: - pos: -22.5,69.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18078 + - uid: 18079 components: - pos: -22.5,70.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18079 + - uid: 18080 components: - pos: -22.5,71.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18080 + - uid: 18081 components: - pos: -22.5,72.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18081 + - uid: 18082 components: - pos: -21.5,63.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18082 + - uid: 18083 components: - pos: -21.5,64.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18083 + - uid: 18084 components: - pos: -21.5,65.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18084 + - uid: 18085 components: - pos: -21.5,66.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18085 + - uid: 18086 components: - pos: -21.5,67.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18086 + - uid: 18087 components: - pos: -21.5,68.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18087 + - uid: 18088 components: - pos: -21.5,69.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18088 + - uid: 18089 components: - pos: -21.5,70.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18089 + - uid: 18090 components: - pos: -21.5,71.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18090 + - uid: 18091 components: - pos: -21.5,72.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18091 + - uid: 18092 components: - rot: -1.5707963267948966 rad pos: -16.5,62.5 @@ -139674,7 +124860,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18092 + - uid: 18093 components: - rot: -1.5707963267948966 rad pos: -15.5,62.5 @@ -139682,7 +124868,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18093 + - uid: 18094 components: - rot: -1.5707963267948966 rad pos: -14.5,62.5 @@ -139692,7 +124878,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18094 + - uid: 18095 components: - rot: -1.5707963267948966 rad pos: -16.5,61.5 @@ -139700,7 +124886,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18095 + - uid: 18096 components: - rot: -1.5707963267948966 rad pos: -15.5,61.5 @@ -139708,7 +124894,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18096 + - uid: 18097 components: - rot: -1.5707963267948966 rad pos: -14.5,61.5 @@ -139718,7 +124904,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18097 + - uid: 18098 components: - rot: -1.5707963267948966 rad pos: -13.5,61.5 @@ -139726,168 +124912,168 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18098 + - uid: 18099 components: - pos: -13.5,61.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18099 + - uid: 18100 components: - pos: -13.5,60.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18100 + - uid: 18101 components: - pos: -13.5,59.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18101 + - uid: 18102 components: - pos: -12.5,62.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18102 + - uid: 18103 components: - pos: -12.5,63.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18103 + - uid: 18104 components: - pos: -12.5,64.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18104 + - uid: 18105 components: - pos: -12.5,65.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18105 + - uid: 18106 components: - pos: -12.5,66.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18106 + - uid: 18107 components: - pos: -12.5,67.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18107 + - uid: 18108 components: - pos: -12.5,68.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18108 + - uid: 18109 components: - pos: -12.5,69.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18109 + - uid: 18110 components: - pos: -12.5,70.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18110 + - uid: 18111 components: - pos: -12.5,71.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18111 + - uid: 18112 components: - pos: -12.5,72.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18112 + - uid: 18113 components: - pos: -13.5,63.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18113 + - uid: 18114 components: - pos: -13.5,64.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18114 + - uid: 18115 components: - pos: -13.5,65.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18115 + - uid: 18116 components: - pos: -13.5,67.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18116 + - uid: 18117 components: - pos: -13.5,68.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18117 + - uid: 18118 components: - pos: -13.5,69.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18118 + - uid: 18119 components: - pos: -13.5,70.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18119 + - uid: 18120 components: - pos: -13.5,71.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18120 + - uid: 18121 components: - pos: -13.5,72.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18121 + - uid: 18122 components: - rot: 1.5707963267948966 rad pos: -11.5,59.5 @@ -139895,7 +125081,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18122 + - uid: 18123 components: - rot: 1.5707963267948966 rad pos: -10.5,59.5 @@ -139903,7 +125089,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18123 + - uid: 18124 components: - rot: 1.5707963267948966 rad pos: -9.5,59.5 @@ -139911,7 +125097,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18124 + - uid: 18125 components: - rot: 1.5707963267948966 rad pos: -8.5,59.5 @@ -139919,7 +125105,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18125 + - uid: 18126 components: - rot: 1.5707963267948966 rad pos: -7.5,59.5 @@ -139927,7 +125113,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18126 + - uid: 18127 components: - rot: 1.5707963267948966 rad pos: -6.5,59.5 @@ -139935,7 +125121,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18127 + - uid: 18128 components: - rot: 1.5707963267948966 rad pos: -5.5,59.5 @@ -139943,7 +125129,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18128 + - uid: 18129 components: - rot: 1.5707963267948966 rad pos: -4.5,59.5 @@ -139951,7 +125137,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18129 + - uid: 18130 components: - rot: 1.5707963267948966 rad pos: -12.5,58.5 @@ -139959,7 +125145,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18130 + - uid: 18131 components: - rot: 1.5707963267948966 rad pos: -11.5,58.5 @@ -139967,7 +125153,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18131 + - uid: 18132 components: - rot: 1.5707963267948966 rad pos: -10.5,58.5 @@ -139975,7 +125161,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18132 + - uid: 18133 components: - rot: 1.5707963267948966 rad pos: -9.5,58.5 @@ -139983,7 +125169,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18133 + - uid: 18134 components: - rot: 1.5707963267948966 rad pos: -8.5,58.5 @@ -139991,7 +125177,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18134 + - uid: 18135 components: - rot: 1.5707963267948966 rad pos: -7.5,58.5 @@ -139999,7 +125185,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18135 + - uid: 18136 components: - rot: 1.5707963267948966 rad pos: -6.5,58.5 @@ -140007,7 +125193,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18136 + - uid: 18137 components: - rot: 1.5707963267948966 rad pos: -5.5,58.5 @@ -140015,98 +125201,98 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18137 + - uid: 18138 components: - pos: -12.5,58.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18138 + - uid: 18139 components: - pos: -12.5,57.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18139 + - uid: 18140 components: - pos: -12.5,56.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18140 + - uid: 18141 components: - pos: -12.5,55.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18141 + - uid: 18142 components: - pos: -12.5,54.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18142 + - uid: 18143 components: - pos: -12.5,53.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18143 + - uid: 18144 components: - pos: -12.5,52.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18144 + - uid: 18145 components: - pos: -12.5,51.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18145 + - uid: 18146 components: - pos: -13.5,56.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18146 + - uid: 18147 components: - pos: -13.5,55.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18147 + - uid: 18148 components: - pos: -13.5,54.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18148 + - uid: 18149 components: - pos: -13.5,53.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18149 + - uid: 18150 components: - pos: -13.5,52.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18150 + - uid: 18151 components: - rot: 1.5707963267948966 rad pos: -3.5,59.5 @@ -140114,7 +125300,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18151 + - uid: 18152 components: - rot: 1.5707963267948966 rad pos: -2.5,59.5 @@ -140122,7 +125308,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18152 + - uid: 18153 components: - rot: 1.5707963267948966 rad pos: -4.5,58.5 @@ -140130,7 +125316,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18153 + - uid: 18154 components: - rot: 1.5707963267948966 rad pos: -3.5,58.5 @@ -140138,7 +125324,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18154 + - uid: 18155 components: - rot: -1.5707963267948966 rad pos: 0.5,59.5 @@ -140146,7 +125332,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18155 + - uid: 18156 components: - rot: 1.5707963267948966 rad pos: -1.5,58.5 @@ -140154,14 +125340,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18156 + - uid: 18157 components: - pos: -0.5,57.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18157 + - uid: 18158 components: - rot: 1.5707963267948966 rad pos: -0.5,59.5 @@ -140169,35 +125355,35 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18158 + - uid: 18159 components: - pos: -0.5,55.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18159 + - uid: 18160 components: - pos: 1.5,58.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18160 + - uid: 18161 components: - pos: 1.5,56.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18161 + - uid: 18162 components: - pos: 1.5,55.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18162 + - uid: 18163 components: - rot: -1.5707963267948966 rad pos: 39.5,47.5 @@ -140207,7 +125393,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18163 + - uid: 18164 components: - rot: -1.5707963267948966 rad pos: 38.5,47.5 @@ -140217,7 +125403,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18164 + - uid: 18165 components: - rot: -1.5707963267948966 rad pos: 37.5,47.5 @@ -140225,7 +125411,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18165 + - uid: 18166 components: - rot: -1.5707963267948966 rad pos: 36.5,47.5 @@ -140233,7 +125419,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18166 + - uid: 18167 components: - rot: -1.5707963267948966 rad pos: 35.5,47.5 @@ -140241,7 +125427,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18167 + - uid: 18168 components: - rot: -1.5707963267948966 rad pos: 34.5,47.5 @@ -140251,7 +125437,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18168 + - uid: 18169 components: - rot: -1.5707963267948966 rad pos: 33.5,47.5 @@ -140259,7 +125445,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18169 + - uid: 18170 components: - rot: -1.5707963267948966 rad pos: 32.5,47.5 @@ -140267,7 +125453,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18170 + - uid: 18171 components: - rot: -1.5707963267948966 rad pos: 31.5,47.5 @@ -140277,7 +125463,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18171 + - uid: 18172 components: - rot: -1.5707963267948966 rad pos: 30.5,47.5 @@ -140285,7 +125471,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18172 + - uid: 18173 components: - rot: -1.5707963267948966 rad pos: 28.5,45.5 @@ -140293,7 +125479,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18173 + - uid: 18174 components: - rot: -1.5707963267948966 rad pos: 27.5,45.5 @@ -140301,7 +125487,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18174 + - uid: 18175 components: - rot: -1.5707963267948966 rad pos: 26.5,45.5 @@ -140309,7 +125495,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18175 + - uid: 18176 components: - rot: -1.5707963267948966 rad pos: 25.5,45.5 @@ -140317,7 +125503,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18176 + - uid: 18177 components: - rot: -1.5707963267948966 rad pos: 28.5,46.5 @@ -140325,7 +125511,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18177 + - uid: 18178 components: - rot: -1.5707963267948966 rad pos: 27.5,46.5 @@ -140335,7 +125521,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18178 + - uid: 18179 components: - rot: -1.5707963267948966 rad pos: 26.5,46.5 @@ -140343,7 +125529,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18179 + - uid: 18180 components: - rot: -1.5707963267948966 rad pos: 25.5,46.5 @@ -140351,7 +125537,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18180 + - uid: 18181 components: - rot: -1.5707963267948966 rad pos: 24.5,46.5 @@ -140359,7 +125545,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18181 + - uid: 18182 components: - rot: 1.5707963267948966 rad pos: 30.5,44.5 @@ -140367,7 +125553,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18182 + - uid: 18183 components: - rot: 1.5707963267948966 rad pos: 31.5,44.5 @@ -140377,7 +125563,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18183 + - uid: 18184 components: - rot: 1.5707963267948966 rad pos: 32.5,44.5 @@ -140385,7 +125571,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18184 + - uid: 18185 components: - rot: 1.5707963267948966 rad pos: 33.5,44.5 @@ -140393,7 +125579,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18185 + - uid: 18186 components: - rot: 1.5707963267948966 rad pos: 34.5,44.5 @@ -140403,7 +125589,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18186 + - uid: 18187 components: - rot: 1.5707963267948966 rad pos: 35.5,44.5 @@ -140411,7 +125597,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18187 + - uid: 18188 components: - rot: 1.5707963267948966 rad pos: 36.5,44.5 @@ -140421,7 +125607,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18188 + - uid: 18189 components: - rot: 1.5707963267948966 rad pos: 37.5,44.5 @@ -140429,7 +125615,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18189 + - uid: 18190 components: - rot: 1.5707963267948966 rad pos: 38.5,44.5 @@ -140439,7 +125625,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18190 + - uid: 18191 components: - rot: 1.5707963267948966 rad pos: 39.5,44.5 @@ -140447,7 +125633,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18191 + - uid: 18192 components: - rot: 3.141592653589793 rad pos: -6.5,-91.5 @@ -140455,14 +125641,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18192 + - uid: 18193 components: - pos: -22.5,-90.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18193 + - uid: 18194 components: - pos: -22.5,-91.5 parent: 2 @@ -140471,7 +125657,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18194 + - uid: 18195 components: - pos: -22.5,-92.5 parent: 2 @@ -140480,7 +125666,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18195 + - uid: 18196 components: - pos: -22.5,-93.5 parent: 2 @@ -140489,7 +125675,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18196 + - uid: 18197 components: - pos: -22.5,-94.5 parent: 2 @@ -140498,28 +125684,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18197 + - uid: 18198 components: - pos: -22.5,-95.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18198 + - uid: 18199 components: - pos: -20.5,-89.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18199 + - uid: 18200 components: - pos: -20.5,-90.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18200 + - uid: 18201 components: - pos: -20.5,-91.5 parent: 2 @@ -140528,7 +125714,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18201 + - uid: 18202 components: - pos: -20.5,-92.5 parent: 2 @@ -140537,7 +125723,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18202 + - uid: 18203 components: - pos: -20.5,-93.5 parent: 2 @@ -140546,7 +125732,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18203 + - uid: 18204 components: - pos: -20.5,-94.5 parent: 2 @@ -140555,14 +125741,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18204 + - uid: 18205 components: - pos: -20.5,-95.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18205 + - uid: 18206 components: - rot: 3.141592653589793 rad pos: -22.5,-97.5 @@ -140570,7 +125756,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18206 + - uid: 18207 components: - rot: 1.5707963267948966 rad pos: -21.5,-97.5 @@ -140578,7 +125764,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18207 + - uid: 18208 components: - rot: 1.5707963267948966 rad pos: -22.5,-97.5 @@ -140586,7 +125772,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18208 + - uid: 18209 components: - rot: 1.5707963267948966 rad pos: -23.5,-97.5 @@ -140594,7 +125780,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18209 + - uid: 18210 components: - rot: 1.5707963267948966 rad pos: -24.5,-97.5 @@ -140602,7 +125788,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18210 + - uid: 18211 components: - rot: 1.5707963267948966 rad pos: -25.5,-97.5 @@ -140610,7 +125796,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18211 + - uid: 18212 components: - rot: 1.5707963267948966 rad pos: -26.5,-97.5 @@ -140620,7 +125806,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18212 + - uid: 18213 components: - rot: 1.5707963267948966 rad pos: -27.5,-97.5 @@ -140628,7 +125814,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18213 + - uid: 18214 components: - rot: 1.5707963267948966 rad pos: -28.5,-97.5 @@ -140636,7 +125822,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18214 + - uid: 18215 components: - rot: 1.5707963267948966 rad pos: -29.5,-97.5 @@ -140644,7 +125830,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18215 + - uid: 18216 components: - rot: 1.5707963267948966 rad pos: -30.5,-97.5 @@ -140652,7 +125838,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18216 + - uid: 18217 components: - rot: 1.5707963267948966 rad pos: -23.5,-96.5 @@ -140660,7 +125846,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18217 + - uid: 18218 components: - rot: 1.5707963267948966 rad pos: -24.5,-96.5 @@ -140668,7 +125854,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18218 + - uid: 18219 components: - rot: 1.5707963267948966 rad pos: -25.5,-96.5 @@ -140676,7 +125862,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18219 + - uid: 18220 components: - rot: 1.5707963267948966 rad pos: -26.5,-96.5 @@ -140684,7 +125870,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18220 + - uid: 18221 components: - rot: 1.5707963267948966 rad pos: -27.5,-96.5 @@ -140692,7 +125878,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18221 + - uid: 18222 components: - rot: 1.5707963267948966 rad pos: -28.5,-96.5 @@ -140702,7 +125888,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18222 + - uid: 18223 components: - rot: 1.5707963267948966 rad pos: -29.5,-96.5 @@ -140710,7 +125896,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18223 + - uid: 18224 components: - rot: 1.5707963267948966 rad pos: -30.5,-96.5 @@ -140718,7 +125904,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18224 + - uid: 18225 components: - rot: 1.5707963267948966 rad pos: -20.5,-98.5 @@ -140726,7 +125912,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18225 + - uid: 18226 components: - rot: 1.5707963267948966 rad pos: -19.5,-98.5 @@ -140734,7 +125920,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18226 + - uid: 18227 components: - rot: 1.5707963267948966 rad pos: -18.5,-98.5 @@ -140742,7 +125928,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18227 + - uid: 18228 components: - rot: 1.5707963267948966 rad pos: -17.5,-98.5 @@ -140750,7 +125936,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18228 + - uid: 18229 components: - rot: 1.5707963267948966 rad pos: -16.5,-98.5 @@ -140758,7 +125944,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18229 + - uid: 18230 components: - rot: 1.5707963267948966 rad pos: -19.5,-97.5 @@ -140766,7 +125952,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18230 + - uid: 18231 components: - rot: 1.5707963267948966 rad pos: -18.5,-97.5 @@ -140776,7 +125962,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18231 + - uid: 18232 components: - rot: 1.5707963267948966 rad pos: -17.5,-97.5 @@ -140784,7 +125970,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18232 + - uid: 18233 components: - rot: 1.5707963267948966 rad pos: -16.5,-97.5 @@ -140792,7 +125978,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18233 + - uid: 18234 components: - rot: 1.5707963267948966 rad pos: -15.5,-97.5 @@ -140800,7 +125986,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18234 + - uid: 18235 components: - rot: 1.5707963267948966 rad pos: -14.5,-97.5 @@ -140808,7 +125994,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18235 + - uid: 18236 components: - rot: 1.5707963267948966 rad pos: -13.5,-97.5 @@ -140816,7 +126002,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18236 + - uid: 18237 components: - rot: 1.5707963267948966 rad pos: -12.5,-97.5 @@ -140824,7 +126010,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18237 + - uid: 18238 components: - rot: 1.5707963267948966 rad pos: -11.5,-97.5 @@ -140832,7 +126018,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18238 + - uid: 18239 components: - rot: 1.5707963267948966 rad pos: -10.5,-97.5 @@ -140840,7 +126026,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18239 + - uid: 18240 components: - rot: 1.5707963267948966 rad pos: -15.5,-98.5 @@ -140848,7 +126034,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18240 + - uid: 18241 components: - rot: 1.5707963267948966 rad pos: -14.5,-98.5 @@ -140856,7 +126042,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18241 + - uid: 18242 components: - rot: 1.5707963267948966 rad pos: -13.5,-98.5 @@ -140866,7 +126052,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18242 + - uid: 18243 components: - rot: 1.5707963267948966 rad pos: -12.5,-98.5 @@ -140874,7 +126060,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18243 + - uid: 18244 components: - rot: 1.5707963267948966 rad pos: -11.5,-98.5 @@ -140882,7 +126068,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18244 + - uid: 18245 components: - rot: 1.5707963267948966 rad pos: -10.5,-98.5 @@ -140890,7 +126076,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18245 + - uid: 18246 components: - rot: 1.5707963267948966 rad pos: -9.5,-98.5 @@ -140898,7 +126084,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18246 + - uid: 18247 components: - rot: 1.5707963267948966 rad pos: -8.5,-98.5 @@ -140906,7 +126092,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18247 + - uid: 18248 components: - rot: 1.5707963267948966 rad pos: -9.5,-97.5 @@ -140914,21 +126100,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18248 + - uid: 18249 components: - pos: -8.5,-96.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18249 + - uid: 18250 components: - pos: -8.5,-95.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18250 + - uid: 18251 components: - pos: -8.5,-94.5 parent: 2 @@ -140937,56 +126123,56 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18251 + - uid: 18252 components: - pos: -8.5,-93.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18252 + - uid: 18253 components: - pos: -8.5,-92.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18253 + - uid: 18254 components: - pos: -7.5,-97.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18254 + - uid: 18255 components: - pos: -7.5,-96.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18255 + - uid: 18256 components: - pos: -7.5,-95.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18256 + - uid: 18257 components: - pos: -7.5,-94.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18257 + - uid: 18258 components: - pos: -8.5,-90.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18258 + - uid: 18259 components: - pos: -8.5,-89.5 parent: 2 @@ -140995,7 +126181,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18259 + - uid: 18260 components: - pos: -8.5,-88.5 parent: 2 @@ -141004,28 +126190,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18260 + - uid: 18261 components: - pos: -8.5,-87.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18261 + - uid: 18262 components: - pos: -8.5,-86.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18262 + - uid: 18263 components: - pos: -8.5,-85.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18263 + - uid: 18264 components: - rot: 3.141592653589793 rad pos: -6.5,-89.5 @@ -141035,7 +126221,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18264 + - uid: 18265 components: - rot: 3.141592653589793 rad pos: -6.5,-90.5 @@ -141043,7 +126229,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18265 + - uid: 18266 components: - rot: 3.141592653589793 rad pos: -6.5,-92.5 @@ -141051,7 +126237,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18266 + - uid: 18267 components: - rot: 3.141592653589793 rad pos: -6.5,-88.5 @@ -141061,7 +126247,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18267 + - uid: 18268 components: - rot: 3.141592653589793 rad pos: -6.5,-87.5 @@ -141071,7 +126257,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18268 + - uid: 18269 components: - rot: 3.141592653589793 rad pos: -6.5,-86.5 @@ -141081,7 +126267,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18269 + - uid: 18270 components: - rot: 3.141592653589793 rad pos: -6.5,-85.5 @@ -141089,7 +126275,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18270 + - uid: 18271 components: - rot: -1.5707963267948966 rad pos: -31.5,-96.5 @@ -141099,7 +126285,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18271 + - uid: 18272 components: - rot: -1.5707963267948966 rad pos: -31.5,-97.5 @@ -141107,7 +126293,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18272 + - uid: 18273 components: - rot: -1.5707963267948966 rad pos: -32.5,-96.5 @@ -141115,7 +126301,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18273 + - uid: 18274 components: - rot: -1.5707963267948966 rad pos: -32.5,-97.5 @@ -141123,7 +126309,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18274 + - uid: 18275 components: - rot: -1.5707963267948966 rad pos: -33.5,-96.5 @@ -141131,7 +126317,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18275 + - uid: 18276 components: - rot: -1.5707963267948966 rad pos: -33.5,-97.5 @@ -141139,13 +126325,13 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18276 + - uid: 18277 components: - rot: 3.141592653589793 rad pos: -70.5,-42.5 parent: 2 type: Transform - - uid: 18277 + - uid: 18278 components: - rot: 1.5707963267948966 rad pos: -72.5,-44.5 @@ -141153,7 +126339,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 18278 + - uid: 18279 components: - rot: 1.5707963267948966 rad pos: 36.5,-72.5 @@ -141161,7 +126347,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18279 + - uid: 18280 components: - rot: 1.5707963267948966 rad pos: 63.5,-34.5 @@ -141169,14 +126355,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18280 + - uid: 18281 components: - pos: 70.5,-48.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18281 + - uid: 18282 components: - rot: -1.5707963267948966 rad pos: 61.5,-33.5 @@ -141184,7 +126370,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18282 + - uid: 18283 components: - rot: -1.5707963267948966 rad pos: 62.5,-33.5 @@ -141192,7 +126378,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18283 + - uid: 18284 components: - rot: -1.5707963267948966 rad pos: 63.5,-33.5 @@ -141200,7 +126386,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18284 + - uid: 18285 components: - rot: -1.5707963267948966 rad pos: 64.5,-33.5 @@ -141208,7 +126394,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18285 + - uid: 18286 components: - rot: -1.5707963267948966 rad pos: 66.5,-33.5 @@ -141216,7 +126402,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18286 + - uid: 18287 components: - rot: -1.5707963267948966 rad pos: 67.5,-33.5 @@ -141224,7 +126410,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18287 + - uid: 18288 components: - rot: -1.5707963267948966 rad pos: 66.5,-34.5 @@ -141232,7 +126418,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18288 + - uid: 18289 components: - rot: -1.5707963267948966 rad pos: 68.5,-34.5 @@ -141240,7 +126426,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18289 + - uid: 18290 components: - rot: -1.5707963267948966 rad pos: 69.5,-34.5 @@ -141248,7 +126434,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18290 + - uid: 18291 components: - rot: -1.5707963267948966 rad pos: 69.5,-33.5 @@ -141256,7 +126442,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18291 + - uid: 18292 components: - rot: -1.5707963267948966 rad pos: 70.5,-33.5 @@ -141264,7 +126450,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18292 + - uid: 18293 components: - rot: -1.5707963267948966 rad pos: 70.5,-34.5 @@ -141272,14 +126458,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18293 + - uid: 18294 components: - pos: 72.5,-32.5 parent: 2 type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 18294 + - uid: 18295 components: - rot: -1.5707963267948966 rad pos: 71.5,-34.5 @@ -141287,7 +126473,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18295 + - uid: 18296 components: - rot: -1.5707963267948966 rad pos: 72.5,-34.5 @@ -141295,70 +126481,70 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18296 + - uid: 18297 components: - pos: 74.5,-35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18297 + - uid: 18298 components: - pos: 74.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18298 + - uid: 18299 components: - pos: 74.5,-37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18299 + - uid: 18300 components: - pos: 74.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18300 + - uid: 18301 components: - pos: 74.5,-39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18301 + - uid: 18302 components: - pos: 74.5,-40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18302 + - uid: 18303 components: - pos: 75.5,-34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18303 + - uid: 18304 components: - pos: 75.5,-35.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18304 + - uid: 18305 components: - pos: 75.5,-36.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18305 + - uid: 18306 components: - rot: 1.5707963267948966 rad pos: 74.5,-37.5 @@ -141366,21 +126552,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18306 + - uid: 18307 components: - pos: 75.5,-38.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18307 + - uid: 18308 components: - pos: 75.5,-39.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18308 + - uid: 18309 components: - rot: 3.141592653589793 rad pos: 72.5,-30.5 @@ -141388,7 +126574,7 @@ entities: type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 18309 + - uid: 18310 components: - rot: 3.141592653589793 rad pos: 75.5,-41.5 @@ -141396,7 +126582,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18310 + - uid: 18311 components: - rot: 3.141592653589793 rad pos: 75.5,-42.5 @@ -141404,7 +126590,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18311 + - uid: 18312 components: - rot: 3.141592653589793 rad pos: 74.5,-42.5 @@ -141412,7 +126598,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18312 + - uid: 18313 components: - rot: 3.141592653589793 rad pos: 74.5,-43.5 @@ -141420,7 +126606,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18313 + - uid: 18314 components: - rot: 3.141592653589793 rad pos: 74.5,-44.5 @@ -141428,7 +126614,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18314 + - uid: 18315 components: - rot: 3.141592653589793 rad pos: 75.5,-43.5 @@ -141436,7 +126622,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18315 + - uid: 18316 components: - rot: 3.141592653589793 rad pos: 75.5,-44.5 @@ -141444,7 +126630,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18316 + - uid: 18317 components: - rot: 3.141592653589793 rad pos: 75.5,-45.5 @@ -141452,7 +126638,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18317 + - uid: 18318 components: - rot: 1.5707963267948966 rad pos: 71.5,-48.5 @@ -141460,7 +126646,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18318 + - uid: 18319 components: - rot: 1.5707963267948966 rad pos: 74.5,-46.5 @@ -141468,7 +126654,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18319 + - uid: 18320 components: - rot: 1.5707963267948966 rad pos: 69.5,-47.5 @@ -141476,7 +126662,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18320 + - uid: 18321 components: - rot: -1.5707963267948966 rad pos: 73.5,-45.5 @@ -141484,7 +126670,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18321 + - uid: 18322 components: - rot: -1.5707963267948966 rad pos: 72.5,-45.5 @@ -141492,21 +126678,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18322 + - uid: 18323 components: - pos: 5.5,-26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18323 + - uid: 18324 components: - pos: 5.5,-27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18324 + - uid: 18325 components: - rot: -1.5707963267948966 rad pos: 4.5,-25.5 @@ -141514,7 +126700,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18325 + - uid: 18326 components: - rot: -1.5707963267948966 rad pos: 62.5,-11.5 @@ -141522,7 +126708,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18326 + - uid: 18327 components: - pos: 66.5,-39.5 parent: 2 @@ -141531,7 +126717,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18327 + - uid: 18328 components: - rot: 1.5707963267948966 rad pos: 73.5,-37.5 @@ -141539,7 +126725,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18328 + - uid: 18329 components: - rot: -1.5707963267948966 rad pos: 70.5,-36.5 @@ -141547,7 +126733,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18329 + - uid: 18330 components: - rot: -1.5707963267948966 rad pos: 68.5,-36.5 @@ -141555,7 +126741,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18330 + - uid: 18331 components: - rot: -1.5707963267948966 rad pos: 69.5,-37.5 @@ -141563,7 +126749,7 @@ entities: type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 18331 + - uid: 18332 components: - rot: -1.5707963267948966 rad pos: 69.5,-36.5 @@ -141573,14 +126759,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18332 + - uid: 18333 components: - pos: 71.5,-32.5 parent: 2 type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 18333 + - uid: 18334 components: - rot: 1.5707963267948966 rad pos: 71.5,-33.5 @@ -141588,7 +126774,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18334 + - uid: 18335 components: - rot: 1.5707963267948966 rad pos: 72.5,-33.5 @@ -141596,12 +126782,12 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18335 + - uid: 18336 components: - pos: -55.5,-62.5 parent: 2 type: Transform - - uid: 18336 + - uid: 18337 components: - rot: -1.5707963267948966 rad pos: 71.5,-38.5 @@ -141609,7 +126795,7 @@ entities: type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 18337 + - uid: 18338 components: - rot: -1.5707963267948966 rad pos: 69.5,-38.5 @@ -141619,7 +126805,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18338 + - uid: 18339 components: - rot: 3.141592653589793 rad pos: 73.5,-31.5 @@ -141627,7 +126813,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18339 + - uid: 18340 components: - rot: 3.141592653589793 rad pos: 73.5,-30.5 @@ -141637,7 +126823,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18340 + - uid: 18341 components: - pos: 5.5,-28.5 parent: 2 @@ -141646,14 +126832,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18341 + - uid: 18342 components: - pos: 5.5,-29.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18342 + - uid: 18343 components: - rot: 1.5707963267948966 rad pos: 60.5,-34.5 @@ -141661,7 +126847,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18343 + - uid: 18344 components: - rot: 3.141592653589793 rad pos: 55.5,-50.5 @@ -141669,31 +126855,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 18344 + - uid: 18345 components: - rot: 3.141592653589793 rad pos: 55.5,-49.5 parent: 2 type: Transform - - uid: 18345 + - uid: 18346 components: - rot: 1.5707963267948966 rad pos: 54.5,-48.5 parent: 2 type: Transform - - uid: 18346 + - uid: 18347 components: - pos: -54.5,-62.5 parent: 2 type: Transform - - uid: 18347 + - uid: 18348 components: - pos: -54.5,-61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 18348 + - uid: 18349 components: - rot: -1.5707963267948966 rad pos: 61.5,-11.5 @@ -141701,7 +126887,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18349 + - uid: 18350 components: - rot: -1.5707963267948966 rad pos: 60.5,-11.5 @@ -141709,7 +126895,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18350 + - uid: 18351 components: - rot: -1.5707963267948966 rad pos: 59.5,-11.5 @@ -141717,7 +126903,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18351 + - uid: 18352 components: - rot: -1.5707963267948966 rad pos: 58.5,-11.5 @@ -141725,7 +126911,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18352 + - uid: 18353 components: - rot: -1.5707963267948966 rad pos: 57.5,-11.5 @@ -141733,7 +126919,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18353 + - uid: 18354 components: - rot: -1.5707963267948966 rad pos: 56.5,-11.5 @@ -141741,7 +126927,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18354 + - uid: 18355 components: - rot: 1.5707963267948966 rad pos: 54.5,-6.5 @@ -141749,7 +126935,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18355 + - uid: 18356 components: - rot: 1.5707963267948966 rad pos: 55.5,-6.5 @@ -141757,7 +126943,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18356 + - uid: 18357 components: - rot: 1.5707963267948966 rad pos: 56.5,-6.5 @@ -141765,7 +126951,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18357 + - uid: 18358 components: - rot: 1.5707963267948966 rad pos: 57.5,-6.5 @@ -141773,7 +126959,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18358 + - uid: 18359 components: - rot: 1.5707963267948966 rad pos: 58.5,-6.5 @@ -141781,7 +126967,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18359 + - uid: 18360 components: - rot: 1.5707963267948966 rad pos: 59.5,-6.5 @@ -141789,7 +126975,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18360 + - uid: 18361 components: - rot: 1.5707963267948966 rad pos: 60.5,-6.5 @@ -141797,7 +126983,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18361 + - uid: 18362 components: - rot: 1.5707963267948966 rad pos: 31.5,-72.5 @@ -141805,7 +126991,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18362 + - uid: 18363 components: - rot: 1.5707963267948966 rad pos: 35.5,-72.5 @@ -141813,7 +126999,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18363 + - uid: 18364 components: - rot: 1.5707963267948966 rad pos: -19.5,25.5 @@ -141821,7 +127007,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18364 + - uid: 18365 components: - rot: 1.5707963267948966 rad pos: -18.5,25.5 @@ -141829,7 +127015,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18365 + - uid: 18366 components: - rot: 1.5707963267948966 rad pos: -17.5,25.5 @@ -141837,7 +127023,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18366 + - uid: 18367 components: - rot: 1.5707963267948966 rad pos: -16.5,25.5 @@ -141845,7 +127031,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18367 + - uid: 18368 components: - rot: 1.5707963267948966 rad pos: -17.5,24.5 @@ -141855,7 +127041,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18368 + - uid: 18369 components: - rot: 1.5707963267948966 rad pos: -16.5,24.5 @@ -141863,7 +127049,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18369 + - uid: 18370 components: - rot: -1.5707963267948966 rad pos: 71.5,-36.5 @@ -141871,7 +127057,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18370 + - uid: 18371 components: - rot: -1.5707963267948966 rad pos: 71.5,-37.5 @@ -141879,14 +127065,14 @@ entities: type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 18371 + - uid: 18372 components: - pos: -5.5,-9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18372 + - uid: 18373 components: - rot: -1.5707963267948966 rad pos: -4.5,-12.5 @@ -141894,7 +127080,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18373 + - uid: 18374 components: - rot: -1.5707963267948966 rad pos: -5.5,-12.5 @@ -141902,7 +127088,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18374 + - uid: 18375 components: - rot: -1.5707963267948966 rad pos: -6.5,-12.5 @@ -141910,7 +127096,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18375 + - uid: 18376 components: - rot: -1.5707963267948966 rad pos: -7.5,-12.5 @@ -141918,7 +127104,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18376 + - uid: 18377 components: - rot: -1.5707963267948966 rad pos: -6.5,-14.5 @@ -141928,7 +127114,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18377 + - uid: 18378 components: - rot: -1.5707963267948966 rad pos: -7.5,-14.5 @@ -141936,7 +127122,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18378 + - uid: 18379 components: - rot: 3.141592653589793 rad pos: -11.5,-23.5 @@ -141944,7 +127130,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18379 + - uid: 18380 components: - rot: 3.141592653589793 rad pos: -11.5,-21.5 @@ -141952,7 +127138,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18380 + - uid: 18381 components: - rot: 3.141592653589793 rad pos: -11.5,-20.5 @@ -141962,7 +127148,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18381 + - uid: 18382 components: - rot: 3.141592653589793 rad pos: -11.5,-19.5 @@ -141970,7 +127156,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18382 + - uid: 18383 components: - rot: 3.141592653589793 rad pos: -10.5,-19.5 @@ -141978,7 +127164,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18383 + - uid: 18384 components: - rot: 3.141592653589793 rad pos: -10.5,-20.5 @@ -141988,7 +127174,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18384 + - uid: 18385 components: - rot: -1.5707963267948966 rad pos: -9.5,-21.5 @@ -141996,7 +127182,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18385 + - uid: 18386 components: - pos: -25.5,-58.5 parent: 2 @@ -142005,7 +127191,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18386 + - uid: 18387 components: - rot: 3.141592653589793 rad pos: -28.5,-72.5 @@ -142015,7 +127201,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18387 + - uid: 18388 components: - rot: 3.141592653589793 rad pos: -28.5,-73.5 @@ -142023,7 +127209,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18388 + - uid: 18389 components: - rot: 3.141592653589793 rad pos: -30.5,-72.5 @@ -142033,7 +127219,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18389 + - uid: 18390 components: - rot: 3.141592653589793 rad pos: -30.5,-73.5 @@ -142041,7 +127227,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18390 + - uid: 18391 components: - rot: 1.5707963267948966 rad pos: 34.5,-72.5 @@ -142049,7 +127235,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18391 + - uid: 18392 components: - rot: 1.5707963267948966 rad pos: 33.5,-72.5 @@ -142057,7 +127243,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18392 + - uid: 18393 components: - rot: -1.5707963267948966 rad pos: -45.5,-35.5 @@ -142065,7 +127251,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 18393 + - uid: 18394 components: - rot: -1.5707963267948966 rad pos: -46.5,-35.5 @@ -142073,7 +127259,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 18394 + - uid: 18395 components: - rot: -1.5707963267948966 rad pos: -47.5,-35.5 @@ -142081,7 +127267,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 18395 + - uid: 18396 components: - rot: 3.141592653589793 rad pos: 30.5,-80.5 @@ -142089,7 +127275,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18396 + - uid: 18397 components: - rot: 3.141592653589793 rad pos: 47.5,-76.5 @@ -142097,7 +127283,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18397 + - uid: 18398 components: - rot: 3.141592653589793 rad pos: 47.5,-77.5 @@ -142105,7 +127291,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18398 + - uid: 18399 components: - rot: 3.141592653589793 rad pos: 47.5,-78.5 @@ -142113,7 +127299,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18399 + - uid: 18400 components: - rot: 3.141592653589793 rad pos: 29.5,-82.5 @@ -142121,7 +127307,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18400 + - uid: 18401 components: - rot: 1.5707963267948966 rad pos: 47.5,-73.5 @@ -142129,7 +127315,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18401 + - uid: 18402 components: - rot: 3.141592653589793 rad pos: 48.5,-80.5 @@ -142137,7 +127323,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18402 + - uid: 18403 components: - rot: 1.5707963267948966 rad pos: 43.5,-72.5 @@ -142145,7 +127331,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18403 + - uid: 18404 components: - rot: 3.141592653589793 rad pos: 29.5,-75.5 @@ -142153,7 +127339,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18404 + - uid: 18405 components: - rot: 1.5707963267948966 rad pos: 29.5,-72.5 @@ -142161,7 +127347,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18405 + - uid: 18406 components: - rot: 1.5707963267948966 rad pos: 28.5,-72.5 @@ -142169,7 +127355,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18406 + - uid: 18407 components: - rot: 1.5707963267948966 rad pos: 27.5,-72.5 @@ -142177,7 +127363,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18407 + - uid: 18408 components: - rot: 1.5707963267948966 rad pos: 26.5,-72.5 @@ -142185,7 +127371,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18408 + - uid: 18409 components: - rot: 1.5707963267948966 rad pos: 39.5,-73.5 @@ -142193,7 +127379,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18409 + - uid: 18410 components: - rot: 1.5707963267948966 rad pos: 38.5,-73.5 @@ -142201,7 +127387,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18410 + - uid: 18411 components: - rot: 1.5707963267948966 rad pos: 37.5,-73.5 @@ -142209,7 +127395,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18411 + - uid: 18412 components: - rot: 1.5707963267948966 rad pos: 36.5,-73.5 @@ -142217,7 +127403,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18412 + - uid: 18413 components: - rot: 1.5707963267948966 rad pos: 35.5,-73.5 @@ -142225,7 +127411,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18413 + - uid: 18414 components: - rot: 1.5707963267948966 rad pos: 34.5,-73.5 @@ -142233,7 +127419,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18414 + - uid: 18415 components: - rot: 1.5707963267948966 rad pos: 33.5,-73.5 @@ -142241,7 +127427,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18415 + - uid: 18416 components: - rot: 1.5707963267948966 rad pos: 31.5,-73.5 @@ -142249,7 +127435,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18416 + - uid: 18417 components: - rot: 1.5707963267948966 rad pos: 30.5,-73.5 @@ -142257,7 +127443,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18417 + - uid: 18418 components: - rot: 3.141592653589793 rad pos: 29.5,-74.5 @@ -142265,7 +127451,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18418 + - uid: 18419 components: - rot: 1.5707963267948966 rad pos: 28.5,-73.5 @@ -142273,7 +127459,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18419 + - uid: 18420 components: - rot: 1.5707963267948966 rad pos: 27.5,-73.5 @@ -142281,7 +127467,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18420 + - uid: 18421 components: - rot: 1.5707963267948966 rad pos: 26.5,-73.5 @@ -142289,7 +127475,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18421 + - uid: 18422 components: - rot: -1.5707963267948966 rad pos: 25.5,-73.5 @@ -142297,7 +127483,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18422 + - uid: 18423 components: - rot: 1.5707963267948966 rad pos: 26.5,-82.5 @@ -142305,7 +127491,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18423 + - uid: 18424 components: - rot: 3.141592653589793 rad pos: 29.5,-76.5 @@ -142313,7 +127499,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18424 + - uid: 18425 components: - rot: 3.141592653589793 rad pos: 29.5,-77.5 @@ -142321,7 +127507,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18425 + - uid: 18426 components: - rot: 1.5707963267948966 rad pos: 27.5,-82.5 @@ -142329,7 +127515,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18426 + - uid: 18427 components: - rot: 1.5707963267948966 rad pos: 28.5,-82.5 @@ -142337,7 +127523,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18427 + - uid: 18428 components: - rot: 1.5707963267948966 rad pos: 24.5,-83.5 @@ -142345,7 +127531,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18428 + - uid: 18429 components: - rot: 1.5707963267948966 rad pos: 25.5,-83.5 @@ -142353,7 +127539,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18429 + - uid: 18430 components: - rot: 1.5707963267948966 rad pos: 26.5,-83.5 @@ -142361,7 +127547,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18430 + - uid: 18431 components: - rot: 1.5707963267948966 rad pos: 27.5,-83.5 @@ -142369,7 +127555,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18431 + - uid: 18432 components: - rot: 1.5707963267948966 rad pos: 28.5,-83.5 @@ -142377,7 +127563,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18432 + - uid: 18433 components: - rot: -1.5707963267948966 rad pos: 23.5,-82.5 @@ -142387,7 +127573,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18433 + - uid: 18434 components: - rot: -1.5707963267948966 rad pos: 22.5,-82.5 @@ -142397,7 +127583,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18434 + - uid: 18435 components: - rot: -1.5707963267948966 rad pos: 21.5,-82.5 @@ -142407,7 +127593,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18435 + - uid: 18436 components: - rot: -1.5707963267948966 rad pos: 20.5,-82.5 @@ -142417,7 +127603,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18436 + - uid: 18437 components: - rot: -1.5707963267948966 rad pos: 19.5,-82.5 @@ -142425,7 +127611,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18437 + - uid: 18438 components: - rot: -1.5707963267948966 rad pos: 23.5,-83.5 @@ -142433,7 +127619,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18438 + - uid: 18439 components: - rot: -1.5707963267948966 rad pos: 22.5,-83.5 @@ -142441,7 +127627,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18439 + - uid: 18440 components: - rot: -1.5707963267948966 rad pos: 21.5,-83.5 @@ -142449,7 +127635,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18440 + - uid: 18441 components: - rot: -1.5707963267948966 rad pos: 20.5,-83.5 @@ -142457,7 +127643,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18441 + - uid: 18442 components: - rot: -1.5707963267948966 rad pos: 29.5,-82.5 @@ -142465,7 +127651,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18442 + - uid: 18443 components: - rot: 1.5707963267948966 rad pos: 25.5,-82.5 @@ -142473,7 +127659,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18443 + - uid: 18444 components: - rot: 1.5707963267948966 rad pos: 24.5,-82.5 @@ -142481,7 +127667,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18444 + - uid: 18445 components: - rot: 3.141592653589793 rad pos: 30.5,-74.5 @@ -142489,7 +127675,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18445 + - uid: 18446 components: - rot: 3.141592653589793 rad pos: 30.5,-78.5 @@ -142497,7 +127683,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18446 + - uid: 18447 components: - rot: 3.141592653589793 rad pos: 30.5,-77.5 @@ -142505,7 +127691,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18447 + - uid: 18448 components: - rot: 3.141592653589793 rad pos: 30.5,-75.5 @@ -142513,7 +127699,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18448 + - uid: 18449 components: - rot: 3.141592653589793 rad pos: 30.5,-76.5 @@ -142521,7 +127707,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18449 + - uid: 18450 components: - rot: 3.141592653589793 rad pos: 30.5,-79.5 @@ -142529,7 +127715,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18450 + - uid: 18451 components: - rot: 1.5707963267948966 rad pos: 41.5,-73.5 @@ -142537,7 +127723,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18451 + - uid: 18452 components: - rot: 3.141592653589793 rad pos: 48.5,-74.5 @@ -142545,7 +127731,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18452 + - uid: 18453 components: - rot: 3.141592653589793 rad pos: 48.5,-76.5 @@ -142553,7 +127739,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18453 + - uid: 18454 components: - rot: 3.141592653589793 rad pos: 48.5,-83.5 @@ -142561,7 +127747,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18454 + - uid: 18455 components: - rot: 3.141592653589793 rad pos: 48.5,-84.5 @@ -142569,7 +127755,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18455 + - uid: 18456 components: - rot: 3.141592653589793 rad pos: 48.5,-77.5 @@ -142577,7 +127763,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18456 + - uid: 18457 components: - rot: 3.141592653589793 rad pos: 48.5,-78.5 @@ -142585,7 +127771,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18457 + - uid: 18458 components: - rot: 3.141592653589793 rad pos: 48.5,-81.5 @@ -142593,7 +127779,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18458 + - uid: 18459 components: - rot: 3.141592653589793 rad pos: 48.5,-82.5 @@ -142601,7 +127787,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18459 + - uid: 18460 components: - rot: 1.5707963267948966 rad pos: 44.5,-72.5 @@ -142609,7 +127795,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18460 + - uid: 18461 components: - rot: 1.5707963267948966 rad pos: 42.5,-72.5 @@ -142617,7 +127803,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18461 + - uid: 18462 components: - rot: 3.141592653589793 rad pos: 47.5,-84.5 @@ -142625,7 +127811,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18462 + - uid: 18463 components: - rot: 3.141592653589793 rad pos: 47.5,-74.5 @@ -142633,7 +127819,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18463 + - uid: 18464 components: - rot: 3.141592653589793 rad pos: 47.5,-75.5 @@ -142641,7 +127827,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18464 + - uid: 18465 components: - rot: 1.5707963267948966 rad pos: 45.5,-73.5 @@ -142649,7 +127835,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18465 + - uid: 18466 components: - rot: 1.5707963267948966 rad pos: 46.5,-73.5 @@ -142657,7 +127843,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18466 + - uid: 18467 components: - rot: 3.141592653589793 rad pos: 47.5,-85.5 @@ -142665,7 +127851,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18467 + - uid: 18468 components: - rot: 3.141592653589793 rad pos: 47.5,-81.5 @@ -142673,7 +127859,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18468 + - uid: 18469 components: - rot: 3.141592653589793 rad pos: 47.5,-82.5 @@ -142681,7 +127867,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18469 + - uid: 18470 components: - rot: 3.141592653589793 rad pos: 47.5,-83.5 @@ -142689,7 +127875,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18470 + - uid: 18471 components: - rot: 1.5707963267948966 rad pos: -21.5,66.5 @@ -142697,7 +127883,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18471 + - uid: 18472 components: - rot: 1.5707963267948966 rad pos: -20.5,66.5 @@ -142705,7 +127891,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18472 + - uid: 18473 components: - rot: 1.5707963267948966 rad pos: -19.5,66.5 @@ -142713,7 +127899,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18473 + - uid: 18474 components: - rot: 1.5707963267948966 rad pos: -15.5,66.5 @@ -142721,7 +127907,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18474 + - uid: 18475 components: - rot: 1.5707963267948966 rad pos: -14.5,66.5 @@ -142729,7 +127915,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18475 + - uid: 18476 components: - rot: -1.5707963267948966 rad pos: 32.5,-72.5 @@ -142737,7 +127923,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18476 + - uid: 18477 components: - rot: -1.5707963267948966 rad pos: 32.5,-73.5 @@ -142745,7 +127931,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18477 + - uid: 18478 components: - rot: -1.5707963267948966 rad pos: 14.5,-22.5 @@ -142753,7 +127939,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18478 + - uid: 18479 components: - rot: -1.5707963267948966 rad pos: 13.5,-22.5 @@ -142763,7 +127949,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18479 + - uid: 18480 components: - rot: -1.5707963267948966 rad pos: 12.5,-22.5 @@ -142771,7 +127957,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18480 + - uid: 18481 components: - rot: -1.5707963267948966 rad pos: 11.5,-22.5 @@ -142779,7 +127965,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18481 + - uid: 18482 components: - rot: -1.5707963267948966 rad pos: 10.5,-22.5 @@ -142787,7 +127973,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18482 + - uid: 18483 components: - rot: -1.5707963267948966 rad pos: 9.5,-22.5 @@ -142795,7 +127981,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18483 + - uid: 18484 components: - rot: -1.5707963267948966 rad pos: 8.5,-22.5 @@ -142803,28 +127989,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18484 + - uid: 18485 components: - pos: 12.5,-25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18485 + - uid: 18486 components: - pos: 12.5,-26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18486 + - uid: 18487 components: - pos: 12.5,-23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18487 + - uid: 18488 components: - pos: 12.5,-24.5 parent: 2 @@ -142833,7 +128019,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18488 + - uid: 18489 components: - rot: 3.141592653589793 rad pos: 40.5,9.5 @@ -142841,7 +128027,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18489 + - uid: 18490 components: - rot: 3.141592653589793 rad pos: 40.5,8.5 @@ -142849,7 +128035,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18490 + - uid: 18491 components: - rot: 1.5707963267948966 rad pos: 43.5,6.5 @@ -142857,7 +128043,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18491 + - uid: 18492 components: - rot: 1.5707963267948966 rad pos: 44.5,6.5 @@ -142865,7 +128051,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18492 + - uid: 18493 components: - rot: 1.5707963267948966 rad pos: 41.5,5.5 @@ -142873,7 +128059,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18493 + - uid: 18494 components: - rot: 1.5707963267948966 rad pos: 42.5,5.5 @@ -142881,7 +128067,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18494 + - uid: 18495 components: - rot: 1.5707963267948966 rad pos: 43.5,5.5 @@ -142891,7 +128077,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18495 + - uid: 18496 components: - rot: 1.5707963267948966 rad pos: 44.5,5.5 @@ -142899,7 +128085,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18496 + - uid: 18497 components: - rot: 1.5707963267948966 rad pos: -46.5,31.5 @@ -142907,147 +128093,189 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18497 + - nextSound: 1371.0817623 + type: EmitSoundOnCollide + - uid: 18498 components: - pos: -47.5,33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18498 + - nextSound: 1381.6419038 + type: EmitSoundOnCollide + - uid: 18499 components: - pos: -47.5,32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18499 + - nextSound: 1381.9820415 + type: EmitSoundOnCollide + - uid: 18500 components: - pos: -45.5,34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18500 + - nextSound: 1386.795262 + type: EmitSoundOnCollide + - uid: 18501 components: - pos: -45.5,35.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18501 + - nextSound: 1386.795262 + type: EmitSoundOnCollide + - uid: 18502 components: - pos: -45.5,36.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18502 + - nextSound: 1386.795262 + type: EmitSoundOnCollide + - uid: 18503 components: - pos: -45.5,37.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18503 + - nextSound: 1386.795262 + type: EmitSoundOnCollide + - uid: 18504 components: - pos: -45.5,38.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18504 + - nextSound: 1386.795262 + type: EmitSoundOnCollide + - uid: 18505 components: - pos: -45.5,39.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18505 + - nextSound: 1386.795262 + type: EmitSoundOnCollide + - uid: 18506 components: - pos: -45.5,40.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18506 + - nextSound: 1386.795262 + type: EmitSoundOnCollide + - uid: 18507 components: - pos: -45.5,41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18507 + - nextSound: 1386.795262 + type: EmitSoundOnCollide + - uid: 18508 components: - pos: -45.5,42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18508 + - nextSound: 1386.795262 + type: EmitSoundOnCollide + - uid: 18509 components: - pos: -46.5,35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18509 + - nextSound: 1389.6882786 + type: EmitSoundOnCollide + - uid: 18510 components: - pos: -46.5,36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18510 + - nextSound: 1389.6882786 + type: EmitSoundOnCollide + - uid: 18511 components: - pos: -46.5,37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18511 + - nextSound: 1389.6882786 + type: EmitSoundOnCollide + - uid: 18512 components: - pos: -46.5,38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18512 + - nextSound: 1389.6882786 + type: EmitSoundOnCollide + - uid: 18513 components: - pos: -46.5,39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18513 + - nextSound: 1389.6882786 + type: EmitSoundOnCollide + - uid: 18514 components: - pos: -46.5,40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18514 + - nextSound: 1389.6882786 + type: EmitSoundOnCollide + - uid: 18515 components: - pos: -46.5,41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18515 + - nextSound: 1389.6882786 + type: EmitSoundOnCollide + - uid: 18516 components: - pos: -46.5,42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18516 + - nextSound: 1389.6882786 + type: EmitSoundOnCollide + - uid: 18517 components: - pos: 68.5,-32.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18517 + - nextSound: 699.6173808 + type: EmitSoundOnCollide + - uid: 18518 components: - rot: 1.5707963267948966 rad pos: 64.5,-31.5 @@ -143055,7 +128283,9 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18518 + - nextSound: 722.839309 + type: EmitSoundOnCollide + - uid: 18519 components: - rot: 1.5707963267948966 rad pos: 65.5,-31.5 @@ -143065,7 +128295,9 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18519 + - nextSound: 724.9120804 + type: EmitSoundOnCollide + - uid: 18520 components: - rot: 1.5707963267948966 rad pos: 66.5,-31.5 @@ -143075,9 +128307,11 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound + - nextSound: 725.5058382 + type: EmitSoundOnCollide - proto: GasPipeTJunction entities: - - uid: 18520 + - uid: 18521 components: - rot: 1.5707963267948966 rad pos: 63.5,-31.5 @@ -143085,7 +128319,9 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18521 + - nextSound: 719.6508269 + type: EmitSoundOnCollide + - uid: 18522 components: - rot: 1.5707963267948966 rad pos: 40.5,5.5 @@ -143093,21 +128329,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18522 + - uid: 18523 components: - pos: 28.5,-29.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18523 + - uid: 18524 components: - pos: -8.5,-53.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18524 + - uid: 18525 components: - rot: -1.5707963267948966 rad pos: 2.5,-4.5 @@ -143115,14 +128351,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18525 + - uid: 18526 components: - pos: -12.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18526 + - uid: 18527 components: - rot: -1.5707963267948966 rad pos: 26.5,-7.5 @@ -143130,7 +128366,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18527 + - uid: 18528 components: - rot: 1.5707963267948966 rad pos: 8.5,10.5 @@ -143138,7 +128374,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18528 + - uid: 18529 components: - rot: 1.5707963267948966 rad pos: 8.5,0.5 @@ -143146,7 +128382,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18529 + - uid: 18530 components: - rot: -1.5707963267948966 rad pos: -11.5,-38.5 @@ -143154,7 +128390,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18530 + - uid: 18531 components: - rot: -1.5707963267948966 rad pos: 7.5,14.5 @@ -143162,7 +128398,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18531 + - uid: 18532 components: - rot: -1.5707963267948966 rad pos: 4.5,-4.5 @@ -143170,7 +128406,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18532 + - uid: 18533 components: - rot: 3.141592653589793 rad pos: 22.5,21.5 @@ -143178,7 +128414,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18533 + - uid: 18534 components: - rot: 3.141592653589793 rad pos: 2.5,-60.5 @@ -143186,21 +128422,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18534 + - uid: 18535 components: - pos: -5.5,-60.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18535 + - uid: 18536 components: - pos: -8.5,-61.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18536 + - uid: 18537 components: - rot: 1.5707963267948966 rad pos: -8.5,-64.5 @@ -143208,7 +128444,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18537 + - uid: 18538 components: - rot: 3.141592653589793 rad pos: -24.5,-80.5 @@ -143216,7 +128452,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18538 + - uid: 18539 components: - rot: -1.5707963267948966 rad pos: 20.5,13.5 @@ -143224,7 +128460,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18539 + - uid: 18540 components: - rot: 3.141592653589793 rad pos: 31.5,-43.5 @@ -143232,7 +128468,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18540 + - uid: 18541 components: - rot: 3.141592653589793 rad pos: 17.5,-43.5 @@ -143240,7 +128476,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18541 + - uid: 18542 components: - rot: 1.5707963267948966 rad pos: 35.5,8.5 @@ -143250,7 +128486,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18542 + - uid: 18543 components: - rot: -1.5707963267948966 rad pos: 26.5,10.5 @@ -143258,14 +128494,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18543 + - uid: 18544 components: - pos: 7.5,-25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18544 + - uid: 18545 components: - rot: -1.5707963267948966 rad pos: 0.5,13.5 @@ -143273,14 +128509,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18545 + - uid: 18546 components: - pos: -24.5,-57.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18546 + - uid: 18547 components: - rot: -1.5707963267948966 rad pos: 2.5,-1.5 @@ -143288,7 +128524,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18547 + - uid: 18548 components: - rot: 1.5707963267948966 rad pos: 2.5,0.5 @@ -143296,7 +128532,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18548 + - uid: 18549 components: - rot: 1.5707963267948966 rad pos: -20.5,-33.5 @@ -143304,7 +128540,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18549 + - uid: 18550 components: - rot: 1.5707963267948966 rad pos: 15.5,-29.5 @@ -143312,7 +128548,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18550 + - uid: 18551 components: - rot: 3.141592653589793 rad pos: -11.5,-41.5 @@ -143320,7 +128556,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18551 + - uid: 18552 components: - rot: -1.5707963267948966 rad pos: -14.5,-43.5 @@ -143328,7 +128564,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18552 + - uid: 18553 components: - rot: 3.141592653589793 rad pos: -17.5,-60.5 @@ -143336,7 +128572,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18553 + - uid: 18554 components: - rot: 3.141592653589793 rad pos: -9.5,-42.5 @@ -143344,21 +128580,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18554 + - uid: 18555 components: - pos: -0.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18555 + - uid: 18556 components: - pos: -8.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18556 + - uid: 18557 components: - rot: -1.5707963267948966 rad pos: -7.5,-60.5 @@ -143366,7 +128602,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18557 + - uid: 18558 components: - rot: -1.5707963267948966 rad pos: -3.5,-59.5 @@ -143374,7 +128610,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18558 + - uid: 18559 components: - rot: 1.5707963267948966 rad pos: 35.5,5.5 @@ -143384,7 +128620,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18559 + - uid: 18560 components: - rot: 3.141592653589793 rad pos: 28.5,9.5 @@ -143394,7 +128630,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18560 + - uid: 18561 components: - rot: -1.5707963267948966 rad pos: 17.5,-0.5 @@ -143402,14 +128638,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18561 + - uid: 18562 components: - pos: 41.5,14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18562 + - uid: 18563 components: - rot: 3.141592653589793 rad pos: 33.5,1.5 @@ -143417,7 +128653,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18563 + - uid: 18564 components: - rot: 1.5707963267948966 rad pos: 23.5,17.5 @@ -143425,7 +128661,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18564 + - uid: 18565 components: - rot: 1.5707963267948966 rad pos: 7.5,16.5 @@ -143433,14 +128669,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18565 + - uid: 18566 components: - pos: 44.5,-27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18566 + - uid: 18567 components: - rot: 3.141592653589793 rad pos: -3.5,-42.5 @@ -143448,7 +128684,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18567 + - uid: 18568 components: - rot: 3.141592653589793 rad pos: 12.5,-27.5 @@ -143456,14 +128692,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18568 + - uid: 18569 components: - pos: -7.5,-25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18569 + - uid: 18570 components: - rot: 3.141592653589793 rad pos: 33.5,-16.5 @@ -143471,7 +128707,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18570 + - uid: 18571 components: - rot: 1.5707963267948966 rad pos: -18.5,-25.5 @@ -143479,7 +128715,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18571 + - uid: 18572 components: - rot: 3.141592653589793 rad pos: -8.5,1.5 @@ -143487,7 +128723,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18572 + - uid: 18573 components: - rot: 3.141592653589793 rad pos: 17.5,13.5 @@ -143495,14 +128731,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18573 + - uid: 18574 components: - pos: 28.5,12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18574 + - uid: 18575 components: - rot: -1.5707963267948966 rad pos: 38.5,8.5 @@ -143510,7 +128746,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18575 + - uid: 18576 components: - rot: -1.5707963267948966 rad pos: 38.5,5.5 @@ -143518,7 +128754,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18576 + - uid: 18577 components: - rot: -1.5707963267948966 rad pos: 38.5,11.5 @@ -143526,14 +128762,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18577 + - uid: 18578 components: - pos: 34.5,12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18578 + - uid: 18579 components: - rot: 3.141592653589793 rad pos: -8.5,-27.5 @@ -143541,7 +128777,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18579 + - uid: 18580 components: - rot: -1.5707963267948966 rad pos: -8.5,2.5 @@ -143549,7 +128785,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18580 + - uid: 18581 components: - rot: 3.141592653589793 rad pos: 2.5,-27.5 @@ -143557,7 +128793,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18581 + - uid: 18582 components: - rot: 3.141592653589793 rad pos: 12.5,16.5 @@ -143565,7 +128801,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18582 + - uid: 18583 components: - rot: 3.141592653589793 rad pos: -5.5,-41.5 @@ -143573,14 +128809,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18583 + - uid: 18584 components: - pos: 3.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18584 + - uid: 18585 components: - rot: 3.141592653589793 rad pos: 8.5,-0.5 @@ -143588,7 +128824,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18585 + - uid: 18586 components: - rot: 3.141592653589793 rad pos: 16.5,16.5 @@ -143596,7 +128832,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18586 + - uid: 18587 components: - rot: 3.141592653589793 rad pos: 25.5,7.5 @@ -143604,7 +128840,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18587 + - uid: 18588 components: - rot: 3.141592653589793 rad pos: 28.5,17.5 @@ -143612,7 +128848,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18588 + - uid: 18589 components: - rot: 1.5707963267948966 rad pos: 20.5,10.5 @@ -143620,14 +128856,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18589 + - uid: 18590 components: - pos: 4.5,17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18590 + - uid: 18591 components: - rot: -1.5707963267948966 rad pos: 9.5,1.5 @@ -143635,7 +128871,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18591 + - uid: 18592 components: - rot: 1.5707963267948966 rad pos: 19.5,18.5 @@ -143645,7 +128881,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18592 + - uid: 18593 components: - rot: -1.5707963267948966 rad pos: 30.5,18.5 @@ -143653,14 +128889,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18593 + - uid: 18594 components: - pos: 21.5,-5.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18594 + - uid: 18595 components: - rot: -1.5707963267948966 rad pos: 26.5,-12.5 @@ -143668,7 +128904,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18595 + - uid: 18596 components: - rot: 1.5707963267948966 rad pos: 26.5,-24.5 @@ -143676,7 +128912,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18596 + - uid: 18597 components: - rot: -1.5707963267948966 rad pos: 21.5,-17.5 @@ -143684,14 +128920,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18597 + - uid: 18598 components: - pos: 20.5,-17.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18598 + - uid: 18599 components: - rot: 3.141592653589793 rad pos: 23.5,-29.5 @@ -143699,7 +128935,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18599 + - uid: 18600 components: - rot: 1.5707963267948966 rad pos: -8.5,-22.5 @@ -143707,21 +128943,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18600 + - uid: 18601 components: - pos: -10.5,1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18601 + - uid: 18602 components: - pos: -2.5,-61.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18602 + - uid: 18603 components: - rot: 3.141592653589793 rad pos: -9.5,-61.5 @@ -143729,21 +128965,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18603 + - uid: 18604 components: - pos: -15.5,-61.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18604 + - uid: 18605 components: - pos: -0.5,-60.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18605 + - uid: 18606 components: - rot: 3.141592653589793 rad pos: -1.5,-60.5 @@ -143751,14 +128987,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18606 + - uid: 18607 components: - pos: -12.5,-60.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18607 + - uid: 18608 components: - rot: 3.141592653589793 rad pos: 3.5,-61.5 @@ -143766,14 +129002,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18608 + - uid: 18609 components: - pos: 5.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18609 + - uid: 18610 components: - rot: 1.5707963267948966 rad pos: -8.5,-46.5 @@ -143781,14 +129017,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18610 + - uid: 18611 components: - pos: 5.5,-25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18611 + - uid: 18612 components: - rot: 3.141592653589793 rad pos: -11.5,-27.5 @@ -143796,21 +129032,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18612 + - uid: 18613 components: - pos: 24.5,-43.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18613 + - uid: 18614 components: - pos: 20.5,-43.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18614 + - uid: 18615 components: - rot: 3.141592653589793 rad pos: 31.5,9.5 @@ -143820,7 +129056,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18615 + - uid: 18616 components: - rot: -1.5707963267948966 rad pos: -23.5,-78.5 @@ -143828,7 +129064,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18616 + - uid: 18617 components: - rot: -1.5707963267948966 rad pos: -23.5,-80.5 @@ -143836,7 +129072,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18617 + - uid: 18618 components: - rot: 3.141592653589793 rad pos: 34.5,9.5 @@ -143846,7 +129082,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18618 + - uid: 18619 components: - rot: -1.5707963267948966 rad pos: 2.5,-10.5 @@ -143854,7 +129090,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18619 + - uid: 18620 components: - rot: -1.5707963267948966 rad pos: 1.5,6.5 @@ -143862,7 +129098,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18620 + - uid: 18621 components: - rot: 1.5707963267948966 rad pos: 2.5,1.5 @@ -143870,14 +129106,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18621 + - uid: 18622 components: - pos: 10.5,-0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18622 + - uid: 18623 components: - rot: 1.5707963267948966 rad pos: -9.5,-39.5 @@ -143885,21 +129121,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18623 + - uid: 18624 components: - pos: 15.5,17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18624 + - uid: 18625 components: - pos: 0.5,17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18625 + - uid: 18626 components: - rot: 3.141592653589793 rad pos: -7.5,8.5 @@ -143907,7 +129143,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18626 + - uid: 18627 components: - rot: -1.5707963267948966 rad pos: -20.5,-84.5 @@ -143915,7 +129151,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18627 + - uid: 18628 components: - rot: 3.141592653589793 rad pos: 15.5,-43.5 @@ -143923,7 +129159,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18628 + - uid: 18629 components: - rot: 1.5707963267948966 rad pos: 14.5,-32.5 @@ -143931,7 +129167,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18629 + - uid: 18630 components: - rot: 3.141592653589793 rad pos: 21.5,-30.5 @@ -143939,7 +129175,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18630 + - uid: 18631 components: - rot: 1.5707963267948966 rad pos: 15.5,-23.5 @@ -143947,7 +129183,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18631 + - uid: 18632 components: - rot: 1.5707963267948966 rad pos: 14.5,-30.5 @@ -143955,14 +129191,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18632 + - uid: 18633 components: - pos: 22.5,-30.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18633 + - uid: 18634 components: - rot: 3.141592653589793 rad pos: -8.5,-25.5 @@ -143970,7 +129206,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18634 + - uid: 18635 components: - rot: -1.5707963267948966 rad pos: 15.5,-25.5 @@ -143978,7 +129214,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18635 + - uid: 18636 components: - rot: -1.5707963267948966 rad pos: 15.5,-22.5 @@ -143986,7 +129222,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18636 + - uid: 18637 components: - rot: -1.5707963267948966 rad pos: -0.5,-46.5 @@ -143994,14 +129230,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18637 + - uid: 18638 components: - pos: 0.5,11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18638 + - uid: 18639 components: - rot: -1.5707963267948966 rad pos: -3.5,-11.5 @@ -144009,7 +129245,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18639 + - uid: 18640 components: - rot: 1.5707963267948966 rad pos: -5.5,-10.5 @@ -144017,7 +129253,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18640 + - uid: 18641 components: - rot: -1.5707963267948966 rad pos: 36.5,-31.5 @@ -144025,14 +129261,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18641 + - uid: 18642 components: - pos: -5.5,7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18642 + - uid: 18643 components: - rot: 1.5707963267948966 rad pos: -4.5,13.5 @@ -144042,7 +129278,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18643 + - uid: 18644 components: - rot: 3.141592653589793 rad pos: -0.5,-14.5 @@ -144050,7 +129286,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18644 + - uid: 18645 components: - rot: -1.5707963267948966 rad pos: -3.5,-12.5 @@ -144058,14 +129294,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18645 + - uid: 18646 components: - pos: -20.5,-88.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18646 + - uid: 18647 components: - rot: -1.5707963267948966 rad pos: 10.5,3.5 @@ -144073,7 +129309,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18647 + - uid: 18648 components: - rot: 1.5707963267948966 rad pos: -11.5,-22.5 @@ -144081,7 +129317,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18648 + - uid: 18649 components: - rot: 3.141592653589793 rad pos: 44.5,-24.5 @@ -144089,7 +129325,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18649 + - uid: 18650 components: - rot: 1.5707963267948966 rad pos: 34.5,3.5 @@ -144097,7 +129333,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18650 + - uid: 18651 components: - rot: 3.141592653589793 rad pos: -19.5,-61.5 @@ -144105,14 +129341,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18651 + - uid: 18652 components: - pos: -5.5,1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18652 + - uid: 18653 components: - rot: 3.141592653589793 rad pos: -8.5,-1.5 @@ -144120,7 +129356,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18653 + - uid: 18654 components: - rot: -1.5707963267948966 rad pos: -11.5,-39.5 @@ -144128,7 +129364,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18654 + - uid: 18655 components: - rot: 3.141592653589793 rad pos: 5.5,17.5 @@ -144136,7 +129372,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18655 + - uid: 18656 components: - rot: 3.141592653589793 rad pos: -2.5,-53.5 @@ -144144,7 +129380,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18656 + - uid: 18657 components: - rot: -1.5707963267948966 rad pos: 21.5,-14.5 @@ -144152,7 +129388,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18657 + - uid: 18658 components: - rot: 3.141592653589793 rad pos: 31.5,-18.5 @@ -144160,7 +129396,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18658 + - uid: 18659 components: - rot: -1.5707963267948966 rad pos: -18.5,-64.5 @@ -144168,7 +129404,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18659 + - uid: 18660 components: - rot: 1.5707963267948966 rad pos: 21.5,-16.5 @@ -144176,7 +129412,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18660 + - uid: 18661 components: - rot: -1.5707963267948966 rad pos: 20.5,-41.5 @@ -144184,7 +129420,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18661 + - uid: 18662 components: - rot: -1.5707963267948966 rad pos: 10.5,8.5 @@ -144192,7 +129428,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18662 + - uid: 18663 components: - rot: -1.5707963267948966 rad pos: 11.5,11.5 @@ -144200,35 +129436,35 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18663 + - uid: 18664 components: - pos: -22.5,-89.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18664 + - uid: 18665 components: - pos: 26.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18665 + - uid: 18666 components: - pos: 10.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18666 + - uid: 18667 components: - pos: 9.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18667 + - uid: 18668 components: - rot: 3.141592653589793 rad pos: 14.5,-41.5 @@ -144236,14 +129472,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18668 + - uid: 18669 components: - pos: 5.5,16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18669 + - uid: 18670 components: - rot: 1.5707963267948966 rad pos: -24.5,-88.5 @@ -144251,7 +129487,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18670 + - uid: 18671 components: - rot: -1.5707963267948966 rad pos: 24.5,-24.5 @@ -144259,35 +129495,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18671 + - uid: 18672 components: - pos: 7.5,19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18672 + - uid: 18673 components: - pos: -3.5,-1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18673 + - uid: 18674 components: - pos: -19.5,-57.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18674 + - uid: 18675 components: - pos: 41.5,-26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18675 + - uid: 18676 components: - rot: 3.141592653589793 rad pos: 41.5,-25.5 @@ -144295,7 +129531,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18676 + - uid: 18677 components: - rot: 1.5707963267948966 rad pos: 36.5,-25.5 @@ -144303,7 +129539,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18677 + - uid: 18678 components: - rot: 1.5707963267948966 rad pos: 34.5,-26.5 @@ -144311,14 +129547,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18678 + - uid: 18679 components: - pos: -27.5,-77.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18679 + - uid: 18680 components: - rot: 3.141592653589793 rad pos: -25.5,-77.5 @@ -144326,7 +129562,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18680 + - uid: 18681 components: - rot: -1.5707963267948966 rad pos: -23.5,-85.5 @@ -144334,7 +129570,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18681 + - uid: 18682 components: - rot: 1.5707963267948966 rad pos: -18.5,-72.5 @@ -144342,7 +129578,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18682 + - uid: 18683 components: - rot: -1.5707963267948966 rad pos: -18.5,-73.5 @@ -144350,7 +129586,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18683 + - uid: 18684 components: - rot: -1.5707963267948966 rad pos: -20.5,-72.5 @@ -144358,7 +129594,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18684 + - uid: 18685 components: - rot: -1.5707963267948966 rad pos: -20.5,-69.5 @@ -144366,7 +129602,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18685 + - uid: 18686 components: - rot: 1.5707963267948966 rad pos: -20.5,-75.5 @@ -144374,7 +129610,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18686 + - uid: 18687 components: - rot: 1.5707963267948966 rad pos: -20.5,-70.5 @@ -144382,7 +129618,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18687 + - uid: 18688 components: - rot: -1.5707963267948966 rad pos: -18.5,-71.5 @@ -144390,7 +129626,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18688 + - uid: 18689 components: - rot: -1.5707963267948966 rad pos: -21.5,-89.5 @@ -144398,7 +129634,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18689 + - uid: 18690 components: - rot: -1.5707963267948966 rad pos: -18.5,-67.5 @@ -144406,7 +129642,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18690 + - uid: 18691 components: - rot: 1.5707963267948966 rad pos: -20.5,-66.5 @@ -144414,7 +129650,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18691 + - uid: 18692 components: - rot: 1.5707963267948966 rad pos: -20.5,-63.5 @@ -144422,14 +129658,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18692 + - uid: 18693 components: - pos: -18.5,-60.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18693 + - uid: 18694 components: - rot: 1.5707963267948966 rad pos: 34.5,-23.5 @@ -144437,7 +129673,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18694 + - uid: 18695 components: - rot: 3.141592653589793 rad pos: 36.5,-43.5 @@ -144445,7 +129681,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18695 + - uid: 18696 components: - rot: 3.141592653589793 rad pos: 34.5,-41.5 @@ -144453,14 +129689,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18696 + - uid: 18697 components: - pos: 33.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18697 + - uid: 18698 components: - rot: 3.141592653589793 rad pos: 10.5,17.5 @@ -144468,7 +129704,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18698 + - uid: 18699 components: - rot: 3.141592653589793 rad pos: 11.5,16.5 @@ -144476,7 +129712,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18699 + - uid: 18700 components: - rot: -1.5707963267948966 rad pos: -9.5,-37.5 @@ -144484,7 +129720,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18700 + - uid: 18701 components: - rot: 1.5707963267948966 rad pos: -3.5,-14.5 @@ -144492,14 +129728,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18701 + - uid: 18702 components: - pos: 21.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18702 + - uid: 18703 components: - rot: 3.141592653589793 rad pos: 56.5,21.5 @@ -144507,14 +129743,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18703 + - uid: 18704 components: - pos: 40.5,10.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18704 + - uid: 18705 components: - rot: 1.5707963267948966 rad pos: 28.5,22.5 @@ -144522,7 +129758,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18705 + - uid: 18706 components: - rot: -1.5707963267948966 rad pos: 30.5,19.5 @@ -144530,21 +129766,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18706 + - uid: 18707 components: - pos: 42.5,15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18707 + - uid: 18708 components: - pos: 44.5,15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18708 + - uid: 18709 components: - rot: 3.141592653589793 rad pos: 45.5,14.5 @@ -144552,14 +129788,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18709 + - uid: 18710 components: - pos: 47.5,14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18710 + - uid: 18711 components: - rot: 3.141592653589793 rad pos: 47.5,15.5 @@ -144567,7 +129803,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18711 + - uid: 18712 components: - rot: -1.5707963267948966 rad pos: 49.5,15.5 @@ -144575,7 +129811,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18712 + - uid: 18713 components: - rot: -1.5707963267948966 rad pos: 50.5,14.5 @@ -144583,7 +129819,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18713 + - uid: 18714 components: - rot: -1.5707963267948966 rad pos: 50.5,19.5 @@ -144591,7 +129827,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18714 + - uid: 18715 components: - rot: 3.141592653589793 rad pos: 46.5,20.5 @@ -144599,7 +129835,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18715 + - uid: 18716 components: - rot: 3.141592653589793 rad pos: 53.5,21.5 @@ -144607,7 +129843,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18716 + - uid: 18717 components: - rot: -1.5707963267948966 rad pos: 58.5,20.5 @@ -144615,7 +129851,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18717 + - uid: 18718 components: - rot: 3.141592653589793 rad pos: 55.5,20.5 @@ -144623,7 +129859,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18718 + - uid: 18719 components: - rot: 3.141592653589793 rad pos: 52.5,20.5 @@ -144631,7 +129867,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18719 + - uid: 18720 components: - rot: -1.5707963267948966 rad pos: 59.5,21.5 @@ -144639,7 +129875,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18720 + - uid: 18721 components: - rot: 1.5707963267948966 rad pos: 59.5,18.5 @@ -144647,7 +129883,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18721 + - uid: 18722 components: - rot: 1.5707963267948966 rad pos: 59.5,15.5 @@ -144655,7 +129891,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18722 + - uid: 18723 components: - rot: 1.5707963267948966 rad pos: 58.5,16.5 @@ -144663,7 +129899,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18723 + - uid: 18724 components: - rot: 1.5707963267948966 rad pos: 58.5,19.5 @@ -144671,14 +129907,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18724 + - uid: 18725 components: - pos: 40.5,20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18725 + - uid: 18726 components: - rot: 3.141592653589793 rad pos: 45.5,20.5 @@ -144686,7 +129922,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18726 + - uid: 18727 components: - rot: 3.141592653589793 rad pos: 39.5,19.5 @@ -144694,7 +129930,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18727 + - uid: 18728 components: - rot: 3.141592653589793 rad pos: 40.5,0.5 @@ -144702,14 +129938,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18728 + - uid: 18729 components: - pos: 44.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18729 + - uid: 18730 components: - rot: 3.141592653589793 rad pos: 45.5,0.5 @@ -144717,21 +129953,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18730 + - uid: 18731 components: - pos: 53.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18731 + - uid: 18732 components: - pos: 52.5,1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18732 + - uid: 18733 components: - rot: 1.5707963267948966 rad pos: 53.5,-5.5 @@ -144739,7 +129975,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18733 + - uid: 18734 components: - rot: -1.5707963267948966 rad pos: 42.5,-1.5 @@ -144747,7 +129983,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18734 + - uid: 18735 components: - rot: 3.141592653589793 rad pos: 42.5,-2.5 @@ -144755,7 +129991,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18735 + - uid: 18736 components: - rot: -1.5707963267948966 rad pos: 41.5,10.5 @@ -144763,7 +129999,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18736 + - uid: 18737 components: - rot: -1.5707963267948966 rad pos: 42.5,9.5 @@ -144771,7 +130007,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18737 + - uid: 18738 components: - rot: -1.5707963267948966 rad pos: 26.5,-53.5 @@ -144779,7 +130015,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18738 + - uid: 18739 components: - rot: -1.5707963267948966 rad pos: 26.5,-56.5 @@ -144787,7 +130023,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18739 + - uid: 18740 components: - rot: 3.141592653589793 rad pos: 61.5,-6.5 @@ -144795,7 +130031,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18740 + - uid: 18741 components: - rot: -1.5707963267948966 rad pos: 63.5,-11.5 @@ -144803,7 +130039,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18741 + - uid: 18742 components: - rot: -1.5707963267948966 rad pos: 62.5,-39.5 @@ -144811,7 +130047,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18742 + - uid: 18743 components: - rot: 3.141592653589793 rad pos: 42.5,-41.5 @@ -144819,7 +130055,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18743 + - uid: 18744 components: - rot: 3.141592653589793 rad pos: 43.5,-43.5 @@ -144827,7 +130063,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18744 + - uid: 18745 components: - rot: 3.141592653589793 rad pos: 45.5,-43.5 @@ -144835,28 +130071,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18745 + - uid: 18746 components: - pos: 44.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18746 + - uid: 18747 components: - pos: 49.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18747 + - uid: 18748 components: - pos: 49.5,-43.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18748 + - uid: 18749 components: - rot: 3.141592653589793 rad pos: 49.5,-45.5 @@ -144864,21 +130100,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18749 + - uid: 18750 components: - pos: 50.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18750 + - uid: 18751 components: - pos: 56.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18751 + - uid: 18752 components: - rot: 3.141592653589793 rad pos: 56.5,-45.5 @@ -144886,7 +130122,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18752 + - uid: 18753 components: - rot: 3.141592653589793 rad pos: 55.5,-45.5 @@ -144894,7 +130130,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18753 + - uid: 18754 components: - rot: -1.5707963267948966 rad pos: 50.5,-46.5 @@ -144902,7 +130138,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18754 + - uid: 18755 components: - rot: 1.5707963267948966 rad pos: 49.5,-54.5 @@ -144910,7 +130146,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18755 + - uid: 18756 components: - rot: 1.5707963267948966 rad pos: 57.5,-44.5 @@ -144918,7 +130154,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18756 + - uid: 18757 components: - rot: -1.5707963267948966 rad pos: 63.5,-45.5 @@ -144926,7 +130162,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18757 + - uid: 18758 components: - rot: -1.5707963267948966 rad pos: 61.5,-44.5 @@ -144934,7 +130170,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18758 + - uid: 18759 components: - rot: 1.5707963267948966 rad pos: 63.5,-46.5 @@ -144942,7 +130178,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18759 + - uid: 18760 components: - rot: -1.5707963267948966 rad pos: 61.5,-46.5 @@ -144950,7 +130186,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18760 + - uid: 18761 components: - rot: 1.5707963267948966 rad pos: 60.5,-33.5 @@ -144958,14 +130194,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18761 + - uid: 18762 components: - pos: 60.5,-32.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18762 + - uid: 18763 components: - rot: -1.5707963267948966 rad pos: 63.5,-26.5 @@ -144975,7 +130211,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18763 + - uid: 18764 components: - rot: 1.5707963267948966 rad pos: 61.5,-24.5 @@ -144985,14 +130221,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18764 + - uid: 18765 components: - pos: 55.5,-11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18765 + - uid: 18766 components: - rot: 1.5707963267948966 rad pos: 60.5,-48.5 @@ -145000,7 +130236,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18766 + - uid: 18767 components: - rot: 1.5707963267948966 rad pos: 64.5,-47.5 @@ -145008,7 +130244,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18767 + - uid: 18768 components: - rot: 1.5707963267948966 rad pos: 50.5,-52.5 @@ -145016,7 +130252,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18768 + - uid: 18769 components: - rot: 3.141592653589793 rad pos: 29.5,-58.5 @@ -145024,7 +130260,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18769 + - uid: 18770 components: - rot: 3.141592653589793 rad pos: 32.5,-60.5 @@ -145032,7 +130268,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18770 + - uid: 18771 components: - rot: 1.5707963267948966 rad pos: 29.5,-56.5 @@ -145040,7 +130276,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18771 + - uid: 18772 components: - rot: 1.5707963267948966 rad pos: 29.5,-52.5 @@ -145048,7 +130284,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18772 + - uid: 18773 components: - rot: 1.5707963267948966 rad pos: 32.5,-56.5 @@ -145056,7 +130292,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18773 + - uid: 18774 components: - rot: -1.5707963267948966 rad pos: 34.5,-48.5 @@ -145064,14 +130300,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18774 + - uid: 18775 components: - pos: 32.5,-52.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18775 + - uid: 18776 components: - rot: -1.5707963267948966 rad pos: 34.5,-49.5 @@ -145079,19 +130315,19 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18776 + - uid: 18777 components: - rot: -1.5707963267948966 rad pos: 51.5,-58.5 parent: 2 type: Transform - - uid: 18777 + - uid: 18778 components: - rot: -1.5707963267948966 rad pos: 48.5,-58.5 parent: 2 type: Transform - - uid: 18778 + - uid: 18779 components: - rot: 1.5707963267948966 rad pos: 49.5,-61.5 @@ -145099,14 +130335,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18779 + - uid: 18780 components: - pos: -19.5,7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18780 + - uid: 18781 components: - rot: 3.141592653589793 rad pos: -13.5,1.5 @@ -145114,7 +130350,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18781 + - uid: 18782 components: - rot: 3.141592653589793 rad pos: -14.5,1.5 @@ -145122,14 +130358,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18782 + - uid: 18783 components: - pos: -13.5,7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18783 + - uid: 18784 components: - rot: 1.5707963267948966 rad pos: -20.5,-27.5 @@ -145137,7 +130373,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18784 + - uid: 18785 components: - rot: -1.5707963267948966 rad pos: -18.5,-19.5 @@ -145145,7 +130381,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18785 + - uid: 18786 components: - rot: -1.5707963267948966 rad pos: -20.5,-22.5 @@ -145153,7 +130389,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18786 + - uid: 18787 components: - rot: -1.5707963267948966 rad pos: -18.5,-21.5 @@ -145161,7 +130397,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18787 + - uid: 18788 components: - rot: 1.5707963267948966 rad pos: -20.5,-14.5 @@ -145169,7 +130405,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18788 + - uid: 18789 components: - rot: -1.5707963267948966 rad pos: -20.5,-13.5 @@ -145177,7 +130413,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18789 + - uid: 18790 components: - rot: -1.5707963267948966 rad pos: -18.5,-10.5 @@ -145185,14 +130421,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18790 + - uid: 18791 components: - pos: -23.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18791 + - uid: 18792 components: - rot: 3.141592653589793 rad pos: -24.5,-10.5 @@ -145200,21 +130436,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18792 + - uid: 18793 components: - pos: -24.5,-13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18793 + - uid: 18794 components: - pos: -28.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18794 + - uid: 18795 components: - rot: 3.141592653589793 rad pos: -28.5,-13.5 @@ -145222,14 +130458,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18795 + - uid: 18796 components: - pos: -25.5,-13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18796 + - uid: 18797 components: - rot: 3.141592653589793 rad pos: -28.5,-17.5 @@ -145237,7 +130473,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18797 + - uid: 18798 components: - rot: 1.5707963267948966 rad pos: -18.5,-42.5 @@ -145245,7 +130481,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18798 + - uid: 18799 components: - rot: -1.5707963267948966 rad pos: 38.5,-58.5 @@ -145253,7 +130489,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18799 + - uid: 18800 components: - rot: -1.5707963267948966 rad pos: 40.5,-60.5 @@ -145261,7 +130497,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18800 + - uid: 18801 components: - rot: 1.5707963267948966 rad pos: 38.5,-63.5 @@ -145269,7 +130505,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18801 + - uid: 18802 components: - rot: -1.5707963267948966 rad pos: 40.5,-65.5 @@ -145277,7 +130513,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18802 + - uid: 18803 components: - rot: 3.141592653589793 rad pos: -18.5,6.5 @@ -145285,7 +130521,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18803 + - uid: 18804 components: - rot: 3.141592653589793 rad pos: -20.5,7.5 @@ -145293,7 +130529,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18804 + - uid: 18805 components: - rot: 1.5707963267948966 rad pos: -31.5,-13.5 @@ -145301,7 +130537,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18805 + - uid: 18806 components: - rot: -1.5707963267948966 rad pos: -18.5,-31.5 @@ -145309,7 +130545,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18806 + - uid: 18807 components: - rot: 1.5707963267948966 rad pos: -20.5,-41.5 @@ -145317,7 +130553,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18807 + - uid: 18808 components: - rot: 1.5707963267948966 rad pos: -18.5,-43.5 @@ -145325,7 +130561,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18808 + - uid: 18809 components: - rot: 1.5707963267948966 rad pos: -20.5,-43.5 @@ -145333,14 +130569,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18809 + - uid: 18810 components: - pos: 48.5,-73.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18810 + - uid: 18811 components: - rot: 1.5707963267948966 rad pos: 40.5,-71.5 @@ -145348,7 +130584,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18811 + - uid: 18812 components: - rot: -1.5707963267948966 rad pos: 38.5,-71.5 @@ -145356,7 +130592,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18812 + - uid: 18813 components: - rot: -1.5707963267948966 rad pos: 29.5,-83.5 @@ -145364,21 +130600,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18813 + - uid: 18814 components: - pos: 47.5,-72.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18814 + - uid: 18815 components: - pos: -29.5,-16.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18815 + - uid: 18816 components: - rot: 1.5707963267948966 rad pos: -32.5,-16.5 @@ -145386,7 +130622,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18816 + - uid: 18817 components: - rot: 1.5707963267948966 rad pos: -31.5,-17.5 @@ -145394,7 +130630,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18817 + - uid: 18818 components: - rot: -1.5707963267948966 rad pos: -32.5,-17.5 @@ -145402,7 +130638,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18818 + - uid: 18819 components: - rot: -1.5707963267948966 rad pos: -31.5,-15.5 @@ -145410,7 +130646,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18819 + - uid: 18820 components: - rot: 1.5707963267948966 rad pos: -32.5,-25.5 @@ -145418,7 +130654,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18820 + - uid: 18821 components: - rot: -1.5707963267948966 rad pos: -31.5,-27.5 @@ -145426,7 +130662,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18821 + - uid: 18822 components: - rot: 3.141592653589793 rad pos: -35.5,-10.5 @@ -145434,14 +130670,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18822 + - uid: 18823 components: - pos: -36.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18823 + - uid: 18824 components: - rot: 1.5707963267948966 rad pos: 42.5,6.5 @@ -145449,7 +130685,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18824 + - uid: 18825 components: - rot: -1.5707963267948966 rad pos: -24.5,-2.5 @@ -145457,7 +130693,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18825 + - uid: 18826 components: - rot: -1.5707963267948966 rad pos: -24.5,0.5 @@ -145465,7 +130701,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18826 + - uid: 18827 components: - rot: -1.5707963267948966 rad pos: -26.5,1.5 @@ -145473,7 +130709,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18827 + - uid: 18828 components: - rot: -1.5707963267948966 rad pos: -18.5,12.5 @@ -145481,7 +130717,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18828 + - uid: 18829 components: - rot: 1.5707963267948966 rad pos: -51.5,-24.5 @@ -145489,7 +130725,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18829 + - uid: 18830 components: - rot: 3.141592653589793 rad pos: -52.5,-17.5 @@ -145497,21 +130733,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18830 + - uid: 18831 components: - pos: -32.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18831 + - uid: 18832 components: - pos: -46.5,-5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18832 + - uid: 18833 components: - rot: 3.141592653589793 rad pos: -47.5,-6.5 @@ -145519,7 +130755,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18833 + - uid: 18834 components: - rot: -1.5707963267948966 rad pos: -53.5,-13.5 @@ -145527,7 +130763,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18834 + - uid: 18835 components: - rot: -1.5707963267948966 rad pos: -52.5,-16.5 @@ -145535,7 +130771,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18835 + - uid: 18836 components: - rot: 1.5707963267948966 rad pos: -53.5,-19.5 @@ -145543,7 +130779,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18836 + - uid: 18837 components: - rot: -1.5707963267948966 rad pos: -50.5,-23.5 @@ -145551,7 +130787,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18837 + - uid: 18838 components: - rot: 3.141592653589793 rad pos: -59.5,-25.5 @@ -145559,21 +130795,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18838 + - uid: 18839 components: - pos: -56.5,-23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18839 + - uid: 18840 components: - pos: -68.5,-23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18840 + - uid: 18841 components: - rot: 1.5707963267948966 rad pos: -68.5,-27.5 @@ -145581,14 +130817,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18841 + - uid: 18842 components: - pos: -64.5,-25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18842 + - uid: 18843 components: - rot: -1.5707963267948966 rad pos: -64.5,-27.5 @@ -145596,7 +130832,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18843 + - uid: 18844 components: - rot: 3.141592653589793 rad pos: -43.5,-55.5 @@ -145604,7 +130840,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 18844 + - uid: 18845 components: - rot: -1.5707963267948966 rad pos: -42.5,-53.5 @@ -145612,7 +130848,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 18845 + - uid: 18846 components: - rot: 3.141592653589793 rad pos: -40.5,-55.5 @@ -145622,7 +130858,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18846 + - uid: 18847 components: - rot: 1.5707963267948966 rad pos: -44.5,-41.5 @@ -145632,7 +130868,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18847 + - uid: 18848 components: - rot: -1.5707963267948966 rad pos: -42.5,-41.5 @@ -145640,7 +130876,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 18848 + - uid: 18849 components: - rot: 3.141592653589793 rad pos: -37.5,-57.5 @@ -145650,7 +130886,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18849 + - uid: 18850 components: - rot: -1.5707963267948966 rad pos: -37.5,-51.5 @@ -145660,7 +130896,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18850 + - uid: 18851 components: - rot: 1.5707963267948966 rad pos: -40.5,-51.5 @@ -145670,7 +130906,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18851 + - uid: 18852 components: - rot: 1.5707963267948966 rad pos: -40.5,-50.5 @@ -145680,7 +130916,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18852 + - uid: 18853 components: - rot: 1.5707963267948966 rad pos: -40.5,-49.5 @@ -145690,7 +130926,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18853 + - uid: 18854 components: - rot: -1.5707963267948966 rad pos: -37.5,-49.5 @@ -145700,7 +130936,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18854 + - uid: 18855 components: - rot: -1.5707963267948966 rad pos: -37.5,-50.5 @@ -145710,7 +130946,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18855 + - uid: 18856 components: - pos: -38.5,-57.5 parent: 2 @@ -145719,7 +130955,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18856 + - uid: 18857 components: - rot: 3.141592653589793 rad pos: -38.5,-48.5 @@ -145729,14 +130965,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18857 + - uid: 18858 components: - pos: -33.5,-33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18858 + - uid: 18859 components: - rot: 3.141592653589793 rad pos: -30.5,-34.5 @@ -145744,7 +130980,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18859 + - uid: 18860 components: - rot: 1.5707963267948966 rad pos: -32.5,-37.5 @@ -145752,7 +130988,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18860 + - uid: 18861 components: - rot: -1.5707963267948966 rad pos: -31.5,-39.5 @@ -145760,7 +130996,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18861 + - uid: 18862 components: - rot: 3.141592653589793 rad pos: -35.5,-55.5 @@ -145768,7 +131004,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18862 + - uid: 18863 components: - rot: 1.5707963267948966 rad pos: -35.5,-53.5 @@ -145776,7 +131012,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18863 + - uid: 18864 components: - rot: -1.5707963267948966 rad pos: -35.5,-44.5 @@ -145784,7 +131020,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18864 + - uid: 18865 components: - rot: 1.5707963267948966 rad pos: -34.5,-43.5 @@ -145792,7 +131028,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18865 + - uid: 18866 components: - rot: 1.5707963267948966 rad pos: -34.5,-45.5 @@ -145800,7 +131036,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18866 + - uid: 18867 components: - rot: 1.5707963267948966 rad pos: -34.5,-44.5 @@ -145808,7 +131044,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18867 + - uid: 18868 components: - rot: -1.5707963267948966 rad pos: -34.5,-42.5 @@ -145816,7 +131052,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18868 + - uid: 18869 components: - rot: -1.5707963267948966 rad pos: -23.5,-60.5 @@ -145826,21 +131062,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18869 + - uid: 18870 components: - pos: -27.5,-69.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18870 + - uid: 18871 components: - pos: -40.5,-71.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18871 + - uid: 18872 components: - rot: 3.141592653589793 rad pos: -29.5,-71.5 @@ -145848,14 +131084,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18872 + - uid: 18873 components: - pos: -30.5,-69.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18873 + - uid: 18874 components: - rot: -1.5707963267948966 rad pos: -42.5,-71.5 @@ -145863,7 +131099,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18874 + - uid: 18875 components: - rot: 1.5707963267948966 rad pos: -23.5,-58.5 @@ -145873,7 +131109,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18875 + - uid: 18876 components: - rot: -1.5707963267948966 rad pos: -20.5,13.5 @@ -145881,7 +131117,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18876 + - uid: 18877 components: - rot: 1.5707963267948966 rad pos: -20.5,16.5 @@ -145889,7 +131125,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18877 + - uid: 18878 components: - rot: -1.5707963267948966 rad pos: -18.5,19.5 @@ -145897,7 +131133,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18878 + - uid: 18879 components: - rot: -1.5707963267948966 rad pos: -20.5,20.5 @@ -145905,7 +131141,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18879 + - uid: 18880 components: - rot: -1.5707963267948966 rad pos: -18.5,23.5 @@ -145913,28 +131149,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18880 + - uid: 18881 components: - pos: -24.5,23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18881 + - uid: 18882 components: - pos: -23.5,20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18882 + - uid: 18883 components: - pos: -28.5,23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18883 + - uid: 18884 components: - rot: 3.141592653589793 rad pos: -28.5,20.5 @@ -145944,7 +131180,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18884 + - uid: 18885 components: - rot: 3.141592653589793 rad pos: -40.5,23.5 @@ -145952,7 +131188,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18885 + - uid: 18886 components: - rot: 3.141592653589793 rad pos: -41.5,20.5 @@ -145960,7 +131196,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18886 + - uid: 18887 components: - rot: 1.5707963267948966 rad pos: -40.5,30.5 @@ -145968,7 +131204,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18887 + - uid: 18888 components: - rot: 1.5707963267948966 rad pos: -41.5,29.5 @@ -145976,7 +131212,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18888 + - uid: 18889 components: - rot: 3.141592653589793 rad pos: -44.5,33.5 @@ -145984,28 +131220,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18889 + - uid: 18890 components: - pos: -49.5,33.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18890 + - uid: 18891 components: - pos: -28.5,1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18891 + - uid: 18892 components: - pos: -29.5,0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18892 + - uid: 18893 components: - rot: 3.141592653589793 rad pos: -37.5,1.5 @@ -146013,7 +131249,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18893 + - uid: 18894 components: - rot: 3.141592653589793 rad pos: -38.5,0.5 @@ -146021,7 +131257,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18894 + - uid: 18895 components: - rot: 1.5707963267948966 rad pos: -38.5,3.5 @@ -146029,7 +131265,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18895 + - uid: 18896 components: - rot: -1.5707963267948966 rad pos: -37.5,5.5 @@ -146037,7 +131273,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18896 + - uid: 18897 components: - rot: 1.5707963267948966 rad pos: -37.5,8.5 @@ -146045,7 +131281,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18897 + - uid: 18898 components: - rot: -1.5707963267948966 rad pos: -38.5,8.5 @@ -146053,21 +131289,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18898 + - uid: 18899 components: - pos: -39.5,0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18899 + - uid: 18900 components: - pos: -41.5,1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18900 + - uid: 18901 components: - rot: -1.5707963267948966 rad pos: -30.5,14.5 @@ -146075,7 +131311,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18901 + - uid: 18902 components: - rot: -1.5707963267948966 rad pos: -29.5,13.5 @@ -146083,7 +131319,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18902 + - uid: 18903 components: - rot: 1.5707963267948966 rad pos: -47.5,0.5 @@ -146091,7 +131327,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18903 + - uid: 18904 components: - rot: 1.5707963267948966 rad pos: -45.5,1.5 @@ -146099,7 +131335,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18904 + - uid: 18905 components: - rot: -1.5707963267948966 rad pos: -47.5,3.5 @@ -146107,14 +131343,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18905 + - uid: 18906 components: - pos: -47.5,10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18906 + - uid: 18907 components: - rot: 3.141592653589793 rad pos: -46.5,10.5 @@ -146122,7 +131358,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18907 + - uid: 18908 components: - rot: 3.141592653589793 rad pos: -51.5,10.5 @@ -146130,7 +131366,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18908 + - uid: 18909 components: - rot: 1.5707963267948966 rad pos: -52.5,10.5 @@ -146138,7 +131374,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18909 + - uid: 18910 components: - rot: 1.5707963267948966 rad pos: -45.5,6.5 @@ -146146,7 +131382,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18910 + - uid: 18911 components: - rot: -1.5707963267948966 rad pos: -45.5,7.5 @@ -146154,7 +131390,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18911 + - uid: 18912 components: - rot: 3.141592653589793 rad pos: -51.5,11.5 @@ -146162,7 +131398,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18912 + - uid: 18913 components: - rot: 1.5707963267948966 rad pos: -20.5,25.5 @@ -146170,7 +131406,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18913 + - uid: 18914 components: - rot: 1.5707963267948966 rad pos: -18.5,24.5 @@ -146178,7 +131414,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18914 + - uid: 18915 components: - rot: 3.141592653589793 rad pos: -4.5,-41.5 @@ -146186,14 +131422,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18915 + - uid: 18916 components: - pos: -4.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18916 + - uid: 18917 components: - rot: 1.5707963267948966 rad pos: -26.5,-4.5 @@ -146201,7 +131437,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18917 + - uid: 18918 components: - rot: -1.5707963267948966 rad pos: 25.5,-52.5 @@ -146209,7 +131445,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18918 + - uid: 18919 components: - rot: 3.141592653589793 rad pos: 44.5,19.5 @@ -146217,7 +131453,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18919 + - uid: 18920 components: - rot: 1.5707963267948966 rad pos: 54.5,43.5 @@ -146225,7 +131461,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18920 + - uid: 18921 components: - rot: -1.5707963267948966 rad pos: 52.5,43.5 @@ -146233,7 +131469,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18921 + - uid: 18922 components: - rot: -1.5707963267948966 rad pos: 54.5,50.5 @@ -146241,7 +131477,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18922 + - uid: 18923 components: - rot: -1.5707963267948966 rad pos: 52.5,49.5 @@ -146249,7 +131485,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18923 + - uid: 18924 components: - rot: 1.5707963267948966 rad pos: -16.5,34.5 @@ -146257,7 +131493,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18924 + - uid: 18925 components: - rot: 1.5707963267948966 rad pos: -15.5,33.5 @@ -146265,7 +131501,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18925 + - uid: 18926 components: - rot: 1.5707963267948966 rad pos: -16.5,39.5 @@ -146273,7 +131509,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18926 + - uid: 18927 components: - rot: 1.5707963267948966 rad pos: -15.5,38.5 @@ -146281,7 +131517,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18927 + - uid: 18928 components: - rot: 1.5707963267948966 rad pos: -16.5,46.5 @@ -146289,7 +131525,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18928 + - uid: 18929 components: - rot: 3.141592653589793 rad pos: -14.5,44.5 @@ -146297,7 +131533,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18929 + - uid: 18930 components: - rot: 3.141592653589793 rad pos: 40.5,46.5 @@ -146305,14 +131541,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18930 + - uid: 18931 components: - pos: 40.5,45.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18931 + - uid: 18932 components: - rot: 1.5707963267948966 rad pos: -1.5,61.5 @@ -146320,7 +131556,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18932 + - uid: 18933 components: - rot: 1.5707963267948966 rad pos: -2.5,62.5 @@ -146328,7 +131564,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18933 + - uid: 18934 components: - rot: 3.141592653589793 rad pos: -1.5,59.5 @@ -146336,7 +131572,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18934 + - uid: 18935 components: - rot: -1.5707963267948966 rad pos: 1.5,46.5 @@ -146344,7 +131580,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18935 + - uid: 18936 components: - rot: 1.5707963267948966 rad pos: -0.5,48.5 @@ -146352,35 +131588,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18936 + - uid: 18937 components: - pos: -17.5,50.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18937 + - uid: 18938 components: - pos: -16.5,51.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18938 + - uid: 18939 components: - pos: -21.5,50.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18939 + - uid: 18940 components: - pos: -20.5,51.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18940 + - uid: 18941 components: - rot: -1.5707963267948966 rad pos: -21.5,58.5 @@ -146388,7 +131624,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18941 + - uid: 18942 components: - rot: 1.5707963267948966 rad pos: -22.5,60.5 @@ -146396,7 +131632,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18942 + - uid: 18943 components: - rot: 1.5707963267948966 rad pos: -22.5,61.5 @@ -146404,7 +131640,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18943 + - uid: 18944 components: - rot: 1.5707963267948966 rad pos: -21.5,62.5 @@ -146412,7 +131648,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18944 + - uid: 18945 components: - rot: 3.141592653589793 rad pos: -17.5,62.5 @@ -146422,7 +131658,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18945 + - uid: 18946 components: - pos: -17.5,61.5 parent: 2 @@ -146431,7 +131667,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18946 + - uid: 18947 components: - rot: 1.5707963267948966 rad pos: -22.5,66.5 @@ -146439,7 +131675,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18947 + - uid: 18948 components: - rot: -1.5707963267948966 rad pos: -13.5,62.5 @@ -146447,7 +131683,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18948 + - uid: 18949 components: - rot: -1.5707963267948966 rad pos: -12.5,61.5 @@ -146455,7 +131691,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18949 + - uid: 18950 components: - rot: -1.5707963267948966 rad pos: -12.5,60.5 @@ -146463,7 +131699,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18950 + - uid: 18951 components: - rot: 1.5707963267948966 rad pos: -13.5,58.5 @@ -146471,7 +131707,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18951 + - uid: 18952 components: - rot: -1.5707963267948966 rad pos: -13.5,66.5 @@ -146479,7 +131715,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18952 + - uid: 18953 components: - rot: 1.5707963267948966 rad pos: -12.5,59.5 @@ -146487,7 +131723,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18953 + - uid: 18954 components: - rot: 1.5707963267948966 rad pos: -13.5,57.5 @@ -146495,7 +131731,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18954 + - uid: 18955 components: - rot: 3.141592653589793 rad pos: -2.5,58.5 @@ -146503,7 +131739,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18955 + - uid: 18956 components: - rot: 1.5707963267948966 rad pos: -0.5,56.5 @@ -146511,7 +131747,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18956 + - uid: 18957 components: - rot: -1.5707963267948966 rad pos: 1.5,57.5 @@ -146519,7 +131755,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18957 + - uid: 18958 components: - rot: 3.141592653589793 rad pos: 29.5,46.5 @@ -146527,14 +131763,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18958 + - uid: 18959 components: - pos: 29.5,45.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18959 + - uid: 18960 components: - rot: -1.5707963267948966 rad pos: -22.5,-96.5 @@ -146542,7 +131778,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18960 + - uid: 18961 components: - rot: -1.5707963267948966 rad pos: -20.5,-96.5 @@ -146550,7 +131786,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18961 + - uid: 18962 components: - rot: 3.141592653589793 rad pos: -20.5,-97.5 @@ -146558,7 +131794,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18962 + - uid: 18963 components: - rot: 3.141592653589793 rad pos: -21.5,-98.5 @@ -146566,7 +131802,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18963 + - uid: 18964 components: - rot: 3.141592653589793 rad pos: -8.5,-97.5 @@ -146574,7 +131810,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18964 + - uid: 18965 components: - rot: 3.141592653589793 rad pos: -7.5,-98.5 @@ -146582,7 +131818,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18965 + - uid: 18966 components: - rot: 1.5707963267948966 rad pos: -8.5,-91.5 @@ -146590,7 +131826,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18966 + - uid: 18967 components: - rot: 1.5707963267948966 rad pos: -7.5,-93.5 @@ -146598,7 +131834,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18967 + - uid: 18968 components: - rot: 3.141592653589793 rad pos: 65.5,-33.5 @@ -146606,14 +131842,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18968 + - uid: 18969 components: - pos: 65.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18969 + - uid: 18970 components: - rot: 3.141592653589793 rad pos: 67.5,-34.5 @@ -146621,14 +131857,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18970 + - uid: 18971 components: - pos: 73.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18971 + - uid: 18972 components: - rot: 3.141592653589793 rad pos: 73.5,-33.5 @@ -146636,7 +131872,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18972 + - uid: 18973 components: - rot: -1.5707963267948966 rad pos: 75.5,-40.5 @@ -146644,7 +131880,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18973 + - uid: 18974 components: - rot: 1.5707963267948966 rad pos: 74.5,-41.5 @@ -146652,14 +131888,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18974 + - uid: 18975 components: - pos: 72.5,-48.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18975 + - uid: 18976 components: - rot: 1.5707963267948966 rad pos: 73.5,-47.5 @@ -146667,14 +131903,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18976 + - uid: 18977 components: - pos: 70.5,-47.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18977 + - uid: 18978 components: - rot: 1.5707963267948966 rad pos: 71.5,-46.5 @@ -146682,7 +131918,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18978 + - uid: 18979 components: - rot: -1.5707963267948966 rad pos: 75.5,-37.5 @@ -146690,7 +131926,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18979 + - uid: 18980 components: - rot: 3.141592653589793 rad pos: 74.5,-33.5 @@ -146698,13 +131934,13 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18980 + - uid: 18981 components: - rot: -1.5707963267948966 rad pos: -56.5,-60.5 parent: 2 type: Transform - - uid: 18981 + - uid: 18982 components: - rot: 1.5707963267948966 rad pos: 61.5,-38.5 @@ -146712,14 +131948,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18982 + - uid: 18983 components: - pos: 3.5,-27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18983 + - uid: 18984 components: - rot: 3.141592653589793 rad pos: 38.5,-72.5 @@ -146727,7 +131963,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18984 + - uid: 18985 components: - rot: 3.141592653589793 rad pos: 40.5,-73.5 @@ -146735,21 +131971,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18985 + - uid: 18986 components: - pos: -30.5,-71.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18986 + - uid: 18987 components: - pos: -28.5,-69.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18987 + - uid: 18988 components: - rot: -1.5707963267948966 rad pos: 30.5,-82.5 @@ -146757,75 +131993,77 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18988 + - uid: 18989 components: - pos: 30.5,-72.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18989 + - uid: 18990 components: - pos: 29.5,-73.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18990 + - uid: 18991 components: - pos: -44.5,31.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor + - nextSound: 1333.7600485 + type: EmitSoundOnCollide - proto: GasPort entities: - - uid: 18991 + - uid: 18992 components: - pos: 45.5,-58.5 parent: 2 type: Transform - - uid: 18992 + - uid: 18993 components: - rot: -1.5707963267948966 rad pos: 46.5,-59.5 parent: 2 type: Transform - - uid: 18993 + - uid: 18994 components: - rot: 3.141592653589793 rad pos: 45.5,-60.5 parent: 2 type: Transform - - uid: 18994 + - uid: 18995 components: - pos: 47.5,-56.5 parent: 2 type: Transform - - uid: 18995 + - uid: 18996 components: - pos: 50.5,-56.5 parent: 2 type: Transform - - uid: 18996 + - uid: 18997 components: - rot: 3.141592653589793 rad pos: 55.5,-61.5 parent: 2 type: Transform - - uid: 18997 + - uid: 18998 components: - rot: 1.5707963267948966 rad pos: 53.5,-59.5 parent: 2 type: Transform - - uid: 18998 + - uid: 18999 components: - rot: -1.5707963267948966 rad pos: 57.5,-59.5 parent: 2 type: Transform - - uid: 18999 + - uid: 19000 components: - name: scrubber to connector port type: MetaData @@ -146833,7 +132071,7 @@ entities: pos: 54.5,-60.5 parent: 2 type: Transform - - uid: 19000 + - uid: 19001 components: - rot: -1.5707963267948966 rad pos: -39.5,-49.5 @@ -146841,7 +132079,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 19001 + - uid: 19002 components: - rot: -1.5707963267948966 rad pos: -39.5,-50.5 @@ -146849,7 +132087,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 19002 + - uid: 19003 components: - rot: -1.5707963267948966 rad pos: -39.5,-51.5 @@ -146857,7 +132095,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 19003 + - uid: 19004 components: - rot: 1.5707963267948966 rad pos: -38.5,-49.5 @@ -146865,7 +132103,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 19004 + - uid: 19005 components: - rot: 1.5707963267948966 rad pos: -38.5,-50.5 @@ -146873,7 +132111,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 19005 + - uid: 19006 components: - rot: 1.5707963267948966 rad pos: -38.5,-51.5 @@ -146881,13 +132119,13 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 19006 + - uid: 19007 components: - rot: 3.141592653589793 rad pos: -24.5,-62.5 parent: 2 type: Transform - - uid: 19007 + - uid: 19008 components: - rot: 3.141592653589793 rad pos: -5.5,-65.5 @@ -146895,7 +132133,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19008 + - uid: 19009 components: - rot: -1.5707963267948966 rad pos: -33.5,-43.5 @@ -146903,7 +132141,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19009 + - uid: 19010 components: - rot: -1.5707963267948966 rad pos: -33.5,-44.5 @@ -146911,7 +132149,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19010 + - uid: 19011 components: - rot: -1.5707963267948966 rad pos: -33.5,-45.5 @@ -146919,18 +132157,18 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19011 + - uid: 19012 components: - pos: 70.5,38.5 parent: 2 type: Transform - - uid: 19012 + - uid: 19013 components: - rot: 1.5707963267948966 rad pos: -71.5,-43.5 parent: 2 type: Transform - - uid: 19013 + - uid: 19014 components: - rot: -1.5707963267948966 rad pos: 72.5,-37.5 @@ -146938,7 +132176,7 @@ entities: type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 19014 + - uid: 19015 components: - rot: -1.5707963267948966 rad pos: 72.5,-38.5 @@ -146946,7 +132184,7 @@ entities: type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 19015 + - uid: 19016 components: - rot: 3.141592653589793 rad pos: 71.5,-33.5 @@ -146954,7 +132192,7 @@ entities: type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 19016 + - uid: 19017 components: - rot: 3.141592653589793 rad pos: 72.5,-33.5 @@ -146962,18 +132200,18 @@ entities: type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 19017 + - uid: 19018 components: - rot: 1.5707963267948966 rad pos: -57.5,-58.5 parent: 2 type: Transform - - uid: 19018 + - uid: 19019 components: - pos: -54.5,-59.5 parent: 2 type: Transform - - uid: 19019 + - uid: 19020 components: - rot: 3.141592653589793 rad pos: -48.5,-38.5 @@ -146981,72 +132219,72 @@ entities: type: Transform - proto: GasPressurePump entities: - - uid: 19020 + - uid: 19021 components: - rot: 3.141592653589793 rad pos: 50.5,-57.5 parent: 2 type: Transform - - uid: 19021 + - uid: 19022 components: - pos: 47.5,-57.5 parent: 2 type: Transform - - uid: 19022 + - uid: 19023 components: - rot: 3.141592653589793 rad pos: 55.5,-60.5 parent: 2 type: Transform - - uid: 19023 + - uid: 19024 components: - rot: 1.5707963267948966 rad pos: 54.5,-59.5 parent: 2 type: Transform - - uid: 19024 + - uid: 19025 components: - rot: 1.5707963267948966 rad pos: -44.5,-53.5 parent: 2 type: Transform - - uid: 19025 + - uid: 19026 components: - rot: 1.5707963267948966 rad pos: -44.5,-55.5 parent: 2 type: Transform - - uid: 19026 + - uid: 19027 components: - rot: 1.5707963267948966 rad pos: -44.5,-51.5 parent: 2 type: Transform - - uid: 19027 + - uid: 19028 components: - rot: 1.5707963267948966 rad pos: -44.5,-49.5 parent: 2 type: Transform - - uid: 19028 + - uid: 19029 components: - rot: 1.5707963267948966 rad pos: -44.5,-47.5 parent: 2 type: Transform - - uid: 19029 + - uid: 19030 components: - rot: 1.5707963267948966 rad pos: -44.5,-45.5 parent: 2 type: Transform - - uid: 19030 + - uid: 19031 components: - rot: 1.5707963267948966 rad pos: -44.5,-43.5 parent: 2 type: Transform - - uid: 19031 + - uid: 19032 components: - rot: 1.5707963267948966 rad pos: -39.5,-55.5 @@ -147054,34 +132292,34 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19032 + - uid: 19033 components: - pos: -40.5,-54.5 parent: 2 type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - uid: 19033 + - uid: 19034 components: - rot: 3.141592653589793 rad pos: -42.5,-40.5 parent: 2 type: Transform - - uid: 19034 + - uid: 19035 components: - pos: -37.5,-54.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19035 + - uid: 19036 components: - pos: -38.5,-45.5 parent: 2 type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 19036 + - uid: 19037 components: - rot: 3.141592653589793 rad pos: -24.5,-61.5 @@ -147089,7 +132327,7 @@ entities: type: Transform - color: '#97C3FCCC' type: AtmosPipeColor - - uid: 19037 + - uid: 19038 components: - rot: 3.141592653589793 rad pos: -25.5,-59.5 @@ -147097,14 +132335,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19038 + - uid: 19039 components: - pos: -23.5,-59.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19039 + - uid: 19040 components: - rot: 3.141592653589793 rad pos: 72.5,-31.5 @@ -147112,19 +132350,19 @@ entities: type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 19040 + - uid: 19041 components: - pos: 71.5,-31.5 parent: 2 type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 19041 + - uid: 19042 components: - pos: -56.5,-59.5 parent: 2 type: Transform - - uid: 19042 + - uid: 19043 components: - rot: -1.5707963267948966 rad pos: 70.5,-38.5 @@ -147132,13 +132370,13 @@ entities: type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 19043 + - uid: 19044 components: - rot: 3.141592653589793 rad pos: -54.5,-60.5 parent: 2 type: Transform - - uid: 19044 + - uid: 19045 components: - rot: 1.5707963267948966 rad pos: 70.5,-37.5 @@ -147146,69 +132384,69 @@ entities: type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 19045 + - uid: 19046 components: - pos: -48.5,-37.5 parent: 2 type: Transform - proto: GasRecyclerMachineCircuitboard entities: - - uid: 19046 + - uid: 19047 components: - pos: 53.993114,35.55658 parent: 2 type: Transform - proto: GasThermoMachineFreezer entities: - - uid: 19047 + - uid: 19048 components: - pos: 51.5,-57.5 parent: 2 type: Transform - - uid: 19048 + - uid: 19049 components: - pos: 2.5,14.5 parent: 2 type: Transform - - uid: 19049 + - uid: 19050 components: - pos: -33.5,-52.5 parent: 2 type: Transform - - uid: 19050 + - uid: 19051 components: - pos: 2.5,68.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19051 + - uid: 19052 components: - pos: 2.5,70.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19052 + - uid: 19053 components: - pos: -5.5,68.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19053 + - uid: 19054 components: - pos: -5.5,70.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19054 + - uid: 19055 components: - pos: 53.5,-47.5 parent: 2 type: Transform - - uid: 19055 + - uid: 19056 components: - pos: -22.5,-61.5 parent: 2 @@ -147217,24 +132455,24 @@ entities: type: AtmosPipeColor - proto: GasThermoMachineHeater entities: - - uid: 19056 + - uid: 19057 components: - pos: 48.5,-57.5 parent: 2 type: Transform - - uid: 19057 + - uid: 19058 components: - pos: -33.5,-54.5 parent: 2 type: Transform - - uid: 19058 + - uid: 19059 components: - pos: -57.5,-59.5 parent: 2 type: Transform - proto: GasValve entities: - - uid: 19059 + - uid: 19060 components: - rot: -1.5707963267948966 rad pos: 56.5,-59.5 @@ -147244,7 +132482,7 @@ entities: type: GasValve - enabled: False type: AmbientSound - - uid: 19060 + - uid: 19061 components: - rot: 1.5707963267948966 rad pos: 53.5,-60.5 @@ -147254,14 +132492,14 @@ entities: type: GasValve - enabled: False type: AmbientSound - - uid: 19061 + - uid: 19062 components: - pos: -44.5,-40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19062 + - uid: 19063 components: - rot: -1.5707963267948966 rad pos: -43.5,-41.5 @@ -147269,7 +132507,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19063 + - uid: 19064 components: - pos: -40.5,-53.5 parent: 2 @@ -147280,7 +132518,7 @@ entities: type: AmbientSound - color: '#947507FF' type: AtmosPipeColor - - uid: 19064 + - uid: 19065 components: - rot: 3.141592653589793 rad pos: -38.5,-58.5 @@ -147292,7 +132530,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19065 + - uid: 19066 components: - pos: -37.5,-53.5 parent: 2 @@ -147303,7 +132541,7 @@ entities: type: AmbientSound - color: '#947507FF' type: AtmosPipeColor - - uid: 19066 + - uid: 19067 components: - pos: -38.5,-42.5 parent: 2 @@ -147314,7 +132552,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19067 + - uid: 19068 components: - rot: -1.5707963267948966 rad pos: -34.5,-53.5 @@ -147326,7 +132564,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19068 + - uid: 19069 components: - rot: 1.5707963267948966 rad pos: -34.5,-55.5 @@ -147338,7 +132576,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19069 + - uid: 19070 components: - pos: -48.5,-36.5 parent: 2 @@ -147349,7 +132587,7 @@ entities: type: AmbientSound - proto: GasVentPump entities: - - uid: 19070 + - uid: 19071 components: - rot: 1.5707963267948966 rad pos: -9.5,2.5 @@ -147359,7 +132597,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19071 + - uid: 19072 components: - pos: -1.5,-59.5 parent: 2 @@ -147368,7 +132606,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19072 + - uid: 19073 components: - rot: 3.141592653589793 rad pos: -14.5,-46.5 @@ -147378,7 +132616,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19073 + - uid: 19074 components: - pos: 25.5,-5.5 parent: 2 @@ -147387,7 +132625,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19074 + - uid: 19075 components: - rot: 1.5707963267948966 rad pos: -12.5,-39.5 @@ -147397,7 +132635,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19075 + - uid: 19076 components: - rot: 3.141592653589793 rad pos: -0.5,-65.5 @@ -147407,7 +132645,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19076 + - uid: 19077 components: - rot: 3.141592653589793 rad pos: -23.5,-86.5 @@ -147417,7 +132655,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19077 + - uid: 19078 components: - pos: 2.5,-26.5 parent: 2 @@ -147426,7 +132664,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19078 + - uid: 19079 components: - pos: 20.5,-40.5 parent: 2 @@ -147435,7 +132673,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19079 + - uid: 19080 components: - rot: -1.5707963267948966 rad pos: 6.5,16.5 @@ -147445,7 +132683,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19080 + - uid: 19081 components: - pos: 26.5,11.5 parent: 2 @@ -147454,7 +132692,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19081 + - uid: 19082 components: - rot: 1.5707963267948966 rad pos: 5.5,8.5 @@ -147464,7 +132702,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19082 + - uid: 19083 components: - rot: -1.5707963267948966 rad pos: -4.5,-14.5 @@ -147474,7 +132712,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19083 + - uid: 19084 components: - pos: -17.5,-57.5 parent: 2 @@ -147483,7 +132721,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19084 + - uid: 19085 components: - rot: -1.5707963267948966 rad pos: 32.5,10.5 @@ -147493,7 +132731,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19085 + - uid: 19086 components: - rot: 1.5707963267948966 rad pos: 16.5,13.5 @@ -147503,7 +132741,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19086 + - uid: 19087 components: - rot: -1.5707963267948966 rad pos: 45.5,-27.5 @@ -147513,7 +132751,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19087 + - uid: 19088 components: - rot: 1.5707963267948966 rad pos: 25.5,-35.5 @@ -147523,7 +132761,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19088 + - uid: 19089 components: - pos: 10.5,19.5 parent: 2 @@ -147532,7 +132770,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19089 + - uid: 19090 components: - rot: 1.5707963267948966 rad pos: 3.5,-4.5 @@ -147542,7 +132780,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19090 + - uid: 19091 components: - rot: -1.5707963267948966 rad pos: 29.5,10.5 @@ -147552,7 +132790,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19091 + - uid: 19092 components: - rot: 3.141592653589793 rad pos: 18.5,3.5 @@ -147562,7 +132800,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19092 + - uid: 19093 components: - rot: 3.141592653589793 rad pos: 1.5,-12.5 @@ -147572,7 +132810,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19093 + - uid: 19094 components: - rot: 1.5707963267948966 rad pos: 8.5,1.5 @@ -147582,7 +132820,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19094 + - uid: 19095 components: - rot: 1.5707963267948966 rad pos: 8.5,-9.5 @@ -147592,7 +132830,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19095 + - uid: 19096 components: - pos: 22.5,22.5 parent: 2 @@ -147601,7 +132839,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19096 + - uid: 19097 components: - rot: 3.141592653589793 rad pos: 15.5,16.5 @@ -147611,7 +132849,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19097 + - uid: 19098 components: - rot: 1.5707963267948966 rad pos: -0.5,17.5 @@ -147621,7 +132859,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19098 + - uid: 19099 components: - rot: 3.141592653589793 rad pos: 22.5,-37.5 @@ -147631,7 +132869,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19099 + - uid: 19100 components: - rot: -1.5707963267948966 rad pos: -10.5,-22.5 @@ -147641,7 +132879,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19100 + - uid: 19101 components: - rot: -1.5707963267948966 rad pos: -9.5,-6.5 @@ -147651,7 +132889,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19101 + - uid: 19102 components: - rot: 3.141592653589793 rad pos: -6.5,-65.5 @@ -147661,7 +132899,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19102 + - uid: 19103 components: - rot: 3.141592653589793 rad pos: -12.5,-65.5 @@ -147671,7 +132909,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19103 + - uid: 19104 components: - pos: -2.5,-52.5 parent: 2 @@ -147680,7 +132918,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19104 + - uid: 19105 components: - rot: 3.141592653589793 rad pos: 5.5,-45.5 @@ -147690,7 +132928,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19105 + - uid: 19106 components: - rot: 3.141592653589793 rad pos: -0.5,-47.5 @@ -147700,7 +132938,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19106 + - uid: 19107 components: - rot: -1.5707963267948966 rad pos: 9.5,-60.5 @@ -147710,7 +132948,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19107 + - uid: 19108 components: - rot: -1.5707963267948966 rad pos: 35.5,10.5 @@ -147720,7 +132958,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19108 + - uid: 19109 components: - rot: 1.5707963267948966 rad pos: -30.5,-80.5 @@ -147730,7 +132968,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19109 + - uid: 19110 components: - rot: 3.141592653589793 rad pos: 36.5,7.5 @@ -147740,7 +132978,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19110 + - uid: 19111 components: - rot: 3.141592653589793 rad pos: 11.5,9.5 @@ -147750,7 +132988,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19111 + - uid: 19112 components: - rot: 1.5707963267948966 rad pos: 9.5,3.5 @@ -147760,7 +132998,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19112 + - uid: 19113 components: - pos: 20.5,14.5 parent: 2 @@ -147769,7 +133007,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19113 + - uid: 19114 components: - pos: 5.5,19.5 parent: 2 @@ -147778,7 +133016,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19114 + - uid: 19115 components: - rot: 3.141592653589793 rad pos: 0.5,12.5 @@ -147788,7 +133026,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19115 + - uid: 19116 components: - pos: -24.5,-79.5 parent: 2 @@ -147797,7 +133035,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19116 + - uid: 19117 components: - rot: 3.141592653589793 rad pos: -18.5,-78.5 @@ -147807,7 +133045,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19117 + - uid: 19118 components: - rot: -1.5707963267948966 rad pos: 20.5,18.5 @@ -147817,7 +133055,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19118 + - uid: 19119 components: - pos: 17.5,20.5 parent: 2 @@ -147826,7 +133064,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19119 + - uid: 19120 components: - rot: 1.5707963267948966 rad pos: 33.5,5.5 @@ -147836,7 +133074,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19120 + - uid: 19121 components: - pos: -4.5,-40.5 parent: 2 @@ -147845,7 +133083,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19121 + - uid: 19122 components: - rot: 3.141592653589793 rad pos: -4.5,12.5 @@ -147855,7 +133093,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19122 + - uid: 19123 components: - pos: -29.5,-70.5 parent: 2 @@ -147864,7 +133102,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19123 + - uid: 19124 components: - rot: 1.5707963267948966 rad pos: -23.5,29.5 @@ -147874,7 +133112,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19124 + - uid: 19125 components: - pos: 47.5,-23.5 parent: 2 @@ -147883,7 +133121,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19125 + - uid: 19126 components: - rot: 1.5707963267948966 rad pos: 27.5,0.5 @@ -147893,7 +133131,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19126 + - uid: 19127 components: - pos: -7.5,9.5 parent: 2 @@ -147902,7 +133140,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19127 + - uid: 19128 components: - rot: -1.5707963267948966 rad pos: 15.5,-32.5 @@ -147912,7 +133150,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19128 + - uid: 19129 components: - rot: 1.5707963267948966 rad pos: 17.5,-12.5 @@ -147922,7 +133160,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19129 + - uid: 19130 components: - pos: 30.5,-17.5 parent: 2 @@ -147931,7 +133169,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19130 + - uid: 19131 components: - pos: -18.5,33.5 parent: 2 @@ -147940,7 +133178,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19131 + - uid: 19132 components: - rot: 3.141592653589793 rad pos: 36.5,4.5 @@ -147950,7 +133188,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19132 + - uid: 19133 components: - rot: -1.5707963267948966 rad pos: 27.5,-24.5 @@ -147960,7 +133198,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19133 + - uid: 19134 components: - rot: 3.141592653589793 rad pos: -24.5,-89.5 @@ -147970,7 +133208,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19134 + - uid: 19135 components: - rot: 1.5707963267948966 rad pos: -19.5,-64.5 @@ -147980,7 +133218,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19135 + - uid: 19136 components: - pos: 31.5,-14.5 parent: 2 @@ -147989,7 +133227,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19136 + - uid: 19137 components: - rot: -1.5707963267948966 rad pos: 42.5,-26.5 @@ -147999,7 +133237,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19137 + - uid: 19138 components: - rot: -1.5707963267948966 rad pos: -17.5,-72.5 @@ -148009,7 +133247,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19138 + - uid: 19139 components: - rot: 1.5707963267948966 rad pos: -19.5,-67.5 @@ -148019,7 +133257,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19139 + - uid: 19140 components: - rot: -1.5707963267948966 rad pos: -19.5,-88.5 @@ -148029,7 +133267,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19140 + - uid: 19141 components: - rot: 3.141592653589793 rad pos: 10.5,-46.5 @@ -148039,7 +133277,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19141 + - uid: 19142 components: - rot: -1.5707963267948966 rad pos: 35.5,-23.5 @@ -148049,7 +133287,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19142 + - uid: 19143 components: - pos: -16.5,-37.5 parent: 2 @@ -148058,7 +133296,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19143 + - uid: 19144 components: - pos: -11.5,-32.5 parent: 2 @@ -148067,7 +133305,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19144 + - uid: 19145 components: - rot: -1.5707963267948966 rad pos: -0.5,-10.5 @@ -148077,7 +133315,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19145 + - uid: 19146 components: - rot: 3.141592653589793 rad pos: 21.5,-46.5 @@ -148087,7 +133325,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19146 + - uid: 19147 components: - pos: 30.5,28.5 parent: 2 @@ -148096,7 +133334,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19147 + - uid: 19148 components: - pos: 45.5,15.5 parent: 2 @@ -148105,7 +133343,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19148 + - uid: 19149 components: - rot: -1.5707963267948966 rad pos: 61.5,15.5 @@ -148115,7 +133353,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19149 + - uid: 19150 components: - rot: -1.5707963267948966 rad pos: 52.5,13.5 @@ -148125,7 +133363,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19150 + - uid: 19151 components: - rot: -1.5707963267948966 rad pos: 61.5,18.5 @@ -148135,7 +133373,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19151 + - uid: 19152 components: - pos: 59.5,23.5 parent: 2 @@ -148144,7 +133382,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19152 + - uid: 19153 components: - pos: 56.5,23.5 parent: 2 @@ -148153,7 +133391,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19153 + - uid: 19154 components: - pos: 53.5,23.5 parent: 2 @@ -148162,7 +133400,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19154 + - uid: 19155 components: - pos: 50.5,23.5 parent: 2 @@ -148171,7 +133409,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19155 + - uid: 19156 components: - pos: 47.5,23.5 parent: 2 @@ -148180,7 +133418,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19156 + - uid: 19157 components: - rot: 3.141592653589793 rad pos: 47.5,13.5 @@ -148190,7 +133428,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19157 + - uid: 19158 components: - rot: -1.5707963267948966 rad pos: 60.5,11.5 @@ -148200,7 +133438,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19158 + - uid: 19159 components: - pos: 39.5,20.5 parent: 2 @@ -148209,7 +133447,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19159 + - uid: 19160 components: - rot: 1.5707963267948966 rad pos: 34.5,19.5 @@ -148219,7 +133457,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19160 + - uid: 19161 components: - pos: 45.5,1.5 parent: 2 @@ -148228,7 +133466,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19161 + - uid: 19162 components: - rot: -1.5707963267948966 rad pos: 57.5,0.5 @@ -148238,7 +133476,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19162 + - uid: 19163 components: - rot: 1.5707963267948966 rad pos: 43.5,-1.5 @@ -148248,7 +133486,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19163 + - uid: 19164 components: - rot: 1.5707963267948966 rad pos: 36.5,-3.5 @@ -148258,7 +133496,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19164 + - uid: 19165 components: - rot: 3.141592653589793 rad pos: 41.5,8.5 @@ -148268,7 +133506,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19165 + - uid: 19166 components: - rot: 1.5707963267948966 rad pos: 29.5,19.5 @@ -148278,7 +133516,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19166 + - uid: 19167 components: - rot: 1.5707963267948966 rad pos: 38.5,10.5 @@ -148288,7 +133526,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19167 + - uid: 19168 components: - rot: -1.5707963267948966 rad pos: 46.5,-1.5 @@ -148298,7 +133536,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19168 + - uid: 19169 components: - rot: -1.5707963267948966 rad pos: 57.5,-5.5 @@ -148308,7 +133546,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19169 + - uid: 19170 components: - rot: 3.141592653589793 rad pos: 49.5,-42.5 @@ -148318,7 +133556,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19170 + - uid: 19171 components: - pos: 42.5,-37.5 parent: 2 @@ -148327,7 +133565,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19171 + - uid: 19172 components: - rot: 3.141592653589793 rad pos: 56.5,-42.5 @@ -148337,7 +133575,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19172 + - uid: 19173 components: - rot: 3.141592653589793 rad pos: 44.5,-42.5 @@ -148347,7 +133585,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19173 + - uid: 19174 components: - rot: 3.141592653589793 rad pos: 57.5,-45.5 @@ -148357,7 +133595,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19174 + - uid: 19175 components: - rot: 3.141592653589793 rad pos: 61.5,-47.5 @@ -148367,7 +133605,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19175 + - uid: 19176 components: - rot: 1.5707963267948966 rad pos: 59.5,-32.5 @@ -148377,7 +133615,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19176 + - uid: 19177 components: - rot: -1.5707963267948966 rad pos: 62.5,-24.5 @@ -148387,7 +133625,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19177 + - uid: 19178 components: - pos: 61.5,-2.5 parent: 2 @@ -148396,7 +133634,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19178 + - uid: 19179 components: - rot: 3.141592653589793 rad pos: 60.5,-52.5 @@ -148406,7 +133644,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19179 + - uid: 19180 components: - rot: 1.5707963267948966 rad pos: 44.5,-46.5 @@ -148416,7 +133654,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19180 + - uid: 19181 components: - rot: -1.5707963267948966 rad pos: 51.5,-52.5 @@ -148426,7 +133664,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19181 + - uid: 19182 components: - rot: 1.5707963267948966 rad pos: 25.5,-56.5 @@ -148436,7 +133674,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19182 + - uid: 19183 components: - rot: -1.5707963267948966 rad pos: 30.5,-56.5 @@ -148446,7 +133684,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19183 + - uid: 19184 components: - rot: -1.5707963267948966 rad pos: 30.5,-52.5 @@ -148456,7 +133694,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19184 + - uid: 19185 components: - rot: 1.5707963267948966 rad pos: 28.5,-47.5 @@ -148466,7 +133704,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19185 + - uid: 19186 components: - rot: -1.5707963267948966 rad pos: 33.5,-47.5 @@ -148476,7 +133714,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19186 + - uid: 19187 components: - pos: 29.5,-45.5 parent: 2 @@ -148485,7 +133723,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19187 + - uid: 19188 components: - rot: -1.5707963267948966 rad pos: 53.5,-57.5 @@ -148495,7 +133733,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19188 + - uid: 19189 components: - pos: -13.5,2.5 parent: 2 @@ -148504,7 +133742,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19189 + - uid: 19190 components: - rot: 1.5707963267948966 rad pos: -17.5,1.5 @@ -148514,7 +133752,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19190 + - uid: 19191 components: - rot: 3.141592653589793 rad pos: -24.5,-14.5 @@ -148524,7 +133762,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19191 + - uid: 19192 components: - pos: -28.5,-12.5 parent: 2 @@ -148533,7 +133771,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19192 + - uid: 19193 components: - rot: -1.5707963267948966 rad pos: -19.5,-14.5 @@ -148543,7 +133781,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19193 + - uid: 19194 components: - rot: 3.141592653589793 rad pos: -24.5,-23.5 @@ -148553,7 +133791,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19194 + - uid: 19195 components: - pos: 38.5,-55.5 parent: 2 @@ -148562,7 +133800,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19195 + - uid: 19196 components: - rot: -1.5707963267948966 rad pos: 39.5,-63.5 @@ -148572,7 +133810,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19196 + - uid: 19197 components: - rot: -1.5707963267948966 rad pos: -19.5,-41.5 @@ -148582,7 +133820,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19197 + - uid: 19198 components: - rot: -1.5707963267948966 rad pos: -19.5,-47.5 @@ -148592,7 +133830,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19198 + - uid: 19199 components: - rot: -1.5707963267948966 rad pos: -19.5,-33.5 @@ -148602,7 +133840,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19199 + - uid: 19200 components: - rot: 1.5707963267948966 rad pos: 37.5,-71.5 @@ -148612,7 +133850,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19200 + - uid: 19201 components: - rot: -1.5707963267948966 rad pos: 3.5,-56.5 @@ -148622,7 +133860,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19201 + - uid: 19202 components: - pos: -28.5,-16.5 parent: 2 @@ -148631,7 +133869,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19202 + - uid: 19203 components: - rot: 1.5707963267948966 rad pos: -32.5,-27.5 @@ -148641,7 +133879,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19203 + - uid: 19204 components: - rot: 1.5707963267948966 rad pos: -34.5,-15.5 @@ -148651,7 +133889,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19204 + - uid: 19205 components: - rot: 3.141592653589793 rad pos: -36.5,-12.5 @@ -148661,7 +133899,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19205 + - uid: 19206 components: - rot: 3.141592653589793 rad pos: -41.5,-16.5 @@ -148671,7 +133909,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19206 + - uid: 19207 components: - rot: -1.5707963267948966 rad pos: -25.5,-4.5 @@ -148681,7 +133919,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19207 + - uid: 19208 components: - rot: 3.141592653589793 rad pos: -44.5,-12.5 @@ -148691,7 +133929,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19208 + - uid: 19209 components: - rot: 3.141592653589793 rad pos: -46.5,-6.5 @@ -148701,7 +133939,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19209 + - uid: 19210 components: - rot: 1.5707963267948966 rad pos: -54.5,-13.5 @@ -148711,7 +133949,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19210 + - uid: 19211 components: - rot: -1.5707963267948966 rad pos: -50.5,-24.5 @@ -148721,7 +133959,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19211 + - uid: 19212 components: - pos: -45.5,-22.5 parent: 2 @@ -148730,7 +133968,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19212 + - uid: 19213 components: - pos: -59.5,-24.5 parent: 2 @@ -148739,7 +133977,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19213 + - uid: 19214 components: - rot: 1.5707963267948966 rad pos: -65.5,-27.5 @@ -148749,7 +133987,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19214 + - uid: 19215 components: - rot: 3.141592653589793 rad pos: -64.5,-31.5 @@ -148759,7 +133997,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19215 + - uid: 19216 components: - rot: 1.5707963267948966 rad pos: -32.5,-39.5 @@ -148769,7 +134007,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19216 + - uid: 19217 components: - pos: -30.5,-33.5 parent: 2 @@ -148778,7 +134016,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19217 + - uid: 19218 components: - rot: 1.5707963267948966 rad pos: -38.5,-34.5 @@ -148788,7 +134026,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19218 + - uid: 19219 components: - rot: -1.5707963267948966 rad pos: -23.5,-34.5 @@ -148798,7 +134036,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19219 + - uid: 19220 components: - pos: -23.5,-57.5 parent: 2 @@ -148807,7 +134045,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19220 + - uid: 19221 components: - rot: 1.5707963267948966 rad pos: -41.5,-71.5 @@ -148817,7 +134055,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19221 + - uid: 19222 components: - pos: 21.5,-27.5 parent: 2 @@ -148826,7 +134064,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19222 + - uid: 19223 components: - rot: -1.5707963267948966 rad pos: 29.5,-30.5 @@ -148836,7 +134074,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19223 + - uid: 19224 components: - rot: 1.5707963267948966 rad pos: -19.5,19.5 @@ -148846,7 +134084,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19224 + - uid: 19225 components: - rot: 3.141592653589793 rad pos: -28.5,22.5 @@ -148856,7 +134094,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19225 + - uid: 19226 components: - rot: 3.141592653589793 rad pos: -32.5,22.5 @@ -148866,7 +134104,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19226 + - uid: 19227 components: - pos: -32.5,28.5 parent: 2 @@ -148875,7 +134113,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19227 + - uid: 19228 components: - rot: 1.5707963267948966 rad pos: -41.5,23.5 @@ -148885,7 +134123,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19228 + - uid: 19229 components: - rot: 3.141592653589793 rad pos: -24.5,22.5 @@ -148895,7 +134133,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19229 + - uid: 19230 components: - rot: 1.5707963267948966 rad pos: -50.5,33.5 @@ -148905,7 +134143,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19230 + - uid: 19231 components: - rot: 1.5707963267948966 rad pos: -50.5,31.5 @@ -148915,7 +134153,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19231 + - uid: 19232 components: - pos: -44.5,34.5 parent: 2 @@ -148924,7 +134162,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19232 + - uid: 19233 components: - rot: -1.5707963267948966 rad pos: -37.5,30.5 @@ -148934,7 +134172,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19233 + - uid: 19234 components: - rot: 1.5707963267948966 rad pos: -26.5,12.5 @@ -148944,7 +134182,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19234 + - uid: 19235 components: - rot: 3.141592653589793 rad pos: -28.5,-3.5 @@ -148954,7 +134192,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19235 + - uid: 19236 components: - rot: 3.141592653589793 rad pos: -29.5,9.5 @@ -148964,7 +134202,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19236 + - uid: 19237 components: - pos: -29.5,15.5 parent: 2 @@ -148973,7 +134211,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19237 + - uid: 19238 components: - rot: -1.5707963267948966 rad pos: -36.5,8.5 @@ -148983,7 +134221,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19238 + - uid: 19239 components: - rot: 1.5707963267948966 rad pos: -38.5,5.5 @@ -148993,7 +134231,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19239 + - uid: 19240 components: - rot: 3.141592653589793 rad pos: -41.5,0.5 @@ -149003,7 +134241,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19240 + - uid: 19241 components: - rot: 3.141592653589793 rad pos: -45.5,0.5 @@ -149013,7 +134251,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19241 + - uid: 19242 components: - rot: -1.5707963267948966 rad pos: -44.5,6.5 @@ -149023,7 +134261,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19242 + - uid: 19243 components: - rot: 1.5707963267948966 rad pos: -51.5,7.5 @@ -149033,7 +134271,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19243 + - uid: 19244 components: - rot: -1.5707963267948966 rad pos: -43.5,11.5 @@ -149043,7 +134281,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19244 + - uid: 19245 components: - pos: -45.5,14.5 parent: 2 @@ -149052,7 +134290,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19245 + - uid: 19246 components: - pos: -51.5,14.5 parent: 2 @@ -149061,7 +134299,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19246 + - uid: 19247 components: - rot: 1.5707963267948966 rad pos: -52.5,11.5 @@ -149071,7 +134309,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19247 + - uid: 19248 components: - rot: 3.141592653589793 rad pos: 19.5,-54.5 @@ -149081,7 +134319,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19248 + - uid: 19249 components: - rot: 3.141592653589793 rad pos: 19.5,-54.5 @@ -149091,7 +134329,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19249 + - uid: 19250 components: - pos: -54.5,-74.5 parent: 2 @@ -149100,7 +134338,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19250 + - uid: 19251 components: - pos: -8.5,-26.5 parent: 2 @@ -149109,7 +134347,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19251 + - uid: 19252 components: - rot: 3.141592653589793 rad pos: 33.5,-42.5 @@ -149119,7 +134357,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19252 + - uid: 19253 components: - rot: 1.5707963267948966 rad pos: -36.5,-44.5 @@ -149129,7 +134367,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19253 + - uid: 19254 components: - rot: 1.5707963267948966 rad pos: -71.5,-25.5 @@ -149139,7 +134377,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19254 + - uid: 19255 components: - rot: 1.5707963267948966 rad pos: -30.5,-78.5 @@ -149149,7 +134387,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19255 + - uid: 19256 components: - rot: 1.5707963267948966 rad pos: 39.5,46.5 @@ -149159,7 +134397,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19256 + - uid: 19257 components: - pos: 54.5,56.5 parent: 2 @@ -149168,7 +134406,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19257 + - uid: 19258 components: - rot: -1.5707963267948966 rad pos: 55.5,43.5 @@ -149178,7 +134416,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19258 + - uid: 19259 components: - rot: -1.5707963267948966 rad pos: -12.5,33.5 @@ -149188,7 +134426,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19259 + - uid: 19260 components: - rot: 1.5707963267948966 rad pos: -20.5,44.5 @@ -149198,7 +134436,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19260 + - uid: 19261 components: - pos: -14.5,45.5 parent: 2 @@ -149207,7 +134445,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19261 + - uid: 19262 components: - rot: 3.141592653589793 rad pos: 70.5,37.5 @@ -149215,7 +134453,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 19262 + - uid: 19263 components: - rot: -1.5707963267948966 rad pos: -11.5,38.5 @@ -149225,7 +134463,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19263 + - uid: 19264 components: - pos: -1.5,66.5 parent: 2 @@ -149234,7 +134472,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19264 + - uid: 19265 components: - rot: -1.5707963267948966 rad pos: -0.5,61.5 @@ -149244,7 +134482,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19265 + - uid: 19266 components: - rot: 1.5707963267948966 rad pos: 0.5,46.5 @@ -149254,7 +134492,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19266 + - uid: 19267 components: - rot: 1.5707963267948966 rad pos: -13.5,60.5 @@ -149264,7 +134502,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19267 + - uid: 19268 components: - rot: 3.141592653589793 rad pos: -17.5,60.5 @@ -149274,7 +134512,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19268 + - uid: 19269 components: - pos: -12.5,73.5 parent: 2 @@ -149283,7 +134521,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19269 + - uid: 19270 components: - pos: -22.5,73.5 parent: 2 @@ -149292,7 +134530,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19270 + - uid: 19271 components: - rot: -1.5707963267948966 rad pos: -21.5,60.5 @@ -149302,7 +134540,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19271 + - uid: 19272 components: - rot: 1.5707963267948966 rad pos: 0.5,57.5 @@ -149312,7 +134550,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19272 + - uid: 19273 components: - rot: -1.5707963267948966 rad pos: 30.5,46.5 @@ -149322,7 +134560,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19273 + - uid: 19274 components: - rot: 3.141592653589793 rad pos: 23.5,45.5 @@ -149332,7 +134570,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19274 + - uid: 19275 components: - rot: -1.5707963267948966 rad pos: -7.5,-91.5 @@ -149342,7 +134580,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19275 + - uid: 19276 components: - rot: 1.5707963267948966 rad pos: -21.5,-96.5 @@ -149352,7 +134590,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19276 + - uid: 19277 components: - rot: -1.5707963267948966 rad pos: -7.5,-97.5 @@ -149362,7 +134600,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19277 + - uid: 19278 components: - pos: -8.5,-84.5 parent: 2 @@ -149371,7 +134609,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19278 + - uid: 19279 components: - rot: 1.5707963267948966 rad pos: -34.5,-97.5 @@ -149381,14 +134619,14 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19279 + - uid: 19280 components: - pos: -70.5,-41.5 parent: 2 type: Transform - enabled: False type: AmbientSound - - uid: 19280 + - uid: 19281 components: - pos: 65.5,-32.5 parent: 2 @@ -149397,7 +134635,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19281 + - uid: 19282 components: - rot: 3.141592653589793 rad pos: 68.5,-34.5 @@ -149407,7 +134645,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19282 + - uid: 19283 components: - rot: 1.5707963267948966 rad pos: 74.5,-40.5 @@ -149417,7 +134655,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19283 + - uid: 19284 components: - rot: -1.5707963267948966 rad pos: 74.5,-47.5 @@ -149427,7 +134665,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19284 + - uid: 19285 components: - rot: 1.5707963267948966 rad pos: 66.5,-37.5 @@ -149437,7 +134675,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19285 + - uid: 19286 components: - pos: 74.5,-32.5 parent: 2 @@ -149446,7 +134684,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19286 + - uid: 19287 components: - pos: 73.5,-29.5 parent: 2 @@ -149455,7 +134693,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19287 + - uid: 19288 components: - rot: 3.141592653589793 rad pos: 3.5,-30.5 @@ -149465,7 +134703,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19288 + - uid: 19289 components: - rot: -1.5707963267948966 rad pos: -18.5,66.5 @@ -149475,7 +134713,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19289 + - uid: 19290 components: - rot: 3.141592653589793 rad pos: 72.5,-49.5 @@ -149485,7 +134723,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19290 + - uid: 19291 components: - rot: -1.5707963267948966 rad pos: -15.5,24.5 @@ -149495,7 +134733,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19291 + - uid: 19292 components: - rot: 1.5707963267948966 rad pos: -8.5,-14.5 @@ -149505,7 +134743,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19292 + - uid: 19293 components: - pos: -11.5,-18.5 parent: 2 @@ -149514,7 +134752,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19293 + - uid: 19294 components: - rot: 3.141592653589793 rad pos: -30.5,-74.5 @@ -149524,7 +134762,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19294 + - uid: 19295 components: - rot: -1.5707963267948966 rad pos: 62.5,-38.5 @@ -149534,7 +134772,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19295 + - uid: 19296 components: - rot: 3.141592653589793 rad pos: 30.5,-84.5 @@ -149544,7 +134782,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19296 + - uid: 19297 components: - rot: -1.5707963267948966 rad pos: 48.5,-72.5 @@ -149554,7 +134792,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19297 + - uid: 19298 components: - pos: 25.5,-71.5 parent: 2 @@ -149563,7 +134801,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19298 + - uid: 19299 components: - rot: 3.141592653589793 rad pos: 18.5,-83.5 @@ -149573,7 +134811,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19299 + - uid: 19300 components: - rot: -1.5707963267948966 rad pos: 48.5,-86.5 @@ -149583,7 +134821,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19300 + - uid: 19301 components: - pos: 12.5,-22.5 parent: 2 @@ -149592,7 +134830,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19301 + - uid: 19302 components: - rot: -1.5707963267948966 rad pos: 45.5,5.5 @@ -149602,7 +134840,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19302 + - uid: 19303 components: - pos: -45.5,43.5 parent: 2 @@ -149611,7 +134849,9 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19303 + - nextSound: 1395.7052389 + type: EmitSoundOnCollide + - uid: 19304 components: - pos: 68.5,-31.5 parent: 2 @@ -149620,9 +134860,11 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor + - nextSound: 734.4899765 + type: EmitSoundOnCollide - proto: GasVentScrubber entities: - - uid: 19304 + - uid: 19305 components: - pos: 25.5,-51.5 parent: 2 @@ -149631,7 +134873,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19305 + - uid: 19306 components: - rot: 1.5707963267948966 rad pos: 1.5,-10.5 @@ -149641,7 +134883,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19306 + - uid: 19307 components: - pos: 22.5,-4.5 parent: 2 @@ -149650,7 +134892,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19307 + - uid: 19308 components: - pos: 11.5,19.5 parent: 2 @@ -149659,7 +134901,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19308 + - uid: 19309 components: - rot: 1.5707963267948966 rad pos: -3.5,11.5 @@ -149669,7 +134911,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19309 + - uid: 19310 components: - rot: 1.5707963267948966 rad pos: 27.5,1.5 @@ -149679,7 +134921,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19310 + - uid: 19311 components: - rot: 3.141592653589793 rad pos: 7.5,-26.5 @@ -149689,7 +134931,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19311 + - uid: 19312 components: - rot: 1.5707963267948966 rad pos: 1.5,-4.5 @@ -149699,7 +134941,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19312 + - uid: 19313 components: - pos: -8.5,-0.5 parent: 2 @@ -149708,7 +134950,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19313 + - uid: 19314 components: - pos: 31.5,-41.5 parent: 2 @@ -149717,7 +134959,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19314 + - uid: 19315 components: - pos: 31.5,16.5 parent: 2 @@ -149726,7 +134968,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19315 + - uid: 19316 components: - rot: 3.141592653589793 rad pos: -5.5,6.5 @@ -149736,7 +134978,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19316 + - uid: 19317 components: - rot: -1.5707963267948966 rad pos: -8.5,-39.5 @@ -149746,7 +134988,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19317 + - uid: 19318 components: - rot: 3.141592653589793 rad pos: 31.5,11.5 @@ -149756,7 +134998,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19318 + - uid: 19319 components: - rot: 1.5707963267948966 rad pos: 37.5,8.5 @@ -149766,7 +135008,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19319 + - uid: 19320 components: - rot: 1.5707963267948966 rad pos: 37.5,5.5 @@ -149776,7 +135018,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19320 + - uid: 19321 components: - rot: 3.141592653589793 rad pos: 28.5,11.5 @@ -149786,7 +135028,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19321 + - uid: 19322 components: - pos: 38.5,12.5 parent: 2 @@ -149795,7 +135037,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19322 + - uid: 19323 components: - rot: 3.141592653589793 rad pos: -4.5,-43.5 @@ -149805,7 +135047,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19323 + - uid: 19324 components: - rot: 1.5707963267948966 rad pos: 16.5,12.5 @@ -149815,7 +135057,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19324 + - uid: 19325 components: - rot: 3.141592653589793 rad pos: 34.5,11.5 @@ -149825,7 +135067,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19325 + - uid: 19326 components: - rot: -1.5707963267948966 rad pos: 29.5,-35.5 @@ -149835,7 +135077,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19326 + - uid: 19327 components: - rot: -1.5707963267948966 rad pos: 26.5,7.5 @@ -149845,7 +135087,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19327 + - uid: 19328 components: - rot: -1.5707963267948966 rad pos: 8.5,19.5 @@ -149855,7 +135097,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19328 + - uid: 19329 components: - rot: -1.5707963267948966 rad pos: 22.5,-18.5 @@ -149865,7 +135107,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19329 + - uid: 19330 components: - rot: -1.5707963267948966 rad pos: 29.5,-29.5 @@ -149875,7 +135117,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19330 + - uid: 19331 components: - pos: 23.5,-27.5 parent: 2 @@ -149884,7 +135126,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19331 + - uid: 19332 components: - rot: -1.5707963267948966 rad pos: -8.5,-5.5 @@ -149894,7 +135136,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19332 + - uid: 19333 components: - rot: 3.141592653589793 rad pos: -2.5,-65.5 @@ -149904,7 +135146,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19333 + - uid: 19334 components: - rot: 3.141592653589793 rad pos: -8.5,-65.5 @@ -149914,7 +135156,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19334 + - uid: 19335 components: - rot: 3.141592653589793 rad pos: -15.5,-65.5 @@ -149924,7 +135166,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19335 + - uid: 19336 components: - rot: 3.141592653589793 rad pos: -5.5,-61.5 @@ -149934,7 +135176,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19336 + - uid: 19337 components: - rot: 3.141592653589793 rad pos: -8.5,-54.5 @@ -149944,7 +135186,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19337 + - uid: 19338 components: - rot: 3.141592653589793 rad pos: 3.5,-45.5 @@ -149954,7 +135196,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19338 + - uid: 19339 components: - rot: 3.141592653589793 rad pos: -8.5,-47.5 @@ -149964,7 +135206,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19339 + - uid: 19340 components: - rot: -1.5707963267948966 rad pos: 9.5,-61.5 @@ -149974,7 +135216,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19340 + - uid: 19341 components: - rot: 3.141592653589793 rad pos: -12.5,-47.5 @@ -149984,7 +135226,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19341 + - uid: 19342 components: - rot: 3.141592653589793 rad pos: -20.5,-85.5 @@ -149994,7 +135236,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19342 + - uid: 19343 components: - rot: -1.5707963267948966 rad pos: -24.5,-77.5 @@ -150004,7 +135246,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19343 + - uid: 19344 components: - rot: 1.5707963267948966 rad pos: -28.5,-77.5 @@ -150014,7 +135256,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19344 + - uid: 19345 components: - pos: 17.5,0.5 parent: 2 @@ -150023,7 +135265,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19345 + - uid: 19346 components: - pos: 33.5,2.5 parent: 2 @@ -150032,7 +135274,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19346 + - uid: 19347 components: - rot: -1.5707963267948966 rad pos: 1.5,11.5 @@ -150042,7 +135284,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19347 + - uid: 19348 components: - rot: -1.5707963267948966 rad pos: 9.5,0.5 @@ -150052,7 +135294,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19348 + - uid: 19349 components: - rot: 1.5707963267948966 rad pos: -23.5,-89.5 @@ -150062,7 +135304,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19349 + - uid: 19350 components: - rot: 3.141592653589793 rad pos: -21.5,-90.5 @@ -150072,7 +135314,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19350 + - uid: 19351 components: - pos: 33.5,-14.5 parent: 2 @@ -150081,7 +135323,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19351 + - uid: 19352 components: - rot: 3.141592653589793 rad pos: 10.5,-4.5 @@ -150091,7 +135333,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19352 + - uid: 19353 components: - pos: 25.5,22.5 parent: 2 @@ -150100,7 +135342,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19353 + - uid: 19354 components: - pos: 16.5,22.5 parent: 2 @@ -150109,7 +135351,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19354 + - uid: 19355 components: - rot: -1.5707963267948966 rad pos: 16.5,-23.5 @@ -150119,7 +135361,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19355 + - uid: 19356 components: - rot: 3.141592653589793 rad pos: 23.5,-37.5 @@ -150129,7 +135371,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19356 + - uid: 19357 components: - rot: 1.5707963267948966 rad pos: -4.5,-11.5 @@ -150139,7 +135381,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19357 + - uid: 19358 components: - rot: -1.5707963267948966 rad pos: 22.5,12.5 @@ -150149,7 +135391,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19358 + - uid: 19359 components: - rot: 3.141592653589793 rad pos: 46.5,-30.5 @@ -150159,7 +135401,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19359 + - uid: 19360 components: - rot: -1.5707963267948966 rad pos: 45.5,-24.5 @@ -150169,7 +135411,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19360 + - uid: 19361 components: - pos: -20.5,33.5 parent: 2 @@ -150178,7 +135420,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19361 + - uid: 19362 components: - rot: -1.5707963267948966 rad pos: 3.5,1.5 @@ -150188,7 +135430,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19362 + - uid: 19363 components: - pos: 21.5,17.5 parent: 2 @@ -150197,7 +135439,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19363 + - uid: 19364 components: - rot: 1.5707963267948966 rad pos: 0.5,6.5 @@ -150207,7 +135449,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19364 + - uid: 19365 components: - rot: 1.5707963267948966 rad pos: -28.5,-79.5 @@ -150217,7 +135459,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19365 + - uid: 19366 components: - rot: 1.5707963267948966 rad pos: 20.5,-14.5 @@ -150227,7 +135469,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19366 + - uid: 19367 components: - pos: 12.5,17.5 parent: 2 @@ -150236,7 +135478,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19367 + - uid: 19368 components: - rot: 1.5707963267948966 rad pos: 23.5,-24.5 @@ -150246,7 +135488,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19368 + - uid: 19369 components: - rot: 1.5707963267948966 rad pos: 6.5,14.5 @@ -150256,7 +135498,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19369 + - uid: 19370 components: - rot: -1.5707963267948966 rad pos: 42.5,-25.5 @@ -150266,7 +135508,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19370 + - uid: 19371 components: - rot: -1.5707963267948966 rad pos: -19.5,-75.5 @@ -150276,7 +135518,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19371 + - uid: 19372 components: - rot: -1.5707963267948966 rad pos: -19.5,-70.5 @@ -150286,7 +135528,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19372 + - uid: 19373 components: - rot: -1.5707963267948966 rad pos: -19.5,-66.5 @@ -150296,7 +135538,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19373 + - uid: 19374 components: - rot: -1.5707963267948966 rad pos: -19.5,-63.5 @@ -150306,7 +135548,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19374 + - uid: 19375 components: - rot: 3.141592653589793 rad pos: 9.5,-46.5 @@ -150316,7 +135558,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19375 + - uid: 19376 components: - rot: 1.5707963267948966 rad pos: 35.5,-31.5 @@ -150326,7 +135568,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19376 + - uid: 19377 components: - rot: -1.5707963267948966 rad pos: 9.5,10.5 @@ -150336,7 +135578,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19377 + - uid: 19378 components: - rot: 1.5707963267948966 rad pos: -14.5,-37.5 @@ -150346,7 +135588,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19378 + - uid: 19379 components: - pos: -9.5,-32.5 parent: 2 @@ -150355,7 +135597,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19379 + - uid: 19380 components: - rot: 1.5707963267948966 rad pos: 0.5,19.5 @@ -150365,7 +135607,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19380 + - uid: 19381 components: - pos: -0.5,-13.5 parent: 2 @@ -150374,7 +135616,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19381 + - uid: 19382 components: - rot: 3.141592653589793 rad pos: 20.5,-47.5 @@ -150384,7 +135626,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19382 + - uid: 19383 components: - pos: 28.5,28.5 parent: 2 @@ -150393,7 +135635,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19383 + - uid: 19384 components: - rot: 3.141592653589793 rad pos: 44.5,14.5 @@ -150403,7 +135645,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19384 + - uid: 19385 components: - pos: 47.5,16.5 parent: 2 @@ -150412,7 +135654,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19385 + - uid: 19386 components: - rot: -1.5707963267948966 rad pos: 52.5,12.5 @@ -150422,7 +135664,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19386 + - uid: 19387 components: - pos: 46.5,23.5 parent: 2 @@ -150431,7 +135673,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19387 + - uid: 19388 components: - pos: 49.5,23.5 parent: 2 @@ -150440,7 +135682,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19388 + - uid: 19389 components: - pos: 52.5,23.5 parent: 2 @@ -150449,7 +135691,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19389 + - uid: 19390 components: - pos: 55.5,23.5 parent: 2 @@ -150458,7 +135700,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19390 + - uid: 19391 components: - pos: 58.5,23.5 parent: 2 @@ -150467,7 +135709,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19391 + - uid: 19392 components: - rot: -1.5707963267948966 rad pos: 61.5,19.5 @@ -150477,7 +135719,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19392 + - uid: 19393 components: - rot: -1.5707963267948966 rad pos: 61.5,16.5 @@ -150487,7 +135729,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19393 + - uid: 19394 components: - rot: 1.5707963267948966 rad pos: 57.5,12.5 @@ -150497,7 +135739,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19394 + - uid: 19395 components: - rot: 3.141592653589793 rad pos: 40.5,19.5 @@ -150507,7 +135749,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19395 + - uid: 19396 components: - rot: 1.5707963267948966 rad pos: 34.5,20.5 @@ -150517,7 +135759,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19396 + - uid: 19397 components: - rot: -1.5707963267948966 rad pos: 56.5,1.5 @@ -150527,7 +135769,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19397 + - uid: 19398 components: - rot: 1.5707963267948966 rad pos: 41.5,-1.5 @@ -150537,7 +135779,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19398 + - uid: 19399 components: - rot: 1.5707963267948966 rad pos: 36.5,-2.5 @@ -150547,7 +135789,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19399 + - uid: 19400 components: - rot: -1.5707963267948966 rad pos: 29.5,22.5 @@ -150557,7 +135799,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19400 + - uid: 19401 components: - rot: 3.141592653589793 rad pos: 38.5,0.5 @@ -150567,7 +135809,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19401 + - uid: 19402 components: - rot: -1.5707963267948966 rad pos: 46.5,-2.5 @@ -150577,7 +135819,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19402 + - uid: 19403 components: - rot: 1.5707963267948966 rad pos: 41.5,9.5 @@ -150587,7 +135829,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19403 + - uid: 19404 components: - rot: -1.5707963267948966 rad pos: 57.5,-12.5 @@ -150597,7 +135839,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19404 + - uid: 19405 components: - rot: 3.141592653589793 rad pos: 73.5,-28.5 @@ -150607,7 +135849,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19405 + - uid: 19406 components: - pos: 43.5,-37.5 parent: 2 @@ -150616,7 +135858,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19406 + - uid: 19407 components: - rot: -1.5707963267948966 rad pos: 50.5,-43.5 @@ -150626,7 +135868,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19407 + - uid: 19408 components: - pos: 55.5,-42.5 parent: 2 @@ -150635,7 +135877,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19408 + - uid: 19409 components: - pos: 45.5,-42.5 parent: 2 @@ -150644,7 +135886,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19409 + - uid: 19410 components: - pos: 56.5,-44.5 parent: 2 @@ -150653,7 +135895,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19410 + - uid: 19411 components: - rot: 3.141592653589793 rad pos: 63.5,-47.5 @@ -150663,7 +135905,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19411 + - uid: 19412 components: - rot: 1.5707963267948966 rad pos: 62.5,-26.5 @@ -150673,7 +135915,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19412 + - uid: 19413 components: - pos: 63.5,-2.5 parent: 2 @@ -150682,7 +135924,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19413 + - uid: 19414 components: - rot: 3.141592653589793 rad pos: 64.5,-52.5 @@ -150692,7 +135934,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19414 + - uid: 19415 components: - rot: 3.141592653589793 rad pos: 42.5,-46.5 @@ -150702,7 +135944,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19415 + - uid: 19416 components: - rot: -1.5707963267948966 rad pos: 50.5,-54.5 @@ -150712,7 +135954,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19416 + - uid: 19417 components: - rot: 1.5707963267948966 rad pos: 48.5,-52.5 @@ -150722,7 +135964,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19417 + - uid: 19418 components: - rot: 3.141592653589793 rad pos: 70.5,-49.5 @@ -150732,7 +135974,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19418 + - uid: 19419 components: - rot: 1.5707963267948966 rad pos: 31.5,-52.5 @@ -150742,7 +135984,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19419 + - uid: 19420 components: - rot: -1.5707963267948966 rad pos: 33.5,-56.5 @@ -150752,7 +135994,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19420 + - uid: 19421 components: - rot: 1.5707963267948966 rad pos: 33.5,-48.5 @@ -150762,7 +136004,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19421 + - uid: 19422 components: - pos: 34.5,-45.5 parent: 2 @@ -150771,7 +136013,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19422 + - uid: 19423 components: - pos: 28.5,-48.5 parent: 2 @@ -150780,7 +136022,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19423 + - uid: 19424 components: - rot: 3.141592653589793 rad pos: -13.5,6.5 @@ -150790,7 +136032,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19424 + - uid: 19425 components: - rot: 3.141592653589793 rad pos: -19.5,4.5 @@ -150800,7 +136042,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19425 + - uid: 19426 components: - pos: -24.5,-9.5 parent: 2 @@ -150809,7 +136051,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19426 + - uid: 19427 components: - rot: 3.141592653589793 rad pos: -28.5,-11.5 @@ -150819,7 +136061,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19427 + - uid: 19428 components: - rot: 1.5707963267948966 rad pos: -19.5,-19.5 @@ -150829,7 +136071,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19428 + - uid: 19429 components: - rot: 3.141592653589793 rad pos: -23.5,-22.5 @@ -150839,7 +136081,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19429 + - uid: 19430 components: - rot: -1.5707963267948966 rad pos: 54.5,-61.5 @@ -150849,7 +136091,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19430 + - uid: 19431 components: - rot: 1.5707963267948966 rad pos: 50.5,-60.5 @@ -150857,7 +136099,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 19431 + - uid: 19432 components: - pos: 40.5,-55.5 parent: 2 @@ -150866,7 +136108,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19432 + - uid: 19433 components: - rot: 1.5707963267948966 rad pos: 39.5,-65.5 @@ -150876,7 +136118,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19433 + - uid: 19434 components: - rot: -1.5707963267948966 rad pos: -17.5,-43.5 @@ -150886,7 +136128,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19434 + - uid: 19435 components: - rot: 1.5707963267948966 rad pos: -19.5,-31.5 @@ -150896,7 +136138,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19435 + - uid: 19436 components: - rot: 1.5707963267948966 rad pos: -19.5,-46.5 @@ -150906,7 +136148,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19436 + - uid: 19437 components: - rot: -1.5707963267948966 rad pos: 30.5,-85.5 @@ -150916,7 +136158,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19437 + - uid: 19438 components: - rot: -1.5707963267948966 rad pos: 49.5,-73.5 @@ -150926,7 +136168,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19438 + - uid: 19439 components: - rot: -1.5707963267948966 rad pos: 41.5,-71.5 @@ -150936,7 +136178,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19439 + - uid: 19440 components: - pos: 3.5,-57.5 parent: 2 @@ -150945,7 +136187,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19440 + - uid: 19441 components: - rot: 3.141592653589793 rad pos: -29.5,-17.5 @@ -150955,7 +136197,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19441 + - uid: 19442 components: - rot: -1.5707963267948966 rad pos: -31.5,-25.5 @@ -150965,7 +136207,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19442 + - uid: 19443 components: - rot: 1.5707963267948966 rad pos: -34.5,-17.5 @@ -150975,7 +136217,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19443 + - uid: 19444 components: - pos: -35.5,-9.5 parent: 2 @@ -150984,7 +136226,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19444 + - uid: 19445 components: - rot: -1.5707963267948966 rad pos: -41.5,-15.5 @@ -150994,7 +136236,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19445 + - uid: 19446 components: - pos: -44.5,-9.5 parent: 2 @@ -151003,7 +136245,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19446 + - uid: 19447 components: - pos: -47.5,-22.5 parent: 2 @@ -151012,7 +136254,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19447 + - uid: 19448 components: - rot: 1.5707963267948966 rad pos: -51.5,-23.5 @@ -151022,7 +136264,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19448 + - uid: 19449 components: - rot: 1.5707963267948966 rad pos: -53.5,-16.5 @@ -151032,7 +136274,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19449 + - uid: 19450 components: - pos: -47.5,-5.5 parent: 2 @@ -151041,7 +136283,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19450 + - uid: 19451 components: - rot: 3.141592653589793 rad pos: -56.5,-24.5 @@ -151051,7 +136293,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19451 + - uid: 19452 components: - rot: -1.5707963267948966 rad pos: -67.5,-27.5 @@ -151061,7 +136303,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19452 + - uid: 19453 components: - rot: 3.141592653589793 rad pos: -68.5,-31.5 @@ -151071,7 +136313,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19453 + - uid: 19454 components: - rot: -1.5707963267948966 rad pos: -31.5,-37.5 @@ -151081,7 +136323,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19454 + - uid: 19455 components: - rot: 3.141592653589793 rad pos: -33.5,-34.5 @@ -151091,7 +136333,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19455 + - uid: 19456 components: - rot: 1.5707963267948966 rad pos: -38.5,-33.5 @@ -151101,7 +136343,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19456 + - uid: 19457 components: - rot: -1.5707963267948966 rad pos: -24.5,-33.5 @@ -151111,7 +136353,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19457 + - uid: 19458 components: - rot: 1.5707963267948966 rad pos: -43.5,-34.5 @@ -151121,7 +136363,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19458 + - uid: 19459 components: - rot: 3.141592653589793 rad pos: -24.5,-58.5 @@ -151131,7 +136373,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19459 + - uid: 19460 components: - rot: 3.141592653589793 rad pos: -27.5,-70.5 @@ -151141,7 +136383,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19460 + - uid: 19461 components: - rot: -1.5707963267948966 rad pos: -18.5,-57.5 @@ -151151,7 +136393,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19461 + - uid: 19462 components: - rot: 3.141592653589793 rad pos: -42.5,-72.5 @@ -151161,7 +136403,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19462 + - uid: 19463 components: - rot: -1.5707963267948966 rad pos: -19.5,16.5 @@ -151171,7 +136413,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19463 + - uid: 19464 components: - rot: 3.141592653589793 rad pos: -23.5,19.5 @@ -151181,7 +136423,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19464 + - uid: 19465 components: - pos: -28.5,21.5 parent: 2 @@ -151190,7 +136432,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19465 + - uid: 19466 components: - rot: 3.141592653589793 rad pos: -33.5,19.5 @@ -151200,7 +136442,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19466 + - uid: 19467 components: - rot: 1.5707963267948966 rad pos: -42.5,20.5 @@ -151210,7 +136452,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19467 + - uid: 19468 components: - pos: -33.5,28.5 parent: 2 @@ -151219,7 +136461,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19468 + - uid: 19469 components: - rot: -1.5707963267948966 rad pos: -37.5,29.5 @@ -151229,7 +136471,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19469 + - uid: 19470 components: - rot: 1.5707963267948966 rad pos: -25.5,13.5 @@ -151239,7 +136481,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19470 + - uid: 19471 components: - rot: 3.141592653589793 rad pos: -29.5,-3.5 @@ -151249,7 +136491,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19471 + - uid: 19472 components: - rot: 3.141592653589793 rad pos: -39.5,-0.5 @@ -151259,7 +136501,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19472 + - uid: 19473 components: - rot: -1.5707963267948966 rad pos: -37.5,3.5 @@ -151269,7 +136511,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19473 + - uid: 19474 components: - rot: 1.5707963267948966 rad pos: -39.5,8.5 @@ -151279,7 +136521,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19474 + - uid: 19475 components: - pos: -30.5,15.5 parent: 2 @@ -151288,7 +136530,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19475 + - uid: 19476 components: - rot: 3.141592653589793 rad pos: -30.5,9.5 @@ -151298,7 +136540,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19476 + - uid: 19477 components: - rot: 3.141592653589793 rad pos: -52.5,7.5 @@ -151308,7 +136550,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19477 + - uid: 19478 components: - pos: -51.5,11.5 parent: 2 @@ -151317,7 +136559,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19478 + - uid: 19479 components: - pos: -52.5,14.5 parent: 2 @@ -151326,7 +136568,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19479 + - uid: 19480 components: - rot: -1.5707963267948966 rad pos: -42.5,10.5 @@ -151336,7 +136578,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19480 + - uid: 19481 components: - rot: 1.5707963267948966 rad pos: -48.5,3.5 @@ -151346,7 +136588,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19481 + - uid: 19482 components: - rot: 3.141592653589793 rad pos: -47.5,-0.5 @@ -151356,7 +136598,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19482 + - uid: 19483 components: - pos: -46.5,15.5 parent: 2 @@ -151365,7 +136607,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19483 + - uid: 19484 components: - rot: 1.5707963267948966 rad pos: 21.5,-54.5 @@ -151375,7 +136617,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19484 + - uid: 19485 components: - rot: 3.141592653589793 rad pos: -54.5,-77.5 @@ -151385,7 +136627,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19485 + - uid: 19486 components: - rot: 3.141592653589793 rad pos: -7.5,-26.5 @@ -151395,7 +136637,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19486 + - uid: 19487 components: - pos: 17.5,-42.5 parent: 2 @@ -151404,7 +136646,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19487 + - uid: 19488 components: - rot: 1.5707963267948966 rad pos: -25.5,-2.5 @@ -151414,7 +136656,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19488 + - uid: 19489 components: - rot: 1.5707963267948966 rad pos: -35.5,-42.5 @@ -151424,7 +136666,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19489 + - uid: 19490 components: - rot: 3.141592653589793 rad pos: -72.5,-24.5 @@ -151434,7 +136676,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19490 + - uid: 19491 components: - rot: 1.5707963267948966 rad pos: 39.5,45.5 @@ -151444,7 +136686,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19491 + - uid: 19492 components: - rot: 1.5707963267948966 rad pos: 51.5,43.5 @@ -151454,7 +136696,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19492 + - uid: 19493 components: - pos: 52.5,56.5 parent: 2 @@ -151463,7 +136705,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19493 + - uid: 19494 components: - rot: -1.5707963267948966 rad pos: -12.5,34.5 @@ -151473,7 +136715,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19494 + - uid: 19495 components: - rot: 1.5707963267948966 rad pos: -24.5,30.5 @@ -151483,7 +136725,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19495 + - uid: 19496 components: - rot: -1.5707963267948966 rad pos: -14.5,43.5 @@ -151493,7 +136735,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19496 + - uid: 19497 components: - rot: 1.5707963267948966 rad pos: -20.5,43.5 @@ -151503,14 +136745,14 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19497 + - uid: 19498 components: - pos: 70.5,36.5 parent: 2 type: Transform - enabled: False type: AmbientSound - - uid: 19498 + - uid: 19499 components: - rot: -1.5707963267948966 rad pos: -11.5,39.5 @@ -151520,7 +136762,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19499 + - uid: 19500 components: - rot: -1.5707963267948966 rad pos: 1.5,69.5 @@ -151530,7 +136772,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19500 + - uid: 19501 components: - rot: 1.5707963267948966 rad pos: -4.5,69.5 @@ -151540,7 +136782,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19501 + - uid: 19502 components: - rot: -1.5707963267948966 rad pos: -1.5,62.5 @@ -151550,7 +136792,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19502 + - uid: 19503 components: - pos: -1.5,68.5 parent: 2 @@ -151559,7 +136801,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19503 + - uid: 19504 components: - rot: -1.5707963267948966 rad pos: 0.5,48.5 @@ -151569,7 +136811,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19504 + - uid: 19505 components: - rot: 1.5707963267948966 rad pos: -22.5,58.5 @@ -151579,7 +136821,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19505 + - uid: 19506 components: - pos: -17.5,63.5 parent: 2 @@ -151588,7 +136830,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19506 + - uid: 19507 components: - pos: -21.5,73.5 parent: 2 @@ -151597,7 +136839,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19507 + - uid: 19508 components: - pos: -13.5,73.5 parent: 2 @@ -151606,7 +136848,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19508 + - uid: 19509 components: - rot: -1.5707963267948966 rad pos: -12.5,57.5 @@ -151616,7 +136858,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19509 + - uid: 19510 components: - rot: -1.5707963267948966 rad pos: 0.5,56.5 @@ -151626,7 +136868,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19510 + - uid: 19511 components: - rot: -1.5707963267948966 rad pos: 30.5,45.5 @@ -151636,7 +136878,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19511 + - uid: 19512 components: - rot: 1.5707963267948966 rad pos: 24.5,45.5 @@ -151646,7 +136888,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19512 + - uid: 19513 components: - pos: -7.5,-92.5 parent: 2 @@ -151655,7 +136897,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19513 + - uid: 19514 components: - pos: -21.5,-97.5 parent: 2 @@ -151664,7 +136906,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19514 + - uid: 19515 components: - rot: -1.5707963267948966 rad pos: -6.5,-98.5 @@ -151674,7 +136916,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19515 + - uid: 19516 components: - pos: -6.5,-84.5 parent: 2 @@ -151683,7 +136925,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19516 + - uid: 19517 components: - rot: 1.5707963267948966 rad pos: -34.5,-96.5 @@ -151693,7 +136935,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19517 + - uid: 19518 components: - rot: -1.5707963267948966 rad pos: -71.5,-44.5 @@ -151701,7 +136943,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 19518 + - uid: 19519 components: - rot: 3.141592653589793 rad pos: 65.5,-35.5 @@ -151711,7 +136953,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19519 + - uid: 19520 components: - pos: 67.5,-33.5 parent: 2 @@ -151720,7 +136962,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19520 + - uid: 19521 components: - rot: 3.141592653589793 rad pos: 73.5,-35.5 @@ -151730,7 +136972,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19521 + - uid: 19522 components: - rot: -1.5707963267948966 rad pos: 75.5,-41.5 @@ -151740,7 +136982,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19522 + - uid: 19523 components: - rot: -1.5707963267948966 rad pos: 72.5,-46.5 @@ -151750,7 +136992,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19523 + - uid: 19524 components: - pos: 66.5,-38.5 parent: 2 @@ -151759,7 +137001,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19524 + - uid: 19525 components: - rot: 3.141592653589793 rad pos: 5.5,-30.5 @@ -151769,7 +137011,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19525 + - uid: 19526 components: - rot: 1.5707963267948966 rad pos: 59.5,-34.5 @@ -151779,7 +137021,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19526 + - uid: 19527 components: - rot: 3.141592653589793 rad pos: -54.5,-63.5 @@ -151787,7 +137029,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 19527 + - uid: 19528 components: - rot: -1.5707963267948966 rad pos: -15.5,25.5 @@ -151797,7 +137039,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19528 + - uid: 19529 components: - rot: 1.5707963267948966 rad pos: -8.5,-12.5 @@ -151807,7 +137049,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19529 + - uid: 19530 components: - rot: -1.5707963267948966 rad pos: -7.5,-22.5 @@ -151817,7 +137059,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19530 + - uid: 19531 components: - pos: -10.5,-18.5 parent: 2 @@ -151826,7 +137068,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19531 + - uid: 19532 components: - rot: 3.141592653589793 rad pos: -30.5,-70.5 @@ -151836,7 +137078,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19532 + - uid: 19533 components: - rot: 3.141592653589793 rad pos: -28.5,-74.5 @@ -151846,7 +137088,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19533 + - uid: 19534 components: - rot: 1.5707963267948966 rad pos: 61.5,-39.5 @@ -151856,7 +137098,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19534 + - uid: 19535 components: - rot: 1.5707963267948966 rad pos: 19.5,-83.5 @@ -151866,7 +137108,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19535 + - uid: 19536 components: - pos: 24.5,-72.5 parent: 2 @@ -151875,7 +137117,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19536 + - uid: 19537 components: - rot: 3.141592653589793 rad pos: 48.5,-85.5 @@ -151885,7 +137127,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19537 + - uid: 19538 components: - rot: 1.5707963267948966 rad pos: -16.5,66.5 @@ -151895,7 +137137,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19538 + - uid: 19539 components: - rot: 1.5707963267948966 rad pos: 7.5,-22.5 @@ -151905,7 +137147,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19539 + - uid: 19540 components: - pos: 45.5,7.5 parent: 2 @@ -151914,7 +137156,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19540 + - uid: 19541 components: - rot: 3.141592653589793 rad pos: -44.5,30.5 @@ -151924,7 +137166,9 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19541 + - nextSound: 1401.3353177 + type: EmitSoundOnCollide + - uid: 19542 components: - pos: -46.5,43.5 parent: 2 @@ -151933,7 +137177,9 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19542 + - nextSound: 1403.4394167 + type: EmitSoundOnCollide + - uid: 19543 components: - rot: -1.5707963267948966 rad pos: 67.5,-31.5 @@ -151943,9 +137189,11 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor + - nextSound: 731.8593967 + type: EmitSoundOnCollide - proto: GasVolumePump entities: - - uid: 19543 + - uid: 19544 components: - rot: -1.5707963267948966 rad pos: -39.5,-57.5 @@ -151955,5095 +137203,5095 @@ entities: type: AtmosPipeColor - proto: Gauze1 entities: - - uid: 19544 + - uid: 19545 components: - pos: -6.3074856,-49.39305 parent: 2 type: Transform - proto: GeneratorBasic entities: - - uid: 19545 + - uid: 19546 components: - pos: -58.5,-88.5 parent: 2 type: Transform - - uid: 19546 + - uid: 19547 components: - pos: -58.5,-86.5 parent: 2 type: Transform - proto: GeneratorPlasma entities: - - uid: 19547 + - uid: 19548 components: - pos: 4.5,-22.5 parent: 2 type: Transform - - uid: 19548 + - uid: 19549 components: - pos: 4.5,-23.5 parent: 2 type: Transform - proto: Girder entities: - - uid: 19549 + - uid: 19550 components: - pos: -36.5,-68.5 parent: 2 type: Transform - - uid: 19550 + - uid: 19551 components: - pos: 20.5,-54.5 parent: 2 type: Transform - - uid: 19551 + - uid: 19552 components: - pos: -22.5,-64.5 parent: 2 type: Transform - - uid: 19552 + - uid: 19553 components: - pos: -23.5,-42.5 parent: 2 type: Transform - - uid: 19553 + - uid: 19554 components: - pos: -28.5,-39.5 parent: 2 type: Transform - proto: GoldOre1 entities: - - uid: 19554 + - uid: 19555 components: - rot: 3.141592653589793 rad pos: 19.789879,45.273663 parent: 2 type: Transform - - uid: 19555 + - uid: 19556 components: - pos: 79.30878,-64.25522 parent: 2 type: Transform - proto: GravityGenerator entities: - - uid: 19556 + - uid: 19557 components: - pos: -19.5,2.5 parent: 2 type: Transform - proto: GrenadeFlashBang entities: - - uid: 19557 + - uid: 19558 components: - pos: 52.279568,11.553763 parent: 2 type: Transform - proto: Grille entities: - - uid: 19558 + - uid: 19559 components: - rot: 3.141592653589793 rad pos: 5.5,18.5 parent: 2 type: Transform - - uid: 19559 + - uid: 19560 components: - rot: -1.5707963267948966 rad pos: -46.5,45.5 parent: 2 type: Transform - - uid: 19560 + - uid: 19561 components: - rot: -1.5707963267948966 rad pos: -45.5,45.5 parent: 2 type: Transform - - uid: 19561 + - uid: 19562 components: - rot: -1.5707963267948966 rad pos: -47.5,45.5 parent: 2 type: Transform - - uid: 19562 + - uid: 19563 components: - pos: 32.5,-9.5 parent: 2 type: Transform - - uid: 19563 + - uid: 19564 components: - rot: 3.141592653589793 rad pos: 28.5,-63.5 parent: 2 type: Transform - - uid: 19564 + - uid: 19565 components: - pos: 19.5,-0.5 parent: 2 type: Transform - - uid: 19565 + - uid: 19566 components: - pos: -24.5,-91.5 parent: 2 type: Transform - - uid: 19566 + - uid: 19567 components: - pos: -18.5,-88.5 parent: 2 type: Transform - - uid: 19567 + - uid: 19568 components: - pos: -18.5,-58.5 parent: 2 type: Transform - - uid: 19568 + - uid: 19569 components: - pos: 31.5,-15.5 parent: 2 type: Transform - - uid: 19569 + - uid: 19570 components: - pos: -9.5,-55.5 parent: 2 type: Transform - - uid: 19570 + - uid: 19571 components: - pos: -12.5,-55.5 parent: 2 type: Transform - - uid: 19571 + - uid: 19572 components: - pos: -4.5,-56.5 parent: 2 type: Transform - - uid: 19572 + - uid: 19573 components: - pos: 22.5,-20.5 parent: 2 type: Transform - - uid: 19573 + - uid: 19574 components: - pos: 21.5,5.5 parent: 2 type: Transform - - uid: 19574 + - uid: 19575 components: - pos: 23.5,5.5 parent: 2 type: Transform - - uid: 19575 + - uid: 19576 components: - pos: 25.5,5.5 parent: 2 type: Transform - - uid: 19576 + - uid: 19577 components: - pos: 3.5,-39.5 parent: 2 type: Transform - - uid: 19577 + - uid: 19578 components: - pos: -7.5,-56.5 parent: 2 type: Transform - - uid: 19578 + - uid: 19579 components: - pos: 1.5,-47.5 parent: 2 type: Transform - - uid: 19579 + - uid: 19580 components: - pos: 29.5,26.5 parent: 2 type: Transform - - uid: 19580 + - uid: 19581 components: - pos: -13.5,-56.5 parent: 2 type: Transform - - uid: 19581 + - uid: 19582 components: - pos: -7.5,-57.5 parent: 2 type: Transform - - uid: 19582 + - uid: 19583 components: - pos: 7.5,-59.5 parent: 2 type: Transform - - uid: 19583 + - uid: 19584 components: - pos: -18.5,-68.5 parent: 2 type: Transform - - uid: 19584 + - uid: 19585 components: - pos: -20.5,-68.5 parent: 2 type: Transform - - uid: 19585 + - uid: 19586 components: - pos: -3.5,-44.5 parent: 2 type: Transform - - uid: 19586 + - uid: 19587 components: - pos: 0.5,-24.5 parent: 2 type: Transform - - uid: 19587 + - uid: 19588 components: - pos: 12.5,-34.5 parent: 2 type: Transform - - uid: 19588 + - uid: 19589 components: - pos: -1.5,49.5 parent: 2 type: Transform - - uid: 19589 + - uid: 19590 components: - rot: 3.141592653589793 rad pos: 3.5,-44.5 parent: 2 type: Transform - - uid: 19590 + - uid: 19591 components: - pos: 7.5,18.5 parent: 2 type: Transform - - uid: 19591 + - uid: 19592 components: - rot: 1.5707963267948966 rad pos: 23.5,-46.5 parent: 2 type: Transform - - uid: 19592 + - uid: 19593 components: - pos: 2.5,-62.5 parent: 2 type: Transform - - uid: 19593 + - uid: 19594 components: - pos: 3.5,-78.5 parent: 2 type: Transform - - uid: 19594 + - uid: 19595 components: - pos: -6.5,-55.5 parent: 2 type: Transform - - uid: 19595 + - uid: 19596 components: - pos: -12.5,-58.5 parent: 2 type: Transform - - uid: 19596 + - uid: 19597 components: - rot: 1.5707963267948966 rad pos: -17.5,26.5 parent: 2 type: Transform - - uid: 19597 + - uid: 19598 components: - pos: -1.5,-35.5 parent: 2 type: Transform - - uid: 19598 + - uid: 19599 components: - pos: -28.5,-47.5 parent: 2 type: Transform - - uid: 19599 + - uid: 19600 components: - rot: -1.5707963267948966 rad pos: 3.5,-2.5 parent: 2 type: Transform - - uid: 19600 + - uid: 19601 components: - pos: 24.5,-60.5 parent: 2 type: Transform - - uid: 19601 + - uid: 19602 components: - rot: 3.141592653589793 rad pos: 22.5,30.5 parent: 2 type: Transform - - uid: 19602 + - uid: 19603 components: - pos: 23.5,-40.5 parent: 2 type: Transform - - uid: 19603 + - uid: 19604 components: - pos: 24.5,-40.5 parent: 2 type: Transform - - uid: 19604 + - uid: 19605 components: - pos: 25.5,-40.5 parent: 2 type: Transform - - uid: 19605 + - uid: 19606 components: - pos: 26.5,-40.5 parent: 2 type: Transform - - uid: 19606 + - uid: 19607 components: - pos: 21.5,-3.5 parent: 2 type: Transform - - uid: 19607 + - uid: 19608 components: - pos: 23.5,-3.5 parent: 2 type: Transform - - uid: 19608 + - uid: 19609 components: - pos: -6.5,-58.5 parent: 2 type: Transform - - uid: 19609 + - uid: 19610 components: - pos: 25.5,24.5 parent: 2 type: Transform - - uid: 19610 + - uid: 19611 components: - pos: -10.5,-57.5 parent: 2 type: Transform - - uid: 19611 + - uid: 19612 components: - pos: 1.5,-24.5 parent: 2 type: Transform - - uid: 19612 + - uid: 19613 components: - pos: 29.5,9.5 parent: 2 type: Transform - - uid: 19613 + - uid: 19614 components: - rot: 3.141592653589793 rad pos: 22.5,32.5 parent: 2 type: Transform - - uid: 19614 + - uid: 19615 components: - pos: 15.5,18.5 parent: 2 type: Transform - - uid: 19615 + - uid: 19616 components: - pos: -13.5,-11.5 parent: 2 type: Transform - - uid: 19616 + - uid: 19617 components: - rot: 3.141592653589793 rad pos: 33.5,-63.5 parent: 2 type: Transform - - uid: 19617 + - uid: 19618 components: - rot: 3.141592653589793 rad pos: 22.5,-55.5 parent: 2 type: Transform - - uid: 19618 + - uid: 19619 components: - pos: -9.5,-62.5 parent: 2 type: Transform - - uid: 19619 + - uid: 19620 components: - pos: 4.5,-85.5 parent: 2 type: Transform - - uid: 19620 + - uid: 19621 components: - pos: 18.5,-38.5 parent: 2 type: Transform - - uid: 19621 + - uid: 19622 components: - pos: 17.5,-36.5 parent: 2 type: Transform - - uid: 19622 + - uid: 19623 components: - pos: 17.5,-34.5 parent: 2 type: Transform - - uid: 19623 + - uid: 19624 components: - pos: -27.5,-89.5 parent: 2 type: Transform - - uid: 19624 + - uid: 19625 components: - pos: -1.5,-33.5 parent: 2 type: Transform - - uid: 19625 + - uid: 19626 components: - pos: 4.5,-84.5 parent: 2 type: Transform - - uid: 19626 + - uid: 19627 components: - pos: -14.5,-77.5 parent: 2 type: Transform - - uid: 19627 + - uid: 19628 components: - pos: -21.5,-91.5 parent: 2 type: Transform - - uid: 19628 + - uid: 19629 components: - pos: 4.5,-88.5 parent: 2 type: Transform - - uid: 19629 + - uid: 19630 components: - pos: -25.5,-91.5 parent: 2 type: Transform - - uid: 19630 + - uid: 19631 components: - pos: 4.5,-81.5 parent: 2 type: Transform - - uid: 19631 + - uid: 19632 components: - pos: -18.5,-89.5 parent: 2 type: Transform - - uid: 19632 + - uid: 19633 components: - pos: 4.5,-87.5 parent: 2 type: Transform - - uid: 19633 + - uid: 19634 components: - pos: 19.5,0.5 parent: 2 type: Transform - - uid: 19634 + - uid: 19635 components: - pos: 19.5,-38.5 parent: 2 type: Transform - - uid: 19635 + - uid: 19636 components: - pos: 2.5,-24.5 parent: 2 type: Transform - - uid: 19636 + - uid: 19637 components: - pos: 23.5,-12.5 parent: 2 type: Transform - - uid: 19637 + - uid: 19638 components: - pos: 21.5,-15.5 parent: 2 type: Transform - - uid: 19638 + - uid: 19639 components: - pos: 19.5,1.5 parent: 2 type: Transform - - uid: 19639 + - uid: 19640 components: - pos: 28.5,-20.5 parent: 2 type: Transform - - uid: 19640 + - uid: 19641 components: - rot: 3.141592653589793 rad pos: 20.5,-55.5 parent: 2 type: Transform - - uid: 19641 + - uid: 19642 components: - rot: 3.141592653589793 rad pos: 21.5,-55.5 parent: 2 type: Transform - - uid: 19642 + - uid: 19643 components: - pos: 18.5,-66.5 parent: 2 type: Transform - - uid: 19643 + - uid: 19644 components: - pos: 18.5,-65.5 parent: 2 type: Transform - - uid: 19644 + - uid: 19645 components: - rot: 3.141592653589793 rad pos: 28.5,-62.5 parent: 2 type: Transform - - uid: 19645 + - uid: 19646 components: - pos: 42.5,-23.5 parent: 2 type: Transform - - uid: 19646 + - uid: 19647 components: - pos: 41.5,-23.5 parent: 2 type: Transform - - uid: 19647 + - uid: 19648 components: - rot: 3.141592653589793 rad pos: 31.5,-64.5 parent: 2 type: Transform - - uid: 19648 + - uid: 19649 components: - pos: -21.5,11.5 parent: 2 type: Transform - - uid: 19649 + - uid: 19650 components: - pos: 27.5,-38.5 parent: 2 type: Transform - - uid: 19650 + - uid: 19651 components: - pos: -10.5,-11.5 parent: 2 type: Transform - - uid: 19651 + - uid: 19652 components: - pos: -12.5,-16.5 parent: 2 type: Transform - - uid: 19652 + - uid: 19653 components: - rot: -1.5707963267948966 rad pos: -26.5,-9.5 parent: 2 type: Transform - - uid: 19653 + - uid: 19654 components: - pos: 12.5,-33.5 parent: 2 type: Transform - - uid: 19654 + - uid: 19655 components: - pos: 12.5,-32.5 parent: 2 type: Transform - - uid: 19655 + - uid: 19656 components: - rot: 3.141592653589793 rad pos: 26.5,-20.5 parent: 2 type: Transform - - uid: 19656 + - uid: 19657 components: - pos: 3.5,-36.5 parent: 2 type: Transform - - uid: 19657 + - uid: 19658 components: - pos: 2.5,-39.5 parent: 2 type: Transform - - uid: 19658 + - uid: 19659 components: - rot: 3.141592653589793 rad pos: 22.5,29.5 parent: 2 type: Transform - - uid: 19659 + - uid: 19660 components: - rot: 3.141592653589793 rad pos: 22.5,31.5 parent: 2 type: Transform - - uid: 19660 + - uid: 19661 components: - rot: 3.141592653589793 rad pos: 22.5,33.5 parent: 2 type: Transform - - uid: 19661 + - uid: 19662 components: - rot: 3.141592653589793 rad pos: 22.5,37.5 parent: 2 type: Transform - - uid: 19662 + - uid: 19663 components: - pos: 5.5,-58.5 parent: 2 type: Transform - - uid: 19663 + - uid: 19664 components: - rot: -1.5707963267948966 rad pos: 43.5,5.5 parent: 2 type: Transform - - uid: 19664 + - uid: 19665 components: - pos: 4.5,-86.5 parent: 2 type: Transform - - uid: 19665 + - uid: 19666 components: - pos: 4.5,-83.5 parent: 2 type: Transform - - uid: 19666 + - uid: 19667 components: - pos: 18.5,33.5 parent: 2 type: Transform - - uid: 19667 + - uid: 19668 components: - pos: -1.5,-31.5 parent: 2 type: Transform - - uid: 19668 + - uid: 19669 components: - pos: 15.5,-68.5 parent: 2 type: Transform - - uid: 19669 + - uid: 19670 components: - pos: 42.5,-28.5 parent: 2 type: Transform - - uid: 19670 + - uid: 19671 components: - pos: 41.5,-28.5 parent: 2 type: Transform - - uid: 19671 + - uid: 19672 components: - rot: -1.5707963267948966 rad pos: -31.5,-77.5 parent: 2 type: Transform - - uid: 19672 + - uid: 19673 components: - pos: -1.5,-32.5 parent: 2 type: Transform - - uid: 19673 + - uid: 19674 components: - rot: 3.141592653589793 rad pos: 6.5,-20.5 parent: 2 type: Transform - - uid: 19674 + - uid: 19675 components: - pos: 0.5,-62.5 parent: 2 type: Transform - - uid: 19675 + - uid: 19676 components: - pos: 7.5,-61.5 parent: 2 type: Transform - - uid: 19676 + - uid: 19677 components: - pos: 26.5,-3.5 parent: 2 type: Transform - - uid: 19677 + - uid: 19678 components: - pos: -13.5,37.5 parent: 2 type: Transform - - uid: 19678 + - uid: 19679 components: - pos: -15.5,-77.5 parent: 2 type: Transform - - uid: 19679 + - uid: 19680 components: - pos: 3.5,-79.5 parent: 2 type: Transform - - uid: 19680 + - uid: 19681 components: - pos: 19.5,2.5 parent: 2 type: Transform - - uid: 19681 + - uid: 19682 components: - rot: -1.5707963267948966 rad pos: -21.5,-20.5 parent: 2 type: Transform - - uid: 19682 + - uid: 19683 components: - pos: 34.5,9.5 parent: 2 type: Transform - - uid: 19683 + - uid: 19684 components: - pos: 35.5,4.5 parent: 2 type: Transform - - uid: 19684 + - uid: 19685 components: - pos: 1.5,-56.5 parent: 2 type: Transform - - uid: 19685 + - uid: 19686 components: - pos: 1.5,-57.5 parent: 2 type: Transform - - uid: 19686 + - uid: 19687 components: - pos: -10.5,-56.5 parent: 2 type: Transform - - uid: 19687 + - uid: 19688 components: - pos: -13.5,-57.5 parent: 2 type: Transform - - uid: 19688 + - uid: 19689 components: - pos: -4.5,-44.5 parent: 2 type: Transform - - uid: 19689 + - uid: 19690 components: - pos: -5.5,-44.5 parent: 2 type: Transform - - uid: 19690 + - uid: 19691 components: - pos: 5.5,-44.5 parent: 2 type: Transform - - uid: 19691 + - uid: 19692 components: - pos: 4.5,-44.5 parent: 2 type: Transform - - uid: 19692 + - uid: 19693 components: - pos: 18.5,32.5 parent: 2 type: Transform - - uid: 19693 + - uid: 19694 components: - pos: -0.5,-62.5 parent: 2 type: Transform - - uid: 19694 + - uid: 19695 components: - pos: -8.5,-62.5 parent: 2 type: Transform - - uid: 19695 + - uid: 19696 components: - rot: 1.5707963267948966 rad pos: -2.5,-4.5 parent: 2 type: Transform - - uid: 19696 + - uid: 19697 components: - pos: 3.5,-77.5 parent: 2 type: Transform - - uid: 19697 + - uid: 19698 components: - rot: 3.141592653589793 rad pos: 33.5,-62.5 parent: 2 type: Transform - - uid: 19698 + - uid: 19699 components: - rot: 3.141592653589793 rad pos: 30.5,-64.5 parent: 2 type: Transform - - uid: 19699 + - uid: 19700 components: - pos: 9.5,14.5 parent: 2 type: Transform - - uid: 19700 + - uid: 19701 components: - rot: 3.141592653589793 rad pos: 22.5,28.5 parent: 2 type: Transform - - uid: 19701 + - uid: 19702 components: - pos: 27.5,-40.5 parent: 2 type: Transform - - uid: 19702 + - uid: 19703 components: - pos: 68.5,-56.5 parent: 2 type: Transform - - uid: 19703 + - uid: 19704 components: - pos: -1.5,-57.5 parent: 2 type: Transform - - uid: 19704 + - uid: 19705 components: - pos: -1.5,-56.5 parent: 2 type: Transform - - uid: 19705 + - uid: 19706 components: - pos: 2.5,-58.5 parent: 2 type: Transform - - uid: 19706 + - uid: 19707 components: - pos: -3.5,-58.5 parent: 2 type: Transform - - uid: 19707 + - uid: 19708 components: - pos: 4.5,-62.5 parent: 2 type: Transform - - uid: 19708 + - uid: 19709 components: - pos: -0.5,-58.5 parent: 2 type: Transform - - uid: 19709 + - uid: 19710 components: - pos: 31.5,-38.5 parent: 2 type: Transform - - uid: 19710 + - uid: 19711 components: - pos: 33.5,-36.5 parent: 2 type: Transform - - uid: 19711 + - uid: 19712 components: - pos: 33.5,-34.5 parent: 2 type: Transform - - uid: 19712 + - uid: 19713 components: - pos: 26.5,5.5 parent: 2 type: Transform - - uid: 19713 + - uid: 19714 components: - pos: 9.5,13.5 parent: 2 type: Transform - - uid: 19714 + - uid: 19715 components: - pos: 17.5,18.5 parent: 2 type: Transform - - uid: 19715 + - uid: 19716 components: - rot: 3.141592653589793 rad pos: -7.5,-76.5 parent: 2 type: Transform - - uid: 19716 + - uid: 19717 components: - pos: 24.5,-59.5 parent: 2 type: Transform - - uid: 19717 + - uid: 19718 components: - pos: -29.5,45.5 parent: 2 type: Transform - - uid: 19718 + - uid: 19719 components: - pos: 24.5,-58.5 parent: 2 type: Transform - - uid: 19719 + - uid: 19720 components: - pos: -6.5,-36.5 parent: 2 type: Transform - - uid: 19720 + - uid: 19721 components: - pos: 19.5,-1.5 parent: 2 type: Transform - - uid: 19721 + - uid: 19722 components: - pos: -1.5,-34.5 parent: 2 type: Transform - - uid: 19722 + - uid: 19723 components: - pos: -27.5,-88.5 parent: 2 type: Transform - - uid: 19723 + - uid: 19724 components: - pos: -20.5,-91.5 parent: 2 type: Transform - - uid: 19724 + - uid: 19725 components: - pos: 17.5,-35.5 parent: 2 type: Transform - - uid: 19725 + - uid: 19726 components: - pos: 33.5,-35.5 parent: 2 type: Transform - - uid: 19726 + - uid: 19727 components: - pos: 22.5,5.5 parent: 2 type: Transform - - uid: 19727 + - uid: 19728 components: - pos: 27.5,5.5 parent: 2 type: Transform - - uid: 19728 + - uid: 19729 components: - pos: 35.5,7.5 parent: 2 type: Transform - - uid: 19729 + - uid: 19730 components: - pos: 32.5,9.5 parent: 2 type: Transform - - uid: 19730 + - uid: 19731 components: - rot: 3.141592653589793 rad pos: 22.5,34.5 parent: 2 type: Transform - - uid: 19731 + - uid: 19732 components: - pos: -3.5,-55.5 parent: 2 type: Transform - - uid: 19732 + - uid: 19733 components: - pos: -0.5,-55.5 parent: 2 type: Transform - - uid: 19733 + - uid: 19734 components: - pos: 2.5,-55.5 parent: 2 type: Transform - - uid: 19734 + - uid: 19735 components: - pos: -20.5,-58.5 parent: 2 type: Transform - - uid: 19735 + - uid: 19736 components: - pos: -9.5,-58.5 parent: 2 type: Transform - - uid: 19736 + - uid: 19737 components: - rot: -1.5707963267948966 rad pos: -31.5,-79.5 parent: 2 type: Transform - - uid: 19737 + - uid: 19738 components: - rot: 3.141592653589793 rad pos: 37.5,-35.5 parent: 2 type: Transform - - uid: 19738 + - uid: 19739 components: - pos: 33.5,-15.5 parent: 2 type: Transform - - uid: 19739 + - uid: 19740 components: - pos: -13.5,39.5 parent: 2 type: Transform - - uid: 19740 + - uid: 19741 components: - pos: -4.5,-57.5 parent: 2 type: Transform - - uid: 19741 + - uid: 19742 components: - pos: 19.5,3.5 parent: 2 type: Transform - - uid: 19742 + - uid: 19743 components: - pos: 4.5,-82.5 parent: 2 type: Transform - - uid: 19743 + - uid: 19744 components: - pos: 32.5,-38.5 parent: 2 type: Transform - - uid: 19744 + - uid: 19745 components: - rot: 3.141592653589793 rad pos: 6.5,-19.5 parent: 2 type: Transform - - uid: 19745 + - uid: 19746 components: - pos: 23.5,-20.5 parent: 2 type: Transform - - uid: 19746 + - uid: 19747 components: - pos: 25.5,-20.5 parent: 2 type: Transform - - uid: 19747 + - uid: 19748 components: - pos: 27.5,-20.5 parent: 2 type: Transform - - uid: 19748 + - uid: 19749 components: - pos: 19.5,-15.5 parent: 2 type: Transform - - uid: 19749 + - uid: 19750 components: - pos: 23.5,-11.5 parent: 2 type: Transform - - uid: 19750 + - uid: 19751 components: - pos: 25.5,-3.5 parent: 2 type: Transform - - uid: 19751 + - uid: 19752 components: - pos: 27.5,-3.5 parent: 2 type: Transform - - uid: 19752 + - uid: 19753 components: - pos: 22.5,-3.5 parent: 2 type: Transform - - uid: 19753 + - uid: 19754 components: - rot: 3.141592653589793 rad pos: -9.5,-76.5 parent: 2 type: Transform - - uid: 19754 + - uid: 19755 components: - rot: 3.141592653589793 rad pos: 24.5,-20.5 parent: 2 type: Transform - - uid: 19755 + - uid: 19756 components: - pos: 16.5,-68.5 parent: 2 type: Transform - - uid: 19756 + - uid: 19757 components: - rot: 3.141592653589793 rad pos: 31.5,13.5 parent: 2 type: Transform - - uid: 19757 + - uid: 19758 components: - rot: 3.141592653589793 rad pos: 34.5,13.5 parent: 2 type: Transform - - uid: 19758 + - uid: 19759 components: - pos: -6.5,-37.5 parent: 2 type: Transform - - uid: 19759 + - uid: 19760 components: - pos: -6.5,-38.5 parent: 2 type: Transform - - uid: 19760 + - uid: 19761 components: - pos: -9.5,-40.5 parent: 2 type: Transform - - uid: 19761 + - uid: 19762 components: - pos: -10.5,-40.5 parent: 2 type: Transform - - uid: 19762 + - uid: 19763 components: - pos: -11.5,-40.5 parent: 2 type: Transform - - uid: 19763 + - uid: 19764 components: - rot: -1.5707963267948966 rad pos: 68.5,-4.5 parent: 2 type: Transform - - uid: 19764 + - uid: 19765 components: - pos: -12.5,-11.5 parent: 2 type: Transform - - uid: 19765 + - uid: 19766 components: - pos: -9.5,-11.5 parent: 2 type: Transform - - uid: 19766 + - uid: 19767 components: - pos: -8.5,-11.5 parent: 2 type: Transform - - uid: 19767 + - uid: 19768 components: - pos: -10.5,-16.5 parent: 2 type: Transform - - uid: 19768 + - uid: 19769 components: - rot: 3.141592653589793 rad pos: 28.5,13.5 parent: 2 type: Transform - - uid: 19769 + - uid: 19770 components: - rot: 3.141592653589793 rad pos: 39.5,8.5 parent: 2 type: Transform - - uid: 19770 + - uid: 19771 components: - rot: 3.141592653589793 rad pos: 39.5,5.5 parent: 2 type: Transform - - uid: 19771 + - uid: 19772 components: - pos: -12.5,14.5 parent: 2 type: Transform - - uid: 19772 + - uid: 19773 components: - rot: 1.5707963267948966 rad pos: 20.5,-44.5 parent: 2 type: Transform - - uid: 19773 + - uid: 19774 components: - pos: 37.5,-36.5 parent: 2 type: Transform - - uid: 19774 + - uid: 19775 components: - pos: 33.5,37.5 parent: 2 type: Transform - - uid: 19775 + - uid: 19776 components: - pos: 32.5,37.5 parent: 2 type: Transform - - uid: 19776 + - uid: 19777 components: - pos: 31.5,37.5 parent: 2 type: Transform - - uid: 19777 + - uid: 19778 components: - pos: 30.5,37.5 parent: 2 type: Transform - - uid: 19778 + - uid: 19779 components: - pos: 29.5,37.5 parent: 2 type: Transform - - uid: 19779 + - uid: 19780 components: - pos: 28.5,37.5 parent: 2 type: Transform - - uid: 19780 + - uid: 19781 components: - pos: 27.5,37.5 parent: 2 type: Transform - - uid: 19781 + - uid: 19782 components: - pos: 26.5,37.5 parent: 2 type: Transform - - uid: 19782 + - uid: 19783 components: - pos: 25.5,37.5 parent: 2 type: Transform - - uid: 19783 + - uid: 19784 components: - rot: 3.141592653589793 rad pos: 23.5,37.5 parent: 2 type: Transform - - uid: 19784 + - uid: 19785 components: - pos: 43.5,11.5 parent: 2 type: Transform - - uid: 19785 + - uid: 19786 components: - pos: 43.5,10.5 parent: 2 type: Transform - - uid: 19786 + - uid: 19787 components: - pos: 53.5,14.5 parent: 2 type: Transform - - uid: 19787 + - uid: 19788 components: - pos: 52.5,14.5 parent: 2 type: Transform - - uid: 19788 + - uid: 19789 components: - pos: 54.5,14.5 parent: 2 type: Transform - - uid: 19789 + - uid: 19790 components: - pos: 51.5,13.5 parent: 2 type: Transform - - uid: 19790 + - uid: 19791 components: - pos: 51.5,11.5 parent: 2 type: Transform - - uid: 19791 + - uid: 19792 components: - pos: 55.5,13.5 parent: 2 type: Transform - - uid: 19792 + - uid: 19793 components: - pos: 55.5,12.5 parent: 2 type: Transform - - uid: 19793 + - uid: 19794 components: - pos: 55.5,11.5 parent: 2 type: Transform - - uid: 19794 + - uid: 19795 components: - pos: 52.5,10.5 parent: 2 type: Transform - - uid: 19795 + - uid: 19796 components: - pos: 54.5,10.5 parent: 2 type: Transform - - uid: 19796 + - uid: 19797 components: - pos: 27.5,22.5 parent: 2 type: Transform - - uid: 19797 + - uid: 19798 components: - pos: -15.5,2.5 parent: 2 type: Transform - - uid: 19798 + - uid: 19799 components: - pos: 48.5,-0.5 parent: 2 type: Transform - - uid: 19799 + - uid: 19800 components: - pos: 43.5,-0.5 parent: 2 type: Transform - - uid: 19800 + - uid: 19801 components: - pos: 42.5,-0.5 parent: 2 type: Transform - - uid: 19801 + - uid: 19802 components: - pos: 41.5,-0.5 parent: 2 type: Transform - - uid: 19802 + - uid: 19803 components: - pos: 39.5,-0.5 parent: 2 type: Transform - - uid: 19803 + - uid: 19804 components: - pos: 37.5,-0.5 parent: 2 type: Transform - - uid: 19804 + - uid: 19805 components: - pos: 35.5,-1.5 parent: 2 type: Transform - - uid: 19805 + - uid: 19806 components: - pos: 35.5,-2.5 parent: 2 type: Transform - - uid: 19806 + - uid: 19807 components: - pos: 35.5,-4.5 parent: 2 type: Transform - - uid: 19807 + - uid: 19808 components: - pos: 35.5,-5.5 parent: 2 type: Transform - - uid: 19808 + - uid: 19809 components: - rot: -1.5707963267948966 rad pos: 36.5,24.5 parent: 2 type: Transform - - uid: 19809 + - uid: 19810 components: - rot: -1.5707963267948966 rad pos: 38.5,24.5 parent: 2 type: Transform - - uid: 19810 + - uid: 19811 components: - rot: -1.5707963267948966 rad pos: 40.5,24.5 parent: 2 type: Transform - - uid: 19811 + - uid: 19812 components: - rot: -1.5707963267948966 rad pos: 42.5,24.5 parent: 2 type: Transform - - uid: 19812 + - uid: 19813 components: - rot: 3.141592653589793 rad pos: 22.5,27.5 parent: 2 type: Transform - - uid: 19813 + - uid: 19814 components: - pos: 43.5,7.5 parent: 2 type: Transform - - uid: 19814 + - uid: 19815 components: - pos: 66.5,25.5 parent: 2 type: Transform - - uid: 19815 + - uid: 19816 components: - pos: 66.5,23.5 parent: 2 type: Transform - - uid: 19816 + - uid: 19817 components: - pos: 64.5,27.5 parent: 2 type: Transform - - uid: 19817 + - uid: 19818 components: - pos: 62.5,27.5 parent: 2 type: Transform - - uid: 19818 + - uid: 19819 components: - rot: -1.5707963267948966 rad pos: 42.5,-44.5 parent: 2 type: Transform - - uid: 19819 + - uid: 19820 components: - pos: 46.5,9.5 parent: 2 type: Transform - - uid: 19820 + - uid: 19821 components: - rot: -1.5707963267948966 rad pos: 67.5,-7.5 parent: 2 type: Transform - - uid: 19821 + - uid: 19822 components: - rot: -1.5707963267948966 rad pos: 66.5,-0.5 parent: 2 type: Transform - - uid: 19822 + - uid: 19823 components: - rot: -1.5707963267948966 rad pos: 66.5,-1.5 parent: 2 type: Transform - - uid: 19823 + - uid: 19824 components: - pos: 60.5,-4.5 parent: 2 type: Transform - - uid: 19824 + - uid: 19825 components: - rot: -1.5707963267948966 rad pos: 67.5,-8.5 parent: 2 type: Transform - - uid: 19825 + - uid: 19826 components: - rot: -1.5707963267948966 rad pos: 67.5,-9.5 parent: 2 type: Transform - - uid: 19826 + - uid: 19827 components: - rot: -1.5707963267948966 rad pos: 68.5,-2.5 parent: 2 type: Transform - - uid: 19827 + - uid: 19828 components: - rot: -1.5707963267948966 rad pos: 68.5,-10.5 parent: 2 type: Transform - - uid: 19828 + - uid: 19829 components: - rot: -1.5707963267948966 rad pos: 68.5,-12.5 parent: 2 type: Transform - - uid: 19829 + - uid: 19830 components: - rot: -1.5707963267948966 rad pos: 68.5,-6.5 parent: 2 type: Transform - - uid: 19830 + - uid: 19831 components: - pos: 61.5,-18.5 parent: 2 type: Transform - - uid: 19831 + - uid: 19832 components: - pos: 63.5,-18.5 parent: 2 type: Transform - - uid: 19832 + - uid: 19833 components: - pos: 61.5,-20.5 parent: 2 type: Transform - - uid: 19833 + - uid: 19834 components: - pos: 63.5,-20.5 parent: 2 type: Transform - - uid: 19834 + - uid: 19835 components: - pos: 61.5,-22.5 parent: 2 type: Transform - - uid: 19835 + - uid: 19836 components: - pos: 63.5,-22.5 parent: 2 type: Transform - - uid: 19836 + - uid: 19837 components: - pos: 61.5,-24.5 parent: 2 type: Transform - - uid: 19837 + - uid: 19838 components: - pos: 63.5,-24.5 parent: 2 type: Transform - - uid: 19838 + - uid: 19839 components: - pos: 63.5,-26.5 parent: 2 type: Transform - - uid: 19839 + - uid: 19840 components: - pos: 49.5,-62.5 parent: 2 type: Transform - - uid: 19840 + - uid: 19841 components: - pos: 56.5,-46.5 parent: 2 type: Transform - - uid: 19841 + - uid: 19842 components: - pos: 63.5,-50.5 parent: 2 type: Transform - - uid: 19842 + - uid: 19843 components: - pos: 61.5,-50.5 parent: 2 type: Transform - - uid: 19843 + - uid: 19844 components: - pos: 58.5,-51.5 parent: 2 type: Transform - - uid: 19844 + - uid: 19845 components: - pos: 58.5,-52.5 parent: 2 type: Transform - - uid: 19845 + - uid: 19846 components: - pos: 54.5,-51.5 parent: 2 type: Transform - - uid: 19846 + - uid: 19847 components: - pos: 54.5,-52.5 parent: 2 type: Transform - - uid: 19847 + - uid: 19848 components: - pos: 54.5,-53.5 parent: 2 type: Transform - - uid: 19848 + - uid: 19849 components: - pos: 61.5,-56.5 parent: 2 type: Transform - - uid: 19849 + - uid: 19850 components: - pos: 62.5,-56.5 parent: 2 type: Transform - - uid: 19850 + - uid: 19851 components: - pos: 63.5,-56.5 parent: 2 type: Transform - - uid: 19851 + - uid: 19852 components: - pos: 66.5,-51.5 parent: 2 type: Transform - - uid: 19852 + - uid: 19853 components: - pos: 66.5,-52.5 parent: 2 type: Transform - - uid: 19853 + - uid: 19854 components: - pos: 36.5,33.5 parent: 2 type: Transform - - uid: 19854 + - uid: 19855 components: - pos: 36.5,32.5 parent: 2 type: Transform - - uid: 19855 + - uid: 19856 components: - pos: 36.5,31.5 parent: 2 type: Transform - - uid: 19856 + - uid: 19857 components: - pos: 36.5,30.5 parent: 2 type: Transform - - uid: 19857 + - uid: 19858 components: - pos: 36.5,29.5 parent: 2 type: Transform - - uid: 19858 + - uid: 19859 components: - pos: 36.5,28.5 parent: 2 type: Transform - - uid: 19859 + - uid: 19860 components: - pos: 36.5,27.5 parent: 2 type: Transform - - uid: 19860 + - uid: 19861 components: - pos: 51.5,-62.5 parent: 2 type: Transform - - uid: 19861 + - uid: 19862 components: - rot: -1.5707963267948966 rad pos: 71.5,-50.5 parent: 2 type: Transform - - uid: 19862 + - uid: 19863 components: - pos: 68.5,-42.5 parent: 2 type: Transform - - uid: 19863 + - uid: 19864 components: - pos: 77.5,-38.5 parent: 2 type: Transform - - uid: 19864 + - uid: 19865 components: - pos: 78.5,-46.5 parent: 2 type: Transform - - uid: 19865 + - uid: 19866 components: - rot: 1.5707963267948966 rad pos: 33.5,-57.5 parent: 2 type: Transform - - uid: 19866 + - uid: 19867 components: - rot: 1.5707963267948966 rad pos: 32.5,-57.5 parent: 2 type: Transform - - uid: 19867 + - uid: 19868 components: - rot: 1.5707963267948966 rad pos: 30.5,-57.5 parent: 2 type: Transform - - uid: 19868 + - uid: 19869 components: - rot: 1.5707963267948966 rad pos: 29.5,-57.5 parent: 2 type: Transform - - uid: 19869 + - uid: 19870 components: - rot: 1.5707963267948966 rad pos: 27.5,-54.5 parent: 2 type: Transform - - uid: 19870 + - uid: 19871 components: - rot: 1.5707963267948966 rad pos: 27.5,-55.5 parent: 2 type: Transform - - uid: 19871 + - uid: 19872 components: - rot: 1.5707963267948966 rad pos: 27.5,-51.5 parent: 2 type: Transform - - uid: 19872 + - uid: 19873 components: - rot: 1.5707963267948966 rad pos: 27.5,-47.5 parent: 2 type: Transform - - uid: 19873 + - uid: 19874 components: - rot: 3.141592653589793 rad pos: 64.5,-37.5 parent: 2 type: Transform - - uid: 19874 + - uid: 19875 components: - pos: -12.5,-44.5 parent: 2 type: Transform - - uid: 19875 + - uid: 19876 components: - pos: -13.5,-44.5 parent: 2 type: Transform - - uid: 19876 + - uid: 19877 components: - pos: -14.5,-44.5 parent: 2 type: Transform - - uid: 19877 + - uid: 19878 components: - rot: 3.141592653589793 rad pos: 49.5,-59.5 parent: 2 type: Transform - - uid: 19878 + - uid: 19879 components: - rot: 3.141592653589793 rad pos: 50.5,-59.5 parent: 2 type: Transform - - uid: 19879 + - uid: 19880 components: - pos: -19.5,5.5 parent: 2 type: Transform - - uid: 19880 + - uid: 19881 components: - pos: -23.5,2.5 parent: 2 type: Transform - - uid: 19881 + - uid: 19882 components: - pos: -2.5,42.5 parent: 2 type: Transform - - uid: 19882 + - uid: 19883 components: - rot: -1.5707963267948966 rad pos: -21.5,-22.5 parent: 2 type: Transform - - uid: 19883 + - uid: 19884 components: - pos: -21.5,-13.5 parent: 2 type: Transform - - uid: 19884 + - uid: 19885 components: - pos: -21.5,-14.5 parent: 2 type: Transform - - uid: 19885 + - uid: 19886 components: - pos: -21.5,-9.5 parent: 2 type: Transform - - uid: 19886 + - uid: 19887 components: - pos: -21.5,-10.5 parent: 2 type: Transform - - uid: 19887 + - uid: 19888 components: - pos: -26.5,-10.5 parent: 2 type: Transform - - uid: 19888 + - uid: 19889 components: - pos: -26.5,-11.5 parent: 2 type: Transform - - uid: 19889 + - uid: 19890 components: - pos: -30.5,-12.5 parent: 2 type: Transform - - uid: 19890 + - uid: 19891 components: - pos: -30.5,-13.5 parent: 2 type: Transform - - uid: 19891 + - uid: 19892 components: - pos: -22.5,-3.5 parent: 2 type: Transform - - uid: 19892 + - uid: 19893 components: - pos: -21.5,-3.5 parent: 2 type: Transform - - uid: 19893 + - uid: 19894 components: - pos: -22.5,-1.5 parent: 2 type: Transform - - uid: 19894 + - uid: 19895 components: - pos: -21.5,-1.5 parent: 2 type: Transform - - uid: 19895 + - uid: 19896 components: - pos: -17.5,-1.5 parent: 2 type: Transform - - uid: 19896 + - uid: 19897 components: - pos: -16.5,-1.5 parent: 2 type: Transform - - uid: 19897 + - uid: 19898 components: - pos: -19.5,0.5 parent: 2 type: Transform - - uid: 19898 + - uid: 19899 components: - pos: -17.5,0.5 parent: 2 type: Transform - - uid: 19899 + - uid: 19900 components: - pos: -16.5,0.5 parent: 2 type: Transform - - uid: 19900 + - uid: 19901 components: - pos: -17.5,-3.5 parent: 2 type: Transform - - uid: 19901 + - uid: 19902 components: - pos: -16.5,-3.5 parent: 2 type: Transform - - uid: 19902 + - uid: 19903 components: - rot: 1.5707963267948966 rad pos: -26.5,-13.5 parent: 2 type: Transform - - uid: 19903 + - uid: 19904 components: - rot: -1.5707963267948966 rad pos: -24.5,-18.5 parent: 2 type: Transform - - uid: 19904 + - uid: 19905 components: - pos: 52.5,-57.5 parent: 2 type: Transform - - uid: 19905 + - uid: 19906 components: - rot: 3.141592653589793 rad pos: 56.5,-55.5 parent: 2 type: Transform - - uid: 19906 + - uid: 19907 components: - rot: 3.141592653589793 rad pos: 59.5,-54.5 parent: 2 type: Transform - - uid: 19907 + - uid: 19908 components: - rot: 3.141592653589793 rad pos: 65.5,-54.5 parent: 2 type: Transform - - uid: 19908 + - uid: 19909 components: - pos: 41.5,-74.5 parent: 2 type: Transform - - uid: 19909 + - uid: 19910 components: - pos: 32.5,-77.5 parent: 2 type: Transform - - uid: 19910 + - uid: 19911 components: - pos: 32.5,-78.5 parent: 2 type: Transform - - uid: 19911 + - uid: 19912 components: - pos: 32.5,-79.5 parent: 2 type: Transform - - uid: 19912 + - uid: 19913 components: - rot: 3.141592653589793 rad pos: 25.5,-80.5 parent: 2 type: Transform - - uid: 19913 + - uid: 19914 components: - rot: 3.141592653589793 rad pos: 51.5,-73.5 parent: 2 type: Transform - - uid: 19914 + - uid: 19915 components: - rot: 1.5707963267948966 rad pos: 34.5,-84.5 parent: 2 type: Transform - - uid: 19915 + - uid: 19916 components: - pos: 17.5,-71.5 parent: 2 type: Transform - - uid: 19916 + - uid: 19917 components: - pos: 18.5,-71.5 parent: 2 type: Transform - - uid: 19917 + - uid: 19918 components: - rot: 1.5707963267948966 rad pos: 34.5,-85.5 parent: 2 type: Transform - - uid: 19918 + - uid: 19919 components: - rot: 1.5707963267948966 rad pos: 34.5,-86.5 parent: 2 type: Transform - - uid: 19919 + - uid: 19920 components: - pos: 15.5,-71.5 parent: 2 type: Transform - - uid: 19920 + - uid: 19921 components: - pos: 18.5,-74.5 parent: 2 type: Transform - - uid: 19921 + - uid: 19922 components: - pos: 17.5,-74.5 parent: 2 type: Transform - - uid: 19922 + - uid: 19923 components: - pos: 14.5,-71.5 parent: 2 type: Transform - - uid: 19923 + - uid: 19924 components: - pos: 14.5,-74.5 parent: 2 type: Transform - - uid: 19924 + - uid: 19925 components: - pos: 15.5,-74.5 parent: 2 type: Transform - - uid: 19925 + - uid: 19926 components: - rot: 1.5707963267948966 rad pos: 44.5,-86.5 parent: 2 type: Transform - - uid: 19926 + - uid: 19927 components: - rot: 1.5707963267948966 rad pos: 44.5,-87.5 parent: 2 type: Transform - - uid: 19927 + - uid: 19928 components: - rot: 1.5707963267948966 rad pos: 34.5,-87.5 parent: 2 type: Transform - - uid: 19928 + - uid: 19929 components: - rot: 1.5707963267948966 rad pos: 44.5,-84.5 parent: 2 type: Transform - - uid: 19929 + - uid: 19930 components: - rot: 1.5707963267948966 rad pos: 44.5,-85.5 parent: 2 type: Transform - - uid: 19930 + - uid: 19931 components: - rot: 1.5707963267948966 rad pos: 42.5,-69.5 parent: 2 type: Transform - - uid: 19931 + - uid: 19932 components: - rot: 1.5707963267948966 rad pos: 43.5,-69.5 parent: 2 type: Transform - - uid: 19932 + - uid: 19933 components: - rot: 1.5707963267948966 rad pos: 44.5,-69.5 parent: 2 type: Transform - - uid: 19933 + - uid: 19934 components: - rot: 1.5707963267948966 rad pos: 34.5,-69.5 parent: 2 type: Transform - - uid: 19934 + - uid: 19935 components: - rot: 1.5707963267948966 rad pos: 35.5,-69.5 parent: 2 type: Transform - - uid: 19935 + - uid: 19936 components: - rot: 1.5707963267948966 rad pos: 36.5,-69.5 parent: 2 type: Transform - - uid: 19936 + - uid: 19937 components: - rot: 1.5707963267948966 rad pos: 37.5,-66.5 parent: 2 type: Transform - - uid: 19937 + - uid: 19938 components: - rot: 1.5707963267948966 rad pos: 38.5,-74.5 parent: 2 type: Transform - - uid: 19938 + - uid: 19939 components: - rot: 1.5707963267948966 rad pos: 39.5,-74.5 parent: 2 type: Transform - - uid: 19939 + - uid: 19940 components: - rot: 1.5707963267948966 rad pos: 40.5,-74.5 parent: 2 type: Transform - - uid: 19940 + - uid: 19941 components: - rot: -1.5707963267948966 rad pos: -37.5,-14.5 parent: 2 type: Transform - - uid: 19941 + - uid: 19942 components: - pos: -33.5,-17.5 parent: 2 type: Transform - - uid: 19942 + - uid: 19943 components: - pos: -33.5,-15.5 parent: 2 type: Transform - - uid: 19943 + - uid: 19944 components: - rot: 3.141592653589793 rad pos: -33.5,-12.5 parent: 2 type: Transform - - uid: 19944 + - uid: 19945 components: - rot: 3.141592653589793 rad pos: -33.5,-9.5 parent: 2 type: Transform - - uid: 19945 + - uid: 19946 components: - rot: 3.141592653589793 rad pos: -40.5,-9.5 parent: 2 type: Transform - - uid: 19946 + - uid: 19947 components: - rot: 3.141592653589793 rad pos: -40.5,-12.5 parent: 2 type: Transform - - uid: 19947 + - uid: 19948 components: - pos: 50.5,-31.5 parent: 2 type: Transform - - uid: 19948 + - uid: 19949 components: - pos: 51.5,-31.5 parent: 2 type: Transform - - uid: 19949 + - uid: 19950 components: - rot: -1.5707963267948966 rad pos: -21.5,-35.5 parent: 2 type: Transform - - uid: 19950 + - uid: 19951 components: - pos: -38.5,-37.5 parent: 2 type: Transform - - uid: 19951 + - uid: 19952 components: - pos: -37.5,-37.5 parent: 2 type: Transform - - uid: 19952 + - uid: 19953 components: - pos: -45.5,-18.5 parent: 2 type: Transform - - uid: 19953 + - uid: 19954 components: - rot: 3.141592653589793 rad pos: -43.5,-13.5 parent: 2 type: Transform - - uid: 19954 + - uid: 19955 components: - rot: 3.141592653589793 rad pos: -46.5,-7.5 parent: 2 type: Transform - - uid: 19955 + - uid: 19956 components: - rot: 3.141592653589793 rad pos: -49.5,-19.5 parent: 2 type: Transform - - uid: 19956 + - uid: 19957 components: - pos: -68.5,-22.5 parent: 2 type: Transform - - uid: 19957 + - uid: 19958 components: - pos: -67.5,-22.5 parent: 2 type: Transform - - uid: 19958 + - uid: 19959 components: - pos: -66.5,-22.5 parent: 2 type: Transform - - uid: 19959 + - uid: 19960 components: - pos: -65.5,-22.5 parent: 2 type: Transform - - uid: 19960 + - uid: 19961 components: - pos: -64.5,-22.5 parent: 2 type: Transform - - uid: 19961 + - uid: 19962 components: - pos: -66.5,-29.5 parent: 2 type: Transform - - uid: 19962 + - uid: 19963 components: - pos: -56.5,-11.5 parent: 2 type: Transform - - uid: 19963 + - uid: 19964 components: - pos: -56.5,-12.5 parent: 2 type: Transform - - uid: 19964 + - uid: 19965 components: - pos: -56.5,-13.5 parent: 2 type: Transform - - uid: 19965 + - uid: 19966 components: - pos: -56.5,-14.5 parent: 2 type: Transform - - uid: 19966 + - uid: 19967 components: - pos: -56.5,-15.5 parent: 2 type: Transform - - uid: 19967 + - uid: 19968 components: - pos: -65.5,-33.5 parent: 2 type: Transform - - uid: 19968 + - uid: 19969 components: - pos: -66.5,-33.5 parent: 2 type: Transform - - uid: 19969 + - uid: 19970 components: - pos: -67.5,-33.5 parent: 2 type: Transform - - uid: 19971 + - uid: 19972 components: - pos: -61.5,-31.5 parent: 2 type: Transform - - uid: 19972 + - uid: 19973 components: - pos: -47.5,-54.5 parent: 2 type: Transform - - uid: 19973 + - uid: 19974 components: - pos: -47.5,-52.5 parent: 2 type: Transform - - uid: 19974 + - uid: 19975 components: - pos: -47.5,-50.5 parent: 2 type: Transform - - uid: 19975 + - uid: 19976 components: - pos: -47.5,-48.5 parent: 2 type: Transform - - uid: 19976 + - uid: 19977 components: - pos: -47.5,-46.5 parent: 2 type: Transform - - uid: 19977 + - uid: 19978 components: - pos: -47.5,-44.5 parent: 2 type: Transform - - uid: 19978 + - uid: 19979 components: - pos: -47.5,-42.5 parent: 2 type: Transform - - uid: 19979 + - uid: 19980 components: - pos: -44.5,-39.5 parent: 2 type: Transform - - uid: 19980 + - uid: 19981 components: - pos: -41.5,-33.5 parent: 2 type: Transform - - uid: 19981 + - uid: 19982 components: - pos: -41.5,-34.5 parent: 2 type: Transform - - uid: 19982 + - uid: 19983 components: - pos: -41.5,-35.5 parent: 2 type: Transform - - uid: 19983 + - uid: 19984 components: - pos: -45.5,-33.5 parent: 2 type: Transform - - uid: 19984 + - uid: 19985 components: - pos: -45.5,-35.5 parent: 2 type: Transform - - uid: 19985 + - uid: 19986 components: - pos: -59.5,-3.5 parent: 2 type: Transform - - uid: 19986 + - uid: 19987 components: - pos: -60.5,-3.5 parent: 2 type: Transform - - uid: 19987 + - uid: 19988 components: - pos: -61.5,-3.5 parent: 2 type: Transform - - uid: 19988 + - uid: 19989 components: - pos: -62.5,-3.5 parent: 2 type: Transform - - uid: 19989 + - uid: 19990 components: - pos: -66.5,-3.5 parent: 2 type: Transform - - uid: 19990 + - uid: 19991 components: - pos: -67.5,-3.5 parent: 2 type: Transform - - uid: 19991 + - uid: 19992 components: - pos: -68.5,-3.5 parent: 2 type: Transform - - uid: 19992 + - uid: 19993 components: - pos: -69.5,-3.5 parent: 2 type: Transform - - uid: 19993 + - uid: 19994 components: - pos: -76.5,-3.5 parent: 2 type: Transform - - uid: 19994 + - uid: 19995 components: - pos: -73.5,-3.5 parent: 2 type: Transform - - uid: 19995 + - uid: 19996 components: - pos: -74.5,-3.5 parent: 2 type: Transform - - uid: 19996 + - uid: 19997 components: - pos: -75.5,-3.5 parent: 2 type: Transform - - uid: 19997 + - uid: 19998 components: - pos: -76.5,-7.5 parent: 2 type: Transform - - uid: 19998 + - uid: 19999 components: - pos: -76.5,-8.5 parent: 2 type: Transform - - uid: 19999 + - uid: 20000 components: - pos: -76.5,-9.5 parent: 2 type: Transform - - uid: 20000 + - uid: 20001 components: - pos: -76.5,-10.5 parent: 2 type: Transform - - uid: 20001 + - uid: 20002 components: - pos: -76.5,-14.5 parent: 2 type: Transform - - uid: 20002 + - uid: 20003 components: - pos: -76.5,-15.5 parent: 2 type: Transform - - uid: 20003 + - uid: 20004 components: - pos: -76.5,-16.5 parent: 2 type: Transform - - uid: 20004 + - uid: 20005 components: - pos: -76.5,-17.5 parent: 2 type: Transform - - uid: 20005 + - uid: 20006 components: - pos: -76.5,-21.5 parent: 2 type: Transform - - uid: 20006 + - uid: 20007 components: - pos: -76.5,-22.5 parent: 2 type: Transform - - uid: 20007 + - uid: 20008 components: - rot: -1.5707963267948966 rad pos: -76.5,-24.5 parent: 2 type: Transform - - uid: 20008 + - uid: 20009 components: - pos: -76.5,-23.5 parent: 2 type: Transform - - uid: 20009 + - uid: 20010 components: - pos: -35.5,-58.5 parent: 2 type: Transform - - uid: 20010 + - uid: 20011 components: - rot: 3.141592653589793 rad pos: -38.5,-59.5 parent: 2 type: Transform - - uid: 20011 + - uid: 20012 components: - pos: -41.5,-58.5 parent: 2 type: Transform - - uid: 20012 + - uid: 20013 components: - pos: -42.5,-58.5 parent: 2 type: Transform - - uid: 20013 + - uid: 20014 components: - pos: -44.5,-58.5 parent: 2 type: Transform - - uid: 20014 + - uid: 20015 components: - pos: -21.5,-61.5 parent: 2 type: Transform - - uid: 20015 + - uid: 20016 components: - rot: -1.5707963267948966 rad pos: -53.5,-83.5 parent: 2 type: Transform - - uid: 20016 + - uid: 20017 components: - pos: -28.5,-72.5 parent: 2 type: Transform - - uid: 20017 + - uid: 20018 components: - pos: -35.5,-76.5 parent: 2 type: Transform - - uid: 20018 + - uid: 20019 components: - pos: -35.5,-77.5 parent: 2 type: Transform - - uid: 20019 + - uid: 20020 components: - pos: -35.5,-78.5 parent: 2 type: Transform - - uid: 20020 + - uid: 20021 components: - pos: -35.5,-81.5 parent: 2 type: Transform - - uid: 20021 + - uid: 20022 components: - pos: -35.5,-82.5 parent: 2 type: Transform - - uid: 20022 + - uid: 20023 components: - pos: -35.5,-83.5 parent: 2 type: Transform - - uid: 20023 + - uid: 20024 components: - pos: -40.5,-86.5 parent: 2 type: Transform - - uid: 20024 + - uid: 20025 components: - pos: -43.5,-86.5 parent: 2 type: Transform - - uid: 20025 + - uid: 20026 components: - pos: -21.5,-59.5 parent: 2 type: Transform - - uid: 20026 + - uid: 20027 components: - rot: -1.5707963267948966 rad pos: -55.5,-83.5 parent: 2 type: Transform - - uid: 20027 + - uid: 20028 components: - pos: -57.5,-75.5 parent: 2 type: Transform - - uid: 20028 + - uid: 20029 components: - pos: -57.5,-76.5 parent: 2 type: Transform - - uid: 20029 + - uid: 20030 components: - pos: -57.5,-77.5 parent: 2 type: Transform - - uid: 20030 + - uid: 20031 components: - pos: -58.5,-52.5 parent: 2 type: Transform - - uid: 20031 + - uid: 20032 components: - pos: -58.5,-51.5 parent: 2 type: Transform - - uid: 20032 + - uid: 20033 components: - pos: -58.5,-48.5 parent: 2 type: Transform - - uid: 20033 + - uid: 20034 components: - pos: -58.5,-47.5 parent: 2 type: Transform - - uid: 20034 + - uid: 20035 components: - pos: -58.5,-43.5 parent: 2 type: Transform - - uid: 20035 + - uid: 20036 components: - pos: -58.5,-44.5 parent: 2 type: Transform - - uid: 20036 + - uid: 20037 components: - pos: -53.5,-36.5 parent: 2 type: Transform - - uid: 20037 + - uid: 20038 components: - pos: -53.5,-37.5 parent: 2 type: Transform - - uid: 20038 + - uid: 20039 components: - pos: -58.5,-36.5 parent: 2 type: Transform - - uid: 20039 + - uid: 20040 components: - pos: -58.5,-37.5 parent: 2 type: Transform - - uid: 20040 + - uid: 20041 components: - pos: -55.5,-85.5 parent: 2 type: Transform - - uid: 20041 + - uid: 20042 components: - pos: 25.5,-38.5 parent: 2 type: Transform - - uid: 20042 + - uid: 20043 components: - rot: 1.5707963267948966 rad pos: -58.5,-59.5 parent: 2 type: Transform - - uid: 20043 + - uid: 20044 components: - pos: -48.5,-81.5 parent: 2 type: Transform - - uid: 20044 + - uid: 20045 components: - pos: 50.5,58.5 parent: 2 type: Transform - - uid: 20045 + - uid: 20046 components: - rot: -1.5707963267948966 rad pos: -3.5,27.5 parent: 2 type: Transform - - uid: 20046 + - uid: 20047 components: - pos: 50.5,57.5 parent: 2 type: Transform - - uid: 20047 + - uid: 20048 components: - pos: 58.5,58.5 parent: 2 type: Transform - - uid: 20048 + - uid: 20049 components: - pos: -2.5,35.5 parent: 2 type: Transform - - uid: 20049 + - uid: 20050 components: - pos: -1.5,35.5 parent: 2 type: Transform - - uid: 20050 + - uid: 20051 components: - pos: -0.5,35.5 parent: 2 type: Transform - - uid: 20051 + - uid: 20052 components: - pos: 6.5,25.5 parent: 2 type: Transform - - uid: 20052 + - uid: 20053 components: - pos: 4.5,25.5 parent: 2 type: Transform - - uid: 20053 + - uid: 20054 components: - pos: 2.5,25.5 parent: 2 type: Transform - - uid: 20054 + - uid: 20055 components: - pos: 58.5,56.5 parent: 2 type: Transform - - uid: 20055 + - uid: 20056 components: - rot: -1.5707963267948966 rad pos: -1.5,27.5 parent: 2 type: Transform - - uid: 20056 + - uid: 20057 components: - pos: -21.5,24.5 parent: 2 type: Transform - - uid: 20057 + - uid: 20058 components: - pos: -21.5,23.5 parent: 2 type: Transform - - uid: 20058 + - uid: 20059 components: - pos: -26.5,21.5 parent: 2 type: Transform - - uid: 20059 + - uid: 20060 components: - rot: -1.5707963267948966 rad pos: -26.5,23.5 parent: 2 type: Transform - - uid: 20060 + - uid: 20061 components: - pos: -1.5,42.5 parent: 2 type: Transform - - uid: 20061 + - uid: 20062 components: - pos: -29.5,23.5 parent: 2 type: Transform - - uid: 20062 + - uid: 20063 components: - pos: -29.5,21.5 parent: 2 type: Transform - - uid: 20063 + - uid: 20064 components: - rot: 1.5707963267948966 rad pos: -50.5,21.5 parent: 2 type: Transform - - uid: 20064 + - uid: 20065 components: - rot: 1.5707963267948966 rad pos: -49.5,21.5 parent: 2 type: Transform - - uid: 20065 + - uid: 20066 components: - rot: -1.5707963267948966 rad pos: -50.5,18.5 parent: 2 type: Transform - - uid: 20066 + - uid: 20067 components: - rot: -1.5707963267948966 rad pos: -50.5,24.5 parent: 2 type: Transform - - uid: 20067 + - uid: 20068 components: - pos: 58.5,57.5 parent: 2 type: Transform - - uid: 20068 + - uid: 20069 components: - pos: 50.5,56.5 parent: 2 type: Transform - - uid: 20069 + - uid: 20070 components: - pos: -33.5,27.5 parent: 2 type: Transform - - uid: 20070 + - uid: 20071 components: - pos: -33.5,32.5 parent: 2 type: Transform - - uid: 20071 + - uid: 20072 components: - pos: -32.5,32.5 parent: 2 type: Transform - - uid: 20072 + - uid: 20073 components: - pos: -31.5,32.5 parent: 2 type: Transform - - uid: 20073 + - uid: 20074 components: - pos: -31.5,27.5 parent: 2 type: Transform - - uid: 20074 + - uid: 20075 components: - pos: -30.5,27.5 parent: 2 type: Transform - - uid: 20075 + - uid: 20076 components: - rot: -1.5707963267948966 rad pos: -52.5,21.5 parent: 2 type: Transform - - uid: 20076 + - uid: 20077 components: - rot: -1.5707963267948966 rad pos: -53.5,21.5 parent: 2 type: Transform - - uid: 20077 + - uid: 20078 components: - rot: -1.5707963267948966 rad pos: -49.5,29.5 parent: 2 type: Transform - - uid: 20078 + - uid: 20079 components: - rot: -1.5707963267948966 rad pos: -52.5,29.5 parent: 2 type: Transform - - uid: 20079 + - uid: 20080 components: - rot: -1.5707963267948966 rad pos: -52.5,35.5 parent: 2 type: Transform - - uid: 20080 + - uid: 20081 components: - rot: -1.5707963267948966 rad pos: -49.5,35.5 parent: 2 type: Transform - - uid: 20081 + - uid: 20082 components: - pos: -52.5,24.5 parent: 2 type: Transform - - uid: 20082 + - uid: 20083 components: - pos: -52.5,18.5 parent: 2 type: Transform - - uid: 20083 + - uid: 20084 components: - pos: -39.5,31.5 parent: 2 type: Transform - - uid: 20084 + - uid: 20085 components: - rot: 1.5707963267948966 rad pos: -17.5,24.5 parent: 2 type: Transform - - uid: 20085 + - uid: 20086 components: - rot: 1.5707963267948966 rad pos: -21.5,12.5 parent: 2 type: Transform - - uid: 20086 + - uid: 20087 components: - rot: 1.5707963267948966 rad pos: -22.5,9.5 parent: 2 type: Transform - - uid: 20087 + - uid: 20088 components: - rot: 1.5707963267948966 rad pos: -23.5,9.5 parent: 2 type: Transform - - uid: 20088 + - uid: 20089 components: - rot: 1.5707963267948966 rad pos: -25.5,9.5 parent: 2 type: Transform - - uid: 20089 + - uid: 20090 components: - rot: 1.5707963267948966 rad pos: -26.5,9.5 parent: 2 type: Transform - - uid: 20090 + - uid: 20091 components: - pos: -36.5,7.5 parent: 2 type: Transform - - uid: 20091 + - uid: 20092 components: - pos: -41.5,2.5 parent: 2 type: Transform - - uid: 20092 + - uid: 20093 components: - pos: -35.5,2.5 parent: 2 type: Transform - - uid: 20093 + - uid: 20094 components: - pos: -34.5,2.5 parent: 2 type: Transform - - uid: 20094 + - uid: 20095 components: - pos: -40.5,2.5 parent: 2 type: Transform - - uid: 20095 + - uid: 20096 components: - pos: -39.5,2.5 parent: 2 type: Transform - - uid: 20096 + - uid: 20097 components: - pos: -36.5,2.5 parent: 2 type: Transform - - uid: 20097 + - uid: 20098 components: - pos: -39.5,7.5 parent: 2 type: Transform - - uid: 20098 + - uid: 20099 components: - pos: -1.5,50.5 parent: 2 type: Transform - - uid: 20099 + - uid: 20100 components: - pos: 29.5,24.5 parent: 2 type: Transform - - uid: 20100 + - uid: 20101 components: - rot: -1.5707963267948966 rad pos: -49.5,13.5 parent: 2 type: Transform - - uid: 20101 + - uid: 20102 components: - pos: -46.5,13.5 parent: 2 type: Transform - - uid: 20102 + - uid: 20103 components: - pos: -53.5,11.5 parent: 2 type: Transform - - uid: 20103 + - uid: 20104 components: - pos: -53.5,10.5 parent: 2 type: Transform - - uid: 20104 + - uid: 20105 components: - rot: -1.5707963267948966 rad pos: -48.5,13.5 parent: 2 type: Transform - - uid: 20105 + - uid: 20106 components: - rot: 1.5707963267948966 rad pos: -52.5,-0.5 parent: 2 type: Transform - - uid: 20106 + - uid: 20107 components: - pos: -44.5,-37.5 parent: 2 type: Transform - - uid: 20107 + - uid: 20108 components: - pos: 2.5,-94.5 parent: 2 type: Transform - - uid: 20108 + - uid: 20109 components: - pos: 2.5,-95.5 parent: 2 type: Transform - - uid: 20109 + - uid: 20110 components: - pos: 2.5,-96.5 parent: 2 type: Transform - - uid: 20110 + - uid: 20111 components: - pos: 2.5,-97.5 parent: 2 type: Transform - - uid: 20111 + - uid: 20112 components: - pos: 2.5,-98.5 parent: 2 type: Transform - - uid: 20112 + - uid: 20113 components: - pos: 2.5,-99.5 parent: 2 type: Transform - - uid: 20113 + - uid: 20114 components: - pos: 2.5,-100.5 parent: 2 type: Transform - - uid: 20114 + - uid: 20115 components: - pos: 2.5,-101.5 parent: 2 type: Transform - - uid: 20115 + - uid: 20116 components: - pos: 2.5,-102.5 parent: 2 type: Transform - - uid: 20116 + - uid: 20117 components: - pos: 2.5,-103.5 parent: 2 type: Transform - - uid: 20117 + - uid: 20118 components: - pos: 2.5,-104.5 parent: 2 type: Transform - - uid: 20118 + - uid: 20119 components: - pos: 4.5,-107.5 parent: 2 type: Transform - - uid: 20119 + - uid: 20120 components: - pos: 5.5,-107.5 parent: 2 type: Transform - - uid: 20120 + - uid: 20121 components: - pos: 6.5,-107.5 parent: 2 type: Transform - - uid: 20121 + - uid: 20122 components: - pos: 7.5,-107.5 parent: 2 type: Transform - - uid: 20122 + - uid: 20123 components: - pos: 8.5,-107.5 parent: 2 type: Transform - - uid: 20123 + - uid: 20124 components: - pos: 9.5,-107.5 parent: 2 type: Transform - - uid: 20124 + - uid: 20125 components: - pos: 10.5,-107.5 parent: 2 type: Transform - - uid: 20125 + - uid: 20126 components: - pos: 11.5,-107.5 parent: 2 type: Transform - - uid: 20126 + - uid: 20127 components: - pos: 12.5,-107.5 parent: 2 type: Transform - - uid: 20127 + - uid: 20128 components: - pos: 13.5,-107.5 parent: 2 type: Transform - - uid: 20128 + - uid: 20129 components: - pos: 14.5,-107.5 parent: 2 type: Transform - - uid: 20129 + - uid: 20130 components: - pos: 15.5,-107.5 parent: 2 type: Transform - - uid: 20130 + - uid: 20131 components: - pos: 16.5,-107.5 parent: 2 type: Transform - - uid: 20131 + - uid: 20132 components: - pos: 17.5,-107.5 parent: 2 type: Transform - - uid: 20132 + - uid: 20133 components: - pos: 20.5,-105.5 parent: 2 type: Transform - - uid: 20133 + - uid: 20134 components: - pos: 20.5,-104.5 parent: 2 type: Transform - - uid: 20134 + - uid: 20135 components: - pos: 20.5,-103.5 parent: 2 type: Transform - - uid: 20135 + - uid: 20136 components: - pos: 20.5,-102.5 parent: 2 type: Transform - - uid: 20136 + - uid: 20137 components: - pos: 20.5,-101.5 parent: 2 type: Transform - - uid: 20137 + - uid: 20138 components: - pos: 20.5,-100.5 parent: 2 type: Transform - - uid: 20138 + - uid: 20139 components: - pos: 20.5,-99.5 parent: 2 type: Transform - - uid: 20139 + - uid: 20140 components: - pos: 20.5,-98.5 parent: 2 type: Transform - - uid: 20140 + - uid: 20141 components: - pos: 20.5,-97.5 parent: 2 type: Transform - - uid: 20141 + - uid: 20142 components: - pos: 20.5,-96.5 parent: 2 type: Transform - - uid: 20142 + - uid: 20143 components: - pos: 20.5,-95.5 parent: 2 type: Transform - - uid: 20143 + - uid: 20144 components: - pos: 20.5,-94.5 parent: 2 type: Transform - - uid: 20144 + - uid: 20145 components: - pos: 13.5,-92.5 parent: 2 type: Transform - - uid: 20145 + - uid: 20146 components: - pos: 14.5,-92.5 parent: 2 type: Transform - - uid: 20146 + - uid: 20147 components: - pos: 15.5,-92.5 parent: 2 type: Transform - - uid: 20147 + - uid: 20148 components: - pos: 16.5,-92.5 parent: 2 type: Transform - - uid: 20148 + - uid: 20149 components: - pos: 17.5,-92.5 parent: 2 type: Transform - - uid: 20149 + - uid: 20150 components: - pos: 18.5,-92.5 parent: 2 type: Transform - - uid: 20150 + - uid: 20151 components: - pos: 38.5,-57.5 parent: 2 type: Transform - - uid: 20151 + - uid: 20152 components: - pos: 40.5,-57.5 parent: 2 type: Transform - - uid: 20152 + - uid: 20153 components: - pos: 37.5,-21.5 parent: 2 type: Transform - - uid: 20153 + - uid: 20154 components: - pos: 37.5,-22.5 parent: 2 type: Transform - - uid: 20154 + - uid: 20155 components: - rot: -1.5707963267948966 rad pos: -76.5,-11.5 parent: 2 type: Transform - - uid: 20155 + - uid: 20156 components: - rot: -1.5707963267948966 rad pos: -76.5,-13.5 parent: 2 type: Transform - - uid: 20156 + - uid: 20157 components: - pos: 55.5,-15.5 parent: 2 type: Transform - - uid: 20157 + - uid: 20158 components: - pos: 56.5,-15.5 parent: 2 type: Transform - - uid: 20158 + - uid: 20159 components: - pos: 58.5,-15.5 parent: 2 type: Transform - - uid: 20159 + - uid: 20160 components: - pos: 59.5,-15.5 parent: 2 type: Transform - - uid: 20160 + - uid: 20161 components: - pos: 58.5,-59.5 parent: 2 type: Transform - - uid: 20161 + - uid: 20162 components: - pos: 58.5,-60.5 parent: 2 type: Transform - - uid: 20162 + - uid: 20163 components: - pos: 42.5,-31.5 parent: 2 type: Transform - - uid: 20163 + - uid: 20164 components: - pos: 37.5,-64.5 parent: 2 type: Transform - - uid: 20164 + - uid: 20165 components: - rot: 3.141592653589793 rad pos: 24.5,37.5 parent: 2 type: Transform - - uid: 20165 + - uid: 20166 components: - rot: 3.141592653589793 rad pos: 21.5,37.5 parent: 2 type: Transform - - uid: 20166 + - uid: 20167 components: - pos: 32.5,35.5 parent: 2 type: Transform - - uid: 20167 + - uid: 20168 components: - pos: 26.5,35.5 parent: 2 type: Transform - - uid: 20168 + - uid: 20169 components: - pos: 34.5,37.5 parent: 2 type: Transform - - uid: 20169 + - uid: 20170 components: - pos: 35.5,37.5 parent: 2 type: Transform - - uid: 20170 + - uid: 20171 components: - pos: 36.5,37.5 parent: 2 type: Transform - - uid: 20171 + - uid: 20172 components: - pos: 36.5,36.5 parent: 2 type: Transform - - uid: 20172 + - uid: 20173 components: - pos: 36.5,35.5 parent: 2 type: Transform - - uid: 20173 + - uid: 20174 components: - pos: 36.5,34.5 parent: 2 type: Transform - - uid: 20174 + - uid: 20175 components: - pos: -45.5,-42.5 parent: 2 type: Transform - - uid: 20175 + - uid: 20176 components: - pos: -45.5,-43.5 parent: 2 type: Transform - - uid: 20176 + - uid: 20177 components: - pos: -45.5,-44.5 parent: 2 type: Transform - - uid: 20177 + - uid: 20178 components: - pos: -45.5,-45.5 parent: 2 type: Transform - - uid: 20178 + - uid: 20179 components: - pos: -45.5,-46.5 parent: 2 type: Transform - - uid: 20179 + - uid: 20180 components: - pos: -45.5,-47.5 parent: 2 type: Transform - - uid: 20180 + - uid: 20181 components: - pos: -45.5,-48.5 parent: 2 type: Transform - - uid: 20181 + - uid: 20182 components: - pos: -45.5,-49.5 parent: 2 type: Transform - - uid: 20182 + - uid: 20183 components: - pos: -45.5,-50.5 parent: 2 type: Transform - - uid: 20183 + - uid: 20184 components: - pos: -45.5,-51.5 parent: 2 type: Transform - - uid: 20184 + - uid: 20185 components: - pos: -45.5,-52.5 parent: 2 type: Transform - - uid: 20185 + - uid: 20186 components: - pos: -45.5,-53.5 parent: 2 type: Transform - - uid: 20186 + - uid: 20187 components: - pos: -45.5,-54.5 parent: 2 type: Transform - - uid: 20187 + - uid: 20188 components: - pos: -45.5,-55.5 parent: 2 type: Transform - - uid: 20188 + - uid: 20189 components: - rot: 3.141592653589793 rad pos: 46.5,3.5 parent: 2 type: Transform - - uid: 20189 + - uid: 20190 components: - rot: -1.5707963267948966 rad pos: 27.5,20.5 parent: 2 type: Transform - - uid: 20190 + - uid: 20191 components: - pos: 41.5,-31.5 parent: 2 type: Transform - - uid: 20191 + - uid: 20192 components: - pos: -48.5,-82.5 parent: 2 type: Transform - - uid: 20192 + - uid: 20193 components: - pos: -48.5,-83.5 parent: 2 type: Transform - - uid: 20193 + - uid: 20194 components: - pos: 1.5,-18.5 parent: 2 type: Transform - - uid: 20194 + - uid: 20195 components: - pos: 2.5,-18.5 parent: 2 type: Transform - - uid: 20195 + - uid: 20196 components: - pos: 54.5,61.5 parent: 2 type: Transform - - uid: 20196 + - uid: 20197 components: - pos: 55.5,61.5 parent: 2 type: Transform - - uid: 20197 + - uid: 20198 components: - pos: 53.5,61.5 parent: 2 type: Transform - - uid: 20198 + - uid: 20199 components: - pos: 26.5,-38.5 parent: 2 type: Transform - - uid: 20199 + - uid: 20200 components: - pos: 20.5,-35.5 parent: 2 type: Transform - - uid: 20200 + - uid: 20201 components: - pos: 20.5,-36.5 parent: 2 type: Transform - - uid: 20201 + - uid: 20202 components: - pos: -30.5,-72.5 parent: 2 type: Transform - - uid: 20202 + - uid: 20203 components: - pos: 10.5,18.5 parent: 2 type: Transform - - uid: 20203 + - uid: 20204 components: - pos: 12.5,18.5 parent: 2 type: Transform - - uid: 20204 + - uid: 20205 components: - rot: -1.5707963267948966 rad pos: 59.5,33.5 parent: 2 type: Transform - - uid: 20205 + - uid: 20206 components: - rot: -1.5707963267948966 rad pos: 59.5,32.5 parent: 2 type: Transform - - uid: 20206 + - uid: 20207 components: - rot: 3.141592653589793 rad pos: 59.5,43.5 parent: 2 type: Transform - - uid: 20207 + - uid: 20208 components: - pos: 2.5,51.5 parent: 2 type: Transform - - uid: 20208 + - uid: 20209 components: - pos: -14.5,65.5 parent: 2 type: Transform - - uid: 20209 + - uid: 20210 components: - rot: 3.141592653589793 rad pos: -14.5,67.5 parent: 2 type: Transform - - uid: 20210 + - uid: 20211 components: - rot: -1.5707963267948966 rad pos: 7.5,35.5 parent: 2 type: Transform - - uid: 20211 + - uid: 20212 components: - rot: -1.5707963267948966 rad pos: 8.5,35.5 parent: 2 type: Transform - - uid: 20212 + - uid: 20213 components: - rot: -1.5707963267948966 rad pos: 7.5,29.5 parent: 2 type: Transform - - uid: 20213 + - uid: 20214 components: - rot: -1.5707963267948966 rad pos: 8.5,29.5 parent: 2 type: Transform - - uid: 20214 + - uid: 20215 components: - rot: -1.5707963267948966 rad pos: 68.5,11.5 parent: 2 type: Transform - - uid: 20215 + - uid: 20216 components: - rot: -1.5707963267948966 rad pos: 68.5,10.5 parent: 2 type: Transform - - uid: 20216 + - uid: 20217 components: - rot: -1.5707963267948966 rad pos: 68.5,8.5 parent: 2 type: Transform - - uid: 20217 + - uid: 20218 components: - rot: -1.5707963267948966 rad pos: 68.5,7.5 parent: 2 type: Transform - - uid: 20218 + - uid: 20219 components: - rot: -1.5707963267948966 rad pos: -7.5,28.5 parent: 2 type: Transform - - uid: 20219 + - uid: 20220 components: - rot: -1.5707963267948966 rad pos: -7.5,27.5 parent: 2 type: Transform - - uid: 20220 + - uid: 20221 components: - rot: -1.5707963267948966 rad pos: -33.5,35.5 parent: 2 type: Transform - - uid: 20221 + - uid: 20222 components: - rot: -1.5707963267948966 rad pos: -32.5,35.5 parent: 2 type: Transform - - uid: 20222 + - uid: 20223 components: - rot: -1.5707963267948966 rad pos: -31.5,35.5 parent: 2 type: Transform - - uid: 20223 + - uid: 20224 components: - rot: 1.5707963267948966 rad pos: 46.5,-17.5 parent: 2 type: Transform - - uid: 20224 + - uid: 20225 components: - rot: 1.5707963267948966 rad pos: 45.5,-17.5 parent: 2 type: Transform - - uid: 20225 + - uid: 20226 components: - rot: 3.141592653589793 rad pos: -19.5,44.5 parent: 2 type: Transform - - uid: 20226 + - uid: 20227 components: - pos: 2.5,50.5 parent: 2 type: Transform - - uid: 20227 + - uid: 20228 components: - pos: 2.5,47.5 parent: 2 type: Transform - - uid: 20228 + - uid: 20229 components: - rot: 3.141592653589793 rad pos: 41.5,32.5 parent: 2 type: Transform - - uid: 20229 + - uid: 20230 components: - rot: 3.141592653589793 rad pos: 41.5,31.5 parent: 2 type: Transform - - uid: 20230 + - uid: 20231 components: - rot: 3.141592653589793 rad pos: 41.5,30.5 parent: 2 type: Transform - - uid: 20231 + - uid: 20232 components: - rot: 1.5707963267948966 rad pos: 45.5,40.5 parent: 2 type: Transform - - uid: 20232 + - uid: 20233 components: - rot: 1.5707963267948966 rad pos: 47.5,40.5 parent: 2 type: Transform - - uid: 20233 + - uid: 20234 components: - rot: -1.5707963267948966 rad pos: 41.5,42.5 parent: 2 type: Transform - - uid: 20234 + - uid: 20235 components: - rot: -1.5707963267948966 rad pos: 40.5,42.5 parent: 2 type: Transform - - uid: 20235 + - uid: 20236 components: - rot: -1.5707963267948966 rad pos: 39.5,42.5 parent: 2 type: Transform - - uid: 20236 + - uid: 20237 components: - rot: 3.141592653589793 rad pos: -20.5,65.5 parent: 2 type: Transform - - uid: 20237 + - uid: 20238 components: - pos: -2.5,60.5 parent: 2 type: Transform - - uid: 20238 + - uid: 20239 components: - pos: -0.5,60.5 parent: 2 type: Transform - - uid: 20239 + - uid: 20240 components: - pos: 71.5,39.5 parent: 2 type: Transform - - uid: 20240 + - uid: 20241 components: - pos: 73.5,39.5 parent: 2 type: Transform - - uid: 20241 + - uid: 20242 components: - pos: 73.5,33.5 parent: 2 type: Transform - - uid: 20242 + - uid: 20243 components: - pos: 71.5,33.5 parent: 2 type: Transform - - uid: 20243 + - uid: 20244 components: - pos: 5.5,69.5 parent: 2 type: Transform - - uid: 20244 + - uid: 20245 components: - pos: -8.5,69.5 parent: 2 type: Transform - - uid: 20245 + - uid: 20246 components: - pos: -3.5,42.5 parent: 2 type: Transform - - uid: 20246 + - uid: 20247 components: - pos: 78.5,46.5 parent: 2 type: Transform - - uid: 20247 + - uid: 20248 components: - pos: 79.5,46.5 parent: 2 type: Transform - - uid: 20248 + - uid: 20249 components: - pos: 80.5,46.5 parent: 2 type: Transform - - uid: 20249 + - uid: 20250 components: - pos: 81.5,46.5 parent: 2 type: Transform - - uid: 20250 + - uid: 20251 components: - pos: 82.5,46.5 parent: 2 type: Transform - - uid: 20251 + - uid: 20252 components: - pos: 86.5,46.5 parent: 2 type: Transform - - uid: 20252 + - uid: 20253 components: - pos: 87.5,46.5 parent: 2 type: Transform - - uid: 20253 + - uid: 20254 components: - pos: 88.5,46.5 parent: 2 type: Transform - - uid: 20254 + - uid: 20255 components: - pos: 89.5,46.5 parent: 2 type: Transform - - uid: 20255 + - uid: 20256 components: - pos: 90.5,46.5 parent: 2 type: Transform - - uid: 20256 + - uid: 20257 components: - pos: 93.5,41.5 parent: 2 type: Transform - - uid: 20257 + - uid: 20258 components: - pos: 93.5,40.5 parent: 2 type: Transform - - uid: 20258 + - uid: 20259 components: - pos: 93.5,39.5 parent: 2 type: Transform - - uid: 20259 + - uid: 20260 components: - pos: 93.5,38.5 parent: 2 type: Transform - - uid: 20260 + - uid: 20261 components: - pos: 93.5,37.5 parent: 2 type: Transform - - uid: 20261 + - uid: 20262 components: - pos: 93.5,36.5 parent: 2 type: Transform - - uid: 20262 + - uid: 20263 components: - pos: 93.5,35.5 parent: 2 type: Transform - - uid: 20263 + - uid: 20264 components: - pos: 93.5,34.5 parent: 2 type: Transform - - uid: 20264 + - uid: 20265 components: - pos: 93.5,33.5 parent: 2 type: Transform - - uid: 20265 + - uid: 20266 components: - pos: 93.5,32.5 parent: 2 type: Transform - - uid: 20266 + - uid: 20267 components: - pos: 93.5,31.5 parent: 2 type: Transform - - uid: 20267 + - uid: 20268 components: - pos: 93.5,30.5 parent: 2 type: Transform - - uid: 20268 + - uid: 20269 components: - pos: 90.5,26.5 parent: 2 type: Transform - - uid: 20269 + - uid: 20270 components: - pos: 89.5,26.5 parent: 2 type: Transform - - uid: 20270 + - uid: 20271 components: - pos: 88.5,26.5 parent: 2 type: Transform - - uid: 20271 + - uid: 20272 components: - pos: 87.5,26.5 parent: 2 type: Transform - - uid: 20272 + - uid: 20273 components: - pos: 86.5,26.5 parent: 2 type: Transform - - uid: 20273 + - uid: 20274 components: - pos: 85.5,26.5 parent: 2 type: Transform - - uid: 20274 + - uid: 20275 components: - pos: 81.5,26.5 parent: 2 type: Transform - - uid: 20275 + - uid: 20276 components: - pos: 80.5,26.5 parent: 2 type: Transform - - uid: 20276 + - uid: 20277 components: - pos: 79.5,26.5 parent: 2 type: Transform - - uid: 20277 + - uid: 20278 components: - pos: 78.5,26.5 parent: 2 type: Transform - - uid: 20278 + - uid: 20279 components: - pos: 77.5,26.5 parent: 2 type: Transform - - uid: 20279 + - uid: 20280 components: - pos: 70.5,29.5 parent: 2 type: Transform - - uid: 20280 + - uid: 20281 components: - pos: 71.5,29.5 parent: 2 type: Transform - - uid: 20281 + - uid: 20282 components: - pos: 72.5,29.5 parent: 2 type: Transform - - uid: 20282 + - uid: 20283 components: - pos: 73.5,29.5 parent: 2 type: Transform - - uid: 20283 + - uid: 20284 components: - pos: 74.5,29.5 parent: 2 type: Transform - - uid: 20284 + - uid: 20285 components: - pos: -33.5,40.5 parent: 2 type: Transform - - uid: 20285 + - uid: 20286 components: - pos: -32.5,40.5 parent: 2 type: Transform - - uid: 20286 + - uid: 20287 components: - pos: -32.5,37.5 parent: 2 type: Transform - - uid: 20287 + - uid: 20288 components: - pos: -16.5,55.5 parent: 2 type: Transform - - uid: 20288 + - uid: 20289 components: - pos: -16.5,56.5 parent: 2 type: Transform - - uid: 20289 + - uid: 20290 components: - pos: -14.5,56.5 parent: 2 type: Transform - - uid: 20290 + - uid: 20291 components: - pos: -14.5,55.5 parent: 2 type: Transform - - uid: 20291 + - uid: 20292 components: - pos: -20.5,62.5 parent: 2 type: Transform - - uid: 20292 + - uid: 20293 components: - pos: -14.5,62.5 parent: 2 type: Transform - - uid: 20293 + - uid: 20294 components: - pos: -11.5,69.5 parent: 2 type: Transform - - uid: 20294 + - uid: 20295 components: - pos: -11.5,68.5 parent: 2 type: Transform - - uid: 20295 + - uid: 20296 components: - pos: -11.5,67.5 parent: 2 type: Transform - - uid: 20296 + - uid: 20297 components: - pos: -11.5,73.5 parent: 2 type: Transform - - uid: 20297 + - uid: 20298 components: - pos: -14.5,73.5 parent: 2 type: Transform - - uid: 20298 + - uid: 20299 components: - pos: -20.5,73.5 parent: 2 type: Transform - - uid: 20299 + - uid: 20300 components: - pos: -23.5,73.5 parent: 2 type: Transform - - uid: 20300 + - uid: 20301 components: - pos: -23.5,63.5 parent: 2 type: Transform - - uid: 20301 + - uid: 20302 components: - pos: -23.5,62.5 parent: 2 type: Transform - - uid: 20302 + - uid: 20303 components: - pos: -23.5,61.5 parent: 2 type: Transform - - uid: 20303 + - uid: 20304 components: - rot: 1.5707963267948966 rad pos: 39.5,52.5 parent: 2 type: Transform - - uid: 20304 + - uid: 20305 components: - rot: 3.141592653589793 rad pos: -11.5,51.5 parent: 2 type: Transform - - uid: 20305 + - uid: 20306 components: - rot: 3.141592653589793 rad pos: -11.5,53.5 parent: 2 type: Transform - - uid: 20306 + - uid: 20307 components: - rot: 3.141592653589793 rad pos: -5.5,47.5 parent: 2 type: Transform - - uid: 20307 + - uid: 20308 components: - rot: 3.141592653589793 rad pos: -3.5,47.5 parent: 2 type: Transform - - uid: 20308 + - uid: 20309 components: - rot: 3.141592653589793 rad pos: -5.5,57.5 parent: 2 type: Transform - - uid: 20309 + - uid: 20310 components: - rot: 3.141592653589793 rad pos: -7.5,57.5 parent: 2 type: Transform - - uid: 20310 + - uid: 20311 components: - rot: 3.141592653589793 rad pos: -20.5,67.5 parent: 2 type: Transform - - uid: 20311 + - uid: 20312 components: - rot: -1.5707963267948966 rad pos: -26.5,54.5 parent: 2 type: Transform - - uid: 20312 + - uid: 20313 components: - rot: -1.5707963267948966 rad pos: -26.5,53.5 parent: 2 type: Transform - - uid: 20313 + - uid: 20314 components: - pos: 46.5,43.5 parent: 2 type: Transform - - uid: 20314 + - uid: 20315 components: - rot: -1.5707963267948966 rad pos: -16.5,-88.5 parent: 2 type: Transform - - uid: 20315 + - uid: 20316 components: - rot: -1.5707963267948966 rad pos: -2.5,-82.5 parent: 2 type: Transform - - uid: 20316 + - uid: 20317 components: - rot: -1.5707963267948966 rad pos: -0.5,-82.5 parent: 2 type: Transform - - uid: 20317 + - uid: 20318 components: - pos: -26.5,-97.5 parent: 2 type: Transform - - uid: 20318 + - uid: 20319 components: - pos: -18.5,-97.5 parent: 2 type: Transform - - uid: 20319 + - uid: 20320 components: - pos: -21.5,-94.5 parent: 2 type: Transform - - uid: 20320 + - uid: 20321 components: - pos: -22.5,-94.5 parent: 2 type: Transform - - uid: 20321 + - uid: 20322 components: - pos: -23.5,-94.5 parent: 2 type: Transform - - uid: 20322 + - uid: 20323 components: - pos: -3.5,-97.5 parent: 2 type: Transform - - uid: 20323 + - uid: 20324 components: - pos: -3.5,-98.5 parent: 2 type: Transform - - uid: 20324 + - uid: 20325 components: - pos: -5.5,-101.5 parent: 2 type: Transform - - uid: 20325 + - uid: 20326 components: - pos: -6.5,-101.5 parent: 2 type: Transform - - uid: 20326 + - uid: 20327 components: - pos: -8.5,-101.5 parent: 2 type: Transform - - uid: 20327 + - uid: 20328 components: - pos: -9.5,-101.5 parent: 2 type: Transform - - uid: 20328 + - uid: 20329 components: - rot: 3.141592653589793 rad pos: -44.5,-89.5 parent: 2 type: Transform - - uid: 20329 + - uid: 20330 components: - rot: 3.141592653589793 rad pos: -44.5,-90.5 parent: 2 type: Transform - - uid: 20330 + - uid: 20331 components: - pos: -36.5,-100.5 parent: 2 type: Transform - - uid: 20331 + - uid: 20332 components: - pos: -21.5,-101.5 parent: 2 type: Transform - - uid: 20332 + - uid: 20333 components: - pos: -34.5,-100.5 parent: 2 type: Transform - - uid: 20333 + - uid: 20334 components: - rot: 1.5707963267948966 rad pos: -39.5,-89.5 parent: 2 type: Transform - - uid: 20334 + - uid: 20335 components: - rot: 1.5707963267948966 rad pos: -39.5,-90.5 parent: 2 type: Transform - - uid: 20335 + - uid: 20336 components: - rot: 1.5707963267948966 rad pos: -44.5,-95.5 parent: 2 type: Transform - - uid: 20336 + - uid: 20337 components: - rot: 1.5707963267948966 rad pos: -44.5,-96.5 parent: 2 type: Transform - - uid: 20337 + - uid: 20338 components: - rot: 1.5707963267948966 rad pos: -42.5,-98.5 parent: 2 type: Transform - - uid: 20338 + - uid: 20339 components: - rot: 1.5707963267948966 rad pos: -41.5,-98.5 parent: 2 type: Transform - - uid: 20339 + - uid: 20340 components: - pos: -23.5,-101.5 parent: 2 type: Transform - - uid: 20340 + - uid: 20341 components: - pos: -22.5,-101.5 parent: 2 type: Transform - - uid: 20341 + - uid: 20342 components: - rot: 3.141592653589793 rad pos: -73.5,-27.5 parent: 2 type: Transform - - uid: 20342 + - uid: 20343 components: - rot: 3.141592653589793 rad pos: -69.5,-31.5 parent: 2 type: Transform - - uid: 20343 + - uid: 20344 components: - pos: -70.5,-46.5 parent: 2 type: Transform - - uid: 20344 + - uid: 20345 components: - pos: -69.5,-46.5 parent: 2 type: Transform - - uid: 20345 + - uid: 20346 components: - pos: -68.5,-46.5 parent: 2 type: Transform - - uid: 20346 + - uid: 20347 components: - pos: -72.5,-42.5 parent: 2 type: Transform - - uid: 20347 + - uid: 20348 components: - pos: -72.5,-43.5 parent: 2 type: Transform - - uid: 20348 + - uid: 20349 components: - pos: -72.5,-44.5 parent: 2 type: Transform - - uid: 20349 + - uid: 20350 components: - pos: 78.5,-38.5 parent: 2 type: Transform - - uid: 20350 + - uid: 20351 components: - pos: 76.5,-35.5 parent: 2 type: Transform - - uid: 20351 + - uid: 20352 components: - pos: 77.5,-35.5 parent: 2 type: Transform - - uid: 20352 + - uid: 20353 components: - pos: 78.5,-35.5 parent: 2 type: Transform - - uid: 20353 + - uid: 20354 components: - pos: 79.5,-35.5 parent: 2 type: Transform - - uid: 20354 + - uid: 20355 components: - pos: 77.5,-32.5 parent: 2 type: Transform - - uid: 20355 + - uid: 20356 components: - pos: 78.5,-32.5 parent: 2 type: Transform - - uid: 20356 + - uid: 20357 components: - pos: 78.5,-44.5 parent: 2 type: Transform - - uid: 20357 + - uid: 20358 components: - pos: 78.5,-45.5 parent: 2 type: Transform - - uid: 20358 + - uid: 20359 components: - pos: 69.5,-42.5 parent: 2 type: Transform - - uid: 20359 + - uid: 20360 components: - pos: 70.5,-42.5 parent: 2 type: Transform - - uid: 20360 + - uid: 20361 components: - rot: -1.5707963267948966 rad pos: 72.5,-50.5 parent: 2 type: Transform - - uid: 20361 + - uid: 20362 components: - pos: 63.5,-61.5 parent: 2 type: Transform - - uid: 20362 + - uid: 20363 components: - pos: 62.5,-61.5 parent: 2 type: Transform - - uid: 20363 + - uid: 20364 components: - pos: 61.5,-61.5 parent: 2 type: Transform - - uid: 20364 + - uid: 20365 components: - pos: 52.5,-61.5 parent: 2 type: Transform - - uid: 20365 + - uid: 20366 components: - pos: 50.5,-64.5 parent: 2 type: Transform - - uid: 20366 + - uid: 20367 components: - pos: 3.5,-28.5 parent: 2 type: Transform - - uid: 20367 + - uid: 20368 components: - pos: 1.5,-30.5 parent: 2 type: Transform - - uid: 20368 + - uid: 20369 components: - pos: 61.5,-70.5 parent: 2 type: Transform - - uid: 20369 + - uid: 20370 components: - pos: 5.5,-28.5 parent: 2 type: Transform - - uid: 20370 + - uid: 20371 components: - pos: 1.5,-31.5 parent: 2 type: Transform - - uid: 20371 + - uid: 20372 components: - pos: 9.5,-31.5 parent: 2 type: Transform - - uid: 20372 + - uid: 20373 components: - pos: 9.5,-34.5 parent: 2 type: Transform - - uid: 20373 + - uid: 20374 components: - rot: -1.5707963267948966 rad pos: 69.5,-36.5 parent: 2 type: Transform - - uid: 20374 + - uid: 20375 components: - rot: -1.5707963267948966 rad pos: 69.5,-38.5 parent: 2 type: Transform - - uid: 20375 + - uid: 20376 components: - rot: 3.141592653589793 rad pos: 68.5,-39.5 parent: 2 type: Transform - - uid: 20376 + - uid: 20377 components: - rot: 3.141592653589793 rad pos: 66.5,-39.5 parent: 2 type: Transform - - uid: 20377 + - uid: 20378 components: - pos: -48.5,-74.5 parent: 2 type: Transform - - uid: 20378 + - uid: 20379 components: - rot: 3.141592653589793 rad pos: 73.5,-30.5 parent: 2 type: Transform - - uid: 20379 + - uid: 20380 components: - rot: 3.141592653589793 rad pos: 71.5,-27.5 parent: 2 type: Transform - - uid: 20380 + - uid: 20381 components: - rot: 3.141592653589793 rad pos: 73.5,-27.5 parent: 2 type: Transform - - uid: 20381 + - uid: 20382 components: - rot: 1.5707963267948966 rad pos: -58.5,-60.5 parent: 2 type: Transform - - uid: 20382 + - uid: 20383 components: - rot: 1.5707963267948966 rad pos: -54.5,-57.5 parent: 2 type: Transform - - uid: 20383 + - uid: 20384 components: - rot: 1.5707963267948966 rad pos: -52.5,-60.5 parent: 2 type: Transform - - uid: 20384 + - uid: 20385 components: - rot: 3.141592653589793 rad pos: 31.5,-33.5 parent: 2 type: Transform - - uid: 20385 + - uid: 20386 components: - rot: 3.141592653589793 rad pos: 19.5,-33.5 parent: 2 type: Transform - - uid: 20386 + - uid: 20387 components: - pos: 60.5,-70.5 parent: 2 type: Transform - - uid: 20387 + - uid: 20388 components: - pos: 2.5,-36.5 parent: 2 type: Transform - - uid: 20388 + - uid: 20389 components: - pos: 51.5,-68.5 parent: 2 type: Transform - - uid: 20389 + - uid: 20390 components: - pos: 50.5,-68.5 parent: 2 type: Transform - - uid: 20390 + - uid: 20391 components: - rot: -1.5707963267948966 rad pos: 43.5,-44.5 parent: 2 type: Transform - - uid: 20391 + - uid: 20392 components: - rot: -1.5707963267948966 rad pos: 44.5,-44.5 parent: 2 type: Transform - - uid: 20392 + - uid: 20393 components: - rot: -1.5707963267948966 rad pos: 16.5,38.5 parent: 2 type: Transform - - uid: 20393 + - uid: 20394 components: - rot: -1.5707963267948966 rad pos: 18.5,37.5 parent: 2 type: Transform - - uid: 20394 + - uid: 20395 components: - rot: -1.5707963267948966 rad pos: 14.5,37.5 parent: 2 type: Transform - - uid: 20395 + - uid: 20396 components: - pos: 62.5,-70.5 parent: 2 type: Transform - - uid: 20396 + - uid: 20397 components: - pos: 71.5,-64.5 parent: 2 type: Transform - - uid: 20397 + - uid: 20398 components: - rot: -1.5707963267948966 rad pos: 54.5,-68.5 parent: 2 type: Transform - - uid: 20398 + - uid: 20399 components: - rot: -1.5707963267948966 rad pos: 55.5,-68.5 parent: 2 type: Transform - - uid: 20399 + - uid: 20400 components: - rot: -1.5707963267948966 rad pos: 56.5,-68.5 parent: 2 type: Transform - - uid: 20400 + - uid: 20401 components: - pos: 54.5,-25.5 parent: 2 type: Transform - - uid: 20401 + - uid: 20402 components: - pos: 56.5,-25.5 parent: 2 type: Transform - - uid: 20402 + - uid: 20403 components: - pos: 58.5,-25.5 parent: 2 type: Transform - - uid: 20403 + - uid: 20404 components: - pos: 68.5,-57.5 parent: 2 type: Transform - - uid: 20404 + - uid: 20405 components: - rot: 1.5707963267948966 rad pos: -2.5,-5.5 parent: 2 type: Transform - - uid: 20405 + - uid: 20406 components: - pos: 71.5,-54.5 parent: 2 type: Transform - - uid: 20406 + - uid: 20407 components: - pos: 70.5,-54.5 parent: 2 type: Transform - - uid: 20407 + - uid: 20408 components: - pos: -12.5,43.5 parent: 2 type: Transform - - uid: 20408 + - uid: 20409 components: - pos: -8.5,43.5 parent: 2 type: Transform - - uid: 20409 + - uid: 20410 components: - pos: 73.5,46.5 parent: 2 type: Transform - - uid: 20410 + - uid: 20411 components: - pos: 72.5,46.5 parent: 2 type: Transform - - uid: 20411 + - uid: 20412 components: - rot: -1.5707963267948966 rad pos: 70.5,-50.5 parent: 2 type: Transform - - uid: 20412 + - uid: 20413 components: - rot: -1.5707963267948966 rad pos: -25.5,-18.5 parent: 2 type: Transform - - uid: 20413 + - uid: 20414 components: - pos: -66.5,-50.5 parent: 2 type: Transform - - uid: 20414 + - uid: 20415 components: - pos: -66.5,-51.5 parent: 2 type: Transform - - uid: 20415 + - uid: 20416 components: - pos: -66.5,-52.5 parent: 2 type: Transform - - uid: 20416 + - uid: 20417 components: - pos: -66.5,-53.5 parent: 2 type: Transform - - uid: 20417 + - uid: 20418 components: - pos: -66.5,-54.5 parent: 2 type: Transform - - uid: 20418 + - uid: 20419 components: - pos: -66.5,-55.5 parent: 2 type: Transform - - uid: 20419 + - uid: 20420 components: - pos: -66.5,-56.5 parent: 2 type: Transform - - uid: 20420 + - uid: 20421 components: - pos: -66.5,-57.5 parent: 2 type: Transform - - uid: 20421 + - uid: 20422 components: - pos: 36.5,18.5 parent: 2 type: Transform - - uid: 20422 + - uid: 20423 components: - pos: 35.5,18.5 parent: 2 type: Transform - - uid: 20423 + - uid: 20424 components: - pos: 34.5,18.5 parent: 2 type: Transform - - uid: 20424 + - uid: 20425 components: - rot: 3.141592653589793 rad pos: 71.5,-30.5 parent: 2 type: Transform - - uid: 20425 + - uid: 20426 components: - rot: 1.5707963267948966 rad pos: -52.5,-85.5 parent: 2 type: Transform - - uid: 20426 + - uid: 20427 components: - rot: 1.5707963267948966 rad pos: -52.5,-89.5 parent: 2 type: Transform - - uid: 20427 + - uid: 20428 components: - rot: 1.5707963267948966 rad pos: -49.5,-87.5 parent: 2 type: Transform - - uid: 20428 + - uid: 20429 components: - rot: 1.5707963267948966 rad pos: -50.5,-87.5 parent: 2 type: Transform - - uid: 20429 + - uid: 20430 components: - pos: -31.5,72.5 parent: 2 type: Transform - - uid: 20430 + - uid: 20431 components: - pos: -30.5,72.5 parent: 2 type: Transform - - uid: 20431 + - uid: 20432 components: - pos: -29.5,72.5 parent: 2 type: Transform - - uid: 20432 + - uid: 20433 components: - pos: -28.5,72.5 parent: 2 type: Transform - - uid: 20433 + - uid: 20434 components: - pos: -27.5,72.5 parent: 2 type: Transform - - uid: 20434 + - uid: 20435 components: - pos: -26.5,72.5 parent: 2 type: Transform - - uid: 20435 + - uid: 20436 components: - pos: -40.5,-62.5 parent: 2 type: Transform - - uid: 20436 + - uid: 20437 components: - pos: -41.5,-62.5 parent: 2 type: Transform - - uid: 20437 + - uid: 20438 components: - rot: 3.141592653589793 rad pos: -46.5,-39.5 parent: 2 type: Transform - - uid: 20438 + - uid: 20439 components: - pos: -47.5,-34.5 parent: 2 type: Transform - - uid: 20439 + - uid: 20440 components: - pos: -47.5,-35.5 parent: 2 type: Transform - - uid: 20440 + - uid: 20441 components: - pos: -51.5,-36.5 parent: 2 type: Transform - - uid: 20441 + - uid: 20442 components: - pos: -51.5,-37.5 parent: 2 type: Transform - - uid: 20442 + - uid: 20443 components: - pos: 46.5,-78.5 parent: 2 type: Transform - - uid: 20443 + - uid: 20444 components: - pos: 46.5,-77.5 parent: 2 type: Transform - - uid: 20444 + - uid: 20445 components: - pos: 46.5,-79.5 parent: 2 type: Transform - - uid: 20445 + - uid: 20446 components: - rot: 3.141592653589793 rad pos: 24.5,-80.5 parent: 2 type: Transform - - uid: 20446 + - uid: 20447 components: - rot: 3.141592653589793 rad pos: 50.5,-88.5 parent: 2 type: Transform - - uid: 20447 + - uid: 20448 components: - rot: 3.141592653589793 rad pos: 50.5,-89.5 parent: 2 type: Transform - - uid: 20448 + - uid: 20449 components: - rot: 3.141592653589793 rad pos: 50.5,-90.5 parent: 2 type: Transform - - uid: 20449 + - uid: 20450 components: - rot: 3.141592653589793 rad pos: 28.5,-89.5 parent: 2 type: Transform - - uid: 20450 + - uid: 20451 components: - rot: 3.141592653589793 rad pos: 25.5,-75.5 parent: 2 type: Transform - - uid: 20451 + - uid: 20452 components: - rot: 3.141592653589793 rad pos: 26.5,-75.5 parent: 2 type: Transform - - uid: 20452 + - uid: 20453 components: - rot: 3.141592653589793 rad pos: 28.5,-90.5 parent: 2 type: Transform - - uid: 20453 + - uid: 20454 components: - rot: 3.141592653589793 rad pos: 50.5,-83.5 parent: 2 type: Transform - - uid: 20454 + - uid: 20455 components: - rot: 3.141592653589793 rad pos: 50.5,-81.5 parent: 2 type: Transform - - uid: 20455 + - uid: 20456 components: - rot: 3.141592653589793 rad pos: 50.5,-82.5 parent: 2 type: Transform - - uid: 20456 + - uid: 20457 components: - rot: 3.141592653589793 rad pos: 14.5,-78.5 parent: 2 type: Transform - - uid: 20457 + - uid: 20458 components: - rot: 3.141592653589793 rad pos: 13.5,-78.5 parent: 2 type: Transform - - uid: 20458 + - uid: 20459 components: - rot: 3.141592653589793 rad pos: 25.5,-86.5 parent: 2 type: Transform - - uid: 20459 + - uid: 20460 components: - rot: 3.141592653589793 rad pos: 25.5,-67.5 parent: 2 type: Transform - - uid: 20460 + - uid: 20461 components: - rot: 1.5707963267948966 rad pos: 37.5,-74.5 parent: 2 type: Transform - - uid: 20461 + - uid: 20462 components: - rot: 3.141592653589793 rad pos: 26.5,-67.5 parent: 2 type: Transform - - uid: 20462 + - uid: 20463 components: - rot: 3.141592653589793 rad pos: 17.5,-78.5 parent: 2 type: Transform - - uid: 20463 + - uid: 20464 components: - rot: 3.141592653589793 rad pos: 16.5,-78.5 parent: 2 type: Transform - - uid: 20464 + - uid: 20465 components: - rot: 3.141592653589793 rad pos: 14.5,-88.5 parent: 2 type: Transform - - uid: 20465 + - uid: 20466 components: - rot: 3.141592653589793 rad pos: 13.5,-88.5 parent: 2 type: Transform - - uid: 20466 + - uid: 20467 components: - rot: 3.141592653589793 rad pos: 17.5,-88.5 parent: 2 type: Transform - - uid: 20467 + - uid: 20468 components: - rot: 3.141592653589793 rad pos: 16.5,-88.5 parent: 2 type: Transform - - uid: 20468 + - uid: 20469 components: - rot: 3.141592653589793 rad pos: 24.5,-86.5 parent: 2 type: Transform - - uid: 20469 + - uid: 20470 components: - rot: 3.141592653589793 rad pos: 51.5,-72.5 parent: 2 type: Transform - - uid: 20470 + - uid: 20471 components: - rot: 3.141592653589793 rad pos: 51.5,-71.5 parent: 2 type: Transform - - uid: 20471 + - uid: 20472 components: - pos: 9.5,-18.5 parent: 2 type: Transform - - uid: 20472 + - uid: 20473 components: - rot: 3.141592653589793 rad pos: 6.5,-22.5 parent: 2 type: Transform - - uid: 20473 + - uid: 20474 components: - rot: 3.141592653589793 rad pos: 6.5,-23.5 parent: 2 type: Transform - - uid: 20474 + - uid: 20475 components: - pos: 45.5,9.5 parent: 2 type: Transform - - uid: 20475 + - uid: 20476 components: - pos: 48.5,7.5 parent: 2 type: Transform - - uid: 20476 + - uid: 20477 components: - rot: -1.5707963267948966 rad pos: 1.5,-74.5 parent: 2 type: Transform - - uid: 20477 + - uid: 20478 components: - pos: -76.5,-25.5 parent: 2 type: Transform - - uid: 20478 + - uid: 20479 components: - pos: -76.5,-12.5 parent: 2 type: Transform - - uid: 20479 + - uid: 20480 components: - rot: -1.5707963267948966 rad pos: 31.5,35.5 parent: 2 type: Transform - - uid: 20480 + - uid: 20481 components: - rot: -1.5707963267948966 rad pos: 30.5,35.5 parent: 2 type: Transform - - uid: 20481 + - uid: 20482 components: - rot: -1.5707963267948966 rad pos: 29.5,35.5 parent: 2 type: Transform - - uid: 20482 + - uid: 20483 components: - rot: -1.5707963267948966 rad pos: 28.5,35.5 parent: 2 type: Transform - - uid: 20483 + - uid: 20484 components: - rot: -1.5707963267948966 rad pos: 27.5,35.5 parent: 2 type: Transform - - uid: 20484 + - uid: 20485 components: - pos: 67.5,-32.5 parent: 2 type: Transform - proto: GrilleBroken entities: - - uid: 20485 + - uid: 20486 components: - rot: 3.141592653589793 rad pos: -2.5,-71.5 parent: 2 type: Transform - - uid: 20486 + - uid: 20487 components: - pos: -2.5,-71.5 parent: 2 type: Transform - - uid: 20487 + - uid: 20488 components: - rot: -1.5707963267948966 rad pos: -54.5,-83.5 parent: 2 type: Transform - - uid: 20488 + - uid: 20489 components: - rot: 1.5707963267948966 rad pos: -54.5,-83.5 parent: 2 type: Transform - - uid: 20489 + - uid: 20490 components: - rot: -1.5707963267948966 rad pos: 2.5,49.5 parent: 2 type: Transform - - uid: 20490 + - uid: 20491 components: - rot: 1.5707963267948966 rad pos: 2.5,49.5 parent: 2 type: Transform - - uid: 20491 + - uid: 20492 components: - rot: 3.141592653589793 rad pos: 2.5,48.5 parent: 2 type: Transform - - uid: 20492 + - uid: 20493 components: - pos: 2.5,48.5 parent: 2 type: Transform - proto: GunpetInstrument entities: - - uid: 20493 + - uid: 20494 components: - pos: 18.804333,-20.357145 parent: 2 type: Transform - proto: Handcuffs entities: - - uid: 20494 + - uid: 20495 components: - pos: -1.4479281,19.547018 parent: 2 type: Transform - - uid: 20495 + - uid: 20496 components: - pos: -15.367192,-23.36869 parent: 2 type: Transform - - uid: 20496 + - uid: 20497 components: - pos: -16.022211,23.522974 parent: 2 type: Transform - proto: HandheldHealthAnalyzer entities: - - uid: 20497 + - uid: 20498 components: - pos: 10.274347,-58.341446 parent: 2 type: Transform - - uid: 20498 + - uid: 20499 components: - pos: 10.539972,-58.60707 parent: 2 type: Transform - - uid: 20499 + - uid: 20500 components: - pos: 45.505707,8.483616 parent: 2 type: Transform - proto: HandLabeler entities: - - uid: 20500 + - uid: 20501 components: - pos: 25.911264,-37.50932 parent: 2 type: Transform - - uid: 20501 + - uid: 20502 components: - pos: 7.5090528,-45.828945 parent: 2 type: Transform - - uid: 20502 + - uid: 20503 components: - pos: 39.184,-39.455414 parent: 2 type: Transform - - uid: 20503 + - uid: 20504 components: - pos: -33.328754,17.574179 parent: 2 type: Transform - - uid: 20504 + - uid: 20505 components: - pos: -28.559744,21.679361 parent: 2 type: Transform - - uid: 20505 + - uid: 20506 components: - rot: 3.141592653589793 rad pos: -32.198154,29.656374 @@ -157051,88 +142299,92 @@ entities: type: Transform - proto: HappyHonk entities: - - uid: 20506 + - uid: 20507 components: - pos: 0.93736494,-5.096624 parent: 2 type: Transform - proto: HappyHonkCluwne entities: - - uid: 20507 + - uid: 20508 components: - pos: -21.391912,47.73093 parent: 2 type: Transform + - nextSound: 713.0907404 + type: EmitSoundOnCollide - proto: HappyHonkNukie entities: - - uid: 20508 + - uid: 20509 components: - pos: 22.60001,-29.307062 parent: 2 type: Transform + - nextSound: 352.8655618 + type: EmitSoundOnCollide - proto: HarmonicaInstrument entities: - - uid: 20509 + - uid: 20510 components: - pos: 53.479427,24.562923 parent: 2 type: Transform - proto: Hemostat entities: - - uid: 20510 + - uid: 20511 components: - pos: 0.5210637,-64.93571 parent: 2 type: Transform - - uid: 20511 + - uid: 20512 components: - pos: 73.5331,-48.317677 parent: 2 type: Transform - proto: HighSecArmoryLocked entities: - - uid: 20512 + - uid: 20513 components: - pos: 28.5,26.5 parent: 2 type: Transform - - uid: 20513 + - uid: 20514 components: - pos: 30.5,26.5 parent: 2 type: Transform - - uid: 20514 + - uid: 20515 components: - pos: 30.5,24.5 parent: 2 type: Transform - - uid: 20515 + - uid: 20516 components: - pos: 28.5,24.5 parent: 2 type: Transform - proto: HighSecCaptainLocked entities: - - uid: 20516 + - uid: 20517 components: - name: vault type: MetaData - pos: 43.5,-24.5 parent: 2 type: Transform - - uid: 20517 + - uid: 20518 components: - name: vault type: MetaData - pos: 43.5,-27.5 parent: 2 type: Transform - - uid: 20518 + - uid: 20519 components: - pos: -1.5,64.5 parent: 2 type: Transform - - uid: 20519 + - uid: 20520 components: - name: AI type: MetaData @@ -157141,39 +142393,39 @@ entities: type: Transform - proto: HighSecCommandLocked entities: - - uid: 20520 + - uid: 20521 components: - pos: 13.5,-21.5 parent: 2 type: Transform - proto: HolofanProjector entities: - - uid: 20521 + - uid: 20522 components: - pos: -42.447636,35.63477 parent: 2 type: Transform - - uid: 20522 + - uid: 20523 components: - pos: -51.61548,-16.423727 parent: 2 type: Transform - - uid: 20523 + - uid: 20524 components: - pos: -37.369167,-8.432599 parent: 2 type: Transform - proto: HospitalCurtains entities: - - uid: 20524 + - uid: 20525 components: - pos: 60.5,21.5 parent: 2 type: Transform - - SecondsUntilStateChange: -495139.62 + - SecondsUntilStateChange: -492088.1 state: Opening type: Door - - uid: 20525 + - uid: 20526 components: - rot: 3.141592653589793 rad pos: 60.5,13.5 @@ -157181,528 +142433,528 @@ entities: type: Transform - proto: HospitalCurtainsOpen entities: - - uid: 20526 + - uid: 20527 components: - pos: -2.5,-55.5 parent: 2 type: Transform - - uid: 20527 + - uid: 20528 components: - pos: -5.5,-55.5 parent: 2 type: Transform - - uid: 20528 + - uid: 20529 components: - pos: -11.5,-55.5 parent: 2 type: Transform - - uid: 20529 + - uid: 20530 components: - pos: 3.5,-62.5 parent: 2 type: Transform - - SecondsUntilStateChange: -569701.25 + - SecondsUntilStateChange: -566649.7 state: Closing type: Door - - uid: 20530 + - uid: 20531 components: - pos: 0.5,-55.5 parent: 2 type: Transform - - uid: 20531 + - uid: 20532 components: - pos: -8.5,-55.5 parent: 2 type: Transform - proto: hydroponicsSoil entities: - - uid: 20532 + - uid: 20533 components: - name: grave type: MetaData - pos: -31.5,6.5 parent: 2 type: Transform - - uid: 20533 + - uid: 20534 components: - name: grave type: MetaData - pos: -31.5,4.5 parent: 2 type: Transform - - uid: 20534 + - uid: 20535 components: - name: grave type: MetaData - pos: -29.5,6.5 parent: 2 type: Transform - - uid: 20535 + - uid: 20536 components: - name: grave type: MetaData - pos: -29.5,4.5 parent: 2 type: Transform - - uid: 20536 + - uid: 20537 components: - pos: 9.5,55.5 parent: 2 type: Transform - - uid: 20537 + - uid: 20538 components: - pos: 8.5,55.5 parent: 2 type: Transform - - uid: 20538 + - uid: 20539 components: - pos: 10.5,55.5 parent: 2 type: Transform - - uid: 20539 + - uid: 20540 components: - pos: 11.5,55.5 parent: 2 type: Transform - - uid: 20540 + - uid: 20541 components: - pos: 7.5,55.5 parent: 2 type: Transform - - uid: 20541 + - uid: 20542 components: - pos: 11.5,52.5 parent: 2 type: Transform - - uid: 20542 + - uid: 20543 components: - pos: 10.5,52.5 parent: 2 type: Transform - - uid: 20543 + - uid: 20544 components: - pos: 9.5,52.5 parent: 2 type: Transform - - uid: 20544 + - uid: 20545 components: - pos: -6.5,49.5 parent: 2 type: Transform - - uid: 20545 + - uid: 20546 components: - pos: -4.5,55.5 parent: 2 type: Transform - proto: HydroponicsToolClippers entities: - - uid: 20546 + - uid: 20547 components: - pos: -47.467487,-3.558907 parent: 2 type: Transform - proto: HydroponicsToolHatchet entities: - - uid: 20547 + - uid: 20548 components: - pos: 9.725508,-56.44578 parent: 2 type: Transform - proto: HydroponicsToolMiniHoe entities: - - uid: 20548 + - uid: 20549 components: - pos: 57.497448,6.490094 parent: 2 type: Transform - - uid: 20549 + - uid: 20550 components: - pos: -28.501194,4.4131045 parent: 2 type: Transform - - uid: 20550 + - uid: 20551 components: - pos: 55.4544,56.501 parent: 2 type: Transform - - uid: 20551 + - uid: 20552 components: - pos: 7.1714664,53.671818 parent: 2 type: Transform - proto: HydroponicsToolSpade entities: - - uid: 20552 + - uid: 20553 components: - pos: 57.622448,6.583844 parent: 2 type: Transform - - uid: 20553 + - uid: 20554 components: - pos: -28.61099,3.5269613 parent: 2 type: Transform - - uid: 20554 + - uid: 20555 components: - pos: 55.54815,56.53225 parent: 2 type: Transform - proto: hydroponicsTray entities: - - uid: 20555 + - uid: 20556 components: - pos: -6.5,10.5 parent: 2 type: Transform - - uid: 20556 + - uid: 20557 components: - pos: -10.5,10.5 parent: 2 type: Transform - - uid: 20557 + - uid: 20558 components: - pos: -4.5,7.5 parent: 2 type: Transform - - uid: 20558 + - uid: 20559 components: - pos: -8.5,9.5 parent: 2 type: Transform - - uid: 20559 + - uid: 20560 components: - pos: -6.5,7.5 parent: 2 type: Transform - - uid: 20560 + - uid: 20561 components: - pos: -6.5,9.5 parent: 2 type: Transform - - uid: 20561 + - uid: 20562 components: - pos: -8.5,8.5 parent: 2 type: Transform - - uid: 20562 + - uid: 20563 components: - pos: -4.5,8.5 parent: 2 type: Transform - - uid: 20563 + - uid: 20564 components: - pos: -8.5,10.5 parent: 2 type: Transform - - uid: 20564 + - uid: 20565 components: - pos: -6.5,11.5 parent: 2 type: Transform - - uid: 20565 + - uid: 20566 components: - pos: -6.5,8.5 parent: 2 type: Transform - - uid: 20566 + - uid: 20567 components: - pos: -10.5,8.5 parent: 2 type: Transform - - uid: 20567 + - uid: 20568 components: - pos: -8.5,7.5 parent: 2 type: Transform - - uid: 20568 + - uid: 20569 components: - pos: -10.5,7.5 parent: 2 type: Transform - - uid: 20569 + - uid: 20570 components: - pos: -10.5,9.5 parent: 2 type: Transform - - uid: 20570 + - uid: 20571 components: - pos: -8.5,11.5 parent: 2 type: Transform - - uid: 20571 + - uid: 20572 components: - pos: 58.5,8.5 parent: 2 type: Transform - - uid: 20572 + - uid: 20573 components: - pos: 58.5,7.5 parent: 2 type: Transform - - uid: 20573 + - uid: 20574 components: - pos: 58.5,6.5 parent: 2 type: Transform - - uid: 20574 + - uid: 20575 components: - pos: 56.5,8.5 parent: 2 type: Transform - - uid: 20575 + - uid: 20576 components: - pos: 56.5,7.5 parent: 2 type: Transform - - uid: 20576 + - uid: 20577 components: - pos: 56.5,6.5 parent: 2 type: Transform - - uid: 20577 + - uid: 20578 components: - pos: 52.5,55.5 parent: 2 type: Transform - - uid: 20578 + - uid: 20579 components: - pos: 56.5,55.5 parent: 2 type: Transform - proto: HydroponicsTrayMachineCircuitboard entities: - - uid: 20579 + - uid: 20580 components: - pos: 38.518326,-56.124916 parent: 2 type: Transform - proto: InflatableDoorStack1 entities: - - uid: 20580 + - uid: 20581 components: - pos: 41.577766,-55.382984 parent: 2 type: Transform - proto: InflatableWall entities: - - uid: 20581 + - uid: 20582 components: - pos: -51.5,-66.5 parent: 2 type: Transform - - uid: 20582 + - uid: 20583 components: - pos: -51.5,-67.5 parent: 2 type: Transform - - uid: 20583 + - uid: 20584 components: - pos: -49.5,-72.5 parent: 2 type: Transform - proto: InflatableWallStack entities: - - uid: 20584 + - uid: 20585 components: - pos: 7.4753633,-16.474928 parent: 2 type: Transform - proto: InflatableWallStack1 entities: - - uid: 20585 + - uid: 20586 components: - pos: -38.56672,-98.45029 parent: 2 type: Transform - proto: IngotGold entities: - - uid: 20586 + - uid: 20587 components: - pos: 48.54513,-24.041304 parent: 2 type: Transform - - uid: 20587 + - uid: 20588 components: - pos: 48.16234,-27.566782 parent: 2 type: Transform - proto: IngotGold1 entities: - - uid: 20588 + - uid: 20589 components: - pos: 14.545005,56.593597 parent: 2 type: Transform - - uid: 20589 + - uid: 20590 components: - pos: 59.385517,-51.41954 parent: 2 type: Transform - - uid: 20590 + - uid: 20591 components: - pos: 59.432392,-51.591415 parent: 2 type: Transform - proto: Intercom entities: - - uid: 20591 + - uid: 20592 components: - pos: -38.5,-70.5 parent: 2 type: Transform - - uid: 20592 + - uid: 20593 components: - rot: 1.5707963267948966 rad pos: -14.5,57.5 parent: 2 type: Transform - - uid: 20593 + - uid: 20594 components: - rot: 1.5707963267948966 rad pos: 0.5,-10.5 parent: 2 type: Transform - - uid: 20594 + - uid: 20595 components: - pos: 37.5,-69.5 parent: 2 type: Transform - - uid: 20595 + - uid: 20596 components: - rot: -1.5707963267948966 rad pos: 29.5,-2.5 parent: 2 type: Transform - - uid: 20596 + - uid: 20597 components: - rot: -1.5707963267948966 rad pos: 7.5,6.5 parent: 2 type: Transform - - uid: 20597 + - uid: 20598 components: - pos: 14.5,4.5 parent: 2 type: Transform - - uid: 20598 + - uid: 20599 components: - pos: 9.5,11.5 parent: 2 type: Transform - - uid: 20599 + - uid: 20600 components: - rot: 1.5707963267948966 rad pos: 15.5,-3.5 parent: 2 type: Transform - - uid: 20600 + - uid: 20601 components: - pos: -31.5,11.5 parent: 2 type: Transform - - uid: 20601 + - uid: 20602 components: - rot: 1.5707963267948966 rad pos: -50.5,7.5 parent: 2 type: Transform - - uid: 20602 + - uid: 20603 components: - pos: -30.5,2.5 parent: 2 type: Transform - - uid: 20603 + - uid: 20604 components: - pos: -14.5,9.5 parent: 2 type: Transform - - uid: 20604 + - uid: 20605 components: - pos: -15.5,-24.5 parent: 2 type: Transform - - uid: 20605 + - uid: 20606 components: - pos: 4.5,-39.5 parent: 2 type: Transform - - uid: 20606 + - uid: 20607 components: - pos: 39.5,-40.5 parent: 2 type: Transform - - uid: 20607 + - uid: 20608 components: - pos: 29.5,-15.5 parent: 2 type: Transform - - uid: 20608 + - uid: 20609 components: - pos: 39.5,3.5 parent: 2 type: Transform - - uid: 20609 + - uid: 20610 components: - pos: 54.5,-4.5 parent: 2 type: Transform - - uid: 20610 + - uid: 20611 components: - rot: -1.5707963267948966 rad pos: 13.5,-8.5 parent: 2 type: Transform - - uid: 20611 + - uid: 20612 components: - rot: 1.5707963267948966 rad pos: -1.5,48.5 parent: 2 type: Transform - - uid: 20612 + - uid: 20613 components: - rot: 1.5707963267948966 rad pos: -19.5,40.5 parent: 2 type: Transform - - uid: 20613 + - uid: 20614 components: - rot: -1.5707963267948966 rad pos: -2.5,-18.5 parent: 2 type: Transform - - uid: 20614 + - uid: 20615 components: - pos: -14.5,-40.5 parent: 2 type: Transform - - uid: 20615 + - uid: 20616 components: - rot: -1.5707963267948966 rad pos: 17.5,-28.5 parent: 2 type: Transform - - uid: 20616 + - uid: 20617 components: - pos: 17.5,-51.5 parent: 2 type: Transform - - uid: 20617 + - uid: 20618 components: - pos: -25.5,-94.5 parent: 2 type: Transform - - uid: 20618 + - uid: 20619 components: - rot: 1.5707963267948966 rad pos: -21.5,29.5 parent: 2 type: Transform - - uid: 20619 + - uid: 20620 components: - pos: 23.5,-69.5 parent: 2 type: Transform - - uid: 20620 + - uid: 20621 components: - rot: -1.5707963267948966 rad pos: 20.5,-84.5 @@ -157710,41 +142962,41 @@ entities: type: Transform - proto: IntercomAll entities: - - uid: 20621 + - uid: 20622 components: - pos: 20.5,-20.5 parent: 2 type: Transform - proto: IntercomCommand entities: - - uid: 20622 + - uid: 20623 components: - pos: -34.5,-14.5 parent: 2 type: Transform - - uid: 20623 + - uid: 20624 components: - pos: 64.5,0.5 parent: 2 type: Transform - - uid: 20624 + - uid: 20625 components: - pos: 64.5,-50.5 parent: 2 type: Transform - - uid: 20625 + - uid: 20626 components: - rot: -1.5707963267948966 rad pos: 9.5,21.5 parent: 2 type: Transform - - uid: 20626 + - uid: 20627 components: - rot: 1.5707963267948966 rad pos: 24.5,-35.5 parent: 2 type: Transform - - uid: 20627 + - uid: 20628 components: - rot: -1.5707963267948966 rad pos: -16.5,-57.5 @@ -157752,33 +143004,33 @@ entities: type: Transform - proto: IntercomEngineering entities: - - uid: 20628 + - uid: 20629 components: - pos: -24.5,-7.5 parent: 2 type: Transform - - uid: 20629 + - uid: 20630 components: - pos: -35.5,-4.5 parent: 2 type: Transform - - uid: 20630 + - uid: 20631 components: - rot: -1.5707963267948966 rad pos: -52.5,-9.5 parent: 2 type: Transform - - uid: 20631 + - uid: 20632 components: - pos: -61.5,-26.5 parent: 2 type: Transform - - uid: 20632 + - uid: 20633 components: - pos: -28.5,-32.5 parent: 2 type: Transform - - uid: 20633 + - uid: 20634 components: - rot: -1.5707963267948966 rad pos: -32.5,-49.5 @@ -157786,159 +143038,159 @@ entities: type: Transform - proto: IntercomMedical entities: - - uid: 20634 + - uid: 20635 components: - pos: -13.5,-58.5 parent: 2 type: Transform - - uid: 20635 + - uid: 20636 components: - rot: 1.5707963267948966 rad pos: -32.5,-70.5 parent: 2 type: Transform - - uid: 20636 + - uid: 20637 components: - pos: -24.5,-56.5 parent: 2 type: Transform - - uid: 20637 + - uid: 20638 components: - pos: 2.5,-51.5 parent: 2 type: Transform - - uid: 20638 + - uid: 20639 components: - pos: -25.5,-68.5 parent: 2 type: Transform - - uid: 20639 + - uid: 20640 components: - rot: -1.5707963267948966 rad pos: -4.5,-64.5 parent: 2 type: Transform - - uid: 20640 + - uid: 20641 components: - rot: 1.5707963267948966 rad pos: -13.5,-36.5 parent: 2 type: Transform - - uid: 20641 + - uid: 20642 components: - rot: 1.5707963267948966 rad pos: -27.5,-85.5 parent: 2 type: Transform - - uid: 20642 + - uid: 20643 components: - rot: -1.5707963267948966 rad pos: -21.5,-80.5 parent: 2 type: Transform - - uid: 20643 + - uid: 20644 components: - pos: -19.5,-74.5 parent: 2 type: Transform - proto: IntercomScience entities: - - uid: 20644 + - uid: 20645 components: - pos: 42.5,-34.5 parent: 2 type: Transform - - uid: 20645 + - uid: 20646 components: - pos: 44.5,-40.5 parent: 2 type: Transform - - uid: 20646 + - uid: 20647 components: - rot: 1.5707963267948966 rad pos: 40.5,-45.5 parent: 2 type: Transform - - uid: 20647 + - uid: 20648 components: - rot: -1.5707963267948966 rad pos: 53.5,-55.5 parent: 2 type: Transform - - uid: 20648 + - uid: 20649 components: - pos: 67.5,-42.5 parent: 2 type: Transform - - uid: 20649 + - uid: 20650 components: - rot: -1.5707963267948966 rad pos: 76.5,-40.5 parent: 2 type: Transform - - uid: 20650 + - uid: 20651 components: - pos: 60.5,-30.5 parent: 2 type: Transform - - uid: 20651 + - uid: 20652 components: - pos: 53.5,-38.5 parent: 2 type: Transform - proto: IntercomSecurity entities: - - uid: 20652 + - uid: 20653 components: - rot: 1.5707963267948966 rad pos: 3.5,14.5 parent: 2 type: Transform - - uid: 20653 + - uid: 20654 components: - rot: -1.5707963267948966 rad pos: -13.5,24.5 parent: 2 type: Transform - - uid: 20654 + - uid: 20655 components: - pos: -16.5,-19.5 parent: 2 type: Transform - - uid: 20655 + - uid: 20656 components: - rot: 1.5707963267948966 rad pos: -2.5,18.5 parent: 2 type: Transform - - uid: 20656 + - uid: 20657 components: - pos: 26.5,24.5 parent: 2 type: Transform - - uid: 20657 + - uid: 20658 components: - pos: 16.5,24.5 parent: 2 type: Transform - - uid: 20658 + - uid: 20659 components: - rot: 1.5707963267948966 rad pos: 18.5,-45.5 parent: 2 type: Transform - - uid: 20659 + - uid: 20660 components: - rot: 1.5707963267948966 rad pos: 16.5,-13.5 parent: 2 type: Transform - - uid: 20660 + - uid: 20661 components: - pos: 4.5,-55.5 parent: 2 type: Transform - - uid: 20661 + - uid: 20662 components: - rot: -1.5707963267948966 rad pos: 43.5,9.5 @@ -157946,17 +143198,17 @@ entities: type: Transform - proto: IntercomService entities: - - uid: 20662 + - uid: 20663 components: - pos: 20.5,15.5 parent: 2 type: Transform - - uid: 20663 + - uid: 20664 components: - pos: -26.5,16.5 parent: 2 type: Transform - - uid: 20664 + - uid: 20665 components: - rot: 1.5707963267948966 rad pos: -11.5,5.5 @@ -157964,35 +143216,35 @@ entities: type: Transform - proto: IntercomSupply entities: - - uid: 20665 + - uid: 20666 components: - rot: -1.5707963267948966 rad pos: -29.5,24.5 parent: 2 type: Transform - - uid: 20666 + - uid: 20667 components: - pos: -48.5,17.5 parent: 2 type: Transform - - uid: 20667 + - uid: 20668 components: - rot: 1.5707963267948966 rad pos: -26.5,20.5 parent: 2 type: Transform - - uid: 20668 + - uid: 20669 components: - rot: 1.5707963267948966 rad pos: -35.5,30.5 parent: 2 type: Transform - - uid: 20669 + - uid: 20670 components: - pos: -43.5,26.5 parent: 2 type: Transform - - uid: 20670 + - uid: 20671 components: - rot: -1.5707963267948966 rad pos: -39.5,28.5 @@ -158000,7 +143252,7 @@ entities: type: Transform - proto: JanitorialTrolley entities: - - uid: 20671 + - uid: 20672 components: - rot: -1.5707963267948966 rad pos: -7.5,-22.5 @@ -158008,19 +143260,19 @@ entities: type: Transform - proto: JetpackBlueFilled entities: - - uid: 20672 + - uid: 20673 components: - rot: 3.141592653589793 rad pos: 33.468403,-14.391748 parent: 2 type: Transform - - uid: 20673 + - uid: 20674 components: - rot: 3.141592653589793 rad pos: 33.499653,-14.469873 parent: 2 type: Transform - - uid: 20674 + - uid: 20675 components: - rot: 3.141592653589793 rad pos: 33.640278,-14.579248 @@ -158028,186 +143280,97 @@ entities: type: Transform - proto: KitchenMicrowave entities: - - uid: 20675 + - uid: 20676 components: - pos: -31.5,-69.5 parent: 2 type: Transform - - uid: 20676 + - uid: 20677 components: - pos: 2.5,7.5 parent: 2 type: Transform - - uid: 20677 + - uid: 20678 components: - pos: 4.5,6.5 parent: 2 type: Transform - - uid: 20678 + - uid: 20679 components: - pos: 31.5,-20.5 parent: 2 type: Transform - - uid: 20679 + - uid: 20680 components: - pos: 52.5,18.5 parent: 2 type: Transform - - uid: 20680 + - uid: 20681 components: - pos: 45.5,-49.5 parent: 2 type: Transform - - uid: 20681 + - uid: 20682 components: - pos: -38.5,-32.5 parent: 2 type: Transform - - uid: 20682 + - uid: 20683 components: - pos: -22.5,45.5 parent: 2 type: Transform - - uid: 20683 + - uid: 20684 components: - pos: -8.5,41.5 parent: 2 type: Transform - proto: KitchenReagentGrinder entities: - - uid: 20684 + - uid: 20685 components: - pos: -3.5,5.5 parent: 2 type: Transform - - uid: 20685 + - uid: 20686 components: - pos: 3.5,-47.5 parent: 2 type: Transform - - uid: 20686 + - uid: 20687 components: - pos: 3.5,7.5 parent: 2 type: Transform - - uid: 20687 + - uid: 20688 components: - pos: 53.5,18.5 parent: 2 type: Transform - proto: KitchenSpike entities: - - uid: 20688 + - uid: 20689 components: - pos: -0.5,11.5 parent: 2 type: Transform - proto: Lamp entities: - - uid: 20689 + - uid: 20690 components: - rot: -1.5707963267948966 rad pos: -3.8543606,-48.096176 parent: 2 type: Transform - - uid: 20690 + - uid: 20691 components: - rot: 1.5707963267948966 rad pos: 24.558033,-21.226107 parent: 2 type: Transform - - uid: 20691 - components: - - pos: 21.425192,-12.111239 - parent: 2 - type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: Objects/Tools/flashlight.rsi/flashlight.png - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - uid: 20692 components: - - rot: -1.5707963267948966 rad - pos: 7.6524577,20.90233 - parent: 2 - type: Transform - - uid: 20693 - components: - - rot: -1.5707963267948966 rad - pos: -9.565374,-37.00866 - parent: 2 - type: Transform - - uid: 20694 - components: - - rot: 1.5707963267948966 rad - pos: 51.608532,-40.935013 - parent: 2 - type: Transform - - uid: 20695 - components: - - pos: 59.696476,-1.1797758 - parent: 2 - type: Transform - - uid: 20696 - components: - - rot: 1.5707963267948966 rad - pos: -33.336697,29.910027 - parent: 2 - type: Transform - - uid: 20697 - components: - - pos: -24.34436,11.920202 - parent: 2 - type: Transform - - uid: 20698 - components: - - rot: 1.5707963267948966 rad - pos: -28.600471,45.10426 - parent: 2 - type: Transform - - uid: 20699 - components: - - pos: -12.458234,-18.122696 - parent: 2 - type: Transform -- proto: LampBanana - entities: - - uid: 20700 - components: - - pos: 4.618959,-10.256847 - parent: 2 - type: Transform - - uid: 20701 - components: - - pos: -22.53235,37.89803 - parent: 2 - type: Transform -- proto: LampGold - entities: - - uid: 20702 - components: - - pos: -22.537891,-69.31316 - parent: 2 - type: Transform - - uid: 20703 - components: - - pos: -18.78946,-56.159798 + - pos: 21.425192,-12.111239 parent: 2 type: Transform - toggleAction: @@ -158230,33 +143393,122 @@ entities: temporary: False event: !type:ToggleActionEvent {} type: HandheldLight + - uid: 20693 + components: + - rot: -1.5707963267948966 rad + pos: 7.6524577,20.90233 + parent: 2 + type: Transform + - uid: 20694 + components: + - rot: -1.5707963267948966 rad + pos: -9.565374,-37.00866 + parent: 2 + type: Transform + - uid: 20695 + components: + - rot: 1.5707963267948966 rad + pos: 51.608532,-40.935013 + parent: 2 + type: Transform + - uid: 20696 + components: + - pos: 59.696476,-1.1797758 + parent: 2 + type: Transform + - uid: 20697 + components: + - rot: 1.5707963267948966 rad + pos: -33.336697,29.910027 + parent: 2 + type: Transform + - uid: 20698 + components: + - pos: -24.34436,11.920202 + parent: 2 + type: Transform + - uid: 20699 + components: + - rot: 1.5707963267948966 rad + pos: -28.600471,45.10426 + parent: 2 + type: Transform + - uid: 20700 + components: + - pos: -12.458234,-18.122696 + parent: 2 + type: Transform +- proto: LampBanana + entities: + - uid: 20701 + components: + - pos: 4.618959,-10.256847 + parent: 2 + type: Transform + - uid: 20702 + components: + - pos: -22.53235,37.89803 + parent: 2 + type: Transform +- proto: LampGold + entities: + - uid: 20703 + components: + - pos: -22.537891,-69.31316 + parent: 2 + type: Transform - uid: 20704 components: - - pos: -10.485052,-3.11381 + - pos: -18.78946,-56.159798 parent: 2 type: Transform + - toggleAction: + sound: null + itemIconStyle: BigItem + icon: Objects/Tools/flashlight.rsi/flashlight.png + iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png + iconColor: '#FFFFFFFF' + name: action-name-toggle-light + description: action-description-toggle-light + keywords: [] + enabled: True + useDelay: null + charges: null + checkCanInteract: True + clientExclusive: False + priority: 0 + autoPopulate: True + autoRemove: True + temporary: False + event: !type:ToggleActionEvent {} + type: HandheldLight - uid: 20705 + components: + - pos: -10.485052,-3.11381 + parent: 2 + type: Transform + - uid: 20706 components: - rot: 1.5707963267948966 rad pos: 43.557644,-4.1465535 parent: 2 type: Transform - - uid: 20706 + - uid: 20707 components: - pos: 37.53909,-2.5487528 parent: 2 type: Transform - - uid: 20707 + - uid: 20708 components: - pos: 32.892563,-50.10114 parent: 2 type: Transform - - uid: 20708 + - uid: 20709 components: - pos: 28.845686,-50.06989 parent: 2 type: Transform - - uid: 20709 + - uid: 20710 components: - rot: 1.5707963267948966 rad pos: -22.520432,-96.69095 @@ -158264,70 +143516,70 @@ entities: type: Transform - proto: LargeBeaker entities: - - uid: 20710 + - uid: 20711 components: - pos: 3.6272888,-45.59047 parent: 2 type: Transform - - uid: 20711 + - uid: 20712 components: - pos: 3.2216597,-45.50144 parent: 2 type: Transform - - uid: 20712 + - uid: 20713 components: - pos: 3.6444578,-45.294815 parent: 2 type: Transform - - uid: 20713 + - uid: 20714 components: - pos: 4.621125,7.7027445 parent: 2 type: Transform - - uid: 20714 + - uid: 20715 components: - pos: -25.403534,-78.32023 parent: 2 type: Transform - - uid: 20715 + - uid: 20716 components: - pos: -25.716034,-78.71085 parent: 2 type: Transform - - uid: 20716 + - uid: 20717 components: - pos: -25.591316,-84.223625 parent: 2 type: Transform - proto: LauncherCreamPie entities: - - uid: 20717 + - uid: 20718 components: - pos: 4.462709,-9.678722 parent: 2 type: Transform - proto: Lighter entities: - - uid: 20718 + - uid: 20719 components: - pos: 13.70992,-34.538578 parent: 2 type: Transform - - uid: 20719 + - uid: 20720 components: - pos: 15.667978,-79.47625 parent: 2 type: Transform - proto: LightTube entities: - - uid: 20720 + - uid: 20721 components: - pos: -39.78844,-85.422134 parent: 2 type: Transform - proto: LockerAtmosphericsFilled entities: - - uid: 20721 + - uid: 20722 components: - pos: -33.5,-32.5 parent: 2 @@ -158350,7 +143602,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20722 + - uid: 20723 components: - pos: -39.5,-36.5 parent: 2 @@ -158373,7 +143625,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20723 + - uid: 20724 components: - pos: -37.5,-36.5 parent: 2 @@ -158396,7 +143648,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20724 + - uid: 20725 components: - pos: -35.5,-36.5 parent: 2 @@ -158421,7 +143673,7 @@ entities: type: EntityStorage - proto: LockerBoozeFilled entities: - - uid: 20725 + - uid: 20726 components: - pos: 22.5,12.5 parent: 2 @@ -158446,7 +143698,7 @@ entities: type: EntityStorage - proto: LockerBotanistFilled entities: - - uid: 20726 + - uid: 20727 components: - pos: -4.5,11.5 parent: 2 @@ -158471,7 +143723,7 @@ entities: type: EntityStorage - proto: LockerCaptainFilled entities: - - uid: 20727 + - uid: 20728 components: - pos: 29.5,-27.5 parent: 2 @@ -158496,14 +143748,14 @@ entities: type: EntityStorage - proto: LockerChemistryFilled entities: - - uid: 20728 + - uid: 20729 components: - pos: 7.5,-50.5 parent: 2 type: Transform - proto: LockerChiefEngineerFilled entities: - - uid: 20729 + - uid: 20730 components: - pos: -37.5,-15.5 parent: 2 @@ -158528,7 +143780,7 @@ entities: type: EntityStorage - proto: LockerChiefMedicalOfficerFilled entities: - - uid: 20730 + - uid: 20731 components: - pos: -18.5,-54.5 parent: 2 @@ -158553,7 +143805,7 @@ entities: type: EntityStorage - proto: LockerDetectiveFilled entities: - - uid: 20731 + - uid: 20732 components: - pos: 17.5,-10.5 parent: 2 @@ -158578,7 +143830,7 @@ entities: type: EntityStorage - proto: LockerElectricalSupplies entities: - - uid: 20732 + - uid: 20733 components: - pos: -74.5,-28.5 parent: 2 @@ -158601,7 +143853,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20733 + - uid: 20734 components: - pos: -7.5,-17.5 parent: 2 @@ -158626,7 +143878,7 @@ entities: type: EntityStorage - proto: LockerElectricalSuppliesFilled entities: - - uid: 20734 + - uid: 20735 components: - pos: 46.5,-3.5 parent: 2 @@ -158649,7 +143901,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20735 + - uid: 20736 components: - pos: -53.5,0.5 parent: 2 @@ -158672,7 +143924,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20736 + - uid: 20737 components: - pos: 32.5,25.5 parent: 2 @@ -158695,7 +143947,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20737 + - uid: 20738 components: - pos: 39.5,-28.5 parent: 2 @@ -158720,7 +143972,7 @@ entities: type: EntityStorage - proto: LockerEngineerFilled entities: - - uid: 20738 + - uid: 20739 components: - pos: -39.5,-7.5 parent: 2 @@ -158743,7 +143995,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20739 + - uid: 20740 components: - pos: -39.5,-12.5 parent: 2 @@ -158766,7 +144018,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20740 + - uid: 20741 components: - pos: -39.5,-8.5 parent: 2 @@ -158789,7 +144041,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20741 + - uid: 20742 components: - pos: -39.5,-9.5 parent: 2 @@ -158812,7 +144064,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20742 + - uid: 20743 components: - pos: -50.5,-20.5 parent: 2 @@ -158837,7 +144089,7 @@ entities: type: EntityStorage - proto: LockerEvidence entities: - - uid: 20743 + - uid: 20744 components: - pos: 4.5,-57.5 parent: 2 @@ -158860,7 +144112,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20744 + - uid: 20745 components: - pos: 34.5,-45.5 parent: 2 @@ -158883,7 +144135,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20745 + - uid: 20746 components: - pos: 18.5,23.5 parent: 2 @@ -158906,17 +144158,17 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20746 + - uid: 20747 components: - pos: 37.5,12.5 parent: 2 type: Transform - - uid: 20747 + - uid: 20748 components: - pos: 37.5,11.5 parent: 2 type: Transform - - uid: 20748 + - uid: 20749 components: - pos: 41.5,16.5 parent: 2 @@ -158939,7 +144191,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20749 + - uid: 20750 components: - pos: 40.5,16.5 parent: 2 @@ -158962,7 +144214,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20750 + - uid: 20751 components: - pos: 39.5,16.5 parent: 2 @@ -158985,7 +144237,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20751 + - uid: 20752 components: - pos: 38.5,16.5 parent: 2 @@ -159008,7 +144260,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20752 + - uid: 20753 components: - pos: 42.5,16.5 parent: 2 @@ -159031,7 +144283,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20753 + - uid: 20754 components: - pos: 37.5,16.5 parent: 2 @@ -159054,14 +144306,14 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20754 + - uid: 20755 components: - pos: 37.5,10.5 parent: 2 type: Transform - proto: LockerFreezer entities: - - uid: 20755 + - uid: 20756 components: - pos: -38.5,37.5 parent: 2 @@ -159084,7 +144336,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20756 + - uid: 20757 components: - pos: -38.5,36.5 parent: 2 @@ -159107,7 +144359,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20757 + - uid: 20758 components: - pos: 1.5,14.5 parent: 2 @@ -159130,7 +144382,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20758 + - uid: 20759 components: - pos: -5.5,-95.5 parent: 2 @@ -159155,7 +144407,7 @@ entities: type: EntityStorage - proto: LockerHeadOfPersonnelFilled entities: - - uid: 20759 + - uid: 20760 components: - pos: 21.5,-34.5 parent: 2 @@ -159180,7 +144432,7 @@ entities: type: EntityStorage - proto: LockerHeadOfSecurityFilled entities: - - uid: 20760 + - uid: 20761 components: - pos: 4.5,22.5 parent: 2 @@ -159205,7 +144457,7 @@ entities: type: EntityStorage - proto: LockerMedicalFilled entities: - - uid: 20761 + - uid: 20762 components: - pos: -15.5,-49.5 parent: 2 @@ -159228,7 +144480,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20762 + - uid: 20763 components: - pos: -15.5,-47.5 parent: 2 @@ -159251,7 +144503,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20763 + - uid: 20764 components: - pos: -15.5,-45.5 parent: 2 @@ -159274,26 +144526,26 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20764 + - uid: 20765 components: - pos: -15.5,-61.5 parent: 2 type: Transform - - uid: 20765 + - uid: 20766 components: - pos: -14.5,-61.5 parent: 2 type: Transform - proto: LockerParamedicFilled entities: - - uid: 20766 + - uid: 20767 components: - pos: 2.5,-64.5 parent: 2 type: Transform - proto: LockerQuarterMasterFilled entities: - - uid: 20767 + - uid: 20768 components: - pos: -34.5,31.5 parent: 2 @@ -159318,7 +144570,7 @@ entities: type: EntityStorage - proto: LockerResearchDirectorFilled entities: - - uid: 20768 + - uid: 20769 components: - pos: 63.5,-55.5 parent: 2 @@ -159343,7 +144595,7 @@ entities: type: EntityStorage - proto: LockerSalvageSpecialistFilled entities: - - uid: 20769 + - uid: 20770 components: - pos: -36.5,32.5 parent: 2 @@ -159366,7 +144618,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20770 + - uid: 20771 components: - pos: -36.5,30.5 parent: 2 @@ -159389,7 +144641,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20771 + - uid: 20772 components: - pos: -36.5,28.5 parent: 2 @@ -159412,14 +144664,14 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20772 + - uid: 20773 components: - pos: -45.5,44.5 parent: 2 type: Transform - proto: LockerScienceFilled entities: - - uid: 20773 + - uid: 20774 components: - pos: 44.5,-45.5 parent: 2 @@ -159442,7 +144694,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20774 + - uid: 20775 components: - pos: 42.5,-45.5 parent: 2 @@ -159465,7 +144717,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20775 + - uid: 20776 components: - pos: 41.5,-45.5 parent: 2 @@ -159490,7 +144742,7 @@ entities: type: EntityStorage - proto: LockerSecurity entities: - - uid: 20776 + - uid: 20777 components: - pos: 19.5,-47.5 parent: 2 @@ -159500,8 +144752,8 @@ entities: immutable: False temperature: 293.14957 moles: - - 2.418213 - - 9.097087 + - 8.402782 + - 31.610466 - 0 - 0 - 0 @@ -159513,7 +144765,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20777 + - uid: 20778 components: - pos: 52.5,13.5 parent: 2 @@ -159536,7 +144788,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20778 + - uid: 20779 components: - pos: -14.5,23.5 parent: 2 @@ -159561,7 +144813,17 @@ entities: type: EntityStorage - proto: LockerSecurityFilled entities: - - uid: 20779 + - uid: 20780 + components: + - pos: 31.5,19.5 + parent: 2 + type: Transform + - uid: 20781 + components: + - pos: 32.5,19.5 + parent: 2 + type: Transform + - uid: 20782 components: - pos: -0.5,17.5 parent: 2 @@ -159584,7 +144846,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20780 + - uid: 20783 components: - pos: -0.5,19.5 parent: 2 @@ -159607,9 +144869,14 @@ entities: - 0 - 0 type: EntityStorage + - uid: 20784 + components: + - pos: -1.5,21.5 + parent: 2 + type: Transform - proto: LockerSyndicatePersonal entities: - - uid: 20781 + - uid: 20785 components: - pos: -53.5,-86.5 parent: 2 @@ -159619,8 +144886,8 @@ entities: immutable: False temperature: 293.14957 moles: - - 2.418213 - - 9.097087 + - 8.402782 + - 31.610466 - 0 - 0 - 0 @@ -159632,30 +144899,16 @@ entities: - 0 - 0 type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 30692 - - 30694 - - 30691 - - 30693 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - proto: LockerWallMedicalDoctorFilled entities: - - uid: 20782 + - uid: 20786 components: - pos: 6.5,-58.5 parent: 2 type: Transform - proto: LockerWallMedicalFilled entities: - - uid: 20783 + - uid: 20787 components: - pos: -26.5,-56.5 parent: 2 @@ -159680,7 +144933,7 @@ entities: type: EntityStorage - proto: LockerWardenFilled entities: - - uid: 20784 + - uid: 20788 components: - pos: 20.5,23.5 parent: 2 @@ -159705,7 +144958,7 @@ entities: type: EntityStorage - proto: LockerWeldingSuppliesFilled entities: - - uid: 20785 + - uid: 20789 components: - pos: 38.5,-53.5 parent: 2 @@ -159728,7 +144981,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20786 + - uid: 20790 components: - pos: 13.5,-47.5 parent: 2 @@ -159751,7 +145004,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20787 + - uid: 20791 components: - pos: -53.5,-61.5 parent: 2 @@ -159776,7 +145029,7 @@ entities: type: EntityStorage - proto: MachineAnomalyGenerator entities: - - uid: 20788 + - uid: 20792 components: - pos: 62.5,-30.5 parent: 2 @@ -159785,31 +145038,31 @@ entities: type: AmbientSound - proto: MachineAnomalyVessel entities: - - uid: 20789 + - uid: 20793 components: - pos: 58.5,-32.5 parent: 2 type: Transform - - uid: 20790 + - uid: 20794 components: - pos: 57.5,-32.5 parent: 2 type: Transform - proto: MachineAPE entities: - - uid: 20791 + - uid: 20795 components: - rot: 1.5707963267948966 rad pos: 57.5,-34.5 parent: 2 type: Transform - - uid: 20792 + - uid: 20796 components: - rot: 1.5707963267948966 rad pos: 57.5,-35.5 parent: 2 type: Transform - - uid: 20793 + - uid: 20797 components: - rot: 1.5707963267948966 rad pos: 58.5,-35.5 @@ -159817,7 +145070,7 @@ entities: type: Transform - proto: MachineArtifactAnalyzer entities: - - uid: 20794 + - uid: 20798 components: - rot: -1.5707963267948966 rad pos: 72.5,-28.5 @@ -159826,88 +145079,102 @@ entities: - inputs: ArtifactAnalyzerReceiver: - port: ArtifactAnalyzerSender - uid: 12276 + uid: 12277 type: SignalReceiver - proto: MachineFrame entities: - - uid: 20795 + - uid: 20799 components: - pos: -7.5,-63.5 parent: 2 type: Transform - - uid: 20796 + - uid: 20800 components: - pos: -9.5,-63.5 parent: 2 type: Transform - proto: MachineFrameDestroyed entities: - - uid: 20797 + - uid: 20801 components: - pos: 45.5,44.5 parent: 2 type: Transform - - uid: 20798 + - uid: 20802 components: - pos: -16.5,-8.5 parent: 2 type: Transform - - uid: 20799 + - uid: 20803 components: - pos: -36.5,-29.5 parent: 2 type: Transform - proto: MagazinePistolHighVelocity entities: - - uid: 20800 + - uid: 20804 components: - pos: 32.305683,32.48245 parent: 2 type: Transform - - uid: 20801 + - uid: 20805 components: - pos: 32.32131,32.48245 parent: 2 type: Transform - - uid: 20802 + - uid: 20806 components: - pos: 32.32131,32.48245 parent: 2 type: Transform - - uid: 20803 + - uid: 20807 components: - pos: 32.305683,32.48245 parent: 2 type: Transform + - uid: 20808 + components: + - pos: 32.42361,32.439632 + parent: 2 + type: Transform + - nextSound: 347.5689661 + type: EmitSoundOnCollide + - uid: 20809 + components: + - pos: 32.439236,32.392757 + parent: 2 + type: Transform + - nextSound: 348.6616122 + type: EmitSoundOnCollide - proto: MagazinePistolSubMachineGunHighVelocity entities: - - uid: 20804 + - uid: 20810 components: - pos: 29.960567,32.527683 parent: 2 type: Transform - - uid: 20805 + - uid: 20811 components: - pos: 29.952528,32.56383 parent: 2 type: Transform - - uid: 20806 + - uid: 20812 components: - pos: 29.936903,32.548206 parent: 2 type: Transform - - uid: 20807 + - uid: 20813 components: - pos: 29.968153,32.610706 parent: 2 type: Transform - - uid: 20808 + - uid: 20814 components: - rot: 3.141592653589793 rad pos: 29.992437,32.514297 parent: 2 type: Transform - - uid: 20809 + - uid: 20815 components: - rot: 3.141592653589793 rad pos: 29.976812,32.483047 @@ -159915,624 +145182,633 @@ entities: type: Transform - proto: MagazinePistolSubMachineGunTopMounted entities: - - uid: 20810 + - uid: 20816 components: - pos: 6.551134,22.646631 parent: 2 type: Transform + - uid: 20817 + components: + - pos: 6.5377827,22.587479 + parent: 2 + type: Transform + - nextSound: 405.0019447 + type: EmitSoundOnCollide - proto: MagicDiceBag entities: - - uid: 20811 + - uid: 20818 components: - pos: -47.440662,5.801874 parent: 2 type: Transform - proto: MaintenanceFluffSpawner entities: - - uid: 20812 + - uid: 20819 components: - pos: 15.5,-66.5 parent: 2 type: Transform - - uid: 20813 + - uid: 20820 components: - pos: 12.5,-53.5 parent: 2 type: Transform - - uid: 20814 + - uid: 20821 components: - pos: -15.5,-29.5 parent: 2 type: Transform - - uid: 20815 + - uid: 20822 components: - rot: -1.5707963267948966 rad pos: -16.5,-16.5 parent: 2 type: Transform - - uid: 20816 + - uid: 20823 components: - rot: -1.5707963267948966 rad pos: -8.5,-10.5 parent: 2 type: Transform - - uid: 20817 + - uid: 20824 components: - rot: -1.5707963267948966 rad pos: -11.5,-8.5 parent: 2 type: Transform - - uid: 20818 + - uid: 20825 components: - pos: -35.5,-22.5 parent: 2 type: Transform - - uid: 20819 + - uid: 20826 components: - pos: 43.5,-8.5 parent: 2 type: Transform - - uid: 20820 + - uid: 20827 components: - pos: -50.5,-62.5 parent: 2 type: Transform - - uid: 20821 + - uid: 20828 components: - pos: -36.5,-69.5 parent: 2 type: Transform - - uid: 20822 + - uid: 20829 components: - pos: 57.5,-3.5 parent: 2 type: Transform - - uid: 20823 + - uid: 20830 components: - pos: -3.5,30.5 parent: 2 type: Transform - - uid: 20824 + - uid: 20831 components: - pos: -15.5,21.5 parent: 2 type: Transform - - uid: 20825 + - uid: 20832 components: - pos: -49.5,15.5 parent: 2 type: Transform - - uid: 20826 + - uid: 20833 components: - pos: 15.5,57.5 parent: 2 type: Transform - - uid: 20827 + - uid: 20834 components: - pos: -14.5,-82.5 parent: 2 type: Transform - - uid: 20828 + - uid: 20835 components: - pos: -69.5,-43.5 parent: 2 type: Transform - - uid: 20829 + - uid: 20836 components: - rot: 3.141592653589793 rad pos: 43.5,-62.5 parent: 2 type: Transform - - uid: 20830 + - uid: 20837 components: - pos: -32.5,-7.5 parent: 2 type: Transform - proto: MaintenanceToolSpawner entities: - - uid: 20831 + - uid: 20838 components: - pos: -13.5,12.5 parent: 2 type: Transform - - uid: 20832 + - uid: 20839 components: - pos: 36.5,-50.5 parent: 2 type: Transform - - uid: 20833 + - uid: 20840 components: - rot: 1.5707963267948966 rad pos: -55.5,-6.5 parent: 2 type: Transform - - uid: 20834 + - uid: 20841 components: - pos: -52.5,-15.5 parent: 2 type: Transform - - uid: 20835 + - uid: 20842 components: - pos: -50.5,-16.5 parent: 2 type: Transform - - uid: 20836 + - uid: 20843 components: - pos: -24.5,-52.5 parent: 2 type: Transform - - uid: 20837 + - uid: 20844 components: - pos: 0.5,23.5 parent: 2 type: Transform - - uid: 20838 + - uid: 20845 components: - pos: -3.5,34.5 parent: 2 type: Transform - - uid: 20839 + - uid: 20846 components: - pos: -49.5,14.5 parent: 2 type: Transform - - uid: 20840 + - uid: 20847 components: - pos: 3.5,-17.5 parent: 2 type: Transform - - uid: 20841 + - uid: 20848 components: - pos: 59.5,2.5 parent: 2 type: Transform - - uid: 20842 + - uid: 20849 components: - pos: 18.5,-30.5 parent: 2 type: Transform - - uid: 20843 + - uid: 20850 components: - pos: 53.5,47.5 parent: 2 type: Transform - - uid: 20844 + - uid: 20851 components: - pos: 67.5,8.5 parent: 2 type: Transform - - uid: 20845 + - uid: 20852 components: - pos: 18.5,39.5 parent: 2 type: Transform - - uid: 20846 + - uid: 20853 components: - pos: 16.5,56.5 parent: 2 type: Transform - - uid: 20847 + - uid: 20854 components: - pos: -4.5,-82.5 parent: 2 type: Transform - - uid: 20848 + - uid: 20855 components: - pos: -8.5,-82.5 parent: 2 type: Transform - - uid: 20849 + - uid: 20856 components: - pos: -68.5,-44.5 parent: 2 type: Transform - - uid: 20850 + - uid: 20857 components: - pos: 58.5,-30.5 parent: 2 type: Transform - - uid: 20851 + - uid: 20858 components: - pos: 53.5,-28.5 parent: 2 type: Transform - - uid: 20852 + - uid: 20859 components: - pos: 46.5,-63.5 parent: 2 type: Transform - - uid: 20853 + - uid: 20860 components: - pos: 44.5,-8.5 parent: 2 type: Transform - proto: MaintenanceWeaponSpawner entities: - - uid: 20854 + - uid: 20861 components: - rot: 3.141592653589793 rad pos: 55.5,60.5 parent: 2 type: Transform - - uid: 20855 + - uid: 20862 components: - pos: -49.5,-74.5 parent: 2 type: Transform - - uid: 20856 + - uid: 20863 components: - pos: -52.5,-86.5 parent: 2 type: Transform - - uid: 20857 + - uid: 20864 components: - pos: -52.5,-88.5 parent: 2 type: Transform - - uid: 20858 + - uid: 20865 components: - pos: 35.5,-12.5 parent: 2 type: Transform - - uid: 20859 + - uid: 20866 components: - pos: -29.5,-28.5 parent: 2 type: Transform - - uid: 20860 + - uid: 20867 components: - pos: -12.5,17.5 parent: 2 type: Transform - - uid: 20861 + - uid: 20868 components: - pos: 18.5,-27.5 parent: 2 type: Transform - - uid: 20862 + - uid: 20869 components: - pos: 51.5,45.5 parent: 2 type: Transform - - uid: 20863 + - uid: 20870 components: - pos: 43.5,37.5 parent: 2 type: Transform - - uid: 20864 + - uid: 20871 components: - pos: -6.5,-88.5 parent: 2 type: Transform - - uid: 20865 + - uid: 20872 components: - rot: 3.141592653589793 rad pos: 49.5,-66.5 parent: 2 type: Transform - - uid: 20866 + - uid: 20873 components: - rot: 3.141592653589793 rad pos: 66.5,-61.5 parent: 2 type: Transform - - uid: 20867 + - uid: 20874 components: - pos: -48.5,16.5 parent: 2 type: Transform - - uid: 20868 + - uid: 20875 components: - pos: -28.5,-5.5 parent: 2 type: Transform - - uid: 20869 + - uid: 20876 components: - pos: 42.5,-7.5 parent: 2 type: Transform - proto: Matchbox entities: - - uid: 20870 + - uid: 20877 components: - pos: 61.092392,-1.3427626 parent: 2 type: Transform - - uid: 20871 + - uid: 20878 components: - pos: -38.035473,16.606607 parent: 2 type: Transform - proto: MaterialCloth entities: - - uid: 20872 + - uid: 20879 components: - pos: 27.39636,-34.472717 parent: 2 type: Transform - - uid: 20873 + - uid: 20880 components: - pos: 27.36511,-34.347717 parent: 2 type: Transform - proto: MaterialDiamond1 entities: - - uid: 20874 + - uid: 20881 components: - pos: 59.45189,-51.928257 parent: 2 type: Transform - proto: MaterialDurathread entities: - - uid: 20875 + - uid: 20882 components: - pos: 27.74011,-34.597717 parent: 2 type: Transform - - uid: 20876 + - uid: 20883 components: - pos: 27.74011,-34.597717 parent: 2 type: Transform - proto: MaterialReclaimer entities: - - uid: 20877 + - uid: 20884 components: - pos: -39.5,18.5 parent: 2 type: Transform - proto: MaterialWoodPlank entities: - - uid: 20879 + - uid: 20886 components: - rot: 3.141592653589793 rad pos: 38.425755,46.464603 parent: 2 type: Transform - - uid: 20880 + - uid: 20887 components: - pos: -32.447933,-98.42257 parent: 2 type: Transform - proto: MaterialWoodPlank1 entities: - - uid: 20881 + - uid: 20888 components: - pos: 50.46261,24.730665 parent: 2 type: Transform - - uid: 20882 + - uid: 20889 components: - pos: 17.500986,29.51836 parent: 2 type: Transform - proto: MedicalBed entities: - - uid: 20883 + - uid: 20890 components: - pos: 44.5,5.5 parent: 2 type: Transform - - uid: 20884 + - uid: 20891 components: - pos: -9.5,-57.5 parent: 2 type: Transform - - uid: 20885 + - uid: 20892 components: - pos: -12.5,-57.5 parent: 2 type: Transform - - uid: 20886 + - uid: 20893 components: - pos: -3.5,-57.5 parent: 2 type: Transform - - uid: 20887 + - uid: 20894 components: - pos: -0.5,-57.5 parent: 2 type: Transform - - uid: 20888 + - uid: 20895 components: - pos: -17.5,-54.5 parent: 2 type: Transform - - uid: 20889 + - uid: 20896 components: - pos: 44.5,4.5 parent: 2 type: Transform - - uid: 20890 + - uid: 20897 components: - pos: -6.5,-57.5 parent: 2 type: Transform - - uid: 20891 + - uid: 20898 components: - pos: 6.5,-56.5 parent: 2 type: Transform - proto: MedicalTechFab entities: - - uid: 20892 + - uid: 20899 components: - pos: -16.5,-48.5 parent: 2 type: Transform - proto: MedkitBruteFilled entities: - - uid: 20893 + - uid: 20900 components: - pos: 45.394405,8.60885 parent: 2 type: Transform - - uid: 20894 + - uid: 20901 components: - pos: 19.413246,-20.453436 parent: 2 type: Transform - - uid: 20895 + - uid: 20902 components: - pos: 9.446222,-62.560196 parent: 2 type: Transform - - uid: 20896 + - uid: 20903 components: - pos: 29.573622,4.6594224 parent: 2 type: Transform - - uid: 20897 + - uid: 20904 components: - pos: 9.774347,-62.35707 parent: 2 type: Transform - - uid: 20898 + - uid: 20905 components: - pos: 55.59084,42.504738 parent: 2 type: Transform - proto: MedkitBurnFilled entities: - - uid: 20899 + - uid: 20906 components: - pos: 9.368097,-58.216446 parent: 2 type: Transform - - uid: 20900 + - uid: 20907 components: - pos: 9.633722,-58.372696 parent: 2 type: Transform - - uid: 20901 + - uid: 20908 components: - pos: 18.55885,-21.682238 parent: 2 type: Transform - proto: MedkitCombatFilled entities: - - uid: 20902 + - uid: 20909 components: - pos: -20.500343,-54.36298 parent: 2 type: Transform - proto: MedkitFilled entities: - - uid: 20903 + - uid: 20910 components: - pos: 18.506996,-21.230959 parent: 2 type: Transform - - uid: 20904 + - uid: 20911 components: - pos: 24.82079,23.494219 parent: 2 type: Transform - - uid: 20905 + - uid: 20912 components: - pos: 52.41982,-43.535877 parent: 2 type: Transform - proto: MedkitOxygenFilled entities: - - uid: 20906 + - uid: 20913 components: - pos: 10.352472,-61.403946 parent: 2 type: Transform - - uid: 20907 + - uid: 20914 components: - pos: 10.649347,-61.57582 parent: 2 type: Transform - - uid: 20908 + - uid: 20915 components: - pos: 18.533411,-22.207966 parent: 2 type: Transform - - uid: 20909 + - uid: 20916 components: - pos: -23.768847,-36.553474 parent: 2 type: Transform - - uid: 20910 + - uid: 20917 components: - pos: 59.446957,-3.3832169 parent: 2 type: Transform - - uid: 20911 + - uid: 20918 components: - pos: 65.55114,-6.3846307 parent: 2 type: Transform - - uid: 20912 + - uid: 20919 components: - pos: -34.54821,20.589455 parent: 2 type: Transform - - uid: 20913 + - uid: 20920 components: - pos: 64.63776,28.514448 parent: 2 type: Transform - - uid: 20914 + - uid: 20921 components: - pos: -70.47538,-28.482313 parent: 2 type: Transform - proto: MedkitRadiationFilled entities: - - uid: 20915 + - uid: 20922 components: - pos: 10.352472,-60.278946 parent: 2 type: Transform - - uid: 20916 + - uid: 20923 components: - pos: 10.649347,-60.466446 parent: 2 type: Transform - - uid: 20917 + - uid: 20924 components: - pos: -62.43085,-27.543978 parent: 2 type: Transform - proto: MedkitToxinFilled entities: - - uid: 20918 + - uid: 20925 components: - pos: 10.350285,-59.237457 parent: 2 type: Transform - - uid: 20919 + - uid: 20926 components: - pos: 10.649347,-59.372696 parent: 2 type: Transform - proto: MicroManipulatorStockPart entities: - - uid: 20920 + - uid: 20927 components: - pos: 57.42882,-47.52101 parent: 2 type: Transform - proto: MicrowaveMachineCircuitboard entities: - - uid: 20921 + - uid: 20928 components: - pos: 41.53089,-54.195484 parent: 2 type: Transform - proto: ModularGrenade entities: - - uid: 20922 + - uid: 20929 components: - pos: 65.475975,-29.06539 parent: 2 type: Transform + - nextSound: 1117.3113416 + type: EmitSoundOnCollide - proto: MonkeyCube entities: - - uid: 20923 + - uid: 20930 components: - rot: -1.5707963267948966 rad pos: -10.530531,-95.43873 @@ -160540,91 +145816,99 @@ entities: type: Transform - proto: MonkeyCubeBox entities: - - uid: 20924 + - uid: 20931 components: - pos: -24.421421,-84.24069 parent: 2 type: Transform - proto: MonkeyCubeWrapped entities: - - uid: 20925 + - uid: 20932 components: - pos: 2.4904222,-5.293855 parent: 2 type: Transform - - uid: 20926 + - uid: 20933 components: - pos: 73.2274,-38.215343 parent: 2 type: Transform - - uid: 20927 + - nextSound: 540.1257387 + type: EmitSoundOnCollide + - uid: 20934 components: - pos: 73.19615,-38.35597 parent: 2 type: Transform - - uid: 20928 + - nextSound: 541.3871677 + type: EmitSoundOnCollide + - uid: 20935 components: - pos: -6.631571,49.76703 parent: 2 type: Transform - - uid: 20929 + - nextSound: 564.3033104 + type: EmitSoundOnCollide + - uid: 20936 components: - pos: -6.787821,49.64203 parent: 2 type: Transform + - nextSound: 564.8566809 + type: EmitSoundOnCollide - proto: MopBucket entities: - - uid: 20930 + - uid: 20937 components: - pos: -9.522026,-69.41262 parent: 2 type: Transform - - uid: 20931 + - uid: 20938 components: - pos: -7.441774,-23.373123 parent: 2 type: Transform - - uid: 20932 + - uid: 20939 components: - pos: 52.057404,15.557394 parent: 2 type: Transform - - uid: 20933 + - uid: 20940 components: - pos: 15.4907,31.562498 parent: 2 type: Transform - - uid: 20934 + - uid: 20941 components: - pos: -8.510638,-21.457159 parent: 2 type: Transform - proto: MopItem entities: - - uid: 20935 + - uid: 20942 components: - rot: -1.5707963267948966 rad pos: -9.459526,-68.63137 parent: 2 type: Transform - - uid: 20936 + - uid: 20943 components: - pos: -13.596031,-22.66943 parent: 2 type: Transform - - uid: 20937 + - uid: 20944 components: - pos: -13.473024,-22.732498 parent: 2 type: Transform - - uid: 20938 + - uid: 20945 components: - pos: 51.744904,15.651144 parent: 2 type: Transform - proto: Morgue entities: - - uid: 20939 + - uid: 20946 components: - rot: -1.5707963267948966 rad pos: -11.5,-65.5 @@ -160648,7 +145932,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20940 + - uid: 20947 components: - rot: -1.5707963267948966 rad pos: -11.5,-64.5 @@ -160672,7 +145956,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20941 + - uid: 20948 components: - rot: 1.5707963267948966 rad pos: -13.5,-64.5 @@ -160696,7 +145980,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20942 + - uid: 20949 components: - rot: 1.5707963267948966 rad pos: -13.5,-65.5 @@ -160720,7 +146004,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20943 + - uid: 20950 components: - rot: 1.5707963267948966 rad pos: -13.5,-66.5 @@ -160744,7 +146028,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20944 + - uid: 20951 components: - rot: -1.5707963267948966 rad pos: -14.5,-64.5 @@ -160768,7 +146052,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20945 + - uid: 20952 components: - rot: -1.5707963267948966 rad pos: -14.5,-65.5 @@ -160792,7 +146076,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20946 + - uid: 20953 components: - rot: -1.5707963267948966 rad pos: -14.5,-66.5 @@ -160816,7 +146100,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20947 + - uid: 20954 components: - rot: -1.5707963267948966 rad pos: -11.5,-66.5 @@ -160840,7 +146124,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20948 + - uid: 20955 components: - rot: -1.5707963267948966 rad pos: -11.5,-63.5 @@ -160864,7 +146148,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20949 + - uid: 20956 components: - rot: 1.5707963267948966 rad pos: -16.5,-63.5 @@ -160888,7 +146172,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20950 + - uid: 20957 components: - rot: 1.5707963267948966 rad pos: -16.5,-64.5 @@ -160912,7 +146196,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20951 + - uid: 20958 components: - rot: 1.5707963267948966 rad pos: -16.5,-65.5 @@ -160936,7 +146220,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20952 + - uid: 20959 components: - rot: 1.5707963267948966 rad pos: -16.5,-66.5 @@ -160960,7 +146244,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20953 + - uid: 20960 components: - rot: -1.5707963267948966 rad pos: -28.5,10.5 @@ -160984,7 +146268,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20954 + - uid: 20961 components: - rot: -1.5707963267948966 rad pos: -28.5,9.5 @@ -161010,250 +146294,252 @@ entities: type: EntityStorage - proto: MouseTimedSpawner entities: - - uid: 20955 + - uid: 20962 components: - pos: -56.5,-48.5 parent: 2 type: Transform - - uid: 20956 + - uid: 20963 components: - pos: 43.5,-10.5 parent: 2 type: Transform - - uid: 20957 + - uid: 20964 components: - pos: 62.5,13.5 parent: 2 type: Transform - - uid: 20958 + - uid: 20965 components: - pos: 5.5,-70.5 parent: 2 type: Transform - proto: Multitool entities: - - uid: 20959 + - uid: 20966 components: - pos: 53.354275,-43.443607 parent: 2 type: Transform - - uid: 20960 + - uid: 20967 components: - pos: -24.521326,-24.45921 parent: 2 type: Transform - - uid: 20961 + - uid: 20968 components: - pos: -23.347115,-36.422188 parent: 2 type: Transform - - uid: 20962 + - uid: 20969 components: - rot: -1.5707963267948966 rad pos: -36.559425,-33.012554 parent: 2 type: Transform - - uid: 20963 + - uid: 20970 components: - pos: -56.47646,-35.42343 parent: 2 type: Transform - - uid: 20964 + - uid: 20971 components: - pos: -40.522213,25.653383 parent: 2 type: Transform - - uid: 20965 + - uid: 20972 components: - rot: 3.141592653589793 rad pos: -32.80296,29.595348 parent: 2 type: Transform - - uid: 20966 + - uid: 20973 components: - pos: -27.507483,24.649845 parent: 2 type: Transform - - uid: 20967 + - uid: 20974 components: - pos: 73.29074,-44.41717 parent: 2 type: Transform - - uid: 20968 + - uid: 20975 components: - pos: 58.474205,51.52541 parent: 2 type: Transform - - uid: 20969 + - uid: 20976 components: - pos: -57.653404,-25.398897 parent: 2 type: Transform - devices: - 'UID: 31532': 12338 + 'UID: 31532': 12339 type: NetworkConfigurator - - uid: 20970 + - uid: 20977 components: - pos: -9.540877,-65.36475 parent: 2 type: Transform - - uid: 20971 + - uid: 20978 components: - pos: 72.48785,36.5135 parent: 2 type: Transform - - uid: 20972 + - uid: 20979 components: - pos: -29.3818,-98.32888 parent: 2 type: Transform - devices: - 'UID: 39451': 19278 - 'UID: 39450': 19516 + 'UID: 39451': 19279 + 'UID: 39450': 19517 'UID: 39636': 875 type: NetworkConfigurator - - uid: 20973 + - uid: 20980 components: - pos: 65.54721,-51.514313 parent: 2 type: Transform - - uid: 20974 + - uid: 20981 components: - pos: -28.40416,-19.522995 parent: 2 type: Transform - - uid: 20975 + - uid: 20982 components: - pos: -26.512882,-61.421627 parent: 2 type: Transform - proto: NitrogenCanister entities: - - uid: 20976 + - uid: 20983 components: - pos: -8.5,-72.5 parent: 2 type: Transform - - uid: 20977 + - uid: 20984 components: - pos: 45.5,-51.5 parent: 2 type: Transform - - uid: 20978 + - uid: 20985 components: - pos: -50.5,-54.5 parent: 2 type: Transform - - uid: 20979 + - uid: 20986 components: - pos: -39.5,-38.5 parent: 2 type: Transform - - uid: 20980 + - uid: 20987 components: - pos: -51.5,-70.5 parent: 2 type: Transform - - uid: 20981 + - uid: 20988 components: - pos: -26.5,37.5 parent: 2 type: Transform - - uid: 20982 + - uid: 20989 components: - pos: -28.5,41.5 parent: 2 type: Transform - - uid: 20983 + - uid: 20990 components: - pos: 72.5,-35.5 parent: 2 type: Transform - - uid: 20984 + - uid: 20991 components: - pos: 46.5,-51.5 parent: 2 type: Transform - - uid: 20985 + - uid: 20992 components: - pos: -22.5,-62.5 parent: 2 type: Transform - - uid: 20986 + - uid: 20993 components: - pos: 3.5,-73.5 parent: 2 type: Transform - proto: NitrogenTankFilled entities: - - uid: 20987 + - uid: 20994 components: - pos: -22.469156,-57.61924 parent: 2 type: Transform - - uid: 20988 + - uid: 20995 components: - pos: -54.344475,0.46202505 parent: 2 type: Transform - - uid: 20989 + - uid: 20996 components: - pos: -49.491314,1.5773844 parent: 2 type: Transform - - uid: 20990 + - uid: 20997 components: - pos: -70.575325,-25.445038 parent: 2 type: Transform - - uid: 20991 + - uid: 20998 components: - pos: -9.511479,16.495153 parent: 2 type: Transform - - uid: 20992 + - uid: 20999 components: - pos: 64.52838,29.170698 parent: 2 type: Transform - proto: NitrousOxideCanister entities: - - uid: 20993 + - uid: 21000 components: - pos: -38.5,-38.5 parent: 2 type: Transform - - uid: 20994 + - uid: 21001 components: - pos: 54.5,-55.5 parent: 2 type: Transform - proto: NitrousOxideTank entities: - - uid: 20995 + - uid: 21002 components: - pos: -3.498691,-65.92361 parent: 2 type: Transform - proto: NitrousOxideTankFilled entities: - - uid: 10242 + - uid: 21363 components: - - pos: -14.368902,-35.56089 + - pos: -15.868101,-35.49305 parent: 2 type: Transform - - nextAttack: 1021.4034268 + - nextAttack: 509.3323301 type: MeleeWeapon + - nextSound: 509.5323301 + type: EmitSoundOnCollide - proto: NodeScanner entities: - - uid: 20996 + - uid: 21003 components: - pos: 73.66279,-38.523205 parent: 2 type: Transform - proto: NuclearBomb entities: - - uid: 20997 + - uid: 21004 components: - rot: -1.5707963267948966 rad pos: 46.5,-22.5 @@ -161261,427 +146547,388 @@ entities: type: Transform - proto: NuclearBombKeg entities: - - uid: 20998 + - uid: 21005 components: - pos: 46.5,-29.5 parent: 2 type: Transform - proto: Ointment entities: - - uid: 20999 + - uid: 21006 components: - rot: -1.5707963267948966 rad pos: 47.628784,4.507307 parent: 2 type: Transform - - uid: 21000 + - uid: 21007 components: - pos: -12.245195,-56.394966 parent: 2 type: Transform - - uid: 21001 + - uid: 21008 components: - pos: -9.307695,-56.332466 parent: 2 type: Transform - - uid: 21002 + - uid: 21009 components: - pos: -6.2759557,-56.37934 parent: 2 type: Transform - - uid: 21003 + - uid: 21010 components: - pos: -3.256374,-56.363716 parent: 2 type: Transform - - uid: 21004 + - uid: 21011 components: - pos: -0.2810341,-56.37934 parent: 2 type: Transform - proto: OnionRedSeeds entities: - - uid: 21005 + - uid: 21012 components: - pos: -32.362232,6.029836 parent: 2 type: Transform + - nextSound: 1315.2615865 + type: EmitSoundOnCollide - proto: OnionSeeds entities: - - uid: 21006 + - uid: 21013 components: - pos: -32.52041,6.4317174 parent: 2 type: Transform - proto: OperatingTable entities: - - uid: 21007 + - uid: 20885 components: - - pos: -1.5,-65.5 + - rot: 3.141592653589793 rad + pos: -15.5,-33.5 parent: 2 type: Transform - - uid: 21008 + - uid: 21014 components: - - pos: -7.5,-97.5 + - pos: -1.5,-65.5 parent: 2 type: Transform - - uid: 21009 + - uid: 21015 components: - - pos: 71.5,-48.5 + - pos: -7.5,-97.5 parent: 2 type: Transform - - uid: 22978 + - uid: 21016 components: - - pos: -15.5,-35.5 + - pos: 71.5,-48.5 parent: 2 type: Transform - proto: OreBag entities: - - uid: 21010 + - uid: 21017 components: - pos: -41.057323,35.546143 parent: 2 type: Transform - proto: OreProcessor entities: - - uid: 21011 + - uid: 21018 components: - pos: -41.5,26.5 parent: 2 type: Transform - proto: OxygenCanister entities: - - uid: 21012 + - uid: 21019 components: - pos: -9.5,-72.5 parent: 2 type: Transform - - uid: 21013 + - uid: 21020 components: - pos: 59.5,29.5 parent: 2 type: Transform - - uid: 21014 + - uid: 21021 components: - pos: 45.5,-52.5 parent: 2 type: Transform - - uid: 21015 + - uid: 21022 components: - pos: -25.5,-31.5 parent: 2 type: Transform - - uid: 21016 + - uid: 21023 components: - pos: -50.5,-52.5 parent: 2 type: Transform - - uid: 21017 + - uid: 21024 components: - pos: -37.5,-38.5 parent: 2 type: Transform - - uid: 21018 + - uid: 21025 components: - pos: -25.5,-55.5 parent: 2 type: Transform - - uid: 21019 + - uid: 21026 components: - pos: -34.5,-30.5 parent: 2 type: Transform - - uid: 21020 + - uid: 21027 components: - pos: -48.5,28.5 parent: 2 type: Transform - - uid: 21021 + - uid: 21028 components: - pos: -31.5,17.5 parent: 2 type: Transform - - uid: 21022 + - uid: 21029 components: - pos: -29.5,41.5 parent: 2 type: Transform - - uid: 21023 + - uid: 21030 components: - pos: 73.5,-35.5 parent: 2 type: Transform - - uid: 21024 + - uid: 21031 components: - pos: 46.5,-52.5 parent: 2 type: Transform - - uid: 21025 + - uid: 21032 components: - pos: -25.5,-62.5 parent: 2 type: Transform - - uid: 21026 + - uid: 21033 components: - pos: 4.5,-73.5 parent: 2 type: Transform - proto: OxygenTankFilled entities: - - uid: 21027 + - uid: 21034 components: - pos: -54.60223,0.49364984 parent: 2 type: Transform - - uid: 21028 + - uid: 21035 components: - pos: -22.609781,-57.353615 parent: 2 type: Transform - proto: PaintingAmogusTriptych entities: - - uid: 21029 + - uid: 21036 components: - pos: -16.5,-36.5 parent: 2 type: Transform - - uid: 21030 + - uid: 21037 components: - pos: 45.5,-12.5 parent: 2 type: Transform - proto: PaintingMonkey entities: - - uid: 21031 + - uid: 21038 components: - pos: 13.5,-9.5 parent: 2 type: Transform - proto: PaintingMoony entities: - - uid: 21032 + - uid: 21039 components: - pos: -15.5,-36.5 parent: 2 type: Transform - proto: PaintingNightHawks entities: - - uid: 21033 + - uid: 21040 components: - pos: -9.5,-34.5 parent: 2 type: Transform - proto: PaintingSkeletonBoof entities: - - uid: 21034 + - uid: 21041 components: - pos: 9.5,-3.5 parent: 2 type: Transform - proto: PaintingSkeletonCigarette entities: - - uid: 21035 + - uid: 21042 components: - pos: -14.5,-36.5 parent: 2 type: Transform - proto: PaintingTheGreatWave entities: - - uid: 21036 + - uid: 21043 components: - pos: 30.5,-26.5 parent: 2 type: Transform - proto: PaintingTheKiss entities: - - uid: 21037 + - uid: 21044 components: - pos: 27.5,-33.5 parent: 2 type: Transform - proto: PaintingTheScream entities: - - uid: 21038 + - uid: 21045 components: - pos: -7.5,-35.5 parent: 2 type: Transform - proto: PaintingTheSonOfMan entities: - - uid: 21039 + - uid: 21046 components: - pos: -25.5,16.5 parent: 2 type: Transform - proto: Paper entities: - - uid: 21040 + - uid: 21047 components: - rot: -1.5707963267948966 rad pos: 29.503365,-39.44397 parent: 2 type: Transform - - uid: 21041 + - uid: 21048 components: - rot: -1.5707963267948966 rad pos: 29.503365,-39.44397 parent: 2 type: Transform - - uid: 21042 + - uid: 21049 components: - rot: -1.5707963267948966 rad pos: 29.503365,-39.428345 parent: 2 type: Transform - - uid: 21043 + - uid: 21050 components: - rot: -1.5707963267948966 rad pos: 29.503365,-39.428345 parent: 2 type: Transform - - uid: 21044 + - uid: 21051 components: - rot: -1.5707963267948966 rad pos: 29.534615,-39.428345 parent: 2 type: Transform - - uid: 21045 + - uid: 21052 components: - rot: -1.5707963267948966 rad pos: 29.51899,-39.44397 parent: 2 type: Transform - - uid: 21046 + - uid: 21053 components: - rot: -1.5707963267948966 rad pos: 29.534615,-39.428345 parent: 2 type: Transform - - uid: 21047 + - uid: 21054 components: - rot: -1.5707963267948966 rad pos: 29.503365,-39.44397 parent: 2 type: Transform - - uid: 21048 + - uid: 21055 components: - rot: -1.5707963267948966 rad pos: 29.503365,-39.44397 parent: 2 type: Transform - - uid: 21049 + - uid: 21056 components: - rot: -1.5707963267948966 rad pos: 29.51899,-39.44397 parent: 2 type: Transform - - uid: 21050 + - uid: 21057 components: - rot: -1.5707963267948966 rad pos: 29.534615,-39.428345 parent: 2 type: Transform - - uid: 21051 + - uid: 21058 components: - pos: 20.483978,-12.296361 parent: 2 type: Transform - - uid: 21052 + - uid: 21059 components: - pos: 20.661783,-12.471693 parent: 2 type: Transform - - uid: 21053 + - uid: 21060 components: - pos: 24.486351,19.53259 parent: 2 type: Transform - - uid: 21054 + - uid: 21061 components: - rot: -1.5707963267948966 rad pos: 29.503365,-39.44397 parent: 2 type: Transform - - uid: 21055 + - uid: 21062 components: - pos: 6.351438,20.675463 parent: 2 type: Transform - - uid: 21056 + - uid: 21063 components: - rot: -1.5707963267948966 rad pos: 29.503365,-39.428345 parent: 2 type: Transform - - uid: 21057 + - uid: 21064 components: - rot: -1.5707963267948966 rad pos: -12.583234,-18.98207 parent: 2 type: Transform - - uid: 21058 + - uid: 21065 components: - pos: 4.462709,-11.197436 parent: 2 type: Transform - - uid: 21059 + - uid: 21066 components: - pos: 4.462709,-11.197436 parent: 2 type: Transform - - uid: 21060 + - uid: 21067 components: - pos: 4.462709,-11.197436 parent: 2 type: Transform - - uid: 21061 - components: - - rot: -1.5707963267948966 rad - pos: 29.503365,-39.44397 - parent: 2 - type: Transform - - uid: 21062 - components: - - rot: 1.5707963267948966 rad - pos: -28.478912,45.366596 - parent: 2 - type: Transform - - uid: 21063 - components: - - rot: 1.5707963267948966 rad - pos: -28.478912,45.366596 - parent: 2 - type: Transform - - uid: 21064 - components: - - rot: 1.5707963267948966 rad - pos: -28.478912,45.366596 - parent: 2 - type: Transform - - uid: 21065 - components: - - rot: -1.5707963267948966 rad - pos: 29.503365,-39.44397 - parent: 2 - type: Transform - - uid: 21066 - components: - - rot: -1.5707963267948966 rad - pos: 29.503365,-39.44397 - parent: 2 - type: Transform - - uid: 21067 + - uid: 21068 components: - rot: -1.5707963267948966 rad pos: 29.503365,-39.44397 parent: 2 type: Transform - - uid: 21068 - components: - - rot: 1.5707963267948966 rad - pos: -28.478912,45.366596 - parent: 2 - type: Transform - uid: 21069 components: - rot: 1.5707963267948966 rad @@ -161701,554 +146948,596 @@ entities: parent: 2 type: Transform - uid: 21072 + components: + - rot: -1.5707963267948966 rad + pos: 29.503365,-39.44397 + parent: 2 + type: Transform + - uid: 21073 + components: + - rot: -1.5707963267948966 rad + pos: 29.503365,-39.44397 + parent: 2 + type: Transform + - uid: 21074 + components: + - rot: -1.5707963267948966 rad + pos: 29.503365,-39.44397 + parent: 2 + type: Transform + - uid: 21075 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21073 + - uid: 21076 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21074 + - uid: 21077 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21075 + - uid: 21078 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21076 + - uid: 21079 + components: + - rot: 1.5707963267948966 rad + pos: -28.478912,45.366596 + parent: 2 + type: Transform + - uid: 21080 + components: + - rot: 1.5707963267948966 rad + pos: -28.478912,45.366596 + parent: 2 + type: Transform + - uid: 21081 + components: + - rot: 1.5707963267948966 rad + pos: -28.478912,45.366596 + parent: 2 + type: Transform + - uid: 21082 + components: + - rot: 1.5707963267948966 rad + pos: -28.478912,45.366596 + parent: 2 + type: Transform + - uid: 21083 components: - rot: -1.5707963267948966 rad pos: 29.534615,-39.428345 parent: 2 type: Transform - - uid: 21077 + - uid: 21084 components: - rot: -1.5707963267948966 rad pos: 29.503365,-39.44397 parent: 2 type: Transform - - uid: 21078 + - uid: 21085 components: - rot: 3.141592653589793 rad pos: -10.57877,-37.384254 parent: 2 type: Transform - - uid: 21079 + - uid: 21086 components: - rot: 3.141592653589793 rad pos: -10.57877,-37.384254 parent: 2 type: Transform - - uid: 21080 + - uid: 21087 components: - rot: 3.141592653589793 rad pos: -10.57877,-37.384254 parent: 2 type: Transform - - uid: 21081 + - uid: 21088 components: - rot: 3.141592653589793 rad pos: -10.57877,-37.384254 parent: 2 type: Transform - - uid: 21082 + - uid: 21089 components: - rot: 3.141592653589793 rad pos: -10.57877,-37.384254 parent: 2 type: Transform - - uid: 21083 + - uid: 21090 components: - pos: 24.486351,19.53259 parent: 2 type: Transform - - uid: 21084 + - uid: 21091 components: - pos: 24.486351,19.53259 parent: 2 type: Transform - - uid: 21085 + - uid: 21092 components: - pos: 24.486351,19.53259 parent: 2 type: Transform - - uid: 21086 + - uid: 21093 components: - pos: 24.486351,19.53259 parent: 2 type: Transform - - uid: 21087 + - uid: 21094 components: - pos: 24.486351,19.53259 parent: 2 type: Transform - - uid: 21088 + - uid: 21095 components: - pos: 24.486351,19.53259 parent: 2 type: Transform - - uid: 21089 + - uid: 21096 components: - rot: 3.141592653589793 rad pos: 16.421602,22.571196 parent: 2 type: Transform - - uid: 21090 + - uid: 21097 components: - rot: 3.141592653589793 rad pos: 16.515352,22.55557 parent: 2 type: Transform - - uid: 21091 + - uid: 21098 components: - rot: 3.141592653589793 rad pos: 16.499727,22.571196 parent: 2 type: Transform - - uid: 21092 + - uid: 21099 components: - rot: 3.141592653589793 rad pos: 16.499727,22.571196 parent: 2 type: Transform - - uid: 21093 + - uid: 21100 components: - rot: 3.141592653589793 rad pos: 16.499727,22.571196 parent: 2 type: Transform - - uid: 21094 + - uid: 21101 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21095 + - uid: 21102 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21096 + - uid: 21103 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21097 + - uid: 21104 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21098 + - uid: 21105 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21099 + - uid: 21106 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21100 + - uid: 21107 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21101 + - uid: 21108 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21102 + - uid: 21109 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21103 + - uid: 21110 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21104 + - uid: 21111 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21105 + - uid: 21112 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21106 + - uid: 21113 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21107 + - uid: 21114 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21108 + - uid: 21115 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21109 + - uid: 21116 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21110 + - uid: 21117 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21111 + - uid: 21118 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21112 + - uid: 21119 components: - rot: 1.5707963267948966 rad pos: 37.488216,-3.5194297 parent: 2 type: Transform - - uid: 21113 + - uid: 21120 components: - rot: 1.5707963267948966 rad pos: 37.488216,-3.5194297 parent: 2 type: Transform - - uid: 21114 + - uid: 21121 components: - rot: 1.5707963267948966 rad pos: 37.488216,-3.5194297 parent: 2 type: Transform - - uid: 21115 + - uid: 21122 components: - rot: 1.5707963267948966 rad pos: 37.488216,-3.5194297 parent: 2 type: Transform - - uid: 21116 + - uid: 21123 components: - rot: 1.5707963267948966 rad pos: 37.59759,-3.6288047 parent: 2 type: Transform - - uid: 21117 + - uid: 21124 components: - rot: 1.5707963267948966 rad pos: 37.59759,-3.6288047 parent: 2 type: Transform - - uid: 21118 + - uid: 21125 components: - rot: 1.5707963267948966 rad pos: 37.550716,-3.6131797 parent: 2 type: Transform - - uid: 21119 + - uid: 21126 components: - rot: 1.5707963267948966 rad pos: 37.550716,-3.6131797 parent: 2 type: Transform - - uid: 21120 + - uid: 21127 components: - rot: 1.5707963267948966 rad pos: 37.56634,-3.6131797 parent: 2 type: Transform - - uid: 21121 + - uid: 21128 components: - rot: 1.5707963267948966 rad pos: 37.59759,-3.6288047 parent: 2 type: Transform - - uid: 21122 + - uid: 21129 components: - rot: 1.5707963267948966 rad pos: 37.59759,-3.6288047 parent: 2 type: Transform - - uid: 21123 + - uid: 21130 components: - rot: 1.5707963267948966 rad pos: 37.59759,-3.6288047 parent: 2 type: Transform - - uid: 21124 + - uid: 21131 components: - pos: 38.47659,-2.4393778 parent: 2 type: Transform - - uid: 21125 + - uid: 21132 components: - pos: 38.47659,-2.4393778 parent: 2 type: Transform - - uid: 21126 + - uid: 21133 components: - pos: 38.47659,-2.4393778 parent: 2 type: Transform - - uid: 21127 + - uid: 21134 components: - pos: 38.47659,-2.4393778 parent: 2 type: Transform - - uid: 21128 + - uid: 21135 components: - pos: 38.47659,-2.4393778 parent: 2 type: Transform - - uid: 21129 + - uid: 21136 components: - pos: 38.47659,-2.4393778 parent: 2 type: Transform - - uid: 21130 + - uid: 21137 components: - pos: 38.47659,-2.4393778 parent: 2 type: Transform - - uid: 21131 + - uid: 21138 components: - rot: 1.5707963267948966 rad pos: 51.483532,-41.966263 parent: 2 type: Transform - - uid: 21132 + - uid: 21139 components: - rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 type: Transform - - uid: 21133 + - uid: 21140 components: - rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 type: Transform - - uid: 21134 + - uid: 21141 components: - rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 type: Transform - - uid: 21135 + - uid: 21142 components: - rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 type: Transform - - uid: 21136 + - uid: 21143 components: - rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 type: Transform - - uid: 21137 + - uid: 21144 components: - rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 type: Transform - - uid: 21138 + - uid: 21145 components: - rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 type: Transform - - uid: 21139 + - uid: 21146 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21140 + - uid: 21147 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21141 + - uid: 21148 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21142 + - uid: 21149 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21143 + - uid: 21150 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21144 + - uid: 21151 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21145 + - uid: 21152 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21146 + - uid: 21153 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21147 + - uid: 21154 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21148 + - uid: 21155 components: - rot: -1.5707963267948966 rad pos: -35.467735,-16.567335 parent: 2 type: Transform - - uid: 21149 + - uid: 21156 components: - rot: -1.5707963267948966 rad pos: -35.467735,-16.567335 parent: 2 type: Transform - - uid: 21150 + - uid: 21157 components: - rot: -1.5707963267948966 rad pos: -35.467735,-16.567335 parent: 2 type: Transform - - uid: 21151 + - uid: 21158 components: - rot: -1.5707963267948966 rad pos: -35.467735,-16.567335 parent: 2 type: Transform - - uid: 21152 + - uid: 21159 components: - pos: 1.3868889,23.62748 parent: 2 type: Transform - - uid: 21153 + - uid: 21160 components: - pos: 1.3868889,23.643105 parent: 2 type: Transform - - uid: 21154 + - uid: 21161 components: - rot: 3.141592653589793 rad pos: -26.49969,14.6061535 parent: 2 type: Transform - - uid: 21155 + - uid: 21162 components: - rot: 3.141592653589793 rad pos: -26.49969,14.6061535 parent: 2 type: Transform - - uid: 21156 + - uid: 21163 components: - rot: 3.141592653589793 rad pos: -26.49969,14.6061535 parent: 2 type: Transform - - uid: 21157 + - uid: 21164 components: - rot: 3.141592653589793 rad pos: -26.49969,14.6061535 parent: 2 type: Transform - - uid: 21158 + - uid: 21165 components: - rot: 3.141592653589793 rad pos: -26.49969,14.6061535 parent: 2 type: Transform - - uid: 21159 + - uid: 21166 components: - rot: 3.141592653589793 rad pos: -26.49969,14.6061535 parent: 2 type: Transform - - uid: 21160 + - uid: 21167 components: - pos: -31.206972,15.691786 parent: 2 type: Transform - - uid: 21161 + - uid: 21168 components: - pos: -31.206972,15.691786 parent: 2 type: Transform - - uid: 21162 + - uid: 21169 components: - pos: -31.363222,15.551161 parent: 2 type: Transform - - uid: 21163 + - uid: 21170 components: - pos: -31.363222,15.551161 parent: 2 type: Transform - - uid: 21164 + - uid: 21171 components: - pos: 10.165828,-6.3936543 parent: 2 type: Transform - - uid: 21165 + - uid: 21172 components: - pos: 10.165828,-6.3936543 parent: 2 type: Transform - - uid: 21166 + - uid: 21173 components: - pos: 10.165828,-6.3936543 parent: 2 type: Transform - - uid: 21167 + - uid: 21174 components: - pos: -11.489469,-13.479897 parent: 2 @@ -162258,7 +147547,7 @@ entities: Anything suspicious, please inform security. type: Paper - - uid: 21168 + - uid: 21175 components: - pos: -42.540462,17.447073 parent: 2 @@ -162268,58 +147557,58 @@ entities: type: Paper - proto: PaperBin10 entities: - - uid: 21169 + - uid: 21176 components: - rot: -1.5707963267948966 rad pos: 22.5,-21.5 parent: 2 type: Transform - - uid: 21170 + - uid: 21177 components: - pos: -22.48288,-97.58025 parent: 2 type: Transform - proto: PaperBin5 entities: - - uid: 21171 + - uid: 21178 components: - pos: -19.490406,-56.387535 parent: 2 type: Transform - - uid: 21172 + - uid: 21179 components: - pos: -34.544167,24.426237 parent: 2 type: Transform - - uid: 21173 + - uid: 21180 components: - pos: 27.161951,-37.425274 parent: 2 type: Transform - - uid: 21174 + - uid: 21181 components: - rot: 3.141592653589793 rad pos: -25.63709,-36.050198 parent: 2 type: Transform - - uid: 21175 + - uid: 21182 components: - pos: -27.800707,-9.411719 parent: 2 type: Transform - - uid: 21176 + - uid: 21183 components: - pos: 39.827625,-39.412262 parent: 2 type: Transform - - uid: 21177 + - uid: 21184 components: - pos: -17.5,-61.5 parent: 2 type: Transform - proto: PaperCaptainsThoughts entities: - - uid: 21178 + - uid: 21185 components: - rot: 1.5707963267948966 rad pos: 30.690884,-28.507551 @@ -162327,21 +147616,21 @@ entities: type: Transform - proto: PaperRolling entities: - - uid: 21179 + - uid: 21186 components: - pos: 51.67759,57.788548 parent: 2 type: Transform - proto: ParticleAcceleratorControlBoxUnfinished entities: - - uid: 21180 + - uid: 21187 components: - pos: -66.5,-30.5 parent: 2 type: Transform - proto: ParticleAcceleratorEmitterForeUnfinished entities: - - uid: 21181 + - uid: 21188 components: - rot: 3.141592653589793 rad pos: -66.5,-24.5 @@ -162349,7 +147638,7 @@ entities: type: Transform - proto: ParticleAcceleratorEmitterPortUnfinished entities: - - uid: 21183 + - uid: 21189 components: - rot: 3.141592653589793 rad pos: -67.5,-24.5 @@ -162357,7 +147646,7 @@ entities: type: Transform - proto: ParticleAcceleratorEmitterStarboardUnfinished entities: - - uid: 21182 + - uid: 21190 components: - rot: 3.141592653589793 rad pos: -65.5,-24.5 @@ -162365,7 +147654,7 @@ entities: type: Transform - proto: ParticleAcceleratorEndCapUnfinished entities: - - uid: 21184 + - uid: 21191 components: - rot: 3.141592653589793 rad pos: -66.5,-27.5 @@ -162373,7 +147662,7 @@ entities: type: Transform - proto: ParticleAcceleratorFuelChamberUnfinished entities: - - uid: 21185 + - uid: 21192 components: - rot: 3.141592653589793 rad pos: -65.5,-26.5 @@ -162381,7 +147670,7 @@ entities: type: Transform - proto: ParticleAcceleratorPowerBoxUnfinished entities: - - uid: 21186 + - uid: 21193 components: - rot: 3.141592653589793 rad pos: -66.5,-25.5 @@ -162389,40 +147678,42 @@ entities: type: Transform - proto: PartRodMetal entities: - - uid: 21187 + - uid: 21194 components: - pos: -40.15428,-18.425268 parent: 2 type: Transform - - uid: 21188 + - uid: 21195 components: - pos: -39.68701,25.670773 parent: 2 type: Transform - - uid: 21189 + - uid: 21196 components: - pos: -40.541622,33.38082 parent: 2 type: Transform - - uid: 21190 + - uid: 21197 components: - pos: -47.52058,40.270145 parent: 2 type: Transform + - nextSound: 1484.8118831 + type: EmitSoundOnCollide - proto: PartRodMetal1 entities: - - uid: 21191 + - uid: 21198 components: - pos: -34.56476,-25.498856 parent: 2 type: Transform - - uid: 21192 + - uid: 21199 components: - rot: -1.5707963267948966 rad pos: 3.9014397,49.543682 parent: 2 type: Transform - - uid: 21193 + - uid: 21200 components: - rot: 3.141592653589793 rad pos: 1.4099668,48.504288 @@ -162430,46 +147721,46 @@ entities: type: Transform - proto: Pen entities: - - uid: 21194 + - uid: 21201 components: - rot: 3.141592653589793 rad pos: 27.572367,-37.387577 parent: 2 type: Transform - - uid: 21195 + - uid: 21202 components: - rot: -1.5707963267948966 rad pos: -4.7918606,-48.471176 parent: 2 type: Transform - - uid: 21196 + - uid: 21203 components: - rot: 3.141592653589793 rad pos: -10.781895,-37.52488 parent: 2 type: Transform - - uid: 21197 + - uid: 21204 components: - rot: 3.141592653589793 rad pos: 16.218477,22.61807 parent: 2 type: Transform - - uid: 21198 + - uid: 21205 components: - pos: 16.327852,21.55557 parent: 2 type: Transform - - uid: 21199 + - uid: 21206 components: - pos: 43.66009,-3.5506787 parent: 2 type: Transform - - uid: 21200 + - uid: 21207 components: - pos: 37.66009,-3.7069297 parent: 2 type: Transform - - uid: 21201 + - uid: 21208 components: - rot: -1.5707963267948966 rad pos: -35.775307,-16.265104 @@ -162477,35 +147768,35 @@ entities: type: Transform - proto: PersonalAI entities: - - uid: 21202 + - uid: 21209 components: - flags: SessionSpecific type: MetaData - pos: 26.517971,-21.50738 parent: 2 type: Transform - - uid: 21203 + - uid: 21210 components: - flags: SessionSpecific type: MetaData - pos: 11.402888,8.363556 parent: 2 type: Transform - - uid: 21204 + - uid: 21211 components: - flags: SessionSpecific type: MetaData - pos: 12.500859,-4.4425125 parent: 2 type: Transform - - uid: 21205 + - uid: 21212 components: - flags: SessionSpecific type: MetaData - pos: 56.49031,-41.437515 parent: 2 type: Transform - - uid: 21206 + - uid: 21213 components: - flags: SessionSpecific type: MetaData @@ -162514,14 +147805,14 @@ entities: type: Transform - proto: PhoneInstrument entities: - - uid: 21207 + - uid: 21214 components: - pos: 60.321476,-1.3655583 parent: 2 type: Transform - proto: PianoInstrument entities: - - uid: 21208 + - uid: 21215 components: - rot: -1.5707963267948966 rad pos: 8.5,0.5 @@ -162529,221 +147820,223 @@ entities: type: Transform - proto: Pickaxe entities: - - uid: 21209 + - uid: 21216 components: - pos: -38.26402,27.606245 parent: 2 type: Transform - - uid: 21210 + - uid: 21217 components: - pos: -38.54527,27.71562 parent: 2 type: Transform - - uid: 21211 + - uid: 21218 components: - pos: -47.972298,26.558094 parent: 2 type: Transform - - uid: 21212 + - uid: 21219 components: - pos: 68.4767,50.00708 parent: 2 type: Transform - - uid: 21213 + - uid: 21220 components: - pos: 20.350138,46.202785 parent: 2 type: Transform - - uid: 21214 + - uid: 21221 components: - pos: -47.48462,39.252865 parent: 2 type: Transform - nextAttack: 1231.4016447 type: MeleeWeapon + - nextSound: 1231.6016447 + type: EmitSoundOnCollide - proto: PillCanister entities: - - uid: 21215 + - uid: 21222 components: - pos: -10.04752,-37.290504 parent: 2 type: Transform - proto: PillDexalin entities: - - uid: 21216 + - uid: 21223 components: - pos: -10.034681,-32.27196 parent: 2 type: Transform - - uid: 21217 + - uid: 21224 components: - pos: -10.034681,-32.27196 parent: 2 type: Transform - - uid: 21218 + - uid: 21225 components: - pos: -10.019056,-32.27196 parent: 2 type: Transform - - uid: 21219 + - uid: 21226 components: - pos: -10.019056,-32.27196 parent: 2 type: Transform - proto: PillDylovene entities: - - uid: 21220 + - uid: 21227 components: - pos: -9.519056,-32.52196 parent: 2 type: Transform - - uid: 21221 + - uid: 21228 components: - pos: -9.519056,-32.52196 parent: 2 type: Transform - - uid: 21222 + - uid: 21229 components: - pos: -9.503431,-32.52196 parent: 2 type: Transform - - uid: 21223 + - uid: 21230 components: - pos: -9.487806,-32.537586 parent: 2 type: Transform - proto: PillHyronalin entities: - - uid: 21224 + - uid: 21231 components: - pos: -9.534681,-32.256336 parent: 2 type: Transform - - uid: 21225 + - uid: 21232 components: - pos: -9.534681,-32.256336 parent: 2 type: Transform - - uid: 21226 + - uid: 21233 components: - pos: -9.534681,-32.256336 parent: 2 type: Transform - - uid: 21227 + - uid: 21234 components: - pos: -9.534681,-32.256336 parent: 2 type: Transform - proto: PillIron entities: - - uid: 21228 + - uid: 21235 components: - pos: -9.034681,-32.506336 parent: 2 type: Transform - - uid: 21229 + - uid: 21236 components: - pos: -9.034681,-32.506336 parent: 2 type: Transform - - uid: 21230 + - uid: 21237 components: - pos: -9.034681,-32.506336 parent: 2 type: Transform - - uid: 21231 + - uid: 21238 components: - pos: -9.034681,-32.506336 parent: 2 type: Transform - proto: PillKelotane entities: - - uid: 21232 + - uid: 21239 components: - pos: -9.034681,-32.24071 parent: 2 type: Transform - - uid: 21233 + - uid: 21240 components: - pos: -9.034681,-32.24071 parent: 2 type: Transform - - uid: 21234 + - uid: 21241 components: - pos: -9.034681,-32.24071 parent: 2 type: Transform - - uid: 21235 + - uid: 21242 components: - pos: -9.034681,-32.24071 parent: 2 type: Transform - proto: PillSpaceDrugs entities: - - uid: 21236 + - uid: 21243 components: - pos: -8.5,-32.5 parent: 2 type: Transform - - uid: 21237 + - uid: 21244 components: - pos: -8.5,-32.5 parent: 2 type: Transform - - uid: 21238 + - uid: 21245 components: - pos: -8.5,-32.5 parent: 2 type: Transform - - uid: 21239 + - uid: 21246 components: - pos: -8.5,-32.5 parent: 2 type: Transform - proto: PillTricordrazine entities: - - uid: 21240 + - uid: 21247 components: - pos: -8.519056,-32.256336 parent: 2 type: Transform - - uid: 21241 + - uid: 21248 components: - pos: -8.503431,-32.256336 parent: 2 type: Transform - - uid: 21242 + - uid: 21249 components: - pos: -8.519056,-32.256336 parent: 2 type: Transform - - uid: 21243 + - uid: 21250 components: - pos: -8.519056,-32.256336 parent: 2 type: Transform - proto: PinpointerNuclear entities: - - uid: 21244 + - uid: 21251 components: - pos: 47.542713,-21.502851 parent: 2 type: Transform - proto: PlasmaCanister entities: - - uid: 21245 + - uid: 21252 components: - pos: -40.5,-39.5 parent: 2 type: Transform - - uid: 21246 + - uid: 21253 components: - pos: -50.5,-46.5 parent: 2 type: Transform - proto: PlasmaOre1 entities: - - uid: 21247 + - uid: 21254 components: - rot: 3.141592653589793 rad pos: 13.8918705,48.240677 @@ -162751,47 +148044,47 @@ entities: type: Transform - proto: PlasticFlapsAirtightClear entities: - - uid: 21248 + - uid: 21255 components: - pos: -49.5,19.5 parent: 2 type: Transform - - uid: 21249 + - uid: 21256 components: - pos: -49.5,23.5 parent: 2 type: Transform - - uid: 21250 + - uid: 21257 components: - pos: -49.5,30.5 parent: 2 type: Transform - - uid: 21251 + - uid: 21258 components: - pos: -49.5,34.5 parent: 2 type: Transform - - uid: 21252 + - uid: 21259 components: - pos: -52.5,34.5 parent: 2 type: Transform - - uid: 21253 + - uid: 21260 components: - pos: -52.5,30.5 parent: 2 type: Transform - - uid: 21254 + - uid: 21261 components: - pos: -53.5,23.5 parent: 2 type: Transform - - uid: 21255 + - uid: 21262 components: - pos: -53.5,19.5 parent: 2 type: Transform - - uid: 21256 + - uid: 21263 components: - rot: -1.5707963267948966 rad pos: 18.5,-56.5 @@ -162799,12 +148092,12 @@ entities: type: Transform - proto: PlasticFlapsAirtightOpaque entities: - - uid: 21257 + - uid: 21264 components: - pos: -35.5,25.5 parent: 2 type: Transform - - uid: 21258 + - uid: 21265 components: - rot: -1.5707963267948966 rad pos: -37.5,-99.5 @@ -162812,29 +148105,29 @@ entities: type: Transform - proto: PlasticFlapsClear entities: - - uid: 21259 + - uid: 21266 components: - pos: -26.5,25.5 parent: 2 type: Transform - - uid: 21260 + - uid: 21267 components: - pos: -29.5,25.5 parent: 2 type: Transform - - uid: 21261 + - uid: 21268 components: - rot: -1.5707963267948966 rad pos: -47.5,13.5 parent: 2 type: Transform - - uid: 21262 + - uid: 21269 components: - rot: 1.5707963267948966 rad pos: -42.5,16.5 parent: 2 type: Transform - - uid: 21263 + - uid: 21270 components: - rot: -1.5707963267948966 rad pos: -11.5,-11.5 @@ -162842,29 +148135,29 @@ entities: type: Transform - proto: PlasticFlapsOpaque entities: - - uid: 21264 + - uid: 21271 components: - pos: -11.5,27.5 parent: 2 type: Transform - - uid: 21265 + - uid: 21272 components: - rot: -1.5707963267948966 rad pos: -9.5,25.5 parent: 2 type: Transform - - uid: 21266 + - uid: 21273 components: - pos: -7.5,22.5 parent: 2 type: Transform - - uid: 21267 + - uid: 21274 components: - rot: 3.141592653589793 rad pos: 44.5,37.5 parent: 2 type: Transform - - uid: 21268 + - uid: 21275 components: - rot: 1.5707963267948966 rad pos: 48.5,37.5 @@ -162872,539 +148165,543 @@ entities: type: Transform - proto: PlushieAtmosian entities: - - uid: 21269 + - uid: 21276 components: - pos: -22.54358,-34.49993 parent: 2 type: Transform - proto: PlushieBee entities: - - uid: 21270 + - uid: 21277 components: - pos: 10.893783,54.42024 parent: 2 type: Transform - - uid: 21271 + - uid: 21278 components: - pos: 8.284408,54.20149 parent: 2 type: Transform - - uid: 21272 + - uid: 21279 components: - pos: -7.8529105,54.918877 parent: 2 type: Transform - - uid: 21273 + - uid: 21280 components: - pos: -6.6029105,50.731377 parent: 2 type: Transform - proto: PlushieCarp entities: - - uid: 21274 + - uid: 21281 components: - pos: -38.3623,28.544445 parent: 2 type: Transform - proto: PlushieDiona entities: - - uid: 21275 + - uid: 21282 components: - pos: 17.550053,-79.57761 parent: 2 type: Transform - proto: PlushieHampter entities: - - uid: 30684 + - uid: 21283 components: - pos: 2.519814,7.511129 parent: 2 type: Transform - nextAttack: 48.3115082 type: MeleeWeapon + - nextSound: 48.5115082 + type: EmitSoundOnCollide - proto: PlushieLizard entities: - - uid: 21276 + - uid: 21284 components: - pos: -69.52961,-42.46661 parent: 2 type: Transform - - uid: 21277 + - uid: 21285 components: - pos: 61.496056,-69.34596 parent: 2 type: Transform - proto: PlushieNar entities: - - uid: 21278 + - uid: 21286 components: - pos: 44.413727,31.423994 parent: 2 type: Transform - proto: PlushieNuke entities: - - uid: 21279 + - uid: 21287 components: - pos: -14.485033,-78.68338 parent: 2 type: Transform - - uid: 21280 + - uid: 21288 components: - pos: 54.50363,58.48181 parent: 2 type: Transform - proto: PlushieRatvar entities: - - uid: 21281 + - uid: 21289 components: - pos: 22.555937,-28.535349 parent: 2 type: Transform - proto: PlushieSharkBlue entities: - - uid: 21282 + - uid: 21290 components: - pos: -69.39385,-44.387226 parent: 2 type: Transform - proto: PlushieSharkGrey entities: - - uid: 21283 + - uid: 21291 components: - pos: -56.49192,-87.62071 parent: 2 type: Transform - proto: PlushieSharkPink entities: - - uid: 21284 + - uid: 21292 components: - pos: -44.508965,16.421295 parent: 2 type: Transform - proto: PlushieSlime entities: - - uid: 21285 + - uid: 21293 components: - pos: 44.49185,33.486496 parent: 2 type: Transform - proto: PlushieSnake entities: - - uid: 21286 + - uid: 21294 components: - pos: 43.507477,33.486496 parent: 2 type: Transform - - uid: 21287 + - uid: 21295 components: - pos: -55.49481,-49.261024 parent: 2 type: Transform - proto: PlushieSpaceLizard entities: - - uid: 21288 + - uid: 21296 components: - pos: -44.46209,15.43692 parent: 2 type: Transform - - uid: 21289 + - uid: 21297 components: - pos: 42.55435,33.392746 parent: 2 type: Transform - - uid: 21290 + - uid: 21298 components: - pos: -68.482735,-42.46661 parent: 2 type: Transform - proto: PlushieXeno entities: - - uid: 21291 + - uid: 21299 components: - pos: -25.59123,-6.437059 parent: 2 type: Transform - nextAttack: 366.3786955 type: MeleeWeapon + - nextSound: 366.5786955 + type: EmitSoundOnCollide - proto: PortableFlasher entities: - - uid: 21292 + - uid: 21300 components: - pos: 32.5,31.5 parent: 2 type: Transform - proto: PortableScrubber entities: - - uid: 21293 + - uid: 21301 components: - pos: -9.5,-68.5 parent: 2 type: Transform - - uid: 21294 + - uid: 21302 components: - pos: -33.5,-43.5 parent: 2 type: Transform - - uid: 21295 + - uid: 21303 components: - pos: -33.5,-44.5 parent: 2 type: Transform - - uid: 21296 + - uid: 21304 components: - pos: -33.5,-45.5 parent: 2 type: Transform - proto: PosterBroken entities: - - uid: 21297 + - uid: 21305 components: - pos: 0.5,-70.5 parent: 2 type: Transform - proto: PosterContrabandAmbrosiaVulgaris entities: - - uid: 21298 + - uid: 21306 components: - pos: -10.5,-34.5 parent: 2 type: Transform - proto: PosterContrabandAtmosiaDeclarationIndependence entities: - - uid: 21299 + - uid: 21307 components: - pos: -36.5,-52.5 parent: 2 type: Transform - proto: PosterContrabandBeachStarYamamoto entities: - - uid: 21300 + - uid: 21308 components: - pos: -9.5,-31.5 parent: 2 type: Transform - proto: PosterContrabandBountyHunters entities: - - uid: 21301 + - uid: 21309 components: - pos: 14.5,-56.5 parent: 2 type: Transform - proto: PosterContrabandCC64KAd entities: - - uid: 21302 + - uid: 21310 components: - pos: 20.5,-3.5 parent: 2 type: Transform - proto: PosterContrabandClown entities: - - uid: 21303 + - uid: 21311 components: - rot: 1.5707963267948966 rad pos: -23.5,39.5 parent: 2 type: Transform - - uid: 21304 + - uid: 21312 components: - pos: 2.5,-8.5 parent: 2 type: Transform - - uid: 21305 + - uid: 21313 components: - pos: 3.5,-13.5 parent: 2 type: Transform - proto: PosterContrabandCommunistState entities: - - uid: 21306 + - uid: 21314 components: - pos: 0.5,-15.5 parent: 2 type: Transform - - uid: 21307 + - uid: 21315 components: - pos: 53.5,-64.5 parent: 2 type: Transform - proto: PosterContrabandDDayPromo entities: - - uid: 21308 + - uid: 21316 components: - pos: 14.5,33.5 parent: 2 type: Transform - proto: PosterContrabandDonutCorp entities: - - uid: 21309 + - uid: 21317 components: - pos: 49.5,34.5 parent: 2 type: Transform - proto: PosterContrabandEAT entities: - - uid: 21310 + - uid: 21318 components: - pos: 4.5,4.5 parent: 2 type: Transform - proto: PosterContrabandEnergySwords entities: - - uid: 21311 + - uid: 21319 components: - pos: -8.5,19.5 parent: 2 type: Transform - proto: PosterContrabandFreeSyndicateEncryptionKey entities: - - uid: 21312 + - uid: 21320 components: - pos: -53.5,-85.5 parent: 2 type: Transform - proto: PosterContrabandFreeTonto entities: - - uid: 21313 + - uid: 21321 components: - pos: -6.5,-14.5 parent: 2 type: Transform - proto: PosterContrabandFunPolice entities: - - uid: 21314 + - uid: 21322 components: - pos: 4.5,18.5 parent: 2 type: Transform - proto: PosterContrabandGreyTide entities: - - uid: 21315 + - uid: 21323 components: - pos: 55.5,-9.5 parent: 2 type: Transform - - uid: 21316 + - uid: 21324 components: - pos: 41.5,-57.5 parent: 2 type: Transform - - uid: 21317 + - uid: 21325 components: - pos: -19.5,64.5 parent: 2 type: Transform - proto: PosterContrabandHackingGuide entities: - - uid: 21318 + - uid: 21326 components: - pos: 15.5,40.5 parent: 2 type: Transform - proto: PosterContrabandHighEffectEngineering entities: - - uid: 21319 + - uid: 21327 components: - pos: -48.5,-7.5 parent: 2 type: Transform - proto: PosterContrabandKosmicheskayaStantsiya entities: - - uid: 21320 + - uid: 21328 components: - pos: -25.5,-63.5 parent: 2 type: Transform - proto: PosterContrabandLamarr entities: - - uid: 21321 + - uid: 21329 components: - pos: 10.5,35.5 parent: 2 type: Transform - proto: PosterContrabandLustyExomorph entities: - - uid: 21322 + - uid: 21330 components: - pos: -9.5,-73.5 parent: 2 type: Transform - - uid: 21323 + - uid: 21331 components: - pos: 45.5,50.5 parent: 2 type: Transform - proto: PosterContrabandMaskedMen entities: - - uid: 21324 + - uid: 21332 components: - pos: 47.5,51.5 parent: 2 type: Transform - proto: PosterContrabandMissingGloves entities: - - uid: 21325 + - uid: 21333 components: - pos: 20.5,19.5 parent: 2 type: Transform - - uid: 21326 + - uid: 21334 components: - pos: 41.5,-52.5 parent: 2 type: Transform - - uid: 21327 + - uid: 21335 components: - pos: -26.5,-18.5 parent: 2 type: Transform - proto: PosterContrabandNuclearDeviceInformational entities: - - uid: 21328 + - uid: 21336 components: - pos: 39.5,-24.5 parent: 2 type: Transform - proto: PosterContrabandPower entities: - - uid: 21329 + - uid: 21337 components: - pos: -61.5,-22.5 parent: 2 type: Transform - - uid: 21330 + - uid: 21338 components: - pos: -23.5,-7.5 parent: 2 type: Transform - proto: PosterContrabandPwrGame entities: - - uid: 21331 + - uid: 21339 components: - pos: -41.5,-40.5 parent: 2 type: Transform - proto: PosterContrabandRebelsUnite entities: - - uid: 21332 + - uid: 21340 components: - pos: -0.5,-72.5 parent: 2 type: Transform - - uid: 21333 + - uid: 21341 components: - pos: -42.5,-73.5 parent: 2 type: Transform - proto: PosterContrabandRedRum entities: - - uid: 21334 + - uid: 21342 components: - pos: 13.5,4.5 parent: 2 type: Transform - - uid: 21335 + - uid: 21343 components: - pos: 11.5,15.5 parent: 2 type: Transform - - uid: 21336 + - uid: 21344 components: - pos: 35.5,49.5 parent: 2 type: Transform - proto: PosterContrabandRevolt entities: - - uid: 21337 + - uid: 21345 components: - pos: -40.5,-73.5 parent: 2 type: Transform - - uid: 21338 + - uid: 21346 components: - pos: -7.5,-73.5 parent: 2 type: Transform - - uid: 21339 + - uid: 21347 components: - pos: 57.5,55.5 parent: 2 type: Transform - - uid: 21340 + - uid: 21348 components: - pos: 51.5,55.5 parent: 2 type: Transform - - uid: 21341 + - uid: 21349 components: - pos: 56.5,60.5 parent: 2 type: Transform - - uid: 21342 + - uid: 21350 components: - pos: 52.5,60.5 parent: 2 type: Transform - - uid: 21343 + - uid: 21351 components: - pos: 51.5,59.5 parent: 2 type: Transform - - uid: 21344 + - uid: 21352 components: - pos: 57.5,59.5 parent: 2 type: Transform - proto: PosterContrabandRevolver entities: - - uid: 21345 + - uid: 21353 components: - pos: -30.5,-42.5 parent: 2 type: Transform - - uid: 21346 + - uid: 21354 components: - pos: 42.5,49.5 parent: 2 type: Transform - proto: PosterContrabandRIPBadger entities: - - uid: 21347 + - uid: 21355 components: - pos: -41.5,-27.5 parent: 2 type: Transform - proto: PosterContrabandRise entities: - - uid: 21348 + - uid: 21356 components: - pos: 63.5,10.5 parent: 2 type: Transform - - uid: 21349 + - uid: 21357 components: - pos: -28.5,-50.5 parent: 2 type: Transform - - uid: 21350 + - uid: 21358 components: - pos: -40.5,-69.5 parent: 2 type: Transform - - uid: 21351 + - uid: 21359 components: - pos: 57.5,53.5 parent: 2 type: Transform - proto: PosterContrabandRobustSoftdrinks entities: - - uid: 21352 + - uid: 21360 components: - pos: -6.5,-31.5 parent: 2 type: Transform - proto: PosterContrabandShamblersJuice entities: - - uid: 21353 + - uid: 21361 components: - name: changs type: MetaData @@ -163414,335 +148711,328 @@ entities: type: Transform - proto: PosterContrabandSmoke entities: - - uid: 21354 + - uid: 21362 components: - pos: -6.5,-51.5 parent: 2 type: Transform -- proto: PosterContrabandSpaceCube - entities: - - uid: 21355 - components: - - pos: -14.5,-32.5 - parent: 2 - type: Transform - proto: PosterContrabandSyndicatePistol entities: - - uid: 21356 + - uid: 21364 components: - pos: -46.5,-71.5 parent: 2 type: Transform - proto: PosterContrabandSyndicateRecruitment entities: - - uid: 21357 + - uid: 21365 components: - pos: -44.5,-74.5 parent: 2 type: Transform - proto: PosterContrabandTheGriffin entities: - - uid: 21358 + - uid: 21366 components: - pos: -43.5,-73.5 parent: 2 type: Transform - proto: PosterContrabandTools entities: - - uid: 21359 + - uid: 21367 components: - pos: -54.5,-69.5 parent: 2 type: Transform - - uid: 21360 + - uid: 21368 components: - pos: -22.5,-19.5 parent: 2 type: Transform - proto: PosterContrabandVoteWeh entities: - - uid: 21361 + - uid: 21369 components: - pos: -46.5,-65.5 parent: 2 type: Transform - - uid: 21362 + - uid: 21370 components: - pos: 59.5,41.5 parent: 2 type: Transform - proto: PosterContrabandWehWatches entities: - - uid: 21363 + - uid: 21371 components: - pos: 55.5,-4.5 parent: 2 type: Transform - proto: PosterLegit12Gauge entities: - - uid: 21364 + - uid: 21372 components: - pos: 31.5,23.5 parent: 2 type: Transform - proto: PosterLegit50thAnniversaryVintageReprint entities: - - uid: 21365 + - uid: 21373 components: - pos: 44.5,-34.5 parent: 2 type: Transform - proto: PosterLegitBlessThisSpess entities: - - uid: 21366 + - uid: 21374 components: - pos: 61.5,-4.5 parent: 2 type: Transform - proto: PosterLegitBuild entities: - - uid: 21367 + - uid: 21375 components: - pos: -34.5,-4.5 parent: 2 type: Transform - proto: PosterLegitCarbonDioxide entities: - - uid: 21368 + - uid: 21376 components: - pos: 46.5,-55.5 parent: 2 type: Transform - proto: PosterLegitCleanliness entities: - - uid: 21369 + - uid: 21377 components: - pos: -10.5,-24.5 parent: 2 type: Transform - - uid: 21370 + - uid: 21378 components: - pos: 1.5,-58.5 parent: 2 type: Transform - proto: PosterLegitCohibaRobustoAd entities: - - uid: 21371 + - uid: 21379 components: - pos: 13.5,-30.5 parent: 2 type: Transform - - uid: 21372 + - uid: 21380 components: - pos: 57.5,-9.5 parent: 2 type: Transform - proto: PosterLegitDickGumshue entities: - - uid: 21373 + - uid: 21381 components: - pos: 17.5,-15.5 parent: 2 type: Transform - proto: PosterLegitDoNotQuestion entities: - - uid: 21374 + - uid: 21382 components: - pos: 23.5,19.5 parent: 2 type: Transform - - uid: 21375 + - uid: 21383 components: - pos: -17.5,-21.5 parent: 2 type: Transform - proto: PosterLegitEnlist entities: - - uid: 21376 + - uid: 21384 components: - pos: -17.5,-31.5 parent: 2 type: Transform - - uid: 21377 + - uid: 21385 components: - pos: 59.5,-9.5 parent: 2 type: Transform - - uid: 21378 + - uid: 21386 components: - pos: -13.5,27.5 parent: 2 type: Transform - proto: PosterLegitFoamForceAd entities: - - uid: 21379 + - uid: 21387 components: - pos: 1.5,-39.5 parent: 2 type: Transform - proto: PosterLegitFruitBowl entities: - - uid: 21380 + - uid: 21388 components: - pos: -4.5,9.5 parent: 2 type: Transform - - uid: 21381 + - uid: 21389 components: - pos: -22.5,49.5 parent: 2 type: Transform - proto: PosterLegitGetYourLEGS entities: - - uid: 21382 + - uid: 21390 components: - pos: -16.5,64.5 parent: 2 type: Transform - proto: PosterLegitHelpOthers entities: - - uid: 21383 + - uid: 21391 components: - pos: -7.5,-40.5 parent: 2 type: Transform - proto: PosterLegitHereForYourSafety entities: - - uid: 21384 + - uid: 21392 components: - pos: 28.5,9.5 parent: 2 type: Transform - proto: PosterLegitHighClassMartini entities: - - uid: 21385 + - uid: 21393 components: - pos: 8.5,11.5 parent: 2 type: Transform - - uid: 21386 + - uid: 21394 components: - pos: -39.5,-74.5 parent: 2 type: Transform - proto: PosterLegitIan entities: - - uid: 21387 + - uid: 21395 components: - pos: 21.5,-40.5 parent: 2 type: Transform - proto: PosterLegitIonRifle entities: - - uid: 21388 + - uid: 21396 components: - pos: 27.5,33.5 parent: 2 type: Transform - proto: PosterLegitJustAWeekAway entities: - - uid: 21389 + - uid: 21397 components: - pos: -37.5,-31.5 parent: 2 type: Transform - proto: PosterLegitLoveIan entities: - - uid: 21390 + - uid: 21398 components: - pos: 21.5,-33.5 parent: 2 type: Transform - proto: PosterLegitNanomichiAd entities: - - uid: 21391 + - uid: 21399 components: - pos: -21.5,-27.5 parent: 2 type: Transform - proto: PosterLegitNanotrasenLogo entities: - - uid: 21392 + - uid: 21400 components: - rot: 3.141592653589793 rad pos: -15.5,9.5 parent: 2 type: Transform - - uid: 21393 + - uid: 21401 components: - pos: 28.5,-31.5 parent: 2 type: Transform - - uid: 21394 + - uid: 21402 components: - pos: 25.5,-33.5 parent: 2 type: Transform - proto: PosterLegitNoERP entities: - - uid: 21395 + - uid: 21403 components: - pos: 40.5,49.5 parent: 2 type: Transform - proto: PosterLegitObey entities: - - uid: 21396 + - uid: 21404 components: - pos: 31.5,-3.5 parent: 2 type: Transform - proto: PosterLegitPDAAd entities: - - uid: 21397 + - uid: 21405 components: - pos: 29.5,-40.5 parent: 2 type: Transform - proto: PosterLegitReportCrimes entities: - - uid: 21398 + - uid: 21406 components: - pos: 18.5,-15.5 parent: 2 type: Transform - - uid: 21399 + - uid: 21407 components: - pos: 30.5,-46.5 parent: 2 type: Transform - proto: PosterLegitSafetyEyeProtection entities: - - uid: 21400 + - uid: 21408 components: - pos: -33.5,-31.5 parent: 2 type: Transform - proto: PosterLegitSafetyInternals entities: - - uid: 21401 + - uid: 21409 components: - pos: -39.5,-31.5 parent: 2 type: Transform - - uid: 21402 + - uid: 21410 components: - pos: 24.5,-54.5 parent: 2 type: Transform - proto: PosterLegitSecWatch entities: - - uid: 21403 + - uid: 21411 components: - pos: 10.5,15.5 parent: 2 type: Transform - - uid: 21404 + - uid: 21412 components: - pos: 18.5,-9.5 parent: 2 type: Transform - - uid: 21405 + - uid: 21413 components: - rot: 3.141592653589793 rad pos: -18.5,-44.5 @@ -163750,342 +149040,337 @@ entities: type: Transform - proto: PosterLegitStateLaws entities: - - uid: 21406 + - uid: 21414 components: - pos: 37.5,-32.5 parent: 2 type: Transform - - uid: 21407 + - uid: 21415 components: - pos: -17.5,27.5 parent: 2 type: Transform - proto: PosterLegitTheOwl entities: - - uid: 21408 + - uid: 21416 components: - pos: 30.5,48.5 parent: 2 type: Transform - proto: PosterLegitWalk entities: - - uid: 21409 + - uid: 21417 components: - pos: -7.5,-28.5 parent: 2 type: Transform - proto: PosterLegitWorkForAFuture entities: - - uid: 21410 + - uid: 21418 components: - pos: 23.5,-38.5 parent: 2 type: Transform - proto: PottedPlant1 entities: - - uid: 21411 + - uid: 21419 components: - pos: -2.5,-40.5 parent: 2 type: Transform - proto: PottedPlant14 entities: - - uid: 21412 + - uid: 21420 components: - pos: 36.5,-16.5 parent: 2 type: Transform - proto: PottedPlant24 entities: - - uid: 21413 + - uid: 21421 components: - pos: -6.5,-40.5 parent: 2 type: Transform - proto: PottedPlant26 entities: - - uid: 21414 + - uid: 21422 components: - pos: 6.5,-52.5 parent: 2 type: Transform - proto: PottedPlant27 entities: - - uid: 21415 + - uid: 21423 components: - pos: 46.5,31.5 parent: 2 type: Transform - - uid: 21416 + - uid: 21424 components: - pos: -43.5,-87.5 parent: 2 type: Transform - proto: PottedPlant28 entities: - - uid: 21417 + - uid: 21425 components: - pos: 46.5,30.5 parent: 2 type: Transform - - uid: 21418 + - uid: 21426 components: - pos: -54.5,-47.5 parent: 2 type: Transform - proto: PottedPlant29 entities: - - uid: 21419 + - uid: 21427 components: - pos: 46.5,29.5 parent: 2 type: Transform - - uid: 21420 + - uid: 21428 components: - pos: -54.5,-50.5 parent: 2 type: Transform - - uid: 21421 + - uid: 21429 components: - pos: -40.5,-87.5 parent: 2 type: Transform - proto: PottedPlant3 entities: - - uid: 21422 + - uid: 21430 components: - pos: 14.5,-16.5 parent: 2 type: Transform - - uid: 21423 + - uid: 21431 components: - pos: 54.5,-1.5 parent: 2 type: Transform - proto: PottedPlant5 entities: - - uid: 21424 + - uid: 21432 components: - pos: -26.5,8.5 parent: 2 type: Transform - - uid: 21425 + - uid: 21433 components: - pos: 50.5,-1.5 parent: 2 type: Transform - proto: PottedPlant8 entities: - - uid: 21426 + - uid: 21434 components: - pos: -22.5,8.5 parent: 2 type: Transform - proto: PottedPlantBioluminscent entities: - - uid: 21427 + - uid: 21435 components: - pos: -27.5,17.5 parent: 2 type: Transform - proto: PottedPlantRandom entities: - - uid: 21428 + - uid: 21436 components: - pos: 20.5,18.5 parent: 2 type: Transform - - uid: 21429 + - uid: 21437 components: - pos: 1.5,-40.5 parent: 2 type: Transform - - uid: 21430 + - uid: 21438 components: - pos: 24.5,-81.5 parent: 2 type: Transform - - uid: 21431 + - uid: 21439 components: - pos: -44.5,8.5 parent: 2 type: Transform - - uid: 21432 + - uid: 21440 components: - pos: -49.5,8.5 parent: 2 type: Transform - - uid: 21433 + - uid: 21441 components: - pos: 23.5,-43.5 parent: 2 type: Transform - - uid: 21434 + - uid: 21442 components: - pos: 27.5,-43.5 parent: 2 type: Transform - - uid: 21435 + - uid: 21443 components: - pos: -23.5,-73.5 parent: 2 type: Transform - - uid: 21436 + - uid: 21444 components: - pos: -49.5,12.5 parent: 2 type: Transform - - uid: 21437 + - uid: 21445 components: - pos: -19.5,-73.5 parent: 2 type: Transform - - uid: 21438 + - uid: 21446 components: - pos: -2.5,46.5 parent: 2 type: Transform - - uid: 21439 + - uid: 21447 components: - pos: -14.5,42.5 parent: 2 type: Transform - - uid: 21440 + - uid: 21448 components: - pos: -6.5,46.5 parent: 2 type: Transform - - uid: 21441 - components: - - pos: -1.5,21.5 - parent: 2 - type: Transform - - uid: 21442 + - uid: 21450 components: - pos: 24.5,-85.5 parent: 2 type: Transform - - uid: 21443 + - uid: 21451 components: - pos: 25.5,-74.5 parent: 2 type: Transform - - uid: 21444 + - uid: 21452 components: - pos: -20.5,-66.5 parent: 2 type: Transform - - uid: 21445 + - uid: 21453 components: - pos: -18.5,-66.5 parent: 2 type: Transform - proto: PottedPlantRandomPlastic entities: - - uid: 21446 + - uid: 21454 components: - pos: -6.5,-45.5 parent: 2 type: Transform - - uid: 21447 + - uid: 21455 components: - pos: -55.5,-58.5 parent: 2 type: Transform - - uid: 21448 + - uid: 21456 components: - pos: 54.5,31.5 parent: 2 type: Transform - - uid: 21449 + - uid: 21457 components: - pos: -12.5,-96.5 parent: 2 type: Transform - - uid: 21450 + - uid: 21458 components: - pos: -57.5,-60.5 parent: 2 type: Transform - proto: PowerCellMediumPrinted entities: - - uid: 21451 + - uid: 21459 components: - pos: -5.4825964,19.558506 parent: 2 type: Transform - proto: PowerCellRecharger entities: - - uid: 21452 + - uid: 21460 components: - pos: -10.5,-61.5 parent: 2 type: Transform - - uid: 21453 + - uid: 21461 components: - pos: -11.5,-61.5 parent: 2 type: Transform - - uid: 21454 + - uid: 21462 components: - pos: -26.5,-20.5 parent: 2 type: Transform - - uid: 21455 + - uid: 21463 components: - pos: 8.5,14.5 parent: 2 type: Transform - - uid: 21456 + - uid: 21464 components: - pos: -23.5,-8.5 parent: 2 type: Transform - - uid: 21457 + - uid: 21465 components: - pos: -35.5,-13.5 parent: 2 type: Transform - - uid: 21458 + - uid: 21466 components: - pos: -32.5,17.5 parent: 2 type: Transform - - uid: 21459 + - uid: 21467 components: - pos: -22.5,-33.5 parent: 2 type: Transform - - uid: 21460 + - uid: 21468 components: - pos: 38.5,-55.5 parent: 2 type: Transform - - uid: 21461 + - uid: 21469 components: - pos: -22.5,17.5 parent: 2 type: Transform - - uid: 21462 + - uid: 21470 components: - pos: 43.5,-40.5 parent: 2 type: Transform - proto: PowerDrill entities: - - uid: 21463 + - uid: 21471 components: - pos: 62.617344,-53.460384 parent: 2 type: Transform - - uid: 21464 + - uid: 21472 components: - pos: -52.61403,65.565544 parent: 2 type: Transform - proto: Poweredlight entities: - - uid: 21465 + - uid: 21473 components: - rot: -1.5707963267948966 rad pos: -22.5,-77.5 @@ -164093,7 +149378,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21466 + - uid: 21474 components: - rot: 1.5707963267948966 rad pos: -42.5,-9.5 @@ -164101,7 +149386,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21467 + - uid: 21475 components: - rot: -1.5707963267948966 rad pos: 48.5,-29.5 @@ -164109,7 +149394,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21468 + - uid: 21476 components: - rot: 1.5707963267948966 rad pos: 25.5,-34.5 @@ -164117,7 +149402,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21469 + - uid: 21477 components: - rot: -1.5707963267948966 rad pos: 14.5,8.5 @@ -164125,7 +149410,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21470 + - uid: 21478 components: - rot: 3.141592653589793 rad pos: -10.5,-1.5 @@ -164133,7 +149418,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21471 + - uid: 21479 components: - rot: 3.141592653589793 rad pos: -2.5,-1.5 @@ -164141,14 +149426,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21472 + - uid: 21480 components: - pos: 4.5,-59.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21473 + - uid: 21481 components: - rot: 1.5707963267948966 rad pos: -5.5,-31.5 @@ -164156,7 +149441,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21474 + - uid: 21482 components: - rot: -1.5707963267948966 rad pos: 4.5,-4.5 @@ -164166,7 +149451,7 @@ entities: type: PointLight - powerLoad: 0 type: ApcPowerReceiver - - uid: 21475 + - uid: 21483 components: - rot: -1.5707963267948966 rad pos: 16.5,-22.5 @@ -164174,21 +149459,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21476 + - uid: 21484 components: - pos: 30.5,-47.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21477 + - uid: 21485 components: - pos: 40.5,-25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21478 + - uid: 21486 components: - rot: 1.5707963267948966 rad pos: 44.5,-23.5 @@ -164196,7 +149481,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21479 + - uid: 21487 components: - rot: 3.141592653589793 rad pos: -10.5,-61.5 @@ -164204,7 +149489,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21480 + - uid: 21488 components: - rot: 3.141592653589793 rad pos: -4.5,-61.5 @@ -164212,7 +149497,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21481 + - uid: 21489 components: - rot: 1.5707963267948966 rad pos: -20.5,-77.5 @@ -164220,7 +149505,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21482 + - uid: 21490 components: - rot: 3.141592653589793 rad pos: -9.5,-27.5 @@ -164228,7 +149513,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21483 + - uid: 21491 components: - rot: 3.141592653589793 rad pos: 12.5,-27.5 @@ -164236,21 +149521,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21484 + - uid: 21492 components: - pos: 21.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21485 + - uid: 21493 components: - pos: 29.5,-45.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21486 + - uid: 21494 components: - rot: -1.5707963267948966 rad pos: 42.5,8.5 @@ -164258,7 +149543,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21487 + - uid: 21495 components: - rot: 3.141592653589793 rad pos: 24.5,-2.5 @@ -164266,14 +149551,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21488 + - uid: 21496 components: - pos: 33.5,-45.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21489 + - uid: 21497 components: - rot: 3.141592653589793 rad pos: 2.5,-43.5 @@ -164281,7 +149566,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21490 + - uid: 21498 components: - rot: -1.5707963267948966 rad pos: 7.5,-46.5 @@ -164289,7 +149574,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21491 + - uid: 21499 components: - rot: -1.5707963267948966 rad pos: -27.5,-70.5 @@ -164297,8 +149582,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - type: Timer - - uid: 21492 + - uid: 21500 components: - rot: -1.5707963267948966 rad pos: 30.5,0.5 @@ -164306,14 +149590,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21493 + - uid: 21501 components: - pos: -23.5,-8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21494 + - uid: 21502 components: - rot: -1.5707963267948966 rad pos: 10.5,-60.5 @@ -164321,7 +149605,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21495 + - uid: 21503 components: - rot: 1.5707963267948966 rad pos: -5.5,-35.5 @@ -164329,7 +149613,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21496 + - uid: 21504 components: - rot: -1.5707963267948966 rad pos: 23.5,-35.5 @@ -164337,7 +149621,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21497 + - uid: 21505 components: - rot: 3.141592653589793 rad pos: -8.5,44.5 @@ -164345,7 +149629,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21498 + - uid: 21506 components: - rot: -1.5707963267948966 rad pos: -0.5,62.5 @@ -164353,14 +149637,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21499 + - uid: 21507 components: - pos: 4.5,3.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21500 + - uid: 21508 components: - rot: 1.5707963267948966 rad pos: 44.5,-28.5 @@ -164368,7 +149652,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21501 + - uid: 21509 components: - rot: -1.5707963267948966 rad pos: 29.5,-34.5 @@ -164376,7 +149660,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21502 + - uid: 21510 components: - rot: -1.5707963267948966 rad pos: 42.5,-25.5 @@ -164384,7 +149668,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21503 + - uid: 21511 components: - rot: -1.5707963267948966 rad pos: 32.5,-29.5 @@ -164392,7 +149676,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21504 + - uid: 21512 components: - rot: 1.5707963267948966 rad pos: 8.5,-9.5 @@ -164400,28 +149684,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21505 + - uid: 21513 components: - pos: -21.5,-84.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21506 + - uid: 21514 components: - pos: 12.5,3.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21507 + - uid: 21515 components: - pos: 29.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21508 + - uid: 21516 components: - rot: -1.5707963267948966 rad pos: -18.5,-9.5 @@ -164429,14 +149713,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21509 + - uid: 21517 components: - pos: 4.5,-56.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21510 + - uid: 21518 components: - rot: -1.5707963267948966 rad pos: 34.5,3.5 @@ -164446,7 +149730,7 @@ entities: type: PointLight - powerLoad: 0 type: ApcPowerReceiver - - uid: 21511 + - uid: 21519 components: - rot: 1.5707963267948966 rad pos: -35.5,-50.5 @@ -164454,7 +149738,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21512 + - uid: 21520 components: - rot: -1.5707963267948966 rad pos: 65.5,-2.5 @@ -164462,14 +149746,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21513 + - uid: 21521 components: - pos: 27.5,-16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21514 + - uid: 21522 components: - rot: 1.5707963267948966 rad pos: -3.5,-65.5 @@ -164477,7 +149761,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21515 + - uid: 21523 components: - rot: 1.5707963267948966 rad pos: -9.5,-64.5 @@ -164485,7 +149769,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21516 + - uid: 21524 components: - rot: -1.5707963267948966 rad pos: 0.5,-45.5 @@ -164493,7 +149777,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21517 + - uid: 21525 components: - rot: 1.5707963267948966 rad pos: -9.5,-48.5 @@ -164501,15 +149785,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21518 + - uid: 21526 components: - pos: -23.5,-69.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - type: Timer - - uid: 21519 + - uid: 21527 components: - rot: 3.141592653589793 rad pos: -22.5,-73.5 @@ -164517,15 +149800,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - type: Timer - - uid: 21520 + - uid: 21528 components: - pos: 16.5,-16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21521 + - uid: 21529 components: - rot: 1.5707963267948966 rad pos: -5.5,-11.5 @@ -164533,7 +149815,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21522 + - uid: 21530 components: - rot: -1.5707963267948966 rad pos: 48.5,-22.5 @@ -164541,14 +149823,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21523 + - uid: 21531 components: - pos: 24.5,4.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21524 + - uid: 21532 components: - rot: 1.5707963267948966 rad pos: -1.5,-6.5 @@ -164556,7 +149838,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21525 + - uid: 21533 components: - rot: 1.5707963267948966 rad pos: 10.5,11.5 @@ -164564,14 +149846,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21526 + - uid: 21534 components: - pos: 16.5,14.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21527 + - uid: 21535 components: - rot: 1.5707963267948966 rad pos: -12.5,-37.5 @@ -164579,14 +149861,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21528 + - uid: 21536 components: - pos: -8.5,-35.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21529 + - uid: 21537 components: - rot: 1.5707963267948966 rad pos: -10.5,8.5 @@ -164594,14 +149876,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21530 + - uid: 21538 components: - pos: 6.5,22.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21531 + - uid: 21539 components: - rot: 1.5707963267948966 rad pos: 24.5,-47.5 @@ -164609,14 +149891,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21532 + - uid: 21540 components: - pos: 13.5,17.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21533 + - uid: 21541 components: - rot: 1.5707963267948966 rad pos: 14.5,21.5 @@ -164624,14 +149906,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21534 + - uid: 21542 components: - pos: 44.5,8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21535 + - uid: 21543 components: - rot: 3.141592653589793 rad pos: 47.5,4.5 @@ -164639,28 +149921,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21536 + - uid: 21544 components: - pos: 44.5,2.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21537 + - uid: 21545 components: - pos: -4.5,3.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21538 + - uid: 21546 components: - pos: 11.5,22.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21539 + - uid: 21547 components: - rot: -1.5707963267948966 rad pos: -3.5,-6.5 @@ -164668,7 +149950,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21540 + - uid: 21548 components: - rot: 3.141592653589793 rad pos: -2.5,-27.5 @@ -164676,7 +149958,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21541 + - uid: 21549 components: - rot: 1.5707963267948966 rad pos: -5.5,-18.5 @@ -164684,14 +149966,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21542 + - uid: 21550 components: - pos: -9.5,-21.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21543 + - uid: 21551 components: - rot: 1.5707963267948966 rad pos: -13.5,-22.5 @@ -164699,7 +149981,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21544 + - uid: 21552 components: - rot: -1.5707963267948966 rad pos: 39.5,-2.5 @@ -164707,7 +149989,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21545 + - uid: 21553 components: - rot: 3.141592653589793 rad pos: 36.5,-6.5 @@ -164715,7 +149997,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21546 + - uid: 21554 components: - rot: 1.5707963267948966 rad pos: 26.5,31.5 @@ -164723,7 +150005,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21547 + - uid: 21555 components: - rot: 3.141592653589793 rad pos: 29.5,27.5 @@ -164731,7 +150013,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21548 + - uid: 21556 components: - rot: -1.5707963267948966 rad pos: 30.5,20.5 @@ -164739,7 +150021,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21549 + - uid: 21557 components: - rot: 1.5707963267948966 rad pos: 28.5,14.5 @@ -164747,35 +150029,35 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21550 + - uid: 21558 components: - pos: 33.5,16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21551 + - uid: 21559 components: - pos: 39.5,16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21552 + - uid: 21560 components: - pos: 55.5,9.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21553 + - uid: 21561 components: - pos: 51.5,9.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21554 + - uid: 21562 components: - rot: 3.141592653589793 rad pos: 55.5,15.5 @@ -164783,7 +150065,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21555 + - uid: 21563 components: - rot: 3.141592653589793 rad pos: 51.5,15.5 @@ -164791,7 +150073,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21556 + - uid: 21564 components: - rot: 3.141592653589793 rad pos: 48.5,12.5 @@ -164799,7 +150081,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21557 + - uid: 21565 components: - rot: 3.141592653589793 rad pos: 58.5,12.5 @@ -164807,7 +150089,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21558 + - uid: 21566 components: - rot: -1.5707963267948966 rad pos: 59.5,20.5 @@ -164815,7 +150097,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21559 + - uid: 21567 components: - rot: 3.141592653589793 rad pos: 59.5,4.5 @@ -164823,7 +150105,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21560 + - uid: 21568 components: - rot: 3.141592653589793 rad pos: 48.5,18.5 @@ -164831,7 +150113,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21561 + - uid: 21569 components: - rot: 1.5707963267948966 rad pos: 32.5,-3.5 @@ -164839,7 +150121,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21562 + - uid: 21570 components: - rot: 3.141592653589793 rad pos: 24.5,6.5 @@ -164847,7 +150129,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21563 + - uid: 21571 components: - rot: 3.141592653589793 rad pos: 29.5,6.5 @@ -164855,7 +150137,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21564 + - uid: 21572 components: - rot: 1.5707963267948966 rad pos: 24.5,-13.5 @@ -164863,7 +150145,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21565 + - uid: 21573 components: - rot: 3.141592653589793 rad pos: 21.5,-6.5 @@ -164871,7 +150153,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21566 + - uid: 21574 components: - rot: -1.5707963267948966 rad pos: 26.5,-9.5 @@ -164879,7 +150161,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21567 + - uid: 21575 components: - rot: 3.141592653589793 rad pos: 57.5,-6.5 @@ -164887,14 +150169,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21568 + - uid: 21576 components: - pos: 57.5,-10.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21569 + - uid: 21577 components: - rot: -1.5707963267948966 rad pos: 54.5,-8.5 @@ -164902,7 +150184,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21570 + - uid: 21578 components: - rot: 1.5707963267948966 rad pos: 59.5,-1.5 @@ -164910,7 +150192,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21571 + - uid: 21579 components: - rot: 3.141592653589793 rad pos: 57.5,-14.5 @@ -164918,7 +150200,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21572 + - uid: 21580 components: - rot: 3.141592653589793 rad pos: 33.5,-60.5 @@ -164926,7 +150208,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21573 + - uid: 21581 components: - rot: 3.141592653589793 rad pos: 45.5,-43.5 @@ -164934,14 +150216,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21574 + - uid: 21582 components: - pos: 72.5,-43.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21575 + - uid: 21583 components: - rot: 3.141592653589793 rad pos: 67.5,-49.5 @@ -164949,7 +150231,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21576 + - uid: 21584 components: - rot: 3.141592653589793 rad pos: 60.5,-49.5 @@ -164957,7 +150239,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21577 + - uid: 21585 components: - rot: 3.141592653589793 rad pos: 57.5,-45.5 @@ -164965,14 +150247,14 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 21578 + - uid: 21586 components: - pos: 56.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21579 + - uid: 21587 components: - rot: -1.5707963267948966 rad pos: 53.5,-42.5 @@ -164980,7 +150262,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21580 + - uid: 21588 components: - rot: 1.5707963267948966 rad pos: 48.5,-38.5 @@ -164988,7 +150270,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21581 + - uid: 21589 components: - rot: 1.5707963267948966 rad pos: 48.5,-47.5 @@ -164996,21 +150278,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21582 + - uid: 21590 components: - pos: 39.5,-35.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21583 + - uid: 21591 components: - pos: 44.5,-35.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21584 + - uid: 21592 components: - rot: 3.141592653589793 rad pos: 10.5,-43.5 @@ -165018,7 +150300,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21585 + - uid: 21593 components: - rot: 3.141592653589793 rad pos: 35.5,-43.5 @@ -165026,7 +150308,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21586 + - uid: 21594 components: - rot: 3.141592653589793 rad pos: 28.5,-6.5 @@ -165034,7 +150316,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21587 + - uid: 21595 components: - rot: 3.141592653589793 rad pos: 16.5,-43.5 @@ -165042,21 +150324,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21588 + - uid: 21596 components: - pos: 33.5,-39.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21589 + - uid: 21597 components: - pos: 45.5,-45.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21590 + - uid: 21598 components: - rot: 3.141592653589793 rad pos: 42.5,-49.5 @@ -165064,7 +150346,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21591 + - uid: 21599 components: - rot: 3.141592653589793 rad pos: 65.5,-35.5 @@ -165072,7 +150354,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21592 + - uid: 21600 components: - rot: -1.5707963267948966 rad pos: 64.5,-53.5 @@ -165080,14 +150362,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21593 + - uid: 21601 components: - pos: 32.5,-47.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21594 + - uid: 21602 components: - rot: -1.5707963267948966 rad pos: 34.5,-51.5 @@ -165095,7 +150377,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21595 + - uid: 21603 components: - rot: 1.5707963267948966 rad pos: 28.5,-50.5 @@ -165103,7 +150385,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21596 + - uid: 21604 components: - rot: -1.5707963267948966 rad pos: 34.5,-55.5 @@ -165111,7 +150393,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21597 + - uid: 21605 components: - rot: 1.5707963267948966 rad pos: 28.5,-56.5 @@ -165119,7 +150401,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21598 + - uid: 21606 components: - rot: 1.5707963267948966 rad pos: 24.5,-52.5 @@ -165127,7 +150409,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21599 + - uid: 21607 components: - rot: -1.5707963267948966 rad pos: 26.5,-56.5 @@ -165135,21 +150417,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21600 + - uid: 21608 components: - pos: 28.5,-58.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21601 + - uid: 21609 components: - pos: -15.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21602 + - uid: 21610 components: - rot: 3.141592653589793 rad pos: 37.5,-60.5 @@ -165157,7 +150439,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21603 + - uid: 21611 components: - rot: 3.141592653589793 rad pos: -25.5,-17.5 @@ -165165,7 +150447,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21604 + - uid: 21612 components: - rot: -1.5707963267948966 rad pos: 16.5,-31.5 @@ -165173,7 +150455,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21605 + - uid: 21613 components: - rot: 1.5707963267948966 rad pos: -20.5,-15.5 @@ -165181,7 +150463,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21606 + - uid: 21614 components: - rot: 1.5707963267948966 rad pos: -20.5,-19.5 @@ -165189,7 +150471,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21607 + - uid: 21615 components: - rot: 1.5707963267948966 rad pos: -26.5,-21.5 @@ -165197,14 +150479,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21608 + - uid: 21616 components: - pos: -30.5,-16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21609 + - uid: 21617 components: - rot: 3.141592653589793 rad pos: -28.5,-14.5 @@ -165212,7 +150494,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21610 + - uid: 21618 components: - rot: 1.5707963267948966 rad pos: -39.5,-8.5 @@ -165220,7 +150502,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21611 + - uid: 21619 components: - rot: 1.5707963267948966 rad pos: 38.5,-54.5 @@ -165228,14 +150510,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21612 + - uid: 21620 components: - pos: 56.5,-58.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21613 + - uid: 21621 components: - rot: -1.5707963267948966 rad pos: 51.5,-56.5 @@ -165243,14 +150525,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21614 + - uid: 21622 components: - pos: 45.5,-56.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21615 + - uid: 21623 components: - rot: -1.5707963267948966 rad pos: 52.5,-50.5 @@ -165258,7 +150540,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21616 + - uid: 21624 components: - rot: 1.5707963267948966 rad pos: 48.5,-61.5 @@ -165266,7 +150548,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21617 + - uid: 21625 components: - rot: -1.5707963267948966 rad pos: 12.5,-5.5 @@ -165274,7 +150556,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21618 + - uid: 21626 components: - rot: -1.5707963267948966 rad pos: 49.5,-86.5 @@ -165282,7 +150564,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21619 + - uid: 21627 components: - rot: 1.5707963267948966 rad pos: 24.5,-84.5 @@ -165290,7 +150572,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21620 + - uid: 21628 components: - rot: -1.5707963267948966 rad pos: 49.5,-91.5 @@ -165298,21 +150580,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21621 + - uid: 21629 components: - pos: 41.5,-70.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21622 + - uid: 21630 components: - pos: 37.5,-70.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21623 + - uid: 21631 components: - rot: 1.5707963267948966 rad pos: 38.5,-61.5 @@ -165320,7 +150602,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21624 + - uid: 21632 components: - rot: 3.141592653589793 rad pos: -35.5,-18.5 @@ -165328,7 +150610,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21625 + - uid: 21633 components: - rot: 3.141592653589793 rad pos: -35.5,-13.5 @@ -165336,21 +150618,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21626 + - uid: 21634 components: - pos: -35.5,-5.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21627 + - uid: 21635 components: - pos: -16.5,-25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21628 + - uid: 21636 components: - rot: 1.5707963267948966 rad pos: -20.5,-29.5 @@ -165358,7 +150640,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21629 + - uid: 21637 components: - rot: 1.5707963267948966 rad pos: -20.5,-37.5 @@ -165366,7 +150648,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21630 + - uid: 21638 components: - rot: 1.5707963267948966 rad pos: -20.5,-41.5 @@ -165374,7 +150656,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21631 + - uid: 21639 components: - rot: -1.5707963267948966 rad pos: 44.5,-3.5 @@ -165382,7 +150664,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21632 + - uid: 21640 components: - rot: -1.5707963267948966 rad pos: -6.5,11.5 @@ -165390,28 +150672,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21633 + - uid: 21641 components: - pos: -41.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21634 + - uid: 21642 components: - pos: -36.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21635 + - uid: 21643 components: - pos: -36.5,-53.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21636 + - uid: 21644 components: - rot: 3.141592653589793 rad pos: -43.5,-57.5 @@ -165419,7 +150701,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 21637 + - uid: 21645 components: - rot: 1.5707963267948966 rad pos: -46.5,-43.5 @@ -165427,7 +150709,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21638 + - uid: 21646 components: - rot: 1.5707963267948966 rad pos: -46.5,-45.5 @@ -165435,7 +150717,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21639 + - uid: 21647 components: - rot: 1.5707963267948966 rad pos: -46.5,-47.5 @@ -165443,7 +150725,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21640 + - uid: 21648 components: - rot: 1.5707963267948966 rad pos: -46.5,-49.5 @@ -165451,7 +150733,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21641 + - uid: 21649 components: - rot: 1.5707963267948966 rad pos: -46.5,-51.5 @@ -165459,7 +150741,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21642 + - uid: 21650 components: - rot: 1.5707963267948966 rad pos: -46.5,-53.5 @@ -165467,7 +150749,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21643 + - uid: 21651 components: - rot: 1.5707963267948966 rad pos: -46.5,-55.5 @@ -165475,7 +150757,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21644 + - uid: 21652 components: - rot: -1.5707963267948966 rad pos: -31.5,-39.5 @@ -165483,14 +150765,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21645 + - uid: 21653 components: - pos: -27.5,-33.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21646 + - uid: 21654 components: - rot: -1.5707963267948966 rad pos: -22.5,-33.5 @@ -165498,7 +150780,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21647 + - uid: 21655 components: - rot: 3.141592653589793 rad pos: -33.5,-35.5 @@ -165506,7 +150788,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21648 + - uid: 21656 components: - rot: 3.141592653589793 rad pos: -39.5,-36.5 @@ -165514,7 +150796,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21649 + - uid: 21657 components: - rot: -1.5707963267948966 rad pos: -33.5,-47.5 @@ -165522,7 +150804,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21650 + - uid: 21658 components: - rot: 1.5707963267948966 rad pos: 21.5,-28.5 @@ -165530,7 +150812,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21651 + - uid: 21659 components: - rot: -1.5707963267948966 rad pos: -56.5,-43.5 @@ -165538,7 +150820,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21652 + - uid: 21660 components: - rot: -1.5707963267948966 rad pos: -54.5,-48.5 @@ -165546,7 +150828,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21653 + - uid: 21661 components: - rot: -1.5707963267948966 rad pos: 18.5,5.5 @@ -165554,7 +150836,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21654 + - uid: 21662 components: - rot: 1.5707963267948966 rad pos: 16.5,1.5 @@ -165562,7 +150844,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21655 + - uid: 21663 components: - rot: -1.5707963267948966 rad pos: -12.5,5.5 @@ -165570,14 +150852,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21656 + - uid: 21664 components: - pos: -18.5,-4.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21657 + - uid: 21665 components: - rot: 3.141592653589793 rad pos: -14.5,-6.5 @@ -165585,14 +150867,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21658 + - uid: 21666 components: - pos: -15.5,8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21659 + - uid: 21667 components: - rot: 3.141592653589793 rad pos: -19.5,6.5 @@ -165600,7 +150882,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21660 + - uid: 21668 components: - rot: 1.5707963267948966 rad pos: -26.5,5.5 @@ -165608,7 +150890,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21661 + - uid: 21669 components: - rot: 1.5707963267948966 rad pos: -26.5,-1.5 @@ -165616,21 +150898,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21662 + - uid: 21670 components: - pos: -72.5,-23.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21663 + - uid: 21671 components: - pos: -66.5,-30.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21664 + - uid: 21672 components: - rot: -1.5707963267948966 rad pos: -53.5,-24.5 @@ -165638,7 +150920,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21665 + - uid: 21673 components: - rot: 1.5707963267948966 rad pos: -68.5,-25.5 @@ -165646,7 +150928,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21666 + - uid: 21674 components: - rot: -1.5707963267948966 rad pos: -52.5,-14.5 @@ -165654,7 +150936,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21667 + - uid: 21675 components: - rot: 1.5707963267948966 rad pos: -55.5,-8.5 @@ -165662,14 +150944,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21668 + - uid: 21676 components: - pos: -51.5,-5.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21669 + - uid: 21677 components: - rot: -1.5707963267948966 rad pos: -50.5,-18.5 @@ -165677,14 +150959,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21670 + - uid: 21678 components: - pos: -46.5,-19.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21671 + - uid: 21679 components: - rot: 1.5707963267948966 rad pos: -42.5,-21.5 @@ -165692,7 +150974,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21672 + - uid: 21680 components: - rot: 1.5707963267948966 rad pos: -48.5,-11.5 @@ -165700,7 +150982,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21673 + - uid: 21681 components: - rot: 1.5707963267948966 rad pos: -48.5,-15.5 @@ -165708,21 +150990,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21674 + - uid: 21682 components: - pos: -45.5,-5.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21675 + - uid: 21683 components: - pos: -40.5,-5.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21676 + - uid: 21684 components: - rot: -1.5707963267948966 rad pos: -31.5,-13.5 @@ -165730,7 +151012,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21677 + - uid: 21685 components: - rot: 1.5707963267948966 rad pos: -32.5,-24.5 @@ -165738,7 +151020,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21678 + - uid: 21686 components: - rot: -1.5707963267948966 rad pos: 2.5,13.5 @@ -165746,7 +151028,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21679 + - uid: 21687 components: - rot: -1.5707963267948966 rad pos: -2.5,11.5 @@ -165754,14 +151036,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21680 + - uid: 21688 components: - pos: -4.5,8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21681 + - uid: 21689 components: - rot: 3.141592653589793 rad pos: 3.5,5.5 @@ -165769,7 +151051,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21682 + - uid: 21690 components: - rot: -1.5707963267948966 rad pos: 6.5,10.5 @@ -165777,7 +151059,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21683 + - uid: 21691 components: - rot: 1.5707963267948966 rad pos: -1.5,17.5 @@ -165785,21 +151067,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21684 + - uid: 21692 components: - pos: 1.5,21.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21685 + - uid: 21693 components: - pos: -42.5,1.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21686 + - uid: 21694 components: - rot: -1.5707963267948966 rad pos: 8.5,15.5 @@ -165807,7 +151089,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21687 + - uid: 21695 components: - rot: 3.141592653589793 rad pos: 23.5,16.5 @@ -165815,21 +151097,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21688 + - uid: 21696 components: - pos: 25.5,23.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21689 + - uid: 21697 components: - pos: 38.5,2.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21690 + - uid: 21698 components: - rot: 3.141592653589793 rad pos: 49.5,0.5 @@ -165837,7 +151119,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21691 + - uid: 21699 components: - rot: -1.5707963267948966 rad pos: 54.5,0.5 @@ -165845,7 +151127,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21692 + - uid: 21700 components: - rot: 3.141592653589793 rad pos: -23.5,17.5 @@ -165853,7 +151135,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21693 + - uid: 21701 components: - rot: 3.141592653589793 rad pos: -50.5,29.5 @@ -165861,14 +151143,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21694 + - uid: 21702 components: - pos: -22.5,25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21695 + - uid: 21703 components: - rot: -1.5707963267948966 rad pos: -18.5,15.5 @@ -165876,7 +151158,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21696 + - uid: 21704 components: - rot: -1.5707963267948966 rad pos: -18.5,22.5 @@ -165884,14 +151166,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21697 + - uid: 21705 components: - pos: -27.5,23.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21698 + - uid: 21706 components: - rot: 1.5707963267948966 rad pos: -34.5,23.5 @@ -165899,7 +151181,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21699 + - uid: 21707 components: - rot: 3.141592653589793 rad pos: -29.5,17.5 @@ -165907,7 +151189,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21700 + - uid: 21708 components: - rot: -1.5707963267948966 rad pos: -30.5,30.5 @@ -165915,7 +151197,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21701 + - uid: 21709 components: - rot: 3.141592653589793 rad pos: -39.5,18.5 @@ -165923,7 +151205,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21702 + - uid: 21710 components: - rot: -1.5707963267948966 rad pos: -36.5,23.5 @@ -165931,14 +151213,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21703 + - uid: 21711 components: - pos: -43.5,25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21704 + - uid: 21712 components: - rot: 1.5707963267948966 rad pos: -48.5,21.5 @@ -165946,7 +151228,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21705 + - uid: 21713 components: - rot: 1.5707963267948966 rad pos: -48.5,26.5 @@ -165954,7 +151236,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21706 + - uid: 21714 components: - rot: -1.5707963267948966 rad pos: -36.5,30.5 @@ -165962,7 +151244,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21707 + - uid: 21715 components: - rot: 3.141592653589793 rad pos: -47.5,28.5 @@ -165970,14 +151252,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21708 + - uid: 21716 components: - pos: -47.5,36.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21709 + - uid: 21717 components: - rot: 1.5707963267948966 rad pos: -48.5,32.5 @@ -165985,7 +151267,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21710 + - uid: 21718 components: - rot: 3.141592653589793 rad pos: -51.5,19.5 @@ -165993,21 +151275,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21711 + - uid: 21719 components: - pos: -7.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21712 + - uid: 21720 components: - pos: -1.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21713 + - uid: 21721 components: - rot: -1.5707963267948966 rad pos: -11.5,-47.5 @@ -166015,7 +151297,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21714 + - uid: 21722 components: - rot: 3.141592653589793 rad pos: 1.5,-54.5 @@ -166023,14 +151305,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21715 + - uid: 21723 components: - pos: -3.5,-52.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21716 + - uid: 21724 components: - rot: 3.141592653589793 rad pos: -7.5,-54.5 @@ -166038,14 +151320,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21717 + - uid: 21725 components: - pos: -11.5,-52.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21718 + - uid: 21726 components: - rot: 1.5707963267948966 rad pos: -15.5,-53.5 @@ -166053,28 +151335,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21719 + - uid: 21727 components: - pos: -17.5,-54.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21720 + - uid: 21728 components: - pos: -17.5,-59.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21721 + - uid: 21729 components: - pos: 63.5,-28.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21722 + - uid: 21730 components: - rot: -1.5707963267948966 rad pos: -22.5,11.5 @@ -166082,14 +151364,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21723 + - uid: 21731 components: - pos: -26.5,15.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21724 + - uid: 21732 components: - rot: -1.5707963267948966 rad pos: 26.5,11.5 @@ -166097,7 +151379,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21725 + - uid: 21733 components: - rot: 1.5707963267948966 rad pos: -48.5,16.5 @@ -166105,14 +151387,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21726 + - uid: 21734 components: - pos: -47.5,8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21727 + - uid: 21735 components: - rot: 3.141592653589793 rad pos: -46.5,-0.5 @@ -166120,21 +151402,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21728 + - uid: 21736 components: - pos: 8.5,-25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21729 + - uid: 21737 components: - pos: 1.5,-25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21730 + - uid: 21738 components: - rot: -1.5707963267948966 rad pos: 36.5,-34.5 @@ -166142,7 +151424,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21731 + - uid: 21739 components: - rot: 1.5707963267948966 rad pos: 34.5,-29.5 @@ -166150,7 +151432,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21732 + - uid: 21740 components: - rot: -1.5707963267948966 rad pos: 36.5,-24.5 @@ -166158,28 +151440,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21733 + - uid: 21741 components: - pos: 21.5,-21.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21734 + - uid: 21742 components: - pos: 29.5,-21.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21735 + - uid: 21743 components: - pos: -29.5,1.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21736 + - uid: 21744 components: - rot: 3.141592653589793 rad pos: -38.5,-0.5 @@ -166187,7 +151469,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21737 + - uid: 21745 components: - rot: 3.141592653589793 rad pos: -51.5,10.5 @@ -166195,7 +151477,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21738 + - uid: 21746 components: - rot: 1.5707963267948966 rad pos: 19.5,-46.5 @@ -166203,14 +151485,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21739 + - uid: 21747 components: - pos: 32.5,19.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21740 + - uid: 21748 components: - rot: -1.5707963267948966 rad pos: 13.5,-11.5 @@ -166218,7 +151500,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21741 + - uid: 21749 components: - rot: 3.141592653589793 rad pos: 3.5,-65.5 @@ -166226,7 +151508,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21742 + - uid: 21750 components: - rot: 1.5707963267948966 rad pos: 38.5,19.5 @@ -166234,14 +151516,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21743 + - uid: 21751 components: - pos: 64.5,-43.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21744 + - uid: 21752 components: - rot: 3.141592653589793 rad pos: -24.5,-6.5 @@ -166249,7 +151531,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21745 + - uid: 21753 components: - rot: 1.5707963267948966 rad pos: -26.5,-60.5 @@ -166257,14 +151539,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21746 + - uid: 21754 components: - pos: -23.5,-57.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21747 + - uid: 21755 components: - rot: 1.5707963267948966 rad pos: -31.5,-73.5 @@ -166272,7 +151554,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21748 + - uid: 21756 components: - rot: -1.5707963267948966 rad pos: 18.5,9.5 @@ -166280,7 +151562,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21749 + - uid: 21757 components: - rot: 3.141592653589793 rad pos: -18.5,65.5 @@ -166288,14 +151570,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21750 + - uid: 21758 components: - pos: -21.5,45.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21751 + - uid: 21759 components: - rot: 1.5707963267948966 rad pos: -16.5,32.5 @@ -166303,7 +151585,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21752 + - uid: 21760 components: - rot: -1.5707963267948966 rad pos: -14.5,40.5 @@ -166311,7 +151593,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21753 + - uid: 21761 components: - rot: 1.5707963267948966 rad pos: -18.5,46.5 @@ -166319,7 +151601,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21754 + - uid: 21762 components: - rot: 1.5707963267948966 rad pos: -20.5,28.5 @@ -166327,7 +151609,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21755 + - uid: 21763 components: - rot: -1.5707963267948966 rad pos: -2.5,52.5 @@ -166335,7 +151617,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21756 + - uid: 21764 components: - rot: 1.5707963267948966 rad pos: -10.5,55.5 @@ -166343,7 +151625,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21757 + - uid: 21765 components: - rot: 1.5707963267948966 rad pos: -10.5,49.5 @@ -166351,7 +151633,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21758 + - uid: 21766 components: - rot: -1.5707963267948966 rad pos: -40.5,32.5 @@ -166359,14 +151641,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21759 + - uid: 21767 components: - pos: -1.5,46.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21760 + - uid: 21768 components: - rot: 1.5707963267948966 rad pos: -0.5,51.5 @@ -166374,7 +151656,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21761 + - uid: 21769 components: - rot: 1.5707963267948966 rad pos: -0.5,57.5 @@ -166382,21 +151664,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21762 + - uid: 21770 components: - pos: -6.5,59.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21763 + - uid: 21771 components: - pos: -19.5,51.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21764 + - uid: 21772 components: - rot: 1.5707963267948966 rad pos: -22.5,55.5 @@ -166404,7 +151686,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21765 + - uid: 21773 components: - rot: 1.5707963267948966 rad pos: -22.5,66.5 @@ -166412,7 +151694,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21766 + - uid: 21774 components: - rot: -1.5707963267948966 rad pos: -12.5,66.5 @@ -166420,7 +151702,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21767 + - uid: 21775 components: - rot: 1.5707963267948966 rad pos: -13.5,60.5 @@ -166428,7 +151710,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21768 + - uid: 21776 components: - rot: -1.5707963267948966 rad pos: -12.5,54.5 @@ -166436,7 +151718,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21769 + - uid: 21777 components: - rot: 3.141592653589793 rad pos: 28.5,44.5 @@ -166444,15 +151726,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21770 - components: - - rot: -1.5707963267948966 rad - pos: -54.5,-48.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 21771 + - uid: 21778 components: - rot: 3.141592653589793 rad pos: -44.5,-85.5 @@ -166460,7 +151734,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21772 + - uid: 21779 components: - rot: -1.5707963267948966 rad pos: -35.5,-95.5 @@ -166468,7 +151742,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21773 + - uid: 21780 components: - rot: 3.141592653589793 rad pos: -71.5,-32.5 @@ -166476,7 +151750,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21774 + - uid: 21781 components: - rot: -1.5707963267948966 rad pos: -67.5,-44.5 @@ -166484,7 +151758,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21775 + - uid: 21782 components: - rot: -1.5707963267948966 rad pos: 18.5,-2.5 @@ -166492,7 +151766,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21776 + - uid: 21783 components: - rot: 1.5707963267948966 rad pos: 60.5,-8.5 @@ -166500,7 +151774,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21777 + - uid: 21784 components: - rot: 1.5707963267948966 rad pos: 57.5,-33.5 @@ -166508,7 +151782,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21778 + - uid: 21785 components: - rot: -1.5707963267948966 rad pos: 75.5,-35.5 @@ -166516,7 +151790,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21779 + - uid: 21786 components: - rot: -1.5707963267948966 rad pos: -5.5,-65.5 @@ -166524,7 +151798,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21780 + - uid: 21787 components: - rot: -1.5707963267948966 rad pos: -15.5,-21.5 @@ -166532,14 +151806,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21781 + - uid: 21788 components: - pos: 67.5,-36.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21782 + - uid: 21789 components: - rot: 1.5707963267948966 rad pos: 60.5,-31.5 @@ -166547,14 +151821,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21783 + - uid: 21790 components: - pos: -62.5,-23.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21784 + - uid: 21791 components: - rot: -1.5707963267948966 rad pos: 73.5,-28.5 @@ -166562,7 +151836,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21785 + - uid: 21792 components: - rot: -1.5707963267948966 rad pos: -53.5,-59.5 @@ -166570,7 +151844,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21786 + - uid: 21793 components: - rot: 1.5707963267948966 rad pos: 71.5,-31.5 @@ -166578,7 +151852,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21787 + - uid: 21794 components: - rot: 3.141592653589793 rad pos: 4.5,-35.5 @@ -166586,7 +151860,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21788 + - uid: 21795 components: - rot: -1.5707963267948966 rad pos: 32.5,28.5 @@ -166594,21 +151868,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21789 + - uid: 21796 components: - pos: 58.5,-28.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21790 + - uid: 21797 components: - pos: 34.5,-16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21791 + - uid: 21798 components: - rot: -1.5707963267948966 rad pos: 6.5,-30.5 @@ -166616,14 +151890,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21792 + - uid: 21799 components: - pos: 55.5,-47.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21793 + - uid: 21800 components: - rot: -1.5707963267948966 rad pos: -43.5,4.5 @@ -166631,7 +151905,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21794 + - uid: 21801 components: - rot: -1.5707963267948966 rad pos: 76.5,-49.5 @@ -166639,7 +151913,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21795 + - uid: 21802 components: - rot: -1.5707963267948966 rad pos: -60.5,-28.5 @@ -166647,14 +151921,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21796 + - uid: 21803 components: - pos: -50.5,35.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21797 + - uid: 21804 components: - rot: -1.5707963267948966 rad pos: -14.5,25.5 @@ -166662,7 +151936,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21798 + - uid: 21805 components: - rot: 1.5707963267948966 rad pos: -0.5,6.5 @@ -166670,7 +151944,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21799 + - uid: 21806 components: - rot: 3.141592653589793 rad pos: 25.5,-25.5 @@ -166678,14 +151952,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21800 + - uid: 21807 components: - pos: -21.5,8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21801 + - uid: 21808 components: - rot: 3.141592653589793 rad pos: -33.5,-0.5 @@ -166693,14 +151967,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21802 + - uid: 21809 components: - pos: -51.5,23.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21803 + - uid: 21810 components: - rot: -1.5707963267948966 rad pos: -44.5,15.5 @@ -166708,7 +151982,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21804 + - uid: 21811 components: - rot: -1.5707963267948966 rad pos: -10.5,-18.5 @@ -166716,7 +151990,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21805 + - uid: 21812 components: - rot: 1.5707963267948966 rad pos: -25.5,-15.5 @@ -166724,7 +151998,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21806 + - uid: 21813 components: - rot: 1.5707963267948966 rad pos: -14.5,-0.5 @@ -166732,7 +152006,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21807 + - uid: 21814 components: - rot: -1.5707963267948966 rad pos: -45.5,10.5 @@ -166740,7 +152014,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21808 + - uid: 21815 components: - rot: 1.5707963267948966 rad pos: 2.5,-49.5 @@ -166748,7 +152022,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21809 + - uid: 21816 components: - rot: -1.5707963267948966 rad pos: 32.5,-21.5 @@ -166756,7 +152030,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21810 + - uid: 21817 components: - rot: 1.5707963267948966 rad pos: 18.5,-21.5 @@ -166764,7 +152038,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21811 + - uid: 21818 components: - rot: 1.5707963267948966 rad pos: -0.5,9.5 @@ -166772,7 +152046,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21812 + - uid: 21819 components: - rot: -1.5707963267948966 rad pos: 6.5,5.5 @@ -166780,7 +152054,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21813 + - uid: 21820 components: - rot: 3.141592653589793 rad pos: 9.5,-1.5 @@ -166788,7 +152062,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21814 + - uid: 21821 components: - rot: 1.5707963267948966 rad pos: -50.5,-38.5 @@ -166796,21 +152070,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21815 + - uid: 21822 components: - pos: -49.5,-34.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21816 + - uid: 21823 components: - pos: 28.5,-80.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21817 + - uid: 21824 components: - rot: -1.5707963267948966 rad pos: 31.5,-88.5 @@ -166818,7 +152092,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21818 + - uid: 21825 components: - rot: -1.5707963267948966 rad pos: 49.5,-80.5 @@ -166826,14 +152100,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21819 + - uid: 21826 components: - pos: 48.5,-71.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21820 + - uid: 21827 components: - rot: -1.5707963267948966 rad pos: 19.5,-82.5 @@ -166841,7 +152115,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21821 + - uid: 21828 components: - rot: 3.141592653589793 rad pos: 12.5,-86.5 @@ -166849,7 +152123,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21822 + - uid: 21829 components: - rot: 1.5707963267948966 rad pos: 22.5,-72.5 @@ -166857,14 +152131,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21823 + - uid: 21830 components: - pos: 29.5,-71.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21824 + - uid: 21831 components: - rot: -1.5707963267948966 rad pos: 40.5,-66.5 @@ -166872,21 +152146,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21825 + - uid: 21832 components: - pos: 24.5,-69.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21826 + - uid: 21833 components: - pos: 15.5,-79.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21827 + - uid: 21834 components: - rot: 1.5707963267948966 rad pos: 37.5,11.5 @@ -166894,7 +152168,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21828 + - uid: 21835 components: - rot: 3.141592653589793 rad pos: 28.5,-2.5 @@ -166902,7 +152176,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21829 + - uid: 21836 components: - rot: -1.5707963267948966 rad pos: -38.5,-47.5 @@ -166910,7 +152184,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 21830 + - uid: 21837 components: - rot: 1.5707963267948966 rad pos: -44.5,-41.5 @@ -166918,7 +152192,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 21831 + - uid: 21838 components: - rot: 1.5707963267948966 rad pos: 20.5,22.5 @@ -166926,7 +152200,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 21832 + - uid: 21839 components: - rot: -1.5707963267948966 rad pos: -45.5,41.5 @@ -166934,7 +152208,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 21833 + - uid: 21840 components: - rot: 1.5707963267948966 rad pos: -50.5,44.5 @@ -166942,7 +152216,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 21834 + - uid: 21841 components: - rot: 3.141592653589793 rad pos: 67.5,-31.5 @@ -166950,7 +152224,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 21835 + - uid: 21842 components: - rot: 1.5707963267948966 rad pos: 65.5,-29.5 @@ -166960,7 +152234,7 @@ entities: type: AmbientSound - proto: PoweredlightEmpty entities: - - uid: 21836 + - uid: 21843 components: - rot: 3.141592653589793 rad pos: -39.5,-85.5 @@ -166968,7 +152242,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21837 + - uid: 21844 components: - rot: 3.141592653589793 rad pos: -40.5,-92.5 @@ -166976,7 +152250,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21838 + - uid: 21845 components: - rot: 3.141592653589793 rad pos: -40.5,-97.5 @@ -166984,7 +152258,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21839 + - uid: 21846 components: - rot: 3.141592653589793 rad pos: -28.5,-98.5 @@ -166992,7 +152266,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21840 + - uid: 21847 components: - rot: 3.141592653589793 rad pos: -16.5,-98.5 @@ -167002,14 +152276,14 @@ entities: type: ApcPowerReceiver - proto: PoweredlightExterior entities: - - uid: 21841 + - uid: 21848 components: - pos: -1.5,72.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21842 + - uid: 21849 components: - rot: 1.5707963267948966 rad pos: -7.5,68.5 @@ -167017,7 +152291,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21843 + - uid: 21850 components: - rot: -1.5707963267948966 rad pos: 4.5,68.5 @@ -167025,7 +152299,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21844 + - uid: 21851 components: - rot: -1.5707963267948966 rad pos: -54.5,-85.5 @@ -167033,7 +152307,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21845 + - uid: 21852 components: - rot: -1.5707963267948966 rad pos: -54.5,-89.5 @@ -167043,19 +152317,19 @@ entities: type: ApcPowerReceiver - proto: PoweredLightPostSmall entities: - - uid: 21846 + - uid: 21853 components: - pos: -0.5,-85.5 parent: 2 type: Transform - - uid: 21847 + - uid: 21854 components: - pos: -2.5,-85.5 parent: 2 type: Transform - proto: PoweredlightSodium entities: - - uid: 21848 + - uid: 21855 components: - rot: 3.141592653589793 rad pos: 72.5,34.5 @@ -167063,7 +152337,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21849 + - uid: 21856 components: - rot: 1.5707963267948966 rad pos: 14.5,-65.5 @@ -167071,28 +152345,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21850 + - uid: 21857 components: - pos: -18.5,4.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21851 + - uid: 21858 components: - pos: -40.5,-15.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21852 + - uid: 21859 components: - pos: -20.5,-95.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21853 + - uid: 21860 components: - rot: 3.141592653589793 rad pos: -7.5,-100.5 @@ -167100,7 +152374,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21854 + - uid: 21861 components: - rot: -1.5707963267948966 rad pos: 12.5,-20.5 @@ -167110,20 +152384,20 @@ entities: type: ApcPowerReceiver - proto: PoweredSmallLight entities: - - uid: 21855 + - uid: 21862 components: - rot: -1.5707963267948966 rad pos: -49.5,46.5 parent: 2 type: Transform - - uid: 21856 + - uid: 21863 components: - pos: 20.5,-52.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21857 + - uid: 21864 components: - rot: 3.141592653589793 rad pos: 16.5,-55.5 @@ -167131,14 +152405,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21858 + - uid: 21865 components: - pos: 16.5,-52.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21859 + - uid: 21866 components: - rot: -1.5707963267948966 rad pos: 29.5,-39.5 @@ -167146,14 +152420,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21860 + - uid: 21867 components: - pos: 1.5,-40.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21861 + - uid: 21868 components: - rot: 1.5707963267948966 rad pos: -31.5,-47.5 @@ -167161,7 +152435,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21862 + - uid: 21869 components: - rot: 3.141592653589793 rad pos: 20.5,-32.5 @@ -167169,7 +152443,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21863 + - uid: 21870 components: - rot: -1.5707963267948966 rad pos: -4.5,-74.5 @@ -167177,21 +152451,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21864 + - uid: 21871 components: - pos: 0.5,-73.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21865 + - uid: 21872 components: - pos: 33.5,-10.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21866 + - uid: 21873 components: - rot: 3.141592653589793 rad pos: 10.5,-17.5 @@ -167199,7 +152473,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21867 + - uid: 21874 components: - rot: 1.5707963267948966 rad pos: 17.5,-12.5 @@ -167207,7 +152481,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21868 + - uid: 21875 components: - rot: -1.5707963267948966 rad pos: 22.5,-13.5 @@ -167215,7 +152489,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21869 + - uid: 21876 components: - rot: -1.5707963267948966 rad pos: 4.5,-11.5 @@ -167223,7 +152497,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21870 + - uid: 21877 components: - rot: 1.5707963267948966 rad pos: -74.5,-12.5 @@ -167231,7 +152505,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21871 + - uid: 21878 components: - rot: 1.5707963267948966 rad pos: 6.5,49.5 @@ -167239,14 +152513,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21872 + - uid: 21879 components: - pos: 33.5,-89.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21873 + - uid: 21880 components: - rot: -1.5707963267948966 rad pos: -7.5,-5.5 @@ -167254,14 +152528,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21874 + - uid: 21881 components: - pos: 23.5,-39.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21875 + - uid: 21882 components: - rot: -1.5707963267948966 rad pos: 26.5,-29.5 @@ -167269,7 +152543,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21876 + - uid: 21883 components: - rot: 1.5707963267948966 rad pos: -2.5,-78.5 @@ -167277,14 +152551,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21877 + - uid: 21884 components: - pos: -15.5,-63.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21878 + - uid: 21885 components: - rot: 3.141592653589793 rad pos: -13.5,-67.5 @@ -167292,14 +152566,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21879 + - uid: 21886 components: - pos: -20.5,-66.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21880 + - uid: 21887 components: - rot: 3.141592653589793 rad pos: -5.5,-50.5 @@ -167307,28 +152581,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21881 + - uid: 21888 components: - pos: -20.5,-63.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21882 + - uid: 21889 components: - pos: -15.5,-75.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21883 + - uid: 21890 components: - pos: -15.5,-69.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21884 + - uid: 21891 components: - rot: 3.141592653589793 rad pos: -15.5,-79.5 @@ -167336,7 +152610,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21885 + - uid: 21892 components: - rot: 1.5707963267948966 rad pos: -30.5,-80.5 @@ -167344,7 +152618,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21886 + - uid: 21893 components: - rot: 1.5707963267948966 rad pos: -30.5,-78.5 @@ -167352,7 +152626,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21887 + - uid: 21894 components: - rot: 3.141592653589793 rad pos: -26.5,-90.5 @@ -167360,7 +152634,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21888 + - uid: 21895 components: - rot: 3.141592653589793 rad pos: -22.5,-90.5 @@ -167368,7 +152642,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21889 + - uid: 21896 components: - rot: -1.5707963267948966 rad pos: -50.5,-23.5 @@ -167376,7 +152650,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21890 + - uid: 21897 components: - rot: 3.141592653589793 rad pos: -30.5,-7.5 @@ -167384,7 +152658,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21891 + - uid: 21898 components: - rot: -1.5707963267948966 rad pos: 22.5,12.5 @@ -167392,7 +152666,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21892 + - uid: 21899 components: - rot: -1.5707963267948966 rad pos: -14.5,-37.5 @@ -167400,14 +152674,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21893 - components: - - pos: -11.5,-32.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 21894 + - uid: 21901 components: - rot: -1.5707963267948966 rad pos: 55.5,29.5 @@ -167415,28 +152682,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21895 + - uid: 21902 components: - pos: 49.5,-33.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21896 + - uid: 21903 components: - pos: -8.5,-29.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21897 + - uid: 21904 components: - pos: -16.5,-29.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21898 + - uid: 21905 components: - rot: -1.5707963267948966 rad pos: 30.5,25.5 @@ -167444,21 +152711,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21899 + - uid: 21906 components: - pos: 37.5,8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21900 + - uid: 21907 components: - pos: 37.5,5.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21901 + - uid: 21908 components: - rot: 1.5707963267948966 rad pos: 34.5,11.5 @@ -167466,7 +152733,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21902 + - uid: 21909 components: - rot: 1.5707963267948966 rad pos: 31.5,11.5 @@ -167474,7 +152741,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21903 + - uid: 21910 components: - rot: 1.5707963267948966 rad pos: 28.5,11.5 @@ -167482,7 +152749,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21904 + - uid: 21911 components: - rot: 3.141592653589793 rad pos: 45.5,14.5 @@ -167490,7 +152757,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21905 + - uid: 21912 components: - rot: 1.5707963267948966 rad pos: 58.5,23.5 @@ -167498,7 +152765,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21906 + - uid: 21913 components: - rot: 1.5707963267948966 rad pos: 55.5,23.5 @@ -167506,7 +152773,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21907 + - uid: 21914 components: - rot: 1.5707963267948966 rad pos: 52.5,23.5 @@ -167514,7 +152781,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21908 + - uid: 21915 components: - rot: 1.5707963267948966 rad pos: 49.5,23.5 @@ -167522,7 +152789,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21909 + - uid: 21916 components: - rot: 1.5707963267948966 rad pos: 46.5,23.5 @@ -167530,21 +152797,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21910 + - uid: 21917 components: - pos: 61.5,19.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21911 + - uid: 21918 components: - pos: 61.5,16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21912 + - uid: 21919 components: - rot: 1.5707963267948966 rad pos: 62.5,11.5 @@ -167552,14 +152819,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21913 + - uid: 21920 components: - pos: 62.5,22.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21914 + - uid: 21921 components: - rot: -1.5707963267948966 rad pos: 54.5,12.5 @@ -167567,7 +152834,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21915 + - uid: 21922 components: - rot: 1.5707963267948966 rad pos: 62.5,6.5 @@ -167575,14 +152842,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21916 + - uid: 21923 components: - pos: 60.5,2.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21917 + - uid: 21924 components: - rot: 1.5707963267948966 rad pos: 56.5,-1.5 @@ -167590,14 +152857,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21918 + - uid: 21925 components: - pos: 35.5,20.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21919 + - uid: 21926 components: - rot: 1.5707963267948966 rad pos: 44.5,18.5 @@ -167605,7 +152872,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21920 + - uid: 21927 components: - rot: -1.5707963267948966 rad pos: 48.5,-2.5 @@ -167613,14 +152880,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21921 + - uid: 21928 components: - pos: 49.5,-7.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21922 + - uid: 21929 components: - rot: -1.5707963267948966 rad pos: 62.5,-38.5 @@ -167628,7 +152895,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21923 + - uid: 21930 components: - rot: -1.5707963267948966 rad pos: 39.5,-45.5 @@ -167636,7 +152903,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21924 + - uid: 21931 components: - rot: 1.5707963267948966 rad pos: 62.5,-19.5 @@ -167644,7 +152911,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21925 + - uid: 21932 components: - rot: -1.5707963267948966 rad pos: 62.5,-15.5 @@ -167652,14 +152919,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21926 + - uid: 21933 components: - pos: -18.5,-0.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21927 + - uid: 21934 components: - rot: -1.5707963267948966 rad pos: -28.5,-21.5 @@ -167667,35 +152934,35 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21928 + - uid: 21935 components: - pos: 46.5,-51.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21929 + - uid: 21936 components: - pos: 12.5,-72.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21930 + - uid: 21937 components: - pos: 45.5,-89.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21931 + - uid: 21938 components: - pos: 45.5,-82.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21932 + - uid: 21939 components: - rot: 1.5707963267948966 rad pos: 48.5,-94.5 @@ -167703,14 +152970,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21933 + - uid: 21940 components: - pos: 20.5,-73.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21934 + - uid: 21941 components: - rot: 1.5707963267948966 rad pos: -32.5,-5.5 @@ -167718,28 +152985,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21935 + - uid: 21942 components: - pos: -20.5,-45.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21936 + - uid: 21943 components: - pos: -26.5,-26.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21937 + - uid: 21944 components: - pos: 43.5,-51.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21938 + - uid: 21945 components: - rot: 1.5707963267948966 rad pos: 36.5,-51.5 @@ -167747,7 +153014,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21939 + - uid: 21946 components: - rot: -1.5707963267948966 rad pos: 15.5,-48.5 @@ -167755,49 +153022,49 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21940 + - uid: 21947 components: - pos: 10.5,-55.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21941 + - uid: 21948 components: - pos: 15.5,-57.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21942 + - uid: 21949 components: - pos: 9.5,-64.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21943 + - uid: 21950 components: - pos: -5.5,-68.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21944 + - uid: 21951 components: - pos: -43.5,-33.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21945 + - uid: 21952 components: - pos: -33.5,-69.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21946 + - uid: 21953 components: - rot: 1.5707963267948966 rad pos: -56.5,-78.5 @@ -167805,7 +153072,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21947 + - uid: 21954 components: - rot: 3.141592653589793 rad pos: -51.5,-79.5 @@ -167813,14 +153080,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21948 + - uid: 21955 components: - pos: -26.5,-66.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21949 + - uid: 21956 components: - rot: 1.5707963267948966 rad pos: -28.5,-61.5 @@ -167828,7 +153095,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21950 + - uid: 21957 components: - rot: 1.5707963267948966 rad pos: -50.5,-68.5 @@ -167836,21 +153103,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21951 + - uid: 21958 components: - pos: -37.5,-63.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21952 + - uid: 21959 components: - pos: -44.5,-63.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21953 + - uid: 21960 components: - rot: 1.5707963267948966 rad pos: -22.5,-55.5 @@ -167858,14 +153125,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21954 + - uid: 21961 components: - pos: -29.5,-43.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21955 + - uid: 21962 components: - rot: 1.5707963267948966 rad pos: -28.5,-53.5 @@ -167873,14 +153140,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21956 + - uid: 21963 components: - pos: -22.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21957 + - uid: 21964 components: - rot: 1.5707963267948966 rad pos: -29.5,-41.5 @@ -167888,21 +153155,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21958 + - uid: 21965 components: - pos: 24.5,-32.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21959 + - uid: 21966 components: - pos: 44.5,-13.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21960 + - uid: 21967 components: - rot: 1.5707963267948966 rad pos: 35.5,-13.5 @@ -167910,21 +153177,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21961 + - uid: 21968 components: - pos: 39.5,-7.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21962 + - uid: 21969 components: - pos: 31.5,-8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21963 + - uid: 21970 components: - rot: 1.5707963267948966 rad pos: 46.5,-7.5 @@ -167932,7 +153199,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21964 + - uid: 21971 components: - rot: 1.5707963267948966 rad pos: 65.5,24.5 @@ -167940,14 +153207,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21965 + - uid: 21972 components: - pos: 57.5,26.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21966 + - uid: 21973 components: - rot: 3.141592653589793 rad pos: 49.5,26.5 @@ -167955,28 +153222,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21967 + - uid: 21974 components: - pos: -41.5,-24.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21968 + - uid: 21975 components: - pos: -39.5,-28.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21969 + - uid: 21976 components: - pos: -45.5,-27.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21970 + - uid: 21977 components: - rot: 1.5707963267948966 rad pos: -44.5,-30.5 @@ -167984,7 +153251,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21971 + - uid: 21978 components: - rot: -1.5707963267948966 rad pos: -35.5,-29.5 @@ -167992,14 +153259,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21972 + - uid: 21979 components: - pos: -49.5,-32.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21973 + - uid: 21980 components: - rot: -1.5707963267948966 rad pos: -54.5,-33.5 @@ -168007,7 +153274,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21974 + - uid: 21981 components: - rot: 1.5707963267948966 rad pos: -57.5,-38.5 @@ -168015,7 +153282,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21975 + - uid: 21982 components: - rot: 1.5707963267948966 rad pos: -29.5,-29.5 @@ -168023,14 +153290,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21976 + - uid: 21983 components: - pos: -29.5,-25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21977 + - uid: 21984 components: - rot: 3.141592653589793 rad pos: -35.5,-26.5 @@ -168038,14 +153305,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21978 + - uid: 21985 components: - pos: 15.5,-8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21979 + - uid: 21986 components: - rot: 1.5707963267948966 rad pos: 14.5,-4.5 @@ -168053,7 +153320,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21980 + - uid: 21987 components: - rot: 3.141592653589793 rad pos: 14.5,-14.5 @@ -168061,7 +153328,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21981 + - uid: 21988 components: - rot: 1.5707963267948966 rad pos: -0.5,-13.5 @@ -168069,21 +153336,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21982 + - uid: 21989 components: - pos: 1.5,-16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21983 + - uid: 21990 components: - pos: -51.5,-27.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21984 + - uid: 21991 components: - rot: 1.5707963267948966 rad pos: -32.5,-7.5 @@ -168091,7 +153358,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21985 + - uid: 21992 components: - rot: 1.5707963267948966 rad pos: 62.5,28.5 @@ -168099,56 +153366,56 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21986 + - uid: 21993 components: - pos: -49.5,-42.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21987 + - uid: 21994 components: - pos: -49.5,-44.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21988 + - uid: 21995 components: - pos: -49.5,-46.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21989 + - uid: 21996 components: - pos: -49.5,-48.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21990 + - uid: 21997 components: - pos: -49.5,-50.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21991 + - uid: 21998 components: - pos: -49.5,-52.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21992 + - uid: 21999 components: - pos: -49.5,-54.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21993 + - uid: 22000 components: - rot: 1.5707963267948966 rad pos: 15.5,33.5 @@ -168156,14 +153423,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21994 + - uid: 22001 components: - pos: 21.5,25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21995 + - uid: 22002 components: - rot: 3.141592653589793 rad pos: 11.5,24.5 @@ -168171,14 +153438,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21996 + - uid: 22003 components: - pos: -6.5,32.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21997 + - uid: 22004 components: - rot: -1.5707963267948966 rad pos: 0.5,33.5 @@ -168186,7 +153453,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21998 + - uid: 22005 components: - rot: 1.5707963267948966 rad pos: -0.5,-10.5 @@ -168194,7 +153461,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21999 + - uid: 22006 components: - rot: 1.5707963267948966 rad pos: -54.5,-0.5 @@ -168202,7 +153469,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22000 + - uid: 22007 components: - rot: -1.5707963267948966 rad pos: -28.5,-3.5 @@ -168210,7 +153477,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22001 + - uid: 22008 components: - rot: 1.5707963267948966 rad pos: -41.5,4.5 @@ -168218,7 +153485,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22002 + - uid: 22009 components: - rot: 3.141592653589793 rad pos: -30.5,3.5 @@ -168226,7 +153493,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22003 + - uid: 22010 components: - rot: 1.5707963267948966 rad pos: -33.5,9.5 @@ -168234,7 +153501,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22004 + - uid: 22011 components: - rot: -1.5707963267948966 rad pos: -28.5,9.5 @@ -168242,7 +153509,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22005 + - uid: 22012 components: - rot: -1.5707963267948966 rad pos: -29.5,14.5 @@ -168250,14 +153517,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22006 + - uid: 22013 components: - pos: -35.5,15.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22007 + - uid: 22014 components: - rot: -1.5707963267948966 rad pos: -35.5,9.5 @@ -168265,7 +153532,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22008 + - uid: 22015 components: - rot: 1.5707963267948966 rad pos: -40.5,9.5 @@ -168273,14 +153540,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22009 + - uid: 22016 components: - pos: -13.5,13.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22010 + - uid: 22017 components: - rot: -1.5707963267948966 rad pos: -12.5,19.5 @@ -168288,7 +153555,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22011 + - uid: 22018 components: - rot: 1.5707963267948966 rad pos: -16.5,21.5 @@ -168296,7 +153563,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22012 + - uid: 22019 components: - rot: -1.5707963267948966 rad pos: -14.5,14.5 @@ -168304,14 +153571,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22013 + - uid: 22020 components: - pos: -9.5,16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22014 + - uid: 22021 components: - rot: 3.141592653589793 rad pos: -9.5,21.5 @@ -168319,7 +153586,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22015 + - uid: 22022 components: - rot: 3.141592653589793 rad pos: -4.5,16.5 @@ -168327,14 +153594,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22016 + - uid: 22023 components: - pos: -0.5,24.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22017 + - uid: 22024 components: - rot: -1.5707963267948966 rad pos: -42.5,10.5 @@ -168342,7 +153609,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22018 + - uid: 22025 components: - rot: 1.5707963267948966 rad pos: -52.5,14.5 @@ -168350,7 +153617,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22019 + - uid: 22026 components: - rot: -1.5707963267948966 rad pos: -51.5,7.5 @@ -168358,28 +153625,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22020 + - uid: 22027 components: - pos: -44.5,-2.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22021 + - uid: 22028 components: - pos: -40.5,-2.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22022 + - uid: 22029 components: - pos: -49.5,1.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22023 + - uid: 22030 components: - rot: -1.5707963267948966 rad pos: -37.5,-39.5 @@ -168387,14 +153654,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22024 + - uid: 22031 components: - pos: -35.5,-38.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22025 + - uid: 22032 components: - rot: -1.5707963267948966 rad pos: 2.5,-69.5 @@ -168402,7 +153669,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22026 + - uid: 22033 components: - rot: 3.141592653589793 rad pos: -63.5,-21.5 @@ -168410,7 +153677,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22027 + - uid: 22034 components: - rot: 3.141592653589793 rad pos: -69.5,-21.5 @@ -168418,7 +153685,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22028 + - uid: 22035 components: - rot: 1.5707963267948966 rad pos: -73.5,-13.5 @@ -168426,21 +153693,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22029 + - uid: 22036 components: - pos: -68.5,-5.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22030 + - uid: 22037 components: - pos: -64.5,-5.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22031 + - uid: 22038 components: - rot: -1.5707963267948966 rad pos: -57.5,-10.5 @@ -168448,7 +153715,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22032 + - uid: 22039 components: - rot: -1.5707963267948966 rad pos: -57.5,-16.5 @@ -168456,7 +153723,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22033 + - uid: 22040 components: - rot: -1.5707963267948966 rad pos: 61.5,24.5 @@ -168464,7 +153731,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22034 + - uid: 22041 components: - rot: -1.5707963267948966 rad pos: 63.5,24.5 @@ -168472,7 +153739,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22035 + - uid: 22042 components: - rot: 3.141592653589793 rad pos: 63.5,13.5 @@ -168480,7 +153747,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22036 + - uid: 22043 components: - rot: 3.141592653589793 rad pos: 63.5,11.5 @@ -168488,7 +153755,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22037 + - uid: 22044 components: - rot: 3.141592653589793 rad pos: 63.5,9.5 @@ -168496,7 +153763,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22038 + - uid: 22045 components: - rot: -1.5707963267948966 rad pos: 19.5,-29.5 @@ -168504,7 +153771,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22039 + - uid: 22046 components: - rot: 3.141592653589793 rad pos: -47.5,53.5 @@ -168512,7 +153779,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22040 + - uid: 22047 components: - rot: 3.141592653589793 rad pos: -41.5,53.5 @@ -168520,7 +153787,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22041 + - uid: 22048 components: - rot: 1.5707963267948966 rad pos: -40.5,52.5 @@ -168528,7 +153795,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22042 + - uid: 22049 components: - rot: 1.5707963267948966 rad pos: -46.5,52.5 @@ -168536,14 +153803,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22043 + - uid: 22050 components: - pos: -48.5,-25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22044 + - uid: 22051 components: - rot: -1.5707963267948966 rad pos: 23.5,34.5 @@ -168551,14 +153818,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22045 + - uid: 22052 components: - pos: -6.5,14.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22046 + - uid: 22053 components: - rot: 1.5707963267948966 rad pos: 13.5,-45.5 @@ -168566,21 +153833,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22047 + - uid: 22054 components: - pos: -51.5,-73.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22048 + - uid: 22055 components: - pos: -8.5,-71.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22049 + - uid: 22056 components: - rot: 1.5707963267948966 rad pos: 7.5,-17.5 @@ -168588,7 +153855,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22050 + - uid: 22057 components: - rot: -1.5707963267948966 rad pos: -72.5,-34.5 @@ -168596,7 +153863,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22051 + - uid: 22058 components: - rot: 3.141592653589793 rad pos: 39.5,-30.5 @@ -168604,7 +153871,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22052 + - uid: 22059 components: - rot: 3.141592653589793 rad pos: 29.5,-32.5 @@ -168612,14 +153879,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22053 + - uid: 22060 components: - pos: -30.5,-54.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22054 + - uid: 22061 components: - rot: 3.141592653589793 rad pos: 10.5,-47.5 @@ -168627,14 +153894,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22055 + - uid: 22062 components: - pos: 56.5,59.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22056 + - uid: 22063 components: - rot: 3.141592653589793 rad pos: 52.5,55.5 @@ -168642,7 +153909,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22057 + - uid: 22064 components: - rot: 3.141592653589793 rad pos: 58.5,42.5 @@ -168650,7 +153917,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22058 + - uid: 22065 components: - rot: 3.141592653589793 rad pos: 51.5,42.5 @@ -168658,14 +153925,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22059 + - uid: 22066 components: - pos: 15.5,39.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22060 + - uid: 22067 components: - rot: 1.5707963267948966 rad pos: 60.5,46.5 @@ -168673,7 +153940,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22061 + - uid: 22068 components: - rot: 1.5707963267948966 rad pos: 65.5,9.5 @@ -168681,21 +153948,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22062 + - uid: 22069 components: - pos: 9.5,34.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22063 + - uid: 22070 components: - pos: -23.5,31.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22064 + - uid: 22071 components: - rot: 3.141592653589793 rad pos: 57.5,28.5 @@ -168703,7 +153970,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22065 + - uid: 22072 components: - rot: 1.5707963267948966 rad pos: -21.5,33.5 @@ -168711,28 +153978,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22066 + - uid: 22073 components: - pos: 46.5,39.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22067 + - uid: 22074 components: - pos: 54.5,50.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22068 + - uid: 22075 components: - pos: 45.5,32.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22069 + - uid: 22076 components: - rot: -1.5707963267948966 rad pos: 48.5,46.5 @@ -168740,7 +154007,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22070 + - uid: 22077 components: - rot: -1.5707963267948966 rad pos: -11.5,33.5 @@ -168748,14 +154015,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22071 + - uid: 22078 components: - pos: -11.5,39.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22072 + - uid: 22079 components: - rot: 3.141592653589793 rad pos: 43.5,44.5 @@ -168763,7 +154030,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22073 + - uid: 22080 components: - rot: 3.141592653589793 rad pos: -20.5,37.5 @@ -168771,14 +154038,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22074 + - uid: 22081 components: - pos: -27.5,46.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22075 + - uid: 22082 components: - rot: -1.5707963267948966 rad pos: -20.5,48.5 @@ -168786,14 +154053,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22076 + - uid: 22083 components: - pos: -10.5,29.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22077 + - uid: 22084 components: - rot: -1.5707963267948966 rad pos: -17.5,69.5 @@ -168801,7 +154068,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22078 + - uid: 22085 components: - rot: -1.5707963267948966 rad pos: -12.5,74.5 @@ -168809,7 +154076,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22079 + - uid: 22086 components: - rot: 1.5707963267948966 rad pos: -22.5,74.5 @@ -168817,7 +154084,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22080 + - uid: 22087 components: - rot: 3.141592653589793 rad pos: -15.5,60.5 @@ -168825,14 +154092,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22081 + - uid: 22088 components: - pos: -18.5,55.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22082 + - uid: 22089 components: - rot: -1.5707963267948966 rad pos: -24.5,42.5 @@ -168840,7 +154107,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22083 + - uid: 22090 components: - rot: 3.141592653589793 rad pos: -25.5,33.5 @@ -168848,21 +154115,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22084 + - uid: 22091 components: - pos: -30.5,39.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22085 + - uid: 22092 components: - pos: -42.5,39.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22086 + - uid: 22093 components: - rot: 3.141592653589793 rad pos: -28.5,27.5 @@ -168870,7 +154137,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22087 + - uid: 22094 components: - rot: 3.141592653589793 rad pos: 54.5,52.5 @@ -168878,7 +154145,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22088 + - uid: 22095 components: - rot: -1.5707963267948966 rad pos: -45.5,-87.5 @@ -168886,14 +154153,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22089 + - uid: 22096 components: - pos: -71.5,-36.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22090 + - uid: 22097 components: - rot: -1.5707963267948966 rad pos: -69.5,-39.5 @@ -168901,14 +154168,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22091 + - uid: 22098 components: - pos: -65.5,-43.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22092 + - uid: 22099 components: - rot: 1.5707963267948966 rad pos: 8.5,-37.5 @@ -168916,7 +154183,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22093 + - uid: 22100 components: - rot: 1.5707963267948966 rad pos: 74.5,-40.5 @@ -168924,28 +154191,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22094 + - uid: 22101 components: - pos: 67.5,-33.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22095 + - uid: 22102 components: - pos: 67.5,-11.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22096 + - uid: 22103 components: - pos: 67.5,-3.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22097 + - uid: 22104 components: - rot: -1.5707963267948966 rad pos: -5.5,-56.5 @@ -168953,21 +154220,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22098 + - uid: 22105 components: - pos: 67.5,-5.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22099 + - uid: 22106 components: - pos: 67.5,-13.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22100 + - uid: 22107 components: - rot: -1.5707963267948966 rad pos: -8.5,-56.5 @@ -168975,7 +154242,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22101 + - uid: 22108 components: - rot: -1.5707963267948966 rad pos: -11.5,-56.5 @@ -168983,7 +154250,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22102 + - uid: 22109 components: - rot: -1.5707963267948966 rad pos: 0.5,-56.5 @@ -168991,7 +154258,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22103 + - uid: 22110 components: - rot: -1.5707963267948966 rad pos: -2.5,-56.5 @@ -168999,21 +154266,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22104 + - uid: 22111 components: - pos: 78.5,-33.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22105 + - uid: 22112 components: - pos: 78.5,-36.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22106 + - uid: 22113 components: - rot: 1.5707963267948966 rad pos: 54.5,-55.5 @@ -169021,7 +154288,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22107 + - uid: 22114 components: - rot: 3.141592653589793 rad pos: 41.5,-33.5 @@ -169029,7 +154296,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22108 + - uid: 22115 components: - rot: 1.5707963267948966 rad pos: 77.5,-57.5 @@ -169037,7 +154304,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22109 + - uid: 22116 components: - rot: -1.5707963267948966 rad pos: 43.5,-63.5 @@ -169045,7 +154312,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22110 + - uid: 22117 components: - rot: -1.5707963267948966 rad pos: 56.5,-66.5 @@ -169053,7 +154320,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22111 + - uid: 22118 components: - rot: 3.141592653589793 rad pos: 54.5,-37.5 @@ -169061,7 +154328,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22112 + - uid: 22119 components: - rot: 1.5707963267948966 rad pos: 53.5,-26.5 @@ -169069,14 +154336,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22113 + - uid: 22120 components: - pos: 59.5,-26.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22114 + - uid: 22121 components: - rot: -1.5707963267948966 rad pos: 63.5,-68.5 @@ -169084,7 +154351,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22115 + - uid: 22122 components: - rot: 1.5707963267948966 rad pos: 58.5,-66.5 @@ -169092,7 +154359,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22116 + - uid: 22123 components: - rot: 3.141592653589793 rad pos: 67.5,-66.5 @@ -169100,7 +154367,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22117 + - uid: 22124 components: - rot: 1.5707963267948966 rad pos: 72.5,-67.5 @@ -169108,7 +154375,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22118 + - uid: 22125 components: - rot: 1.5707963267948966 rad pos: 75.5,-53.5 @@ -169116,7 +154383,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22119 + - uid: 22126 components: - rot: 1.5707963267948966 rad pos: 73.5,-63.5 @@ -169124,7 +154391,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22120 + - uid: 22127 components: - rot: -1.5707963267948966 rad pos: 72.5,-55.5 @@ -169132,7 +154399,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22121 + - uid: 22128 components: - rot: 3.141592653589793 rad pos: -11.5,41.5 @@ -169140,7 +154407,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22122 + - uid: 22129 components: - rot: 1.5707963267948966 rad pos: -42.5,13.5 @@ -169148,7 +154415,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22123 + - uid: 22130 components: - rot: -1.5707963267948966 rad pos: 30.5,-94.5 @@ -169156,7 +154423,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22124 + - uid: 22131 components: - rot: 1.5707963267948966 rad pos: -8.5,-18.5 @@ -169164,7 +154431,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22125 + - uid: 22132 components: - rot: -1.5707963267948966 rad pos: -7.5,-12.5 @@ -169172,7 +154439,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22126 + - uid: 22133 components: - rot: 1.5707963267948966 rad pos: -13.5,-13.5 @@ -169180,21 +154447,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22127 + - uid: 22134 components: - pos: -8.5,-8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22128 + - uid: 22135 components: - pos: -12.5,-8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22129 + - uid: 22136 components: - rot: 1.5707963267948966 rad pos: -16.5,-9.5 @@ -169202,14 +154469,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22130 + - uid: 22137 components: - pos: -15.5,-12.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22131 + - uid: 22138 components: - rot: -1.5707963267948966 rad pos: -28.5,-5.5 @@ -169217,7 +154484,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22132 + - uid: 22139 components: - rot: -1.5707963267948966 rad pos: -28.5,-7.5 @@ -169225,7 +154492,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22133 + - uid: 22140 components: - rot: -1.5707963267948966 rad pos: -8.5,-68.5 @@ -169233,21 +154500,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22134 + - uid: 22141 components: - pos: 13.5,-31.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22135 + - uid: 22142 components: - pos: -19.5,-51.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22136 + - uid: 22143 components: - rot: 3.141592653589793 rad pos: -19.5,-49.5 @@ -169255,7 +154522,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22137 + - uid: 22144 components: - rot: 1.5707963267948966 rad pos: 28.5,-14.5 @@ -169263,7 +154530,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22138 + - uid: 22145 components: - rot: 1.5707963267948966 rad pos: 29.5,-12.5 @@ -169271,21 +154538,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22139 + - uid: 22146 components: - pos: 33.5,-82.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22140 + - uid: 22147 components: - pos: 22.5,-83.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22141 + - uid: 22148 components: - rot: 3.141592653589793 rad pos: 5.5,-23.5 @@ -169293,14 +154560,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22142 + - uid: 22149 components: - pos: -57.5,-18.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22143 + - uid: 22150 components: - rot: 1.5707963267948966 rad pos: 6.5,-78.5 @@ -169308,14 +154575,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22144 + - uid: 22151 components: - pos: 3.5,-73.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22145 + - uid: 22152 components: - rot: -1.5707963267948966 rad pos: 6.5,-85.5 @@ -169323,37 +154590,43 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22146 + - uid: 22153 components: - rot: 3.141592653589793 rad pos: 32.5,-25.5 parent: 2 type: Transform - - uid: 22147 + - uid: 22154 components: - rot: 3.141592653589793 rad pos: 18.5,-25.5 parent: 2 type: Transform - - uid: 22148 + - uid: 22155 components: - pos: -52.5,43.5 parent: 2 type: Transform - - uid: 22149 + - uid: 22156 components: - rot: -1.5707963267948966 rad pos: -37.5,42.5 parent: 2 type: Transform - - uid: 24768 + - uid: 28589 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-33.5 + parent: 2 + type: Transform + - uid: 30695 components: - pos: -15.5,-33.5 parent: 2 type: Transform - proto: PoweredSmallLightEmpty entities: - - uid: 22150 + - uid: 22157 components: - rot: -1.5707963267948966 rad pos: -36.5,-79.5 @@ -169361,7 +154634,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22151 + - uid: 22158 components: - rot: 3.141592653589793 rad pos: -37.5,-84.5 @@ -169369,7 +154642,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22152 + - uid: 22159 components: - rot: 3.141592653589793 rad pos: -46.5,-84.5 @@ -169377,7 +154650,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22153 + - uid: 22160 components: - rot: 1.5707963267948966 rad pos: -47.5,-79.5 @@ -169385,14 +154658,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22154 + - uid: 22161 components: - pos: -42.5,-74.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22155 + - uid: 22162 components: - rot: -1.5707963267948966 rad pos: -36.5,-72.5 @@ -169400,7 +154673,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22156 + - uid: 22163 components: - rot: 1.5707963267948966 rad pos: -47.5,-72.5 @@ -169408,7 +154681,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22157 + - uid: 22164 components: - rot: 1.5707963267948966 rad pos: -56.5,-80.5 @@ -169416,7 +154689,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22158 + - uid: 22165 components: - rot: 1.5707963267948966 rad pos: -56.5,-74.5 @@ -169424,7 +154697,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22159 + - uid: 22166 components: - rot: 1.5707963267948966 rad pos: -56.5,-72.5 @@ -169432,7 +154705,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22160 + - uid: 22167 components: - rot: -1.5707963267948966 rad pos: -27.5,-36.5 @@ -169440,14 +154713,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22161 + - uid: 22168 components: - pos: 57.5,34.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22162 + - uid: 22169 components: - rot: -1.5707963267948966 rad pos: 43.5,47.5 @@ -169455,7 +154728,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22163 + - uid: 22170 components: - rot: 1.5707963267948966 rad pos: 36.5,50.5 @@ -169463,7 +154736,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22164 + - uid: 22171 components: - rot: 3.141592653589793 rad pos: 37.5,43.5 @@ -169471,7 +154744,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22165 + - uid: 22172 components: - pos: 34.5,47.5 parent: 2 @@ -169480,7 +154753,7 @@ entities: type: ApcPowerReceiver - proto: Protolathe entities: - - uid: 22166 + - uid: 22173 components: - pos: 43.5,-35.5 parent: 2 @@ -169494,1162 +154767,1162 @@ entities: type: MaterialStorage - proto: ProximitySensor entities: - - uid: 22167 + - uid: 22174 components: - pos: 59.550594,-52.45363 parent: 2 type: Transform - proto: Rack entities: - - uid: 22168 + - uid: 22175 components: - pos: 29.5,-13.5 parent: 2 type: Transform - - uid: 22169 + - uid: 22176 components: - pos: 13.5,-72.5 parent: 2 type: Transform - - uid: 22170 + - uid: 22177 components: - pos: 10.5,-16.5 parent: 2 type: Transform - - uid: 22171 + - uid: 22178 components: - pos: 31.5,-11.5 parent: 2 type: Transform - - uid: 22172 + - uid: 22179 components: - pos: 22.5,-54.5 parent: 2 type: Transform - - uid: 22173 + - uid: 22180 components: - pos: 33.5,-11.5 parent: 2 type: Transform - - uid: 22174 + - uid: 22181 components: - pos: 33.5,-13.5 parent: 2 type: Transform - - uid: 22175 + - uid: 22182 components: - pos: 31.5,-13.5 parent: 2 type: Transform - - uid: 22176 + - uid: 22183 components: - pos: 29.5,-11.5 parent: 2 type: Transform - - uid: 22177 + - uid: 22184 components: - pos: -6.5,-68.5 parent: 2 type: Transform - - uid: 22178 + - uid: 22185 components: - pos: 4.5,-69.5 parent: 2 type: Transform - - uid: 22179 + - uid: 22186 components: - pos: 6.5,-69.5 parent: 2 type: Transform - - uid: 22180 + - uid: 22187 components: - rot: 3.141592653589793 rad pos: -28.5,-19.5 parent: 2 type: Transform - - uid: 22181 + - uid: 22188 components: - pos: -16.5,-15.5 parent: 2 type: Transform - - uid: 22182 + - uid: 22189 components: - pos: 36.5,-50.5 parent: 2 type: Transform - - uid: 22183 + - uid: 22190 components: - pos: 37.5,-50.5 parent: 2 type: Transform - - uid: 22184 + - uid: 22191 components: - pos: 42.5,-7.5 parent: 2 type: Transform - - uid: 22185 + - uid: 22192 components: - pos: -8.5,-10.5 parent: 2 type: Transform - - uid: 22186 + - uid: 22193 components: - pos: -16.5,-16.5 parent: 2 type: Transform - - uid: 22187 + - uid: 22194 components: - pos: -9.5,-10.5 parent: 2 type: Transform - - uid: 22188 + - uid: 22195 components: - pos: -11.5,-8.5 parent: 2 type: Transform - - uid: 22189 + - uid: 22196 components: - pos: -50.5,-29.5 parent: 2 type: Transform - - uid: 22190 + - uid: 22197 components: - pos: -50.5,-28.5 parent: 2 type: Transform - - uid: 22191 + - uid: 22198 components: - pos: -50.5,-27.5 parent: 2 type: Transform - - uid: 22192 + - uid: 22199 components: - pos: -45.5,-19.5 parent: 2 type: Transform - - uid: 22193 + - uid: 22200 components: - pos: -47.5,-19.5 parent: 2 type: Transform - - uid: 22194 + - uid: 22201 components: - pos: -55.5,-6.5 parent: 2 type: Transform - - uid: 22195 + - uid: 22202 components: - pos: -31.5,-56.5 parent: 2 type: Transform - - uid: 22196 + - uid: 22203 components: - pos: -56.5,-70.5 parent: 2 type: Transform - - uid: 22197 + - uid: 22204 components: - pos: -38.5,-67.5 parent: 2 type: Transform - - uid: 22198 + - uid: 22205 components: - pos: -32.5,-62.5 parent: 2 type: Transform - - uid: 22199 + - uid: 22206 components: - pos: -31.5,-62.5 parent: 2 type: Transform - - uid: 22200 + - uid: 22207 components: - pos: -46.5,-30.5 parent: 2 type: Transform - - uid: 22201 + - uid: 22208 components: - pos: -44.5,-25.5 parent: 2 type: Transform - - uid: 22202 + - uid: 22209 components: - pos: -42.5,-24.5 parent: 2 type: Transform - - uid: 22203 + - uid: 22210 components: - pos: 35.5,-12.5 parent: 2 type: Transform - - uid: 22204 + - uid: 22211 components: - pos: -31.5,-43.5 parent: 2 type: Transform - - uid: 22205 + - uid: 22212 components: - pos: -29.5,-46.5 parent: 2 type: Transform - - uid: 22206 + - uid: 22213 components: - pos: -28.5,-28.5 parent: 2 type: Transform - - uid: 22207 + - uid: 22214 components: - pos: -23.5,-28.5 parent: 2 type: Transform - - uid: 22208 + - uid: 22215 components: - pos: -34.5,-25.5 parent: 2 type: Transform - - uid: 22209 + - uid: 22216 components: - pos: -42.5,-20.5 parent: 2 type: Transform - - uid: 22210 + - uid: 22217 components: - pos: -42.5,-21.5 parent: 2 type: Transform - - uid: 22211 + - uid: 22218 components: - pos: 4.5,-17.5 parent: 2 type: Transform - - uid: 22212 + - uid: 22219 components: - pos: 3.5,-17.5 parent: 2 type: Transform - - uid: 22213 + - uid: 22220 components: - pos: -44.5,16.5 parent: 2 type: Transform - - uid: 22214 + - uid: 22221 components: - pos: -3.5,21.5 parent: 2 type: Transform - - uid: 22215 + - uid: 22222 components: - pos: 0.5,23.5 parent: 2 type: Transform - - uid: 22216 + - uid: 22223 components: - pos: -3.5,34.5 parent: 2 type: Transform - - uid: 22217 + - uid: 22224 components: - pos: 15.5,34.5 parent: 2 type: Transform - - uid: 22218 + - uid: 22225 components: - pos: -10.5,16.5 parent: 2 type: Transform - - uid: 22219 + - uid: 22226 components: - pos: -12.5,17.5 parent: 2 type: Transform - - uid: 22220 + - uid: 22227 components: - pos: -49.5,15.5 parent: 2 type: Transform - - uid: 22221 + - uid: 22228 components: - pos: -49.5,14.5 parent: 2 type: Transform - - uid: 22222 + - uid: 22229 components: - pos: -44.5,15.5 parent: 2 type: Transform - - uid: 22223 + - uid: 22230 components: - pos: -47.5,-3.5 parent: 2 type: Transform - - uid: 22224 + - uid: 22231 components: - pos: -52.5,2.5 parent: 2 type: Transform - - uid: 22225 + - uid: 22232 components: - pos: -56.5,-4.5 parent: 2 type: Transform - - uid: 22226 + - uid: 22233 components: - pos: 18.5,39.5 parent: 2 type: Transform - - uid: 22227 + - uid: 22234 components: - pos: -24.5,-67.5 parent: 2 type: Transform - - uid: 22228 + - uid: 22235 components: - pos: -23.5,-67.5 parent: 2 type: Transform - - uid: 22229 + - uid: 22236 components: - pos: 9.5,-16.5 parent: 2 type: Transform - - uid: 22230 + - uid: 22237 components: - pos: 39.5,-30.5 parent: 2 type: Transform - - uid: 22231 + - uid: 22238 components: - pos: 59.5,2.5 parent: 2 type: Transform - - uid: 22232 + - uid: 22239 components: - pos: 18.5,-27.5 parent: 2 type: Transform - - uid: 22233 + - uid: 22240 components: - pos: -34.5,-72.5 parent: 2 type: Transform - - uid: 22234 + - uid: 22241 components: - pos: -33.5,-72.5 parent: 2 type: Transform - - uid: 22235 + - uid: 22242 components: - pos: -41.5,37.5 parent: 2 type: Transform - - uid: 22236 + - uid: 22243 components: - pos: -36.5,35.5 parent: 2 type: Transform - - uid: 22237 + - uid: 22244 components: - pos: -26.5,39.5 parent: 2 type: Transform - - uid: 22238 + - uid: 22245 components: - pos: -26.5,30.5 parent: 2 type: Transform - - uid: 22239 + - uid: 22246 components: - pos: -8.5,-82.5 parent: 2 type: Transform - - uid: 22240 + - uid: 22247 components: - pos: -14.5,-82.5 parent: 2 type: Transform - - uid: 22241 + - uid: 22248 components: - pos: -4.5,-82.5 parent: 2 type: Transform - - uid: 22242 + - uid: 22249 components: - pos: -6.5,-88.5 parent: 2 type: Transform - - uid: 22243 + - uid: 22250 components: - pos: -19.5,53.5 parent: 2 type: Transform - - uid: 22244 + - uid: 22251 components: - pos: 42.5,-32.5 parent: 2 type: Transform - - uid: 22245 + - uid: 22252 components: - pos: 54.5,-63.5 parent: 2 type: Transform - - uid: 22246 + - uid: 22253 components: - pos: 54.5,-64.5 parent: 2 type: Transform - - uid: 22247 + - uid: 22254 components: - pos: 54.5,-30.5 parent: 2 type: Transform - - uid: 22248 + - uid: 22255 components: - pos: 37.5,-10.5 parent: 2 type: Transform - - uid: 22249 + - uid: 22256 components: - pos: -8.5,-17.5 parent: 2 type: Transform - - uid: 22250 + - uid: 22257 components: - rot: 1.5707963267948966 rad pos: -28.5,-20.5 parent: 2 type: Transform - - uid: 22251 + - uid: 22258 components: - pos: -48.5,16.5 parent: 2 type: Transform - - uid: 22252 + - uid: 22259 components: - pos: -13.5,-13.5 parent: 2 type: Transform - - uid: 22253 + - uid: 22260 components: - pos: -13.5,-12.5 parent: 2 type: Transform - - uid: 22254 + - uid: 22261 components: - pos: -20.5,-51.5 parent: 2 type: Transform - - uid: 22255 + - uid: 22262 components: - pos: 44.5,-8.5 parent: 2 type: Transform - - uid: 22256 + - uid: 22263 components: - pos: 7.5,-80.5 parent: 2 type: Transform - - uid: 22257 + - uid: 22264 components: - pos: 31.5,27.5 parent: 2 type: Transform - - uid: 22258 + - uid: 22265 components: - pos: 27.5,29.5 parent: 2 type: Transform - - uid: 22259 + - uid: 22266 components: - pos: 27.5,27.5 parent: 2 type: Transform - - uid: 22260 + - uid: 22267 components: - pos: 31.5,29.5 parent: 2 type: Transform - proto: RadiationCollector entities: - - uid: 22261 + - uid: 22268 components: - pos: -63.5,-20.5 parent: 2 type: Transform - - uid: 22262 + - uid: 22269 components: - pos: -64.5,-20.5 parent: 2 type: Transform - - uid: 22263 + - uid: 22270 components: - pos: -65.5,-20.5 parent: 2 type: Transform - - uid: 22264 + - uid: 22271 components: - pos: -67.5,-20.5 parent: 2 type: Transform - - uid: 22265 + - uid: 22272 components: - pos: -68.5,-20.5 parent: 2 type: Transform - - uid: 22266 + - uid: 22273 components: - pos: -69.5,-20.5 parent: 2 type: Transform - - uid: 22267 + - uid: 22274 components: - pos: -63.5,-6.5 parent: 2 type: Transform - - uid: 22268 + - uid: 22275 components: - pos: -64.5,-6.5 parent: 2 type: Transform - - uid: 22269 + - uid: 22276 components: - pos: -65.5,-6.5 parent: 2 type: Transform - - uid: 22270 + - uid: 22277 components: - pos: -69.5,-6.5 parent: 2 type: Transform - - uid: 22271 + - uid: 22278 components: - pos: -68.5,-6.5 parent: 2 type: Transform - - uid: 22272 + - uid: 22279 components: - pos: -67.5,-6.5 parent: 2 type: Transform - proto: RadioHandheld entities: - - uid: 22273 + - uid: 22280 components: - pos: -21.414516,35.539524 parent: 2 type: Transform - proto: Railing entities: - - uid: 22274 + - uid: 22281 components: - pos: 24.5,-1.5 parent: 2 type: Transform - - uid: 22275 + - uid: 22282 components: - pos: 25.5,-1.5 parent: 2 type: Transform - - uid: 22276 + - uid: 22283 components: - rot: -1.5707963267948966 rad pos: 21.5,1.5 parent: 2 type: Transform - - uid: 22277 + - uid: 22284 components: - rot: 3.141592653589793 rad pos: 24.5,-19.5 parent: 2 type: Transform - - uid: 22278 + - uid: 22285 components: - rot: -1.5707963267948966 rad pos: 21.5,0.5 parent: 2 type: Transform - - uid: 22279 + - uid: 22286 components: - rot: 3.141592653589793 rad pos: 25.5,3.5 parent: 2 type: Transform - - uid: 22280 + - uid: 22287 components: - rot: 3.141592653589793 rad pos: 11.5,1.5 parent: 2 type: Transform - - uid: 22281 + - uid: 22288 components: - pos: 22.5,-1.5 parent: 2 type: Transform - - uid: 22282 + - uid: 22289 components: - pos: 10.5,0.5 parent: 2 type: Transform - - uid: 22283 + - uid: 22290 components: - rot: 1.5707963267948966 rad pos: 26.5,2.5 parent: 2 type: Transform - - uid: 22284 + - uid: 22291 components: - rot: 3.141592653589793 rad pos: 24.5,3.5 parent: 2 type: Transform - - uid: 22285 + - uid: 22292 components: - pos: 6.5,0.5 parent: 2 type: Transform - - uid: 22286 + - uid: 22293 components: - rot: 3.141592653589793 rad pos: 22.5,3.5 parent: 2 type: Transform - - uid: 22287 + - uid: 22294 components: - rot: 3.141592653589793 rad pos: 10.5,1.5 parent: 2 type: Transform - - uid: 22288 + - uid: 22295 components: - rot: 3.141592653589793 rad pos: 26.5,-19.5 parent: 2 type: Transform - - uid: 22289 + - uid: 22296 components: - rot: 1.5707963267948966 rad pos: 26.5,-0.5 parent: 2 type: Transform - - uid: 22290 + - uid: 22297 components: - rot: 3.141592653589793 rad pos: 25.5,-19.5 parent: 2 type: Transform - - uid: 22291 + - uid: 22298 components: - rot: 3.141592653589793 rad pos: 23.5,-19.5 parent: 2 type: Transform - - uid: 22292 + - uid: 22299 components: - pos: 23.5,-1.5 parent: 2 type: Transform - - uid: 22293 + - uid: 22300 components: - rot: 3.141592653589793 rad pos: 28.5,-19.5 parent: 2 type: Transform - - uid: 22294 + - uid: 22301 components: - rot: -1.5707963267948966 rad pos: 21.5,-0.5 parent: 2 type: Transform - - uid: 22295 + - uid: 22302 components: - rot: -1.5707963267948966 rad pos: 21.5,2.5 parent: 2 type: Transform - - uid: 22296 + - uid: 22303 components: - pos: 11.5,0.5 parent: 2 type: Transform - - uid: 22297 + - uid: 22304 components: - rot: 3.141592653589793 rad pos: 6.5,1.5 parent: 2 type: Transform - - uid: 22298 + - uid: 22305 components: - rot: 3.141592653589793 rad pos: 7.5,1.5 parent: 2 type: Transform - - uid: 22299 + - uid: 22306 components: - pos: 7.5,0.5 parent: 2 type: Transform - - uid: 22300 + - uid: 22307 components: - rot: 3.141592653589793 rad pos: 23.5,3.5 parent: 2 type: Transform - - uid: 22301 + - uid: 22308 components: - rot: 3.141592653589793 rad pos: 27.5,-19.5 parent: 2 type: Transform - - uid: 22302 + - uid: 22309 components: - rot: 1.5707963267948966 rad pos: 26.5,1.5 parent: 2 type: Transform - - uid: 22303 + - uid: 22310 components: - rot: 3.141592653589793 rad pos: 22.5,-19.5 parent: 2 type: Transform - - uid: 22304 + - uid: 22311 components: - rot: 3.141592653589793 rad pos: 54.5,19.5 parent: 2 type: Transform - - uid: 22305 + - uid: 22312 components: - rot: 3.141592653589793 rad pos: 53.5,19.5 parent: 2 type: Transform - - uid: 22306 + - uid: 22313 components: - rot: 3.141592653589793 rad pos: 52.5,19.5 parent: 2 type: Transform - - uid: 22307 + - uid: 22314 components: - rot: -1.5707963267948966 rad pos: 51.5,18.5 parent: 2 type: Transform - - uid: 22308 + - uid: 22315 components: - rot: -1.5707963267948966 rad pos: 51.5,17.5 parent: 2 type: Transform - - uid: 22309 + - uid: 22316 components: - rot: -1.5707963267948966 rad pos: 51.5,15.5 parent: 2 type: Transform - - uid: 22310 + - uid: 22317 components: - rot: 1.5707963267948966 rad pos: 55.5,18.5 parent: 2 type: Transform - - uid: 22311 + - uid: 22318 components: - rot: 1.5707963267948966 rad pos: 55.5,17.5 parent: 2 type: Transform - - uid: 22312 + - uid: 22319 components: - rot: 1.5707963267948966 rad pos: 55.5,15.5 parent: 2 type: Transform - - uid: 22313 + - uid: 22320 components: - rot: 3.141592653589793 rad pos: 58.5,8.5 parent: 2 type: Transform - - uid: 22314 + - uid: 22321 components: - rot: 3.141592653589793 rad pos: 56.5,8.5 parent: 2 type: Transform - - uid: 22315 + - uid: 22322 components: - rot: -1.5707963267948966 rad pos: 55.5,6.5 parent: 2 type: Transform - - uid: 22316 + - uid: 22323 components: - rot: 1.5707963267948966 rad pos: 59.5,7.5 parent: 2 type: Transform - - uid: 22317 + - uid: 22324 components: - rot: 1.5707963267948966 rad pos: 59.5,6.5 parent: 2 type: Transform - - uid: 22318 + - uid: 22325 components: - pos: 58.5,5.5 parent: 2 type: Transform - - uid: 22319 + - uid: 22326 components: - pos: 56.5,5.5 parent: 2 type: Transform - - uid: 22320 + - uid: 22327 components: - rot: 3.141592653589793 rad pos: 57.5,8.5 parent: 2 type: Transform - - uid: 22321 + - uid: 22328 components: - rot: 1.5707963267948966 rad pos: 61.5,-8.5 parent: 2 type: Transform - - uid: 22322 + - uid: 22329 components: - pos: 54.5,-9.5 parent: 2 type: Transform - - uid: 22323 + - uid: 22330 components: - rot: 3.141592653589793 rad pos: 54.5,-7.5 parent: 2 type: Transform - - uid: 22324 + - uid: 22331 components: - rot: 1.5707963267948966 rad pos: 50.5,-5.5 parent: 2 type: Transform - - uid: 22325 + - uid: 22332 components: - rot: 1.5707963267948966 rad pos: 50.5,-11.5 parent: 2 type: Transform - - uid: 22326 + - uid: 22333 components: - rot: -1.5707963267948966 rad pos: 53.5,-8.5 parent: 2 type: Transform - - uid: 22327 + - uid: 22334 components: - rot: 1.5707963267948966 rad pos: 46.5,-86.5 parent: 2 type: Transform - - uid: 22328 + - uid: 22335 components: - rot: -1.5707963267948966 rad pos: 32.5,-84.5 parent: 2 type: Transform - - uid: 22329 + - uid: 22336 components: - rot: -1.5707963267948966 rad pos: 32.5,-85.5 parent: 2 type: Transform - - uid: 22330 + - uid: 22337 components: - rot: 1.5707963267948966 rad pos: 46.5,-87.5 parent: 2 type: Transform - - uid: 22331 + - uid: 22338 components: - rot: -1.5707963267948966 rad pos: 32.5,-86.5 parent: 2 type: Transform - - uid: 22332 + - uid: 22339 components: - rot: 1.5707963267948966 rad pos: 46.5,-84.5 parent: 2 type: Transform - - uid: 22333 + - uid: 22340 components: - rot: -1.5707963267948966 rad pos: 32.5,-87.5 parent: 2 type: Transform - - uid: 22334 + - uid: 22341 components: - rot: 3.141592653589793 rad pos: -40.5,-80.5 parent: 2 type: Transform - - uid: 22335 + - uid: 22342 components: - rot: 3.141592653589793 rad pos: -41.5,-80.5 parent: 2 type: Transform - - uid: 22336 + - uid: 22343 components: - rot: 3.141592653589793 rad pos: -42.5,-80.5 parent: 2 type: Transform - - uid: 22337 + - uid: 22344 components: - rot: 3.141592653589793 rad pos: -43.5,-80.5 parent: 2 type: Transform - - uid: 22338 + - uid: 22345 components: - pos: -40.5,-84.5 parent: 2 type: Transform - - uid: 22339 + - uid: 22346 components: - pos: -41.5,-84.5 parent: 2 type: Transform - - uid: 22340 + - uid: 22347 components: - pos: -42.5,-84.5 parent: 2 type: Transform - - uid: 22341 + - uid: 22348 components: - pos: -43.5,-84.5 parent: 2 type: Transform - - uid: 22342 + - uid: 22349 components: - rot: 1.5707963267948966 rad pos: -39.5,-81.5 parent: 2 type: Transform - - uid: 22343 + - uid: 22350 components: - rot: 1.5707963267948966 rad pos: -39.5,-82.5 parent: 2 type: Transform - - uid: 22344 + - uid: 22351 components: - rot: -1.5707963267948966 rad pos: -44.5,-81.5 parent: 2 type: Transform - - uid: 22345 + - uid: 22352 components: - rot: -1.5707963267948966 rad pos: -44.5,-82.5 parent: 2 type: Transform - - uid: 22346 + - uid: 22353 components: - rot: -1.5707963267948966 rad pos: -44.5,-83.5 parent: 2 type: Transform - - uid: 22347 + - uid: 22354 components: - rot: 3.141592653589793 rad pos: -39.5,-29.5 parent: 2 type: Transform - - uid: 22348 + - uid: 22355 components: - rot: 3.141592653589793 rad pos: -38.5,-29.5 parent: 2 type: Transform - - uid: 22349 + - uid: 22356 components: - rot: -1.5707963267948966 rad pos: 66.5,-8.5 parent: 2 type: Transform - - uid: 22350 + - uid: 22357 components: - rot: -1.5707963267948966 rad pos: 66.5,-7.5 parent: 2 type: Transform - - uid: 22351 + - uid: 22358 components: - rot: -1.5707963267948966 rad pos: 66.5,-9.5 parent: 2 type: Transform - - uid: 22352 + - uid: 22359 components: - rot: 3.141592653589793 rad pos: -40.5,38.5 parent: 2 type: Transform - - uid: 22353 + - uid: 22360 components: - rot: 3.141592653589793 rad pos: -43.5,38.5 parent: 2 type: Transform - - uid: 22354 + - uid: 22361 components: - pos: 60.5,-9.5 parent: 2 type: Transform - - uid: 22355 + - uid: 22362 components: - rot: 3.141592653589793 rad pos: 60.5,-7.5 parent: 2 type: Transform - - uid: 22356 + - uid: 22363 components: - rot: 1.5707963267948966 rad pos: -39.5,3.5 parent: 2 type: Transform - - uid: 22357 + - uid: 22364 components: - rot: 1.5707963267948966 rad pos: -39.5,4.5 parent: 2 type: Transform - - uid: 22358 + - uid: 22365 components: - pos: 31.5,-40.5 parent: 2 type: Transform - - uid: 22359 + - uid: 22366 components: - rot: 1.5707963267948966 rad pos: 32.5,-39.5 parent: 2 type: Transform - - uid: 22360 + - uid: 22367 components: - rot: 1.5707963267948966 rad pos: -39.5,5.5 parent: 2 type: Transform - - uid: 22361 + - uid: 22368 components: - rot: 1.5707963267948966 rad pos: -39.5,6.5 parent: 2 type: Transform - - uid: 22362 + - uid: 22369 components: - rot: -1.5707963267948966 rad pos: -36.5,6.5 parent: 2 type: Transform - - uid: 22363 + - uid: 22370 components: - rot: -1.5707963267948966 rad pos: -36.5,5.5 parent: 2 type: Transform - - uid: 22364 + - uid: 22371 components: - rot: -1.5707963267948966 rad pos: -36.5,4.5 parent: 2 type: Transform - - uid: 22365 + - uid: 22372 components: - rot: -1.5707963267948966 rad pos: -36.5,3.5 parent: 2 type: Transform - - uid: 22366 + - uid: 22373 components: - rot: 1.5707963267948966 rad pos: 46.5,-85.5 parent: 2 type: Transform - - uid: 22367 + - uid: 22374 components: - rot: 1.5707963267948966 rad pos: 13.5,-84.5 parent: 2 type: Transform - - uid: 22368 + - uid: 22375 components: - rot: 1.5707963267948966 rad pos: 13.5,-83.5 parent: 2 type: Transform - - uid: 22369 + - uid: 22376 components: - rot: 1.5707963267948966 rad pos: 13.5,-82.5 parent: 2 type: Transform - - uid: 22370 + - uid: 22377 components: - rot: -1.5707963267948966 rad pos: 17.5,-82.5 parent: 2 type: Transform - - uid: 22371 + - uid: 22378 components: - rot: -1.5707963267948966 rad pos: 17.5,-83.5 parent: 2 type: Transform - - uid: 22372 + - uid: 22379 components: - rot: -1.5707963267948966 rad pos: 17.5,-84.5 parent: 2 type: Transform - - uid: 22373 + - uid: 22380 components: - rot: 3.141592653589793 rad pos: 16.5,-85.5 parent: 2 type: Transform - - uid: 22374 + - uid: 22381 components: - rot: 3.141592653589793 rad pos: 15.5,-85.5 parent: 2 type: Transform - - uid: 22375 + - uid: 22382 components: - rot: 3.141592653589793 rad pos: 14.5,-85.5 parent: 2 type: Transform - - uid: 22376 + - uid: 22383 components: - pos: 14.5,-81.5 parent: 2 type: Transform - - uid: 22377 + - uid: 22384 components: - pos: 15.5,-81.5 parent: 2 type: Transform - - uid: 22378 + - uid: 22385 components: - pos: 16.5,-81.5 parent: 2 type: Transform - - uid: 22379 + - uid: 22386 components: - rot: -1.5707963267948966 rad pos: 67.5,-28.5 @@ -170658,7 +155931,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 22380 + - uid: 22387 components: - rot: -1.5707963267948966 rad pos: 67.5,-27.5 @@ -170667,7 +155940,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 22381 + - uid: 22388 components: - pos: 68.5,-29.5 parent: 2 @@ -170675,7 +155948,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 22382 + - uid: 22389 components: - pos: 69.5,-29.5 parent: 2 @@ -170685,162 +155958,162 @@ entities: - Destructible - proto: RailingCorner entities: - - uid: 22383 + - uid: 22390 components: - rot: 1.5707963267948966 rad pos: 61.5,-7.5 parent: 2 type: Transform - - uid: 22384 + - uid: 22391 components: - pos: -39.5,-84.5 parent: 2 type: Transform - - uid: 22385 + - uid: 22392 components: - rot: -1.5707963267948966 rad pos: 5.5,0.5 parent: 2 type: Transform - - uid: 22386 + - uid: 22393 components: - pos: 26.5,-1.5 parent: 2 type: Transform - - uid: 22387 + - uid: 22394 components: - rot: 1.5707963267948966 rad pos: 26.5,3.5 parent: 2 type: Transform - - uid: 22388 + - uid: 22395 components: - rot: 3.141592653589793 rad pos: 5.5,1.5 parent: 2 type: Transform - - uid: 22389 + - uid: 22396 components: - pos: 12.5,0.5 parent: 2 type: Transform - - uid: 22390 + - uid: 22397 components: - rot: 3.141592653589793 rad pos: 21.5,3.5 parent: 2 type: Transform - - uid: 22391 + - uid: 22398 components: - rot: 1.5707963267948966 rad pos: 12.5,1.5 parent: 2 type: Transform - - uid: 22392 + - uid: 22399 components: - rot: -1.5707963267948966 rad pos: 21.5,-1.5 parent: 2 type: Transform - - uid: 22393 + - uid: 22400 components: - rot: 1.5707963267948966 rad pos: 29.5,-19.5 parent: 2 type: Transform - - uid: 22394 + - uid: 22401 components: - rot: 3.141592653589793 rad pos: 21.5,-19.5 parent: 2 type: Transform - - uid: 22395 + - uid: 22402 components: - pos: 32.5,-40.5 parent: 2 type: Transform - - uid: 22396 + - uid: 22403 components: - rot: 3.141592653589793 rad pos: 51.5,19.5 parent: 2 type: Transform - - uid: 22397 + - uid: 22404 components: - rot: 1.5707963267948966 rad pos: 55.5,19.5 parent: 2 type: Transform - - uid: 22398 + - uid: 22405 components: - pos: 59.5,5.5 parent: 2 type: Transform - - uid: 22399 + - uid: 22406 components: - rot: -1.5707963267948966 rad pos: 55.5,5.5 parent: 2 type: Transform - - uid: 22400 + - uid: 22407 components: - rot: 3.141592653589793 rad pos: 55.5,8.5 parent: 2 type: Transform - - uid: 22401 + - uid: 22408 components: - rot: 1.5707963267948966 rad pos: 59.5,8.5 parent: 2 type: Transform - - uid: 22402 + - uid: 22409 components: - rot: 1.5707963267948966 rad pos: 50.5,-10.5 parent: 2 type: Transform - - uid: 22403 + - uid: 22410 components: - pos: 50.5,-6.5 parent: 2 type: Transform - - uid: 22404 + - uid: 22411 components: - rot: -1.5707963267948966 rad pos: 53.5,-9.5 parent: 2 type: Transform - - uid: 22405 + - uid: 22412 components: - rot: 3.141592653589793 rad pos: 53.5,-7.5 parent: 2 type: Transform - - uid: 22406 + - uid: 22413 components: - rot: -1.5707963267948966 rad pos: -44.5,-84.5 parent: 2 type: Transform - - uid: 22407 + - uid: 22414 components: - rot: 3.141592653589793 rad pos: -44.5,-80.5 parent: 2 type: Transform - - uid: 22408 + - uid: 22415 components: - rot: 1.5707963267948966 rad pos: -39.5,-80.5 parent: 2 type: Transform - - uid: 22409 + - uid: 22416 components: - pos: 61.5,-9.5 parent: 2 type: Transform - - uid: 22410 + - uid: 22417 components: - rot: -1.5707963267948966 rad pos: 67.5,-29.5 @@ -170851,24 +156124,24 @@ entities: - Destructible - proto: RailingCornerSmall entities: - - uid: 22411 + - uid: 22418 components: - pos: 17.5,-85.5 parent: 2 type: Transform - - uid: 22412 + - uid: 22419 components: - rot: 3.141592653589793 rad pos: 13.5,-81.5 parent: 2 type: Transform - - uid: 22413 + - uid: 22420 components: - rot: 1.5707963267948966 rad pos: 17.5,-81.5 parent: 2 type: Transform - - uid: 22414 + - uid: 22421 components: - rot: -1.5707963267948966 rad pos: 13.5,-85.5 @@ -170876,640 +156149,645 @@ entities: type: Transform - proto: RandomArcade entities: - - uid: 22415 + - uid: 22422 components: - pos: 44.5,12.5 parent: 2 type: Transform - - uid: 22416 + - uid: 22423 components: - pos: 45.5,12.5 parent: 2 type: Transform - - uid: 22417 + - uid: 22424 components: - pos: 9.5,34.5 parent: 2 type: Transform - - uid: 22418 + - uid: 22425 components: - pos: 7.5,34.5 parent: 2 type: Transform - - uid: 22419 + - uid: 22426 components: - rot: 3.141592653589793 rad pos: 9.5,30.5 parent: 2 type: Transform - - uid: 22420 + - uid: 22427 components: - rot: 3.141592653589793 rad pos: 7.5,30.5 parent: 2 type: Transform - - uid: 22421 + - uid: 22428 components: - pos: 4.5,-32.5 parent: 2 type: Transform - - uid: 22422 + - uid: 22429 components: - pos: 4.5,-30.5 parent: 2 type: Transform - - uid: 22423 + - uid: 22430 components: - pos: 2.5,-30.5 parent: 2 type: Transform - - uid: 22424 + - uid: 22431 components: - pos: 2.5,-32.5 parent: 2 type: Transform - - uid: 22425 + - uid: 22432 components: - pos: 6.5,-30.5 parent: 2 type: Transform - - uid: 22426 + - uid: 22433 components: - pos: 6.5,-32.5 parent: 2 type: Transform - proto: RandomArtifactSpawner entities: - - uid: 22427 + - uid: 22434 components: - pos: 67.5,-37.5 parent: 2 type: Transform - - uid: 22428 + - uid: 22435 components: - pos: -46.5,65.5 parent: 2 type: Transform - - uid: 22429 + - uid: 22436 components: - pos: 71.5,-28.5 parent: 2 type: Transform - proto: RandomArtifactSpawner20 entities: - - uid: 22430 + - uid: 22437 components: - pos: 50.5,51.5 parent: 2 type: Transform - - uid: 22431 + - uid: 22438 components: - pos: -20.5,-99.5 parent: 2 type: Transform - - uid: 22432 + - uid: 22439 components: - pos: 11.5,53.5 parent: 2 type: Transform - - uid: 22433 + - uid: 22440 components: - pos: -51.5,22.5 parent: 2 type: Transform + - uid: 30706 + components: + - pos: 78.5,-34.5 + parent: 2 + type: Transform - proto: RandomDrinkBottle entities: - - uid: 22434 + - uid: 22441 components: - pos: 15.5,13.5 parent: 2 type: Transform - proto: RandomDrinkGlass entities: - - uid: 22435 + - uid: 22442 components: - pos: 15.5,11.5 parent: 2 type: Transform - - uid: 22436 + - uid: 22443 components: - pos: 15.5,11.5 parent: 2 type: Transform - - uid: 22437 + - uid: 22444 components: - pos: 18.5,15.5 parent: 2 type: Transform - - uid: 22438 + - uid: 22445 components: - pos: -8.5,1.5 parent: 2 type: Transform - proto: RandomFoodBakedSingle entities: - - uid: 22439 + - uid: 22446 components: - pos: 2.5,0.5 parent: 2 type: Transform - - uid: 22440 + - uid: 22447 components: - pos: -4.5,1.5 parent: 2 type: Transform - - uid: 22441 + - uid: 22448 components: - pos: -8.5,0.5 parent: 2 type: Transform - proto: RandomFoodMeal entities: - - uid: 22442 + - uid: 22449 components: - pos: 25.5,-68.5 parent: 2 type: Transform - proto: RandomFoodSingle entities: - - uid: 22443 + - uid: 22450 components: - pos: 11.5,7.5 parent: 2 type: Transform - - uid: 22444 + - uid: 22451 components: - pos: 4.5,15.5 parent: 2 type: Transform - - uid: 22445 + - uid: 22452 components: - pos: 67.5,10.5 parent: 2 type: Transform - proto: RandomInstruments entities: - - uid: 22446 + - uid: 22453 components: - pos: 54.5,-28.5 parent: 2 type: Transform - proto: RandomPainting entities: - - uid: 22447 + - uid: 22454 components: - pos: 49.5,48.5 parent: 2 type: Transform - proto: RandomPosterAny entities: - - uid: 22448 + - uid: 22455 components: - pos: -52.5,-61.5 parent: 2 type: Transform - - uid: 22449 + - uid: 22456 components: - pos: -55.5,-57.5 parent: 2 type: Transform - - uid: 22450 + - uid: 22457 components: - pos: -57.5,-57.5 parent: 2 type: Transform - proto: RandomPosterContraband entities: - - uid: 22451 + - uid: 22458 components: - pos: 7.5,-68.5 parent: 2 type: Transform - - uid: 22452 + - uid: 22459 components: - pos: -30.5,-45.5 parent: 2 type: Transform - - uid: 22453 + - uid: 22460 components: - pos: -24.5,-50.5 parent: 2 type: Transform - - uid: 22454 + - uid: 22461 components: - pos: -26.5,-50.5 parent: 2 type: Transform - - uid: 22455 + - uid: 22462 components: - pos: -5.5,-94.5 parent: 2 type: Transform - - uid: 22456 + - uid: 22463 components: - pos: -36.5,-92.5 parent: 2 type: Transform - - uid: 22457 + - uid: 22464 components: - pos: -48.5,-73.5 parent: 2 type: Transform - - uid: 22458 + - uid: 22465 components: - pos: -41.5,-65.5 parent: 2 type: Transform - - uid: 22459 + - uid: 22466 components: - pos: -39.5,-88.5 parent: 2 type: Transform - - uid: 22460 + - uid: 22467 components: - pos: -20.5,-94.5 parent: 2 type: Transform - - uid: 22461 + - uid: 22468 components: - pos: -29.5,-53.5 parent: 2 type: Transform - - uid: 22462 + - uid: 22469 components: - pos: -11.5,-99.5 parent: 2 type: Transform - - uid: 22463 + - uid: 22470 components: - pos: -27.5,-95.5 parent: 2 type: Transform - - uid: 22464 + - uid: 22471 components: - pos: -15.5,14.5 parent: 2 type: Transform - - uid: 22465 + - uid: 22472 components: - pos: -9.5,14.5 parent: 2 type: Transform - - uid: 22466 + - uid: 22473 components: - pos: 11.5,-54.5 parent: 2 type: Transform - - uid: 22467 + - uid: 22474 components: - pos: 15.5,-46.5 parent: 2 type: Transform - - uid: 22468 + - uid: 22475 components: - pos: 11.5,-48.5 parent: 2 type: Transform - - uid: 22469 + - uid: 22476 components: - pos: -24.5,-43.5 parent: 2 type: Transform - - uid: 22470 + - uid: 22477 components: - pos: -25.5,-37.5 parent: 2 type: Transform - - uid: 22471 + - uid: 22478 components: - pos: -13.5,-32.5 parent: 2 type: Transform - - uid: 22472 + - uid: 22479 components: - pos: -15.5,-30.5 parent: 2 type: Transform - - uid: 22473 + - uid: 22480 components: - pos: 16.5,-49.5 parent: 2 type: Transform - - uid: 22474 + - uid: 22481 components: - pos: 11.5,-48.5 parent: 2 type: Transform - - uid: 22475 + - uid: 22482 components: - pos: 12.5,-54.5 parent: 2 type: Transform - - uid: 22476 + - uid: 22483 components: - pos: 13.5,-63.5 parent: 2 type: Transform - - uid: 22477 + - uid: 22484 components: - pos: 41.5,-50.5 parent: 2 type: Transform - - uid: 22478 + - uid: 22485 components: - pos: 37.5,-47.5 parent: 2 type: Transform - - uid: 22479 + - uid: 22486 components: - pos: 61.5,-16.5 parent: 2 type: Transform - - uid: 22480 + - uid: 22487 components: - pos: 55.5,1.5 parent: 2 type: Transform - - uid: 22481 + - uid: 22488 components: - pos: 54.5,30.5 parent: 2 type: Transform - - uid: 22482 + - uid: 22489 components: - pos: 52.5,30.5 parent: 2 type: Transform - - uid: 22483 + - uid: 22490 components: - pos: 59.5,30.5 parent: 2 type: Transform - - uid: 22484 + - uid: 22491 components: - pos: 60.5,27.5 parent: 2 type: Transform - - uid: 22485 + - uid: 22492 components: - pos: 12.5,-13.5 parent: 2 type: Transform - - uid: 22486 + - uid: 22493 components: - pos: 8.5,-13.5 parent: 2 type: Transform - - uid: 22487 + - uid: 22494 components: - pos: -9.5,-94.5 parent: 2 type: Transform - - uid: 22488 + - uid: 22495 components: - pos: -17.5,-95.5 parent: 2 type: Transform - - uid: 22489 + - uid: 22496 components: - pos: -24.5,-94.5 parent: 2 type: Transform - - uid: 22490 + - uid: 22497 components: - pos: -68.5,-40.5 parent: 2 type: Transform - - uid: 22491 + - uid: 22498 components: - pos: -11.5,63.5 parent: 2 type: Transform - - uid: 22492 + - uid: 22499 components: - pos: 53.5,-66.5 parent: 2 type: Transform - - uid: 22493 + - uid: 22500 components: - pos: 6.5,-28.5 parent: 2 type: Transform - - uid: 22494 + - uid: 22501 components: - pos: 1.5,-29.5 parent: 2 type: Transform - - uid: 22495 + - uid: 22502 components: - pos: 52.5,-34.5 parent: 2 type: Transform - - uid: 22496 + - uid: 22503 components: - pos: 59.5,-27.5 parent: 2 type: Transform - - uid: 22497 + - uid: 22504 components: - pos: 44.5,-32.5 parent: 2 type: Transform - - uid: 22498 + - uid: 22505 components: - pos: 69.5,-62.5 parent: 2 type: Transform - - uid: 22499 + - uid: 22506 components: - pos: 58.5,-61.5 parent: 2 type: Transform - - uid: 22500 + - uid: 22507 components: - pos: 57.5,-67.5 parent: 2 type: Transform - - uid: 22501 + - uid: 22508 components: - pos: 48.5,-64.5 parent: 2 type: Transform - - uid: 22502 + - uid: 22509 components: - pos: -29.5,-62.5 parent: 2 type: Transform - - uid: 22503 + - uid: 22510 components: - rot: 3.141592653589793 rad pos: 15.5,-78.5 parent: 2 type: Transform - - uid: 22504 + - uid: 22511 components: - rot: 3.141592653589793 rad pos: 15.5,-88.5 parent: 2 type: Transform - - uid: 22505 + - uid: 22512 components: - pos: 4.5,-72.5 parent: 2 type: Transform - proto: RandomPosterLegit entities: - - uid: 22506 + - uid: 22513 components: - pos: -40.5,-7.5 parent: 2 type: Transform - - uid: 22507 + - uid: 22514 components: - pos: -24.5,14.5 parent: 2 type: Transform - - uid: 22508 + - uid: 22515 components: - pos: -21.5,-40.5 parent: 2 type: Transform - - uid: 22509 + - uid: 22516 components: - rot: 3.141592653589793 rad pos: -19.5,32.5 parent: 2 type: Transform - - uid: 22510 + - uid: 22517 components: - rot: 3.141592653589793 rad pos: -13.5,35.5 parent: 2 type: Transform - - uid: 22511 + - uid: 22518 components: - rot: 3.141592653589793 rad pos: -8.5,47.5 parent: 2 type: Transform - - uid: 22512 + - uid: 22519 components: - rot: 3.141592653589793 rad pos: 23.5,-74.5 parent: 2 type: Transform - - uid: 22513 + - uid: 22520 components: - pos: 50.5,-80.5 parent: 2 type: Transform - - uid: 22514 + - uid: 22521 components: - pos: 49.5,-70.5 parent: 2 type: Transform - - uid: 22515 + - uid: 22522 components: - rot: 3.141592653589793 rad pos: -1.5,55.5 parent: 2 type: Transform - - uid: 22516 + - uid: 22523 components: - rot: 3.141592653589793 rad pos: -7.5,60.5 parent: 2 type: Transform - - uid: 22517 + - uid: 22524 components: - rot: 3.141592653589793 rad pos: -5.5,60.5 parent: 2 type: Transform - - uid: 22518 + - uid: 22525 components: - rot: 3.141592653589793 rad pos: -14.5,58.5 parent: 2 type: Transform - - uid: 22519 + - uid: 22526 components: - rot: 3.141592653589793 rad pos: -20.5,57.5 parent: 2 type: Transform - - uid: 22520 + - uid: 22527 components: - rot: 3.141592653589793 rad pos: -23.5,60.5 parent: 2 type: Transform - - uid: 22521 + - uid: 22528 components: - rot: 3.141592653589793 rad pos: -23.5,67.5 parent: 2 type: Transform - - uid: 22522 + - uid: 22529 components: - rot: 3.141592653589793 rad pos: -11.5,65.5 parent: 2 type: Transform - - uid: 22523 + - uid: 22530 components: - pos: 2.5,-28.5 parent: 2 type: Transform - - uid: 22524 + - uid: 22531 components: - pos: 32.5,-91.5 parent: 2 type: Transform - - uid: 22525 + - uid: 22532 components: - pos: 66.5,-62.5 parent: 2 type: Transform - - uid: 22526 + - uid: 22533 components: - pos: 34.5,-57.5 parent: 2 type: Transform - - uid: 22527 + - uid: 22534 components: - pos: 41.5,-65.5 parent: 2 type: Transform - - uid: 22528 + - uid: 22535 components: - pos: -47.5,9.5 parent: 2 type: Transform - - uid: 22529 + - uid: 22536 components: - pos: -44.5,12.5 parent: 2 type: Transform - - uid: 22530 + - uid: 22537 components: - pos: 28.5,-79.5 parent: 2 type: Transform - - uid: 22531 + - uid: 22538 components: - rot: 3.141592653589793 rad pos: 31.5,-70.5 parent: 2 type: Transform - - uid: 22532 + - uid: 22539 components: - pos: 5.5,-75.5 parent: 2 type: Transform - proto: RandomSnacks entities: - - uid: 22533 + - uid: 22540 components: - rot: -1.5707963267948966 rad pos: 37.5,-50.5 @@ -171517,426 +156795,426 @@ entities: type: Transform - proto: RandomSoap entities: - - uid: 22534 + - uid: 22541 components: - pos: -6.5,-68.5 parent: 2 type: Transform - - uid: 22535 + - uid: 22542 components: - pos: -50.5,62.5 parent: 2 type: Transform - - uid: 22536 + - uid: 22543 components: - pos: -56.5,-62.5 parent: 2 type: Transform - proto: RandomSpawner entities: - - uid: 22537 + - uid: 22544 components: - pos: 34.5,15.5 parent: 2 type: Transform - - uid: 22538 + - uid: 22545 components: - pos: 16.5,-65.5 parent: 2 type: Transform - - uid: 22539 + - uid: 22546 components: - pos: -5.5,-26.5 parent: 2 type: Transform - - uid: 22540 + - uid: 22547 components: - pos: 25.5,7.5 parent: 2 type: Transform - - uid: 22541 + - uid: 22548 components: - pos: -6.5,-74.5 parent: 2 type: Transform - - uid: 22542 + - uid: 22549 components: - pos: 35.5,-72.5 parent: 2 type: Transform - - uid: 22543 + - uid: 22550 components: - pos: 22.5,17.5 parent: 2 type: Transform - - uid: 22544 + - uid: 22551 components: - pos: 5.5,13.5 parent: 2 type: Transform - - uid: 22545 + - uid: 22552 components: - pos: 6.5,15.5 parent: 2 type: Transform - - uid: 22546 + - uid: 22553 components: - pos: 17.5,0.5 parent: 2 type: Transform - - uid: 22547 + - uid: 22554 components: - pos: 33.5,0.5 parent: 2 type: Transform - - uid: 22548 + - uid: 22555 components: - pos: 32.5,-2.5 parent: 2 type: Transform - - uid: 22549 + - uid: 22556 components: - pos: 26.5,-11.5 parent: 2 type: Transform - - uid: 22550 + - uid: 22557 components: - pos: -5.5,-32.5 parent: 2 type: Transform - - uid: 22551 + - uid: 22558 components: - pos: -2.5,-46.5 parent: 2 type: Transform - - uid: 22552 + - uid: 22559 components: - pos: 35.5,-17.5 parent: 2 type: Transform - - uid: 22553 + - uid: 22560 components: - pos: 49.5,32.5 parent: 2 type: Transform - - uid: 22554 + - uid: 22561 components: - pos: 49.5,33.5 parent: 2 type: Transform - - uid: 22555 + - uid: 22562 components: - pos: 50.5,32.5 parent: 2 type: Transform - - uid: 22556 + - uid: 22563 components: - pos: 48.5,32.5 parent: 2 type: Transform - - uid: 22557 + - uid: 22564 components: - pos: 50.5,33.5 parent: 2 type: Transform - - uid: 22558 + - uid: 22565 components: - pos: 54.5,-12.5 parent: 2 type: Transform - - uid: 22559 + - uid: 22566 components: - pos: 52.5,-6.5 parent: 2 type: Transform - - uid: 22560 + - uid: 22567 components: - pos: 52.5,0.5 parent: 2 type: Transform - - uid: 22561 + - uid: 22568 components: - pos: 50.5,-45.5 parent: 2 type: Transform - - uid: 22562 + - uid: 22569 components: - pos: 42.5,-49.5 parent: 2 type: Transform - - uid: 22563 + - uid: 22570 components: - pos: -4.5,-0.5 parent: 2 type: Transform - - uid: 22564 + - uid: 22571 components: - pos: 7.5,2.5 parent: 2 type: Transform - - uid: 22565 + - uid: 22572 components: - pos: 17.5,-41.5 parent: 2 type: Transform - - uid: 22566 + - uid: 22573 components: - pos: -7.5,-53.5 parent: 2 type: Transform - - uid: 22567 + - uid: 22574 components: - rot: 3.141592653589793 rad pos: 29.5,-72.5 parent: 2 type: Transform - - uid: 22568 + - uid: 22575 components: - pos: -37.5,-6.5 parent: 2 type: Transform - - uid: 22569 + - uid: 22576 components: - pos: -25.5,-67.5 parent: 2 type: Transform - - uid: 22570 + - uid: 22577 components: - pos: -27.5,-58.5 parent: 2 type: Transform - - uid: 22571 + - uid: 22578 components: - pos: -24.5,-53.5 parent: 2 type: Transform - - uid: 22572 + - uid: 22579 components: - pos: -26.5,-46.5 parent: 2 type: Transform - - uid: 22573 + - uid: 22580 components: - pos: -20.5,-29.5 parent: 2 type: Transform - - uid: 22574 + - uid: 22581 components: - pos: -32.5,-23.5 parent: 2 type: Transform - - uid: 22575 + - uid: 22582 components: - pos: -23.5,-13.5 parent: 2 type: Transform - - uid: 22576 + - uid: 22583 components: - pos: -53.5,-18.5 parent: 2 type: Transform - - uid: 22577 + - uid: 22584 components: - pos: -32.5,-34.5 parent: 2 type: Transform - - uid: 22578 + - uid: 22585 components: - pos: -33.5,-46.5 parent: 2 type: Transform - - uid: 22579 + - uid: 22586 components: - pos: -37.5,-76.5 parent: 2 type: Transform - - uid: 22580 + - uid: 22587 components: - pos: -46.5,-78.5 parent: 2 type: Transform - - uid: 22581 + - uid: 22588 components: - pos: -45.5,-73.5 parent: 2 type: Transform - - uid: 22582 + - uid: 22589 components: - pos: -52.5,-74.5 parent: 2 type: Transform - - uid: 22583 + - uid: 22590 components: - pos: -35.5,-20.5 parent: 2 type: Transform - - uid: 22584 + - uid: 22591 components: - pos: -45.5,-28.5 parent: 2 type: Transform - - uid: 22585 + - uid: 22592 components: - pos: -57.5,-33.5 parent: 2 type: Transform - - uid: 22586 + - uid: 22593 components: - pos: -31.5,-51.5 parent: 2 type: Transform - - uid: 22587 + - uid: 22594 components: - rot: 3.141592653589793 rad pos: -47.5,11.5 parent: 2 type: Transform - - uid: 22588 + - uid: 22595 components: - rot: 3.141592653589793 rad pos: -45.5,6.5 parent: 2 type: Transform - - uid: 22589 + - uid: 22596 components: - rot: 3.141592653589793 rad pos: -46.5,3.5 parent: 2 type: Transform - - uid: 22590 + - uid: 22597 components: - rot: 3.141592653589793 rad pos: -34.5,0.5 parent: 2 type: Transform - - uid: 22591 + - uid: 22598 components: - rot: 3.141592653589793 rad pos: 25.5,-71.5 parent: 2 type: Transform - - uid: 22592 + - uid: 22599 components: - rot: 3.141592653589793 rad pos: 17.5,-84.5 parent: 2 type: Transform - - uid: 22593 + - uid: 22600 components: - pos: 48.5,33.5 parent: 2 type: Transform - - uid: 22594 + - uid: 22601 components: - pos: 22.5,7.5 parent: 2 type: Transform - - uid: 22595 + - uid: 22602 components: - pos: 26.5,-18.5 parent: 2 type: Transform - - uid: 22596 + - uid: 22603 components: - rot: -1.5707963267948966 rad pos: 14.5,-27.5 parent: 2 type: Transform - - uid: 22597 + - uid: 22604 components: - pos: -15.5,36.5 parent: 2 type: Transform - - uid: 22598 + - uid: 22605 components: - pos: -19.5,26.5 parent: 2 type: Transform - - uid: 22599 + - uid: 22606 components: - pos: -17.5,44.5 parent: 2 type: Transform - - uid: 22600 + - uid: 22607 components: - pos: -14.5,45.5 parent: 2 type: Transform - - uid: 22601 + - uid: 22608 components: - pos: 0.5,32.5 parent: 2 type: Transform - - uid: 22602 + - uid: 22609 components: - pos: 53.5,36.5 parent: 2 type: Transform - - uid: 22603 + - uid: 22610 components: - pos: 65.5,22.5 parent: 2 type: Transform - - uid: 22604 + - uid: 22611 components: - pos: -23.5,-98.5 parent: 2 type: Transform - - uid: 22605 + - uid: 22612 components: - pos: -33.5,-97.5 parent: 2 type: Transform - - uid: 22606 + - uid: 22613 components: - pos: -41.5,-89.5 parent: 2 type: Transform - - uid: 22607 + - uid: 22614 components: - pos: -43.5,-91.5 parent: 2 type: Transform - - uid: 22608 + - uid: 22615 components: - pos: -10.5,-97.5 parent: 2 type: Transform - - uid: 22609 + - uid: 22616 components: - pos: -8.5,-85.5 parent: 2 type: Transform - - uid: 22610 + - uid: 22617 components: - rot: 3.141592653589793 rad pos: 29.5,-81.5 parent: 2 type: Transform - - uid: 22611 + - uid: 22618 components: - rot: 3.141592653589793 rad pos: 30.5,-84.5 parent: 2 type: Transform - - uid: 22612 + - uid: 22619 components: - rot: 3.141592653589793 rad pos: 49.5,-88.5 parent: 2 type: Transform - - uid: 22613 + - uid: 22620 components: - rot: 3.141592653589793 rad pos: 48.5,-80.5 parent: 2 type: Transform - - uid: 22614 + - uid: 22621 components: - pos: 13.5,7.5 parent: 2 type: Transform - - uid: 22615 + - uid: 22622 components: - rot: 3.141592653589793 rad pos: 49.5,-73.5 @@ -171944,72 +157222,72 @@ entities: type: Transform - proto: RCD entities: - - uid: 22616 + - uid: 22623 components: - pos: -35.581818,-15.369191 parent: 2 type: Transform - proto: RCDAmmo entities: - - uid: 22617 + - uid: 22624 components: - pos: -35.753693,-15.681691 parent: 2 type: Transform - proto: ReagentContainerFlour entities: - - uid: 22618 + - uid: 22625 components: - pos: 2.337051,6.9047713 parent: 2 type: Transform - - uid: 22619 + - uid: 22626 components: - pos: 2.696426,6.7797713 parent: 2 type: Transform - - uid: 22620 + - uid: 22627 components: - pos: 2.399551,6.5610213 parent: 2 type: Transform - - uid: 22621 + - uid: 22628 components: - pos: 54.086075,18.83411 parent: 2 type: Transform - - uid: 22622 + - uid: 22629 components: - pos: 53.9767,18.568485 parent: 2 type: Transform - - uid: 22623 + - uid: 22630 components: - pos: 54.2892,18.568485 parent: 2 type: Transform - proto: ReagentContainerRice entities: - - uid: 22624 + - uid: 22631 components: - pos: -22.276304,44.96307 parent: 2 type: Transform - - uid: 22625 + - uid: 22632 components: - pos: -22.620054,44.759945 parent: 2 type: Transform - proto: ReagentContainerSugar entities: - - uid: 22626 + - uid: 22633 components: - pos: 4.6055,7.306335 parent: 2 type: Transform - proto: Recycler entities: - - uid: 22627 + - uid: 22634 components: - rot: 1.5707963267948966 rad pos: 17.5,-55.5 @@ -172018,3204 +157296,3204 @@ entities: - inputs: Reverse: - port: Right - uid: 25047 + uid: 25054 Forward: - port: Left - uid: 25047 + uid: 25054 Off: - port: Middle - uid: 25047 + uid: 25054 type: SignalReceiver - proto: ReinforcedPlasmaWindow entities: - - uid: 22628 + - uid: 22635 components: - rot: 3.141592653589793 rad pos: 28.5,-20.5 parent: 2 type: Transform - - uid: 22629 + - uid: 22636 components: - pos: -23.5,2.5 parent: 2 type: Transform - - uid: 22630 + - uid: 22637 components: - pos: 71.5,-27.5 parent: 2 type: Transform - - uid: 22631 + - uid: 22638 components: - pos: 29.5,26.5 parent: 2 type: Transform - - uid: 22632 + - uid: 22639 components: - pos: -15.5,2.5 parent: 2 type: Transform - - uid: 22633 + - uid: 22640 components: - rot: 3.141592653589793 rad pos: 23.5,-20.5 parent: 2 type: Transform - - uid: 22634 + - uid: 22641 components: - pos: 29.5,24.5 parent: 2 type: Transform - - uid: 22635 + - uid: 22642 components: - rot: 3.141592653589793 rad pos: 25.5,-20.5 parent: 2 type: Transform - - uid: 22636 + - uid: 22643 components: - pos: -19.5,5.5 parent: 2 type: Transform - - uid: 22637 + - uid: 22644 components: - rot: 3.141592653589793 rad pos: 22.5,-20.5 parent: 2 type: Transform - - uid: 22638 + - uid: 22645 components: - rot: 3.141592653589793 rad pos: 27.5,-20.5 parent: 2 type: Transform - - uid: 22639 + - uid: 22646 components: - rot: 3.141592653589793 rad pos: 6.5,-20.5 parent: 2 type: Transform - - uid: 22640 + - uid: 22647 components: - rot: 3.141592653589793 rad pos: 26.5,-20.5 parent: 2 type: Transform - - uid: 22641 + - uid: 22648 components: - rot: 3.141592653589793 rad pos: 24.5,-20.5 parent: 2 type: Transform - - uid: 22642 + - uid: 22649 components: - pos: 66.5,-39.5 parent: 2 type: Transform - - uid: 22643 + - uid: 22650 components: - pos: -41.5,-33.5 parent: 2 type: Transform - - uid: 22644 + - uid: 22651 components: - pos: -41.5,-35.5 parent: 2 type: Transform - - uid: 22645 + - uid: 22652 components: - pos: -41.5,-34.5 parent: 2 type: Transform - - uid: 22646 + - uid: 22653 components: - pos: -56.5,-11.5 parent: 2 type: Transform - - uid: 22647 + - uid: 22654 components: - pos: -56.5,-12.5 parent: 2 type: Transform - - uid: 22648 + - uid: 22655 components: - pos: -56.5,-13.5 parent: 2 type: Transform - - uid: 22649 + - uid: 22656 components: - pos: -56.5,-14.5 parent: 2 type: Transform - - uid: 22650 + - uid: 22657 components: - pos: -68.5,-22.5 parent: 2 type: Transform - - uid: 22651 + - uid: 22658 components: - pos: -67.5,-22.5 parent: 2 type: Transform - - uid: 22652 + - uid: 22659 components: - pos: -66.5,-22.5 parent: 2 type: Transform - - uid: 22653 + - uid: 22660 components: - pos: -65.5,-22.5 parent: 2 type: Transform - - uid: 22654 + - uid: 22661 components: - pos: -64.5,-22.5 parent: 2 type: Transform - - uid: 22655 + - uid: 22662 components: - pos: -47.5,-54.5 parent: 2 type: Transform - - uid: 22656 + - uid: 22663 components: - pos: -47.5,-50.5 parent: 2 type: Transform - - uid: 22657 + - uid: 22664 components: - pos: -47.5,-52.5 parent: 2 type: Transform - - uid: 22658 + - uid: 22665 components: - pos: -47.5,-48.5 parent: 2 type: Transform - - uid: 22659 + - uid: 22666 components: - pos: -47.5,-46.5 parent: 2 type: Transform - - uid: 22660 + - uid: 22667 components: - pos: -47.5,-44.5 parent: 2 type: Transform - - uid: 22661 + - uid: 22668 components: - pos: -47.5,-42.5 parent: 2 type: Transform - - uid: 22662 + - uid: 22669 components: - pos: -45.5,-33.5 parent: 2 type: Transform - - uid: 22663 + - uid: 22670 components: - pos: -45.5,-35.5 parent: 2 type: Transform - - uid: 22664 + - uid: 22671 components: - rot: 1.5707963267948966 rad pos: -52.5,-85.5 parent: 2 type: Transform - - uid: 22665 + - uid: 22672 components: - rot: 1.5707963267948966 rad pos: -52.5,-89.5 parent: 2 type: Transform - - uid: 22666 + - uid: 22673 components: - pos: -49.5,-87.5 parent: 2 type: Transform - - uid: 22667 + - uid: 22674 components: - pos: -50.5,-87.5 parent: 2 type: Transform - - uid: 22668 + - uid: 22675 components: - pos: -0.5,60.5 parent: 2 type: Transform - - uid: 22669 + - uid: 22676 components: - pos: -2.5,60.5 parent: 2 type: Transform - - uid: 22670 + - uid: 22677 components: - pos: 5.5,69.5 parent: 2 type: Transform - - uid: 22671 + - uid: 22678 components: - pos: -8.5,69.5 parent: 2 type: Transform - - uid: 22672 + - uid: 22679 components: - pos: -56.5,-15.5 parent: 2 type: Transform - - uid: 22673 + - uid: 22680 components: - pos: 68.5,-39.5 parent: 2 type: Transform - - uid: 22674 + - uid: 22681 components: - pos: 73.5,-30.5 parent: 2 type: Transform - - uid: 22675 + - uid: 22682 components: - pos: 73.5,-27.5 parent: 2 type: Transform - - uid: 22676 + - uid: 22683 components: - pos: 69.5,-36.5 parent: 2 type: Transform - - uid: 22677 + - uid: 22684 components: - pos: 69.5,-38.5 parent: 2 type: Transform - - uid: 22678 + - uid: 22685 components: - pos: -44.5,-37.5 parent: 2 type: Transform - - uid: 22679 + - uid: 22686 components: - pos: 71.5,-30.5 parent: 2 type: Transform - - uid: 22680 + - uid: 22687 components: - rot: 3.141592653589793 rad pos: 6.5,-22.5 parent: 2 type: Transform - - uid: 22681 + - uid: 22688 components: - rot: 3.141592653589793 rad pos: 6.5,-23.5 parent: 2 type: Transform - - uid: 22682 + - uid: 22689 components: - pos: 9.5,-18.5 parent: 2 type: Transform - - uid: 22683 + - uid: 22690 components: - rot: 3.141592653589793 rad pos: 6.5,-19.5 parent: 2 type: Transform - - uid: 22684 + - uid: 22691 components: - pos: 67.5,-32.5 parent: 2 type: Transform - proto: ReinforcedWindow entities: - - uid: 22685 + - uid: 22692 components: - rot: 3.141592653589793 rad pos: 5.5,18.5 parent: 2 type: Transform - - uid: 22686 + - uid: 22693 components: - rot: -1.5707963267948966 rad pos: -46.5,45.5 parent: 2 type: Transform - - uid: 22687 + - uid: 22694 components: - rot: -1.5707963267948966 rad pos: -47.5,45.5 parent: 2 type: Transform - - uid: 22688 + - uid: 22695 components: - pos: 69.5,-42.5 parent: 2 type: Transform - - uid: 22689 + - uid: 22696 components: - pos: 68.5,-42.5 parent: 2 type: Transform - - uid: 22690 + - uid: 22697 components: - pos: 78.5,-45.5 parent: 2 type: Transform - - uid: 22691 + - uid: 22698 components: - pos: 3.5,-39.5 parent: 2 type: Transform - - uid: 22692 + - uid: 22699 components: - pos: 70.5,-42.5 parent: 2 type: Transform - - uid: 22693 + - uid: 22700 components: - rot: 3.141592653589793 rad pos: 28.5,-62.5 parent: 2 type: Transform - - uid: 22694 + - uid: 22701 components: - rot: 3.141592653589793 rad pos: 31.5,-64.5 parent: 2 type: Transform - - uid: 22695 + - uid: 22702 components: - rot: 3.141592653589793 rad pos: 22.5,-55.5 parent: 2 type: Transform - - uid: 22696 + - uid: 22703 components: - rot: 3.141592653589793 rad pos: 33.5,-63.5 parent: 2 type: Transform - - uid: 22697 + - uid: 22704 components: - pos: 32.5,-9.5 parent: 2 type: Transform - - uid: 22698 + - uid: 22705 components: - pos: 3.5,-28.5 parent: 2 type: Transform - - uid: 22699 + - uid: 22706 components: - rot: -1.5707963267948966 rad pos: -15.5,-77.5 parent: 2 type: Transform - - uid: 22700 + - uid: 22707 components: - pos: 19.5,-15.5 parent: 2 type: Transform - - uid: 22701 + - uid: 22708 components: - pos: -18.5,-89.5 parent: 2 type: Transform - - uid: 22702 + - uid: 22709 components: - rot: 3.141592653589793 rad pos: 31.5,-33.5 parent: 2 type: Transform - - uid: 22703 + - uid: 22710 components: - pos: 7.5,-59.5 parent: 2 type: Transform - - uid: 22704 + - uid: 22711 components: - rot: 3.141592653589793 rad pos: -9.5,-76.5 parent: 2 type: Transform - - uid: 22705 + - uid: 22712 components: - rot: -1.5707963267948966 rad pos: 35.5,4.5 parent: 2 type: Transform - - uid: 22706 + - uid: 22713 components: - pos: -20.5,-91.5 parent: 2 type: Transform - - uid: 22707 + - uid: 22714 components: - pos: -1.5,-35.5 parent: 2 type: Transform - - uid: 22708 + - uid: 22715 components: - rot: 1.5707963267948966 rad pos: 1.5,-18.5 parent: 2 type: Transform - - uid: 22709 + - uid: 22716 components: - rot: 1.5707963267948966 rad pos: 39.5,52.5 parent: 2 type: Transform - - uid: 22710 + - uid: 22717 components: - rot: 1.5707963267948966 rad pos: 23.5,-46.5 parent: 2 type: Transform - - uid: 22711 + - uid: 22718 components: - pos: -17.5,-1.5 parent: 2 type: Transform - - uid: 22712 + - uid: 22719 components: - rot: -1.5707963267948966 rad pos: -13.5,-11.5 parent: 2 type: Transform - - uid: 22713 + - uid: 22720 components: - pos: -45.5,-50.5 parent: 2 type: Transform - - uid: 22714 + - uid: 22721 components: - rot: -1.5707963267948966 rad pos: -14.5,-77.5 parent: 2 type: Transform - - uid: 22715 + - uid: 22722 components: - pos: 20.5,-35.5 parent: 2 type: Transform - - uid: 22716 + - uid: 22723 components: - pos: 20.5,-36.5 parent: 2 type: Transform - - uid: 22717 + - uid: 22724 components: - pos: 43.5,11.5 parent: 2 type: Transform - - uid: 22718 + - uid: 22725 components: - pos: -16.5,-1.5 parent: 2 type: Transform - - uid: 22719 + - uid: 22726 components: - rot: -1.5707963267948966 rad pos: 5.5,-44.5 parent: 2 type: Transform - - uid: 22720 + - uid: 22727 components: - rot: -1.5707963267948966 rad pos: -10.5,-11.5 parent: 2 type: Transform - - uid: 22721 + - uid: 22728 components: - pos: 17.5,18.5 parent: 2 type: Transform - - uid: 22722 + - uid: 22729 components: - pos: -1.5,-32.5 parent: 2 type: Transform - - uid: 22723 + - uid: 22730 components: - pos: 23.5,-12.5 parent: 2 type: Transform - - uid: 22724 + - uid: 22731 components: - pos: -1.5,-34.5 parent: 2 type: Transform - - uid: 22725 + - uid: 22732 components: - rot: -1.5707963267948966 rad pos: 32.5,9.5 parent: 2 type: Transform - - uid: 22726 + - uid: 22733 components: - rot: 3.141592653589793 rad pos: 28.5,13.5 parent: 2 type: Transform - - uid: 22727 + - uid: 22734 components: - pos: 31.5,-38.5 parent: 2 type: Transform - - uid: 22728 + - uid: 22735 components: - pos: 18.5,-38.5 parent: 2 type: Transform - - uid: 22729 + - uid: 22736 components: - rot: 3.141592653589793 rad pos: 10.5,18.5 parent: 2 type: Transform - - uid: 22730 + - uid: 22737 components: - rot: 3.141592653589793 rad pos: 21.5,-55.5 parent: 2 type: Transform - - uid: 22731 + - uid: 22738 components: - rot: 3.141592653589793 rad pos: 33.5,-15.5 parent: 2 type: Transform - - uid: 22732 + - uid: 22739 components: - rot: 3.141592653589793 rad pos: 37.5,-35.5 parent: 2 type: Transform - - uid: 22733 + - uid: 22740 components: - rot: -1.5707963267948966 rad pos: 34.5,9.5 parent: 2 type: Transform - - uid: 22734 + - uid: 22741 components: - pos: 43.5,7.5 parent: 2 type: Transform - - uid: 22735 + - uid: 22742 components: - pos: 23.5,-11.5 parent: 2 type: Transform - - uid: 22736 + - uid: 22743 components: - pos: 35.5,18.5 parent: 2 type: Transform - - uid: 22737 + - uid: 22744 components: - rot: 3.141592653589793 rad pos: 39.5,5.5 parent: 2 type: Transform - - uid: 22738 + - uid: 22745 components: - rot: 3.141592653589793 rad pos: 34.5,13.5 parent: 2 type: Transform - - uid: 22739 + - uid: 22746 components: - rot: 3.141592653589793 rad pos: 31.5,-15.5 parent: 2 type: Transform - - uid: 22740 + - uid: 22747 components: - pos: 37.5,-21.5 parent: 2 type: Transform - - uid: 22741 + - uid: 22748 components: - pos: 37.5,-22.5 parent: 2 type: Transform - - uid: 22742 + - uid: 22749 components: - pos: 43.5,10.5 parent: 2 type: Transform - - uid: 22743 + - uid: 22750 components: - rot: 3.141592653589793 rad pos: 25.5,-38.5 parent: 2 type: Transform - - uid: 22744 + - uid: 22751 components: - rot: 3.141592653589793 rad pos: 26.5,-38.5 parent: 2 type: Transform - - uid: 22745 + - uid: 22752 components: - pos: 17.5,-34.5 parent: 2 type: Transform - - uid: 22746 + - uid: 22753 components: - pos: 17.5,-35.5 parent: 2 type: Transform - - uid: 22747 + - uid: 22754 components: - pos: 17.5,-36.5 parent: 2 type: Transform - - uid: 22748 + - uid: 22755 components: - pos: 19.5,-38.5 parent: 2 type: Transform - - uid: 22749 + - uid: 22756 components: - pos: 32.5,-38.5 parent: 2 type: Transform - - uid: 22750 + - uid: 22757 components: - pos: 33.5,-34.5 parent: 2 type: Transform - - uid: 22751 + - uid: 22758 components: - pos: 33.5,-36.5 parent: 2 type: Transform - - uid: 22752 + - uid: 22759 components: - pos: 33.5,-35.5 parent: 2 type: Transform - - uid: 22753 + - uid: 22760 components: - rot: -1.5707963267948966 rad pos: -9.5,-11.5 parent: 2 type: Transform - - uid: 22754 + - uid: 22761 components: - pos: 48.5,-0.5 parent: 2 type: Transform - - uid: 22755 + - uid: 22762 components: - rot: -1.5707963267948966 rad pos: -26.5,-10.5 parent: 2 type: Transform - - uid: 22756 + - uid: 22763 components: - rot: 1.5707963267948966 rad pos: -26.5,-13.5 parent: 2 type: Transform - - uid: 22757 + - uid: 22764 components: - rot: -1.5707963267948966 rad pos: 4.5,-44.5 parent: 2 type: Transform - - uid: 22758 + - uid: 22765 components: - rot: 1.5707963267948966 rad pos: 2.5,-18.5 parent: 2 type: Transform - - uid: 22759 + - uid: 22766 components: - pos: 12.5,-33.5 parent: 2 type: Transform - - uid: 22760 + - uid: 22767 components: - pos: 12.5,-32.5 parent: 2 type: Transform - - uid: 22761 + - uid: 22768 components: - pos: 2.5,-39.5 parent: 2 type: Transform - - uid: 22762 + - uid: 22769 components: - pos: -18.5,-58.5 parent: 2 type: Transform - - uid: 22763 + - uid: 22770 components: - pos: -20.5,-58.5 parent: 2 type: Transform - - uid: 22764 + - uid: 22771 components: - pos: 27.5,22.5 parent: 2 type: Transform - - uid: 22765 + - uid: 22772 components: - pos: -27.5,-89.5 parent: 2 type: Transform - - uid: 22766 + - uid: 22773 components: - pos: -48.5,-81.5 parent: 2 type: Transform - - uid: 22767 + - uid: 22774 components: - pos: -48.5,-82.5 parent: 2 type: Transform - - uid: 22768 + - uid: 22775 components: - pos: 21.5,-15.5 parent: 2 type: Transform - - uid: 22769 + - uid: 22776 components: - pos: -22.5,-3.5 parent: 2 type: Transform - - uid: 22770 + - uid: 22777 components: - pos: -16.5,-3.5 parent: 2 type: Transform - - uid: 22771 + - uid: 22778 components: - pos: 9.5,13.5 parent: 2 type: Transform - - uid: 22772 + - uid: 22779 components: - rot: -1.5707963267948966 rad pos: 27.5,20.5 parent: 2 type: Transform - - uid: 22773 + - uid: 22780 components: - rot: -1.5707963267948966 rad pos: -12.5,-11.5 parent: 2 type: Transform - - uid: 22774 + - uid: 22781 components: - rot: 3.141592653589793 rad pos: 31.5,13.5 parent: 2 type: Transform - - uid: 22775 + - uid: 22782 components: - pos: -24.5,-91.5 parent: 2 type: Transform - - uid: 22776 + - uid: 22783 components: - rot: -1.5707963267948966 rad pos: -0.5,-82.5 parent: 2 type: Transform - - uid: 22777 + - uid: 22784 components: - rot: 3.141592653589793 rad pos: 39.5,8.5 parent: 2 type: Transform - - uid: 22778 + - uid: 22785 components: - pos: 42.5,-28.5 parent: 2 type: Transform - - uid: 22779 + - uid: 22786 components: - pos: 16.5,-68.5 parent: 2 type: Transform - - uid: 22780 + - uid: 22787 components: - rot: 3.141592653589793 rad pos: -7.5,-76.5 parent: 2 type: Transform - - uid: 22781 + - uid: 22788 components: - rot: -1.5707963267948966 rad pos: -8.5,-11.5 parent: 2 type: Transform - - uid: 22782 + - uid: 22789 components: - pos: -27.5,-88.5 parent: 2 type: Transform - - uid: 22783 + - uid: 22790 components: - rot: -1.5707963267948966 rad pos: -26.5,-11.5 parent: 2 type: Transform - - uid: 22784 + - uid: 22791 components: - pos: -1.5,-31.5 parent: 2 type: Transform - - uid: 22785 + - uid: 22792 components: - pos: 1.5,-30.5 parent: 2 type: Transform - - uid: 22786 + - uid: 22793 components: - rot: -1.5707963267948966 rad pos: 0.5,-24.5 parent: 2 type: Transform - - uid: 22787 + - uid: 22794 components: - rot: -1.5707963267948966 rad pos: 1.5,-24.5 parent: 2 type: Transform - - uid: 22788 + - uid: 22795 components: - rot: -1.5707963267948966 rad pos: 2.5,-24.5 parent: 2 type: Transform - - uid: 22789 + - uid: 22796 components: - rot: 3.141592653589793 rad pos: 3.5,-44.5 parent: 2 type: Transform - - uid: 22790 + - uid: 22797 components: - rot: -1.5707963267948966 rad pos: 29.5,9.5 parent: 2 type: Transform - - uid: 22791 + - uid: 22798 components: - rot: -1.5707963267948966 rad pos: 7.5,18.5 parent: 2 type: Transform - - uid: 22792 + - uid: 22799 components: - pos: -21.5,-3.5 parent: 2 type: Transform - - uid: 22793 + - uid: 22800 components: - pos: 37.5,-36.5 parent: 2 type: Transform - - uid: 22794 + - uid: 22801 components: - rot: -1.5707963267948966 rad pos: 1.5,-74.5 parent: 2 type: Transform - - uid: 22795 + - uid: 22802 components: - pos: -29.5,45.5 parent: 2 type: Transform - - uid: 22796 + - uid: 22803 components: - pos: 9.5,14.5 parent: 2 type: Transform - - uid: 22797 + - uid: 22804 components: - pos: -25.5,-91.5 parent: 2 type: Transform - - uid: 22798 + - uid: 22805 components: - pos: -21.5,-91.5 parent: 2 type: Transform - - uid: 22799 + - uid: 22806 components: - rot: -1.5707963267948966 rad pos: 35.5,7.5 parent: 2 type: Transform - - uid: 22800 + - uid: 22807 components: - rot: -1.5707963267948966 rad pos: -31.5,-79.5 parent: 2 type: Transform - - uid: 22801 + - uid: 22808 components: - rot: -1.5707963267948966 rad pos: -31.5,-77.5 parent: 2 type: Transform - - uid: 22802 + - uid: 22809 components: - pos: 15.5,18.5 parent: 2 type: Transform - - uid: 22803 + - uid: 22810 components: - pos: 5.5,-28.5 parent: 2 type: Transform - - uid: 22804 + - uid: 22811 components: - pos: 18.5,-65.5 parent: 2 type: Transform - - uid: 22805 + - uid: 22812 components: - rot: 3.141592653589793 rad pos: 28.5,-63.5 parent: 2 type: Transform - - uid: 22806 + - uid: 22813 components: - pos: -45.5,-49.5 parent: 2 type: Transform - - uid: 22807 + - uid: 22814 components: - pos: 7.5,-61.5 parent: 2 type: Transform - - uid: 22808 + - uid: 22815 components: - rot: 3.141592653589793 rad pos: 12.5,18.5 parent: 2 type: Transform - - uid: 22809 + - uid: 22816 components: - pos: 1.5,-31.5 parent: 2 type: Transform - - uid: 22810 + - uid: 22817 components: - rot: -1.5707963267948966 rad pos: -13.5,37.5 parent: 2 type: Transform - - uid: 22811 + - uid: 22818 components: - pos: 15.5,-68.5 parent: 2 type: Transform - - uid: 22812 + - uid: 22819 components: - rot: 3.141592653589793 rad pos: 30.5,-64.5 parent: 2 type: Transform - - uid: 22813 + - uid: 22820 components: - rot: 3.141592653589793 rad pos: 33.5,-62.5 parent: 2 type: Transform - - uid: 22814 + - uid: 22821 components: - rot: -1.5707963267948966 rad pos: -2.5,-82.5 parent: 2 type: Transform - - uid: 22815 + - uid: 22822 components: - pos: -18.5,-88.5 parent: 2 type: Transform - - uid: 22816 + - uid: 22823 components: - rot: -1.5707963267948966 rad pos: 1.5,-47.5 parent: 2 type: Transform - - uid: 22817 + - uid: 22824 components: - pos: -1.5,-33.5 parent: 2 type: Transform - - uid: 22818 + - uid: 22825 components: - rot: 3.141592653589793 rad pos: 27.5,-38.5 parent: 2 type: Transform - - uid: 22819 + - uid: 22826 components: - pos: -22.5,-1.5 parent: 2 type: Transform - - uid: 22820 + - uid: 22827 components: - pos: -21.5,-1.5 parent: 2 type: Transform - - uid: 22821 + - uid: 22828 components: - pos: -17.5,-3.5 parent: 2 type: Transform - - uid: 22822 + - uid: 22829 components: - pos: 12.5,-34.5 parent: 2 type: Transform - - uid: 22823 + - uid: 22830 components: - rot: 3.141592653589793 rad pos: 20.5,-55.5 parent: 2 type: Transform - - uid: 22824 + - uid: 22831 components: - pos: 18.5,-66.5 parent: 2 type: Transform - - uid: 22825 + - uid: 22832 components: - pos: 42.5,-23.5 parent: 2 type: Transform - - uid: 22826 + - uid: 22833 components: - pos: 41.5,-28.5 parent: 2 type: Transform - - uid: 22827 + - uid: 22834 components: - pos: 41.5,-23.5 parent: 2 type: Transform - - uid: 22828 + - uid: 22835 components: - pos: -2.5,42.5 parent: 2 type: Transform - - uid: 22829 + - uid: 22836 components: - pos: 6.5,25.5 parent: 2 type: Transform - - uid: 22830 + - uid: 22837 components: - pos: 2.5,25.5 parent: 2 type: Transform - - uid: 22831 + - uid: 22838 components: - pos: 54.5,61.5 parent: 2 type: Transform - - uid: 22832 + - uid: 22839 components: - pos: 18.5,32.5 parent: 2 type: Transform - - uid: 22833 + - uid: 22840 components: - pos: 18.5,33.5 parent: 2 type: Transform - - uid: 22834 + - uid: 22841 components: - rot: -1.5707963267948966 rad pos: 7.5,35.5 parent: 2 type: Transform - - uid: 22835 + - uid: 22842 components: - pos: 4.5,25.5 parent: 2 type: Transform - - uid: 22836 + - uid: 22843 components: - rot: -1.5707963267948966 rad pos: 36.5,24.5 parent: 2 type: Transform - - uid: 22837 + - uid: 22844 components: - rot: -1.5707963267948966 rad pos: 38.5,24.5 parent: 2 type: Transform - - uid: 22838 + - uid: 22845 components: - rot: -1.5707963267948966 rad pos: 40.5,24.5 parent: 2 type: Transform - - uid: 22839 + - uid: 22846 components: - rot: 3.141592653589793 rad pos: 52.5,14.5 parent: 2 type: Transform - - uid: 22840 + - uid: 22847 components: - rot: 3.141592653589793 rad pos: 53.5,14.5 parent: 2 type: Transform - - uid: 22841 + - uid: 22848 components: - rot: 3.141592653589793 rad pos: 54.5,14.5 parent: 2 type: Transform - - uid: 22842 + - uid: 22849 components: - rot: 3.141592653589793 rad pos: 51.5,13.5 parent: 2 type: Transform - - uid: 22843 + - uid: 22850 components: - rot: 3.141592653589793 rad pos: 51.5,11.5 parent: 2 type: Transform - - uid: 22844 + - uid: 22851 components: - rot: 3.141592653589793 rad pos: 52.5,10.5 parent: 2 type: Transform - - uid: 22845 + - uid: 22852 components: - rot: 3.141592653589793 rad pos: 54.5,10.5 parent: 2 type: Transform - - uid: 22846 + - uid: 22853 components: - rot: 3.141592653589793 rad pos: 55.5,11.5 parent: 2 type: Transform - - uid: 22847 + - uid: 22854 components: - rot: 3.141592653589793 rad pos: 55.5,12.5 parent: 2 type: Transform - - uid: 22848 + - uid: 22855 components: - rot: 3.141592653589793 rad pos: 55.5,13.5 parent: 2 type: Transform - - uid: 22849 + - uid: 22856 components: - pos: 46.5,9.5 parent: 2 type: Transform - - uid: 22850 + - uid: 22857 components: - rot: -1.5707963267948966 rad pos: 42.5,24.5 parent: 2 type: Transform - - uid: 22851 + - uid: 22858 components: - rot: -1.5707963267948966 rad pos: 43.5,5.5 parent: 2 type: Transform - - uid: 22852 + - uid: 22859 components: - pos: 24.5,-58.5 parent: 2 type: Transform - - uid: 22853 + - uid: 22860 components: - pos: 24.5,-59.5 parent: 2 type: Transform - - uid: 22854 + - uid: 22861 components: - pos: 66.5,25.5 parent: 2 type: Transform - - uid: 22855 + - uid: 22862 components: - pos: 66.5,23.5 parent: 2 type: Transform - - uid: 22856 + - uid: 22863 components: - pos: 64.5,27.5 parent: 2 type: Transform - - uid: 22857 + - uid: 22864 components: - pos: 62.5,27.5 parent: 2 type: Transform - - uid: 22858 + - uid: 22865 components: - rot: 1.5707963267948966 rad pos: 68.5,-6.5 parent: 2 type: Transform - - uid: 22859 + - uid: 22866 components: - pos: 60.5,-4.5 parent: 2 type: Transform - - uid: 22860 + - uid: 22867 components: - rot: 1.5707963267948966 rad pos: 68.5,-12.5 parent: 2 type: Transform - - uid: 22861 + - uid: 22868 components: - rot: 1.5707963267948966 rad pos: 68.5,-10.5 parent: 2 type: Transform - - uid: 22862 + - uid: 22869 components: - rot: 1.5707963267948966 rad pos: 68.5,-4.5 parent: 2 type: Transform - - uid: 22863 + - uid: 22870 components: - pos: 59.5,-15.5 parent: 2 type: Transform - - uid: 22864 + - uid: 22871 components: - pos: 58.5,-15.5 parent: 2 type: Transform - - uid: 22865 + - uid: 22872 components: - pos: 56.5,-15.5 parent: 2 type: Transform - - uid: 22866 + - uid: 22873 components: - pos: 55.5,-15.5 parent: 2 type: Transform - - uid: 22867 + - uid: 22874 components: - pos: 63.5,-26.5 parent: 2 type: Transform - - uid: 22868 + - uid: 22875 components: - pos: 63.5,-24.5 parent: 2 type: Transform - - uid: 22869 + - uid: 22876 components: - pos: 61.5,-22.5 parent: 2 type: Transform - - uid: 22870 + - uid: 22877 components: - pos: 61.5,-20.5 parent: 2 type: Transform - - uid: 22871 + - uid: 22878 components: - pos: 63.5,-18.5 parent: 2 type: Transform - - uid: 22872 + - uid: 22879 components: - pos: 61.5,-24.5 parent: 2 type: Transform - - uid: 22873 + - uid: 22880 components: - pos: 63.5,-22.5 parent: 2 type: Transform - - uid: 22874 + - uid: 22881 components: - pos: 63.5,-20.5 parent: 2 type: Transform - - uid: 22875 + - uid: 22882 components: - pos: 61.5,-18.5 parent: 2 type: Transform - - uid: 22876 + - uid: 22883 components: - rot: 1.5707963267948966 rad pos: 68.5,-2.5 parent: 2 type: Transform - - uid: 22877 + - uid: 22884 components: - pos: 64.5,-37.5 parent: 2 type: Transform - - uid: 22878 + - uid: 22885 components: - pos: 78.5,-38.5 parent: 2 type: Transform - - uid: 22879 + - uid: 22886 components: - pos: 77.5,-32.5 parent: 2 type: Transform - - uid: 22880 + - uid: 22887 components: - pos: 78.5,-32.5 parent: 2 type: Transform - - uid: 22881 + - uid: 22888 components: - pos: 77.5,-38.5 parent: 2 type: Transform - - uid: 22882 + - uid: 22889 components: - rot: -1.5707963267948966 rad pos: 42.5,-31.5 parent: 2 type: Transform - - uid: 22883 + - uid: 22890 components: - pos: 56.5,-46.5 parent: 2 type: Transform - - uid: 22884 + - uid: 22891 components: - pos: 61.5,-56.5 parent: 2 type: Transform - - uid: 22885 + - uid: 22892 components: - pos: 61.5,-50.5 parent: 2 type: Transform - - uid: 22886 + - uid: 22893 components: - pos: 63.5,-50.5 parent: 2 type: Transform - - uid: 22887 + - uid: 22894 components: - pos: 62.5,-56.5 parent: 2 type: Transform - - uid: 22888 + - uid: 22895 components: - pos: 58.5,-52.5 parent: 2 type: Transform - - uid: 22889 + - uid: 22896 components: - pos: 58.5,-51.5 parent: 2 type: Transform - - uid: 22890 + - uid: 22897 components: - pos: 66.5,-52.5 parent: 2 type: Transform - - uid: 22891 + - uid: 22898 components: - pos: 66.5,-51.5 parent: 2 type: Transform - - uid: 22892 + - uid: 22899 components: - pos: 63.5,-56.5 parent: 2 type: Transform - - uid: 22893 + - uid: 22900 components: - pos: 54.5,-51.5 parent: 2 type: Transform - - uid: 22894 + - uid: 22901 components: - pos: 54.5,-52.5 parent: 2 type: Transform - - uid: 22895 + - uid: 22902 components: - pos: 54.5,-53.5 parent: 2 type: Transform - - uid: 22896 + - uid: 22903 components: - pos: 50.5,-31.5 parent: 2 type: Transform - - uid: 22897 + - uid: 22904 components: - pos: 51.5,-31.5 parent: 2 type: Transform - - uid: 22898 + - uid: 22905 components: - pos: 79.5,-35.5 parent: 2 type: Transform - - uid: 22899 + - uid: 22906 components: - pos: 58.5,-25.5 parent: 2 type: Transform - - uid: 22900 + - uid: 22907 components: - pos: 76.5,-35.5 parent: 2 type: Transform - - uid: 22901 + - uid: 22908 components: - pos: 77.5,-35.5 parent: 2 type: Transform - - uid: 22902 + - uid: 22909 components: - pos: 78.5,-35.5 parent: 2 type: Transform - - uid: 22903 + - uid: 22910 components: - pos: 78.5,-46.5 parent: 2 type: Transform - - uid: 22904 + - uid: 22911 components: - pos: -45.5,-51.5 parent: 2 type: Transform - - uid: 22905 + - uid: 22912 components: - pos: 49.5,-59.5 parent: 2 type: Transform - - uid: 22906 + - uid: 22913 components: - pos: 50.5,-59.5 parent: 2 type: Transform - - uid: 22907 + - uid: 22914 components: - pos: 52.5,-61.5 parent: 2 type: Transform - - uid: 22908 + - uid: 22915 components: - pos: 49.5,-62.5 parent: 2 type: Transform - - uid: 22909 + - uid: 22916 components: - pos: 51.5,-62.5 parent: 2 type: Transform - - uid: 22910 + - uid: 22917 components: - pos: 43.5,-69.5 parent: 2 type: Transform - - uid: 22911 + - uid: 22918 components: - pos: 42.5,-69.5 parent: 2 type: Transform - - uid: 22912 + - uid: 22919 components: - pos: 35.5,-69.5 parent: 2 type: Transform - - uid: 22913 + - uid: 22920 components: - pos: 44.5,-69.5 parent: 2 type: Transform - - uid: 22914 + - uid: 22921 components: - rot: 1.5707963267948966 rad pos: 20.5,-44.5 parent: 2 type: Transform - - uid: 22915 + - uid: 22922 components: - pos: -40.5,-12.5 parent: 2 type: Transform - - uid: 22916 + - uid: 22923 components: - pos: -40.5,-9.5 parent: 2 type: Transform - - uid: 22917 + - uid: 22924 components: - pos: -33.5,-17.5 parent: 2 type: Transform - - uid: 22918 + - uid: 22925 components: - pos: -33.5,-15.5 parent: 2 type: Transform - - uid: 22919 + - uid: 22926 components: - rot: -1.5707963267948966 rad pos: -30.5,-12.5 parent: 2 type: Transform - - uid: 22920 + - uid: 22927 components: - rot: -1.5707963267948966 rad pos: -30.5,-13.5 parent: 2 type: Transform - - uid: 22921 + - uid: 22928 components: - pos: -26.5,-9.5 parent: 2 type: Transform - - uid: 22922 + - uid: 22929 components: - rot: -1.5707963267948966 rad pos: -21.5,-35.5 parent: 2 type: Transform - - uid: 22923 + - uid: 22930 components: - pos: 58.5,-59.5 parent: 2 type: Transform - - uid: 22924 + - uid: 22931 components: - pos: 58.5,-60.5 parent: 2 type: Transform - - uid: 22925 + - uid: 22932 components: - pos: 54.5,-25.5 parent: 2 type: Transform - - uid: 22926 + - uid: 22933 components: - rot: 3.141592653589793 rad pos: 56.5,-55.5 parent: 2 type: Transform - - uid: 22927 + - uid: 22934 components: - rot: 3.141592653589793 rad pos: 59.5,-54.5 parent: 2 type: Transform - - uid: 22928 + - uid: 22935 components: - rot: 3.141592653589793 rad pos: 65.5,-54.5 parent: 2 type: Transform - - uid: 22929 + - uid: 22936 components: - rot: 1.5707963267948966 rad pos: 44.5,-85.5 parent: 2 type: Transform - - uid: 22930 + - uid: 22937 components: - pos: 41.5,-74.5 parent: 2 type: Transform - - uid: 22931 + - uid: 22938 components: - rot: -1.5707963267948966 rad pos: 37.5,-74.5 parent: 2 type: Transform - - uid: 22932 + - uid: 22939 components: - pos: 37.5,-66.5 parent: 2 type: Transform - - uid: 22933 + - uid: 22940 components: - pos: 36.5,-69.5 parent: 2 type: Transform - - uid: 22934 + - uid: 22941 components: - pos: 34.5,-69.5 parent: 2 type: Transform - - uid: 22935 + - uid: 22942 components: - pos: 37.5,-64.5 parent: 2 type: Transform - - uid: 22936 + - uid: 22943 components: - rot: 1.5707963267948966 rad pos: 34.5,-86.5 parent: 2 type: Transform - - uid: 22937 + - uid: 22944 components: - rot: 1.5707963267948966 rad pos: 34.5,-87.5 parent: 2 type: Transform - - uid: 22938 + - uid: 22945 components: - rot: 1.5707963267948966 rad pos: 46.5,-78.5 parent: 2 type: Transform - - uid: 22939 + - uid: 22946 components: - rot: 1.5707963267948966 rad pos: 16.5,-88.5 parent: 2 type: Transform - - uid: 22940 + - uid: 22947 components: - rot: 1.5707963267948966 rad pos: 13.5,-78.5 parent: 2 type: Transform - - uid: 22941 + - uid: 22948 components: - rot: 3.141592653589793 rad pos: 50.5,-81.5 parent: 2 type: Transform - - uid: 22942 + - uid: 22949 components: - rot: 3.141592653589793 rad pos: 50.5,-83.5 parent: 2 type: Transform - - uid: 22943 + - uid: 22950 components: - rot: 1.5707963267948966 rad pos: 14.5,-88.5 parent: 2 type: Transform - - uid: 22944 + - uid: 22951 components: - rot: 1.5707963267948966 rad pos: 17.5,-78.5 parent: 2 type: Transform - - uid: 22945 + - uid: 22952 components: - rot: 1.5707963267948966 rad pos: 44.5,-84.5 parent: 2 type: Transform - - uid: 22946 + - uid: 22953 components: - pos: 38.5,-74.5 parent: 2 type: Transform - - uid: 22947 + - uid: 22954 components: - pos: 39.5,-74.5 parent: 2 type: Transform - - uid: 22948 + - uid: 22955 components: - pos: 40.5,-74.5 parent: 2 type: Transform - - uid: 22949 + - uid: 22956 components: - pos: 17.5,-74.5 parent: 2 type: Transform - - uid: 22950 + - uid: 22957 components: - pos: 18.5,-74.5 parent: 2 type: Transform - - uid: 22951 + - uid: 22958 components: - pos: 14.5,-74.5 parent: 2 type: Transform - - uid: 22952 + - uid: 22959 components: - pos: 17.5,-71.5 parent: 2 type: Transform - - uid: 22953 + - uid: 22960 components: - rot: 1.5707963267948966 rad pos: 44.5,-86.5 parent: 2 type: Transform - - uid: 22954 + - uid: 22961 components: - pos: 15.5,-71.5 parent: 2 type: Transform - - uid: 22955 + - uid: 22962 components: - pos: 15.5,-74.5 parent: 2 type: Transform - - uid: 22956 + - uid: 22963 components: - rot: 3.141592653589793 rad pos: 26.5,-67.5 parent: 2 type: Transform - - uid: 22957 + - uid: 22964 components: - rot: 3.141592653589793 rad pos: 28.5,-90.5 parent: 2 type: Transform - - uid: 22958 + - uid: 22965 components: - rot: 3.141592653589793 rad pos: 24.5,-80.5 parent: 2 type: Transform - - uid: 22959 + - uid: 22966 components: - pos: 14.5,-71.5 parent: 2 type: Transform - - uid: 22960 + - uid: 22967 components: - pos: 18.5,-71.5 parent: 2 type: Transform - - uid: 22961 + - uid: 22968 components: - rot: 3.141592653589793 rad pos: 25.5,-80.5 parent: 2 type: Transform - - uid: 22962 + - uid: 22969 components: - rot: 1.5707963267948966 rad pos: 46.5,-79.5 parent: 2 type: Transform - - uid: 22963 + - uid: 22970 components: - rot: 1.5707963267948966 rad pos: 13.5,-88.5 parent: 2 type: Transform - - uid: 22964 + - uid: 22971 components: - rot: 1.5707963267948966 rad pos: 17.5,-88.5 parent: 2 type: Transform - - uid: 22965 + - uid: 22972 components: - rot: 1.5707963267948966 rad pos: 32.5,-77.5 parent: 2 type: Transform - - uid: 22966 + - uid: 22973 components: - rot: 1.5707963267948966 rad pos: 16.5,-78.5 parent: 2 type: Transform - - uid: 22967 + - uid: 22974 components: - rot: 1.5707963267948966 rad pos: 14.5,-78.5 parent: 2 type: Transform - - uid: 22968 + - uid: 22975 components: - rot: 3.141592653589793 rad pos: 25.5,-67.5 parent: 2 type: Transform - - uid: 22969 + - uid: 22976 components: - rot: -1.5707963267948966 rad pos: 50.5,-64.5 parent: 2 type: Transform - - uid: 22970 + - uid: 22977 components: - pos: -33.5,-9.5 parent: 2 type: Transform - - uid: 22971 + - uid: 22978 components: - pos: -33.5,-12.5 parent: 2 type: Transform - - uid: 22972 + - uid: 22979 components: - pos: -45.5,-47.5 parent: 2 type: Transform - - uid: 22973 + - uid: 22980 components: - rot: -1.5707963267948966 rad pos: -37.5,-14.5 parent: 2 type: Transform - - uid: 22974 + - uid: 22981 components: - pos: -45.5,-48.5 parent: 2 type: Transform - - uid: 22975 + - uid: 22982 components: - pos: 78.5,-44.5 parent: 2 type: Transform - - uid: 22976 + - uid: 22983 components: - pos: 68.5,-56.5 parent: 2 type: Transform - - uid: 22977 + - uid: 22984 components: - pos: -43.5,-13.5 parent: 2 type: Transform - - uid: 22979 + - uid: 22986 components: - pos: 48.5,7.5 parent: 2 type: Transform - - uid: 22980 + - uid: 22987 components: - pos: 70.5,-54.5 parent: 2 type: Transform - - uid: 22981 + - uid: 22988 components: - pos: 61.5,-61.5 parent: 2 type: Transform - - uid: 22982 + - uid: 22989 components: - pos: 62.5,-61.5 parent: 2 type: Transform - - uid: 22983 + - uid: 22990 components: - pos: 63.5,-61.5 parent: 2 type: Transform - - uid: 22984 + - uid: 22991 components: - pos: 71.5,-64.5 parent: 2 type: Transform - - uid: 22985 + - uid: 22992 components: - pos: -38.5,-37.5 parent: 2 type: Transform - - uid: 22986 + - uid: 22993 components: - pos: -37.5,-37.5 parent: 2 type: Transform - - uid: 22987 + - uid: 22994 components: - pos: -46.5,-7.5 parent: 2 type: Transform - - uid: 22988 + - uid: 22995 components: - pos: -45.5,-18.5 parent: 2 type: Transform - - uid: 22989 + - uid: 22996 components: - rot: 3.141592653589793 rad pos: -49.5,-19.5 parent: 2 type: Transform - - uid: 22990 + - uid: 22997 components: - pos: -61.5,-31.5 parent: 2 type: Transform - - uid: 22991 + - uid: 22998 components: - pos: -65.5,-33.5 parent: 2 type: Transform - - uid: 22992 + - uid: 22999 components: - pos: -66.5,-33.5 parent: 2 type: Transform - - uid: 22993 + - uid: 23000 components: - pos: -67.5,-33.5 parent: 2 type: Transform - - uid: 22994 + - uid: 23001 components: - rot: 3.141592653589793 rad pos: -69.5,-31.5 parent: 2 type: Transform - - uid: 22995 + - uid: 23002 components: - pos: -45.5,-43.5 parent: 2 type: Transform - - uid: 22996 + - uid: 23003 components: - pos: -44.5,-39.5 parent: 2 type: Transform - - uid: 22997 + - uid: 23004 components: - pos: -45.5,-45.5 parent: 2 type: Transform - - uid: 22998 + - uid: 23005 components: - pos: -45.5,-46.5 parent: 2 type: Transform - - uid: 22999 + - uid: 23006 components: - pos: -45.5,-44.5 parent: 2 type: Transform - - uid: 23000 + - uid: 23007 components: - pos: -45.5,-42.5 parent: 2 type: Transform - - uid: 23001 + - uid: 23008 components: - pos: -35.5,-58.5 parent: 2 type: Transform - - uid: 23002 + - uid: 23009 components: - rot: 3.141592653589793 rad pos: -38.5,-59.5 parent: 2 type: Transform - - uid: 23003 + - uid: 23010 components: - pos: -44.5,-58.5 parent: 2 type: Transform - - uid: 23004 + - uid: 23011 components: - pos: -42.5,-58.5 parent: 2 type: Transform - - uid: 23005 + - uid: 23012 components: - pos: -41.5,-58.5 parent: 2 type: Transform - - uid: 23006 + - uid: 23013 components: - rot: 3.141592653589793 rad pos: -73.5,-27.5 parent: 2 type: Transform - - uid: 23007 + - uid: 23014 components: - pos: -53.5,-37.5 parent: 2 type: Transform - - uid: 23008 + - uid: 23015 components: - pos: -53.5,-36.5 parent: 2 type: Transform - - uid: 23009 + - uid: 23016 components: - rot: 1.5707963267948966 rad pos: -52.5,-60.5 parent: 2 type: Transform - - uid: 23010 + - uid: 23017 components: - rot: 1.5707963267948966 rad pos: -58.5,-60.5 parent: 2 type: Transform - - uid: 23011 + - uid: 23018 components: - rot: 1.5707963267948966 rad pos: -58.5,-59.5 parent: 2 type: Transform - - uid: 23012 + - uid: 23019 components: - pos: -58.5,-37.5 parent: 2 type: Transform - - uid: 23013 + - uid: 23020 components: - pos: -58.5,-36.5 parent: 2 type: Transform - - uid: 23014 + - uid: 23021 components: - pos: -58.5,-52.5 parent: 2 type: Transform - - uid: 23015 + - uid: 23022 components: - pos: -58.5,-51.5 parent: 2 type: Transform - - uid: 23016 + - uid: 23023 components: - pos: -58.5,-44.5 parent: 2 type: Transform - - uid: 23017 + - uid: 23024 components: - pos: -58.5,-43.5 parent: 2 type: Transform - - uid: 23018 + - uid: 23025 components: - pos: -58.5,-48.5 parent: 2 type: Transform - - uid: 23019 + - uid: 23026 components: - pos: -58.5,-47.5 parent: 2 type: Transform - - uid: 23020 + - uid: 23027 components: - pos: -41.5,-62.5 parent: 2 type: Transform - - uid: 23021 + - uid: 23028 components: - pos: -40.5,-62.5 parent: 2 type: Transform - - uid: 23022 + - uid: 23029 components: - rot: -1.5707963267948966 rad pos: -55.5,-83.5 parent: 2 type: Transform - - uid: 23023 + - uid: 23030 components: - rot: -1.5707963267948966 rad pos: -53.5,-83.5 parent: 2 type: Transform - - uid: 23024 + - uid: 23031 components: - pos: -57.5,-75.5 parent: 2 type: Transform - - uid: 23025 + - uid: 23032 components: - pos: -57.5,-76.5 parent: 2 type: Transform - - uid: 23026 + - uid: 23033 components: - pos: -57.5,-77.5 parent: 2 type: Transform - - uid: 23027 + - uid: 23034 components: - pos: -48.5,-83.5 parent: 2 type: Transform - - uid: 23028 + - uid: 23035 components: - pos: -35.5,-82.5 parent: 2 type: Transform - - uid: 23029 + - uid: 23036 components: - pos: -35.5,-81.5 parent: 2 type: Transform - - uid: 23030 + - uid: 23037 components: - pos: -35.5,-77.5 parent: 2 type: Transform - - uid: 23031 + - uid: 23038 components: - pos: -35.5,-83.5 parent: 2 type: Transform - - uid: 23032 + - uid: 23039 components: - pos: -35.5,-76.5 parent: 2 type: Transform - - uid: 23033 + - uid: 23040 components: - pos: -35.5,-78.5 parent: 2 type: Transform - - uid: 23034 + - uid: 23041 components: - pos: -40.5,-86.5 parent: 2 type: Transform - - uid: 23035 + - uid: 23042 components: - pos: -43.5,-86.5 parent: 2 type: Transform - - uid: 23036 + - uid: 23043 components: - rot: 3.141592653589793 rad pos: 19.5,-33.5 parent: 2 type: Transform - - uid: 23037 + - uid: 23044 components: - rot: 3.141592653589793 rad pos: -46.5,-39.5 parent: 2 type: Transform - - uid: 23038 + - uid: 23045 components: - rot: -1.5707963267948966 rad pos: 8.5,35.5 parent: 2 type: Transform - - uid: 23039 + - uid: 23046 components: - pos: 53.5,61.5 parent: 2 type: Transform - - uid: 23040 + - uid: 23047 components: - pos: 50.5,56.5 parent: 2 type: Transform - - uid: 23041 + - uid: 23048 components: - rot: -1.5707963267948966 rad pos: -7.5,28.5 parent: 2 type: Transform - - uid: 23042 + - uid: 23049 components: - rot: -1.5707963267948966 rad pos: -7.5,27.5 parent: 2 type: Transform - - uid: 23043 + - uid: 23050 components: - pos: 55.5,61.5 parent: 2 type: Transform - - uid: 23044 + - uid: 23051 components: - pos: -0.5,35.5 parent: 2 type: Transform - - uid: 23045 + - uid: 23052 components: - pos: -1.5,35.5 parent: 2 type: Transform - - uid: 23046 + - uid: 23053 components: - pos: -2.5,35.5 parent: 2 type: Transform - - uid: 23047 + - uid: 23054 components: - pos: 50.5,57.5 parent: 2 type: Transform - - uid: 23048 + - uid: 23055 components: - pos: 58.5,56.5 parent: 2 type: Transform - - uid: 23049 + - uid: 23056 components: - rot: -1.5707963267948966 rad pos: 7.5,29.5 parent: 2 type: Transform - - uid: 23050 + - uid: 23057 components: - rot: -1.5707963267948966 rad pos: -26.5,23.5 parent: 2 type: Transform - - uid: 23051 + - uid: 23058 components: - pos: -3.5,42.5 parent: 2 type: Transform - - uid: 23052 + - uid: 23059 components: - pos: 45.5,9.5 parent: 2 type: Transform - - uid: 23053 + - uid: 23060 components: - pos: -29.5,21.5 parent: 2 type: Transform - - uid: 23054 + - uid: 23061 components: - pos: -29.5,23.5 parent: 2 type: Transform - - uid: 23055 + - uid: 23062 components: - pos: -26.5,21.5 parent: 2 type: Transform - - uid: 23056 + - uid: 23063 components: - pos: -31.5,27.5 parent: 2 type: Transform - - uid: 23057 + - uid: 23064 components: - pos: -33.5,27.5 parent: 2 type: Transform - - uid: 23058 + - uid: 23065 components: - pos: -30.5,27.5 parent: 2 type: Transform - - uid: 23059 + - uid: 23066 components: - rot: 1.5707963267948966 rad pos: -49.5,21.5 parent: 2 type: Transform - - uid: 23060 + - uid: 23067 components: - rot: 1.5707963267948966 rad pos: -50.5,21.5 parent: 2 type: Transform - - uid: 23061 + - uid: 23068 components: - rot: -1.5707963267948966 rad pos: -50.5,18.5 parent: 2 type: Transform - - uid: 23062 + - uid: 23069 components: - rot: -1.5707963267948966 rad pos: -50.5,24.5 parent: 2 type: Transform - - uid: 23063 + - uid: 23070 components: - rot: -1.5707963267948966 rad pos: 8.5,29.5 parent: 2 type: Transform - - uid: 23064 + - uid: 23071 components: - pos: 58.5,57.5 parent: 2 type: Transform - - uid: 23065 + - uid: 23072 components: - pos: 50.5,58.5 parent: 2 type: Transform - - uid: 23066 + - uid: 23073 components: - pos: 58.5,58.5 parent: 2 type: Transform - - uid: 23067 + - uid: 23074 components: - rot: 1.5707963267948966 rad pos: 67.5,-8.5 parent: 2 type: Transform - - uid: 23068 + - uid: 23075 components: - pos: -33.5,32.5 parent: 2 type: Transform - - uid: 23069 + - uid: 23076 components: - pos: -32.5,32.5 parent: 2 type: Transform - - uid: 23070 + - uid: 23077 components: - pos: -31.5,32.5 parent: 2 type: Transform - - uid: 23071 + - uid: 23078 components: - pos: -49.5,29.5 parent: 2 type: Transform - - uid: 23072 + - uid: 23079 components: - pos: -49.5,35.5 parent: 2 type: Transform - - uid: 23073 + - uid: 23080 components: - pos: -52.5,35.5 parent: 2 type: Transform - - uid: 23074 + - uid: 23081 components: - pos: -52.5,29.5 parent: 2 type: Transform - - uid: 23075 + - uid: 23082 components: - pos: -52.5,18.5 parent: 2 type: Transform - - uid: 23076 + - uid: 23083 components: - pos: -52.5,24.5 parent: 2 type: Transform - - uid: 23077 + - uid: 23084 components: - rot: -1.5707963267948966 rad pos: -52.5,21.5 parent: 2 type: Transform - - uid: 23078 + - uid: 23085 components: - rot: -1.5707963267948966 rad pos: -53.5,21.5 parent: 2 type: Transform - - uid: 23079 + - uid: 23086 components: - rot: -1.5707963267948966 rad pos: -31.5,35.5 parent: 2 type: Transform - - uid: 23080 + - uid: 23087 components: - pos: -39.5,31.5 parent: 2 type: Transform - - uid: 23081 + - uid: 23088 components: - rot: -1.5707963267948966 rad pos: -32.5,35.5 parent: 2 type: Transform - - uid: 23082 + - uid: 23089 components: - rot: -1.5707963267948966 rad pos: -17.5,26.5 parent: 2 type: Transform - - uid: 23083 + - uid: 23090 components: - rot: 1.5707963267948966 rad pos: 66.5,-1.5 parent: 2 type: Transform - - uid: 23084 + - uid: 23091 components: - pos: -53.5,11.5 parent: 2 type: Transform - - uid: 23085 + - uid: 23092 components: - pos: -53.5,10.5 parent: 2 type: Transform - - uid: 23086 + - uid: 23093 components: - rot: -1.5707963267948966 rad pos: -49.5,13.5 parent: 2 type: Transform - - uid: 23087 + - uid: 23094 components: - rot: -1.5707963267948966 rad pos: -48.5,13.5 parent: 2 type: Transform - - uid: 23088 + - uid: 23095 components: - pos: 56.5,-25.5 parent: 2 type: Transform - - uid: 23089 + - uid: 23096 components: - rot: 1.5707963267948966 rad pos: 67.5,-7.5 parent: 2 type: Transform - - uid: 23090 + - uid: 23097 components: - rot: 1.5707963267948966 rad pos: 67.5,-9.5 parent: 2 type: Transform - - uid: 23091 + - uid: 23098 components: - rot: 1.5707963267948966 rad pos: 66.5,-0.5 parent: 2 type: Transform - - uid: 23092 + - uid: 23099 components: - rot: 1.5707963267948966 rad pos: 46.5,-77.5 parent: 2 type: Transform - - uid: 23093 + - uid: 23100 components: - pos: 25.5,24.5 parent: 2 type: Transform - - uid: 23094 + - uid: 23101 components: - pos: -45.5,-52.5 parent: 2 type: Transform - - uid: 23095 + - uid: 23102 components: - pos: -45.5,-53.5 parent: 2 type: Transform - - uid: 23096 + - uid: 23103 components: - pos: -45.5,-54.5 parent: 2 type: Transform - - uid: 23097 + - uid: 23104 components: - pos: -45.5,-55.5 parent: 2 type: Transform - - uid: 23098 + - uid: 23105 components: - pos: 24.5,-60.5 parent: 2 type: Transform - - uid: 23099 + - uid: 23106 components: - pos: 46.5,43.5 parent: 2 type: Transform - - uid: 23100 + - uid: 23107 components: - rot: 3.141592653589793 rad pos: 46.5,3.5 parent: 2 type: Transform - - uid: 23101 + - uid: 23108 components: - rot: 3.141592653589793 rad pos: 59.5,43.5 parent: 2 type: Transform - - uid: 23102 + - uid: 23109 components: - rot: -1.5707963267948966 rad pos: -13.5,39.5 parent: 2 type: Transform - - uid: 23103 + - uid: 23110 components: - pos: -14.5,56.5 parent: 2 type: Transform - - uid: 23104 + - uid: 23111 components: - pos: -11.5,69.5 parent: 2 type: Transform - - uid: 23105 + - uid: 23112 components: - pos: -14.5,55.5 parent: 2 type: Transform - - uid: 23106 + - uid: 23113 components: - pos: -16.5,55.5 parent: 2 type: Transform - - uid: 23107 + - uid: 23114 components: - pos: -16.5,56.5 parent: 2 type: Transform - - uid: 23108 + - uid: 23115 components: - pos: -23.5,61.5 parent: 2 type: Transform - - uid: 23109 + - uid: 23116 components: - pos: -23.5,62.5 parent: 2 type: Transform - - uid: 23110 + - uid: 23117 components: - pos: -11.5,68.5 parent: 2 type: Transform - - uid: 23111 + - uid: 23118 components: - pos: -11.5,67.5 parent: 2 type: Transform - - uid: 23112 + - uid: 23119 components: - pos: -14.5,73.5 parent: 2 type: Transform - - uid: 23113 + - uid: 23120 components: - pos: -20.5,73.5 parent: 2 type: Transform - - uid: 23114 + - uid: 23121 components: - pos: -11.5,73.5 parent: 2 type: Transform - - uid: 23115 + - uid: 23122 components: - pos: -23.5,63.5 parent: 2 type: Transform - - uid: 23116 + - uid: 23123 components: - pos: -23.5,73.5 parent: 2 type: Transform - - uid: 23117 + - uid: 23124 components: - rot: -1.5707963267948966 rad pos: -17.5,24.5 parent: 2 type: Transform - - uid: 23118 + - uid: 23125 components: - rot: -1.5707963267948966 rad pos: 68.5,11.5 parent: 2 type: Transform - - uid: 23119 + - uid: 23126 components: - rot: -1.5707963267948966 rad pos: 68.5,10.5 parent: 2 type: Transform - - uid: 23120 + - uid: 23127 components: - rot: -1.5707963267948966 rad pos: 68.5,8.5 parent: 2 type: Transform - - uid: 23121 + - uid: 23128 components: - rot: -1.5707963267948966 rad pos: 68.5,7.5 parent: 2 type: Transform - - uid: 23122 + - uid: 23129 components: - rot: -1.5707963267948966 rad pos: 59.5,33.5 parent: 2 type: Transform - - uid: 23123 + - uid: 23130 components: - rot: -1.5707963267948966 rad pos: 59.5,32.5 parent: 2 type: Transform - - uid: 23124 + - uid: 23131 components: - rot: -1.5707963267948966 rad pos: -1.5,27.5 parent: 2 type: Transform - - uid: 23125 + - uid: 23132 components: - rot: -1.5707963267948966 rad pos: -3.5,27.5 parent: 2 type: Transform - - uid: 23126 + - uid: 23133 components: - rot: -1.5707963267948966 rad pos: -33.5,35.5 parent: 2 type: Transform - - uid: 23127 + - uid: 23134 components: - rot: 3.141592653589793 rad pos: -32.5,37.5 parent: 2 type: Transform - - uid: 23128 + - uid: 23135 components: - rot: 1.5707963267948966 rad pos: 46.5,-17.5 parent: 2 type: Transform - - uid: 23129 + - uid: 23136 components: - rot: 1.5707963267948966 rad pos: 45.5,-17.5 parent: 2 type: Transform - - uid: 23130 + - uid: 23137 components: - pos: -46.5,13.5 parent: 2 type: Transform - - uid: 23131 + - uid: 23138 components: - pos: -1.5,42.5 parent: 2 type: Transform - - uid: 23132 + - uid: 23139 components: - rot: 1.5707963267948966 rad pos: 47.5,40.5 parent: 2 type: Transform - - uid: 23133 + - uid: 23140 components: - rot: 1.5707963267948966 rad pos: 45.5,40.5 parent: 2 type: Transform - - uid: 23134 + - uid: 23141 components: - rot: -1.5707963267948966 rad pos: 41.5,42.5 parent: 2 type: Transform - - uid: 23135 + - uid: 23142 components: - rot: 3.141592653589793 rad pos: 41.5,32.5 parent: 2 type: Transform - - uid: 23136 + - uid: 23143 components: - rot: 3.141592653589793 rad pos: 41.5,31.5 parent: 2 type: Transform - - uid: 23137 + - uid: 23144 components: - rot: 3.141592653589793 rad pos: 41.5,30.5 parent: 2 type: Transform - - uid: 23138 + - uid: 23145 components: - rot: -1.5707963267948966 rad pos: 40.5,42.5 parent: 2 type: Transform - - uid: 23139 + - uid: 23146 components: - rot: -1.5707963267948966 rad pos: 39.5,42.5 parent: 2 type: Transform - - uid: 23140 + - uid: 23147 components: - pos: 71.5,39.5 parent: 2 type: Transform - - uid: 23141 + - uid: 23148 components: - pos: 73.5,39.5 parent: 2 type: Transform - - uid: 23142 + - uid: 23149 components: - pos: 73.5,33.5 parent: 2 type: Transform - - uid: 23143 + - uid: 23150 components: - pos: 71.5,33.5 parent: 2 type: Transform - - uid: 23144 + - uid: 23151 components: - pos: -33.5,40.5 parent: 2 type: Transform - - uid: 23145 + - uid: 23152 components: - pos: -32.5,40.5 parent: 2 type: Transform - - uid: 23146 + - uid: 23153 components: - pos: -26.5,54.5 parent: 2 type: Transform - - uid: 23147 + - uid: 23154 components: - pos: -26.5,53.5 parent: 2 type: Transform - - uid: 23148 + - uid: 23155 components: - rot: -1.5707963267948966 rad pos: -16.5,-88.5 parent: 2 type: Transform - - uid: 23149 + - uid: 23156 components: - pos: -18.5,-97.5 parent: 2 type: Transform - - uid: 23150 + - uid: 23157 components: - pos: -26.5,-97.5 parent: 2 type: Transform - - uid: 23151 + - uid: 23158 components: - pos: -23.5,-94.5 parent: 2 type: Transform - - uid: 23152 + - uid: 23159 components: - pos: -22.5,-94.5 parent: 2 type: Transform - - uid: 23153 + - uid: 23160 components: - pos: -21.5,-94.5 parent: 2 type: Transform - - uid: 23154 + - uid: 23161 components: - pos: -9.5,-101.5 parent: 2 type: Transform - - uid: 23155 + - uid: 23162 components: - pos: -8.5,-101.5 parent: 2 type: Transform - - uid: 23156 + - uid: 23163 components: - pos: -6.5,-101.5 parent: 2 type: Transform - - uid: 23157 + - uid: 23164 components: - pos: -5.5,-101.5 parent: 2 type: Transform - - uid: 23158 + - uid: 23165 components: - pos: -3.5,-97.5 parent: 2 type: Transform - - uid: 23159 + - uid: 23166 components: - pos: -3.5,-98.5 parent: 2 type: Transform - - uid: 23160 + - uid: 23167 components: - rot: 3.141592653589793 rad pos: -44.5,-90.5 parent: 2 type: Transform - - uid: 23161 + - uid: 23168 components: - rot: 3.141592653589793 rad pos: -44.5,-89.5 parent: 2 type: Transform - - uid: 23162 + - uid: 23169 components: - pos: -39.5,-90.5 parent: 2 type: Transform - - uid: 23163 + - uid: 23170 components: - pos: -39.5,-89.5 parent: 2 type: Transform - - uid: 23164 + - uid: 23171 components: - pos: -34.5,-100.5 parent: 2 type: Transform - - uid: 23165 + - uid: 23172 components: - pos: -36.5,-100.5 parent: 2 type: Transform - - uid: 23166 + - uid: 23173 components: - rot: 1.5707963267948966 rad pos: -44.5,-95.5 parent: 2 type: Transform - - uid: 23167 + - uid: 23174 components: - rot: 1.5707963267948966 rad pos: -44.5,-96.5 parent: 2 type: Transform - - uid: 23168 + - uid: 23175 components: - rot: 1.5707963267948966 rad pos: -42.5,-98.5 parent: 2 type: Transform - - uid: 23169 + - uid: 23176 components: - rot: 1.5707963267948966 rad pos: -41.5,-98.5 parent: 2 type: Transform - - uid: 23170 + - uid: 23177 components: - pos: -23.5,-101.5 parent: 2 type: Transform - - uid: 23171 + - uid: 23178 components: - pos: -22.5,-101.5 parent: 2 type: Transform - - uid: 23172 + - uid: 23179 components: - pos: -21.5,-101.5 parent: 2 type: Transform - - uid: 23173 + - uid: 23180 components: - pos: -72.5,-43.5 parent: 2 type: Transform - - uid: 23174 + - uid: 23181 components: - pos: -72.5,-42.5 parent: 2 type: Transform - - uid: 23175 + - uid: 23182 components: - pos: -72.5,-44.5 parent: 2 type: Transform - - uid: 23176 + - uid: 23183 components: - pos: -70.5,-46.5 parent: 2 type: Transform - - uid: 23177 + - uid: 23184 components: - pos: -69.5,-46.5 parent: 2 type: Transform - - uid: 23178 + - uid: 23185 components: - pos: -68.5,-46.5 parent: 2 type: Transform - - uid: 23179 + - uid: 23186 components: - rot: -1.5707963267948966 rad pos: 72.5,-50.5 parent: 2 type: Transform - - uid: 23180 + - uid: 23187 components: - rot: -1.5707963267948966 rad pos: 70.5,-50.5 parent: 2 type: Transform - - uid: 23181 + - uid: 23188 components: - rot: -1.5707963267948966 rad pos: 71.5,-50.5 parent: 2 type: Transform - - uid: 23182 + - uid: 23189 components: - pos: 51.5,-68.5 parent: 2 type: Transform - - uid: 23183 + - uid: 23190 components: - rot: 3.141592653589793 rad pos: 55.5,-68.5 parent: 2 type: Transform - - uid: 23184 + - uid: 23191 components: - rot: 3.141592653589793 rad pos: 56.5,-68.5 parent: 2 type: Transform - - uid: 23185 + - uid: 23192 components: - pos: 61.5,-70.5 parent: 2 type: Transform - - uid: 23186 + - uid: 23193 components: - pos: 62.5,-70.5 parent: 2 type: Transform - - uid: 23187 + - uid: 23194 components: - rot: 3.141592653589793 rad pos: 54.5,-68.5 parent: 2 type: Transform - - uid: 23188 + - uid: 23195 components: - pos: 50.5,-68.5 parent: 2 type: Transform - - uid: 23189 + - uid: 23196 components: - pos: 3.5,-36.5 parent: 2 type: Transform - - uid: 23190 + - uid: 23197 components: - pos: 68.5,-57.5 parent: 2 type: Transform - - uid: 23191 + - uid: 23198 components: - pos: 71.5,-54.5 parent: 2 type: Transform - - uid: 23192 + - uid: 23199 components: - rot: 1.5707963267948966 rad pos: -54.5,-57.5 parent: 2 type: Transform - - uid: 23193 + - uid: 23200 components: - rot: -1.5707963267948966 rad pos: 41.5,-31.5 parent: 2 type: Transform - - uid: 23194 + - uid: 23201 components: - pos: 60.5,-70.5 parent: 2 type: Transform - - uid: 23195 + - uid: 23202 components: - pos: 9.5,-31.5 parent: 2 type: Transform - - uid: 23196 + - uid: 23203 components: - pos: 9.5,-34.5 parent: 2 type: Transform - - uid: 23197 + - uid: 23204 components: - pos: 2.5,-36.5 parent: 2 type: Transform - - uid: 23198 + - uid: 23205 components: - pos: 36.5,18.5 parent: 2 type: Transform - - uid: 23199 + - uid: 23206 components: - pos: 34.5,18.5 parent: 2 type: Transform - - uid: 23200 + - uid: 23207 components: - pos: 52.5,-57.5 parent: 2 type: Transform - - uid: 23201 + - uid: 23208 components: - pos: -51.5,-37.5 parent: 2 type: Transform - - uid: 23202 + - uid: 23209 components: - pos: -51.5,-36.5 parent: 2 type: Transform - - uid: 23203 + - uid: 23210 components: - pos: -47.5,-34.5 parent: 2 type: Transform - - uid: 23204 + - uid: 23211 components: - pos: -47.5,-35.5 parent: 2 type: Transform - - uid: 23205 + - uid: 23212 components: - rot: 3.141592653589793 rad pos: 51.5,-72.5 parent: 2 type: Transform - - uid: 23206 + - uid: 23213 components: - rot: 3.141592653589793 rad pos: 51.5,-71.5 parent: 2 type: Transform - - uid: 23207 + - uid: 23214 components: - rot: 3.141592653589793 rad pos: 24.5,-86.5 parent: 2 type: Transform - - uid: 23208 + - uid: 23215 components: - rot: 3.141592653589793 rad pos: 25.5,-86.5 parent: 2 type: Transform - - uid: 23209 + - uid: 23216 components: - rot: 3.141592653589793 rad pos: 50.5,-82.5 parent: 2 type: Transform - - uid: 23210 + - uid: 23217 components: - rot: 3.141592653589793 rad pos: 25.5,-75.5 parent: 2 type: Transform - - uid: 23211 + - uid: 23218 components: - rot: 3.141592653589793 rad pos: 50.5,-89.5 parent: 2 type: Transform - - uid: 23212 + - uid: 23219 components: - rot: 3.141592653589793 rad pos: 50.5,-90.5 parent: 2 type: Transform - - uid: 23213 + - uid: 23220 components: - rot: 3.141592653589793 rad pos: 50.5,-88.5 parent: 2 type: Transform - - uid: 23214 + - uid: 23221 components: - rot: 3.141592653589793 rad pos: 28.5,-89.5 parent: 2 type: Transform - - uid: 23215 + - uid: 23222 components: - rot: 1.5707963267948966 rad pos: 32.5,-79.5 parent: 2 type: Transform - - uid: 23216 + - uid: 23223 components: - rot: 1.5707963267948966 rad pos: 34.5,-84.5 parent: 2 type: Transform - - uid: 23217 + - uid: 23224 components: - rot: 1.5707963267948966 rad pos: 34.5,-85.5 parent: 2 type: Transform - - uid: 23218 + - uid: 23225 components: - rot: 3.141592653589793 rad pos: 26.5,-75.5 parent: 2 type: Transform - - uid: 23219 + - uid: 23226 components: - rot: 3.141592653589793 rad pos: 51.5,-73.5 parent: 2 type: Transform - - uid: 23220 + - uid: 23227 components: - rot: 1.5707963267948966 rad pos: 32.5,-78.5 parent: 2 type: Transform - - uid: 23221 + - uid: 23228 components: - rot: 1.5707963267948966 rad pos: 44.5,-87.5 parent: 2 type: Transform - - uid: 23222 + - uid: 23229 components: - rot: -1.5707963267948966 rad pos: -45.5,45.5 @@ -175223,164 +160501,176 @@ entities: type: Transform - proto: ResearchAndDevelopmentServer entities: - - uid: 23223 + - uid: 23230 components: - pos: 55.5,-49.5 parent: 2 type: Transform - proto: Retractor entities: - - uid: 23224 + - uid: 23231 components: - pos: 0.5210637,-65.43571 parent: 2 type: Transform - - uid: 23225 + - uid: 23232 components: - pos: 73.5331,-48.86455 parent: 2 type: Transform - proto: RevolverCapGun entities: - - uid: 23226 + - uid: 23233 components: - pos: 48.521713,-29.492037 parent: 2 type: Transform - - uid: 23227 + - uid: 23234 components: - pos: 3.523116,-35.41609 parent: 2 type: Transform - proto: RiceSeeds entities: - - uid: 23228 + - uid: 23235 components: - pos: -32.424732,6.232961 parent: 2 type: Transform + - nextSound: 1306.9903071 + type: EmitSoundOnCollide - proto: RockGuitarInstrument entities: - - uid: 23229 + - uid: 23236 components: - pos: -10.563177,-6.285685 parent: 2 type: Transform - proto: RollerBed entities: - - uid: 23230 + - uid: 23237 components: - pos: -29.534147,-77.30682 parent: 2 type: Transform - - uid: 23231 + - uid: 23238 components: - pos: -29.534147,-79.2912 parent: 2 type: Transform - proto: RubberStampApproved entities: - - uid: 23232 + - uid: 23239 components: - pos: 25.390406,-37.463814 parent: 2 type: Transform - proto: RubberStampDenied entities: - - uid: 23233 + - uid: 23240 components: - pos: 25.421656,-37.713814 parent: 2 type: Transform - proto: SalvageMagnet entities: - - uid: 23234 + - uid: 23241 components: - rot: -1.5707963267948966 rad pos: -46.5,32.5 parent: 2 type: Transform -- proto: Saw - entities: - - uid: 23235 +- proto: Saw + entities: + - uid: 10243 + components: + - rot: 1.5707963267948966 rad + pos: -14.461851,-35.4618 + parent: 2 + type: Transform + - nextSound: 460.6274884 + type: EmitSoundOnCollide + - uid: 23242 components: - pos: 0.4741887,-64.29508 parent: 2 type: Transform - - uid: 23236 + - uid: 23243 components: - pos: 73.565475,-49.416637 parent: 2 type: Transform - proto: SawElectric entities: - - uid: 23237 + - uid: 23244 components: - pos: 0.5054387,-66.18094 parent: 2 type: Transform - proto: Scalpel entities: - - uid: 23238 + - uid: 23245 components: - pos: 0.4585637,-63.810703 parent: 2 type: Transform - proto: ScalpelShiv entities: - - uid: 23239 + - uid: 23246 components: - rot: -1.5707963267948966 rad pos: -7.55561,-100.43354 parent: 2 type: Transform - - uid: 23240 + - uid: 23247 components: - pos: 54.135303,18.76531 parent: 2 type: Transform - proto: ScreenTimerElectronics entities: - - uid: 23241 + - uid: 23248 components: - pos: -8.601834,37.95101 parent: 2 type: Transform + - nextSound: 254.1794911 + type: EmitSoundOnCollide - proto: Screwdriver entities: - - uid: 23242 + - uid: 23249 components: - pos: 43.519844,-49.259262 parent: 2 type: Transform - - uid: 23243 + - uid: 23250 components: - pos: -25.458826,-24.443584 parent: 2 type: Transform - - uid: 23244 + - uid: 23251 components: - pos: -9.599733,-10.450774 parent: 2 type: Transform - nextAttack: 989.4976064 type: MeleeWeapon - - uid: 23245 + - uid: 23252 components: - pos: -62.449627,-28.095568 parent: 2 type: Transform - - uid: 23246 + - uid: 23253 components: - pos: -38.450848,-27.350416 parent: 2 type: Transform - - uid: 23247 + - uid: 23254 components: - pos: -8.398262,20.58135 parent: 2 type: Transform - - uid: 23248 + - uid: 23255 components: - rot: 12.566370614359172 rad pos: 72.048706,-43.392498 @@ -175390,7 +160680,7 @@ entities: type: MeleeWeapon - proto: SecurityTechFab entities: - - uid: 23249 + - uid: 23256 components: - pos: 20.5,22.5 parent: 2 @@ -175402,49 +160692,49 @@ entities: type: MaterialStorage - proto: SeedExtractor entities: - - uid: 23250 + - uid: 23257 components: - pos: -10.5,11.5 parent: 2 type: Transform - - uid: 23251 + - uid: 23258 components: - pos: 57.5,8.5 parent: 2 type: Transform - proto: ShardGlass entities: - - uid: 23252 + - uid: 23259 components: - pos: -54.711452,-83.287796 parent: 2 type: Transform - proto: ShardGlassReinforced entities: - - uid: 23253 + - uid: 23260 components: - rot: 1.5707963267948966 rad pos: -54.638016,-82.45104 parent: 2 type: Transform - - uid: 23254 + - uid: 23261 components: - rot: 3.141592653589793 rad pos: 2.3392181,49.47093 parent: 2 type: Transform - - uid: 23255 + - uid: 23262 components: - rot: 3.141592653589793 rad pos: 1.651718,49.767803 parent: 2 type: Transform - - uid: 23256 + - uid: 23263 components: - pos: 3.3860931,48.767803 parent: 2 type: Transform - - uid: 23257 + - uid: 23264 components: - rot: -1.5707963267948966 rad pos: 1.745468,48.361553 @@ -175452,31 +160742,31 @@ entities: type: Transform - proto: SheetGlass entities: - - uid: 23258 + - uid: 23265 components: - pos: 38.525932,-39.04589 parent: 2 type: Transform - count: 28 type: Stack - - uid: 23259 + - uid: 23266 components: - - pos: -42.523426,-17.538477 + - pos: -42.541218,-17.668886 parent: 2 type: Transform - - uid: 23260 + - uid: 23267 components: - pos: -55.463116,-25.47082 parent: 2 type: Transform - - uid: 23261 + - uid: 23268 components: - pos: -24.799974,-52.361668 parent: 2 type: Transform - proto: SheetGlass1 entities: - - uid: 23262 + - uid: 23269 components: - rot: 12.566370614359172 rad pos: 77.45773,-46.509197 @@ -175486,182 +160776,191 @@ entities: type: Stack - proto: SheetPaper1 entities: - - uid: 23263 + - uid: 23270 components: - pos: -4.555317,-48.4215 parent: 2 type: Transform - proto: SheetPlasma entities: - - uid: 23264 + - uid: 23271 components: - pos: 62.516293,-33.369144 parent: 2 type: Transform - proto: SheetPlasma1 entities: - - uid: 23265 + - uid: 23272 components: - pos: 7.512034,-46.1751 parent: 2 type: Transform - - uid: 23266 + - uid: 23273 components: - pos: 39.28695,-35.266556 parent: 2 type: Transform - - uid: 23267 + - uid: 23274 components: - pos: 39.583824,-35.40718 parent: 2 type: Transform - proto: SheetPlasteel entities: - - uid: 23268 + - uid: 23275 components: - - pos: -42.576187,-16.487726 + - pos: -42.49803,-16.612768 parent: 2 type: Transform - - uid: 23269 + - uid: 23276 components: - pos: -43.304523,25.592714 parent: 2 type: Transform - proto: SheetPlastic entities: - - uid: 23270 + - uid: 23277 components: - pos: 38.479057,-36.60921 parent: 2 type: Transform - - uid: 23271 + - uid: 23278 components: - - pos: -42.53905,-18.280842 + - pos: -42.44606,-18.09971 parent: 2 type: Transform - proto: SheetRGlass entities: - - uid: 23272 + - uid: 23279 components: - - pos: -42.585926,-17.225977 + - pos: -42.558216,-17.530426 parent: 2 type: Transform - proto: SheetSteel entities: - - uid: 23273 + - uid: 23280 components: - rot: 3.141592653589793 rad pos: -37.461926,-7.6284776 parent: 2 type: Transform - - uid: 23274 + - nextSound: 504.3029646 + type: EmitSoundOnCollide + - uid: 23281 components: - pos: 38.51507,-38.238213 parent: 2 type: Transform - - uid: 23275 + - uid: 23282 components: - pos: 38.494682,-37.42171 parent: 2 type: Transform - - uid: 23276 + - uid: 23283 components: - pos: -27.53877,-10.535285 parent: 2 type: Transform - - uid: 23277 + - uid: 23284 components: - pos: -39.513657,-16.565893 parent: 2 type: Transform - - uid: 23278 + - uid: 23285 components: - pos: -39.544514,-17.164497 parent: 2 type: Transform - - uid: 23279 + - uid: 23286 components: - pos: -67.49896,-32.46533 parent: 2 type: Transform - - uid: 23280 + - uid: 23287 components: - pos: 58.50727,52.410095 parent: 2 type: Transform - - uid: 23281 + - uid: 23288 components: - pos: 77.369896,-46.771843 parent: 2 type: Transform + - uid: 30707 + components: + - pos: -42.505978,14.552313 + parent: 2 + type: Transform + - nextSound: 1223.0621665 + type: EmitSoundOnCollide - proto: Shovel entities: - - uid: 23282 + - uid: 23289 components: - pos: -40.5417,35.280518 parent: 2 type: Transform - - uid: 23283 + - uid: 23290 components: - pos: -40.51045,34.905518 parent: 2 type: Transform - - uid: 23284 + - uid: 23291 components: - pos: -48.500484,26.545332 parent: 2 type: Transform - proto: ShowcaseRobot entities: - - uid: 23285 + - uid: 23292 components: - pos: 62.5,-45.5 parent: 2 type: Transform - - uid: 23286 + - uid: 23293 components: - pos: -0.5,63.5 parent: 2 type: Transform - - uid: 23287 + - uid: 23294 components: - pos: -2.5,63.5 parent: 2 type: Transform - proto: ShowcaseRobotAntique entities: - - uid: 23288 + - uid: 23295 components: - pos: 61.5,-46.5 parent: 2 type: Transform - proto: ShowcaseRobotMarauder entities: - - uid: 23289 + - uid: 23296 components: - pos: 63.5,-46.5 parent: 2 type: Transform - proto: ShowcaseRobotWhite entities: - - uid: 23290 + - uid: 23297 components: - pos: 62.5,-47.5 parent: 2 type: Transform - proto: ShuttersNormal entities: - - uid: 23291 + - uid: 23298 components: - pos: -9.5,-24.5 parent: 2 type: Transform - - uid: 23292 + - uid: 23299 components: - pos: -8.5,-24.5 parent: 2 type: Transform - - uid: 23293 + - uid: 23300 components: - rot: -1.5707963267948966 rad pos: 66.5,-45.5 @@ -175671,7 +160970,7 @@ entities: type: Occluder - canCollide: False type: Physics - - SecondsUntilStateChange: -105223.89 + - SecondsUntilStateChange: -102172.33 state: Closing type: Door - airBlocked: False @@ -175679,13 +160978,13 @@ entities: - inputs: Open: - port: On - uid: 23408 + uid: 23415 Close: - port: Off - uid: 23408 + uid: 23415 Toggle: [] type: SignalReceiver - - uid: 23294 + - uid: 23301 components: - rot: -1.5707963267948966 rad pos: 66.5,-46.5 @@ -175695,7 +160994,7 @@ entities: type: Occluder - canCollide: False type: Physics - - SecondsUntilStateChange: -105223.89 + - SecondsUntilStateChange: -102172.33 state: Closing type: Door - airBlocked: False @@ -175703,21 +161002,21 @@ entities: - inputs: Open: - port: On - uid: 23408 + uid: 23415 Close: - port: Off - uid: 23408 + uid: 23415 Toggle: [] type: SignalReceiver - proto: ShuttersNormalOpen entities: - - uid: 23295 + - uid: 23302 components: - rot: -1.5707963267948966 rad pos: 15.5,13.5 parent: 2 type: Transform - - SecondsUntilStateChange: -86278.98 + - SecondsUntilStateChange: -83227.414 state: Opening type: Door - canCollide: True @@ -175729,24 +161028,24 @@ entities: - inputs: Open: - port: On - uid: 23405 + uid: 23412 Close: - port: Off - uid: 23405 + uid: 23412 Toggle: [] type: SignalReceiver - - uid: 23296 + - uid: 23303 components: - rot: -1.5707963267948966 rad pos: 15.5,9.5 parent: 2 type: Transform - - uid: 23297 + - uid: 23304 components: - pos: -32.5,32.5 parent: 2 type: Transform - - SecondsUntilStateChange: -115837.37 + - SecondsUntilStateChange: -112785.805 state: Opening type: Door - canCollide: True @@ -175758,18 +161057,18 @@ entities: - inputs: Open: - port: On - uid: 23438 + uid: 23445 Close: - port: Off - uid: 23438 + uid: 23445 Toggle: [] type: SignalReceiver - - uid: 23298 + - uid: 23305 components: - pos: 37.5,-0.5 parent: 2 type: Transform - - SecondsUntilStateChange: -23927.219 + - SecondsUntilStateChange: -20875.664 state: Opening type: Door - canCollide: True @@ -175781,13 +161080,13 @@ entities: - inputs: Open: - port: On - uid: 23407 + uid: 23414 Close: - port: Off - uid: 23407 + uid: 23414 Toggle: [] type: SignalReceiver - - uid: 23299 + - uid: 23306 components: - pos: -8.5,4.5 parent: 2 @@ -175795,19 +161094,19 @@ entities: - inputs: Open: - port: On - uid: 23456 + uid: 23463 Close: - port: Off - uid: 23456 + uid: 23463 Toggle: [] type: SignalReceiver - - uid: 23300 + - uid: 23307 components: - rot: -1.5707963267948966 rad pos: 15.5,11.5 parent: 2 type: Transform - - SecondsUntilStateChange: -86278.98 + - SecondsUntilStateChange: -83227.414 state: Opening type: Door - canCollide: True @@ -175819,19 +161118,19 @@ entities: - inputs: Open: - port: On - uid: 23405 + uid: 23412 Close: - port: Off - uid: 23405 + uid: 23412 Toggle: [] type: SignalReceiver - - uid: 23301 + - uid: 23308 components: - rot: -1.5707963267948966 rad pos: 15.5,10.5 parent: 2 type: Transform - - SecondsUntilStateChange: -86278.98 + - SecondsUntilStateChange: -83227.414 state: Opening type: Door - canCollide: True @@ -175843,19 +161142,19 @@ entities: - inputs: Open: - port: On - uid: 23405 + uid: 23412 Close: - port: Off - uid: 23405 + uid: 23412 Toggle: [] type: SignalReceiver - - uid: 23302 + - uid: 23309 components: - rot: -1.5707963267948966 rad pos: -2.5,-5.5 parent: 2 type: Transform - - SecondsUntilStateChange: -65948.13 + - SecondsUntilStateChange: -62896.58 state: Opening type: Door - canCollide: True @@ -175867,18 +161166,18 @@ entities: - inputs: Open: - port: On - uid: 23455 + uid: 23462 Close: - port: Off - uid: 23455 + uid: 23462 Toggle: [] type: SignalReceiver - - uid: 23303 + - uid: 23310 components: - pos: -0.5,-2.5 parent: 2 type: Transform - - SecondsUntilStateChange: -65948.13 + - SecondsUntilStateChange: -62896.58 state: Opening type: Door - canCollide: True @@ -175890,18 +161189,18 @@ entities: - inputs: Open: - port: On - uid: 23455 + uid: 23462 Close: - port: Off - uid: 23455 + uid: 23462 Toggle: [] type: SignalReceiver - - uid: 23304 + - uid: 23311 components: - pos: 18.5,15.5 parent: 2 type: Transform - - SecondsUntilStateChange: -86278.98 + - SecondsUntilStateChange: -83227.414 state: Opening type: Door - canCollide: True @@ -175913,18 +161212,18 @@ entities: - inputs: Open: - port: On - uid: 23405 + uid: 23412 Close: - port: Off - uid: 23405 + uid: 23412 Toggle: [] type: SignalReceiver - - uid: 23305 + - uid: 23312 components: - pos: 17.5,15.5 parent: 2 type: Transform - - SecondsUntilStateChange: -86278.98 + - SecondsUntilStateChange: -83227.414 state: Opening type: Door - canCollide: True @@ -175936,13 +161235,13 @@ entities: - inputs: Open: - port: On - uid: 23405 + uid: 23412 Close: - port: Off - uid: 23405 + uid: 23412 Toggle: [] type: SignalReceiver - - uid: 23306 + - uid: 23313 components: - pos: -6.5,4.5 parent: 2 @@ -175950,19 +161249,19 @@ entities: - inputs: Open: - port: On - uid: 23456 + uid: 23463 Close: - port: Off - uid: 23456 + uid: 23463 Toggle: [] type: SignalReceiver - - uid: 23307 + - uid: 23314 components: - rot: 1.5707963267948966 rad pos: 48.5,6.5 parent: 2 type: Transform - - SecondsUntilStateChange: -21473.047 + - SecondsUntilStateChange: -18421.492 state: Opening type: Door - canCollide: True @@ -175974,19 +161273,19 @@ entities: - inputs: Open: - port: On - uid: 23404 + uid: 23411 Close: - port: Off - uid: 23404 + uid: 23411 Toggle: [] type: SignalReceiver - - uid: 23308 + - uid: 23315 components: - rot: -1.5707963267948966 rad pos: 35.5,4.5 parent: 2 type: Transform - - SecondsUntilStateChange: -85366.25 + - SecondsUntilStateChange: -82314.69 state: Opening type: Door - canCollide: True @@ -175998,19 +161297,19 @@ entities: - inputs: Open: - port: On - uid: 23448 + uid: 23455 Close: - port: Off - uid: 23448 + uid: 23455 Toggle: [] type: SignalReceiver - - uid: 23309 + - uid: 23316 components: - rot: -1.5707963267948966 rad pos: 15.5,12.5 parent: 2 type: Transform - - SecondsUntilStateChange: -86278.98 + - SecondsUntilStateChange: -83227.414 state: Opening type: Door - canCollide: True @@ -176022,18 +161321,18 @@ entities: - inputs: Open: - port: On - uid: 23405 + uid: 23412 Close: - port: Off - uid: 23405 + uid: 23412 Toggle: [] type: SignalReceiver - - uid: 23310 + - uid: 23317 components: - pos: 61.5,-56.5 parent: 2 type: Transform - - SecondsUntilStateChange: -115751.63 + - SecondsUntilStateChange: -112700.07 state: Opening type: Door - canCollide: True @@ -176045,19 +161344,19 @@ entities: - inputs: Open: - port: On - uid: 23449 + uid: 23456 Close: - port: Off - uid: 23449 + uid: 23456 Toggle: [] type: SignalReceiver - - uid: 23311 + - uid: 23318 components: - rot: -1.5707963267948966 rad pos: 15.5,14.5 parent: 2 type: Transform - - SecondsUntilStateChange: -86278.98 + - SecondsUntilStateChange: -83227.414 state: Opening type: Door - canCollide: True @@ -176069,18 +161368,18 @@ entities: - inputs: Open: - port: On - uid: 23405 + uid: 23412 Close: - port: Off - uid: 23405 + uid: 23412 Toggle: [] type: SignalReceiver - - uid: 23312 + - uid: 23319 components: - pos: 45.5,9.5 parent: 2 type: Transform - - SecondsUntilStateChange: -21473.047 + - SecondsUntilStateChange: -18421.492 state: Opening type: Door - canCollide: True @@ -176092,18 +161391,18 @@ entities: - inputs: Open: - port: On - uid: 23404 + uid: 23411 Close: - port: Off - uid: 23404 + uid: 23411 Toggle: [] type: SignalReceiver - - uid: 23313 + - uid: 23320 components: - pos: 43.5,7.5 parent: 2 type: Transform - - SecondsUntilStateChange: -21473.047 + - SecondsUntilStateChange: -18421.492 state: Opening type: Door - canCollide: True @@ -176115,18 +161414,18 @@ entities: - inputs: Open: - port: On - uid: 23404 + uid: 23411 Close: - port: Off - uid: 23404 + uid: 23411 Toggle: [] type: SignalReceiver - - uid: 23314 + - uid: 23321 components: - pos: 62.5,-56.5 parent: 2 type: Transform - - SecondsUntilStateChange: -115751.63 + - SecondsUntilStateChange: -112700.07 state: Opening type: Door - canCollide: True @@ -176138,18 +161437,18 @@ entities: - inputs: Open: - port: On - uid: 23449 + uid: 23456 Close: - port: Off - uid: 23449 + uid: 23456 Toggle: [] type: SignalReceiver - - uid: 23315 + - uid: 23322 components: - pos: 63.5,-56.5 parent: 2 type: Transform - - SecondsUntilStateChange: -115751.63 + - SecondsUntilStateChange: -112700.07 state: Opening type: Door - canCollide: True @@ -176161,18 +161460,18 @@ entities: - inputs: Open: - port: On - uid: 23449 + uid: 23456 Close: - port: Off - uid: 23449 + uid: 23456 Toggle: [] type: SignalReceiver - - uid: 23316 + - uid: 23323 components: - pos: 22.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -110843.04 + - SecondsUntilStateChange: -107791.48 state: Opening type: Door - canCollide: True @@ -176184,18 +161483,18 @@ entities: - inputs: Open: - port: On - uid: 23437 + uid: 23444 Close: - port: Off - uid: 23437 + uid: 23444 Toggle: [] type: SignalReceiver - - uid: 23317 + - uid: 23324 components: - pos: -30.5,27.5 parent: 2 type: Transform - - SecondsUntilStateChange: -115837.37 + - SecondsUntilStateChange: -112785.805 state: Opening type: Door - canCollide: True @@ -176207,18 +161506,18 @@ entities: - inputs: Open: - port: On - uid: 23438 + uid: 23445 Close: - port: Off - uid: 23438 + uid: 23445 Toggle: [] type: SignalReceiver - - uid: 23318 + - uid: 23325 components: - pos: 29.5,9.5 parent: 2 type: Transform - - SecondsUntilStateChange: -85366.25 + - SecondsUntilStateChange: -82314.69 state: Opening type: Door - canCollide: True @@ -176230,18 +161529,18 @@ entities: - inputs: Open: - port: On - uid: 23448 + uid: 23455 Close: - port: Off - uid: 23448 + uid: 23455 Toggle: [] type: SignalReceiver - - uid: 23319 + - uid: 23326 components: - pos: 34.5,9.5 parent: 2 type: Transform - - SecondsUntilStateChange: -85366.25 + - SecondsUntilStateChange: -82314.69 state: Opening type: Door - canCollide: True @@ -176253,18 +161552,18 @@ entities: - inputs: Open: - port: On - uid: 23448 + uid: 23455 Close: - port: Off - uid: 23448 + uid: 23455 Toggle: [] type: SignalReceiver - - uid: 23320 + - uid: 23327 components: - pos: -31.5,27.5 parent: 2 type: Transform - - SecondsUntilStateChange: -115837.37 + - SecondsUntilStateChange: -112785.805 state: Opening type: Door - canCollide: True @@ -176276,19 +161575,19 @@ entities: - inputs: Open: - port: On - uid: 23438 + uid: 23445 Close: - port: Off - uid: 23438 + uid: 23445 Toggle: [] type: SignalReceiver - - uid: 23321 + - uid: 23328 components: - rot: -1.5707963267948966 rad pos: 35.5,7.5 parent: 2 type: Transform - - SecondsUntilStateChange: -85366.25 + - SecondsUntilStateChange: -82314.69 state: Opening type: Door - canCollide: True @@ -176300,18 +161599,18 @@ entities: - inputs: Open: - port: On - uid: 23448 + uid: 23455 Close: - port: Off - uid: 23448 + uid: 23455 Toggle: [] type: SignalReceiver - - uid: 23322 + - uid: 23329 components: - pos: -33.5,27.5 parent: 2 type: Transform - - SecondsUntilStateChange: -115837.37 + - SecondsUntilStateChange: -112785.805 state: Opening type: Door - canCollide: True @@ -176323,18 +161622,18 @@ entities: - inputs: Open: - port: On - uid: 23438 + uid: 23445 Close: - port: Off - uid: 23438 + uid: 23445 Toggle: [] type: SignalReceiver - - uid: 23323 + - uid: 23330 components: - pos: -49.5,13.5 parent: 2 type: Transform - - SecondsUntilStateChange: -76016.19 + - SecondsUntilStateChange: -72964.625 state: Opening type: Door - canCollide: True @@ -176346,18 +161645,18 @@ entities: - inputs: Open: - port: On - uid: 23423 + uid: 23430 Close: - port: Off - uid: 23423 + uid: 23430 Toggle: [] type: SignalReceiver - - uid: 23324 + - uid: 23331 components: - pos: -48.5,13.5 parent: 2 type: Transform - - SecondsUntilStateChange: -76016.19 + - SecondsUntilStateChange: -72964.625 state: Opening type: Door - canCollide: True @@ -176369,18 +161668,18 @@ entities: - inputs: Open: - port: On - uid: 23423 + uid: 23430 Close: - port: Off - uid: 23423 + uid: 23430 Toggle: [] type: SignalReceiver - - uid: 23325 + - uid: 23332 components: - pos: -31.5,32.5 parent: 2 type: Transform - - SecondsUntilStateChange: -115837.37 + - SecondsUntilStateChange: -112785.805 state: Opening type: Door - canCollide: True @@ -176392,18 +161691,18 @@ entities: - inputs: Open: - port: On - uid: 23438 + uid: 23445 Close: - port: Off - uid: 23438 + uid: 23445 Toggle: [] type: SignalReceiver - - uid: 23326 + - uid: 23333 components: - pos: 32.5,9.5 parent: 2 type: Transform - - SecondsUntilStateChange: -85366.25 + - SecondsUntilStateChange: -82314.69 state: Opening type: Door - canCollide: True @@ -176415,18 +161714,18 @@ entities: - inputs: Open: - port: On - uid: 23448 + uid: 23455 Close: - port: Off - uid: 23448 + uid: 23455 Toggle: [] type: SignalReceiver - - uid: 23327 + - uid: 23334 components: - pos: 39.5,-0.5 parent: 2 type: Transform - - SecondsUntilStateChange: -23927.219 + - SecondsUntilStateChange: -20875.664 state: Opening type: Door - canCollide: True @@ -176438,18 +161737,18 @@ entities: - inputs: Open: - port: On - uid: 23407 + uid: 23414 Close: - port: Off - uid: 23407 + uid: 23414 Toggle: [] type: SignalReceiver - - uid: 23328 + - uid: 23335 components: - pos: -33.5,32.5 parent: 2 type: Transform - - SecondsUntilStateChange: -115837.37 + - SecondsUntilStateChange: -112785.805 state: Opening type: Door - canCollide: True @@ -176461,18 +161760,18 @@ entities: - inputs: Open: - port: On - uid: 23438 + uid: 23445 Close: - port: Off - uid: 23438 + uid: 23445 Toggle: [] type: SignalReceiver - - uid: 23329 + - uid: 23336 components: - pos: -46.5,13.5 parent: 2 type: Transform - - SecondsUntilStateChange: -76016.19 + - SecondsUntilStateChange: -72964.625 state: Opening type: Door - canCollide: True @@ -176484,18 +161783,18 @@ entities: - inputs: Open: - port: On - uid: 23423 + uid: 23430 Close: - port: Off - uid: 23423 + uid: 23430 Toggle: [] type: SignalReceiver - - uid: 23330 + - uid: 23337 components: - pos: -47.5,13.5 parent: 2 type: Transform - - SecondsUntilStateChange: -76016.19 + - SecondsUntilStateChange: -72964.625 state: Opening type: Door - canCollide: True @@ -176507,18 +161806,18 @@ entities: - inputs: Open: - port: On - uid: 23423 + uid: 23430 Close: - port: Off - uid: 23423 + uid: 23430 Toggle: [] type: SignalReceiver - - uid: 23331 + - uid: 23338 components: - pos: 43.5,5.5 parent: 2 type: Transform - - SecondsUntilStateChange: -21473.047 + - SecondsUntilStateChange: -18421.492 state: Opening type: Door - canCollide: True @@ -176530,18 +161829,18 @@ entities: - inputs: Open: - port: On - uid: 23404 + uid: 23411 Close: - port: Off - uid: 23404 + uid: 23411 Toggle: [] type: SignalReceiver - - uid: 23332 + - uid: 23339 components: - pos: 59.5,-54.5 parent: 2 type: Transform - - SecondsUntilStateChange: -115751.63 + - SecondsUntilStateChange: -112700.07 state: Opening type: Door - canCollide: True @@ -176553,18 +161852,18 @@ entities: - inputs: Open: - port: On - uid: 23449 + uid: 23456 Close: - port: Off - uid: 23449 + uid: 23456 Toggle: [] type: SignalReceiver - - uid: 23333 + - uid: 23340 components: - pos: 65.5,-54.5 parent: 2 type: Transform - - SecondsUntilStateChange: -115751.63 + - SecondsUntilStateChange: -112700.07 state: Opening type: Door - canCollide: True @@ -176576,19 +161875,19 @@ entities: - inputs: Open: - port: On - uid: 23449 + uid: 23456 Close: - port: Off - uid: 23449 + uid: 23456 Toggle: [] type: SignalReceiver - - uid: 23334 + - uid: 23341 components: - rot: 1.5707963267948966 rad pos: 66.5,-51.5 parent: 2 type: Transform - - SecondsUntilStateChange: -115751.63 + - SecondsUntilStateChange: -112700.07 state: Opening type: Door - canCollide: True @@ -176600,19 +161899,19 @@ entities: - inputs: Open: - port: On - uid: 23449 + uid: 23456 Close: - port: Off - uid: 23449 + uid: 23456 Toggle: [] type: SignalReceiver - - uid: 23335 + - uid: 23342 components: - rot: 1.5707963267948966 rad pos: 66.5,-52.5 parent: 2 type: Transform - - SecondsUntilStateChange: -115751.63 + - SecondsUntilStateChange: -112700.07 state: Opening type: Door - canCollide: True @@ -176624,19 +161923,19 @@ entities: - inputs: Open: - port: On - uid: 23449 + uid: 23456 Close: - port: Off - uid: 23449 + uid: 23456 Toggle: [] type: SignalReceiver - - uid: 23336 + - uid: 23343 components: - rot: -1.5707963267948966 rad pos: 58.5,-51.5 parent: 2 type: Transform - - SecondsUntilStateChange: -115751.63 + - SecondsUntilStateChange: -112700.07 state: Opening type: Door - canCollide: True @@ -176648,19 +161947,19 @@ entities: - inputs: Open: - port: On - uid: 23449 + uid: 23456 Close: - port: Off - uid: 23449 + uid: 23456 Toggle: [] type: SignalReceiver - - uid: 23337 + - uid: 23344 components: - rot: -1.5707963267948966 rad pos: 58.5,-52.5 parent: 2 type: Transform - - SecondsUntilStateChange: -115751.63 + - SecondsUntilStateChange: -112700.07 state: Opening type: Door - canCollide: True @@ -176672,18 +161971,18 @@ entities: - inputs: Open: - port: On - uid: 23449 + uid: 23456 Close: - port: Off - uid: 23449 + uid: 23456 Toggle: [] type: SignalReceiver - - uid: 23338 + - uid: 23345 components: - pos: 61.5,-50.5 parent: 2 type: Transform - - SecondsUntilStateChange: -115751.63 + - SecondsUntilStateChange: -112700.07 state: Opening type: Door - canCollide: True @@ -176695,18 +161994,18 @@ entities: - inputs: Open: - port: On - uid: 23449 + uid: 23456 Close: - port: Off - uid: 23449 + uid: 23456 Toggle: [] type: SignalReceiver - - uid: 23339 + - uid: 23346 components: - pos: 63.5,-50.5 parent: 2 type: Transform - - SecondsUntilStateChange: -115751.63 + - SecondsUntilStateChange: -112700.07 state: Opening type: Door - canCollide: True @@ -176718,18 +162017,18 @@ entities: - inputs: Open: - port: On - uid: 23449 + uid: 23456 Close: - port: Off - uid: 23449 + uid: 23456 Toggle: [] type: SignalReceiver - - uid: 23340 + - uid: 23347 components: - pos: -20.5,-58.5 parent: 2 type: Transform - - SecondsUntilStateChange: -115692.44 + - SecondsUntilStateChange: -112640.875 state: Opening type: Door - canCollide: True @@ -176741,18 +162040,18 @@ entities: - inputs: Open: - port: On - uid: 23450 + uid: 23457 Close: - port: Off - uid: 23450 + uid: 23457 Toggle: [] type: SignalReceiver - - uid: 23341 + - uid: 23348 components: - pos: -18.5,-58.5 parent: 2 type: Transform - - SecondsUntilStateChange: -115692.44 + - SecondsUntilStateChange: -112640.875 state: Opening type: Door - canCollide: True @@ -176764,18 +162063,18 @@ entities: - inputs: Open: - port: On - uid: 23450 + uid: 23457 Close: - port: Off - uid: 23450 + uid: 23457 Toggle: [] type: SignalReceiver - - uid: 23342 + - uid: 23349 components: - pos: -37.5,-14.5 parent: 2 type: Transform - - SecondsUntilStateChange: -65905.28 + - SecondsUntilStateChange: -62853.727 state: Opening type: Door - canCollide: True @@ -176787,19 +162086,19 @@ entities: - inputs: Open: - port: On - uid: 23451 + uid: 23458 Close: - port: Off - uid: 23451 + uid: 23458 Toggle: [] type: SignalReceiver - - uid: 23343 + - uid: 23350 components: - rot: -1.5707963267948966 rad pos: -33.5,-15.5 parent: 2 type: Transform - - SecondsUntilStateChange: -65905.28 + - SecondsUntilStateChange: -62853.727 state: Opening type: Door - canCollide: True @@ -176811,19 +162110,19 @@ entities: - inputs: Open: - port: On - uid: 23451 + uid: 23458 Close: - port: Off - uid: 23451 + uid: 23458 Toggle: [] type: SignalReceiver - - uid: 23344 + - uid: 23351 components: - rot: -1.5707963267948966 rad pos: -33.5,-17.5 parent: 2 type: Transform - - SecondsUntilStateChange: -65905.28 + - SecondsUntilStateChange: -62853.727 state: Opening type: Door - canCollide: True @@ -176835,18 +162134,18 @@ entities: - inputs: Open: - port: On - uid: 23451 + uid: 23458 Close: - port: Off - uid: 23451 + uid: 23458 Toggle: [] type: SignalReceiver - - uid: 23345 + - uid: 23352 components: - pos: 0.5,-2.5 parent: 2 type: Transform - - SecondsUntilStateChange: -65948.13 + - SecondsUntilStateChange: -62896.58 state: Opening type: Door - canCollide: True @@ -176858,18 +162157,18 @@ entities: - inputs: Open: - port: On - uid: 23455 + uid: 23462 Close: - port: Off - uid: 23455 + uid: 23462 Toggle: [] type: SignalReceiver - - uid: 23346 + - uid: 23353 components: - pos: 1.5,-2.5 parent: 2 type: Transform - - SecondsUntilStateChange: -65948.13 + - SecondsUntilStateChange: -62896.58 state: Opening type: Door - canCollide: True @@ -176881,19 +162180,19 @@ entities: - inputs: Open: - port: On - uid: 23455 + uid: 23462 Close: - port: Off - uid: 23455 + uid: 23462 Toggle: [] type: SignalReceiver - - uid: 23347 + - uid: 23354 components: - rot: -1.5707963267948966 rad pos: 7.5,9.5 parent: 2 type: Transform - - SecondsUntilStateChange: -55101.22 + - SecondsUntilStateChange: -52049.656 state: Opening type: Door - canCollide: True @@ -176905,19 +162204,19 @@ entities: - inputs: Open: - port: On - uid: 23453 + uid: 23460 Close: - port: Off - uid: 23453 + uid: 23460 Toggle: [] type: SignalReceiver - - uid: 23348 + - uid: 23355 components: - rot: -1.5707963267948966 rad pos: 7.5,8.5 parent: 2 type: Transform - - SecondsUntilStateChange: -55101.22 + - SecondsUntilStateChange: -52049.656 state: Opening type: Door - canCollide: True @@ -176929,19 +162228,19 @@ entities: - inputs: Open: - port: On - uid: 23453 + uid: 23460 Close: - port: Off - uid: 23453 + uid: 23460 Toggle: [] type: SignalReceiver - - uid: 23349 + - uid: 23356 components: - rot: -1.5707963267948966 rad pos: 7.5,7.5 parent: 2 type: Transform - - SecondsUntilStateChange: -55101.22 + - SecondsUntilStateChange: -52049.656 state: Opening type: Door - canCollide: True @@ -176953,18 +162252,18 @@ entities: - inputs: Open: - port: On - uid: 23453 + uid: 23460 Close: - port: Off - uid: 23453 + uid: 23460 Toggle: [] type: SignalReceiver - - uid: 23350 + - uid: 23357 components: - pos: 2.5,4.5 parent: 2 type: Transform - - SecondsUntilStateChange: -55101.22 + - SecondsUntilStateChange: -52049.656 state: Opening type: Door - canCollide: True @@ -176976,13 +162275,13 @@ entities: - inputs: Open: - port: On - uid: 23453 + uid: 23460 Close: - port: Off - uid: 23453 + uid: 23460 Toggle: [] type: SignalReceiver - - uid: 23351 + - uid: 23358 components: - pos: 1.5,4.5 parent: 2 @@ -176990,18 +162289,18 @@ entities: - inputs: Open: - port: On - uid: 23453 + uid: 23460 Close: - port: Off - uid: 23453 + uid: 23460 Toggle: [] type: SignalReceiver - - uid: 23352 + - uid: 23359 components: - pos: 0.5,4.5 parent: 2 type: Transform - - SecondsUntilStateChange: -55101.22 + - SecondsUntilStateChange: -52049.656 state: Opening type: Door - canCollide: True @@ -177013,18 +162312,18 @@ entities: - inputs: Open: - port: On - uid: 23453 + uid: 23460 Close: - port: Off - uid: 23453 + uid: 23460 Toggle: [] type: SignalReceiver - - uid: 23353 + - uid: 23360 components: - pos: 5.5,11.5 parent: 2 type: Transform - - SecondsUntilStateChange: -55101.22 + - SecondsUntilStateChange: -52049.656 state: Opening type: Door - canCollide: True @@ -177036,18 +162335,18 @@ entities: - inputs: Open: - port: On - uid: 23453 + uid: 23460 Close: - port: Off - uid: 23453 + uid: 23460 Toggle: [] type: SignalReceiver - - uid: 23354 + - uid: 23361 components: - pos: 4.5,11.5 parent: 2 type: Transform - - SecondsUntilStateChange: -55101.22 + - SecondsUntilStateChange: -52049.656 state: Opening type: Door - canCollide: True @@ -177059,18 +162358,18 @@ entities: - inputs: Open: - port: On - uid: 23453 + uid: 23460 Close: - port: Off - uid: 23453 + uid: 23460 Toggle: [] type: SignalReceiver - - uid: 23355 + - uid: 23362 components: - pos: 23.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -110843.04 + - SecondsUntilStateChange: -107791.48 state: Opening type: Door - canCollide: True @@ -177082,18 +162381,18 @@ entities: - inputs: Open: - port: On - uid: 23437 + uid: 23444 Close: - port: Off - uid: 23437 + uid: 23444 Toggle: [] type: SignalReceiver - - uid: 23356 + - uid: 23363 components: - pos: 24.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -110843.04 + - SecondsUntilStateChange: -107791.48 state: Opening type: Door - canCollide: True @@ -177105,18 +162404,18 @@ entities: - inputs: Open: - port: On - uid: 23437 + uid: 23444 Close: - port: Off - uid: 23437 + uid: 23444 Toggle: [] type: SignalReceiver - - uid: 23357 + - uid: 23364 components: - pos: 25.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -110843.04 + - SecondsUntilStateChange: -107791.48 state: Opening type: Door - canCollide: True @@ -177128,18 +162427,18 @@ entities: - inputs: Open: - port: On - uid: 23437 + uid: 23444 Close: - port: Off - uid: 23437 + uid: 23444 Toggle: [] type: SignalReceiver - - uid: 23358 + - uid: 23365 components: - pos: 26.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -110843.04 + - SecondsUntilStateChange: -107791.48 state: Opening type: Door - canCollide: True @@ -177151,18 +162450,18 @@ entities: - inputs: Open: - port: On - uid: 23437 + uid: 23444 Close: - port: Off - uid: 23437 + uid: 23444 Toggle: [] type: SignalReceiver - - uid: 23359 + - uid: 23366 components: - pos: 27.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -110843.04 + - SecondsUntilStateChange: -107791.48 state: Opening type: Door - canCollide: True @@ -177174,18 +162473,18 @@ entities: - inputs: Open: - port: On - uid: 23437 + uid: 23444 Close: - port: Off - uid: 23437 + uid: 23444 Toggle: [] type: SignalReceiver - - uid: 23360 + - uid: 23367 components: - pos: 28.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -110843.04 + - SecondsUntilStateChange: -107791.48 state: Opening type: Door - canCollide: True @@ -177197,19 +162496,19 @@ entities: - inputs: Open: - port: On - uid: 23437 + uid: 23444 Close: - port: Off - uid: 23437 + uid: 23444 Toggle: [] type: SignalReceiver - - uid: 23361 + - uid: 23368 components: - rot: -1.5707963267948966 rad pos: -2.5,-4.5 parent: 2 type: Transform - - SecondsUntilStateChange: -65948.13 + - SecondsUntilStateChange: -62896.58 state: Opening type: Door - canCollide: True @@ -177221,19 +162520,19 @@ entities: - inputs: Open: - port: On - uid: 23455 + uid: 23462 Close: - port: Off - uid: 23455 + uid: 23462 Toggle: [] type: SignalReceiver - - uid: 23362 + - uid: 23369 components: - rot: -1.5707963267948966 rad pos: 1.5,-46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -21342.805 + - SecondsUntilStateChange: -18291.248 state: Opening type: Door - canCollide: True @@ -177245,18 +162544,18 @@ entities: - inputs: Open: - port: On - uid: 23403 + uid: 23410 Close: - port: Off - uid: 23403 + uid: 23410 Toggle: [] type: SignalReceiver - - uid: 23363 + - uid: 23370 components: - pos: 34.5,18.5 parent: 2 type: Transform - - SecondsUntilStateChange: -83861.84 + - SecondsUntilStateChange: -80810.28 state: Opening type: Door - canCollide: True @@ -177268,18 +162567,18 @@ entities: - inputs: Open: - port: On - uid: 23454 + uid: 23461 Close: - port: Off - uid: 23454 + uid: 23461 Toggle: [] type: SignalReceiver - - uid: 23364 + - uid: 23371 components: - pos: 35.5,18.5 parent: 2 type: Transform - - SecondsUntilStateChange: -83861.84 + - SecondsUntilStateChange: -80810.28 state: Opening type: Door - canCollide: True @@ -177291,18 +162590,18 @@ entities: - inputs: Open: - port: On - uid: 23454 + uid: 23461 Close: - port: Off - uid: 23454 + uid: 23461 Toggle: [] type: SignalReceiver - - uid: 23365 + - uid: 23372 components: - pos: 36.5,18.5 parent: 2 type: Transform - - SecondsUntilStateChange: -83861.84 + - SecondsUntilStateChange: -80810.28 state: Opening type: Door - canCollide: True @@ -177314,13 +162613,13 @@ entities: - inputs: Open: - port: On - uid: 23454 + uid: 23461 Close: - port: Off - uid: 23454 + uid: 23461 Toggle: [] type: SignalReceiver - - uid: 23366 + - uid: 23373 components: - pos: -7.5,4.5 parent: 2 @@ -177328,19 +162627,19 @@ entities: - inputs: Open: - port: On - uid: 23456 + uid: 23463 Close: - port: Off - uid: 23456 + uid: 23463 Toggle: [] type: SignalReceiver - - uid: 23367 + - uid: 23374 components: - rot: 1.5707963267948966 rad pos: 48.5,7.5 parent: 2 type: Transform - - SecondsUntilStateChange: -21473.047 + - SecondsUntilStateChange: -18421.492 state: Opening type: Door - canCollide: True @@ -177352,18 +162651,18 @@ entities: - inputs: Open: - port: On - uid: 23404 + uid: 23411 Close: - port: Off - uid: 23404 + uid: 23411 Toggle: [] type: SignalReceiver - - uid: 23368 + - uid: 23375 components: - pos: 46.5,9.5 parent: 2 type: Transform - - SecondsUntilStateChange: -21473.047 + - SecondsUntilStateChange: -18421.492 state: Opening type: Door - canCollide: True @@ -177375,19 +162674,19 @@ entities: - inputs: Open: - port: On - uid: 23404 + uid: 23411 Close: - port: Off - uid: 23404 + uid: 23411 Toggle: [] type: SignalReceiver - - uid: 23369 + - uid: 23376 components: - rot: 1.5707963267948966 rad pos: 35.5,-1.5 parent: 2 type: Transform - - SecondsUntilStateChange: -23927.219 + - SecondsUntilStateChange: -20875.664 state: Opening type: Door - canCollide: True @@ -177399,19 +162698,19 @@ entities: - inputs: Open: - port: On - uid: 23407 + uid: 23414 Close: - port: Off - uid: 23407 + uid: 23414 Toggle: [] type: SignalReceiver - - uid: 23370 + - uid: 23377 components: - rot: 1.5707963267948966 rad pos: 35.5,-2.5 parent: 2 type: Transform - - SecondsUntilStateChange: -23927.219 + - SecondsUntilStateChange: -20875.664 state: Opening type: Door - canCollide: True @@ -177423,19 +162722,19 @@ entities: - inputs: Open: - port: On - uid: 23407 + uid: 23414 Close: - port: Off - uid: 23407 + uid: 23414 Toggle: [] type: SignalReceiver - - uid: 23371 + - uid: 23378 components: - rot: 1.5707963267948966 rad pos: 35.5,-4.5 parent: 2 type: Transform - - SecondsUntilStateChange: -23927.219 + - SecondsUntilStateChange: -20875.664 state: Opening type: Door - canCollide: True @@ -177447,19 +162746,19 @@ entities: - inputs: Open: - port: On - uid: 23407 + uid: 23414 Close: - port: Off - uid: 23407 + uid: 23414 Toggle: [] type: SignalReceiver - - uid: 23372 + - uid: 23379 components: - rot: 1.5707963267948966 rad pos: 35.5,-5.5 parent: 2 type: Transform - - SecondsUntilStateChange: -23927.219 + - SecondsUntilStateChange: -20875.664 state: Opening type: Door - canCollide: True @@ -177471,18 +162770,18 @@ entities: - inputs: Open: - port: On - uid: 23407 + uid: 23414 Close: - port: Off - uid: 23407 + uid: 23414 Toggle: [] type: SignalReceiver - - uid: 23373 + - uid: 23380 components: - pos: 41.5,-0.5 parent: 2 type: Transform - - SecondsUntilStateChange: -23922.719 + - SecondsUntilStateChange: -20871.164 state: Opening type: Door - canCollide: True @@ -177494,18 +162793,18 @@ entities: - inputs: Open: - port: On - uid: 23457 + uid: 23464 Close: - port: Off - uid: 23457 + uid: 23464 Toggle: [] type: SignalReceiver - - uid: 23374 + - uid: 23381 components: - pos: 42.5,-0.5 parent: 2 type: Transform - - SecondsUntilStateChange: -23922.719 + - SecondsUntilStateChange: -20871.164 state: Opening type: Door - canCollide: True @@ -177517,18 +162816,18 @@ entities: - inputs: Open: - port: On - uid: 23457 + uid: 23464 Close: - port: Off - uid: 23457 + uid: 23464 Toggle: [] type: SignalReceiver - - uid: 23375 + - uid: 23382 components: - pos: 43.5,-0.5 parent: 2 type: Transform - - SecondsUntilStateChange: -23922.719 + - SecondsUntilStateChange: -20871.164 state: Opening type: Door - canCollide: True @@ -177540,18 +162839,18 @@ entities: - inputs: Open: - port: On - uid: 23457 + uid: 23464 Close: - port: Off - uid: 23457 + uid: 23464 Toggle: [] type: SignalReceiver - - uid: 23376 + - uid: 23383 components: - pos: 46.5,3.5 parent: 2 type: Transform - - SecondsUntilStateChange: -21473.047 + - SecondsUntilStateChange: -18421.492 state: Opening type: Door - canCollide: True @@ -177563,19 +162862,19 @@ entities: - inputs: Open: - port: On - uid: 23404 + uid: 23411 Close: - port: Off - uid: 23404 + uid: 23411 Toggle: [] type: SignalReceiver - - uid: 23377 + - uid: 23384 components: - rot: -1.5707963267948966 rad pos: 1.5,-47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -21342.805 + - SecondsUntilStateChange: -18291.248 state: Opening type: Door - canCollide: True @@ -177587,19 +162886,19 @@ entities: - inputs: Open: - port: On - uid: 23403 + uid: 23410 Close: - port: Off - uid: 23403 + uid: 23410 Toggle: [] type: SignalReceiver - - uid: 23378 + - uid: 23385 components: - rot: -1.5707963267948966 rad pos: 1.5,-48.5 parent: 2 type: Transform - - SecondsUntilStateChange: -21342.805 + - SecondsUntilStateChange: -18291.248 state: Opening type: Door - canCollide: True @@ -177611,18 +162910,18 @@ entities: - inputs: Open: - port: On - uid: 23403 + uid: 23410 Close: - port: Off - uid: 23403 + uid: 23410 Toggle: [] type: SignalReceiver - - uid: 23379 + - uid: 23386 components: - pos: 3.5,-44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -21342.805 + - SecondsUntilStateChange: -18291.248 state: Opening type: Door - canCollide: True @@ -177634,18 +162933,18 @@ entities: - inputs: Open: - port: On - uid: 23403 + uid: 23410 Close: - port: Off - uid: 23403 + uid: 23410 Toggle: [] type: SignalReceiver - - uid: 23380 + - uid: 23387 components: - pos: 4.5,-44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -21342.805 + - SecondsUntilStateChange: -18291.248 state: Opening type: Door - canCollide: True @@ -177657,18 +162956,18 @@ entities: - inputs: Open: - port: On - uid: 23403 + uid: 23410 Close: - port: Off - uid: 23403 + uid: 23410 Toggle: [] type: SignalReceiver - - uid: 23381 + - uid: 23388 components: - pos: 5.5,-44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -21342.805 + - SecondsUntilStateChange: -18291.248 state: Opening type: Door - canCollide: True @@ -177680,18 +162979,18 @@ entities: - inputs: Open: - port: On - uid: 23403 + uid: 23410 Close: - port: Off - uid: 23403 + uid: 23410 Toggle: [] type: SignalReceiver - - uid: 23382 + - uid: 23389 components: - pos: 3.5,-51.5 parent: 2 type: Transform - - SecondsUntilStateChange: -21342.805 + - SecondsUntilStateChange: -18291.248 state: Opening type: Door - canCollide: True @@ -177703,13 +163002,13 @@ entities: - inputs: Open: - port: On - uid: 23403 + uid: 23410 Close: - port: Off - uid: 23403 + uid: 23410 Toggle: [] type: SignalReceiver - - uid: 23383 + - uid: 23390 components: - pos: 23.5,5.5 parent: 2 @@ -177717,13 +163016,13 @@ entities: - inputs: Open: - port: On - uid: 23458 + uid: 23465 Close: - port: Off - uid: 23458 + uid: 23465 Toggle: [] type: SignalReceiver - - uid: 23384 + - uid: 23391 components: - pos: 22.5,5.5 parent: 2 @@ -177731,13 +163030,13 @@ entities: - inputs: Open: - port: On - uid: 23458 + uid: 23465 Close: - port: Off - uid: 23458 + uid: 23465 Toggle: [] type: SignalReceiver - - uid: 23385 + - uid: 23392 components: - pos: 21.5,5.5 parent: 2 @@ -177745,13 +163044,13 @@ entities: - inputs: Open: - port: On - uid: 23458 + uid: 23465 Close: - port: Off - uid: 23458 + uid: 23465 Toggle: [] type: SignalReceiver - - uid: 23386 + - uid: 23393 components: - pos: 25.5,5.5 parent: 2 @@ -177759,13 +163058,13 @@ entities: - inputs: Open: - port: On - uid: 23458 + uid: 23465 Close: - port: Off - uid: 23458 + uid: 23465 Toggle: [] type: SignalReceiver - - uid: 23387 + - uid: 23394 components: - pos: 26.5,5.5 parent: 2 @@ -177773,13 +163072,13 @@ entities: - inputs: Open: - port: On - uid: 23458 + uid: 23465 Close: - port: Off - uid: 23458 + uid: 23465 Toggle: [] type: SignalReceiver - - uid: 23388 + - uid: 23395 components: - pos: 27.5,5.5 parent: 2 @@ -177787,13 +163086,13 @@ entities: - inputs: Open: - port: On - uid: 23458 + uid: 23465 Close: - port: Off - uid: 23458 + uid: 23465 Toggle: [] type: SignalReceiver - - uid: 23389 + - uid: 23396 components: - pos: 27.5,-3.5 parent: 2 @@ -177801,13 +163100,13 @@ entities: - inputs: Open: - port: On - uid: 23458 + uid: 23465 Close: - port: Off - uid: 23458 + uid: 23465 Toggle: [] type: SignalReceiver - - uid: 23390 + - uid: 23397 components: - pos: 26.5,-3.5 parent: 2 @@ -177815,13 +163114,13 @@ entities: - inputs: Open: - port: On - uid: 23458 + uid: 23465 Close: - port: Off - uid: 23458 + uid: 23465 Toggle: [] type: SignalReceiver - - uid: 23391 + - uid: 23398 components: - pos: 25.5,-3.5 parent: 2 @@ -177829,13 +163128,13 @@ entities: - inputs: Open: - port: On - uid: 23458 + uid: 23465 Close: - port: Off - uid: 23458 + uid: 23465 Toggle: [] type: SignalReceiver - - uid: 23392 + - uid: 23399 components: - pos: 23.5,-3.5 parent: 2 @@ -177843,18 +163142,18 @@ entities: - inputs: Open: - port: On - uid: 23458 + uid: 23465 Close: - port: Off - uid: 23458 + uid: 23465 Toggle: [] type: SignalReceiver - - uid: 23393 + - uid: 23400 components: - pos: 22.5,-3.5 parent: 2 type: Transform - - uid: 23394 + - uid: 23401 components: - pos: 21.5,-3.5 parent: 2 @@ -177862,13 +163161,13 @@ entities: - inputs: Open: - port: On - uid: 23458 + uid: 23465 Close: - port: Off - uid: 23458 + uid: 23465 Toggle: [] type: SignalReceiver - - uid: 23395 + - uid: 23402 components: - rot: 1.5707963267948966 rad pos: 19.5,3.5 @@ -177877,13 +163176,13 @@ entities: - inputs: Open: - port: On - uid: 23458 + uid: 23465 Close: - port: Off - uid: 23458 + uid: 23465 Toggle: [] type: SignalReceiver - - uid: 23396 + - uid: 23403 components: - rot: 1.5707963267948966 rad pos: 19.5,2.5 @@ -177892,13 +163191,13 @@ entities: - inputs: Open: - port: On - uid: 23458 + uid: 23465 Close: - port: Off - uid: 23458 + uid: 23465 Toggle: [] type: SignalReceiver - - uid: 23397 + - uid: 23404 components: - rot: 1.5707963267948966 rad pos: 19.5,1.5 @@ -177907,13 +163206,13 @@ entities: - inputs: Open: - port: On - uid: 23458 + uid: 23465 Close: - port: Off - uid: 23458 + uid: 23465 Toggle: [] type: SignalReceiver - - uid: 23398 + - uid: 23405 components: - rot: 1.5707963267948966 rad pos: 19.5,0.5 @@ -177922,13 +163221,13 @@ entities: - inputs: Open: - port: On - uid: 23458 + uid: 23465 Close: - port: Off - uid: 23458 + uid: 23465 Toggle: [] type: SignalReceiver - - uid: 23399 + - uid: 23406 components: - rot: 1.5707963267948966 rad pos: 19.5,-0.5 @@ -177937,13 +163236,13 @@ entities: - inputs: Open: - port: On - uid: 23458 + uid: 23465 Close: - port: Off - uid: 23458 + uid: 23465 Toggle: [] type: SignalReceiver - - uid: 23400 + - uid: 23407 components: - rot: 1.5707963267948966 rad pos: 19.5,-1.5 @@ -177952,279 +163251,66 @@ entities: - inputs: Open: - port: On - uid: 23458 + uid: 23465 Close: - port: Off - uid: 23458 + uid: 23465 Toggle: [] type: SignalReceiver - - uid: 30699 - components: - - pos: 32.5,-24.5 - parent: 2 - type: Transform - - invokeCounter: 2 - links: - - 30710 - type: DeviceLinkSink - - uid: 30700 - components: - - pos: 32.5,-25.5 - parent: 2 - type: Transform - - invokeCounter: 2 - links: - - 30710 - type: DeviceLinkSink - - uid: 30701 - components: - - pos: 18.5,-24.5 - parent: 2 - type: Transform - - invokeCounter: 2 - links: - - 30710 - type: DeviceLinkSink - - uid: 30702 - components: - - pos: 18.5,-25.5 - parent: 2 - type: Transform - - invokeCounter: 2 - links: - - 30710 - type: DeviceLinkSink - - uid: 30703 + - uid: 30696 components: - pos: 22.5,-20.5 parent: 2 type: Transform - - invokeCounter: 2 - links: - - 30710 - type: DeviceLinkSink - - uid: 30704 + - uid: 30697 components: - pos: 23.5,-20.5 parent: 2 type: Transform - - invokeCounter: 2 - links: - - 30710 - type: DeviceLinkSink - - uid: 30705 + - uid: 30698 components: - pos: 24.5,-20.5 parent: 2 type: Transform - - invokeCounter: 2 - links: - - 30710 - type: DeviceLinkSink - - uid: 30706 + - uid: 30699 components: - pos: 25.5,-20.5 parent: 2 type: Transform - - invokeCounter: 2 - links: - - 30710 - type: DeviceLinkSink - - uid: 30707 + - uid: 30700 components: - pos: 26.5,-20.5 parent: 2 type: Transform - - invokeCounter: 2 - links: - - 30710 - type: DeviceLinkSink - - uid: 30708 + - uid: 30701 components: - pos: 27.5,-20.5 parent: 2 type: Transform - - invokeCounter: 2 - links: - - 30710 - type: DeviceLinkSink - - uid: 30709 + - uid: 30702 components: - pos: 28.5,-20.5 parent: 2 type: Transform - - invokeCounter: 2 - links: - - 30710 - type: DeviceLinkSink - proto: ShuttleConsoleCircuitboard entities: - - uid: 23401 + - uid: 23408 components: - pos: 9.781719,43.54237 parent: 2 type: Transform + - nextSound: 1717.5321999 + type: EmitSoundOnCollide - proto: SignAi entities: - - uid: 23402 + - uid: 23409 components: - pos: -3.5,60.5 parent: 2 type: Transform -- proto: SignalButton - entities: - - uid: 20878 - components: - - rot: 3.141592653589793 rad - pos: -43.5,9.5 - parent: 2 - type: Transform - - linkedPorts: - 105: - - Pressed: DoorBolt - registeredSinks: - Pressed: - - 105 - type: DeviceLinkSource - - uid: 25033 - components: - - rot: 1.5707963267948966 rad - pos: -53.5,14.5 - parent: 2 - type: Transform - - state: True - type: SignalSwitch - - linkedPorts: - 106: - - Pressed: DoorBolt - registeredSinks: - Pressed: - - 106 - type: DeviceLinkSource - - type: ItemCooldown - - uid: 28610 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,30.5 - parent: 2 - type: Transform - - linkedPorts: - 108: - - Pressed: DoorBolt - registeredSinks: - Pressed: - - 108 - type: DeviceLinkSource - - uid: 30685 - components: - - rot: 1.5707963267948966 rad - pos: -53.5,7.5 - parent: 2 - type: Transform - - linkedPorts: - 107: - - Pressed: DoorBolt - registeredSinks: - Pressed: - - 107 - type: DeviceLinkSource - - uid: 30686 - components: - - rot: 3.141592653589793 rad - pos: -21.5,32.5 - parent: 2 - type: Transform - - linkedPorts: - 109: - - Pressed: DoorBolt - registeredSinks: - Pressed: - - 109 - type: DeviceLinkSource - - uid: 30687 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,33.5 - parent: 2 - type: Transform - - linkedPorts: - 110: - - Pressed: DoorBolt - registeredSinks: - Pressed: - - 110 - type: DeviceLinkSource - - uid: 30688 - components: - - pos: -19.5,39.5 - parent: 2 - type: Transform - - linkedPorts: - 755: - - Pressed: DoorBolt - registeredSinks: - Pressed: - - 755 - type: DeviceLinkSource - - uid: 30689 - components: - - pos: -27.5,47.5 - parent: 2 - type: Transform - - linkedPorts: - 753: - - Pressed: DoorBolt - registeredSinks: - Pressed: - - 753 - type: DeviceLinkSource - - uid: 30710 - components: - - rot: 3.141592653589793 rad - pos: 25.5,-26.5 - parent: 2 - type: Transform - - linkedPorts: - 30703: - - Pressed: Toggle - 30704: - - Pressed: Toggle - 30705: - - Pressed: Toggle - 30706: - - Pressed: Toggle - 30707: - - Pressed: Toggle - 30708: - - Pressed: Toggle - 30709: - - Pressed: Toggle - 30699: - - Pressed: Toggle - 30700: - - Pressed: Toggle - 30701: - - Pressed: Toggle - 30702: - - Pressed: Toggle - registeredSinks: - Pressed: - - 30703 - - 30704 - - 30705 - - 30706 - - 30707 - - 30708 - - 30709 - - 30699 - - 30700 - - 30701 - - 30702 - type: DeviceLinkSource - - type: ItemCooldown - proto: SignalSwitch entities: - - uid: 23403 + - uid: 23410 components: - rot: -1.5707963267948966 rad pos: 8.5,-48.5 @@ -178235,37 +163321,37 @@ entities: - outputs: On: - port: Open - uid: 23382 + uid: 23389 - port: Open - uid: 23378 + uid: 23385 - port: Open - uid: 23377 + uid: 23384 - port: Open - uid: 23362 + uid: 23369 - port: Open - uid: 23379 + uid: 23386 - port: Open - uid: 23380 + uid: 23387 - port: Open - uid: 23381 + uid: 23388 Off: - port: Close - uid: 23382 + uid: 23389 - port: Close - uid: 23378 + uid: 23385 - port: Close - uid: 23377 + uid: 23384 - port: Close - uid: 23362 + uid: 23369 - port: Close - uid: 23379 + uid: 23386 - port: Close - uid: 23380 + uid: 23387 - port: Close - uid: 23381 + uid: 23388 type: SignalTransmitter - type: ItemCooldown - - uid: 23404 + - uid: 23411 components: - rot: -1.5707963267948966 rad pos: 47.5,8.5 @@ -178276,37 +163362,37 @@ entities: - outputs: On: - port: Open - uid: 23307 + uid: 23314 - port: Open - uid: 23367 + uid: 23374 - port: Open - uid: 23368 + uid: 23375 - port: Open - uid: 23312 + uid: 23319 - port: Open - uid: 23313 + uid: 23320 - port: Open - uid: 23331 + uid: 23338 - port: Open - uid: 23376 + uid: 23383 Off: - port: Close - uid: 23307 + uid: 23314 - port: Close - uid: 23367 + uid: 23374 - port: Close - uid: 23368 + uid: 23375 - port: Close - uid: 23312 + uid: 23319 - port: Close - uid: 23313 + uid: 23320 - port: Close - uid: 23331 + uid: 23338 - port: Close - uid: 23376 + uid: 23383 type: SignalTransmitter - type: ItemCooldown - - uid: 23405 + - uid: 23412 components: - pos: 16.5,15.5 parent: 2 @@ -178316,37 +163402,37 @@ entities: - outputs: On: - port: Open - uid: 23295 - - port: Open - uid: 23300 + uid: 23302 - port: Open - uid: 23301 + uid: 23307 - port: Open - uid: 23309 + uid: 23308 - port: Open - uid: 23305 + uid: 23316 - port: Open - uid: 23304 + uid: 23312 - port: Open uid: 23311 + - port: Open + uid: 23318 Off: - port: Close - uid: 23295 - - port: Close - uid: 23300 + uid: 23302 - port: Close - uid: 23301 + uid: 23307 - port: Close - uid: 23309 + uid: 23308 - port: Close - uid: 23305 + uid: 23316 - port: Close - uid: 23304 + uid: 23312 - port: Close uid: 23311 + - port: Close + uid: 23318 type: SignalTransmitter - type: ItemCooldown - - uid: 23406 + - uid: 23413 components: - rot: 3.141592653589793 rad pos: -13.5,-16.5 @@ -178361,7 +163447,7 @@ entities: uid: 2120 type: SignalTransmitter - type: ItemCooldown - - uid: 23407 + - uid: 23414 components: - rot: -1.5707963267948966 rad pos: 40.5,-3.5 @@ -178372,33 +163458,33 @@ entities: - outputs: On: - port: Open - uid: 23327 + uid: 23334 - port: Open - uid: 23298 + uid: 23305 - port: Open - uid: 23369 + uid: 23376 - port: Open - uid: 23370 + uid: 23377 - port: Open - uid: 23371 + uid: 23378 - port: Open - uid: 23372 + uid: 23379 Off: - port: Close - uid: 23327 + uid: 23334 - port: Close - uid: 23298 + uid: 23305 - port: Close - uid: 23369 + uid: 23376 - port: Close - uid: 23370 + uid: 23377 - port: Close - uid: 23371 + uid: 23378 - port: Close - uid: 23372 + uid: 23379 type: SignalTransmitter - type: ItemCooldown - - uid: 23408 + - uid: 23415 components: - rot: 1.5707963267948966 rad pos: 66.5,-44.5 @@ -178407,17 +163493,17 @@ entities: - outputs: On: - port: Open - uid: 23293 + uid: 23300 - port: Open - uid: 23294 + uid: 23301 Off: - port: Close - uid: 23293 + uid: 23300 - port: Close - uid: 23294 + uid: 23301 type: SignalTransmitter - type: ItemCooldown - - uid: 23409 + - uid: 23416 components: - rot: 3.141592653589793 rad pos: 70.5,-39.5 @@ -178431,7 +163517,7 @@ entities: - port: Close uid: 2100 type: SignalTransmitter - - uid: 23410 + - uid: 23417 components: - pos: 47.5,-55.5 parent: 2 @@ -178456,7 +163542,7 @@ entities: - port: Close uid: 2055 type: SignalTransmitter - - uid: 23411 + - uid: 23418 components: - rot: -1.5707963267948966 rad pos: 52.5,-56.5 @@ -178470,7 +163556,7 @@ entities: - port: Close uid: 2059 type: SignalTransmitter - - uid: 23412 + - uid: 23419 components: - pos: -51.5,32.5 parent: 2 @@ -178484,7 +163570,7 @@ entities: uid: 2073 type: SignalTransmitter - type: ItemCooldown - - uid: 23413 + - uid: 23420 components: - rot: 3.141592653589793 rad pos: 60.5,-55.5 @@ -178502,7 +163588,7 @@ entities: - port: Close uid: 2062 type: SignalTransmitter - - uid: 23414 + - uid: 23421 components: - pos: 16.5,-51.5 parent: 2 @@ -178515,7 +163601,7 @@ entities: - port: Close uid: 2054 type: SignalTransmitter - - uid: 23415 + - uid: 23422 components: - pos: -62.5,-26.5 parent: 2 @@ -178547,7 +163633,7 @@ entities: uid: 2126 type: SignalTransmitter - type: ItemCooldown - - uid: 23416 + - uid: 23423 components: - pos: -52.5,-11.5 parent: 2 @@ -178578,7 +163664,7 @@ entities: - port: Close uid: 2125 type: SignalTransmitter - - uid: 23417 + - uid: 23424 components: - pos: -43.5,-39.5 parent: 2 @@ -178591,7 +163677,7 @@ entities: - port: Close uid: 2063 type: SignalTransmitter - - uid: 23418 + - uid: 23425 components: - pos: -36.5,-40.5 parent: 2 @@ -178616,7 +163702,7 @@ entities: - port: Close uid: 2064 type: SignalTransmitter - - uid: 23419 + - uid: 23426 components: - pos: -51.5,21.5 parent: 2 @@ -178634,7 +163720,7 @@ entities: uid: 2075 type: SignalTransmitter - type: ItemCooldown - - uid: 23420 + - uid: 23427 components: - pos: -49.5,24.5 parent: 2 @@ -178651,7 +163737,7 @@ entities: - port: Close uid: 2068 type: SignalTransmitter - - uid: 23421 + - uid: 23428 components: - pos: 50.5,48.5 parent: 2 @@ -178670,7 +163756,7 @@ entities: - port: Open uid: 2082 type: SignalTransmitter - - uid: 23422 + - uid: 23429 components: - pos: 52.5,48.5 parent: 2 @@ -178689,7 +163775,7 @@ entities: - port: Open uid: 2076 type: SignalTransmitter - - uid: 23423 + - uid: 23430 components: - pos: -46.5,17.5 parent: 2 @@ -178699,25 +163785,25 @@ entities: - outputs: On: - port: Open - uid: 23323 + uid: 23330 - port: Open - uid: 23324 + uid: 23331 - port: Open - uid: 23329 + uid: 23336 - port: Open - uid: 23330 + uid: 23337 Off: - port: Close - uid: 23323 + uid: 23330 - port: Close - uid: 23324 + uid: 23331 - port: Close - uid: 23329 + uid: 23336 - port: Close - uid: 23330 + uid: 23337 type: SignalTransmitter - type: ItemCooldown - - uid: 23424 + - uid: 23431 components: - pos: 58.5,48.5 parent: 2 @@ -178736,7 +163822,7 @@ entities: - port: Open uid: 2095 type: SignalTransmitter - - uid: 23425 + - uid: 23432 components: - pos: 54.5,46.5 parent: 2 @@ -178753,7 +163839,7 @@ entities: - port: Open uid: 2089 type: SignalTransmitter - - uid: 23426 + - uid: 23433 components: - pos: 52.5,46.5 parent: 2 @@ -178770,7 +163856,7 @@ entities: - port: Open uid: 2071 type: SignalTransmitter - - uid: 23427 + - uid: 23434 components: - pos: 54.5,48.5 parent: 2 @@ -178789,7 +163875,7 @@ entities: - port: Open uid: 2094 type: SignalTransmitter - - uid: 23428 + - uid: 23435 components: - pos: 56.5,44.5 parent: 2 @@ -178808,7 +163894,7 @@ entities: - port: Open uid: 2070 type: SignalTransmitter - - uid: 23429 + - uid: 23436 components: - pos: 50.5,44.5 parent: 2 @@ -178827,7 +163913,7 @@ entities: - port: Open uid: 2077 type: SignalTransmitter - - uid: 23430 + - uid: 23437 components: - pos: 52.5,44.5 parent: 2 @@ -178846,7 +163932,7 @@ entities: - port: Close uid: 2079 type: SignalTransmitter - - uid: 23431 + - uid: 23438 components: - pos: 58.5,46.5 parent: 2 @@ -178863,11 +163949,13 @@ entities: - port: Open uid: 2092 type: SignalTransmitter - - uid: 23432 + - uid: 23439 components: - pos: 54.5,44.5 parent: 2 type: Transform + - state: True + type: SignalSwitch - outputs: On: - port: Open @@ -178880,8 +163968,7 @@ entities: - port: Open uid: 2086 type: SignalTransmitter - - type: ItemCooldown - - uid: 23433 + - uid: 23440 components: - pos: 50.5,46.5 parent: 2 @@ -178898,7 +163985,7 @@ entities: - port: Close uid: 2094 type: SignalTransmitter - - uid: 23434 + - uid: 23441 components: - pos: 56.5,46.5 parent: 2 @@ -178917,7 +164004,7 @@ entities: - port: Open uid: 2085 type: SignalTransmitter - - uid: 23435 + - uid: 23442 components: - pos: 58.5,44.5 parent: 2 @@ -178940,7 +164027,7 @@ entities: - port: Open uid: 2070 type: SignalTransmitter - - uid: 23436 + - uid: 23443 components: - pos: 56.5,48.5 parent: 2 @@ -178965,7 +164052,7 @@ entities: - port: Open uid: 2093 type: SignalTransmitter - - uid: 23437 + - uid: 23444 components: - rot: -1.5707963267948966 rad pos: 30.5,-35.5 @@ -178976,37 +164063,37 @@ entities: - outputs: On: - port: Open - uid: 23316 + uid: 23323 - port: Open - uid: 23355 + uid: 23362 - port: Open - uid: 23357 + uid: 23364 - port: Open - uid: 23358 + uid: 23365 - port: Open - uid: 23359 + uid: 23366 - port: Open - uid: 23360 + uid: 23367 - port: Open - uid: 23356 + uid: 23363 Off: - port: Close - uid: 23316 + uid: 23323 - port: Close - uid: 23355 + uid: 23362 - port: Close - uid: 23357 + uid: 23364 - port: Close - uid: 23358 + uid: 23365 - port: Close - uid: 23359 + uid: 23366 - port: Close - uid: 23360 + uid: 23367 - port: Close - uid: 23356 + uid: 23363 type: SignalTransmitter - type: ItemCooldown - - uid: 23438 + - uid: 23445 components: - rot: 1.5707963267948966 rad pos: -35.5,29.5 @@ -179017,33 +164104,33 @@ entities: - outputs: On: - port: Open - uid: 23322 + uid: 23329 - port: Open - uid: 23320 + uid: 23327 - port: Open - uid: 23317 + uid: 23324 - port: Open - uid: 23328 + uid: 23335 - port: Open - uid: 23297 + uid: 23304 - port: Open - uid: 23325 + uid: 23332 Off: - port: Close - uid: 23322 + uid: 23329 - port: Close - uid: 23320 + uid: 23327 - port: Close - uid: 23317 + uid: 23324 - port: Close - uid: 23328 + uid: 23335 - port: Close - uid: 23297 + uid: 23304 - port: Close - uid: 23325 + uid: 23332 type: SignalTransmitter - type: ItemCooldown - - uid: 23439 + - uid: 23446 components: - pos: 54.5,51.5 parent: 2 @@ -179064,7 +164151,7 @@ entities: - port: Close uid: 2086 type: SignalTransmitter - - uid: 23440 + - uid: 23447 components: - pos: 5.5,49.5 parent: 2 @@ -179085,7 +164172,7 @@ entities: - port: Close uid: 2051 type: SignalTransmitter - - uid: 23441 + - uid: 23448 components: - pos: 27.5,44.5 parent: 2 @@ -179136,7 +164223,7 @@ entities: - port: Close uid: 2106 type: SignalTransmitter - - uid: 23442 + - uid: 23449 components: - pos: -28.5,-96.5 parent: 2 @@ -179153,7 +164240,7 @@ entities: - port: Close uid: 2097 type: SignalTransmitter - - uid: 23443 + - uid: 23450 components: - pos: -16.5,-96.5 parent: 2 @@ -179170,7 +164257,7 @@ entities: - port: Close uid: 2099 type: SignalTransmitter - - uid: 23444 + - uid: 23451 components: - rot: 3.141592653589793 rad pos: -5.5,-89.5 @@ -179214,7 +164301,7 @@ entities: - port: Close uid: 2118 type: SignalTransmitter - - uid: 23445 + - uid: 23452 components: - pos: -8.5,-94.5 parent: 2 @@ -179257,7 +164344,7 @@ entities: - port: Close uid: 2118 type: SignalTransmitter - - uid: 23446 + - uid: 23453 components: - rot: 3.141592653589793 rad pos: 48.5,-59.5 @@ -179271,7 +164358,7 @@ entities: - port: Close uid: 2060 type: SignalTransmitter - - uid: 23447 + - uid: 23454 components: - pos: 69.5,-32.5 parent: 2 @@ -179284,7 +164371,7 @@ entities: - port: Close uid: 2101 type: SignalTransmitter - - uid: 23448 + - uid: 23455 components: - pos: 33.483017,17.346874 parent: 2 @@ -179294,29 +164381,29 @@ entities: - outputs: On: - port: Open - uid: 23318 + uid: 23325 - port: Open - uid: 23326 + uid: 23333 - port: Open - uid: 23319 + uid: 23326 - port: Open - uid: 23321 + uid: 23328 - port: Open - uid: 23308 + uid: 23315 Off: - port: Close - uid: 23318 + uid: 23325 - port: Close - uid: 23326 + uid: 23333 - port: Close - uid: 23319 + uid: 23326 - port: Close - uid: 23321 + uid: 23328 - port: Close - uid: 23308 + uid: 23315 type: SignalTransmitter - type: ItemCooldown - - uid: 23449 + - uid: 23456 components: - rot: 3.141592653589793 rad pos: 64.5,-55.5 @@ -179327,53 +164414,53 @@ entities: - outputs: On: - port: Open - uid: 23315 + uid: 23322 - port: Open - uid: 23314 + uid: 23321 - port: Open - uid: 23310 + uid: 23317 - port: Open - uid: 23333 + uid: 23340 - port: Open - uid: 23332 + uid: 23339 - port: Open - uid: 23335 + uid: 23342 - port: Open - uid: 23334 + uid: 23341 - port: Open - uid: 23336 + uid: 23343 - port: Open - uid: 23337 + uid: 23344 - port: Open - uid: 23338 + uid: 23345 - port: Open - uid: 23339 + uid: 23346 Off: - port: Close - uid: 23315 + uid: 23322 - port: Close - uid: 23314 + uid: 23321 - port: Close - uid: 23310 + uid: 23317 - port: Close - uid: 23333 + uid: 23340 - port: Close - uid: 23332 + uid: 23339 - port: Close - uid: 23335 + uid: 23342 - port: Close - uid: 23334 + uid: 23341 - port: Close - uid: 23336 + uid: 23343 - port: Close - uid: 23337 + uid: 23344 - port: Close - uid: 23338 + uid: 23345 - port: Close - uid: 23339 + uid: 23346 type: SignalTransmitter - type: ItemCooldown - - uid: 23450 + - uid: 23457 components: - rot: -1.5707963267948966 rad pos: -16.5,-55.5 @@ -179384,17 +164471,17 @@ entities: - outputs: On: - port: Open - uid: 23341 + uid: 23348 - port: Open - uid: 23340 + uid: 23347 Off: - port: Close - uid: 23341 + uid: 23348 - port: Close - uid: 23340 + uid: 23347 type: SignalTransmitter - type: ItemCooldown - - uid: 23451 + - uid: 23458 components: - rot: -1.5707963267948966 rad pos: -33.5,-18.5 @@ -179405,21 +164492,21 @@ entities: - outputs: On: - port: Open - uid: 23344 + uid: 23351 - port: Open - uid: 23343 + uid: 23350 - port: Open - uid: 23342 + uid: 23349 Off: - port: Close - uid: 23344 + uid: 23351 - port: Close - uid: 23343 + uid: 23350 - port: Close - uid: 23342 + uid: 23349 type: SignalTransmitter - type: ItemCooldown - - uid: 23452 + - uid: 23459 components: - pos: -51.5,36.5 parent: 2 @@ -179433,7 +164520,7 @@ entities: uid: 2072 type: SignalTransmitter - type: ItemCooldown - - uid: 23453 + - uid: 23460 components: - rot: 1.5707963267948966 rad pos: 3.5,10.5 @@ -179444,41 +164531,41 @@ entities: - outputs: On: - port: Open - uid: 23347 + uid: 23354 - port: Open - uid: 23348 + uid: 23355 - port: Open - uid: 23349 + uid: 23356 - port: Open - uid: 23354 + uid: 23361 - port: Open - uid: 23353 + uid: 23360 - port: Open - uid: 23352 + uid: 23359 - port: Open - uid: 23351 + uid: 23358 - port: Open - uid: 23350 + uid: 23357 Off: - port: Close - uid: 23347 + uid: 23354 - port: Close - uid: 23348 + uid: 23355 - port: Close - uid: 23349 + uid: 23356 - port: Close - uid: 23354 + uid: 23361 - port: Close - uid: 23353 + uid: 23360 - port: Close - uid: 23352 + uid: 23359 - port: Close - uid: 23351 + uid: 23358 - port: Close - uid: 23350 + uid: 23357 type: SignalTransmitter - type: ItemCooldown - - uid: 23454 + - uid: 23461 components: - pos: 33.487907,17.698355 parent: 2 @@ -179488,21 +164575,21 @@ entities: - outputs: On: - port: Open - uid: 23363 + uid: 23370 - port: Open - uid: 23364 + uid: 23371 - port: Open - uid: 23365 + uid: 23372 Off: - port: Close - uid: 23363 + uid: 23370 - port: Close - uid: 23364 + uid: 23371 - port: Close - uid: 23365 + uid: 23372 type: SignalTransmitter - type: ItemCooldown - - uid: 23455 + - uid: 23462 components: - rot: 3.141592653589793 rad pos: 0.5,-8.5 @@ -179513,29 +164600,29 @@ entities: - outputs: On: - port: Open - uid: 23303 + uid: 23310 - port: Open - uid: 23345 + uid: 23352 - port: Open - uid: 23346 + uid: 23353 - port: Open - uid: 23361 + uid: 23368 - port: Open - uid: 23302 + uid: 23309 Off: - port: Close - uid: 23303 + uid: 23310 - port: Close - uid: 23345 + uid: 23352 - port: Close - uid: 23346 + uid: 23353 - port: Close - uid: 23361 + uid: 23368 - port: Close - uid: 23302 + uid: 23309 type: SignalTransmitter - type: ItemCooldown - - uid: 23456 + - uid: 23463 components: - rot: -1.5707963267948966 rad pos: -5.5,10.5 @@ -179544,20 +164631,20 @@ entities: - outputs: On: - port: Open - uid: 23299 + uid: 23306 - port: Open - uid: 23366 + uid: 23373 - port: Open - uid: 23306 + uid: 23313 Off: - port: Close - uid: 23299 + uid: 23306 - port: Close - uid: 23366 + uid: 23373 - port: Close - uid: 23306 + uid: 23313 type: SignalTransmitter - - uid: 23457 + - uid: 23464 components: - rot: -1.5707963267948966 rad pos: 45.5,-2.5 @@ -179568,21 +164655,21 @@ entities: - outputs: On: - port: Open - uid: 23375 + uid: 23382 - port: Open - uid: 23374 + uid: 23381 - port: Open - uid: 23373 + uid: 23380 Off: - port: Close - uid: 23375 + uid: 23382 - port: Close - uid: 23374 + uid: 23381 - port: Close - uid: 23373 + uid: 23380 type: SignalTransmitter - type: ItemCooldown - - uid: 23458 + - uid: 23465 components: - rot: -1.5707963267948966 rad pos: 29.5,-1.5 @@ -179591,123 +164678,129 @@ entities: - outputs: On: - port: Open - uid: 23385 + uid: 23392 - port: Open - uid: 23384 + uid: 23391 - port: Open - uid: 23383 + uid: 23390 - port: Open - uid: 23386 + uid: 23393 - port: Open - uid: 23387 + uid: 23394 - port: Open - uid: 23388 + uid: 23395 - port: Open - uid: 23389 + uid: 23396 - port: Open - uid: 23390 + uid: 23397 - port: Open - uid: 23391 + uid: 23398 - port: Open - uid: 23392 + uid: 23399 - port: Open - uid: 23394 + uid: 23401 - port: Open - uid: 23400 + uid: 23407 - port: Open - uid: 23399 + uid: 23406 - port: Open - uid: 23398 + uid: 23405 - port: Open - uid: 23397 + uid: 23404 - port: Open - uid: 23396 + uid: 23403 - port: Open - uid: 23395 + uid: 23402 Off: - port: Close - uid: 23385 + uid: 23392 - port: Close - uid: 23384 + uid: 23391 - port: Close - uid: 23383 + uid: 23390 - port: Close - uid: 23386 + uid: 23393 - port: Close - uid: 23387 + uid: 23394 - port: Close - uid: 23388 + uid: 23395 - port: Close - uid: 23389 + uid: 23396 - port: Close - uid: 23390 + uid: 23397 - port: Close - uid: 23391 + uid: 23398 - port: Close - uid: 23392 + uid: 23399 - port: Close - uid: 23394 + uid: 23401 - port: Close - uid: 23400 + uid: 23407 - port: Close - uid: 23399 + uid: 23406 - port: Close - uid: 23398 + uid: 23405 - port: Close - uid: 23397 + uid: 23404 - port: Close - uid: 23396 + uid: 23403 - port: Close - uid: 23395 + uid: 23402 type: SignalTransmitter + - uid: 30703 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-23.5 + parent: 2 + type: Transform - proto: SignAnomaly entities: - - uid: 23459 + - uid: 23466 components: - pos: 76.5,-42.5 parent: 2 type: Transform - proto: SignAnomaly2 entities: - - uid: 23460 + - uid: 23467 components: - pos: 63.5,-41.5 parent: 2 type: Transform - proto: SignArmory entities: - - uid: 23461 + - uid: 23468 components: - pos: 29.5,24.5 parent: 2 type: Transform - proto: SignAtmos entities: - - uid: 23462 + - uid: 23469 components: - pos: -21.5,-31.5 parent: 2 type: Transform - proto: SignAtmosMinsky entities: - - uid: 23463 + - uid: 23470 components: - pos: -30.5,-29.5 parent: 2 type: Transform - - uid: 23464 + - uid: 23471 components: - pos: -21.5,-33.5 parent: 2 type: Transform - proto: SignBar entities: - - uid: 23465 + - uid: 23472 components: - pos: 15.5,5.5 parent: 2 type: Transform - - uid: 23466 + - uid: 23473 components: - rot: 1.5707963267948966 rad pos: 12.5,4.5 @@ -179715,97 +164808,97 @@ entities: type: Transform - proto: SignBiohazardMed entities: - - uid: 23467 + - uid: 23474 components: - pos: -23.5,-74.5 parent: 2 type: Transform - proto: SignBridge entities: - - uid: 23468 + - uid: 23475 components: - pos: 17.5,-26.5 parent: 2 type: Transform - - uid: 23469 + - uid: 23476 components: - pos: 33.5,-26.5 parent: 2 type: Transform - proto: SignCanisters entities: - - uid: 23470 + - uid: 23477 components: - pos: -36.5,-39.5 parent: 2 type: Transform - - uid: 23471 + - uid: 23478 components: - pos: 47.5,-50.5 parent: 2 type: Transform - proto: SignCargo entities: - - uid: 23472 + - uid: 23479 components: - pos: -21.5,22.5 parent: 2 type: Transform - proto: SignCargoDock entities: - - uid: 23473 + - uid: 23480 components: - pos: -35.532974,23.594805 parent: 2 type: Transform - proto: SignChem entities: - - uid: 23474 + - uid: 23481 components: - pos: 2.5,-44.5 parent: 2 type: Transform - proto: SignCloning entities: - - uid: 23475 + - uid: 23482 components: - pos: -7.5,-62.5 parent: 2 type: Transform - proto: SignConference entities: - - uid: 23476 + - uid: 23483 components: - pos: 22.5,-26.5 parent: 2 type: Transform - proto: SignDangerMed entities: - - uid: 23477 + - uid: 23484 components: - pos: 15.5,35.5 parent: 2 type: Transform - proto: SignDirectionalBar entities: - - uid: 23478 + - uid: 23485 components: - pos: -19.478512,48.31118 parent: 2 type: Transform - - uid: 23479 + - uid: 23486 components: - rot: 1.5707963267948966 rad pos: -17.472397,9.2931385 parent: 2 type: Transform - - uid: 23480 + - uid: 23487 components: - rot: 3.141592653589793 rad pos: 23.49888,-45.152493 parent: 2 type: Transform - - uid: 23481 + - uid: 23488 components: - rot: 1.5707963267948966 rad pos: -27.50719,3.4686704 @@ -179813,52 +164906,52 @@ entities: type: Transform - proto: SignDirectionalBridge entities: - - uid: 23482 + - uid: 23489 components: - pos: -19.478844,48.09307 parent: 2 type: Transform - - uid: 23483 + - uid: 23490 components: - rot: 1.5707963267948966 rad pos: -1.5055174,1.4292434 parent: 2 type: Transform - - uid: 23484 + - uid: 23491 components: - rot: 1.5707963267948966 rad pos: -2.4872613,-24.496803 parent: 2 type: Transform - - uid: 23485 + - uid: 23492 components: - pos: 27.5,-7.5 parent: 2 type: Transform - - uid: 23486 + - uid: 23493 components: - pos: 15.5507345,4.4965997 parent: 2 type: Transform - - uid: 23487 + - uid: 23494 components: - rot: 1.5707963267948966 rad pos: -11.506838,1.2987667 parent: 2 type: Transform - - uid: 23488 + - uid: 23495 components: - rot: 1.5707963267948966 rad pos: -1.4898663,-40.13394 parent: 2 type: Transform - - uid: 23489 + - uid: 23496 components: - rot: 1.5707963267948966 rad pos: -17.465254,8.332064 parent: 2 type: Transform - - uid: 23490 + - uid: 23497 components: - rot: 1.5707963267948966 rad pos: -27.50719,3.2186704 @@ -179866,19 +164959,19 @@ entities: type: Transform - proto: SignDirectionalChapel entities: - - uid: 23491 + - uid: 23498 components: - rot: -1.5707963267948966 rad pos: -27.5,2.5 parent: 2 type: Transform - - uid: 23492 + - uid: 23499 components: - rot: 3.141592653589793 rad pos: -17.448181,-40.311073 parent: 2 type: Transform - - uid: 23493 + - uid: 23500 components: - rot: -1.5707963267948966 rad pos: -21.478504,9.770466 @@ -179886,238 +164979,238 @@ entities: type: Transform - proto: SignDirectionalEng entities: - - uid: 23494 + - uid: 23501 components: - rot: -1.5707963267948966 rad pos: 23.456676,-44.465714 parent: 2 type: Transform - - uid: 23495 + - uid: 23502 components: - rot: -1.5707963267948966 rad pos: 13.481093,-40.52887 parent: 2 type: Transform - - uid: 23496 + - uid: 23503 components: - rot: -1.5707963267948966 rad pos: -1.5094987,0.23005629 parent: 2 type: Transform - - uid: 23497 + - uid: 23504 components: - rot: -1.5707963267948966 rad pos: 15.5186825,0.3410281 parent: 2 type: Transform - - uid: 23498 + - uid: 23505 components: - rot: -1.5707963267948966 rad pos: -6.468719,-24.535433 parent: 2 type: Transform - - uid: 23499 + - uid: 23506 components: - rot: -1.5707963267948966 rad pos: 13.494198,-28.706446 parent: 2 type: Transform - - uid: 23500 + - uid: 23507 components: - rot: -1.5707963267948966 rad pos: 27.506605,-7.2696166 parent: 2 type: Transform - - uid: 23501 + - uid: 23508 components: - pos: -11.54485,0.20892155 parent: 2 type: Transform - - uid: 23502 + - uid: 23509 components: - rot: -1.5707963267948966 rad pos: -12.525326,-40.537384 parent: 2 type: Transform - - uid: 23503 + - uid: 23510 components: - rot: -1.5707963267948966 rad pos: 37.56283,-40.519398 parent: 2 type: Transform - - uid: 23504 + - uid: 23511 components: - pos: -19.479143,47.185772 parent: 2 type: Transform - - uid: 23505 + - uid: 23512 components: - pos: -21.4735,10.205865 parent: 2 type: Transform - - uid: 23506 + - uid: 23513 components: - rot: 3.141592653589793 rad pos: -17.5,-33.5 parent: 2 type: Transform - - uid: 23507 + - uid: 23514 components: - pos: -27.491566,-1.4688294 parent: 2 type: Transform - proto: SignDirectionalEvac entities: - - uid: 23508 + - uid: 23515 components: - rot: 1.5707963267948966 rad pos: 23.453842,-7.240517 parent: 2 type: Transform - - uid: 23509 + - uid: 23516 components: - rot: 3.141592653589793 rad pos: 13.494197,-24.550196 parent: 2 type: Transform - - uid: 23510 + - uid: 23517 components: - rot: 3.141592653589793 rad pos: 17.50633,-38.506306 parent: 2 type: Transform - - uid: 23511 + - uid: 23518 components: - rot: 3.141592653589793 rad pos: 27.469652,-44.466072 parent: 2 type: Transform - - uid: 23512 + - uid: 23519 components: - rot: 3.141592653589793 rad pos: 33.56561,-38.47694 parent: 2 type: Transform - - uid: 23513 + - uid: 23520 components: - rot: 1.5707963267948966 rad pos: 15.500585,1.4258997 parent: 2 type: Transform - - uid: 23514 + - uid: 23521 components: - rot: 1.5707963267948966 rad pos: -2.4941144,-24.735882 parent: 2 type: Transform - - uid: 23515 + - uid: 23522 components: - rot: 1.5707963267948966 rad pos: -1.5055175,1.6636184 parent: 2 type: Transform - - uid: 23516 + - uid: 23523 components: - rot: 1.5707963267948966 rad pos: -11.506838,1.7987667 parent: 2 type: Transform - - uid: 23517 + - uid: 23524 components: - rot: 1.5707963267948966 rad pos: -1.4898663,-40.82144 parent: 2 type: Transform - - uid: 23518 + - uid: 23525 components: - rot: 1.5707963267948966 rad pos: 35.5,3.5 parent: 2 type: Transform - - uid: 23519 + - uid: 23526 components: - pos: -19.483376,48.548702 parent: 2 type: Transform - - uid: 23520 + - uid: 23527 components: - rot: 1.5707963267948966 rad pos: -17.48425,-7.298242 parent: 2 type: Transform - - uid: 23521 + - uid: 23528 components: - rot: 1.5707963267948966 rad pos: -17.5155,-24.43221 parent: 2 type: Transform - - uid: 23522 + - uid: 23529 components: - rot: 1.5707963267948966 rad pos: -17.453,-40.550083 parent: 2 type: Transform - - uid: 23523 + - uid: 23530 components: - rot: 1.5707963267948966 rad pos: -17.465254,9.066439 parent: 2 type: Transform - - uid: 23524 + - uid: 23531 components: - rot: 3.141592653589793 rad pos: 60.5,-42.5 parent: 2 type: Transform - - uid: 23525 + - uid: 23532 components: - pos: -17.5,22.5 parent: 2 type: Transform - - uid: 23526 + - uid: 23533 components: - pos: -17.5,33.5 parent: 2 type: Transform - proto: SignDirectionalFood entities: - - uid: 23527 + - uid: 23534 components: - rot: -1.5707963267948966 rad pos: 23.455772,-7.472424 parent: 2 type: Transform - - uid: 23528 + - uid: 23535 components: - rot: 3.141592653589793 rad pos: -6.442209,-23.658274 parent: 2 type: Transform - - uid: 23529 + - uid: 23536 components: - rot: -1.5707963267948966 rad pos: 13.515763,-23.596605 parent: 2 type: Transform - - uid: 23530 + - uid: 23537 components: - rot: 3.141592653589793 rad pos: 13.482204,-40.04481 parent: 2 type: Transform - - uid: 23531 + - uid: 23538 components: - rot: 3.141592653589793 rad pos: -6.4057527,-39.46833 parent: 2 type: Transform - - uid: 23532 + - uid: 23539 components: - rot: 3.141592653589793 rad pos: 23.49562,-45.402493 parent: 2 type: Transform - - uid: 23533 + - uid: 23540 components: - rot: 1.5707963267948966 rad pos: -27.50719,2.7655454 @@ -180125,24 +165218,24 @@ entities: type: Transform - proto: SignDirectionalJanitor entities: - - uid: 23534 + - uid: 23541 components: - pos: -6.5,-2.5 parent: 2 type: Transform - - uid: 23535 + - uid: 23542 components: - rot: -1.5707963267948966 rad pos: 13.511264,-23.825424 parent: 2 type: Transform - - uid: 23536 + - uid: 23543 components: - rot: -1.5707963267948966 rad pos: 13.468106,-40.766113 parent: 2 type: Transform - - uid: 23537 + - uid: 23544 components: - rot: 3.141592653589793 rad pos: -6.4057527,-39.226246 @@ -180150,230 +165243,230 @@ entities: type: Transform - proto: SignDirectionalMed entities: - - uid: 23538 + - uid: 23545 components: - pos: -19.479143,47.404522 parent: 2 type: Transform - - uid: 23539 + - uid: 23546 components: - rot: -1.5707963267948966 rad pos: 13.494197,-24.31582 parent: 2 type: Transform - - uid: 23540 + - uid: 23547 components: - rot: -1.5707963267948966 rad pos: 23.456676,-44.23134 parent: 2 type: Transform - - uid: 23541 + - uid: 23548 components: - rot: -1.5707963267948966 rad pos: 13.481093,-40.279392 parent: 2 type: Transform - - uid: 23542 + - uid: 23549 components: - rot: -1.5707963267948966 rad pos: 15.518682,0.809778 parent: 2 type: Transform - - uid: 23543 + - uid: 23550 components: - pos: -1.509499,0.7144314 parent: 2 type: Transform - - uid: 23544 + - uid: 23551 components: - pos: -6.468719,-24.785433 parent: 2 type: Transform - - uid: 23545 + - uid: 23552 components: - pos: -11.538088,0.45501685 parent: 2 type: Transform - - uid: 23546 + - uid: 23553 components: - rot: -1.5707963267948966 rad pos: 37.560596,-40.278557 parent: 2 type: Transform - - uid: 23547 + - uid: 23554 components: - pos: -17.51201,-24.680704 parent: 2 type: Transform - - uid: 23548 + - uid: 23555 components: - pos: -21.471863,9.993778 parent: 2 type: Transform - - uid: 23549 + - uid: 23556 components: - pos: -17.494442,-12.803106 parent: 2 type: Transform - - uid: 23550 + - uid: 23557 components: - pos: -27.491566,-1.7032045 parent: 2 type: Transform - proto: SignDirectionalSci entities: - - uid: 23551 + - uid: 23558 components: - rot: 1.5707963267948966 rad pos: -2.4872613,-24.231178 parent: 2 type: Transform - - uid: 23552 + - uid: 23559 components: - rot: 1.5707963267948966 rad pos: 27.465042,-44.22285 parent: 2 type: Transform - - uid: 23553 + - uid: 23560 components: - pos: 15.550735,4.2699327 parent: 2 type: Transform - - uid: 23554 + - uid: 23561 components: - pos: 13.494197,-28.22207 parent: 2 type: Transform - - uid: 23555 + - uid: 23562 components: - pos: 27.506117,-7.7341094 parent: 2 type: Transform - - uid: 23556 + - uid: 23563 components: - rot: 1.5707963267948966 rad pos: -11.506838,1.5487667 parent: 2 type: Transform - - uid: 23557 + - uid: 23564 components: - rot: 1.5707963267948966 rad pos: -1.4898663,-40.368317 parent: 2 type: Transform - - uid: 23558 + - uid: 23565 components: - pos: -19.479143,47.623272 parent: 2 type: Transform - - uid: 23559 + - uid: 23566 components: - rot: 1.5707963267948966 rad pos: -17.465254,8.816439 parent: 2 type: Transform - - uid: 23560 + - uid: 23567 components: - rot: 1.5707963267948966 rad pos: -17.460167,-40.790154 parent: 2 type: Transform - - uid: 23561 + - uid: 23568 components: - pos: -17.507042,-24.18393 parent: 2 type: Transform - - uid: 23562 + - uid: 23569 components: - pos: -27.491566,-1.2344544 parent: 2 type: Transform - proto: SignDirectionalSec entities: - - uid: 23563 + - uid: 23570 components: - rot: 3.141592653589793 rad pos: 23.45433,-7.7213244 parent: 2 type: Transform - - uid: 23564 + - uid: 23571 components: - rot: 3.141592653589793 rad pos: 27.468637,-44.695934 parent: 2 type: Transform - - uid: 23565 + - uid: 23572 components: - rot: 3.141592653589793 rad pos: 33.55467,-38.221992 parent: 2 type: Transform - - uid: 23566 + - uid: 23573 components: - rot: 3.141592653589793 rad pos: 17.50898,-38.26922 parent: 2 type: Transform - - uid: 23567 + - uid: 23574 components: - rot: 3.141592653589793 rad pos: 15.5581455,4.7444477 parent: 2 type: Transform - - uid: 23568 + - uid: 23575 components: - rot: 3.141592653589793 rad pos: 13.4980955,-24.785376 parent: 2 type: Transform - - uid: 23569 + - uid: 23576 components: - rot: 1.5707963267948966 rad pos: -6.4826374,-24.301481 parent: 2 type: Transform - - uid: 23570 + - uid: 23577 components: - rot: 1.5707963267948966 rad pos: -1.4980723,1.197365 parent: 2 type: Transform - - uid: 23571 + - uid: 23578 components: - rot: 1.5707963267948966 rad pos: -11.517976,1.041115 parent: 2 type: Transform - - uid: 23572 + - uid: 23579 components: - rot: 1.5707963267948966 rad pos: -1.4758278,-40.604027 parent: 2 type: Transform - - uid: 23573 + - uid: 23580 components: - pos: -19.471409,47.857254 parent: 2 type: Transform - - uid: 23574 + - uid: 23581 components: - rot: 1.5707963267948966 rad pos: -17.523046,-28.22695 parent: 2 type: Transform - - uid: 23575 + - uid: 23582 components: - rot: 1.5707963267948966 rad pos: -17.476206,8.574429 parent: 2 type: Transform - - uid: 23576 + - uid: 23583 components: - rot: 1.5707963267948966 rad pos: -17.478817,-7.5615916 parent: 2 type: Transform - - uid: 23577 + - uid: 23584 components: - rot: 1.5707963267948966 rad pos: -27.522816,2.2499206 @@ -180381,12 +165474,12 @@ entities: type: Transform - proto: SignDirectionalSolar entities: - - uid: 23578 + - uid: 23585 components: - pos: -0.5,-76.5 parent: 2 type: Transform - - uid: 23579 + - uid: 23586 components: - rot: 3.141592653589793 rad pos: 65.5,27.5 @@ -180394,220 +165487,220 @@ entities: type: Transform - proto: SignDirectionalSupply entities: - - uid: 23580 + - uid: 23587 components: - rot: -1.5707963267948966 rad pos: 23.453947,-44.6932 parent: 2 type: Transform - - uid: 23581 + - uid: 23588 components: - rot: -1.5707963267948966 rad pos: 15.5186825,0.5754031 parent: 2 type: Transform - - uid: 23582 + - uid: 23589 components: - rot: -1.5707963267948966 rad pos: -1.5094988,0.4800564 parent: 2 type: Transform - - uid: 23583 + - uid: 23590 components: - rot: -1.5707963267948966 rad pos: 13.494197,-28.47207 parent: 2 type: Transform - - uid: 23584 + - uid: 23591 components: - rot: 3.141592653589793 rad pos: -11.522463,0.70501685 parent: 2 type: Transform - - uid: 23585 + - uid: 23592 components: - rot: -1.5707963267948966 rad pos: -12.525326,-40.287384 parent: 2 type: Transform - - uid: 23586 + - uid: 23593 components: - rot: -1.5707963267948966 rad pos: 37.56283,-40.753773 parent: 2 type: Transform - - uid: 23587 + - uid: 23594 components: - rot: 3.141592653589793 rad pos: -21.4735,9.533642 parent: 2 type: Transform - - uid: 23588 + - uid: 23595 components: - rot: 3.141592653589793 rad pos: -2.5,-23.5 parent: 2 type: Transform - - uid: 23589 + - uid: 23596 components: - rot: 3.141592653589793 rad pos: -17.496458,-33.756527 parent: 2 type: Transform - - uid: 23590 + - uid: 23597 components: - rot: 3.141592653589793 rad pos: -17.5,-12.5 parent: 2 type: Transform - - uid: 23591 + - uid: 23598 components: - rot: 3.141592653589793 rad pos: -27.491566,3.7030454 parent: 2 type: Transform - - uid: 23592 + - uid: 23599 components: - pos: -19.471409,48.794754 parent: 2 type: Transform - proto: SignDisposalSpace entities: - - uid: 23593 + - uid: 23600 components: - pos: 23.5,-52.5 parent: 2 type: Transform - proto: SignElectrical entities: - - uid: 23594 + - uid: 23601 components: - pos: -78.5,-5.5 parent: 2 type: Transform - - uid: 23595 + - uid: 23602 components: - pos: -78.5,-19.5 parent: 2 type: Transform - - uid: 23596 + - uid: 23603 components: - pos: -71.5,-2.5 parent: 2 type: Transform - - uid: 23597 + - uid: 23604 components: - pos: -64.5,-2.5 parent: 2 type: Transform - - uid: 23598 + - uid: 23605 components: - pos: 24.5,39.5 parent: 2 type: Transform - - uid: 23599 + - uid: 23606 components: - pos: 32.5,39.5 parent: 2 type: Transform - - uid: 23600 + - uid: 23607 components: - pos: 38.5,31.5 parent: 2 type: Transform - proto: SignElectricalMed entities: - - uid: 23601 + - uid: 23608 components: - pos: -12.5,-70.5 parent: 2 type: Transform - - uid: 23602 + - uid: 23609 components: - pos: 42.5,-60.5 parent: 2 type: Transform - - uid: 23603 + - uid: 23610 components: - pos: 8.5,-44.5 parent: 2 type: Transform - - uid: 23604 + - uid: 23611 components: - pos: 37.5,-44.5 parent: 2 type: Transform - - uid: 23605 + - uid: 23612 components: - pos: 37.5,-29.5 parent: 2 type: Transform - - uid: 23606 + - uid: 23613 components: - pos: 46.5,-6.5 parent: 2 type: Transform - - uid: 23607 + - uid: 23614 components: - pos: 47.5,-0.5 parent: 2 type: Transform - - uid: 23608 + - uid: 23615 components: - pos: 33.5,23.5 parent: 2 type: Transform - - uid: 23609 + - uid: 23616 components: - pos: -29.5,-54.5 parent: 2 type: Transform - proto: SignEngine entities: - - uid: 23610 + - uid: 23617 components: - pos: -43.5,-9.5 parent: 2 type: Transform - proto: SignEngineering entities: - - uid: 23611 + - uid: 23618 components: - pos: -21.5,-8.5 parent: 2 type: Transform - - uid: 23612 + - uid: 23619 components: - pos: -21.5,-15.5 parent: 2 type: Transform - proto: SignEscapePods entities: - - uid: 23613 + - uid: 23620 components: - pos: 29.5,-93.5 parent: 2 type: Transform - - uid: 23614 + - uid: 23621 components: - pos: -16.5,68.5 parent: 2 type: Transform - - uid: 23615 + - uid: 23622 components: - pos: 49.5,-93.5 parent: 2 type: Transform - proto: SignEVA entities: - - uid: 23616 + - uid: 23623 components: - pos: 34.5,-15.5 parent: 2 type: Transform - proto: SignExplosives entities: - - uid: 23617 + - uid: 23624 components: - rot: 1.5707963267948966 rad pos: 68.5,-26.5 @@ -180615,98 +165708,98 @@ entities: type: Transform - proto: SignFlammableMed entities: - - uid: 23618 + - uid: 23625 components: - pos: -42.5,-63.5 parent: 2 type: Transform - proto: SignGravity entities: - - uid: 23619 + - uid: 23626 components: - pos: -18.5,-3.5 parent: 2 type: Transform - proto: SignHydro3 entities: - - uid: 23620 + - uid: 23627 components: - pos: -5.5,4.5 parent: 2 type: Transform - proto: SignInterrogation entities: - - uid: 23621 + - uid: 23628 components: - pos: 18.5,18.5 parent: 2 type: Transform - proto: SignLaserMed entities: - - uid: 23622 + - uid: 23629 components: - rot: 3.141592653589793 rad pos: -63.5,-29.5 parent: 2 type: Transform - - uid: 23623 + - uid: 23630 components: - pos: -62.5,-22.5 parent: 2 type: Transform - - uid: 23624 + - uid: 23631 components: - pos: -70.5,-22.5 parent: 2 type: Transform - proto: SignLibrary entities: - - uid: 23625 + - uid: 23632 components: - pos: 9.5,-2.5 parent: 2 type: Transform - proto: SignMagneticsMed entities: - - uid: 23626 + - uid: 23633 components: - pos: -47.5,27.5 parent: 2 type: Transform - proto: SignMedical entities: - - uid: 23627 + - uid: 23634 components: - pos: -2.5,-44.5 parent: 2 type: Transform - proto: SignMinerDock entities: - - uid: 23628 + - uid: 23635 components: - pos: -44.5,27.5 parent: 2 type: Transform - proto: SignMorgue entities: - - uid: 23629 + - uid: 23636 components: - pos: -15.5,-68.5 parent: 2 type: Transform - - uid: 23630 + - uid: 23637 components: - pos: -12.5,-62.5 parent: 2 type: Transform - proto: SignPrison entities: - - uid: 23631 + - uid: 23638 components: - pos: 39.5,24.5 parent: 2 type: Transform - - uid: 23632 + - uid: 23639 components: - name: open prison sign type: MetaData @@ -180715,24 +165808,24 @@ entities: type: Transform - proto: SignRadiationMed entities: - - uid: 23633 + - uid: 23640 components: - pos: -63.5,-25.5 parent: 2 type: Transform - proto: SignRedFive entities: - - uid: 23634 + - uid: 23641 components: - pos: 57.5,22.5 parent: 2 type: Transform - - uid: 23635 + - uid: 23642 components: - pos: 41.5,17.5 parent: 2 type: Transform - - uid: 23636 + - uid: 23643 components: - rot: 3.141592653589793 rad pos: 39.5,5.5 @@ -180740,17 +165833,17 @@ entities: type: Transform - proto: SignRedFour entities: - - uid: 23637 + - uid: 23644 components: - pos: 40.5,17.5 parent: 2 type: Transform - - uid: 23638 + - uid: 23645 components: - pos: 54.5,22.5 parent: 2 type: Transform - - uid: 23639 + - uid: 23646 components: - rot: 3.141592653589793 rad pos: 39.5,8.5 @@ -180758,66 +165851,66 @@ entities: type: Transform - proto: SignRedNine entities: - - uid: 23640 + - uid: 23647 components: - pos: 51.62568,41.505035 parent: 2 type: Transform - proto: SignRedOne entities: - - uid: 23641 + - uid: 23648 components: - pos: 45.5,22.5 parent: 2 type: Transform - - uid: 23642 + - uid: 23649 components: - rot: 3.141592653589793 rad pos: 28.5,13.5 parent: 2 type: Transform - - uid: 23643 + - uid: 23650 components: - pos: 30.70196,-15.491432 parent: 2 type: Transform - - uid: 23644 + - uid: 23651 components: - pos: 37.5,17.5 parent: 2 type: Transform - proto: SignRedSeven entities: - - uid: 23645 + - uid: 23652 components: - pos: 60.5,17.5 parent: 2 type: Transform - proto: SignRedSix entities: - - uid: 23646 + - uid: 23653 components: - pos: 60.5,20.5 parent: 2 type: Transform - - uid: 23647 + - uid: 23654 components: - pos: 51.40693,41.505035 parent: 2 type: Transform - proto: SignRedThree entities: - - uid: 23648 + - uid: 23655 components: - pos: 51.5,22.5 parent: 2 type: Transform - - uid: 23649 + - uid: 23656 components: - pos: 39.5,17.5 parent: 2 type: Transform - - uid: 23650 + - uid: 23657 components: - rot: 3.141592653589793 rad pos: 34.5,13.5 @@ -180825,18 +165918,18 @@ entities: type: Transform - proto: SignRedTwo entities: - - uid: 23651 + - uid: 23658 components: - pos: 48.5,22.5 parent: 2 type: Transform - - uid: 23652 + - uid: 23659 components: - rot: 3.141592653589793 rad pos: 38.5,17.5 parent: 2 type: Transform - - uid: 23653 + - uid: 23660 components: - rot: 3.141592653589793 rad pos: 31.5,13.5 @@ -180844,137 +165937,137 @@ entities: type: Transform - proto: SignRedZero entities: - - uid: 23654 + - uid: 23661 components: - pos: 30.467585,-15.491432 parent: 2 type: Transform - - uid: 23655 + - uid: 23662 components: - pos: 30.23321,-15.491432 parent: 2 type: Transform - proto: SignRND entities: - - uid: 23656 + - uid: 23663 components: - pos: 47.5,-38.5 parent: 2 type: Transform - proto: SignRobo entities: - - uid: 23657 + - uid: 23664 components: - pos: 66.5,-47.5 parent: 2 type: Transform - proto: SignScience1 entities: - - uid: 23658 + - uid: 23665 components: - pos: 38.5,-40.5 parent: 2 type: Transform - proto: SignShipDock entities: - - uid: 23659 + - uid: 23666 components: - name: docking arm type: MetaData - pos: -14.5,70.5 parent: 2 type: Transform - - uid: 23660 + - uid: 23667 components: - name: docking arm type: MetaData - pos: -20.5,70.5 parent: 2 type: Transform - - uid: 23661 + - uid: 23668 components: - pos: 76.5,-32.5 parent: 2 type: Transform - proto: SignShock entities: - - uid: 23662 + - uid: 23669 components: - pos: 17.5,-30.5 parent: 2 type: Transform - - uid: 23663 + - uid: 23670 components: - pos: 11.5,-15.5 parent: 2 type: Transform - proto: SignSmoking entities: - - uid: 23664 + - uid: 23671 components: - pos: 1.5,-49.5 parent: 2 type: Transform - - uid: 23665 + - uid: 23672 components: - pos: -10.5,-49.5 parent: 2 type: Transform - proto: SignSomethingOld entities: - - uid: 23666 + - uid: 23673 components: - pos: -29.5,2.5 parent: 2 type: Transform - proto: SignSomethingOld2 entities: - - uid: 23667 + - uid: 23674 components: - pos: -42.5,26.5 parent: 2 type: Transform - proto: SignSpace entities: - - uid: 23668 + - uid: 23675 components: - pos: -2.5,-76.5 parent: 2 type: Transform - - uid: 23669 + - uid: 23676 components: - pos: -58.5,-53.5 parent: 2 type: Transform - - uid: 23670 + - uid: 23677 components: - pos: -49.5,18.5 parent: 2 type: Transform - proto: SignSurgery entities: - - uid: 23671 + - uid: 23678 components: - pos: -1.5,-62.5 parent: 2 type: Transform - proto: SignTelecomms entities: - - uid: 23672 + - uid: 23679 components: - pos: 13.5,-22.5 parent: 2 type: Transform - proto: SignToolStorage entities: - - uid: 23673 + - uid: 23680 components: - pos: -33.5,-13.5 parent: 2 type: Transform - proto: SignToxins2 entities: - - uid: 23674 + - uid: 23681 components: - name: toxin lab sign type: MetaData @@ -180983,40 +166076,40 @@ entities: type: Transform - proto: SignVirology entities: - - uid: 23675 + - uid: 23682 components: - pos: -18.5,-62.5 parent: 2 type: Transform - proto: SilverOre1 entities: - - uid: 23676 + - uid: 23683 components: - pos: 73.48065,-67.68085 parent: 2 type: Transform - proto: SingularityGenerator entities: - - uid: 23677 + - uid: 23684 components: - pos: -66.5,-13.5 parent: 2 type: Transform - proto: SinkStemlessWater entities: - - uid: 23678 + - uid: 23685 components: - rot: 1.5707963267948966 rad pos: -31.5,-3.5 parent: 2 type: Transform - - uid: 23679 + - uid: 23686 components: - rot: 1.5707963267948966 rad pos: -31.5,-2.5 parent: 2 type: Transform - - uid: 23680 + - uid: 23687 components: - rot: -1.5707963267948966 rad pos: -4.5,-96.5 @@ -181024,92 +166117,94 @@ entities: type: Transform - proto: SinkWide entities: - - uid: 23681 + - uid: 22985 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-33.5 + parent: 2 + type: Transform + - nextChargeTime: 277.6485063 + type: SolutionRegeneration + - uid: 23688 components: - rot: -1.5707963267948966 rad pos: 7.5,-48.5 parent: 2 type: Transform - - uid: 23682 + - uid: 23689 components: - pos: 1.5,9.5 parent: 2 type: Transform - - uid: 23683 + - uid: 23690 components: - rot: 3.141592653589793 rad pos: 17.5,9.5 parent: 2 type: Transform - - uid: 23684 + - uid: 23691 components: - rot: -1.5707963267948966 rad pos: -8.5,-69.5 parent: 2 type: Transform - - uid: 23685 + - uid: 23692 components: - rot: 1.5707963267948966 rad pos: -1.5,-7.5 parent: 2 type: Transform - - uid: 23686 + - uid: 23693 components: - rot: -1.5707963267948966 rad pos: -2.5,5.5 parent: 2 type: Transform - - uid: 23687 + - uid: 23694 components: - rot: -1.5707963267948966 rad pos: -2.5,6.5 parent: 2 type: Transform - - uid: 23688 + - uid: 23695 components: - rot: 3.141592653589793 rad pos: -21.5,41.5 parent: 2 type: Transform - - uid: 23689 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-32.5 - parent: 2 - type: Transform - - uid: 23690 + - uid: 23697 components: - rot: 3.141592653589793 rad pos: 62.5,21.5 parent: 2 type: Transform - - uid: 23691 + - uid: 23698 components: - pos: 63.5,13.5 parent: 2 type: Transform - - uid: 23692 + - uid: 23699 components: - pos: 63.5,11.5 parent: 2 type: Transform - - uid: 23693 + - uid: 23700 components: - pos: 63.5,9.5 parent: 2 type: Transform - - uid: 23694 + - uid: 23701 components: - rot: 1.5707963267948966 rad pos: -33.5,9.5 parent: 2 type: Transform - - uid: 23695 + - uid: 23702 components: - pos: -3.5,56.5 parent: 2 type: Transform - - uid: 23696 + - uid: 23703 components: - rot: 3.141592653589793 rad pos: 46.5,-39.5 @@ -181117,7 +166212,7 @@ entities: type: Transform - proto: SmallLight entities: - - uid: 23697 + - uid: 23704 components: - rot: -1.5707963267948966 rad pos: 17.5,-48.5 @@ -181125,128 +166220,128 @@ entities: type: Transform - proto: SMESBasic entities: - - uid: 23698 + - uid: 23705 components: - pos: 4.5,-20.5 parent: 2 type: Transform - - uid: 23699 + - uid: 23706 components: - pos: -2.5,-78.5 parent: 2 type: Transform - - uid: 23700 + - uid: 23707 components: - pos: 48.5,-3.5 parent: 2 type: Transform - - uid: 23701 + - uid: 23708 components: - pos: -48.5,-21.5 parent: 2 type: Transform - - uid: 23702 + - uid: 23709 components: - pos: -46.5,-21.5 parent: 2 type: Transform - - uid: 23703 + - uid: 23710 components: - pos: -44.5,-21.5 parent: 2 type: Transform - - uid: 23704 + - uid: 23711 components: - pos: -50.5,-9.5 parent: 2 type: Transform - - uid: 23705 + - uid: 23712 components: - pos: -56.5,-20.5 parent: 2 type: Transform - - uid: 23706 + - uid: 23713 components: - pos: -28.5,-37.5 parent: 2 type: Transform - - uid: 23707 + - uid: 23714 components: - pos: -55.5,-88.5 parent: 2 type: Transform - - uid: 23708 + - uid: 23715 components: - pos: 73.5,38.5 parent: 2 type: Transform - - uid: 23709 + - uid: 23716 components: - pos: 73.5,34.5 parent: 2 type: Transform - - uid: 23710 + - uid: 23717 components: - pos: -0.5,-78.5 parent: 2 type: Transform - - uid: 23711 + - uid: 23718 components: - pos: -70.5,-30.5 parent: 2 type: Transform - - uid: 23712 + - uid: 23719 components: - pos: -74.5,-30.5 parent: 2 type: Transform - - uid: 23713 + - uid: 23720 components: - pos: -72.5,-30.5 parent: 2 type: Transform - proto: Soap entities: - - uid: 23714 + - uid: 23721 components: - pos: 4.478334,-9.306811 parent: 2 type: Transform - - uid: 23715 + - uid: 23722 components: - pos: -13.533843,-21.411894 parent: 2 type: Transform - - uid: 23716 + - uid: 23723 components: - pos: -13.440093,-21.677519 parent: 2 type: Transform - proto: soda_dispenser entities: - - uid: 23717 + - uid: 23724 components: - rot: -1.5707963267948966 rad pos: 0.5,-4.5 parent: 2 type: Transform - - uid: 23718 + - uid: 23725 components: - rot: -1.5707963267948966 rad pos: 18.5,11.5 parent: 2 type: Transform - - uid: 23719 + - uid: 23726 components: - pos: -40.5,-74.5 parent: 2 type: Transform - - uid: 23720 + - uid: 23727 components: - pos: 37.5,51.5 parent: 2 type: Transform - - uid: 23721 + - uid: 23728 components: - rot: 3.141592653589793 rad pos: -20.5,47.5 @@ -181254,648 +166349,648 @@ entities: type: Transform - proto: SodiumLightTube entities: - - uid: 23722 + - uid: 23729 components: - pos: -42.50719,-90.42425 parent: 2 type: Transform - proto: SolarPanel entities: - - uid: 23723 + - uid: 23730 components: - pos: 10.5,-101.5 parent: 2 type: Transform - - uid: 23724 + - uid: 23731 components: - pos: 16.5,-95.5 parent: 2 type: Transform - - uid: 23725 + - uid: 23732 components: - pos: 18.5,-95.5 parent: 2 type: Transform - - uid: 23726 + - uid: 23733 components: - pos: 6.5,-104.5 parent: 2 type: Transform - - uid: 23727 + - uid: 23734 components: - pos: 10.5,-95.5 parent: 2 type: Transform - - uid: 23728 + - uid: 23735 components: - pos: 12.5,-101.5 parent: 2 type: Transform - - uid: 23729 + - uid: 23736 components: - pos: 8.5,-104.5 parent: 2 type: Transform - - uid: 23730 + - uid: 23737 components: - pos: 14.5,-98.5 parent: 2 type: Transform - - uid: 23731 + - uid: 23738 components: - pos: 10.5,-98.5 parent: 2 type: Transform - - uid: 23732 + - uid: 23739 components: - pos: 8.5,-98.5 parent: 2 type: Transform - - uid: 23733 + - uid: 23740 components: - pos: 8.5,-95.5 parent: 2 type: Transform - - uid: 23734 + - uid: 23741 components: - pos: 12.5,-95.5 parent: 2 type: Transform - - uid: 23735 + - uid: 23742 components: - pos: 12.5,-98.5 parent: 2 type: Transform - - uid: 23736 + - uid: 23743 components: - pos: 14.5,-101.5 parent: 2 type: Transform - - uid: 23737 + - uid: 23744 components: - pos: 14.5,-95.5 parent: 2 type: Transform - - uid: 23738 + - uid: 23745 components: - pos: 6.5,-95.5 parent: 2 type: Transform - - uid: 23739 + - uid: 23746 components: - pos: 8.5,-101.5 parent: 2 type: Transform - - uid: 23740 + - uid: 23747 components: - pos: 4.5,-95.5 parent: 2 type: Transform - - uid: 23741 + - uid: 23748 components: - pos: 12.5,-104.5 parent: 2 type: Transform - - uid: 23742 + - uid: 23749 components: - pos: 16.5,-101.5 parent: 2 type: Transform - - uid: 23743 + - uid: 23750 components: - pos: 18.5,-101.5 parent: 2 type: Transform - - uid: 23744 + - uid: 23751 components: - pos: 18.5,-98.5 parent: 2 type: Transform - - uid: 23745 + - uid: 23752 components: - pos: 16.5,-98.5 parent: 2 type: Transform - - uid: 23746 + - uid: 23753 components: - pos: 18.5,-104.5 parent: 2 type: Transform - - uid: 23747 + - uid: 23754 components: - pos: 16.5,-104.5 parent: 2 type: Transform - - uid: 23748 + - uid: 23755 components: - pos: 4.5,-104.5 parent: 2 type: Transform - - uid: 23749 + - uid: 23756 components: - pos: 4.5,-101.5 parent: 2 type: Transform - - uid: 23750 + - uid: 23757 components: - pos: 6.5,-101.5 parent: 2 type: Transform - - uid: 23751 + - uid: 23758 components: - pos: 4.5,-98.5 parent: 2 type: Transform - - uid: 23752 + - uid: 23759 components: - pos: 6.5,-98.5 parent: 2 type: Transform - - uid: 23753 + - uid: 23760 components: - pos: 14.5,-104.5 parent: 2 type: Transform - - uid: 23754 + - uid: 23761 components: - pos: 10.5,-104.5 parent: 2 type: Transform - - uid: 23755 + - uid: 23762 components: - rot: 1.5707963267948966 rad pos: 90.5,44.5 parent: 2 type: Transform - - uid: 23756 + - uid: 23763 components: - rot: 1.5707963267948966 rad pos: 90.5,43.5 parent: 2 type: Transform - - uid: 23757 + - uid: 23764 components: - rot: 1.5707963267948966 rad pos: 90.5,41.5 parent: 2 type: Transform - - uid: 23758 + - uid: 23765 components: - rot: 1.5707963267948966 rad pos: 90.5,42.5 parent: 2 type: Transform - - uid: 23759 + - uid: 23766 components: - rot: 1.5707963267948966 rad pos: 90.5,40.5 parent: 2 type: Transform - - uid: 23760 + - uid: 23767 components: - rot: 1.5707963267948966 rad pos: 90.5,39.5 parent: 2 type: Transform - - uid: 23761 + - uid: 23768 components: - rot: 1.5707963267948966 rad pos: 90.5,38.5 parent: 2 type: Transform - - uid: 23762 + - uid: 23769 components: - rot: 1.5707963267948966 rad pos: 90.5,37.5 parent: 2 type: Transform - - uid: 23763 + - uid: 23770 components: - rot: 1.5707963267948966 rad pos: 87.5,44.5 parent: 2 type: Transform - - uid: 23764 + - uid: 23771 components: - rot: 1.5707963267948966 rad pos: 87.5,43.5 parent: 2 type: Transform - - uid: 23765 + - uid: 23772 components: - rot: 1.5707963267948966 rad pos: 87.5,42.5 parent: 2 type: Transform - - uid: 23766 + - uid: 23773 components: - rot: 1.5707963267948966 rad pos: 87.5,41.5 parent: 2 type: Transform - - uid: 23767 + - uid: 23774 components: - rot: 1.5707963267948966 rad pos: 87.5,40.5 parent: 2 type: Transform - - uid: 23768 + - uid: 23775 components: - rot: 1.5707963267948966 rad pos: 87.5,39.5 parent: 2 type: Transform - - uid: 23769 + - uid: 23776 components: - rot: 1.5707963267948966 rad pos: 87.5,38.5 parent: 2 type: Transform - - uid: 23770 + - uid: 23777 components: - rot: 1.5707963267948966 rad pos: 87.5,37.5 parent: 2 type: Transform - - uid: 23771 + - uid: 23778 components: - rot: 1.5707963267948966 rad pos: 84.5,44.5 parent: 2 type: Transform - - uid: 23772 + - uid: 23779 components: - rot: 1.5707963267948966 rad pos: 84.5,43.5 parent: 2 type: Transform - - uid: 23773 + - uid: 23780 components: - rot: 1.5707963267948966 rad pos: 84.5,42.5 parent: 2 type: Transform - - uid: 23774 + - uid: 23781 components: - rot: 1.5707963267948966 rad pos: 84.5,41.5 parent: 2 type: Transform - - uid: 23775 + - uid: 23782 components: - rot: 1.5707963267948966 rad pos: 84.5,40.5 parent: 2 type: Transform - - uid: 23776 + - uid: 23783 components: - rot: 1.5707963267948966 rad pos: 84.5,39.5 parent: 2 type: Transform - - uid: 23777 + - uid: 23784 components: - rot: 1.5707963267948966 rad pos: 84.5,38.5 parent: 2 type: Transform - - uid: 23778 + - uid: 23785 components: - rot: 1.5707963267948966 rad pos: 84.5,37.5 parent: 2 type: Transform - - uid: 23779 + - uid: 23786 components: - rot: 1.5707963267948966 rad pos: 81.5,44.5 parent: 2 type: Transform - - uid: 23780 + - uid: 23787 components: - rot: 1.5707963267948966 rad pos: 81.5,43.5 parent: 2 type: Transform - - uid: 23781 + - uid: 23788 components: - rot: 1.5707963267948966 rad pos: 81.5,42.5 parent: 2 type: Transform - - uid: 23782 + - uid: 23789 components: - rot: 1.5707963267948966 rad pos: 81.5,41.5 parent: 2 type: Transform - - uid: 23783 + - uid: 23790 components: - rot: 1.5707963267948966 rad pos: 81.5,40.5 parent: 2 type: Transform - - uid: 23784 + - uid: 23791 components: - rot: 1.5707963267948966 rad pos: 81.5,39.5 parent: 2 type: Transform - - uid: 23785 + - uid: 23792 components: - rot: 1.5707963267948966 rad pos: 81.5,38.5 parent: 2 type: Transform - - uid: 23786 + - uid: 23793 components: - rot: 1.5707963267948966 rad pos: 81.5,37.5 parent: 2 type: Transform - - uid: 23787 + - uid: 23794 components: - rot: 1.5707963267948966 rad pos: 78.5,44.5 parent: 2 type: Transform - - uid: 23788 + - uid: 23795 components: - rot: 1.5707963267948966 rad pos: 78.5,43.5 parent: 2 type: Transform - - uid: 23789 + - uid: 23796 components: - rot: 1.5707963267948966 rad pos: 78.5,42.5 parent: 2 type: Transform - - uid: 23790 + - uid: 23797 components: - rot: 1.5707963267948966 rad pos: 78.5,41.5 parent: 2 type: Transform - - uid: 23791 + - uid: 23798 components: - rot: 1.5707963267948966 rad pos: 78.5,40.5 parent: 2 type: Transform - - uid: 23792 + - uid: 23799 components: - rot: 1.5707963267948966 rad pos: 78.5,39.5 parent: 2 type: Transform - - uid: 23793 + - uid: 23800 components: - rot: 1.5707963267948966 rad pos: 78.5,38.5 parent: 2 type: Transform - - uid: 23794 + - uid: 23801 components: - rot: 1.5707963267948966 rad pos: 78.5,37.5 parent: 2 type: Transform - - uid: 23795 + - uid: 23802 components: - rot: 1.5707963267948966 rad pos: 78.5,35.5 parent: 2 type: Transform - - uid: 23796 + - uid: 23803 components: - rot: 1.5707963267948966 rad pos: 78.5,34.5 parent: 2 type: Transform - - uid: 23797 + - uid: 23804 components: - rot: 1.5707963267948966 rad pos: 78.5,33.5 parent: 2 type: Transform - - uid: 23798 + - uid: 23805 components: - rot: 1.5707963267948966 rad pos: 78.5,32.5 parent: 2 type: Transform - - uid: 23799 + - uid: 23806 components: - rot: 1.5707963267948966 rad pos: 78.5,31.5 parent: 2 type: Transform - - uid: 23800 + - uid: 23807 components: - rot: 1.5707963267948966 rad pos: 78.5,30.5 parent: 2 type: Transform - - uid: 23801 + - uid: 23808 components: - rot: 1.5707963267948966 rad pos: 78.5,29.5 parent: 2 type: Transform - - uid: 23802 + - uid: 23809 components: - rot: 1.5707963267948966 rad pos: 78.5,28.5 parent: 2 type: Transform - - uid: 23803 + - uid: 23810 components: - rot: 1.5707963267948966 rad pos: 81.5,35.5 parent: 2 type: Transform - - uid: 23804 + - uid: 23811 components: - rot: 1.5707963267948966 rad pos: 81.5,34.5 parent: 2 type: Transform - - uid: 23805 + - uid: 23812 components: - rot: 1.5707963267948966 rad pos: 81.5,33.5 parent: 2 type: Transform - - uid: 23806 + - uid: 23813 components: - rot: 1.5707963267948966 rad pos: 81.5,32.5 parent: 2 type: Transform - - uid: 23807 + - uid: 23814 components: - rot: 1.5707963267948966 rad pos: 81.5,31.5 parent: 2 type: Transform - - uid: 23808 + - uid: 23815 components: - rot: 1.5707963267948966 rad pos: 81.5,30.5 parent: 2 type: Transform - - uid: 23809 + - uid: 23816 components: - rot: 1.5707963267948966 rad pos: 81.5,29.5 parent: 2 type: Transform - - uid: 23810 + - uid: 23817 components: - rot: 1.5707963267948966 rad pos: 81.5,28.5 parent: 2 type: Transform - - uid: 23811 + - uid: 23818 components: - rot: 1.5707963267948966 rad pos: 84.5,35.5 parent: 2 type: Transform - - uid: 23812 + - uid: 23819 components: - rot: 1.5707963267948966 rad pos: 84.5,34.5 parent: 2 type: Transform - - uid: 23813 + - uid: 23820 components: - rot: 1.5707963267948966 rad pos: 84.5,33.5 parent: 2 type: Transform - - uid: 23814 + - uid: 23821 components: - rot: 1.5707963267948966 rad pos: 84.5,32.5 parent: 2 type: Transform - - uid: 23815 + - uid: 23822 components: - rot: 1.5707963267948966 rad pos: 84.5,31.5 parent: 2 type: Transform - - uid: 23816 + - uid: 23823 components: - rot: 1.5707963267948966 rad pos: 84.5,30.5 parent: 2 type: Transform - - uid: 23817 + - uid: 23824 components: - rot: 1.5707963267948966 rad pos: 84.5,29.5 parent: 2 type: Transform - - uid: 23818 + - uid: 23825 components: - rot: 1.5707963267948966 rad pos: 84.5,28.5 parent: 2 type: Transform - - uid: 23819 + - uid: 23826 components: - rot: 1.5707963267948966 rad pos: 87.5,35.5 parent: 2 type: Transform - - uid: 23820 + - uid: 23827 components: - rot: 1.5707963267948966 rad pos: 87.5,34.5 parent: 2 type: Transform - - uid: 23821 + - uid: 23828 components: - rot: 1.5707963267948966 rad pos: 87.5,33.5 parent: 2 type: Transform - - uid: 23822 + - uid: 23829 components: - rot: 1.5707963267948966 rad pos: 87.5,32.5 parent: 2 type: Transform - - uid: 23823 + - uid: 23830 components: - rot: 1.5707963267948966 rad pos: 87.5,31.5 parent: 2 type: Transform - - uid: 23824 + - uid: 23831 components: - rot: 1.5707963267948966 rad pos: 87.5,30.5 parent: 2 type: Transform - - uid: 23825 + - uid: 23832 components: - rot: 1.5707963267948966 rad pos: 87.5,29.5 parent: 2 type: Transform - - uid: 23826 + - uid: 23833 components: - rot: 1.5707963267948966 rad pos: 87.5,28.5 parent: 2 type: Transform - - uid: 23827 + - uid: 23834 components: - rot: 1.5707963267948966 rad pos: 90.5,35.5 parent: 2 type: Transform - - uid: 23828 + - uid: 23835 components: - rot: 1.5707963267948966 rad pos: 90.5,34.5 parent: 2 type: Transform - - uid: 23829 + - uid: 23836 components: - rot: 1.5707963267948966 rad pos: 90.5,33.5 parent: 2 type: Transform - - uid: 23830 + - uid: 23837 components: - rot: 1.5707963267948966 rad pos: 90.5,32.5 parent: 2 type: Transform - - uid: 23831 + - uid: 23838 components: - rot: 1.5707963267948966 rad pos: 90.5,31.5 parent: 2 type: Transform - - uid: 23832 + - uid: 23839 components: - rot: 1.5707963267948966 rad pos: 90.5,30.5 parent: 2 type: Transform - - uid: 23833 + - uid: 23840 components: - rot: 1.5707963267948966 rad pos: 90.5,29.5 parent: 2 type: Transform - - uid: 23834 + - uid: 23841 components: - rot: 1.5707963267948966 rad pos: 90.5,28.5 @@ -181903,68 +166998,68 @@ entities: type: Transform - proto: SolarPanelBroken entities: - - uid: 23835 + - uid: 23842 components: - pos: -4.5,-73.5 parent: 2 type: Transform - - uid: 23836 + - uid: 23843 components: - rot: 3.141592653589793 rad pos: 62.5,29.5 parent: 2 type: Transform - - uid: 23837 + - uid: 23844 components: - pos: 46.5,-62.5 parent: 2 type: Transform - proto: SolarTracker entities: - - uid: 23838 + - uid: 23845 components: - pos: 11.5,-105.5 parent: 2 type: Transform - - uid: 23839 + - uid: 23846 components: - pos: 91.5,36.5 parent: 2 type: Transform - proto: SpaceCash entities: - - uid: 23840 + - uid: 23847 components: - rot: 1.5707963267948966 rad pos: 53.352566,29.426033 parent: 2 type: Transform - - uid: 23841 + - uid: 23848 components: - pos: 53.49319,28.910408 parent: 2 type: Transform - - uid: 23842 + - uid: 23849 components: - pos: 53.58694,28.691658 parent: 2 type: Transform - proto: SpaceCash1000 entities: - - uid: 23843 + - uid: 23850 components: - pos: 59.59177,-29.360462 parent: 2 type: Transform - proto: SpaceMedipen entities: - - uid: 23844 + - uid: 23851 components: - rot: -1.5707963267948966 rad pos: 4.2126236,-11.336138 parent: 2 type: Transform - - uid: 23845 + - uid: 23852 components: - rot: -1.5707963267948966 rad pos: -55.678448,-39.42407 @@ -181972,978 +167067,985 @@ entities: type: Transform - proto: SpaceQuartz1 entities: - - uid: 23846 + - uid: 23853 components: - pos: -31.635456,29.591772 parent: 2 type: Transform - proto: SpaceVillainArcadeComputerCircuitboard entities: - - uid: 23847 + - uid: 23854 components: - pos: -12.610414,35.61681 parent: 2 type: Transform - proto: SpawnMobAlexander entities: - - uid: 23848 + - uid: 23855 components: - pos: 3.5,5.5 parent: 2 type: Transform - proto: SpawnMobBear entities: - - uid: 23849 + - uid: 23856 components: - pos: -37.5,63.5 parent: 2 type: Transform - proto: SpawnMobCat entities: - - uid: 23850 + - uid: 23857 components: - pos: -12.5,-38.5 parent: 2 type: Transform - - uid: 23851 + - uid: 23858 components: - pos: 57.5,16.5 parent: 2 type: Transform - proto: SpawnMobCatGeneric entities: - - uid: 23852 + - uid: 23859 components: - pos: -55.5,-64.5 parent: 2 type: Transform - proto: SpawnMobCleanBot entities: - - uid: 23853 + - uid: 23860 components: - pos: 15.5,-42.5 parent: 2 type: Transform - proto: SpawnMobCorgi entities: - - uid: 23854 + - uid: 23861 components: - pos: 21.5,-35.5 parent: 2 type: Transform - proto: SpawnMobFoxRenault entities: - - uid: 23855 + - uid: 23862 components: - pos: 32.5,-28.5 parent: 2 type: Transform - proto: SpawnMobHamsterHamlet entities: - - uid: 23856 + - uid: 23863 components: - pos: 30.5,-23.5 parent: 2 type: Transform - proto: SpawnMobKangaroo entities: - - uid: 23857 + - uid: 23864 components: - pos: -54.5,62.5 parent: 2 type: Transform - proto: SpawnMobKangarooWillow entities: - - uid: 23858 + - uid: 23865 components: - pos: 25.5,-0.5 parent: 2 type: Transform - proto: SpawnMobMcGriff entities: - - uid: 23859 + - uid: 23866 components: - pos: 26.5,23.5 parent: 2 type: Transform - proto: SpawnMobMedibot entities: - - uid: 23860 + - uid: 23867 components: - pos: -8.5,-46.5 parent: 2 type: Transform - proto: SpawnMobMonkeyPunpun entities: - - uid: 23861 + - uid: 23868 components: - pos: 16.5,9.5 parent: 2 type: Transform - proto: SpawnMobMouse entities: - - uid: 23862 + - uid: 23869 components: - pos: 2.5,-69.5 parent: 2 type: Transform - - uid: 23863 + - uid: 23870 components: - pos: -0.5,33.5 parent: 2 type: Transform - - uid: 23864 + - uid: 23871 components: - pos: -28.5,-41.5 parent: 2 type: Transform - - uid: 23865 + - uid: 23872 components: - pos: -29.5,-47.5 parent: 2 type: Transform - - uid: 23866 + - uid: 23873 components: - pos: 49.5,-33.5 parent: 2 type: Transform - - uid: 23867 + - uid: 23874 components: - pos: -7.5,-81.5 parent: 2 type: Transform - - uid: 23868 + - uid: 23875 components: - pos: 6.5,32.5 parent: 2 type: Transform - - uid: 23869 + - uid: 23876 components: - pos: 35.5,22.5 parent: 2 type: Transform - - uid: 23870 + - uid: 23877 components: - pos: -15.5,13.5 parent: 2 type: Transform - - uid: 23871 + - uid: 23878 components: - pos: 52.5,36.5 parent: 2 type: Transform - - uid: 23872 + - uid: 23879 components: - pos: -51.5,-0.5 parent: 2 type: Transform - - uid: 23873 + - uid: 23880 components: - pos: -38.5,-64.5 parent: 2 type: Transform - - uid: 23874 + - uid: 23881 components: - pos: -40.5,-81.5 parent: 2 type: Transform - - uid: 23875 + - uid: 23882 components: - pos: -45.5,-77.5 parent: 2 type: Transform - - uid: 23876 + - uid: 23883 components: - pos: 48.5,-65.5 parent: 2 type: Transform - proto: SpawnMobPossumMorty entities: - - uid: 23877 + - uid: 23884 components: - pos: -15.5,-63.5 parent: 2 type: Transform - proto: SpawnMobRaccoonMorticia entities: - - uid: 23878 + - uid: 23885 components: - pos: -33.5,31.5 parent: 2 type: Transform - proto: SpawnMobShiva entities: - - uid: 23879 + - uid: 23886 components: - pos: 4.5,19.5 parent: 2 type: Transform - proto: SpawnMobSlothPaperwork entities: - - uid: 23880 + - uid: 23887 components: - pos: 12.5,-7.5 parent: 2 type: Transform - proto: SpawnMobSpaceSpider entities: - - uid: 23881 + - uid: 23888 components: - pos: -47.5,68.5 parent: 2 type: Transform - proto: SpawnMobWalter entities: - - uid: 23882 + - uid: 23889 components: - pos: -0.5,-53.5 parent: 2 type: Transform - proto: SpawnPointAssistant entities: - - uid: 23883 + - uid: 23890 components: - pos: -25.5,-22.5 parent: 2 type: Transform - - uid: 23884 + - uid: 23891 components: - pos: -23.5,-22.5 parent: 2 type: Transform - - uid: 23885 + - uid: 23892 components: - pos: 41.5,-72.5 parent: 2 type: Transform - - uid: 23886 + - uid: 23893 components: - pos: 38.5,-72.5 parent: 2 type: Transform - - uid: 23887 + - uid: 23894 components: - pos: 40.5,-55.5 parent: 2 type: Transform - - uid: 23888 + - uid: 23895 components: - pos: -51.5,14.5 parent: 2 type: Transform - - uid: 23889 + - uid: 23896 components: - pos: -45.5,5.5 parent: 2 type: Transform - - uid: 23890 + - uid: 23897 components: - pos: -52.5,7.5 parent: 2 type: Transform - - uid: 23891 + - uid: 23898 components: - pos: 39.5,-54.5 parent: 2 type: Transform - - uid: 23892 + - uid: 23899 components: - pos: -46.5,7.5 parent: 2 type: Transform - - uid: 23893 + - uid: 23900 components: - pos: -19.5,34.5 parent: 2 type: Transform - - uid: 23894 + - uid: 23901 components: - pos: -11.5,32.5 parent: 2 type: Transform - - uid: 23895 + - uid: 23902 components: - pos: -23.5,30.5 parent: 2 type: Transform - - uid: 23896 + - uid: 23903 components: - pos: -42.5,10.5 parent: 2 type: Transform - - uid: 23897 + - uid: 23904 components: - pos: -24.5,-20.5 parent: 2 type: Transform - - uid: 23898 + - uid: 23905 components: - pos: -44.5,3.5 parent: 2 type: Transform - - uid: 23899 + - uid: 23906 components: - pos: 43.5,-72.5 parent: 2 type: Transform - - uid: 23900 + - uid: 23907 components: - pos: 36.5,-72.5 parent: 2 type: Transform - proto: SpawnPointAtmos entities: - - uid: 23901 + - uid: 23908 components: - pos: -39.5,-34.5 parent: 2 type: Transform - - uid: 23902 + - uid: 23909 components: - pos: -37.5,-35.5 parent: 2 type: Transform - - uid: 23903 + - uid: 23910 components: - pos: -36.5,-34.5 parent: 2 type: Transform - proto: SpawnPointBartender entities: - - uid: 23904 + - uid: 23911 components: - pos: 17.5,13.5 parent: 2 type: Transform - - uid: 23905 + - uid: 23912 components: - pos: 17.5,11.5 parent: 2 type: Transform - - uid: 23906 + - uid: 23913 components: - pos: -42.5,-75.5 parent: 2 type: Transform - proto: SpawnPointBotanist entities: - - uid: 23907 + - uid: 23914 components: - pos: -5.5,7.5 parent: 2 type: Transform - - uid: 23908 + - uid: 23915 components: - pos: -7.5,7.5 parent: 2 type: Transform - - uid: 23909 + - uid: 23916 components: - pos: -9.5,7.5 parent: 2 type: Transform - proto: SpawnPointBoxer entities: - - uid: 23910 + - uid: 23917 components: - pos: 22.5,2.5 parent: 2 type: Transform - proto: SpawnPointCaptain entities: - - uid: 23911 + - uid: 23918 components: - pos: 26.5,-22.5 parent: 2 type: Transform - proto: SpawnPointCargoTechnician entities: - - uid: 23912 + - uid: 23919 components: - pos: -46.5,16.5 parent: 2 type: Transform - - uid: 23913 + - uid: 23920 components: - pos: -31.5,24.5 parent: 2 type: Transform - - uid: 23914 + - uid: 23921 components: - pos: -33.5,22.5 parent: 2 type: Transform - - uid: 23915 + - uid: 23922 components: - pos: -31.5,19.5 parent: 2 type: Transform - - uid: 23916 + - uid: 23923 components: - pos: -31.5,21.5 parent: 2 type: Transform - proto: SpawnPointChaplain entities: - - uid: 23917 + - uid: 23924 components: - pos: -30.5,13.5 parent: 2 type: Transform - - uid: 23918 + - uid: 23925 components: - pos: -30.5,14.5 parent: 2 type: Transform - proto: SpawnPointChef entities: - - uid: 23919 + - uid: 23926 components: - pos: 0.5,7.5 parent: 2 type: Transform - - uid: 23920 + - uid: 23927 components: - pos: 5.5,7.5 parent: 2 type: Transform - - uid: 23921 + - uid: 23928 components: - pos: 5.5,9.5 parent: 2 type: Transform - proto: SpawnPointChemist entities: - - uid: 23922 + - uid: 23929 components: - pos: 3.5,-50.5 parent: 2 type: Transform - - uid: 23923 + - uid: 23930 components: - pos: 3.5,-48.5 parent: 2 type: Transform - - uid: 23924 + - uid: 23931 components: - pos: 3.5,-46.5 parent: 2 type: Transform - proto: SpawnPointChiefEngineer entities: - - uid: 23925 + - uid: 23932 components: - pos: -36.5,-17.5 parent: 2 type: Transform - proto: SpawnPointChiefMedicalOfficer entities: - - uid: 23926 + - uid: 23933 components: - pos: -18.5,-55.5 parent: 2 type: Transform - proto: SpawnPointClown entities: - - uid: 23927 + - uid: 12480 components: - - pos: 2.5,-10.5 + - pos: -21.5,38.5 parent: 2 type: Transform - - uid: 30690 + - uid: 23934 components: - - pos: -21.5,38.5 + - pos: 2.5,-10.5 parent: 2 type: Transform - proto: SpawnPointDetective entities: - - uid: 23928 + - uid: 23935 components: - pos: 19.5,-11.5 parent: 2 type: Transform - proto: SpawnPointHeadOfPersonnel entities: - - uid: 23929 + - uid: 23936 components: - pos: 27.5,-35.5 parent: 2 type: Transform - proto: SpawnPointHeadOfSecurity entities: - - uid: 23930 + - uid: 23937 components: - pos: 5.5,21.5 parent: 2 type: Transform - proto: SpawnPointJanitor entities: - - uid: 23931 + - uid: 23938 components: - pos: -11.5,-18.5 parent: 2 type: Transform - - uid: 23932 + - uid: 23939 components: - pos: -10.5,-22.5 parent: 2 type: Transform - - uid: 23933 + - uid: 23940 components: - pos: -12.5,-22.5 parent: 2 type: Transform - proto: SpawnPointLatejoin entities: - - uid: 23934 + - uid: 23941 components: - pos: 39.5,-72.5 parent: 2 type: Transform - - uid: 23935 + - uid: 23942 components: - pos: 40.5,-72.5 parent: 2 type: Transform - - uid: 23936 + - uid: 23943 components: - pos: 42.5,-72.5 parent: 2 type: Transform - - uid: 23937 + - uid: 23944 components: - pos: 37.5,-72.5 parent: 2 type: Transform - proto: SpawnPointLawyer entities: - - uid: 23938 + - uid: 23945 components: - pos: 42.5,-2.5 parent: 2 type: Transform - - uid: 23939 + - uid: 23946 components: - pos: 39.5,-4.5 parent: 2 type: Transform - proto: SpawnPointLibrarian entities: - - uid: 23940 + - uid: 23947 components: - pos: 11.5,-9.5 parent: 2 type: Transform - - uid: 23941 + - uid: 23948 components: - pos: 9.5,-9.5 parent: 2 type: Transform - proto: SpawnPointMedicalDoctor entities: - - uid: 23942 + - uid: 23949 components: - pos: -14.5,-46.5 parent: 2 type: Transform - - uid: 23943 + - uid: 23950 components: - pos: -12.5,-46.5 parent: 2 type: Transform - - uid: 23944 + - uid: 23951 components: - pos: -12.5,-48.5 parent: 2 type: Transform - - uid: 23945 + - uid: 23952 components: - pos: -14.5,-48.5 parent: 2 type: Transform - - uid: 23946 + - uid: 23953 components: - pos: -28.5,-74.5 parent: 2 type: Transform - proto: SpawnPointMedicalIntern entities: - - uid: 23948 + - uid: 23954 + components: + - pos: -15.5,-38.5 + parent: 2 + type: Transform + - uid: 23955 components: - pos: -1.5,-47.5 parent: 2 type: Transform - proto: SpawnPointMime entities: - - uid: 23949 + - uid: 23956 components: - pos: -27.5,45.5 parent: 2 type: Transform - proto: SpawnPointMusician entities: - - uid: 23950 + - uid: 23957 components: - pos: -9.5,-5.5 parent: 2 type: Transform - - uid: 23951 + - uid: 23958 components: - pos: -7.5,-5.5 parent: 2 type: Transform - proto: SpawnPointObserver entities: - - uid: 23952 + - uid: 23959 components: - pos: -4.5,-41.5 parent: 2 type: Transform - proto: SpawnPointParamedic entities: - - uid: 23953 + - uid: 23960 components: - pos: 3.5,-64.5 parent: 2 type: Transform - proto: SpawnPointPsychologist entities: - - uid: 23947 + - uid: 24385 components: - pos: -15.5,-38.5 parent: 2 type: Transform - proto: SpawnPointQuartermaster entities: - - uid: 23954 + - uid: 23961 components: - pos: -31.5,30.5 parent: 2 type: Transform - proto: SpawnPointResearchAssistant entities: - - uid: 23955 + - uid: 23962 components: - pos: 49.5,-40.5 parent: 2 type: Transform - - uid: 23956 + - uid: 23963 components: - pos: 50.5,-43.5 parent: 2 type: Transform - proto: SpawnPointResearchDirector entities: - - uid: 23957 + - uid: 23964 components: - pos: 63.5,-52.5 parent: 2 type: Transform - proto: SpawnPointSalvageSpecialist entities: - - uid: 23958 + - uid: 23965 components: - pos: -37.5,32.5 parent: 2 type: Transform - - uid: 23959 + - uid: 23966 components: - pos: -37.5,30.5 parent: 2 type: Transform - - uid: 23960 + - uid: 23967 components: - pos: -37.5,28.5 parent: 2 type: Transform - proto: SpawnPointScientist entities: - - uid: 23961 + - uid: 23968 components: - pos: 45.5,-46.5 parent: 2 type: Transform - - uid: 23962 + - uid: 23969 components: - pos: 43.5,-46.5 parent: 2 type: Transform - - uid: 23963 + - uid: 23970 components: - pos: 41.5,-46.5 parent: 2 type: Transform - - uid: 23964 + - uid: 23971 components: - pos: 44.5,-47.5 parent: 2 type: Transform - - uid: 23965 + - uid: 23972 components: - pos: 74.5,-34.5 parent: 2 type: Transform - proto: SpawnPointSecurityCadet entities: - - uid: 23966 + - uid: 23973 components: - pos: 24.5,17.5 parent: 2 type: Transform - - uid: 23967 + - uid: 23974 components: - pos: 23.5,18.5 parent: 2 type: Transform - - uid: 23968 + - uid: 23975 components: - pos: 25.5,18.5 parent: 2 type: Transform - proto: SpawnPointSecurityOfficer entities: - - uid: 23969 + - uid: 23976 components: - pos: 1.5,19.5 parent: 2 type: Transform - - uid: 23970 + - uid: 23977 components: - pos: 7.5,16.5 parent: 2 type: Transform - - uid: 23971 + - uid: 23978 components: - pos: 5.5,16.5 parent: 2 type: Transform - - uid: 23972 + - uid: 23979 components: - pos: 0.5,18.5 parent: 2 type: Transform - - uid: 23973 + - uid: 23980 components: - pos: 1.5,17.5 parent: 2 type: Transform - - uid: 23974 + - uid: 23981 components: - pos: 6.5,13.5 parent: 2 type: Transform - proto: SpawnPointServiceWorker entities: - - uid: 23975 + - uid: 23982 components: - pos: -21.5,44.5 parent: 2 type: Transform - - uid: 23976 + - uid: 23983 components: - pos: -10.5,42.5 parent: 2 type: Transform - - uid: 23977 + - uid: 23984 components: - pos: -25.5,11.5 parent: 2 type: Transform - - uid: 23978 + - uid: 23985 components: - pos: -21.5,48.5 parent: 2 type: Transform - proto: SpawnPointStationEngineer entities: - - uid: 23979 + - uid: 23986 components: - pos: -37.5,-10.5 parent: 2 type: Transform - - uid: 23980 + - uid: 23987 components: - pos: -38.5,-12.5 parent: 2 type: Transform - - uid: 23981 + - uid: 23988 components: - pos: -36.5,-12.5 parent: 2 type: Transform - - uid: 23982 + - uid: 23989 components: - pos: -35.5,-10.5 parent: 2 type: Transform - - uid: 23983 + - uid: 23990 components: - pos: -35.5,-7.5 parent: 2 type: Transform - proto: SpawnPointTechnicalAssistant entities: - - uid: 23984 + - uid: 23991 components: - pos: -23.5,-10.5 parent: 2 type: Transform - - uid: 23985 + - uid: 23992 components: - pos: -24.5,-12.5 parent: 2 type: Transform - proto: SpawnPointWarden entities: - - uid: 23986 + - uid: 23993 components: - pos: 23.5,21.5 parent: 2 type: Transform - proto: SpawnVehicleJanicart entities: - - uid: 23987 + - uid: 23994 components: - pos: -12.5,-23.5 parent: 2 type: Transform - proto: SpawnVehicleSecway entities: - - uid: 23988 + - uid: 23995 components: - pos: 10.5,22.5 parent: 2 type: Transform - - uid: 23989 + - uid: 23996 components: - pos: 10.5,21.5 parent: 2 type: Transform - - uid: 23990 + - uid: 23997 components: - pos: 10.5,20.5 parent: 2 type: Transform - proto: SpawnVendingMachineRestockFoodDrink entities: - - uid: 23991 + - uid: 23998 components: - pos: 37.5,-10.5 parent: 2 type: Transform - - uid: 23992 + - uid: 23999 components: - pos: -13.5,-12.5 parent: 2 type: Transform - proto: SprayBottle entities: - - uid: 23993 + - uid: 24000 components: - pos: 53.44381,-51.454926 parent: 2 type: Transform - proto: SprayBottleSpaceCleaner entities: - - uid: 23994 + - uid: 24001 components: - pos: -13.517906,-22.26318 parent: 2 type: Transform - - uid: 23995 + - uid: 24002 components: - pos: -13.721031,-22.20068 parent: 2 type: Transform - - uid: 23996 + - uid: 24003 components: - pos: -13.62392,-22.29671 parent: 2 type: Transform - - uid: 23997 + - uid: 24004 components: - pos: -13.389545,-22.218584 parent: 2 type: Transform - proto: StasisBed entities: - - uid: 23998 + - uid: 24005 components: - pos: 4.5,-64.5 parent: 2 type: Transform - - uid: 23999 + - uid: 24006 components: - pos: 4.5,-63.5 parent: 2 type: Transform - proto: StationMap entities: - - uid: 24000 + - uid: 24007 components: - pos: 5.5,-24.5 parent: 2 type: Transform - - uid: 24001 + - uid: 24008 components: - pos: 12.5,-40.5 parent: 2 type: Transform - - uid: 24002 + - uid: 24009 components: - pos: -32.5,2.5 parent: 2 type: Transform - - uid: 24003 + - uid: 24010 components: - pos: -0.5,4.5 parent: 2 type: Transform - - uid: 24004 + - uid: 24011 components: - pos: -18.5,52.5 parent: 2 type: Transform - - uid: 24005 + - uid: 24012 components: - pos: 45.5,-70.5 parent: 2 type: Transform - - uid: 24006 + - uid: 24013 components: - pos: 41.5,-40.5 parent: 2 type: Transform - - uid: 24007 + - uid: 24014 components: - pos: 48.5,3.5 parent: 2 type: Transform - - uid: 24008 + - uid: 24015 components: - pos: 20.5,9.5 parent: 2 type: Transform - - uid: 24009 + - uid: 24016 components: - pos: -8.5,47.5 parent: 2 type: Transform - - uid: 24010 + - uid: 24017 components: - pos: 12.5,-79.5 parent: 2 type: Transform - proto: StationMapCircuitboard entities: - - uid: 24011 + - uid: 24018 components: - pos: -8.453156,37.616253 parent: 2 type: Transform + - nextSound: 241.6191883 + type: EmitSoundOnCollide - proto: SteelOre1 entities: - - uid: 24012 + - uid: 24019 components: - rot: 3.141592653589793 rad pos: 20.04077,49.432205 @@ -182951,13 +168053,13 @@ entities: type: Transform - proto: Stool entities: - - uid: 24013 + - uid: 24020 components: - rot: -1.5707963267948966 rad pos: 9.5,5.5 parent: 2 type: Transform - - uid: 24014 + - uid: 24021 components: - rot: -1.5707963267948966 rad pos: -33.5,13.5 @@ -182965,18 +168067,18 @@ entities: type: Transform - proto: StoolBar entities: - - uid: 24015 + - uid: 24022 components: - pos: -0.5,-1.5 parent: 2 type: Transform - - uid: 24016 + - uid: 24023 components: - rot: 1.5707963267948966 rad pos: 14.5,10.5 parent: 2 type: Transform - - uid: 24017 + - uid: 24024 components: - name: stool type: MetaData @@ -182984,14 +168086,14 @@ entities: pos: -6.5,3.5 parent: 2 type: Transform - - uid: 24018 + - uid: 24025 components: - name: stool type: MetaData - pos: 0.5,-1.5 parent: 2 type: Transform - - uid: 24019 + - uid: 24026 components: - name: stool type: MetaData @@ -182999,31 +168101,31 @@ entities: pos: 1.5,3.5 parent: 2 type: Transform - - uid: 24020 + - uid: 24027 components: - rot: 1.5707963267948966 rad pos: 14.5,13.5 parent: 2 type: Transform - - uid: 24021 + - uid: 24028 components: - rot: 1.5707963267948966 rad pos: 14.5,12.5 parent: 2 type: Transform - - uid: 24022 + - uid: 24029 components: - pos: 5.5,12.5 parent: 2 type: Transform - - uid: 24023 + - uid: 24030 components: - name: stool type: MetaData - pos: 1.5,-1.5 parent: 2 type: Transform - - uid: 24024 + - uid: 24031 components: - name: stool type: MetaData @@ -183031,7 +168133,7 @@ entities: pos: 0.5,3.5 parent: 2 type: Transform - - uid: 24025 + - uid: 24032 components: - name: stool type: MetaData @@ -183039,78 +168141,78 @@ entities: pos: 2.5,3.5 parent: 2 type: Transform - - uid: 24026 + - uid: 24033 components: - rot: 1.5707963267948966 rad pos: 14.5,11.5 parent: 2 type: Transform - - uid: 24027 + - uid: 24034 components: - rot: -1.5707963267948966 rad pos: 8.5,9.5 parent: 2 type: Transform - - uid: 24028 + - uid: 24035 components: - rot: -1.5707963267948966 rad pos: 8.5,8.5 parent: 2 type: Transform - - uid: 24029 + - uid: 24036 components: - rot: -1.5707963267948966 rad pos: 8.5,7.5 parent: 2 type: Transform - - uid: 24030 + - uid: 24037 components: - rot: 1.5707963267948966 rad pos: 14.5,9.5 parent: 2 type: Transform - - uid: 24031 + - uid: 24038 components: - rot: 3.141592653589793 rad pos: -40.5,-79.5 parent: 2 type: Transform - - uid: 24032 + - uid: 24039 components: - rot: 3.141592653589793 rad pos: -41.5,-79.5 parent: 2 type: Transform - - uid: 24033 + - uid: 24040 components: - rot: 3.141592653589793 rad pos: -42.5,-79.5 parent: 2 type: Transform - - uid: 24034 + - uid: 24041 components: - rot: 3.141592653589793 rad pos: -43.5,-79.5 parent: 2 type: Transform - - uid: 24035 + - uid: 24042 components: - rot: -1.5707963267948966 rad pos: -39.5,-78.5 parent: 2 type: Transform - - uid: 24036 + - uid: 24043 components: - rot: 1.5707963267948966 rad pos: -44.5,-78.5 parent: 2 type: Transform - - uid: 24037 + - uid: 24044 components: - pos: 4.5,12.5 parent: 2 type: Transform - - uid: 24038 + - uid: 24045 components: - name: stool type: MetaData @@ -183118,7 +168220,7 @@ entities: pos: -7.5,3.5 parent: 2 type: Transform - - uid: 24039 + - uid: 24046 components: - name: stool type: MetaData @@ -183126,50 +168228,50 @@ entities: pos: -8.5,3.5 parent: 2 type: Transform - - uid: 24040 + - uid: 24047 components: - rot: 3.141592653589793 rad pos: 39.5,48.5 parent: 2 type: Transform - - uid: 24041 + - uid: 24048 components: - rot: 3.141592653589793 rad pos: 38.5,48.5 parent: 2 type: Transform - - uid: 24042 + - uid: 24049 components: - rot: 3.141592653589793 rad pos: 37.5,48.5 parent: 2 type: Transform - - uid: 24043 + - uid: 24050 components: - rot: 3.141592653589793 rad pos: 36.5,48.5 parent: 2 type: Transform - - uid: 24044 + - uid: 24051 components: - name: donk stool type: MetaData - pos: -9.5,44.5 parent: 2 type: Transform - - uid: 24045 + - uid: 24052 components: - name: donk stool type: MetaData - pos: -10.5,44.5 parent: 2 type: Transform - - uid: 24046 + - uid: 24053 components: - pos: -30.5,-96.5 parent: 2 type: Transform - - uid: 24047 + - uid: 24054 components: - name: donk stool type: MetaData @@ -183178,441 +168280,441 @@ entities: type: Transform - proto: StorageCanister entities: - - uid: 24048 + - uid: 24055 components: - pos: 45.5,-54.5 parent: 2 type: Transform - - uid: 24049 + - uid: 24056 components: - pos: 45.5,-58.5 parent: 2 type: Transform - - uid: 24050 + - uid: 24057 components: - pos: -16.5,-10.5 parent: 2 type: Transform - - uid: 24051 + - uid: 24058 components: - pos: -38.5,-51.5 parent: 2 type: Transform - - uid: 24052 + - uid: 24059 components: - pos: -38.5,-50.5 parent: 2 type: Transform - - uid: 24053 + - uid: 24060 components: - pos: -38.5,-49.5 parent: 2 type: Transform - - uid: 24054 + - uid: 24061 components: - pos: -34.5,-39.5 parent: 2 type: Transform - - uid: 24055 + - uid: 24062 components: - pos: -35.5,-39.5 parent: 2 type: Transform - - uid: 24056 + - uid: 24063 components: - pos: -50.5,-44.5 parent: 2 type: Transform - - uid: 24057 + - uid: 24064 components: - pos: -50.5,-42.5 parent: 2 type: Transform - - uid: 24058 + - uid: 24065 components: - pos: 53.5,-37.5 parent: 2 type: Transform - - uid: 24059 + - uid: 24066 components: - pos: -24.5,-55.5 parent: 2 type: Transform - - uid: 24060 + - uid: 24067 components: - pos: -26.5,-55.5 parent: 2 type: Transform - - uid: 24061 + - uid: 24068 components: - pos: 51.5,-35.5 parent: 2 type: Transform - - uid: 24062 + - uid: 24069 components: - pos: -50.5,-35.5 parent: 2 type: Transform - - uid: 24063 + - uid: 24070 components: - pos: -50.5,-34.5 parent: 2 type: Transform - - uid: 24064 + - uid: 24071 components: - pos: -35.5,-38.5 parent: 2 type: Transform - proto: Stunbaton entities: - - uid: 24065 + - uid: 24072 components: - pos: 8.313212,12.723815 parent: 2 type: Transform - - uid: 24066 + - uid: 24073 components: - pos: 8.262076,12.8623 parent: 2 type: Transform - nextAttack: 360.2704274 type: MeleeWeapon - - uid: 24067 + - uid: 24074 components: - pos: -16.522211,23.632349 parent: 2 type: Transform - proto: SubstationBasic entities: - - uid: 24068 + - uid: 24075 components: - pos: -34.5,-3.5 parent: 2 type: Transform - - uid: 24069 + - uid: 24076 components: - pos: -12.5,-69.5 parent: 2 type: Transform - - uid: 24070 + - uid: 24077 components: - pos: 15.5,-58.5 parent: 2 type: Transform - - uid: 24071 + - uid: 24078 components: - pos: 30.5,-2.5 parent: 2 type: Transform - - uid: 24072 + - uid: 24079 components: - pos: -8.5,-19.5 parent: 2 type: Transform - - uid: 24073 + - uid: 24080 components: - pos: 19.5,-27.5 parent: 2 type: Transform - - uid: 24074 + - uid: 24081 components: - pos: 38.5,-28.5 parent: 2 type: Transform - - uid: 24075 + - uid: 24082 components: - pos: 69.5,-59.5 parent: 2 type: Transform - - uid: 24076 + - uid: 24083 components: - pos: 33.5,25.5 parent: 2 type: Transform - - uid: 24077 + - uid: 24084 components: - pos: 63.5,7.5 parent: 2 type: Transform - - uid: 24078 + - uid: 24085 components: - pos: 47.5,-3.5 parent: 2 type: Transform - - uid: 24079 + - uid: 24086 components: - pos: 48.5,-5.5 parent: 2 type: Transform - - uid: 24080 + - uid: 24087 components: - pos: 38.5,-46.5 parent: 2 type: Transform - - uid: 24081 + - uid: 24088 components: - pos: -16.5,-0.5 parent: 2 type: Transform - - uid: 24082 + - uid: 24089 components: - pos: -28.5,-23.5 parent: 2 type: Transform - - uid: 24083 + - uid: 24090 components: - pos: 43.5,-58.5 parent: 2 type: Transform - - uid: 24084 + - uid: 24091 components: - pos: -50.5,-8.5 parent: 2 type: Transform - - uid: 24085 + - uid: 24092 components: - pos: -57.5,-20.5 parent: 2 type: Transform - - uid: 24086 + - uid: 24093 components: - pos: -27.5,-37.5 parent: 2 type: Transform - - uid: 24087 + - uid: 24094 components: - pos: -31.5,-54.5 parent: 2 type: Transform - - uid: 24088 + - uid: 24095 components: - pos: -55.5,-89.5 parent: 2 type: Transform - - uid: 24089 + - uid: 24096 components: - pos: -8.5,35.5 parent: 2 type: Transform - - uid: 24090 + - uid: 24097 components: - pos: -23.5,15.5 parent: 2 type: Transform - - uid: 24091 + - uid: 24098 components: - pos: 4.5,-19.5 parent: 2 type: Transform - - uid: 24092 + - uid: 24099 components: - pos: 11.5,-45.5 parent: 2 type: Transform - - uid: 24093 + - uid: 24100 components: - pos: 11.5,-47.5 parent: 2 type: Transform - - uid: 24094 + - uid: 24101 components: - pos: 50.5,29.5 parent: 2 type: Transform - - uid: 24095 + - uid: 24102 components: - pos: -10.5,62.5 parent: 2 type: Transform - - uid: 24096 + - uid: 24103 components: - pos: -71.5,-41.5 parent: 2 type: Transform - - uid: 24097 + - uid: 24104 components: - pos: 8.5,-16.5 parent: 2 type: Transform - proto: SuitStorageAtmos entities: - - uid: 24098 + - uid: 24105 components: - pos: -40.5,-36.5 parent: 2 type: Transform - - uid: 24099 + - uid: 24106 components: - pos: -36.5,-36.5 parent: 2 type: Transform - - uid: 24100 + - uid: 24107 components: - pos: -38.5,-36.5 parent: 2 type: Transform - proto: SuitStorageCaptain entities: - - uid: 24101 + - uid: 24108 components: - pos: 28.5,-29.5 parent: 2 type: Transform - proto: SuitStorageCE entities: - - uid: 24102 + - uid: 24109 components: - pos: -37.5,-16.5 parent: 2 type: Transform - proto: SuitStorageCMO entities: - - uid: 24103 + - uid: 24110 components: - pos: -19.5,-54.5 parent: 2 type: Transform - proto: SuitStorageEngi entities: - - uid: 24104 + - uid: 24111 components: - pos: -34.5,-5.5 parent: 2 type: Transform - - uid: 24105 + - uid: 24112 components: - pos: -34.5,-7.5 parent: 2 type: Transform - - uid: 24106 + - uid: 24113 components: - pos: -34.5,-8.5 parent: 2 type: Transform - - uid: 24107 + - uid: 24114 components: - pos: -34.5,-6.5 parent: 2 type: Transform - - uid: 24108 + - uid: 24115 components: - pos: -55.5,-15.5 parent: 2 type: Transform - proto: SuitStorageEVA entities: - - uid: 24109 + - uid: 24116 components: - pos: 29.5,-10.5 parent: 2 type: Transform - - uid: 24110 + - uid: 24117 components: - pos: 29.5,-12.5 parent: 2 type: Transform - - uid: 24111 + - uid: 24118 components: - pos: 33.5,-10.5 parent: 2 type: Transform - - uid: 24112 + - uid: 24119 components: - pos: 31.5,-12.5 parent: 2 type: Transform - - uid: 24113 + - uid: 24120 components: - pos: 31.5,-10.5 parent: 2 type: Transform - - uid: 24114 + - uid: 24121 components: - pos: 33.5,-12.5 parent: 2 type: Transform - proto: SuitStorageEVAPrisoner entities: - - uid: 24115 + - uid: 24122 components: - pos: 63.5,4.5 parent: 2 type: Transform - - uid: 24116 + - uid: 24123 components: - pos: 63.5,5.5 parent: 2 type: Transform - proto: SuitStorageHOS entities: - - uid: 24117 + - uid: 24124 components: - pos: 5.5,22.5 parent: 2 type: Transform - proto: SuitStorageRD entities: - - uid: 24118 + - uid: 24125 components: - pos: 65.5,-52.5 parent: 2 type: Transform - proto: SuitStorageSalv entities: - - uid: 24119 + - uid: 24126 components: - pos: -36.5,33.5 parent: 2 type: Transform - - uid: 24120 + - uid: 24127 components: - pos: -36.5,29.5 parent: 2 type: Transform - - uid: 24121 + - uid: 24128 components: - pos: -36.5,31.5 parent: 2 type: Transform - proto: SuitStorageSec entities: - - uid: 24122 + - uid: 24129 components: - pos: 32.5,29.5 parent: 2 type: Transform - - uid: 24123 + - uid: 24130 components: - pos: 26.5,27.5 parent: 2 type: Transform - - uid: 24124 + - uid: 24131 components: - pos: 32.5,27.5 parent: 2 type: Transform - - uid: 24125 + - uid: 24132 components: - pos: 26.5,29.5 parent: 2 type: Transform - proto: SuitStorageWarden entities: - - uid: 24126 + - uid: 24133 components: - pos: 20.5,20.5 parent: 2 type: Transform - proto: SuperMatterBinStockPart entities: - - uid: 24127 + - uid: 24134 components: - pos: -50.47893,-29.292162 parent: 2 type: Transform - proto: SurveillanceCameraCommand entities: - - uid: 24128 + - uid: 24135 components: - pos: -34.5,-18.5 parent: 2 @@ -183622,7 +168724,7 @@ entities: nameSet: True id: chief engineer type: SurveillanceCamera - - uid: 24129 + - uid: 24136 components: - rot: 1.5707963267948966 rad pos: -17.5,-55.5 @@ -183633,7 +168735,7 @@ entities: nameSet: True id: chief medical officer type: SurveillanceCamera - - uid: 24130 + - uid: 24137 components: - rot: -1.5707963267948966 rad pos: 4.5,21.5 @@ -183644,7 +168746,7 @@ entities: nameSet: True id: 'head of security ' type: SurveillanceCamera - - uid: 24131 + - uid: 24138 components: - rot: 3.141592653589793 rad pos: 46.5,-27.5 @@ -183655,7 +168757,7 @@ entities: nameSet: True id: vault b type: SurveillanceCamera - - uid: 24132 + - uid: 24139 components: - rot: 3.141592653589793 rad pos: 46.5,-21.5 @@ -183666,7 +168768,7 @@ entities: nameSet: True id: vault a type: SurveillanceCamera - - uid: 24133 + - uid: 24140 components: - pos: 31.5,-22.5 parent: 2 @@ -183676,7 +168778,7 @@ entities: nameSet: True id: bridge type: SurveillanceCamera - - uid: 24134 + - uid: 24141 components: - rot: 3.141592653589793 rad pos: 64.5,-51.5 @@ -183687,7 +168789,7 @@ entities: nameSet: True id: research director type: SurveillanceCamera - - uid: 24135 + - uid: 24142 components: - rot: -1.5707963267948966 rad pos: 31.5,-10.5 @@ -183698,7 +168800,7 @@ entities: nameSet: True id: EVA closet type: SurveillanceCamera - - uid: 24136 + - uid: 24143 components: - pos: 28.5,-43.5 parent: 2 @@ -183710,7 +168812,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraEngineering entities: - - uid: 24137 + - uid: 24144 components: - rot: -1.5707963267948966 rad pos: -44.5,-41.5 @@ -183721,7 +168823,7 @@ entities: nameSet: True id: atmospherics type: SurveillanceCamera - - uid: 24138 + - uid: 24145 components: - rot: 3.141592653589793 rad pos: -29.5,-16.5 @@ -183732,7 +168834,7 @@ entities: nameSet: True id: engineering main corridor type: SurveillanceCamera - - uid: 24139 + - uid: 24146 components: - pos: -38.5,-13.5 parent: 2 @@ -183742,7 +168844,7 @@ entities: nameSet: True id: engineer canteen type: SurveillanceCamera - - uid: 24140 + - uid: 24147 components: - rot: -1.5707963267948966 rad pos: -48.5,-9.5 @@ -183753,7 +168855,7 @@ entities: nameSet: True id: 'AME ' type: SurveillanceCamera - - uid: 24141 + - uid: 24148 components: - pos: -52.5,-20.5 parent: 2 @@ -183763,7 +168865,7 @@ entities: nameSet: True id: engineering console room type: SurveillanceCamera - - uid: 24142 + - uid: 24149 components: - pos: -67.5,-28.5 parent: 2 @@ -183773,7 +168875,7 @@ entities: nameSet: True id: particle accelerator type: SurveillanceCamera - - uid: 24143 + - uid: 24150 components: - rot: -1.5707963267948966 rad pos: -22.5,4.5 @@ -183786,7 +168888,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraGeneral entities: - - uid: 24144 + - uid: 24151 components: - pos: -6.5,-27.5 parent: 2 @@ -183796,7 +168898,7 @@ entities: nameSet: True id: janitorial closet type: SurveillanceCamera - - uid: 24145 + - uid: 24152 components: - rot: 1.5707963267948966 rad pos: -22.5,-23.5 @@ -183807,7 +168909,7 @@ entities: nameSet: True id: north youtool type: SurveillanceCamera - - uid: 24146 + - uid: 24153 components: - rot: 3.141592653589793 rad pos: 8.5,3.5 @@ -183818,7 +168920,7 @@ entities: nameSet: True id: food court type: SurveillanceCamera - - uid: 24147 + - uid: 24154 components: - rot: 1.5707963267948966 rad pos: 41.5,-56.5 @@ -183829,7 +168931,7 @@ entities: nameSet: True id: south youtool type: SurveillanceCamera - - uid: 24148 + - uid: 24155 components: - pos: 37.5,-73.5 parent: 2 @@ -183839,7 +168941,7 @@ entities: nameSet: True id: arrivals type: SurveillanceCamera - - uid: 24149 + - uid: 24156 components: - rot: -1.5707963267948966 rad pos: 60.5,-7.5 @@ -183850,7 +168952,7 @@ entities: nameSet: True id: evac type: SurveillanceCamera - - uid: 24150 + - uid: 24157 components: - rot: 3.141592653589793 rad pos: -12.5,-8.5 @@ -183863,7 +168965,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraMedical entities: - - uid: 24151 + - uid: 24158 components: - rot: -1.5707963267948966 rad pos: -20.5,-61.5 @@ -183874,7 +168976,7 @@ entities: nameSet: True id: medbay corridor type: SurveillanceCamera - - uid: 24152 + - uid: 24159 components: - rot: 1.5707963267948966 rad pos: 0.5,-47.5 @@ -183885,7 +168987,7 @@ entities: nameSet: True id: medbay reception type: SurveillanceCamera - - uid: 24153 + - uid: 24160 components: - pos: -10.5,-61.5 parent: 2 @@ -183895,7 +168997,7 @@ entities: nameSet: True id: medical doctors corridor type: SurveillanceCamera - - uid: 24154 + - uid: 24161 components: - rot: 3.141592653589793 rad pos: -6.5,-52.5 @@ -183906,7 +169008,7 @@ entities: nameSet: True id: medical beds type: SurveillanceCamera - - uid: 24155 + - uid: 24162 components: - rot: -1.5707963267948966 rad pos: -25.5,-70.5 @@ -183917,7 +169019,7 @@ entities: nameSet: True id: virology reception type: SurveillanceCamera - - uid: 24156 + - uid: 24163 components: - pos: -26.5,-80.5 parent: 2 @@ -183927,7 +169029,7 @@ entities: nameSet: True id: virology treatment type: SurveillanceCamera - - uid: 24157 + - uid: 24164 components: - rot: -1.5707963267948966 rad pos: -23.5,-83.5 @@ -183940,63 +169042,63 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraRouterCommand entities: - - uid: 24158 + - uid: 24165 components: - pos: -18.5,-48.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterEngineering entities: - - uid: 24159 + - uid: 24166 components: - pos: -21.5,-47.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterGeneral entities: - - uid: 24160 + - uid: 24167 components: - pos: -18.5,-45.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterMedical entities: - - uid: 24161 + - uid: 24168 components: - pos: -18.5,-46.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterScience entities: - - uid: 24162 + - uid: 24169 components: - pos: -21.5,-45.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterSecurity entities: - - uid: 24163 + - uid: 24170 components: - pos: -21.5,-48.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterService entities: - - uid: 24164 + - uid: 24171 components: - pos: -18.5,-47.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterSupply entities: - - uid: 24165 + - uid: 24172 components: - pos: -21.5,-46.5 parent: 2 type: Transform - proto: SurveillanceCameraScience entities: - - uid: 24166 + - uid: 24173 components: - rot: 1.5707963267948966 rad pos: 76.5,-48.5 @@ -184007,7 +169109,7 @@ entities: nameSet: True id: robotics type: SurveillanceCamera - - uid: 24167 + - uid: 24174 components: - rot: 1.5707963267948966 rad pos: 46.5,-36.5 @@ -184018,7 +169120,7 @@ entities: nameSet: True id: r&d type: SurveillanceCamera - - uid: 24168 + - uid: 24175 components: - rot: 1.5707963267948966 rad pos: 65.5,-47.5 @@ -184029,7 +169131,7 @@ entities: nameSet: True id: science robotics showcase type: SurveillanceCamera - - uid: 24169 + - uid: 24176 components: - rot: 3.141592653589793 rad pos: 37.5,-41.5 @@ -184040,7 +169142,7 @@ entities: nameSet: True id: science entrance type: SurveillanceCamera - - uid: 24170 + - uid: 24177 components: - rot: 1.5707963267948966 rad pos: 75.5,-38.5 @@ -184053,7 +169155,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraSecurity entities: - - uid: 24171 + - uid: 24178 components: - rot: 1.5707963267948966 rad pos: 23.5,34.5 @@ -184064,7 +169166,7 @@ entities: nameSet: True id: space armory type: SurveillanceCamera - - uid: 24172 + - uid: 24179 components: - rot: 1.5707963267948966 rad pos: 50.5,14.5 @@ -184075,7 +169177,7 @@ entities: nameSet: True id: open prison north west type: SurveillanceCamera - - uid: 24173 + - uid: 24180 components: - rot: -1.5707963267948966 rad pos: 56.5,10.5 @@ -184086,7 +169188,7 @@ entities: nameSet: True id: open prison south type: SurveillanceCamera - - uid: 24174 + - uid: 24181 components: - rot: 1.5707963267948966 rad pos: 42.5,9.5 @@ -184097,7 +169199,7 @@ entities: nameSet: True id: brig south type: SurveillanceCamera - - uid: 24175 + - uid: 24182 components: - rot: 3.141592653589793 rad pos: 33.5,16.5 @@ -184108,7 +169210,7 @@ entities: nameSet: True id: brig type: SurveillanceCamera - - uid: 24176 + - uid: 24183 components: - rot: 1.5707963267948966 rad pos: 32.5,31.5 @@ -184119,7 +169221,7 @@ entities: nameSet: True id: armory type: SurveillanceCamera - - uid: 24177 + - uid: 24184 components: - rot: 3.141592653589793 rad pos: 8.5,17.5 @@ -184130,7 +169232,7 @@ entities: nameSet: True id: security canteen type: SurveillanceCamera - - uid: 24178 + - uid: 24185 components: - rot: -1.5707963267948966 rad pos: 17.5,-11.5 @@ -184143,7 +169245,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraService entities: - - uid: 24179 + - uid: 24186 components: - rot: 1.5707963267948966 rad pos: 12.5,-6.5 @@ -184154,7 +169256,7 @@ entities: nameSet: True id: library type: SurveillanceCamera - - uid: 24180 + - uid: 24187 components: - rot: 1.5707963267948966 rad pos: 4.5,-6.5 @@ -184165,7 +169267,7 @@ entities: nameSet: True id: ice cream parlor type: SurveillanceCamera - - uid: 24181 + - uid: 24188 components: - rot: 1.5707963267948966 rad pos: 6.5,6.5 @@ -184176,7 +169278,7 @@ entities: nameSet: True id: Kitchen type: SurveillanceCamera - - uid: 24182 + - uid: 24189 components: - rot: 1.5707963267948966 rad pos: 14.5,8.5 @@ -184187,7 +169289,7 @@ entities: nameSet: True id: bar type: SurveillanceCamera - - uid: 24183 + - uid: 24190 components: - rot: 3.141592653589793 rad pos: -7.5,11.5 @@ -184200,7 +169302,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraSupply entities: - - uid: 24184 + - uid: 24191 components: - pos: -43.5,18.5 parent: 2 @@ -184210,7 +169312,7 @@ entities: nameSet: True id: cargo dock type: SurveillanceCamera - - uid: 24185 + - uid: 24192 components: - rot: 1.5707963267948966 rad pos: -30.5,22.5 @@ -184221,7 +169323,7 @@ entities: nameSet: True id: cargo type: SurveillanceCamera - - uid: 24186 + - uid: 24193 components: - pos: -43.5,28.5 parent: 2 @@ -184231,7 +169333,7 @@ entities: nameSet: True id: salvage magnet type: SurveillanceCamera - - uid: 24187 + - uid: 24194 components: - rot: 3.141592653589793 rad pos: -44.5,16.5 @@ -184244,14 +169346,14 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraWirelessRouterEntertainment entities: - - uid: 24188 + - uid: 24195 components: - pos: -27.5,12.5 parent: 2 type: Transform - proto: SurveillanceWirelessCameraAnchoredConstructed entities: - - uid: 24189 + - uid: 24196 components: - rot: 3.141592653589793 rad pos: -26.5,13.5 @@ -184262,7 +169364,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceWirelessCameraMovableEntertainment entities: - - uid: 24190 + - uid: 24197 components: - pos: -24.5,13.5 parent: 2 @@ -184272,7 +169374,7 @@ entities: nameSet: True id: news camera type: SurveillanceCamera - - uid: 24191 + - uid: 24198 components: - rot: -1.5707963267948966 rad pos: 29.5,3.5 @@ -184280,2108 +169382,2108 @@ entities: type: Transform - proto: SynthesizerInstrument entities: - - uid: 24192 + - uid: 24199 components: - pos: -10.500677,-5.723185 parent: 2 type: Transform - proto: Syringe entities: - - uid: 24193 + - uid: 24200 components: - pos: -25.497284,-79.35806 parent: 2 type: Transform - proto: Table entities: - - uid: 24194 + - uid: 24201 components: - rot: 3.141592653589793 rad pos: -37.5,-7.5 parent: 2 type: Transform - - uid: 24195 + - uid: 24202 components: - rot: 3.141592653589793 rad pos: -36.5,-7.5 parent: 2 type: Transform - - uid: 24196 + - uid: 24203 components: - pos: 0.5,-5.5 parent: 2 type: Transform - - uid: 24197 + - uid: 24204 components: - rot: 1.5707963267948966 rad pos: 2.5,7.5 parent: 2 type: Transform - - uid: 24198 + - uid: 24205 components: - pos: 4.5,15.5 parent: 2 type: Transform - - uid: 24199 + - uid: 24206 components: - rot: 3.141592653589793 rad pos: 18.5,11.5 parent: 2 type: Transform - - uid: 24200 + - uid: 24207 components: - rot: 3.141592653589793 rad pos: 18.5,13.5 parent: 2 type: Transform - - uid: 24201 + - uid: 24208 components: - pos: 7.5,-46.5 parent: 2 type: Transform - - uid: 24202 + - uid: 24209 components: - pos: -25.5,-78.5 parent: 2 type: Transform - - uid: 24203 + - uid: 24210 components: - pos: -19.5,-85.5 parent: 2 type: Transform - - uid: 24204 + - uid: 24211 components: - pos: 1.5,-5.5 parent: 2 type: Transform - - uid: 24205 + - uid: 24212 components: - rot: 1.5707963267948966 rad pos: 2.5,6.5 parent: 2 type: Transform - - uid: 24206 + - uid: 24213 components: - rot: 3.141592653589793 rad pos: 4.5,-50.5 parent: 2 type: Transform - - uid: 24207 + - uid: 24214 components: - pos: 29.5,-39.5 parent: 2 type: Transform - - uid: 24208 + - uid: 24215 components: - pos: 0.5,-4.5 parent: 2 type: Transform - - uid: 24209 + - uid: 24216 components: - pos: 2.5,-5.5 parent: 2 type: Transform - - uid: 24210 + - uid: 24217 components: - rot: -1.5707963267948966 rad pos: 6.5,12.5 parent: 2 type: Transform - - uid: 24211 + - uid: 24218 components: - pos: 10.5,-56.5 parent: 2 type: Transform - - uid: 24212 + - uid: 24219 components: - pos: -28.5,21.5 parent: 2 type: Transform - - uid: 24213 + - uid: 24220 components: - rot: 3.141592653589793 rad pos: 73.5,-38.5 parent: 2 type: Transform - - uid: 24214 + - uid: 24221 components: - rot: 1.5707963267948966 rad pos: 4.5,6.5 parent: 2 type: Transform - - uid: 24215 + - uid: 24222 components: - pos: 3.5,-45.5 parent: 2 type: Transform - - uid: 24216 + - uid: 24223 components: - rot: 3.141592653589793 rad pos: 18.5,12.5 parent: 2 type: Transform - - uid: 24217 + - uid: 24224 components: - pos: 1.5,-4.5 parent: 2 type: Transform - - uid: 24218 + - uid: 24225 components: - pos: 29.5,-34.5 parent: 2 type: Transform - - uid: 24219 + - uid: 24226 components: - rot: -1.5707963267948966 rad pos: -12.5,-56.5 parent: 2 type: Transform - - uid: 24220 + - uid: 24227 components: - rot: -1.5707963267948966 rad pos: -9.5,-56.5 parent: 2 type: Transform - - uid: 24221 + - uid: 24228 components: - rot: -1.5707963267948966 rad pos: -6.5,-56.5 parent: 2 type: Transform - - uid: 24222 + - uid: 24229 components: - rot: -1.5707963267948966 rad pos: -3.5,-56.5 parent: 2 type: Transform - - uid: 24223 + - uid: 24230 components: - rot: -1.5707963267948966 rad pos: -0.5,-56.5 parent: 2 type: Transform - - uid: 24224 + - uid: 24231 components: - rot: -1.5707963267948966 rad pos: 2.5,-56.5 parent: 2 type: Transform - - uid: 24225 + - uid: 24232 components: - rot: 3.141592653589793 rad pos: 64.5,-36.5 parent: 2 type: Transform - - uid: 24226 + - uid: 24233 components: - pos: 10.5,-58.5 parent: 2 type: Transform - - uid: 24227 + - uid: 24234 components: - pos: 10.5,-59.5 parent: 2 type: Transform - - uid: 24228 + - uid: 24235 components: - pos: 10.5,-61.5 parent: 2 type: Transform - - uid: 24229 + - uid: 24236 components: - pos: 10.5,-62.5 parent: 2 type: Transform - - uid: 24230 + - uid: 24237 components: - pos: 9.5,-62.5 parent: 2 type: Transform - - uid: 24231 + - uid: 24238 components: - pos: 8.5,-62.5 parent: 2 type: Transform - - uid: 24232 + - uid: 24239 components: - pos: -13.5,-21.5 parent: 2 type: Transform - - uid: 24233 + - uid: 24240 components: - pos: -13.5,-23.5 parent: 2 type: Transform - - uid: 24234 + - uid: 24241 components: - pos: -12.5,-19.5 parent: 2 type: Transform - - uid: 24235 + - uid: 24242 components: - pos: 3.5,-47.5 parent: 2 type: Transform - - uid: 24236 + - uid: 24243 components: - pos: 8.5,13.5 parent: 2 type: Transform - - uid: 24237 + - uid: 24244 components: - pos: 7.5,12.5 parent: 2 type: Transform - - uid: 24238 + - uid: 24245 components: - pos: -22.5,-78.5 parent: 2 type: Transform - - uid: 24239 + - uid: 24246 components: - pos: -20.5,-78.5 parent: 2 type: Transform - - uid: 24240 + - uid: 24247 components: - pos: 2.5,-4.5 parent: 2 type: Transform - - uid: 24241 + - uid: 24248 components: - rot: 1.5707963267948966 rad pos: 3.5,7.5 parent: 2 type: Transform - - uid: 24242 + - uid: 24249 components: - rot: 1.5707963267948966 rad pos: 3.5,6.5 parent: 2 type: Transform - - uid: 24243 + - uid: 24250 components: - pos: 10.5,-60.5 parent: 2 type: Transform - - uid: 24244 + - uid: 24251 components: - rot: -1.5707963267948966 rad pos: 8.5,14.5 parent: 2 type: Transform - - uid: 24245 + - uid: 24252 components: - pos: 56.5,-41.5 parent: 2 type: Transform - - uid: 24246 + - uid: 24253 components: - pos: -25.5,-79.5 parent: 2 type: Transform - - uid: 24247 + - uid: 24254 components: - pos: -26.5,-20.5 parent: 2 type: Transform - - uid: 24248 + - uid: 24255 components: - pos: 5.5,15.5 parent: 2 type: Transform - - uid: 24249 + - uid: 24256 components: - pos: -62.5,-28.5 parent: 2 type: Transform - - uid: 24250 + - uid: 24257 components: - pos: -43.5,35.5 parent: 2 type: Transform - - uid: 24251 + - uid: 24258 components: - pos: -22.5,-76.5 parent: 2 type: Transform - - uid: 24252 + - uid: 24259 components: - pos: -20.5,-77.5 parent: 2 type: Transform - - uid: 24253 + - uid: 24260 components: - pos: -6.5,-73.5 parent: 2 type: Transform - - uid: 24254 + - uid: 24261 components: - pos: 9.5,-56.5 parent: 2 type: Transform - - uid: 24255 + - uid: 24262 components: - pos: -23.5,-71.5 parent: 2 type: Transform - - uid: 24256 + - uid: 24263 components: - pos: -11.5,-67.5 parent: 2 type: Transform - - uid: 24257 + - uid: 24264 components: - pos: -24.5,-71.5 parent: 2 type: Transform - - uid: 24258 + - uid: 24265 components: - pos: -22.5,-71.5 parent: 2 type: Transform - - uid: 24259 + - uid: 24266 components: - pos: -22.5,-70.5 parent: 2 type: Transform - - uid: 24260 + - uid: 24267 components: - pos: -13.5,-22.5 parent: 2 type: Transform - - uid: 24261 + - uid: 24268 components: - pos: -22.5,-69.5 parent: 2 type: Transform - - uid: 24262 + - uid: 24269 components: - pos: -30.5,-69.5 parent: 2 type: Transform - - uid: 24263 + - uid: 24270 components: - rot: 3.141592653589793 rad pos: -31.5,-69.5 parent: 2 type: Transform - - uid: 24264 + - uid: 24271 components: - pos: -8.5,-15.5 parent: 2 type: Transform - - uid: 24265 + - uid: 24272 components: - pos: 15.5,-64.5 parent: 2 type: Transform - - uid: 24266 + - uid: 24273 components: - pos: 16.5,-64.5 parent: 2 type: Transform - - uid: 24267 + - uid: 24274 components: - rot: 1.5707963267948966 rad pos: 4.5,7.5 parent: 2 type: Transform - - uid: 24268 + - uid: 24275 components: - rot: 3.141592653589793 rad pos: 18.5,11.5 parent: 2 type: Transform - - uid: 24269 + - uid: 24276 components: - pos: 8.5,12.5 parent: 2 type: Transform - - uid: 24270 + - uid: 24277 components: - pos: 9.5,-58.5 parent: 2 type: Transform - - uid: 24271 + - uid: 24278 components: - pos: -7.5,-15.5 parent: 2 type: Transform - - uid: 24272 + - uid: 24279 components: - pos: -19.5,-87.5 parent: 2 type: Transform - - uid: 24273 + - uid: 24280 components: - pos: -19.5,-84.5 parent: 2 type: Transform - - uid: 24274 + - uid: 24281 components: - pos: -26.5,-86.5 parent: 2 type: Transform - - uid: 24275 + - uid: 24282 components: - pos: -26.5,-84.5 parent: 2 type: Transform - - uid: 24276 + - uid: 24283 components: - pos: -25.5,-84.5 parent: 2 type: Transform - - uid: 24277 + - uid: 24284 components: - pos: -24.5,-84.5 parent: 2 type: Transform - - uid: 24278 + - uid: 24285 components: - pos: 12.5,20.5 parent: 2 type: Transform - - uid: 24279 + - uid: 24286 components: - pos: 12.5,19.5 parent: 2 type: Transform - - uid: 24280 + - uid: 24287 components: - pos: 12.5,21.5 parent: 2 type: Transform - - uid: 24281 + - uid: 24288 components: - pos: -10.5,-32.5 parent: 2 type: Transform - - uid: 24282 + - uid: 24289 components: - pos: -9.5,-32.5 parent: 2 type: Transform - - uid: 24283 + - uid: 24290 components: - pos: -8.5,-32.5 parent: 2 type: Transform - - uid: 24284 + - uid: 24291 components: - pos: -8.5,-33.5 parent: 2 type: Transform - - uid: 24285 + - uid: 24292 components: - rot: 3.141592653589793 rad pos: 17.5,22.5 parent: 2 type: Transform - - uid: 24286 + - uid: 24293 components: - pos: 17.5,21.5 parent: 2 type: Transform - - uid: 24287 + - uid: 24294 components: - pos: 16.5,21.5 parent: 2 type: Transform - - uid: 24288 + - uid: 24295 components: - pos: 15.5,21.5 parent: 2 type: Transform - - uid: 24289 + - uid: 24296 components: - rot: 3.141592653589793 rad pos: 15.5,22.5 parent: 2 type: Transform - - uid: 24290 + - uid: 24297 components: - rot: 3.141592653589793 rad pos: 16.5,22.5 parent: 2 type: Transform - - uid: 24291 + - uid: 24298 components: - pos: -9.5,-15.5 parent: 2 type: Transform - - uid: 24292 + - uid: 24299 components: - pos: 53.5,35.5 parent: 2 type: Transform - - uid: 24293 + - uid: 24300 components: - pos: 54.5,35.5 parent: 2 type: Transform - - uid: 24294 + - uid: 24301 components: - rot: 1.5707963267948966 rad pos: 54.5,18.5 parent: 2 type: Transform - - uid: 24295 + - uid: 24302 components: - rot: 1.5707963267948966 rad pos: 53.5,18.5 parent: 2 type: Transform - - uid: 24296 + - uid: 24303 components: - rot: 1.5707963267948966 rad pos: 52.5,18.5 parent: 2 type: Transform - - uid: 24297 + - uid: 24304 components: - pos: 45.5,8.5 parent: 2 type: Transform - - uid: 24298 + - uid: 24305 components: - pos: 62.5,18.5 parent: 2 type: Transform - - uid: 24299 + - uid: 24306 components: - pos: 62.5,15.5 parent: 2 type: Transform - - uid: 24300 + - uid: 24307 components: - pos: 59.5,24.5 parent: 2 type: Transform - - uid: 24301 + - uid: 24308 components: - pos: 47.5,24.5 parent: 2 type: Transform - - uid: 24302 + - uid: 24309 components: - pos: 53.5,24.5 parent: 2 type: Transform - - uid: 24303 + - uid: 24310 components: - pos: 50.5,24.5 parent: 2 type: Transform - - uid: 24304 + - uid: 24311 components: - pos: 56.5,24.5 parent: 2 type: Transform - - uid: 24305 + - uid: 24312 components: - pos: 48.5,18.5 parent: 2 type: Transform - - uid: 24306 + - uid: 24313 components: - pos: 57.5,20.5 parent: 2 type: Transform - - uid: 24307 + - uid: 24314 components: - pos: 57.5,19.5 parent: 2 type: Transform - - uid: 24308 + - uid: 24315 components: - pos: 58.5,19.5 parent: 2 type: Transform - - uid: 24309 + - uid: 24316 components: - pos: 51.5,7.5 parent: 2 type: Transform - - uid: 24310 + - uid: 24317 components: - pos: 52.5,7.5 parent: 2 type: Transform - - uid: 24311 + - uid: 24318 components: - pos: 52.5,6.5 parent: 2 type: Transform - - uid: 24312 + - uid: 24319 components: - pos: 51.5,6.5 parent: 2 type: Transform - - uid: 24313 + - uid: 24320 components: - rot: 3.141592653589793 rad pos: 52.5,11.5 parent: 2 type: Transform - - uid: 24314 + - uid: 24321 components: - pos: 58.5,20.5 parent: 2 type: Transform - - uid: 24315 + - uid: 24322 components: - rot: -1.5707963267948966 rad pos: 47.5,4.5 parent: 2 type: Transform - - uid: 24316 + - uid: 24323 components: - rot: -1.5707963267948966 rad pos: 65.5,-6.5 parent: 2 type: Transform - - uid: 24317 + - uid: 24324 components: - pos: 41.5,-39.5 parent: 2 type: Transform - - uid: 24318 + - uid: 24325 components: - pos: 40.5,-39.5 parent: 2 type: Transform - - uid: 24319 + - uid: 24326 components: - pos: 39.5,-39.5 parent: 2 type: Transform - - uid: 24320 + - uid: 24327 components: - pos: 38.5,-39.5 parent: 2 type: Transform - - uid: 24321 + - uid: 24328 components: - pos: 38.5,-38.5 parent: 2 type: Transform - - uid: 24322 + - uid: 24329 components: - pos: 38.5,-37.5 parent: 2 type: Transform - - uid: 24323 + - uid: 24330 components: - pos: 53.5,-40.5 parent: 2 type: Transform - - uid: 24324 + - uid: 24331 components: - pos: 52.5,-40.5 parent: 2 type: Transform - - uid: 24325 + - uid: 24332 components: - pos: 51.5,-40.5 parent: 2 type: Transform - - uid: 24326 + - uid: 24333 components: - pos: 51.5,-41.5 parent: 2 type: Transform - - uid: 24327 + - uid: 24334 components: - pos: 51.5,-42.5 parent: 2 type: Transform - - uid: 24328 + - uid: 24335 components: - pos: 51.5,-43.5 parent: 2 type: Transform - - uid: 24329 + - uid: 24336 components: - pos: 53.5,-43.5 parent: 2 type: Transform - - uid: 24330 + - uid: 24337 components: - rot: -1.5707963267948966 rad pos: 52.5,-43.5 parent: 2 type: Transform - - uid: 24331 + - uid: 24338 components: - rot: 3.141592653589793 rad pos: 77.5,-46.5 parent: 2 type: Transform - - uid: 24332 + - uid: 24339 components: - pos: 38.5,-36.5 parent: 2 type: Transform - - uid: 24333 + - uid: 24340 components: - pos: 42.5,-35.5 parent: 2 type: Transform - - uid: 24334 + - uid: 24341 components: - pos: 41.5,-35.5 parent: 2 type: Transform - - uid: 24335 + - uid: 24342 components: - pos: 46.5,-49.5 parent: 2 type: Transform - - uid: 24336 + - uid: 24343 components: - pos: 45.5,-49.5 parent: 2 type: Transform - - uid: 24337 + - uid: 24344 components: - pos: 44.5,-49.5 parent: 2 type: Transform - - uid: 24338 + - uid: 24345 components: - pos: 43.5,-49.5 parent: 2 type: Transform - - uid: 24339 + - uid: 24346 components: - pos: 42.5,-49.5 parent: 2 type: Transform - - uid: 24340 + - uid: 24347 components: - pos: 42.5,-48.5 parent: 2 type: Transform - - uid: 24341 + - uid: 24348 components: - pos: 71.5,-43.5 parent: 2 type: Transform - - uid: 24342 + - uid: 24349 components: - pos: 73.5,-44.5 parent: 2 type: Transform - - uid: 24343 + - uid: 24350 components: - rot: -1.5707963267948966 rad pos: 73.5,-47.5 parent: 2 type: Transform - - uid: 24344 + - uid: 24351 components: - pos: 69.5,-49.5 parent: 2 type: Transform - - uid: 24345 + - uid: 24352 components: - rot: -1.5707963267948966 rad pos: 69.5,-47.5 parent: 2 type: Transform - - uid: 24346 + - uid: 24353 components: - pos: 73.5,-43.5 parent: 2 type: Transform - - uid: 24347 + - uid: 24354 components: - pos: 72.5,-43.5 parent: 2 type: Transform - - uid: 24348 + - uid: 24355 components: - pos: -11.5,-48.5 parent: 2 type: Transform - - uid: 24349 + - uid: 24356 components: - pos: -11.5,-49.5 parent: 2 type: Transform - - uid: 24350 + - uid: 24357 components: - pos: -11.5,-50.5 parent: 2 type: Transform - - uid: 24351 + - uid: 24358 components: - pos: -12.5,-50.5 parent: 2 type: Transform - - uid: 24352 + - uid: 24359 components: - pos: 53.5,-51.5 parent: 2 type: Transform - - uid: 24353 + - uid: 24360 components: - pos: 53.5,-52.5 parent: 2 type: Transform - - uid: 24354 + - uid: 24361 components: - pos: 53.5,-53.5 parent: 2 type: Transform - - uid: 24355 + - uid: 24362 components: - rot: 3.141592653589793 rad pos: -24.5,-19.5 parent: 2 type: Transform - - uid: 24356 + - uid: 24363 components: - rot: 3.141592653589793 rad pos: -25.5,-19.5 parent: 2 type: Transform - - uid: 24357 + - uid: 24364 components: - pos: -22.5,-20.5 parent: 2 type: Transform - - uid: 24358 + - uid: 24365 components: - rot: 1.5707963267948966 rad pos: -23.5,-24.5 parent: 2 type: Transform - - uid: 24359 + - uid: 24366 components: - rot: 1.5707963267948966 rad pos: -24.5,-24.5 parent: 2 type: Transform - - uid: 24360 + - uid: 24367 components: - rot: 1.5707963267948966 rad pos: -25.5,-24.5 parent: 2 type: Transform - - uid: 24361 + - uid: 24368 components: - pos: -26.5,-19.5 parent: 2 type: Transform - - uid: 24362 + - uid: 24369 components: - pos: 30.5,-61.5 parent: 2 type: Transform - - uid: 24363 + - uid: 24370 components: - pos: 31.5,-61.5 parent: 2 type: Transform - - uid: 24364 + - uid: 24371 components: - pos: 40.5,-53.5 parent: 2 type: Transform - - uid: 24365 + - uid: 24372 components: - pos: 41.5,-53.5 parent: 2 type: Transform - - uid: 24366 + - uid: 24373 components: - pos: 41.5,-54.5 parent: 2 type: Transform - - uid: 24367 + - uid: 24374 components: - pos: 41.5,-55.5 parent: 2 type: Transform - - uid: 24368 + - uid: 24375 components: - rot: 3.141592653589793 rad pos: 26.5,-68.5 parent: 2 type: Transform - - uid: 24369 + - uid: 24376 components: - rot: -1.5707963267948966 rad pos: -37.5,-17.5 parent: 2 type: Transform - - uid: 24370 + - uid: 24377 components: - pos: -34.5,-13.5 parent: 2 type: Transform - - uid: 24371 + - uid: 24378 components: - pos: -35.5,-13.5 parent: 2 type: Transform - - uid: 24372 + - uid: 24379 components: - pos: -36.5,-8.5 parent: 2 type: Transform - - uid: 24373 + - uid: 24380 components: - pos: -34.5,-12.5 parent: 2 type: Transform - - uid: 24374 + - uid: 24381 components: - pos: -39.5,-16.5 parent: 2 type: Transform - - uid: 24375 + - uid: 24382 components: - pos: -39.5,-17.5 parent: 2 type: Transform - - uid: 24376 + - uid: 24383 components: - pos: -39.5,-18.5 parent: 2 type: Transform - - uid: 24377 + - uid: 24384 components: - pos: -40.5,-18.5 parent: 2 type: Transform - - uid: 24379 + - uid: 24386 components: - pos: -42.5,-18.5 parent: 2 type: Transform - - uid: 24380 + - uid: 24387 components: - pos: -42.5,-17.5 parent: 2 type: Transform - - uid: 24381 + - uid: 24388 components: - pos: -42.5,-16.5 parent: 2 type: Transform - - uid: 24382 + - uid: 24389 components: - rot: 1.5707963267948966 rad pos: -12.5,-5.5 parent: 2 type: Transform - - uid: 24383 + - uid: 24390 components: - pos: -30.5,-37.5 parent: 2 type: Transform - - uid: 24384 + - uid: 24391 components: - rot: 3.141592653589793 rad pos: -52.5,-13.5 parent: 2 type: Transform - - uid: 24385 + - uid: 24392 components: - pos: -57.5,-30.5 parent: 2 type: Transform - - uid: 24386 + - uid: 24393 components: - pos: -62.5,-27.5 parent: 2 type: Transform - - uid: 24387 + - uid: 24394 components: - pos: -67.5,-32.5 parent: 2 type: Transform - - uid: 24388 + - uid: 24395 components: - pos: -66.5,-32.5 parent: 2 type: Transform - - uid: 24389 + - uid: 24396 components: - pos: -65.5,-32.5 parent: 2 type: Transform - - uid: 24390 + - uid: 24397 components: - pos: -35.5,-46.5 parent: 2 type: Transform - - uid: 24391 + - uid: 24398 components: - pos: -35.5,-47.5 parent: 2 type: Transform - - uid: 24392 + - uid: 24399 components: - pos: -35.5,-48.5 parent: 2 type: Transform - - uid: 24393 + - uid: 24400 components: - pos: -35.5,-49.5 parent: 2 type: Transform - - uid: 24394 + - uid: 24401 components: - pos: -35.5,-50.5 parent: 2 type: Transform - - uid: 24395 + - uid: 24402 components: - pos: -51.5,-16.5 parent: 2 type: Transform - - uid: 24396 + - uid: 24403 components: - pos: -50.5,-16.5 parent: 2 type: Transform - - uid: 24397 + - uid: 24404 components: - pos: -50.5,-17.5 parent: 2 type: Transform - - uid: 24398 + - uid: 24405 components: - pos: -52.5,-16.5 parent: 2 type: Transform - - uid: 24399 + - uid: 24406 components: - pos: -52.5,-15.5 parent: 2 type: Transform - - uid: 24400 + - uid: 24407 components: - pos: -52.5,-14.5 parent: 2 type: Transform - - uid: 24401 + - uid: 24408 components: - pos: -52.5,-12.5 parent: 2 type: Transform - - uid: 24402 + - uid: 24409 components: - pos: -70.5,-25.5 parent: 2 type: Transform - - uid: 24403 + - uid: 24410 components: - pos: -70.5,-26.5 parent: 2 type: Transform - - uid: 24404 + - uid: 24411 components: - pos: -71.5,-26.5 parent: 2 type: Transform - - uid: 24405 + - uid: 24412 components: - rot: 3.141592653589793 rad pos: 20.5,-45.5 parent: 2 type: Transform - - uid: 24406 + - uid: 24413 components: - pos: -28.5,-52.5 parent: 2 type: Transform - - uid: 24407 + - uid: 24414 components: - pos: -27.5,-52.5 parent: 2 type: Transform - - uid: 24408 + - uid: 24415 components: - pos: -26.5,-52.5 parent: 2 type: Transform - - uid: 24409 + - uid: 24416 components: - pos: -25.5,-52.5 parent: 2 type: Transform - - uid: 24410 + - uid: 24417 components: - pos: -24.5,-52.5 parent: 2 type: Transform - - uid: 24411 + - uid: 24418 components: - pos: -38.5,-27.5 parent: 2 type: Transform - - uid: 24412 + - uid: 24419 components: - pos: -43.5,-27.5 parent: 2 type: Transform - - uid: 24413 + - uid: 24420 components: - pos: -54.5,-37.5 parent: 2 type: Transform - - uid: 24414 + - uid: 24421 components: - pos: -54.5,-38.5 parent: 2 type: Transform - - uid: 24415 + - uid: 24422 components: - pos: -54.5,-39.5 parent: 2 type: Transform - - uid: 24416 + - uid: 24423 components: - pos: -55.5,-39.5 parent: 2 type: Transform - - uid: 24417 + - uid: 24424 components: - pos: -57.5,-35.5 parent: 2 type: Transform - - uid: 24418 + - uid: 24425 components: - pos: -56.5,-35.5 parent: 2 type: Transform - - uid: 24419 + - uid: 24426 components: - pos: -22.5,-33.5 parent: 2 type: Transform - - uid: 24420 + - uid: 24427 components: - pos: 38.5,-55.5 parent: 2 type: Transform - - uid: 24421 + - uid: 24428 components: - pos: 38.5,-56.5 parent: 2 type: Transform - - uid: 24422 + - uid: 24429 components: - pos: -34.5,17.5 parent: 2 type: Transform - - uid: 24423 + - uid: 24430 components: - pos: -27.5,24.5 parent: 2 type: Transform - - uid: 24424 + - uid: 24431 components: - pos: -22.5,17.5 parent: 2 type: Transform - - uid: 24425 + - uid: 24432 components: - pos: -39.5,25.5 parent: 2 type: Transform - - uid: 24426 + - uid: 24433 components: - pos: -40.5,25.5 parent: 2 type: Transform - - uid: 24427 + - uid: 24434 components: - pos: -43.5,25.5 parent: 2 type: Transform - - uid: 24428 + - uid: 24435 components: - pos: -42.5,25.5 parent: 2 type: Transform - - uid: 24429 + - uid: 24436 components: - rot: 1.5707963267948966 rad pos: 33.5,-14.5 parent: 2 type: Transform - - uid: 24430 + - uid: 24437 components: - pos: -3.5,31.5 parent: 2 type: Transform - - uid: 24431 + - uid: 24438 components: - pos: -3.5,30.5 parent: 2 type: Transform - - uid: 24432 + - uid: 24439 components: - pos: 2.5,23.5 parent: 2 type: Transform - - uid: 24433 + - uid: 24440 components: - pos: 1.5,23.5 parent: 2 type: Transform - - uid: 24434 + - uid: 24441 components: - pos: -8.5,20.5 parent: 2 type: Transform - - uid: 24435 + - uid: 24442 components: - pos: -33.5,17.5 parent: 2 type: Transform - - uid: 24436 + - uid: 24443 components: - pos: -32.5,17.5 parent: 2 type: Transform - - uid: 24437 + - uid: 24444 components: - pos: -34.5,26.5 parent: 2 type: Transform - - uid: 24438 + - uid: 24445 components: - pos: -33.5,29.5 parent: 2 type: Transform - - uid: 24439 + - uid: 24446 components: - rot: -1.5707963267948966 rad pos: -38.5,18.5 parent: 2 type: Transform - - uid: 24440 + - uid: 24447 components: - pos: -32.5,29.5 parent: 2 type: Transform - - uid: 24441 + - uid: 24448 components: - pos: -31.5,29.5 parent: 2 type: Transform - - uid: 24442 + - uid: 24449 components: - rot: -1.5707963267948966 rad pos: -37.5,18.5 parent: 2 type: Transform - - uid: 24443 + - uid: 24450 components: - pos: -42.5,35.5 parent: 2 type: Transform - - uid: 24444 + - uid: 24451 components: - pos: -41.5,35.5 parent: 2 type: Transform - - uid: 24445 + - uid: 24452 components: - pos: -40.5,35.5 parent: 2 type: Transform - - uid: 24446 + - uid: 24453 components: - pos: -40.5,34.5 parent: 2 type: Transform - - uid: 24447 + - uid: 24454 components: - pos: -40.5,33.5 parent: 2 type: Transform - - uid: 24448 + - uid: 24455 components: - pos: -40.5,32.5 parent: 2 type: Transform - - uid: 24449 + - uid: 24456 components: - pos: -38.5,28.5 parent: 2 type: Transform - - uid: 24450 + - uid: 24457 components: - pos: -38.5,27.5 parent: 2 type: Transform - - uid: 24451 + - uid: 24458 components: - pos: -37.5,27.5 parent: 2 type: Transform - - uid: 24452 + - uid: 24459 components: - pos: -36.5,27.5 parent: 2 type: Transform - - uid: 24453 + - uid: 24460 components: - rot: 3.141592653589793 rad pos: -22.5,11.5 parent: 2 type: Transform - - uid: 24454 + - uid: 24461 components: - rot: 3.141592653589793 rad pos: -23.5,11.5 parent: 2 type: Transform - - uid: 24455 + - uid: 24462 components: - rot: 3.141592653589793 rad pos: -24.5,11.5 parent: 2 type: Transform - - uid: 24456 + - uid: 24463 components: - pos: -15.5,23.5 parent: 2 type: Transform - - uid: 24457 + - uid: 24464 components: - pos: -4.5,19.5 parent: 2 type: Transform - - uid: 24458 + - uid: 24465 components: - pos: -5.5,19.5 parent: 2 type: Transform - - uid: 24459 + - uid: 24466 components: - pos: -16.5,21.5 parent: 2 type: Transform - - uid: 24460 + - uid: 24467 components: - pos: -16.5,20.5 parent: 2 type: Transform - - uid: 24461 + - uid: 24468 components: - pos: -15.5,21.5 parent: 2 type: Transform - - uid: 24462 + - uid: 24469 components: - pos: -48.5,26.5 parent: 2 type: Transform - - uid: 24463 + - uid: 24470 components: - pos: -47.5,26.5 parent: 2 type: Transform - - uid: 24464 + - uid: 24471 components: - pos: -28.5,8.5 parent: 2 type: Transform - - uid: 24465 + - uid: 24472 components: - pos: -29.5,8.5 parent: 2 type: Transform - - uid: 24466 + - uid: 24473 components: - pos: -54.5,0.5 parent: 2 type: Transform - - uid: 24467 + - uid: 24474 components: - pos: 54.5,12.5 parent: 2 type: Transform - - uid: 24468 + - uid: 24475 components: - pos: -25.5,-67.5 parent: 2 type: Transform - - uid: 24469 + - uid: 24476 components: - rot: 1.5707963267948966 rad pos: -12.5,-6.5 parent: 2 type: Transform - - uid: 24470 + - uid: 24477 components: - pos: -34.5,20.5 parent: 2 type: Transform - - uid: 24471 + - uid: 24478 components: - rot: -1.5707963267948966 rad pos: 2.5,-65.5 parent: 2 type: Transform - - uid: 24472 + - uid: 24479 components: - pos: -58.5,-27.5 parent: 2 type: Transform - - uid: 24473 + - uid: 24480 components: - pos: -57.5,-27.5 parent: 2 type: Transform - - uid: 24474 + - uid: 24481 components: - pos: -56.5,-27.5 parent: 2 type: Transform - - uid: 24475 + - uid: 24482 components: - pos: 70.5,-43.5 parent: 2 type: Transform - - uid: 24476 + - uid: 24483 components: - pos: 7.5,-45.5 parent: 2 type: Transform - - uid: 24477 + - uid: 24484 components: - rot: 3.141592653589793 rad pos: 34.5,-35.5 parent: 2 type: Transform - - uid: 24478 + - uid: 24485 components: - pos: 41.5,-58.5 parent: 2 type: Transform - - uid: 24479 + - uid: 24486 components: - pos: 77.5,-47.5 parent: 2 type: Transform - - uid: 24480 + - uid: 24487 components: - rot: 1.5707963267948966 rad pos: -9.5,-65.5 parent: 2 type: Transform - - uid: 24481 + - uid: 24488 components: - pos: -2.5,-33.5 parent: 2 type: Transform - - uid: 24482 + - uid: 24489 components: - pos: 11.5,-66.5 parent: 2 type: Transform - - uid: 24483 + - uid: 24490 components: - pos: 12.5,-66.5 parent: 2 type: Transform - - uid: 24484 + - uid: 24491 components: - pos: 7.5,-16.5 parent: 2 type: Transform - - uid: 24485 + - uid: 24492 components: - pos: -7.5,-30.5 parent: 2 type: Transform - - uid: 24486 + - uid: 24493 components: - pos: -24.5,-6.5 parent: 2 type: Transform - - uid: 24487 + - uid: 24494 components: - pos: 18.5,-30.5 parent: 2 type: Transform - - uid: 24488 + - uid: 24495 components: - rot: 3.141592653589793 rad pos: -29.5,-69.5 parent: 2 type: Transform - - uid: 24489 + - uid: 24496 components: - pos: 53.5,60.5 parent: 2 type: Transform - - uid: 24490 + - uid: 24497 components: - pos: 54.5,60.5 parent: 2 type: Transform - - uid: 24491 + - uid: 24498 components: - pos: 55.5,60.5 parent: 2 type: Transform - - uid: 24492 + - uid: 24499 components: - pos: 57.5,42.5 parent: 2 type: Transform - - uid: 24493 + - uid: 24500 components: - pos: 56.5,42.5 parent: 2 type: Transform - - uid: 24494 + - uid: 24501 components: - pos: 55.5,42.5 parent: 2 type: Transform - - uid: 24495 + - uid: 24502 components: - pos: 50.5,42.5 parent: 2 type: Transform - - uid: 24496 + - uid: 24503 components: - pos: 58.5,52.5 parent: 2 type: Transform - - uid: 24497 + - uid: 24504 components: - pos: 58.5,51.5 parent: 2 type: Transform - - uid: 24498 + - uid: 24505 components: - pos: -8.5,39.5 parent: 2 type: Transform - - uid: 24499 + - uid: 24506 components: - pos: -8.5,38.5 parent: 2 type: Transform - - uid: 24500 + - uid: 24507 components: - pos: -8.5,37.5 parent: 2 type: Transform - - uid: 24501 + - uid: 24508 components: - pos: -9.5,39.5 parent: 2 type: Transform - - uid: 24502 + - uid: 24509 components: - pos: -9.5,37.5 parent: 2 type: Transform - - uid: 24503 + - uid: 24510 components: - rot: 3.141592653589793 rad pos: 67.5,8.5 parent: 2 type: Transform - - uid: 24504 + - uid: 24511 components: - pos: -22.5,45.5 parent: 2 type: Transform - - uid: 24505 + - uid: 24512 components: - pos: -22.5,44.5 parent: 2 type: Transform - - uid: 24506 + - uid: 24513 components: - pos: -22.5,43.5 parent: 2 type: Transform - - uid: 24507 + - uid: 24514 components: - pos: 64.5,29.5 parent: 2 type: Transform - - uid: 24508 + - uid: 24515 components: - pos: 64.5,28.5 parent: 2 type: Transform - - uid: 24509 + - uid: 24516 components: - pos: -0.5,-77.5 parent: 2 type: Transform - - uid: 24510 + - uid: 24517 components: - pos: 72.5,36.5 parent: 2 type: Transform - - uid: 24511 + - uid: 24518 components: - pos: 73.5,36.5 parent: 2 type: Transform - - uid: 24512 + - uid: 24519 components: - pos: 71.5,36.5 parent: 2 type: Transform - - uid: 24513 + - uid: 24520 components: - rot: -1.5707963267948966 rad pos: -11.5,37.5 parent: 2 type: Transform - - uid: 24514 + - uid: 24521 components: - rot: -1.5707963267948966 rad pos: -12.5,37.5 parent: 2 type: Transform - - uid: 24515 + - uid: 24522 components: - rot: 3.141592653589793 rad pos: 37.5,51.5 parent: 2 type: Transform - - uid: 24516 + - uid: 24523 components: - rot: 3.141592653589793 rad pos: 38.5,51.5 parent: 2 type: Transform - - uid: 24517 + - uid: 24524 components: - pos: -2.5,43.5 parent: 2 type: Transform - - uid: 24518 + - uid: 24525 components: - rot: 1.5707963267948966 rad pos: -9.5,41.5 parent: 2 type: Transform - - uid: 24519 + - uid: 24526 components: - rot: 1.5707963267948966 rad pos: -8.5,41.5 parent: 2 type: Transform - - uid: 24520 + - uid: 24527 components: - pos: -10.5,41.5 parent: 2 type: Transform - - uid: 24521 + - uid: 24528 components: - pos: -20.5,47.5 parent: 2 type: Transform - - uid: 24522 + - uid: 24529 components: - pos: -21.5,47.5 parent: 2 type: Transform - - uid: 24523 + - uid: 24530 components: - pos: -16.5,24.5 parent: 2 type: Transform - - uid: 24524 + - uid: 24531 components: - pos: -16.5,23.5 parent: 2 type: Transform - - uid: 24525 + - uid: 24532 components: - pos: 30.5,47.5 parent: 2 type: Transform - - uid: 24526 + - uid: 24533 components: - pos: 30.5,46.5 parent: 2 type: Transform - - uid: 24527 + - uid: 24534 components: - rot: 3.141592653589793 rad pos: -55.5,-48.5 parent: 2 type: Transform - - uid: 24528 + - uid: 24535 components: - rot: 3.141592653589793 rad pos: -55.5,-49.5 parent: 2 type: Transform - - uid: 24529 + - uid: 24536 components: - pos: -22.5,-100.5 parent: 2 type: Transform - - uid: 24530 + - uid: 24537 components: - pos: -14.5,-96.5 parent: 2 type: Transform - - uid: 24531 + - uid: 24538 components: - pos: -15.5,-96.5 parent: 2 type: Transform - - uid: 24532 + - uid: 24539 components: - pos: -30.5,-98.5 parent: 2 type: Transform - - uid: 24533 + - uid: 24540 components: - pos: -29.5,-98.5 parent: 2 type: Transform - - uid: 24534 + - uid: 24541 components: - pos: -21.5,-100.5 parent: 2 type: Transform - - uid: 24535 + - uid: 24542 components: - pos: -23.5,-100.5 parent: 2 type: Transform - - uid: 24536 + - uid: 24543 components: - pos: -10.5,-83.5 parent: 2 type: Transform - - uid: 24537 + - uid: 24544 components: - pos: -4.5,-85.5 parent: 2 type: Transform - - uid: 24538 + - uid: 24545 components: - pos: -12.5,-84.5 parent: 2 type: Transform - - uid: 24539 + - uid: 24546 components: - pos: -13.5,-88.5 parent: 2 type: Transform - - uid: 24540 + - uid: 24547 components: - pos: -38.5,-97.5 parent: 2 type: Transform - - uid: 24541 + - uid: 24548 components: - pos: -38.5,-98.5 parent: 2 type: Transform - - uid: 24542 + - uid: 24549 components: - rot: 3.141592653589793 rad pos: -70.5,-28.5 parent: 2 type: Transform - - uid: 24543 + - uid: 24550 components: - rot: 3.141592653589793 rad pos: -71.5,-28.5 parent: 2 type: Transform - - uid: 24544 + - uid: 24551 components: - rot: -1.5707963267948966 rad pos: -69.5,-43.5 parent: 2 type: Transform - - uid: 24545 + - uid: 24552 components: - rot: -1.5707963267948966 rad pos: -69.5,-44.5 parent: 2 type: Transform - - uid: 24546 + - uid: 24553 components: - rot: -1.5707963267948966 rad pos: -68.5,-43.5 parent: 2 type: Transform - - uid: 24547 + - uid: 24554 components: - rot: -1.5707963267948966 rad pos: -68.5,-44.5 parent: 2 type: Transform - - uid: 24548 + - uid: 24555 components: - pos: 69.5,-48.5 parent: 2 type: Transform - - uid: 24549 + - uid: 24556 components: - pos: 77.5,-44.5 parent: 2 type: Transform - - uid: 24550 + - uid: 24557 components: - pos: 77.5,-43.5 parent: 2 type: Transform - - uid: 24551 + - uid: 24558 components: - pos: 76.5,-43.5 parent: 2 type: Transform - - uid: 24552 + - uid: 24559 components: - pos: 73.5,-49.5 parent: 2 type: Transform - - uid: 24553 + - uid: 24560 components: - pos: 73.5,-48.5 parent: 2 type: Transform - - uid: 24554 + - uid: 24561 components: - rot: -1.5707963267948966 rad pos: 22.5,-47.5 parent: 2 type: Transform - - uid: 24555 + - uid: 24562 components: - rot: 3.141592653589793 rad pos: 6.5,-57.5 parent: 2 type: Transform - - uid: 24556 + - uid: 24563 components: - rot: 1.5707963267948966 rad pos: -16.5,-21.5 parent: 2 type: Transform - - uid: 24557 + - uid: 24564 components: - rot: -1.5707963267948966 rad pos: -15.5,-23.5 parent: 2 type: Transform - - uid: 24558 + - uid: 24565 components: - pos: 53.5,-67.5 parent: 2 type: Transform - - uid: 24559 + - uid: 24566 components: - rot: 3.141592653589793 rad pos: 63.5,-36.5 parent: 2 type: Transform - - uid: 24560 + - uid: 24567 components: - pos: 59.5,-29.5 parent: 2 type: Transform - - uid: 24561 + - uid: 24568 components: - pos: 53.5,-65.5 parent: 2 type: Transform - - uid: 24562 + - uid: 24569 components: - rot: 3.141592653589793 rad pos: 58.5,-37.5 parent: 2 type: Transform - - uid: 24563 + - uid: 24570 components: - rot: 3.141592653589793 rad pos: 57.5,-37.5 parent: 2 type: Transform - - uid: 24564 + - uid: 24571 components: - rot: 3.141592653589793 rad pos: 53.5,-28.5 parent: 2 type: Transform - - uid: 24565 + - uid: 24572 components: - rot: 3.141592653589793 rad pos: 54.5,-28.5 parent: 2 type: Transform - - uid: 24566 + - uid: 24573 components: - rot: 3.141592653589793 rad pos: 70.5,-65.5 parent: 2 type: Transform - - uid: 24567 + - uid: 24574 components: - rot: 3.141592653589793 rad pos: 70.5,-66.5 parent: 2 type: Transform - - uid: 24568 + - uid: 24575 components: - rot: 3.141592653589793 rad pos: 69.5,-66.5 parent: 2 type: Transform - - uid: 24569 + - uid: 24576 components: - rot: 3.141592653589793 rad pos: 43.5,-62.5 parent: 2 type: Transform - - uid: 24570 + - uid: 24577 components: - pos: 67.5,-64.5 parent: 2 type: Transform - - uid: 24571 + - uid: 24578 components: - pos: 67.5,-65.5 parent: 2 type: Transform - - uid: 24572 + - uid: 24579 components: - pos: 45.5,-63.5 parent: 2 type: Transform - - uid: 24573 + - uid: 24580 components: - pos: 46.5,-63.5 parent: 2 type: Transform - - uid: 24574 + - uid: 24581 components: - pos: 39.5,-35.5 parent: 2 type: Transform - - uid: 24575 + - uid: 24582 components: - pos: 38.5,-35.5 parent: 2 type: Transform - - uid: 24576 + - uid: 24583 components: - pos: -37.5,-8.5 parent: 2 type: Transform - - uid: 24577 + - uid: 24584 components: - rot: 3.141592653589793 rad pos: -25.5,-6.5 parent: 2 type: Transform - - uid: 24578 + - uid: 24585 components: - rot: -1.5707963267948966 rad pos: -36.5,18.5 parent: 2 type: Transform - - uid: 24579 + - uid: 24586 components: - pos: -12.5,-18.5 parent: 2 type: Transform - - uid: 24580 + - uid: 24587 components: - rot: -1.5707963267948966 rad pos: -26.5,-6.5 parent: 2 type: Transform - - uid: 24581 + - uid: 24588 components: - pos: -26.5,-61.5 parent: 2 type: Transform - - uid: 24582 + - uid: 24589 components: - pos: -22.5,-57.5 parent: 2 type: Transform - - uid: 24583 + - uid: 24590 components: - pos: -22.5,-58.5 parent: 2 type: Transform - - uid: 24584 + - uid: 24591 components: - pos: -26.5,-59.5 parent: 2 type: Transform - - uid: 24585 + - uid: 24592 components: - rot: -1.5707963267948966 rad pos: 7.5,-47.5 parent: 2 type: Transform - - uid: 24586 + - uid: 24593 components: - rot: 3.141592653589793 rad pos: 25.5,-68.5 parent: 2 type: Transform - - uid: 24587 + - uid: 24594 components: - rot: 3.141592653589793 rad pos: 50.5,-72.5 parent: 2 type: Transform - - uid: 24588 + - uid: 24595 components: - rot: -1.5707963267948966 rad pos: 4.5,-75.5 parent: 2 type: Transform - - uid: 24589 + - uid: 24596 components: - rot: -1.5707963267948966 rad pos: 3.5,-75.5 parent: 2 type: Transform - - uid: 24590 + - uid: 24597 components: - rot: -1.5707963267948966 rad pos: 2.5,-75.5 parent: 2 type: Transform - - uid: 24591 + - uid: 24598 components: - rot: 1.5707963267948966 rad pos: -47.5,38.5 parent: 2 type: Transform - - uid: 24592 + - uid: 24599 components: - rot: 1.5707963267948966 rad pos: -47.5,39.5 parent: 2 type: Transform - - uid: 24593 + - uid: 24600 components: - rot: 1.5707963267948966 rad pos: -47.5,40.5 @@ -186389,115 +171491,115 @@ entities: type: Transform - proto: TableCarpet entities: - - uid: 24594 + - uid: 24601 components: - rot: -1.5707963267948966 rad pos: 10.5,-7.5 parent: 2 type: Transform - - uid: 24595 + - uid: 24602 components: - rot: -1.5707963267948966 rad pos: 10.5,-6.5 parent: 2 type: Transform - - uid: 24596 + - uid: 24603 components: - rot: -1.5707963267948966 rad pos: 9.5,-7.5 parent: 2 type: Transform - - uid: 24597 + - uid: 24604 components: - rot: -1.5707963267948966 rad pos: 9.5,-6.5 parent: 2 type: Transform - - uid: 24598 + - uid: 24605 components: - pos: -24.5,34.5 parent: 2 type: Transform - - uid: 24599 + - uid: 24606 components: - rot: 3.141592653589793 rad pos: -1.5,31.5 parent: 2 type: Transform - - uid: 24600 + - uid: 24607 components: - rot: 3.141592653589793 rad pos: -0.5,31.5 parent: 2 type: Transform - - uid: 24601 + - uid: 24608 components: - rot: 3.141592653589793 rad pos: -0.5,30.5 parent: 2 type: Transform - - uid: 24602 + - uid: 24609 components: - rot: 3.141592653589793 rad pos: -1.5,30.5 parent: 2 type: Transform - - uid: 24603 + - uid: 24610 components: - pos: 53.5,29.5 parent: 2 type: Transform - - uid: 24604 + - uid: 24611 components: - pos: 53.5,28.5 parent: 2 type: Transform - - uid: 24605 + - uid: 24612 components: - pos: 54.5,29.5 parent: 2 type: Transform - - uid: 24606 + - uid: 24613 components: - pos: 54.5,28.5 parent: 2 type: Transform - - uid: 24607 + - uid: 24614 components: - pos: 8.5,32.5 parent: 2 type: Transform - - uid: 24608 + - uid: 24615 components: - rot: 3.141592653589793 rad pos: -18.5,62.5 parent: 2 type: Transform - - uid: 24609 + - uid: 24616 components: - rot: 3.141592653589793 rad pos: -18.5,61.5 parent: 2 type: Transform - - uid: 24610 + - uid: 24617 components: - rot: 3.141592653589793 rad pos: -17.5,62.5 parent: 2 type: Transform - - uid: 24611 + - uid: 24618 components: - rot: 3.141592653589793 rad pos: -17.5,61.5 parent: 2 type: Transform - - uid: 24612 + - uid: 24619 components: - rot: 3.141592653589793 rad pos: -16.5,62.5 parent: 2 type: Transform - - uid: 24613 + - uid: 24620 components: - rot: 3.141592653589793 rad pos: -16.5,61.5 @@ -186505,72 +171607,72 @@ entities: type: Transform - proto: TableCounterMetal entities: - - uid: 24614 + - uid: 24621 components: - pos: 0.5,-67.5 parent: 2 type: Transform - - uid: 24615 + - uid: 24622 components: - pos: -3.5,5.5 parent: 2 type: Transform - - uid: 24616 + - uid: 24623 components: - pos: 0.5,-64.5 parent: 2 type: Transform - - uid: 24617 + - uid: 24624 components: - pos: 0.5,-65.5 parent: 2 type: Transform - - uid: 24618 + - uid: 24625 components: - pos: 0.5,-66.5 parent: 2 type: Transform - - uid: 24619 + - uid: 24626 components: - pos: -3.5,-64.5 parent: 2 type: Transform - - uid: 24620 + - uid: 24627 components: - pos: -3.5,-65.5 parent: 2 type: Transform - - uid: 24621 + - uid: 24628 components: - pos: -3.5,-66.5 parent: 2 type: Transform - - uid: 24622 + - uid: 24629 components: - pos: -16.5,-77.5 parent: 2 type: Transform - - uid: 24623 + - uid: 24630 components: - pos: -4.5,5.5 parent: 2 type: Transform - - uid: 24624 + - uid: 24631 components: - pos: 4.5,11.5 parent: 2 type: Transform - - uid: 24625 + - uid: 24632 components: - pos: 5.5,11.5 parent: 2 type: Transform - - uid: 24626 + - uid: 24633 components: - pos: 0.5,-63.5 parent: 2 type: Transform - - uid: 24627 + - uid: 24634 components: - rot: 1.5707963267948966 rad pos: -21.5,-34.5 @@ -186578,64 +171680,64 @@ entities: type: Transform - proto: TableCounterWood entities: - - uid: 24628 + - uid: 24635 components: - rot: -1.5707963267948966 rad pos: 37.5,-5.5 parent: 2 type: Transform - - uid: 24629 + - uid: 24636 components: - pos: 18.5,15.5 parent: 2 type: Transform - - uid: 24630 + - uid: 24637 components: - pos: 17.5,15.5 parent: 2 type: Transform - - uid: 24631 + - uid: 24638 components: - rot: -1.5707963267948966 rad pos: 37.5,-4.5 parent: 2 type: Transform - - uid: 24632 + - uid: 24639 components: - rot: -1.5707963267948966 rad pos: 37.5,-3.5 parent: 2 type: Transform - - uid: 24633 + - uid: 24640 components: - rot: -1.5707963267948966 rad pos: 37.5,-2.5 parent: 2 type: Transform - - uid: 24634 + - uid: 24641 components: - rot: -1.5707963267948966 rad pos: 38.5,-2.5 parent: 2 type: Transform - - uid: 24635 + - uid: 24642 components: - rot: -1.5707963267948966 rad pos: 39.5,-2.5 parent: 2 type: Transform - - uid: 24636 + - uid: 24643 components: - pos: 57.5,32.5 parent: 2 type: Transform - - uid: 24637 + - uid: 24644 components: - rot: 3.141592653589793 rad pos: -10.5,-95.5 parent: 2 type: Transform - - uid: 24638 + - uid: 24645 components: - rot: 3.141592653589793 rad pos: -9.5,-95.5 @@ -186643,64 +171745,64 @@ entities: type: Transform - proto: TableFrame entities: - - uid: 24639 + - uid: 24646 components: - pos: -25.5,-99.5 parent: 2 type: Transform - - uid: 24640 + - uid: 24647 components: - pos: -33.5,-98.5 parent: 2 type: Transform - - uid: 24641 + - uid: 24648 components: - pos: -34.5,-98.5 parent: 2 type: Transform - proto: TableGlass entities: - - uid: 24642 + - uid: 24649 components: - rot: -1.5707963267948966 rad pos: 30.5,4.5 parent: 2 type: Transform - - uid: 24643 + - uid: 24650 components: - rot: -1.5707963267948966 rad pos: 29.5,4.5 parent: 2 type: Transform - - uid: 24644 + - uid: 24651 components: - pos: -25.5,55.5 parent: 2 type: Transform - - uid: 24645 + - uid: 24652 components: - rot: 1.5707963267948966 rad pos: 63.5,-33.5 parent: 2 type: Transform - - uid: 24646 + - uid: 24653 components: - rot: 1.5707963267948966 rad pos: 62.5,-33.5 parent: 2 type: Transform - - uid: 24647 + - uid: 24654 components: - pos: 15.5,-79.5 parent: 2 type: Transform - - uid: 24648 + - uid: 24655 components: - rot: -1.5707963267948966 rad pos: 15.5,-87.5 parent: 2 type: Transform - - uid: 24649 + - uid: 24656 components: - rot: 3.141592653589793 rad pos: 26.5,-81.5 @@ -186708,1782 +171810,1780 @@ entities: type: Transform - proto: TableReinforced entities: - - uid: 12027 - components: - - pos: -16.5,-33.5 - parent: 2 - type: Transform - - uid: 24378 + - uid: 10196 components: - - pos: -16.5,-35.5 + - rot: 3.141592653589793 rad + pos: -14.5,-35.5 parent: 2 type: Transform - - uid: 24650 + - uid: 24657 components: - rot: 3.141592653589793 rad pos: 48.5,-30.5 parent: 2 type: Transform - - uid: 24651 + - uid: 24658 components: - pos: 2.5,4.5 parent: 2 type: Transform - - uid: 24652 + - uid: 24659 components: - pos: -8.5,4.5 parent: 2 type: Transform - - uid: 24653 + - uid: 24660 components: - rot: -1.5707963267948966 rad pos: 25.5,-37.5 parent: 2 type: Transform - - uid: 24654 + - uid: 24661 components: - rot: -1.5707963267948966 rad pos: 45.5,-26.5 parent: 2 type: Transform - - uid: 24655 + - uid: 24662 components: - pos: 26.5,32.5 parent: 2 type: Transform - - uid: 24656 + - uid: 24663 components: - pos: -6.5,4.5 parent: 2 type: Transform - - uid: 24657 + - uid: 24664 components: - pos: -28.5,-9.5 parent: 2 type: Transform - - uid: 24658 + - uid: 24665 components: - pos: 1.5,-48.5 parent: 2 type: Transform - - uid: 24659 + - uid: 24666 components: - rot: 1.5707963267948966 rad pos: 25.5,19.5 parent: 2 type: Transform - - uid: 24660 + - uid: 24667 components: - rot: 3.141592653589793 rad pos: 26.5,-21.5 parent: 2 type: Transform - - uid: 24661 + - uid: 24668 components: - pos: 37.5,49.5 parent: 2 type: Transform - - uid: 24662 + - uid: 24669 components: - rot: 3.141592653589793 rad pos: 48.5,-21.5 parent: 2 type: Transform - - uid: 24663 + - uid: 24670 components: - pos: 27.5,32.5 parent: 2 type: Transform - - uid: 24664 + - uid: 24671 components: - rot: -1.5707963267948966 rad pos: 32.5,-22.5 parent: 2 type: Transform - - uid: 24665 + - uid: 24672 components: - rot: 3.141592653589793 rad pos: 47.5,-30.5 parent: 2 type: Transform - - uid: 24666 + - uid: 24673 components: - rot: -1.5707963267948966 rad pos: 36.5,19.5 parent: 2 type: Transform - - uid: 24667 + - uid: 24674 components: - pos: -23.5,-87.5 parent: 2 type: Transform - - uid: 24668 + - uid: 24675 components: - pos: -7.5,4.5 parent: 2 type: Transform - - uid: 24669 + - uid: 24676 components: - rot: 1.5707963267948966 rad pos: 21.5,-44.5 parent: 2 type: Transform - - uid: 24670 + - uid: 24677 components: - rot: 1.5707963267948966 rad pos: 1.5,-2.5 parent: 2 type: Transform - - uid: 24671 + - uid: 24678 components: - pos: 0.5,4.5 parent: 2 type: Transform - - uid: 24672 + - uid: 24679 components: - rot: 1.5707963267948966 rad pos: 0.5,-2.5 parent: 2 type: Transform - - uid: 24673 + - uid: 24680 components: - rot: 1.5707963267948966 rad pos: 24.5,19.5 parent: 2 type: Transform - - uid: 24674 + - uid: 24681 components: - rot: -1.5707963267948966 rad pos: 32.5,-20.5 parent: 2 type: Transform - - uid: 24675 + - uid: 24682 components: - rot: -1.5707963267948966 rad pos: 31.5,-20.5 parent: 2 type: Transform - - uid: 24676 + - uid: 24683 components: - rot: -1.5707963267948966 rad pos: 32.5,-21.5 parent: 2 type: Transform - - uid: 24677 + - uid: 24684 components: - rot: -1.5707963267948966 rad pos: 32.5,-22.5 parent: 2 type: Transform - - uid: 24678 + - uid: 24685 components: - rot: -1.5707963267948966 rad pos: 19.5,-20.5 parent: 2 type: Transform - - uid: 24679 + - uid: 24686 components: - rot: -1.5707963267948966 rad pos: 18.5,-20.5 parent: 2 type: Transform - - uid: 24680 + - uid: 24687 components: - rot: -1.5707963267948966 rad pos: 18.5,-21.5 parent: 2 type: Transform - - uid: 24681 + - uid: 24688 components: - pos: 27.5,-37.5 parent: 2 type: Transform - - uid: 24682 + - uid: 24689 components: - pos: 7.5,7.5 parent: 2 type: Transform - - uid: 24683 + - uid: 24690 components: - rot: 1.5707963267948966 rad pos: 22.5,-21.5 parent: 2 type: Transform - - uid: 24684 + - uid: 24691 components: - pos: 1.5,-46.5 parent: 2 type: Transform - - uid: 24685 + - uid: 24692 components: - pos: 28.5,32.5 parent: 2 type: Transform - - uid: 24686 + - uid: 24693 components: - pos: 30.5,32.5 parent: 2 type: Transform - - uid: 24687 + - uid: 24694 components: - pos: 31.5,32.5 parent: 2 type: Transform - - uid: 24688 + - uid: 24695 components: - pos: 18.5,-22.5 parent: 2 type: Transform - - uid: 24689 + - uid: 24696 components: - pos: 1.5,4.5 parent: 2 type: Transform - - uid: 24690 + - uid: 24697 components: - rot: 3.141592653589793 rad pos: 48.5,-28.5 parent: 2 type: Transform - - uid: 24691 + - uid: 24698 components: - rot: 1.5707963267948966 rad pos: 26.5,19.5 parent: 2 type: Transform - - uid: 24692 + - uid: 24699 components: - rot: -1.5707963267948966 rad pos: -26.5,-12.5 parent: 2 type: Transform - - uid: 24693 + - uid: 24700 components: - pos: 47.5,49.5 parent: 2 type: Transform - - uid: 24694 + - uid: 24701 components: - rot: 3.141592653589793 rad pos: -0.5,-2.5 parent: 2 type: Transform - - uid: 24695 + - uid: 24702 components: - pos: 7.5,8.5 parent: 2 type: Transform - - uid: 24696 + - uid: 24703 components: - pos: 39.5,49.5 parent: 2 type: Transform - - uid: 24697 + - uid: 24704 components: - pos: 38.5,49.5 parent: 2 type: Transform - - uid: 24698 + - uid: 24705 components: - rot: 3.141592653589793 rad pos: 48.5,-22.5 parent: 2 type: Transform - - uid: 24699 + - uid: 24706 components: - rot: 3.141592653589793 rad pos: 48.5,-24.5 parent: 2 type: Transform - - uid: 24700 + - uid: 24707 components: - pos: 36.5,49.5 parent: 2 type: Transform - - uid: 24701 + - uid: 24708 components: - rot: 3.141592653589793 rad pos: 48.5,-29.5 parent: 2 type: Transform - - uid: 24702 + - uid: 24709 components: - rot: 3.141592653589793 rad pos: 47.5,-27.5 parent: 2 type: Transform - - uid: 24703 + - uid: 24710 components: - rot: 3.141592653589793 rad pos: 47.5,-21.5 parent: 2 type: Transform - - uid: 24704 + - uid: 24711 components: - pos: 32.5,32.5 parent: 2 type: Transform - - uid: 24705 + - uid: 24712 components: - pos: 26.5,-37.5 parent: 2 type: Transform - - uid: 24706 + - uid: 24713 components: - rot: 3.141592653589793 rad pos: 3.5,-51.5 parent: 2 type: Transform - - uid: 24707 + - uid: 24714 components: - rot: 3.141592653589793 rad pos: 28.5,-21.5 parent: 2 type: Transform - - uid: 24708 + - uid: 24715 components: - pos: 7.5,9.5 parent: 2 type: Transform - - uid: 24709 + - uid: 24716 components: - rot: 3.141592653589793 rad pos: 48.5,-23.5 parent: 2 type: Transform - - uid: 24710 + - uid: 24717 components: - rot: 3.141592653589793 rad pos: 48.5,-27.5 parent: 2 type: Transform - - uid: 24711 + - uid: 24718 components: - pos: -34.5,23.5 parent: 2 type: Transform - - uid: 24712 + - uid: 24719 components: - rot: 3.141592653589793 rad pos: 24.5,-21.5 parent: 2 type: Transform - - uid: 24713 + - uid: 24720 components: - rot: -1.5707963267948966 rad pos: 44.5,-26.5 parent: 2 type: Transform - - uid: 24714 + - uid: 24721 components: - rot: -1.5707963267948966 rad pos: 47.5,-25.5 parent: 2 type: Transform - - uid: 24715 + - uid: 24722 components: - rot: -1.5707963267948966 rad pos: 48.5,-25.5 parent: 2 type: Transform - - uid: 24716 + - uid: 24723 components: - pos: -22.5,-87.5 parent: 2 type: Transform - - uid: 24717 + - uid: 24724 components: - pos: 24.5,23.5 parent: 2 type: Transform - - uid: 24718 + - uid: 24725 components: - pos: 22.5,23.5 parent: 2 type: Transform - - uid: 24719 + - uid: 24726 components: - pos: 25.5,23.5 parent: 2 type: Transform - - uid: 24720 + - uid: 24727 components: - pos: 23.5,23.5 parent: 2 type: Transform - - uid: 24721 + - uid: 24728 components: - pos: -11.5,43.5 parent: 2 type: Transform - - uid: 24722 + - uid: 24729 components: - rot: 1.5707963267948966 rad pos: -9.5,43.5 parent: 2 type: Transform - - uid: 24723 + - uid: 24730 components: - rot: 1.5707963267948966 rad pos: 48.5,6.5 parent: 2 type: Transform - - uid: 24724 + - uid: 24731 components: - rot: -1.5707963267948966 rad pos: 36.5,17.5 parent: 2 type: Transform - - uid: 24725 + - uid: 24732 components: - pos: -17.5,-22.5 parent: 2 type: Transform - - uid: 24726 + - uid: 24733 components: - pos: -17.5,-23.5 parent: 2 type: Transform - - uid: 24727 + - uid: 24734 components: - pos: 42.5,-40.5 parent: 2 type: Transform - - uid: 24728 + - uid: 24735 components: - pos: 43.5,-40.5 parent: 2 type: Transform - - uid: 24729 + - uid: 24736 components: - pos: -27.5,-9.5 parent: 2 type: Transform - - uid: 24730 + - uid: 24737 components: - pos: -22.5,-8.5 parent: 2 type: Transform - - uid: 24731 + - uid: 24738 components: - pos: -23.5,-8.5 parent: 2 type: Transform - - uid: 24732 + - uid: 24739 components: - pos: -27.5,-10.5 parent: 2 type: Transform - - uid: 24733 + - uid: 24740 components: - pos: -27.5,-11.5 parent: 2 type: Transform - - uid: 24734 + - uid: 24741 components: - pos: 57.5,-47.5 parent: 2 type: Transform - - uid: 24735 + - uid: 24742 components: - rot: 1.5707963267948966 rad pos: 22.5,-44.5 parent: 2 type: Transform - - uid: 24736 + - uid: 24743 components: - pos: -25.5,-35.5 parent: 2 type: Transform - - uid: 24737 + - uid: 24744 components: - pos: -25.5,-36.5 parent: 2 type: Transform - - uid: 24738 + - uid: 24745 components: - pos: -24.5,-36.5 parent: 2 type: Transform - - uid: 24739 + - uid: 24746 components: - pos: -23.5,-36.5 parent: 2 type: Transform - - uid: 24740 + - uid: 24747 components: - pos: -36.5,-33.5 parent: 2 type: Transform - - uid: 24741 + - uid: 24748 components: - pos: -36.5,-32.5 parent: 2 type: Transform - - uid: 24742 + - uid: 24749 components: - pos: -37.5,-32.5 parent: 2 type: Transform - - uid: 24743 + - uid: 24750 components: - pos: -38.5,-32.5 parent: 2 type: Transform - - uid: 24744 + - uid: 24751 components: - pos: -39.5,-32.5 parent: 2 type: Transform - - uid: 24745 + - uid: 24752 components: - pos: -58.5,-25.5 parent: 2 type: Transform - - uid: 24746 + - uid: 24753 components: - pos: -57.5,-25.5 parent: 2 type: Transform - - uid: 24747 + - uid: 24754 components: - pos: -56.5,-25.5 parent: 2 type: Transform - - uid: 24748 + - uid: 24755 components: - pos: -55.5,-25.5 parent: 2 type: Transform - - uid: 24749 + - uid: 24756 components: - pos: -54.5,-25.5 parent: 2 type: Transform - - uid: 24750 + - uid: 24757 components: - pos: -15.5,12.5 parent: 2 type: Transform - - uid: 24751 + - uid: 24758 components: - rot: -1.5707963267948966 rad pos: -52.5,-88.5 parent: 2 type: Transform - - uid: 24752 + - uid: 24759 components: - rot: -1.5707963267948966 rad pos: -52.5,-86.5 parent: 2 type: Transform - - uid: 24753 + - uid: 24760 components: - rot: -1.5707963267948966 rad pos: -17.5,25.5 parent: 2 type: Transform - - uid: 24754 + - uid: 24761 components: - rot: 3.141592653589793 rad pos: -26.5,22.5 parent: 2 type: Transform - - uid: 24755 + - uid: 24762 components: - pos: 17.5,32.5 parent: 2 type: Transform - - uid: 24756 + - uid: 24763 components: - pos: 17.5,31.5 parent: 2 type: Transform - - uid: 24757 + - uid: 24764 components: - pos: -34.5,24.5 parent: 2 type: Transform - - uid: 24758 + - uid: 24765 components: - pos: -14.5,12.5 parent: 2 type: Transform - - uid: 24759 + - uid: 24766 components: - pos: -13.5,12.5 parent: 2 type: Transform - - uid: 24760 + - uid: 24767 components: - pos: -16.5,12.5 parent: 2 type: Transform - - uid: 24761 + - uid: 24768 components: - pos: -10.5,-61.5 parent: 2 type: Transform - - uid: 24762 + - uid: 24769 components: - pos: 0.5,-61.5 parent: 2 type: Transform - - uid: 24763 + - uid: 24770 components: - pos: -0.5,-61.5 parent: 2 type: Transform - - uid: 24764 + - uid: 24771 components: - pos: -11.5,-61.5 parent: 2 type: Transform - - uid: 24765 + - uid: 24772 components: - pos: -16.5,-61.5 parent: 2 type: Transform - - uid: 24766 + - uid: 24773 components: - pos: -17.5,-61.5 parent: 2 type: Transform - - uid: 24767 + - uid: 24774 components: - pos: -9.5,16.5 parent: 2 type: Transform - - uid: 24769 + - uid: 24775 components: - - pos: -16.5,-34.5 + - rot: 3.141592653589793 rad + pos: -15.5,-35.5 parent: 2 type: Transform - - uid: 24770 + - uid: 24776 components: - - pos: -14.5,-35.5 + - rot: 3.141592653589793 rad + pos: -16.5,-35.5 parent: 2 type: Transform - - uid: 24771 + - uid: 24778 components: - rot: 3.141592653589793 rad pos: 28.5,-38.5 parent: 2 type: Transform - - uid: 24772 + - uid: 24779 components: - rot: 1.5707963267948966 rad pos: -10.5,43.5 parent: 2 type: Transform - - uid: 24773 + - uid: 24780 components: - pos: -20.5,49.5 parent: 2 type: Transform - - uid: 24774 + - uid: 24781 components: - rot: 3.141592653589793 rad pos: -15.5,65.5 parent: 2 type: Transform - - uid: 24775 + - uid: 24782 components: - rot: 3.141592653589793 rad pos: -16.5,65.5 parent: 2 type: Transform - - uid: 24776 + - uid: 24783 components: - pos: -21.5,49.5 parent: 2 type: Transform - - uid: 24777 + - uid: 24784 components: - rot: 3.141592653589793 rad pos: -19.5,43.5 parent: 2 type: Transform - - uid: 24778 + - uid: 24785 components: - rot: 3.141592653589793 rad pos: -19.5,41.5 parent: 2 type: Transform - - uid: 24779 + - uid: 24786 components: - rot: 3.141592653589793 rad pos: -19.5,42.5 parent: 2 type: Transform - - uid: 24780 + - uid: 24787 components: - pos: 48.5,50.5 parent: 2 type: Transform - - uid: 24781 + - uid: 24788 components: - pos: 47.5,50.5 parent: 2 type: Transform - - uid: 24782 + - uid: 24789 components: - pos: 46.5,49.5 parent: 2 type: Transform - - uid: 24783 + - uid: 24790 components: - pos: 45.5,49.5 parent: 2 type: Transform - - uid: 24784 + - uid: 24791 components: - rot: 3.141592653589793 rad pos: -9.5,-100.5 parent: 2 type: Transform - - uid: 24785 + - uid: 24792 components: - rot: 1.5707963267948966 rad pos: 55.5,-67.5 parent: 2 type: Transform - - uid: 24786 + - uid: 24793 components: - pos: 29.5,32.5 parent: 2 type: Transform - - uid: 24787 + - uid: 24794 components: - pos: 65.5,-28.5 parent: 2 type: Transform - - uid: 24788 + - uid: 24795 components: - pos: 65.5,-29.5 parent: 2 type: Transform - proto: TableReinforcedGlass entities: - - uid: 24789 + - uid: 24796 components: - pos: -30.5,-77.5 parent: 2 type: Transform - - uid: 24790 + - uid: 24797 components: - pos: -30.5,-79.5 parent: 2 type: Transform - proto: TableWood entities: - - uid: 24791 + - uid: 24798 components: - rot: 3.141592653589793 rad pos: 5.5,20.5 parent: 2 type: Transform - - uid: 24792 + - uid: 24799 components: - pos: 22.5,10.5 parent: 2 type: Transform - - uid: 24793 + - uid: 24800 components: - pos: -19.5,-56.5 parent: 2 type: Transform - - uid: 24794 + - uid: 24801 components: - rot: -1.5707963267948966 rad pos: 9.5,-12.5 parent: 2 type: Transform - - uid: 24795 + - uid: 24802 components: - pos: 59.5,-1.5 parent: 2 type: Transform - - uid: 24796 + - uid: 24803 components: - rot: 1.5707963267948966 rad pos: 22.5,-29.5 parent: 2 type: Transform - - uid: 24797 + - uid: 24804 components: - rot: -1.5707963267948966 rad pos: 4.5,-11.5 parent: 2 type: Transform - - uid: 24798 + - uid: 24805 components: - pos: -4.5,-48.5 parent: 2 type: Transform - - uid: 24799 + - uid: 24806 components: - rot: -1.5707963267948966 rad pos: 2.5,21.5 parent: 2 type: Transform - - uid: 24800 + - uid: 24807 components: - rot: 1.5707963267948966 rad pos: 23.5,-29.5 parent: 2 type: Transform - - uid: 24801 + - uid: 24808 components: - pos: 15.5,13.5 parent: 2 type: Transform - - uid: 24802 + - uid: 24809 components: - pos: -20.5,-54.5 parent: 2 type: Transform - - uid: 24803 + - uid: 24810 components: - rot: 1.5707963267948966 rad pos: 13.5,-34.5 parent: 2 type: Transform - - uid: 24804 + - uid: 24811 components: - pos: -28.5,46.5 parent: 2 type: Transform - - uid: 24805 + - uid: 24812 components: - pos: -20.5,-56.5 parent: 2 type: Transform - - uid: 24806 + - uid: 24813 components: - pos: -18.5,-56.5 parent: 2 type: Transform - - uid: 24807 + - uid: 24814 components: - rot: -1.5707963267948966 rad pos: 4.5,-10.5 parent: 2 type: Transform - - uid: 24808 + - uid: 24815 components: - rot: -1.5707963267948966 rad pos: 22.5,-28.5 parent: 2 type: Transform - - uid: 24809 + - uid: 24816 components: - pos: 15.5,10.5 parent: 2 type: Transform - - uid: 24810 + - uid: 24817 components: - rot: -1.5707963267948966 rad pos: 4.5,-9.5 parent: 2 type: Transform - - uid: 24811 + - uid: 24818 components: - pos: 15.5,9.5 parent: 2 type: Transform - - uid: 24812 + - uid: 24819 components: - pos: 15.5,12.5 parent: 2 type: Transform - - uid: 24813 + - uid: 24820 components: - pos: 20.5,-12.5 parent: 2 type: Transform - - uid: 24814 + - uid: 24821 components: - pos: 19.5,-12.5 parent: 2 type: Transform - - uid: 24815 + - uid: 24822 components: - rot: 3.141592653589793 rad pos: -3.5,52.5 parent: 2 type: Transform - - uid: 24816 + - uid: 24823 components: - rot: -1.5707963267948966 rad pos: 2.5,20.5 parent: 2 type: Transform - - uid: 24817 + - uid: 24824 components: - rot: -1.5707963267948966 rad pos: 1.5,21.5 parent: 2 type: Transform - - uid: 24818 + - uid: 24825 components: - pos: 6.5,20.5 parent: 2 type: Transform - - uid: 24819 + - uid: 24826 components: - pos: -2.5,-48.5 parent: 2 type: Transform - - uid: 24820 + - uid: 24827 components: - pos: -2.5,-49.5 parent: 2 type: Transform - - uid: 24821 + - uid: 24828 components: - pos: -5.5,-48.5 parent: 2 type: Transform - - uid: 24822 + - uid: 24829 components: - pos: -6.5,-48.5 parent: 2 type: Transform - - uid: 24823 + - uid: 24830 components: - pos: 7.5,20.5 parent: 2 type: Transform - - uid: 24824 + - uid: 24831 components: - rot: 1.5707963267948966 rad pos: 13.5,-32.5 parent: 2 type: Transform - - uid: 24825 + - uid: 24832 components: - pos: -6.5,-49.5 parent: 2 type: Transform - - uid: 24826 + - uid: 24833 components: - pos: 21.5,-12.5 parent: 2 type: Transform - - uid: 24827 + - uid: 24834 components: - pos: 22.5,-14.5 parent: 2 type: Transform - - uid: 24828 + - uid: 24835 components: - rot: -1.5707963267948966 rad pos: 8.5,-12.5 parent: 2 type: Transform - - uid: 24829 + - uid: 24836 components: - rot: 1.5707963267948966 rad pos: 2.5,0.5 parent: 2 type: Transform - - uid: 24830 + - uid: 24837 components: - rot: 1.5707963267948966 rad pos: 2.5,1.5 parent: 2 type: Transform - - uid: 24831 + - uid: 24838 components: - rot: 1.5707963267948966 rad pos: 12.5,-4.5 parent: 2 type: Transform - - uid: 24832 + - uid: 24839 components: - pos: -3.5,-48.5 parent: 2 type: Transform - - uid: 24833 + - uid: 24840 components: - rot: -1.5707963267948966 rad pos: 4.5,-12.5 parent: 2 type: Transform - - uid: 24834 + - uid: 24841 components: - pos: 15.5,11.5 parent: 2 type: Transform - - uid: 24835 + - uid: 24842 components: - pos: -1.5,17.5 parent: 2 type: Transform - - uid: 24836 + - uid: 24843 components: - pos: -28.5,44.5 parent: 2 type: Transform - - uid: 24837 + - uid: 24844 components: - rot: -1.5707963267948966 rad pos: 11.5,8.5 parent: 2 type: Transform - - uid: 24838 + - uid: 24845 components: - pos: -10.5,-5.5 parent: 2 type: Transform - - uid: 24839 + - uid: 24846 components: - pos: -28.5,45.5 parent: 2 type: Transform - - uid: 24840 + - uid: 24847 components: - pos: -10.5,-3.5 parent: 2 type: Transform - - uid: 24841 + - uid: 24848 components: - pos: -10.5,-4.5 parent: 2 type: Transform - - uid: 24842 + - uid: 24849 components: - pos: -10.5,-6.5 parent: 2 type: Transform - - uid: 24843 + - uid: 24850 components: - pos: 22.5,11.5 parent: 2 type: Transform - - uid: 24844 + - uid: 24851 components: - rot: -1.5707963267948966 rad pos: 11.5,7.5 parent: 2 type: Transform - - uid: 24845 + - uid: 24852 components: - rot: 3.141592653589793 rad pos: 12.5,11.5 parent: 2 type: Transform - - uid: 24846 + - uid: 24853 components: - rot: 3.141592653589793 rad pos: 11.5,11.5 parent: 2 type: Transform - - uid: 24847 + - uid: 24854 components: - rot: -1.5707963267948966 rad pos: -14.5,-37.5 parent: 2 type: Transform - - uid: 24848 + - uid: 24855 components: - rot: 3.141592653589793 rad pos: -9.5,-35.5 parent: 2 type: Transform - - uid: 24849 + - uid: 24856 components: - rot: 3.141592653589793 rad pos: -9.5,-36.5 parent: 2 type: Transform - - uid: 24850 + - uid: 24857 components: - rot: 3.141592653589793 rad pos: -9.5,-37.5 parent: 2 type: Transform - - uid: 24851 + - uid: 24858 components: - rot: 3.141592653589793 rad pos: -10.5,-37.5 parent: 2 type: Transform - - uid: 24852 + - uid: 24859 components: - rot: 3.141592653589793 rad pos: -11.5,-37.5 parent: 2 type: Transform - - uid: 24853 + - uid: 24860 components: - pos: -14.5,-39.5 parent: 2 type: Transform - - uid: 24854 + - uid: 24861 components: - pos: -12.5,-35.5 parent: 2 type: Transform - - uid: 24855 + - uid: 24862 components: - rot: 3.141592653589793 rad pos: 20.5,12.5 parent: 2 type: Transform - - uid: 24856 + - uid: 24863 components: - pos: 22.5,13.5 parent: 2 type: Transform - - uid: 24857 + - uid: 24864 components: - rot: 3.141592653589793 rad pos: -4.5,1.5 parent: 2 type: Transform - - uid: 24858 + - uid: 24865 components: - rot: 3.141592653589793 rad pos: -8.5,0.5 parent: 2 type: Transform - - uid: 24859 + - uid: 24866 components: - rot: 3.141592653589793 rad pos: -8.5,1.5 parent: 2 type: Transform - - uid: 24860 + - uid: 24867 components: - pos: -1.5,19.5 parent: 2 type: Transform - - uid: 24861 + - uid: 24868 components: - rot: -1.5707963267948966 rad pos: 2.5,19.5 parent: 2 type: Transform - - uid: 24862 + - uid: 24869 components: - pos: -17.5,41.5 parent: 2 type: Transform - - uid: 24863 + - uid: 24870 components: - pos: 40.5,21.5 parent: 2 type: Transform - - uid: 24864 + - uid: 24871 components: - pos: 38.5,21.5 parent: 2 type: Transform - - uid: 24865 + - uid: 24872 components: - pos: 38.5,18.5 parent: 2 type: Transform - - uid: 24866 + - uid: 24873 components: - pos: 40.5,18.5 parent: 2 type: Transform - - uid: 24867 + - uid: 24874 components: - rot: -1.5707963267948966 rad pos: 43.5,-4.5 parent: 2 type: Transform - - uid: 24868 + - uid: 24875 components: - rot: -1.5707963267948966 rad pos: 43.5,-3.5 parent: 2 type: Transform - - uid: 24869 + - uid: 24876 components: - rot: -1.5707963267948966 rad pos: 43.5,-2.5 parent: 2 type: Transform - - uid: 24870 + - uid: 24877 components: - rot: -1.5707963267948966 rad pos: 6.5,22.5 parent: 2 type: Transform - - uid: 24871 + - uid: 24878 components: - pos: 61.5,-53.5 parent: 2 type: Transform - - uid: 24872 + - uid: 24879 components: - pos: 62.5,-53.5 parent: 2 type: Transform - - uid: 24873 + - uid: 24880 components: - pos: 63.5,-53.5 parent: 2 type: Transform - - uid: 24874 + - uid: 24881 components: - pos: -16.5,-45.5 parent: 2 type: Transform - - uid: 24875 + - uid: 24882 components: - pos: -16.5,-47.5 parent: 2 type: Transform - - uid: 24876 + - uid: 24883 components: - pos: -16.5,-49.5 parent: 2 type: Transform - - uid: 24877 + - uid: 24884 components: - rot: 3.141592653589793 rad pos: 34.5,-50.5 parent: 2 type: Transform - - uid: 24878 + - uid: 24885 components: - rot: 3.141592653589793 rad pos: 33.5,-50.5 parent: 2 type: Transform - - uid: 24879 + - uid: 24886 components: - rot: 3.141592653589793 rad pos: 32.5,-50.5 parent: 2 type: Transform - - uid: 24880 + - uid: 24887 components: - rot: 3.141592653589793 rad pos: 30.5,-50.5 parent: 2 type: Transform - - uid: 24881 + - uid: 24888 components: - rot: 3.141592653589793 rad pos: 29.5,-50.5 parent: 2 type: Transform - - uid: 24882 + - uid: 24889 components: - rot: 3.141592653589793 rad pos: 28.5,-50.5 parent: 2 type: Transform - - uid: 24883 + - uid: 24890 components: - rot: 3.141592653589793 rad pos: 30.5,-48.5 parent: 2 type: Transform - - uid: 24884 + - uid: 24891 components: - rot: 3.141592653589793 rad pos: 31.5,-48.5 parent: 2 type: Transform - - uid: 24885 + - uid: 24892 components: - rot: 3.141592653589793 rad pos: 32.5,-48.5 parent: 2 type: Transform - - uid: 24886 + - uid: 24893 components: - pos: 60.5,-1.5 parent: 2 type: Transform - - uid: 24887 + - uid: 24894 components: - pos: 62.5,-1.5 parent: 2 type: Transform - - uid: 24888 + - uid: 24895 components: - pos: 61.5,-1.5 parent: 2 type: Transform - - uid: 24889 + - uid: 24896 components: - rot: 1.5707963267948966 rad pos: -35.5,-17.5 parent: 2 type: Transform - - uid: 24890 + - uid: 24897 components: - rot: 1.5707963267948966 rad pos: -35.5,-16.5 parent: 2 type: Transform - - uid: 24891 + - uid: 24898 components: - rot: 1.5707963267948966 rad pos: -35.5,-15.5 parent: 2 type: Transform - - uid: 24892 + - uid: 24899 components: - pos: 65.5,-51.5 parent: 2 type: Transform - - uid: 24893 + - uid: 24900 components: - pos: 59.5,-51.5 parent: 2 type: Transform - - uid: 24894 + - uid: 24901 components: - pos: 59.5,-52.5 parent: 2 type: Transform - - uid: 24895 + - uid: 24902 components: - pos: -39.5,-76.5 parent: 2 type: Transform - - uid: 24896 + - uid: 24903 components: - pos: -39.5,-77.5 parent: 2 type: Transform - - uid: 24897 + - uid: 24904 components: - pos: -40.5,-77.5 parent: 2 type: Transform - - uid: 24898 + - uid: 24905 components: - pos: -40.5,-78.5 parent: 2 type: Transform - - uid: 24899 + - uid: 24906 components: - pos: -41.5,-78.5 parent: 2 type: Transform - - uid: 24900 + - uid: 24907 components: - pos: -42.5,-78.5 parent: 2 type: Transform - - uid: 24901 + - uid: 24908 components: - pos: -43.5,-78.5 parent: 2 type: Transform - - uid: 24902 + - uid: 24909 components: - pos: -43.5,-77.5 parent: 2 type: Transform - - uid: 24903 + - uid: 24910 components: - pos: -44.5,-77.5 parent: 2 type: Transform - - uid: 24904 + - uid: 24911 components: - pos: -44.5,-76.5 parent: 2 type: Transform - - uid: 24905 + - uid: 24912 components: - rot: -1.5707963267948966 rad pos: -40.5,-74.5 parent: 2 type: Transform - - uid: 24906 + - uid: 24913 components: - rot: -1.5707963267948966 rad pos: -43.5,-74.5 parent: 2 type: Transform - - uid: 24907 + - uid: 24914 components: - pos: 23.5,-28.5 parent: 2 type: Transform - - uid: 24908 + - uid: 24915 components: - pos: 30.5,-28.5 parent: 2 type: Transform - - uid: 24909 + - uid: 24916 components: - pos: 30.5,-29.5 parent: 2 type: Transform - - uid: 24910 + - uid: 24917 components: - pos: 59.5,-3.5 parent: 2 type: Transform - - uid: 24911 + - uid: 24918 components: - rot: 3.141592653589793 rad pos: -27.5,14.5 parent: 2 type: Transform - - uid: 24912 + - uid: 24919 components: - rot: 3.141592653589793 rad pos: -26.5,14.5 parent: 2 type: Transform - - uid: 24913 + - uid: 24920 components: - rot: 3.141592653589793 rad pos: -36.5,16.5 parent: 2 type: Transform - - uid: 24914 + - uid: 24921 components: - rot: 3.141592653589793 rad pos: -37.5,16.5 parent: 2 type: Transform - - uid: 24915 + - uid: 24922 components: - rot: 3.141592653589793 rad pos: -38.5,16.5 parent: 2 type: Transform - - uid: 24916 + - uid: 24923 components: - rot: 3.141592653589793 rad pos: -39.5,16.5 parent: 2 type: Transform - - uid: 24917 + - uid: 24924 components: - rot: 3.141592653589793 rad pos: -31.5,15.5 parent: 2 type: Transform - - uid: 24918 + - uid: 24925 components: - rot: 3.141592653589793 rad pos: -30.5,15.5 parent: 2 type: Transform - - uid: 24919 + - uid: 24926 components: - rot: 3.141592653589793 rad pos: -29.5,15.5 parent: 2 type: Transform - - uid: 24920 + - uid: 24927 components: - rot: 1.5707963267948966 rad pos: -48.5,6.5 parent: 2 type: Transform - - uid: 24921 + - uid: 24928 components: - rot: 1.5707963267948966 rad pos: -48.5,5.5 parent: 2 type: Transform - - uid: 24922 + - uid: 24929 components: - rot: 1.5707963267948966 rad pos: -47.5,5.5 parent: 2 type: Transform - - uid: 24923 + - uid: 24930 components: - rot: 1.5707963267948966 rad pos: -47.5,6.5 parent: 2 type: Transform - - uid: 24924 + - uid: 24931 components: - pos: -52.5,13.5 parent: 2 type: Transform - - uid: 24925 + - uid: 24932 components: - pos: -42.5,8.5 parent: 2 type: Transform - - uid: 24926 + - uid: 24933 components: - pos: -51.5,8.5 parent: 2 type: Transform - - uid: 24927 + - uid: 24934 components: - pos: -17.5,42.5 parent: 2 type: Transform - - uid: 24928 + - uid: 24935 components: - pos: -14.5,47.5 parent: 2 type: Transform - - uid: 24929 + - uid: 24936 components: - pos: -16.5,42.5 parent: 2 type: Transform - - uid: 24930 + - uid: 24937 components: - pos: -16.5,41.5 parent: 2 type: Transform - - uid: 24931 + - uid: 24938 components: - rot: 3.141592653589793 rad pos: -5.5,-15.5 parent: 2 type: Transform - - uid: 24932 + - uid: 24939 components: - pos: 27.5,-34.5 parent: 2 type: Transform - - uid: 24933 + - uid: 24940 components: - pos: -33.5,-67.5 parent: 2 type: Transform - - uid: 24934 + - uid: 24941 components: - rot: -1.5707963267948966 rad pos: 30.5,-27.5 parent: 2 type: Transform - - uid: 24935 + - uid: 24942 components: - pos: -31.5,-73.5 parent: 2 type: Transform - - uid: 24936 + - uid: 24943 components: - rot: 3.141592653589793 rad pos: 67.5,10.5 parent: 2 type: Transform - - uid: 24937 + - uid: 24944 components: - pos: -23.5,29.5 parent: 2 type: Transform - - uid: 24938 + - uid: 24945 components: - rot: 1.5707963267948966 rad pos: -24.5,29.5 parent: 2 type: Transform - - uid: 24939 + - uid: 24946 components: - pos: -18.5,33.5 parent: 2 type: Transform - - uid: 24940 + - uid: 24947 components: - pos: -21.5,35.5 parent: 2 type: Transform - - uid: 24941 + - uid: 24948 components: - pos: -12.5,35.5 parent: 2 type: Transform - - uid: 24942 + - uid: 24949 components: - pos: -12.5,32.5 parent: 2 type: Transform - - uid: 24943 + - uid: 24950 components: - pos: -12.5,31.5 parent: 2 type: Transform - - uid: 24944 + - uid: 24951 components: - pos: 65.5,-0.5 parent: 2 type: Transform - - uid: 24945 + - uid: 24952 components: - pos: 65.5,-1.5 parent: 2 type: Transform - - uid: 24946 + - uid: 24953 components: - rot: 1.5707963267948966 rad pos: 37.5,46.5 parent: 2 type: Transform - - uid: 24947 + - uid: 24954 components: - rot: 1.5707963267948966 rad pos: 37.5,45.5 parent: 2 type: Transform - - uid: 24948 + - uid: 24955 components: - rot: 1.5707963267948966 rad pos: 38.5,45.5 parent: 2 type: Transform - - uid: 24949 + - uid: 24956 components: - rot: 1.5707963267948966 rad pos: 42.5,48.5 parent: 2 type: Transform - - uid: 24950 + - uid: 24957 components: - rot: 1.5707963267948966 rad pos: 43.5,48.5 parent: 2 type: Transform - - uid: 24951 + - uid: 24958 components: - rot: 1.5707963267948966 rad pos: 33.5,44.5 parent: 2 type: Transform - - uid: 24952 + - uid: 24959 components: - rot: 1.5707963267948966 rad pos: 32.5,47.5 parent: 2 type: Transform - - uid: 24953 + - uid: 24960 components: - rot: 1.5707963267948966 rad pos: 32.5,46.5 parent: 2 type: Transform - - uid: 24954 + - uid: 24961 components: - rot: 1.5707963267948966 rad pos: 40.5,43.5 parent: 2 type: Transform - - uid: 24955 + - uid: 24962 components: - rot: 3.141592653589793 rad pos: 38.5,46.5 parent: 2 type: Transform - - uid: 24956 + - uid: 24963 components: - rot: 3.141592653589793 rad pos: -21.5,37.5 parent: 2 type: Transform - - uid: 24957 + - uid: 24964 components: - rot: 3.141592653589793 rad pos: -22.5,37.5 parent: 2 type: Transform - - uid: 24958 + - uid: 24965 components: - pos: -19.5,37.5 parent: 2 type: Transform - - uid: 24959 + - uid: 24966 components: - pos: -22.5,-97.5 parent: 2 type: Transform - - uid: 24960 + - uid: 24967 components: - pos: -22.5,-98.5 parent: 2 type: Transform - - uid: 24961 + - uid: 24968 components: - rot: 3.141592653589793 rad pos: -7.5,-100.5 parent: 2 type: Transform - - uid: 24962 + - uid: 24969 components: - rot: 3.141592653589793 rad pos: -6.5,-100.5 parent: 2 type: Transform - - uid: 24963 + - uid: 24970 components: - pos: -22.5,-96.5 parent: 2 type: Transform - - uid: 24964 + - uid: 24971 components: - pos: -33.5,8.5 parent: 2 type: Transform - - uid: 24965 + - uid: 24972 components: - pos: -32.5,8.5 parent: 2 type: Transform - - uid: 24966 + - uid: 24973 components: - pos: 54.5,-35.5 parent: 2 type: Transform - - uid: 24967 + - uid: 24974 components: - pos: 58.5,-30.5 parent: 2 type: Transform - - uid: 24968 + - uid: 24975 components: - rot: 3.141592653589793 rad pos: 49.5,-66.5 parent: 2 type: Transform - - uid: 24969 + - uid: 24976 components: - rot: -1.5707963267948966 rad pos: 57.5,-30.5 parent: 2 type: Transform - - uid: 24970 + - uid: 24977 components: - pos: 12.5,-5.5 parent: 2 type: Transform - - uid: 24971 + - uid: 24978 components: - pos: 23.5,-37.5 parent: 2 type: Transform - - uid: 24972 + - uid: 24979 components: - pos: 18.5,-14.5 parent: 2 type: Transform - - uid: 24973 + - uid: 24980 components: - rot: 1.5707963267948966 rad pos: -4.5,0.5 parent: 2 type: Transform - - uid: 24974 + - uid: 24981 components: - pos: -31.5,-74.5 parent: 2 type: Transform - - uid: 24975 + - uid: 24982 components: - pos: 12.5,-6.5 parent: 2 @@ -188653,26 +173753,26 @@ entities: type: ContainerContainer - proto: ThermomachineFreezerMachineCircuitBoard entities: - - uid: 24976 + - uid: 24983 components: - pos: -36.51641,35.415855 parent: 2 type: Transform - proto: Thruster entities: - - uid: 24977 + - uid: 24984 components: - rot: 1.5707963267948966 rad pos: -58.5,-87.5 parent: 2 type: Transform - - uid: 24978 + - uid: 24985 components: - rot: 1.5707963267948966 rad pos: -56.5,-84.5 parent: 2 type: Transform - - uid: 24979 + - uid: 24986 components: - rot: 1.5707963267948966 rad pos: -56.5,-90.5 @@ -188680,39 +173780,41 @@ entities: type: Transform - proto: TimerTrigger entities: - - uid: 24980 + - uid: 24987 components: - pos: 65.507225,-28.362265 parent: 2 type: Transform + - nextSound: 1074.1964232 + type: EmitSoundOnCollide - proto: TobaccoSeeds entities: - - uid: 24981 + - uid: 24988 components: - pos: -32.36416,6.3223424 parent: 2 type: Transform - proto: ToiletDirtyWater entities: - - uid: 24982 + - uid: 24989 components: - rot: 1.5707963267948966 rad pos: -32.5,-5.5 parent: 2 type: Transform - - uid: 24983 + - uid: 24990 components: - rot: 1.5707963267948966 rad pos: -32.5,-7.5 parent: 2 type: Transform - - uid: 24984 + - uid: 24991 components: - rot: -1.5707963267948966 rad pos: -28.5,-5.5 parent: 2 type: Transform - - uid: 24985 + - uid: 24992 components: - rot: -1.5707963267948966 rad pos: -28.5,-7.5 @@ -188720,12 +173822,12 @@ entities: type: Transform - proto: ToiletEmpty entities: - - uid: 24986 + - uid: 24993 components: - pos: 61.5,24.5 parent: 2 type: Transform - - uid: 24987 + - uid: 24994 components: - pos: 63.5,24.5 parent: 2 @@ -188734,108 +173836,112 @@ entities: type: Construction - proto: TomatoSeeds entities: - - uid: 24988 + - uid: 24995 components: - pos: -32.45791,6.4317174 parent: 2 type: Transform - proto: ToolboxElectrical entities: - - uid: 24989 + - uid: 24996 components: - pos: 46.470684,-5.411702 parent: 2 type: Transform - proto: ToolboxElectricalFilled entities: - - uid: 24990 + - uid: 24997 components: - pos: -36.493176,-7.9722276 parent: 2 type: Transform - nextAttack: 517.6169217 type: MeleeWeapon - - uid: 24991 + - nextSound: 517.8169217 + type: EmitSoundOnCollide + - uid: 24998 components: - pos: 32.521046,-20.990738 parent: 2 type: Transform - nextAttack: 112.5662204 type: MeleeWeapon - - uid: 24992 + - uid: 24999 components: - pos: -24.509478,-19.362955 parent: 2 type: Transform - - uid: 24993 + - uid: 25000 components: - pos: -12.493107,-98.55707 parent: 2 type: Transform - - uid: 24994 + - uid: 25001 components: - pos: 67.55947,-64.54127 parent: 2 type: Transform - proto: ToolboxEmergencyFilled entities: - - uid: 24995 + - uid: 25002 components: - pos: 32.521046,-22.058308 parent: 2 type: Transform - nextAttack: 103.249591 type: MeleeWeapon - - uid: 24996 + - uid: 25003 components: - pos: 4.5177064,-69.50256 parent: 2 type: Transform - - uid: 24997 + - uid: 25004 components: - pos: -22.596659,-20.233759 parent: 2 type: Transform - - uid: 24998 + - uid: 25005 components: - pos: -28.343418,-52.353195 parent: 2 type: Transform - - uid: 24999 + - uid: 25006 components: - pos: -38.44295,-67.482124 parent: 2 type: Transform - - uid: 25000 + - uid: 25007 components: - pos: -35.451088,-50.209225 parent: 2 type: Transform - - uid: 25001 + - uid: 25008 components: - pos: 54.54983,-30.496807 parent: 2 type: Transform - - uid: 25002 + - uid: 25009 components: - pos: 65.53578,-10.518121 parent: 2 type: Transform - - uid: 25003 + - uid: 25010 components: - pos: -12.486199,-5.5686293 parent: 2 type: Transform - - uid: 25004 + - uid: 25011 components: - pos: -36.5088,-7.6284776 parent: 2 type: Transform - nextAttack: 514.8399644 type: MeleeWeapon + - nextSound: 515.0399644 + type: EmitSoundOnCollide - proto: ToolboxGoldFilled entities: - - uid: 25005 + - uid: 25012 components: - pos: 32.512478,-22.558695 parent: 2 @@ -188844,243 +173950,247 @@ entities: type: MeleeWeapon - proto: ToolboxMechanical entities: - - uid: 25006 + - uid: 25013 components: - pos: -22.637089,-8.36341 parent: 2 type: Transform - proto: ToolboxMechanicalFilled entities: - - uid: 25007 + - uid: 25014 components: - pos: -36.493176,-7.2222276 parent: 2 type: Transform - nextAttack: 512.1163489 type: MeleeWeapon - - uid: 25008 + - nextSound: 512.3163489 + type: EmitSoundOnCollide + - uid: 25015 components: - pos: -15.996035,12.5348 parent: 2 type: Transform - - uid: 25009 + - uid: 25016 components: - pos: 32.521046,-21.537613 parent: 2 type: Transform - nextAttack: 110.0995636 type: MeleeWeapon - - uid: 25010 + - uid: 25017 components: - pos: -22.52499,-67.50294 parent: 2 type: Transform - - uid: 25011 + - uid: 25018 components: - pos: 41.46839,-54.726734 parent: 2 type: Transform - - uid: 25012 + - uid: 25019 components: - pos: -36.497368,-32.593475 parent: 2 type: Transform - - uid: 25013 + - uid: 25020 components: - pos: -26.431704,-19.50094 parent: 2 type: Transform - proto: ToyAi entities: - - uid: 25014 + - uid: 25021 components: - pos: 48.41234,-27.902035 parent: 2 type: Transform - - uid: 25015 + - uid: 25022 components: - pos: -1.529743,69.62148 parent: 2 type: Transform - proto: ToyAmongPequeno entities: - - uid: 25016 + - uid: 25023 components: - pos: 64.471924,-66.472046 parent: 2 type: Transform - proto: ToyAssistant entities: - - uid: 25017 + - uid: 25024 components: - pos: -17.943565,62.415245 parent: 2 type: Transform - proto: ToyDurand entities: - - uid: 25018 + - uid: 25025 components: - pos: -18.14669,61.77462 parent: 2 type: Transform - proto: ToyGygax entities: - - uid: 25019 + - uid: 25026 components: - pos: -17.318565,61.89962 parent: 2 type: Transform - proto: ToyHonk entities: - - uid: 25020 + - uid: 25027 components: - pos: 62.0246,-1.3985255 parent: 2 type: Transform - - uid: 25021 + - uid: 25028 components: - pos: -17.287315,62.508995 parent: 2 type: Transform - proto: ToyIan entities: - - uid: 25022 + - uid: 25029 components: - pos: 48.44359,-22.433285 parent: 2 type: Transform - proto: ToyNuke entities: - - uid: 25023 + - uid: 25030 components: - pos: 48.50609,-28.933285 parent: 2 type: Transform - proto: ToyRubberDuck entities: - - uid: 25024 + - uid: 25031 components: - pos: 48.59984,-28.457928 parent: 2 type: Transform - - uid: 25025 + - uid: 25032 components: - pos: 48.396713,-28.473553 parent: 2 type: Transform - - uid: 25026 + - uid: 25033 components: - pos: 48.50609,-28.286053 parent: 2 type: Transform - proto: ToySpawner entities: - - uid: 25027 + - uid: 25034 components: - pos: 53.5,-65.5 parent: 2 type: Transform - - uid: 25028 + - uid: 25035 components: - pos: 54.5,-35.5 parent: 2 type: Transform - proto: TrashBananaPeel entities: - - uid: 25029 + - uid: 25036 components: - pos: 1.7019457,-5.2798405 parent: 2 type: Transform - - uid: 25030 + - uid: 25037 components: - pos: 2.4993362,-10.809314 parent: 2 type: Transform - - uid: 25031 + - uid: 25038 components: - pos: 1.2956955,-5.4829655 parent: 2 type: Transform - - uid: 25032 + - uid: 25039 components: - pos: 46.551132,46.620934 parent: 2 type: Transform - - uid: 25034 + - uid: 25041 components: - pos: 48.49847,33.344906 parent: 2 type: Transform - - uid: 25035 + - uid: 25042 components: - pos: 50.451595,31.673027 parent: 2 type: Transform - - uid: 25036 + - uid: 25043 components: - pos: 5.4959826,24.50416 parent: 2 type: Transform - proto: trayScanner entities: - - uid: 25037 + - uid: 25044 components: - pos: -36.91505,-7.9878526 parent: 2 type: Transform - - uid: 25038 + - nextSound: 507.9287298 + type: EmitSoundOnCollide + - uid: 25045 components: - pos: -54.607018,-37.48977 parent: 2 type: Transform - - uid: 25039 + - uid: 25046 components: - pos: -47.457436,-19.479069 parent: 2 type: Transform - - uid: 25040 + - uid: 25047 components: - pos: -42.463882,-20.49279 parent: 2 type: Transform - - uid: 25041 + - uid: 25048 components: - pos: 39.581177,-30.49341 parent: 2 type: Transform - - uid: 25042 + - uid: 25049 components: - pos: 73.06597,36.576 parent: 2 type: Transform - - uid: 25043 + - uid: 25050 components: - pos: 77.48675,-44.195305 parent: 2 type: Transform - - uid: 25044 + - uid: 25051 components: - pos: -26.403507,-59.437252 parent: 2 type: Transform - proto: TromboneInstrument entities: - - uid: 25045 + - uid: 25052 components: - pos: 68.56264,48.54323 parent: 2 type: Transform - proto: TrumpetInstrument entities: - - uid: 25046 + - uid: 25053 components: - pos: -10.547552,-5.035685 parent: 2 type: Transform - proto: TwoWayLever entities: - - uid: 25047 + - uid: 25054 components: - pos: 16.5,-53.5 parent: 2 @@ -189090,122 +174200,122 @@ entities: - outputs: Left: - port: Forward - uid: 12375 - - port: Forward - uid: 12373 + uid: 12376 - port: Forward uid: 12374 - port: Forward - uid: 12371 + uid: 12375 - port: Forward - uid: 12368 + uid: 12372 - port: Forward - uid: 12365 + uid: 12369 - port: Forward - uid: 12367 + uid: 12366 - port: Forward - uid: 12369 + uid: 12368 - port: Forward - uid: 22627 + uid: 12370 - port: Forward - uid: 12366 + uid: 22634 - port: Forward - uid: 12372 + uid: 12367 + - port: Forward + uid: 12373 Right: - port: Reverse - uid: 12375 - - port: Reverse - uid: 12373 + uid: 12376 - port: Reverse uid: 12374 - port: Reverse - uid: 12371 + uid: 12375 - port: Reverse - uid: 12368 + uid: 12372 - port: Reverse - uid: 12365 + uid: 12369 - port: Reverse - uid: 12367 + uid: 12366 - port: Reverse - uid: 12369 + uid: 12368 - port: Reverse - uid: 22627 + uid: 12370 - port: Reverse - uid: 12366 + uid: 22634 - port: Reverse - uid: 12372 + uid: 12367 + - port: Reverse + uid: 12373 Middle: - port: Off - uid: 12375 - - port: Off - uid: 12373 + uid: 12376 - port: Off uid: 12374 - port: Off - uid: 12371 + uid: 12375 - port: Off - uid: 12368 + uid: 12372 - port: Off - uid: 12365 + uid: 12369 - port: Off - uid: 12367 + uid: 12366 - port: Off - uid: 12369 + uid: 12368 - port: Off - uid: 22627 + uid: 12370 - port: Off - uid: 12366 + uid: 22634 - port: Off - uid: 12372 + uid: 12367 + - port: Off + uid: 12373 type: SignalTransmitter - - uid: 25048 + - uid: 25055 components: - pos: -28.5,24.5 parent: 2 type: Transform - outputs: Left: - - port: Forward - uid: 12383 - port: Forward uid: 12384 + - port: Forward + uid: 12385 + - port: Forward + uid: 12383 - port: Forward uid: 12382 - port: Forward uid: 12381 - port: Forward uid: 12380 - - port: Forward - uid: 12379 Right: - - port: Reverse - uid: 12383 - port: Reverse uid: 12384 + - port: Reverse + uid: 12385 + - port: Reverse + uid: 12383 - port: Reverse uid: 12382 - port: Reverse uid: 12381 - port: Reverse uid: 12380 - - port: Reverse - uid: 12379 Middle: - - port: Off - uid: 12383 - port: Off uid: 12384 + - port: Off + uid: 12385 + - port: Off + uid: 12383 - port: Off uid: 12382 - port: Off uid: 12381 - port: Off uid: 12380 - - port: Off - uid: 12379 type: SignalTransmitter - type: ItemCooldown - - uid: 25049 + - uid: 25056 components: - pos: -41.5,17.5 parent: 2 @@ -189213,97 +174323,97 @@ entities: - outputs: Left: - port: Forward - uid: 12425 + uid: 12426 - port: Forward - uid: 12465 + uid: 12466 - port: Forward - uid: 12424 + uid: 12425 - port: Forward - uid: 12406 + uid: 12407 - port: Forward - uid: 12426 + uid: 12427 Right: - port: Reverse - uid: 12425 + uid: 12426 - port: Reverse - uid: 12465 + uid: 12466 - port: Reverse - uid: 12424 + uid: 12425 - port: Reverse - uid: 12406 + uid: 12407 - port: Reverse - uid: 12426 + uid: 12427 Middle: - port: Off - uid: 12425 + uid: 12426 - port: Off - uid: 12465 + uid: 12466 - port: Off - uid: 12424 + uid: 12425 - port: Off - uid: 12406 + uid: 12407 - port: Off - uid: 12426 + uid: 12427 type: SignalTransmitter - - uid: 25050 + - uid: 25057 components: - pos: -48.5,24.5 parent: 2 type: Transform - outputs: Left: + - port: Forward + uid: 12398 - port: Forward uid: 12397 - port: Forward uid: 12396 - port: Forward uid: 12395 - - port: Forward - uid: 12394 - - port: Forward - uid: 12402 - port: Forward uid: 12403 - port: Forward uid: 12404 - port: Forward uid: 12405 + - port: Forward + uid: 12406 Right: + - port: Reverse + uid: 12398 - port: Reverse uid: 12397 - port: Reverse uid: 12396 - port: Reverse uid: 12395 - - port: Reverse - uid: 12394 - - port: Reverse - uid: 12402 - port: Reverse uid: 12403 - port: Reverse uid: 12404 - port: Reverse uid: 12405 + - port: Reverse + uid: 12406 Middle: + - port: Off + uid: 12398 - port: Off uid: 12397 - port: Off uid: 12396 - port: Off uid: 12395 - - port: Off - uid: 12394 - - port: Off - uid: 12402 - port: Off uid: 12403 - port: Off uid: 12404 - port: Off uid: 12405 + - port: Off + uid: 12406 type: SignalTransmitter - - uid: 25051 + - uid: 25058 components: - pos: -48.5,18.5 parent: 2 @@ -189312,6 +174422,8 @@ entities: type: TwoWayLever - outputs: Left: + - port: Forward + uid: 12394 - port: Forward uid: 12393 - port: Forward @@ -189319,16 +174431,16 @@ entities: - port: Forward uid: 12391 - port: Forward - uid: 12390 + uid: 12401 - port: Forward - uid: 12400 + uid: 12402 - port: Forward - uid: 12401 + uid: 12400 - port: Forward uid: 12399 - - port: Forward - uid: 12398 Right: + - port: Reverse + uid: 12394 - port: Reverse uid: 12393 - port: Reverse @@ -189336,16 +174448,16 @@ entities: - port: Reverse uid: 12391 - port: Reverse - uid: 12390 + uid: 12401 - port: Reverse - uid: 12400 + uid: 12402 - port: Reverse - uid: 12401 + uid: 12400 - port: Reverse uid: 12399 - - port: Reverse - uid: 12398 Middle: + - port: Off + uid: 12394 - port: Off uid: 12393 - port: Off @@ -189353,17 +174465,15 @@ entities: - port: Off uid: 12391 - port: Off - uid: 12390 + uid: 12401 - port: Off - uid: 12400 + uid: 12402 - port: Off - uid: 12401 + uid: 12400 - port: Off uid: 12399 - - port: Off - uid: 12398 type: SignalTransmitter - - uid: 25052 + - uid: 25059 components: - pos: -36.5,24.5 parent: 2 @@ -189372,48 +174482,46 @@ entities: type: TwoWayLever - outputs: Left: + - port: Forward + uid: 12390 - port: Forward uid: 12389 - port: Forward uid: 12388 - - port: Forward - uid: 12387 - - port: Forward - uid: 12385 - port: Forward uid: 12386 + - port: Forward + uid: 12387 Right: + - port: Reverse + uid: 12390 - port: Reverse uid: 12389 - port: Reverse uid: 12388 - - port: Reverse - uid: 12387 - - port: Reverse - uid: 12385 - port: Reverse uid: 12386 + - port: Reverse + uid: 12387 Middle: + - port: Off + uid: 12390 - port: Off uid: 12389 - port: Off uid: 12388 - - port: Off - uid: 12387 - - port: Off - uid: 12385 - port: Off uid: 12386 + - port: Off + uid: 12387 type: SignalTransmitter - - uid: 25053 + - uid: 25060 components: - pos: -11.5,28.5 parent: 2 type: Transform - outputs: Left: - - port: Forward - uid: 12442 - port: Forward uid: 12443 - port: Forward @@ -189423,30 +174531,30 @@ entities: - port: Forward uid: 12446 - port: Forward - uid: 12441 + uid: 12447 - port: Forward - uid: 12430 + uid: 12442 - port: Forward uid: 12431 - port: Forward uid: 12432 - port: Forward - uid: 12448 + uid: 12433 - port: Forward - uid: 12447 - - port: Reverse - uid: 12423 + uid: 12449 + - port: Forward + uid: 12448 - port: Reverse - uid: 12422 + uid: 12424 - port: Reverse - uid: 12449 + uid: 12423 - port: Reverse uid: 12450 - port: Reverse - uid: 12421 - Right: + uid: 12451 - port: Reverse - uid: 12442 + uid: 12422 + Right: - port: Reverse uid: 12443 - port: Reverse @@ -189456,30 +174564,30 @@ entities: - port: Reverse uid: 12446 - port: Reverse - uid: 12441 + uid: 12447 - port: Reverse - uid: 12430 + uid: 12442 - port: Reverse uid: 12431 - port: Reverse uid: 12432 - port: Reverse - uid: 12448 + uid: 12433 - port: Reverse - uid: 12447 - - port: Forward - uid: 12423 + uid: 12449 + - port: Reverse + uid: 12448 - port: Forward - uid: 12422 + uid: 12424 - port: Forward - uid: 12449 + uid: 12423 - port: Forward uid: 12450 - port: Forward - uid: 12421 + uid: 12451 + - port: Forward + uid: 12422 Middle: - - port: Off - uid: 12442 - port: Off uid: 12443 - port: Off @@ -189489,29 +174597,31 @@ entities: - port: Off uid: 12446 - port: Off - uid: 12441 + uid: 12447 - port: Off - uid: 12430 + uid: 12442 - port: Off uid: 12431 - port: Off uid: 12432 - port: Off - uid: 12448 + uid: 12433 - port: Off - uid: 12447 + uid: 12449 - port: Off - uid: 12423 + uid: 12448 - port: Off - uid: 12422 + uid: 12424 - port: Off - uid: 12449 + uid: 12423 - port: Off uid: 12450 - port: Off - uid: 12421 + uid: 12451 + - port: Off + uid: 12422 type: SignalTransmitter - - uid: 25054 + - uid: 25061 components: - pos: -48.5,29.5 parent: 2 @@ -189521,51 +174631,51 @@ entities: - outputs: Left: - port: Forward - uid: 12418 - - port: Forward - uid: 12408 - - port: Forward - uid: 12407 + uid: 12419 - port: Forward uid: 12409 + - port: Forward + uid: 12408 - port: Forward uid: 12410 - port: Forward uid: 12411 - port: Forward - uid: 12420 + uid: 12412 + - port: Forward + uid: 12421 Right: - port: Reverse - uid: 12418 - - port: Reverse - uid: 12408 - - port: Reverse - uid: 12407 + uid: 12419 - port: Reverse uid: 12409 + - port: Reverse + uid: 12408 - port: Reverse uid: 12410 - port: Reverse uid: 12411 - port: Reverse - uid: 12420 + uid: 12412 + - port: Reverse + uid: 12421 Middle: - port: Off - uid: 12418 - - port: Off - uid: 12408 - - port: Off - uid: 12407 + uid: 12419 - port: Off uid: 12409 + - port: Off + uid: 12408 - port: Off uid: 12410 - port: Off uid: 12411 - port: Off - uid: 12420 + uid: 12412 + - port: Off + uid: 12421 type: SignalTransmitter - - uid: 25055 + - uid: 25062 components: - pos: -48.5,35.5 parent: 2 @@ -189575,9 +174685,7 @@ entities: - outputs: Left: - port: Forward - uid: 12417 - - port: Forward - uid: 12412 + uid: 12418 - port: Forward uid: 12413 - port: Forward @@ -189587,12 +174695,12 @@ entities: - port: Forward uid: 12416 - port: Forward - uid: 12419 - Right: - - port: Reverse uid: 12417 + - port: Forward + uid: 12420 + Right: - port: Reverse - uid: 12412 + uid: 12418 - port: Reverse uid: 12413 - port: Reverse @@ -189602,12 +174710,12 @@ entities: - port: Reverse uid: 12416 - port: Reverse - uid: 12419 - Middle: - - port: Off uid: 12417 + - port: Reverse + uid: 12420 + Middle: - port: Off - uid: 12412 + uid: 12418 - port: Off uid: 12413 - port: Off @@ -189617,9 +174725,11 @@ entities: - port: Off uid: 12416 - port: Off - uid: 12419 + uid: 12417 + - port: Off + uid: 12420 type: SignalTransmitter - - uid: 25056 + - uid: 25063 components: - pos: -46.5,14.5 parent: 2 @@ -189629,28 +174739,28 @@ entities: - outputs: Left: - port: Forward - uid: 12428 + uid: 12429 - port: Forward - uid: 12427 + uid: 12428 - port: Forward - uid: 12429 + uid: 12430 Right: - port: Reverse - uid: 12428 + uid: 12429 - port: Reverse - uid: 12427 + uid: 12428 - port: Reverse - uid: 12429 + uid: 12430 Middle: - port: Off - uid: 12428 + uid: 12429 - port: Off - uid: 12427 + uid: 12428 - port: Off - uid: 12429 + uid: 12430 type: SignalTransmitter - type: ItemCooldown - - uid: 25057 + - uid: 25064 components: - pos: 47.5,39.5 parent: 2 @@ -189659,8 +174769,6 @@ entities: type: TwoWayLever - outputs: Left: - - port: Forward - uid: 12433 - port: Forward uid: 12434 - port: Forward @@ -189676,10 +174784,10 @@ entities: - port: Forward uid: 12440 - port: Forward - uid: 12451 + uid: 12441 + - port: Forward + uid: 12452 Right: - - port: Reverse - uid: 12433 - port: Reverse uid: 12434 - port: Reverse @@ -189695,10 +174803,10 @@ entities: - port: Reverse uid: 12440 - port: Reverse - uid: 12451 + uid: 12441 + - port: Reverse + uid: 12452 Middle: - - port: Off - uid: 12433 - port: Off uid: 12434 - port: Off @@ -189714,21 +174822,21 @@ entities: - port: Off uid: 12440 - port: Off - uid: 12451 + uid: 12441 + - port: Off + uid: 12452 type: SignalTransmitter - - uid: 25058 + - uid: 25065 components: - pos: -36.5,-98.5 parent: 2 type: Transform - outputs: Left: - - port: Forward - uid: 12453 - - port: Forward - uid: 12452 - port: Forward uid: 12454 + - port: Forward + uid: 12453 - port: Forward uid: 12455 - port: Forward @@ -189738,20 +174846,20 @@ entities: - port: Forward uid: 12458 - port: Forward - uid: 12462 + uid: 12459 - port: Forward - uid: 12461 + uid: 12463 - port: Forward - uid: 12459 + uid: 12462 - port: Forward uid: 12460 + - port: Forward + uid: 12461 Right: - - port: Reverse - uid: 12453 - - port: Reverse - uid: 12452 - port: Reverse uid: 12454 + - port: Reverse + uid: 12453 - port: Reverse uid: 12455 - port: Reverse @@ -189761,20 +174869,20 @@ entities: - port: Reverse uid: 12458 - port: Reverse - uid: 12462 + uid: 12459 - port: Reverse - uid: 12461 + uid: 12463 - port: Reverse - uid: 12459 + uid: 12462 - port: Reverse uid: 12460 + - port: Reverse + uid: 12461 Middle: - - port: Off - uid: 12453 - - port: Off - uid: 12452 - port: Off uid: 12454 + - port: Off + uid: 12453 - port: Off uid: 12455 - port: Off @@ -189784,29 +174892,33 @@ entities: - port: Off uid: 12458 - port: Off - uid: 12462 + uid: 12459 - port: Off - uid: 12461 + uid: 12463 - port: Off - uid: 12459 + uid: 12462 - port: Off uid: 12460 + - port: Off + uid: 12461 type: SignalTransmitter - - uid: 25059 + - uid: 25066 components: - pos: -36.5,-104.5 parent: 2 type: Transform - outputs: Left: + - port: Forward + uid: 12461 - port: Forward uid: 12460 - port: Forward - uid: 12459 + uid: 12462 - port: Forward - uid: 12461 + uid: 12463 - port: Forward - uid: 12462 + uid: 12459 - port: Forward uid: 12458 - port: Forward @@ -189815,21 +174927,21 @@ entities: uid: 12456 - port: Forward uid: 12455 - - port: Forward - uid: 12454 - - port: Forward - uid: 12452 - port: Forward uid: 12453 + - port: Forward + uid: 12454 Right: + - port: Reverse + uid: 12461 - port: Reverse uid: 12460 - port: Reverse - uid: 12459 + uid: 12462 - port: Reverse - uid: 12461 + uid: 12463 - port: Reverse - uid: 12462 + uid: 12459 - port: Reverse uid: 12458 - port: Reverse @@ -189838,21 +174950,21 @@ entities: uid: 12456 - port: Reverse uid: 12455 - - port: Reverse - uid: 12454 - - port: Reverse - uid: 12452 - port: Reverse uid: 12453 + - port: Reverse + uid: 12454 Middle: + - port: Off + uid: 12461 - port: Off uid: 12460 - port: Off - uid: 12459 + uid: 12462 - port: Off - uid: 12461 + uid: 12463 - port: Off - uid: 12462 + uid: 12459 - port: Off uid: 12458 - port: Off @@ -189861,104 +174973,102 @@ entities: uid: 12456 - port: Off uid: 12455 - - port: Off - uid: 12454 - - port: Off - uid: 12452 - port: Off uid: 12453 + - port: Off + uid: 12454 type: SignalTransmitter - - uid: 25060 + - uid: 25067 components: - pos: -9.5,-12.5 parent: 2 type: Transform - outputs: Left: - - port: Reverse - uid: 12376 - port: Reverse uid: 12377 - port: Reverse - uid: 12370 + uid: 12378 - port: Reverse - uid: 12464 + uid: 12371 - port: Reverse - uid: 12463 + uid: 12465 - port: Reverse - uid: 12378 - Right: + uid: 12464 - port: Reverse - uid: 12376 + uid: 12379 + Right: - port: Reverse uid: 12377 - port: Reverse - uid: 12370 + uid: 12378 - port: Reverse - uid: 12464 + uid: 12371 - port: Reverse - uid: 12463 + uid: 12465 - port: Reverse - uid: 12378 + uid: 12464 + - port: Reverse + uid: 12379 Middle: - port: Off - uid: 12463 + uid: 12464 - port: Off - uid: 12378 + uid: 12379 - port: Off - uid: 12370 + uid: 12371 - port: Off - uid: 12377 + uid: 12378 - port: Off - uid: 12376 + uid: 12377 - port: Off - uid: 12464 + uid: 12465 type: SignalTransmitter - proto: UnfinishedMachineFrame entities: - - uid: 25061 + - uid: 25068 components: - pos: -26.5,-24.5 parent: 2 type: Transform - - uid: 25062 + - uid: 25069 components: - pos: -39.5,-20.5 parent: 2 type: Transform - - uid: 25063 + - uid: 25070 components: - pos: -10.5,39.5 parent: 2 type: Transform - - uid: 25064 + - uid: 25071 components: - pos: 53.5,-30.5 parent: 2 type: Transform - proto: UniformPrinter entities: - - uid: 25065 + - uid: 25072 components: - pos: 26.5,-34.5 parent: 2 type: Transform - proto: UniformShortsRedWithTop entities: - - uid: 25066 + - uid: 25073 components: - pos: 30.57281,4.627015 parent: 2 type: Transform - proto: UprightPianoInstrument entities: - - uid: 25067 + - uid: 25074 components: - rot: -1.5707963267948966 rad pos: -47.5,-75.5 parent: 2 type: Transform - - uid: 25068 + - uid: 25075 components: - rot: -1.5707963267948966 rad pos: 8.5,5.5 @@ -189966,43 +175076,43 @@ entities: type: Transform - proto: Vaccinator entities: - - uid: 25069 + - uid: 25076 components: - pos: -22.5,-77.5 parent: 2 type: Transform - - uid: 25070 + - uid: 25077 components: - pos: -20.5,-76.5 parent: 2 type: Transform - proto: VehicleKeyJanicart entities: - - uid: 25071 + - uid: 25078 components: - pos: -13.519899,-23.451248 parent: 2 type: Transform - proto: VehicleKeySecway entities: - - uid: 25072 + - uid: 25079 components: - pos: 12.469265,19.745214 parent: 2 type: Transform - - uid: 25073 + - uid: 25080 components: - pos: 12.39114,19.557714 parent: 2 type: Transform - - uid: 25074 + - uid: 25081 components: - pos: 12.594265,19.82334 parent: 2 type: Transform - proto: VendingBarDrobe entities: - - uid: 25075 + - uid: 25082 components: - flags: SessionSpecific type: MetaData @@ -190011,7 +175121,7 @@ entities: type: Transform - proto: VendingMachineAtmosDrobe entities: - - uid: 25076 + - uid: 25083 components: - flags: SessionSpecific type: MetaData @@ -190020,21 +175130,21 @@ entities: type: Transform - proto: VendingMachineBooze entities: - - uid: 25077 + - uid: 25084 components: - flags: SessionSpecific type: MetaData - pos: -41.5,-74.5 parent: 2 type: Transform - - uid: 25078 + - uid: 25085 components: - flags: SessionSpecific type: MetaData - pos: 18.5,10.5 parent: 2 type: Transform - - uid: 25079 + - uid: 25086 components: - flags: SessionSpecific type: MetaData @@ -190043,7 +175153,7 @@ entities: type: Transform - proto: VendingMachineCargoDrobe entities: - - uid: 25080 + - uid: 25087 components: - flags: SessionSpecific type: MetaData @@ -190052,7 +175162,7 @@ entities: type: Transform - proto: VendingMachineCart entities: - - uid: 25081 + - uid: 25088 components: - flags: SessionSpecific type: MetaData @@ -190061,21 +175171,21 @@ entities: type: Transform - proto: VendingMachineChang entities: - - uid: 25082 + - uid: 25089 components: - flags: SessionSpecific type: MetaData - pos: 53.5,3.5 parent: 2 type: Transform - - uid: 25083 + - uid: 25090 components: - flags: SessionSpecific type: MetaData - pos: -2.5,-31.5 parent: 2 type: Transform - - uid: 25084 + - uid: 25091 components: - flags: SessionSpecific type: MetaData @@ -190084,7 +175194,7 @@ entities: type: Transform - proto: VendingMachineChapel entities: - - uid: 25085 + - uid: 25092 components: - flags: SessionSpecific type: MetaData @@ -190093,7 +175203,7 @@ entities: type: Transform - proto: VendingMachineChefDrobe entities: - - uid: 25086 + - uid: 25093 components: - flags: SessionSpecific type: MetaData @@ -190102,7 +175212,7 @@ entities: type: Transform - proto: VendingMachineChefvend entities: - - uid: 25087 + - uid: 25094 components: - flags: SessionSpecific type: MetaData @@ -190111,7 +175221,7 @@ entities: type: Transform - proto: VendingMachineChemDrobe entities: - - uid: 25088 + - uid: 25095 components: - flags: SessionSpecific type: MetaData @@ -190120,7 +175230,7 @@ entities: type: Transform - proto: VendingMachineChemicals entities: - - uid: 25089 + - uid: 25096 components: - flags: SessionSpecific type: MetaData @@ -190131,42 +175241,42 @@ entities: type: VendingMachine - proto: VendingMachineCigs entities: - - uid: 25090 + - uid: 25097 components: - flags: SessionSpecific type: MetaData - pos: 2.5,58.5 parent: 2 type: Transform - - uid: 25091 + - uid: 25098 components: - flags: SessionSpecific type: MetaData - pos: -6.5,-34.5 parent: 2 type: Transform - - uid: 25092 + - uid: 25099 components: - flags: SessionSpecific type: MetaData - pos: 7.5,-2.5 parent: 2 type: Transform - - uid: 25093 + - uid: 25100 components: - flags: SessionSpecific type: MetaData - pos: 61.5,-13.5 parent: 2 type: Transform - - uid: 25094 + - uid: 25101 components: - flags: SessionSpecific type: MetaData - pos: -13.5,8.5 parent: 2 type: Transform - - uid: 25095 + - uid: 25102 components: - flags: SessionSpecific type: MetaData @@ -190175,7 +175285,7 @@ entities: type: Transform - proto: VendingMachineClothing entities: - - uid: 25096 + - uid: 25103 components: - flags: SessionSpecific type: MetaData @@ -190184,77 +175294,77 @@ entities: type: Transform - proto: VendingMachineCoffee entities: - - uid: 25097 + - uid: 25104 components: - flags: SessionSpecific type: MetaData - pos: -10.5,-52.5 parent: 2 type: Transform - - uid: 25098 + - uid: 25105 components: - flags: SessionSpecific type: MetaData - pos: 37.5,-17.5 parent: 2 type: Transform - - uid: 25099 + - uid: 25106 components: - flags: SessionSpecific type: MetaData - pos: 45.5,17.5 parent: 2 type: Transform - - uid: 25100 + - uid: 25107 components: - flags: SessionSpecific type: MetaData - pos: 51.5,3.5 parent: 2 type: Transform - - uid: 25101 + - uid: 25108 components: - flags: SessionSpecific type: MetaData - pos: 60.5,-13.5 parent: 2 type: Transform - - uid: 25102 + - uid: 25109 components: - flags: SessionSpecific type: MetaData - pos: -33.5,-22.5 parent: 2 type: Transform - - uid: 25103 + - uid: 25110 components: - flags: SessionSpecific type: MetaData - pos: -43.5,4.5 parent: 2 type: Transform - - uid: 25104 + - uid: 25111 components: - flags: SessionSpecific type: MetaData - pos: -0.5,43.5 parent: 2 type: Transform - - uid: 25105 + - uid: 25112 components: - flags: SessionSpecific type: MetaData - pos: -14.5,49.5 parent: 2 type: Transform - - uid: 25106 + - uid: 25113 components: - flags: SessionSpecific type: MetaData - pos: 51.5,-37.5 parent: 2 type: Transform - - uid: 25107 + - uid: 25114 components: - flags: SessionSpecific type: MetaData @@ -190263,21 +175373,21 @@ entities: type: Transform - proto: VendingMachineCola entities: - - uid: 25108 + - uid: 25115 components: - flags: SessionSpecific type: MetaData - pos: 8.5,-2.5 parent: 2 type: Transform - - uid: 25109 + - uid: 25116 components: - flags: SessionSpecific type: MetaData - pos: 27.5,-11.5 parent: 2 type: Transform - - uid: 25110 + - uid: 25117 components: - flags: SessionSpecific type: MetaData @@ -190286,14 +175396,14 @@ entities: type: Transform - proto: VendingMachineCondiments entities: - - uid: 25111 + - uid: 25118 components: - flags: SessionSpecific type: MetaData - pos: 8.5,10.5 parent: 2 type: Transform - - uid: 25112 + - uid: 25119 components: - flags: SessionSpecific type: MetaData @@ -190302,7 +175412,7 @@ entities: type: Transform - proto: VendingMachineDetDrobe entities: - - uid: 25113 + - uid: 25120 components: - flags: SessionSpecific type: MetaData @@ -190311,14 +175421,14 @@ entities: type: Transform - proto: VendingMachineDinnerware entities: - - uid: 25114 + - uid: 25121 components: - flags: SessionSpecific type: MetaData - pos: -0.5,5.5 parent: 2 type: Transform - - uid: 25115 + - uid: 25122 components: - flags: SessionSpecific type: MetaData @@ -190327,28 +175437,28 @@ entities: type: Transform - proto: VendingMachineDiscount entities: - - uid: 25116 + - uid: 25123 components: - flags: SessionSpecific type: MetaData - pos: -6.5,-32.5 parent: 2 type: Transform - - uid: 25117 + - uid: 25124 components: - flags: SessionSpecific type: MetaData - pos: -33.5,-23.5 parent: 2 type: Transform - - uid: 25118 + - uid: 25125 components: - flags: SessionSpecific type: MetaData - pos: -43.5,3.5 parent: 2 type: Transform - - uid: 25119 + - uid: 25126 components: - flags: SessionSpecific type: MetaData @@ -190357,7 +175467,7 @@ entities: type: Transform - proto: VendingMachineEngiDrobe entities: - - uid: 25120 + - uid: 25127 components: - flags: SessionSpecific type: MetaData @@ -190366,7 +175476,7 @@ entities: type: Transform - proto: VendingMachineEngivend entities: - - uid: 25121 + - uid: 25128 components: - flags: SessionSpecific type: MetaData @@ -190375,7 +175485,7 @@ entities: type: Transform - proto: VendingMachineGames entities: - - uid: 25122 + - uid: 25129 components: - flags: SessionSpecific type: MetaData @@ -190384,7 +175494,7 @@ entities: type: Transform - proto: VendingMachineGeneDrobe entities: - - uid: 25123 + - uid: 25130 components: - flags: SessionSpecific type: MetaData @@ -190393,7 +175503,7 @@ entities: type: Transform - proto: VendingMachineHappyHonk entities: - - uid: 25124 + - uid: 25131 components: - flags: SessionSpecific type: MetaData @@ -190402,7 +175512,7 @@ entities: type: Transform - proto: VendingMachineHydrobe entities: - - uid: 25125 + - uid: 25132 components: - flags: SessionSpecific type: MetaData @@ -190411,7 +175521,7 @@ entities: type: Transform - proto: VendingMachineJaniDrobe entities: - - uid: 25126 + - uid: 25133 components: - flags: SessionSpecific type: MetaData @@ -190420,7 +175530,7 @@ entities: type: Transform - proto: VendingMachineLawDrobe entities: - - uid: 25127 + - uid: 25134 components: - flags: SessionSpecific type: MetaData @@ -190429,14 +175539,14 @@ entities: type: Transform - proto: VendingMachineMedical entities: - - uid: 25128 + - uid: 25135 components: - flags: SessionSpecific type: MetaData - pos: -28.5,-75.5 parent: 2 type: Transform - - uid: 25129 + - uid: 25136 components: - flags: SessionSpecific type: MetaData @@ -190445,7 +175555,7 @@ entities: type: Transform - proto: VendingMachineMediDrobe entities: - - uid: 25130 + - uid: 25137 components: - flags: SessionSpecific type: MetaData @@ -190454,7 +175564,7 @@ entities: type: Transform - proto: VendingMachineNutri entities: - - uid: 25131 + - uid: 25138 components: - flags: SessionSpecific type: MetaData @@ -190463,14 +175573,14 @@ entities: type: Transform - proto: VendingMachineRestockSmokes entities: - - uid: 25132 + - uid: 25139 components: - pos: -26.439571,39.52594 parent: 2 type: Transform - proto: VendingMachineRoboDrobe entities: - - uid: 25133 + - uid: 25140 components: - flags: SessionSpecific type: MetaData @@ -190479,7 +175589,7 @@ entities: type: Transform - proto: VendingMachineSalvage entities: - - uid: 25134 + - uid: 25141 components: - flags: SessionSpecific type: MetaData @@ -190488,7 +175598,7 @@ entities: type: Transform - proto: VendingMachineSciDrobe entities: - - uid: 25135 + - uid: 25142 components: - flags: SessionSpecific type: MetaData @@ -190497,7 +175607,7 @@ entities: type: Transform - proto: VendingMachineSec entities: - - uid: 25136 + - uid: 25143 components: - flags: SessionSpecific type: MetaData @@ -190506,7 +175616,7 @@ entities: type: Transform - proto: VendingMachineSecDrobe entities: - - uid: 25137 + - uid: 25144 components: - flags: SessionSpecific type: MetaData @@ -190515,7 +175625,7 @@ entities: type: Transform - proto: VendingMachineSeeds entities: - - uid: 25138 + - uid: 25145 components: - flags: SessionSpecific type: MetaData @@ -190524,7 +175634,7 @@ entities: type: Transform - proto: VendingMachineSeedsUnlocked entities: - - uid: 25139 + - uid: 25146 components: - flags: SessionSpecific type: MetaData @@ -190533,7 +175643,7 @@ entities: type: Transform - proto: VendingMachineSmartFridge entities: - - uid: 25140 + - uid: 25147 components: - flags: SessionSpecific type: MetaData @@ -190544,14 +175654,14 @@ entities: type: VendingMachine - proto: VendingMachineSnack entities: - - uid: 25141 + - uid: 25148 components: - flags: SessionSpecific type: MetaData - pos: 2.5,57.5 parent: 2 type: Transform - - uid: 25142 + - uid: 25149 components: - flags: SessionSpecific type: MetaData @@ -190560,35 +175670,35 @@ entities: type: Transform - proto: VendingMachineSovietSoda entities: - - uid: 25143 + - uid: 25150 components: - flags: SessionSpecific type: MetaData - pos: 61.5,-15.5 parent: 2 type: Transform - - uid: 25144 + - uid: 25151 components: - flags: SessionSpecific type: MetaData - pos: -37.5,-72.5 parent: 2 type: Transform - - uid: 25145 + - uid: 25152 components: - flags: SessionSpecific type: MetaData - pos: -40.5,27.5 parent: 2 type: Transform - - uid: 25146 + - uid: 25153 components: - flags: SessionSpecific type: MetaData - pos: 44.5,-15.5 parent: 2 type: Transform - - uid: 25147 + - uid: 25154 components: - flags: SessionSpecific type: MetaData @@ -190597,7 +175707,7 @@ entities: type: Transform - proto: VendingMachineTankDispenserEngineering entities: - - uid: 25148 + - uid: 25155 components: - flags: SessionSpecific type: MetaData @@ -190606,49 +175716,49 @@ entities: type: Transform - proto: VendingMachineTankDispenserEVA entities: - - uid: 25149 + - uid: 25156 components: - flags: SessionSpecific type: MetaData - pos: 28.5,-14.5 parent: 2 type: Transform - - uid: 25150 + - uid: 25157 components: - flags: SessionSpecific type: MetaData - pos: -22.5,-36.5 parent: 2 type: Transform - - uid: 25151 + - uid: 25158 components: - flags: SessionSpecific type: MetaData - pos: -35.5,-51.5 parent: 2 type: Transform - - uid: 25152 + - uid: 25159 components: - flags: SessionSpecific type: MetaData - pos: -48.5,36.5 parent: 2 type: Transform - - uid: 25153 + - uid: 25160 components: - flags: SessionSpecific type: MetaData - pos: 28.5,47.5 parent: 2 type: Transform - - uid: 25154 + - uid: 25161 components: - flags: SessionSpecific type: MetaData - pos: -67.5,-41.5 parent: 2 type: Transform - - uid: 25155 + - uid: 25162 components: - flags: SessionSpecific type: MetaData @@ -190657,28 +175767,28 @@ entities: type: Transform - proto: VendingMachineTheater entities: - - uid: 25156 + - uid: 25163 components: - flags: SessionSpecific type: MetaData - pos: 1.5,-9.5 parent: 2 type: Transform - - uid: 25157 + - uid: 25164 components: - flags: SessionSpecific type: MetaData - pos: -8.5,-4.5 parent: 2 type: Transform - - uid: 25158 + - uid: 25165 components: - flags: SessionSpecific type: MetaData - pos: -20.5,31.5 parent: 2 type: Transform - - uid: 25159 + - uid: 25166 components: - flags: SessionSpecific type: MetaData @@ -190687,28 +175797,28 @@ entities: type: Transform - proto: VendingMachineVendomat entities: - - uid: 25160 + - uid: 25167 components: - flags: SessionSpecific type: MetaData - pos: 27.5,-12.5 parent: 2 type: Transform - - uid: 25161 + - uid: 25168 components: - flags: SessionSpecific type: MetaData - pos: -27.5,-70.5 parent: 2 type: Transform - - uid: 25162 + - uid: 25169 components: - flags: SessionSpecific type: MetaData - pos: -43.5,6.5 parent: 2 type: Transform - - uid: 25163 + - uid: 25170 components: - flags: SessionSpecific type: MetaData @@ -190717,7 +175827,7 @@ entities: type: Transform - proto: VendingMachineViroDrobe entities: - - uid: 25164 + - uid: 25171 components: - flags: SessionSpecific type: MetaData @@ -190726,7 +175836,7 @@ entities: type: Transform - proto: VendingMachineWinter entities: - - uid: 25165 + - uid: 25172 components: - flags: SessionSpecific type: MetaData @@ -190737,28 +175847,28 @@ entities: type: VendingMachine - proto: VendingMachineYouTool entities: - - uid: 25166 + - uid: 25173 components: - flags: SessionSpecific type: MetaData - pos: 39.5,-53.5 parent: 2 type: Transform - - uid: 25167 + - uid: 25174 components: - flags: SessionSpecific type: MetaData - pos: -37.5,-4.5 parent: 2 type: Transform - - uid: 25168 + - uid: 25175 components: - flags: SessionSpecific type: MetaData - pos: -23.5,-19.5 parent: 2 type: Transform - - uid: 25169 + - uid: 25176 components: - flags: SessionSpecific type: MetaData @@ -190767,25908 +175877,25906 @@ entities: type: Transform - proto: VoiceTrigger entities: - - uid: 25170 + - uid: 25177 components: - pos: 65.475975,-28.50289 parent: 2 type: Transform + - nextSound: 1082.205655 + type: EmitSoundOnCollide - proto: WallmountTelevision entities: - - uid: 25171 + - uid: 25178 components: - pos: 17.5,8.5 parent: 2 type: Transform - proto: WallPlastitanium entities: - - uid: 25172 + - uid: 25179 components: - pos: 62.5,-46.5 parent: 2 type: Transform - - uid: 25173 + - uid: 25180 components: - pos: -53.5,-84.5 parent: 2 type: Transform - - uid: 25174 + - uid: 25181 components: - pos: -55.5,-84.5 parent: 2 type: Transform - - uid: 25175 + - uid: 25182 components: - pos: -53.5,-85.5 parent: 2 type: Transform - - uid: 25176 + - uid: 25183 components: - pos: -51.5,-85.5 parent: 2 type: Transform - - uid: 25177 + - uid: 25184 components: - pos: -51.5,-86.5 parent: 2 type: Transform - - uid: 25178 + - uid: 25185 components: - rot: 1.5707963267948966 rad pos: -50.5,-88.5 parent: 2 type: Transform - - uid: 25179 + - uid: 25186 components: - rot: 1.5707963267948966 rad pos: -50.5,-86.5 parent: 2 type: Transform - - uid: 25180 + - uid: 25187 components: - pos: -51.5,-88.5 parent: 2 type: Transform - - uid: 25181 + - uid: 25188 components: - pos: -51.5,-89.5 parent: 2 type: Transform - - uid: 25182 + - uid: 25189 components: - pos: -56.5,-89.5 parent: 2 type: Transform - - uid: 25183 + - uid: 25190 components: - pos: -57.5,-89.5 parent: 2 type: Transform - - uid: 25184 + - uid: 25191 components: - pos: -55.5,-90.5 parent: 2 type: Transform - - uid: 25185 + - uid: 25192 components: - pos: -57.5,-87.5 parent: 2 type: Transform - - uid: 25186 + - uid: 25193 components: - pos: -53.5,-90.5 parent: 2 type: Transform - - uid: 25187 + - uid: 25194 components: - pos: -53.5,-89.5 parent: 2 type: Transform - - uid: 25188 + - uid: 25195 components: - pos: -57.5,-86.5 parent: 2 type: Transform - - uid: 25189 + - uid: 25196 components: - pos: -57.5,-88.5 parent: 2 type: Transform - - uid: 25190 + - uid: 25197 components: - pos: -57.5,-85.5 parent: 2 type: Transform - - uid: 25191 + - uid: 25198 components: - pos: -56.5,-85.5 parent: 2 type: Transform - proto: WallReinforced entities: - - uid: 25192 + - uid: 25199 components: - pos: 70.5,-26.5 parent: 2 type: Transform - - uid: 25193 + - uid: 25200 components: - pos: 64.5,-29.5 parent: 2 type: Transform - - uid: 25194 + - uid: 25201 components: - pos: 64.5,-28.5 parent: 2 type: Transform - - uid: 25195 + - uid: 25202 components: - pos: 66.5,-26.5 parent: 2 type: Transform - - uid: 25196 + - uid: 25203 components: - pos: 67.5,-26.5 parent: 2 type: Transform - - uid: 25197 + - uid: 25204 components: - rot: -1.5707963267948966 rad pos: -48.5,41.5 parent: 2 type: Transform - - uid: 25198 + - uid: 25205 components: - rot: -1.5707963267948966 rad pos: -49.5,41.5 parent: 2 type: Transform - - uid: 25199 + - uid: 25206 components: - rot: -1.5707963267948966 rad pos: -50.5,41.5 parent: 2 type: Transform - - uid: 25200 + - uid: 25207 components: - rot: -1.5707963267948966 rad pos: -50.5,45.5 parent: 2 type: Transform - - uid: 25201 + - uid: 25208 components: - rot: -1.5707963267948966 rad pos: -50.5,46.5 parent: 2 type: Transform - - uid: 25202 + - uid: 25209 components: - rot: -1.5707963267948966 rad pos: -53.5,41.5 parent: 2 type: Transform - - uid: 25203 + - uid: 25210 components: - rot: -1.5707963267948966 rad pos: -52.5,41.5 parent: 2 type: Transform - - uid: 25204 + - uid: 25211 components: - rot: -1.5707963267948966 rad pos: -51.5,41.5 parent: 2 type: Transform - - uid: 25205 + - uid: 25212 components: - rot: -1.5707963267948966 rad pos: -51.5,44.5 parent: 2 type: Transform - - uid: 25206 + - uid: 25213 components: - rot: -1.5707963267948966 rad pos: -52.5,44.5 parent: 2 type: Transform - - uid: 25207 + - uid: 25214 components: - rot: -1.5707963267948966 rad pos: -53.5,44.5 parent: 2 type: Transform - - uid: 25208 + - uid: 25215 components: - rot: -1.5707963267948966 rad pos: -48.5,45.5 parent: 2 type: Transform - - uid: 25209 + - uid: 25216 components: - rot: -1.5707963267948966 rad pos: -43.5,40.5 parent: 2 type: Transform - - uid: 25210 + - uid: 25217 components: - rot: -1.5707963267948966 rad pos: -44.5,40.5 parent: 2 type: Transform - - uid: 25211 + - uid: 25218 components: - rot: 1.5707963267948966 rad pos: 29.5,-64.5 parent: 2 type: Transform - - uid: 25212 + - uid: 25219 components: - rot: 3.141592653589793 rad pos: 34.5,-10.5 parent: 2 type: Transform - - uid: 25213 + - uid: 25220 components: - rot: 3.141592653589793 rad pos: 23.5,-57.5 parent: 2 type: Transform - - uid: 25214 + - uid: 25221 components: - pos: 11.5,-30.5 parent: 2 type: Transform - - uid: 25215 + - uid: 25222 components: - rot: -1.5707963267948966 rad pos: 37.5,3.5 parent: 2 type: Transform - - uid: 25216 + - uid: 25223 components: - pos: 72.5,-42.5 parent: 2 type: Transform - - uid: 25217 + - uid: 25224 components: - pos: 71.5,-42.5 parent: 2 type: Transform - - uid: 25218 + - uid: 25225 components: - rot: -1.5707963267948966 rad pos: 36.5,9.5 parent: 2 type: Transform - - uid: 25219 + - uid: 25226 components: - rot: -1.5707963267948966 rad pos: 0.5,-79.5 parent: 2 type: Transform - - uid: 25220 + - uid: 25227 components: - rot: 3.141592653589793 rad pos: 26.5,-61.5 parent: 2 type: Transform - - uid: 25221 + - uid: 25228 components: - rot: 3.141592653589793 rad pos: 30.5,-9.5 parent: 2 type: Transform - - uid: 25222 + - uid: 25229 components: - rot: 3.141592653589793 rad pos: 33.5,-61.5 parent: 2 type: Transform - - uid: 25223 + - uid: 25230 components: - rot: -1.5707963267948966 rad pos: 65.5,-38.5 parent: 2 type: Transform - - uid: 25224 + - uid: 25231 components: - rot: -1.5707963267948966 rad pos: 37.5,6.5 parent: 2 type: Transform - - uid: 25225 + - uid: 25232 components: - pos: 66.5,-42.5 parent: 2 type: Transform - - uid: 25226 + - uid: 25233 components: - rot: 3.141592653589793 rad pos: 24.5,-61.5 parent: 2 type: Transform - - uid: 25227 + - uid: 25234 components: - pos: 67.5,-42.5 parent: 2 type: Transform - - uid: 25228 + - uid: 25235 components: - rot: -1.5707963267948966 rad pos: 33.5,12.5 parent: 2 type: Transform - - uid: 25229 + - uid: 25236 components: - rot: -1.5707963267948966 rad pos: -25.5,-83.5 parent: 2 type: Transform - - uid: 25230 + - uid: 25237 components: - pos: 30.5,-26.5 parent: 2 type: Transform - - uid: 25231 + - uid: 25238 components: - pos: 19.5,-26.5 parent: 2 type: Transform - - uid: 25232 + - uid: 25239 components: - pos: 18.5,-67.5 parent: 2 type: Transform - - uid: 25233 + - uid: 25240 components: - rot: -1.5707963267948966 rad pos: 34.5,-83.5 parent: 2 type: Transform - - uid: 25234 + - uid: 25241 components: - rot: 3.141592653589793 rad pos: 26.5,24.5 parent: 2 type: Transform - - uid: 25235 + - uid: 25242 components: - pos: -16.5,-80.5 parent: 2 type: Transform - - uid: 25236 + - uid: 25243 components: - pos: -13.5,-80.5 parent: 2 type: Transform - - uid: 25237 + - uid: 25244 components: - rot: 3.141592653589793 rad pos: 31.5,-19.5 parent: 2 type: Transform - - uid: 25238 + - uid: 25245 components: - pos: 38.5,17.5 parent: 2 type: Transform - - uid: 25239 + - uid: 25246 components: - pos: 30.5,9.5 parent: 2 type: Transform - - uid: 25240 + - uid: 25247 components: - pos: -14.5,-80.5 parent: 2 type: Transform - - uid: 25241 + - uid: 25248 components: - pos: -16.5,-74.5 parent: 2 type: Transform - - uid: 25242 + - uid: 25249 components: - pos: -13.5,-75.5 parent: 2 type: Transform - - uid: 25243 + - uid: 25250 components: - rot: -1.5707963267948966 rad pos: -31.5,-80.5 parent: 2 type: Transform - - uid: 25244 + - uid: 25251 components: - pos: -27.5,-84.5 parent: 2 type: Transform - - uid: 25245 + - uid: 25252 components: - pos: -27.5,-85.5 parent: 2 type: Transform - - uid: 25246 + - uid: 25253 components: - rot: -1.5707963267948966 rad pos: -18.5,-83.5 parent: 2 type: Transform - - uid: 25247 + - uid: 25254 components: - pos: -27.5,-90.5 parent: 2 type: Transform - - uid: 25248 + - uid: 25255 components: - rot: -1.5707963267948966 rad pos: 43.5,49.5 parent: 2 type: Transform - - uid: 25249 + - uid: 25256 components: - rot: 3.141592653589793 rad pos: 24.5,24.5 parent: 2 type: Transform - - uid: 25250 + - uid: 25257 components: - rot: 1.5707963267948966 rad pos: 27.5,19.5 parent: 2 type: Transform - - uid: 25251 + - uid: 25258 components: - rot: 1.5707963267948966 rad pos: 33.5,32.5 parent: 2 type: Transform - - uid: 25252 + - uid: 25259 components: - rot: 1.5707963267948966 rad pos: 16.5,15.5 parent: 2 type: Transform - - uid: 25253 + - uid: 25260 components: - rot: 3.141592653589793 rad pos: 39.5,12.5 parent: 2 type: Transform - - uid: 25254 + - uid: 25261 components: - pos: 42.5,51.5 parent: 2 type: Transform - - uid: 25255 + - uid: 25262 components: - pos: -15.5,-2.5 parent: 2 type: Transform - - uid: 25256 + - uid: 25263 components: - pos: -18.5,-86.5 parent: 2 type: Transform - - uid: 25257 + - uid: 25264 components: - pos: -22.5,-48.5 parent: 2 type: Transform - - uid: 25258 + - uid: 25265 components: - pos: 3.5,15.5 parent: 2 type: Transform - - uid: 25259 + - uid: 25266 components: - pos: 29.5,-33.5 parent: 2 type: Transform - - uid: 25260 + - uid: 25267 components: - pos: 7.5,-71.5 parent: 2 type: Transform - - uid: 25261 + - uid: 25268 components: - pos: -1.5,-30.5 parent: 2 type: Transform - - uid: 25262 + - uid: 25269 components: - pos: -23.5,5.5 parent: 2 type: Transform - - uid: 25263 + - uid: 25270 components: - pos: 44.5,-25.5 parent: 2 type: Transform - - uid: 25264 + - uid: 25271 components: - pos: 49.5,-25.5 parent: 2 type: Transform - - uid: 25265 + - uid: 25272 components: - pos: 49.5,-23.5 parent: 2 type: Transform - - uid: 25266 + - uid: 25273 components: - pos: 39.5,-24.5 parent: 2 type: Transform - - uid: 25267 + - uid: 25274 components: - pos: 28.5,-33.5 parent: 2 type: Transform - - uid: 25268 + - uid: 25275 components: - pos: 27.5,26.5 parent: 2 type: Transform - - uid: 25269 + - uid: 25276 components: - pos: 31.5,26.5 parent: 2 type: Transform - - uid: 25270 + - uid: 25277 components: - pos: 31.5,25.5 parent: 2 type: Transform - - uid: 25271 + - uid: 25278 components: - rot: 3.141592653589793 rad pos: 30.5,33.5 parent: 2 type: Transform - - uid: 25272 + - uid: 25279 components: - rot: -1.5707963267948966 rad pos: -2.5,-21.5 parent: 2 type: Transform - - uid: 25273 + - uid: 25280 components: - rot: -1.5707963267948966 rad pos: -0.5,-20.5 parent: 2 type: Transform - - uid: 25274 + - uid: 25281 components: - rot: -1.5707963267948966 rad pos: -2.5,-22.5 parent: 2 type: Transform - - uid: 25275 + - uid: 25282 components: - rot: -1.5707963267948966 rad pos: -0.5,-19.5 parent: 2 type: Transform - - uid: 25276 + - uid: 25283 components: - rot: -1.5707963267948966 rad pos: -1.5,-21.5 parent: 2 type: Transform - - uid: 25277 + - uid: 25284 components: - rot: -1.5707963267948966 rad pos: 4.5,-18.5 parent: 2 type: Transform - - uid: 25278 + - uid: 25285 components: - rot: -1.5707963267948966 rad pos: -0.5,-18.5 parent: 2 type: Transform - - uid: 25279 + - uid: 25286 components: - pos: 19.5,15.5 parent: 2 type: Transform - - uid: 25280 + - uid: 25287 components: - rot: -1.5707963267948966 rad pos: 20.5,-31.5 parent: 2 type: Transform - - uid: 25281 + - uid: 25288 components: - pos: 3.5,18.5 parent: 2 type: Transform - - uid: 25282 + - uid: 25289 components: - pos: 4.5,18.5 parent: 2 type: Transform - - uid: 25283 + - uid: 25290 components: - pos: -15.5,-0.5 parent: 2 type: Transform - - uid: 25284 + - uid: 25291 components: - pos: 13.5,15.5 parent: 2 type: Transform - - uid: 25285 + - uid: 25292 components: - pos: -23.5,-1.5 parent: 2 type: Transform - - uid: 25286 + - uid: 25293 components: - pos: -23.5,-3.5 parent: 2 type: Transform - - uid: 25287 + - uid: 25294 components: - pos: -20.5,-3.5 parent: 2 type: Transform - - uid: 25288 + - uid: 25295 components: - pos: -20.5,-2.5 parent: 2 type: Transform - - uid: 25289 + - uid: 25296 components: - pos: -18.5,-1.5 parent: 2 type: Transform - - uid: 25290 + - uid: 25297 components: - rot: 3.141592653589793 rad pos: 29.5,-20.5 parent: 2 type: Transform - - uid: 25291 + - uid: 25298 components: - rot: -1.5707963267948966 rad pos: 44.5,49.5 parent: 2 type: Transform - - uid: 25292 + - uid: 25299 components: - rot: -1.5707963267948966 rad pos: 43.5,42.5 parent: 2 type: Transform - - uid: 25293 + - uid: 25300 components: - rot: -1.5707963267948966 rad pos: 38.5,42.5 parent: 2 type: Transform - - uid: 25294 + - uid: 25301 components: - rot: -1.5707963267948966 rad pos: 34.5,42.5 parent: 2 type: Transform - - uid: 25295 + - uid: 25302 components: - rot: -1.5707963267948966 rad pos: 33.5,43.5 parent: 2 type: Transform - - uid: 25296 + - uid: 25303 components: - pos: 35.5,50.5 parent: 2 type: Transform - - uid: 25297 + - uid: 25304 components: - pos: 35.5,52.5 parent: 2 type: Transform - - uid: 25298 + - uid: 25305 components: - pos: 36.5,52.5 parent: 2 type: Transform - - uid: 25299 + - uid: 25306 components: - pos: 34.5,48.5 parent: 2 type: Transform - - uid: 25300 + - uid: 25307 components: - pos: -15.5,-1.5 parent: 2 type: Transform - - uid: 25301 + - uid: 25308 components: - rot: -1.5707963267948966 rad pos: 36.5,11.5 parent: 2 type: Transform - - uid: 25302 + - uid: 25309 components: - rot: 3.141592653589793 rad pos: 33.5,-19.5 parent: 2 type: Transform - - uid: 25303 + - uid: 25310 components: - rot: 1.5707963267948966 rad pos: 29.5,-63.5 parent: 2 type: Transform - - uid: 25304 + - uid: 25311 components: - rot: -1.5707963267948966 rad pos: 39.5,3.5 parent: 2 type: Transform - - uid: 25305 + - uid: 25312 components: - rot: -1.5707963267948966 rad pos: 1.5,-76.5 parent: 2 type: Transform - - uid: 25306 + - uid: 25313 components: - rot: 3.141592653589793 rad pos: -15.5,5.5 parent: 2 type: Transform - - uid: 25307 + - uid: 25314 components: - rot: 3.141592653589793 rad pos: 17.5,-21.5 parent: 2 type: Transform - - uid: 25308 + - uid: 25315 components: - rot: 3.141592653589793 rad pos: 17.5,-22.5 parent: 2 type: Transform - - uid: 25309 + - uid: 25316 components: - rot: 3.141592653589793 rad pos: 30.5,-19.5 parent: 2 type: Transform - - uid: 25310 + - uid: 25317 components: - pos: 28.5,-13.5 parent: 2 type: Transform - - uid: 25311 + - uid: 25318 components: - rot: 3.141592653589793 rad pos: 20.5,-20.5 parent: 2 type: Transform - - uid: 25312 + - uid: 25319 components: - rot: 3.141592653589793 rad pos: 17.5,-23.5 parent: 2 type: Transform - - uid: 25313 + - uid: 25320 components: - rot: -1.5707963267948966 rad pos: -0.5,-84.5 parent: 2 type: Transform - - uid: 25314 + - uid: 25321 components: - rot: 3.141592653589793 rad pos: 28.5,-61.5 parent: 2 type: Transform - - uid: 25315 + - uid: 25322 components: - pos: -23.5,1.5 parent: 2 type: Transform - - uid: 25316 + - uid: 25323 components: - pos: 8.5,-71.5 parent: 2 type: Transform - - uid: 25317 + - uid: 25324 components: - pos: 5.5,-80.5 parent: 2 type: Transform - - uid: 25318 + - uid: 25325 components: - rot: -1.5707963267948966 rad pos: 0.5,-77.5 parent: 2 type: Transform - - uid: 25319 + - uid: 25326 components: - pos: -18.5,-2.5 parent: 2 type: Transform - - uid: 25320 + - uid: 25327 components: - rot: -1.5707963267948966 rad pos: 33.5,10.5 parent: 2 type: Transform - - uid: 25321 + - uid: 25328 components: - rot: -1.5707963267948966 rad pos: -28.5,-81.5 parent: 2 type: Transform - - uid: 25322 + - uid: 25329 components: - rot: -1.5707963267948966 rad pos: -19.5,-81.5 parent: 2 type: Transform - - uid: 25323 + - uid: 25330 components: - rot: -1.5707963267948966 rad pos: -24.5,-81.5 parent: 2 type: Transform - - uid: 25324 + - uid: 25331 components: - pos: -13.5,-78.5 parent: 2 type: Transform - - uid: 25325 + - uid: 25332 components: - pos: -21.5,-57.5 parent: 2 type: Transform - - uid: 25326 + - uid: 25333 components: - pos: -21.5,-55.5 parent: 2 type: Transform - - uid: 25327 + - uid: 25334 components: - pos: 29.5,33.5 parent: 2 type: Transform - - uid: 25328 + - uid: 25335 components: - rot: 1.5707963267948966 rad pos: 38.5,-17.5 parent: 2 type: Transform - - uid: 25329 + - uid: 25336 components: - rot: 1.5707963267948966 rad pos: 37.5,-19.5 parent: 2 type: Transform - - uid: 25330 + - uid: 25337 components: - rot: -1.5707963267948966 rad pos: -2.5,-24.5 parent: 2 type: Transform - - uid: 25331 + - uid: 25338 components: - rot: -1.5707963267948966 rad pos: -1.5,-24.5 parent: 2 type: Transform - - uid: 25332 + - uid: 25339 components: - rot: -1.5707963267948966 rad pos: -0.5,-24.5 parent: 2 type: Transform - - uid: 25333 + - uid: 25340 components: - rot: 3.141592653589793 rad pos: 3.5,-18.5 parent: 2 type: Transform - - uid: 25334 + - uid: 25341 components: - rot: -1.5707963267948966 rad pos: 24.5,-37.5 parent: 2 type: Transform - - uid: 25335 + - uid: 25342 components: - pos: 33.5,-28.5 parent: 2 type: Transform - - uid: 25336 + - uid: 25343 components: - pos: 20.5,-34.5 parent: 2 type: Transform - - uid: 25337 + - uid: 25344 components: - pos: 20.5,-33.5 parent: 2 type: Transform - - uid: 25338 + - uid: 25345 components: - pos: 33.5,-29.5 parent: 2 type: Transform - - uid: 25339 + - uid: 25346 components: - pos: 40.5,-30.5 parent: 2 type: Transform - - uid: 25340 + - uid: 25347 components: - pos: 3.5,22.5 parent: 2 type: Transform - - uid: 25341 + - uid: 25348 components: - pos: 40.5,-31.5 parent: 2 type: Transform - - uid: 25342 + - uid: 25349 components: - pos: 40.5,-29.5 parent: 2 type: Transform - - uid: 25343 + - uid: 25350 components: - pos: 32.5,-26.5 parent: 2 type: Transform - - uid: 25344 + - uid: 25351 components: - rot: 3.141592653589793 rad pos: 42.5,17.5 parent: 2 type: Transform - - uid: 25345 + - uid: 25352 components: - pos: 43.5,16.5 parent: 2 type: Transform - - uid: 25346 + - uid: 25353 components: - pos: 43.5,9.5 parent: 2 type: Transform - - uid: 25347 + - uid: 25354 components: - rot: 3.141592653589793 rad pos: 43.5,3.5 parent: 2 type: Transform - - uid: 25348 + - uid: 25355 components: - pos: 28.5,-10.5 parent: 2 type: Transform - - uid: 25349 + - uid: 25356 components: - rot: 3.141592653589793 rad pos: 13.5,-23.5 parent: 2 type: Transform - - uid: 25350 + - uid: 25357 components: - rot: 3.141592653589793 rad pos: 13.5,-20.5 parent: 2 type: Transform - - uid: 25351 + - uid: 25358 components: - rot: 3.141592653589793 rad pos: 13.5,-19.5 parent: 2 type: Transform - - uid: 25352 + - uid: 25359 components: - rot: 3.141592653589793 rad pos: 13.5,-17.5 parent: 2 type: Transform - - uid: 25353 + - uid: 25360 components: - rot: 3.141592653589793 rad pos: 13.5,-16.5 parent: 2 type: Transform - - uid: 25354 + - uid: 25361 components: - rot: 3.141592653589793 rad pos: 13.5,-15.5 parent: 2 type: Transform - - uid: 25355 + - uid: 25362 components: - pos: 25.5,-26.5 parent: 2 type: Transform - - uid: 25356 + - uid: 25363 components: - pos: 21.5,-26.5 parent: 2 type: Transform - - uid: 25357 + - uid: 25364 components: - rot: 1.5707963267948966 rad pos: 33.5,-33.5 parent: 2 type: Transform - - uid: 25358 + - uid: 25365 components: - rot: -1.5707963267948966 rad pos: 38.5,6.5 parent: 2 type: Transform - - uid: 25359 + - uid: 25366 components: - rot: -1.5707963267948966 rad pos: 39.5,6.5 parent: 2 type: Transform - - uid: 25360 + - uid: 25367 components: - rot: -1.5707963267948966 rad pos: 38.5,3.5 parent: 2 type: Transform - - uid: 25361 + - uid: 25368 components: - pos: 29.5,-9.5 parent: 2 type: Transform - - uid: 25362 + - uid: 25369 components: - rot: 3.141592653589793 rad pos: -15.5,-3.5 parent: 2 type: Transform - - uid: 25363 + - uid: 25370 components: - rot: 3.141592653589793 rad pos: -16.5,5.5 parent: 2 type: Transform - - uid: 25364 + - uid: 25371 components: - rot: -1.5707963267948966 rad pos: 36.5,10.5 parent: 2 type: Transform - - uid: 25365 + - uid: 25372 components: - pos: 38.5,-24.5 parent: 2 type: Transform - - uid: 25366 + - uid: 25373 components: - pos: -15.5,-2.5 parent: 2 type: Transform - - uid: 25367 + - uid: 25374 components: - pos: 41.5,52.5 parent: 2 type: Transform - - uid: 25368 + - uid: 25375 components: - rot: -1.5707963267948966 rad pos: 5.5,-24.5 parent: 2 type: Transform - - uid: 25369 + - uid: 25376 components: - rot: 3.141592653589793 rad pos: 27.5,24.5 parent: 2 type: Transform - - uid: 25370 + - uid: 25377 components: - rot: -1.5707963267948966 rad pos: 9.5,23.5 parent: 2 type: Transform - - uid: 25371 + - uid: 25378 components: - pos: -0.5,15.5 parent: 2 type: Transform - - uid: 25372 + - uid: 25379 components: - rot: -1.5707963267948966 rad pos: 5.5,23.5 parent: 2 type: Transform - - uid: 25373 + - uid: 25380 components: - rot: -1.5707963267948966 rad pos: 4.5,23.5 parent: 2 type: Transform - - uid: 25374 + - uid: 25381 components: - rot: -1.5707963267948966 rad pos: 3.5,23.5 parent: 2 type: Transform - - uid: 25375 + - uid: 25382 components: - pos: 42.5,50.5 parent: 2 type: Transform - - uid: 25376 + - uid: 25383 components: - pos: 27.5,-15.5 parent: 2 type: Transform - - uid: 25377 + - uid: 25384 components: - pos: 2.5,22.5 parent: 2 type: Transform - - uid: 25378 + - uid: 25385 components: - pos: 1.5,22.5 parent: 2 type: Transform - - uid: 25379 + - uid: 25386 components: - pos: -2.5,-30.5 parent: 2 type: Transform - - uid: 25380 + - uid: 25387 components: - pos: 1.5,-39.5 parent: 2 type: Transform - - uid: 25381 + - uid: 25388 components: - pos: 5.5,-40.5 parent: 2 type: Transform - - uid: 25382 + - uid: 25389 components: - rot: 3.141592653589793 rad pos: 3.5,12.5 parent: 2 type: Transform - - uid: 25383 + - uid: 25390 components: - rot: -1.5707963267948966 rad pos: 63.5,18.5 parent: 2 type: Transform - - uid: 25384 + - uid: 25391 components: - rot: -1.5707963267948966 rad pos: 30.5,11.5 parent: 2 type: Transform - - uid: 25385 + - uid: 25392 components: - pos: 7.5,-24.5 parent: 2 type: Transform - - uid: 25386 + - uid: 25393 components: - pos: 9.5,-24.5 parent: 2 type: Transform - - uid: 25387 + - uid: 25394 components: - rot: 3.141592653589793 rad pos: 3.5,-24.5 parent: 2 type: Transform - - uid: 25388 + - uid: 25395 components: - pos: 1.5,-29.5 parent: 2 type: Transform - - uid: 25389 + - uid: 25396 components: - pos: 27.5,-14.5 parent: 2 type: Transform - - uid: 25390 + - uid: 25397 components: - rot: -1.5707963267948966 rad pos: -16.5,-57.5 parent: 2 type: Transform - - uid: 25391 + - uid: 25398 components: - rot: 3.141592653589793 rad pos: 23.5,-33.5 parent: 2 type: Transform - - uid: 25392 + - uid: 25399 components: - rot: 3.141592653589793 rad pos: 21.5,-33.5 parent: 2 type: Transform - - uid: 25393 + - uid: 25400 components: - pos: 13.5,-24.5 parent: 2 type: Transform - - uid: 25394 + - uid: 25401 components: - pos: 37.5,-24.5 parent: 2 type: Transform - - uid: 25395 + - uid: 25402 components: - rot: -1.5707963267948966 rad pos: 36.5,12.5 parent: 2 type: Transform - - uid: 25396 + - uid: 25403 components: - pos: 3.5,19.5 parent: 2 type: Transform - - uid: 25397 + - uid: 25404 components: - pos: 3.5,21.5 parent: 2 type: Transform - - uid: 25398 + - uid: 25405 components: - pos: 13.5,19.5 parent: 2 type: Transform - - uid: 25399 + - uid: 25406 components: - pos: 13.5,20.5 parent: 2 type: Transform - - uid: 25400 + - uid: 25407 components: - pos: 13.5,21.5 parent: 2 type: Transform - - uid: 25401 + - uid: 25408 components: - pos: 20.5,-38.5 parent: 2 type: Transform - - uid: 25402 + - uid: 25409 components: - pos: 6.5,-24.5 parent: 2 type: Transform - - uid: 25403 + - uid: 25410 components: - pos: -13.5,-77.5 parent: 2 type: Transform - - uid: 25404 + - uid: 25411 components: - rot: -1.5707963267948966 rad pos: -27.5,-83.5 parent: 2 type: Transform - - uid: 25405 + - uid: 25412 components: - rot: -1.5707963267948966 rad pos: -24.5,-82.5 parent: 2 type: Transform - - uid: 25406 + - uid: 25413 components: - rot: -1.5707963267948966 rad pos: -27.5,-81.5 parent: 2 type: Transform - - uid: 25407 + - uid: 25414 components: - pos: 1.5,-32.5 parent: 2 type: Transform - - uid: 25408 + - uid: 25415 components: - rot: 1.5707963267948966 rad pos: 22.5,25.5 parent: 2 type: Transform - - uid: 25409 + - uid: 25416 components: - rot: -1.5707963267948966 rad pos: 33.5,11.5 parent: 2 type: Transform - - uid: 25410 + - uid: 25417 components: - rot: -1.5707963267948966 rad pos: 30.5,13.5 parent: 2 type: Transform - - uid: 25411 + - uid: 25418 components: - rot: 3.141592653589793 rad pos: 23.5,-55.5 parent: 2 type: Transform - - uid: 25412 + - uid: 25419 components: - rot: 3.141592653589793 rad pos: 23.5,-56.5 parent: 2 type: Transform - - uid: 25413 + - uid: 25420 components: - pos: 18.5,-64.5 parent: 2 type: Transform - - uid: 25414 + - uid: 25421 components: - pos: 15.5,-62.5 parent: 2 type: Transform - - uid: 25415 + - uid: 25422 components: - pos: 15.5,-61.5 parent: 2 type: Transform - - uid: 25416 + - uid: 25423 components: - pos: 17.5,-56.5 parent: 2 type: Transform - - uid: 25417 + - uid: 25424 components: - pos: 15.5,-60.5 parent: 2 type: Transform - - uid: 25418 + - uid: 25425 components: - pos: 15.5,-59.5 parent: 2 type: Transform - - uid: 25419 + - uid: 25426 components: - pos: 16.5,-59.5 parent: 2 type: Transform - - uid: 25420 + - uid: 25427 components: - pos: 16.5,-58.5 parent: 2 type: Transform - - uid: 25421 + - uid: 25428 components: - pos: 16.5,-57.5 parent: 2 type: Transform - - uid: 25422 + - uid: 25429 components: - pos: 16.5,-56.5 parent: 2 type: Transform - - uid: 25423 + - uid: 25430 components: - pos: 17.5,-67.5 parent: 2 type: Transform - - uid: 25424 + - uid: 25431 components: - rot: 3.141592653589793 rad pos: 22.5,24.5 parent: 2 type: Transform - - uid: 25425 + - uid: 25432 components: - rot: 3.141592653589793 rad pos: 27.5,-61.5 parent: 2 type: Transform - - uid: 25426 + - uid: 25433 components: - rot: 1.5707963267948966 rad pos: 32.5,-64.5 parent: 2 type: Transform - - uid: 25427 + - uid: 25434 components: - rot: 3.141592653589793 rad pos: 34.5,-14.5 parent: 2 type: Transform - - uid: 25428 + - uid: 25435 components: - rot: -1.5707963267948966 rad pos: 20.5,-29.5 parent: 2 type: Transform - - uid: 25429 + - uid: 25436 components: - pos: 40.5,-23.5 parent: 2 type: Transform - - uid: 25430 + - uid: 25437 components: - pos: 40.5,-24.5 parent: 2 type: Transform - - uid: 25431 + - uid: 25438 components: - pos: 49.5,-24.5 parent: 2 type: Transform - - uid: 25432 + - uid: 25439 components: - pos: 43.5,-26.5 parent: 2 type: Transform - - uid: 25433 + - uid: 25440 components: - pos: 17.5,-63.5 parent: 2 type: Transform - - uid: 25434 + - uid: 25441 components: - rot: 3.141592653589793 rad pos: 23.5,24.5 parent: 2 type: Transform - - uid: 25435 + - uid: 25442 components: - pos: -2.5,18.5 parent: 2 type: Transform - - uid: 25436 + - uid: 25443 components: - rot: -1.5707963267948966 rad pos: -16.5,-58.5 parent: 2 type: Transform - - uid: 25437 + - uid: 25444 components: - rot: -1.5707963267948966 rad pos: 30.5,10.5 parent: 2 type: Transform - - uid: 25438 + - uid: 25445 components: - pos: 39.5,17.5 parent: 2 type: Transform - - uid: 25439 + - uid: 25446 components: - pos: 37.5,17.5 parent: 2 type: Transform - - uid: 25440 + - uid: 25447 components: - rot: -1.5707963267948966 rad pos: 33.5,18.5 parent: 2 type: Transform - - uid: 25441 + - uid: 25448 components: - rot: -1.5707963267948966 rad pos: 63.5,15.5 parent: 2 type: Transform - - uid: 25442 + - uid: 25449 components: - rot: 1.5707963267948966 rad pos: 27.5,16.5 parent: 2 type: Transform - - uid: 25443 + - uid: 25450 components: - rot: -1.5707963267948966 rad pos: 36.5,3.5 parent: 2 type: Transform - - uid: 25444 + - uid: 25451 components: - rot: 1.5707963267948966 rad pos: 38.5,9.5 parent: 2 type: Transform - - uid: 25445 + - uid: 25452 components: - rot: -1.5707963267948966 rad pos: 36.5,6.5 parent: 2 type: Transform - - uid: 25446 + - uid: 25453 components: - rot: 1.5707963267948966 rad pos: 32.5,-33.5 parent: 2 type: Transform - - uid: 25447 + - uid: 25454 components: - pos: 25.5,-28.5 parent: 2 type: Transform - - uid: 25448 + - uid: 25455 components: - pos: 20.5,-26.5 parent: 2 type: Transform - - uid: 25449 + - uid: 25456 components: - pos: 17.5,-26.5 parent: 2 type: Transform - - uid: 25450 + - uid: 25457 components: - pos: 18.5,-26.5 parent: 2 type: Transform - - uid: 25451 + - uid: 25458 components: - rot: 3.141592653589793 rad pos: 34.5,-15.5 parent: 2 type: Transform - - uid: 25452 + - uid: 25459 components: - rot: 3.141592653589793 rad pos: 37.5,-20.5 parent: 2 type: Transform - - uid: 25453 + - uid: 25460 components: - rot: 3.141592653589793 rad pos: 37.5,-20.5 parent: 2 type: Transform - - uid: 25454 + - uid: 25461 components: - rot: 3.141592653589793 rad pos: 37.5,-23.5 parent: 2 type: Transform - - uid: 25455 + - uid: 25462 components: - rot: 3.141592653589793 rad pos: 40.5,3.5 parent: 2 type: Transform - - uid: 25456 + - uid: 25463 components: - rot: 3.141592653589793 rad pos: 43.5,4.5 parent: 2 type: Transform - - uid: 25457 + - uid: 25464 components: - rot: 3.141592653589793 rad pos: 43.5,12.5 parent: 2 type: Transform - - uid: 25458 + - uid: 25465 components: - pos: 44.5,16.5 parent: 2 type: Transform - - uid: 25459 + - uid: 25466 components: - pos: 43.5,13.5 parent: 2 type: Transform - - uid: 25460 + - uid: 25467 components: - pos: 45.5,16.5 parent: 2 type: Transform - - uid: 25461 + - uid: 25468 components: - pos: 46.5,16.5 parent: 2 type: Transform - - uid: 25462 + - uid: 25469 components: - pos: 46.5,13.5 parent: 2 type: Transform - - uid: 25463 + - uid: 25470 components: - pos: 45.5,13.5 parent: 2 type: Transform - - uid: 25464 + - uid: 25471 components: - rot: 3.141592653589793 rad pos: 21.5,-39.5 parent: 2 type: Transform - - uid: 25465 + - uid: 25472 components: - pos: 20.5,-37.5 parent: 2 type: Transform - - uid: 25466 + - uid: 25473 components: - pos: 30.5,-34.5 parent: 2 type: Transform - - uid: 25467 + - uid: 25474 components: - pos: 30.5,-35.5 parent: 2 type: Transform - - uid: 25468 + - uid: 25475 components: - pos: 30.5,-36.5 parent: 2 type: Transform - - uid: 25469 + - uid: 25476 components: - pos: 30.5,-37.5 parent: 2 type: Transform - - uid: 25470 + - uid: 25477 components: - pos: 24.5,-34.5 parent: 2 type: Transform - - uid: 25471 + - uid: 25478 components: - pos: 30.5,-33.5 parent: 2 type: Transform - - uid: 25472 + - uid: 25479 components: - pos: 24.5,-33.5 parent: 2 type: Transform - - uid: 25473 + - uid: 25480 components: - pos: 24.5,-35.5 parent: 2 type: Transform - - uid: 25474 + - uid: 25481 components: - pos: 21.5,-31.5 parent: 2 type: Transform - - uid: 25475 + - uid: 25482 components: - pos: 28.5,9.5 parent: 2 type: Transform - - uid: 25476 + - uid: 25483 components: - pos: 31.5,9.5 parent: 2 type: Transform - - uid: 25477 + - uid: 25484 components: - pos: 35.5,9.5 parent: 2 type: Transform - - uid: 25478 + - uid: 25485 components: - pos: 35.5,8.5 parent: 2 type: Transform - - uid: 25479 + - uid: 25486 components: - pos: 35.5,6.5 parent: 2 type: Transform - - uid: 25480 + - uid: 25487 components: - pos: 23.5,19.5 parent: 2 type: Transform - - uid: 25481 + - uid: 25488 components: - pos: 17.5,-38.5 parent: 2 type: Transform - - uid: 25482 + - uid: 25489 components: - pos: 33.5,-38.5 parent: 2 type: Transform - - uid: 25483 + - uid: 25490 components: - rot: 3.141592653589793 rad pos: 17.5,-37.5 parent: 2 type: Transform - - uid: 25484 + - uid: 25491 components: - pos: 31.5,22.5 parent: 2 type: Transform - - uid: 25485 + - uid: 25492 components: - pos: 31.5,23.5 parent: 2 type: Transform - - uid: 25486 + - uid: 25493 components: - pos: 31.5,24.5 parent: 2 type: Transform - - uid: 25487 + - uid: 25494 components: - pos: 33.5,26.5 parent: 2 type: Transform - - uid: 25488 + - uid: 25495 components: - pos: 33.5,28.5 parent: 2 type: Transform - - uid: 25489 + - uid: 25496 components: - rot: 3.141592653589793 rad pos: 25.5,27.5 parent: 2 type: Transform - - uid: 25490 + - uid: 25497 components: - pos: 33.5,30.5 parent: 2 type: Transform - - uid: 25491 + - uid: 25498 components: - pos: -2.5,-29.5 parent: 2 type: Transform - - uid: 25492 + - uid: 25499 components: - pos: -2.5,-44.5 parent: 2 type: Transform - - uid: 25493 + - uid: 25500 components: - pos: 19.5,24.5 parent: 2 type: Transform - - uid: 25494 + - uid: 25501 components: - pos: 19.5,18.5 parent: 2 type: Transform - - uid: 25495 + - uid: 25502 components: - pos: 12.5,-35.5 parent: 2 type: Transform - - uid: 25496 + - uid: 25503 components: - pos: 12.5,-30.5 parent: 2 type: Transform - - uid: 25497 + - uid: 25504 components: - pos: 0.5,-28.5 parent: 2 type: Transform - - uid: 25498 + - uid: 25505 components: - pos: -2.5,-28.5 parent: 2 type: Transform - - uid: 25499 + - uid: 25506 components: - pos: -0.5,-28.5 parent: 2 type: Transform - - uid: 25500 + - uid: 25507 components: - pos: -1.5,-28.5 parent: 2 type: Transform - - uid: 25501 + - uid: 25508 components: - pos: 1.5,-28.5 parent: 2 type: Transform - - uid: 25502 + - uid: 25509 components: - pos: 1.5,-34.5 parent: 2 type: Transform - - uid: 25503 + - uid: 25510 components: - rot: -1.5707963267948966 rad pos: 13.5,-36.5 parent: 2 type: Transform - - uid: 25504 + - uid: 25511 components: - rot: -1.5707963267948966 rad pos: 13.5,-38.5 parent: 2 type: Transform - - uid: 25505 + - uid: 25512 components: - rot: -1.5707963267948966 rad pos: -0.5,-21.5 parent: 2 type: Transform - - uid: 25506 + - uid: 25513 components: - rot: -1.5707963267948966 rad pos: 0.5,-18.5 parent: 2 type: Transform - - uid: 25507 + - uid: 25514 components: - rot: -1.5707963267948966 rad pos: 10.5,-18.5 parent: 2 type: Transform - - uid: 25508 + - uid: 25515 components: - rot: -1.5707963267948966 rad pos: 6.5,-18.5 parent: 2 type: Transform - - uid: 25509 + - uid: 25516 components: - pos: -2.5,19.5 parent: 2 type: Transform - - uid: 25510 + - uid: 25517 components: - pos: -2.5,17.5 parent: 2 type: Transform - - uid: 25511 + - uid: 25518 components: - rot: 3.141592653589793 rad pos: 30.5,-20.5 parent: 2 type: Transform - - uid: 25512 + - uid: 25519 components: - pos: -1.5,-40.5 parent: 2 type: Transform - - uid: 25513 + - uid: 25520 components: - pos: 0.5,-40.5 parent: 2 type: Transform - - uid: 25514 + - uid: 25521 components: - pos: -0.5,-40.5 parent: 2 type: Transform - - uid: 25515 + - uid: 25522 components: - rot: 1.5707963267948966 rad pos: 38.5,-18.5 parent: 2 type: Transform - - uid: 25516 + - uid: 25523 components: - rot: 1.5707963267948966 rad pos: 38.5,-16.5 parent: 2 type: Transform - - uid: 25517 + - uid: 25524 components: - rot: 1.5707963267948966 rad pos: 38.5,-19.5 parent: 2 type: Transform - - uid: 25518 + - uid: 25525 components: - rot: 1.5707963267948966 rad pos: 33.5,31.5 parent: 2 type: Transform - - uid: 25519 + - uid: 25526 components: - rot: 1.5707963267948966 rad pos: 33.5,33.5 parent: 2 type: Transform - - uid: 25520 + - uid: 25527 components: - rot: 1.5707963267948966 rad pos: 25.5,31.5 parent: 2 type: Transform - - uid: 25521 + - uid: 25528 components: - rot: 1.5707963267948966 rad pos: 25.5,32.5 parent: 2 type: Transform - - uid: 25522 + - uid: 25529 components: - rot: 1.5707963267948966 rad pos: 25.5,33.5 parent: 2 type: Transform - - uid: 25523 + - uid: 25530 components: - rot: 1.5707963267948966 rad pos: 26.5,33.5 parent: 2 type: Transform - - uid: 25524 + - uid: 25531 components: - rot: 3.141592653589793 rad pos: 28.5,33.5 parent: 2 type: Transform - - uid: 25525 + - uid: 25532 components: - rot: 1.5707963267948966 rad pos: 32.5,33.5 parent: 2 type: Transform - - uid: 25526 + - uid: 25533 components: - pos: 13.5,-39.5 parent: 2 type: Transform - - uid: 25527 + - uid: 25534 components: - rot: -1.5707963267948966 rad pos: 33.5,13.5 parent: 2 type: Transform - - uid: 25528 + - uid: 25535 components: - rot: 1.5707963267948966 rad pos: -17.5,-53.5 parent: 2 type: Transform - - uid: 25529 + - uid: 25536 components: - rot: 1.5707963267948966 rad pos: -19.5,-53.5 parent: 2 type: Transform - - uid: 25530 + - uid: 25537 components: - rot: 1.5707963267948966 rad pos: -20.5,-53.5 parent: 2 type: Transform - - uid: 25531 + - uid: 25538 components: - rot: 1.5707963267948966 rad pos: -21.5,-53.5 parent: 2 type: Transform - - uid: 25532 + - uid: 25539 components: - pos: -21.5,-58.5 parent: 2 type: Transform - - uid: 25533 + - uid: 25540 components: - pos: -21.5,-54.5 parent: 2 type: Transform - - uid: 25534 + - uid: 25541 components: - pos: 33.5,-26.5 parent: 2 type: Transform - - uid: 25535 + - uid: 25542 components: - pos: 26.5,-33.5 parent: 2 type: Transform - - uid: 25536 + - uid: 25543 components: - pos: 27.5,-28.5 parent: 2 type: Transform - - uid: 25537 + - uid: 25544 components: - rot: 1.5707963267948966 rad pos: 20.5,-27.5 parent: 2 type: Transform - - uid: 25538 + - uid: 25545 components: - pos: -22.5,-49.5 parent: 2 type: Transform - - uid: 25539 + - uid: 25546 components: - rot: 1.5707963267948966 rad pos: 17.5,-33.5 parent: 2 type: Transform - - uid: 25540 + - uid: 25547 components: - rot: 3.141592653589793 rad pos: 33.5,-23.5 parent: 2 type: Transform - - uid: 25541 + - uid: 25548 components: - pos: 27.5,-29.5 parent: 2 type: Transform - - uid: 25542 + - uid: 25549 components: - rot: 3.141592653589793 rad pos: 30.5,-40.5 parent: 2 type: Transform - - uid: 25543 + - uid: 25550 components: - pos: 9.5,12.5 parent: 2 type: Transform - - uid: 25544 + - uid: 25551 components: - pos: 8.5,11.5 parent: 2 type: Transform - - uid: 25545 + - uid: 25552 components: - pos: 25.5,-33.5 parent: 2 type: Transform - - uid: 25546 + - uid: 25553 components: - pos: 24.5,-31.5 parent: 2 type: Transform - - uid: 25547 + - uid: 25554 components: - pos: -17.5,-80.5 parent: 2 type: Transform - - uid: 25548 + - uid: 25555 components: - pos: -15.5,-80.5 parent: 2 type: Transform - - uid: 25549 + - uid: 25556 components: - pos: -14.5,-74.5 parent: 2 type: Transform - - uid: 25550 + - uid: 25557 components: - rot: -1.5707963267948966 rad pos: -31.5,-78.5 parent: 2 type: Transform - - uid: 25551 + - uid: 25558 components: - rot: -1.5707963267948966 rad pos: -25.5,-81.5 parent: 2 type: Transform - - uid: 25552 + - uid: 25559 components: - rot: -1.5707963267948966 rad pos: -26.5,-81.5 parent: 2 type: Transform - - uid: 25553 + - uid: 25560 components: - rot: -1.5707963267948966 rad pos: -19.5,-82.5 parent: 2 type: Transform - - uid: 25554 + - uid: 25561 components: - rot: -1.5707963267948966 rad pos: -29.5,-81.5 parent: 2 type: Transform - - uid: 25555 + - uid: 25562 components: - rot: -1.5707963267948966 rad pos: -30.5,-81.5 parent: 2 type: Transform - - uid: 25556 + - uid: 25563 components: - rot: -1.5707963267948966 rad pos: -31.5,-81.5 parent: 2 type: Transform - - uid: 25557 + - uid: 25564 components: - pos: -27.5,-86.5 parent: 2 type: Transform - - uid: 25558 + - uid: 25565 components: - rot: -1.5707963267948966 rad pos: -19.5,-83.5 parent: 2 type: Transform - - uid: 25559 + - uid: 25566 components: - pos: -22.5,-91.5 parent: 2 type: Transform - - uid: 25560 + - uid: 25567 components: - rot: -1.5707963267948966 rad pos: 44.5,-66.5 parent: 2 type: Transform - - uid: 25561 + - uid: 25568 components: - pos: 57.5,-50.5 parent: 2 type: Transform - - uid: 25562 + - uid: 25569 components: - pos: -51.5,-52.5 parent: 2 type: Transform - - uid: 25563 + - uid: 25570 components: - rot: 1.5707963267948966 rad pos: -17.5,-58.5 parent: 2 type: Transform - - uid: 25564 + - uid: 25571 components: - rot: 3.141592653589793 rad pos: 21.5,-20.5 parent: 2 type: Transform - - uid: 25565 + - uid: 25572 components: - pos: 29.5,-26.5 parent: 2 type: Transform - - uid: 25566 + - uid: 25573 components: - rot: 3.141592653589793 rad pos: 33.5,-21.5 parent: 2 type: Transform - - uid: 25567 + - uid: 25574 components: - rot: 3.141592653589793 rad pos: 33.5,-27.5 parent: 2 type: Transform - - uid: 25568 + - uid: 25575 components: - rot: 3.141592653589793 rad pos: 13.5,-18.5 parent: 2 type: Transform - - uid: 25569 + - uid: 25576 components: - rot: 3.141592653589793 rad pos: 41.5,17.5 parent: 2 type: Transform - - uid: 25570 + - uid: 25577 components: - rot: 3.141592653589793 rad pos: 43.5,17.5 parent: 2 type: Transform - - uid: 25571 + - uid: 25578 components: - rot: -1.5707963267948966 rad pos: 27.5,12.5 parent: 2 type: Transform - - uid: 25572 + - uid: 25579 components: - rot: -1.5707963267948966 rad pos: 27.5,13.5 parent: 2 type: Transform - - uid: 25573 + - uid: 25580 components: - rot: -1.5707963267948966 rad pos: 27.5,11.5 parent: 2 type: Transform - - uid: 25574 + - uid: 25581 components: - pos: 14.5,15.5 parent: 2 type: Transform - - uid: 25575 + - uid: 25582 components: - pos: 9.5,15.5 parent: 2 type: Transform - - uid: 25576 + - uid: 25583 components: - pos: 9.5,-71.5 parent: 2 type: Transform - - uid: 25577 + - uid: 25584 components: - pos: 5.5,-78.5 parent: 2 type: Transform - - uid: 25578 + - uid: 25585 components: - rot: 3.141592653589793 rad pos: 30.5,-39.5 parent: 2 type: Transform - - uid: 25579 + - uid: 25586 components: - pos: 28.5,-9.5 parent: 2 type: Transform - - uid: 25580 + - uid: 25587 components: - pos: 31.5,20.5 parent: 2 type: Transform - - uid: 25581 + - uid: 25588 components: - rot: -1.5707963267948966 rad pos: 30.5,12.5 parent: 2 type: Transform - - uid: 25582 + - uid: 25589 components: - pos: 0.5,15.5 parent: 2 type: Transform - - uid: 25583 + - uid: 25590 components: - rot: -1.5707963267948966 rad pos: 9.5,11.5 parent: 2 type: Transform - - uid: 25584 + - uid: 25591 components: - rot: 3.141592653589793 rad pos: 6.5,11.5 parent: 2 type: Transform - - uid: 25585 + - uid: 25592 components: - rot: 1.5707963267948966 rad pos: 3.5,14.5 parent: 2 type: Transform - - uid: 25586 + - uid: 25593 components: - pos: -1.5,15.5 parent: 2 type: Transform - - uid: 25587 + - uid: 25594 components: - pos: 9.5,-2.5 parent: 2 type: Transform - - uid: 25588 + - uid: 25595 components: - rot: 1.5707963267948966 rad pos: 18.5,-33.5 parent: 2 type: Transform - - uid: 25589 + - uid: 25596 components: - rot: 1.5707963267948966 rad pos: 15.5,15.5 parent: 2 type: Transform - - uid: 25590 + - uid: 25597 components: - rot: -1.5707963267948966 rad pos: 63.5,17.5 parent: 2 type: Transform - - uid: 25591 + - uid: 25598 components: - rot: -1.5707963267948966 rad pos: -2.5,-84.5 parent: 2 type: Transform - - uid: 25592 + - uid: 25599 components: - pos: 16.5,-63.5 parent: 2 type: Transform - - uid: 25593 + - uid: 25600 components: - pos: 17.5,-68.5 parent: 2 type: Transform - - uid: 25594 + - uid: 25601 components: - pos: -23.5,0.5 parent: 2 type: Transform - - uid: 25595 + - uid: 25602 components: - pos: 25.5,-29.5 parent: 2 type: Transform - - uid: 25596 + - uid: 25603 components: - pos: -23.5,-2.5 parent: 2 type: Transform - - uid: 25597 + - uid: 25604 components: - rot: 3.141592653589793 rad pos: 33.5,-20.5 parent: 2 type: Transform - - uid: 25598 + - uid: 25605 components: - pos: -23.5,3.5 parent: 2 type: Transform - - uid: 25599 + - uid: 25606 components: - pos: -23.5,4.5 parent: 2 type: Transform - - uid: 25600 + - uid: 25607 components: - pos: -21.5,5.5 parent: 2 type: Transform - - uid: 25601 + - uid: 25608 components: - pos: 49.5,-26.5 parent: 2 type: Transform - - uid: 25602 + - uid: 25609 components: - pos: 47.5,-20.5 parent: 2 type: Transform - - uid: 25603 + - uid: 25610 components: - pos: 44.5,-20.5 parent: 2 type: Transform - - uid: 25604 + - uid: 25611 components: - pos: 43.5,-22.5 parent: 2 type: Transform - - uid: 25605 + - uid: 25612 components: - pos: 43.5,-25.5 parent: 2 type: Transform - - uid: 25606 + - uid: 25613 components: - pos: 43.5,-23.5 parent: 2 type: Transform - - uid: 25607 + - uid: 25614 components: - pos: 43.5,-28.5 parent: 2 type: Transform - - uid: 25608 + - uid: 25615 components: - pos: 1.5,15.5 parent: 2 type: Transform - - uid: 25609 + - uid: 25616 components: - pos: 40.5,-28.5 parent: 2 type: Transform - - uid: 25610 + - uid: 25617 components: - pos: 26.5,26.5 parent: 2 type: Transform - - uid: 25611 + - uid: 25618 components: - pos: 25.5,26.5 parent: 2 type: Transform - - uid: 25612 + - uid: 25619 components: - pos: 25.5,28.5 parent: 2 type: Transform - - uid: 25613 + - uid: 25620 components: - rot: 3.141592653589793 rad pos: 33.5,29.5 parent: 2 type: Transform - - uid: 25614 + - uid: 25621 components: - pos: 25.5,30.5 parent: 2 type: Transform - - uid: 25615 + - uid: 25622 components: - pos: 32.5,26.5 parent: 2 type: Transform - - uid: 25616 + - uid: 25623 components: - rot: -1.5707963267948966 rad pos: 13.5,23.5 parent: 2 type: Transform - - uid: 25617 + - uid: 25624 components: - rot: -1.5707963267948966 rad pos: 8.5,23.5 parent: 2 type: Transform - - uid: 25618 + - uid: 25625 components: - pos: -2.5,-39.5 parent: 2 type: Transform - - uid: 25619 + - uid: 25626 components: - rot: -1.5707963267948966 rad pos: -1.5,-39.5 parent: 2 type: Transform - - uid: 25620 + - uid: 25627 components: - rot: -1.5707963267948966 rad pos: 12.5,-24.5 parent: 2 type: Transform - - uid: 25621 + - uid: 25628 components: - pos: 11.5,-24.5 parent: 2 type: Transform - - uid: 25622 + - uid: 25629 components: - pos: 10.5,-24.5 parent: 2 type: Transform - - uid: 25623 + - uid: 25630 components: - rot: -1.5707963267948966 rad pos: 4.5,-24.5 parent: 2 type: Transform - - uid: 25624 + - uid: 25631 components: - rot: -1.5707963267948966 rad pos: -2.5,-23.5 parent: 2 type: Transform - - uid: 25625 + - uid: 25632 components: - rot: -1.5707963267948966 rad pos: 5.5,-18.5 parent: 2 type: Transform - - uid: 25626 + - uid: 25633 components: - pos: -2.5,21.5 parent: 2 type: Transform - - uid: 25627 + - uid: 25634 components: - pos: -0.5,22.5 parent: 2 type: Transform - - uid: 25628 + - uid: 25635 components: - pos: 0.5,22.5 parent: 2 type: Transform - - uid: 25629 + - uid: 25636 components: - pos: -1.5,22.5 parent: 2 type: Transform - - uid: 25630 + - uid: 25637 components: - pos: -2.5,22.5 parent: 2 type: Transform - - uid: 25631 + - uid: 25638 components: - pos: -2.5,20.5 parent: 2 type: Transform - - uid: 25632 + - uid: 25639 components: - pos: 6.5,-40.5 parent: 2 type: Transform - - uid: 25633 + - uid: 25640 components: - pos: 5.5,-39.5 parent: 2 type: Transform - - uid: 25634 + - uid: 25641 components: - pos: 8.5,18.5 parent: 2 type: Transform - - uid: 25635 + - uid: 25642 components: - rot: 3.141592653589793 rad pos: 27.5,23.5 parent: 2 type: Transform - - uid: 25636 + - uid: 25643 components: - pos: -15.5,4.5 parent: 2 type: Transform - - uid: 25637 + - uid: 25644 components: - pos: -15.5,3.5 parent: 2 type: Transform - - uid: 25638 + - uid: 25645 components: - pos: 9.5,18.5 parent: 2 type: Transform - - uid: 25639 + - uid: 25646 components: - rot: -1.5707963267948966 rad pos: 20.5,-30.5 parent: 2 type: Transform - - uid: 25640 + - uid: 25647 components: - pos: -18.5,-85.5 parent: 2 type: Transform - - uid: 25641 + - uid: 25648 components: - rot: 3.141592653589793 rad pos: 3.5,11.5 parent: 2 type: Transform - - uid: 25642 + - uid: 25649 components: - pos: -2.5,15.5 parent: 2 type: Transform - - uid: 25643 + - uid: 25650 components: - rot: -1.5707963267948966 rad pos: 37.5,42.5 parent: 2 type: Transform - - uid: 25644 + - uid: 25651 components: - rot: 3.141592653589793 rad pos: 62.5,42.5 parent: 2 type: Transform - - uid: 25645 + - uid: 25652 components: - rot: -1.5707963267948966 rad pos: 32.5,43.5 parent: 2 type: Transform - - uid: 25646 + - uid: 25653 components: - rot: 3.141592653589793 rad pos: 18.5,-19.5 parent: 2 type: Transform - - uid: 25647 + - uid: 25654 components: - rot: -1.5707963267948966 rad pos: 42.5,49.5 parent: 2 type: Transform - - uid: 25648 + - uid: 25655 components: - rot: -1.5707963267948966 rad pos: 34.5,43.5 parent: 2 type: Transform - - uid: 25649 + - uid: 25656 components: - pos: -23.5,-0.5 parent: 2 type: Transform - - uid: 25650 + - uid: 25657 components: - rot: -1.5707963267948966 rad pos: 63.5,16.5 parent: 2 type: Transform - - uid: 25651 + - uid: 25658 components: - pos: -20.5,5.5 parent: 2 type: Transform - - uid: 25652 + - uid: 25659 components: - rot: 3.141592653589793 rad pos: 13.5,18.5 parent: 2 type: Transform - - uid: 25653 + - uid: 25660 components: - rot: -1.5707963267948966 rad pos: 64.5,14.5 parent: 2 type: Transform - - uid: 25654 + - uid: 25661 components: - rot: -1.5707963267948966 rad pos: -0.5,-80.5 parent: 2 type: Transform - - uid: 25655 + - uid: 25662 components: - rot: -1.5707963267948966 rad pos: 0.5,-78.5 parent: 2 type: Transform - - uid: 25656 + - uid: 25663 components: - rot: 3.141592653589793 rad pos: -17.5,5.5 parent: 2 type: Transform - - uid: 25657 + - uid: 25664 components: - rot: 3.141592653589793 rad pos: 19.5,-19.5 parent: 2 type: Transform - - uid: 25658 + - uid: 25665 components: - pos: 40.5,52.5 parent: 2 type: Transform - - uid: 25659 + - uid: 25666 components: - rot: 3.141592653589793 rad pos: 23.5,-38.5 parent: 2 type: Transform - - uid: 25660 + - uid: 25667 components: - pos: -29.5,44.5 parent: 2 type: Transform - - uid: 25661 + - uid: 25668 components: - pos: 40.5,17.5 parent: 2 type: Transform - - uid: 25662 + - uid: 25669 components: - pos: -15.5,-74.5 parent: 2 type: Transform - - uid: 25663 + - uid: 25670 components: - rot: 3.141592653589793 rad pos: 30.5,-15.5 parent: 2 type: Transform - - uid: 25664 + - uid: 25671 components: - rot: -1.5707963267948966 rad pos: 27.5,10.5 parent: 2 type: Transform - - uid: 25665 + - uid: 25672 components: - pos: -15.5,1.5 parent: 2 type: Transform - - uid: 25666 + - uid: 25673 components: - pos: -15.5,0.5 parent: 2 type: Transform - - uid: 25667 + - uid: 25674 components: - pos: 38.5,52.5 parent: 2 type: Transform - - uid: 25668 + - uid: 25675 components: - rot: 3.141592653589793 rad pos: 34.5,-13.5 parent: 2 type: Transform - - uid: 25669 + - uid: 25676 components: - pos: 43.5,-20.5 parent: 2 type: Transform - - uid: 25670 + - uid: 25677 components: - rot: 1.5707963267948966 rad pos: 32.5,-63.5 parent: 2 type: Transform - - uid: 25671 + - uid: 25678 components: - pos: 0.5,-39.5 parent: 2 type: Transform - - uid: 25672 + - uid: 25679 components: - pos: 4.5,-39.5 parent: 2 type: Transform - - uid: 25673 + - uid: 25680 components: - pos: 2.5,15.5 parent: 2 type: Transform - - uid: 25674 + - uid: 25681 components: - rot: -1.5707963267948966 rad pos: 25.5,-31.5 parent: 2 type: Transform - - uid: 25675 + - uid: 25682 components: - rot: -1.5707963267948966 rad pos: 14.5,-68.5 parent: 2 type: Transform - - uid: 25676 + - uid: 25683 components: - rot: -1.5707963267948966 rad pos: 20.5,-28.5 parent: 2 type: Transform - - uid: 25677 + - uid: 25684 components: - pos: 7.5,11.5 parent: 2 type: Transform - - uid: 25678 + - uid: 25685 components: - pos: 10.5,15.5 parent: 2 type: Transform - - uid: 25679 + - uid: 25686 components: - rot: -1.5707963267948966 rad pos: 36.5,42.5 parent: 2 type: Transform - - uid: 25680 + - uid: 25687 components: - rot: -1.5707963267948966 rad pos: -0.5,-81.5 parent: 2 type: Transform - - uid: 25681 + - uid: 25688 components: - rot: -1.5707963267948966 rad pos: 37.5,9.5 parent: 2 type: Transform - - uid: 25682 + - uid: 25689 components: - rot: -1.5707963267948966 rad pos: -26.5,-83.5 parent: 2 type: Transform - - uid: 25683 + - uid: 25690 components: - rot: -1.5707963267948966 rad pos: -24.5,-83.5 parent: 2 type: Transform - - uid: 25684 + - uid: 25691 components: - pos: -22.5,5.5 parent: 2 type: Transform - - uid: 25685 + - uid: 25692 components: - rot: -1.5707963267948966 rad pos: 27.5,14.5 parent: 2 type: Transform - - uid: 25686 + - uid: 25693 components: - pos: -29.5,43.5 parent: 2 type: Transform - - uid: 25687 + - uid: 25694 components: - rot: 3.141592653589793 rad pos: 33.5,-22.5 parent: 2 type: Transform - - uid: 25688 + - uid: 25695 components: - rot: 3.141592653589793 rad pos: 20.5,24.5 parent: 2 type: Transform - - uid: 25689 + - uid: 25696 components: - rot: 1.5707963267948966 rad pos: 7.5,-18.5 parent: 2 type: Transform - - uid: 25690 + - uid: 25697 components: - rot: -1.5707963267948966 rad pos: 10.5,23.5 parent: 2 type: Transform - - uid: 25691 + - uid: 25698 components: - rot: -1.5707963267948966 rad pos: 27.5,15.5 parent: 2 type: Transform - - uid: 25692 + - uid: 25699 components: - pos: -15.5,3.5 parent: 2 type: Transform - - uid: 25693 + - uid: 25700 components: - rot: -1.5707963267948966 rad pos: -31.5,-76.5 parent: 2 type: Transform - - uid: 25694 + - uid: 25701 components: - pos: -18.5,-80.5 parent: 2 type: Transform - - uid: 25695 + - uid: 25702 components: - rot: -1.5707963267948966 rad pos: 12.5,-68.5 parent: 2 type: Transform - - uid: 25696 + - uid: 25703 components: - rot: -1.5707963267948966 rad pos: 14.5,18.5 parent: 2 type: Transform - - uid: 25697 + - uid: 25704 components: - pos: 27.5,25.5 parent: 2 type: Transform - - uid: 25698 + - uid: 25705 components: - rot: -1.5707963267948966 rad pos: 12.5,23.5 parent: 2 type: Transform - - uid: 25699 + - uid: 25706 components: - rot: -1.5707963267948966 rad pos: 11.5,23.5 parent: 2 type: Transform - - uid: 25700 + - uid: 25707 components: - pos: -13.5,-74.5 parent: 2 type: Transform - - uid: 25701 + - uid: 25708 components: - pos: -13.5,-79.5 parent: 2 type: Transform - - uid: 25702 + - uid: 25709 components: - pos: -19.5,-80.5 parent: 2 type: Transform - - uid: 25703 + - uid: 25710 components: - pos: -13.5,-76.5 parent: 2 type: Transform - - uid: 25704 + - uid: 25711 components: - pos: 9.5,20.5 parent: 2 type: Transform - - uid: 25705 + - uid: 25712 components: - rot: -1.5707963267948966 rad pos: 13.5,-68.5 parent: 2 type: Transform - - uid: 25706 + - uid: 25713 components: - pos: -18.5,-50.5 parent: 2 type: Transform - - uid: 25707 + - uid: 25714 components: - rot: -1.5707963267948966 rad pos: -16.5,-53.5 parent: 2 type: Transform - - uid: 25708 + - uid: 25715 components: - rot: 3.141592653589793 rad pos: 33.5,-37.5 parent: 2 type: Transform - - uid: 25709 + - uid: 25716 components: - rot: 3.141592653589793 rad pos: 34.5,-11.5 parent: 2 type: Transform - - uid: 25710 + - uid: 25717 components: - rot: 3.141592653589793 rad pos: 34.5,-12.5 parent: 2 type: Transform - - uid: 25711 + - uid: 25718 components: - pos: -16.5,-54.5 parent: 2 type: Transform - - uid: 25712 + - uid: 25719 components: - rot: 3.141592653589793 rad pos: 34.5,-9.5 parent: 2 type: Transform - - uid: 25713 + - uid: 25720 components: - rot: 3.141592653589793 rad pos: 33.5,-9.5 parent: 2 type: Transform - - uid: 25714 + - uid: 25721 components: - rot: -1.5707963267948966 rad pos: -16.5,-55.5 parent: 2 type: Transform - - uid: 25715 + - uid: 25722 components: - pos: 19.5,-56.5 parent: 2 type: Transform - - uid: 25716 + - uid: 25723 components: - pos: -21.5,-56.5 parent: 2 type: Transform - - uid: 25717 + - uid: 25724 components: - pos: 33.5,48.5 parent: 2 type: Transform - - uid: 25718 + - uid: 25725 components: - pos: 31.5,-26.5 parent: 2 type: Transform - - uid: 25719 + - uid: 25726 components: - pos: 11.5,15.5 parent: 2 type: Transform - - uid: 25720 + - uid: 25727 components: - rot: 3.141592653589793 rad pos: 17.5,-19.5 parent: 2 type: Transform - - uid: 25721 + - uid: 25728 components: - pos: -2.5,-38.5 parent: 2 type: Transform - - uid: 25722 + - uid: 25729 components: - rot: -1.5707963267948966 rad pos: 63.5,14.5 parent: 2 type: Transform - - uid: 25723 + - uid: 25730 components: - pos: 12.5,-36.5 parent: 2 type: Transform - - uid: 25724 + - uid: 25731 components: - rot: 3.141592653589793 rad pos: 27.5,33.5 parent: 2 type: Transform - - uid: 25725 + - uid: 25732 components: - pos: 35.5,51.5 parent: 2 type: Transform - - uid: 25726 + - uid: 25733 components: - pos: 5.5,-79.5 parent: 2 type: Transform - - uid: 25727 + - uid: 25734 components: - pos: 33.5,-30.5 parent: 2 type: Transform - - uid: 25728 + - uid: 25735 components: - pos: 28.5,-12.5 parent: 2 type: Transform - - uid: 25729 + - uid: 25736 components: - rot: 3.141592653589793 rad pos: 17.5,-20.5 parent: 2 type: Transform - - uid: 25730 + - uid: 25737 components: - pos: 37.5,52.5 parent: 2 type: Transform - - uid: 25731 + - uid: 25738 components: - pos: 29.5,-15.5 parent: 2 type: Transform - - uid: 25732 + - uid: 25739 components: - rot: 3.141592653589793 rad pos: 32.5,-19.5 parent: 2 type: Transform - - uid: 25733 + - uid: 25740 components: - rot: 3.141592653589793 rad pos: -18.5,-3.5 parent: 2 type: Transform - - uid: 25734 + - uid: 25741 components: - rot: 3.141592653589793 rad pos: 19.5,-55.5 parent: 2 type: Transform - - uid: 25735 + - uid: 25742 components: - rot: -1.5707963267948966 rad pos: 35.5,42.5 parent: 2 type: Transform - - uid: 25736 + - uid: 25743 components: - rot: 3.141592653589793 rad pos: -18.5,5.5 parent: 2 type: Transform - - uid: 25737 + - uid: 25744 components: - pos: 35.5,5.5 parent: 2 type: Transform - - uid: 25738 + - uid: 25745 components: - pos: 35.5,3.5 parent: 2 type: Transform - - uid: 25739 + - uid: 25746 components: - pos: 33.5,9.5 parent: 2 type: Transform - - uid: 25740 + - uid: 25747 components: - pos: 27.5,9.5 parent: 2 type: Transform - - uid: 25741 + - uid: 25748 components: - rot: 3.141592653589793 rad pos: 29.5,-40.5 parent: 2 type: Transform - - uid: 25742 + - uid: 25749 components: - rot: 3.141592653589793 rad pos: 24.5,-38.5 parent: 2 type: Transform - - uid: 25743 + - uid: 25750 components: - pos: 30.5,-38.5 parent: 2 type: Transform - - uid: 25744 + - uid: 25751 components: - rot: 3.141592653589793 rad pos: 25.5,-61.5 parent: 2 type: Transform - - uid: 25745 + - uid: 25752 components: - rot: -1.5707963267948966 rad pos: 7.5,23.5 parent: 2 type: Transform - - uid: 25746 + - uid: 25753 components: - rot: -1.5707963267948966 rad pos: 6.5,23.5 parent: 2 type: Transform - - uid: 25747 + - uid: 25754 components: - pos: 9.5,22.5 parent: 2 type: Transform - - uid: 25748 + - uid: 25755 components: - pos: 9.5,21.5 parent: 2 type: Transform - - uid: 25749 + - uid: 25756 components: - rot: 3.141592653589793 rad pos: 36.5,13.5 parent: 2 type: Transform - - uid: 25750 + - uid: 25757 components: - pos: 3.5,20.5 parent: 2 type: Transform - - uid: 25751 + - uid: 25758 components: - pos: 8.5,-24.5 parent: 2 type: Transform - - uid: 25752 + - uid: 25759 components: - pos: 12.5,-31.5 parent: 2 type: Transform - - uid: 25753 + - uid: 25760 components: - pos: 1.5,-33.5 parent: 2 type: Transform - - uid: 25754 + - uid: 25761 components: - pos: -18.5,-87.5 parent: 2 type: Transform - - uid: 25755 + - uid: 25762 components: - pos: 28.5,-11.5 parent: 2 type: Transform - - uid: 25756 + - uid: 25763 components: - pos: 13.5,-22.5 parent: 2 type: Transform - - uid: 25757 + - uid: 25764 components: - pos: 12.5,-18.5 parent: 2 type: Transform - - uid: 25758 + - uid: 25765 components: - pos: 5.5,-82.5 parent: 2 type: Transform - - uid: 25759 + - uid: 25766 components: - pos: 12.5,-69.5 parent: 2 type: Transform - - uid: 25760 + - uid: 25767 components: - pos: 23.5,-31.5 parent: 2 type: Transform - - uid: 25761 + - uid: 25768 components: - pos: 27.5,-27.5 parent: 2 type: Transform - - uid: 25762 + - uid: 25769 components: - pos: -6.5,-44.5 parent: 2 type: Transform - - uid: 25763 + - uid: 25770 components: - rot: 1.5707963267948966 rad pos: -18.5,-53.5 parent: 2 type: Transform - - uid: 25764 + - uid: 25771 components: - pos: -2.5,-37.5 parent: 2 type: Transform - - uid: 25765 + - uid: 25772 components: - pos: 13.5,-40.5 parent: 2 type: Transform - - uid: 25766 + - uid: 25773 components: - pos: 12.5,-40.5 parent: 2 type: Transform - - uid: 25767 + - uid: 25774 components: - pos: 10.5,-40.5 parent: 2 type: Transform - - uid: 25768 + - uid: 25775 components: - pos: 11.5,-40.5 parent: 2 type: Transform - - uid: 25769 + - uid: 25776 components: - pos: -1.5,-36.5 parent: 2 type: Transform - - uid: 25770 + - uid: 25777 components: - pos: 27.5,-13.5 parent: 2 type: Transform - - uid: 25771 + - uid: 25778 components: - rot: 1.5707963267948966 rad pos: 12.5,15.5 parent: 2 type: Transform - - uid: 25772 + - uid: 25779 components: - rot: 3.141592653589793 rad pos: 31.5,-9.5 parent: 2 type: Transform - - uid: 25773 + - uid: 25780 components: - pos: 28.5,-15.5 parent: 2 type: Transform - - uid: 25774 + - uid: 25781 components: - pos: 42.5,52.5 parent: 2 type: Transform - - uid: 25775 + - uid: 25782 components: - rot: 3.141592653589793 rad pos: 20.5,-19.5 parent: 2 type: Transform - - uid: 25776 + - uid: 25783 components: - pos: -18.5,-84.5 parent: 2 type: Transform - - uid: 25777 + - uid: 25784 components: - pos: -20.5,-1.5 parent: 2 type: Transform - - uid: 25778 + - uid: 25785 components: - rot: -1.5707963267948966 rad pos: 0.5,-76.5 parent: 2 type: Transform - - uid: 25779 + - uid: 25786 components: - rot: 1.5707963267948966 rad pos: 3.5,13.5 parent: 2 type: Transform - - uid: 25780 + - uid: 25787 components: - pos: 18.5,18.5 parent: 2 type: Transform - - uid: 25781 + - uid: 25788 components: - rot: -1.5707963267948966 rad pos: -0.5,-83.5 parent: 2 type: Transform - - uid: 25782 + - uid: 25789 components: - rot: -1.5707963267948966 rad pos: 0.5,-80.5 parent: 2 type: Transform - - uid: 25783 + - uid: 25790 components: - pos: 15.5,-63.5 parent: 2 type: Transform - - uid: 25784 + - uid: 25791 components: - pos: 17.5,-64.5 parent: 2 type: Transform - - uid: 25785 + - uid: 25792 components: - pos: 49.5,-21.5 parent: 2 type: Transform - - uid: 25786 + - uid: 25793 components: - pos: 45.5,-20.5 parent: 2 type: Transform - - uid: 25787 + - uid: 25794 components: - pos: 46.5,-20.5 parent: 2 type: Transform - - uid: 25788 + - uid: 25795 components: - pos: 43.5,-29.5 parent: 2 type: Transform - - uid: 25789 + - uid: 25796 components: - pos: 43.5,-30.5 parent: 2 type: Transform - - uid: 25790 + - uid: 25797 components: - pos: 43.5,-31.5 parent: 2 type: Transform - - uid: 25791 + - uid: 25798 components: - pos: 44.5,-31.5 parent: 2 type: Transform - - uid: 25792 + - uid: 25799 components: - pos: 49.5,-31.5 parent: 2 type: Transform - - uid: 25793 + - uid: 25800 components: - pos: 49.5,-30.5 parent: 2 type: Transform - - uid: 25794 + - uid: 25801 components: - pos: 49.5,-29.5 parent: 2 type: Transform - - uid: 25795 + - uid: 25802 components: - pos: 49.5,-28.5 parent: 2 type: Transform - - uid: 25796 + - uid: 25803 components: - pos: 48.5,-20.5 parent: 2 type: Transform - - uid: 25797 + - uid: 25804 components: - pos: 48.5,-31.5 parent: 2 type: Transform - - uid: 25798 + - uid: 25805 components: - pos: 47.5,-31.5 parent: 2 type: Transform - - uid: 25799 + - uid: 25806 components: - pos: 46.5,-31.5 parent: 2 type: Transform - - uid: 25800 + - uid: 25807 components: - pos: 45.5,-31.5 parent: 2 type: Transform - - uid: 25801 + - uid: 25808 components: - pos: 49.5,-27.5 parent: 2 type: Transform - - uid: 25802 + - uid: 25809 components: - pos: 49.5,-20.5 parent: 2 type: Transform - - uid: 25803 + - uid: 25810 components: - pos: 43.5,-21.5 parent: 2 type: Transform - - uid: 25804 + - uid: 25811 components: - pos: 49.5,-22.5 parent: 2 type: Transform - - uid: 25805 + - uid: 25812 components: - pos: 48.5,-26.5 parent: 2 type: Transform - - uid: 25806 + - uid: 25813 components: - pos: 47.5,-26.5 parent: 2 type: Transform - - uid: 25807 + - uid: 25814 components: - rot: -1.5707963267948966 rad pos: 46.5,-25.5 parent: 2 type: Transform - - uid: 25808 + - uid: 25815 components: - rot: -1.5707963267948966 rad pos: 45.5,-25.5 parent: 2 type: Transform - - uid: 25809 + - uid: 25816 components: - rot: -1.5707963267948966 rad pos: 46.5,-26.5 parent: 2 type: Transform - - uid: 25810 + - uid: 25817 components: - rot: 3.141592653589793 rad pos: 47.5,3.5 parent: 2 type: Transform - - uid: 25811 + - uid: 25818 components: - pos: -27.5,-91.5 parent: 2 type: Transform - - uid: 25812 + - uid: 25819 components: - pos: -18.5,-90.5 parent: 2 type: Transform - - uid: 25813 + - uid: 25820 components: - pos: -18.5,-91.5 parent: 2 type: Transform - - uid: 25814 + - uid: 25821 components: - pos: -19.5,-91.5 parent: 2 type: Transform - - uid: 25815 + - uid: 25822 components: - pos: -23.5,-91.5 parent: 2 type: Transform - - uid: 25816 + - uid: 25823 components: - pos: -26.5,-91.5 parent: 2 type: Transform - - uid: 25817 + - uid: 25824 components: - pos: -27.5,-87.5 parent: 2 type: Transform - - uid: 25818 + - uid: 25825 components: - pos: 7.5,-37.5 parent: 2 type: Transform - - uid: 25819 + - uid: 25826 components: - rot: 1.5707963267948966 rad pos: 15.5,28.5 parent: 2 type: Transform - - uid: 25820 + - uid: 25827 components: - pos: 5.5,30.5 parent: 2 type: Transform - - uid: 25821 + - uid: 25828 components: - pos: 18.5,24.5 parent: 2 type: Transform - - uid: 25822 + - uid: 25829 components: - pos: 17.5,24.5 parent: 2 type: Transform - - uid: 25823 + - uid: 25830 components: - pos: 16.5,24.5 parent: 2 type: Transform - - uid: 25824 + - uid: 25831 components: - pos: 15.5,24.5 parent: 2 type: Transform - - uid: 25825 + - uid: 25832 components: - pos: 13.5,24.5 parent: 2 type: Transform - - uid: 25826 + - uid: 25833 components: - rot: 1.5707963267948966 rad pos: 15.5,29.5 parent: 2 type: Transform - - uid: 25827 + - uid: 25834 components: - pos: 44.5,-32.5 parent: 2 type: Transform - - uid: 25828 + - uid: 25835 components: - pos: 49.5,44.5 parent: 2 type: Transform - - uid: 25829 + - uid: 25836 components: - pos: 19.5,30.5 parent: 2 type: Transform - - uid: 25830 + - uid: 25837 components: - pos: 19.5,29.5 parent: 2 type: Transform - - uid: 25831 + - uid: 25838 components: - pos: 19.5,28.5 parent: 2 type: Transform - - uid: 25832 + - uid: 25839 components: - pos: 19.5,27.5 parent: 2 type: Transform - - uid: 25833 + - uid: 25840 components: - rot: 1.5707963267948966 rad pos: 20.5,26.5 parent: 2 type: Transform - - uid: 25834 + - uid: 25841 components: - rot: 1.5707963267948966 rad pos: 19.5,26.5 parent: 2 type: Transform - - uid: 25835 + - uid: 25842 components: - rot: 1.5707963267948966 rad pos: 21.5,26.5 parent: 2 type: Transform - - uid: 25836 + - uid: 25843 components: - rot: 1.5707963267948966 rad pos: 22.5,26.5 parent: 2 type: Transform - - uid: 25837 + - uid: 25844 components: - pos: 3.5,31.5 parent: 2 type: Transform - - uid: 25838 + - uid: 25845 components: - pos: 4.5,30.5 parent: 2 type: Transform - - uid: 25839 + - uid: 25846 components: - pos: 3.5,33.5 parent: 2 type: Transform - - uid: 25840 + - uid: 25847 components: - pos: 11.5,29.5 parent: 2 type: Transform - - uid: 25841 + - uid: 25848 components: - pos: 11.5,35.5 parent: 2 type: Transform - - uid: 25842 + - uid: 25849 components: - pos: 9.5,29.5 parent: 2 type: Transform - - uid: 25843 + - uid: 25850 components: - pos: 4.5,31.5 parent: 2 type: Transform - - uid: 25844 + - uid: 25851 components: - pos: 11.5,33.5 parent: 2 type: Transform - - uid: 25845 + - uid: 25852 components: - pos: 6.5,35.5 parent: 2 type: Transform - - uid: 25846 + - uid: 25853 components: - pos: 66.5,4.5 parent: 2 type: Transform - - uid: 25847 + - uid: 25854 components: - pos: 66.5,5.5 parent: 2 type: Transform - - uid: 25848 + - uid: 25855 components: - pos: 66.5,3.5 parent: 2 type: Transform - - uid: 25849 + - uid: 25856 components: - pos: 66.5,2.5 parent: 2 type: Transform - - uid: 25850 + - uid: 25857 components: - pos: 66.5,1.5 parent: 2 type: Transform - - uid: 25851 + - uid: 25858 components: - rot: 1.5707963267948966 rad pos: 14.5,26.5 parent: 2 type: Transform - - uid: 25852 + - uid: 25859 components: - rot: 1.5707963267948966 rad pos: 15.5,26.5 parent: 2 type: Transform - - uid: 25853 + - uid: 25860 components: - rot: 1.5707963267948966 rad pos: 15.5,27.5 parent: 2 type: Transform - - uid: 25854 + - uid: 25861 components: - rot: 1.5707963267948966 rad pos: 13.5,26.5 parent: 2 type: Transform - - uid: 25855 + - uid: 25862 components: - rot: 1.5707963267948966 rad pos: 12.5,26.5 parent: 2 type: Transform - - uid: 25856 + - uid: 25863 components: - rot: 1.5707963267948966 rad pos: 11.5,26.5 parent: 2 type: Transform - - uid: 25857 + - uid: 25864 components: - rot: 1.5707963267948966 rad pos: 10.5,26.5 parent: 2 type: Transform - - uid: 25858 + - uid: 25865 components: - rot: 1.5707963267948966 rad pos: 10.5,25.5 parent: 2 type: Transform - - uid: 25859 + - uid: 25866 components: - rot: 1.5707963267948966 rad pos: 9.5,25.5 parent: 2 type: Transform - - uid: 25860 + - uid: 25867 components: - rot: 1.5707963267948966 rad pos: 8.5,25.5 parent: 2 type: Transform - - uid: 25861 + - uid: 25868 components: - rot: 1.5707963267948966 rad pos: 7.5,25.5 parent: 2 type: Transform - - uid: 25862 + - uid: 25869 components: - rot: 1.5707963267948966 rad pos: 5.5,25.5 parent: 2 type: Transform - - uid: 25863 + - uid: 25870 components: - rot: 1.5707963267948966 rad pos: 3.5,25.5 parent: 2 type: Transform - - uid: 25864 + - uid: 25871 components: - rot: 1.5707963267948966 rad pos: 18.5,30.5 parent: 2 type: Transform - - uid: 25865 + - uid: 25872 components: - rot: 1.5707963267948966 rad pos: 15.5,30.5 parent: 2 type: Transform - - uid: 25866 + - uid: 25873 components: - rot: 1.5707963267948966 rad pos: 14.5,30.5 parent: 2 type: Transform - - uid: 25867 + - uid: 25874 components: - rot: 1.5707963267948966 rad pos: 14.5,31.5 parent: 2 type: Transform - - uid: 25868 + - uid: 25875 components: - rot: 1.5707963267948966 rad pos: 13.5,31.5 parent: 2 type: Transform - - uid: 25869 + - uid: 25876 components: - pos: 49.5,50.5 parent: 2 type: Transform - - uid: 25870 + - uid: 25877 components: - rot: 1.5707963267948966 rad pos: 14.5,33.5 parent: 2 type: Transform - - uid: 25871 + - uid: 25878 components: - rot: 1.5707963267948966 rad pos: 13.5,33.5 parent: 2 type: Transform - - uid: 25872 + - uid: 25879 components: - pos: -1.5,26.5 parent: 2 type: Transform - - uid: 25873 + - uid: 25880 components: - pos: 59.5,41.5 parent: 2 type: Transform - - uid: 25874 + - uid: 25881 components: - rot: 1.5707963267948966 rad pos: 14.5,34.5 parent: 2 type: Transform - - uid: 25875 + - uid: 25882 components: - rot: 1.5707963267948966 rad pos: 18.5,31.5 parent: 2 type: Transform - - uid: 25876 + - uid: 25883 components: - pos: 10.5,29.5 parent: 2 type: Transform - - uid: 25877 + - uid: 25884 components: - pos: 11.5,34.5 parent: 2 type: Transform - - uid: 25878 + - uid: 25885 components: - pos: 5.5,35.5 parent: 2 type: Transform - - uid: 25879 + - uid: 25886 components: - pos: 18.5,34.5 parent: 2 type: Transform - - uid: 25880 + - uid: 25887 components: - pos: 10.5,35.5 parent: 2 type: Transform - - uid: 25881 + - uid: 25888 components: - pos: 11.5,30.5 parent: 2 type: Transform - - uid: 25882 + - uid: 25889 components: - pos: 1.5,25.5 parent: 2 type: Transform - - uid: 25883 + - uid: 25890 components: - pos: 0.5,25.5 parent: 2 type: Transform - - uid: 25884 + - uid: 25891 components: - pos: -0.5,25.5 parent: 2 type: Transform - - uid: 25885 + - uid: 25892 components: - pos: -1.5,25.5 parent: 2 type: Transform - - uid: 25886 + - uid: 25893 components: - pos: -1.5,28.5 parent: 2 type: Transform - - uid: 25887 + - uid: 25894 components: - pos: -3.5,25.5 parent: 2 type: Transform - - uid: 25888 + - uid: 25895 components: - pos: -3.5,24.5 parent: 2 type: Transform - - uid: 25889 + - uid: 25896 components: - pos: 59.5,48.5 parent: 2 type: Transform - - uid: 25890 + - uid: 25897 components: - pos: 34.5,26.5 parent: 2 type: Transform - - uid: 25891 + - uid: 25898 components: - pos: 34.5,25.5 parent: 2 type: Transform - - uid: 25892 + - uid: 25899 components: - pos: 34.5,24.5 parent: 2 type: Transform - - uid: 25893 + - uid: 25900 components: - rot: -1.5707963267948966 rad pos: 37.5,21.5 parent: 2 type: Transform - - uid: 25894 + - uid: 25901 components: - pos: 36.5,21.5 parent: 2 type: Transform - - uid: 25895 + - uid: 25902 components: - pos: 33.5,21.5 parent: 2 type: Transform - - uid: 25896 + - uid: 25903 components: - pos: 33.5,20.5 parent: 2 type: Transform - - uid: 25897 + - uid: 25904 components: - rot: -1.5707963267948966 rad pos: 37.5,22.5 parent: 2 type: Transform - - uid: 25898 + - uid: 25905 components: - rot: -1.5707963267948966 rad pos: 38.5,22.5 parent: 2 type: Transform - - uid: 25899 + - uid: 25906 components: - pos: 35.5,21.5 parent: 2 type: Transform - - uid: 25900 + - uid: 25907 components: - rot: -1.5707963267948966 rad pos: 37.5,19.5 parent: 2 type: Transform - - uid: 25901 + - uid: 25908 components: - rot: -1.5707963267948966 rad pos: 39.5,22.5 parent: 2 type: Transform - - uid: 25902 + - uid: 25909 components: - rot: -1.5707963267948966 rad pos: 40.5,22.5 parent: 2 type: Transform - - uid: 25903 + - uid: 25910 components: - rot: -1.5707963267948966 rad pos: 37.5,18.5 parent: 2 type: Transform - - uid: 25904 + - uid: 25911 components: - rot: 3.141592653589793 rad pos: 35.5,24.5 parent: 2 type: Transform - - uid: 25905 + - uid: 25912 components: - rot: 3.141592653589793 rad pos: 37.5,24.5 parent: 2 type: Transform - - uid: 25906 + - uid: 25913 components: - rot: -1.5707963267948966 rad pos: 39.5,24.5 parent: 2 type: Transform - - uid: 25907 + - uid: 25914 components: - rot: -1.5707963267948966 rad pos: 46.5,25.5 parent: 2 type: Transform - - uid: 25908 + - uid: 25915 components: - rot: -1.5707963267948966 rad pos: 61.5,25.5 parent: 2 type: Transform - - uid: 25909 + - uid: 25916 components: - rot: -1.5707963267948966 rad pos: 59.5,25.5 parent: 2 type: Transform - - uid: 25910 + - uid: 25917 components: - rot: -1.5707963267948966 rad pos: 58.5,25.5 parent: 2 type: Transform - - uid: 25911 + - uid: 25918 components: - rot: -1.5707963267948966 rad pos: 47.5,25.5 parent: 2 type: Transform - - uid: 25912 + - uid: 25919 components: - rot: -1.5707963267948966 rad pos: 60.5,25.5 parent: 2 type: Transform - - uid: 25913 + - uid: 25920 components: - rot: -1.5707963267948966 rad pos: 57.5,25.5 parent: 2 type: Transform - - uid: 25914 + - uid: 25921 components: - rot: -1.5707963267948966 rad pos: 54.5,25.5 parent: 2 type: Transform - - uid: 25915 + - uid: 25922 components: - rot: -1.5707963267948966 rad pos: 50.5,25.5 parent: 2 type: Transform - - uid: 25916 + - uid: 25923 components: - rot: -1.5707963267948966 rad pos: 45.5,25.5 parent: 2 type: Transform - - uid: 25917 + - uid: 25924 components: - rot: -1.5707963267948966 rad pos: 45.5,24.5 parent: 2 type: Transform - - uid: 25918 + - uid: 25925 components: - rot: -1.5707963267948966 rad pos: 45.5,23.5 parent: 2 type: Transform - - uid: 25919 + - uid: 25926 components: - rot: -1.5707963267948966 rad pos: 56.5,25.5 parent: 2 type: Transform - - uid: 25920 + - uid: 25927 components: - rot: -1.5707963267948966 rad pos: 55.5,25.5 parent: 2 type: Transform - - uid: 25921 + - uid: 25928 components: - rot: -1.5707963267948966 rad pos: 49.5,25.5 parent: 2 type: Transform - - uid: 25922 + - uid: 25929 components: - rot: -1.5707963267948966 rad pos: 48.5,25.5 parent: 2 type: Transform - - uid: 25923 + - uid: 25930 components: - rot: -1.5707963267948966 rad pos: 53.5,25.5 parent: 2 type: Transform - - uid: 25924 + - uid: 25931 components: - rot: -1.5707963267948966 rad pos: 62.5,25.5 parent: 2 type: Transform - - uid: 25925 + - uid: 25932 components: - rot: -1.5707963267948966 rad pos: 52.5,25.5 parent: 2 type: Transform - - uid: 25926 + - uid: 25933 components: - rot: -1.5707963267948966 rad pos: 51.5,25.5 parent: 2 type: Transform - - uid: 25927 + - uid: 25934 components: - rot: -1.5707963267948966 rad pos: 64.5,25.5 parent: 2 type: Transform - - uid: 25928 + - uid: 25935 components: - rot: -1.5707963267948966 rad pos: 63.5,25.5 parent: 2 type: Transform - - uid: 25929 + - uid: 25936 components: - rot: -1.5707963267948966 rad pos: 64.5,24.5 parent: 2 type: Transform - - uid: 25930 + - uid: 25937 components: - rot: -1.5707963267948966 rad pos: 64.5,23.5 parent: 2 type: Transform - - uid: 25931 + - uid: 25938 components: - rot: -1.5707963267948966 rad pos: 64.5,22.5 parent: 2 type: Transform - - uid: 25932 + - uid: 25939 components: - pos: 64.5,21.5 parent: 2 type: Transform - - uid: 25933 + - uid: 25940 components: - rot: -1.5707963267948966 rad pos: 64.5,20.5 parent: 2 type: Transform - - uid: 25934 + - uid: 25941 components: - rot: -1.5707963267948966 rad pos: 63.5,20.5 parent: 2 type: Transform - - uid: 25935 + - uid: 25942 components: - rot: -1.5707963267948966 rad pos: 63.5,19.5 parent: 2 type: Transform - - uid: 25936 + - uid: 25943 components: - rot: -1.5707963267948966 rad pos: 45.5,22.5 parent: 2 type: Transform - - uid: 25937 + - uid: 25944 components: - rot: -1.5707963267948966 rad pos: 44.5,22.5 parent: 2 type: Transform - - uid: 25938 + - uid: 25945 components: - rot: -1.5707963267948966 rad pos: 43.5,22.5 parent: 2 type: Transform - - uid: 25939 + - uid: 25946 components: - rot: -1.5707963267948966 rad pos: 41.5,22.5 parent: 2 type: Transform - - uid: 25940 + - uid: 25947 components: - rot: 3.141592653589793 rad pos: 31.5,33.5 parent: 2 type: Transform - - uid: 25941 + - uid: 25948 components: - pos: 43.5,24.5 parent: 2 type: Transform - - uid: 25942 + - uid: 25949 components: - pos: 43.5,25.5 parent: 2 type: Transform - - uid: 25943 + - uid: 25950 components: - pos: 43.5,26.5 parent: 2 type: Transform - - uid: 25944 + - uid: 25951 components: - pos: 43.5,27.5 parent: 2 type: Transform - - uid: 25945 + - uid: 25952 components: - pos: 51.5,59.5 parent: 2 type: Transform - - uid: 25946 + - uid: 25953 components: - pos: 50.5,59.5 parent: 2 type: Transform - - uid: 25947 + - uid: 25954 components: - pos: 50.5,55.5 parent: 2 type: Transform - - uid: 25948 + - uid: 25955 components: - pos: 51.5,55.5 parent: 2 type: Transform - - uid: 25949 + - uid: 25956 components: - pos: 51.5,54.5 parent: 2 type: Transform - - uid: 25950 + - uid: 25957 components: - pos: 57.5,54.5 parent: 2 type: Transform - - uid: 25951 + - uid: 25958 components: - pos: 57.5,55.5 parent: 2 type: Transform - - uid: 25952 + - uid: 25959 components: - pos: 57.5,59.5 parent: 2 type: Transform - - uid: 25953 + - uid: 25960 components: - pos: 58.5,59.5 parent: 2 type: Transform - - uid: 25954 + - uid: 25961 components: - pos: 58.5,55.5 parent: 2 type: Transform - - uid: 25955 + - uid: 25962 components: - pos: 51.5,60.5 parent: 2 type: Transform - - uid: 25956 + - uid: 25963 components: - pos: 52.5,60.5 parent: 2 type: Transform - - uid: 25957 + - uid: 25964 components: - pos: 52.5,61.5 parent: 2 type: Transform - - uid: 25958 + - uid: 25965 components: - pos: 56.5,61.5 parent: 2 type: Transform - - uid: 25959 + - uid: 25966 components: - pos: 56.5,60.5 parent: 2 type: Transform - - uid: 25960 + - uid: 25967 components: - pos: 65.5,27.5 parent: 2 type: Transform - - uid: 25961 + - uid: 25968 components: - rot: -1.5707963267948966 rad pos: 64.5,13.5 parent: 2 type: Transform - - uid: 25962 + - uid: 25969 components: - rot: -1.5707963267948966 rad pos: 64.5,12.5 parent: 2 type: Transform - - uid: 25963 + - uid: 25970 components: - rot: -1.5707963267948966 rad pos: 64.5,11.5 parent: 2 type: Transform - - uid: 25964 + - uid: 25971 components: - rot: -1.5707963267948966 rad pos: 64.5,10.5 parent: 2 type: Transform - - uid: 25965 + - uid: 25972 components: - rot: -1.5707963267948966 rad pos: 64.5,8.5 parent: 2 type: Transform - - uid: 25966 + - uid: 25973 components: - rot: -1.5707963267948966 rad pos: 64.5,9.5 parent: 2 type: Transform - - uid: 25967 + - uid: 25974 components: - rot: -1.5707963267948966 rad pos: 64.5,7.5 parent: 2 type: Transform - - uid: 25968 + - uid: 25975 components: - rot: -1.5707963267948966 rad pos: 64.5,6.5 parent: 2 type: Transform - - uid: 25969 + - uid: 25976 components: - pos: 66.5,27.5 parent: 2 type: Transform - - uid: 25970 + - uid: 25977 components: - pos: 66.5,27.5 parent: 2 type: Transform - - uid: 25971 + - uid: 25978 components: - pos: 66.5,26.5 parent: 2 type: Transform - - uid: 25972 + - uid: 25979 components: - pos: 66.5,24.5 parent: 2 type: Transform - - uid: 25973 + - uid: 25980 components: - pos: 66.5,22.5 parent: 2 type: Transform - - uid: 25974 + - uid: 25981 components: - pos: 66.5,21.5 parent: 2 type: Transform - - uid: 25975 + - uid: 25982 components: - pos: 66.5,20.5 parent: 2 type: Transform - - uid: 25976 + - uid: 25983 components: - pos: 66.5,19.5 parent: 2 type: Transform - - uid: 25977 + - uid: 25984 components: - pos: 66.5,18.5 parent: 2 type: Transform - - uid: 25978 + - uid: 25985 components: - pos: 65.5,18.5 parent: 2 type: Transform - - uid: 25979 + - uid: 25986 components: - pos: 65.5,17.5 parent: 2 type: Transform - - uid: 25980 + - uid: 25987 components: - pos: 65.5,16.5 parent: 2 type: Transform - - uid: 25981 + - uid: 25988 components: - pos: 66.5,16.5 parent: 2 type: Transform - - uid: 25982 + - uid: 25989 components: - pos: 66.5,15.5 parent: 2 type: Transform - - uid: 25983 + - uid: 25990 components: - pos: 66.5,14.5 parent: 2 type: Transform - - uid: 25984 + - uid: 25991 components: - pos: 66.5,13.5 parent: 2 type: Transform - - uid: 25985 + - uid: 25992 components: - pos: 67.5,5.5 parent: 2 type: Transform - - uid: 25986 + - uid: 25993 components: - pos: 68.5,9.5 parent: 2 type: Transform - - uid: 25987 + - uid: 25994 components: - pos: 67.5,13.5 parent: 2 type: Transform - - uid: 25988 + - uid: 25995 components: - pos: 67.5,12.5 parent: 2 type: Transform - - uid: 25989 + - uid: 25996 components: - pos: 67.5,6.5 parent: 2 type: Transform - - uid: 25990 + - uid: 25997 components: - pos: 43.5,8.5 parent: 2 type: Transform - - uid: 25991 + - uid: 25998 components: - pos: 48.5,4.5 parent: 2 type: Transform - - uid: 25992 + - uid: 25999 components: - pos: 48.5,5.5 parent: 2 type: Transform - - uid: 25993 + - uid: 26000 components: - pos: 49.5,3.5 parent: 2 type: Transform - - uid: 25994 + - uid: 26001 components: - pos: 50.5,3.5 parent: 2 type: Transform - - uid: 25995 + - uid: 26002 components: - pos: 50.5,4.5 parent: 2 type: Transform - - uid: 25996 + - uid: 26003 components: - pos: 51.5,4.5 parent: 2 type: Transform - - uid: 25997 + - uid: 26004 components: - pos: 52.5,4.5 parent: 2 type: Transform - - uid: 25998 + - uid: 26005 components: - pos: 53.5,4.5 parent: 2 type: Transform - - uid: 25999 + - uid: 26006 components: - pos: 54.5,4.5 parent: 2 type: Transform - - uid: 26000 + - uid: 26007 components: - pos: 54.5,3.5 parent: 2 type: Transform - - uid: 26001 + - uid: 26008 components: - pos: 55.5,3.5 parent: 2 type: Transform - - uid: 26002 + - uid: 26009 components: - pos: 56.5,3.5 parent: 2 type: Transform - - uid: 26003 + - uid: 26010 components: - pos: 57.5,3.5 parent: 2 type: Transform - - uid: 26004 + - uid: 26011 components: - pos: 58.5,3.5 parent: 2 type: Transform - - uid: 26005 + - uid: 26012 components: - pos: 64.5,5.5 parent: 2 type: Transform - - uid: 26006 + - uid: 26013 components: - pos: 64.5,4.5 parent: 2 type: Transform - - uid: 26007 + - uid: 26014 components: - pos: 64.5,3.5 parent: 2 type: Transform - - uid: 26008 + - uid: 26015 components: - pos: 63.5,3.5 parent: 2 type: Transform - - uid: 26009 + - uid: 26016 components: - pos: 62.5,3.5 parent: 2 type: Transform - - uid: 26010 + - uid: 26017 components: - pos: 61.5,3.5 parent: 2 type: Transform - - uid: 26011 + - uid: 26018 components: - pos: 60.5,3.5 parent: 2 type: Transform - - uid: 26012 + - uid: 26019 components: - pos: 59.5,3.5 parent: 2 type: Transform - - uid: 26013 + - uid: 26020 components: - rot: -1.5707963267948966 rad pos: 59.5,46.5 parent: 2 type: Transform - - uid: 26014 + - uid: 26021 components: - pos: 68.5,6.5 parent: 2 type: Transform - - uid: 26015 + - uid: 26022 components: - pos: 47.5,-17.5 parent: 2 type: Transform - - uid: 26016 + - uid: 26023 components: - pos: 44.5,13.5 parent: 2 type: Transform - - uid: 26017 + - uid: 26024 components: - pos: 47.5,9.5 parent: 2 type: Transform - - uid: 26018 + - uid: 26025 components: - pos: 44.5,3.5 parent: 2 type: Transform - - uid: 26019 + - uid: 26026 components: - rot: 3.141592653589793 rad pos: 39.5,10.5 parent: 2 type: Transform - - uid: 26020 + - uid: 26027 components: - pos: 48.5,8.5 parent: 2 type: Transform - - uid: 26021 + - uid: 26028 components: - pos: 33.5,19.5 parent: 2 type: Transform - - uid: 26022 + - uid: 26029 components: - rot: -1.5707963267948966 rad pos: 41.5,24.5 parent: 2 type: Transform - - uid: 26023 + - uid: 26030 components: - rot: 3.141592653589793 rad pos: 33.5,27.5 parent: 2 type: Transform - - uid: 26024 + - uid: 26031 components: - rot: 3.141592653589793 rad pos: 25.5,29.5 parent: 2 type: Transform - - uid: 26025 + - uid: 26032 components: - pos: 42.5,22.5 parent: 2 type: Transform - - uid: 26026 + - uid: 26033 components: - pos: 47.5,-16.5 parent: 2 type: Transform - - uid: 26027 + - uid: 26034 components: - rot: -1.5707963267948966 rad pos: 39.5,-16.5 parent: 2 type: Transform - - uid: 26028 + - uid: 26035 components: - rot: -1.5707963267948966 rad pos: 40.5,-16.5 parent: 2 type: Transform - - uid: 26029 + - uid: 26036 components: - rot: -1.5707963267948966 rad pos: 40.5,-15.5 parent: 2 type: Transform - - uid: 26030 + - uid: 26037 components: - rot: -1.5707963267948966 rad pos: 41.5,-15.5 parent: 2 type: Transform - - uid: 26031 + - uid: 26038 components: - pos: 48.5,-15.5 parent: 2 type: Transform - - uid: 26032 + - uid: 26039 components: - pos: 44.5,-17.5 parent: 2 type: Transform - - uid: 26033 + - uid: 26040 components: - pos: 44.5,-16.5 parent: 2 type: Transform - - uid: 26034 + - uid: 26041 components: - pos: 11.5,-18.5 parent: 2 type: Transform - - uid: 26035 + - uid: 26042 components: - pos: 44.5,9.5 parent: 2 type: Transform - - uid: 26036 + - uid: 26043 components: - rot: 1.5707963267948966 rad pos: 69.5,-12.5 parent: 2 type: Transform - - uid: 26037 + - uid: 26044 components: - rot: 1.5707963267948966 rad pos: 69.5,-10.5 parent: 2 type: Transform - - uid: 26038 + - uid: 26045 components: - rot: 1.5707963267948966 rad pos: 66.5,-14.5 parent: 2 type: Transform - - uid: 26039 + - uid: 26046 components: - rot: 1.5707963267948966 rad pos: 69.5,-14.5 parent: 2 type: Transform - - uid: 26040 + - uid: 26047 components: - pos: 48.5,-14.5 parent: 2 type: Transform - - uid: 26041 + - uid: 26048 components: - pos: 48.5,-16.5 parent: 2 type: Transform - - uid: 26042 + - uid: 26049 components: - pos: 43.5,-16.5 parent: 2 type: Transform - - uid: 26043 + - uid: 26050 components: - pos: 49.5,-14.5 parent: 2 type: Transform - - uid: 26044 + - uid: 26051 components: - pos: 50.5,-14.5 parent: 2 type: Transform - - uid: 26045 + - uid: 26052 components: - pos: 51.5,-14.5 parent: 2 type: Transform - - uid: 26046 + - uid: 26053 components: - rot: 3.141592653589793 rad pos: 54.5,-15.5 parent: 2 type: Transform - - uid: 26047 + - uid: 26054 components: - rot: 3.141592653589793 rad pos: 60.5,-15.5 parent: 2 type: Transform - - uid: 26048 + - uid: 26055 components: - rot: 3.141592653589793 rad pos: 57.5,-15.5 parent: 2 type: Transform - - uid: 26049 + - uid: 26056 components: - rot: 3.141592653589793 rad pos: 53.5,-15.5 parent: 2 type: Transform - - uid: 26050 + - uid: 26057 components: - rot: 3.141592653589793 rad pos: 53.5,-16.5 parent: 2 type: Transform - - uid: 26051 + - uid: 26058 components: - rot: 3.141592653589793 rad pos: 51.5,-15.5 parent: 2 type: Transform - - uid: 26052 + - uid: 26059 components: - pos: 63.5,-14.5 parent: 2 type: Transform - - uid: 26053 + - uid: 26060 components: - pos: 64.5,-14.5 parent: 2 type: Transform - - uid: 26054 + - uid: 26061 components: - pos: 65.5,-14.5 parent: 2 type: Transform - - uid: 26055 + - uid: 26062 components: - rot: 1.5707963267948966 rad pos: 69.5,-4.5 parent: 2 type: Transform - - uid: 26056 + - uid: 26063 components: - rot: 3.141592653589793 rad pos: 66.5,-2.5 parent: 2 type: Transform - - uid: 26057 + - uid: 26064 components: - pos: 68.5,-14.5 parent: 2 type: Transform - - uid: 26058 + - uid: 26065 components: - rot: 1.5707963267948966 rad pos: 69.5,-2.5 parent: 2 type: Transform - - uid: 26059 + - uid: 26066 components: - pos: 63.5,-15.5 parent: 2 type: Transform - - uid: 26060 + - uid: 26067 components: - rot: 3.141592653589793 rad pos: 51.5,-16.5 parent: 2 type: Transform - - uid: 26061 + - uid: 26068 components: - pos: 63.5,-16.5 parent: 2 type: Transform - - uid: 26062 + - uid: 26069 components: - pos: 63.5,-17.5 parent: 2 type: Transform - - uid: 26063 + - uid: 26070 components: - pos: 63.5,-19.5 parent: 2 type: Transform - - uid: 26064 + - uid: 26071 components: - pos: 63.5,-21.5 parent: 2 type: Transform - - uid: 26065 + - uid: 26072 components: - pos: 63.5,-23.5 parent: 2 type: Transform - - uid: 26066 + - uid: 26073 components: - pos: 63.5,-25.5 parent: 2 type: Transform - - uid: 26067 + - uid: 26074 components: - pos: 63.5,-27.5 parent: 2 type: Transform - - uid: 26068 + - uid: 26075 components: - pos: 64.5,-27.5 parent: 2 type: Transform - - uid: 26069 + - uid: 26076 components: - pos: 69.5,-31.5 parent: 2 type: Transform - - uid: 26070 + - uid: 26077 components: - pos: 61.5,-16.5 parent: 2 type: Transform - - uid: 26071 + - uid: 26078 components: - pos: 61.5,-17.5 parent: 2 type: Transform - - uid: 26072 + - uid: 26079 components: - pos: 61.5,-19.5 parent: 2 type: Transform - - uid: 26073 + - uid: 26080 components: - pos: 61.5,-21.5 parent: 2 type: Transform - - uid: 26074 + - uid: 26081 components: - pos: 61.5,-23.5 parent: 2 type: Transform - - uid: 26075 + - uid: 26082 components: - pos: 61.5,-25.5 parent: 2 type: Transform - - uid: 26076 + - uid: 26083 components: - pos: 69.5,-32.5 parent: 2 type: Transform - - uid: 26077 + - uid: 26084 components: - pos: 60.5,-16.5 parent: 2 type: Transform - - uid: 26078 + - uid: 26085 components: - pos: -2.5,-36.5 parent: 2 type: Transform - - uid: 26079 + - uid: 26086 components: - pos: 43.5,-15.5 parent: 2 type: Transform - - uid: 26080 + - uid: 26087 components: - pos: 42.5,-15.5 parent: 2 type: Transform - - uid: 26081 + - uid: 26088 components: - pos: 68.5,-15.5 parent: 2 type: Transform - - uid: 26082 + - uid: 26089 components: - rot: 1.5707963267948966 rad pos: 69.5,-6.5 parent: 2 type: Transform - - uid: 26083 + - uid: 26090 components: - rot: -1.5707963267948966 rad pos: 57.5,37.5 parent: 2 type: Transform - - uid: 26084 + - uid: 26091 components: - pos: 70.5,-30.5 parent: 2 type: Transform - - uid: 26085 + - uid: 26092 components: - pos: 72.5,-39.5 parent: 2 type: Transform - - uid: 26086 + - uid: 26093 components: - pos: 76.5,-32.5 parent: 2 type: Transform - - uid: 26087 + - uid: 26094 components: - pos: 65.5,-37.5 parent: 2 type: Transform - - uid: 26088 + - uid: 26095 components: - pos: 63.5,-40.5 parent: 2 type: Transform - - uid: 26089 + - uid: 26096 components: - pos: 63.5,-38.5 parent: 2 type: Transform - - uid: 26090 + - uid: 26097 components: - pos: 76.5,-31.5 parent: 2 type: Transform - - uid: 26091 + - uid: 26098 components: - rot: -1.5707963267948966 rad pos: 60.5,-25.5 parent: 2 type: Transform - - uid: 26092 + - uid: 26099 components: - pos: 52.5,-48.5 parent: 2 type: Transform - - uid: 26093 + - uid: 26100 components: - pos: 52.5,-47.5 parent: 2 type: Transform - - uid: 26094 + - uid: 26101 components: - pos: 52.5,-46.5 parent: 2 type: Transform - - uid: 26095 + - uid: 26102 components: - pos: 53.5,-46.5 parent: 2 type: Transform - - uid: 26096 + - uid: 26103 components: - pos: 54.5,-46.5 parent: 2 type: Transform - - uid: 26097 + - uid: 26104 components: - pos: 71.5,-66.5 parent: 2 type: Transform - - uid: 26098 + - uid: 26105 components: - pos: 75.5,-31.5 parent: 2 type: Transform - - uid: 26099 + - uid: 26106 components: - pos: 75.5,-30.5 parent: 2 type: Transform - - uid: 26100 + - uid: 26107 components: - pos: 74.5,-30.5 parent: 2 type: Transform - - uid: 26101 + - uid: 26108 components: - rot: -1.5707963267948966 rad pos: 70.5,-29.5 parent: 2 type: Transform - - uid: 26102 + - uid: 26109 components: - pos: 64.5,-42.5 parent: 2 type: Transform - - uid: 26103 + - uid: 26110 components: - pos: 55.5,-46.5 parent: 2 type: Transform - - uid: 26104 + - uid: 26111 components: - pos: 57.5,-46.5 parent: 2 type: Transform - - uid: 26105 + - uid: 26112 components: - pos: 58.5,-46.5 parent: 2 type: Transform - - uid: 26106 + - uid: 26113 components: - pos: 58.5,-47.5 parent: 2 type: Transform - - uid: 26107 + - uid: 26114 components: - pos: 58.5,-49.5 parent: 2 type: Transform - - uid: 26108 + - uid: 26115 components: - pos: 59.5,-50.5 parent: 2 type: Transform - - uid: 26109 + - uid: 26116 components: - pos: 60.5,-50.5 parent: 2 type: Transform - - uid: 26110 + - uid: 26117 components: - pos: 64.5,-50.5 parent: 2 type: Transform - - uid: 26111 + - uid: 26118 components: - pos: 65.5,-50.5 parent: 2 type: Transform - - uid: 26112 + - uid: 26119 components: - pos: 63.5,-37.5 parent: 2 type: Transform - - uid: 26113 + - uid: 26120 components: - pos: 7.5,-39.5 parent: 2 type: Transform - - uid: 26114 + - uid: 26121 components: - rot: -1.5707963267948966 rad pos: 53.5,-64.5 parent: 2 type: Transform - - uid: 26115 + - uid: 26122 components: - pos: 63.5,-39.5 parent: 2 type: Transform - - uid: 26116 + - uid: 26123 components: - pos: 63.5,-41.5 parent: 2 type: Transform - - uid: 26117 + - uid: 26124 components: - pos: 52.5,-49.5 parent: 2 type: Transform - - uid: 26118 + - uid: 26125 components: - pos: 53.5,-49.5 parent: 2 type: Transform - - uid: 26119 + - uid: 26126 components: - pos: 53.5,-50.5 parent: 2 type: Transform - - uid: 26120 + - uid: 26127 components: - pos: 54.5,-50.5 parent: 2 type: Transform - - uid: 26121 + - uid: 26128 components: - pos: 55.5,-54.5 parent: 2 type: Transform - - uid: 26122 + - uid: 26129 components: - pos: 65.5,-53.5 parent: 2 type: Transform - - uid: 26123 + - uid: 26130 components: - pos: 54.5,-54.5 parent: 2 type: Transform - - uid: 26124 + - uid: 26131 components: - pos: 59.5,-53.5 parent: 2 type: Transform - - uid: 26125 + - uid: 26132 components: - pos: 56.5,-54.5 parent: 2 type: Transform - - uid: 26126 + - uid: 26133 components: - pos: 64.5,-56.5 parent: 2 type: Transform - - uid: 26127 + - uid: 26134 components: - pos: 64.5,-55.5 parent: 2 type: Transform - - uid: 26128 + - uid: 26135 components: - pos: 60.5,-56.5 parent: 2 type: Transform - - uid: 26129 + - uid: 26136 components: - pos: 60.5,-55.5 parent: 2 type: Transform - - uid: 26130 + - uid: 26137 components: - pos: 66.5,-50.5 parent: 2 type: Transform - - uid: 26131 + - uid: 26138 components: - pos: 66.5,-53.5 parent: 2 type: Transform - - uid: 26132 + - uid: 26139 components: - pos: 65.5,-55.5 parent: 2 type: Transform - - uid: 26133 + - uid: 26140 components: - pos: 59.5,-55.5 parent: 2 type: Transform - - uid: 26134 + - uid: 26141 components: - pos: 58.5,-53.5 parent: 2 type: Transform - - uid: 26135 + - uid: 26142 components: - pos: 58.5,-50.5 parent: 2 type: Transform - - uid: 26136 + - uid: 26143 components: - pos: 76.5,-42.5 parent: 2 type: Transform - - uid: 26137 + - uid: 26144 components: - pos: 44.5,-65.5 parent: 2 type: Transform - - uid: 26138 + - uid: 26145 components: - pos: 70.5,-31.5 parent: 2 type: Transform - - uid: 26139 + - uid: 26146 components: - pos: 64.5,-30.5 parent: 2 type: Transform - - uid: 26140 + - uid: 26147 components: - pos: 73.5,-39.5 parent: 2 type: Transform - - uid: 26141 + - uid: 26148 components: - pos: 73.5,-42.5 parent: 2 type: Transform - - uid: 26142 + - uid: 26149 components: - pos: 73.5,-41.5 parent: 2 type: Transform - - uid: 26143 + - uid: 26150 components: - pos: 68.5,-50.5 parent: 2 type: Transform - - uid: 26144 + - uid: 26151 components: - pos: 67.5,-50.5 parent: 2 type: Transform - - uid: 26145 + - uid: 26152 components: - pos: 65.5,-27.5 parent: 2 type: Transform - - uid: 26146 + - uid: 26153 components: - pos: 65.5,-30.5 parent: 2 type: Transform - - uid: 26147 + - uid: 26154 components: - pos: 76.5,-39.5 parent: 2 type: Transform - - uid: 26148 + - uid: 26155 components: - pos: 76.5,-38.5 parent: 2 type: Transform - - uid: 26149 + - uid: 26156 components: - pos: 79.5,-32.5 parent: 2 type: Transform - - uid: 26150 + - uid: 26157 components: - pos: 79.5,-38.5 parent: 2 type: Transform - - uid: 26151 + - uid: 26158 components: - rot: -1.5707963267948966 rad pos: 74.5,-27.5 parent: 2 type: Transform - - uid: 26152 + - uid: 26159 components: - pos: 78.5,-43.5 parent: 2 type: Transform - - uid: 26153 + - uid: 26160 components: - pos: 76.5,-41.5 parent: 2 type: Transform - - uid: 26154 + - uid: 26161 components: - pos: 76.5,-40.5 parent: 2 type: Transform - - uid: 26155 + - uid: 26162 components: - pos: 24.5,-57.5 parent: 2 type: Transform - - uid: 26156 + - uid: 26163 components: - rot: -1.5707963267948966 rad pos: 32.5,-80.5 parent: 2 type: Transform - - uid: 26157 + - uid: 26164 components: - pos: -43.5,-38.5 parent: 2 type: Transform - - uid: 26158 + - uid: 26165 components: - pos: 53.5,-54.5 parent: 2 type: Transform - - uid: 26159 + - uid: 26166 components: - pos: 53.5,-55.5 parent: 2 type: Transform - - uid: 26160 + - uid: 26167 components: - pos: 53.5,-56.5 parent: 2 type: Transform - - uid: 26161 + - uid: 26168 components: - rot: 3.141592653589793 rad pos: 52.5,-62.5 parent: 2 type: Transform - - uid: 26162 + - uid: 26169 components: - rot: 3.141592653589793 rad pos: 48.5,-62.5 parent: 2 type: Transform - - uid: 26163 + - uid: 26170 components: - rot: 3.141592653589793 rad pos: 47.5,-62.5 parent: 2 type: Transform - - uid: 26164 + - uid: 26171 components: - pos: 34.5,-61.5 parent: 2 type: Transform - - uid: 26165 + - uid: 26172 components: - pos: 35.5,-61.5 parent: 2 type: Transform - - uid: 26166 + - uid: 26173 components: - pos: 36.5,-61.5 parent: 2 type: Transform - - uid: 26167 + - uid: 26174 components: - pos: 37.5,-61.5 parent: 2 type: Transform - - uid: 26168 + - uid: 26175 components: - pos: 37.5,-62.5 parent: 2 type: Transform - - uid: 26169 + - uid: 26176 components: - pos: 37.5,-63.5 parent: 2 type: Transform - - uid: 26170 + - uid: 26177 components: - pos: 37.5,-65.5 parent: 2 type: Transform - - uid: 26171 + - uid: 26178 components: - pos: 37.5,-67.5 parent: 2 type: Transform - - uid: 26172 + - uid: 26179 components: - pos: 37.5,-68.5 parent: 2 type: Transform - - uid: 26173 + - uid: 26180 components: - rot: -1.5707963267948966 rad pos: 48.5,-66.5 parent: 2 type: Transform - - uid: 26174 + - uid: 26181 components: - pos: 41.5,-67.5 parent: 2 type: Transform - - uid: 26175 + - uid: 26182 components: - pos: 41.5,-68.5 parent: 2 type: Transform - - uid: 26176 + - uid: 26183 components: - pos: -33.5,-14.5 parent: 2 type: Transform - - uid: 26177 + - uid: 26184 components: - pos: -33.5,-18.5 parent: 2 type: Transform - - uid: 26178 + - uid: 26185 components: - pos: -33.5,-19.5 parent: 2 type: Transform - - uid: 26179 + - uid: 26186 components: - rot: 1.5707963267948966 rad pos: 44.5,-81.5 parent: 2 type: Transform - - uid: 26180 + - uid: 26187 components: - rot: -1.5707963267948966 rad pos: 57.5,41.5 parent: 2 type: Transform - - uid: 26181 + - uid: 26188 components: - pos: -17.5,-47.5 parent: 2 type: Transform - - uid: 26182 + - uid: 26189 components: - pos: -22.5,-44.5 parent: 2 type: Transform - - uid: 26183 + - uid: 26190 components: - rot: 3.141592653589793 rad pos: 24.5,26.5 parent: 2 type: Transform - - uid: 26184 + - uid: 26191 components: - pos: 56.5,-56.5 parent: 2 type: Transform - - uid: 26185 + - uid: 26192 components: - pos: 56.5,-57.5 parent: 2 type: Transform - - uid: 26186 + - uid: 26193 components: - pos: 57.5,-57.5 parent: 2 type: Transform - - uid: 26187 + - uid: 26194 components: - pos: 57.5,-58.5 parent: 2 type: Transform - - uid: 26188 + - uid: 26195 components: - pos: 58.5,-58.5 parent: 2 type: Transform - - uid: 26189 + - uid: 26196 components: - pos: 58.5,-61.5 parent: 2 type: Transform - - uid: 26190 + - uid: 26197 components: - pos: 53.5,-62.5 parent: 2 type: Transform - - uid: 26191 + - uid: 26198 components: - pos: 53.5,-25.5 parent: 2 type: Transform - - uid: 26192 + - uid: 26199 components: - pos: 52.5,-26.5 parent: 2 type: Transform - - uid: 26193 + - uid: 26200 components: - pos: -17.5,-49.5 parent: 2 type: Transform - - uid: 26194 + - uid: 26201 components: - pos: -17.5,-48.5 parent: 2 type: Transform - - uid: 26195 + - uid: 26202 components: - pos: -22.5,-45.5 parent: 2 type: Transform - - uid: 26196 + - uid: 26203 components: - pos: -22.5,-46.5 parent: 2 type: Transform - - uid: 26197 + - uid: 26204 components: - pos: -22.5,-47.5 parent: 2 type: Transform - - uid: 26198 + - uid: 26205 components: - rot: 1.5707963267948966 rad pos: 33.5,-88.5 parent: 2 type: Transform - - uid: 26199 + - uid: 26206 components: - rot: -1.5707963267948966 rad pos: 36.5,-74.5 parent: 2 type: Transform - - uid: 26200 + - uid: 26207 components: - rot: -1.5707963267948966 rad pos: 36.5,-75.5 parent: 2 type: Transform - - uid: 26201 + - uid: 26208 components: - pos: 42.5,-74.5 parent: 2 type: Transform - - uid: 26202 + - uid: 26209 components: - rot: 3.141592653589793 rad pos: 45.5,-74.5 parent: 2 type: Transform - - uid: 26203 + - uid: 26210 components: - rot: 3.141592653589793 rad pos: 46.5,-74.5 parent: 2 type: Transform - - uid: 26204 + - uid: 26211 components: - rot: 1.5707963267948966 rad pos: 34.5,-90.5 parent: 2 type: Transform - - uid: 26205 + - uid: 26212 components: - rot: 1.5707963267948966 rad pos: 33.5,-90.5 parent: 2 type: Transform - - uid: 26206 + - uid: 26213 components: - rot: 3.141592653589793 rad pos: 46.5,-70.5 parent: 2 type: Transform - - uid: 26207 + - uid: 26214 components: - pos: 33.5,-70.5 parent: 2 type: Transform - - uid: 26208 + - uid: 26215 components: - pos: 32.5,-70.5 parent: 2 type: Transform - - uid: 26209 + - uid: 26216 components: - pos: 12.5,-70.5 parent: 2 type: Transform - - uid: 26210 + - uid: 26217 components: - pos: 45.5,-70.5 parent: 2 type: Transform - - uid: 26211 + - uid: 26218 components: - pos: 41.5,-69.5 parent: 2 type: Transform - - uid: 26212 + - uid: 26219 components: - rot: -1.5707963267948966 rad pos: 42.5,-65.5 parent: 2 type: Transform - - uid: 26213 + - uid: 26220 components: - rot: -1.5707963267948966 rad pos: 41.5,-65.5 parent: 2 type: Transform - - uid: 26214 + - uid: 26221 components: - pos: 45.5,-69.5 parent: 2 type: Transform - - uid: 26215 + - uid: 26222 components: - pos: 37.5,-69.5 parent: 2 type: Transform - - uid: 26216 + - uid: 26223 components: - pos: 33.5,-69.5 parent: 2 type: Transform - - uid: 26217 + - uid: 26224 components: - rot: 1.5707963267948966 rad pos: 28.5,-75.5 parent: 2 type: Transform - - uid: 26218 + - uid: 26225 components: - rot: -1.5707963267948966 rad pos: 31.5,-94.5 parent: 2 type: Transform - - uid: 26219 + - uid: 26226 components: - rot: -1.5707963267948966 rad pos: 32.5,-75.5 parent: 2 type: Transform - - uid: 26220 + - uid: 26227 components: - pos: 7.5,-77.5 parent: 2 type: Transform - - uid: 26221 + - uid: 26228 components: - rot: 3.141592653589793 rad pos: 20.5,-84.5 parent: 2 type: Transform - - uid: 26222 + - uid: 26229 components: - rot: -1.5707963267948966 rad pos: 28.5,-93.5 parent: 2 type: Transform - - uid: 26223 + - uid: 26230 components: - rot: 3.141592653589793 rad pos: 10.5,-86.5 parent: 2 type: Transform - - uid: 26224 + - uid: 26231 components: - rot: 3.141592653589793 rad pos: 11.5,-87.5 parent: 2 type: Transform - - uid: 26225 + - uid: 26232 components: - rot: 3.141592653589793 rad pos: 12.5,-87.5 parent: 2 type: Transform - - uid: 26226 + - uid: 26233 components: - rot: 1.5707963267948966 rad pos: 50.5,-85.5 parent: 2 type: Transform - - uid: 26227 + - uid: 26234 components: - rot: 3.141592653589793 rad pos: 21.5,-82.5 parent: 2 type: Transform - - uid: 26228 + - uid: 26235 components: - rot: -1.5707963267948966 rad pos: 46.5,-76.5 parent: 2 type: Transform - - uid: 26229 + - uid: 26236 components: - rot: 3.141592653589793 rad pos: 20.5,-82.5 parent: 2 type: Transform - - uid: 26230 + - uid: 26237 components: - rot: 1.5707963267948966 rad pos: 45.5,-83.5 parent: 2 type: Transform - - uid: 26231 + - uid: 26238 components: - rot: 3.141592653589793 rad pos: 15.5,-78.5 parent: 2 type: Transform - - uid: 26232 + - uid: 26239 components: - rot: 3.141592653589793 rad pos: 12.5,-88.5 parent: 2 type: Transform - - uid: 26233 + - uid: 26240 components: - rot: 3.141592653589793 rad pos: 18.5,-87.5 parent: 2 type: Transform - - uid: 26234 + - uid: 26241 components: - rot: 3.141592653589793 rad pos: 19.5,-87.5 parent: 2 type: Transform - - uid: 26235 + - uid: 26242 components: - rot: -1.5707963267948966 rad pos: 28.5,-87.5 parent: 2 type: Transform - - uid: 26236 + - uid: 26243 components: - rot: 3.141592653589793 rad pos: 19.5,-86.5 parent: 2 type: Transform - - uid: 26237 + - uid: 26244 components: - rot: 3.141592653589793 rad pos: 20.5,-86.5 parent: 2 type: Transform - - uid: 26238 + - uid: 26245 components: - rot: 3.141592653589793 rad pos: 20.5,-85.5 parent: 2 type: Transform - - uid: 26239 + - uid: 26246 components: - rot: 3.141592653589793 rad pos: 22.5,-84.5 parent: 2 type: Transform - - uid: 26240 + - uid: 26247 components: - rot: 1.5707963267948966 rad pos: 50.5,-75.5 parent: 2 type: Transform - - uid: 26241 + - uid: 26248 components: - rot: 3.141592653589793 rad pos: 20.5,-81.5 parent: 2 type: Transform - - uid: 26242 + - uid: 26249 components: - rot: 3.141592653589793 rad pos: 19.5,-80.5 parent: 2 type: Transform - - uid: 26243 + - uid: 26250 components: - rot: 3.141592653589793 rad pos: 18.5,-78.5 parent: 2 type: Transform - - uid: 26244 + - uid: 26251 components: - pos: 7.5,-75.5 parent: 2 type: Transform - - uid: 26245 + - uid: 26252 components: - rot: -1.5707963267948966 rad pos: 29.5,-93.5 parent: 2 type: Transform - - uid: 26246 + - uid: 26253 components: - rot: -1.5707963267948966 rad pos: 31.5,-95.5 parent: 2 type: Transform - - uid: 26247 + - uid: 26254 components: - rot: -1.5707963267948966 rad pos: 29.5,-95.5 parent: 2 type: Transform - - uid: 26248 + - uid: 26255 components: - rot: -1.5707963267948966 rad pos: 29.5,-94.5 parent: 2 type: Transform - - uid: 26249 + - uid: 26256 components: - rot: -1.5707963267948966 rad pos: 46.5,-80.5 parent: 2 type: Transform - - uid: 26250 + - uid: 26257 components: - pos: 8.5,-77.5 parent: 2 type: Transform - - uid: 26251 + - uid: 26258 components: - rot: 3.141592653589793 rad pos: 19.5,-79.5 parent: 2 type: Transform - - uid: 26252 + - uid: 26259 components: - rot: 3.141592653589793 rad pos: 18.5,-79.5 parent: 2 type: Transform - - uid: 26253 + - uid: 26260 components: - rot: 1.5707963267948966 rad pos: 34.5,-88.5 parent: 2 type: Transform - - uid: 26254 + - uid: 26261 components: - rot: -1.5707963267948966 rad pos: 44.5,-74.5 parent: 2 type: Transform - - uid: 26255 + - uid: 26262 components: - rot: 3.141592653589793 rad pos: 18.5,-88.5 parent: 2 type: Transform - - uid: 26256 + - uid: 26263 components: - pos: 12.5,-71.5 parent: 2 type: Transform - - uid: 26257 + - uid: 26264 components: - pos: 9.5,-72.5 parent: 2 type: Transform - - uid: 26258 + - uid: 26265 components: - pos: 9.5,-73.5 parent: 2 type: Transform - - uid: 26259 + - uid: 26266 components: - pos: 9.5,-74.5 parent: 2 type: Transform - - uid: 26260 + - uid: 26267 components: - pos: 10.5,-74.5 parent: 2 type: Transform - - uid: 26261 + - uid: 26268 components: - pos: 11.5,-74.5 parent: 2 type: Transform - - uid: 26262 + - uid: 26269 components: - pos: 12.5,-74.5 parent: 2 type: Transform - - uid: 26263 + - uid: 26270 components: - pos: 13.5,-74.5 parent: 2 type: Transform - - uid: 26264 + - uid: 26271 components: - pos: 16.5,-74.5 parent: 2 type: Transform - - uid: 26265 + - uid: 26272 components: - pos: 19.5,-74.5 parent: 2 type: Transform - - uid: 26266 + - uid: 26273 components: - pos: 21.5,-74.5 parent: 2 type: Transform - - uid: 26267 + - uid: 26274 components: - pos: 21.5,-72.5 parent: 2 type: Transform - - uid: 26268 + - uid: 26275 components: - pos: 20.5,-72.5 parent: 2 type: Transform - - uid: 26269 + - uid: 26276 components: - pos: 19.5,-72.5 parent: 2 type: Transform - - uid: 26270 + - uid: 26277 components: - pos: 31.5,-70.5 parent: 2 type: Transform - - uid: 26271 + - uid: 26278 components: - pos: 42.5,-75.5 parent: 2 type: Transform - - uid: 26272 + - uid: 26279 components: - pos: 44.5,-75.5 parent: 2 type: Transform - - uid: 26273 + - uid: 26280 components: - rot: -1.5707963267948966 rad pos: 27.5,-87.5 parent: 2 type: Transform - - uid: 26274 + - uid: 26281 components: - rot: -1.5707963267948966 rad pos: 33.5,-83.5 parent: 2 type: Transform - - uid: 26275 + - uid: 26282 components: - rot: 1.5707963267948966 rad pos: 46.5,-81.5 parent: 2 type: Transform - - uid: 26276 + - uid: 26283 components: - rot: -1.5707963267948966 rad pos: 26.5,-87.5 parent: 2 type: Transform - - uid: 26277 + - uid: 26284 components: - rot: -1.5707963267948966 rad pos: 34.5,-75.5 parent: 2 type: Transform - - uid: 26278 + - uid: 26285 components: - rot: 1.5707963267948966 rad pos: 46.5,-83.5 parent: 2 type: Transform - - uid: 26279 + - uid: 26286 components: - rot: -1.5707963267948966 rad pos: 27.5,-79.5 parent: 2 type: Transform - - uid: 26280 + - uid: 26287 components: - pos: 16.5,-71.5 parent: 2 type: Transform - - uid: 26281 + - uid: 26288 components: - pos: 29.5,-69.5 parent: 2 type: Transform - - uid: 26282 + - uid: 26289 components: - pos: 29.5,-70.5 parent: 2 type: Transform - - uid: 26283 + - uid: 26290 components: - pos: 28.5,-68.5 parent: 2 type: Transform - - uid: 26284 + - uid: 26291 components: - pos: 30.5,-70.5 parent: 2 type: Transform - - uid: 26285 + - uid: 26292 components: - pos: 20.5,-74.5 parent: 2 type: Transform - - uid: 26286 + - uid: 26293 components: - pos: 19.5,-71.5 parent: 2 type: Transform - - uid: 26287 + - uid: 26294 components: - pos: 22.5,-70.5 parent: 2 type: Transform - - uid: 26288 + - uid: 26295 components: - rot: -1.5707963267948966 rad pos: 32.5,-93.5 parent: 2 type: Transform - - uid: 26289 + - uid: 26296 components: - pos: 23.5,-82.5 parent: 2 type: Transform - - uid: 26290 + - uid: 26297 components: - rot: 3.141592653589793 rad pos: 22.5,-82.5 parent: 2 type: Transform - - uid: 26291 + - uid: 26298 components: - pos: 23.5,-84.5 parent: 2 type: Transform - - uid: 26292 + - uid: 26299 components: - pos: 21.5,-70.5 parent: 2 type: Transform - - uid: 26293 + - uid: 26300 components: - pos: 22.5,-74.5 parent: 2 type: Transform - - uid: 26294 + - uid: 26301 components: - pos: 23.5,-74.5 parent: 2 type: Transform - - uid: 26295 + - uid: 26302 components: - pos: 23.5,-75.5 parent: 2 type: Transform - - uid: 26296 + - uid: 26303 components: - rot: 1.5707963267948966 rad pos: 28.5,-78.5 parent: 2 type: Transform - - uid: 26297 + - uid: 26304 components: - rot: -1.5707963267948966 rad pos: 23.5,-86.5 parent: 2 type: Transform - - uid: 26298 + - uid: 26305 components: - rot: 1.5707963267948966 rad pos: 28.5,-88.5 parent: 2 type: Transform - - uid: 26299 + - uid: 26306 components: - rot: 1.5707963267948966 rad pos: 50.5,-86.5 parent: 2 type: Transform - - uid: 26300 + - uid: 26307 components: - rot: 3.141592653589793 rad pos: 11.5,-80.5 parent: 2 type: Transform - - uid: 26301 + - uid: 26308 components: - rot: 3.141592653589793 rad pos: 11.5,-86.5 parent: 2 type: Transform - - uid: 26302 + - uid: 26309 components: - pos: 7.5,-73.5 parent: 2 type: Transform - - uid: 26303 + - uid: 26310 components: - rot: 3.141592653589793 rad pos: 12.5,-78.5 parent: 2 type: Transform - - uid: 26304 + - uid: 26311 components: - rot: 3.141592653589793 rad pos: 21.5,-84.5 parent: 2 type: Transform - - uid: 26305 + - uid: 26312 components: - rot: 3.141592653589793 rad pos: 15.5,-88.5 parent: 2 type: Transform - - uid: 26306 + - uid: 26313 components: - rot: 3.141592653589793 rad pos: 20.5,-80.5 parent: 2 type: Transform - - uid: 26307 + - uid: 26314 components: - rot: 1.5707963267948966 rad pos: 28.5,-76.5 parent: 2 type: Transform - - uid: 26308 + - uid: 26315 components: - rot: 1.5707963267948966 rad pos: 32.5,-90.5 parent: 2 type: Transform - - uid: 26309 + - uid: 26316 components: - rot: 1.5707963267948966 rad pos: 32.5,-88.5 parent: 2 type: Transform - - uid: 26310 + - uid: 26317 components: - rot: -1.5707963267948966 rad pos: 41.5,-66.5 parent: 2 type: Transform - - uid: 26311 + - uid: 26318 components: - rot: 1.5707963267948966 rad pos: 46.5,-90.5 parent: 2 type: Transform - - uid: 26312 + - uid: 26319 components: - rot: -1.5707963267948966 rad pos: 23.5,-81.5 parent: 2 type: Transform - - uid: 26313 + - uid: 26320 components: - pos: 21.5,-71.5 parent: 2 type: Transform - - uid: 26314 + - uid: 26321 components: - rot: -1.5707963267948966 rad pos: 53.5,-63.5 parent: 2 type: Transform - - uid: 26315 + - uid: 26322 components: - rot: 1.5707963267948966 rad pos: 49.5,-70.5 parent: 2 type: Transform - - uid: 26316 + - uid: 26323 components: - rot: -1.5707963267948966 rad pos: 23.5,-85.5 parent: 2 type: Transform - - uid: 26317 + - uid: 26324 components: - pos: 23.5,-68.5 parent: 2 type: Transform - - uid: 26318 + - uid: 26325 components: - pos: -34.5,-14.5 parent: 2 type: Transform - - uid: 26319 + - uid: 26326 components: - pos: -35.5,-14.5 parent: 2 type: Transform - - uid: 26320 + - uid: 26327 components: - pos: -38.5,-14.5 parent: 2 type: Transform - - uid: 26321 + - uid: 26328 components: - pos: -39.5,-14.5 parent: 2 type: Transform - - uid: 26322 + - uid: 26329 components: - pos: -40.5,-14.5 parent: 2 type: Transform - - uid: 26323 + - uid: 26330 components: - pos: -17.5,-46.5 parent: 2 type: Transform - - uid: 26324 + - uid: 26331 components: - pos: -17.5,-45.5 parent: 2 type: Transform - - uid: 26325 + - uid: 26332 components: - pos: -17.5,-44.5 parent: 2 type: Transform - - uid: 26326 + - uid: 26333 components: - pos: -18.5,-44.5 parent: 2 type: Transform - - uid: 26327 + - uid: 26334 components: - pos: -20.5,-44.5 parent: 2 type: Transform - - uid: 26328 + - uid: 26335 components: - pos: -21.5,-44.5 parent: 2 type: Transform - - uid: 26329 + - uid: 26336 components: - pos: -35.5,-19.5 parent: 2 type: Transform - - uid: 26330 + - uid: 26337 components: - pos: -34.5,-19.5 parent: 2 type: Transform - - uid: 26331 + - uid: 26338 components: - rot: -1.5707963267948966 rad pos: -36.5,-19.5 parent: 2 type: Transform - - uid: 26332 + - uid: 26339 components: - pos: -37.5,-19.5 parent: 2 type: Transform - - uid: 26333 + - uid: 26340 components: - pos: -38.5,-19.5 parent: 2 type: Transform - - uid: 26334 + - uid: 26341 components: - pos: -38.5,-18.5 parent: 2 type: Transform - - uid: 26335 + - uid: 26342 components: - pos: -38.5,-17.5 parent: 2 type: Transform - - uid: 26336 + - uid: 26343 components: - pos: -38.5,-16.5 parent: 2 type: Transform - - uid: 26337 + - uid: 26344 components: - pos: -38.5,-15.5 parent: 2 type: Transform - - uid: 26338 + - uid: 26345 components: - pos: 77.5,-49.5 parent: 2 type: Transform - - uid: 26339 + - uid: 26346 components: - pos: 73.5,-50.5 parent: 2 type: Transform - - uid: 26340 + - uid: 26347 components: - pos: 73.5,-52.5 parent: 2 type: Transform - - uid: 26341 + - uid: 26348 components: - pos: 73.5,-54.5 parent: 2 type: Transform - - uid: 26342 + - uid: 26349 components: - pos: 72.5,-54.5 parent: 2 type: Transform - - uid: 26343 + - uid: 26350 components: - pos: 69.5,-54.5 parent: 2 type: Transform - - uid: 26344 + - uid: 26351 components: - rot: -1.5707963267948966 rad pos: 69.5,-55.5 parent: 2 type: Transform - - uid: 26345 + - uid: 26352 components: - rot: 3.141592653589793 rad pos: -40.5,-21.5 parent: 2 type: Transform - - uid: 26346 + - uid: 26353 components: - rot: 3.141592653589793 rad pos: -40.5,-22.5 parent: 2 type: Transform - - uid: 26347 + - uid: 26354 components: - pos: -44.5,-24.5 parent: 2 type: Transform - - uid: 26348 + - uid: 26355 components: - pos: -42.5,-14.5 parent: 2 type: Transform - - uid: 26349 + - uid: 26356 components: - pos: -43.5,-14.5 parent: 2 type: Transform - - uid: 26350 + - uid: 26357 components: - pos: -43.5,-12.5 parent: 2 type: Transform - - uid: 26351 + - uid: 26358 components: - pos: -43.5,-9.5 parent: 2 type: Transform - - uid: 26352 + - uid: 26359 components: - pos: -43.5,-8.5 parent: 2 type: Transform - - uid: 26353 + - uid: 26360 components: - pos: -43.5,-7.5 parent: 2 type: Transform - - uid: 26354 + - uid: 26361 components: - pos: -43.5,-19.5 parent: 2 type: Transform - - uid: 26355 + - uid: 26362 components: - pos: -42.5,-19.5 parent: 2 type: Transform - - uid: 26356 + - uid: 26363 components: - pos: -40.5,-19.5 parent: 2 type: Transform - - uid: 26357 + - uid: 26364 components: - pos: -39.5,-19.5 parent: 2 type: Transform - - uid: 26358 + - uid: 26365 components: - pos: -43.5,-15.5 parent: 2 type: Transform - - uid: 26359 + - uid: 26366 components: - pos: -43.5,-16.5 parent: 2 type: Transform - - uid: 26360 + - uid: 26367 components: - pos: -43.5,-17.5 parent: 2 type: Transform - - uid: 26361 + - uid: 26368 components: - pos: -43.5,-18.5 parent: 2 type: Transform - - uid: 26362 + - uid: 26369 components: - pos: 59.5,-61.5 parent: 2 type: Transform - - uid: 26363 + - uid: 26370 components: - pos: 67.5,-58.5 parent: 2 type: Transform - - uid: 26364 + - uid: 26371 components: - rot: -1.5707963267948966 rad pos: 67.5,-60.5 parent: 2 type: Transform - - uid: 26365 + - uid: 26372 components: - pos: 68.5,-58.5 parent: 2 type: Transform - - uid: 26366 + - uid: 26373 components: - pos: 65.5,-61.5 parent: 2 type: Transform - - uid: 26367 + - uid: 26374 components: - pos: 60.5,-61.5 parent: 2 type: Transform - - uid: 26368 + - uid: 26375 components: - pos: 65.5,-60.5 parent: 2 type: Transform - - uid: 26369 + - uid: 26376 components: - pos: 67.5,-59.5 parent: 2 type: Transform - - uid: 26370 + - uid: 26377 components: - pos: 52.5,-29.5 parent: 2 type: Transform - - uid: 26371 + - uid: 26378 components: - pos: 52.5,-28.5 parent: 2 type: Transform - - uid: 26372 + - uid: 26379 components: - pos: 52.5,-27.5 parent: 2 type: Transform - - uid: 26373 + - uid: 26380 components: - pos: 52.5,-30.5 parent: 2 type: Transform - - uid: 26374 + - uid: 26381 components: - pos: 52.5,-31.5 parent: 2 type: Transform - - uid: 26375 + - uid: 26382 components: - pos: 43.5,-32.5 parent: 2 type: Transform - - uid: 26376 + - uid: 26383 components: - pos: 58.5,-68.5 parent: 2 type: Transform - - uid: 26377 + - uid: 26384 components: - pos: 49.5,-32.5 parent: 2 type: Transform - - uid: 26378 + - uid: 26385 components: - pos: 48.5,-32.5 parent: 2 type: Transform - - uid: 26379 + - uid: 26386 components: - pos: 46.5,-32.5 parent: 2 type: Transform - - uid: 26380 + - uid: 26387 components: - pos: 57.5,-68.5 parent: 2 type: Transform - - uid: 26381 + - uid: 26388 components: - pos: 45.5,-32.5 parent: 2 type: Transform - - uid: 26382 + - uid: 26389 components: - pos: 69.5,-67.5 parent: 2 type: Transform - - uid: 26383 + - uid: 26390 components: - pos: 70.5,-67.5 parent: 2 type: Transform - - uid: 26384 + - uid: 26391 components: - pos: 71.5,-67.5 parent: 2 type: Transform - - uid: 26385 + - uid: 26392 components: - pos: 71.5,-63.5 parent: 2 type: Transform - - uid: 26386 + - uid: 26393 components: - pos: 72.5,-63.5 parent: 2 type: Transform - - uid: 26387 + - uid: 26394 components: - pos: 72.5,-60.5 parent: 2 type: Transform - - uid: 26388 + - uid: 26395 components: - pos: 73.5,-60.5 parent: 2 type: Transform - - uid: 26389 + - uid: 26396 components: - pos: 72.5,-61.5 parent: 2 type: Transform - - uid: 26390 + - uid: 26397 components: - pos: 72.5,-62.5 parent: 2 type: Transform - - uid: 26391 + - uid: 26398 components: - pos: 73.5,-59.5 parent: 2 type: Transform - - uid: 26392 + - uid: 26399 components: - pos: 73.5,-58.5 parent: 2 type: Transform - - uid: 26393 + - uid: 26400 components: - pos: 74.5,-58.5 parent: 2 type: Transform - - uid: 26394 + - uid: 26401 components: - pos: 75.5,-58.5 parent: 2 type: Transform - - uid: 26395 + - uid: 26402 components: - pos: 10.5,-38.5 parent: 2 type: Transform - - uid: 26396 + - uid: 26403 components: - pos: -43.5,-23.5 parent: 2 type: Transform - - uid: 26397 + - uid: 26404 components: - rot: 3.141592653589793 rad pos: -59.5,-28.5 parent: 2 type: Transform - - uid: 26398 + - uid: 26405 components: - pos: -43.5,-24.5 parent: 2 type: Transform - - uid: 26399 + - uid: 26406 components: - rot: 3.141592653589793 rad pos: -40.5,-20.5 parent: 2 type: Transform - - uid: 26400 + - uid: 26407 components: - rot: -1.5707963267948966 rad pos: -34.5,-38.5 parent: 2 type: Transform - - uid: 26401 + - uid: 26408 components: - rot: -1.5707963267948966 rad pos: -40.5,-37.5 parent: 2 type: Transform - - uid: 26402 + - uid: 26409 components: - pos: 28.5,-69.5 parent: 2 type: Transform - - uid: 26403 + - uid: 26410 components: - pos: 22.5,-69.5 parent: 2 type: Transform - - uid: 26404 + - uid: 26411 components: - pos: 23.5,-69.5 parent: 2 type: Transform - - uid: 26405 + - uid: 26412 components: - rot: -1.5707963267948966 rad pos: -33.5,-39.5 parent: 2 type: Transform - - uid: 26406 + - uid: 26413 components: - rot: -1.5707963267948966 rad pos: -33.5,-38.5 parent: 2 type: Transform - - uid: 26407 + - uid: 26414 components: - pos: -41.5,-31.5 parent: 2 type: Transform - - uid: 26408 + - uid: 26415 components: - pos: -41.5,-32.5 parent: 2 type: Transform - - uid: 26409 + - uid: 26416 components: - pos: -41.5,-36.5 parent: 2 type: Transform - - uid: 26410 + - uid: 26417 components: - pos: -41.5,-37.5 parent: 2 type: Transform - - uid: 26411 + - uid: 26418 components: - rot: -1.5707963267948966 rad pos: -39.5,-37.5 parent: 2 type: Transform - - uid: 26412 + - uid: 26419 components: - rot: -1.5707963267948966 rad pos: -35.5,-37.5 parent: 2 type: Transform - - uid: 26413 + - uid: 26420 components: - rot: -1.5707963267948966 rad pos: -36.5,-37.5 parent: 2 type: Transform - - uid: 26414 + - uid: 26421 components: - rot: -1.5707963267948966 rad pos: -33.5,-42.5 parent: 2 type: Transform - - uid: 26415 + - uid: 26422 components: - rot: -1.5707963267948966 rad pos: -32.5,-42.5 parent: 2 type: Transform - - uid: 26416 + - uid: 26423 components: - pos: -44.5,-7.5 parent: 2 type: Transform - - uid: 26417 + - uid: 26424 components: - pos: -45.5,-7.5 parent: 2 type: Transform - - uid: 26418 + - uid: 26425 components: - pos: -47.5,-7.5 parent: 2 type: Transform - - uid: 26419 + - uid: 26426 components: - pos: -48.5,-7.5 parent: 2 type: Transform - - uid: 26420 + - uid: 26427 components: - pos: -49.5,-16.5 parent: 2 type: Transform - - uid: 26421 + - uid: 26428 components: - pos: -49.5,-10.5 parent: 2 type: Transform - - uid: 26422 + - uid: 26429 components: - pos: -49.5,-9.5 parent: 2 type: Transform - - uid: 26423 + - uid: 26430 components: - pos: -49.5,-8.5 parent: 2 type: Transform - - uid: 26424 + - uid: 26431 components: - pos: -49.5,-7.5 parent: 2 type: Transform - - uid: 26425 + - uid: 26432 components: - pos: -49.5,-17.5 parent: 2 type: Transform - - uid: 26426 + - uid: 26433 components: - pos: -49.5,-18.5 parent: 2 type: Transform - - uid: 26427 + - uid: 26434 components: - pos: -48.5,-18.5 parent: 2 type: Transform - - uid: 26428 + - uid: 26435 components: - pos: -47.5,-18.5 parent: 2 type: Transform - - uid: 26429 + - uid: 26436 components: - pos: -46.5,-18.5 parent: 2 type: Transform - - uid: 26430 + - uid: 26437 components: - pos: -49.5,-11.5 parent: 2 type: Transform - - uid: 26431 + - uid: 26438 components: - pos: -50.5,-11.5 parent: 2 type: Transform - - uid: 26432 + - uid: 26439 components: - pos: -51.5,-11.5 parent: 2 type: Transform - - uid: 26433 + - uid: 26440 components: - pos: -51.5,-12.5 parent: 2 type: Transform - - uid: 26434 + - uid: 26441 components: - pos: -51.5,-13.5 parent: 2 type: Transform - - uid: 26435 + - uid: 26442 components: - pos: -51.5,-14.5 parent: 2 type: Transform - - uid: 26436 + - uid: 26443 components: - pos: -51.5,-15.5 parent: 2 type: Transform - - uid: 26437 + - uid: 26444 components: - pos: -50.5,-15.5 parent: 2 type: Transform - - uid: 26438 + - uid: 26445 components: - pos: -49.5,-15.5 parent: 2 type: Transform - - uid: 26439 + - uid: 26446 components: - pos: -49.5,-4.5 parent: 2 type: Transform - - uid: 26440 + - uid: 26447 components: - pos: -50.5,-4.5 parent: 2 type: Transform - - uid: 26441 + - uid: 26448 components: - pos: -51.5,-4.5 parent: 2 type: Transform - - uid: 26442 + - uid: 26449 components: - pos: -52.5,-4.5 parent: 2 type: Transform - - uid: 26443 + - uid: 26450 components: - pos: -53.5,-4.5 parent: 2 type: Transform - - uid: 26444 + - uid: 26451 components: - pos: -54.5,-4.5 parent: 2 type: Transform - - uid: 26445 + - uid: 26452 components: - pos: -55.5,-4.5 parent: 2 type: Transform - - uid: 26446 + - uid: 26453 components: - pos: -55.5,-5.5 parent: 2 type: Transform - - uid: 26447 + - uid: 26454 components: - pos: -56.5,-5.5 parent: 2 type: Transform - - uid: 26448 + - uid: 26455 components: - pos: -56.5,-6.5 parent: 2 type: Transform - - uid: 26449 + - uid: 26456 components: - pos: -56.5,-7.5 parent: 2 type: Transform - - uid: 26450 + - uid: 26457 components: - pos: -56.5,-8.5 parent: 2 type: Transform - - uid: 26451 + - uid: 26458 components: - pos: -56.5,-9.5 parent: 2 type: Transform - - uid: 26452 + - uid: 26459 components: - pos: -56.5,-10.5 parent: 2 type: Transform - - uid: 26453 + - uid: 26460 components: - pos: -56.5,-16.5 parent: 2 type: Transform - - uid: 26454 + - uid: 26461 components: - pos: -56.5,-17.5 parent: 2 type: Transform - - uid: 26455 + - uid: 26462 components: - rot: -1.5707963267948966 rad pos: -57.5,-17.5 parent: 2 type: Transform - - uid: 26456 + - uid: 26463 components: - pos: -56.5,-19.5 parent: 2 type: Transform - - uid: 26457 + - uid: 26464 components: - pos: -56.5,-19.5 parent: 2 type: Transform - - uid: 26458 + - uid: 26465 components: - pos: -52.5,-21.5 parent: 2 type: Transform - - uid: 26459 + - uid: 26466 components: - pos: -50.5,-21.5 parent: 2 type: Transform - - uid: 26460 + - uid: 26467 components: - pos: -49.5,-21.5 parent: 2 type: Transform - - uid: 26461 + - uid: 26468 components: - pos: -44.5,-18.5 parent: 2 type: Transform - - uid: 26462 + - uid: 26469 components: - pos: -44.5,-18.5 parent: 2 type: Transform - - uid: 26463 + - uid: 26470 components: - pos: 55.5,-50.5 parent: 2 type: Transform - - uid: 26464 + - uid: 26471 components: - pos: -45.5,-24.5 parent: 2 type: Transform - - uid: 26465 + - uid: 26472 components: - pos: -49.5,-23.5 parent: 2 type: Transform - - uid: 26466 + - uid: 26473 components: - pos: -49.5,-22.5 parent: 2 type: Transform - - uid: 26467 + - uid: 26474 components: - pos: -49.5,-24.5 parent: 2 type: Transform - - uid: 26468 + - uid: 26475 components: - pos: -48.5,-24.5 parent: 2 type: Transform - - uid: 26469 + - uid: 26476 components: - pos: -47.5,-24.5 parent: 2 type: Transform - - uid: 26470 + - uid: 26477 components: - pos: 56.5,-50.5 parent: 2 type: Transform - - uid: 26471 + - uid: 26478 components: - pos: -52.5,-26.5 parent: 2 type: Transform - - uid: 26472 + - uid: 26479 components: - pos: -52.5,-25.5 parent: 2 type: Transform - - uid: 26473 + - uid: 26480 components: - pos: -52.5,-24.5 parent: 2 type: Transform - - uid: 26474 + - uid: 26481 components: - pos: -52.5,-23.5 parent: 2 type: Transform - - uid: 26475 + - uid: 26482 components: - pos: -52.5,-22.5 parent: 2 type: Transform - - uid: 26476 + - uid: 26483 components: - pos: -49.5,-20.5 parent: 2 type: Transform - - uid: 26477 + - uid: 26484 components: - rot: 3.141592653589793 rad pos: -58.5,-22.5 parent: 2 type: Transform - - uid: 26478 + - uid: 26485 components: - rot: 3.141592653589793 rad pos: -59.5,-22.5 parent: 2 type: Transform - - uid: 26479 + - uid: 26486 components: - rot: 3.141592653589793 rad pos: -60.5,-22.5 parent: 2 type: Transform - - uid: 26480 + - uid: 26487 components: - rot: 3.141592653589793 rad pos: -61.5,-22.5 parent: 2 type: Transform - - uid: 26481 + - uid: 26488 components: - rot: 3.141592653589793 rad pos: -62.5,-22.5 parent: 2 type: Transform - - uid: 26482 + - uid: 26489 components: - rot: 3.141592653589793 rad pos: -63.5,-22.5 parent: 2 type: Transform - - uid: 26483 + - uid: 26490 components: - rot: 3.141592653589793 rad pos: -69.5,-22.5 parent: 2 type: Transform - - uid: 26484 + - uid: 26491 components: - rot: 3.141592653589793 rad pos: -70.5,-22.5 parent: 2 type: Transform - - uid: 26485 + - uid: 26492 components: - rot: 3.141592653589793 rad pos: -53.5,-26.5 parent: 2 type: Transform - - uid: 26486 + - uid: 26493 components: - rot: 3.141592653589793 rad pos: -55.5,-26.5 parent: 2 type: Transform - - uid: 26487 + - uid: 26494 components: - rot: 1.5707963267948966 rad pos: -56.5,-26.5 parent: 2 type: Transform - - uid: 26488 + - uid: 26495 components: - rot: 3.141592653589793 rad pos: -57.5,-26.5 parent: 2 type: Transform - - uid: 26489 + - uid: 26496 components: - rot: 3.141592653589793 rad pos: -59.5,-26.5 parent: 2 type: Transform - - uid: 26490 + - uid: 26497 components: - pos: -61.5,-26.5 parent: 2 type: Transform - - uid: 26491 + - uid: 26498 components: - pos: -59.5,-29.5 parent: 2 type: Transform - - uid: 26492 + - uid: 26499 components: - rot: 3.141592653589793 rad pos: -63.5,-29.5 parent: 2 type: Transform - - uid: 26493 + - uid: 26500 components: - pos: -62.5,-26.5 parent: 2 type: Transform - - uid: 26494 + - uid: 26501 components: - pos: -63.5,-27.5 parent: 2 type: Transform - - uid: 26495 + - uid: 26502 components: - pos: -63.5,-28.5 parent: 2 type: Transform - - uid: 26496 + - uid: 26503 components: - pos: -63.5,-26.5 parent: 2 type: Transform - - uid: 26497 + - uid: 26504 components: - pos: -59.5,-31.5 parent: 2 type: Transform - - uid: 26498 + - uid: 26505 components: - pos: -60.5,-31.5 parent: 2 type: Transform - - uid: 26499 + - uid: 26506 components: - pos: -57.5,-19.5 parent: 2 type: Transform - - uid: 26500 + - uid: 26507 components: - pos: -58.5,-19.5 parent: 2 type: Transform - - uid: 26501 + - uid: 26508 components: - pos: -58.5,-20.5 parent: 2 type: Transform - - uid: 26502 + - uid: 26509 components: - pos: -58.5,-21.5 parent: 2 type: Transform - - uid: 26503 + - uid: 26510 components: - pos: -62.5,-31.5 parent: 2 type: Transform - - uid: 26504 + - uid: 26511 components: - pos: -63.5,-31.5 parent: 2 type: Transform - - uid: 26505 + - uid: 26512 components: - pos: -68.5,-33.5 parent: 2 type: Transform - - uid: 26506 + - uid: 26513 components: - pos: -64.5,-33.5 parent: 2 type: Transform - - uid: 26507 + - uid: 26514 components: - pos: -63.5,-32.5 parent: 2 type: Transform - - uid: 26508 + - uid: 26515 components: - pos: -64.5,-32.5 parent: 2 type: Transform - - uid: 26509 + - uid: 26516 components: - pos: -71.5,-34.5 parent: 2 type: Transform - - uid: 26510 + - uid: 26517 components: - rot: 1.5707963267948966 rad pos: -58.5,-26.5 parent: 2 type: Transform - - uid: 26511 + - uid: 26518 components: - rot: 1.5707963267948966 rad pos: -54.5,-26.5 parent: 2 type: Transform - - uid: 26512 + - uid: 26519 components: - rot: 3.141592653589793 rad pos: -40.5,-23.5 parent: 2 type: Transform - - uid: 26513 + - uid: 26520 components: - rot: 3.141592653589793 rad pos: -41.5,-23.5 parent: 2 type: Transform - - uid: 26514 + - uid: 26521 components: - rot: 3.141592653589793 rad pos: -42.5,-23.5 parent: 2 type: Transform - - uid: 26515 + - uid: 26522 components: - pos: -59.5,-27.5 parent: 2 type: Transform - - uid: 26516 + - uid: 26523 components: - pos: -50.5,-55.5 parent: 2 type: Transform - - uid: 26517 + - uid: 26524 components: - pos: -50.5,-53.5 parent: 2 type: Transform - - uid: 26518 + - uid: 26525 components: - pos: -50.5,-51.5 parent: 2 type: Transform - - uid: 26519 + - uid: 26526 components: - pos: -50.5,-49.5 parent: 2 type: Transform - - uid: 26520 + - uid: 26527 components: - pos: -50.5,-47.5 parent: 2 type: Transform - - uid: 26521 + - uid: 26528 components: - pos: -50.5,-45.5 parent: 2 type: Transform - - uid: 26522 + - uid: 26529 components: - pos: -50.5,-43.5 parent: 2 type: Transform - - uid: 26523 + - uid: 26530 components: - pos: -50.5,-41.5 parent: 2 type: Transform - - uid: 26524 + - uid: 26531 components: - pos: -49.5,-41.5 parent: 2 type: Transform - - uid: 26525 + - uid: 26532 components: - pos: -48.5,-41.5 parent: 2 type: Transform - - uid: 26526 + - uid: 26533 components: - pos: -47.5,-41.5 parent: 2 type: Transform - - uid: 26527 + - uid: 26534 components: - pos: -49.5,-43.5 parent: 2 type: Transform - - uid: 26528 + - uid: 26535 components: - pos: -48.5,-43.5 parent: 2 type: Transform - - uid: 26529 + - uid: 26536 components: - pos: -47.5,-43.5 parent: 2 type: Transform - - uid: 26530 + - uid: 26537 components: - pos: -49.5,-45.5 parent: 2 type: Transform - - uid: 26531 + - uid: 26538 components: - pos: -48.5,-45.5 parent: 2 type: Transform - - uid: 26532 + - uid: 26539 components: - pos: -47.5,-45.5 parent: 2 type: Transform - - uid: 26533 + - uid: 26540 components: - pos: -49.5,-47.5 parent: 2 type: Transform - - uid: 26534 + - uid: 26541 components: - pos: -48.5,-47.5 parent: 2 type: Transform - - uid: 26535 + - uid: 26542 components: - pos: -47.5,-47.5 parent: 2 type: Transform - - uid: 26536 + - uid: 26543 components: - pos: -49.5,-49.5 parent: 2 type: Transform - - uid: 26537 + - uid: 26544 components: - pos: -48.5,-49.5 parent: 2 type: Transform - - uid: 26538 + - uid: 26545 components: - pos: -47.5,-49.5 parent: 2 type: Transform - - uid: 26539 + - uid: 26546 components: - pos: -49.5,-51.5 parent: 2 type: Transform - - uid: 26540 + - uid: 26547 components: - pos: -48.5,-51.5 parent: 2 type: Transform - - uid: 26541 + - uid: 26548 components: - pos: -47.5,-51.5 parent: 2 type: Transform - - uid: 26542 + - uid: 26549 components: - pos: -49.5,-53.5 parent: 2 type: Transform - - uid: 26543 + - uid: 26550 components: - pos: -48.5,-53.5 parent: 2 type: Transform - - uid: 26544 + - uid: 26551 components: - pos: -47.5,-53.5 parent: 2 type: Transform - - uid: 26545 + - uid: 26552 components: - pos: -49.5,-55.5 parent: 2 type: Transform - - uid: 26546 + - uid: 26553 components: - pos: -48.5,-55.5 parent: 2 type: Transform - - uid: 26547 + - uid: 26554 components: - pos: -47.5,-55.5 parent: 2 type: Transform - - uid: 26548 + - uid: 26555 components: - pos: -51.5,-55.5 parent: 2 type: Transform - - uid: 26549 + - uid: 26556 components: - pos: -51.5,-54.5 parent: 2 type: Transform - - uid: 26550 + - uid: 26557 components: - pos: -51.5,-53.5 parent: 2 type: Transform - - uid: 26551 + - uid: 26558 components: - pos: -51.5,-51.5 parent: 2 type: Transform - - uid: 26552 + - uid: 26559 components: - pos: -51.5,-50.5 parent: 2 type: Transform - - uid: 26553 + - uid: 26560 components: - pos: -51.5,-49.5 parent: 2 type: Transform - - uid: 26554 + - uid: 26561 components: - pos: -51.5,-48.5 parent: 2 type: Transform - - uid: 26555 + - uid: 26562 components: - pos: -51.5,-47.5 parent: 2 type: Transform - - uid: 26556 + - uid: 26563 components: - pos: -51.5,-46.5 parent: 2 type: Transform - - uid: 26557 + - uid: 26564 components: - pos: -51.5,-45.5 parent: 2 type: Transform - - uid: 26558 + - uid: 26565 components: - pos: -51.5,-44.5 parent: 2 type: Transform - - uid: 26559 + - uid: 26566 components: - pos: -51.5,-43.5 parent: 2 type: Transform - - uid: 26560 + - uid: 26567 components: - pos: -51.5,-42.5 parent: 2 type: Transform - - uid: 26561 + - uid: 26568 components: - pos: -51.5,-41.5 parent: 2 type: Transform - - uid: 26562 + - uid: 26569 components: - pos: -47.5,-38.5 parent: 2 type: Transform - - uid: 26563 + - uid: 26570 components: - pos: -45.5,-39.5 parent: 2 type: Transform - - uid: 26564 + - uid: 26571 components: - pos: -43.5,-39.5 parent: 2 type: Transform - - uid: 26565 + - uid: 26572 components: - pos: -41.5,-39.5 parent: 2 type: Transform - - uid: 26566 + - uid: 26573 components: - pos: -41.5,-38.5 parent: 2 type: Transform - - uid: 26567 + - uid: 26574 components: - rot: 1.5707963267948966 rad pos: -59.5,-30.5 parent: 2 type: Transform - - uid: 26568 + - uid: 26575 components: - rot: 3.141592653589793 rad pos: -58.5,-31.5 parent: 2 type: Transform - - uid: 26569 + - uid: 26576 components: - rot: 3.141592653589793 rad pos: -57.5,-5.5 parent: 2 type: Transform - - uid: 26570 + - uid: 26577 components: - rot: 3.141592653589793 rad pos: -57.5,-4.5 parent: 2 type: Transform - - uid: 26571 + - uid: 26578 components: - rot: 3.141592653589793 rad pos: -58.5,-4.5 parent: 2 type: Transform - - uid: 26572 + - uid: 26579 components: - rot: 3.141592653589793 rad pos: -59.5,-4.5 parent: 2 type: Transform - - uid: 26573 + - uid: 26580 components: - rot: 3.141592653589793 rad pos: -60.5,-4.5 parent: 2 type: Transform - - uid: 26574 + - uid: 26581 components: - rot: 3.141592653589793 rad pos: -61.5,-4.5 parent: 2 type: Transform - - uid: 26575 + - uid: 26582 components: - rot: 3.141592653589793 rad pos: -62.5,-4.5 parent: 2 type: Transform - - uid: 26576 + - uid: 26583 components: - rot: 3.141592653589793 rad pos: -63.5,-4.5 parent: 2 type: Transform - - uid: 26577 + - uid: 26584 components: - rot: 3.141592653589793 rad pos: -64.5,-4.5 parent: 2 type: Transform - - uid: 26578 + - uid: 26585 components: - rot: 3.141592653589793 rad pos: -65.5,-4.5 parent: 2 type: Transform - - uid: 26579 + - uid: 26586 components: - rot: 3.141592653589793 rad pos: -66.5,-4.5 parent: 2 type: Transform - - uid: 26580 + - uid: 26587 components: - rot: 3.141592653589793 rad pos: -67.5,-4.5 parent: 2 type: Transform - - uid: 26581 + - uid: 26588 components: - rot: 3.141592653589793 rad pos: -68.5,-4.5 parent: 2 type: Transform - - uid: 26582 + - uid: 26589 components: - rot: 3.141592653589793 rad pos: -69.5,-4.5 parent: 2 type: Transform - - uid: 26583 + - uid: 26590 components: - rot: 3.141592653589793 rad pos: -70.5,-4.5 parent: 2 type: Transform - - uid: 26584 + - uid: 26591 components: - rot: 3.141592653589793 rad pos: -71.5,-4.5 parent: 2 type: Transform - - uid: 26585 + - uid: 26592 components: - rot: 3.141592653589793 rad pos: -72.5,-4.5 parent: 2 type: Transform - - uid: 26586 + - uid: 26593 components: - rot: 3.141592653589793 rad pos: -73.5,-4.5 parent: 2 type: Transform - - uid: 26587 + - uid: 26594 components: - rot: 3.141592653589793 rad pos: -74.5,-4.5 parent: 2 type: Transform - - uid: 26588 + - uid: 26595 components: - rot: 3.141592653589793 rad pos: -75.5,-4.5 parent: 2 type: Transform - - uid: 26589 + - uid: 26596 components: - rot: 3.141592653589793 rad pos: -75.5,-5.5 parent: 2 type: Transform - - uid: 26590 + - uid: 26597 components: - rot: 3.141592653589793 rad pos: -75.5,-6.5 parent: 2 type: Transform - - uid: 26591 + - uid: 26598 components: - rot: 3.141592653589793 rad pos: -75.5,-7.5 parent: 2 type: Transform - - uid: 26592 + - uid: 26599 components: - rot: 3.141592653589793 rad pos: -75.5,-8.5 parent: 2 type: Transform - - uid: 26593 + - uid: 26600 components: - rot: 3.141592653589793 rad pos: -75.5,-9.5 parent: 2 type: Transform - - uid: 26594 + - uid: 26601 components: - rot: 3.141592653589793 rad pos: -75.5,-10.5 parent: 2 type: Transform - - uid: 26595 + - uid: 26602 components: - rot: 3.141592653589793 rad pos: -75.5,-11.5 parent: 2 type: Transform - - uid: 26596 + - uid: 26603 components: - rot: 3.141592653589793 rad pos: -75.5,-13.5 parent: 2 type: Transform - - uid: 26597 + - uid: 26604 components: - rot: 3.141592653589793 rad pos: -75.5,-14.5 parent: 2 type: Transform - - uid: 26598 + - uid: 26605 components: - rot: 3.141592653589793 rad pos: -75.5,-15.5 parent: 2 type: Transform - - uid: 26599 + - uid: 26606 components: - rot: 3.141592653589793 rad pos: -75.5,-16.5 parent: 2 type: Transform - - uid: 26600 + - uid: 26607 components: - rot: 3.141592653589793 rad pos: -75.5,-17.5 parent: 2 type: Transform - - uid: 26601 + - uid: 26608 components: - rot: 3.141592653589793 rad pos: -75.5,-18.5 parent: 2 type: Transform - - uid: 26602 + - uid: 26609 components: - rot: 3.141592653589793 rad pos: -75.5,-19.5 parent: 2 type: Transform - - uid: 26603 + - uid: 26610 components: - rot: 3.141592653589793 rad pos: -75.5,-20.5 parent: 2 type: Transform - - uid: 26604 + - uid: 26611 components: - rot: 3.141592653589793 rad pos: -75.5,-21.5 parent: 2 type: Transform - - uid: 26605 + - uid: 26612 components: - rot: 3.141592653589793 rad pos: -75.5,-22.5 parent: 2 type: Transform - - uid: 26606 + - uid: 26613 components: - rot: 3.141592653589793 rad pos: -74.5,-22.5 parent: 2 type: Transform - - uid: 26607 + - uid: 26614 components: - rot: 3.141592653589793 rad pos: -73.5,-22.5 parent: 2 type: Transform - - uid: 26608 + - uid: 26615 components: - rot: 3.141592653589793 rad pos: -72.5,-22.5 parent: 2 type: Transform - - uid: 26609 + - uid: 26616 components: - rot: 3.141592653589793 rad pos: -71.5,-22.5 parent: 2 type: Transform - - uid: 26610 + - uid: 26617 components: - pos: -45.5,-57.5 parent: 2 type: Transform - - uid: 26611 + - uid: 26618 components: - pos: -45.5,-56.5 parent: 2 type: Transform - - uid: 26612 + - uid: 26619 components: - pos: -45.5,-58.5 parent: 2 type: Transform - - uid: 26613 + - uid: 26620 components: - rot: 3.141592653589793 rad pos: -39.5,-59.5 parent: 2 type: Transform - - uid: 26614 + - uid: 26621 components: - pos: -43.5,-58.5 parent: 2 type: Transform - - uid: 26615 + - uid: 26622 components: - rot: 3.141592653589793 rad pos: -36.5,-58.5 parent: 2 type: Transform - - uid: 26616 + - uid: 26623 components: - pos: -40.5,-58.5 parent: 2 type: Transform - - uid: 26617 + - uid: 26624 components: - pos: -42.5,-31.5 parent: 2 type: Transform - - uid: 26618 + - uid: 26625 components: - pos: -43.5,-31.5 parent: 2 type: Transform - - uid: 26619 + - uid: 26626 components: - pos: -43.5,-32.5 parent: 2 type: Transform - - uid: 26620 + - uid: 26627 components: - pos: -44.5,-32.5 parent: 2 type: Transform - - uid: 26621 + - uid: 26628 components: - pos: -45.5,-32.5 parent: 2 type: Transform - - uid: 26622 + - uid: 26629 components: - pos: -45.5,-36.5 parent: 2 type: Transform - - uid: 26623 + - uid: 26630 components: - pos: -43.5,-37.5 parent: 2 type: Transform - - uid: 26624 + - uid: 26631 components: - rot: 3.141592653589793 rad pos: -40.5,-59.5 parent: 2 type: Transform - - uid: 26625 + - uid: 26632 components: - rot: -1.5707963267948966 rad pos: -32.5,-43.5 parent: 2 type: Transform - - uid: 26626 + - uid: 26633 components: - rot: 1.5707963267948966 rad pos: -36.5,-38.5 parent: 2 type: Transform - - uid: 26627 + - uid: 26634 components: - rot: 1.5707963267948966 rad pos: -36.5,-39.5 parent: 2 type: Transform - - uid: 26628 + - uid: 26635 components: - rot: 1.5707963267948966 rad pos: -36.5,-40.5 parent: 2 type: Transform - - uid: 26629 + - uid: 26636 components: - rot: 1.5707963267948966 rad pos: -41.5,-40.5 parent: 2 type: Transform - - uid: 26630 + - uid: 26637 components: - pos: -32.5,-44.5 parent: 2 type: Transform - - uid: 26631 + - uid: 26638 components: - pos: -32.5,-45.5 parent: 2 type: Transform - - uid: 26632 + - uid: 26639 components: - pos: -32.5,-46.5 parent: 2 type: Transform - - uid: 26633 + - uid: 26640 components: - pos: -32.5,-47.5 parent: 2 type: Transform - - uid: 26634 + - uid: 26641 components: - pos: -32.5,-48.5 parent: 2 type: Transform - - uid: 26635 + - uid: 26642 components: - pos: -32.5,-49.5 parent: 2 type: Transform - - uid: 26636 + - uid: 26643 components: - pos: -32.5,-51.5 parent: 2 type: Transform - - uid: 26637 + - uid: 26644 components: - pos: -32.5,-52.5 parent: 2 type: Transform - - uid: 26638 + - uid: 26645 components: - pos: -32.5,-53.5 parent: 2 type: Transform - - uid: 26639 + - uid: 26646 components: - pos: -32.5,-54.5 parent: 2 type: Transform - - uid: 26640 + - uid: 26647 components: - pos: -32.5,-55.5 parent: 2 type: Transform - - uid: 26641 + - uid: 26648 components: - pos: -32.5,-56.5 parent: 2 type: Transform - - uid: 26642 + - uid: 26649 components: - pos: -32.5,-57.5 parent: 2 type: Transform - - uid: 26643 + - uid: 26650 components: - pos: -33.5,-57.5 parent: 2 type: Transform - - uid: 26644 + - uid: 26651 components: - pos: -33.5,-58.5 parent: 2 type: Transform - - uid: 26645 + - uid: 26652 components: - pos: -34.5,-58.5 parent: 2 type: Transform - - uid: 26646 + - uid: 26653 components: - pos: -47.5,-39.5 parent: 2 type: Transform - - uid: 26647 + - uid: 26654 components: - pos: 65.5,-31.5 parent: 2 type: Transform - - uid: 26648 + - uid: 26655 components: - pos: -70.5,-3.5 parent: 2 type: Transform - - uid: 26649 + - uid: 26656 components: - pos: -71.5,-3.5 parent: 2 type: Transform - - uid: 26650 + - uid: 26657 components: - pos: -72.5,-3.5 parent: 2 type: Transform - - uid: 26651 + - uid: 26658 components: - pos: -76.5,-4.5 parent: 2 type: Transform - - uid: 26652 + - uid: 26659 components: - pos: -76.5,-5.5 parent: 2 type: Transform - - uid: 26653 + - uid: 26660 components: - pos: -76.5,-6.5 parent: 2 type: Transform - - uid: 26654 + - uid: 26661 components: - rot: -1.5707963267948966 rad pos: -58.5,-17.5 parent: 2 type: Transform - - uid: 26655 + - uid: 26662 components: - pos: -76.5,-18.5 parent: 2 type: Transform - - uid: 26656 + - uid: 26663 components: - pos: -76.5,-19.5 parent: 2 type: Transform - - uid: 26657 + - uid: 26664 components: - pos: -76.5,-20.5 parent: 2 type: Transform - - uid: 26658 + - uid: 26665 components: - pos: -75.5,-23.5 parent: 2 type: Transform - - uid: 26659 + - uid: 26666 components: - pos: -63.5,-3.5 parent: 2 type: Transform - - uid: 26660 + - uid: 26667 components: - pos: -64.5,-3.5 parent: 2 type: Transform - - uid: 26661 + - uid: 26668 components: - pos: -65.5,-3.5 parent: 2 type: Transform - - uid: 26662 + - uid: 26669 components: - pos: -58.5,-3.5 parent: 2 type: Transform - - uid: 26663 + - uid: 26670 components: - pos: -75.5,-24.5 parent: 2 type: Transform - - uid: 26664 + - uid: 26671 components: - pos: -75.5,-27.5 parent: 2 type: Transform - - uid: 26665 + - uid: 26672 components: - pos: -75.5,-26.5 parent: 2 type: Transform - - uid: 26666 + - uid: 26673 components: - pos: -76.5,-26.5 parent: 2 type: Transform - - uid: 26667 + - uid: 26674 components: - pos: -45.5,-31.5 parent: 2 type: Transform - - uid: 26668 + - uid: 26675 components: - rot: -1.5707963267948966 rad pos: -46.5,-31.5 parent: 2 type: Transform - - uid: 26669 + - uid: 26676 components: - rot: -1.5707963267948966 rad pos: -47.5,-31.5 parent: 2 type: Transform - - uid: 26670 + - uid: 26677 components: - rot: -1.5707963267948966 rad pos: -47.5,-32.5 parent: 2 type: Transform - - uid: 26671 + - uid: 26678 components: - rot: -1.5707963267948966 rad pos: -47.5,-33.5 parent: 2 type: Transform - - uid: 26672 + - uid: 26679 components: - rot: -1.5707963267948966 rad pos: -48.5,-33.5 parent: 2 type: Transform - - uid: 26673 + - uid: 26680 components: - rot: -1.5707963267948966 rad pos: -49.5,-33.5 parent: 2 type: Transform - - uid: 26674 + - uid: 26681 components: - rot: -1.5707963267948966 rad pos: -50.5,-33.5 parent: 2 type: Transform - - uid: 26675 + - uid: 26682 components: - rot: -1.5707963267948966 rad pos: -51.5,-33.5 parent: 2 type: Transform - - uid: 26676 + - uid: 26683 components: - rot: -1.5707963267948966 rad pos: -52.5,-33.5 parent: 2 type: Transform - - uid: 26677 + - uid: 26684 components: - rot: -1.5707963267948966 rad pos: -53.5,-33.5 parent: 2 type: Transform - - uid: 26678 + - uid: 26685 components: - rot: -1.5707963267948966 rad pos: -53.5,-34.5 parent: 2 type: Transform - - uid: 26679 + - uid: 26686 components: - rot: -1.5707963267948966 rad pos: -53.5,-35.5 parent: 2 type: Transform - - uid: 26680 + - uid: 26687 components: - rot: -1.5707963267948966 rad pos: -53.5,-38.5 parent: 2 type: Transform - - uid: 26681 + - uid: 26688 components: - rot: -1.5707963267948966 rad pos: -53.5,-39.5 parent: 2 type: Transform - - uid: 26682 + - uid: 26689 components: - rot: -1.5707963267948966 rad pos: -53.5,-40.5 parent: 2 type: Transform - - uid: 26683 + - uid: 26690 components: - rot: -1.5707963267948966 rad pos: -54.5,-40.5 parent: 2 type: Transform - - uid: 26684 + - uid: 26691 components: - rot: -1.5707963267948966 rad pos: -55.5,-40.5 parent: 2 type: Transform - - uid: 26685 + - uid: 26692 components: - rot: -1.5707963267948966 rad pos: -55.5,-41.5 parent: 2 type: Transform - - uid: 26686 + - uid: 26693 components: - rot: -1.5707963267948966 rad pos: -55.5,-42.5 parent: 2 type: Transform - - uid: 26687 + - uid: 26694 components: - rot: -1.5707963267948966 rad pos: -55.5,-43.5 parent: 2 type: Transform - - uid: 26688 + - uid: 26695 components: - rot: -1.5707963267948966 rad pos: -55.5,-44.5 parent: 2 type: Transform - - uid: 26689 + - uid: 26696 components: - rot: -1.5707963267948966 rad pos: -55.5,-45.5 parent: 2 type: Transform - - uid: 26690 + - uid: 26697 components: - rot: -1.5707963267948966 rad pos: -55.5,-46.5 parent: 2 type: Transform - - uid: 26691 + - uid: 26698 components: - pos: -53.5,-46.5 parent: 2 type: Transform - - uid: 26692 + - uid: 26699 components: - pos: -53.5,-51.5 parent: 2 type: Transform - - uid: 26693 + - uid: 26700 components: - pos: -54.5,-51.5 parent: 2 type: Transform - - uid: 26694 + - uid: 26701 components: - pos: -54.5,-46.5 parent: 2 type: Transform - - uid: 26695 + - uid: 26702 components: - rot: -1.5707963267948966 rad pos: -55.5,-51.5 parent: 2 type: Transform - - uid: 26696 + - uid: 26703 components: - rot: -1.5707963267948966 rad pos: -55.5,-52.5 parent: 2 type: Transform - - uid: 26697 + - uid: 26704 components: - rot: -1.5707963267948966 rad pos: -55.5,-53.5 parent: 2 type: Transform - - uid: 26698 + - uid: 26705 components: - rot: -1.5707963267948966 rad pos: -55.5,-54.5 parent: 2 type: Transform - - uid: 26699 + - uid: 26706 components: - rot: -1.5707963267948966 rad pos: -55.5,-55.5 parent: 2 type: Transform - - uid: 26700 + - uid: 26707 components: - rot: -1.5707963267948966 rad pos: -55.5,-56.5 parent: 2 type: Transform - - uid: 26701 + - uid: 26708 components: - rot: -1.5707963267948966 rad pos: -55.5,-57.5 parent: 2 type: Transform - - uid: 26702 + - uid: 26709 components: - rot: -1.5707963267948966 rad pos: -58.5,-32.5 parent: 2 type: Transform - - uid: 26703 + - uid: 26710 components: - rot: -1.5707963267948966 rad pos: -58.5,-33.5 parent: 2 type: Transform - - uid: 26704 + - uid: 26711 components: - rot: -1.5707963267948966 rad pos: -58.5,-34.5 parent: 2 type: Transform - - uid: 26705 + - uid: 26712 components: - rot: -1.5707963267948966 rad pos: -58.5,-35.5 parent: 2 type: Transform - - uid: 26706 + - uid: 26713 components: - rot: -1.5707963267948966 rad pos: -58.5,-38.5 parent: 2 type: Transform - - uid: 26707 + - uid: 26714 components: - rot: -1.5707963267948966 rad pos: -58.5,-39.5 parent: 2 type: Transform - - uid: 26708 + - uid: 26715 components: - rot: -1.5707963267948966 rad pos: -58.5,-40.5 parent: 2 type: Transform - - uid: 26709 + - uid: 26716 components: - rot: -1.5707963267948966 rad pos: -58.5,-41.5 parent: 2 type: Transform - - uid: 26710 + - uid: 26717 components: - rot: -1.5707963267948966 rad pos: -58.5,-42.5 parent: 2 type: Transform - - uid: 26711 + - uid: 26718 components: - rot: -1.5707963267948966 rad pos: -58.5,-45.5 parent: 2 type: Transform - - uid: 26712 + - uid: 26719 components: - rot: -1.5707963267948966 rad pos: -58.5,-46.5 parent: 2 type: Transform - - uid: 26713 + - uid: 26720 components: - rot: -1.5707963267948966 rad pos: -58.5,-49.5 parent: 2 type: Transform - - uid: 26714 + - uid: 26721 components: - rot: -1.5707963267948966 rad pos: -58.5,-50.5 parent: 2 type: Transform - - uid: 26715 + - uid: 26722 components: - rot: -1.5707963267948966 rad pos: -58.5,-53.5 parent: 2 type: Transform - - uid: 26716 + - uid: 26723 components: - rot: -1.5707963267948966 rad pos: -58.5,-55.5 parent: 2 type: Transform - - uid: 26717 + - uid: 26724 components: - rot: -1.5707963267948966 rad pos: -58.5,-56.5 parent: 2 type: Transform - - uid: 26718 + - uid: 26725 components: - rot: -1.5707963267948966 rad pos: -58.5,-57.5 parent: 2 type: Transform - - uid: 26719 + - uid: 26726 components: - rot: -1.5707963267948966 rad pos: -58.5,-58.5 parent: 2 type: Transform - - uid: 26720 + - uid: 26727 components: - rot: -1.5707963267948966 rad pos: -56.5,-64.5 parent: 2 type: Transform - - uid: 26721 + - uid: 26728 components: - rot: -1.5707963267948966 rad pos: -56.5,-65.5 parent: 2 type: Transform - - uid: 26722 + - uid: 26729 components: - rot: -1.5707963267948966 rad pos: -56.5,-66.5 parent: 2 type: Transform - - uid: 26723 + - uid: 26730 components: - rot: 3.141592653589793 rad pos: -36.5,-59.5 parent: 2 type: Transform - - uid: 26724 + - uid: 26731 components: - rot: 3.141592653589793 rad pos: -37.5,-59.5 parent: 2 type: Transform - - uid: 26725 + - uid: 26732 components: - pos: -45.5,-41.5 parent: 2 type: Transform - - uid: 26726 + - uid: 26733 components: - pos: -57.5,-70.5 parent: 2 type: Transform - - uid: 26727 + - uid: 26734 components: - pos: -57.5,-72.5 parent: 2 type: Transform - - uid: 26728 + - uid: 26735 components: - pos: -57.5,-74.5 parent: 2 type: Transform - - uid: 26729 + - uid: 26736 components: - pos: -57.5,-78.5 parent: 2 type: Transform - - uid: 26730 + - uid: 26737 components: - pos: -57.5,-80.5 parent: 2 type: Transform - - uid: 26731 + - uid: 26738 components: - pos: -57.5,-82.5 parent: 2 type: Transform - - uid: 26732 + - uid: 26739 components: - pos: -56.5,-67.5 parent: 2 type: Transform - - uid: 26733 + - uid: 26740 components: - pos: -57.5,-67.5 parent: 2 type: Transform - - uid: 26734 + - uid: 26741 components: - pos: -57.5,-68.5 parent: 2 type: Transform - - uid: 26735 + - uid: 26742 components: - pos: -57.5,-69.5 parent: 2 type: Transform - - uid: 26736 + - uid: 26743 components: - rot: 1.5707963267948966 rad pos: -51.5,-61.5 parent: 2 type: Transform - - uid: 26737 + - uid: 26744 components: - rot: 3.141592653589793 rad pos: -22.5,-50.5 parent: 2 type: Transform - - uid: 26738 + - uid: 26745 components: - pos: -31.5,-57.5 parent: 2 type: Transform - - uid: 26739 + - uid: 26746 components: - pos: -31.5,-58.5 parent: 2 type: Transform - - uid: 26740 + - uid: 26747 components: - pos: -30.5,-58.5 parent: 2 type: Transform - - uid: 26741 + - uid: 26748 components: - pos: -30.5,-59.5 parent: 2 type: Transform - - uid: 26742 + - uid: 26749 components: - pos: -30.5,-60.5 parent: 2 type: Transform - - uid: 26743 + - uid: 26750 components: - pos: -31.5,-60.5 parent: 2 type: Transform - - uid: 26744 + - uid: 26751 components: - pos: -31.5,-61.5 parent: 2 type: Transform - - uid: 26745 + - uid: 26752 components: - pos: -32.5,-61.5 parent: 2 type: Transform - - uid: 26746 + - uid: 26753 components: - pos: -33.5,-61.5 parent: 2 type: Transform - - uid: 26747 + - uid: 26754 components: - pos: -33.5,-62.5 parent: 2 type: Transform - - uid: 26748 + - uid: 26755 components: - pos: -34.5,-62.5 parent: 2 type: Transform - - uid: 26749 + - uid: 26756 components: - pos: -35.5,-62.5 parent: 2 type: Transform - - uid: 26750 + - uid: 26757 components: - pos: -36.5,-62.5 parent: 2 type: Transform - - uid: 26751 + - uid: 26758 components: - pos: -37.5,-62.5 parent: 2 type: Transform - - uid: 26752 + - uid: 26759 components: - pos: -38.5,-62.5 parent: 2 type: Transform - - uid: 26753 + - uid: 26760 components: - pos: -39.5,-62.5 parent: 2 type: Transform - - uid: 26754 + - uid: 26761 components: - pos: -42.5,-62.5 parent: 2 type: Transform - - uid: 26755 + - uid: 26762 components: - pos: -43.5,-62.5 parent: 2 type: Transform - - uid: 26756 + - uid: 26763 components: - pos: -44.5,-62.5 parent: 2 type: Transform - - uid: 26757 + - uid: 26764 components: - pos: -45.5,-62.5 parent: 2 type: Transform - - uid: 26758 + - uid: 26765 components: - pos: -46.5,-62.5 parent: 2 type: Transform - - uid: 26759 + - uid: 26766 components: - pos: -47.5,-62.5 parent: 2 type: Transform - - uid: 26760 + - uid: 26767 components: - pos: -48.5,-62.5 parent: 2 type: Transform - - uid: 26761 + - uid: 26768 components: - pos: -49.5,-62.5 parent: 2 type: Transform - - uid: 26762 + - uid: 26769 components: - pos: -50.5,-61.5 parent: 2 type: Transform - - uid: 26763 + - uid: 26770 components: - pos: -49.5,-61.5 parent: 2 type: Transform - - uid: 26764 + - uid: 26771 components: - pos: -59.5,-78.5 parent: 2 type: Transform - - uid: 26765 + - uid: 26772 components: - pos: -50.5,-77.5 parent: 2 type: Transform - - uid: 26766 + - uid: 26773 components: - pos: -50.5,-78.5 parent: 2 type: Transform - - uid: 26767 + - uid: 26774 components: - pos: -57.5,-83.5 parent: 2 type: Transform - - uid: 26768 + - uid: 26775 components: - pos: -56.5,-83.5 parent: 2 type: Transform - - uid: 26769 + - uid: 26776 components: - pos: -52.5,-83.5 parent: 2 type: Transform - - uid: 26770 + - uid: 26777 components: - pos: -52.5,-82.5 parent: 2 type: Transform - - uid: 26771 + - uid: 26778 components: - pos: -52.5,-81.5 parent: 2 type: Transform - - uid: 26772 + - uid: 26779 components: - pos: -51.5,-81.5 parent: 2 type: Transform - - uid: 26773 + - uid: 26780 components: - pos: -51.5,-80.5 parent: 2 type: Transform - - uid: 26774 + - uid: 26781 components: - pos: -50.5,-80.5 parent: 2 type: Transform - - uid: 26775 + - uid: 26782 components: - pos: -50.5,-79.5 parent: 2 type: Transform - - uid: 26776 + - uid: 26783 components: - pos: -59.5,-80.5 parent: 2 type: Transform - - uid: 26777 + - uid: 26784 components: - pos: -59.5,-82.5 parent: 2 type: Transform - - uid: 26778 + - uid: 26785 components: - pos: -58.5,-82.5 parent: 2 type: Transform - - uid: 26779 + - uid: 26786 components: - pos: -58.5,-78.5 parent: 2 type: Transform - - uid: 26780 + - uid: 26787 components: - pos: -58.5,-74.5 parent: 2 type: Transform - - uid: 26781 + - uid: 26788 components: - pos: -59.5,-74.5 parent: 2 type: Transform - - uid: 26782 + - uid: 26789 components: - pos: -59.5,-72.5 parent: 2 type: Transform - - uid: 26783 + - uid: 26790 components: - pos: -58.5,-70.5 parent: 2 type: Transform - - uid: 26784 + - uid: 26791 components: - pos: -59.5,-70.5 parent: 2 type: Transform - - uid: 26785 + - uid: 26792 components: - rot: 1.5707963267948966 rad pos: -34.5,-73.5 parent: 2 type: Transform - - uid: 26786 + - uid: 26793 components: - rot: 1.5707963267948966 rad pos: -48.5,-80.5 parent: 2 type: Transform - - uid: 26787 + - uid: 26794 components: - rot: 1.5707963267948966 rad pos: -48.5,-79.5 parent: 2 type: Transform - - uid: 26788 + - uid: 26795 components: - rot: 1.5707963267948966 rad pos: -49.5,-77.5 parent: 2 type: Transform - - uid: 26789 + - uid: 26796 components: - rot: 1.5707963267948966 rad pos: -46.5,-85.5 parent: 2 type: Transform - - uid: 26790 + - uid: 26797 components: - rot: 1.5707963267948966 rad pos: -47.5,-84.5 parent: 2 type: Transform - - uid: 26791 + - uid: 26798 components: - rot: 1.5707963267948966 rad pos: -45.5,-86.5 parent: 2 type: Transform - - uid: 26792 + - uid: 26799 components: - rot: 1.5707963267948966 rad pos: -46.5,-86.5 parent: 2 type: Transform - - uid: 26793 + - uid: 26800 components: - rot: 1.5707963267948966 rad pos: -35.5,-73.5 parent: 2 type: Transform - - uid: 26794 + - uid: 26801 components: - rot: 1.5707963267948966 rad pos: -48.5,-77.5 parent: 2 type: Transform - - uid: 26795 + - uid: 26802 components: - rot: 1.5707963267948966 rad pos: -35.5,-80.5 parent: 2 type: Transform - - uid: 26796 + - uid: 26803 components: - rot: 1.5707963267948966 rad pos: -35.5,-75.5 parent: 2 type: Transform - - uid: 26797 + - uid: 26804 components: - rot: 1.5707963267948966 rad pos: -35.5,-74.5 parent: 2 type: Transform - - uid: 26798 + - uid: 26805 components: - rot: 1.5707963267948966 rad pos: -48.5,-78.5 parent: 2 type: Transform - - uid: 26799 + - uid: 26806 components: - rot: 1.5707963267948966 rad pos: -47.5,-85.5 parent: 2 type: Transform - - uid: 26800 + - uid: 26807 components: - rot: 1.5707963267948966 rad pos: -38.5,-86.5 parent: 2 type: Transform - - uid: 26801 + - uid: 26808 components: - rot: 1.5707963267948966 rad pos: -37.5,-85.5 parent: 2 type: Transform - - uid: 26802 + - uid: 26809 components: - rot: 1.5707963267948966 rad pos: -37.5,-86.5 parent: 2 type: Transform - - uid: 26803 + - uid: 26810 components: - rot: 1.5707963267948966 rad pos: -48.5,-84.5 parent: 2 type: Transform - - uid: 26804 + - uid: 26811 components: - rot: 1.5707963267948966 rad pos: -35.5,-79.5 parent: 2 type: Transform - - uid: 26805 + - uid: 26812 components: - rot: 1.5707963267948966 rad pos: -35.5,-84.5 parent: 2 type: Transform - - uid: 26806 + - uid: 26813 components: - rot: 1.5707963267948966 rad pos: -36.5,-84.5 parent: 2 type: Transform - - uid: 26807 + - uid: 26814 components: - rot: 1.5707963267948966 rad pos: -36.5,-85.5 parent: 2 type: Transform - - uid: 26808 + - uid: 26815 components: - rot: 1.5707963267948966 rad pos: -33.5,-73.5 parent: 2 type: Transform - - uid: 26809 + - uid: 26816 components: - rot: 1.5707963267948966 rad pos: -32.5,-74.5 parent: 2 type: Transform - - uid: 26810 + - uid: 26817 components: - rot: 1.5707963267948966 rad pos: -32.5,-75.5 parent: 2 type: Transform - - uid: 26811 + - uid: 26818 components: - rot: 1.5707963267948966 rad pos: -31.5,-75.5 parent: 2 type: Transform - - uid: 26812 + - uid: 26819 components: - pos: -44.5,-86.5 parent: 2 type: Transform - - uid: 26813 + - uid: 26820 components: - pos: -39.5,-86.5 parent: 2 type: Transform - - uid: 26814 + - uid: 26821 components: - rot: 1.5707963267948966 rad pos: 48.5,-70.5 parent: 2 type: Transform - - uid: 26815 + - uid: 26822 components: - pos: -17.5,-50.5 parent: 2 type: Transform - - uid: 26816 + - uid: 26823 components: - rot: 1.5707963267948966 rad pos: -57.5,-62.5 parent: 2 type: Transform - - uid: 26817 + - uid: 26824 components: - rot: 1.5707963267948966 rad pos: -58.5,-61.5 parent: 2 type: Transform - - uid: 26818 + - uid: 26825 components: - rot: 1.5707963267948966 rad pos: -58.5,-62.5 parent: 2 type: Transform - - uid: 26819 + - uid: 26826 components: - pos: -19.5,-50.5 parent: 2 type: Transform - - uid: 26820 + - uid: 26827 components: - pos: 25.5,-30.5 parent: 2 type: Transform - - uid: 26821 + - uid: 26828 components: - pos: 27.5,-30.5 parent: 2 type: Transform - - uid: 26822 + - uid: 26829 components: - rot: -1.5707963267948966 rad pos: 30.5,-31.5 parent: 2 type: Transform - - uid: 26823 + - uid: 26830 components: - rot: -1.5707963267948966 rad pos: 31.5,-31.5 parent: 2 type: Transform - - uid: 26824 + - uid: 26831 components: - pos: 27.5,-31.5 parent: 2 type: Transform - - uid: 26825 + - uid: 26832 components: - pos: 28.5,-31.5 parent: 2 type: Transform - - uid: 26826 + - uid: 26833 components: - rot: -1.5707963267948966 rad pos: 32.5,-31.5 parent: 2 type: Transform - - uid: 26827 + - uid: 26834 components: - rot: -1.5707963267948966 rad pos: 33.5,-31.5 parent: 2 type: Transform - - uid: 26828 + - uid: 26835 components: - pos: -21.5,-50.5 parent: 2 type: Transform - - uid: 26829 + - uid: 26836 components: - pos: -53.5,-50.5 parent: 2 type: Transform - - uid: 26830 + - uid: 26837 components: - pos: -53.5,-47.5 parent: 2 type: Transform - - uid: 26831 + - uid: 26838 components: - pos: -53.5,-48.5 parent: 2 type: Transform - - uid: 26832 + - uid: 26839 components: - pos: -53.5,-49.5 parent: 2 type: Transform - - uid: 26833 + - uid: 26840 components: - pos: -59.5,-53.5 parent: 2 type: Transform - - uid: 26834 + - uid: 26841 components: - pos: -60.5,-53.5 parent: 2 type: Transform - - uid: 26835 + - uid: 26842 components: - pos: -59.5,-55.5 parent: 2 type: Transform - - uid: 26836 + - uid: 26843 components: - pos: -60.5,-55.5 parent: 2 type: Transform - - uid: 26837 + - uid: 26844 components: - pos: 25.5,-27.5 parent: 2 type: Transform - - uid: 26838 + - uid: 26845 components: - pos: 68.5,12.5 parent: 2 type: Transform - - uid: 26839 + - uid: 26846 components: - rot: 1.5707963267948966 rad pos: 8.5,-18.5 parent: 2 type: Transform - - uid: 26840 + - uid: 26847 components: - pos: 5.5,34.5 parent: 2 type: Transform - - uid: 26841 + - uid: 26848 components: - pos: 9.5,35.5 parent: 2 type: Transform - - uid: 26842 + - uid: 26849 components: - pos: 11.5,31.5 parent: 2 type: Transform - - uid: 26843 + - uid: 26850 components: - pos: -3.5,26.5 parent: 2 type: Transform - - uid: 26844 + - uid: 26851 components: - pos: -7.5,33.5 parent: 2 type: Transform - - uid: 26845 + - uid: 26852 components: - pos: -6.5,33.5 parent: 2 type: Transform - - uid: 26846 + - uid: 26853 components: - pos: -5.5,33.5 parent: 2 type: Transform - - uid: 26847 + - uid: 26854 components: - pos: -16.5,53.5 parent: 2 type: Transform - - uid: 26848 + - uid: 26855 components: - pos: -23.5,72.5 parent: 2 type: Transform - - uid: 26849 + - uid: 26856 components: - pos: -7.5,30.5 parent: 2 type: Transform - - uid: 26850 + - uid: 26857 components: - pos: -7.5,29.5 parent: 2 type: Transform - - uid: 26851 + - uid: 26858 components: - pos: -7.5,26.5 parent: 2 type: Transform - - uid: 26852 + - uid: 26859 components: - pos: -7.5,31.5 parent: 2 type: Transform - - uid: 26853 + - uid: 26860 components: - pos: -6.5,31.5 parent: 2 type: Transform - - uid: 26854 + - uid: 26861 components: - pos: -5.5,31.5 parent: 2 type: Transform - - uid: 26855 + - uid: 26862 components: - pos: -4.5,31.5 parent: 2 type: Transform - - uid: 26856 + - uid: 26863 components: - pos: -4.5,30.5 parent: 2 type: Transform - - uid: 26857 + - uid: 26864 components: - pos: -4.5,29.5 parent: 2 type: Transform - - uid: 26858 + - uid: 26865 components: - pos: -3.5,29.5 parent: 2 type: Transform - - uid: 26859 + - uid: 26866 components: - pos: -1.5,29.5 parent: 2 type: Transform - - uid: 26860 + - uid: 26867 components: - pos: -0.5,29.5 parent: 2 type: Transform - - uid: 26861 + - uid: 26868 components: - pos: 0.5,29.5 parent: 2 type: Transform - - uid: 26862 + - uid: 26869 components: - pos: 1.5,29.5 parent: 2 type: Transform - - uid: 26863 + - uid: 26870 components: - pos: 1.5,30.5 parent: 2 type: Transform - - uid: 26864 + - uid: 26871 components: - pos: 1.5,31.5 parent: 2 type: Transform - - uid: 26865 + - uid: 26872 components: - pos: 2.5,31.5 parent: 2 type: Transform - - uid: 26866 + - uid: 26873 components: - pos: 2.5,33.5 parent: 2 type: Transform - - uid: 26867 + - uid: 26874 components: - pos: 1.5,33.5 parent: 2 type: Transform - - uid: 26868 + - uid: 26875 components: - pos: 1.5,34.5 parent: 2 type: Transform - - uid: 26869 + - uid: 26876 components: - pos: 1.5,35.5 parent: 2 type: Transform - - uid: 26870 + - uid: 26877 components: - pos: 0.5,35.5 parent: 2 type: Transform - - uid: 26871 + - uid: 26878 components: - pos: -3.5,35.5 parent: 2 type: Transform - - uid: 26872 + - uid: 26879 components: - pos: -4.5,35.5 parent: 2 type: Transform - - uid: 26873 + - uid: 26880 components: - pos: -4.5,34.5 parent: 2 type: Transform - - uid: 26874 + - uid: 26881 components: - pos: -4.5,33.5 parent: 2 type: Transform - - uid: 26875 + - uid: 26882 components: - pos: -23.5,58.5 parent: 2 type: Transform - - uid: 26876 + - uid: 26883 components: - pos: -20.5,72.5 parent: 2 type: Transform - - uid: 26877 + - uid: 26884 components: - pos: -23.5,57.5 parent: 2 type: Transform - - uid: 26878 + - uid: 26885 components: - pos: 49.5,41.5 parent: 2 type: Transform - - uid: 26879 + - uid: 26886 components: - pos: 12.5,31.5 parent: 2 type: Transform - - uid: 26880 + - uid: 26887 components: - pos: 6.5,29.5 parent: 2 type: Transform - - uid: 26881 + - uid: 26888 components: - pos: 4.5,33.5 parent: 2 type: Transform - - uid: 26882 + - uid: 26889 components: - pos: -4.5,24.5 parent: 2 type: Transform - - uid: 26883 + - uid: 26890 components: - pos: -5.5,24.5 parent: 2 type: Transform - - uid: 26884 + - uid: 26891 components: - pos: -6.5,24.5 parent: 2 type: Transform - - uid: 26885 + - uid: 26892 components: - pos: -7.5,24.5 parent: 2 type: Transform - - uid: 26886 + - uid: 26893 components: - pos: -7.5,25.5 parent: 2 type: Transform - - uid: 26887 + - uid: 26894 components: - pos: -34.5,27.5 parent: 2 type: Transform - - uid: 26888 + - uid: 26895 components: - pos: -35.5,27.5 parent: 2 type: Transform - - uid: 26889 + - uid: 26896 components: - pos: -35.5,28.5 parent: 2 type: Transform - - uid: 26890 + - uid: 26897 components: - pos: -35.5,26.5 parent: 2 type: Transform - - uid: 26891 + - uid: 26898 components: - pos: -49.5,27.5 parent: 2 type: Transform - - uid: 26892 + - uid: 26899 components: - pos: -49.5,24.5 parent: 2 type: Transform - - uid: 26893 + - uid: 26900 components: - rot: -1.5707963267948966 rad pos: -49.5,16.5 parent: 2 type: Transform - - uid: 26894 + - uid: 26901 components: - pos: -49.5,25.5 parent: 2 type: Transform - - uid: 26895 + - uid: 26902 components: - pos: -49.5,26.5 parent: 2 type: Transform - - uid: 26896 + - uid: 26903 components: - pos: -49.5,17.5 parent: 2 type: Transform - - uid: 26897 + - uid: 26904 components: - pos: -49.5,18.5 parent: 2 type: Transform - - uid: 26898 + - uid: 26905 components: - pos: -51.5,18.5 parent: 2 type: Transform - - uid: 26899 + - uid: 26906 components: - pos: -51.5,24.5 parent: 2 type: Transform - - uid: 26900 + - uid: 26907 components: - pos: 4.5,34.5 parent: 2 type: Transform - - uid: 26901 + - uid: 26908 components: - pos: 5.5,29.5 parent: 2 type: Transform - - uid: 26902 + - uid: 26909 components: - pos: 12.5,33.5 parent: 2 type: Transform - - uid: 26903 + - uid: 26910 components: - pos: -3.5,28.5 parent: 2 type: Transform - - uid: 26904 + - uid: 26911 components: - pos: 58.5,41.5 parent: 2 type: Transform - - uid: 26905 + - uid: 26912 components: - rot: -1.5707963267948966 rad pos: 55.5,41.5 parent: 2 type: Transform - - uid: 26906 + - uid: 26913 components: - pos: 54.5,51.5 parent: 2 type: Transform - - uid: 26907 + - uid: 26914 components: - pos: 57.5,60.5 parent: 2 type: Transform - - uid: 26908 + - uid: 26915 components: - rot: -1.5707963267948966 rad pos: 56.5,41.5 parent: 2 type: Transform - - uid: 26909 + - uid: 26916 components: - rot: -1.5707963267948966 rad pos: 42.5,38.5 parent: 2 type: Transform - - uid: 26910 + - uid: 26917 components: - pos: -29.5,27.5 parent: 2 type: Transform - - uid: 26911 + - uid: 26918 components: - pos: -35.5,29.5 parent: 2 type: Transform - - uid: 26912 + - uid: 26919 components: - pos: -29.5,29.5 parent: 2 type: Transform - - uid: 26913 + - uid: 26920 components: - pos: -29.5,30.5 parent: 2 type: Transform - - uid: 26914 + - uid: 26921 components: - pos: -29.5,31.5 parent: 2 type: Transform - - uid: 26915 + - uid: 26922 components: - pos: -29.5,32.5 parent: 2 type: Transform - - uid: 26916 + - uid: 26923 components: - pos: -35.5,30.5 parent: 2 type: Transform - - uid: 26917 + - uid: 26924 components: - pos: -35.5,31.5 parent: 2 type: Transform - - uid: 26918 + - uid: 26925 components: - pos: -35.5,32.5 parent: 2 type: Transform - - uid: 26919 + - uid: 26926 components: - pos: -34.5,32.5 parent: 2 type: Transform - - uid: 26920 + - uid: 26927 components: - pos: -30.5,32.5 parent: 2 type: Transform - - uid: 26921 + - uid: 26928 components: - pos: -49.5,32.5 parent: 2 type: Transform - - uid: 26922 + - uid: 26929 components: - pos: -50.5,32.5 parent: 2 type: Transform - - uid: 26923 + - uid: 26930 components: - pos: -51.5,32.5 parent: 2 type: Transform - - uid: 26924 + - uid: 26931 components: - pos: -52.5,32.5 parent: 2 type: Transform - - uid: 26925 + - uid: 26932 components: - pos: -49.5,28.5 parent: 2 type: Transform - - uid: 26926 + - uid: 26933 components: - pos: -50.5,28.5 parent: 2 type: Transform - - uid: 26927 + - uid: 26934 components: - pos: -51.5,28.5 parent: 2 type: Transform - - uid: 26928 + - uid: 26935 components: - pos: -52.5,28.5 parent: 2 type: Transform - - uid: 26929 + - uid: 26936 components: - pos: -49.5,36.5 parent: 2 type: Transform - - uid: 26930 + - uid: 26937 components: - pos: -50.5,36.5 parent: 2 type: Transform - - uid: 26931 + - uid: 26938 components: - pos: -51.5,36.5 parent: 2 type: Transform - - uid: 26932 + - uid: 26939 components: - pos: -52.5,36.5 parent: 2 type: Transform - - uid: 26933 + - uid: 26940 components: - rot: -1.5707963267948966 rad pos: -53.5,24.5 parent: 2 type: Transform - - uid: 26934 + - uid: 26941 components: - rot: -1.5707963267948966 rad pos: -53.5,18.5 parent: 2 type: Transform - - uid: 26935 + - uid: 26942 components: - pos: -49.5,37.5 parent: 2 type: Transform - - uid: 26936 + - uid: 26943 components: - pos: -48.5,37.5 parent: 2 type: Transform - - uid: 26937 + - uid: 26944 components: - pos: -35.5,34.5 parent: 2 type: Transform - - uid: 26938 + - uid: 26945 components: - pos: -35.5,33.5 parent: 2 type: Transform - - uid: 26939 + - uid: 26946 components: - pos: 49.5,43.5 parent: 2 type: Transform - - uid: 26940 + - uid: 26947 components: - pos: 49.5,48.5 parent: 2 type: Transform - - uid: 26941 + - uid: 26948 components: - pos: 59.5,49.5 parent: 2 type: Transform - - uid: 26942 + - uid: 26949 components: - pos: 49.5,49.5 parent: 2 type: Transform - - uid: 26943 + - uid: 26950 components: - pos: 59.5,44.5 parent: 2 type: Transform - - uid: 26944 + - uid: 26951 components: - rot: 3.141592653589793 rad pos: 61.5,42.5 parent: 2 type: Transform - - uid: 26945 + - uid: 26952 components: - pos: 49.5,42.5 parent: 2 type: Transform - - uid: 26946 + - uid: 26953 components: - pos: 59.5,42.5 parent: 2 type: Transform - - uid: 26947 + - uid: 26954 components: - pos: 66.5,-31.5 parent: 2 type: Transform - - uid: 26948 + - uid: 26955 components: - pos: 66.5,-32.5 parent: 2 type: Transform - - uid: 26949 + - uid: 26956 components: - rot: -1.5707963267948966 rad pos: 59.5,-25.5 parent: 2 type: Transform - - uid: 26950 + - uid: 26957 components: - rot: 3.141592653589793 rad pos: 10.5,-80.5 parent: 2 type: Transform - - uid: 26951 + - uid: 26958 components: - pos: -57.5,-0.5 parent: 2 type: Transform - - uid: 26952 + - uid: 26959 components: - pos: -56.5,-0.5 parent: 2 type: Transform - - uid: 26953 + - uid: 26960 components: - pos: -55.5,-0.5 parent: 2 type: Transform - - uid: 26954 + - uid: 26961 components: - pos: -57.5,-2.5 parent: 2 type: Transform - - uid: 26955 + - uid: 26962 components: - rot: 3.141592653589793 rad pos: -53.5,1.5 parent: 2 type: Transform - - uid: 26956 + - uid: 26963 components: - rot: 3.141592653589793 rad pos: -54.5,1.5 parent: 2 type: Transform - - uid: 26957 + - uid: 26964 components: - pos: -55.5,1.5 parent: 2 type: Transform - - uid: 26958 + - uid: 26965 components: - pos: -55.5,0.5 parent: 2 type: Transform - - uid: 26959 + - uid: 26966 components: - pos: -50.5,16.5 parent: 2 type: Transform - - uid: 26960 + - uid: 26967 components: - pos: 58.5,48.5 parent: 2 type: Transform - - uid: 26961 + - uid: 26968 components: - pos: 56.5,44.5 parent: 2 type: Transform - - uid: 26962 + - uid: 26969 components: - pos: 50.5,48.5 parent: 2 type: Transform - - uid: 26963 + - uid: 26970 components: - pos: 54.5,46.5 parent: 2 type: Transform - - uid: 26964 + - uid: 26971 components: - pos: 54.5,48.5 parent: 2 type: Transform - - uid: 26965 + - uid: 26972 components: - rot: 3.141592653589793 rad pos: -53.5,2.5 parent: 2 type: Transform - - uid: 26966 + - uid: 26973 components: - rot: 3.141592653589793 rad pos: -53.5,3.5 parent: 2 type: Transform - - uid: 26967 + - uid: 26974 components: - rot: 3.141592653589793 rad pos: -53.5,4.5 parent: 2 type: Transform - - uid: 26968 + - uid: 26975 components: - rot: 3.141592653589793 rad pos: -53.5,5.5 parent: 2 type: Transform - - uid: 26969 + - uid: 26976 components: - rot: 3.141592653589793 rad pos: -53.5,6.5 parent: 2 type: Transform - - uid: 26970 + - uid: 26977 components: - rot: 3.141592653589793 rad pos: -53.5,7.5 parent: 2 type: Transform - - uid: 26971 + - uid: 26978 components: - rot: 3.141592653589793 rad pos: -53.5,8.5 parent: 2 type: Transform - - uid: 26972 + - uid: 26979 components: - rot: 3.141592653589793 rad pos: -53.5,9.5 parent: 2 type: Transform - - uid: 26973 + - uid: 26980 components: - rot: 3.141592653589793 rad pos: -53.5,12.5 parent: 2 type: Transform - - uid: 26974 + - uid: 26981 components: - rot: 3.141592653589793 rad pos: -53.5,13.5 parent: 2 type: Transform - - uid: 26975 + - uid: 26982 components: - rot: 3.141592653589793 rad pos: -53.5,15.5 parent: 2 type: Transform - - uid: 26976 + - uid: 26983 components: - rot: 3.141592653589793 rad pos: -53.5,14.5 parent: 2 type: Transform - - uid: 26977 + - uid: 26984 components: - rot: 3.141592653589793 rad pos: -53.5,16.5 parent: 2 type: Transform - - uid: 26978 + - uid: 26985 components: - rot: 3.141592653589793 rad pos: -52.5,16.5 parent: 2 type: Transform - - uid: 26979 + - uid: 26986 components: - rot: 3.141592653589793 rad pos: -51.5,16.5 parent: 2 type: Transform - - uid: 26980 + - uid: 26987 components: - pos: 56.5,46.5 parent: 2 type: Transform - - uid: 26981 + - uid: 26988 components: - rot: -1.5707963267948966 rad pos: 55.5,40.5 parent: 2 type: Transform - - uid: 26982 + - uid: 26989 components: - pos: -20.5,-50.5 parent: 2 type: Transform - - uid: 26983 + - uid: 26990 components: - pos: 58.5,44.5 parent: 2 type: Transform - - uid: 26984 + - uid: 26991 components: - pos: 58.5,46.5 parent: 2 type: Transform - - uid: 26985 + - uid: 26992 components: - pos: 50.5,44.5 parent: 2 type: Transform - - uid: 26986 + - uid: 26993 components: - pos: 52.5,44.5 parent: 2 type: Transform - - uid: 26987 + - uid: 26994 components: - rot: 1.5707963267948966 rad pos: 66.5,0.5 parent: 2 type: Transform - - uid: 26988 + - uid: 26995 components: - pos: 52.5,46.5 parent: 2 type: Transform - - uid: 26989 + - uid: 26996 components: - pos: 50.5,46.5 parent: 2 type: Transform - - uid: 26990 + - uid: 26997 components: - pos: 56.5,48.5 parent: 2 type: Transform - - uid: 26991 + - uid: 26998 components: - pos: 54.5,44.5 parent: 2 type: Transform - - uid: 26992 + - uid: 26999 components: - rot: 1.5707963267948966 rad pos: 67.5,-10.5 parent: 2 type: Transform - - uid: 26993 + - uid: 27000 components: - pos: 68.5,-16.5 parent: 2 type: Transform - - uid: 26994 + - uid: 27001 components: - rot: 1.5707963267948966 rad pos: 67.5,-6.5 parent: 2 type: Transform - - uid: 26995 + - uid: 27002 components: - rot: 1.5707963267948966 rad pos: 67.5,-2.5 parent: 2 type: Transform - - uid: 26996 + - uid: 27003 components: - pos: 52.5,48.5 parent: 2 type: Transform - - uid: 26997 + - uid: 27004 components: - rot: -1.5707963267948966 rad pos: -7.5,37.5 parent: 2 type: Transform - - uid: 26998 + - uid: 27005 components: - rot: -1.5707963267948966 rad pos: -7.5,39.5 parent: 2 type: Transform - - uid: 26999 + - uid: 27006 components: - rot: 3.141592653589793 rad pos: 21.5,-40.5 parent: 2 type: Transform - - uid: 27000 + - uid: 27007 components: - pos: 13.5,-71.5 parent: 2 type: Transform - - uid: 27001 + - uid: 27008 components: - pos: 24.5,-26.5 parent: 2 type: Transform - - uid: 27002 + - uid: 27009 components: - pos: 22.5,-26.5 parent: 2 type: Transform - - uid: 27003 + - uid: 27010 components: - rot: -1.5707963267948966 rad pos: -75.5,-25.5 parent: 2 type: Transform - - uid: 27004 + - uid: 27011 components: - rot: 3.141592653589793 rad pos: 24.5,27.5 parent: 2 type: Transform - - uid: 27005 + - uid: 27012 components: - pos: 64.5,-61.5 parent: 2 type: Transform - - uid: 27006 + - uid: 27013 components: - pos: 27.5,-33.5 parent: 2 type: Transform - - uid: 27007 + - uid: 27014 components: - pos: -47.5,52.5 parent: 2 type: Transform - - uid: 27008 + - uid: 27015 components: - pos: -41.5,52.5 parent: 2 type: Transform - - uid: 27009 + - uid: 27016 components: - pos: 52.5,-25.5 parent: 2 type: Transform - - uid: 27010 + - uid: 27017 components: - pos: 55.5,-25.5 parent: 2 type: Transform - - uid: 27011 + - uid: 27018 components: - rot: -1.5707963267948966 rad pos: 47.5,-63.5 parent: 2 type: Transform - - uid: 27012 + - uid: 27019 components: - rot: 1.5707963267948966 rad pos: 44.5,-83.5 parent: 2 type: Transform - - uid: 27013 + - uid: 27020 components: - rot: 3.141592653589793 rad pos: 24.5,28.5 parent: 2 type: Transform - - uid: 27014 + - uid: 27021 components: - rot: 3.141592653589793 rad pos: 24.5,29.5 parent: 2 type: Transform - - uid: 27015 + - uid: 27022 components: - rot: 3.141592653589793 rad pos: 24.5,30.5 parent: 2 type: Transform - - uid: 27016 + - uid: 27023 components: - rot: 3.141592653589793 rad pos: 24.5,31.5 parent: 2 type: Transform - - uid: 27017 + - uid: 27024 components: - rot: 3.141592653589793 rad pos: 24.5,32.5 parent: 2 type: Transform - - uid: 27018 + - uid: 27025 components: - rot: 3.141592653589793 rad pos: 24.5,33.5 parent: 2 type: Transform - - uid: 27019 + - uid: 27026 components: - rot: 3.141592653589793 rad pos: 24.5,34.5 parent: 2 type: Transform - - uid: 27020 + - uid: 27027 components: - rot: 3.141592653589793 rad pos: 25.5,34.5 parent: 2 type: Transform - - uid: 27021 + - uid: 27028 components: - rot: 3.141592653589793 rad pos: 26.5,34.5 parent: 2 type: Transform - - uid: 27022 + - uid: 27029 components: - rot: 3.141592653589793 rad pos: 27.5,34.5 parent: 2 type: Transform - - uid: 27023 + - uid: 27030 components: - rot: 3.141592653589793 rad pos: 28.5,34.5 parent: 2 type: Transform - - uid: 27024 + - uid: 27031 components: - rot: 3.141592653589793 rad pos: 30.5,34.5 parent: 2 type: Transform - - uid: 27025 + - uid: 27032 components: - rot: 3.141592653589793 rad pos: 31.5,34.5 parent: 2 type: Transform - - uid: 27026 + - uid: 27033 components: - rot: 3.141592653589793 rad pos: 32.5,34.5 parent: 2 type: Transform - - uid: 27027 + - uid: 27034 components: - rot: 3.141592653589793 rad pos: 33.5,34.5 parent: 2 type: Transform - - uid: 27028 + - uid: 27035 components: - rot: 3.141592653589793 rad pos: 34.5,34.5 parent: 2 type: Transform - - uid: 27029 + - uid: 27036 components: - rot: 3.141592653589793 rad pos: 34.5,33.5 parent: 2 type: Transform - - uid: 27030 + - uid: 27037 components: - rot: 3.141592653589793 rad pos: 34.5,32.5 parent: 2 type: Transform - - uid: 27031 + - uid: 27038 components: - rot: 3.141592653589793 rad pos: 34.5,31.5 parent: 2 type: Transform - - uid: 27032 + - uid: 27039 components: - rot: 3.141592653589793 rad pos: 34.5,30.5 parent: 2 type: Transform - - uid: 27033 + - uid: 27040 components: - rot: 3.141592653589793 rad pos: 34.5,29.5 parent: 2 type: Transform - - uid: 27034 + - uid: 27041 components: - rot: 3.141592653589793 rad pos: 34.5,28.5 parent: 2 type: Transform - - uid: 27035 + - uid: 27042 components: - rot: 3.141592653589793 rad pos: 34.5,27.5 parent: 2 type: Transform - - uid: 27036 + - uid: 27043 components: - rot: 3.141592653589793 rad pos: 12.5,-79.5 parent: 2 type: Transform - - uid: 27037 + - uid: 27044 components: - rot: 3.141592653589793 rad pos: 11.5,-79.5 parent: 2 type: Transform - - uid: 27038 + - uid: 27045 components: - rot: -1.5707963267948966 rad pos: 57.5,-25.5 parent: 2 type: Transform - - uid: 27039 + - uid: 27046 components: - rot: 1.5707963267948966 rad pos: 39.5,9.5 parent: 2 type: Transform - - uid: 27040 + - uid: 27047 components: - pos: 34.5,21.5 parent: 2 type: Transform - - uid: 27041 + - uid: 27048 components: - pos: 67.5,-67.5 parent: 2 type: Transform - - uid: 27042 + - uid: 27049 components: - pos: 69.5,-69.5 parent: 2 type: Transform - - uid: 27043 + - uid: 27050 components: - pos: -78.5,-19.5 parent: 2 type: Transform - - uid: 27044 + - uid: 27051 components: - pos: -78.5,-5.5 parent: 2 type: Transform - - uid: 27045 + - uid: 27052 components: - pos: -71.5,-2.5 parent: 2 type: Transform - - uid: 27046 + - uid: 27053 components: - pos: -64.5,-2.5 parent: 2 type: Transform - - uid: 27047 + - uid: 27054 components: - pos: -73.5,-35.5 parent: 2 type: Transform - - uid: 27048 + - uid: 27055 components: - pos: -73.5,-34.5 parent: 2 type: Transform - - uid: 27049 + - uid: 27056 components: - pos: -71.5,-35.5 parent: 2 type: Transform - - uid: 27050 + - uid: 27057 components: - pos: 38.5,31.5 parent: 2 type: Transform - - uid: 27051 + - uid: 27058 components: - pos: 32.5,39.5 parent: 2 type: Transform - - uid: 27052 + - uid: 27059 components: - pos: 24.5,39.5 parent: 2 type: Transform - - uid: 27053 + - uid: 27060 components: - rot: 3.141592653589793 rad pos: 21.5,-38.5 parent: 2 type: Transform - - uid: 27054 + - uid: 27061 components: - pos: 73.5,-40.5 parent: 2 type: Transform - - uid: 27055 + - uid: 27062 components: - pos: 77.5,-42.5 parent: 2 type: Transform - - uid: 27056 + - uid: 27063 components: - pos: 77.5,-48.5 parent: 2 type: Transform - - uid: 27057 + - uid: 27064 components: - pos: 78.5,-48.5 parent: 2 type: Transform - - uid: 27058 + - uid: 27065 components: - pos: 78.5,-42.5 parent: 2 type: Transform - - uid: 27059 + - uid: 27066 components: - pos: 78.5,-47.5 parent: 2 type: Transform - - uid: 27060 + - uid: 27067 components: - pos: 27.5,-26.5 parent: 2 type: Transform - - uid: 27061 + - uid: 27068 components: - rot: 3.141592653589793 rad pos: 29.5,-38.5 parent: 2 type: Transform - - uid: 27062 + - uid: 27069 components: - pos: 59.5,50.5 parent: 2 type: Transform - - uid: 27063 + - uid: 27070 components: - pos: -32.5,-73.5 parent: 2 type: Transform - - uid: 27064 + - uid: 27071 components: - rot: -1.5707963267948966 rad pos: 46.5,50.5 parent: 2 type: Transform - - uid: 27065 + - uid: 27072 components: - rot: -1.5707963267948966 rad pos: 45.5,50.5 parent: 2 type: Transform - - uid: 27066 + - uid: 27073 components: - rot: -1.5707963267948966 rad pos: 44.5,50.5 parent: 2 type: Transform - - uid: 27067 + - uid: 27074 components: - pos: 48.5,44.5 parent: 2 type: Transform - - uid: 27068 + - uid: 27075 components: - pos: 47.5,44.5 parent: 2 type: Transform - - uid: 27069 + - uid: 27076 components: - pos: 47.5,43.5 parent: 2 type: Transform - - uid: 27070 + - uid: 27077 components: - pos: 45.5,43.5 parent: 2 type: Transform - - uid: 27071 + - uid: 27078 components: - pos: 44.5,43.5 parent: 2 type: Transform - - uid: 27072 + - uid: 27079 components: - pos: 59.5,51.5 parent: 2 type: Transform - - uid: 27073 + - uid: 27080 components: - pos: 59.5,52.5 parent: 2 type: Transform - - uid: 27074 + - uid: 27081 components: - pos: 59.5,53.5 parent: 2 type: Transform - - uid: 27075 + - uid: 27082 components: - pos: 58.5,53.5 parent: 2 type: Transform - - uid: 27076 + - uid: 27083 components: - pos: 57.5,53.5 parent: 2 type: Transform - - uid: 27077 + - uid: 27084 components: - pos: 51.5,53.5 parent: 2 type: Transform - - uid: 27078 + - uid: 27085 components: - pos: 50.5,53.5 parent: 2 type: Transform - - uid: 27079 + - uid: 27086 components: - pos: 49.5,53.5 parent: 2 type: Transform - - uid: 27080 + - uid: 27087 components: - pos: 49.5,52.5 parent: 2 type: Transform - - uid: 27081 + - uid: 27088 components: - pos: 49.5,51.5 parent: 2 type: Transform - - uid: 27082 + - uid: 27089 components: - rot: -1.5707963267948966 rad pos: 55.5,39.5 parent: 2 type: Transform - - uid: 27083 + - uid: 27090 components: - rot: -1.5707963267948966 rad pos: 55.5,38.5 parent: 2 type: Transform - - uid: 27084 + - uid: 27091 components: - pos: 61.5,30.5 parent: 2 type: Transform - - uid: 27085 + - uid: 27092 components: - pos: 59.5,31.5 parent: 2 type: Transform - - uid: 27086 + - uid: 27093 components: - pos: 59.5,34.5 parent: 2 type: Transform - - uid: 27087 + - uid: 27094 components: - rot: -1.5707963267948966 rad pos: 58.5,35.5 parent: 2 type: Transform - - uid: 27088 + - uid: 27095 components: - rot: -1.5707963267948966 rad pos: 57.5,35.5 parent: 2 type: Transform - - uid: 27089 + - uid: 27096 components: - rot: -1.5707963267948966 rad pos: 43.5,-65.5 parent: 2 type: Transform - - uid: 27090 + - uid: 27097 components: - pos: 10.5,-36.5 parent: 2 type: Transform - - uid: 27091 + - uid: 27098 components: - rot: -1.5707963267948966 rad pos: 57.5,38.5 parent: 2 type: Transform - - uid: 27092 + - uid: 27099 components: - rot: 3.141592653589793 rad pos: 61.5,41.5 parent: 2 type: Transform - - uid: 27093 + - uid: 27100 components: - rot: 3.141592653589793 rad pos: 60.5,41.5 parent: 2 type: Transform - - uid: 27094 + - uid: 27101 components: - rot: -1.5707963267948966 rad pos: 42.5,42.5 parent: 2 type: Transform - - uid: 27095 + - uid: 27102 components: - rot: -1.5707963267948966 rad pos: 43.5,43.5 parent: 2 type: Transform - - uid: 27096 + - uid: 27103 components: - rot: -1.5707963267948966 rad pos: 49.5,46.5 parent: 2 type: Transform - - uid: 27097 + - uid: 27104 components: - rot: -1.5707963267948966 rad pos: -7.5,41.5 parent: 2 type: Transform - - uid: 27098 + - uid: 27105 components: - rot: -1.5707963267948966 rad pos: -7.5,40.5 parent: 2 type: Transform - - uid: 27099 + - uid: 27106 components: - rot: -1.5707963267948966 rad pos: -7.5,34.5 parent: 2 type: Transform - - uid: 27100 + - uid: 27107 components: - rot: -1.5707963267948966 rad pos: -7.5,35.5 parent: 2 type: Transform - - uid: 27101 + - uid: 27108 components: - rot: -1.5707963267948966 rad pos: -7.5,36.5 parent: 2 type: Transform - - uid: 27102 + - uid: 27109 components: - pos: 2.5,59.5 parent: 2 type: Transform - - uid: 27103 + - uid: 27110 components: - rot: -1.5707963267948966 rad pos: -7.5,42.5 parent: 2 type: Transform - - uid: 27104 + - uid: 27111 components: - pos: -18.5,68.5 parent: 2 type: Transform - - uid: 27105 + - uid: 27112 components: - pos: -16.5,59.5 parent: 2 type: Transform - - uid: 27106 + - uid: 27113 components: - pos: -16.5,58.5 parent: 2 type: Transform - - uid: 27107 + - uid: 27114 components: - pos: -23.5,59.5 parent: 2 type: Transform - - uid: 27108 + - uid: 27115 components: - pos: -23.5,64.5 parent: 2 type: Transform - - uid: 27109 + - uid: 27116 components: - pos: -23.5,65.5 parent: 2 type: Transform - - uid: 27110 + - uid: 27117 components: - pos: -16.5,54.5 parent: 2 type: Transform - - uid: 27111 + - uid: 27118 components: - pos: -14.5,52.5 parent: 2 type: Transform - - uid: 27112 + - uid: 27119 components: - pos: -14.5,53.5 parent: 2 type: Transform - - uid: 27113 + - uid: 27120 components: - pos: -16.5,52.5 parent: 2 type: Transform - - uid: 27114 + - uid: 27121 components: - pos: -15.5,52.5 parent: 2 type: Transform - - uid: 27115 + - uid: 27122 components: - pos: -23.5,71.5 parent: 2 type: Transform - - uid: 27116 + - uid: 27123 components: - pos: -23.5,70.5 parent: 2 type: Transform - - uid: 27117 + - uid: 27124 components: - pos: -23.5,69.5 parent: 2 type: Transform - - uid: 27118 + - uid: 27125 components: - pos: -20.5,71.5 parent: 2 type: Transform - - uid: 27119 + - uid: 27126 components: - pos: -20.5,70.5 parent: 2 type: Transform - - uid: 27120 + - uid: 27127 components: - pos: -16.5,69.5 parent: 2 type: Transform - - uid: 27121 + - uid: 27128 components: - pos: -23.5,60.5 parent: 2 type: Transform - - uid: 27122 + - uid: 27129 components: - pos: -23.5,74.5 parent: 2 type: Transform - - uid: 27123 + - uid: 27130 components: - pos: -23.5,75.5 parent: 2 type: Transform - - uid: 27124 + - uid: 27131 components: - pos: -20.5,75.5 parent: 2 type: Transform - - uid: 27125 + - uid: 27132 components: - pos: -20.5,74.5 parent: 2 type: Transform - - uid: 27126 + - uid: 27133 components: - pos: -15.5,59.5 parent: 2 type: Transform - - uid: 27127 + - uid: 27134 components: - pos: -14.5,59.5 parent: 2 type: Transform - - uid: 27128 + - uid: 27135 components: - pos: -11.5,74.5 parent: 2 type: Transform - - uid: 27129 + - uid: 27136 components: - pos: -11.5,75.5 parent: 2 type: Transform - - uid: 27130 + - uid: 27137 components: - pos: -14.5,75.5 parent: 2 type: Transform - - uid: 27131 + - uid: 27138 components: - pos: -14.5,74.5 parent: 2 type: Transform - - uid: 27132 + - uid: 27139 components: - pos: -14.5,57.5 parent: 2 type: Transform - - uid: 27133 + - uid: 27140 components: - pos: -16.5,57.5 parent: 2 type: Transform - - uid: 27134 + - uid: 27141 components: - pos: -14.5,54.5 parent: 2 type: Transform - - uid: 27135 + - uid: 27142 components: - pos: -23.5,67.5 parent: 2 type: Transform - - uid: 27136 + - uid: 27143 components: - pos: -23.5,68.5 parent: 2 type: Transform - - uid: 27137 + - uid: 27144 components: - pos: -16.5,70.5 parent: 2 type: Transform - - uid: 27138 + - uid: 27145 components: - pos: -11.5,66.5 parent: 2 type: Transform - - uid: 27139 + - uid: 27146 components: - pos: -23.5,66.5 parent: 2 type: Transform - - uid: 27140 + - uid: 27147 components: - pos: -18.5,69.5 parent: 2 type: Transform - - uid: 27141 + - uid: 27148 components: - pos: -11.5,65.5 parent: 2 type: Transform - - uid: 27142 + - uid: 27149 components: - pos: -11.5,64.5 parent: 2 type: Transform - - uid: 27143 + - uid: 27150 components: - pos: -10.5,63.5 parent: 2 type: Transform - - uid: 27144 + - uid: 27151 components: - pos: -14.5,70.5 parent: 2 type: Transform - - uid: 27145 + - uid: 27152 components: - pos: -14.5,72.5 parent: 2 type: Transform - - uid: 27146 + - uid: 27153 components: - pos: -11.5,72.5 parent: 2 type: Transform - - uid: 27147 + - uid: 27154 components: - pos: -11.5,71.5 parent: 2 type: Transform - - uid: 27148 + - uid: 27155 components: - pos: -11.5,70.5 parent: 2 type: Transform - - uid: 27149 + - uid: 27156 components: - pos: -14.5,69.5 parent: 2 type: Transform - - uid: 27150 + - uid: 27157 components: - rot: -1.5707963267948966 rad pos: -14.5,58.5 parent: 2 type: Transform - - uid: 27151 + - uid: 27158 components: - pos: -14.5,71.5 parent: 2 type: Transform - - uid: 27152 + - uid: 27159 components: - pos: -18.5,70.5 parent: 2 type: Transform - - uid: 27153 + - uid: 27160 components: - pos: -20.5,69.5 parent: 2 type: Transform - - uid: 27154 + - uid: 27161 components: - pos: -20.5,68.5 parent: 2 type: Transform - - uid: 27155 + - uid: 27162 components: - pos: -19.5,68.5 parent: 2 type: Transform - - uid: 27156 + - uid: 27163 components: - pos: -14.5,68.5 parent: 2 type: Transform - - uid: 27157 + - uid: 27164 components: - pos: -15.5,68.5 parent: 2 type: Transform - - uid: 27158 + - uid: 27165 components: - pos: -16.5,68.5 parent: 2 type: Transform - - uid: 27159 + - uid: 27166 components: - rot: -1.5707963267948966 rad pos: -28.5,33.5 parent: 2 type: Transform - - uid: 27160 + - uid: 27167 components: - rot: -1.5707963267948966 rad pos: -28.5,34.5 parent: 2 type: Transform - - uid: 27161 + - uid: 27168 components: - rot: -1.5707963267948966 rad pos: -29.5,35.5 parent: 2 type: Transform - - uid: 27162 + - uid: 27169 components: - rot: -1.5707963267948966 rad pos: -28.5,35.5 parent: 2 type: Transform - - uid: 27163 + - uid: 27170 components: - rot: -1.5707963267948966 rad pos: -30.5,35.5 parent: 2 type: Transform - - uid: 27164 + - uid: 27171 components: - rot: -1.5707963267948966 rad pos: -34.5,35.5 parent: 2 type: Transform - - uid: 27165 + - uid: 27172 components: - rot: -1.5707963267948966 rad pos: -35.5,35.5 parent: 2 type: Transform - - uid: 27166 + - uid: 27173 components: - rot: -1.5707963267948966 rad pos: -28.5,32.5 parent: 2 type: Transform - - uid: 27167 + - uid: 27174 components: - pos: 60.5,30.5 parent: 2 type: Transform - - uid: 27168 + - uid: 27175 components: - pos: 9.5,-35.5 parent: 2 type: Transform - - uid: 27169 + - uid: 27176 components: - pos: 3.5,58.5 parent: 2 type: Transform - - uid: 27170 + - uid: 27177 components: - pos: 2.5,45.5 parent: 2 type: Transform - - uid: 27171 + - uid: 27178 components: - pos: 2.5,44.5 parent: 2 type: Transform - - uid: 27172 + - uid: 27179 components: - pos: 2.5,52.5 parent: 2 type: Transform - - uid: 27173 + - uid: 27180 components: - pos: 2.5,53.5 parent: 2 type: Transform - - uid: 27174 + - uid: 27181 components: - pos: 2.5,54.5 parent: 2 type: Transform - - uid: 27175 + - uid: 27182 components: - pos: 2.5,55.5 parent: 2 type: Transform - - uid: 27176 + - uid: 27183 components: - pos: 3.5,56.5 parent: 2 type: Transform - - uid: 27177 + - uid: 27184 components: - pos: -7.5,43.5 parent: 2 type: Transform - - uid: 27178 + - uid: 27185 components: - pos: 3.5,59.5 parent: 2 type: Transform - - uid: 27179 + - uid: 27186 components: - pos: 2.5,56.5 parent: 2 type: Transform - - uid: 27180 + - uid: 27187 components: - pos: -4.5,42.5 parent: 2 type: Transform - - uid: 27181 + - uid: 27188 components: - pos: -5.5,42.5 parent: 2 type: Transform - - uid: 27182 + - uid: 27189 components: - pos: -0.5,42.5 parent: 2 type: Transform - - uid: 27183 + - uid: 27190 components: - pos: 0.5,42.5 parent: 2 type: Transform - - uid: 27184 + - uid: 27191 components: - pos: 2.5,60.5 parent: 2 type: Transform - - uid: 27185 + - uid: 27192 components: - pos: 5.5,49.5 parent: 2 type: Transform - - uid: 27186 + - uid: 27193 components: - pos: 10.5,50.5 parent: 2 type: Transform - - uid: 27187 + - uid: 27194 components: - pos: 10.5,46.5 parent: 2 type: Transform - - uid: 27188 + - uid: 27195 components: - pos: 34.5,49.5 parent: 2 type: Transform - - uid: 27189 + - uid: 27196 components: - pos: 35.5,49.5 parent: 2 type: Transform - - uid: 27190 + - uid: 27197 components: - rot: -1.5707963267948966 rad pos: 21.5,44.5 parent: 2 type: Transform - - uid: 27191 + - uid: 27198 components: - rot: -1.5707963267948966 rad pos: 21.5,46.5 parent: 2 type: Transform - - uid: 27192 + - uid: 27199 components: - pos: 59.5,35.5 parent: 2 type: Transform - - uid: 27193 + - uid: 27200 components: - rot: -1.5707963267948966 rad pos: 42.5,37.5 parent: 2 type: Transform - - uid: 27194 + - uid: 27201 components: - rot: -1.5707963267948966 rad pos: 44.5,34.5 parent: 2 type: Transform - - uid: 27195 + - uid: 27202 components: - rot: -1.5707963267948966 rad pos: 44.5,36.5 parent: 2 type: Transform - - uid: 27196 + - uid: 27203 components: - rot: -1.5707963267948966 rad pos: 44.5,35.5 parent: 2 type: Transform - - uid: 27197 + - uid: 27204 components: - rot: -1.5707963267948966 rad pos: 43.5,38.5 parent: 2 type: Transform - - uid: 27198 + - uid: 27205 components: - rot: 1.5707963267948966 rad pos: 44.5,40.5 parent: 2 type: Transform - - uid: 27199 + - uid: 27206 components: - rot: 1.5707963267948966 rad pos: 44.5,39.5 parent: 2 type: Transform - - uid: 27200 + - uid: 27207 components: - rot: 1.5707963267948966 rad pos: 44.5,38.5 parent: 2 type: Transform - - uid: 27201 + - uid: 27208 components: - rot: -1.5707963267948966 rad pos: 42.5,36.5 parent: 2 type: Transform - - uid: 27202 + - uid: 27209 components: - rot: 1.5707963267948966 rad pos: 46.5,40.5 parent: 2 type: Transform - - uid: 27203 + - uid: 27210 components: - rot: 1.5707963267948966 rad pos: 48.5,40.5 parent: 2 type: Transform - - uid: 27204 + - uid: 27211 components: - rot: 1.5707963267948966 rad pos: 48.5,41.5 parent: 2 type: Transform - - uid: 27205 + - uid: 27212 components: - rot: -1.5707963267948966 rad pos: 43.5,36.5 parent: 2 type: Transform - - uid: 27206 + - uid: 27213 components: - rot: 3.141592653589793 rad pos: 42.5,34.5 parent: 2 type: Transform - - uid: 27207 + - uid: 27214 components: - rot: 3.141592653589793 rad pos: 41.5,34.5 parent: 2 type: Transform - - uid: 27208 + - uid: 27215 components: - rot: 3.141592653589793 rad pos: 41.5,33.5 parent: 2 type: Transform - - uid: 27209 + - uid: 27216 components: - rot: 3.141592653589793 rad pos: 41.5,29.5 parent: 2 type: Transform - - uid: 27210 + - uid: 27217 components: - rot: 3.141592653589793 rad pos: 42.5,28.5 parent: 2 type: Transform - - uid: 27211 + - uid: 27218 components: - rot: 3.141592653589793 rad pos: 42.5,29.5 parent: 2 type: Transform - - uid: 27212 + - uid: 27219 components: - rot: 3.141592653589793 rad pos: 43.5,28.5 parent: 2 type: Transform - - uid: 27213 + - uid: 27220 components: - rot: -1.5707963267948966 rad pos: 57.5,36.5 parent: 2 type: Transform - - uid: 27214 + - uid: 27221 components: - rot: -1.5707963267948966 rad pos: 56.5,38.5 parent: 2 type: Transform - - uid: 27215 + - uid: 27222 components: - pos: 71.5,-65.5 parent: 2 type: Transform - - uid: 27216 + - uid: 27223 components: - rot: 1.5707963267948966 rad pos: 43.5,34.5 parent: 2 type: Transform - - uid: 27217 + - uid: 27224 components: - rot: -1.5707963267948966 rad pos: 62.5,30.5 parent: 2 type: Transform - - uid: 27218 + - uid: 27225 components: - rot: -1.5707963267948966 rad pos: 64.5,30.5 parent: 2 type: Transform - - uid: 27219 + - uid: 27226 components: - rot: -1.5707963267948966 rad pos: 65.5,30.5 parent: 2 type: Transform - - uid: 27220 + - uid: 27227 components: - rot: -1.5707963267948966 rad pos: 65.5,28.5 parent: 2 type: Transform - - uid: 27221 + - uid: 27228 components: - rot: -1.5707963267948966 rad pos: 65.5,29.5 parent: 2 type: Transform - - uid: 27222 + - uid: 27229 components: - pos: 30.5,48.5 parent: 2 type: Transform - - uid: 27223 + - uid: 27230 components: - rot: -1.5707963267948966 rad pos: 27.5,47.5 parent: 2 type: Transform - - uid: 27224 + - uid: 27231 components: - rot: -1.5707963267948966 rad pos: 27.5,43.5 parent: 2 type: Transform - - uid: 27225 + - uid: 27232 components: - rot: -1.5707963267948966 rad pos: 28.5,43.5 parent: 2 type: Transform - - uid: 27226 + - uid: 27233 components: - rot: -1.5707963267948966 rad pos: 30.5,43.5 parent: 2 type: Transform - - uid: 27227 + - uid: 27234 components: - rot: -1.5707963267948966 rad pos: 31.5,43.5 parent: 2 type: Transform - - uid: 27228 + - uid: 27235 components: - pos: 2.5,46.5 parent: 2 type: Transform - - uid: 27229 + - uid: 27236 components: - pos: -6.5,43.5 parent: 2 type: Transform - - uid: 27230 + - uid: 27237 components: - pos: -5.5,43.5 parent: 2 type: Transform - - uid: 27231 + - uid: 27238 components: - pos: 2.5,43.5 parent: 2 type: Transform - - uid: 27232 + - uid: 27239 components: - pos: 1.5,43.5 parent: 2 type: Transform - - uid: 27233 + - uid: 27240 components: - pos: 0.5,43.5 parent: 2 type: Transform - - uid: 27234 + - uid: 27241 components: - pos: -8.5,60.5 parent: 2 type: Transform - - uid: 27235 + - uid: 27242 components: - pos: -3.5,60.5 parent: 2 type: Transform - - uid: 27236 + - uid: 27243 components: - pos: -4.5,60.5 parent: 2 type: Transform - - uid: 27237 + - uid: 27244 components: - pos: -5.5,60.5 parent: 2 type: Transform - - uid: 27238 + - uid: 27245 components: - pos: -6.5,60.5 parent: 2 type: Transform - - uid: 27239 + - uid: 27246 components: - pos: -7.5,60.5 parent: 2 type: Transform - - uid: 27240 + - uid: 27247 components: - pos: 1.5,60.5 parent: 2 type: Transform - - uid: 27241 + - uid: 27248 components: - pos: 0.5,60.5 parent: 2 type: Transform - - uid: 27242 + - uid: 27249 components: - rot: -1.5707963267948966 rad pos: -7.5,38.5 parent: 2 type: Transform - - uid: 27243 + - uid: 27250 components: - pos: 18.5,35.5 parent: 2 type: Transform - - uid: 27244 + - uid: 27251 components: - pos: 19.5,35.5 parent: 2 type: Transform - - uid: 27245 + - uid: 27252 components: - pos: 19.5,36.5 parent: 2 type: Transform - - uid: 27246 + - uid: 27253 components: - pos: 19.5,37.5 parent: 2 type: Transform - - uid: 27247 + - uid: 27254 components: - pos: 19.5,38.5 parent: 2 type: Transform - - uid: 27248 + - uid: 27255 components: - pos: 19.5,39.5 parent: 2 type: Transform - - uid: 27249 + - uid: 27256 components: - pos: 19.5,40.5 parent: 2 type: Transform - - uid: 27250 + - uid: 27257 components: - pos: 18.5,40.5 parent: 2 type: Transform - - uid: 27251 + - uid: 27258 components: - pos: 17.5,40.5 parent: 2 type: Transform - - uid: 27252 + - uid: 27259 components: - pos: 17.5,41.5 parent: 2 type: Transform - - uid: 27253 + - uid: 27260 components: - pos: 15.5,41.5 parent: 2 type: Transform - - uid: 27254 + - uid: 27261 components: - pos: 15.5,40.5 parent: 2 type: Transform - - uid: 27255 + - uid: 27262 components: - pos: 14.5,40.5 parent: 2 type: Transform - - uid: 27256 + - uid: 27263 components: - pos: 13.5,40.5 parent: 2 type: Transform - - uid: 27257 + - uid: 27264 components: - pos: 13.5,39.5 parent: 2 type: Transform - - uid: 27258 + - uid: 27265 components: - pos: 13.5,38.5 parent: 2 type: Transform - - uid: 27259 + - uid: 27266 components: - pos: 13.5,37.5 parent: 2 type: Transform - - uid: 27260 + - uid: 27267 components: - pos: 13.5,36.5 parent: 2 type: Transform - - uid: 27261 + - uid: 27268 components: - pos: 13.5,35.5 parent: 2 type: Transform - - uid: 27262 + - uid: 27269 components: - pos: 14.5,35.5 parent: 2 type: Transform - - uid: 27263 + - uid: 27270 components: - pos: 0.5,61.5 parent: 2 type: Transform - - uid: 27264 + - uid: 27271 components: - pos: 0.5,63.5 parent: 2 type: Transform - - uid: 27265 + - uid: 27272 components: - pos: 0.5,62.5 parent: 2 type: Transform - - uid: 27266 + - uid: 27273 components: - pos: -3.5,63.5 parent: 2 type: Transform - - uid: 27267 + - uid: 27274 components: - pos: -3.5,62.5 parent: 2 type: Transform - - uid: 27268 + - uid: 27275 components: - pos: -3.5,61.5 parent: 2 type: Transform - - uid: 27269 + - uid: 27276 components: - pos: 0.5,64.5 parent: 2 type: Transform - - uid: 27270 + - uid: 27277 components: - pos: -0.5,64.5 parent: 2 type: Transform - - uid: 27271 + - uid: 27278 components: - pos: -2.5,64.5 parent: 2 type: Transform - - uid: 27272 + - uid: 27279 components: - pos: -3.5,64.5 parent: 2 type: Transform - - uid: 27273 + - uid: 27280 components: - pos: -4.5,64.5 parent: 2 type: Transform - - uid: 27274 + - uid: 27281 components: - pos: -5.5,64.5 parent: 2 type: Transform - - uid: 27275 + - uid: 27282 components: - pos: -5.5,65.5 parent: 2 type: Transform - - uid: 27276 + - uid: 27283 components: - pos: -5.5,65.5 parent: 2 type: Transform - - uid: 27277 + - uid: 27284 components: - pos: -6.5,65.5 parent: 2 type: Transform - - uid: 27278 + - uid: 27285 components: - pos: -7.5,65.5 parent: 2 type: Transform - - uid: 27279 + - uid: 27286 components: - pos: -7.5,66.5 parent: 2 type: Transform - - uid: 27280 + - uid: 27287 components: - pos: -8.5,66.5 parent: 2 type: Transform - - uid: 27281 + - uid: 27288 components: - pos: -8.5,67.5 parent: 2 type: Transform - - uid: 27282 + - uid: 27289 components: - pos: -8.5,68.5 parent: 2 type: Transform - - uid: 27283 + - uid: 27290 components: - pos: -8.5,70.5 parent: 2 type: Transform - - uid: 27284 + - uid: 27291 components: - pos: -8.5,71.5 parent: 2 type: Transform - - uid: 27285 + - uid: 27292 components: - pos: -8.5,72.5 parent: 2 type: Transform - - uid: 27286 + - uid: 27293 components: - pos: -7.5,72.5 parent: 2 type: Transform - - uid: 27287 + - uid: 27294 components: - pos: -7.5,73.5 parent: 2 type: Transform - - uid: 27288 + - uid: 27295 components: - pos: -6.5,73.5 parent: 2 type: Transform - - uid: 27289 + - uid: 27296 components: - pos: -6.5,74.5 parent: 2 type: Transform - - uid: 27290 + - uid: 27297 components: - pos: -5.5,74.5 parent: 2 type: Transform - - uid: 27291 + - uid: 27298 components: - pos: -4.5,74.5 parent: 2 type: Transform - - uid: 27292 + - uid: 27299 components: - pos: -3.5,74.5 parent: 2 type: Transform - - uid: 27293 + - uid: 27300 components: - pos: -2.5,74.5 parent: 2 type: Transform - - uid: 27294 + - uid: 27301 components: - pos: -1.5,74.5 parent: 2 type: Transform - - uid: 27295 + - uid: 27302 components: - pos: -0.5,74.5 parent: 2 type: Transform - - uid: 27296 + - uid: 27303 components: - pos: 0.5,74.5 parent: 2 type: Transform - - uid: 27297 + - uid: 27304 components: - pos: 1.5,74.5 parent: 2 type: Transform - - uid: 27298 + - uid: 27305 components: - pos: 2.5,74.5 parent: 2 type: Transform - - uid: 27299 + - uid: 27306 components: - pos: 3.5,74.5 parent: 2 type: Transform - - uid: 27300 + - uid: 27307 components: - pos: 3.5,73.5 parent: 2 type: Transform - - uid: 27301 + - uid: 27308 components: - pos: 4.5,73.5 parent: 2 type: Transform - - uid: 27302 + - uid: 27309 components: - pos: 4.5,72.5 parent: 2 type: Transform - - uid: 27303 + - uid: 27310 components: - pos: 5.5,72.5 parent: 2 type: Transform - - uid: 27304 + - uid: 27311 components: - pos: 5.5,71.5 parent: 2 type: Transform - - uid: 27305 + - uid: 27312 components: - pos: 5.5,70.5 parent: 2 type: Transform - - uid: 27306 + - uid: 27313 components: - pos: 5.5,68.5 parent: 2 type: Transform - - uid: 27307 + - uid: 27314 components: - pos: 5.5,67.5 parent: 2 type: Transform - - uid: 27308 + - uid: 27315 components: - pos: 5.5,66.5 parent: 2 type: Transform - - uid: 27309 + - uid: 27316 components: - pos: 4.5,66.5 parent: 2 type: Transform - - uid: 27310 + - uid: 27317 components: - pos: 4.5,65.5 parent: 2 type: Transform - - uid: 27311 + - uid: 27318 components: - pos: 3.5,65.5 parent: 2 type: Transform - - uid: 27312 + - uid: 27319 components: - pos: 2.5,64.5 parent: 2 type: Transform - - uid: 27313 + - uid: 27320 components: - pos: 2.5,65.5 parent: 2 type: Transform - - uid: 27314 + - uid: 27321 components: - pos: 1.5,64.5 parent: 2 type: Transform - - uid: 27315 + - uid: 27322 components: - rot: 3.141592653589793 rad pos: 69.5,39.5 parent: 2 type: Transform - - uid: 27316 + - uid: 27323 components: - rot: 3.141592653589793 rad pos: 69.5,38.5 parent: 2 type: Transform - - uid: 27317 + - uid: 27324 components: - rot: 3.141592653589793 rad pos: 69.5,37.5 parent: 2 type: Transform - - uid: 27318 + - uid: 27325 components: - rot: 3.141592653589793 rad pos: 75.5,39.5 parent: 2 type: Transform - - uid: 27319 + - uid: 27326 components: - rot: 3.141592653589793 rad pos: 75.5,38.5 parent: 2 type: Transform - - uid: 27320 + - uid: 27327 components: - rot: 3.141592653589793 rad pos: 75.5,37.5 parent: 2 type: Transform - - uid: 27321 + - uid: 27328 components: - rot: 3.141592653589793 rad pos: 74.5,39.5 parent: 2 type: Transform - - uid: 27322 + - uid: 27329 components: - rot: 3.141592653589793 rad pos: 72.5,39.5 parent: 2 type: Transform - - uid: 27323 + - uid: 27330 components: - rot: 3.141592653589793 rad pos: 70.5,39.5 parent: 2 type: Transform - - uid: 27324 + - uid: 27331 components: - rot: 3.141592653589793 rad pos: 69.5,35.5 parent: 2 type: Transform - - uid: 27325 + - uid: 27332 components: - rot: 3.141592653589793 rad pos: 69.5,34.5 parent: 2 type: Transform - - uid: 27326 + - uid: 27333 components: - rot: 3.141592653589793 rad pos: 69.5,33.5 parent: 2 type: Transform - - uid: 27327 + - uid: 27334 components: - rot: 3.141592653589793 rad pos: 70.5,33.5 parent: 2 type: Transform - - uid: 27328 + - uid: 27335 components: - rot: 3.141592653589793 rad pos: 72.5,33.5 parent: 2 type: Transform - - uid: 27329 + - uid: 27336 components: - rot: 3.141592653589793 rad pos: 74.5,33.5 parent: 2 type: Transform - - uid: 27330 + - uid: 27337 components: - rot: 3.141592653589793 rad pos: 75.5,33.5 parent: 2 type: Transform - - uid: 27331 + - uid: 27338 components: - rot: 3.141592653589793 rad pos: 75.5,34.5 parent: 2 type: Transform - - uid: 27332 + - uid: 27339 components: - rot: 3.141592653589793 rad pos: 75.5,35.5 parent: 2 type: Transform - - uid: 27333 + - uid: 27340 components: - pos: 76.5,37.5 parent: 2 type: Transform - - uid: 27334 + - uid: 27341 components: - pos: 77.5,37.5 parent: 2 type: Transform - - uid: 27335 + - uid: 27342 components: - pos: 76.5,35.5 parent: 2 type: Transform - - uid: 27336 + - uid: 27343 components: - pos: 77.5,35.5 parent: 2 type: Transform - - uid: 27337 + - uid: 27344 components: - pos: 68.5,37.5 parent: 2 type: Transform - - uid: 27338 + - uid: 27345 components: - pos: 67.5,37.5 parent: 2 type: Transform - - uid: 27339 + - uid: 27346 components: - pos: 67.5,35.5 parent: 2 type: Transform - - uid: 27340 + - uid: 27347 components: - pos: 68.5,35.5 parent: 2 type: Transform - - uid: 27341 + - uid: 27348 components: - pos: 64.5,32.5 parent: 2 type: Transform - - uid: 27342 + - uid: 27349 components: - pos: 64.5,31.5 parent: 2 type: Transform - - uid: 27343 + - uid: 27350 components: - pos: 62.5,32.5 parent: 2 type: Transform - - uid: 27344 + - uid: 27351 components: - pos: 62.5,31.5 parent: 2 type: Transform - - uid: 27345 + - uid: 27352 components: - pos: -38.5,43.5 parent: 2 type: Transform - - uid: 27346 + - uid: 27353 components: - pos: -38.5,42.5 parent: 2 type: Transform - - uid: 27347 + - uid: 27354 components: - pos: -38.5,41.5 parent: 2 type: Transform - - uid: 27348 + - uid: 27355 components: - pos: -36.5,43.5 parent: 2 type: Transform - - uid: 27349 + - uid: 27356 components: - pos: -36.5,42.5 parent: 2 type: Transform - - uid: 27350 + - uid: 27357 components: - pos: -36.5,41.5 parent: 2 type: Transform - - uid: 27351 + - uid: 27358 components: - pos: -38.5,40.5 parent: 2 type: Transform - - uid: 27352 + - uid: 27359 components: - pos: -39.5,40.5 parent: 2 type: Transform - - uid: 27353 + - uid: 27360 components: - pos: -40.5,40.5 parent: 2 type: Transform - - uid: 27354 + - uid: 27361 components: - pos: -41.5,40.5 parent: 2 type: Transform - - uid: 27355 + - uid: 27362 components: - pos: -42.5,40.5 parent: 2 type: Transform - - uid: 27356 + - uid: 27363 components: - rot: -1.5707963267948966 rad pos: -48.5,46.5 parent: 2 type: Transform - - uid: 27357 + - uid: 27364 components: - rot: -1.5707963267948966 rad pos: -48.5,47.5 parent: 2 type: Transform - - uid: 27358 + - uid: 27365 components: - rot: -1.5707963267948966 rad pos: -50.5,47.5 parent: 2 type: Transform - - uid: 27359 + - uid: 27366 components: - pos: -48.5,40.5 parent: 2 type: Transform - - uid: 27360 + - uid: 27367 components: - pos: -48.5,39.5 parent: 2 type: Transform - - uid: 27361 + - uid: 27368 components: - pos: -48.5,38.5 parent: 2 type: Transform - - uid: 27362 + - uid: 27369 components: - pos: -36.5,40.5 parent: 2 type: Transform - - uid: 27363 + - uid: 27370 components: - pos: -35.5,40.5 parent: 2 type: Transform - - uid: 27364 + - uid: 27371 components: - pos: -34.5,40.5 parent: 2 type: Transform - - uid: 27365 + - uid: 27372 components: - pos: -31.5,40.5 parent: 2 type: Transform - - uid: 27366 + - uid: 27373 components: - pos: -30.5,40.5 parent: 2 type: Transform - - uid: 27367 + - uid: 27374 components: - pos: -30.5,41.5 parent: 2 type: Transform - - uid: 27368 + - uid: 27375 components: - pos: -30.5,42.5 parent: 2 type: Transform - - uid: 27369 + - uid: 27376 components: - pos: -29.5,42.5 parent: 2 type: Transform - - uid: 27370 + - uid: 27377 components: - pos: -26.5,47.5 parent: 2 type: Transform - - uid: 27371 + - uid: 27378 components: - pos: -27.5,47.5 parent: 2 type: Transform - - uid: 27372 + - uid: 27379 components: - pos: -28.5,47.5 parent: 2 type: Transform - - uid: 27373 + - uid: 27380 components: - pos: -29.5,47.5 parent: 2 type: Transform - - uid: 27374 + - uid: 27381 components: - pos: -29.5,46.5 parent: 2 type: Transform - - uid: 27375 + - uid: 27382 components: - pos: -25.5,47.5 parent: 2 type: Transform - - uid: 27376 + - uid: 27383 components: - pos: -25.5,48.5 parent: 2 type: Transform - - uid: 27377 + - uid: 27384 components: - pos: 32.5,48.5 parent: 2 type: Transform - - uid: 27378 + - uid: 27385 components: - pos: 31.5,48.5 parent: 2 type: Transform - - uid: 27379 + - uid: 27386 components: - pos: 31.5,47.5 parent: 2 type: Transform - - uid: 27380 + - uid: 27387 components: - pos: 31.5,46.5 parent: 2 type: Transform - - uid: 27381 + - uid: 27388 components: - pos: 31.5,44.5 parent: 2 type: Transform - - uid: 27382 + - uid: 27389 components: - pos: 27.5,46.5 parent: 2 type: Transform - - uid: 27383 + - uid: 27390 components: - pos: 27.5,44.5 parent: 2 type: Transform - - uid: 27384 + - uid: 27391 components: - pos: 28.5,48.5 parent: 2 type: Transform - - uid: 27385 + - uid: 27392 components: - rot: -1.5707963267948966 rad pos: -1.5,73.5 parent: 2 type: Transform - - uid: 27386 + - uid: 27393 components: - pos: 46.5,51.5 parent: 2 type: Transform - - uid: 27387 + - uid: 27394 components: - pos: 47.5,51.5 parent: 2 type: Transform - - uid: 27388 + - uid: 27395 components: - pos: 48.5,51.5 parent: 2 type: Transform - - uid: 27389 + - uid: 27396 components: - pos: 30.5,42.5 parent: 2 type: Transform - - uid: 27390 + - uid: 27397 components: - pos: 30.5,41.5 parent: 2 type: Transform - - uid: 27391 + - uid: 27398 components: - pos: 28.5,42.5 parent: 2 type: Transform - - uid: 27392 + - uid: 27399 components: - pos: 28.5,41.5 parent: 2 type: Transform - - uid: 27393 + - uid: 27400 components: - pos: 27.5,48.5 parent: 2 type: Transform - - uid: 27394 + - uid: 27401 components: - pos: -8.5,63.5 parent: 2 type: Transform - - uid: 27395 + - uid: 27402 components: - pos: -9.5,63.5 parent: 2 type: Transform - - uid: 27396 + - uid: 27403 components: - pos: -11.5,63.5 parent: 2 type: Transform - - uid: 27397 + - uid: 27404 components: - pos: -8.5,62.5 parent: 2 type: Transform - - uid: 27398 + - uid: 27405 components: - pos: -8.5,61.5 parent: 2 type: Transform - - uid: 27399 + - uid: 27406 components: - pos: 10.5,-35.5 parent: 2 type: Transform - - uid: 27400 + - uid: 27407 components: - pos: 9.5,-30.5 parent: 2 type: Transform - - uid: 27401 + - uid: 27408 components: - pos: 10.5,-37.5 parent: 2 type: Transform - - uid: 27402 + - uid: 27409 components: - pos: -25.5,49.5 parent: 2 type: Transform - - uid: 27403 + - uid: 27410 components: - pos: -25.5,50.5 parent: 2 type: Transform - - uid: 27404 + - uid: 27411 components: - pos: -26.5,50.5 parent: 2 type: Transform - - uid: 27405 + - uid: 27412 components: - pos: -26.5,51.5 parent: 2 type: Transform - - uid: 27406 + - uid: 27413 components: - pos: -26.5,52.5 parent: 2 type: Transform - - uid: 27407 + - uid: 27414 components: - pos: -26.5,55.5 parent: 2 type: Transform - - uid: 27408 + - uid: 27415 components: - pos: -26.5,56.5 parent: 2 type: Transform - - uid: 27409 + - uid: 27416 components: - pos: -25.5,56.5 parent: 2 type: Transform - - uid: 27410 + - uid: 27417 components: - pos: -25.5,57.5 parent: 2 type: Transform - - uid: 27411 + - uid: 27418 components: - pos: -24.5,57.5 parent: 2 type: Transform - - uid: 27412 + - uid: 27419 components: - pos: 3.5,57.5 parent: 2 type: Transform - - uid: 27413 + - uid: 27420 components: - pos: 10.5,-30.5 parent: 2 type: Transform - - uid: 27414 + - uid: 27421 components: - pos: 9.5,-33.5 parent: 2 type: Transform - - uid: 27415 + - uid: 27422 components: - rot: 3.141592653589793 rad pos: -16.5,-81.5 parent: 2 type: Transform - - uid: 27416 + - uid: 27423 components: - rot: 3.141592653589793 rad pos: -16.5,-82.5 parent: 2 type: Transform - - uid: 27417 + - uid: 27424 components: - rot: 3.141592653589793 rad pos: -16.5,-83.5 parent: 2 type: Transform - - uid: 27418 + - uid: 27425 components: - rot: 3.141592653589793 rad pos: -16.5,-84.5 parent: 2 type: Transform - - uid: 27419 + - uid: 27426 components: - rot: 3.141592653589793 rad pos: -16.5,-85.5 parent: 2 type: Transform - - uid: 27420 + - uid: 27427 components: - rot: 3.141592653589793 rad pos: -16.5,-86.5 parent: 2 type: Transform - - uid: 27421 + - uid: 27428 components: - rot: 3.141592653589793 rad pos: -16.5,-87.5 parent: 2 type: Transform - - uid: 27422 + - uid: 27429 components: - rot: 3.141592653589793 rad pos: -16.5,-89.5 parent: 2 type: Transform - - uid: 27423 + - uid: 27430 components: - rot: 3.141592653589793 rad pos: -15.5,-89.5 parent: 2 type: Transform - - uid: 27424 + - uid: 27431 components: - rot: 3.141592653589793 rad pos: -14.5,-89.5 parent: 2 type: Transform - - uid: 27425 + - uid: 27432 components: - rot: 3.141592653589793 rad pos: -13.5,-89.5 parent: 2 type: Transform - - uid: 27426 + - uid: 27433 components: - rot: 3.141592653589793 rad pos: -12.5,-89.5 parent: 2 type: Transform - - uid: 27427 + - uid: 27434 components: - rot: 3.141592653589793 rad pos: -11.5,-89.5 parent: 2 type: Transform - - uid: 27428 + - uid: 27435 components: - rot: 3.141592653589793 rad pos: -10.5,-89.5 parent: 2 type: Transform - - uid: 27429 + - uid: 27436 components: - rot: 3.141592653589793 rad pos: -9.5,-89.5 parent: 2 type: Transform - - uid: 27430 + - uid: 27437 components: - rot: 3.141592653589793 rad pos: -8.5,-89.5 parent: 2 type: Transform - - uid: 27431 + - uid: 27438 components: - rot: 3.141592653589793 rad pos: -9.5,-94.5 parent: 2 type: Transform - - uid: 27432 + - uid: 27439 components: - pos: -5.5,-94.5 parent: 2 type: Transform - - uid: 27433 + - uid: 27440 components: - rot: 3.141592653589793 rad pos: -6.5,-89.5 parent: 2 type: Transform - - uid: 27434 + - uid: 27441 components: - rot: 3.141592653589793 rad pos: -5.5,-89.5 parent: 2 type: Transform - - uid: 27435 + - uid: 27442 components: - rot: 3.141592653589793 rad pos: -4.5,-89.5 parent: 2 type: Transform - - uid: 27436 + - uid: 27443 components: - rot: 3.141592653589793 rad pos: -3.5,-89.5 parent: 2 type: Transform - - uid: 27437 + - uid: 27444 components: - rot: 3.141592653589793 rad pos: -3.5,-85.5 parent: 2 type: Transform - - uid: 27438 + - uid: 27445 components: - rot: 3.141592653589793 rad pos: -3.5,-86.5 parent: 2 type: Transform - - uid: 27439 + - uid: 27446 components: - rot: 3.141592653589793 rad pos: -3.5,-87.5 parent: 2 type: Transform - - uid: 27440 + - uid: 27447 components: - rot: 3.141592653589793 rad pos: -3.5,-88.5 parent: 2 type: Transform - - uid: 27441 + - uid: 27448 components: - rot: 3.141592653589793 rad pos: -3.5,-84.5 parent: 2 type: Transform - - uid: 27442 + - uid: 27449 components: - rot: -1.5707963267948966 rad pos: 29.5,48.5 parent: 2 type: Transform - - uid: 27443 + - uid: 27450 components: - pos: -18.5,-95.5 parent: 2 type: Transform - - uid: 27444 + - uid: 27451 components: - pos: -18.5,-99.5 parent: 2 type: Transform - - uid: 27445 + - uid: 27452 components: - pos: -26.5,-95.5 parent: 2 type: Transform - - uid: 27446 + - uid: 27453 components: - pos: -26.5,-99.5 parent: 2 type: Transform - - uid: 27447 + - uid: 27454 components: - pos: -18.5,-94.5 parent: 2 type: Transform - - uid: 27448 + - uid: 27455 components: - pos: -19.5,-94.5 parent: 2 type: Transform - - uid: 27449 + - uid: 27456 components: - pos: -20.5,-94.5 parent: 2 type: Transform - - uid: 27450 + - uid: 27457 components: - pos: -24.5,-94.5 parent: 2 type: Transform - - uid: 27451 + - uid: 27458 components: - pos: -25.5,-94.5 parent: 2 type: Transform - - uid: 27452 + - uid: 27459 components: - pos: -26.5,-94.5 parent: 2 type: Transform - - uid: 27453 + - uid: 27460 components: - pos: -18.5,-100.5 parent: 2 type: Transform - - uid: 27454 + - uid: 27461 components: - pos: -19.5,-100.5 parent: 2 type: Transform - - uid: 27455 + - uid: 27462 components: - pos: -20.5,-100.5 parent: 2 type: Transform - - uid: 27456 + - uid: 27463 components: - pos: -26.5,-100.5 parent: 2 type: Transform - - uid: 27457 + - uid: 27464 components: - pos: -25.5,-100.5 parent: 2 type: Transform - - uid: 27458 + - uid: 27465 components: - pos: -24.5,-100.5 parent: 2 type: Transform - - uid: 27459 + - uid: 27466 components: - pos: -17.5,-95.5 parent: 2 type: Transform - - uid: 27460 + - uid: 27467 components: - pos: -16.5,-95.5 parent: 2 type: Transform - - uid: 27461 + - uid: 27468 components: - pos: -15.5,-95.5 parent: 2 type: Transform - - uid: 27462 + - uid: 27469 components: - pos: -14.5,-95.5 parent: 2 type: Transform - - uid: 27463 + - uid: 27470 components: - pos: -17.5,-99.5 parent: 2 type: Transform - - uid: 27464 + - uid: 27471 components: - pos: -16.5,-99.5 parent: 2 type: Transform - - uid: 27465 + - uid: 27472 components: - pos: -15.5,-99.5 parent: 2 type: Transform - - uid: 27466 + - uid: 27473 components: - pos: -14.5,-99.5 parent: 2 type: Transform - - uid: 27467 + - uid: 27474 components: - pos: -27.5,-95.5 parent: 2 type: Transform - - uid: 27468 + - uid: 27475 components: - pos: -28.5,-95.5 parent: 2 type: Transform - - uid: 27469 + - uid: 27476 components: - pos: -29.5,-95.5 parent: 2 type: Transform - - uid: 27470 + - uid: 27477 components: - pos: -30.5,-95.5 parent: 2 type: Transform - - uid: 27471 + - uid: 27478 components: - pos: -27.5,-99.5 parent: 2 type: Transform - - uid: 27472 + - uid: 27479 components: - pos: -28.5,-99.5 parent: 2 type: Transform - - uid: 27473 + - uid: 27480 components: - pos: -29.5,-99.5 parent: 2 type: Transform - - uid: 27474 + - uid: 27481 components: - pos: -30.5,-99.5 parent: 2 type: Transform - - uid: 27475 + - uid: 27482 components: - pos: -13.5,-95.5 parent: 2 type: Transform - - uid: 27476 + - uid: 27483 components: - pos: -13.5,-99.5 parent: 2 type: Transform - - uid: 27477 + - uid: 27484 components: - pos: -31.5,-95.5 parent: 2 type: Transform - - uid: 27478 + - uid: 27485 components: - pos: -31.5,-99.5 parent: 2 type: Transform - - uid: 27479 + - uid: 27486 components: - pos: -10.5,-94.5 parent: 2 type: Transform - - uid: 27480 + - uid: 27487 components: - pos: -11.5,-94.5 parent: 2 type: Transform - - uid: 27481 + - uid: 27488 components: - pos: -11.5,-95.5 parent: 2 type: Transform - - uid: 27482 + - uid: 27489 components: - pos: -12.5,-95.5 parent: 2 type: Transform - - uid: 27483 + - uid: 27490 components: - pos: -4.5,-94.5 parent: 2 type: Transform - - uid: 27484 + - uid: 27491 components: - pos: -4.5,-95.5 parent: 2 type: Transform - - uid: 27485 + - uid: 27492 components: - pos: -3.5,-95.5 parent: 2 type: Transform - - uid: 27486 + - uid: 27493 components: - pos: -7.5,-101.5 parent: 2 type: Transform - - uid: 27487 + - uid: 27494 components: - pos: -4.5,-101.5 parent: 2 type: Transform - - uid: 27488 + - uid: 27495 components: - pos: -4.5,-100.5 parent: 2 type: Transform - - uid: 27489 + - uid: 27496 components: - pos: -3.5,-100.5 parent: 2 type: Transform - - uid: 27490 + - uid: 27497 components: - pos: -10.5,-101.5 parent: 2 type: Transform - - uid: 27491 + - uid: 27498 components: - pos: -10.5,-100.5 parent: 2 type: Transform - - uid: 27492 + - uid: 27499 components: - pos: -11.5,-100.5 parent: 2 type: Transform - - uid: 27493 + - uid: 27500 components: - pos: -11.5,-99.5 parent: 2 type: Transform - - uid: 27494 + - uid: 27501 components: - pos: -12.5,-99.5 parent: 2 type: Transform - - uid: 27495 + - uid: 27502 components: - pos: -3.5,-96.5 parent: 2 type: Transform - - uid: 27496 + - uid: 27503 components: - pos: -3.5,-99.5 parent: 2 type: Transform - - uid: 27497 + - uid: 27504 components: - pos: -39.5,-87.5 parent: 2 type: Transform - - uid: 27498 + - uid: 27505 components: - pos: -39.5,-88.5 parent: 2 type: Transform - - uid: 27499 + - uid: 27506 components: - pos: -44.5,-87.5 parent: 2 type: Transform - - uid: 27500 + - uid: 27507 components: - pos: -44.5,-88.5 parent: 2 type: Transform - - uid: 27501 + - uid: 27508 components: - pos: -32.5,-99.5 parent: 2 type: Transform - - uid: 27502 + - uid: 27509 components: - pos: -33.5,-99.5 parent: 2 type: Transform - - uid: 27503 + - uid: 27510 components: - pos: -34.5,-99.5 parent: 2 type: Transform - - uid: 27504 + - uid: 27511 components: - pos: -36.5,-99.5 parent: 2 type: Transform - - uid: 27505 + - uid: 27512 components: - pos: -38.5,-99.5 parent: 2 type: Transform - - uid: 27506 + - uid: 27513 components: - pos: -39.5,-99.5 parent: 2 type: Transform - - uid: 27507 + - uid: 27514 components: - pos: -34.5,-101.5 parent: 2 type: Transform - - uid: 27508 + - uid: 27515 components: - pos: -36.5,-101.5 parent: 2 type: Transform - - uid: 27509 + - uid: 27516 components: - pos: -6.5,-94.5 parent: 2 type: Transform - - uid: 27510 + - uid: 27517 components: - pos: -8.5,-94.5 parent: 2 type: Transform - - uid: 27511 + - uid: 27518 components: - pos: 66.5,-15.5 parent: 2 type: Transform - - uid: 27512 + - uid: 27519 components: - pos: 66.5,-16.5 parent: 2 type: Transform - - uid: 27513 + - uid: 27520 components: - pos: -39.5,-91.5 parent: 2 type: Transform - - uid: 27514 + - uid: 27521 components: - pos: -44.5,-91.5 parent: 2 type: Transform - - uid: 27515 + - uid: 27522 components: - rot: 1.5707963267948966 rad pos: -32.5,-95.5 parent: 2 type: Transform - - uid: 27516 + - uid: 27523 components: - rot: 1.5707963267948966 rad pos: -33.5,-95.5 parent: 2 type: Transform - - uid: 27517 + - uid: 27524 components: - rot: 1.5707963267948966 rad pos: -34.5,-95.5 parent: 2 type: Transform - - uid: 27518 + - uid: 27525 components: - rot: 1.5707963267948966 rad pos: -34.5,-94.5 parent: 2 type: Transform - - uid: 27519 + - uid: 27526 components: - rot: 1.5707963267948966 rad pos: -34.5,-93.5 parent: 2 type: Transform - - uid: 27520 + - uid: 27527 components: - rot: 1.5707963267948966 rad pos: -34.5,-92.5 parent: 2 type: Transform - - uid: 27521 + - uid: 27528 components: - rot: 1.5707963267948966 rad pos: -35.5,-92.5 parent: 2 type: Transform - - uid: 27522 + - uid: 27529 components: - rot: 1.5707963267948966 rad pos: -36.5,-92.5 parent: 2 type: Transform - - uid: 27523 + - uid: 27530 components: - rot: 1.5707963267948966 rad pos: -37.5,-92.5 parent: 2 type: Transform - - uid: 27524 + - uid: 27531 components: - rot: 1.5707963267948966 rad pos: -38.5,-92.5 parent: 2 type: Transform - - uid: 27525 + - uid: 27532 components: - rot: 1.5707963267948966 rad pos: -39.5,-92.5 parent: 2 type: Transform - - uid: 27526 + - uid: 27533 components: - rot: 1.5707963267948966 rad pos: -39.5,-98.5 parent: 2 type: Transform - - uid: 27527 + - uid: 27534 components: - rot: 1.5707963267948966 rad pos: -40.5,-98.5 parent: 2 type: Transform - - uid: 27528 + - uid: 27535 components: - rot: 1.5707963267948966 rad pos: -43.5,-98.5 parent: 2 type: Transform - - uid: 27529 + - uid: 27536 components: - rot: 1.5707963267948966 rad pos: -44.5,-97.5 parent: 2 type: Transform - - uid: 27530 + - uid: 27537 components: - rot: 1.5707963267948966 rad pos: -44.5,-98.5 parent: 2 type: Transform - - uid: 27531 + - uid: 27538 components: - rot: 1.5707963267948966 rad pos: -44.5,-94.5 parent: 2 type: Transform - - uid: 27532 + - uid: 27539 components: - rot: 1.5707963267948966 rad pos: -44.5,-93.5 parent: 2 type: Transform - - uid: 27533 + - uid: 27540 components: - rot: 1.5707963267948966 rad pos: -44.5,-92.5 parent: 2 type: Transform - - uid: 27534 + - uid: 27541 components: - pos: -20.5,-101.5 parent: 2 type: Transform - - uid: 27535 + - uid: 27542 components: - pos: -24.5,-101.5 parent: 2 type: Transform - - uid: 27536 + - uid: 27543 components: - pos: -75.5,-28.5 parent: 2 type: Transform - - uid: 27537 + - uid: 27544 components: - pos: -75.5,-29.5 parent: 2 type: Transform - - uid: 27538 + - uid: 27545 components: - pos: -75.5,-30.5 parent: 2 type: Transform - - uid: 27539 + - uid: 27546 components: - pos: -75.5,-31.5 parent: 2 type: Transform - - uid: 27540 + - uid: 27547 components: - pos: -75.5,-32.5 parent: 2 type: Transform - - uid: 27541 + - uid: 27548 components: - pos: -69.5,-33.5 parent: 2 type: Transform - - uid: 27542 + - uid: 27549 components: - pos: -70.5,-33.5 parent: 2 type: Transform - - uid: 27543 + - uid: 27550 components: - pos: -71.5,-33.5 parent: 2 type: Transform - - uid: 27544 + - uid: 27551 components: - pos: -73.5,-33.5 parent: 2 type: Transform - - uid: 27545 + - uid: 27552 components: - pos: -74.5,-33.5 parent: 2 type: Transform - - uid: 27546 + - uid: 27553 components: - pos: -75.5,-33.5 parent: 2 type: Transform - - uid: 27547 + - uid: 27554 components: - pos: -68.5,-40.5 parent: 2 type: Transform - - uid: 27548 + - uid: 27555 components: - pos: -67.5,-40.5 parent: 2 type: Transform - - uid: 27549 + - uid: 27556 components: - pos: -66.5,-40.5 parent: 2 type: Transform - - uid: 27550 + - uid: 27557 components: - pos: -70.5,-40.5 parent: 2 type: Transform - - uid: 27551 + - uid: 27558 components: - pos: -71.5,-40.5 parent: 2 type: Transform - - uid: 27552 + - uid: 27559 components: - pos: -72.5,-40.5 parent: 2 type: Transform - - uid: 27553 + - uid: 27560 components: - pos: -66.5,-42.5 parent: 2 type: Transform - - uid: 27554 + - uid: 27561 components: - pos: -66.5,-41.5 parent: 2 type: Transform - - uid: 27555 + - uid: 27562 components: - pos: -66.5,-44.5 parent: 2 type: Transform - - uid: 27556 + - uid: 27563 components: - pos: -66.5,-45.5 parent: 2 type: Transform - - uid: 27557 + - uid: 27564 components: - pos: -66.5,-46.5 parent: 2 type: Transform - - uid: 27558 + - uid: 27565 components: - pos: -67.5,-46.5 parent: 2 type: Transform - - uid: 27559 + - uid: 27566 components: - pos: -71.5,-46.5 parent: 2 type: Transform - - uid: 27560 + - uid: 27567 components: - pos: -72.5,-46.5 parent: 2 type: Transform - - uid: 27561 + - uid: 27568 components: - pos: -72.5,-41.5 parent: 2 type: Transform - - uid: 27562 + - uid: 27569 components: - pos: -72.5,-45.5 parent: 2 type: Transform - - uid: 27563 + - uid: 27570 components: - pos: -68.5,-39.5 parent: 2 type: Transform - - uid: 27564 + - uid: 27571 components: - pos: -68.5,-38.5 parent: 2 type: Transform - - uid: 27565 + - uid: 27572 components: - pos: -70.5,-38.5 parent: 2 type: Transform - - uid: 27566 + - uid: 27573 components: - pos: -70.5,-39.5 parent: 2 type: Transform - - uid: 27567 + - uid: 27574 components: - pos: -65.5,-42.5 parent: 2 type: Transform - - uid: 27568 + - uid: 27575 components: - pos: -64.5,-42.5 parent: 2 type: Transform - - uid: 27569 + - uid: 27576 components: - pos: -64.5,-44.5 parent: 2 type: Transform - - uid: 27570 + - uid: 27577 components: - pos: -65.5,-44.5 parent: 2 type: Transform - - uid: 27571 + - uid: 27578 components: - pos: 70.5,-39.5 parent: 2 type: Transform - - uid: 27572 + - uid: 27579 components: - pos: 71.5,-39.5 parent: 2 type: Transform - - uid: 27573 + - uid: 27580 components: - rot: -1.5707963267948966 rad pos: 65.5,-39.5 parent: 2 type: Transform - - uid: 27574 + - uid: 27581 components: - rot: -1.5707963267948966 rad pos: 74.5,-29.5 parent: 2 type: Transform - - uid: 27575 + - uid: 27582 components: - rot: -1.5707963267948966 rad pos: 69.5,-39.5 parent: 2 type: Transform - - uid: 27576 + - uid: 27583 components: - pos: 29.5,34.5 parent: 2 type: Transform - - uid: 27577 + - uid: 27584 components: - rot: -1.5707963267948966 rad pos: 77.5,-50.5 parent: 2 type: Transform - - uid: 27578 + - uid: 27585 components: - rot: -1.5707963267948966 rad pos: 53.5,-68.5 parent: 2 type: Transform - - uid: 27579 + - uid: 27586 components: - rot: -1.5707963267948966 rad pos: 46.5,-66.5 parent: 2 type: Transform - - uid: 27580 + - uid: 27587 components: - rot: -1.5707963267948966 rad pos: 49.5,-64.5 parent: 2 type: Transform - - uid: 27581 + - uid: 27588 components: - rot: -1.5707963267948966 rad pos: 52.5,-64.5 parent: 2 type: Transform - - uid: 27582 + - uid: 27589 components: - rot: -1.5707963267948966 rad pos: 47.5,-64.5 parent: 2 type: Transform - - uid: 27583 + - uid: 27590 components: - rot: -1.5707963267948966 rad pos: 45.5,-66.5 parent: 2 type: Transform - - uid: 27584 + - uid: 27591 components: - pos: 66.5,-67.5 parent: 2 type: Transform - - uid: 27585 + - uid: 27592 components: - pos: 65.5,-67.5 parent: 2 type: Transform - - uid: 27586 + - uid: 27593 components: - pos: 65.5,-68.5 parent: 2 type: Transform - - uid: 27587 + - uid: 27594 components: - pos: 64.5,-68.5 parent: 2 type: Transform - - uid: 27588 + - uid: 27595 components: - pos: 63.5,-69.5 parent: 2 type: Transform - - uid: 27589 + - uid: 27596 components: - pos: 69.5,-50.5 parent: 2 type: Transform - - uid: 27590 + - uid: 27597 components: - rot: -1.5707963267948966 rad pos: 70.5,-27.5 parent: 2 type: Transform - - uid: 27591 + - uid: 27598 components: - rot: -1.5707963267948966 rad pos: 52.5,-68.5 parent: 2 type: Transform - - uid: 27592 + - uid: 27599 components: - rot: -1.5707963267948966 rad pos: 47.5,-66.5 parent: 2 type: Transform - - uid: 27593 + - uid: 27600 components: - rot: -1.5707963267948966 rad pos: 49.5,-68.5 parent: 2 type: Transform - - uid: 27594 + - uid: 27601 components: - rot: -1.5707963267948966 rad pos: 76.5,-50.5 parent: 2 type: Transform - - uid: 27595 + - uid: 27602 components: - rot: -1.5707963267948966 rad pos: 48.5,-67.5 parent: 2 type: Transform - - uid: 27596 + - uid: 27603 components: - rot: -1.5707963267948966 rad pos: 48.5,-64.5 parent: 2 type: Transform - - uid: 27597 + - uid: 27604 components: - rot: -1.5707963267948966 rad pos: 49.5,-67.5 parent: 2 type: Transform - - uid: 27598 + - uid: 27605 components: - rot: -1.5707963267948966 rad pos: 51.5,-64.5 parent: 2 type: Transform - - uid: 27599 + - uid: 27606 components: - pos: 7.5,-38.5 parent: 2 type: Transform - - uid: 27600 + - uid: 27607 components: - rot: 3.141592653589793 rad pos: 74.5,-28.5 parent: 2 type: Transform - - uid: 27601 + - uid: 27608 components: - rot: 3.141592653589793 rad pos: 70.5,-28.5 parent: 2 type: Transform - - uid: 27602 + - uid: 27609 components: - pos: 5.5,-36.5 parent: 2 type: Transform - - uid: 27603 + - uid: 27610 components: - pos: 1.5,-36.5 parent: 2 type: Transform - - uid: 27604 + - uid: 27611 components: - pos: 5.5,-37.5 parent: 2 type: Transform - - uid: 27605 + - uid: 27612 components: - pos: 4.5,-36.5 parent: 2 type: Transform - - uid: 27606 + - uid: 27613 components: - pos: 6.5,-37.5 parent: 2 type: Transform - - uid: 27607 + - uid: 27614 components: - pos: 63.5,-70.5 parent: 2 type: Transform - - uid: 27608 + - uid: 27615 components: - pos: 1.5,-35.5 parent: 2 type: Transform - - uid: 27609 + - uid: 27616 components: - pos: 66.5,-60.5 parent: 2 type: Transform - - uid: 27610 + - uid: 27617 components: - pos: 76.5,-52.5 parent: 2 type: Transform - - uid: 27611 + - uid: 27618 components: - pos: 76.5,-51.5 parent: 2 type: Transform - - uid: 27612 + - uid: 27619 components: - pos: 73.5,-51.5 parent: 2 type: Transform - - uid: 27613 + - uid: 27620 components: - pos: 73.5,-53.5 parent: 2 type: Transform - - uid: 27614 + - uid: 27621 components: - pos: 75.5,-57.5 parent: 2 type: Transform - - uid: 27615 + - uid: 27622 components: - pos: 76.5,-57.5 parent: 2 type: Transform - - uid: 27616 + - uid: 27623 components: - pos: 68.5,-55.5 parent: 2 type: Transform - - uid: 27617 + - uid: 27624 components: - rot: 1.5707963267948966 rad pos: -53.5,-57.5 parent: 2 type: Transform - - uid: 27618 + - uid: 27625 components: - rot: 1.5707963267948966 rad pos: -52.5,-57.5 parent: 2 type: Transform - - uid: 27619 + - uid: 27626 components: - rot: 1.5707963267948966 rad pos: -51.5,-57.5 parent: 2 type: Transform - - uid: 27620 + - uid: 27627 components: - rot: 1.5707963267948966 rad pos: -50.5,-57.5 parent: 2 type: Transform - - uid: 27621 + - uid: 27628 components: - rot: 1.5707963267948966 rad pos: -50.5,-59.5 parent: 2 type: Transform - - uid: 27622 + - uid: 27629 components: - rot: 1.5707963267948966 rad pos: -51.5,-59.5 parent: 2 type: Transform - - uid: 27623 + - uid: 27630 components: - rot: 1.5707963267948966 rad pos: -52.5,-59.5 parent: 2 type: Transform - - uid: 27624 + - uid: 27631 components: - rot: 1.5707963267948966 rad pos: -52.5,-61.5 parent: 2 type: Transform - - uid: 27625 + - uid: 27632 components: - rot: 1.5707963267948966 rad pos: -57.5,-63.5 parent: 2 type: Transform - - uid: 27626 + - uid: 27633 components: - rot: 1.5707963267948966 rad pos: -56.5,-63.5 parent: 2 type: Transform - - uid: 27627 + - uid: 27634 components: - pos: 13.5,-37.5 parent: 2 type: Transform - - uid: 27628 + - uid: 27635 components: - pos: 59.5,-69.5 parent: 2 type: Transform - - uid: 27629 + - uid: 27636 components: - pos: 9.5,-32.5 parent: 2 type: Transform - - uid: 27630 + - uid: 27637 components: - rot: 1.5707963267948966 rad pos: 65.5,-42.5 parent: 2 type: Transform - - uid: 27631 + - uid: 27638 components: - pos: 10.5,-39.5 parent: 2 type: Transform - - uid: 27632 + - uid: 27639 components: - rot: -1.5707963267948966 rad pos: 7.5,-40.5 parent: 2 type: Transform - - uid: 27633 + - uid: 27640 components: - pos: 47.5,-32.5 parent: 2 type: Transform - - uid: 27634 + - uid: 27641 components: - pos: 69.5,-68.5 parent: 2 type: Transform - - uid: 27635 + - uid: 27642 components: - pos: 64.5,-69.5 parent: 2 type: Transform - - uid: 27636 + - uid: 27643 components: - pos: 59.5,-70.5 parent: 2 type: Transform - - uid: 27637 + - uid: 27644 components: - pos: 58.5,-69.5 parent: 2 type: Transform - - uid: 27638 + - uid: 27645 components: - pos: 67.5,-68.5 parent: 2 type: Transform - - uid: 27639 + - uid: 27646 components: - pos: 67.5,-69.5 parent: 2 type: Transform - - uid: 27640 + - uid: 27647 components: - pos: 76.5,-56.5 parent: 2 type: Transform - - uid: 27641 + - uid: 27648 components: - pos: 76.5,-55.5 parent: 2 type: Transform - - uid: 27642 + - uid: 27649 components: - pos: 76.5,-54.5 parent: 2 type: Transform - - uid: 27643 + - uid: 27650 components: - pos: 76.5,-53.5 parent: 2 type: Transform - - uid: 27644 + - uid: 27651 components: - rot: 1.5707963267948966 rad pos: 45.5,-81.5 parent: 2 type: Transform - - uid: 27645 + - uid: 27652 components: - rot: 3.141592653589793 rad pos: 48.5,3.5 parent: 2 type: Transform - - uid: 27646 + - uid: 27653 components: - pos: -45.5,-37.5 parent: 2 type: Transform - - uid: 27647 + - uid: 27654 components: - rot: 1.5707963267948966 rad pos: 32.5,20.5 parent: 2 type: Transform - - uid: 27648 + - uid: 27655 components: - rot: 1.5707963267948966 rad pos: 46.5,-88.5 parent: 2 type: Transform - - uid: 27649 + - uid: 27656 components: - pos: 35.5,-75.5 parent: 2 type: Transform - - uid: 27650 + - uid: 27657 components: - pos: 8.5,-84.5 parent: 2 type: Transform - - uid: 27651 + - uid: 27658 components: - pos: 7.5,-84.5 parent: 2 type: Transform - - uid: 27652 + - uid: 27659 components: - pos: 7.5,-85.5 parent: 2 type: Transform - - uid: 27653 + - uid: 27660 components: - pos: 9.5,-84.5 parent: 2 type: Transform - - uid: 27654 + - uid: 27661 components: - pos: 7.5,-86.5 parent: 2 type: Transform - - uid: 27655 + - uid: 27662 components: - pos: 5.5,-84.5 parent: 2 type: Transform - - uid: 27656 + - uid: 27663 components: - pos: 5.5,-85.5 parent: 2 type: Transform - - uid: 27657 + - uid: 27664 components: - pos: 5.5,-86.5 parent: 2 type: Transform - - uid: 27658 + - uid: 27665 components: - pos: 5.5,-81.5 parent: 2 type: Transform - - uid: 27659 + - uid: 27666 components: - pos: 5.5,-83.5 parent: 2 type: Transform - - uid: 27660 + - uid: 27667 components: - rot: 1.5707963267948966 rad pos: 47.5,-70.5 parent: 2 type: Transform - - uid: 27661 + - uid: 27668 components: - rot: 1.5707963267948966 rad pos: 28.5,-77.5 parent: 2 type: Transform - - uid: 27662 + - uid: 27669 components: - pos: 27.5,-75.5 parent: 2 type: Transform - - uid: 27663 + - uid: 27670 components: - rot: -1.5707963267948966 rad pos: 43.5,-75.5 parent: 2 type: Transform - - uid: 27664 + - uid: 27671 components: - pos: 64.5,-41.5 parent: 2 type: Transform - - uid: 27665 + - uid: 27672 components: - pos: -47.5,-37.5 parent: 2 type: Transform - - uid: 27666 + - uid: 27673 components: - pos: -47.5,-36.5 parent: 2 type: Transform - - uid: 27667 + - uid: 27674 components: - pos: -51.5,-34.5 parent: 2 type: Transform - - uid: 27668 + - uid: 27675 components: - pos: -51.5,-35.5 parent: 2 type: Transform - - uid: 27669 + - uid: 27676 components: - pos: -51.5,-38.5 parent: 2 type: Transform - - uid: 27670 + - uid: 27677 components: - pos: -51.5,-39.5 parent: 2 type: Transform - - uid: 27671 + - uid: 27678 components: - pos: -51.5,-40.5 parent: 2 type: Transform - - uid: 27672 + - uid: 27679 components: - rot: -1.5707963267948966 rad pos: -75.5,-12.5 parent: 2 type: Transform - - uid: 27673 + - uid: 27680 components: - rot: 1.5707963267948966 rad pos: 26.5,-86.5 parent: 2 type: Transform - - uid: 27674 + - uid: 27681 components: - rot: -1.5707963267948966 rad pos: 31.5,-93.5 parent: 2 type: Transform - - uid: 27675 + - uid: 27682 components: - rot: -1.5707963267948966 rad pos: 28.5,-91.5 parent: 2 type: Transform - - uid: 27676 + - uid: 27683 components: - rot: -1.5707963267948966 rad pos: 32.5,-92.5 parent: 2 type: Transform - - uid: 27677 + - uid: 27684 components: - rot: -1.5707963267948966 rad pos: 32.5,-91.5 parent: 2 type: Transform - - uid: 27678 + - uid: 27685 components: - rot: 1.5707963267948966 rad pos: 50.5,-70.5 parent: 2 type: Transform - - uid: 27679 + - uid: 27686 components: - rot: -1.5707963267948966 rad pos: 46.5,-75.5 parent: 2 type: Transform - - uid: 27680 + - uid: 27687 components: - rot: 1.5707963267948966 rad pos: 24.5,-75.5 parent: 2 type: Transform - - uid: 27681 + - uid: 27688 components: - rot: 1.5707963267948966 rad pos: 50.5,-76.5 parent: 2 type: Transform - - uid: 27682 + - uid: 27689 components: - rot: 1.5707963267948966 rad pos: 50.5,-78.5 parent: 2 type: Transform - - uid: 27683 + - uid: 27690 components: - rot: 1.5707963267948966 rad pos: 50.5,-79.5 parent: 2 type: Transform - - uid: 27684 + - uid: 27691 components: - pos: 49.5,-94.5 parent: 2 type: Transform - - uid: 27685 + - uid: 27692 components: - pos: 46.5,-91.5 parent: 2 type: Transform - - uid: 27686 + - uid: 27693 components: - pos: 47.5,-93.5 parent: 2 type: Transform - - uid: 27687 + - uid: 27694 components: - pos: 46.5,-93.5 parent: 2 type: Transform - - uid: 27688 + - uid: 27695 components: - pos: 50.5,-91.5 parent: 2 type: Transform - - uid: 27689 + - uid: 27696 components: - rot: -1.5707963267948966 rad pos: 23.5,-80.5 parent: 2 type: Transform - - uid: 27690 + - uid: 27697 components: - rot: 1.5707963267948966 rad pos: 50.5,-77.5 parent: 2 type: Transform - - uid: 27691 + - uid: 27698 components: - rot: 1.5707963267948966 rad pos: 50.5,-84.5 parent: 2 type: Transform - - uid: 27692 + - uid: 27699 components: - pos: 49.5,-95.5 parent: 2 type: Transform - - uid: 27693 + - uid: 27700 components: - pos: 47.5,-95.5 parent: 2 type: Transform - - uid: 27694 + - uid: 27701 components: - pos: 46.5,-92.5 parent: 2 type: Transform - - uid: 27695 + - uid: 27702 components: - pos: 50.5,-93.5 parent: 2 type: Transform - - uid: 27696 + - uid: 27703 components: - pos: 49.5,-93.5 parent: 2 type: Transform - - uid: 27697 + - uid: 27704 components: - rot: -1.5707963267948966 rad pos: 26.5,-80.5 parent: 2 type: Transform - - uid: 27698 + - uid: 27705 components: - rot: -1.5707963267948966 rad pos: 26.5,-79.5 parent: 2 type: Transform - - uid: 27699 + - uid: 27706 components: - rot: 1.5707963267948966 rad pos: 51.5,-74.5 parent: 2 type: Transform - - uid: 27700 + - uid: 27707 components: - rot: 1.5707963267948966 rad pos: 51.5,-70.5 parent: 2 type: Transform - - uid: 27701 + - uid: 27708 components: - rot: -1.5707963267948966 rad pos: 33.5,-81.5 parent: 2 type: Transform - - uid: 27702 + - uid: 27709 components: - pos: 47.5,-94.5 parent: 2 type: Transform - - uid: 27703 + - uid: 27710 components: - rot: -1.5707963267948966 rad pos: 28.5,-92.5 parent: 2 type: Transform - - uid: 27704 + - uid: 27711 components: - rot: -1.5707963267948966 rad pos: 2.5,-76.5 parent: 2 type: Transform - - uid: 27705 + - uid: 27712 components: - pos: 5.5,-76.5 parent: 2 type: Transform - - uid: 27706 + - uid: 27713 components: - rot: -1.5707963267948966 rad pos: 34.5,-74.5 parent: 2 type: Transform - - uid: 27707 + - uid: 27714 components: - rot: -1.5707963267948966 rad pos: 34.5,-81.5 parent: 2 type: Transform - - uid: 27708 + - uid: 27715 components: - rot: 1.5707963267948966 rad pos: 44.5,-90.5 parent: 2 type: Transform - - uid: 27709 + - uid: 27716 components: - rot: 1.5707963267948966 rad pos: 44.5,-88.5 parent: 2 type: Transform - - uid: 27710 + - uid: 27717 components: - rot: 1.5707963267948966 rad pos: 45.5,-90.5 parent: 2 type: Transform - - uid: 27711 + - uid: 27718 components: - pos: 8.5,-79.5 parent: 2 type: Transform - - uid: 27712 + - uid: 27719 components: - pos: 8.5,-80.5 parent: 2 type: Transform - - uid: 27713 + - uid: 27720 components: - pos: 50.5,-92.5 parent: 2 type: Transform - - uid: 27714 + - uid: 27721 components: - rot: 3.141592653589793 rad pos: 27.5,-67.5 parent: 2 type: Transform - - uid: 27715 + - uid: 27722 components: - rot: 3.141592653589793 rad pos: 24.5,-67.5 parent: 2 type: Transform - - uid: 27716 + - uid: 27723 components: - rot: 3.141592653589793 rad pos: 24.5,-68.5 parent: 2 type: Transform - - uid: 27717 + - uid: 27724 components: - rot: 3.141592653589793 rad pos: 27.5,-68.5 parent: 2 type: Transform - - uid: 27718 + - uid: 27725 components: - rot: -1.5707963267948966 rad pos: 32.5,-74.5 parent: 2 type: Transform - - uid: 27719 + - uid: 27726 components: - rot: -1.5707963267948966 rad pos: 28.5,-79.5 parent: 2 type: Transform - - uid: 27720 + - uid: 27727 components: - rot: -1.5707963267948966 rad pos: 33.5,-74.5 parent: 2 type: Transform - - uid: 27721 + - uid: 27728 components: - rot: 1.5707963267948966 rad pos: 50.5,-74.5 parent: 2 type: Transform - - uid: 27722 + - uid: 27729 components: - rot: 1.5707963267948966 rad pos: 45.5,-88.5 parent: 2 type: Transform - - uid: 27723 + - uid: 27730 components: - pos: 7.5,-74.5 parent: 2 type: Transform - - uid: 27724 + - uid: 27731 components: - pos: 7.5,-76.5 parent: 2 type: Transform - - uid: 27725 + - uid: 27732 components: - pos: 7.5,-72.5 parent: 2 type: Transform - - uid: 27726 + - uid: 27733 components: - pos: 10.5,-81.5 parent: 2 type: Transform - - uid: 27727 + - uid: 27734 components: - pos: 10.5,-82.5 parent: 2 type: Transform - - uid: 27728 + - uid: 27735 components: - pos: 10.5,-84.5 parent: 2 type: Transform - - uid: 27729 + - uid: 27736 components: - pos: 10.5,-85.5 parent: 2 type: Transform - - uid: 27730 + - uid: 27737 components: - pos: 5.5,-77.5 parent: 2 type: Transform - - uid: 27731 + - uid: 27738 components: - pos: 8.5,-78.5 parent: 2 type: Transform - - uid: 27732 + - uid: 27739 components: - rot: 1.5707963267948966 rad pos: 50.5,-87.5 parent: 2 type: Transform - - uid: 27733 + - uid: 27740 components: - rot: 1.5707963267948966 rad pos: 50.5,-80.5 parent: 2 type: Transform - - uid: 27734 + - uid: 27741 components: - rot: -1.5707963267948966 rad pos: 32.5,-81.5 parent: 2 type: Transform - - uid: 27735 + - uid: 27742 components: - rot: -1.5707963267948966 rad pos: 32.5,-76.5 parent: 2 type: Transform - - uid: 27736 + - uid: 27743 components: - rot: -1.5707963267948966 rad pos: 32.5,-83.5 parent: 2 type: Transform - - uid: 27737 + - uid: 27744 components: - rot: 3.141592653589793 rad pos: 3.5,-20.5 parent: 2 type: Transform - - uid: 27738 + - uid: 27745 components: - rot: 3.141592653589793 rad pos: 3.5,-22.5 parent: 2 type: Transform - - uid: 27739 + - uid: 27746 components: - rot: 3.141592653589793 rad pos: 3.5,-23.5 parent: 2 type: Transform - - uid: 27740 + - uid: 27747 components: - rot: 3.141592653589793 rad pos: 3.5,-21.5 parent: 2 type: Transform - - uid: 27741 + - uid: 27748 components: - rot: 3.141592653589793 rad pos: 3.5,-19.5 parent: 2 type: Transform - - uid: 27742 + - uid: 27749 components: - rot: 3.141592653589793 rad pos: 39.5,13.5 parent: 2 type: Transform - - uid: 27743 + - uid: 27750 components: - rot: 3.141592653589793 rad pos: 37.5,13.5 parent: 2 type: Transform - - uid: 27744 + - uid: 27751 components: - rot: 3.141592653589793 rad pos: 38.5,13.5 parent: 2 type: Transform - - uid: 27745 + - uid: 27752 components: - rot: 3.141592653589793 rad pos: 47.5,8.5 parent: 2 type: Transform - - uid: 27746 + - uid: 27753 components: - pos: 8.5,-81.5 parent: 2 type: Transform - - uid: 27747 + - uid: 27754 components: - pos: 8.5,-82.5 parent: 2 type: Transform - - uid: 27748 + - uid: 27755 components: - pos: 9.5,-82.5 parent: 2 type: Transform - - uid: 27749 + - uid: 27756 components: - rot: -1.5707963267948966 rad pos: 3.5,-76.5 parent: 2 type: Transform - - uid: 27750 + - uid: 27757 components: - rot: -1.5707963267948966 rad pos: 4.5,-76.5 parent: 2 type: Transform - - uid: 27751 + - uid: 27758 components: - rot: -1.5707963267948966 rad pos: -44.5,45.5 parent: 2 type: Transform - - uid: 27752 + - uid: 27759 components: - rot: -1.5707963267948966 rad pos: -51.5,45.5 parent: 2 type: Transform - - uid: 27753 + - uid: 27760 components: - rot: -1.5707963267948966 rad pos: -44.5,44.5 parent: 2 type: Transform - - uid: 27754 + - uid: 27761 components: - rot: -1.5707963267948966 rad pos: -44.5,43.5 parent: 2 type: Transform - - uid: 27755 + - uid: 27762 components: - rot: -1.5707963267948966 rad pos: -44.5,42.5 parent: 2 type: Transform - - uid: 27756 + - uid: 27763 components: - rot: -1.5707963267948966 rad pos: -44.5,41.5 parent: 2 type: Transform - - uid: 27757 + - uid: 27764 components: - pos: 65.5,-26.5 parent: 2 type: Transform - - uid: 27758 + - uid: 27765 components: - pos: 68.5,-26.5 parent: 2 type: Transform - - uid: 27759 + - uid: 27766 components: - pos: 69.5,-26.5 parent: 2 type: Transform - proto: WallSolid entities: - - uid: 19970 + - uid: 24777 components: - - pos: -16.5,-32.5 + - rot: 3.141592653589793 rad + pos: -16.5,-32.5 parent: 2 type: Transform - - uid: 27760 + - uid: 27767 components: - rot: 1.5707963267948966 rad pos: -16.5,-28.5 parent: 2 type: Transform - - uid: 27761 + - uid: 27768 components: - pos: 37.5,-56.5 parent: 2 type: Transform - - uid: 27762 + - uid: 27769 components: - pos: 17.5,-31.5 parent: 2 type: Transform - - uid: 27763 + - uid: 27770 components: - pos: -4.5,15.5 parent: 2 type: Transform - - uid: 27764 + - uid: 27771 components: - pos: -11.5,-3.5 parent: 2 type: Transform - - uid: 27765 + - uid: 27772 components: - rot: 3.141592653589793 rad pos: 15.5,8.5 parent: 2 type: Transform - - uid: 27766 + - uid: 27773 components: - pos: 40.5,-0.5 parent: 2 type: Transform - - uid: 27767 + - uid: 27774 components: - rot: 3.141592653589793 rad pos: 23.5,9.5 parent: 2 type: Transform - - uid: 27768 + - uid: 27775 components: - pos: -17.5,-34.5 parent: 2 type: Transform - - uid: 27769 + - uid: 27776 components: - rot: 1.5707963267948966 rad pos: -11.5,8.5 parent: 2 type: Transform - - uid: 27770 + - uid: 27777 components: - rot: 1.5707963267948966 rad pos: 28.5,-57.5 parent: 2 type: Transform - - uid: 27771 + - uid: 27778 components: - pos: 37.5,-53.5 parent: 2 type: Transform - - uid: 27772 + - uid: 27779 components: - rot: 1.5707963267948966 rad pos: 19.5,-23.5 parent: 2 type: Transform - - uid: 27773 + - uid: 27780 components: - rot: -1.5707963267948966 rad pos: 31.5,-2.5 parent: 2 type: Transform - - uid: 27774 + - uid: 27781 components: - rot: 3.141592653589793 rad pos: 15.5,-51.5 parent: 2 type: Transform - - uid: 27775 + - uid: 27782 components: - rot: -1.5707963267948966 rad pos: -14.5,-11.5 parent: 2 type: Transform - - uid: 27776 + - uid: 27783 components: - pos: -11.5,-72.5 parent: 2 type: Transform - - uid: 27777 + - uid: 27784 components: - rot: -1.5707963267948966 rad pos: -14.5,-20.5 parent: 2 type: Transform - - uid: 27778 + - uid: 27785 components: - pos: 11.5,-61.5 parent: 2 type: Transform - - uid: 27779 + - uid: 27786 components: - pos: 11.5,-63.5 parent: 2 type: Transform - - uid: 27780 + - uid: 27787 components: - pos: 9.5,-63.5 parent: 2 type: Transform - - uid: 27781 + - uid: 27788 components: - pos: 7.5,-63.5 parent: 2 type: Transform - - uid: 27782 + - uid: 27789 components: - rot: -1.5707963267948966 rad pos: -10.5,-70.5 parent: 2 type: Transform - - uid: 27783 + - uid: 27790 components: - rot: -1.5707963267948966 rad pos: -10.5,-69.5 parent: 2 type: Transform - - uid: 27784 + - uid: 27791 components: - rot: -1.5707963267948966 rad pos: -7.5,-70.5 parent: 2 type: Transform - - uid: 27785 + - uid: 27792 components: - rot: -1.5707963267948966 rad pos: -15.5,-68.5 parent: 2 type: Transform - - uid: 27786 + - uid: 27793 components: - rot: -1.5707963267948966 rad pos: -17.5,-68.5 parent: 2 type: Transform - - uid: 27787 + - uid: 27794 components: - rot: -1.5707963267948966 rad pos: -10.5,-68.5 parent: 2 type: Transform - - uid: 27788 + - uid: 27795 components: - rot: -1.5707963267948966 rad pos: -7.5,-67.5 parent: 2 type: Transform - - uid: 27789 + - uid: 27796 components: - rot: -1.5707963267948966 rad pos: -5.5,-67.5 parent: 2 type: Transform - - uid: 27790 + - uid: 27797 components: - pos: 1.5,-64.5 parent: 2 type: Transform - - uid: 27791 + - uid: 27798 components: - pos: 1.5,-63.5 parent: 2 type: Transform - - uid: 27792 + - uid: 27799 components: - pos: -17.5,-63.5 parent: 2 type: Transform - - uid: 27793 + - uid: 27800 components: - pos: 4.5,-51.5 parent: 2 type: Transform - - uid: 27794 + - uid: 27801 components: - pos: -12.5,-72.5 parent: 2 type: Transform - - uid: 27795 + - uid: 27802 components: - pos: -14.5,-70.5 parent: 2 type: Transform - - uid: 27796 + - uid: 27803 components: - pos: 5.5,-4.5 parent: 2 type: Transform - - uid: 27797 + - uid: 27804 components: - pos: -3.5,-74.5 parent: 2 type: Transform - - uid: 27798 + - uid: 27805 components: - pos: 9.5,-68.5 parent: 2 type: Transform - - uid: 27799 + - uid: 27806 components: - rot: 3.141592653589793 rad pos: -1.5,9.5 parent: 2 type: Transform - - uid: 27800 + - uid: 27807 components: - rot: 1.5707963267948966 rad pos: -6.5,-21.5 parent: 2 type: Transform - - uid: 27801 + - uid: 27808 components: - rot: -1.5707963267948966 rad pos: 12.5,-44.5 parent: 2 type: Transform - - uid: 27802 + - uid: 27809 components: - rot: 1.5707963267948966 rad pos: 34.5,-44.5 parent: 2 type: Transform - - uid: 27803 + - uid: 27810 components: - pos: 1.5,-67.5 parent: 2 type: Transform - - uid: 27804 + - uid: 27811 components: - pos: 5.5,-63.5 parent: 2 type: Transform - - uid: 27805 + - uid: 27812 components: - pos: 13.5,-59.5 parent: 2 type: Transform - - uid: 27806 + - uid: 27813 components: - rot: 1.5707963267948966 rad pos: 18.5,-23.5 parent: 2 type: Transform - - uid: 27807 + - uid: 27814 components: - pos: -21.5,-64.5 parent: 2 type: Transform - - uid: 27808 + - uid: 27815 components: - pos: -21.5,-66.5 parent: 2 type: Transform - - uid: 27809 + - uid: 27816 components: - pos: -21.5,-67.5 parent: 2 type: Transform - - uid: 27810 + - uid: 27817 components: - pos: -21.5,-68.5 parent: 2 type: Transform - - uid: 27811 + - uid: 27818 components: - pos: -22.5,-68.5 parent: 2 type: Transform - - uid: 27812 + - uid: 27819 components: - pos: -25.5,-68.5 parent: 2 type: Transform - - uid: 27813 + - uid: 27820 components: - pos: -26.5,-69.5 parent: 2 type: Transform - - uid: 27814 + - uid: 27821 components: - pos: -23.5,-74.5 parent: 2 type: Transform - - uid: 27815 + - uid: 27822 components: - pos: -22.5,-74.5 parent: 2 type: Transform - - uid: 27816 + - uid: 27823 components: - pos: -16.5,-71.5 parent: 2 type: Transform - - uid: 27817 + - uid: 27824 components: - pos: -21.5,-75.5 parent: 2 type: Transform - - uid: 27818 + - uid: 27825 components: - pos: -10.5,-74.5 parent: 2 type: Transform - - uid: 27819 + - uid: 27826 components: - pos: -8.5,-73.5 parent: 2 type: Transform - - uid: 27820 + - uid: 27827 components: - pos: 3.5,-69.5 parent: 2 type: Transform - - uid: 27821 + - uid: 27828 components: - pos: 7.5,-68.5 parent: 2 type: Transform - - uid: 27822 + - uid: 27829 components: - pos: 7.5,-66.5 parent: 2 type: Transform - - uid: 27823 + - uid: 27830 components: - pos: 9.5,-66.5 parent: 2 type: Transform - - uid: 27824 + - uid: 27831 components: - pos: -19.5,-74.5 parent: 2 type: Transform - - uid: 27825 + - uid: 27832 components: - rot: 3.141592653589793 rad pos: 14.5,-15.5 parent: 2 type: Transform - - uid: 27826 + - uid: 27833 components: - pos: 9.5,-13.5 parent: 2 type: Transform - - uid: 27827 + - uid: 27834 components: - rot: -1.5707963267948966 rad pos: -16.5,-44.5 parent: 2 type: Transform - - uid: 27828 + - uid: 27835 components: - rot: 1.5707963267948966 rad pos: 31.5,-23.5 parent: 2 type: Transform - - uid: 27829 + - uid: 27836 components: - rot: -1.5707963267948966 rad pos: 31.5,3.5 parent: 2 type: Transform - - uid: 27830 + - uid: 27837 components: - pos: 7.5,6.5 parent: 2 type: Transform - - uid: 27831 + - uid: 27838 components: - rot: 3.141592653589793 rad pos: 62.5,14.5 parent: 2 type: Transform - - uid: 27832 + - uid: 27839 components: - rot: 3.141592653589793 rad pos: -1.5,8.5 parent: 2 type: Transform - - uid: 27833 + - uid: 27840 components: - pos: 6.5,-68.5 parent: 2 type: Transform - - uid: 27834 + - uid: 27841 components: - pos: 15.5,4.5 parent: 2 type: Transform - - uid: 27835 + - uid: 27842 components: - rot: 3.141592653589793 rad pos: 61.5,17.5 parent: 2 type: Transform - - uid: 27836 + - uid: 27843 components: - pos: -8.5,-34.5 parent: 2 type: Transform - - uid: 27837 + - uid: 27844 components: - rot: -1.5707963267948966 rad pos: 13.5,-4.5 parent: 2 type: Transform - - uid: 27838 + - uid: 27845 components: - rot: 1.5707963267948966 rad pos: 4.5,-13.5 parent: 2 type: Transform - - uid: 27839 + - uid: 27846 components: - rot: -1.5707963267948966 rad pos: -13.5,36.5 parent: 2 type: Transform - - uid: 27840 + - uid: 27847 components: - pos: 5.5,-6.5 parent: 2 type: Transform - - uid: 27841 + - uid: 27848 components: - pos: 7.5,-62.5 parent: 2 type: Transform - - uid: 27842 + - uid: 27849 components: - pos: 13.5,-54.5 parent: 2 type: Transform - - uid: 27843 + - uid: 27850 components: - pos: -17.5,-64.5 parent: 2 type: Transform - - uid: 27844 + - uid: 27851 components: - pos: 7.5,-55.5 parent: 2 type: Transform - - uid: 27845 + - uid: 27852 components: - pos: -10.5,-2.5 parent: 2 type: Transform - - uid: 27846 + - uid: 27853 components: - rot: 3.141592653589793 rad pos: 22.5,15.5 parent: 2 type: Transform - - uid: 27847 + - uid: 27854 components: - rot: 3.141592653589793 rad pos: 21.5,15.5 parent: 2 type: Transform - - uid: 27848 + - uid: 27855 components: - rot: -1.5707963267948966 rad pos: 13.5,-3.5 parent: 2 type: Transform - - uid: 27849 + - uid: 27856 components: - rot: 1.5707963267948966 rad pos: 5.5,-13.5 parent: 2 type: Transform - - uid: 27850 + - uid: 27857 components: - rot: 1.5707963267948966 rad pos: 0.5,-13.5 parent: 2 type: Transform - - uid: 27851 + - uid: 27858 components: - rot: 1.5707963267948966 rad pos: 66.5,-4.5 parent: 2 type: Transform - - uid: 27852 + - uid: 27859 components: - pos: 37.5,-39.5 parent: 2 type: Transform - - uid: 27853 + - uid: 27860 components: - pos: -6.5,-5.5 parent: 2 type: Transform - - uid: 27854 + - uid: 27861 components: - rot: 3.141592653589793 rad pos: 6.5,-16.5 parent: 2 type: Transform - - uid: 27855 + - uid: 27862 components: - pos: 43.5,-57.5 parent: 2 type: Transform - - uid: 27856 + - uid: 27863 components: - pos: 37.5,-27.5 parent: 2 type: Transform - - uid: 27857 + - uid: 27864 components: - pos: 13.5,-50.5 parent: 2 type: Transform - - uid: 27858 + - uid: 27865 components: - pos: -17.5,-28.5 parent: 2 type: Transform - - uid: 27859 + - uid: 27866 components: - rot: -1.5707963267948966 rad pos: -3.5,-78.5 parent: 2 type: Transform - - uid: 27860 + - uid: 27867 components: - rot: -1.5707963267948966 rad pos: -2.5,-83.5 parent: 2 type: Transform - - uid: 27861 + - uid: 27868 components: - rot: -1.5707963267948966 rad pos: -5.5,-76.5 parent: 2 type: Transform - - uid: 27862 + - uid: 27869 components: - pos: -9.5,-7.5 parent: 2 type: Transform - - uid: 27863 + - uid: 27870 components: - rot: -1.5707963267948966 rad pos: 29.5,-1.5 parent: 2 type: Transform - - uid: 27864 + - uid: 27871 components: - pos: -6.5,-16.5 parent: 2 type: Transform - - uid: 27865 + - uid: 27872 components: - pos: -2.5,-10.5 parent: 2 type: Transform - - uid: 27866 + - uid: 27873 components: - pos: 13.5,-48.5 parent: 2 type: Transform - - uid: 27867 + - uid: 27874 components: - pos: -2.5,-18.5 parent: 2 type: Transform - - uid: 27868 + - uid: 27875 components: - pos: -2.5,-17.5 parent: 2 type: Transform - - uid: 27869 + - uid: 27876 components: - pos: -0.5,-15.5 parent: 2 type: Transform - - uid: 27870 + - uid: 27877 components: - pos: -2.5,-14.5 parent: 2 type: Transform - - uid: 27871 + - uid: 27878 components: - pos: -2.5,-13.5 parent: 2 type: Transform - - uid: 27872 + - uid: 27879 components: - pos: -2.5,-19.5 parent: 2 type: Transform - - uid: 27873 + - uid: 27880 components: - rot: 1.5707963267948966 rad pos: 4.5,-8.5 parent: 2 type: Transform - - uid: 27874 + - uid: 27881 components: - rot: 1.5707963267948966 rad pos: 7.5,-10.5 parent: 2 type: Transform - - uid: 27875 + - uid: 27882 components: - rot: 3.141592653589793 rad pos: -10.5,-49.5 parent: 2 type: Transform - - uid: 27876 + - uid: 27883 components: - rot: 3.141592653589793 rad pos: -11.5,-44.5 parent: 2 type: Transform - - uid: 27877 + - uid: 27884 components: - rot: 3.141592653589793 rad pos: -10.5,-50.5 parent: 2 type: Transform - - uid: 27878 + - uid: 27885 components: - rot: 3.141592653589793 rad pos: 23.5,15.5 parent: 2 type: Transform - - uid: 27879 + - uid: 27886 components: - rot: 3.141592653589793 rad pos: 19.5,10.5 parent: 2 type: Transform - - uid: 27880 + - uid: 27887 components: - pos: 16.5,-13.5 parent: 2 type: Transform - - uid: 27881 + - uid: 27888 components: - pos: 7.5,-12.5 parent: 2 type: Transform - - uid: 27882 + - uid: 27889 components: - pos: -7.5,14.5 parent: 2 type: Transform - - uid: 27883 + - uid: 27890 components: - pos: -8.5,12.5 parent: 2 type: Transform - - uid: 27884 + - uid: 27891 components: - pos: -32.5,-69.5 parent: 2 type: Transform - - uid: 27885 + - uid: 27892 components: - pos: -32.5,-72.5 parent: 2 type: Transform - - uid: 27886 + - uid: 27893 components: - pos: 18.5,-44.5 parent: 2 type: Transform - - uid: 27887 + - uid: 27894 components: - pos: 42.5,-52.5 parent: 2 type: Transform - - uid: 27888 + - uid: 27895 components: - rot: -1.5707963267948966 rad pos: -9.5,57.5 parent: 2 type: Transform - - uid: 27889 + - uid: 27896 components: - pos: 38.5,-27.5 parent: 2 type: Transform - - uid: 27890 + - uid: 27897 components: - pos: 37.5,-28.5 parent: 2 type: Transform - - uid: 27891 + - uid: 27898 components: - pos: 0.5,-72.5 parent: 2 type: Transform - - uid: 27892 + - uid: 27899 components: - pos: -9.5,-17.5 parent: 2 type: Transform - - uid: 27893 + - uid: 27900 components: - rot: 3.141592653589793 rad pos: 16.5,-51.5 parent: 2 type: Transform - - uid: 27894 + - uid: 27901 components: - pos: -9.5,-18.5 parent: 2 type: Transform - - uid: 27895 + - uid: 27902 components: - rot: -1.5707963267948966 rad pos: -10.5,-76.5 parent: 2 type: Transform - - uid: 27896 + - uid: 27903 components: - rot: -1.5707963267948966 rad pos: 19.5,19.5 parent: 2 type: Transform - - uid: 27897 + - uid: 27904 components: - pos: 42.5,-56.5 parent: 2 type: Transform - - uid: 27898 + - uid: 27905 components: - pos: -17.5,-38.5 parent: 2 type: Transform - - uid: 27899 + - uid: 27906 components: - rot: -1.5707963267948966 rad pos: 20.5,19.5 parent: 2 type: Transform - - uid: 27900 + - uid: 27907 components: - pos: 1.5,-75.5 parent: 2 type: Transform - - uid: 27901 + - uid: 27908 components: - pos: 1.5,-73.5 parent: 2 type: Transform - - uid: 27902 + - uid: 27909 components: - pos: 7.5,-28.5 parent: 2 type: Transform - - uid: 27903 + - uid: 27910 components: - pos: -11.5,9.5 parent: 2 type: Transform - - uid: 27904 + - uid: 27911 components: - pos: -30.5,-76.5 parent: 2 type: Transform - - uid: 27905 + - uid: 27912 components: - rot: -1.5707963267948966 rad pos: -13.5,-20.5 parent: 2 type: Transform - - uid: 27906 + - uid: 27913 components: - pos: 11.5,-65.5 parent: 2 type: Transform - - uid: 27907 + - uid: 27914 components: - pos: 13.5,-63.5 parent: 2 type: Transform - - uid: 27908 + - uid: 27915 components: - pos: 15.5,-56.5 parent: 2 type: Transform - - uid: 27909 + - uid: 27916 components: - pos: 8.5,-63.5 parent: 2 type: Transform - - uid: 27910 + - uid: 27917 components: - pos: 11.5,-62.5 parent: 2 type: Transform - - uid: 27911 + - uid: 27918 components: - pos: 8.5,-57.5 parent: 2 type: Transform - - uid: 27912 + - uid: 27919 components: - pos: 11.5,-60.5 parent: 2 type: Transform - - uid: 27913 + - uid: 27920 components: - pos: 11.5,-59.5 parent: 2 type: Transform - - uid: 27914 + - uid: 27921 components: - pos: 11.5,-58.5 parent: 2 type: Transform - - uid: 27915 + - uid: 27922 components: - pos: 11.5,-57.5 parent: 2 type: Transform - - uid: 27916 + - uid: 27923 components: - pos: 10.5,-57.5 parent: 2 type: Transform - - uid: 27917 + - uid: 27924 components: - pos: 9.5,-57.5 parent: 2 type: Transform - - uid: 27918 + - uid: 27925 components: - rot: -1.5707963267948966 rad pos: -7.5,-69.5 parent: 2 type: Transform - - uid: 27919 + - uid: 27926 components: - rot: -1.5707963267948966 rad pos: -9.5,-70.5 parent: 2 type: Transform - - uid: 27920 + - uid: 27927 components: - rot: -1.5707963267948966 rad pos: -12.5,-68.5 parent: 2 type: Transform - - uid: 27921 + - uid: 27928 components: - rot: -1.5707963267948966 rad pos: -13.5,-68.5 parent: 2 type: Transform - - uid: 27922 + - uid: 27929 components: - rot: -1.5707963267948966 rad pos: -16.5,-68.5 parent: 2 type: Transform - - uid: 27923 + - uid: 27930 components: - rot: -1.5707963267948966 rad pos: -17.5,-67.5 parent: 2 type: Transform - - uid: 27924 + - uid: 27931 components: - rot: -1.5707963267948966 rad pos: -10.5,-67.5 parent: 2 type: Transform - - uid: 27925 + - uid: 27932 components: - rot: -1.5707963267948966 rad pos: -9.5,-67.5 parent: 2 type: Transform - - uid: 27926 + - uid: 27933 components: - rot: -1.5707963267948966 rad pos: -6.5,-67.5 parent: 2 type: Transform - - uid: 27927 + - uid: 27934 components: - pos: 1.5,-62.5 parent: 2 type: Transform - - uid: 27928 + - uid: 27935 components: - pos: 1.5,-65.5 parent: 2 type: Transform - - uid: 27929 + - uid: 27936 components: - pos: -1.5,-62.5 parent: 2 type: Transform - - uid: 27930 + - uid: 27937 components: - pos: -17.5,-65.5 parent: 2 type: Transform - - uid: 27931 + - uid: 27938 components: - pos: -7.5,-62.5 parent: 2 type: Transform - - uid: 27932 + - uid: 27939 components: - pos: 12.5,-50.5 parent: 2 type: Transform - - uid: 27933 + - uid: 27940 components: - rot: 1.5707963267948966 rad pos: -13.5,-55.5 parent: 2 type: Transform - - uid: 27934 + - uid: 27941 components: - rot: 1.5707963267948966 rad pos: 30.5,-44.5 parent: 2 type: Transform - - uid: 27935 + - uid: 27942 components: - pos: -23.5,-7.5 parent: 2 type: Transform - - uid: 27936 + - uid: 27943 components: - pos: -21.5,-7.5 parent: 2 type: Transform - - uid: 27937 + - uid: 27944 components: - pos: -26.5,-7.5 parent: 2 type: Transform - - uid: 27938 + - uid: 27945 components: - pos: -16.5,-7.5 parent: 2 type: Transform - - uid: 27939 + - uid: 27946 components: - pos: -14.5,-7.5 parent: 2 type: Transform - - uid: 27940 + - uid: 27947 components: - pos: -12.5,-7.5 parent: 2 type: Transform - - uid: 27941 + - uid: 27948 components: - pos: -11.5,-5.5 parent: 2 type: Transform - - uid: 27942 + - uid: 27949 components: - pos: -11.5,-7.5 parent: 2 type: Transform - - uid: 27943 + - uid: 27950 components: - rot: 3.141592653589793 rad pos: -15.5,9.5 parent: 2 type: Transform - - uid: 27944 + - uid: 27951 components: - rot: 3.141592653589793 rad pos: -17.5,9.5 parent: 2 type: Transform - - uid: 27945 + - uid: 27952 components: - rot: 3.141592653589793 rad pos: 23.5,-14.5 parent: 2 type: Transform - - uid: 27946 + - uid: 27953 components: - rot: 3.141592653589793 rad pos: 23.5,-13.5 parent: 2 type: Transform - - uid: 27947 + - uid: 27954 components: - rot: 3.141592653589793 rad pos: 17.5,-15.5 parent: 2 type: Transform - - uid: 27948 + - uid: 27955 components: - rot: 3.141592653589793 rad pos: 16.5,-15.5 parent: 2 type: Transform - - uid: 27949 + - uid: 27956 components: - rot: 3.141592653589793 rad pos: 22.5,-7.5 parent: 2 type: Transform - - uid: 27950 + - uid: 27957 components: - rot: 3.141592653589793 rad pos: 23.5,-9.5 parent: 2 type: Transform - - uid: 27951 + - uid: 27958 components: - rot: -1.5707963267948966 rad pos: 19.5,22.5 parent: 2 type: Transform - - uid: 27952 + - uid: 27959 components: - pos: 37.5,-31.5 parent: 2 type: Transform - - uid: 27953 + - uid: 27960 components: - pos: 28.5,-3.5 parent: 2 type: Transform - - uid: 27954 + - uid: 27961 components: - pos: -7.5,-34.5 parent: 2 type: Transform - - uid: 27955 + - uid: 27962 components: - pos: -20.5,-74.5 parent: 2 type: Transform - - uid: 27956 + - uid: 27963 components: - rot: -1.5707963267948966 rad pos: -17.5,-51.5 parent: 2 type: Transform - - uid: 27957 + - uid: 27964 components: - pos: 41.5,-52.5 parent: 2 type: Transform - - uid: 27958 + - uid: 27965 components: - pos: 13.5,-52.5 parent: 2 type: Transform - - uid: 27959 + - uid: 27966 components: - rot: -1.5707963267948966 rad pos: 37.5,-37.5 parent: 2 type: Transform - - uid: 27960 + - uid: 27967 components: - pos: 17.5,-28.5 parent: 2 type: Transform - - uid: 27961 + - uid: 27968 components: - pos: -12.5,-70.5 parent: 2 type: Transform - - uid: 27962 + - uid: 27969 components: - pos: -26.5,-70.5 parent: 2 type: Transform - - uid: 27963 + - uid: 27970 components: - pos: -24.5,-68.5 parent: 2 type: Transform - - uid: 27964 + - uid: 27971 components: - pos: 7.5,-44.5 parent: 2 type: Transform - - uid: 27965 + - uid: 27972 components: - rot: 1.5707963267948966 rad pos: 0.5,-12.5 parent: 2 type: Transform - - uid: 27966 + - uid: 27973 components: - rot: 1.5707963267948966 rad pos: 0.5,-10.5 parent: 2 type: Transform - - uid: 27967 + - uid: 27974 components: - rot: 1.5707963267948966 rad pos: 0.5,-9.5 parent: 2 type: Transform - - uid: 27968 + - uid: 27975 components: - pos: -8.5,14.5 parent: 2 type: Transform - - uid: 27969 + - uid: 27976 components: - rot: -1.5707963267948966 rad pos: 37.5,-34.5 parent: 2 type: Transform - - uid: 27970 + - uid: 27977 components: - pos: -6.5,-14.5 parent: 2 type: Transform - - uid: 27971 + - uid: 27978 components: - pos: -6.5,-28.5 parent: 2 type: Transform - - uid: 27972 + - uid: 27979 components: - pos: -22.5,-19.5 parent: 2 type: Transform - - uid: 27973 + - uid: 27980 components: - pos: -21.5,-19.5 parent: 2 type: Transform - - uid: 27974 + - uid: 27981 components: - pos: 37.5,-57.5 parent: 2 type: Transform - - uid: 27975 + - uid: 27982 components: - rot: -1.5707963267948966 rad pos: 8.5,-45.5 parent: 2 type: Transform - - uid: 27976 + - uid: 27983 components: - rot: 1.5707963267948966 rad pos: 5.5,-11.5 parent: 2 type: Transform - - uid: 27977 + - uid: 27984 components: - pos: -1.5,5.5 parent: 2 type: Transform - - uid: 27978 + - uid: 27985 components: - rot: 1.5707963267948966 rad pos: -15.5,-28.5 parent: 2 type: Transform - - uid: 27979 + - uid: 27986 components: - rot: -1.5707963267948966 rad pos: 9.5,-3.5 parent: 2 type: Transform - - uid: 27980 + - uid: 27987 components: - pos: 5.5,-5.5 parent: 2 type: Transform - - uid: 27981 + - uid: 27988 components: - rot: 1.5707963267948966 rad pos: -12.5,-20.5 parent: 2 type: Transform - - uid: 27982 + - uid: 27989 components: - rot: -1.5707963267948966 rad pos: 8.5,-47.5 parent: 2 type: Transform - - uid: 27983 + - uid: 27990 components: - pos: -3.5,-72.5 parent: 2 type: Transform - - uid: 27984 + - uid: 27991 components: - pos: -0.5,-72.5 parent: 2 type: Transform - - uid: 27985 + - uid: 27992 components: - pos: -13.5,-28.5 parent: 2 type: Transform - - uid: 27986 + - uid: 27993 components: - pos: -11.5,-6.5 parent: 2 type: Transform - - uid: 27987 + - uid: 27994 components: - rot: -1.5707963267948966 rad pos: -13.5,35.5 parent: 2 type: Transform - - uid: 27988 + - uid: 27995 components: - pos: 7.5,-13.5 parent: 2 type: Transform - - uid: 27989 + - uid: 27996 components: - rot: -1.5707963267948966 rad pos: 19.5,21.5 parent: 2 type: Transform - - uid: 27990 + - uid: 27997 components: - pos: 11.5,-48.5 parent: 2 type: Transform - - uid: 27991 + - uid: 27998 components: - rot: 3.141592653589793 rad pos: -2.5,9.5 parent: 2 type: Transform - - uid: 27992 + - uid: 27999 components: - pos: 10.5,-48.5 parent: 2 type: Transform - - uid: 27993 + - uid: 28000 components: - pos: 7.5,-56.5 parent: 2 type: Transform - - uid: 27994 + - uid: 28001 components: - pos: 7.5,-57.5 parent: 2 type: Transform - - uid: 27995 + - uid: 28002 components: - rot: -1.5707963267948966 rad pos: 13.5,-7.5 parent: 2 type: Transform - - uid: 27996 + - uid: 28003 components: - rot: -1.5707963267948966 rad pos: -9.5,14.5 parent: 2 type: Transform - - uid: 27997 + - uid: 28004 components: - pos: -6.5,-3.5 parent: 2 type: Transform - - uid: 27998 + - uid: 28005 components: - pos: -7.5,-3.5 parent: 2 type: Transform - - uid: 27999 + - uid: 28006 components: - pos: -8.5,-3.5 parent: 2 type: Transform - - uid: 28000 + - uid: 28007 components: - pos: -6.5,-2.5 parent: 2 type: Transform - - uid: 28001 + - uid: 28008 components: - rot: 3.141592653589793 rad pos: 2.5,-51.5 parent: 2 type: Transform - - uid: 28002 + - uid: 28009 components: - pos: 13.5,-2.5 parent: 2 type: Transform - - uid: 28003 + - uid: 28010 components: - pos: 12.5,-47.5 parent: 2 type: Transform - - uid: 28004 + - uid: 28011 components: - rot: 3.141592653589793 rad pos: 60.5,14.5 parent: 2 type: Transform - - uid: 28005 + - uid: 28012 components: - rot: 1.5707963267948966 rad pos: 1.5,-13.5 parent: 2 type: Transform - - uid: 28006 + - uid: 28013 components: - pos: -2.5,-7.5 parent: 2 type: Transform - - uid: 28007 + - uid: 28014 components: - pos: 5.5,-2.5 parent: 2 type: Transform - - uid: 28008 + - uid: 28015 components: - rot: 3.141592653589793 rad pos: 62.5,17.5 parent: 2 type: Transform - - uid: 28009 + - uid: 28016 components: - rot: 1.5707963267948966 rad pos: 5.5,-12.5 parent: 2 type: Transform - - uid: 28010 + - uid: 28017 components: - pos: 15.5,-3.5 parent: 2 type: Transform - - uid: 28011 + - uid: 28018 components: - pos: 12.5,-2.5 parent: 2 type: Transform - - uid: 28012 + - uid: 28019 components: - pos: -11.5,1.5 parent: 2 type: Transform - - uid: 28013 + - uid: 28020 components: - pos: 2.5,-28.5 parent: 2 type: Transform - - uid: 28014 + - uid: 28021 components: - pos: 11.5,-15.5 parent: 2 type: Transform - - uid: 28015 + - uid: 28022 components: - pos: 42.5,-57.5 parent: 2 type: Transform - - uid: 28016 + - uid: 28023 components: - rot: 1.5707963267948966 rad pos: -4.5,-62.5 parent: 2 type: Transform - - uid: 28017 + - uid: 28024 components: - rot: 3.141592653589793 rad pos: -12.5,-51.5 parent: 2 type: Transform - - uid: 28018 + - uid: 28025 components: - pos: 40.5,-27.5 parent: 2 type: Transform - - uid: 28019 + - uid: 28026 components: - pos: 13.5,-28.5 parent: 2 type: Transform - - uid: 28020 + - uid: 28027 components: - pos: 18.5,-31.5 parent: 2 type: Transform - - uid: 28021 + - uid: 28028 components: - pos: -21.5,-81.5 parent: 2 type: Transform - - uid: 28022 + - uid: 28029 components: - pos: -4.5,13.5 parent: 2 type: Transform - - uid: 28023 + - uid: 28030 components: - rot: 3.141592653589793 rad pos: 23.5,10.5 parent: 2 type: Transform - - uid: 28024 + - uid: 28031 components: - rot: 3.141592653589793 rad pos: 22.5,9.5 parent: 2 type: Transform - - uid: 28025 + - uid: 28032 components: - rot: 3.141592653589793 rad pos: 60.5,17.5 parent: 2 type: Transform - - uid: 28026 + - uid: 28033 components: - pos: -6.5,-6.5 parent: 2 type: Transform - - uid: 28027 + - uid: 28034 components: - pos: 15.5,-6.5 parent: 2 type: Transform - - uid: 28028 + - uid: 28035 components: - pos: 15.5,-2.5 parent: 2 type: Transform - - uid: 28029 + - uid: 28036 components: - rot: 1.5707963267948966 rad pos: 27.5,-53.5 parent: 2 type: Transform - - uid: 28030 + - uid: 28037 components: - pos: 27.5,-56.5 parent: 2 type: Transform - - uid: 28031 + - uid: 28038 components: - pos: 27.5,-50.5 parent: 2 type: Transform - - uid: 28032 + - uid: 28039 components: - pos: 23.5,-50.5 parent: 2 type: Transform - - uid: 28033 + - uid: 28040 components: - pos: 23.5,-54.5 parent: 2 type: Transform - - uid: 28034 + - uid: 28041 components: - pos: 23.5,-52.5 parent: 2 type: Transform - - uid: 28035 + - uid: 28042 components: - pos: 23.5,-51.5 parent: 2 type: Transform - - uid: 28036 + - uid: 28043 components: - pos: 23.5,-49.5 parent: 2 type: Transform - - uid: 28037 + - uid: 28044 components: - rot: 3.141592653589793 rad pos: 22.5,-51.5 parent: 2 type: Transform - - uid: 28038 + - uid: 28045 components: - pos: -17.5,-31.5 parent: 2 type: Transform - - uid: 28039 + - uid: 28046 components: - rot: -1.5707963267948966 rad pos: 8.5,-3.5 parent: 2 type: Transform - - uid: 28040 + - uid: 28047 components: - pos: 19.5,-2.5 parent: 2 type: Transform - - uid: 28041 + - uid: 28048 components: - pos: 24.5,5.5 parent: 2 type: Transform - - uid: 28042 + - uid: 28049 components: - pos: 16.5,-7.5 parent: 2 type: Transform - - uid: 28043 + - uid: 28050 components: - pos: -9.5,-16.5 parent: 2 type: Transform - - uid: 28044 + - uid: 28051 components: - pos: 2.5,10.5 parent: 2 type: Transform - - uid: 28045 + - uid: 28052 components: - pos: 14.5,-44.5 parent: 2 type: Transform - - uid: 28046 + - uid: 28053 components: - rot: 3.141592653589793 rad pos: 33.5,-7.5 parent: 2 type: Transform - - uid: 28047 + - uid: 28054 components: - rot: 3.141592653589793 rad pos: 35.5,-7.5 parent: 2 type: Transform - - uid: 28048 + - uid: 28055 components: - rot: 3.141592653589793 rad pos: 31.5,-7.5 parent: 2 type: Transform - - uid: 28049 + - uid: 28056 components: - rot: 3.141592653589793 rad pos: 20.5,-7.5 parent: 2 type: Transform - - uid: 28050 + - uid: 28057 components: - rot: 3.141592653589793 rad pos: 22.5,-15.5 parent: 2 type: Transform - - uid: 28051 + - uid: 28058 components: - rot: 3.141592653589793 rad pos: 37.5,-16.5 parent: 2 type: Transform - - uid: 28052 + - uid: 28059 components: - rot: 3.141592653589793 rad pos: 37.5,-15.5 parent: 2 type: Transform - - uid: 28053 + - uid: 28060 components: - rot: 3.141592653589793 rad pos: 36.5,-15.5 parent: 2 type: Transform - - uid: 28054 + - uid: 28061 components: - pos: 59.5,0.5 parent: 2 type: Transform - - uid: 28055 + - uid: 28062 components: - rot: 3.141592653589793 rad pos: -12.5,9.5 parent: 2 type: Transform - - uid: 28056 + - uid: 28063 components: - pos: -27.5,10.5 parent: 2 type: Transform - - uid: 28057 + - uid: 28064 components: - pos: -21.5,9.5 parent: 2 type: Transform - - uid: 28058 + - uid: 28065 components: - pos: -14.5,-32.5 parent: 2 type: Transform - - uid: 28059 + - uid: 28066 components: - pos: -21.5,14.5 parent: 2 type: Transform - - uid: 28060 + - uid: 28067 components: - rot: 3.141592653589793 rad pos: -16.5,9.5 parent: 2 type: Transform - - uid: 28061 + - uid: 28068 components: - rot: 3.141592653589793 rad pos: -14.5,9.5 parent: 2 type: Transform - - uid: 28062 + - uid: 28069 components: - pos: -10.5,-7.5 parent: 2 type: Transform - - uid: 28063 + - uid: 28070 components: - pos: -11.5,-4.5 parent: 2 type: Transform - - uid: 28064 + - uid: 28071 components: - pos: -15.5,-7.5 parent: 2 type: Transform - - uid: 28065 + - uid: 28072 components: - pos: -17.5,-7.5 parent: 2 type: Transform - - uid: 28066 + - uid: 28073 components: - pos: -21.5,-8.5 parent: 2 type: Transform - - uid: 28067 + - uid: 28074 components: - pos: -22.5,-7.5 parent: 2 type: Transform - - uid: 28068 + - uid: 28075 components: - pos: -24.5,-7.5 parent: 2 type: Transform - - uid: 28069 + - uid: 28076 components: - pos: -17.5,-8.5 parent: 2 type: Transform - - uid: 28070 + - uid: 28077 components: - rot: -1.5707963267948966 rad pos: -23.5,-18.5 parent: 2 type: Transform - - uid: 28071 + - uid: 28078 components: - rot: 3.141592653589793 rad pos: 23.5,-15.5 parent: 2 type: Transform - - uid: 28072 + - uid: 28079 components: - rot: 3.141592653589793 rad pos: 23.5,-10.5 parent: 2 type: Transform - - uid: 28073 + - uid: 28080 components: - pos: 19.5,-3.5 parent: 2 type: Transform - - uid: 28074 + - uid: 28081 components: - rot: -1.5707963267948966 rad pos: 13.5,-9.5 parent: 2 type: Transform - - uid: 28075 + - uid: 28082 components: - pos: 1.5,10.5 parent: 2 type: Transform - - uid: 28076 + - uid: 28083 components: - pos: -11.5,-2.5 parent: 2 type: Transform - - uid: 28077 + - uid: 28084 components: - pos: -6.5,-7.5 parent: 2 type: Transform - - uid: 28078 + - uid: 28085 components: - pos: -8.5,-2.5 parent: 2 type: Transform - - uid: 28079 + - uid: 28086 components: - pos: -17.5,-9.5 parent: 2 type: Transform - - uid: 28080 + - uid: 28087 components: - pos: -17.5,-10.5 parent: 2 type: Transform - - uid: 28081 + - uid: 28088 components: - pos: -6.5,-17.5 parent: 2 type: Transform - - uid: 28082 + - uid: 28089 components: - rot: 1.5707963267948966 rad pos: -6.5,-20.5 parent: 2 type: Transform - - uid: 28083 + - uid: 28090 components: - pos: 35.5,-6.5 parent: 2 type: Transform - - uid: 28084 + - uid: 28091 components: - pos: 45.5,-0.5 parent: 2 type: Transform - - uid: 28085 + - uid: 28092 components: - pos: -2.5,-15.5 parent: 2 type: Transform - - uid: 28086 + - uid: 28093 components: - pos: -1.5,-15.5 parent: 2 type: Transform - - uid: 28087 + - uid: 28094 components: - pos: -6.5,-4.5 parent: 2 type: Transform - - uid: 28088 + - uid: 28095 components: - pos: -2.5,-2.5 parent: 2 type: Transform - - uid: 28089 + - uid: 28096 components: - rot: 1.5707963267948966 rad pos: -6.5,-23.5 parent: 2 type: Transform - - uid: 28090 + - uid: 28097 components: - rot: 1.5707963267948966 rad pos: -6.5,-24.5 parent: 2 type: Transform - - uid: 28091 + - uid: 28098 components: - rot: 1.5707963267948966 rad pos: -10.5,-24.5 parent: 2 type: Transform - - uid: 28092 + - uid: 28099 components: - rot: 3.141592653589793 rad pos: 1.5,-44.5 parent: 2 type: Transform - - uid: 28093 + - uid: 28100 components: - rot: 3.141592653589793 rad pos: -10.5,-45.5 parent: 2 type: Transform - - uid: 28094 + - uid: 28101 components: - rot: 1.5707963267948966 rad pos: 29.5,-44.5 parent: 2 type: Transform - - uid: 28095 + - uid: 28102 components: - pos: -26.5,-8.5 parent: 2 type: Transform - - uid: 28096 + - uid: 28103 components: - rot: -1.5707963267948966 rad pos: 8.5,-44.5 parent: 2 type: Transform - - uid: 28097 + - uid: 28104 components: - pos: -8.5,-28.5 parent: 2 type: Transform - - uid: 28098 + - uid: 28105 components: - rot: 3.141592653589793 rad pos: 18.5,8.5 parent: 2 type: Transform - - uid: 28099 + - uid: 28106 components: - pos: 16.5,-44.5 parent: 2 type: Transform - - uid: 28100 + - uid: 28107 components: - pos: 16.5,-46.5 parent: 2 type: Transform - - uid: 28101 + - uid: 28108 components: - pos: 12.5,-28.5 parent: 2 type: Transform - - uid: 28102 + - uid: 28109 components: - pos: 11.5,-28.5 parent: 2 type: Transform - - uid: 28103 + - uid: 28110 components: - pos: -1.5,-10.5 parent: 2 type: Transform - - uid: 28104 + - uid: 28111 components: - pos: 6.5,-28.5 parent: 2 type: Transform - - uid: 28105 + - uid: 28112 components: - pos: 12.5,-46.5 parent: 2 type: Transform - - uid: 28106 + - uid: 28113 components: - pos: 12.5,-45.5 parent: 2 type: Transform - - uid: 28107 + - uid: 28114 components: - pos: -9.5,-28.5 parent: 2 type: Transform - - uid: 28108 + - uid: 28115 components: - rot: 1.5707963267948966 rad pos: 5.5,-8.5 parent: 2 type: Transform - - uid: 28109 + - uid: 28116 components: - rot: 1.5707963267948966 rad pos: 5.5,-9.5 parent: 2 type: Transform - - uid: 28110 + - uid: 28117 components: - pos: 9.5,-48.5 parent: 2 type: Transform - - uid: 28111 + - uid: 28118 components: - pos: 2.5,-44.5 parent: 2 type: Transform - - uid: 28112 + - uid: 28119 components: - pos: 8.5,-48.5 parent: 2 type: Transform - - uid: 28113 + - uid: 28120 components: - rot: 1.5707963267948966 rad pos: -13.5,-24.5 parent: 2 type: Transform - - uid: 28114 + - uid: 28121 components: - pos: -10.5,-34.5 parent: 2 type: Transform - - uid: 28115 + - uid: 28122 components: - pos: 35.5,-44.5 parent: 2 type: Transform - - uid: 28116 + - uid: 28123 components: - pos: 41.5,-49.5 parent: 2 type: Transform - - uid: 28117 + - uid: 28124 components: - pos: 39.5,-47.5 parent: 2 type: Transform - - uid: 28118 + - uid: 28125 components: - pos: 39.5,-44.5 parent: 2 type: Transform - - uid: 28119 + - uid: 28126 components: - pos: 41.5,-48.5 parent: 2 type: Transform - - uid: 28120 + - uid: 28127 components: - pos: -3.5,-51.5 parent: 2 type: Transform - - uid: 28121 + - uid: 28128 components: - pos: -5.5,-51.5 parent: 2 type: Transform - - uid: 28122 + - uid: 28129 components: - pos: -6.5,-51.5 parent: 2 type: Transform - - uid: 28123 + - uid: 28130 components: - pos: -2.5,-50.5 parent: 2 type: Transform - - uid: 28124 + - uid: 28131 components: - rot: 3.141592653589793 rad pos: 1.5,-45.5 parent: 2 type: Transform - - uid: 28125 + - uid: 28132 components: - pos: 7.5,-54.5 parent: 2 type: Transform - - uid: 28126 + - uid: 28133 components: - rot: -1.5707963267948966 rad pos: -14.5,-40.5 parent: 2 type: Transform - - uid: 28127 + - uid: 28134 components: - rot: -1.5707963267948966 rad pos: -12.5,-40.5 parent: 2 type: Transform - - uid: 28128 + - uid: 28135 components: - rot: 1.5707963267948966 rad pos: -4.5,-58.5 parent: 2 type: Transform - - uid: 28129 + - uid: 28136 components: - rot: 1.5707963267948966 rad pos: -1.5,-58.5 parent: 2 type: Transform - - uid: 28130 + - uid: 28137 components: - rot: 1.5707963267948966 rad pos: -7.5,-58.5 parent: 2 type: Transform - - uid: 28131 + - uid: 28138 components: - rot: 1.5707963267948966 rad pos: 4.5,-55.5 parent: 2 type: Transform - - uid: 28132 + - uid: 28139 components: - rot: 1.5707963267948966 rad pos: -10.5,-55.5 parent: 2 type: Transform - - uid: 28133 + - uid: 28140 components: - rot: 1.5707963267948966 rad pos: -13.5,-58.5 parent: 2 type: Transform - - uid: 28134 + - uid: 28141 components: - rot: 1.5707963267948966 rad pos: 4.5,-58.5 parent: 2 type: Transform - - uid: 28135 + - uid: 28142 components: - rot: 1.5707963267948966 rad pos: -1.5,-55.5 parent: 2 type: Transform - - uid: 28136 + - uid: 28143 components: - rot: 1.5707963267948966 rad pos: -4.5,-55.5 parent: 2 type: Transform - - uid: 28137 + - uid: 28144 components: - rot: 1.5707963267948966 rad pos: 1.5,-58.5 parent: 2 type: Transform - - uid: 28138 + - uid: 28145 components: - rot: 1.5707963267948966 rad pos: -7.5,-55.5 parent: 2 type: Transform - - uid: 28139 + - uid: 28146 components: - rot: 3.141592653589793 rad pos: -11.5,-51.5 parent: 2 type: Transform - - uid: 28140 + - uid: 28147 components: - rot: 3.141592653589793 rad pos: -14.5,-51.5 parent: 2 type: Transform - - uid: 28141 + - uid: 28148 components: - rot: 3.141592653589793 rad pos: -15.5,-51.5 parent: 2 type: Transform - - uid: 28142 + - uid: 28149 components: - pos: 9.5,-51.5 parent: 2 type: Transform - - uid: 28143 + - uid: 28150 components: - pos: 7.5,-52.5 parent: 2 type: Transform - - uid: 28144 + - uid: 28151 components: - pos: 9.5,-53.5 parent: 2 type: Transform - - uid: 28145 + - uid: 28152 components: - pos: 11.5,-50.5 parent: 2 type: Transform - - uid: 28146 + - uid: 28153 components: - pos: -17.5,-66.5 parent: 2 type: Transform - - uid: 28147 + - uid: 28154 components: - pos: -17.5,-62.5 parent: 2 type: Transform - - uid: 28148 + - uid: 28155 components: - pos: -16.5,-62.5 parent: 2 type: Transform - - uid: 28149 + - uid: 28156 components: - pos: -15.5,-62.5 parent: 2 type: Transform - - uid: 28150 + - uid: 28157 components: - pos: -14.5,-62.5 parent: 2 type: Transform - - uid: 28151 + - uid: 28158 components: - pos: -12.5,-62.5 parent: 2 type: Transform - - uid: 28152 + - uid: 28159 components: - pos: -11.5,-62.5 parent: 2 type: Transform - - uid: 28153 + - uid: 28160 components: - pos: 1.5,-66.5 parent: 2 type: Transform - - uid: 28154 + - uid: 28161 components: - pos: 1.5,-68.5 parent: 2 type: Transform - - uid: 28155 + - uid: 28162 components: - pos: 0.5,-68.5 parent: 2 type: Transform - - uid: 28156 + - uid: 28163 components: - pos: -0.5,-68.5 parent: 2 type: Transform - - uid: 28157 + - uid: 28164 components: - pos: -2.5,-68.5 parent: 2 type: Transform - - uid: 28158 + - uid: 28165 components: - pos: -3.5,-68.5 parent: 2 type: Transform - - uid: 28159 + - uid: 28166 components: - pos: -4.5,-68.5 parent: 2 type: Transform - - uid: 28160 + - uid: 28167 components: - pos: -4.5,-67.5 parent: 2 type: Transform - - uid: 28161 + - uid: 28168 components: - pos: 5.5,-62.5 parent: 2 type: Transform - - uid: 28162 + - uid: 28169 components: - pos: 5.5,-64.5 parent: 2 type: Transform - - uid: 28163 + - uid: 28170 components: - pos: 5.5,-65.5 parent: 2 type: Transform - - uid: 28164 + - uid: 28171 components: - pos: 5.5,-66.5 parent: 2 type: Transform - - uid: 28165 + - uid: 28172 components: - pos: 4.5,-66.5 parent: 2 type: Transform - - uid: 28166 + - uid: 28173 components: - pos: 3.5,-66.5 parent: 2 type: Transform - - uid: 28167 + - uid: 28174 components: - pos: 2.5,-66.5 parent: 2 type: Transform - - uid: 28168 + - uid: 28175 components: - rot: -1.5707963267948966 rad pos: -11.5,-68.5 parent: 2 type: Transform - - uid: 28169 + - uid: 28176 components: - rot: -1.5707963267948966 rad pos: -7.5,-68.5 parent: 2 type: Transform - - uid: 28170 + - uid: 28177 components: - pos: 56.5,-32.5 parent: 2 type: Transform - - uid: 28171 + - uid: 28178 components: - pos: 11.5,-54.5 parent: 2 type: Transform - - uid: 28172 + - uid: 28179 components: - pos: 10.5,-54.5 parent: 2 type: Transform - - uid: 28173 + - uid: 28180 components: - pos: -21.5,-62.5 parent: 2 type: Transform - - uid: 28174 + - uid: 28181 components: - pos: -20.5,-62.5 parent: 2 type: Transform - - uid: 28175 + - uid: 28182 components: - pos: -18.5,-62.5 parent: 2 type: Transform - - uid: 28176 + - uid: 28183 components: - pos: 12.5,-54.5 parent: 2 type: Transform - - uid: 28177 + - uid: 28184 components: - pos: 14.5,-56.5 parent: 2 type: Transform - - uid: 28178 + - uid: 28185 components: - pos: 14.5,-54.5 parent: 2 type: Transform - - uid: 28179 + - uid: 28186 components: - pos: 13.5,-60.5 parent: 2 type: Transform - - uid: 28180 + - uid: 28187 components: - pos: 13.5,-61.5 parent: 2 type: Transform - - uid: 28181 + - uid: 28188 components: - pos: 13.5,-62.5 parent: 2 type: Transform - - uid: 28182 + - uid: 28189 components: - pos: 13.5,-64.5 parent: 2 type: Transform - - uid: 28183 + - uid: 28190 components: - pos: 12.5,-65.5 parent: 2 type: Transform - - uid: 28184 + - uid: 28191 components: - pos: 10.5,-65.5 parent: 2 type: Transform - - uid: 28185 + - uid: 28192 components: - pos: 10.5,-66.5 parent: 2 type: Transform - - uid: 28186 + - uid: 28193 components: - pos: -8.5,-20.5 parent: 2 type: Transform - - uid: 28187 + - uid: 28194 components: - rot: -1.5707963267948966 rad pos: -10.5,-20.5 parent: 2 type: Transform - - uid: 28188 + - uid: 28195 components: - rot: -1.5707963267948966 rad pos: -9.5,-20.5 parent: 2 type: Transform - - uid: 28189 + - uid: 28196 components: - rot: -1.5707963267948966 rad pos: -7.5,-20.5 parent: 2 type: Transform - - uid: 28190 + - uid: 28197 components: - rot: -1.5707963267948966 rad pos: -14.5,-21.5 parent: 2 type: Transform - - uid: 28191 + - uid: 28198 components: - rot: -1.5707963267948966 rad pos: -14.5,-23.5 parent: 2 type: Transform - - uid: 28192 + - uid: 28199 components: - rot: -1.5707963267948966 rad pos: -14.5,-24.5 parent: 2 type: Transform - - uid: 28193 + - uid: 28200 components: - pos: 38.5,-52.5 parent: 2 type: Transform - - uid: 28194 + - uid: 28201 components: - pos: 37.5,-52.5 parent: 2 type: Transform - - uid: 28195 + - uid: 28202 components: - pos: -7.5,-16.5 parent: 2 type: Transform - - uid: 28196 + - uid: 28203 components: - pos: -6.5,-12.5 parent: 2 type: Transform - - uid: 28197 + - uid: 28204 components: - rot: -1.5707963267948966 rad pos: -14.5,-13.5 parent: 2 type: Transform - - uid: 28198 + - uid: 28205 components: - rot: -1.5707963267948966 rad pos: -15.5,-44.5 parent: 2 type: Transform - - uid: 28199 + - uid: 28206 components: - pos: 17.5,-30.5 parent: 2 type: Transform - - uid: 28200 + - uid: 28207 components: - pos: -21.5,-63.5 parent: 2 type: Transform - - uid: 28201 + - uid: 28208 components: - pos: -21.5,-65.5 parent: 2 type: Transform - - uid: 28202 + - uid: 28209 components: - pos: -26.5,-68.5 parent: 2 type: Transform - - uid: 28203 + - uid: 28210 components: - pos: -26.5,-74.5 parent: 2 type: Transform - - uid: 28204 + - uid: 28211 components: - pos: -25.5,-74.5 parent: 2 type: Transform - - uid: 28205 + - uid: 28212 components: - pos: -15.5,-70.5 parent: 2 type: Transform - - uid: 28206 + - uid: 28213 components: - pos: -16.5,-70.5 parent: 2 type: Transform - - uid: 28207 + - uid: 28214 components: - pos: -16.5,-73.5 parent: 2 type: Transform - - uid: 28208 + - uid: 28215 components: - pos: -21.5,-76.5 parent: 2 type: Transform - - uid: 28209 + - uid: 28216 components: - pos: -6.5,-72.5 parent: 2 type: Transform - - uid: 28210 + - uid: 28217 components: - pos: 36.5,-49.5 parent: 2 type: Transform - - uid: 28211 + - uid: 28218 components: - pos: -7.5,-72.5 parent: 2 type: Transform - - uid: 28212 + - uid: 28219 components: - pos: -10.5,-72.5 parent: 2 type: Transform - - uid: 28213 + - uid: 28220 components: - pos: -10.5,-73.5 parent: 2 type: Transform - - uid: 28214 + - uid: 28221 components: - pos: -9.5,-73.5 parent: 2 type: Transform - - uid: 28215 + - uid: 28222 components: - pos: -7.5,-73.5 parent: 2 type: Transform - - uid: 28216 + - uid: 28223 components: - pos: 3.5,-70.5 parent: 2 type: Transform - - uid: 28217 + - uid: 28224 components: - pos: 3.5,-68.5 parent: 2 type: Transform - - uid: 28218 + - uid: 28225 components: - pos: 4.5,-68.5 parent: 2 type: Transform - - uid: 28219 + - uid: 28226 components: - pos: 5.5,-68.5 parent: 2 type: Transform - - uid: 28220 + - uid: 28227 components: - pos: 7.5,-67.5 parent: 2 type: Transform - - uid: 28221 + - uid: 28228 components: - pos: 8.5,-66.5 parent: 2 type: Transform - - uid: 28222 + - uid: 28229 components: - pos: -21.5,-74.5 parent: 2 type: Transform - - uid: 28223 + - uid: 28230 components: - pos: -13.5,-69.5 parent: 2 type: Transform - - uid: 28224 + - uid: 28231 components: - pos: -21.5,-82.5 parent: 2 type: Transform - - uid: 28225 + - uid: 28232 components: - pos: -21.5,-83.5 parent: 2 type: Transform - - uid: 28226 + - uid: 28233 components: - pos: 10.5,-13.5 parent: 2 type: Transform - - uid: 28227 + - uid: 28234 components: - pos: -10.5,-63.5 parent: 2 type: Transform - - uid: 28228 + - uid: 28235 components: - pos: -10.5,-65.5 parent: 2 type: Transform - - uid: 28229 + - uid: 28236 components: - rot: 1.5707963267948966 rad pos: -4.5,-65.5 parent: 2 type: Transform - - uid: 28230 + - uid: 28237 components: - rot: 1.5707963267948966 rad pos: -4.5,-66.5 parent: 2 type: Transform - - uid: 28231 + - uid: 28238 components: - pos: 40.5,-52.5 parent: 2 type: Transform - - uid: 28232 + - uid: 28239 components: - rot: 1.5707963267948966 rad pos: -4.5,-64.5 parent: 2 type: Transform - - uid: 28233 + - uid: 28240 components: - rot: 1.5707963267948966 rad pos: -4.5,-63.5 parent: 2 type: Transform - - uid: 28234 + - uid: 28241 components: - pos: -6.5,-35.5 parent: 2 type: Transform - - uid: 28235 + - uid: 28242 components: - pos: -13.5,-32.5 parent: 2 type: Transform - - uid: 28236 + - uid: 28243 components: - pos: -25.5,-7.5 parent: 2 type: Transform - - uid: 28237 + - uid: 28244 components: - rot: 3.141592653589793 rad pos: 21.5,-9.5 parent: 2 type: Transform - - uid: 28238 + - uid: 28245 components: - pos: 12.5,-13.5 parent: 2 type: Transform - - uid: 28239 + - uid: 28246 components: - pos: 3.5,-72.5 parent: 2 type: Transform - - uid: 28240 + - uid: 28247 components: - pos: 10.5,-68.5 parent: 2 type: Transform - - uid: 28241 + - uid: 28248 components: - pos: 7.5,-51.5 parent: 2 type: Transform - - uid: 28242 + - uid: 28249 components: - rot: 3.141592653589793 rad pos: 16.5,-14.5 parent: 2 type: Transform - - uid: 28243 + - uid: 28250 components: - rot: 1.5707963267948966 rad pos: 1.5,-55.5 parent: 2 type: Transform - - uid: 28244 + - uid: 28251 components: - rot: 1.5707963267948966 rad pos: -10.5,-58.5 parent: 2 type: Transform - - uid: 28245 + - uid: 28252 components: - pos: -5.5,9.5 parent: 2 type: Transform - - uid: 28246 + - uid: 28253 components: - rot: -1.5707963267948966 rad pos: 13.5,-6.5 parent: 2 type: Transform - - uid: 28247 + - uid: 28254 components: - pos: 9.5,-28.5 parent: 2 type: Transform - - uid: 28248 + - uid: 28255 components: - rot: 3.141592653589793 rad pos: 6.5,-3.5 parent: 2 type: Transform - - uid: 28249 + - uid: 28256 components: - pos: -6.5,12.5 parent: 2 type: Transform - - uid: 28250 + - uid: 28257 components: - rot: 3.141592653589793 rad pos: -1.5,13.5 parent: 2 type: Transform - - uid: 28251 + - uid: 28258 components: - pos: -5.5,11.5 parent: 2 type: Transform - - uid: 28252 + - uid: 28259 components: - pos: 17.5,-7.5 parent: 2 type: Transform - - uid: 28253 + - uid: 28260 components: - pos: -11.5,12.5 parent: 2 type: Transform - - uid: 28254 + - uid: 28261 components: - pos: -5.5,12.5 parent: 2 type: Transform - - uid: 28255 + - uid: 28262 components: - pos: -11.5,5.5 parent: 2 type: Transform - - uid: 28256 + - uid: 28263 components: - pos: 13.5,-51.5 parent: 2 type: Transform - - uid: 28257 + - uid: 28264 components: - pos: 24.5,-3.5 parent: 2 type: Transform - - uid: 28258 + - uid: 28265 components: - pos: 15.5,-7.5 parent: 2 type: Transform - - uid: 28259 + - uid: 28266 components: - rot: -1.5707963267948966 rad pos: 31.5,-0.5 parent: 2 type: Transform - - uid: 28260 + - uid: 28267 components: - pos: 20.5,5.5 parent: 2 type: Transform - - uid: 28261 + - uid: 28268 components: - rot: -1.5707963267948966 rad pos: 31.5,2.5 parent: 2 type: Transform - - uid: 28262 + - uid: 28269 components: - pos: -1.5,0.5 parent: 2 type: Transform - - uid: 28263 + - uid: 28270 components: - pos: -1.5,1.5 parent: 2 type: Transform - - uid: 28264 + - uid: 28271 components: - pos: 15.5,5.5 parent: 2 type: Transform - - uid: 28265 + - uid: 28272 components: - pos: 30.5,-1.5 parent: 2 type: Transform - - uid: 28266 + - uid: 28273 components: - rot: 3.141592653589793 rad pos: 23.5,11.5 parent: 2 type: Transform - - uid: 28267 + - uid: 28274 components: - pos: 19.5,4.5 parent: 2 type: Transform - - uid: 28268 + - uid: 28275 components: - rot: 1.5707963267948966 rad pos: 1.5,-8.5 parent: 2 type: Transform - - uid: 28269 + - uid: 28276 components: - pos: -1.5,4.5 parent: 2 type: Transform - - uid: 28270 + - uid: 28277 components: - rot: 1.5707963267948966 rad pos: -0.5,-8.5 parent: 2 type: Transform - - uid: 28271 + - uid: 28278 components: - rot: 1.5707963267948966 rad pos: 0.5,-8.5 parent: 2 type: Transform - - uid: 28272 + - uid: 28279 components: - pos: 14.5,4.5 parent: 2 type: Transform - - uid: 28273 + - uid: 28280 components: - rot: 1.5707963267948966 rad pos: 3.5,-13.5 parent: 2 type: Transform - - uid: 28274 + - uid: 28281 components: - rot: 1.5707963267948966 rad pos: 0.5,-11.5 parent: 2 type: Transform - - uid: 28275 + - uid: 28282 components: - pos: -5.5,4.5 parent: 2 type: Transform - - uid: 28276 + - uid: 28283 components: - pos: 13.5,4.5 parent: 2 type: Transform - - uid: 28277 + - uid: 28284 components: - pos: 5.5,-7.5 parent: 2 type: Transform - - uid: 28278 + - uid: 28285 components: - pos: 7.5,-3.5 parent: 2 type: Transform - - uid: 28279 + - uid: 28286 components: - pos: -13.5,-72.5 parent: 2 type: Transform - - uid: 28280 + - uid: 28287 components: - pos: 19.5,5.5 parent: 2 type: Transform - - uid: 28281 + - uid: 28288 components: - rot: 3.141592653589793 rad pos: 23.5,14.5 parent: 2 type: Transform - - uid: 28282 + - uid: 28289 components: - rot: 1.5707963267948966 rad pos: 2.5,-8.5 parent: 2 type: Transform - - uid: 28283 + - uid: 28290 components: - pos: -12.5,-28.5 parent: 2 type: Transform - - uid: 28284 + - uid: 28291 components: - pos: 15.5,-4.5 parent: 2 type: Transform - - uid: 28285 + - uid: 28292 components: - pos: 15.5,0.5 parent: 2 type: Transform - - uid: 28286 + - uid: 28293 components: - rot: 3.141592653589793 rad pos: -1.5,12.5 parent: 2 type: Transform - - uid: 28287 + - uid: 28294 components: - pos: 37.5,-38.5 parent: 2 type: Transform - - uid: 28288 + - uid: 28295 components: - rot: -1.5707963267948966 rad pos: -12.5,-76.5 parent: 2 type: Transform - - uid: 28289 + - uid: 28296 components: - rot: -1.5707963267948966 rad pos: -4.5,-76.5 parent: 2 type: Transform - - uid: 28290 + - uid: 28297 components: - rot: -1.5707963267948966 rad pos: -3.5,-79.5 parent: 2 type: Transform - - uid: 28291 + - uid: 28298 components: - rot: -1.5707963267948966 rad pos: -2.5,-76.5 parent: 2 type: Transform - - uid: 28292 + - uid: 28299 components: - rot: 1.5707963267948966 rad pos: 27.5,-52.5 parent: 2 type: Transform - - uid: 28293 + - uid: 28300 components: - pos: 8.5,4.5 parent: 2 type: Transform - - uid: 28294 + - uid: 28301 components: - pos: 37.5,-32.5 parent: 2 type: Transform - - uid: 28295 + - uid: 28302 components: - pos: 39.5,-27.5 parent: 2 type: Transform - - uid: 28296 + - uid: 28303 components: - pos: 39.5,-31.5 parent: 2 type: Transform - - uid: 28297 + - uid: 28304 components: - rot: -1.5707963267948966 rad pos: -17.5,-40.5 parent: 2 type: Transform - - uid: 28298 + - uid: 28305 components: - pos: -17.5,-39.5 parent: 2 type: Transform - - uid: 28299 + - uid: 28306 components: - rot: -1.5707963267948966 rad pos: -3.5,-77.5 parent: 2 type: Transform - - uid: 28300 + - uid: 28307 components: - rot: -1.5707963267948966 rad pos: -2.5,-81.5 parent: 2 type: Transform - - uid: 28301 + - uid: 28308 components: - rot: -1.5707963267948966 rad pos: -2.5,-80.5 parent: 2 type: Transform - - uid: 28302 + - uid: 28309 components: - rot: -1.5707963267948966 rad pos: -3.5,-80.5 parent: 2 type: Transform - - uid: 28303 + - uid: 28310 components: - rot: -1.5707963267948966 rad pos: -6.5,-76.5 parent: 2 type: Transform - - uid: 28304 + - uid: 28311 components: - pos: 7.5,4.5 parent: 2 type: Transform - - uid: 28305 + - uid: 28312 components: - rot: 1.5707963267948966 rad pos: -6.5,-22.5 parent: 2 type: Transform - - uid: 28306 + - uid: 28313 components: - pos: 38.5,-31.5 parent: 2 type: Transform - - uid: 28307 + - uid: 28314 components: - pos: -6.5,-18.5 parent: 2 type: Transform - - uid: 28308 + - uid: 28315 components: - pos: -6.5,-15.5 parent: 2 type: Transform - - uid: 28309 + - uid: 28316 components: - pos: -2.5,-3.5 parent: 2 type: Transform - - uid: 28310 + - uid: 28317 components: - pos: -2.5,-6.5 parent: 2 type: Transform - - uid: 28311 + - uid: 28318 components: - rot: 3.141592653589793 rad pos: -10.5,-47.5 parent: 2 type: Transform - - uid: 28312 + - uid: 28319 components: - rot: 1.5707963267948966 rad pos: -7.5,-24.5 parent: 2 type: Transform - - uid: 28313 + - uid: 28320 components: - pos: -4.5,9.5 parent: 2 type: Transform - - uid: 28314 + - uid: 28321 components: - rot: 1.5707963267948966 rad pos: 28.5,-44.5 parent: 2 type: Transform - - uid: 28315 + - uid: 28322 components: - pos: -21.5,-15.5 parent: 2 type: Transform - - uid: 28316 + - uid: 28323 components: - rot: -1.5707963267948966 rad pos: -27.5,-18.5 parent: 2 type: Transform - - uid: 28317 + - uid: 28324 components: - pos: -26.5,-15.5 parent: 2 type: Transform - - uid: 28318 + - uid: 28325 components: - pos: 19.5,23.5 parent: 2 type: Transform - - uid: 28319 + - uid: 28326 components: - pos: 27.5,-44.5 parent: 2 type: Transform - - uid: 28320 + - uid: 28327 components: - pos: -6.5,-30.5 parent: 2 type: Transform - - uid: 28321 + - uid: 28328 components: - pos: -6.5,-31.5 parent: 2 type: Transform - - uid: 28322 + - uid: 28329 components: - rot: -1.5707963267948966 rad pos: 10.5,-44.5 parent: 2 type: Transform - - uid: 28323 + - uid: 28330 components: - rot: -1.5707963267948966 rad pos: 11.5,-44.5 parent: 2 type: Transform - - uid: 28324 + - uid: 28331 components: - pos: 12.5,-48.5 parent: 2 type: Transform - - uid: 28325 + - uid: 28332 components: - pos: 9.5,-15.5 parent: 2 type: Transform - - uid: 28326 + - uid: 28333 components: - pos: 8.5,-15.5 parent: 2 type: Transform - - uid: 28327 + - uid: 28334 components: - pos: 7.5,-15.5 parent: 2 type: Transform - - uid: 28328 + - uid: 28335 components: - pos: 6.5,-15.5 parent: 2 type: Transform - - uid: 28329 + - uid: 28336 components: - pos: 5.5,-15.5 parent: 2 type: Transform - - uid: 28330 + - uid: 28337 components: - pos: -10.5,-28.5 parent: 2 type: Transform - - uid: 28331 + - uid: 28338 components: - rot: 1.5707963267948966 rad pos: 5.5,-10.5 parent: 2 type: Transform - - uid: 28332 + - uid: 28339 components: - rot: 1.5707963267948966 rad pos: 7.5,-9.5 parent: 2 type: Transform - - uid: 28333 + - uid: 28340 components: - rot: 1.5707963267948966 rad pos: 7.5,-8.5 parent: 2 type: Transform - - uid: 28334 + - uid: 28341 components: - rot: 1.5707963267948966 rad pos: 6.5,-8.5 parent: 2 type: Transform - - uid: 28335 + - uid: 28342 components: - pos: 8.5,-40.5 parent: 2 type: Transform - - uid: 28336 + - uid: 28343 components: - rot: 3.141592653589793 rad pos: -10.5,-48.5 parent: 2 type: Transform - - uid: 28337 + - uid: 28344 components: - rot: 3.141592653589793 rad pos: 1.5,-49.5 parent: 2 type: Transform - - uid: 28338 + - uid: 28345 components: - rot: 3.141592653589793 rad pos: 1.5,-50.5 parent: 2 type: Transform - - uid: 28339 + - uid: 28346 components: - pos: -2.5,-51.5 parent: 2 type: Transform - - uid: 28340 + - uid: 28347 components: - rot: -1.5707963267948966 rad pos: -15.5,-40.5 parent: 2 type: Transform - - uid: 28341 + - uid: 28348 components: - rot: -1.5707963267948966 rad pos: -13.5,-40.5 parent: 2 type: Transform - - uid: 28342 + - uid: 28349 components: - rot: -1.5707963267948966 rad pos: 30.5,5.5 parent: 2 type: Transform - - uid: 28343 + - uid: 28350 components: - pos: 3.5,-15.5 parent: 2 type: Transform - - uid: 28344 + - uid: 28351 components: - pos: 14.5,-11.5 parent: 2 type: Transform - - uid: 28345 + - uid: 28352 components: - pos: 8.5,-13.5 parent: 2 type: Transform - - uid: 28346 + - uid: 28353 components: - rot: -1.5707963267948966 rad pos: 13.5,-5.5 parent: 2 type: Transform - - uid: 28347 + - uid: 28354 components: - pos: 8.5,-28.5 parent: 2 type: Transform - - uid: 28348 + - uid: 28355 components: - pos: 16.5,-12.5 parent: 2 type: Transform - - uid: 28349 + - uid: 28356 components: - pos: 16.5,-11.5 parent: 2 type: Transform - - uid: 28350 + - uid: 28357 components: - pos: 16.5,-10.5 parent: 2 type: Transform - - uid: 28351 + - uid: 28358 components: - pos: 16.5,-9.5 parent: 2 type: Transform - - uid: 28352 + - uid: 28359 components: - pos: 17.5,-9.5 parent: 2 type: Transform - - uid: 28353 + - uid: 28360 components: - pos: 0.5,-15.5 parent: 2 type: Transform - - uid: 28354 + - uid: 28361 components: - pos: 1.5,-15.5 parent: 2 type: Transform - - uid: 28355 + - uid: 28362 components: - pos: 11.5,-13.5 parent: 2 type: Transform - - uid: 28356 + - uid: 28363 components: - pos: 2.5,-15.5 parent: 2 type: Transform - - uid: 28357 + - uid: 28364 components: - pos: 14.5,-10.5 parent: 2 type: Transform - - uid: 28358 + - uid: 28365 components: - pos: 14.5,-9.5 parent: 2 type: Transform - - uid: 28359 + - uid: 28366 components: - pos: 19.5,-9.5 parent: 2 type: Transform - - uid: 28360 + - uid: 28367 components: - rot: 3.141592653589793 rad pos: 19.5,9.5 parent: 2 type: Transform - - uid: 28361 + - uid: 28368 components: - rot: 3.141592653589793 rad pos: 19.5,11.5 parent: 2 type: Transform - - uid: 28362 + - uid: 28369 components: - rot: 3.141592653589793 rad pos: 19.5,13.5 parent: 2 type: Transform - - uid: 28363 + - uid: 28370 components: - pos: -42.5,-29.5 parent: 2 type: Transform - - uid: 28364 + - uid: 28371 components: - pos: -42.5,-30.5 parent: 2 type: Transform - - uid: 28365 + - uid: 28372 components: - pos: -37.5,-30.5 parent: 2 type: Transform - - uid: 28366 + - uid: 28373 components: - pos: -37.5,-29.5 parent: 2 type: Transform - - uid: 28367 + - uid: 28374 components: - pos: 13.5,-13.5 parent: 2 type: Transform - - uid: 28368 + - uid: 28375 components: - pos: 14.5,-13.5 parent: 2 type: Transform - - uid: 28369 + - uid: 28376 components: - rot: 3.141592653589793 rad pos: 47.5,37.5 parent: 2 type: Transform - - uid: 28370 + - uid: 28377 components: - rot: 3.141592653589793 rad pos: 19.5,12.5 parent: 2 type: Transform - - uid: 28371 + - uid: 28378 components: - rot: 3.141592653589793 rad pos: 20.5,9.5 parent: 2 type: Transform - - uid: 28372 + - uid: 28379 components: - pos: 18.5,-9.5 parent: 2 type: Transform - - uid: 28373 + - uid: 28380 components: - rot: -1.5707963267948966 rad pos: 13.5,-8.5 parent: 2 type: Transform - - uid: 28374 + - uid: 28381 components: - pos: -5.5,10.5 parent: 2 type: Transform - - uid: 28375 + - uid: 28382 components: - rot: 3.141592653589793 rad pos: -1.5,11.5 parent: 2 type: Transform - - uid: 28376 + - uid: 28383 components: - pos: 4.5,4.5 parent: 2 type: Transform - - uid: 28377 + - uid: 28384 components: - pos: -1.5,6.5 parent: 2 type: Transform - - uid: 28378 + - uid: 28385 components: - rot: 3.141592653589793 rad pos: -1.5,10.5 parent: 2 type: Transform - - uid: 28379 + - uid: 28386 components: - pos: 5.5,-3.5 parent: 2 type: Transform - - uid: 28380 + - uid: 28387 components: - pos: 7.5,5.5 parent: 2 type: Transform - - uid: 28381 + - uid: 28388 components: - rot: -1.5707963267948966 rad pos: -8.5,57.5 parent: 2 type: Transform - - uid: 28382 + - uid: 28389 components: - rot: 3.141592653589793 rad pos: 28.5,-7.5 parent: 2 type: Transform - - uid: 28383 + - uid: 28390 components: - pos: -3.5,-70.5 parent: 2 type: Transform - - uid: 28384 + - uid: 28391 components: - pos: 8.5,-50.5 parent: 2 type: Transform - - uid: 28385 + - uid: 28392 components: - pos: -17.5,-37.5 parent: 2 type: Transform - - uid: 28386 + - uid: 28393 components: - pos: -26.5,34.5 parent: 2 type: Transform - - uid: 28387 + - uid: 28394 components: - pos: -28.5,37.5 parent: 2 type: Transform - - uid: 28388 + - uid: 28395 components: - pos: -2.5,-8.5 parent: 2 type: Transform - - uid: 28389 + - uid: 28396 components: - pos: 3.5,4.5 parent: 2 type: Transform - - uid: 28390 + - uid: 28397 components: - rot: 3.141592653589793 rad pos: 22.5,-9.5 parent: 2 type: Transform - - uid: 28391 + - uid: 28398 components: - pos: -9.5,4.5 parent: 2 type: Transform - - uid: 28392 + - uid: 28399 components: - pos: -9.5,-34.5 parent: 2 type: Transform - - uid: 28393 + - uid: 28400 components: - rot: -1.5707963267948966 rad pos: -16.5,-40.5 parent: 2 type: Transform - - uid: 28394 + - uid: 28401 components: - rot: -1.5707963267948966 rad pos: -7.5,-40.5 parent: 2 type: Transform - - uid: 28395 + - uid: 28402 components: - pos: -7.5,-28.5 parent: 2 type: Transform - - uid: 28396 + - uid: 28403 components: - pos: 15.5,1.5 parent: 2 type: Transform - - uid: 28397 + - uid: 28404 components: - rot: 1.5707963267948966 rad pos: -15.5,-24.5 parent: 2 type: Transform - - uid: 28398 + - uid: 28405 components: - pos: -17.5,-16.5 parent: 2 type: Transform - - uid: 28399 + - uid: 28406 components: - pos: 42.5,-6.5 parent: 2 type: Transform - - uid: 28400 + - uid: 28407 components: - pos: -17.5,-32.5 parent: 2 type: Transform - - uid: 28401 + - uid: 28408 components: - pos: -25.5,42.5 parent: 2 type: Transform - - uid: 28402 + - uid: 28409 components: - pos: -28.5,36.5 parent: 2 type: Transform - - uid: 28403 + - uid: 28410 components: - pos: -4.5,-70.5 parent: 2 type: Transform - - uid: 28404 + - uid: 28411 components: - pos: -4.5,-71.5 parent: 2 type: Transform - - uid: 28405 + - uid: 28412 components: - pos: 39.5,-52.5 parent: 2 type: Transform - - uid: 28406 + - uid: 28413 components: - pos: -0.5,4.5 parent: 2 type: Transform - - uid: 28407 + - uid: 28414 components: - pos: -4.5,-72.5 parent: 2 type: Transform - - uid: 28408 + - uid: 28415 components: - pos: 16.5,-49.5 parent: 2 type: Transform - - uid: 28409 + - uid: 28416 components: - pos: 16.5,-50.5 parent: 2 type: Transform - - uid: 28410 + - uid: 28417 components: - pos: 14.5,-55.5 parent: 2 type: Transform - - uid: 28411 + - uid: 28418 components: - pos: -17.5,-17.5 parent: 2 type: Transform - - uid: 28412 + - uid: 28419 components: - rot: 3.141592653589793 rad pos: 32.5,-7.5 parent: 2 type: Transform - - uid: 28413 + - uid: 28420 components: - pos: -21.5,-24.5 parent: 2 type: Transform - - uid: 28414 + - uid: 28421 components: - pos: 41.5,-57.5 parent: 2 type: Transform - - uid: 28415 + - uid: 28422 components: - rot: 1.5707963267948966 rad pos: -12.5,-24.5 parent: 2 type: Transform - - uid: 28416 + - uid: 28423 components: - pos: 36.5,-0.5 parent: 2 type: Transform - - uid: 28417 + - uid: 28424 components: - pos: -6.5,15.5 parent: 2 type: Transform - - uid: 28418 + - uid: 28425 components: - pos: 9.5,-54.5 parent: 2 type: Transform - - uid: 28419 + - uid: 28426 components: - pos: -17.5,-15.5 parent: 2 type: Transform - - uid: 28420 + - uid: 28427 components: - pos: 37.5,-40.5 parent: 2 type: Transform - - uid: 28421 + - uid: 28428 components: - pos: 38.5,-40.5 parent: 2 type: Transform - - uid: 28422 + - uid: 28429 components: - pos: 40.5,-40.5 parent: 2 type: Transform - - uid: 28423 + - uid: 28430 components: - pos: 27.5,-46.5 parent: 2 type: Transform - - uid: 28424 + - uid: 28431 components: - rot: 1.5707963267948966 rad pos: 27.5,-49.5 parent: 2 type: Transform - - uid: 28425 + - uid: 28432 components: - pos: 39.5,-40.5 parent: 2 type: Transform - - uid: 28426 + - uid: 28433 components: - pos: -11.5,4.5 parent: 2 type: Transform - - uid: 28427 + - uid: 28434 components: - pos: -2.5,13.5 parent: 2 type: Transform - - uid: 28428 + - uid: 28435 components: - rot: 3.141592653589793 rad pos: 23.5,12.5 parent: 2 type: Transform - - uid: 28429 + - uid: 28436 components: - rot: 3.141592653589793 rad pos: 23.5,13.5 parent: 2 type: Transform - - uid: 28430 + - uid: 28437 components: - pos: 28.5,5.5 parent: 2 type: Transform - - uid: 28431 + - uid: 28438 components: - rot: 3.141592653589793 rad pos: 3.5,10.5 parent: 2 type: Transform - - uid: 28432 + - uid: 28439 components: - rot: -1.5707963267948966 rad pos: 31.5,4.5 parent: 2 type: Transform - - uid: 28433 + - uid: 28440 components: - rot: -1.5707963267948966 rad pos: 31.5,-1.5 parent: 2 type: Transform - - uid: 28434 + - uid: 28441 components: - pos: -29.5,-76.5 parent: 2 type: Transform - - uid: 28435 + - uid: 28442 components: - pos: -11.5,11.5 parent: 2 type: Transform - - uid: 28436 + - uid: 28443 components: - pos: -2.5,4.5 parent: 2 type: Transform - - uid: 28437 + - uid: 28444 components: - pos: -1.5,-2.5 parent: 2 type: Transform - - uid: 28438 + - uid: 28445 components: - rot: 3.141592653589793 rad pos: 61.5,14.5 parent: 2 type: Transform - - uid: 28439 + - uid: 28446 components: - rot: -1.5707963267948966 rad pos: 19.5,20.5 parent: 2 type: Transform - - uid: 28440 + - uid: 28447 components: - pos: -7.5,12.5 parent: 2 type: Transform - - uid: 28441 + - uid: 28448 components: - pos: 6.5,4.5 parent: 2 type: Transform - - uid: 28442 + - uid: 28449 components: - rot: -1.5707963267948966 rad pos: -18.5,38.5 parent: 2 type: Transform - - uid: 28443 + - uid: 28450 components: - pos: -17.5,-35.5 parent: 2 type: Transform - - uid: 28444 + - uid: 28451 components: - rot: 1.5707963267948966 rad pos: -14.5,-28.5 parent: 2 type: Transform - - uid: 28445 + - uid: 28452 components: - pos: -10.5,-62.5 parent: 2 type: Transform - - uid: 28446 + - uid: 28453 components: - pos: -10.5,-64.5 parent: 2 type: Transform - - uid: 28447 + - uid: 28454 components: - pos: -2.5,-70.5 parent: 2 type: Transform - - uid: 28448 + - uid: 28455 components: - pos: -1.5,-70.5 parent: 2 type: Transform - - uid: 28449 + - uid: 28456 components: - rot: 3.141592653589793 rad pos: 29.5,-7.5 parent: 2 type: Transform - - uid: 28450 + - uid: 28457 components: - pos: 13.5,-53.5 parent: 2 type: Transform - - uid: 28451 + - uid: 28458 components: - rot: -1.5707963267948966 rad pos: -10.5,57.5 parent: 2 type: Transform - - uid: 28452 + - uid: 28459 components: - pos: -5.5,-72.5 parent: 2 type: Transform - - uid: 28453 + - uid: 28460 components: - pos: 0.5,-70.5 parent: 2 type: Transform - - uid: 28454 + - uid: 28461 components: - pos: 1.5,-70.5 parent: 2 type: Transform - - uid: 28455 + - uid: 28462 components: - pos: 13.5,-46.5 parent: 2 type: Transform - - uid: 28456 + - uid: 28463 components: - pos: 42.5,-54.5 parent: 2 type: Transform - - uid: 28457 + - uid: 28464 components: - pos: -1.5,-11.5 parent: 2 type: Transform - - uid: 28458 + - uid: 28465 components: - pos: 13.5,-44.5 parent: 2 type: Transform - - uid: 28459 + - uid: 28466 components: - pos: 17.5,-44.5 parent: 2 type: Transform - - uid: 28460 + - uid: 28467 components: - pos: -7.5,15.5 parent: 2 type: Transform - - uid: 28461 + - uid: 28468 components: - pos: -28.5,-76.5 parent: 2 type: Transform - - uid: 28462 + - uid: 28469 components: - pos: -21.5,-80.5 parent: 2 type: Transform - - uid: 28463 + - uid: 28470 components: - pos: -10.5,12.5 parent: 2 type: Transform - - uid: 28464 + - uid: 28471 components: - pos: -11.5,10.5 parent: 2 type: Transform - - uid: 28465 + - uid: 28472 components: - pos: -0.5,-70.5 parent: 2 type: Transform - - uid: 28466 + - uid: 28473 components: - pos: -27.5,-76.5 parent: 2 type: Transform - - uid: 28467 + - uid: 28474 components: - pos: -20.5,-65.5 parent: 2 type: Transform - - uid: 28468 + - uid: 28475 components: - pos: -14.5,-72.5 parent: 2 type: Transform - - uid: 28469 + - uid: 28476 components: - pos: -17.5,-74.5 parent: 2 type: Transform - - uid: 28470 + - uid: 28477 components: - pos: -21.5,-79.5 parent: 2 type: Transform - - uid: 28471 + - uid: 28478 components: - pos: -21.5,-78.5 parent: 2 type: Transform - - uid: 28472 + - uid: 28479 components: - pos: -21.5,-77.5 parent: 2 type: Transform - - uid: 28473 + - uid: 28480 components: - pos: -26.5,-76.5 parent: 2 type: Transform - - uid: 28474 + - uid: 28481 components: - pos: -26.5,-75.5 parent: 2 type: Transform - - uid: 28475 + - uid: 28482 components: - rot: 3.141592653589793 rad pos: -10.5,-51.5 parent: 2 type: Transform - - uid: 28476 + - uid: 28483 components: - rot: 3.141592653589793 rad pos: -16.5,-51.5 parent: 2 type: Transform - - uid: 28477 + - uid: 28484 components: - pos: 16.5,-48.5 parent: 2 type: Transform - - uid: 28478 + - uid: 28485 components: - pos: -17.5,-67.5 parent: 2 type: Transform - - uid: 28479 + - uid: 28486 components: - pos: 10.5,-15.5 parent: 2 type: Transform - - uid: 28480 + - uid: 28487 components: - pos: 12.5,4.5 parent: 2 type: Transform - - uid: 28481 + - uid: 28488 components: - rot: 3.141592653589793 rad pos: 23.5,-7.5 parent: 2 type: Transform - - uid: 28482 + - uid: 28489 components: - pos: -32.5,-70.5 parent: 2 type: Transform - - uid: 28483 + - uid: 28490 components: - rot: 3.141592653589793 rad pos: 30.5,-7.5 parent: 2 type: Transform - - uid: 28484 + - uid: 28491 components: - pos: -27.5,-72.5 parent: 2 type: Transform - - uid: 28485 + - uid: 28492 components: - pos: 13.5,-65.5 parent: 2 type: Transform - - uid: 28486 + - uid: 28493 components: - pos: 10.5,-63.5 parent: 2 type: Transform - - uid: 28487 + - uid: 28494 components: - rot: 3.141592653589793 rad pos: 23.5,-8.5 parent: 2 type: Transform - - uid: 28488 + - uid: 28495 components: - pos: -6.5,-50.5 parent: 2 type: Transform - - uid: 28489 + - uid: 28496 components: - pos: -13.5,-70.5 parent: 2 type: Transform - - uid: 28490 + - uid: 28497 components: - pos: 14.5,-12.5 parent: 2 type: Transform - - uid: 28491 + - uid: 28498 components: - pos: 29.5,5.5 parent: 2 type: Transform - - uid: 28492 + - uid: 28499 components: - rot: -1.5707963267948966 rad pos: 31.5,5.5 parent: 2 type: Transform - - uid: 28493 + - uid: 28500 components: - rot: 1.5707963267948966 rad pos: 27.5,-48.5 parent: 2 type: Transform - - uid: 28494 + - uid: 28501 components: - pos: 27.5,-45.5 parent: 2 type: Transform - - uid: 28495 + - uid: 28502 components: - rot: 3.141592653589793 rad pos: 20.5,15.5 parent: 2 type: Transform - - uid: 28496 + - uid: 28503 components: - pos: -17.5,-13.5 parent: 2 type: Transform - - uid: 28497 + - uid: 28504 components: - pos: 43.5,-6.5 parent: 2 type: Transform - - uid: 28498 + - uid: 28505 components: - pos: 37.5,-54.5 parent: 2 type: Transform - - uid: 28499 + - uid: 28506 components: - pos: 17.5,-27.5 parent: 2 type: Transform - - uid: 28500 + - uid: 28507 components: - pos: -25.5,43.5 parent: 2 type: Transform - - uid: 28501 + - uid: 28508 components: - pos: -25.5,44.5 parent: 2 type: Transform - - uid: 28502 + - uid: 28509 components: - pos: -25.5,46.5 parent: 2 type: Transform - - uid: 28503 + - uid: 28510 components: - pos: -27.5,36.5 parent: 2 type: Transform - - uid: 28504 + - uid: 28511 components: - rot: 3.141592653589793 rad pos: 27.5,-7.5 parent: 2 type: Transform - - uid: 28505 + - uid: 28512 components: - rot: 3.141592653589793 rad pos: 21.5,-51.5 parent: 2 type: Transform - - uid: 28506 + - uid: 28513 components: - pos: -6.5,-39.5 parent: 2 type: Transform - - uid: 28507 + - uid: 28514 components: - rot: 1.5707963267948966 rad pos: -16.5,-24.5 parent: 2 type: Transform - - uid: 28508 + - uid: 28515 components: - pos: -17.5,-24.5 parent: 2 type: Transform - - uid: 28509 + - uid: 28516 components: - pos: 42.5,-55.5 parent: 2 type: Transform - - uid: 28510 + - uid: 28517 components: - pos: -26.5,32.5 parent: 2 type: Transform - - uid: 28511 + - uid: 28518 components: - pos: 37.5,-55.5 parent: 2 type: Transform - - uid: 28512 + - uid: 28519 components: - rot: 3.141592653589793 rad pos: 20.5,-51.5 parent: 2 type: Transform - - uid: 28513 + - uid: 28520 components: - pos: 15.5,-5.5 parent: 2 type: Transform - - uid: 28514 + - uid: 28521 components: - rot: 3.141592653589793 rad pos: 27.5,-9.5 parent: 2 type: Transform - - uid: 28515 + - uid: 28522 components: - rot: 3.141592653589793 rad pos: 21.5,-7.5 parent: 2 type: Transform - - uid: 28516 + - uid: 28523 components: - rot: -1.5707963267948966 rad pos: 6.5,-44.5 parent: 2 type: Transform - - uid: 28517 + - uid: 28524 components: - pos: 1.5,-72.5 parent: 2 type: Transform - - uid: 28518 + - uid: 28525 components: - rot: -1.5707963267948966 rad pos: 29.5,-2.5 parent: 2 type: Transform - - uid: 28519 + - uid: 28526 components: - rot: 3.141592653589793 rad pos: 34.5,-7.5 parent: 2 type: Transform - - uid: 28520 + - uid: 28527 components: - pos: 42.5,-53.5 parent: 2 type: Transform - - uid: 28521 + - uid: 28528 components: - rot: 3.141592653589793 rad pos: -10.5,-44.5 parent: 2 type: Transform - - uid: 28522 + - uid: 28529 components: - rot: 3.141592653589793 rad pos: 7.5,10.5 parent: 2 type: Transform - - uid: 28523 + - uid: 28530 components: - rot: -1.5707963267948966 rad pos: -11.5,-76.5 parent: 2 type: Transform - - uid: 28524 + - uid: 28531 components: - rot: 3.141592653589793 rad pos: 60.5,12.5 parent: 2 type: Transform - - uid: 28525 + - uid: 28532 components: - pos: 20.5,-3.5 parent: 2 type: Transform - - uid: 28526 + - uid: 28533 components: - pos: 2.5,-72.5 parent: 2 type: Transform - - uid: 28527 + - uid: 28534 components: - pos: 11.5,-68.5 parent: 2 type: Transform - - uid: 28528 + - uid: 28535 components: - pos: -18.5,-65.5 parent: 2 type: Transform - - uid: 28529 + - uid: 28536 components: - pos: 7.5,-58.5 parent: 2 type: Transform - - uid: 28530 + - uid: 28537 components: - rot: 1.5707963267948966 rad pos: 32.5,-44.5 parent: 2 type: Transform - - uid: 28531 + - uid: 28538 components: - rot: 1.5707963267948966 rad pos: 33.5,-44.5 parent: 2 type: Transform - - uid: 28532 + - uid: 28539 components: - pos: -2.5,-16.5 parent: 2 type: Transform - - uid: 28533 + - uid: 28540 components: - pos: -11.5,-28.5 parent: 2 type: Transform - - uid: 28534 + - uid: 28541 components: - pos: -7.5,-35.5 parent: 2 type: Transform - - uid: 28535 + - uid: 28542 components: - rot: 3.141592653589793 rad pos: 19.5,-7.5 parent: 2 type: Transform - - uid: 28536 + - uid: 28543 components: - pos: 29.5,-3.5 parent: 2 type: Transform - - uid: 28537 + - uid: 28544 components: - rot: -1.5707963267948966 rad pos: 31.5,-3.5 parent: 2 type: Transform - - uid: 28538 + - uid: 28545 components: - rot: 1.5707963267948966 rad pos: 27.5,-57.5 parent: 2 type: Transform - - uid: 28539 + - uid: 28546 components: - pos: -17.5,-33.5 parent: 2 type: Transform - - uid: 28540 + - uid: 28547 components: - pos: 35.5,-0.5 parent: 2 type: Transform - - uid: 28541 + - uid: 28548 components: - rot: -1.5707963267948966 rad pos: -11.5,14.5 parent: 2 type: Transform - - uid: 28542 + - uid: 28549 components: - pos: -3.5,15.5 parent: 2 type: Transform - - uid: 28543 + - uid: 28550 components: - pos: -23.5,36.5 parent: 2 type: Transform - - uid: 28544 + - uid: 28551 components: - pos: -23.5,37.5 parent: 2 type: Transform - - uid: 28545 + - uid: 28552 components: - pos: -23.5,39.5 parent: 2 type: Transform - - uid: 28546 + - uid: 28553 components: - pos: -5.5,13.5 parent: 2 type: Transform - - uid: 28547 + - uid: 28554 components: - pos: -10.5,-66.5 parent: 2 type: Transform - - uid: 28548 + - uid: 28555 components: - rot: -1.5707963267948966 rad pos: 21.5,19.5 parent: 2 type: Transform - - uid: 28549 + - uid: 28556 components: - pos: 20.5,-48.5 parent: 2 type: Transform - - uid: 28550 + - uid: 28557 components: - rot: -1.5707963267948966 rad pos: -3.5,-76.5 parent: 2 type: Transform - - uid: 28551 + - uid: 28558 components: - pos: -3.5,-73.5 parent: 2 type: Transform - - uid: 28552 + - uid: 28559 components: - pos: -2.5,-72.5 parent: 2 type: Transform - - uid: 28553 + - uid: 28560 components: - rot: 1.5707963267948966 rad pos: 32.5,-23.5 parent: 2 type: Transform - - uid: 28554 + - uid: 28561 components: - pos: 57.5,-64.5 parent: 2 type: Transform - - uid: 28555 + - uid: 28562 components: - pos: -14.5,-16.5 parent: 2 type: Transform - - uid: 28556 + - uid: 28563 components: - pos: -14.5,-19.5 parent: 2 type: Transform - - uid: 28557 + - uid: 28564 components: - pos: -17.5,-19.5 parent: 2 type: Transform - - uid: 28558 + - uid: 28565 components: - pos: -17.5,-18.5 parent: 2 type: Transform - - uid: 28559 + - uid: 28566 components: - pos: -17.5,-36.5 parent: 2 type: Transform - - uid: 28560 + - uid: 28567 components: - rot: -1.5707963267948966 rad pos: -7.5,-39.5 parent: 2 type: Transform - - uid: 28561 + - uid: 28568 components: - pos: 13.5,-30.5 parent: 2 type: Transform - - uid: 28562 + - uid: 28569 components: - pos: 16.5,-47.5 parent: 2 type: Transform - - uid: 28563 + - uid: 28570 components: - rot: 3.141592653589793 rad pos: 17.5,-51.5 parent: 2 type: Transform - - uid: 28564 + - uid: 28571 components: - pos: -14.5,-17.5 parent: 2 type: Transform - - uid: 28565 + - uid: 28572 components: - pos: 9.5,4.5 parent: 2 type: Transform - - uid: 28566 + - uid: 28573 components: - pos: 37.5,-29.5 parent: 2 type: Transform - - uid: 28567 + - uid: 28574 components: - pos: -23.5,-68.5 parent: 2 type: Transform - - uid: 28568 + - uid: 28575 components: - pos: 11.5,-56.5 parent: 2 type: Transform - - uid: 28569 + - uid: 28576 components: - pos: -7.5,-33.5 parent: 2 type: Transform - - uid: 28570 + - uid: 28577 components: - - pos: -12.5,-32.5 + - rot: 3.141592653589793 rad + pos: -12.5,-32.5 parent: 2 type: Transform - - uid: 28571 + - uid: 28578 components: - pos: -12.5,-31.5 parent: 2 type: Transform - - uid: 28572 + - uid: 28579 components: - pos: -13.5,-34.5 parent: 2 type: Transform - - uid: 28573 + - uid: 28580 components: - pos: -13.5,-35.5 parent: 2 type: Transform - - uid: 28574 + - uid: 28581 components: - pos: -13.5,-36.5 parent: 2 type: Transform - - uid: 28575 + - uid: 28582 components: - pos: -13.5,-37.5 parent: 2 type: Transform - - uid: 28576 + - uid: 28583 components: - pos: -13.5,-39.5 parent: 2 type: Transform - - uid: 28577 + - uid: 28584 components: - pos: -16.5,-36.5 parent: 2 type: Transform - - uid: 28578 + - uid: 28585 components: - pos: -15.5,-36.5 parent: 2 type: Transform - - uid: 28579 + - uid: 28586 components: - pos: -14.5,-36.5 parent: 2 type: Transform - - uid: 28580 + - uid: 28587 components: - pos: -7.5,-32.5 parent: 2 type: Transform - - uid: 28581 + - uid: 28588 components: - pos: -7.5,-31.5 parent: 2 type: Transform - - uid: 28582 - components: - - pos: -11.5,-31.5 - parent: 2 - type: Transform - - uid: 28583 + - uid: 28590 components: - pos: -10.5,-31.5 parent: 2 type: Transform - - uid: 28584 + - uid: 28591 components: - pos: -9.5,-31.5 parent: 2 type: Transform - - uid: 28585 + - uid: 28592 components: - pos: -8.5,-31.5 parent: 2 type: Transform - - uid: 28586 + - uid: 28593 components: - pos: 10.5,-28.5 parent: 2 type: Transform - - uid: 28587 + - uid: 28594 components: - rot: 3.141592653589793 rad pos: 17.5,8.5 parent: 2 type: Transform - - uid: 28588 + - uid: 28595 components: - pos: 23.5,-47.5 parent: 2 type: Transform - - uid: 28589 + - uid: 28596 components: - rot: -1.5707963267948966 rad pos: 49.5,-36.5 parent: 2 type: Transform - - uid: 28590 + - uid: 28597 components: - rot: -1.5707963267948966 rad pos: 43.5,-34.5 parent: 2 type: Transform - - uid: 28591 + - uid: 28598 components: - rot: 1.5707963267948966 rad pos: 36.5,-9.5 parent: 2 type: Transform - - uid: 28592 + - uid: 28599 components: - rot: 1.5707963267948966 rad pos: 36.5,-10.5 parent: 2 type: Transform - - uid: 28593 + - uid: 28600 components: - rot: 1.5707963267948966 rad pos: 36.5,-11.5 parent: 2 type: Transform - - uid: 28594 + - uid: 28601 components: - rot: 1.5707963267948966 rad pos: 36.5,-7.5 parent: 2 type: Transform - - uid: 28595 + - uid: 28602 components: - pos: -6.5,-8.5 parent: 2 type: Transform - - uid: 28596 + - uid: 28603 components: - pos: -6.5,-10.5 parent: 2 type: Transform - - uid: 28597 + - uid: 28604 components: - pos: -17.5,-11.5 parent: 2 type: Transform - - uid: 28598 + - uid: 28605 components: - pos: -17.5,-12.5 parent: 2 type: Transform - - uid: 28599 + - uid: 28606 components: - pos: -11.5,0.5 parent: 2 type: Transform - - uid: 28600 + - uid: 28607 components: - pos: -13.5,14.5 parent: 2 type: Transform - - uid: 28601 + - uid: 28608 components: - pos: -17.5,11.5 parent: 2 type: Transform - - uid: 28602 + - uid: 28609 components: - pos: -15.5,14.5 parent: 2 type: Transform - - uid: 28603 + - uid: 28610 components: - pos: -21.5,13.5 parent: 2 type: Transform - - uid: 28604 + - uid: 28611 components: - pos: -21.5,10.5 parent: 2 type: Transform - - uid: 28605 + - uid: 28612 components: - pos: -17.5,13.5 parent: 2 type: Transform - - uid: 28606 + - uid: 28613 components: - pos: -17.5,12.5 parent: 2 type: Transform - - uid: 28607 + - uid: 28614 components: - pos: -17.5,14.5 parent: 2 type: Transform - - uid: 28608 + - uid: 28615 components: - pos: -16.5,14.5 parent: 2 type: Transform - - uid: 28609 + - uid: 28616 components: - pos: -15.5,-32.5 parent: 2 type: Transform - - uid: 28611 + - uid: 28618 components: - pos: -9.5,-30.5 parent: 2 type: Transform - - uid: 28612 + - uid: 28619 components: - pos: -15.5,-30.5 parent: 2 type: Transform - - uid: 28613 + - uid: 28620 components: - pos: -14.5,-30.5 parent: 2 type: Transform - - uid: 28614 + - uid: 28621 components: - pos: -14.5,-29.5 parent: 2 type: Transform - - uid: 28615 + - uid: 28622 components: - rot: -1.5707963267948966 rad pos: -15.5,16.5 parent: 2 type: Transform - - uid: 28616 + - uid: 28623 components: - rot: -1.5707963267948966 rad pos: -14.5,16.5 parent: 2 type: Transform - - uid: 28617 + - uid: 28624 components: - rot: -1.5707963267948966 rad pos: -13.5,16.5 parent: 2 type: Transform - - uid: 28618 + - uid: 28625 components: - rot: -1.5707963267948966 rad pos: -12.5,16.5 parent: 2 type: Transform - - uid: 28619 + - uid: 28626 components: - rot: -1.5707963267948966 rad pos: -11.5,16.5 parent: 2 type: Transform - - uid: 28620 + - uid: 28627 components: - rot: -1.5707963267948966 rad pos: -11.5,17.5 parent: 2 type: Transform - - uid: 28621 + - uid: 28628 components: - rot: -1.5707963267948966 rad pos: -10.5,17.5 parent: 2 type: Transform - - uid: 28622 + - uid: 28629 components: - rot: -1.5707963267948966 rad pos: -9.5,17.5 parent: 2 type: Transform - - uid: 28623 + - uid: 28630 components: - rot: -1.5707963267948966 rad pos: -8.5,17.5 parent: 2 type: Transform - - uid: 28624 + - uid: 28631 components: - rot: -1.5707963267948966 rad pos: -7.5,17.5 parent: 2 type: Transform - - uid: 28625 + - uid: 28632 components: - rot: -1.5707963267948966 rad pos: -6.5,17.5 parent: 2 type: Transform - - uid: 28626 + - uid: 28633 components: - rot: -1.5707963267948966 rad pos: -5.5,17.5 parent: 2 type: Transform - - uid: 28627 + - uid: 28634 components: - rot: -1.5707963267948966 rad pos: -3.5,17.5 parent: 2 type: Transform - - uid: 28628 + - uid: 28635 components: - pos: -15.5,-11.5 parent: 2 type: Transform - - uid: 28629 + - uid: 28636 components: - pos: -8.5,-16.5 parent: 2 type: Transform - - uid: 28630 + - uid: 28637 components: - pos: 23.5,-45.5 parent: 2 type: Transform - - uid: 28631 + - uid: 28638 components: - pos: 23.5,-44.5 parent: 2 type: Transform - - uid: 28632 + - uid: 28639 components: - pos: 23.5,-48.5 parent: 2 type: Transform - - uid: 28633 + - uid: 28640 components: - pos: 15.5,-46.5 parent: 2 type: Transform - - uid: 28634 + - uid: 28641 components: - pos: 18.5,-45.5 parent: 2 type: Transform - - uid: 28635 + - uid: 28642 components: - pos: 18.5,-46.5 parent: 2 type: Transform - - uid: 28636 + - uid: 28643 components: - pos: 18.5,-47.5 parent: 2 type: Transform - - uid: 28637 + - uid: 28644 components: - rot: -1.5707963267948966 rad pos: 31.5,0.5 parent: 2 type: Transform - - uid: 28638 + - uid: 28645 components: - pos: 61.5,7.5 parent: 2 type: Transform - - uid: 28639 + - uid: 28646 components: - pos: 61.5,5.5 parent: 2 type: Transform - - uid: 28640 + - uid: 28647 components: - pos: 64.5,1.5 parent: 2 type: Transform - - uid: 28641 + - uid: 28648 components: - pos: 65.5,0.5 parent: 2 type: Transform - - uid: 28642 + - uid: 28649 components: - pos: 60.5,0.5 parent: 2 type: Transform - - uid: 28643 + - uid: 28650 components: - pos: 17.5,30.5 parent: 2 type: Transform - - uid: 28644 + - uid: 28651 components: - rot: 1.5707963267948966 rad pos: 55.5,54.5 parent: 2 type: Transform - - uid: 28645 + - uid: 28652 components: - rot: 1.5707963267948966 rad pos: 56.5,54.5 parent: 2 type: Transform - - uid: 28646 + - uid: 28653 components: - rot: -1.5707963267948966 rad pos: -13.5,47.5 parent: 2 type: Transform - - uid: 28647 + - uid: 28654 components: - rot: -1.5707963267948966 rad pos: -13.5,48.5 parent: 2 type: Transform - - uid: 28648 + - uid: 28655 components: - pos: 47.5,34.5 parent: 2 type: Transform - - uid: 28649 + - uid: 28656 components: - pos: 47.5,33.5 parent: 2 type: Transform - - uid: 28650 + - uid: 28657 components: - pos: 47.5,31.5 parent: 2 type: Transform - - uid: 28651 + - uid: 28658 components: - pos: -9.5,47.5 parent: 2 type: Transform - - uid: 28652 + - uid: 28659 components: - pos: -10.5,47.5 parent: 2 type: Transform - - uid: 28653 + - uid: 28660 components: - rot: -1.5707963267948966 rad pos: -10.5,48.5 parent: 2 type: Transform - - uid: 28654 + - uid: 28661 components: - pos: -3.5,20.5 parent: 2 type: Transform - - uid: 28655 + - uid: 28662 components: - pos: -4.5,20.5 parent: 2 type: Transform - - uid: 28656 + - uid: 28663 components: - pos: -5.5,20.5 parent: 2 type: Transform - - uid: 28657 + - uid: 28664 components: - pos: -6.5,20.5 parent: 2 type: Transform - - uid: 28658 + - uid: 28665 components: - pos: -7.5,20.5 parent: 2 type: Transform - - uid: 28659 + - uid: 28666 components: - pos: -7.5,19.5 parent: 2 type: Transform - - uid: 28660 + - uid: 28667 components: - pos: -8.5,19.5 parent: 2 type: Transform - - uid: 28661 + - uid: 28668 components: - pos: -9.5,19.5 parent: 2 type: Transform - - uid: 28662 + - uid: 28669 components: - pos: -9.5,20.5 parent: 2 type: Transform - - uid: 28663 + - uid: 28670 components: - pos: -11.5,20.5 parent: 2 type: Transform - - uid: 28664 + - uid: 28671 components: - pos: -11.5,19.5 parent: 2 type: Transform - - uid: 28665 + - uid: 28672 components: - pos: 33.5,23.5 parent: 2 type: Transform - - uid: 28666 + - uid: 28673 components: - pos: 34.5,23.5 parent: 2 type: Transform - - uid: 28667 + - uid: 28674 components: - pos: 33.5,17.5 parent: 2 type: Transform - - uid: 28668 + - uid: 28675 components: - rot: 3.141592653589793 rad pos: 51.5,14.5 parent: 2 type: Transform - - uid: 28669 + - uid: 28676 components: - rot: 3.141592653589793 rad pos: 55.5,14.5 parent: 2 type: Transform - - uid: 28670 + - uid: 28677 components: - rot: 3.141592653589793 rad pos: 55.5,10.5 parent: 2 type: Transform - - uid: 28671 + - uid: 28678 components: - rot: 3.141592653589793 rad pos: 51.5,10.5 parent: 2 type: Transform - - uid: 28672 + - uid: 28679 components: - pos: 61.5,6.5 parent: 2 type: Transform - - uid: 28673 + - uid: 28680 components: - pos: 43.5,18.5 parent: 2 type: Transform - - uid: 28674 + - uid: 28681 components: - pos: 43.5,21.5 parent: 2 type: Transform - - uid: 28675 + - uid: 28682 components: - pos: 44.5,-0.5 parent: 2 type: Transform - - uid: 28676 + - uid: 28683 components: - pos: 47.5,-0.5 parent: 2 type: Transform - - uid: 28677 + - uid: 28684 components: - pos: 48.5,24.5 parent: 2 type: Transform - - uid: 28678 + - uid: 28685 components: - pos: 48.5,23.5 parent: 2 type: Transform - - uid: 28679 + - uid: 28686 components: - pos: 48.5,22.5 parent: 2 type: Transform - - uid: 28680 + - uid: 28687 components: - pos: 51.5,24.5 parent: 2 type: Transform - - uid: 28681 + - uid: 28688 components: - pos: 51.5,23.5 parent: 2 type: Transform - - uid: 28682 + - uid: 28689 components: - pos: 51.5,22.5 parent: 2 type: Transform - - uid: 28683 + - uid: 28690 components: - pos: 54.5,24.5 parent: 2 type: Transform - - uid: 28684 + - uid: 28691 components: - pos: 54.5,23.5 parent: 2 type: Transform - - uid: 28685 + - uid: 28692 components: - pos: 54.5,22.5 parent: 2 type: Transform - - uid: 28686 + - uid: 28693 components: - pos: 57.5,24.5 parent: 2 type: Transform - - uid: 28687 + - uid: 28694 components: - pos: 57.5,23.5 parent: 2 type: Transform - - uid: 28688 + - uid: 28695 components: - pos: 57.5,22.5 parent: 2 type: Transform - - uid: 28689 + - uid: 28696 components: - pos: 60.5,24.5 parent: 2 type: Transform - - uid: 28690 + - uid: 28697 components: - pos: 60.5,23.5 parent: 2 type: Transform - - uid: 28691 + - uid: 28698 components: - pos: 60.5,22.5 parent: 2 type: Transform - - uid: 28692 + - uid: 28699 components: - pos: 62.5,20.5 parent: 2 type: Transform - - uid: 28693 + - uid: 28700 components: - pos: 61.5,20.5 parent: 2 type: Transform - - uid: 28694 + - uid: 28701 components: - pos: 60.5,20.5 parent: 2 type: Transform - - uid: 28695 + - uid: 28702 components: - rot: 1.5707963267948966 rad pos: 46.5,27.5 parent: 2 type: Transform - - uid: 28696 + - uid: 28703 components: - rot: 1.5707963267948966 rad pos: 45.5,27.5 parent: 2 type: Transform - - uid: 28697 + - uid: 28704 components: - rot: 1.5707963267948966 rad pos: 44.5,27.5 parent: 2 type: Transform - - uid: 28698 + - uid: 28705 components: - rot: 1.5707963267948966 rad pos: 53.5,54.5 parent: 2 type: Transform - - uid: 28699 + - uid: 28706 components: - pos: 62.5,24.5 parent: 2 type: Transform - - uid: 28700 + - uid: 28707 components: - pos: 62.5,23.5 parent: 2 type: Transform - - uid: 28701 + - uid: 28708 components: - rot: 1.5707963267948966 rad pos: 48.5,11.5 parent: 2 type: Transform - - uid: 28702 + - uid: 28709 components: - rot: 1.5707963267948966 rad pos: 48.5,17.5 parent: 2 type: Transform - - uid: 28703 + - uid: 28710 components: - rot: 1.5707963267948966 rad pos: 58.5,17.5 parent: 2 type: Transform - - uid: 28704 + - uid: 28711 components: - rot: 1.5707963267948966 rad pos: 58.5,11.5 parent: 2 type: Transform - - uid: 28705 + - uid: 28712 components: - rot: 3.141592653589793 rad pos: 61.5,12.5 parent: 2 type: Transform - - uid: 28706 + - uid: 28713 components: - rot: 3.141592653589793 rad pos: 61.5,11.5 parent: 2 type: Transform - - uid: 28707 + - uid: 28714 components: - rot: 3.141592653589793 rad pos: 61.5,10.5 parent: 2 type: Transform - - uid: 28708 + - uid: 28715 components: - rot: 3.141592653589793 rad pos: 61.5,9.5 parent: 2 type: Transform - - uid: 28709 + - uid: 28716 components: - rot: 3.141592653589793 rad pos: 61.5,8.5 parent: 2 type: Transform - - uid: 28710 + - uid: 28717 components: - rot: 3.141592653589793 rad pos: 62.5,8.5 parent: 2 type: Transform - - uid: 28711 + - uid: 28718 components: - rot: 3.141592653589793 rad pos: 63.5,8.5 parent: 2 type: Transform - - uid: 28712 + - uid: 28719 components: - rot: 3.141592653589793 rad pos: 63.5,12.5 parent: 2 type: Transform - - uid: 28713 + - uid: 28720 components: - rot: 3.141592653589793 rad pos: 63.5,10.5 parent: 2 type: Transform - - uid: 28714 + - uid: 28721 components: - rot: -1.5707963267948966 rad pos: 51.5,12.5 parent: 2 type: Transform - - uid: 28715 + - uid: 28722 components: - pos: 58.5,-0.5 parent: 2 type: Transform - - uid: 28716 + - uid: 28723 components: - pos: 61.5,0.5 parent: 2 type: Transform - - uid: 28717 + - uid: 28724 components: - pos: 62.5,0.5 parent: 2 type: Transform - - uid: 28718 + - uid: 28725 components: - rot: 1.5707963267948966 rad pos: 55.5,2.5 parent: 2 type: Transform - - uid: 28719 + - uid: 28726 components: - rot: 1.5707963267948966 rad pos: 55.5,1.5 parent: 2 type: Transform - - uid: 28720 + - uid: 28727 components: - rot: 1.5707963267948966 rad pos: 55.5,0.5 parent: 2 type: Transform - - uid: 28721 + - uid: 28728 components: - rot: 1.5707963267948966 rad pos: 55.5,-1.5 parent: 2 type: Transform - - uid: 28722 + - uid: 28729 components: - rot: 1.5707963267948966 rad pos: 49.5,-0.5 parent: 2 type: Transform - - uid: 28723 + - uid: 28730 components: - rot: 1.5707963267948966 rad pos: 49.5,-2.5 parent: 2 type: Transform - - uid: 28724 + - uid: 28731 components: - rot: 1.5707963267948966 rad pos: 49.5,-1.5 parent: 2 type: Transform - - uid: 28725 + - uid: 28732 components: - rot: 1.5707963267948966 rad pos: 50.5,-2.5 parent: 2 type: Transform - - uid: 28726 + - uid: 28733 components: - rot: 1.5707963267948966 rad pos: 50.5,-3.5 parent: 2 type: Transform - - uid: 28727 + - uid: 28734 components: - rot: 1.5707963267948966 rad pos: 55.5,-2.5 parent: 2 type: Transform - - uid: 28728 + - uid: 28735 components: - rot: 1.5707963267948966 rad pos: 54.5,-2.5 parent: 2 type: Transform - - uid: 28729 + - uid: 28736 components: - rot: 1.5707963267948966 rad pos: 54.5,-3.5 parent: 2 type: Transform - - uid: 28730 + - uid: 28737 components: - rot: 1.5707963267948966 rad pos: 50.5,-4.5 parent: 2 type: Transform - - uid: 28731 + - uid: 28738 components: - rot: 1.5707963267948966 rad pos: 49.5,-4.5 parent: 2 type: Transform - - uid: 28732 + - uid: 28739 components: - rot: 1.5707963267948966 rad pos: 48.5,-4.5 parent: 2 type: Transform - - uid: 28733 + - uid: 28740 components: - rot: 1.5707963267948966 rad pos: 47.5,-4.5 parent: 2 type: Transform - - uid: 28734 + - uid: 28741 components: - rot: 1.5707963267948966 rad pos: 46.5,-4.5 parent: 2 type: Transform - - uid: 28735 + - uid: 28742 components: - rot: -1.5707963267948966 rad pos: 45.5,-2.5 parent: 2 type: Transform - - uid: 28736 + - uid: 28743 components: - pos: 49.5,-5.5 parent: 2 type: Transform - - uid: 28737 + - uid: 28744 components: - pos: 49.5,-6.5 parent: 2 type: Transform - - uid: 28738 + - uid: 28745 components: - pos: 49.5,-10.5 parent: 2 type: Transform - - uid: 28739 + - uid: 28746 components: - pos: 48.5,-10.5 parent: 2 type: Transform - - uid: 28740 + - uid: 28747 components: - rot: 1.5707963267948966 rad pos: 54.5,-4.5 parent: 2 type: Transform - - uid: 28741 + - uid: 28748 components: - rot: 1.5707963267948966 rad pos: 55.5,-4.5 parent: 2 type: Transform - - uid: 28742 + - uid: 28749 components: - rot: 1.5707963267948966 rad pos: 56.5,-4.5 parent: 2 type: Transform - - uid: 28743 + - uid: 28750 components: - rot: 1.5707963267948966 rad pos: 58.5,-4.5 parent: 2 type: Transform - - uid: 28744 + - uid: 28751 components: - pos: 19.5,-48.5 parent: 2 type: Transform - - uid: 28745 + - uid: 28752 components: - pos: 18.5,-48.5 parent: 2 type: Transform - - uid: 28746 + - uid: 28753 components: - rot: -1.5707963267948966 rad pos: 45.5,-4.5 parent: 2 type: Transform - - uid: 28747 + - uid: 28754 components: - rot: -1.5707963267948966 rad pos: 40.5,-2.5 parent: 2 type: Transform - - uid: 28748 + - uid: 28755 components: - rot: -1.5707963267948966 rad pos: 40.5,-3.5 parent: 2 type: Transform - - uid: 28749 + - uid: 28756 components: - rot: -1.5707963267948966 rad pos: 45.5,-1.5 parent: 2 type: Transform - - uid: 28750 + - uid: 28757 components: - rot: -1.5707963267948966 rad pos: 40.5,-5.5 parent: 2 type: Transform - - uid: 28751 + - uid: 28758 components: - rot: -1.5707963267948966 rad pos: 39.5,-6.5 parent: 2 type: Transform - - uid: 28752 + - uid: 28759 components: - rot: -1.5707963267948966 rad pos: 45.5,-5.5 parent: 2 type: Transform - - uid: 28753 + - uid: 28760 components: - rot: -1.5707963267948966 rad pos: 37.5,-6.5 parent: 2 type: Transform - - uid: 28754 + - uid: 28761 components: - rot: -1.5707963267948966 rad pos: 37.5,-7.5 parent: 2 type: Transform - - uid: 28755 + - uid: 28762 components: - rot: -1.5707963267948966 rad pos: 45.5,-3.5 parent: 2 type: Transform - - uid: 28756 + - uid: 28763 components: - pos: 40.5,-6.5 parent: 2 type: Transform - - uid: 28757 + - uid: 28764 components: - pos: -14.5,-18.5 parent: 2 type: Transform - - uid: 28758 + - uid: 28765 components: - pos: 24.5,-54.5 parent: 2 type: Transform - - uid: 28759 + - uid: 28766 components: - pos: -17.5,-21.5 parent: 2 type: Transform - - uid: 28760 + - uid: 28767 components: - pos: 55.5,-7.5 parent: 2 type: Transform - - uid: 28761 + - uid: 28768 components: - pos: 49.5,-3.5 parent: 2 type: Transform - - uid: 28762 + - uid: 28769 components: - pos: 58.5,0.5 parent: 2 type: Transform - - uid: 28763 + - uid: 28770 components: - pos: 58.5,-1.5 parent: 2 type: Transform - - uid: 28764 + - uid: 28771 components: - pos: 58.5,-2.5 parent: 2 type: Transform - - uid: 28765 + - uid: 28772 components: - pos: 57.5,-2.5 parent: 2 type: Transform - - uid: 28766 + - uid: 28773 components: - pos: 59.5,-4.5 parent: 2 type: Transform - - uid: 28767 + - uid: 28774 components: - pos: 48.5,-9.5 parent: 2 type: Transform - - uid: 28768 + - uid: 28775 components: - pos: 48.5,-6.5 parent: 2 type: Transform - - uid: 28769 + - uid: 28776 components: - pos: 48.5,-7.5 parent: 2 type: Transform - - uid: 28770 + - uid: 28777 components: - pos: 6.5,-17.5 parent: 2 type: Transform - - uid: 28771 + - uid: 28778 components: - rot: 1.5707963267948966 rad pos: 66.5,-6.5 parent: 2 type: Transform - - uid: 28772 + - uid: 28779 components: - rot: 1.5707963267948966 rad pos: 66.5,-12.5 parent: 2 type: Transform - - uid: 28773 + - uid: 28780 components: - rot: 1.5707963267948966 rad pos: 66.5,-10.5 parent: 2 type: Transform - - uid: 28774 + - uid: 28781 components: - pos: 65.5,-4.5 parent: 2 type: Transform - - uid: 28775 + - uid: 28782 components: - pos: 63.5,-4.5 parent: 2 type: Transform - - uid: 28776 + - uid: 28783 components: - pos: 61.5,-4.5 parent: 2 type: Transform - - uid: 28777 + - uid: 28784 components: - rot: -1.5707963267948966 rad pos: 62.5,-4.5 parent: 2 type: Transform - - uid: 28778 + - uid: 28785 components: - pos: 53.5,-14.5 parent: 2 type: Transform - - uid: 28779 + - uid: 28786 components: - pos: 61.5,-14.5 parent: 2 type: Transform - - uid: 28780 + - uid: 28787 components: - pos: 60.5,-14.5 parent: 2 type: Transform - - uid: 28781 + - uid: 28788 components: - pos: 59.5,-7.5 parent: 2 type: Transform - - uid: 28782 + - uid: 28789 components: - pos: 58.5,-7.5 parent: 2 type: Transform - - uid: 28783 + - uid: 28790 components: - pos: 57.5,-7.5 parent: 2 type: Transform - - uid: 28784 + - uid: 28791 components: - pos: 56.5,-7.5 parent: 2 type: Transform - - uid: 28785 + - uid: 28792 components: - pos: 59.5,-9.5 parent: 2 type: Transform - - uid: 28786 + - uid: 28793 components: - pos: 58.5,-9.5 parent: 2 type: Transform - - uid: 28787 + - uid: 28794 components: - pos: 57.5,-9.5 parent: 2 type: Transform - - uid: 28788 + - uid: 28795 components: - pos: 56.5,-9.5 parent: 2 type: Transform - - uid: 28789 + - uid: 28796 components: - pos: 55.5,-9.5 parent: 2 type: Transform - - uid: 28790 + - uid: 28797 components: - pos: 55.5,-8.5 parent: 2 type: Transform - - uid: 28791 + - uid: 28798 components: - rot: 3.141592653589793 rad pos: 58.5,-3.5 parent: 2 type: Transform - - uid: 28792 + - uid: 28799 components: - pos: 60.5,-29.5 parent: 2 type: Transform - - uid: 28793 + - uid: 28800 components: - pos: 60.5,-30.5 parent: 2 type: Transform - - uid: 28794 + - uid: 28801 components: - pos: 49.5,-11.5 parent: 2 type: Transform - - uid: 28795 + - uid: 28802 components: - pos: 49.5,-12.5 parent: 2 type: Transform - - uid: 28796 + - uid: 28803 components: - pos: 50.5,-12.5 parent: 2 type: Transform - - uid: 28797 + - uid: 28804 components: - pos: 35.5,-11.5 parent: 2 type: Transform - - uid: 28798 + - uid: 28805 components: - pos: 37.5,-9.5 parent: 2 type: Transform - - uid: 28799 + - uid: 28806 components: - pos: 38.5,-9.5 parent: 2 type: Transform - - uid: 28800 + - uid: 28807 components: - pos: 39.5,-9.5 parent: 2 type: Transform - - uid: 28801 + - uid: 28808 components: - pos: 39.5,-8.5 parent: 2 type: Transform - - uid: 28802 + - uid: 28809 components: - pos: 41.5,-6.5 parent: 2 type: Transform - - uid: 28803 + - uid: 28810 components: - pos: 41.5,-7.5 parent: 2 type: Transform - - uid: 28804 + - uid: 28811 components: - pos: 41.5,-8.5 parent: 2 type: Transform - - uid: 28805 + - uid: 28812 components: - pos: 41.5,-9.5 parent: 2 type: Transform - - uid: 28806 + - uid: 28813 components: - pos: 41.5,-10.5 parent: 2 type: Transform - - uid: 28807 + - uid: 28814 components: - pos: 39.5,-10.5 parent: 2 type: Transform - - uid: 28808 + - uid: 28815 components: - pos: 39.5,-11.5 parent: 2 type: Transform - - uid: 28809 + - uid: 28816 components: - pos: 37.5,-11.5 parent: 2 type: Transform - - uid: 28810 + - uid: 28817 components: - pos: 37.5,-12.5 parent: 2 type: Transform - - uid: 28811 + - uid: 28818 components: - pos: 37.5,-14.5 parent: 2 type: Transform - - uid: 28812 + - uid: 28819 components: - pos: 45.5,-6.5 parent: 2 type: Transform - - uid: 28813 + - uid: 28820 components: - pos: 45.5,-7.5 parent: 2 type: Transform - - uid: 28814 + - uid: 28821 components: - pos: 45.5,-8.5 parent: 2 type: Transform - - uid: 28815 + - uid: 28822 components: - pos: 45.5,-9.5 parent: 2 type: Transform - - uid: 28816 + - uid: 28823 components: - pos: 43.5,-9.5 parent: 2 type: Transform - - uid: 28817 + - uid: 28824 components: - pos: 45.5,-10.5 parent: 2 type: Transform - - uid: 28818 + - uid: 28825 components: - pos: 45.5,-12.5 parent: 2 type: Transform - - uid: 28819 + - uid: 28826 components: - pos: 44.5,-12.5 parent: 2 type: Transform - - uid: 28820 + - uid: 28827 components: - pos: 42.5,-12.5 parent: 2 type: Transform - - uid: 28821 + - uid: 28828 components: - pos: 41.5,-12.5 parent: 2 type: Transform - - uid: 28822 + - uid: 28829 components: - pos: 41.5,-13.5 parent: 2 type: Transform - - uid: 28823 + - uid: 28830 components: - pos: 40.5,-13.5 parent: 2 type: Transform - - uid: 28824 + - uid: 28831 components: - pos: 39.5,-13.5 parent: 2 type: Transform - - uid: 28825 + - uid: 28832 components: - pos: 46.5,-12.5 parent: 2 type: Transform - - uid: 28826 + - uid: 28833 components: - pos: 47.5,-12.5 parent: 2 type: Transform - - uid: 28827 + - uid: 28834 components: - pos: 47.5,-11.5 parent: 2 type: Transform - - uid: 28828 + - uid: 28835 components: - pos: 47.5,-10.5 parent: 2 type: Transform - - uid: 28829 + - uid: 28836 components: - pos: 46.5,-6.5 parent: 2 type: Transform - - uid: 28830 + - uid: 28837 components: - pos: 69.5,-35.5 parent: 2 type: Transform - - uid: 28831 + - uid: 28838 components: - pos: 66.5,-36.5 parent: 2 type: Transform - - uid: 28832 + - uid: 28839 components: - pos: 58.5,-40.5 parent: 2 type: Transform - - uid: 28833 + - uid: 28840 components: - pos: 58.5,-41.5 parent: 2 type: Transform - - uid: 28834 + - uid: 28841 components: - pos: 58.5,-42.5 parent: 2 type: Transform - - uid: 28835 + - uid: 28842 components: - pos: 65.5,-36.5 parent: 2 type: Transform - - uid: 28836 + - uid: 28843 components: - rot: 1.5707963267948966 rad pos: 60.5,-38.5 parent: 2 type: Transform - - uid: 28837 + - uid: 28844 components: - rot: 1.5707963267948966 rad pos: 60.5,-39.5 parent: 2 type: Transform - - uid: 28838 + - uid: 28845 components: - pos: 60.5,-41.5 parent: 2 type: Transform - - uid: 28839 + - uid: 28846 components: - pos: 41.5,-40.5 parent: 2 type: Transform - - uid: 28840 + - uid: 28847 components: - rot: -1.5707963267948966 rad pos: 44.5,-34.5 parent: 2 type: Transform - - uid: 28841 + - uid: 28848 components: - rot: -1.5707963267948966 rad pos: 47.5,-34.5 parent: 2 type: Transform - - uid: 28842 + - uid: 28849 components: - rot: -1.5707963267948966 rad pos: 42.5,-34.5 parent: 2 type: Transform - - uid: 28843 + - uid: 28850 components: - rot: -1.5707963267948966 rad pos: 51.5,-36.5 parent: 2 type: Transform - - uid: 28844 + - uid: 28851 components: - rot: 3.141592653589793 rad pos: 44.5,-40.5 parent: 2 type: Transform - - uid: 28845 + - uid: 28852 components: - pos: 47.5,-40.5 parent: 2 type: Transform - - uid: 28846 + - uid: 28853 components: - pos: 47.5,-44.5 parent: 2 type: Transform - - uid: 28847 + - uid: 28854 components: - pos: 46.5,-44.5 parent: 2 type: Transform - - uid: 28848 + - uid: 28855 components: - pos: 45.5,-44.5 parent: 2 type: Transform - - uid: 28849 + - uid: 28856 components: - pos: 41.5,-44.5 parent: 2 type: Transform - - uid: 28850 + - uid: 28857 components: - rot: -1.5707963267948966 rad pos: 40.5,-34.5 parent: 2 type: Transform - - uid: 28851 + - uid: 28858 components: - rot: -1.5707963267948966 rad pos: 52.5,-36.5 parent: 2 type: Transform - - uid: 28852 + - uid: 28859 components: - pos: 53.5,-38.5 parent: 2 type: Transform - - uid: 28853 + - uid: 28860 components: - rot: -1.5707963267948966 rad pos: 41.5,-34.5 parent: 2 type: Transform - - uid: 28854 + - uid: 28861 components: - pos: 47.5,-39.5 parent: 2 type: Transform - - uid: 28855 + - uid: 28862 components: - pos: 47.5,-38.5 parent: 2 type: Transform - - uid: 28856 + - uid: 28863 components: - pos: 54.5,-39.5 parent: 2 type: Transform - - uid: 28857 + - uid: 28864 components: - pos: 52.5,-38.5 parent: 2 type: Transform - - uid: 28858 + - uid: 28865 components: - pos: 54.5,-38.5 parent: 2 type: Transform - - uid: 28859 + - uid: 28866 components: - pos: 56.5,-33.5 parent: 2 type: Transform - - uid: 28860 + - uid: 28867 components: - pos: 59.5,-37.5 parent: 2 type: Transform - - uid: 28861 + - uid: 28868 components: - pos: 59.5,-36.5 parent: 2 type: Transform - - uid: 28862 + - uid: 28869 components: - pos: 58.5,-36.5 parent: 2 type: Transform - - uid: 28863 + - uid: 28870 components: - pos: 47.5,-47.5 parent: 2 type: Transform - - uid: 28864 + - uid: 28871 components: - pos: 54.5,-40.5 parent: 2 type: Transform - - uid: 28865 + - uid: 28872 components: - pos: 55.5,-40.5 parent: 2 type: Transform - - uid: 28866 + - uid: 28873 components: - pos: 54.5,-42.5 parent: 2 type: Transform - - uid: 28867 + - uid: 28874 components: - pos: 54.5,-43.5 parent: 2 type: Transform - - uid: 28868 + - uid: 28875 components: - pos: 51.5,-48.5 parent: 2 type: Transform - - uid: 28869 + - uid: 28876 components: - pos: 48.5,-48.5 parent: 2 type: Transform - - uid: 28870 + - uid: 28877 components: - pos: 47.5,-48.5 parent: 2 type: Transform - - uid: 28871 + - uid: 28878 components: - pos: 56.5,-40.5 parent: 2 type: Transform - - uid: 28872 + - uid: 28879 components: - pos: 57.5,-40.5 parent: 2 type: Transform - - uid: 28873 + - uid: 28880 components: - rot: -1.5707963267948966 rad pos: 48.5,-36.5 parent: 2 type: Transform - - uid: 28874 + - uid: 28881 components: - pos: 58.5,-43.5 parent: 2 type: Transform - - uid: 28875 + - uid: 28882 components: - pos: 55.5,-43.5 parent: 2 type: Transform - - uid: 28876 + - uid: 28883 components: - pos: 56.5,-43.5 parent: 2 type: Transform - - uid: 28877 + - uid: 28884 components: - pos: 47.5,-49.5 parent: 2 type: Transform - - uid: 28878 + - uid: 28885 components: - pos: 47.5,-50.5 parent: 2 type: Transform - - uid: 28879 + - uid: 28886 components: - pos: 46.5,-50.5 parent: 2 type: Transform - - uid: 28880 + - uid: 28887 components: - pos: 45.5,-50.5 parent: 2 type: Transform - - uid: 28881 + - uid: 28888 components: - pos: 44.5,-50.5 parent: 2 type: Transform - - uid: 28882 + - uid: 28889 components: - pos: 43.5,-50.5 parent: 2 type: Transform - - uid: 28883 + - uid: 28890 components: - pos: 42.5,-50.5 parent: 2 type: Transform - - uid: 28884 + - uid: 28891 components: - pos: 41.5,-50.5 parent: 2 type: Transform - - uid: 28885 + - uid: 28892 components: - pos: 57.5,-31.5 parent: 2 type: Transform - - uid: 28886 + - uid: 28893 components: - pos: 47.5,-35.5 parent: 2 type: Transform - - uid: 28887 + - uid: 28894 components: - rot: -1.5707963267948966 rad pos: 46.5,-34.5 parent: 2 type: Transform - - uid: 28888 + - uid: 28895 components: - pos: 66.5,-49.5 parent: 2 type: Transform - - uid: 28889 + - uid: 28896 components: - pos: 66.5,-44.5 parent: 2 type: Transform - - uid: 28890 + - uid: 28897 components: - pos: 66.5,-43.5 parent: 2 type: Transform - - uid: 28891 + - uid: 28898 components: - pos: 37.5,-44.5 parent: 2 type: Transform - - uid: 28892 + - uid: 28899 components: - pos: 40.5,-45.5 parent: 2 type: Transform - - uid: 28893 + - uid: 28900 components: - pos: 40.5,-47.5 parent: 2 type: Transform - - uid: 28894 + - uid: 28901 components: - pos: 40.5,-44.5 parent: 2 type: Transform - - uid: 28895 + - uid: 28902 components: - pos: 40.5,-48.5 parent: 2 type: Transform - - uid: 28896 + - uid: 28903 components: - rot: -1.5707963267948966 rad pos: -17.5,23.5 parent: 2 type: Transform - - uid: 28897 + - uid: 28904 components: - pos: 46.5,-40.5 parent: 2 type: Transform - - uid: 28898 + - uid: 28905 components: - pos: 52.5,-59.5 parent: 2 type: Transform - - uid: 28899 + - uid: 28906 components: - pos: 52.5,-60.5 parent: 2 type: Transform - - uid: 28900 + - uid: 28907 components: - pos: 66.5,-35.5 parent: 2 type: Transform - - uid: 28901 + - uid: 28908 components: - pos: 67.5,-35.5 parent: 2 type: Transform - - uid: 28902 + - uid: 28909 components: - pos: 68.5,-35.5 parent: 2 type: Transform - - uid: 28903 + - uid: 28910 components: - rot: -1.5707963267948966 rad pos: 66.5,-47.5 parent: 2 type: Transform - - uid: 28904 + - uid: 28911 components: - rot: 3.141592653589793 rad pos: 40.5,-46.5 parent: 2 type: Transform - - uid: 28905 + - uid: 28912 components: - pos: 8.5,-51.5 parent: 2 type: Transform - - uid: 28906 + - uid: 28913 components: - pos: 38.5,-47.5 parent: 2 type: Transform - - uid: 28907 + - uid: 28914 components: - pos: 37.5,-47.5 parent: 2 type: Transform - - uid: 28908 + - uid: 28915 components: - pos: 37.5,-46.5 parent: 2 type: Transform - - uid: 28909 + - uid: 28916 components: - pos: 37.5,-45.5 parent: 2 type: Transform - - uid: 28910 + - uid: 28917 components: - pos: 57.5,-63.5 parent: 2 type: Transform - - uid: 28911 + - uid: 28918 components: - pos: 57.5,-36.5 parent: 2 type: Transform - - uid: 28912 + - uid: 28919 components: - pos: 74.5,-50.5 parent: 2 type: Transform - - uid: 28913 + - uid: 28920 components: - pos: 59.5,-30.5 parent: 2 type: Transform - - uid: 28914 + - uid: 28921 components: - pos: 56.5,-31.5 parent: 2 type: Transform - - uid: 28915 + - uid: 28922 components: - pos: 58.5,-31.5 parent: 2 type: Transform - - uid: 28916 + - uid: 28923 components: - rot: -1.5707963267948966 rad pos: 47.5,-36.5 parent: 2 type: Transform - - uid: 28917 + - uid: 28924 components: - rot: 1.5707963267948966 rad pos: 29.5,-46.5 parent: 2 type: Transform - - uid: 28918 + - uid: 28925 components: - rot: 1.5707963267948966 rad pos: 30.5,-46.5 parent: 2 type: Transform - - uid: 28919 + - uid: 28926 components: - rot: 1.5707963267948966 rad pos: 32.5,-46.5 parent: 2 type: Transform - - uid: 28920 + - uid: 28927 components: - rot: 1.5707963267948966 rad pos: 34.5,-46.5 parent: 2 type: Transform - - uid: 28921 + - uid: 28928 components: - rot: 1.5707963267948966 rad pos: 35.5,-46.5 parent: 2 type: Transform - - uid: 28922 + - uid: 28929 components: - rot: 1.5707963267948966 rad pos: 35.5,-45.5 parent: 2 type: Transform - - uid: 28923 + - uid: 28930 components: - rot: 1.5707963267948966 rad pos: 35.5,-47.5 parent: 2 type: Transform - - uid: 28924 + - uid: 28931 components: - rot: 1.5707963267948966 rad pos: 35.5,-48.5 parent: 2 type: Transform - - uid: 28925 + - uid: 28932 components: - rot: 1.5707963267948966 rad pos: 35.5,-49.5 parent: 2 type: Transform - - uid: 28926 + - uid: 28933 components: - rot: 1.5707963267948966 rad pos: 35.5,-50.5 parent: 2 type: Transform - - uid: 28927 + - uid: 28934 components: - rot: 1.5707963267948966 rad pos: 35.5,-51.5 parent: 2 type: Transform - - uid: 28928 + - uid: 28935 components: - rot: 1.5707963267948966 rad pos: 35.5,-53.5 parent: 2 type: Transform - - uid: 28929 + - uid: 28936 components: - pos: 35.5,-52.5 parent: 2 type: Transform - - uid: 28930 + - uid: 28937 components: - rot: 1.5707963267948966 rad pos: 35.5,-55.5 parent: 2 type: Transform - - uid: 28931 + - uid: 28938 components: - rot: 1.5707963267948966 rad pos: 35.5,-56.5 parent: 2 type: Transform - - uid: 28932 + - uid: 28939 components: - rot: 1.5707963267948966 rad pos: 35.5,-57.5 parent: 2 type: Transform - - uid: 28933 + - uid: 28940 components: - rot: 1.5707963267948966 rad pos: 34.5,-57.5 parent: 2 type: Transform - - uid: 28934 + - uid: 28941 components: - pos: 60.5,-37.5 parent: 2 type: Transform - - uid: 28935 + - uid: 28942 components: - pos: 44.5,-55.5 parent: 2 type: Transform - - uid: 28936 + - uid: 28943 components: - pos: 44.5,-54.5 parent: 2 type: Transform - - uid: 28937 + - uid: 28944 components: - pos: 44.5,-53.5 parent: 2 type: Transform - - uid: 28938 + - uid: 28945 components: - pos: 44.5,-52.5 parent: 2 type: Transform - - uid: 28939 + - uid: 28946 components: - pos: 44.5,-51.5 parent: 2 type: Transform - - uid: 28940 + - uid: 28947 components: - pos: 45.5,-55.5 parent: 2 type: Transform - - uid: 28941 + - uid: 28948 components: - rot: 3.141592653589793 rad pos: 46.5,-55.5 parent: 2 type: Transform - - uid: 28942 + - uid: 28949 components: - pos: 47.5,-55.5 parent: 2 type: Transform - - uid: 28943 + - uid: 28950 components: - rot: 3.141592653589793 rad pos: 44.5,-57.5 parent: 2 type: Transform - - uid: 28944 + - uid: 28951 components: - rot: 3.141592653589793 rad pos: 44.5,-58.5 parent: 2 type: Transform - - uid: 28945 + - uid: 28952 components: - rot: 3.141592653589793 rad pos: 44.5,-59.5 parent: 2 type: Transform - - uid: 28946 + - uid: 28953 components: - rot: 3.141592653589793 rad pos: 44.5,-60.5 parent: 2 type: Transform - - uid: 28947 + - uid: 28954 components: - pos: 41.5,-63.5 parent: 2 type: Transform - - uid: 28948 + - uid: 28955 components: - pos: 41.5,-62.5 parent: 2 type: Transform - - uid: 28949 + - uid: 28956 components: - pos: 46.5,-61.5 parent: 2 type: Transform - - uid: 28950 + - uid: 28957 components: - pos: 52.5,-56.5 parent: 2 type: Transform - - uid: 28951 + - uid: 28958 components: - pos: 48.5,-59.5 parent: 2 type: Transform - - uid: 28952 + - uid: 28959 components: - pos: 47.5,-59.5 parent: 2 type: Transform - - uid: 28953 + - uid: 28960 components: - pos: 47.5,-60.5 parent: 2 type: Transform - - uid: 28954 + - uid: 28961 components: - pos: 47.5,-61.5 parent: 2 type: Transform - - uid: 28955 + - uid: 28962 components: - pos: 45.5,-61.5 parent: 2 type: Transform - - uid: 28956 + - uid: 28963 components: - pos: 44.5,-61.5 parent: 2 type: Transform - - uid: 28957 + - uid: 28964 components: - pos: 43.5,-61.5 parent: 2 type: Transform - - uid: 28958 + - uid: 28965 components: - pos: 42.5,-61.5 parent: 2 type: Transform - - uid: 28959 + - uid: 28966 components: - pos: 41.5,-61.5 parent: 2 type: Transform - - uid: 28960 + - uid: 28967 components: - pos: -18.5,0.5 parent: 2 type: Transform - - uid: 28961 + - uid: 28968 components: - pos: -20.5,0.5 parent: 2 type: Transform - - uid: 28962 + - uid: 28969 components: - rot: -1.5707963267948966 rad pos: -22.5,-16.5 parent: 2 type: Transform - - uid: 28963 + - uid: 28970 components: - pos: -30.5,-9.5 parent: 2 type: Transform - - uid: 28964 + - uid: 28971 components: - pos: -27.5,-15.5 parent: 2 type: Transform - - uid: 28965 + - uid: 28972 components: - pos: -28.5,-15.5 parent: 2 type: Transform - - uid: 28966 + - uid: 28973 components: - pos: -29.5,-15.5 parent: 2 type: Transform - - uid: 28967 + - uid: 28974 components: - pos: -30.5,-15.5 parent: 2 type: Transform - - uid: 28968 + - uid: 28975 components: - pos: -30.5,-11.5 parent: 2 type: Transform - - uid: 28969 + - uid: 28976 components: - pos: -30.5,-14.5 parent: 2 type: Transform - - uid: 28970 + - uid: 28977 components: - pos: -33.5,-13.5 parent: 2 type: Transform - - uid: 28971 + - uid: 28978 components: - pos: -27.5,-19.5 parent: 2 type: Transform - - uid: 28972 + - uid: 28979 components: - rot: -1.5707963267948966 rad pos: -22.5,-18.5 parent: 2 type: Transform - - uid: 28973 + - uid: 28980 components: - pos: -30.5,-19.5 parent: 2 type: Transform - - uid: 28974 + - uid: 28981 components: - rot: -1.5707963267948966 rad pos: -27.5,-6.5 parent: 2 type: Transform - - uid: 28975 + - uid: 28982 components: - rot: -1.5707963267948966 rad pos: -27.5,-5.5 parent: 2 type: Transform - - uid: 28976 + - uid: 28983 components: - rot: -1.5707963267948966 rad pos: -27.5,-4.5 parent: 2 type: Transform - - uid: 28977 + - uid: 28984 components: - rot: -1.5707963267948966 rad pos: -27.5,-3.5 parent: 2 type: Transform - - uid: 28978 + - uid: 28985 components: - rot: -1.5707963267948966 rad pos: -27.5,-2.5 parent: 2 type: Transform - - uid: 28979 + - uid: 28986 components: - rot: -1.5707963267948966 rad pos: -27.5,-1.5 parent: 2 type: Transform - - uid: 28980 + - uid: 28987 components: - pos: -28.5,2.5 parent: 2 type: Transform - - uid: 28981 + - uid: 28988 components: - pos: -28.5,-1.5 parent: 2 type: Transform - - uid: 28982 + - uid: 28989 components: - rot: 3.141592653589793 rad pos: -27.5,-7.5 parent: 2 type: Transform - - uid: 28983 + - uid: 28990 components: - rot: -1.5707963267948966 rad pos: -27.5,2.5 parent: 2 type: Transform - - uid: 28984 + - uid: 28991 components: - rot: -1.5707963267948966 rad pos: -27.5,3.5 parent: 2 type: Transform - - uid: 28985 + - uid: 28992 components: - rot: -1.5707963267948966 rad pos: -27.5,4.5 parent: 2 type: Transform - - uid: 28986 + - uid: 28993 components: - rot: -1.5707963267948966 rad pos: -27.5,5.5 parent: 2 type: Transform - - uid: 28987 + - uid: 28994 components: - rot: -1.5707963267948966 rad pos: -27.5,7.5 parent: 2 type: Transform - - uid: 28988 + - uid: 28995 components: - rot: -1.5707963267948966 rad pos: -27.5,8.5 parent: 2 type: Transform - - uid: 28989 + - uid: 28996 components: - rot: -1.5707963267948966 rad pos: -27.5,9.5 parent: 2 type: Transform - - uid: 28990 + - uid: 28997 components: - pos: -28.5,12.5 parent: 2 type: Transform - - uid: 28991 + - uid: 28998 components: - rot: -1.5707963267948966 rad pos: -29.5,-18.5 parent: 2 type: Transform - - uid: 28992 + - uid: 28999 components: - rot: -1.5707963267948966 rad pos: -28.5,-18.5 parent: 2 type: Transform - - uid: 28993 + - uid: 29000 components: - pos: -22.5,-25.5 parent: 2 type: Transform - - uid: 28994 + - uid: 29001 components: - pos: -23.5,-25.5 parent: 2 type: Transform - - uid: 28995 + - uid: 29002 components: - pos: -24.5,-25.5 parent: 2 type: Transform - - uid: 28996 + - uid: 29003 components: - pos: -25.5,-25.5 parent: 2 type: Transform - - uid: 28997 + - uid: 29004 components: - pos: -26.5,-25.5 parent: 2 type: Transform - - uid: 28998 + - uid: 29005 components: - pos: -27.5,-25.5 parent: 2 type: Transform - - uid: 28999 + - uid: 29006 components: - pos: -27.5,-23.5 parent: 2 type: Transform - - uid: 29000 + - uid: 29007 components: - pos: -27.5,-24.5 parent: 2 type: Transform - - uid: 29001 + - uid: 29008 components: - pos: -27.5,-21.5 parent: 2 type: Transform - - uid: 29002 + - uid: 29009 components: - pos: -27.5,-20.5 parent: 2 type: Transform - - uid: 29003 + - uid: 29010 components: - rot: -1.5707963267948966 rad pos: -21.5,-23.5 parent: 2 type: Transform - - uid: 29004 + - uid: 29011 components: - rot: -1.5707963267948966 rad pos: -26.5,-18.5 parent: 2 type: Transform - - uid: 29005 + - uid: 29012 components: - rot: -1.5707963267948966 rad pos: -28.5,-24.5 parent: 2 type: Transform - - uid: 29006 + - uid: 29013 components: - rot: -1.5707963267948966 rad pos: -29.5,-24.5 parent: 2 type: Transform - - uid: 29007 + - uid: 29014 components: - rot: -1.5707963267948966 rad pos: -30.5,-24.5 parent: 2 type: Transform - - uid: 29008 + - uid: 29015 components: - rot: -1.5707963267948966 rad pos: -30.5,-20.5 parent: 2 type: Transform - - uid: 29009 + - uid: 29016 components: - pos: -30.5,-21.5 parent: 2 type: Transform - - uid: 29010 + - uid: 29017 components: - pos: -30.5,-22.5 parent: 2 type: Transform - - uid: 29011 + - uid: 29018 components: - pos: 50.5,41.5 parent: 2 type: Transform - - uid: 29012 + - uid: 29019 components: - pos: -21.5,-25.5 parent: 2 type: Transform - - uid: 29013 + - uid: 29020 components: - pos: -21.5,-27.5 parent: 2 type: Transform - - uid: 29014 + - uid: 29021 components: - pos: -21.5,-28.5 parent: 2 type: Transform - - uid: 29015 + - uid: 29022 components: - pos: -21.5,-29.5 parent: 2 type: Transform - - uid: 29016 + - uid: 29023 components: - pos: -21.5,-30.5 parent: 2 type: Transform - - uid: 29017 + - uid: 29024 components: - pos: -21.5,-31.5 parent: 2 type: Transform - - uid: 29018 + - uid: 29025 components: - pos: -21.5,-33.5 parent: 2 type: Transform - - uid: 29019 + - uid: 29026 components: - pos: -21.5,-36.5 parent: 2 type: Transform - - uid: 29020 + - uid: 29027 components: - pos: -21.5,-37.5 parent: 2 type: Transform - - uid: 29021 + - uid: 29028 components: - pos: -21.5,-38.5 parent: 2 type: Transform - - uid: 29022 + - uid: 29029 components: - pos: -21.5,-39.5 parent: 2 type: Transform - - uid: 29023 + - uid: 29030 components: - pos: -21.5,-40.5 parent: 2 type: Transform - - uid: 29024 + - uid: 29031 components: - pos: -21.5,-41.5 parent: 2 type: Transform - - uid: 29025 + - uid: 29032 components: - pos: -21.5,-43.5 parent: 2 type: Transform - - uid: 29026 + - uid: 29033 components: - pos: 37.5,-49.5 parent: 2 type: Transform - - uid: 29027 + - uid: 29034 components: - pos: 38.5,-49.5 parent: 2 type: Transform - - uid: 29028 + - uid: 29035 components: - pos: 39.5,-50.5 parent: 2 type: Transform - - uid: 29029 + - uid: 29036 components: - pos: 38.5,-50.5 parent: 2 type: Transform - - uid: 29030 + - uid: 29037 components: - pos: -1.5,-12.5 parent: 2 type: Transform - - uid: 29031 + - uid: 29038 components: - pos: -1.5,-13.5 parent: 2 type: Transform - - uid: 29032 + - uid: 29039 components: - pos: 57.5,-61.5 parent: 2 type: Transform - - uid: 29033 + - uid: 29040 components: - pos: 6.5,-58.5 parent: 2 type: Transform - - uid: 29034 + - uid: 29041 components: - pos: -22.5,-27.5 parent: 2 type: Transform - - uid: 29035 + - uid: 29042 components: - pos: -17.5,-30.5 parent: 2 type: Transform - - uid: 29036 + - uid: 29043 components: - rot: 3.141592653589793 rad pos: 42.5,-58.5 parent: 2 type: Transform - - uid: 29037 + - uid: 29044 components: - rot: 3.141592653589793 rad pos: 42.5,-60.5 parent: 2 type: Transform - - uid: 29038 + - uid: 29045 components: - pos: 9.5,-69.5 parent: 2 type: Transform - - uid: 29039 + - uid: 29046 components: - pos: 5.5,-72.5 parent: 2 type: Transform - - uid: 29040 + - uid: 29047 components: - pos: -40.5,-13.5 parent: 2 type: Transform - - uid: 29041 + - uid: 29048 components: - pos: -40.5,-8.5 parent: 2 type: Transform - - uid: 29042 + - uid: 29049 components: - pos: -40.5,-7.5 parent: 2 type: Transform - - uid: 29043 + - uid: 29050 components: - pos: -33.5,-8.5 parent: 2 type: Transform - - uid: 29044 + - uid: 29051 components: - pos: -30.5,-8.5 parent: 2 type: Transform - - uid: 29045 + - uid: 29052 components: - pos: -33.5,-20.5 parent: 2 type: Transform - - uid: 29046 + - uid: 29053 components: - pos: -30.5,-25.5 parent: 2 type: Transform - - uid: 29047 + - uid: 29054 components: - pos: -33.5,-25.5 parent: 2 type: Transform - - uid: 29048 + - uid: 29055 components: - pos: -33.5,-21.5 parent: 2 type: Transform - - uid: 29049 + - uid: 29056 components: - pos: -23.5,-27.5 parent: 2 type: Transform - - uid: 29050 + - uid: 29057 components: - pos: -24.5,-27.5 parent: 2 type: Transform - - uid: 29051 + - uid: 29058 components: - rot: 1.5707963267948966 rad pos: -26.5,-28.5 parent: 2 type: Transform - - uid: 29052 + - uid: 29059 components: - pos: -26.5,-27.5 parent: 2 type: Transform - - uid: 29053 + - uid: 29060 components: - pos: -27.5,-27.5 parent: 2 type: Transform - - uid: 29054 + - uid: 29061 components: - pos: -28.5,-27.5 parent: 2 type: Transform - - uid: 29055 + - uid: 29062 components: - pos: -29.5,-27.5 parent: 2 type: Transform - - uid: 29056 + - uid: 29063 components: - pos: -30.5,-27.5 parent: 2 type: Transform - - uid: 29057 + - uid: 29064 components: - pos: -33.5,-27.5 parent: 2 type: Transform - - uid: 29058 + - uid: 29065 components: - pos: -34.5,-27.5 parent: 2 type: Transform - - uid: 29059 + - uid: 29066 components: - pos: -35.5,-27.5 parent: 2 type: Transform - - uid: 29060 + - uid: 29067 components: - pos: -36.5,-27.5 parent: 2 type: Transform - - uid: 29061 + - uid: 29068 components: - pos: -33.5,-28.5 parent: 2 type: Transform - - uid: 29062 + - uid: 29069 components: - pos: -33.5,-29.5 parent: 2 type: Transform - - uid: 29063 + - uid: 29070 components: - pos: -33.5,-30.5 parent: 2 type: Transform - - uid: 29064 + - uid: 29071 components: - pos: -30.5,-28.5 parent: 2 type: Transform - - uid: 29065 + - uid: 29072 components: - pos: -30.5,-29.5 parent: 2 type: Transform - - uid: 29066 + - uid: 29073 components: - pos: -30.5,-30.5 parent: 2 type: Transform - - uid: 29067 + - uid: 29074 components: - pos: -45.5,-25.5 parent: 2 type: Transform - - uid: 29068 + - uid: 29075 components: - pos: -45.5,-26.5 parent: 2 type: Transform - - uid: 29069 + - uid: 29076 components: - pos: -36.5,-26.5 parent: 2 type: Transform - - uid: 29070 + - uid: 29077 components: - pos: -36.5,-25.5 parent: 2 type: Transform - - uid: 29071 + - uid: 29078 components: - pos: -37.5,-25.5 parent: 2 type: Transform - - uid: 29072 + - uid: 29079 components: - pos: -38.5,-25.5 parent: 2 type: Transform - - uid: 29073 + - uid: 29080 components: - pos: -34.5,-21.5 parent: 2 type: Transform - - uid: 29074 + - uid: 29081 components: - pos: -35.5,-21.5 parent: 2 type: Transform - - uid: 29075 + - uid: 29082 components: - pos: -36.5,-21.5 parent: 2 type: Transform - - uid: 29076 + - uid: 29083 components: - pos: -38.5,-21.5 parent: 2 type: Transform - - uid: 29077 + - uid: 29084 components: - pos: -36.5,-22.5 parent: 2 type: Transform - - uid: 29078 + - uid: 29085 components: - pos: -36.5,-23.5 parent: 2 type: Transform - - uid: 29079 + - uid: 29086 components: - pos: -38.5,-23.5 parent: 2 type: Transform - - uid: 29080 + - uid: 29087 components: - pos: -38.5,-24.5 parent: 2 type: Transform - - uid: 29081 + - uid: 29088 components: - pos: -39.5,-21.5 parent: 2 type: Transform - - uid: 29082 + - uid: 29089 components: - pos: 52.5,-35.5 parent: 2 type: Transform - - uid: 29083 + - uid: 29090 components: - pos: 53.5,-33.5 parent: 2 type: Transform - - uid: 29084 + - uid: 29091 components: - pos: 54.5,-62.5 parent: 2 type: Transform - - uid: 29085 + - uid: 29092 components: - pos: 44.5,-6.5 parent: 2 type: Transform - - uid: 29086 + - uid: 29093 components: - rot: 1.5707963267948966 rad pos: -28.5,7.5 parent: 2 type: Transform - - uid: 29087 + - uid: 29094 components: - rot: 1.5707963267948966 rad pos: -28.5,6.5 parent: 2 type: Transform - - uid: 29088 + - uid: 29095 components: - rot: 1.5707963267948966 rad pos: -28.5,5.5 parent: 2 type: Transform - - uid: 29089 + - uid: 29096 components: - pos: -49.5,-29.5 parent: 2 type: Transform - - uid: 29090 + - uid: 29097 components: - pos: -51.5,-30.5 parent: 2 type: Transform - - uid: 29091 + - uid: 29098 components: - pos: -50.5,-30.5 parent: 2 type: Transform - - uid: 29092 + - uid: 29099 components: - pos: -43.5,-21.5 parent: 2 type: Transform - - uid: 29093 + - uid: 29100 components: - pos: -43.5,-20.5 parent: 2 type: Transform - - uid: 29094 + - uid: 29101 components: - rot: 1.5707963267948966 rad pos: -42.5,-25.5 parent: 2 type: Transform - - uid: 29095 + - uid: 29102 components: - rot: 1.5707963267948966 rad pos: -40.5,-25.5 parent: 2 type: Transform - - uid: 29096 + - uid: 29103 components: - rot: 1.5707963267948966 rad pos: -39.5,-25.5 parent: 2 type: Transform - - uid: 29097 + - uid: 29104 components: - rot: 1.5707963267948966 rad pos: -40.5,-27.5 parent: 2 type: Transform - - uid: 29098 + - uid: 29105 components: - rot: 1.5707963267948966 rad pos: -41.5,-27.5 parent: 2 type: Transform - - uid: 29099 + - uid: 29106 components: - rot: 1.5707963267948966 rad pos: -42.5,-27.5 parent: 2 type: Transform - - uid: 29100 + - uid: 29107 components: - rot: 1.5707963267948966 rad pos: -39.5,-27.5 parent: 2 type: Transform - - uid: 29101 + - uid: 29108 components: - rot: 1.5707963267948966 rad pos: -23.5,-30.5 parent: 2 type: Transform - - uid: 29102 + - uid: 29109 components: - rot: 1.5707963267948966 rad pos: -25.5,-30.5 parent: 2 type: Transform - - uid: 29103 + - uid: 29110 components: - rot: 1.5707963267948966 rad pos: -26.5,-30.5 parent: 2 type: Transform - - uid: 29104 + - uid: 29111 components: - rot: 1.5707963267948966 rad pos: -26.5,-31.5 parent: 2 type: Transform - - uid: 29105 + - uid: 29112 components: - rot: 1.5707963267948966 rad pos: -26.5,-32.5 parent: 2 type: Transform - - uid: 29106 + - uid: 29113 components: - rot: 1.5707963267948966 rad pos: -27.5,-32.5 parent: 2 type: Transform - - uid: 29107 + - uid: 29114 components: - rot: 1.5707963267948966 rad pos: -28.5,-32.5 parent: 2 type: Transform - - uid: 29108 + - uid: 29115 components: - rot: 1.5707963267948966 rad pos: -29.5,-32.5 parent: 2 type: Transform - - uid: 29109 + - uid: 29116 components: - rot: 1.5707963267948966 rad pos: -29.5,-31.5 parent: 2 type: Transform - - uid: 29110 + - uid: 29117 components: - rot: 1.5707963267948966 rad pos: -30.5,-31.5 parent: 2 type: Transform - - uid: 29111 + - uid: 29118 components: - rot: 1.5707963267948966 rad pos: -26.5,-35.5 parent: 2 type: Transform - - uid: 29112 + - uid: 29119 components: - rot: 1.5707963267948966 rad pos: -26.5,-36.5 parent: 2 type: Transform - - uid: 29113 + - uid: 29120 components: - pos: -29.5,-37.5 parent: 2 type: Transform - - uid: 29114 + - uid: 29121 components: - rot: 1.5707963267948966 rad pos: -28.5,-35.5 parent: 2 type: Transform - - uid: 29115 + - uid: 29122 components: - rot: 1.5707963267948966 rad pos: -29.5,-36.5 parent: 2 type: Transform - - uid: 29116 + - uid: 29123 components: - rot: 1.5707963267948966 rad pos: -30.5,-36.5 parent: 2 type: Transform - - uid: 29117 + - uid: 29124 components: - rot: 1.5707963267948966 rad pos: -33.5,-36.5 parent: 2 type: Transform - - uid: 29118 + - uid: 29125 components: - rot: 1.5707963267948966 rad pos: -34.5,-36.5 parent: 2 type: Transform - - uid: 29119 + - uid: 29126 components: - rot: 1.5707963267948966 rad pos: -34.5,-31.5 parent: 2 type: Transform - - uid: 29120 + - uid: 29127 components: - rot: 1.5707963267948966 rad pos: -34.5,-32.5 parent: 2 type: Transform - - uid: 29121 + - uid: 29128 components: - pos: -34.5,-37.5 parent: 2 type: Transform - - uid: 29122 + - uid: 29129 components: - rot: 1.5707963267948966 rad pos: -34.5,-35.5 parent: 2 type: Transform - - uid: 29123 + - uid: 29130 components: - rot: 1.5707963267948966 rad pos: -33.5,-31.5 parent: 2 type: Transform - - uid: 29124 + - uid: 29131 components: - rot: 1.5707963267948966 rad pos: -29.5,-35.5 parent: 2 type: Transform - - uid: 29125 + - uid: 29132 components: - rot: 1.5707963267948966 rad pos: -22.5,-30.5 parent: 2 type: Transform - - uid: 29126 + - uid: 29133 components: - rot: 1.5707963267948966 rad pos: -24.5,-28.5 parent: 2 type: Transform - - uid: 29127 + - uid: 29134 components: - rot: 3.141592653589793 rad pos: -28.5,-6.5 parent: 2 type: Transform - - uid: 29128 + - uid: 29135 components: - pos: -31.5,-4.5 parent: 2 type: Transform - - uid: 29129 + - uid: 29136 components: - pos: -32.5,-4.5 parent: 2 type: Transform - - uid: 29130 + - uid: 29137 components: - pos: -33.5,-4.5 parent: 2 type: Transform - - uid: 29131 + - uid: 29138 components: - pos: -34.5,-4.5 parent: 2 type: Transform - - uid: 29132 + - uid: 29139 components: - pos: -35.5,-4.5 parent: 2 type: Transform - - uid: 29133 + - uid: 29140 components: - pos: -38.5,-3.5 parent: 2 type: Transform - - uid: 29134 + - uid: 29141 components: - pos: -39.5,-3.5 parent: 2 type: Transform - - uid: 29135 + - uid: 29142 components: - pos: -35.5,-3.5 parent: 2 type: Transform - - uid: 29136 + - uid: 29143 components: - pos: -39.5,-4.5 parent: 2 type: Transform - - uid: 29137 + - uid: 29144 components: - pos: -40.5,-4.5 parent: 2 type: Transform - - uid: 29138 + - uid: 29145 components: - pos: -42.5,-4.5 parent: 2 type: Transform - - uid: 29139 + - uid: 29146 components: - pos: -43.5,-4.5 parent: 2 type: Transform - - uid: 29140 + - uid: 29147 components: - pos: -22.5,-40.5 parent: 2 type: Transform - - uid: 29141 + - uid: 29148 components: - pos: -23.5,-40.5 parent: 2 type: Transform - - uid: 29142 + - uid: 29149 components: - pos: -24.5,-40.5 parent: 2 type: Transform - - uid: 29143 + - uid: 29150 components: - pos: -24.5,-41.5 parent: 2 type: Transform - - uid: 29144 + - uid: 29151 components: - pos: -24.5,-42.5 parent: 2 type: Transform - - uid: 29145 + - uid: 29152 components: - pos: -24.5,-43.5 parent: 2 type: Transform - - uid: 29146 + - uid: 29153 components: - pos: -24.5,-44.5 parent: 2 type: Transform - - uid: 29147 + - uid: 29154 components: - pos: -24.5,-45.5 parent: 2 type: Transform - - uid: 29148 + - uid: 29155 components: - pos: -24.5,-46.5 parent: 2 type: Transform - - uid: 29149 + - uid: 29156 components: - pos: -24.5,-47.5 parent: 2 type: Transform - - uid: 29150 + - uid: 29157 components: - pos: -22.5,-37.5 parent: 2 type: Transform - - uid: 29151 + - uid: 29158 components: - pos: -23.5,-37.5 parent: 2 type: Transform - - uid: 29152 + - uid: 29159 components: - pos: -24.5,-37.5 parent: 2 type: Transform - - uid: 29153 + - uid: 29160 components: - pos: -25.5,-37.5 parent: 2 type: Transform - - uid: 29154 + - uid: 29161 components: - pos: -26.5,-37.5 parent: 2 type: Transform - - uid: 29155 + - uid: 29162 components: - pos: -35.5,-31.5 parent: 2 type: Transform - - uid: 29156 + - uid: 29163 components: - pos: -36.5,-31.5 parent: 2 type: Transform - - uid: 29157 + - uid: 29164 components: - pos: -37.5,-31.5 parent: 2 type: Transform - - uid: 29158 + - uid: 29165 components: - pos: -38.5,-31.5 parent: 2 type: Transform - - uid: 29159 + - uid: 29166 components: - pos: -39.5,-31.5 parent: 2 type: Transform - - uid: 29160 + - uid: 29167 components: - pos: -30.5,-38.5 parent: 2 type: Transform - - uid: 29161 + - uid: 29168 components: - pos: -30.5,-39.5 parent: 2 type: Transform - - uid: 29162 + - uid: 29169 components: - pos: -30.5,-41.5 parent: 2 type: Transform - - uid: 29163 + - uid: 29170 components: - pos: -30.5,-42.5 parent: 2 type: Transform - - uid: 29164 + - uid: 29171 components: - pos: -31.5,-42.5 parent: 2 type: Transform - - uid: 29165 + - uid: 29172 components: - pos: -48.5,-4.5 parent: 2 type: Transform - - uid: 29166 + - uid: 29173 components: - pos: -47.5,-4.5 parent: 2 type: Transform - - uid: 29167 + - uid: 29174 components: - pos: -46.5,-4.5 parent: 2 type: Transform - - uid: 29168 + - uid: 29175 components: - pos: -45.5,-4.5 parent: 2 type: Transform - - uid: 29169 + - uid: 29176 components: - pos: -44.5,-4.5 parent: 2 type: Transform - - uid: 29170 + - uid: 29177 components: - pos: -55.5,-19.5 parent: 2 type: Transform - - uid: 29171 + - uid: 29178 components: - pos: -55.5,-20.5 parent: 2 type: Transform - - uid: 29172 + - uid: 29179 components: - pos: -47.5,-26.5 parent: 2 type: Transform - - uid: 29173 + - uid: 29180 components: - pos: -48.5,-26.5 parent: 2 type: Transform - - uid: 29174 + - uid: 29181 components: - pos: -49.5,-26.5 parent: 2 type: Transform - - uid: 29175 + - uid: 29182 components: - pos: -50.5,-26.5 parent: 2 type: Transform - - uid: 29176 + - uid: 29183 components: - rot: 3.141592653589793 rad pos: -41.5,15.5 parent: 2 type: Transform - - uid: 29177 + - uid: 29184 components: - pos: -31.5,-6.5 parent: 2 type: Transform - - uid: 29178 + - uid: 29185 components: - pos: -32.5,-6.5 parent: 2 type: Transform - - uid: 29179 + - uid: 29186 components: - pos: -32.5,-8.5 parent: 2 type: Transform - - uid: 29180 + - uid: 29187 components: - pos: -31.5,-8.5 parent: 2 type: Transform - - uid: 29181 + - uid: 29188 components: - pos: -33.5,-6.5 parent: 2 type: Transform - - uid: 29182 + - uid: 29189 components: - pos: -33.5,-5.5 parent: 2 type: Transform - - uid: 29183 + - uid: 29190 components: - pos: -37.5,-3.5 parent: 2 type: Transform - - uid: 29184 + - uid: 29191 components: - pos: -36.5,-3.5 parent: 2 type: Transform - - uid: 29185 + - uid: 29192 components: - pos: -65.5,-29.5 parent: 2 type: Transform - - uid: 29186 + - uid: 29193 components: - pos: -70.5,-27.5 parent: 2 type: Transform - - uid: 29187 + - uid: 29194 components: - pos: -74.5,-27.5 parent: 2 type: Transform - - uid: 29188 + - uid: 29195 components: - pos: -69.5,-28.5 parent: 2 type: Transform - - uid: 29189 + - uid: 29196 components: - pos: -69.5,-29.5 parent: 2 type: Transform - - uid: 29190 + - uid: 29197 components: - pos: -69.5,-30.5 parent: 2 type: Transform - - uid: 29191 + - uid: 29198 components: - pos: -57.5,-29.5 parent: 2 type: Transform - - uid: 29192 + - uid: 29199 components: - pos: -53.5,-29.5 parent: 2 type: Transform - - uid: 29193 + - uid: 29200 components: - pos: -53.5,-30.5 parent: 2 type: Transform - - uid: 29194 + - uid: 29201 components: - pos: -49.5,-27.5 parent: 2 type: Transform - - uid: 29195 + - uid: 29202 components: - pos: -49.5,-28.5 parent: 2 type: Transform - - uid: 29196 + - uid: 29203 components: - pos: -56.5,-30.5 parent: 2 type: Transform - - uid: 29197 + - uid: 29204 components: - pos: -56.5,-31.5 parent: 2 type: Transform - - uid: 29198 + - uid: 29205 components: - pos: -57.5,-31.5 parent: 2 type: Transform - - uid: 29199 + - uid: 29206 components: - pos: -63.5,-25.5 parent: 2 type: Transform - - uid: 29200 + - uid: 29207 components: - pos: -57.5,-22.5 parent: 2 type: Transform - - uid: 29201 + - uid: 29208 components: - pos: -55.5,-21.5 parent: 2 type: Transform - - uid: 29202 + - uid: 29209 components: - pos: -55.5,-22.5 parent: 2 type: Transform - - uid: 29203 + - uid: 29210 components: - pos: -49.5,-30.5 parent: 2 type: Transform - - uid: 29204 + - uid: 29211 components: - pos: -71.5,-27.5 parent: 2 type: Transform - - uid: 29205 + - uid: 29212 components: - pos: -67.5,-29.5 parent: 2 type: Transform - - uid: 29206 + - uid: 29213 components: - pos: -54.5,-29.5 parent: 2 type: Transform - - uid: 29207 + - uid: 29214 components: - pos: -53.5,-31.5 parent: 2 type: Transform - - uid: 29208 + - uid: 29215 components: - pos: -56.5,-29.5 parent: 2 type: Transform - - uid: 29209 + - uid: 29216 components: - pos: -51.5,-26.5 parent: 2 type: Transform - - uid: 29210 + - uid: 29217 components: - pos: -36.5,-49.5 parent: 2 type: Transform - - uid: 29211 + - uid: 29218 components: - pos: -36.5,-50.5 parent: 2 type: Transform - - uid: 29212 + - uid: 29219 components: - pos: -36.5,-51.5 parent: 2 type: Transform - - uid: 29213 + - uid: 29220 components: - pos: -36.5,-52.5 parent: 2 type: Transform - - uid: 29214 + - uid: 29221 components: - pos: -36.5,-48.5 parent: 2 type: Transform - - uid: 29215 + - uid: 29222 components: - pos: -36.5,-47.5 parent: 2 type: Transform - - uid: 29216 + - uid: 29223 components: - pos: 69.5,-60.5 parent: 2 type: Transform - - uid: 29217 + - uid: 29224 components: - rot: -1.5707963267948966 rad pos: -30.5,-18.5 parent: 2 type: Transform - - uid: 29218 + - uid: 29225 components: - pos: -29.5,-38.5 parent: 2 type: Transform - - uid: 29219 + - uid: 29226 components: - pos: -28.5,-38.5 parent: 2 type: Transform - - uid: 29220 + - uid: 29227 components: - pos: -27.5,-38.5 parent: 2 type: Transform - - uid: 29221 + - uid: 29228 components: - pos: -26.5,-38.5 parent: 2 type: Transform - - uid: 29222 + - uid: 29229 components: - rot: -1.5707963267948966 rad pos: -21.5,-16.5 parent: 2 type: Transform - - uid: 29223 + - uid: 29230 components: - pos: -33.5,-7.5 parent: 2 type: Transform - - uid: 29224 + - uid: 29231 components: - pos: -57.5,-3.5 parent: 2 type: Transform - - uid: 29225 + - uid: 29232 components: - pos: -69.5,-25.5 parent: 2 type: Transform - - uid: 29226 + - uid: 29233 components: - pos: -69.5,-26.5 parent: 2 type: Transform - - uid: 29227 + - uid: 29234 components: - pos: -69.5,-27.5 parent: 2 type: Transform - - uid: 29228 + - uid: 29235 components: - rot: -1.5707963267948966 rad pos: -43.5,-25.5 parent: 2 type: Transform - - uid: 29229 + - uid: 29236 components: - rot: -1.5707963267948966 rad pos: -45.5,-29.5 parent: 2 type: Transform - - uid: 29230 + - uid: 29237 components: - rot: -1.5707963267948966 rad pos: -45.5,-30.5 parent: 2 type: Transform - - uid: 29231 + - uid: 29238 components: - pos: -46.5,-29.5 parent: 2 type: Transform - - uid: 29232 + - uid: 29239 components: - rot: -1.5707963267948966 rad pos: -47.5,-29.5 parent: 2 type: Transform - - uid: 29233 + - uid: 29240 components: - rot: -1.5707963267948966 rad pos: -47.5,-28.5 parent: 2 type: Transform - - uid: 29234 + - uid: 29241 components: - rot: -1.5707963267948966 rad pos: -57.5,-34.5 parent: 2 type: Transform - - uid: 29235 + - uid: 29242 components: - rot: -1.5707963267948966 rad pos: -56.5,-34.5 parent: 2 type: Transform - - uid: 29236 + - uid: 29243 components: - rot: -1.5707963267948966 rad pos: -54.5,-34.5 parent: 2 type: Transform - - uid: 29237 + - uid: 29244 components: - rot: -1.5707963267948966 rad pos: -57.5,-40.5 parent: 2 type: Transform - - uid: 29238 + - uid: 29245 components: - rot: -1.5707963267948966 rad pos: -34.5,-29.5 parent: 2 type: Transform - - uid: 29239 + - uid: 29246 components: - pos: -55.5,-65.5 parent: 2 type: Transform - - uid: 29240 + - uid: 29247 components: - pos: -54.5,-65.5 parent: 2 type: Transform - - uid: 29241 + - uid: 29248 components: - pos: -53.5,-65.5 parent: 2 type: Transform - - uid: 29242 + - uid: 29249 components: - pos: -52.5,-65.5 parent: 2 type: Transform - - uid: 29243 + - uid: 29250 components: - pos: -51.5,-65.5 parent: 2 type: Transform - - uid: 29244 + - uid: 29251 components: - pos: -51.5,-64.5 parent: 2 type: Transform - - uid: 29245 + - uid: 29252 components: - pos: -51.5,-62.5 parent: 2 type: Transform - - uid: 29246 + - uid: 29253 components: - pos: -56.5,-69.5 parent: 2 type: Transform - - uid: 29247 + - uid: 29254 components: - pos: -23.5,-50.5 parent: 2 type: Transform - - uid: 29248 + - uid: 29255 components: - pos: -24.5,-50.5 parent: 2 type: Transform - - uid: 29249 + - uid: 29256 components: - pos: -25.5,-50.5 parent: 2 type: Transform - - uid: 29250 + - uid: 29257 components: - pos: -24.5,-48.5 parent: 2 type: Transform - - uid: 29251 + - uid: 29258 components: - pos: -26.5,-48.5 parent: 2 type: Transform - - uid: 29252 + - uid: 29259 components: - pos: -25.5,-48.5 parent: 2 type: Transform - - uid: 29253 + - uid: 29260 components: - pos: -26.5,-50.5 parent: 2 type: Transform - - uid: 29254 + - uid: 29261 components: - pos: -27.5,-50.5 parent: 2 type: Transform - - uid: 29255 + - uid: 29262 components: - pos: -28.5,-50.5 parent: 2 type: Transform - - uid: 29256 + - uid: 29263 components: - pos: -28.5,-49.5 parent: 2 type: Transform - - uid: 29257 + - uid: 29264 components: - pos: -28.5,-48.5 parent: 2 type: Transform - - uid: 29258 + - uid: 29265 components: - pos: -28.5,-46.5 parent: 2 type: Transform - - uid: 29259 + - uid: 29266 components: - pos: -28.5,-45.5 parent: 2 type: Transform - - uid: 29260 + - uid: 29267 components: - pos: -29.5,-45.5 parent: 2 type: Transform - - uid: 29261 + - uid: 29268 components: - pos: -29.5,-42.5 parent: 2 type: Transform - - uid: 29262 + - uid: 29269 components: - pos: -28.5,-42.5 parent: 2 type: Transform - - uid: 29263 + - uid: 29270 components: - pos: -27.5,-42.5 parent: 2 type: Transform - - uid: 29264 + - uid: 29271 components: - pos: -26.5,-42.5 parent: 2 type: Transform - - uid: 29265 + - uid: 29272 components: - pos: -26.5,-43.5 parent: 2 type: Transform - - uid: 29266 + - uid: 29273 components: - pos: -26.5,-44.5 parent: 2 type: Transform - - uid: 29267 + - uid: 29274 components: - pos: -26.5,-45.5 parent: 2 type: Transform - - uid: 29268 + - uid: 29275 components: - pos: -30.5,-45.5 parent: 2 type: Transform - - uid: 29269 + - uid: 29276 components: - pos: -29.5,-49.5 parent: 2 type: Transform - - uid: 29270 + - uid: 29277 components: - pos: -31.5,-49.5 parent: 2 type: Transform - - uid: 29271 + - uid: 29278 components: - pos: -27.5,-39.5 parent: 2 type: Transform - - uid: 29272 + - uid: 29279 components: - pos: -27.5,-40.5 parent: 2 type: Transform - - uid: 29273 + - uid: 29280 components: - pos: -23.5,-52.5 parent: 2 type: Transform - - uid: 29274 + - uid: 29281 components: - pos: -23.5,-53.5 parent: 2 type: Transform - - uid: 29275 + - uid: 29282 components: - pos: -22.5,-56.5 parent: 2 type: Transform - - uid: 29276 + - uid: 29283 components: - pos: -23.5,-55.5 parent: 2 type: Transform - - uid: 29277 + - uid: 29284 components: - pos: -23.5,-56.5 parent: 2 type: Transform - - uid: 29278 + - uid: 29285 components: - pos: -24.5,-56.5 parent: 2 type: Transform - - uid: 29279 + - uid: 29286 components: - pos: -25.5,-56.5 parent: 2 type: Transform - - uid: 29280 + - uid: 29287 components: - pos: -26.5,-56.5 parent: 2 type: Transform - - uid: 29281 + - uid: 29288 components: - pos: -27.5,-56.5 parent: 2 type: Transform - - uid: 29282 + - uid: 29289 components: - pos: -29.5,-56.5 parent: 2 type: Transform - - uid: 29283 + - uid: 29290 components: - pos: -30.5,-56.5 parent: 2 type: Transform - - uid: 29284 + - uid: 29291 components: - pos: -30.5,-57.5 parent: 2 type: Transform - - uid: 29285 + - uid: 29292 components: - pos: -52.5,-11.5 parent: 2 type: Transform - - uid: 29286 + - uid: 29293 components: - pos: -52.5,-10.5 parent: 2 type: Transform - - uid: 29287 + - uid: 29294 components: - pos: -52.5,-9.5 parent: 2 type: Transform - - uid: 29288 + - uid: 29295 components: - pos: -52.5,-7.5 parent: 2 type: Transform - - uid: 29289 + - uid: 29296 components: - pos: -51.5,-7.5 parent: 2 type: Transform - - uid: 29290 + - uid: 29297 components: - pos: -50.5,-7.5 parent: 2 type: Transform - - uid: 29291 + - uid: 29298 components: - pos: -27.5,-62.5 parent: 2 type: Transform - - uid: 29292 + - uid: 29299 components: - pos: -29.5,-60.5 parent: 2 type: Transform - - uid: 29293 + - uid: 29300 components: - pos: -29.5,-61.5 parent: 2 type: Transform - - uid: 29294 + - uid: 29301 components: - pos: -27.5,-61.5 parent: 2 type: Transform - - uid: 29295 + - uid: 29302 components: - pos: -29.5,-62.5 parent: 2 type: Transform - - uid: 29296 + - uid: 29303 components: - pos: -29.5,-63.5 parent: 2 type: Transform - - uid: 29297 + - uid: 29304 components: - pos: -29.5,-64.5 parent: 2 type: Transform - - uid: 29298 + - uid: 29305 components: - pos: -28.5,-64.5 parent: 2 type: Transform - - uid: 29299 + - uid: 29306 components: - pos: -28.5,-65.5 parent: 2 type: Transform - - uid: 29300 + - uid: 29307 components: - pos: -27.5,-65.5 parent: 2 type: Transform - - uid: 29301 + - uid: 29308 components: - pos: -26.5,-65.5 parent: 2 type: Transform - - uid: 29302 + - uid: 29309 components: - pos: -25.5,-63.5 parent: 2 type: Transform - - uid: 29303 + - uid: 29310 components: - pos: -24.5,-63.5 parent: 2 type: Transform - - uid: 29304 + - uid: 29311 components: - pos: -24.5,-65.5 parent: 2 type: Transform - - uid: 29305 + - uid: 29312 components: - pos: -25.5,-65.5 parent: 2 type: Transform - - uid: 29306 + - uid: 29313 components: - pos: -27.5,-68.5 parent: 2 type: Transform - - uid: 29307 + - uid: 29314 components: - pos: -28.5,-68.5 parent: 2 type: Transform - - uid: 29308 + - uid: 29315 components: - pos: -29.5,-68.5 parent: 2 type: Transform - - uid: 29309 + - uid: 29316 components: - pos: -29.5,-67.5 parent: 2 type: Transform - - uid: 29310 + - uid: 29317 components: - pos: -31.5,-67.5 parent: 2 type: Transform - - uid: 29311 + - uid: 29318 components: - pos: -30.5,-64.5 parent: 2 type: Transform - - uid: 29312 + - uid: 29319 components: - pos: -30.5,-65.5 parent: 2 type: Transform - - uid: 29313 + - uid: 29320 components: - pos: -31.5,-65.5 parent: 2 type: Transform - - uid: 29314 + - uid: 29321 components: - pos: -32.5,-65.5 parent: 2 type: Transform - - uid: 29315 + - uid: 29322 components: - pos: -32.5,-64.5 parent: 2 type: Transform - - uid: 29316 + - uid: 29323 components: - pos: -33.5,-64.5 parent: 2 type: Transform - - uid: 29317 + - uid: 29324 components: - pos: -55.5,-69.5 parent: 2 type: Transform - - uid: 29318 + - uid: 29325 components: - pos: -54.5,-69.5 parent: 2 type: Transform - - uid: 29319 + - uid: 29326 components: - pos: -53.5,-69.5 parent: 2 type: Transform - - uid: 29320 + - uid: 29327 components: - pos: -52.5,-69.5 parent: 2 type: Transform - - uid: 29321 + - uid: 29328 components: - pos: -52.5,-70.5 parent: 2 type: Transform - - uid: 29322 + - uid: 29329 components: - pos: -52.5,-71.5 parent: 2 type: Transform - - uid: 29323 + - uid: 29330 components: - pos: -51.5,-71.5 parent: 2 type: Transform - - uid: 29324 + - uid: 29331 components: - pos: -51.5,-72.5 parent: 2 type: Transform - - uid: 29325 + - uid: 29332 components: - pos: -50.5,-72.5 parent: 2 type: Transform - - uid: 29326 + - uid: 29333 components: - pos: -50.5,-73.5 parent: 2 type: Transform - - uid: 29327 + - uid: 29334 components: - pos: -50.5,-74.5 parent: 2 type: Transform - - uid: 29328 + - uid: 29335 components: - pos: -50.5,-75.5 parent: 2 type: Transform - - uid: 29329 + - uid: 29336 components: - pos: -58.5,-80.5 parent: 2 type: Transform - - uid: 29330 + - uid: 29337 components: - pos: -58.5,-72.5 parent: 2 type: Transform - - uid: 29331 + - uid: 29338 components: - pos: -49.5,-75.5 parent: 2 type: Transform - - uid: 29332 + - uid: 29339 components: - pos: -48.5,-75.5 parent: 2 type: Transform - - uid: 29333 + - uid: 29340 components: - pos: -48.5,-73.5 parent: 2 type: Transform - - uid: 29334 + - uid: 29341 components: - pos: -48.5,-72.5 parent: 2 type: Transform - - uid: 29335 + - uid: 29342 components: - pos: -48.5,-71.5 parent: 2 type: Transform - - uid: 29336 + - uid: 29343 components: - pos: -47.5,-71.5 parent: 2 type: Transform - - uid: 29337 + - uid: 29344 components: - pos: -46.5,-71.5 parent: 2 type: Transform - - uid: 29338 + - uid: 29345 components: - pos: -46.5,-70.5 parent: 2 type: Transform - - uid: 29339 + - uid: 29346 components: - pos: -45.5,-70.5 parent: 2 type: Transform - - uid: 29340 + - uid: 29347 components: - pos: -45.5,-69.5 parent: 2 type: Transform - - uid: 29341 + - uid: 29348 components: - pos: -44.5,-69.5 parent: 2 type: Transform - - uid: 29342 + - uid: 29349 components: - pos: -43.5,-69.5 parent: 2 type: Transform - - uid: 29343 + - uid: 29350 components: - pos: -40.5,-68.5 parent: 2 type: Transform - - uid: 29344 + - uid: 29351 components: - pos: -40.5,-67.5 parent: 2 type: Transform - - uid: 29345 + - uid: 29352 components: - pos: -40.5,-69.5 parent: 2 type: Transform - - uid: 29346 + - uid: 29353 components: - pos: -39.5,-69.5 parent: 2 type: Transform - - uid: 29347 + - uid: 29354 components: - pos: -38.5,-69.5 parent: 2 type: Transform - - uid: 29348 + - uid: 29355 components: - pos: -38.5,-70.5 parent: 2 type: Transform - - uid: 29349 + - uid: 29356 components: - pos: -37.5,-70.5 parent: 2 type: Transform - - uid: 29350 + - uid: 29357 components: - pos: -37.5,-71.5 parent: 2 type: Transform - - uid: 29351 + - uid: 29358 components: - pos: -36.5,-71.5 parent: 2 type: Transform - - uid: 29352 + - uid: 29359 components: - pos: -35.5,-71.5 parent: 2 type: Transform - - uid: 29353 + - uid: 29360 components: - pos: -35.5,-72.5 parent: 2 type: Transform - - uid: 29354 + - uid: 29361 components: - pos: -40.5,-66.5 parent: 2 type: Transform - - uid: 29355 + - uid: 29362 components: - pos: -43.5,-68.5 parent: 2 type: Transform - - uid: 29356 + - uid: 29363 components: - pos: -40.5,-65.5 parent: 2 type: Transform - - uid: 29357 + - uid: 29364 components: - pos: -41.5,-65.5 parent: 2 type: Transform - - uid: 29358 + - uid: 29365 components: - pos: -42.5,-65.5 parent: 2 type: Transform - - uid: 29359 + - uid: 29366 components: - pos: -43.5,-65.5 parent: 2 type: Transform - - uid: 29360 + - uid: 29367 components: - pos: -44.5,-65.5 parent: 2 type: Transform - - uid: 29361 + - uid: 29368 components: - pos: -45.5,-65.5 parent: 2 type: Transform - - uid: 29362 + - uid: 29369 components: - pos: -46.5,-65.5 parent: 2 type: Transform - - uid: 29363 + - uid: 29370 components: - pos: -47.5,-65.5 parent: 2 type: Transform - - uid: 29364 + - uid: 29371 components: - pos: -48.5,-67.5 parent: 2 type: Transform - - uid: 29365 + - uid: 29372 components: - pos: -48.5,-68.5 parent: 2 type: Transform - - uid: 29366 + - uid: 29373 components: - pos: -48.5,-69.5 parent: 2 type: Transform - - uid: 29367 + - uid: 29374 components: - pos: -48.5,-70.5 parent: 2 type: Transform - - uid: 29368 + - uid: 29375 components: - pos: -48.5,-65.5 parent: 2 type: Transform - - uid: 29369 + - uid: 29376 components: - pos: -53.5,-66.5 parent: 2 type: Transform - - uid: 29370 + - uid: 29377 components: - pos: -51.5,-69.5 parent: 2 type: Transform - - uid: 29371 + - uid: 29378 components: - pos: -51.5,-68.5 parent: 2 type: Transform - - uid: 29372 + - uid: 29379 components: - pos: -35.5,-63.5 parent: 2 type: Transform - - uid: 29373 + - uid: 29380 components: - pos: -35.5,-64.5 parent: 2 type: Transform - - uid: 29374 + - uid: 29381 components: - pos: -36.5,-66.5 parent: 2 type: Transform - - uid: 29375 + - uid: 29382 components: - pos: -36.5,-67.5 parent: 2 type: Transform - - uid: 29376 + - uid: 29383 components: - pos: -35.5,-67.5 parent: 2 type: Transform - - uid: 29377 + - uid: 29384 components: - pos: -35.5,-68.5 parent: 2 type: Transform - - uid: 29378 + - uid: 29385 components: - pos: -34.5,-68.5 parent: 2 type: Transform - - uid: 29379 + - uid: 29386 components: - pos: -37.5,-66.5 parent: 2 type: Transform - - uid: 29380 + - uid: 29387 components: - pos: -38.5,-66.5 parent: 2 type: Transform - - uid: 29381 + - uid: 29388 components: - pos: -35.5,-69.5 parent: 2 type: Transform - - uid: 29382 + - uid: 29389 components: - pos: -33.5,-68.5 parent: 2 type: Transform - - uid: 29383 + - uid: 29390 components: - pos: -32.5,-68.5 parent: 2 type: Transform - - uid: 29384 + - uid: 29391 components: - pos: -31.5,-68.5 parent: 2 type: Transform - - uid: 29385 + - uid: 29392 components: - pos: -42.5,-63.5 parent: 2 type: Transform - - uid: 29386 + - uid: 29393 components: - pos: -46.5,-64.5 parent: 2 type: Transform - - uid: 29387 + - uid: 29394 components: - pos: -40.5,-73.5 parent: 2 type: Transform - - uid: 29388 + - uid: 29395 components: - pos: -44.5,-73.5 parent: 2 type: Transform - - uid: 29389 + - uid: 29396 components: - pos: -39.5,-74.5 parent: 2 type: Transform - - uid: 29390 + - uid: 29397 components: - pos: -42.5,-73.5 parent: 2 type: Transform - - uid: 29391 + - uid: 29398 components: - pos: -41.5,-73.5 parent: 2 type: Transform - - uid: 29392 + - uid: 29399 components: - pos: -43.5,-73.5 parent: 2 type: Transform - - uid: 29393 + - uid: 29400 components: - pos: -44.5,-74.5 parent: 2 type: Transform - - uid: 29394 + - uid: 29401 components: - pos: -39.5,-73.5 parent: 2 type: Transform - - uid: 29395 + - uid: 29402 components: - pos: -23.5,-63.5 parent: 2 type: Transform - - uid: 29396 + - uid: 29403 components: - rot: 3.141592653589793 rad pos: -30.5,-53.5 parent: 2 type: Transform - - uid: 29397 + - uid: 29404 components: - rot: 1.5707963267948966 rad pos: -29.5,-52.5 parent: 2 type: Transform - - uid: 29398 + - uid: 29405 components: - rot: 1.5707963267948966 rad pos: -29.5,-53.5 parent: 2 type: Transform - - uid: 29399 + - uid: 29406 components: - rot: 1.5707963267948966 rad pos: -29.5,-54.5 parent: 2 type: Transform - - uid: 29400 + - uid: 29407 components: - pos: -26.5,-62.5 parent: 2 type: Transform - - uid: 29401 + - uid: 29408 components: - pos: -45.5,-68.5 parent: 2 type: Transform - - uid: 29402 + - uid: 29409 components: - pos: -27.5,-59.5 parent: 2 type: Transform - - uid: 29403 + - uid: 29410 components: - pos: -37.5,-47.5 parent: 2 type: Transform - - uid: 29404 + - uid: 29411 components: - pos: -17.5,31.5 parent: 2 type: Transform - - uid: 29405 + - uid: 29412 components: - pos: -26.5,-63.5 parent: 2 type: Transform - - uid: 29406 + - uid: 29413 components: - pos: -22.5,-63.5 parent: 2 type: Transform - - uid: 29407 + - uid: 29414 components: - pos: 58.5,2.5 parent: 2 type: Transform - - uid: 29408 + - uid: 29415 components: - rot: -1.5707963267948966 rad pos: -1.5,-8.5 parent: 2 type: Transform - - uid: 29409 + - uid: 29416 components: - pos: -27.5,-57.5 parent: 2 type: Transform - - uid: 29410 + - uid: 29417 components: - pos: -53.5,-32.5 parent: 2 type: Transform - - uid: 29411 + - uid: 29418 components: - pos: -33.5,-24.5 parent: 2 type: Transform - - uid: 29412 + - uid: 29419 components: - pos: -34.5,-24.5 parent: 2 type: Transform - - uid: 29413 + - uid: 29420 components: - pos: -34.5,-22.5 parent: 2 type: Transform - - uid: 29414 + - uid: 29421 components: - pos: -34.5,-23.5 parent: 2 type: Transform - - uid: 29415 + - uid: 29422 components: - rot: 1.5707963267948966 rad pos: 52.5,54.5 parent: 2 type: Transform - - uid: 29416 + - uid: 29423 components: - rot: -1.5707963267948966 rad pos: -9.5,33.5 parent: 2 type: Transform - - uid: 29417 + - uid: 29424 components: - rot: -1.5707963267948966 rad pos: -10.5,33.5 parent: 2 type: Transform - - uid: 29418 + - uid: 29425 components: - rot: -1.5707963267948966 rad pos: -9.5,30.5 parent: 2 type: Transform - - uid: 29419 + - uid: 29426 components: - rot: -1.5707963267948966 rad pos: -10.5,30.5 parent: 2 type: Transform - - uid: 29420 + - uid: 29427 components: - rot: -1.5707963267948966 rad pos: -11.5,30.5 parent: 2 type: Transform - - uid: 29421 + - uid: 29428 components: - rot: -1.5707963267948966 rad pos: -12.5,30.5 parent: 2 type: Transform - - uid: 29422 + - uid: 29429 components: - pos: -11.5,25.5 parent: 2 type: Transform - - uid: 29423 + - uid: 29430 components: - pos: -12.5,25.5 parent: 2 type: Transform - - uid: 29424 + - uid: 29431 components: - rot: -1.5707963267948966 rad pos: -10.5,34.5 parent: 2 type: Transform - - uid: 29425 + - uid: 29432 components: - pos: -21.5,16.5 parent: 2 type: Transform - - uid: 29426 + - uid: 29433 components: - pos: -21.5,17.5 parent: 2 type: Transform - - uid: 29427 + - uid: 29434 components: - pos: -21.5,18.5 parent: 2 type: Transform - - uid: 29428 + - uid: 29435 components: - pos: -21.5,19.5 parent: 2 type: Transform - - uid: 29429 + - uid: 29436 components: - pos: -17.5,15.5 parent: 2 type: Transform - - uid: 29430 + - uid: 29437 components: - pos: -17.5,16.5 parent: 2 type: Transform - - uid: 29431 + - uid: 29438 components: - pos: -17.5,17.5 parent: 2 type: Transform - - uid: 29432 + - uid: 29439 components: - pos: -17.5,18.5 parent: 2 type: Transform - - uid: 29433 + - uid: 29440 components: - pos: -21.5,22.5 parent: 2 type: Transform - - uid: 29434 + - uid: 29441 components: - pos: -21.5,25.5 parent: 2 type: Transform - - uid: 29435 + - uid: 29442 components: - rot: -1.5707963267948966 rad pos: -13.5,22.5 parent: 2 type: Transform - - uid: 29436 + - uid: 29443 components: - rot: -1.5707963267948966 rad pos: -17.5,27.5 parent: 2 type: Transform - - uid: 29437 + - uid: 29444 components: - pos: -17.5,22.5 parent: 2 type: Transform - - uid: 29438 + - uid: 29445 components: - pos: -17.5,21.5 parent: 2 type: Transform - - uid: 29439 + - uid: 29446 components: - pos: -17.5,20.5 parent: 2 type: Transform - - uid: 29440 + - uid: 29447 components: - pos: -23.5,16.5 parent: 2 type: Transform - - uid: 29441 + - uid: 29448 components: - pos: -26.5,17.5 parent: 2 type: Transform - - uid: 29442 + - uid: 29449 components: - pos: -26.5,26.5 parent: 2 type: Transform - - uid: 29443 + - uid: 29450 components: - pos: -25.5,26.5 parent: 2 type: Transform - - uid: 29444 + - uid: 29451 components: - pos: -26.5,20.5 parent: 2 type: Transform - - uid: 29445 + - uid: 29452 components: - pos: -27.5,26.5 parent: 2 type: Transform - - uid: 29446 + - uid: 29453 components: - pos: -28.5,26.5 parent: 2 type: Transform - - uid: 29447 + - uid: 29454 components: - pos: -26.5,24.5 parent: 2 type: Transform - - uid: 29448 + - uid: 29455 components: - rot: 3.141592653589793 rad pos: -27.5,20.5 parent: 2 type: Transform - - uid: 29449 + - uid: 29456 components: - rot: 3.141592653589793 rad pos: -28.5,20.5 parent: 2 type: Transform - - uid: 29450 + - uid: 29457 components: - rot: 3.141592653589793 rad pos: -29.5,20.5 parent: 2 type: Transform - - uid: 29451 + - uid: 29458 components: - rot: 3.141592653589793 rad pos: -29.5,24.5 parent: 2 type: Transform - - uid: 29452 + - uid: 29459 components: - pos: -26.5,16.5 parent: 2 type: Transform - - uid: 29453 + - uid: 29460 components: - pos: -27.5,16.5 parent: 2 type: Transform - - uid: 29454 + - uid: 29461 components: - pos: -28.5,16.5 parent: 2 type: Transform - - uid: 29455 + - uid: 29462 components: - pos: -29.5,16.5 parent: 2 type: Transform - - uid: 29456 + - uid: 29463 components: - pos: -22.5,14.5 parent: 2 type: Transform - - uid: 29457 + - uid: 29464 components: - pos: -23.5,14.5 parent: 2 type: Transform - - uid: 29458 + - uid: 29465 components: - pos: -24.5,16.5 parent: 2 type: Transform - - uid: 29459 + - uid: 29466 components: - pos: -23.5,26.5 parent: 2 type: Transform - - uid: 29460 + - uid: 29467 components: - pos: -36.5,34.5 parent: 2 type: Transform - - uid: 29461 + - uid: 29468 components: - pos: -24.5,15.5 parent: 2 type: Transform - - uid: 29462 + - uid: 29469 components: - pos: -34.5,16.5 parent: 2 type: Transform - - uid: 29463 + - uid: 29470 components: - pos: -35.5,16.5 parent: 2 type: Transform - - uid: 29464 + - uid: 29471 components: - pos: -35.5,17.5 parent: 2 type: Transform - - uid: 29465 + - uid: 29472 components: - pos: -35.5,23.5 parent: 2 type: Transform - - uid: 29466 + - uid: 29473 components: - pos: -35.5,24.5 parent: 2 type: Transform - - uid: 29467 + - uid: 29474 components: - pos: -33.5,16.5 parent: 2 type: Transform - - uid: 29468 + - uid: 29475 components: - pos: -32.5,16.5 parent: 2 type: Transform - - uid: 29469 + - uid: 29476 components: - pos: -31.5,16.5 parent: 2 type: Transform - - uid: 29470 + - uid: 29477 components: - pos: -30.5,16.5 parent: 2 type: Transform - - uid: 29471 + - uid: 29478 components: - rot: 1.5707963267948966 rad pos: -36.5,17.5 parent: 2 type: Transform - - uid: 29472 + - uid: 29479 components: - rot: 1.5707963267948966 rad pos: -37.5,17.5 parent: 2 type: Transform - - uid: 29473 + - uid: 29480 components: - rot: 1.5707963267948966 rad pos: -38.5,17.5 parent: 2 type: Transform - - uid: 29474 + - uid: 29481 components: - rot: 1.5707963267948966 rad pos: -39.5,17.5 parent: 2 type: Transform - - uid: 29475 + - uid: 29482 components: - rot: 1.5707963267948966 rad pos: -40.5,17.5 parent: 2 type: Transform - - uid: 29476 + - uid: 29483 components: - pos: -38.5,34.5 parent: 2 type: Transform - - uid: 29477 + - uid: 29484 components: - pos: -39.5,32.5 parent: 2 type: Transform - - uid: 29478 + - uid: 29485 components: - pos: -39.5,33.5 parent: 2 type: Transform - - uid: 29479 + - uid: 29486 components: - rot: 1.5707963267948966 rad pos: -40.5,26.5 parent: 2 type: Transform - - uid: 29480 + - uid: 29487 components: - rot: 1.5707963267948966 rad pos: -42.5,26.5 parent: 2 type: Transform - - uid: 29481 + - uid: 29488 components: - rot: 1.5707963267948966 rad pos: -43.5,17.5 parent: 2 type: Transform - - uid: 29482 + - uid: 29489 components: - rot: 1.5707963267948966 rad pos: -43.5,16.5 parent: 2 type: Transform - - uid: 29483 + - uid: 29490 components: - pos: -51.5,21.5 parent: 2 type: Transform - - uid: 29484 + - uid: 29491 components: - rot: 1.5707963267948966 rad pos: -47.5,27.5 parent: 2 type: Transform - - uid: 29485 + - uid: 29492 components: - rot: 1.5707963267948966 rad pos: -48.5,27.5 parent: 2 type: Transform - - uid: 29486 + - uid: 29493 components: - rot: 1.5707963267948966 rad pos: -44.5,27.5 parent: 2 type: Transform - - uid: 29487 + - uid: 29494 components: - rot: 1.5707963267948966 rad pos: -43.5,27.5 parent: 2 type: Transform - - uid: 29488 + - uid: 29495 components: - rot: 1.5707963267948966 rad pos: -43.5,26.5 parent: 2 type: Transform - - uid: 29489 + - uid: 29496 components: - pos: -17.5,35.5 parent: 2 type: Transform - - uid: 29490 + - uid: 29497 components: - rot: -1.5707963267948966 rad pos: -18.5,36.5 parent: 2 type: Transform - - uid: 29491 + - uid: 29498 components: - pos: -17.5,33.5 parent: 2 type: Transform - - uid: 29492 + - uid: 29499 components: - pos: -13.5,30.5 parent: 2 type: Transform - - uid: 29493 + - uid: 29500 components: - pos: -13.5,29.5 parent: 2 type: Transform - - uid: 29494 + - uid: 29501 components: - pos: -13.5,28.5 parent: 2 type: Transform - - uid: 29495 + - uid: 29502 components: - pos: -14.5,28.5 parent: 2 type: Transform - - uid: 29496 + - uid: 29503 components: - pos: -16.5,28.5 parent: 2 type: Transform - - uid: 29497 + - uid: 29504 components: - pos: 51.5,41.5 parent: 2 type: Transform - - uid: 29498 + - uid: 29505 components: - pos: -22.5,26.5 parent: 2 type: Transform - - uid: 29499 + - uid: 29506 components: - pos: -24.5,14.5 parent: 2 type: Transform - - uid: 29500 + - uid: 29507 components: - pos: -27.5,11.5 parent: 2 type: Transform - - uid: 29501 + - uid: 29508 components: - pos: -28.5,11.5 parent: 2 type: Transform - - uid: 29502 + - uid: 29509 components: - pos: -29.5,26.5 parent: 2 type: Transform - - uid: 29503 + - uid: 29510 components: - rot: 3.141592653589793 rad pos: -41.5,13.5 parent: 2 type: Transform - - uid: 29504 + - uid: 29511 components: - pos: -28.5,14.5 parent: 2 type: Transform - - uid: 29505 + - uid: 29512 components: - pos: -28.5,13.5 parent: 2 type: Transform - - uid: 29506 + - uid: 29513 components: - pos: -28.5,15.5 parent: 2 type: Transform - - uid: 29507 + - uid: 29514 components: - rot: 1.5707963267948966 rad pos: -40.5,36.5 parent: 2 type: Transform - - uid: 29508 + - uid: 29515 components: - rot: 1.5707963267948966 rad pos: -41.5,36.5 parent: 2 type: Transform - - uid: 29509 + - uid: 29516 components: - rot: 1.5707963267948966 rad pos: -42.5,36.5 parent: 2 type: Transform - - uid: 29510 + - uid: 29517 components: - rot: 1.5707963267948966 rad pos: -43.5,36.5 parent: 2 type: Transform - - uid: 29511 + - uid: 29518 components: - rot: 1.5707963267948966 rad pos: -44.5,36.5 parent: 2 type: Transform - - uid: 29512 + - uid: 29519 components: - rot: 1.5707963267948966 rad pos: -44.5,37.5 parent: 2 type: Transform - - uid: 29513 + - uid: 29520 components: - rot: 1.5707963267948966 rad pos: -47.5,37.5 parent: 2 type: Transform - - uid: 29514 + - uid: 29521 components: - rot: 1.5707963267948966 rad pos: -39.5,35.5 parent: 2 type: Transform - - uid: 29515 + - uid: 29522 components: - rot: 1.5707963267948966 rad pos: -39.5,36.5 parent: 2 type: Transform - - uid: 29516 + - uid: 29523 components: - pos: -37.5,26.5 parent: 2 type: Transform - - uid: 29517 + - uid: 29524 components: - pos: -36.5,26.5 parent: 2 type: Transform - - uid: 29518 + - uid: 29525 components: - pos: -25.5,38.5 parent: 2 type: Transform - - uid: 29519 + - uid: 29526 components: - pos: -38.5,26.5 parent: 2 type: Transform - - uid: 29520 + - uid: 29527 components: - pos: -39.5,26.5 parent: 2 type: Transform - - uid: 29521 + - uid: 29528 components: - pos: -39.5,27.5 parent: 2 type: Transform - - uid: 29522 + - uid: 29529 components: - pos: -39.5,28.5 parent: 2 type: Transform - - uid: 29523 + - uid: 29530 components: - pos: -39.5,30.5 parent: 2 type: Transform - - uid: 29524 + - uid: 29531 components: - pos: -39.5,34.5 parent: 2 type: Transform - - uid: 29525 + - uid: 29532 components: - pos: -30.5,-1.5 parent: 2 type: Transform - - uid: 29526 + - uid: 29533 components: - pos: -31.5,-1.5 parent: 2 type: Transform - - uid: 29527 + - uid: 29534 components: - pos: -32.5,-1.5 parent: 2 type: Transform - - uid: 29528 + - uid: 29535 components: - pos: -32.5,-2.5 parent: 2 type: Transform - - uid: 29529 + - uid: 29536 components: - pos: -29.5,2.5 parent: 2 type: Transform - - uid: 29530 + - uid: 29537 components: - pos: -30.5,2.5 parent: 2 type: Transform - - uid: 29531 + - uid: 29538 components: - pos: -31.5,2.5 parent: 2 type: Transform - - uid: 29532 + - uid: 29539 components: - pos: -32.5,2.5 parent: 2 type: Transform - - uid: 29533 + - uid: 29540 components: - pos: -33.5,2.5 parent: 2 type: Transform - - uid: 29534 + - uid: 29541 components: - pos: -34.5,-1.5 parent: 2 type: Transform - - uid: 29535 + - uid: 29542 components: - rot: 3.141592653589793 rad pos: -25.5,16.5 parent: 2 type: Transform - - uid: 29536 + - uid: 29543 components: - rot: 3.141592653589793 rad pos: -13.5,9.5 parent: 2 type: Transform - - uid: 29537 + - uid: 29544 components: - pos: -22.5,16.5 parent: 2 type: Transform - - uid: 29538 + - uid: 29545 components: - pos: -16.5,22.5 parent: 2 type: Transform - - uid: 29539 + - uid: 29546 components: - pos: -15.5,22.5 parent: 2 type: Transform - - uid: 29540 + - uid: 29547 components: - pos: -14.5,22.5 parent: 2 type: Transform - - uid: 29541 + - uid: 29548 components: - rot: -1.5707963267948966 rad pos: -13.5,24.5 parent: 2 type: Transform - - uid: 29542 + - uid: 29549 components: - pos: -13.5,25.5 parent: 2 type: Transform - - uid: 29543 + - uid: 29550 components: - rot: -1.5707963267948966 rad pos: -13.5,24.5 parent: 2 type: Transform - - uid: 29544 + - uid: 29551 components: - rot: 3.141592653589793 rad pos: -48.5,17.5 parent: 2 type: Transform - - uid: 29545 + - uid: 29552 components: - rot: 3.141592653589793 rad pos: -47.5,17.5 parent: 2 type: Transform - - uid: 29546 + - uid: 29553 components: - rot: 3.141592653589793 rad pos: -29.5,-4.5 parent: 2 type: Transform - - uid: 29547 + - uid: 29554 components: - rot: 3.141592653589793 rad pos: -29.5,-6.5 parent: 2 type: Transform - - uid: 29548 + - uid: 29555 components: - rot: 3.141592653589793 rad pos: -29.5,-8.5 parent: 2 type: Transform - - uid: 29549 + - uid: 29556 components: - rot: 3.141592653589793 rad pos: -28.5,-8.5 parent: 2 type: Transform - - uid: 29550 + - uid: 29557 components: - rot: 3.141592653589793 rad pos: -27.5,-8.5 parent: 2 type: Transform - - uid: 29551 + - uid: 29558 components: - rot: 3.141592653589793 rad pos: -28.5,-4.5 parent: 2 type: Transform - - uid: 29552 + - uid: 29559 components: - rot: -1.5707963267948966 rad pos: -35.5,-1.5 parent: 2 type: Transform - - uid: 29553 + - uid: 29560 components: - rot: -1.5707963267948966 rad pos: -36.5,-1.5 parent: 2 type: Transform - - uid: 29554 + - uid: 29561 components: - rot: -1.5707963267948966 rad pos: -38.5,-1.5 parent: 2 type: Transform - - uid: 29555 + - uid: 29562 components: - rot: -1.5707963267948966 rad pos: -39.5,-1.5 parent: 2 type: Transform - - uid: 29556 + - uid: 29563 components: - rot: -1.5707963267948966 rad pos: -40.5,-1.5 parent: 2 type: Transform - - uid: 29557 + - uid: 29564 components: - rot: -1.5707963267948966 rad pos: -41.5,-1.5 parent: 2 type: Transform - - uid: 29558 + - uid: 29565 components: - rot: -1.5707963267948966 rad pos: -42.5,-1.5 parent: 2 type: Transform - - uid: 29559 + - uid: 29566 components: - pos: -42.5,2.5 parent: 2 type: Transform - - uid: 29560 + - uid: 29567 components: - pos: -43.5,2.5 parent: 2 type: Transform - - uid: 29561 + - uid: 29568 components: - pos: -42.5,3.5 parent: 2 type: Transform - - uid: 29562 + - uid: 29569 components: - pos: -42.5,4.5 parent: 2 type: Transform - - uid: 29563 + - uid: 29570 components: - pos: -42.5,5.5 parent: 2 type: Transform - - uid: 29564 + - uid: 29571 components: - pos: -42.5,6.5 parent: 2 type: Transform - - uid: 29565 + - uid: 29572 components: - pos: -42.5,7.5 parent: 2 type: Transform - - uid: 29566 + - uid: 29573 components: - pos: -41.5,11.5 parent: 2 type: Transform - - uid: 29567 + - uid: 29574 components: - pos: -41.5,10.5 parent: 2 type: Transform - - uid: 29568 + - uid: 29575 components: - pos: -41.5,9.5 parent: 2 type: Transform - - uid: 29569 + - uid: 29576 components: - pos: -41.5,8.5 parent: 2 type: Transform - - uid: 29570 + - uid: 29577 components: - pos: -34.5,12.5 parent: 2 type: Transform - - uid: 29571 + - uid: 29578 components: - pos: -34.5,11.5 parent: 2 type: Transform - - uid: 29572 + - uid: 29579 components: - pos: -34.5,10.5 parent: 2 type: Transform - - uid: 29573 + - uid: 29580 components: - pos: -33.5,3.5 parent: 2 type: Transform - - uid: 29574 + - uid: 29581 components: - pos: -33.5,4.5 parent: 2 type: Transform - - uid: 29575 + - uid: 29582 components: - pos: -33.5,5.5 parent: 2 type: Transform - - uid: 29576 + - uid: 29583 components: - pos: -33.5,6.5 parent: 2 type: Transform - - uid: 29577 + - uid: 29584 components: - pos: -33.5,7.5 parent: 2 type: Transform - - uid: 29578 + - uid: 29585 components: - pos: -43.5,15.5 parent: 2 type: Transform - - uid: 29579 + - uid: 29586 components: - pos: -33.5,12.5 parent: 2 type: Transform - - uid: 29580 + - uid: 29587 components: - pos: -42.5,12.5 parent: 2 type: Transform - - uid: 29581 + - uid: 29588 components: - pos: -32.5,12.5 parent: 2 type: Transform - - uid: 29582 + - uid: 29589 components: - pos: -41.5,7.5 parent: 2 type: Transform - - uid: 29583 + - uid: 29590 components: - pos: -40.5,7.5 parent: 2 type: Transform - - uid: 29584 + - uid: 29591 components: - pos: -35.5,7.5 parent: 2 type: Transform - - uid: 29585 + - uid: 29592 components: - pos: -34.5,7.5 parent: 2 type: Transform - - uid: 29586 + - uid: 29593 components: - rot: 3.141592653589793 rad pos: -41.5,14.5 parent: 2 type: Transform - - uid: 29587 + - uid: 29594 components: - pos: -43.5,12.5 parent: 2 type: Transform - - uid: 29588 + - uid: 29595 components: - pos: -43.5,13.5 parent: 2 type: Transform - - uid: 29589 + - uid: 29596 components: - pos: -32.5,15.5 parent: 2 type: Transform - - uid: 29590 + - uid: 29597 components: - pos: -41.5,12.5 parent: 2 type: Transform - - uid: 29591 + - uid: 29598 components: - pos: -29.5,11.5 parent: 2 type: Transform - - uid: 29592 + - uid: 29599 components: - pos: -34.5,8.5 parent: 2 type: Transform - - uid: 29593 + - uid: 29600 components: - pos: -33.5,-1.5 parent: 2 type: Transform - - uid: 29594 + - uid: 29601 components: - pos: -34.5,9.5 parent: 2 type: Transform - - uid: 29595 + - uid: 29602 components: - rot: 3.141592653589793 rad pos: -32.5,13.5 parent: 2 type: Transform - - uid: 29596 + - uid: 29603 components: - rot: 3.141592653589793 rad pos: -41.5,13.5 parent: 2 type: Transform - - uid: 29597 + - uid: 29604 components: - rot: 3.141592653589793 rad pos: -41.5,16.5 parent: 2 type: Transform - - uid: 29598 + - uid: 29605 components: - rot: 3.141592653589793 rad pos: -41.5,14.5 parent: 2 type: Transform - - uid: 29599 + - uid: 29606 components: - pos: -43.5,-1.5 parent: 2 type: Transform - - uid: 29600 + - uid: 29607 components: - pos: -44.5,2.5 parent: 2 type: Transform - - uid: 29601 + - uid: 29608 components: - pos: -44.5,-1.5 parent: 2 type: Transform - - uid: 29602 + - uid: 29609 components: - pos: -32.5,11.5 parent: 2 type: Transform - - uid: 29603 + - uid: 29610 components: - pos: -31.5,11.5 parent: 2 type: Transform - - uid: 29604 + - uid: 29611 components: - rot: -1.5707963267948966 rad pos: -40.5,16.5 parent: 2 type: Transform - - uid: 29605 + - uid: 29612 components: - rot: 3.141592653589793 rad pos: -40.5,16.5 parent: 2 type: Transform - - uid: 29606 + - uid: 29613 components: - rot: -1.5707963267948966 rad pos: -41.5,16.5 parent: 2 type: Transform - - uid: 29607 + - uid: 29614 components: - rot: 3.141592653589793 rad pos: -40.5,17.5 parent: 2 type: Transform - - uid: 29608 + - uid: 29615 components: - pos: -9.5,-19.5 parent: 2 type: Transform - - uid: 29609 + - uid: 29616 components: - pos: -32.5,7.5 parent: 2 type: Transform - - uid: 29610 + - uid: 29617 components: - pos: -31.5,7.5 parent: 2 type: Transform - - uid: 29611 + - uid: 29618 components: - pos: -29.5,7.5 parent: 2 type: Transform - - uid: 29612 + - uid: 29619 components: - rot: 3.141592653589793 rad pos: -41.5,15.5 parent: 2 type: Transform - - uid: 29613 + - uid: 29620 components: - rot: 1.5707963267948966 rad pos: -48.5,2.5 parent: 2 type: Transform - - uid: 29614 + - uid: 29621 components: - rot: 1.5707963267948966 rad pos: -48.5,1.5 parent: 2 type: Transform - - uid: 29615 + - uid: 29622 components: - rot: 1.5707963267948966 rad pos: -48.5,-0.5 parent: 2 type: Transform - - uid: 29616 + - uid: 29623 components: - rot: 1.5707963267948966 rad pos: -48.5,-1.5 parent: 2 type: Transform - - uid: 29617 + - uid: 29624 components: - rot: 1.5707963267948966 rad pos: -46.5,-1.5 parent: 2 type: Transform - - uid: 29618 + - uid: 29625 components: - rot: 1.5707963267948966 rad pos: -45.5,-1.5 parent: 2 type: Transform - - uid: 29619 + - uid: 29626 components: - rot: 1.5707963267948966 rad pos: -47.5,-1.5 parent: 2 type: Transform - - uid: 29620 + - uid: 29627 components: - rot: 1.5707963267948966 rad pos: -49.5,2.5 parent: 2 type: Transform - - uid: 29621 + - uid: 29628 components: - rot: 1.5707963267948966 rad pos: -50.5,2.5 parent: 2 type: Transform - - uid: 29622 + - uid: 29629 components: - rot: 1.5707963267948966 rad pos: -50.5,3.5 parent: 2 type: Transform - - uid: 29623 + - uid: 29630 components: - rot: 1.5707963267948966 rad pos: -50.5,4.5 parent: 2 type: Transform - - uid: 29624 + - uid: 29631 components: - rot: 1.5707963267948966 rad pos: -50.5,5.5 parent: 2 type: Transform - - uid: 29625 + - uid: 29632 components: - rot: 1.5707963267948966 rad pos: -50.5,6.5 parent: 2 type: Transform - - uid: 29626 + - uid: 29633 components: - rot: 1.5707963267948966 rad pos: -50.5,7.5 parent: 2 type: Transform - - uid: 29627 + - uid: 29634 components: - rot: 1.5707963267948966 rad pos: -50.5,8.5 parent: 2 type: Transform - - uid: 29628 + - uid: 29635 components: - rot: 1.5707963267948966 rad pos: -50.5,9.5 parent: 2 type: Transform - - uid: 29629 + - uid: 29636 components: - rot: 1.5707963267948966 rad pos: -49.5,9.5 parent: 2 type: Transform - - uid: 29630 + - uid: 29637 components: - rot: 1.5707963267948966 rad pos: -48.5,9.5 parent: 2 type: Transform - - uid: 29631 + - uid: 29638 components: - rot: 1.5707963267948966 rad pos: -47.5,9.5 parent: 2 type: Transform - - uid: 29632 + - uid: 29639 components: - rot: 1.5707963267948966 rad pos: -44.5,9.5 parent: 2 type: Transform - - uid: 29633 + - uid: 29640 components: - rot: 1.5707963267948966 rad pos: -43.5,9.5 parent: 2 type: Transform - - uid: 29634 + - uid: 29641 components: - rot: 1.5707963267948966 rad pos: -43.5,8.5 parent: 2 type: Transform - - uid: 29635 + - uid: 29642 components: - rot: 1.5707963267948966 rad pos: -43.5,7.5 parent: 2 type: Transform - - uid: 29636 + - uid: 29643 components: - rot: 1.5707963267948966 rad pos: -44.5,10.5 parent: 2 type: Transform - - uid: 29637 + - uid: 29644 components: - rot: 1.5707963267948966 rad pos: -44.5,12.5 parent: 2 type: Transform - - uid: 29638 + - uid: 29645 components: - pos: -50.5,1.5 parent: 2 type: Transform - - uid: 29639 + - uid: 29646 components: - pos: -50.5,0.5 parent: 2 type: Transform - - uid: 29640 + - uid: 29647 components: - pos: -50.5,-0.5 parent: 2 type: Transform - - uid: 29641 + - uid: 29648 components: - pos: -50.5,-1.5 parent: 2 type: Transform - - uid: 29642 + - uid: 29649 components: - pos: -46.5,-3.5 parent: 2 type: Transform - - uid: 29643 + - uid: 29650 components: - pos: -43.5,-2.5 parent: 2 type: Transform - - uid: 29644 + - uid: 29651 components: - pos: -50.5,-2.5 parent: 2 type: Transform - - uid: 29645 + - uid: 29652 components: - pos: -52.5,-1.5 parent: 2 type: Transform - - uid: 29646 + - uid: 29653 components: - pos: -52.5,0.5 parent: 2 type: Transform - - uid: 29647 + - uid: 29654 components: - pos: -52.5,-2.5 parent: 2 type: Transform - - uid: 29648 + - uid: 29655 components: - pos: -54.5,-2.5 parent: 2 type: Transform - - uid: 29649 + - uid: 29656 components: - rot: 3.141592653589793 rad pos: -11.5,22.5 parent: 2 type: Transform - - uid: 29650 + - uid: 29657 components: - pos: -56.5,-2.5 parent: 2 type: Transform - - uid: 29651 + - uid: 29658 components: - pos: -55.5,-2.5 parent: 2 type: Transform - - uid: 29652 + - uid: 29659 components: - pos: -52.5,1.5 parent: 2 type: Transform - - uid: 29653 + - uid: 29660 components: - pos: -50.5,12.5 parent: 2 type: Transform - - uid: 29654 + - uid: 29661 components: - pos: -50.5,13.5 parent: 2 type: Transform - - uid: 29655 + - uid: 29662 components: - pos: -50.5,14.5 parent: 2 type: Transform - - uid: 29656 + - uid: 29663 components: - pos: -50.5,15.5 parent: 2 type: Transform - - uid: 29657 + - uid: 29664 components: - rot: 3.141592653589793 rad pos: -52.5,12.5 parent: 2 type: Transform - - uid: 29658 + - uid: 29665 components: - rot: 3.141592653589793 rad pos: -52.5,5.5 parent: 2 type: Transform - - uid: 29659 + - uid: 29666 components: - rot: 3.141592653589793 rad pos: -51.5,9.5 parent: 2 type: Transform - - uid: 29660 + - uid: 29667 components: - rot: 3.141592653589793 rad pos: -51.5,5.5 parent: 2 type: Transform - - uid: 29661 + - uid: 29668 components: - rot: 3.141592653589793 rad pos: -46.5,17.5 parent: 2 type: Transform - - uid: 29662 + - uid: 29669 components: - pos: -32.5,-3.5 parent: 2 type: Transform - - uid: 29663 + - uid: 29670 components: - pos: 53.5,41.5 parent: 2 type: Transform - - uid: 29664 + - uid: 29671 components: - pos: 64.5,0.5 parent: 2 type: Transform - - uid: 29665 + - uid: 29672 components: - pos: 67.5,-12.5 parent: 2 type: Transform - - uid: 29666 + - uid: 29673 components: - pos: 67.5,-4.5 parent: 2 type: Transform - - uid: 29667 + - uid: 29674 components: - pos: 53.5,40.5 parent: 2 type: Transform - - uid: 29668 + - uid: 29675 components: - pos: -17.5,36.5 parent: 2 type: Transform - - uid: 29669 + - uid: 29676 components: - pos: -20.5,32.5 parent: 2 type: Transform - - uid: 29670 + - uid: 29677 components: - pos: -21.5,32.5 parent: 2 type: Transform - - uid: 29671 + - uid: 29678 components: - pos: -21.5,31.5 parent: 2 type: Transform - - uid: 29672 + - uid: 29679 components: - rot: -1.5707963267948966 rad pos: -22.5,32.5 parent: 2 type: Transform - - uid: 29673 + - uid: 29680 components: - pos: -21.5,29.5 parent: 2 type: Transform - - uid: 29674 + - uid: 29681 components: - pos: -21.5,28.5 parent: 2 type: Transform - - uid: 29675 + - uid: 29682 components: - pos: -21.5,26.5 parent: 2 type: Transform - - uid: 29676 + - uid: 29683 components: - pos: -17.5,28.5 parent: 2 type: Transform - - uid: 29677 + - uid: 29684 components: - rot: -1.5707963267948966 rad pos: -13.5,27.5 parent: 2 type: Transform - - uid: 29678 + - uid: 29685 components: - rot: -1.5707963267948966 rad pos: -13.5,23.5 parent: 2 type: Transform - - uid: 29679 + - uid: 29686 components: - pos: -35.5,20.5 parent: 2 type: Transform - - uid: 29680 + - uid: 29687 components: - pos: -0.5,10.5 parent: 2 type: Transform - - uid: 29681 + - uid: 29688 components: - rot: 1.5707963267948966 rad pos: -6.5,-11.5 parent: 2 type: Transform - - uid: 29682 + - uid: 29689 components: - pos: 5.5,-55.5 parent: 2 type: Transform - - uid: 29683 + - uid: 29690 components: - pos: 59.5,-31.5 parent: 2 type: Transform - - uid: 29684 + - uid: 29691 components: - rot: -1.5707963267948966 rad pos: -0.5,-76.5 parent: 2 type: Transform - - uid: 29685 + - uid: 29692 components: - pos: 19.5,-51.5 parent: 2 type: Transform - - uid: 29686 + - uid: 29693 components: - pos: 22.5,-48.5 parent: 2 type: Transform - - uid: 29687 + - uid: 29694 components: - rot: 3.141592653589793 rad pos: -31.5,-53.5 parent: 2 type: Transform - - uid: 29688 + - uid: 29695 components: - pos: -27.5,-55.5 parent: 2 type: Transform - - uid: 29689 + - uid: 29696 components: - rot: 3.141592653589793 rad pos: -17.5,8.5 parent: 2 type: Transform - - uid: 29690 + - uid: 29697 components: - pos: -21.5,-6.5 parent: 2 type: Transform - - uid: 29691 + - uid: 29698 components: - rot: 3.141592653589793 rad pos: -44.5,17.5 parent: 2 type: Transform - - uid: 29692 + - uid: 29699 components: - rot: 3.141592653589793 rad pos: -31.5,-72.5 parent: 2 type: Transform - - uid: 29693 + - uid: 29700 components: - pos: -30.5,-68.5 parent: 2 type: Transform - - uid: 29694 + - uid: 29701 components: - pos: -26.5,-72.5 parent: 2 type: Transform - - uid: 29695 + - uid: 29702 components: - pos: -26.5,-71.5 parent: 2 type: Transform - - uid: 29696 + - uid: 29703 components: - pos: 6.5,-55.5 parent: 2 type: Transform - - uid: 29697 + - uid: 29704 components: - pos: -17.5,32.5 parent: 2 type: Transform - - uid: 29698 + - uid: 29705 components: - pos: -18.5,32.5 parent: 2 type: Transform - - uid: 29699 + - uid: 29706 components: - pos: -19.5,32.5 parent: 2 type: Transform - - uid: 29700 + - uid: 29707 components: - pos: 44.5,47.5 parent: 2 type: Transform - - uid: 29701 + - uid: 29708 components: - pos: 44.5,48.5 parent: 2 type: Transform - - uid: 29702 + - uid: 29709 components: - pos: 53.5,39.5 parent: 2 type: Transform - - uid: 29703 + - uid: 29710 components: - pos: 53.5,38.5 parent: 2 type: Transform - - uid: 29704 + - uid: 29711 components: - pos: 52.5,38.5 parent: 2 type: Transform - - uid: 29705 + - uid: 29712 components: - pos: 51.5,38.5 parent: 2 type: Transform - - uid: 29706 + - uid: 29713 components: - pos: 50.5,38.5 parent: 2 type: Transform - - uid: 29707 + - uid: 29714 components: - pos: 55.5,36.5 parent: 2 type: Transform - - uid: 29708 + - uid: 29715 components: - pos: 55.5,35.5 parent: 2 type: Transform - - uid: 29709 + - uid: 29716 components: - pos: 55.5,34.5 parent: 2 type: Transform - - uid: 29710 + - uid: 29717 components: - pos: 54.5,34.5 parent: 2 type: Transform - - uid: 29711 + - uid: 29718 components: - pos: 53.5,34.5 parent: 2 type: Transform - - uid: 29712 + - uid: 29719 components: - pos: 51.5,34.5 parent: 2 type: Transform - - uid: 29713 + - uid: 29720 components: - pos: 50.5,34.5 parent: 2 type: Transform - - uid: 29714 + - uid: 29721 components: - pos: 50.5,35.5 parent: 2 type: Transform - - uid: 29715 + - uid: 29722 components: - pos: 50.5,36.5 parent: 2 type: Transform - - uid: 29716 + - uid: 29723 components: - pos: 50.5,37.5 parent: 2 type: Transform - - uid: 29717 + - uid: 29724 components: - pos: 51.5,33.5 parent: 2 type: Transform - - uid: 29718 + - uid: 29725 components: - pos: 51.5,32.5 parent: 2 type: Transform - - uid: 29719 + - uid: 29726 components: - pos: 53.5,33.5 parent: 2 type: Transform - - uid: 29720 + - uid: 29727 components: - pos: 53.5,32.5 parent: 2 type: Transform - - uid: 29721 + - uid: 29728 components: - pos: 53.5,31.5 parent: 2 type: Transform - - uid: 29722 + - uid: 29729 components: - pos: 53.5,30.5 parent: 2 type: Transform - - uid: 29723 + - uid: 29730 components: - pos: 52.5,30.5 parent: 2 type: Transform - - uid: 29724 + - uid: 29731 components: - pos: 51.5,30.5 parent: 2 type: Transform - - uid: 29725 + - uid: 29732 components: - pos: 49.5,30.5 parent: 2 type: Transform - - uid: 29726 + - uid: 29733 components: - pos: 50.5,30.5 parent: 2 type: Transform - - uid: 29727 + - uid: 29734 components: - pos: 49.5,34.5 parent: 2 type: Transform - - uid: 29728 + - uid: 29735 components: - pos: 48.5,34.5 parent: 2 type: Transform - - uid: 29729 + - uid: 29736 components: - pos: 47.5,30.5 parent: 2 type: Transform - - uid: 29730 + - uid: 29737 components: - pos: 47.5,29.5 parent: 2 type: Transform - - uid: 29731 + - uid: 29738 components: - pos: 47.5,28.5 parent: 2 type: Transform - - uid: 29732 + - uid: 29739 components: - pos: 47.5,27.5 parent: 2 type: Transform - - uid: 29733 + - uid: 29740 components: - pos: 49.5,27.5 parent: 2 type: Transform - - uid: 29734 + - uid: 29741 components: - pos: 50.5,27.5 parent: 2 type: Transform - - uid: 29735 + - uid: 29742 components: - pos: 51.5,27.5 parent: 2 type: Transform - - uid: 29736 + - uid: 29743 components: - pos: 51.5,28.5 parent: 2 type: Transform - - uid: 29737 + - uid: 29744 components: - pos: 51.5,29.5 parent: 2 type: Transform - - uid: 29738 + - uid: 29745 components: - pos: 60.5,27.5 parent: 2 type: Transform - - uid: 29739 + - uid: 29746 components: - pos: 59.5,27.5 parent: 2 type: Transform - - uid: 29740 + - uid: 29747 components: - pos: 57.5,27.5 parent: 2 type: Transform - - uid: 29741 + - uid: 29748 components: - pos: 56.5,27.5 parent: 2 type: Transform - - uid: 29742 + - uid: 29749 components: - pos: 61.5,29.5 parent: 2 type: Transform - - uid: 29743 + - uid: 29750 components: - pos: 61.5,28.5 parent: 2 type: Transform - - uid: 29744 + - uid: 29751 components: - pos: 61.5,27.5 parent: 2 type: Transform - - uid: 29745 + - uid: 29752 components: - pos: 59.5,30.5 parent: 2 type: Transform - - uid: 29746 + - uid: 29753 components: - pos: 58.5,30.5 parent: 2 type: Transform - - uid: 29747 + - uid: 29754 components: - pos: 56.5,30.5 parent: 2 type: Transform - - uid: 29748 + - uid: 29755 components: - pos: 56.5,29.5 parent: 2 type: Transform - - uid: 29749 + - uid: 29756 components: - pos: 56.5,28.5 parent: 2 type: Transform - - uid: 29750 + - uid: 29757 components: - pos: 54.5,30.5 parent: 2 type: Transform - - uid: 29751 + - uid: 29758 components: - pos: 55.5,30.5 parent: 2 type: Transform - - uid: 29752 + - uid: 29759 components: - rot: -1.5707963267948966 rad pos: 49.5,29.5 parent: 2 type: Transform - - uid: 29753 + - uid: 29760 components: - rot: 3.141592653589793 rad pos: -11.5,23.5 parent: 2 type: Transform - - uid: 29754 + - uid: 29761 components: - rot: -1.5707963267948966 rad pos: -23.5,32.5 parent: 2 type: Transform - - uid: 29755 + - uid: 29762 components: - rot: -1.5707963267948966 rad pos: -24.5,32.5 parent: 2 type: Transform - - uid: 29756 + - uid: 29763 components: - rot: -1.5707963267948966 rad pos: -25.5,32.5 parent: 2 type: Transform - - uid: 29757 + - uid: 29764 components: - rot: -1.5707963267948966 rad pos: -22.5,28.5 parent: 2 type: Transform - - uid: 29758 + - uid: 29765 components: - rot: -1.5707963267948966 rad pos: -23.5,28.5 parent: 2 type: Transform - - uid: 29759 + - uid: 29766 components: - rot: -1.5707963267948966 rad pos: -24.5,28.5 parent: 2 type: Transform - - uid: 29760 + - uid: 29767 components: - rot: -1.5707963267948966 rad pos: -25.5,28.5 parent: 2 type: Transform - - uid: 29761 + - uid: 29768 components: - rot: -1.5707963267948966 rad pos: -25.5,31.5 parent: 2 type: Transform - - uid: 29762 + - uid: 29769 components: - rot: -1.5707963267948966 rad pos: -25.5,30.5 parent: 2 type: Transform - - uid: 29763 + - uid: 29770 components: - rot: -1.5707963267948966 rad pos: -25.5,29.5 parent: 2 type: Transform - - uid: 29764 + - uid: 29771 components: - rot: -1.5707963267948966 rad pos: -20.5,36.5 parent: 2 type: Transform - - uid: 29765 + - uid: 29772 components: - rot: -1.5707963267948966 rad pos: -19.5,36.5 parent: 2 type: Transform - - uid: 29766 + - uid: 29773 components: - rot: -1.5707963267948966 rad pos: -21.5,36.5 parent: 2 type: Transform - - uid: 29767 + - uid: 29774 components: - rot: -1.5707963267948966 rad pos: -22.5,36.5 parent: 2 type: Transform - - uid: 29768 + - uid: 29775 components: - rot: -1.5707963267948966 rad pos: -22.5,35.5 parent: 2 type: Transform - - uid: 29769 + - uid: 29776 components: - rot: -1.5707963267948966 rad pos: -22.5,33.5 parent: 2 type: Transform - - uid: 29770 + - uid: 29777 components: - rot: -1.5707963267948966 rad pos: -26.5,29.5 parent: 2 type: Transform - - uid: 29771 + - uid: 29778 components: - rot: -1.5707963267948966 rad pos: -27.5,29.5 parent: 2 type: Transform - - uid: 29772 + - uid: 29779 components: - rot: -1.5707963267948966 rad pos: -27.5,30.5 parent: 2 type: Transform - - uid: 29773 + - uid: 29780 components: - rot: -1.5707963267948966 rad pos: -18.5,37.5 parent: 2 type: Transform - - uid: 29774 + - uid: 29781 components: - rot: -1.5707963267948966 rad pos: -17.5,39.5 parent: 2 type: Transform - - uid: 29775 + - uid: 29782 components: - rot: -1.5707963267948966 rad pos: -18.5,39.5 parent: 2 type: Transform - - uid: 29776 + - uid: 29783 components: - rot: -1.5707963267948966 rad pos: -19.5,39.5 parent: 2 type: Transform - - uid: 29777 + - uid: 29784 components: - rot: -1.5707963267948966 rad pos: -9.5,31.5 parent: 2 type: Transform - - uid: 29778 + - uid: 29785 components: - rot: -1.5707963267948966 rad pos: -9.5,32.5 parent: 2 type: Transform - - uid: 29779 + - uid: 29786 components: - rot: -1.5707963267948966 rad pos: -13.5,31.5 parent: 2 type: Transform - - uid: 29780 + - uid: 29787 components: - rot: -1.5707963267948966 rad pos: -13.5,32.5 parent: 2 type: Transform - - uid: 29781 + - uid: 29788 components: - rot: -1.5707963267948966 rad pos: -9.5,36.5 parent: 2 type: Transform - - uid: 29782 + - uid: 29789 components: - rot: -1.5707963267948966 rad pos: -8.5,36.5 parent: 2 type: Transform - - uid: 29783 + - uid: 29790 components: - rot: -1.5707963267948966 rad pos: -13.5,40.5 parent: 2 type: Transform - - uid: 29784 + - uid: 29791 components: - rot: -1.5707963267948966 rad pos: -12.5,40.5 parent: 2 type: Transform - - uid: 29785 + - uid: 29792 components: - rot: -1.5707963267948966 rad pos: -11.5,40.5 parent: 2 type: Transform - - uid: 29786 + - uid: 29793 components: - rot: -1.5707963267948966 rad pos: -10.5,35.5 parent: 2 type: Transform - - uid: 29787 + - uid: 29794 components: - rot: -1.5707963267948966 rad pos: -19.5,52.5 parent: 2 type: Transform - - uid: 29788 + - uid: 29795 components: - rot: -1.5707963267948966 rad pos: -10.5,40.5 parent: 2 type: Transform - - uid: 29789 + - uid: 29796 components: - rot: -1.5707963267948966 rad pos: -9.5,40.5 parent: 2 type: Transform - - uid: 29790 + - uid: 29797 components: - rot: -1.5707963267948966 rad pos: -8.5,40.5 parent: 2 type: Transform - - uid: 29791 + - uid: 29798 components: - rot: -1.5707963267948966 rad pos: -10.5,36.5 parent: 2 type: Transform - - uid: 29792 + - uid: 29799 components: - rot: -1.5707963267948966 rad pos: -11.5,36.5 parent: 2 type: Transform - - uid: 29793 + - uid: 29800 components: - rot: -1.5707963267948966 rad pos: -12.5,36.5 parent: 2 type: Transform - - uid: 29794 + - uid: 29801 components: - rot: -1.5707963267948966 rad pos: -16.5,64.5 parent: 2 type: Transform - - uid: 29795 + - uid: 29802 components: - rot: -1.5707963267948966 rad pos: -15.5,64.5 parent: 2 type: Transform - - uid: 29796 + - uid: 29803 components: - rot: -1.5707963267948966 rad pos: -14.5,64.5 parent: 2 type: Transform - - uid: 29797 + - uid: 29804 components: - rot: -1.5707963267948966 rad pos: -18.5,64.5 parent: 2 type: Transform - - uid: 29798 + - uid: 29805 components: - rot: -1.5707963267948966 rad pos: -19.5,64.5 parent: 2 type: Transform - - uid: 29799 + - uid: 29806 components: - rot: -1.5707963267948966 rad pos: -20.5,64.5 parent: 2 type: Transform - - uid: 29800 + - uid: 29807 components: - rot: -1.5707963267948966 rad pos: -14.5,63.5 parent: 2 type: Transform - - uid: 29801 + - uid: 29808 components: - rot: -1.5707963267948966 rad pos: -14.5,61.5 parent: 2 type: Transform - - uid: 29802 + - uid: 29809 components: - rot: -1.5707963267948966 rad pos: -14.5,60.5 parent: 2 type: Transform - - uid: 29803 + - uid: 29810 components: - rot: -1.5707963267948966 rad pos: -20.5,63.5 parent: 2 type: Transform - - uid: 29804 + - uid: 29811 components: - rot: -1.5707963267948966 rad pos: -20.5,61.5 parent: 2 type: Transform - - uid: 29805 + - uid: 29812 components: - rot: -1.5707963267948966 rad pos: -20.5,60.5 parent: 2 type: Transform - - uid: 29806 + - uid: 29813 components: - rot: -1.5707963267948966 rad pos: -11.5,62.5 parent: 2 type: Transform - - uid: 29807 + - uid: 29814 components: - rot: -1.5707963267948966 rad pos: -11.5,61.5 parent: 2 type: Transform - - uid: 29808 + - uid: 29815 components: - rot: -1.5707963267948966 rad pos: -11.5,60.5 parent: 2 type: Transform - - uid: 29809 + - uid: 29816 components: - rot: -1.5707963267948966 rad pos: -20.5,59.5 parent: 2 type: Transform - - uid: 29810 + - uid: 29817 components: - rot: -1.5707963267948966 rad pos: -18.5,59.5 parent: 2 type: Transform - - uid: 29811 + - uid: 29818 components: - rot: -1.5707963267948966 rad pos: -18.5,58.5 parent: 2 type: Transform - - uid: 29812 + - uid: 29819 components: - rot: -1.5707963267948966 rad pos: -18.5,57.5 parent: 2 type: Transform - - uid: 29813 + - uid: 29820 components: - rot: -1.5707963267948966 rad pos: -11.5,57.5 parent: 2 type: Transform - - uid: 29814 + - uid: 29821 components: - rot: -1.5707963267948966 rad pos: -20.5,58.5 parent: 2 type: Transform - - uid: 29815 + - uid: 29822 components: - rot: -1.5707963267948966 rad pos: -20.5,57.5 parent: 2 type: Transform - - uid: 29816 + - uid: 29823 components: - rot: -1.5707963267948966 rad pos: -18.5,56.5 parent: 2 type: Transform - - uid: 29817 + - uid: 29824 components: - rot: 1.5707963267948966 rad pos: -19.5,57.5 parent: 2 type: Transform - - uid: 29818 + - uid: 29825 components: - rot: -1.5707963267948966 rad pos: -20.5,56.5 parent: 2 type: Transform - - uid: 29819 + - uid: 29826 components: - rot: -1.5707963267948966 rad pos: -20.5,54.5 parent: 2 type: Transform - - uid: 29820 + - uid: 29827 components: - rot: -1.5707963267948966 rad pos: -18.5,54.5 parent: 2 type: Transform - - uid: 29821 + - uid: 29828 components: - rot: -1.5707963267948966 rad pos: -18.5,53.5 parent: 2 type: Transform - - uid: 29822 + - uid: 29829 components: - rot: -1.5707963267948966 rad pos: -18.5,52.5 parent: 2 type: Transform - - uid: 29823 + - uid: 29830 components: - rot: -1.5707963267948966 rad pos: -22.5,49.5 parent: 2 type: Transform - - uid: 29824 + - uid: 29831 components: - rot: -1.5707963267948966 rad pos: -23.5,54.5 parent: 2 type: Transform - - uid: 29825 + - uid: 29832 components: - rot: -1.5707963267948966 rad pos: -23.5,55.5 parent: 2 type: Transform - - uid: 29826 + - uid: 29833 components: - rot: -1.5707963267948966 rad pos: -11.5,56.5 parent: 2 type: Transform - - uid: 29827 + - uid: 29834 components: - rot: -1.5707963267948966 rad pos: -11.5,55.5 parent: 2 type: Transform - - uid: 29828 + - uid: 29835 components: - rot: -1.5707963267948966 rad pos: -11.5,54.5 parent: 2 type: Transform - - uid: 29829 + - uid: 29836 components: - rot: -1.5707963267948966 rad pos: -20.5,53.5 parent: 2 type: Transform - - uid: 29830 + - uid: 29837 components: - rot: -1.5707963267948966 rad pos: -20.5,52.5 parent: 2 type: Transform - - uid: 29831 + - uid: 29838 components: - rot: -1.5707963267948966 rad pos: -23.5,53.5 parent: 2 type: Transform - - uid: 29832 + - uid: 29839 components: - rot: -1.5707963267948966 rad pos: -23.5,52.5 parent: 2 type: Transform - - uid: 29833 + - uid: 29840 components: - rot: -1.5707963267948966 rad pos: -23.5,49.5 parent: 2 type: Transform - - uid: 29834 + - uid: 29841 components: - rot: -1.5707963267948966 rad pos: -23.5,50.5 parent: 2 type: Transform - - uid: 29835 + - uid: 29842 components: - rot: -1.5707963267948966 rad pos: -23.5,51.5 parent: 2 type: Transform - - uid: 29836 + - uid: 29843 components: - rot: -1.5707963267948966 rad pos: -11.5,50.5 parent: 2 type: Transform - - uid: 29837 + - uid: 29844 components: - rot: -1.5707963267948966 rad pos: -11.5,49.5 parent: 2 type: Transform - - uid: 29838 + - uid: 29845 components: - rot: -1.5707963267948966 rad pos: -14.5,48.5 parent: 2 type: Transform - - uid: 29839 + - uid: 29846 components: - rot: -1.5707963267948966 rad pos: -11.5,48.5 parent: 2 type: Transform - - uid: 29840 + - uid: 29847 components: - rot: -1.5707963267948966 rad pos: -12.5,48.5 parent: 2 type: Transform - - uid: 29841 + - uid: 29848 components: - rot: -1.5707963267948966 rad pos: -15.5,49.5 parent: 2 type: Transform - - uid: 29842 + - uid: 29849 components: - rot: -1.5707963267948966 rad pos: -19.5,49.5 parent: 2 type: Transform - - uid: 29843 + - uid: 29850 components: - rot: -1.5707963267948966 rad pos: -19.5,48.5 parent: 2 type: Transform - - uid: 29844 + - uid: 29851 components: - rot: -1.5707963267948966 rad pos: -19.5,47.5 parent: 2 type: Transform - - uid: 29845 + - uid: 29852 components: - rot: -1.5707963267948966 rad pos: -19.5,46.5 parent: 2 type: Transform - - uid: 29846 + - uid: 29853 components: - rot: -1.5707963267948966 rad pos: -19.5,40.5 parent: 2 type: Transform - - uid: 29847 + - uid: 29854 components: - rot: -1.5707963267948966 rad pos: -15.5,48.5 parent: 2 type: Transform - - uid: 29848 + - uid: 29855 components: - rot: -1.5707963267948966 rad pos: -13.5,43.5 parent: 2 type: Transform - - uid: 29849 + - uid: 29856 components: - rot: -1.5707963267948966 rad pos: -13.5,42.5 parent: 2 type: Transform - - uid: 29850 + - uid: 29857 components: - pos: -25.5,37.5 parent: 2 type: Transform - - uid: 29851 + - uid: 29858 components: - pos: -25.5,36.5 parent: 2 type: Transform - - uid: 29852 + - uid: 29859 components: - pos: -26.5,36.5 parent: 2 type: Transform - - uid: 29853 + - uid: 29860 components: - pos: -25.5,39.5 parent: 2 type: Transform - - uid: 29854 + - uid: 29861 components: - pos: -25.5,40.5 parent: 2 type: Transform - - uid: 29855 + - uid: 29862 components: - pos: -44.5,38.5 parent: 2 type: Transform - - uid: 29856 + - uid: 29863 components: - pos: -30.5,37.5 parent: 2 type: Transform - - uid: 29857 + - uid: 29864 components: - pos: -31.5,37.5 parent: 2 type: Transform - - uid: 29858 + - uid: 29865 components: - pos: -33.5,37.5 parent: 2 type: Transform - - uid: 29859 + - uid: 29866 components: - pos: -33.5,38.5 parent: 2 type: Transform - - uid: 29860 + - uid: 29867 components: - pos: -34.5,38.5 parent: 2 type: Transform - - uid: 29861 + - uid: 29868 components: - pos: -35.5,36.5 parent: 2 type: Transform - - uid: 29862 + - uid: 29869 components: - pos: -37.5,38.5 parent: 2 type: Transform - - uid: 29863 + - uid: 29870 components: - pos: -38.5,38.5 parent: 2 type: Transform - - uid: 29864 + - uid: 29871 components: - rot: 3.141592653589793 rad pos: 67.5,9.5 parent: 2 type: Transform - - uid: 29865 + - uid: 29872 components: - pos: -44.5,13.5 parent: 2 type: Transform - - uid: 29866 + - uid: 29873 components: - rot: -1.5707963267948966 rad pos: -22.5,40.5 parent: 2 type: Transform - - uid: 29867 + - uid: 29874 components: - rot: -1.5707963267948966 rad pos: -21.5,40.5 parent: 2 type: Transform - - uid: 29868 + - uid: 29875 components: - rot: -1.5707963267948966 rad pos: -20.5,40.5 parent: 2 type: Transform - - uid: 29869 + - uid: 29876 components: - pos: -23.5,40.5 parent: 2 type: Transform - - uid: 29870 + - uid: 29877 components: - pos: -23.5,42.5 parent: 2 type: Transform - - uid: 29871 + - uid: 29878 components: - pos: -23.5,43.5 parent: 2 type: Transform - - uid: 29872 + - uid: 29879 components: - pos: -23.5,44.5 parent: 2 type: Transform - - uid: 29873 + - uid: 29880 components: - pos: -23.5,45.5 parent: 2 type: Transform - - uid: 29874 + - uid: 29881 components: - pos: -23.5,46.5 parent: 2 type: Transform - - uid: 29875 + - uid: 29882 components: - pos: -22.5,46.5 parent: 2 type: Transform - - uid: 29876 + - uid: 29883 components: - pos: -21.5,46.5 parent: 2 type: Transform - - uid: 29877 + - uid: 29884 components: - pos: -20.5,46.5 parent: 2 type: Transform - - uid: 29878 + - uid: 29885 components: - pos: -8.5,47.5 parent: 2 type: Transform - - uid: 29879 + - uid: 29886 components: - pos: -7.5,47.5 parent: 2 type: Transform - - uid: 29880 + - uid: 29887 components: - pos: -6.5,47.5 parent: 2 type: Transform - - uid: 29881 + - uid: 29888 components: - pos: -2.5,47.5 parent: 2 type: Transform - - uid: 29882 + - uid: 29889 components: - pos: -1.5,47.5 parent: 2 type: Transform - - uid: 29883 + - uid: 29890 components: - pos: -1.5,48.5 parent: 2 type: Transform - - uid: 29884 + - uid: 29891 components: - pos: -1.5,51.5 parent: 2 type: Transform - - uid: 29885 + - uid: 29892 components: - pos: -1.5,52.5 parent: 2 type: Transform - - uid: 29886 + - uid: 29893 components: - pos: -1.5,53.5 parent: 2 type: Transform - - uid: 29887 + - uid: 29894 components: - pos: -1.5,54.5 parent: 2 type: Transform - - uid: 29888 + - uid: 29895 components: - pos: 45.5,34.5 parent: 2 type: Transform - - uid: 29889 + - uid: 29896 components: - rot: 3.141592653589793 rad pos: 45.5,33.5 parent: 2 type: Transform - - uid: 29890 + - uid: 29897 components: - rot: -1.5707963267948966 rad pos: -4.5,57.5 parent: 2 type: Transform - - uid: 29891 + - uid: 29898 components: - rot: -1.5707963267948966 rad pos: -3.5,57.5 parent: 2 type: Transform - - uid: 29892 + - uid: 29899 components: - rot: -1.5707963267948966 rad pos: -2.5,57.5 parent: 2 type: Transform - - uid: 29893 + - uid: 29900 components: - rot: -1.5707963267948966 rad pos: -1.5,57.5 parent: 2 type: Transform - - uid: 29894 + - uid: 29901 components: - rot: -1.5707963267948966 rad pos: -1.5,56.5 parent: 2 type: Transform - - uid: 29895 + - uid: 29902 components: - rot: -1.5707963267948966 rad pos: -1.5,55.5 parent: 2 type: Transform - - uid: 29896 + - uid: 29903 components: - rot: -1.5707963267948966 rad pos: -9.5,60.5 parent: 2 type: Transform - - uid: 29897 + - uid: 29904 components: - pos: 17.5,35.5 parent: 2 type: Transform - - uid: 29898 + - uid: 29905 components: - pos: 15.5,35.5 parent: 2 type: Transform - - uid: 29899 + - uid: 29906 components: - pos: -28.5,42.5 parent: 2 type: Transform - - uid: 29900 + - uid: 29907 components: - pos: -27.5,42.5 parent: 2 type: Transform - - uid: 29901 + - uid: 29908 components: - pos: -26.5,42.5 parent: 2 type: Transform - - uid: 29902 + - uid: 29909 components: - pos: -39.5,37.5 parent: 2 type: Transform - - uid: 29903 + - uid: 29910 components: - pos: -39.5,38.5 parent: 2 type: Transform - - uid: 29904 + - uid: 29911 components: - pos: -36.5,38.5 parent: 2 type: Transform - - uid: 29905 + - uid: 29912 components: - pos: -35.5,38.5 parent: 2 type: Transform - - uid: 29906 + - uid: 29913 components: - pos: 40.5,49.5 parent: 2 type: Transform - - uid: 29907 + - uid: 29914 components: - pos: 40.5,50.5 parent: 2 type: Transform - - uid: 29908 + - uid: 29915 components: - pos: 44.5,46.5 parent: 2 type: Transform - - uid: 29909 + - uid: 29916 components: - pos: 44.5,44.5 parent: 2 type: Transform - - uid: 29910 + - uid: 29917 components: - pos: -23.5,48.5 parent: 2 type: Transform - - uid: 29911 + - uid: 29918 components: - pos: 7.5,-31.5 parent: 2 type: Transform - - uid: 29912 + - uid: 29919 components: - pos: 7.5,-29.5 parent: 2 type: Transform - - uid: 29913 + - uid: 29920 components: - pos: 7.5,-30.5 parent: 2 type: Transform - - uid: 29914 + - uid: 29921 components: - pos: -22.5,-17.5 parent: 2 type: Transform - - uid: 29915 + - uid: 29922 components: - pos: -16.5,-96.5 parent: 2 type: Transform - - uid: 29916 + - uid: 29923 components: - pos: -28.5,-96.5 parent: 2 type: Transform - - uid: 29917 + - uid: 29924 components: - pos: -13.5,-98.5 parent: 2 type: Transform - - uid: 29918 + - uid: 29925 components: - pos: -13.5,-96.5 parent: 2 type: Transform - - uid: 29919 + - uid: 29926 components: - pos: -31.5,-98.5 parent: 2 type: Transform - - uid: 29920 + - uid: 29927 components: - pos: -31.5,-96.5 parent: 2 type: Transform - - uid: 29921 + - uid: 29928 components: - pos: -43.5,-93.5 parent: 2 type: Transform - - uid: 29922 + - uid: 29929 components: - rot: 1.5707963267948966 rad pos: -39.5,-93.5 parent: 2 type: Transform - - uid: 29923 + - uid: 29930 components: - rot: 1.5707963267948966 rad pos: -40.5,-93.5 parent: 2 type: Transform - - uid: 29924 + - uid: 29931 components: - rot: 3.141592653589793 rad pos: -39.5,-94.5 parent: 2 type: Transform - - uid: 29925 + - uid: 29932 components: - rot: 3.141592653589793 rad pos: -39.5,-97.5 parent: 2 type: Transform - - uid: 29926 + - uid: 29933 components: - pos: 16.5,-4.5 parent: 2 type: Transform - - uid: 29927 + - uid: 29934 components: - rot: 1.5707963267948966 rad pos: 59.5,-8.5 parent: 2 type: Transform - - uid: 29928 + - uid: 29935 components: - pos: -13.5,33.5 parent: 2 type: Transform - - uid: 29929 + - uid: 29936 components: - rot: -1.5707963267948966 rad pos: -14.5,-15.5 parent: 2 type: Transform - - uid: 29930 + - uid: 29937 components: - rot: -1.5707963267948966 rad pos: -14.5,-12.5 parent: 2 type: Transform - - uid: 29931 + - uid: 29938 components: - pos: 60.5,-28.5 parent: 2 type: Transform - - uid: 29932 + - uid: 29939 components: - pos: 7.5,-35.5 parent: 2 type: Transform - - uid: 29933 + - uid: 29940 components: - pos: 7.5,-32.5 parent: 2 type: Transform - - uid: 29934 + - uid: 29941 components: - pos: 57.5,-62.5 parent: 2 type: Transform - - uid: 29935 + - uid: 29942 components: - pos: 5.5,-35.5 parent: 2 type: Transform - - uid: 29936 + - uid: 29943 components: - rot: -1.5707963267948966 rad pos: 39.5,-34.5 parent: 2 type: Transform - - uid: 29937 + - uid: 29944 components: - pos: 56.5,-62.5 parent: 2 type: Transform - - uid: 29938 + - uid: 29945 components: - pos: 7.5,-33.5 parent: 2 type: Transform - - uid: 29939 + - uid: 29946 components: - pos: 7.5,-34.5 parent: 2 type: Transform - - uid: 29940 + - uid: 29947 components: - pos: 52.5,-33.5 parent: 2 type: Transform - - uid: 29941 + - uid: 29948 components: - pos: 52.5,-34.5 parent: 2 type: Transform - - uid: 29942 + - uid: 29949 components: - pos: 55.5,-62.5 parent: 2 type: Transform - - uid: 29943 + - uid: 29950 components: - rot: -1.5707963267948966 rad pos: 38.5,-34.5 parent: 2 type: Transform - - uid: 29944 + - uid: 29951 components: - pos: 9.5,-38.5 parent: 2 type: Transform - - uid: 29945 + - uid: 29952 components: - rot: 3.141592653589793 rad pos: -16.5,-17.5 parent: 2 type: Transform - - uid: 29946 + - uid: 29953 components: - rot: 3.141592653589793 rad pos: -16.5,-19.5 parent: 2 type: Transform - - uid: 29947 + - uid: 29954 components: - rot: 3.141592653589793 rad pos: -14.5,-22.5 parent: 2 type: Transform - - uid: 29948 + - uid: 29955 components: - pos: 73.5,-55.5 parent: 2 type: Transform - - uid: 29949 + - uid: 29956 components: - pos: 52.5,-37.5 parent: 2 type: Transform - - uid: 29950 + - uid: 29957 components: - rot: 1.5707963267948966 rad pos: -57.5,-57.5 parent: 2 type: Transform - - uid: 29951 + - uid: 29958 components: - pos: 60.5,-42.5 parent: 2 type: Transform - - uid: 29952 + - uid: 29959 components: - rot: 1.5707963267948966 rad pos: 60.5,-40.5 parent: 2 type: Transform - - uid: 29953 + - uid: 29960 components: - pos: 55.5,-33.5 parent: 2 type: Transform - - uid: 29954 + - uid: 29961 components: - pos: 56.5,-36.5 parent: 2 type: Transform - - uid: 29955 + - uid: 29962 components: - pos: 56.5,-34.5 parent: 2 type: Transform - - uid: 29956 + - uid: 29963 components: - pos: 60.5,-27.5 parent: 2 type: Transform - - uid: 29957 + - uid: 29964 components: - pos: 59.5,-27.5 parent: 2 type: Transform - - uid: 29958 + - uid: 29965 components: - pos: 58.5,-27.5 parent: 2 type: Transform - - uid: 29959 + - uid: 29966 components: - pos: 56.5,-29.5 parent: 2 type: Transform - - uid: 29960 + - uid: 29967 components: - pos: 56.5,-30.5 parent: 2 type: Transform - - uid: 29961 + - uid: 29968 components: - pos: 56.5,-28.5 parent: 2 type: Transform - - uid: 29962 + - uid: 29969 components: - pos: 61.5,-27.5 parent: 2 type: Transform - - uid: 29963 + - uid: 29970 components: - pos: 56.5,-27.5 parent: 2 type: Transform - - uid: 29964 + - uid: 29971 components: - pos: 53.5,-29.5 parent: 2 type: Transform - - uid: 29965 + - uid: 29972 components: - pos: 54.5,-29.5 parent: 2 type: Transform - - uid: 29966 + - uid: 29973 components: - pos: 44.5,-62.5 parent: 2 type: Transform - - uid: 29967 + - uid: 29974 components: - pos: 44.5,-63.5 parent: 2 type: Transform - - uid: 29968 + - uid: 29975 components: - pos: 53.5,-66.5 parent: 2 type: Transform - - uid: 29969 + - uid: 29976 components: - pos: 56.5,-35.5 parent: 2 type: Transform - - uid: 29970 + - uid: 29977 components: - pos: 57.5,-66.5 parent: 2 type: Transform - - uid: 29971 + - uid: 29978 components: - pos: 57.5,-67.5 parent: 2 type: Transform - - uid: 29972 + - uid: 29979 components: - pos: 65.5,-66.5 parent: 2 type: Transform - - uid: 29973 + - uid: 29980 components: - pos: 65.5,-62.5 parent: 2 type: Transform - - uid: 29974 + - uid: 29981 components: - pos: 65.5,-64.5 parent: 2 type: Transform - - uid: 29975 + - uid: 29982 components: - pos: 65.5,-63.5 parent: 2 type: Transform - - uid: 29976 + - uid: 29983 components: - pos: 73.5,-56.5 parent: 2 type: Transform - - uid: 29977 + - uid: 29984 components: - pos: 74.5,-53.5 parent: 2 type: Transform - - uid: 29978 + - uid: 29985 components: - pos: 66.5,-62.5 parent: 2 type: Transform - - uid: 29979 + - uid: 29986 components: - pos: 67.5,-62.5 parent: 2 type: Transform - - uid: 29980 + - uid: 29987 components: - pos: 70.5,-63.5 parent: 2 type: Transform - - uid: 29981 + - uid: 29988 components: - pos: 70.5,-62.5 parent: 2 type: Transform - - uid: 29982 + - uid: 29989 components: - pos: 69.5,-62.5 parent: 2 type: Transform - - uid: 29983 + - uid: 29990 components: - pos: 69.5,-58.5 parent: 2 type: Transform - - uid: 29984 + - uid: 29991 components: - pos: 70.5,-58.5 parent: 2 type: Transform - - uid: 29985 + - uid: 29992 components: - pos: 70.5,-59.5 parent: 2 type: Transform - - uid: 29986 + - uid: 29993 components: - pos: 70.5,-60.5 parent: 2 type: Transform - - uid: 29987 + - uid: 29994 components: - pos: 72.5,-58.5 parent: 2 type: Transform - - uid: 29988 + - uid: 29995 components: - pos: 56.5,-37.5 parent: 2 type: Transform - - uid: 29989 + - uid: 29996 components: - pos: 56.5,-38.5 parent: 2 type: Transform - - uid: 29990 + - uid: 29997 components: - pos: 62.5,-27.5 parent: 2 type: Transform - - uid: 29991 + - uid: 29998 components: - pos: -69.5,-32.5 parent: 2 type: Transform - - uid: 29992 + - uid: 29999 components: - pos: 18.5,-15.5 parent: 2 type: Transform - - uid: 29993 + - uid: 30000 components: - pos: -12.5,-34.5 parent: 2 type: Transform - - uid: 29994 + - uid: 30001 components: - pos: -22.5,0.5 parent: 2 type: Transform - - uid: 29995 + - uid: 30002 components: - rot: 3.141592653589793 rad pos: 19.5,8.5 parent: 2 type: Transform - - uid: 29996 + - uid: 30003 components: - pos: 16.5,8.5 parent: 2 type: Transform - - uid: 29997 + - uid: 30004 components: - rot: 1.5707963267948966 rad pos: 2.5,-2.5 parent: 2 type: Transform - - uid: 29998 + - uid: 30005 components: - pos: 1.5,-51.5 parent: 2 type: Transform - - uid: 29999 + - uid: 30006 components: - pos: 5.5,-73.5 parent: 2 type: Transform - - uid: 30000 + - uid: 30007 components: - rot: -1.5707963267948966 rad pos: -35.5,18.5 parent: 2 type: Transform - - uid: 30001 + - uid: 30008 components: - rot: -1.5707963267948966 rad pos: -35.5,19.5 parent: 2 type: Transform - - uid: 30002 + - uid: 30009 components: - pos: -16.5,-11.5 parent: 2 type: Transform - - uid: 30003 + - uid: 30010 components: - pos: -13.5,-16.5 parent: 2 type: Transform - - uid: 30004 + - uid: 30011 components: - pos: -8.5,-7.5 parent: 2 type: Transform - - uid: 30005 + - uid: 30012 components: - pos: 6.5,-51.5 parent: 2 type: Transform - - uid: 30006 + - uid: 30013 components: - rot: -1.5707963267948966 rad pos: 8.5,-46.5 parent: 2 type: Transform - - uid: 30007 + - uid: 30014 components: - rot: 1.5707963267948966 rad pos: -27.5,-60.5 parent: 2 type: Transform - - uid: 30008 + - uid: 30015 components: - pos: -21.5,-51.5 parent: 2 type: Transform - - uid: 30009 + - uid: 30016 components: - pos: 5.5,-75.5 parent: 2 type: Transform - - uid: 30010 + - uid: 30017 components: - pos: 4.5,-72.5 parent: 2 type: Transform - proto: WallSolidRust entities: - - uid: 534 + - uid: 11915 components: - - rot: 3.141592653589793 rad - pos: -12.5,-33.5 + - pos: -12.5,-33.5 parent: 2 type: Transform - - uid: 30011 + - uid: 30018 components: - rot: 3.141592653589793 rad pos: 13.5,-58.5 parent: 2 type: Transform - - uid: 30012 + - uid: 30019 components: - rot: 3.141592653589793 rad pos: 13.5,-56.5 parent: 2 type: Transform - - uid: 30013 + - uid: 30020 components: - rot: -1.5707963267948966 rad pos: -10.5,14.5 parent: 2 type: Transform - - uid: 30014 + - uid: 30021 components: - rot: 1.5707963267948966 rad pos: -10.5,-7.5 @@ -216676,7 +201784,7 @@ entities: type: Transform - proto: WardrobeBotanistFilled entities: - - uid: 30015 + - uid: 30022 components: - pos: -4.5,12.5 parent: 2 @@ -216699,7 +201807,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30016 + - uid: 30023 components: - pos: -4.5,10.5 parent: 2 @@ -216724,7 +201832,7 @@ entities: type: EntityStorage - proto: WardrobeGreenFilled entities: - - uid: 30017 + - uid: 30024 components: - pos: -48.5,3.5 parent: 2 @@ -216749,7 +201857,7 @@ entities: type: EntityStorage - proto: WardrobePrisonFilled entities: - - uid: 30018 + - uid: 30025 components: - pos: 28.5,10.5 parent: 2 @@ -216772,7 +201880,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30019 + - uid: 30026 components: - pos: 36.5,5.5 parent: 2 @@ -216795,7 +201903,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30020 + - uid: 30027 components: - pos: 31.5,10.5 parent: 2 @@ -216818,7 +201926,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30021 + - uid: 30028 components: - pos: 34.5,10.5 parent: 2 @@ -216841,7 +201949,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30022 + - uid: 30029 components: - pos: 36.5,8.5 parent: 2 @@ -216864,7 +201972,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30023 + - uid: 30030 components: - pos: 55.5,22.5 parent: 2 @@ -216887,7 +201995,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30024 + - uid: 30031 components: - pos: 52.5,22.5 parent: 2 @@ -216910,7 +202018,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30025 + - uid: 30032 components: - pos: 49.5,22.5 parent: 2 @@ -216933,7 +202041,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30026 + - uid: 30033 components: - pos: 46.5,22.5 parent: 2 @@ -216956,7 +202064,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30027 + - uid: 30034 components: - pos: 58.5,22.5 parent: 2 @@ -216979,7 +202087,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30028 + - uid: 30035 components: - pos: 60.5,19.5 parent: 2 @@ -217002,7 +202110,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30029 + - uid: 30036 components: - pos: 60.5,16.5 parent: 2 @@ -217027,7 +202135,7 @@ entities: type: EntityStorage - proto: WardrobeYellowFilled entities: - - uid: 30030 + - uid: 30037 components: - pos: -49.5,3.5 parent: 2 @@ -217052,56 +202160,56 @@ entities: type: EntityStorage - proto: WarningCO2 entities: - - uid: 30031 + - uid: 30038 components: - pos: -51.5,-50.5 parent: 2 type: Transform - proto: WarningN2 entities: - - uid: 30032 + - uid: 30039 components: - pos: -51.5,-54.5 parent: 2 type: Transform - proto: WarningN2O entities: - - uid: 30033 + - uid: 30040 components: - pos: -51.5,-42.5 parent: 2 type: Transform - proto: WarningO2 entities: - - uid: 30034 + - uid: 30041 components: - pos: -51.5,-52.5 parent: 2 type: Transform - proto: WarningPlasma entities: - - uid: 30035 + - uid: 30042 components: - pos: -51.5,-46.5 parent: 2 type: Transform - proto: WarningTritium entities: - - uid: 30036 + - uid: 30043 components: - pos: -51.5,-44.5 parent: 2 type: Transform - proto: WarningWaste entities: - - uid: 30037 + - uid: 30044 components: - pos: -51.5,-48.5 parent: 2 type: Transform - proto: WarpPoint entities: - - uid: 30038 + - uid: 30045 components: - rot: -1.5707963267948966 rad pos: 25.5,-39.5 @@ -217109,14 +202217,14 @@ entities: type: Transform - location: personnel type: WarpPoint - - uid: 30039 + - uid: 30046 components: - pos: 12.5,11.5 parent: 2 type: Transform - location: bar type: WarpPoint - - uid: 30040 + - uid: 30047 components: - name: 'Warp: medical' type: MetaData @@ -217125,7 +202233,7 @@ entities: type: Transform - location: medbay type: WarpPoint - - uid: 30041 + - uid: 30048 components: - name: 'warp: science' type: MetaData @@ -217134,7 +202242,7 @@ entities: type: Transform - location: science reception type: WarpPoint - - uid: 30042 + - uid: 30049 components: - name: 'warp: bridge' type: MetaData @@ -217143,7 +202251,7 @@ entities: type: Transform - location: bridge type: WarpPoint - - uid: 30043 + - uid: 30050 components: - name: 'warp: prison' type: MetaData @@ -217152,7 +202260,7 @@ entities: type: Transform - location: open prison type: WarpPoint - - uid: 30044 + - uid: 30051 components: - name: 'warp: security' type: MetaData @@ -217161,21 +202269,21 @@ entities: type: Transform - location: security type: WarpPoint - - uid: 30045 + - uid: 30052 components: - pos: 61.5,-8.5 parent: 2 type: Transform - location: evac type: WarpPoint - - uid: 30046 + - uid: 30053 components: - name: 'warp: waste' type: MetaData - pos: 17.5,-53.5 parent: 2 type: Transform - - uid: 30047 + - uid: 30054 components: - name: 'warp: engineering' type: MetaData @@ -217184,7 +202292,7 @@ entities: type: Transform - location: engineering reception type: WarpPoint - - uid: 30048 + - uid: 30055 components: - name: 'warp: atmospherics' type: MetaData @@ -217193,7 +202301,7 @@ entities: type: Transform - location: atmospherics type: WarpPoint - - uid: 30049 + - uid: 30056 components: - name: 'warp: singularity' type: MetaData @@ -217202,7 +202310,7 @@ entities: type: Transform - location: singularity type: WarpPoint - - uid: 30050 + - uid: 30057 components: - name: 'warp: forgotten dock' type: MetaData @@ -217211,7 +202319,7 @@ entities: type: Transform - location: forgotten ship dock type: WarpPoint - - uid: 30051 + - uid: 30058 components: - name: 'warp: jani closet' type: MetaData @@ -217220,7 +202328,7 @@ entities: type: Transform - location: janitorial closet type: WarpPoint - - uid: 30052 + - uid: 30059 components: - name: 'warp: courthouse' type: MetaData @@ -217229,7 +202337,7 @@ entities: type: Transform - location: courtroom type: WarpPoint - - uid: 30053 + - uid: 30060 components: - name: 'Warp: psychology' type: MetaData @@ -217238,7 +202346,7 @@ entities: type: Transform - location: psychology type: WarpPoint - - uid: 30054 + - uid: 30061 components: - name: 'warp: virology' type: MetaData @@ -217247,7 +202355,7 @@ entities: type: Transform - location: virology reception type: WarpPoint - - uid: 30055 + - uid: 30062 components: - name: 'warp: cargo' type: MetaData @@ -217257,7 +202365,7 @@ entities: type: Transform - location: cargo type: WarpPoint - - uid: 30056 + - uid: 30063 components: - name: 'warp: salvage' type: MetaData @@ -217267,7 +202375,7 @@ entities: type: Transform - location: salvage type: WarpPoint - - uid: 30057 + - uid: 30064 components: - name: 'warp: arrivals' type: MetaData @@ -217277,7 +202385,7 @@ entities: type: Transform - location: arrivals type: WarpPoint - - uid: 30058 + - uid: 30065 components: - name: 'Warp: kitchen' type: MetaData @@ -217287,7 +202395,7 @@ entities: type: Transform - location: kitchen type: WarpPoint - - uid: 30059 + - uid: 30066 components: - name: 'Warp: botany' type: MetaData @@ -217297,7 +202405,7 @@ entities: type: Transform - location: hydrophonics type: WarpPoint - - uid: 30060 + - uid: 30067 components: - name: 'warp: theatre' type: MetaData @@ -217307,7 +202415,7 @@ entities: type: Transform - location: theatre type: WarpPoint - - uid: 30061 + - uid: 30068 components: - name: 'warp: library' type: MetaData @@ -217317,7 +202425,7 @@ entities: type: Transform - location: library type: WarpPoint - - uid: 30062 + - uid: 30069 components: - name: 'Warp: armory' type: MetaData @@ -217327,7 +202435,7 @@ entities: type: Transform - location: armory type: WarpPoint - - uid: 30063 + - uid: 30070 components: - name: 'warp: revolution bar' type: MetaData @@ -217337,7 +202445,7 @@ entities: type: Transform - location: rebelion bar type: WarpPoint - - uid: 30064 + - uid: 30071 components: - rot: 3.141592653589793 rad pos: -44.5,53.5 @@ -217347,310 +202455,330 @@ entities: type: WarpPoint - proto: WaterCooler entities: - - uid: 30065 + - uid: 30072 components: - pos: -8.5,-35.5 parent: 2 type: Transform - - uid: 30066 + - uid: 30073 components: - pos: 55.398575,18.5843 parent: 2 type: Transform - - uid: 30067 + - uid: 30074 components: - pos: 36.5,-6.5 parent: 2 type: Transform - - uid: 30068 + - uid: 30075 components: - pos: 41.5,-47.5 parent: 2 type: Transform - proto: WatermelonSeeds entities: - - uid: 30069 + - uid: 30076 components: - pos: -10.7386265,11.36718 parent: 2 type: Transform + - nextSound: 1033.4117116 + type: EmitSoundOnCollide - proto: WaterTank entities: - - uid: 30070 + - uid: 30077 components: - pos: 74.5,-54.5 parent: 2 type: Transform - proto: WaterTankFull entities: - - uid: 30071 + - uid: 30078 components: - pos: -19.5,-86.5 parent: 2 type: Transform - - uid: 30072 + - uid: 30079 components: - pos: 7.5,-81.5 parent: 2 type: Transform - - uid: 30073 + - uid: 30080 components: - pos: 45.5,21.5 parent: 2 type: Transform - - uid: 30074 + - uid: 30081 components: - pos: 8.5,-64.5 parent: 2 type: Transform - - uid: 30075 + - uid: 30082 components: - pos: -29.5,-65.5 parent: 2 type: Transform - - uid: 30076 + - uid: 30083 components: - pos: 35.5,-10.5 parent: 2 type: Transform - - uid: 30077 + - uid: 30084 components: - pos: -27.5,-43.5 parent: 2 type: Transform - - uid: 30078 + - uid: 30085 components: - pos: -1.5,-14.5 parent: 2 type: Transform - - uid: 30079 + - uid: 30086 components: - pos: -39.5,-30.5 parent: 2 type: Transform - - uid: 30080 + - uid: 30087 components: - pos: -45.5,-3.5 parent: 2 type: Transform - - uid: 30081 + - uid: 30088 components: - pos: -27.5,37.5 parent: 2 type: Transform - - uid: 30082 + - uid: 30089 components: - pos: -1.5,23.5 parent: 2 type: Transform - - uid: 30083 + - uid: 30090 components: - pos: -8.5,-8.5 parent: 2 type: Transform - proto: WaterTankHighCapacity entities: - - uid: 30084 + - uid: 30091 components: - pos: -7.5,-21.5 parent: 2 type: Transform - - uid: 30085 + - uid: 30092 components: - pos: -5.5,8.5 parent: 2 type: Transform - proto: WaterVaporCanister entities: - - uid: 30086 + - uid: 30093 components: - pos: -50.5,-48.5 parent: 2 type: Transform - - uid: 30087 + - uid: 30094 components: - pos: -34.5,-28.5 parent: 2 type: Transform - proto: WeaponCapacitorRecharger entities: - - uid: 30088 + - uid: 30095 components: - pos: 28.5,-21.5 parent: 2 type: Transform - - uid: 30089 + - uid: 30096 components: - pos: 2.5,-56.5 parent: 2 type: Transform - - uid: 30090 + - uid: 30097 components: - pos: 6.5,12.5 parent: 2 type: Transform - - uid: 30091 + - uid: 30098 components: - pos: 20.5,-45.5 parent: 2 type: Transform - - uid: 30092 + - uid: 30099 components: - pos: 5.5,20.5 parent: 2 type: Transform - - uid: 30093 + - uid: 30100 components: - pos: 17.5,22.5 parent: 2 type: Transform - - uid: 30094 + - uid: 30101 components: - pos: 25.5,23.5 parent: 2 type: Transform - - uid: 30095 + - uid: 30102 components: - pos: -16.5,24.5 parent: 2 type: Transform - - uid: 30096 + - uid: 30103 components: - pos: -16.5,-21.5 parent: 2 type: Transform - proto: WeaponDisabler entities: - - uid: 30097 + - uid: 30104 components: - pos: 1.6229637,21.593708 parent: 2 type: Transform - - uid: 30098 + - uid: 30105 components: - pos: 12.563014,21.38584 parent: 2 type: Transform - - uid: 30099 + - uid: 30106 components: - pos: 12.453639,21.54209 parent: 2 type: Transform - proto: WeaponLaserCarbine entities: - - uid: 30100 + - uid: 30107 components: - pos: 31.473701,27.53409 parent: 2 type: Transform - - uid: 30101 + - uid: 30108 components: - pos: 27.52579,29.485806 parent: 2 type: Transform - - uid: 30102 + - uid: 30109 components: - pos: 27.55704,27.505564 parent: 2 type: Transform - - uid: 30103 + - uid: 30110 components: - pos: 31.458076,29.523903 parent: 2 type: Transform - proto: WeaponPistolMk58 entities: - - uid: 30104 + - uid: 30111 components: - pos: 31.657001,32.450115 parent: 2 type: Transform - - uid: 30105 + - uid: 30112 components: - pos: 31.637281,32.558495 parent: 2 type: Transform - - uid: 30106 + - uid: 30113 components: - pos: 31.586092,32.47933 parent: 2 type: Transform + - uid: 30114 + components: + - pos: 31.657982,32.330257 + parent: 2 + type: Transform + - nextFire: 343.1422013 + type: Gun + - nextSound: 343.3422013 + type: EmitSoundOnCollide - proto: WeaponRevolverDeckard entities: - - uid: 30109 + - uid: 30115 components: - pos: 30.600538,32.59448 parent: 2 type: Transform - proto: WeaponShotgunKammerer entities: - - uid: 30110 + - uid: 30116 components: - pos: 26.643364,32.60906 parent: 2 type: Transform - - uid: 30111 + - uid: 30117 components: - pos: 26.777893,32.47498 parent: 2 type: Transform + - uid: 30118 + components: + - pos: 26.709015,32.580257 + parent: 2 + type: Transform + - nextFire: 357.0539907 + type: Gun + - nextSound: 357.2539906 + type: EmitSoundOnCollide - proto: WeaponSubMachineGunDrozd entities: - - uid: 30112 + - uid: 30119 components: - pos: 27.939907,32.617863 parent: 2 type: Transform - - uid: 30113 + - uid: 30120 components: - pos: 28.718153,32.704456 parent: 2 type: Transform - - uid: 30114 + - uid: 30121 components: - pos: 29.421278,32.68883 parent: 2 type: Transform - proto: WeaponSubMachineGunWt550 entities: - - uid: 30115 + - uid: 30122 components: - pos: 6.384364,22.636343 parent: 2 type: Transform - proto: Welder entities: - - uid: 30116 + - uid: 30123 components: - pos: -23.377909,-24.435646 parent: 2 type: Transform - - uid: 30117 + - uid: 30124 components: - pos: -11.453522,-74.45183 parent: 2 type: Transform - - uid: 30118 + - uid: 30125 components: - pos: -44.4577,-25.484493 parent: 2 type: Transform - - uid: 30119 + - uid: 30126 components: - pos: -28.416739,-28.473803 parent: 2 type: Transform - - uid: 30120 + - uid: 30127 components: - pos: -52.43758,2.566814 parent: 2 type: Transform - - uid: 30121 + - uid: 30128 components: - pos: -44.442474,-76.91975 parent: 2 type: Transform - - uid: 30122 + - uid: 30129 components: - pos: 76.51503,-43.437786 parent: 2 @@ -217659,112 +202787,112 @@ entities: type: MeleeWeapon - proto: WelderIndustrial entities: - - uid: 30123 + - uid: 30130 components: - pos: -34.41553,-12.611145 parent: 2 type: Transform - - uid: 30124 + - uid: 30131 components: - pos: -35.502888,-46.513077 parent: 2 type: Transform - - uid: 30125 + - uid: 30132 components: - pos: -42.417007,-21.43029 parent: 2 type: Transform - proto: WelderMini entities: - - uid: 30126 + - uid: 30133 components: - pos: -52.426445,-12.844277 parent: 2 type: Transform - proto: WeldingFuelTank entities: - - uid: 30127 + - uid: 30134 components: - pos: -28.5,-43.5 parent: 2 type: Transform - - uid: 30128 + - uid: 30135 components: - pos: 7.5,-64.5 parent: 2 type: Transform - proto: WeldingFuelTankFull entities: - - uid: 30129 + - uid: 30136 components: - pos: -3.5,-71.5 parent: 2 type: Transform - - uid: 30130 + - uid: 30137 components: - pos: -28.5,-25.5 parent: 2 type: Transform - - uid: 30131 + - uid: 30138 components: - pos: -43.5,-63.5 parent: 2 type: Transform - - uid: 30132 + - uid: 30139 components: - pos: -38.5,-30.5 parent: 2 type: Transform - - uid: 30133 + - uid: 30140 components: - pos: -0.5,23.5 parent: 2 type: Transform - - uid: 30134 + - uid: 30141 components: - pos: -51.5,4.5 parent: 2 type: Transform - - uid: 30135 + - uid: 30142 components: - pos: -16.5,-18.5 parent: 2 type: Transform - - uid: 30136 + - uid: 30143 components: - pos: 39.5,-32.5 parent: 2 type: Transform - - uid: 30137 + - uid: 30144 components: - pos: 72.5,-59.5 parent: 2 type: Transform - proto: WetFloorSign entities: - - uid: 30138 + - uid: 30145 components: - pos: -7.8693366,-23.228895 parent: 2 type: Transform - - uid: 30139 + - uid: 30146 components: - pos: 16.379074,-41.325726 parent: 2 type: Transform - - uid: 30140 + - uid: 30147 components: - pos: -7.8537116,-23.36952 parent: 2 type: Transform - - uid: 30141 + - uid: 30148 components: - pos: -7.7912116,-23.603895 parent: 2 type: Transform - proto: Windoor entities: - - uid: 30142 + - uid: 30149 components: - rot: 1.5707963267948966 rad pos: 26.5,0.5 @@ -217772,49 +202900,49 @@ entities: type: Transform - proto: WindoorArmoryLocked entities: - - uid: 30143 + - uid: 30150 components: - rot: 3.141592653589793 rad pos: 25.5,19.5 parent: 2 type: Transform - - uid: 30144 + - uid: 30151 components: - rot: 3.141592653589793 rad pos: 24.5,19.5 parent: 2 type: Transform - - uid: 30145 + - uid: 30152 components: - rot: 1.5707963267948966 rad pos: 30.5,28.5 parent: 2 type: Transform - - uid: 30146 + - uid: 30153 components: - rot: 1.5707963267948966 rad pos: 30.5,30.5 parent: 2 type: Transform - - uid: 30147 + - uid: 30154 components: - rot: -1.5707963267948966 rad pos: 28.5,30.5 parent: 2 type: Transform - - uid: 30148 + - uid: 30155 components: - rot: 3.141592653589793 rad pos: 26.5,19.5 parent: 2 type: Transform - - uid: 30149 + - uid: 30156 components: - rot: -1.5707963267948966 rad pos: 28.5,28.5 parent: 2 type: Transform - - uid: 30150 + - uid: 30157 components: - rot: 3.141592653589793 rad pos: 29.5,30.5 @@ -217822,29 +202950,29 @@ entities: type: Transform - proto: WindoorBarLocked entities: - - uid: 30151 + - uid: 30158 components: - pos: 18.5,15.5 parent: 2 type: Transform - - uid: 30152 + - uid: 30159 components: - pos: 17.5,15.5 parent: 2 type: Transform - - uid: 30153 + - uid: 30160 components: - rot: 1.5707963267948966 rad pos: 15.5,14.5 parent: 2 type: Transform - - uid: 30154 + - uid: 30161 components: - rot: 1.5707963267948966 rad pos: -39.5,-75.5 parent: 2 type: Transform - - uid: 30155 + - uid: 30162 components: - rot: -1.5707963267948966 rad pos: -44.5,-75.5 @@ -217852,19 +202980,19 @@ entities: type: Transform - proto: WindoorChemistryLocked entities: - - uid: 30156 + - uid: 30163 components: - rot: 1.5707963267948966 rad pos: 1.5,-48.5 parent: 2 type: Transform - - uid: 30157 + - uid: 30164 components: - rot: 1.5707963267948966 rad pos: 1.5,-46.5 parent: 2 type: Transform - - uid: 30158 + - uid: 30165 components: - rot: 3.141592653589793 rad pos: 3.5,-51.5 @@ -217872,13 +203000,13 @@ entities: type: Transform - proto: WindoorEngineeringLocked entities: - - uid: 30159 + - uid: 30166 components: - rot: -1.5707963267948966 rad pos: -26.5,-12.5 parent: 2 type: Transform - - uid: 30160 + - uid: 30167 components: - rot: -1.5707963267948966 rad pos: -21.5,-34.5 @@ -217886,7 +203014,7 @@ entities: type: Transform - proto: WindoorHeadOfPersonnelLocked entities: - - uid: 30161 + - uid: 30168 components: - rot: 3.141592653589793 rad pos: 28.5,-38.5 @@ -217894,74 +203022,74 @@ entities: type: Transform - proto: WindoorMedicalLocked entities: - - uid: 30162 + - uid: 30169 components: - rot: -1.5707963267948966 rad pos: -17.5,-79.5 parent: 2 type: Transform - - uid: 30163 + - uid: 30170 components: - rot: -1.5707963267948966 rad pos: -16.5,-78.5 parent: 2 type: Transform - - uid: 30164 + - uid: 30171 components: - rot: -1.5707963267948966 rad pos: -16.5,-76.5 parent: 2 type: Transform - - uid: 30165 + - uid: 30172 components: - rot: 1.5707963267948966 rad pos: -28.5,-77.5 parent: 2 type: Transform - - uid: 30166 + - uid: 30173 components: - rot: -1.5707963267948966 rad pos: -17.5,-75.5 parent: 2 type: Transform - - uid: 30167 + - uid: 30174 components: - rot: 1.5707963267948966 rad pos: -28.5,-79.5 parent: 2 type: Transform - - uid: 30168 + - uid: 30175 components: - rot: 3.141592653589793 rad pos: -20.5,-88.5 parent: 2 type: Transform - - uid: 30169 + - uid: 30176 components: - rot: 3.141592653589793 rad pos: -25.5,-88.5 parent: 2 type: Transform - - uid: 30170 + - uid: 30177 components: - rot: -1.5707963267948966 rad pos: 48.5,6.5 parent: 2 type: Transform - - uid: 30171 + - uid: 30178 components: - pos: 3.5,-51.5 parent: 2 type: Transform - proto: WindoorScienceLocked entities: - - uid: 30172 + - uid: 30179 components: - rot: 3.141592653589793 rad pos: 42.5,-40.5 parent: 2 type: Transform - - uid: 30173 + - uid: 30180 components: - rot: 3.141592653589793 rad pos: 43.5,-40.5 @@ -217969,83 +203097,83 @@ entities: type: Transform - proto: WindoorSecure entities: - - uid: 30174 + - uid: 30181 components: - pos: 17.5,-53.5 parent: 2 type: Transform - - uid: 30175 + - uid: 30182 components: - pos: -13.5,-9.5 parent: 2 type: Transform - - uid: 30176 + - uid: 30183 components: - pos: 28.5,-38.5 parent: 2 type: Transform - - uid: 30177 + - uid: 30184 components: - pos: 59.5,22.5 parent: 2 type: Transform - - uid: 30178 + - uid: 30185 components: - pos: 56.5,22.5 parent: 2 type: Transform - - uid: 30179 + - uid: 30186 components: - pos: 53.5,22.5 parent: 2 type: Transform - - uid: 30180 + - uid: 30187 components: - pos: 50.5,22.5 parent: 2 type: Transform - - uid: 30181 + - uid: 30188 components: - pos: 47.5,22.5 parent: 2 type: Transform - - uid: 30182 + - uid: 30189 components: - rot: -1.5707963267948966 rad pos: 60.5,18.5 parent: 2 type: Transform - - uid: 30183 + - uid: 30190 components: - rot: -1.5707963267948966 rad pos: 60.5,15.5 parent: 2 type: Transform - - uid: 30184 + - uid: 30191 components: - rot: 1.5707963267948966 rad pos: 59.5,-34.5 parent: 2 type: Transform - - uid: 30185 + - uid: 30192 components: - rot: 1.5707963267948966 rad pos: 59.5,-33.5 parent: 2 type: Transform - - uid: 30186 + - uid: 30193 components: - rot: 1.5707963267948966 rad pos: -39.5,-83.5 parent: 2 type: Transform - - uid: 30187 + - uid: 30194 components: - rot: -1.5707963267948966 rad pos: -34.5,14.5 parent: 2 type: Transform - - uid: 30188 + - uid: 30195 components: - rot: 3.141592653589793 rad pos: 71.5,-47.5 @@ -218053,7 +203181,7 @@ entities: type: Transform - proto: WindoorSecureCargoLocked entities: - - uid: 30189 + - uid: 30196 components: - rot: -1.5707963267948966 rad pos: -26.5,22.5 @@ -218061,13 +203189,13 @@ entities: type: Transform - proto: WindoorSecurityLocked entities: - - uid: 30190 + - uid: 30197 components: - rot: 1.5707963267948966 rad pos: 42.5,6.5 parent: 2 type: Transform - - uid: 30191 + - uid: 30198 components: - rot: 3.141592653589793 rad pos: 29.5,13.5 @@ -218076,16 +203204,16 @@ entities: - inputs: Open: - port: Timer - uid: 2231 + uid: 2232 Close: - port: Start - uid: 2231 + uid: 2232 Toggle: [] AutoClose: - port: Timer - uid: 2231 + uid: 2232 type: SignalReceiver - - uid: 30192 + - uid: 30199 components: - rot: 1.5707963267948966 rad pos: 39.5,7.5 @@ -218094,34 +203222,34 @@ entities: - inputs: Open: - port: Timer - uid: 2233 + uid: 2234 Close: - port: Start - uid: 2233 + uid: 2234 Toggle: [] AutoClose: - port: Timer - uid: 2233 + uid: 2234 type: SignalReceiver - - uid: 30193 + - uid: 30200 components: - rot: 3.141592653589793 rad pos: 5.5,11.5 parent: 2 type: Transform - - uid: 30194 + - uid: 30201 components: - rot: -1.5707963267948966 rad pos: 5.5,-56.5 parent: 2 type: Transform - - uid: 30195 + - uid: 30202 components: - rot: 3.141592653589793 rad pos: 4.5,11.5 parent: 2 type: Transform - - uid: 30196 + - uid: 30203 components: - rot: 3.141592653589793 rad pos: 32.5,13.5 @@ -218130,16 +203258,16 @@ entities: - inputs: Open: - port: Timer - uid: 2232 + uid: 2233 Close: - port: Start - uid: 2232 + uid: 2233 Toggle: [] AutoClose: - port: Timer - uid: 2232 + uid: 2233 type: SignalReceiver - - uid: 30197 + - uid: 30204 components: - rot: 1.5707963267948966 rad pos: 39.5,4.5 @@ -218148,22 +203276,22 @@ entities: - inputs: Open: - port: Timer - uid: 2234 + uid: 2235 Close: - port: Start - uid: 2234 + uid: 2235 Toggle: [] AutoClose: - port: Timer - uid: 2234 + uid: 2235 type: SignalReceiver - - uid: 30198 + - uid: 30205 components: - rot: 3.141592653589793 rad pos: 17.5,15.5 parent: 2 type: Transform - - uid: 30199 + - uid: 30206 components: - rot: 3.141592653589793 rad pos: 35.5,13.5 @@ -218172,49 +203300,49 @@ entities: - inputs: Open: - port: Timer - uid: 2230 + uid: 2231 Close: - port: Start - uid: 2230 + uid: 2231 Toggle: [] AutoClose: - port: Timer - uid: 2230 + uid: 2231 type: SignalReceiver - - uid: 30200 + - uid: 30207 components: - rot: 3.141592653589793 rad pos: 18.5,15.5 parent: 2 type: Transform - - uid: 30201 + - uid: 30208 components: - pos: 21.5,-44.5 parent: 2 type: Transform - - uid: 30202 + - uid: 30209 components: - pos: 22.5,-44.5 parent: 2 type: Transform - - uid: 30203 + - uid: 30210 components: - rot: 1.5707963267948966 rad pos: -17.5,-22.5 parent: 2 type: Transform - - uid: 30204 + - uid: 30211 components: - rot: 1.5707963267948966 rad pos: -17.5,-23.5 parent: 2 type: Transform - - uid: 30205 + - uid: 30212 components: - pos: 31.5,-52.5 parent: 2 type: Transform - - uid: 30206 + - uid: 30213 components: - rot: 1.5707963267948966 rad pos: -17.5,25.5 @@ -218222,7 +203350,7 @@ entities: type: Transform - proto: WindoorTheatreLocked entities: - - uid: 30207 + - uid: 30214 components: - rot: 3.141592653589793 rad pos: 9.5,-0.5 @@ -218230,804 +203358,804 @@ entities: type: Transform - proto: Window entities: - - uid: 30208 + - uid: 30215 components: - pos: 27.5,-55.5 parent: 2 type: Transform - - uid: 30209 + - uid: 30216 components: - pos: 27.5,-54.5 parent: 2 type: Transform - - uid: 30210 + - uid: 30217 components: - rot: 3.141592653589793 rad pos: -20.5,65.5 parent: 2 type: Transform - - uid: 30211 + - uid: 30218 components: - rot: 3.141592653589793 rad pos: -20.5,67.5 parent: 2 type: Transform - - uid: 30212 + - uid: 30219 components: - rot: 3.141592653589793 rad pos: -14.5,67.5 parent: 2 type: Transform - - uid: 30213 + - uid: 30220 components: - pos: -13.5,-57.5 parent: 2 type: Transform - - uid: 30214 + - uid: 30221 components: - pos: -9.5,-58.5 parent: 2 type: Transform - - uid: 30215 + - uid: 30222 components: - pos: -4.5,-56.5 parent: 2 type: Transform - - uid: 30216 + - uid: 30223 components: - rot: -1.5707963267948966 rad pos: 22.5,5.5 parent: 2 type: Transform - - uid: 30217 + - uid: 30224 components: - pos: -21.5,-13.5 parent: 2 type: Transform - - uid: 30218 + - uid: 30225 components: - pos: -9.5,-40.5 parent: 2 type: Transform - - uid: 30219 + - uid: 30226 components: - rot: -1.5707963267948966 rad pos: 19.5,-1.5 parent: 2 type: Transform - - uid: 30220 + - uid: 30227 components: - rot: 1.5707963267948966 rad pos: -2.5,-4.5 parent: 2 type: Transform - - uid: 30221 + - uid: 30228 components: - pos: -14.5,-44.5 parent: 2 type: Transform - - uid: 30222 + - uid: 30229 components: - pos: -1.5,-56.5 parent: 2 type: Transform - - uid: 30223 + - uid: 30230 components: - pos: 39.5,-0.5 parent: 2 type: Transform - - uid: 30224 + - uid: 30231 components: - pos: -12.5,-58.5 parent: 2 type: Transform - - uid: 30225 + - uid: 30232 components: - pos: -6.5,-55.5 parent: 2 type: Transform - - uid: 30226 + - uid: 30233 components: - pos: -0.5,-62.5 parent: 2 type: Transform - - uid: 30227 + - uid: 30234 components: - pos: 1.5,-56.5 parent: 2 type: Transform - - uid: 30228 + - uid: 30235 components: - pos: -0.5,-58.5 parent: 2 type: Transform - - uid: 30229 + - uid: 30236 components: - pos: -3.5,-58.5 parent: 2 type: Transform - - uid: 30230 + - uid: 30237 components: - pos: 3.5,-2.5 parent: 2 type: Transform - - uid: 30231 + - uid: 30238 components: - pos: 24.5,-40.5 parent: 2 type: Transform - - uid: 30232 + - uid: 30239 components: - pos: 30.5,-57.5 parent: 2 type: Transform - - uid: 30233 + - uid: 30240 components: - pos: 29.5,-57.5 parent: 2 type: Transform - - uid: 30234 + - uid: 30241 components: - pos: 33.5,-57.5 parent: 2 type: Transform - - uid: 30235 + - uid: 30242 components: - rot: -1.5707963267948966 rad pos: 19.5,0.5 parent: 2 type: Transform - - uid: 30236 + - uid: 30243 components: - rot: -1.5707963267948966 rad pos: 26.5,-3.5 parent: 2 type: Transform - - uid: 30237 + - uid: 30244 components: - rot: -1.5707963267948966 rad pos: 23.5,-3.5 parent: 2 type: Transform - - uid: 30238 + - uid: 30245 components: - rot: -1.5707963267948966 rad pos: 22.5,-3.5 parent: 2 type: Transform - - uid: 30239 + - uid: 30246 components: - pos: 35.5,-5.5 parent: 2 type: Transform - - uid: 30240 + - uid: 30247 components: - pos: -21.5,11.5 parent: 2 type: Transform - - uid: 30241 + - uid: 30248 components: - pos: -21.5,12.5 parent: 2 type: Transform - - uid: 30242 + - uid: 30249 components: - pos: 27.5,-40.5 parent: 2 type: Transform - - uid: 30243 + - uid: 30250 components: - pos: 23.5,-40.5 parent: 2 type: Transform - - uid: 30244 + - uid: 30251 components: - pos: -21.5,-10.5 parent: 2 type: Transform - - uid: 30245 + - uid: 30252 components: - pos: -21.5,-14.5 parent: 2 type: Transform - - uid: 30246 + - uid: 30253 components: - pos: 35.5,-1.5 parent: 2 type: Transform - - uid: 30247 + - uid: 30254 components: - pos: 35.5,-2.5 parent: 2 type: Transform - - uid: 30248 + - uid: 30255 components: - rot: 1.5707963267948966 rad pos: -2.5,-5.5 parent: 2 type: Transform - - uid: 30249 + - uid: 30256 components: - pos: -21.5,-9.5 parent: 2 type: Transform - - uid: 30250 + - uid: 30257 components: - pos: -5.5,-44.5 parent: 2 type: Transform - - uid: 30251 + - uid: 30258 components: - pos: -11.5,-40.5 parent: 2 type: Transform - - uid: 30252 + - uid: 30259 components: - pos: -10.5,-40.5 parent: 2 type: Transform - - uid: 30253 + - uid: 30260 components: - pos: 0.5,-62.5 parent: 2 type: Transform - - uid: 30254 + - uid: 30261 components: - pos: 1.5,-57.5 parent: 2 type: Transform - - uid: 30255 + - uid: 30262 components: - pos: -0.5,-55.5 parent: 2 type: Transform - - uid: 30256 + - uid: 30263 components: - pos: 2.5,-55.5 parent: 2 type: Transform - - uid: 30257 + - uid: 30264 components: - pos: 2.5,-62.5 parent: 2 type: Transform - - uid: 30258 + - uid: 30265 components: - pos: -9.5,-62.5 parent: 2 type: Transform - - uid: 30259 + - uid: 30266 components: - pos: -3.5,-55.5 parent: 2 type: Transform - - uid: 30260 + - uid: 30267 components: - pos: -9.5,-55.5 parent: 2 type: Transform - - uid: 30261 + - uid: 30268 components: - pos: 2.5,-58.5 parent: 2 type: Transform - - uid: 30262 + - uid: 30269 components: - pos: 4.5,-62.5 parent: 2 type: Transform - - uid: 30263 + - uid: 30270 components: - pos: -8.5,-62.5 parent: 2 type: Transform - - uid: 30264 + - uid: 30271 components: - pos: -10.5,-56.5 parent: 2 type: Transform - - uid: 30265 + - uid: 30272 components: - pos: -10.5,-57.5 parent: 2 type: Transform - - uid: 30266 + - uid: 30273 components: - pos: -21.5,-61.5 parent: 2 type: Transform - - uid: 30267 + - uid: 30274 components: - pos: -21.5,-59.5 parent: 2 type: Transform - - uid: 30268 + - uid: 30275 components: - pos: -12.5,-44.5 parent: 2 type: Transform - - uid: 30269 + - uid: 30276 components: - pos: -12.5,-55.5 parent: 2 type: Transform - - uid: 30270 + - uid: 30277 components: - pos: -6.5,-36.5 parent: 2 type: Transform - - uid: 30271 + - uid: 30278 components: - pos: -25.5,9.5 parent: 2 type: Transform - - uid: 30272 + - uid: 30279 components: - pos: -3.5,-44.5 parent: 2 type: Transform - - uid: 30273 + - uid: 30280 components: - rot: -1.5707963267948966 rad pos: 19.5,-0.5 parent: 2 type: Transform - - uid: 30274 + - uid: 30281 components: - rot: -1.5707963267948966 rad pos: 25.5,5.5 parent: 2 type: Transform - - uid: 30275 + - uid: 30282 components: - rot: -1.5707963267948966 rad pos: 27.5,-3.5 parent: 2 type: Transform - - uid: 30276 + - uid: 30283 components: - rot: -1.5707963267948966 rad pos: 21.5,-3.5 parent: 2 type: Transform - - uid: 30277 + - uid: 30284 components: - pos: 25.5,-40.5 parent: 2 type: Transform - - uid: 30278 + - uid: 30285 components: - pos: -4.5,-44.5 parent: 2 type: Transform - - uid: 30279 + - uid: 30286 components: - pos: -1.5,-57.5 parent: 2 type: Transform - - uid: 30280 + - uid: 30287 components: - pos: -4.5,-57.5 parent: 2 type: Transform - - uid: 30281 + - uid: 30288 components: - pos: -7.5,-57.5 parent: 2 type: Transform - - uid: 30282 + - uid: 30289 components: - pos: -13.5,-44.5 parent: 2 type: Transform - - uid: 30283 + - uid: 30290 components: - pos: -6.5,-38.5 parent: 2 type: Transform - - uid: 30284 + - uid: 30291 components: - pos: -10.5,-16.5 parent: 2 type: Transform - - uid: 30285 + - uid: 30292 components: - pos: 42.5,-0.5 parent: 2 type: Transform - - uid: 30286 + - uid: 30293 components: - pos: -21.5,-20.5 parent: 2 type: Transform - - uid: 30287 + - uid: 30294 components: - rot: -1.5707963267948966 rad pos: 21.5,5.5 parent: 2 type: Transform - - uid: 30288 + - uid: 30295 components: - rot: -1.5707963267948966 rad pos: 26.5,5.5 parent: 2 type: Transform - - uid: 30289 + - uid: 30296 components: - rot: -1.5707963267948966 rad pos: 23.5,5.5 parent: 2 type: Transform - - uid: 30290 + - uid: 30297 components: - rot: -1.5707963267948966 rad pos: 25.5,-3.5 parent: 2 type: Transform - - uid: 30291 + - uid: 30298 components: - pos: -12.5,43.5 parent: 2 type: Transform - - uid: 30292 + - uid: 30299 components: - pos: 37.5,-0.5 parent: 2 type: Transform - - uid: 30293 + - uid: 30300 components: - rot: 3.141592653589793 rad pos: -20.5,-68.5 parent: 2 type: Transform - - uid: 30294 + - uid: 30301 components: - rot: 3.141592653589793 rad pos: -18.5,-68.5 parent: 2 type: Transform - - uid: 30295 + - uid: 30302 components: - rot: -1.5707963267948966 rad pos: 19.5,3.5 parent: 2 type: Transform - - uid: 30296 + - uid: 30303 components: - rot: -1.5707963267948966 rad pos: 19.5,2.5 parent: 2 type: Transform - - uid: 30297 + - uid: 30304 components: - pos: -6.5,-58.5 parent: 2 type: Transform - - uid: 30298 + - uid: 30305 components: - pos: -6.5,-37.5 parent: 2 type: Transform - - uid: 30299 + - uid: 30306 components: - pos: -7.5,-56.5 parent: 2 type: Transform - - uid: 30300 + - uid: 30307 components: - pos: 41.5,-0.5 parent: 2 type: Transform - - uid: 30301 + - uid: 30308 components: - pos: -13.5,-56.5 parent: 2 type: Transform - - uid: 30302 + - uid: 30309 components: - rot: -1.5707963267948966 rad pos: 19.5,1.5 parent: 2 type: Transform - - uid: 30303 + - uid: 30310 components: - rot: -1.5707963267948966 rad pos: 27.5,5.5 parent: 2 type: Transform - - uid: 30304 + - uid: 30311 components: - pos: 43.5,-0.5 parent: 2 type: Transform - - uid: 30305 + - uid: 30312 components: - pos: -21.5,-22.5 parent: 2 type: Transform - - uid: 30306 + - uid: 30313 components: - pos: 32.5,-57.5 parent: 2 type: Transform - - uid: 30307 + - uid: 30314 components: - pos: -12.5,14.5 parent: 2 type: Transform - - uid: 30308 + - uid: 30315 components: - pos: -23.5,9.5 parent: 2 type: Transform - - uid: 30309 + - uid: 30316 components: - pos: -22.5,9.5 parent: 2 type: Transform - - uid: 30310 + - uid: 30317 components: - pos: -8.5,43.5 parent: 2 type: Transform - - uid: 30311 + - uid: 30318 components: - pos: 35.5,-4.5 parent: 2 type: Transform - - uid: 30312 + - uid: 30319 components: - pos: -12.5,-16.5 parent: 2 type: Transform - - uid: 30313 + - uid: 30320 components: - pos: 43.5,-12.5 parent: 2 type: Transform - - uid: 30314 + - uid: 30321 components: - pos: 42.5,-44.5 parent: 2 type: Transform - - uid: 30315 + - uid: 30322 components: - pos: 43.5,-44.5 parent: 2 type: Transform - - uid: 30316 + - uid: 30323 components: - pos: 44.5,-44.5 parent: 2 type: Transform - - uid: 30317 + - uid: 30324 components: - pos: 27.5,-51.5 parent: 2 type: Transform - - uid: 30318 + - uid: 30325 components: - pos: 27.5,-47.5 parent: 2 type: Transform - - uid: 30319 + - uid: 30326 components: - pos: -19.5,0.5 parent: 2 type: Transform - - uid: 30320 + - uid: 30327 components: - pos: -17.5,0.5 parent: 2 type: Transform - - uid: 30321 + - uid: 30328 components: - pos: -16.5,0.5 parent: 2 type: Transform - - uid: 30322 + - uid: 30329 components: - rot: -1.5707963267948966 rad pos: -24.5,-18.5 parent: 2 type: Transform - - uid: 30323 + - uid: 30330 components: - pos: 38.5,-57.5 parent: 2 type: Transform - - uid: 30324 + - uid: 30331 components: - pos: 40.5,-57.5 parent: 2 type: Transform - - uid: 30325 + - uid: 30332 components: - rot: -1.5707963267948966 rad pos: -25.5,-18.5 parent: 2 type: Transform - - uid: 30326 + - uid: 30333 components: - pos: 5.5,-58.5 parent: 2 type: Transform - - uid: 30327 + - uid: 30334 components: - rot: 1.5707963267948966 rad pos: -66.5,-29.5 parent: 2 type: Transform - - uid: 30328 + - uid: 30335 components: - rot: -1.5707963267948966 rad pos: -28.5,-47.5 parent: 2 type: Transform - - uid: 30329 + - uid: 30336 components: - rot: 1.5707963267948966 rad pos: -48.5,-74.5 parent: 2 type: Transform - - uid: 30330 + - uid: 30337 components: - pos: -38.5,-63.5 parent: 2 type: Transform - - uid: 30331 + - uid: 30338 components: - pos: -38.5,-65.5 parent: 2 type: Transform - - uid: 30332 + - uid: 30339 components: - pos: -21.5,24.5 parent: 2 type: Transform - - uid: 30333 + - uid: 30340 components: - pos: -21.5,23.5 parent: 2 type: Transform - - uid: 30334 + - uid: 30341 components: - pos: -34.5,2.5 parent: 2 type: Transform - - uid: 30335 + - uid: 30342 components: - pos: -26.5,9.5 parent: 2 type: Transform - - uid: 30336 + - uid: 30343 components: - pos: -36.5,2.5 parent: 2 type: Transform - - uid: 30337 + - uid: 30344 components: - pos: -36.5,7.5 parent: 2 type: Transform - - uid: 30338 + - uid: 30345 components: - pos: -39.5,2.5 parent: 2 type: Transform - - uid: 30339 + - uid: 30346 components: - pos: -35.5,2.5 parent: 2 type: Transform - - uid: 30340 + - uid: 30347 components: - pos: -39.5,7.5 parent: 2 type: Transform - - uid: 30341 + - uid: 30348 components: - pos: -41.5,2.5 parent: 2 type: Transform - - uid: 30342 + - uid: 30349 components: - pos: -40.5,2.5 parent: 2 type: Transform - - uid: 30343 + - uid: 30350 components: - rot: 1.5707963267948966 rad pos: -52.5,-0.5 parent: 2 type: Transform - - uid: 30344 + - uid: 30351 components: - pos: 26.5,-40.5 parent: 2 type: Transform - - uid: 30345 + - uid: 30352 components: - pos: -30.5,-72.5 parent: 2 type: Transform - - uid: 30346 + - uid: 30353 components: - pos: -14.5,65.5 parent: 2 type: Transform - - uid: 30347 + - uid: 30354 components: - pos: -14.5,62.5 parent: 2 type: Transform - - uid: 30348 + - uid: 30355 components: - pos: -3.5,47.5 parent: 2 type: Transform - - uid: 30349 + - uid: 30356 components: - pos: -1.5,49.5 parent: 2 type: Transform - - uid: 30350 + - uid: 30357 components: - pos: -5.5,47.5 parent: 2 type: Transform - - uid: 30351 + - uid: 30358 components: - rot: 3.141592653589793 rad pos: -19.5,44.5 parent: 2 type: Transform - - uid: 30352 + - uid: 30359 components: - pos: -7.5,57.5 parent: 2 type: Transform - - uid: 30353 + - uid: 30360 components: - pos: -5.5,57.5 parent: 2 type: Transform - - uid: 30354 + - uid: 30361 components: - pos: 2.5,47.5 parent: 2 type: Transform - - uid: 30355 + - uid: 30362 components: - pos: 2.5,50.5 parent: 2 type: Transform - - uid: 30356 + - uid: 30363 components: - pos: 2.5,51.5 parent: 2 type: Transform - - uid: 30357 + - uid: 30364 components: - pos: -1.5,50.5 parent: 2 type: Transform - - uid: 30358 + - uid: 30365 components: - pos: -11.5,51.5 parent: 2 type: Transform - - uid: 30359 + - uid: 30366 components: - pos: -11.5,53.5 parent: 2 type: Transform - - uid: 30360 + - uid: 30367 components: - pos: -20.5,62.5 parent: 2 type: Transform - - uid: 30361 + - uid: 30368 components: - rot: 3.141592653589793 rad pos: -28.5,-72.5 @@ -219035,119 +204163,119 @@ entities: type: Transform - proto: WindowDirectional entities: - - uid: 30362 + - uid: 30369 components: - rot: -1.5707963267948966 rad pos: 10.5,0.5 parent: 2 type: Transform - - uid: 30363 + - uid: 30370 components: - rot: 1.5707963267948966 rad pos: 7.5,1.5 parent: 2 type: Transform - - uid: 30364 + - uid: 30371 components: - pos: 8.5,2.5 parent: 2 type: Transform - - uid: 30365 + - uid: 30372 components: - rot: -1.5707963267948966 rad pos: 10.5,1.5 parent: 2 type: Transform - - uid: 30366 + - uid: 30373 components: - rot: -1.5707963267948966 rad pos: 5.5,-57.5 parent: 2 type: Transform - - uid: 30367 + - uid: 30374 components: - pos: 9.5,2.5 parent: 2 type: Transform - - uid: 30368 + - uid: 30375 components: - rot: 3.141592653589793 rad pos: 8.5,-0.5 parent: 2 type: Transform - - uid: 30369 + - uid: 30376 components: - rot: 1.5707963267948966 rad pos: 7.5,0.5 parent: 2 type: Transform - - uid: 30370 + - uid: 30377 components: - rot: 1.5707963267948966 rad pos: 59.5,-35.5 parent: 2 type: Transform - - uid: 30371 + - uid: 30378 components: - rot: -1.5707963267948966 rad pos: 74.5,-49.5 parent: 2 type: Transform - - uid: 30372 + - uid: 30379 components: - rot: -1.5707963267948966 rad pos: 74.5,-47.5 parent: 2 type: Transform - - uid: 30373 + - uid: 30380 components: - rot: 1.5707963267948966 rad pos: 68.5,-47.5 parent: 2 type: Transform - - uid: 30374 + - uid: 30381 components: - rot: 1.5707963267948966 rad pos: 68.5,-49.5 parent: 2 type: Transform - - uid: 30375 + - uid: 30382 components: - rot: 1.5707963267948966 rad pos: 59.5,-32.5 parent: 2 type: Transform - - uid: 30376 + - uid: 30383 components: - rot: 1.5707963267948966 rad pos: 68.5,-48.5 parent: 2 type: Transform - - uid: 30377 + - uid: 30384 components: - rot: -1.5707963267948966 rad pos: 74.5,-48.5 parent: 2 type: Transform - - uid: 30378 + - uid: 30385 components: - rot: 3.141592653589793 rad pos: 69.5,-47.5 parent: 2 type: Transform - - uid: 30379 + - uid: 30386 components: - rot: 3.141592653589793 rad pos: 70.5,-47.5 parent: 2 type: Transform - - uid: 30380 + - uid: 30387 components: - rot: 3.141592653589793 rad pos: 73.5,-47.5 parent: 2 type: Transform - - uid: 30381 + - uid: 30388 components: - rot: 3.141592653589793 rad pos: 72.5,-47.5 @@ -219155,1551 +204283,1551 @@ entities: type: Transform - proto: WindowReinforcedDirectional entities: - - uid: 30382 + - uid: 30389 components: - rot: -1.5707963267948966 rad pos: -11.5,7.5 parent: 2 type: Transform - - uid: 30383 + - uid: 30390 components: - pos: 16.5,-53.5 parent: 2 type: Transform - - uid: 30384 + - uid: 30391 components: - pos: -11.5,6.5 parent: 2 type: Transform - - uid: 30385 + - uid: 30392 components: - pos: 15.5,-53.5 parent: 2 type: Transform - - uid: 30386 + - uid: 30393 components: - rot: 3.141592653589793 rad pos: -11.5,7.5 parent: 2 type: Transform - - uid: 30387 + - uid: 30394 components: - rot: -1.5707963267948966 rad pos: -11.5,6.5 parent: 2 type: Transform - - uid: 30388 + - uid: 30395 components: - rot: 1.5707963267948966 rad pos: -11.5,6.5 parent: 2 type: Transform - - uid: 30389 + - uid: 30396 components: - rot: 1.5707963267948966 rad pos: -11.5,7.5 parent: 2 type: Transform - - uid: 30390 + - uid: 30397 components: - pos: -28.5,-78.5 parent: 2 type: Transform - - uid: 30391 + - uid: 30398 components: - rot: -1.5707963267948966 rad pos: 22.5,-21.5 parent: 2 type: Transform - - uid: 30392 + - uid: 30399 components: - rot: -1.5707963267948966 rad pos: -16.5,-75.5 parent: 2 type: Transform - - uid: 30393 + - uid: 30400 components: - rot: 1.5707963267948966 rad pos: -23.5,-88.5 parent: 2 type: Transform - - uid: 30394 + - uid: 30401 components: - pos: -17.5,-76.5 parent: 2 type: Transform - - uid: 30395 + - uid: 30402 components: - pos: -30.5,-78.5 parent: 2 type: Transform - - uid: 30396 + - uid: 30403 components: - rot: 1.5707963267948966 rad pos: -28.5,-80.5 parent: 2 type: Transform - - uid: 30397 + - uid: 30404 components: - rot: 1.5707963267948966 rad pos: -23.5,-90.5 parent: 2 type: Transform - - uid: 30398 + - uid: 30405 components: - pos: -4.5,4.5 parent: 2 type: Transform - - uid: 30399 + - uid: 30406 components: - rot: -1.5707963267948966 rad pos: 28.5,-21.5 parent: 2 type: Transform - - uid: 30400 + - uid: 30407 components: - rot: 1.5707963267948966 rad pos: 24.5,-21.5 parent: 2 type: Transform - - uid: 30401 + - uid: 30408 components: - rot: 1.5707963267948966 rad pos: 26.5,-21.5 parent: 2 type: Transform - - uid: 30402 + - uid: 30409 components: - rot: -1.5707963267948966 rad pos: 26.5,-21.5 parent: 2 type: Transform - - uid: 30403 + - uid: 30410 components: - pos: 49.5,22.5 parent: 2 type: Transform - - uid: 30404 + - uid: 30411 components: - pos: 25.5,-23.5 parent: 2 type: Transform - - uid: 30405 + - uid: 30412 components: - rot: 3.141592653589793 rad pos: 26.5,28.5 parent: 2 type: Transform - - uid: 30406 + - uid: 30413 components: - rot: 1.5707963267948966 rad pos: 30.5,29.5 parent: 2 type: Transform - - uid: 30407 + - uid: 30414 components: - rot: 3.141592653589793 rad pos: 32.5,28.5 parent: 2 type: Transform - - uid: 30408 + - uid: 30415 components: - rot: 3.141592653589793 rad pos: 27.5,28.5 parent: 2 type: Transform - - uid: 30409 + - uid: 30416 components: - rot: -1.5707963267948966 rad pos: -17.5,-78.5 parent: 2 type: Transform - - uid: 30410 + - uid: 30417 components: - pos: -11.5,-9.5 parent: 2 type: Transform - - uid: 30411 + - uid: 30418 components: - rot: -1.5707963267948966 rad pos: 19.5,-54.5 parent: 2 type: Transform - - uid: 30412 + - uid: 30419 components: - pos: 58.5,22.5 parent: 2 type: Transform - - uid: 30413 + - uid: 30420 components: - pos: 52.5,22.5 parent: 2 type: Transform - - uid: 30414 + - uid: 30421 components: - pos: 55.5,22.5 parent: 2 type: Transform - - uid: 30415 + - uid: 30422 components: - rot: -1.5707963267948966 rad pos: 28.5,29.5 parent: 2 type: Transform - - uid: 30416 + - uid: 30423 components: - rot: 3.141592653589793 rad pos: 26.5,30.5 parent: 2 type: Transform - - uid: 30417 + - uid: 30424 components: - rot: 3.141592653589793 rad pos: -17.5,-78.5 parent: 2 type: Transform - - uid: 30418 + - uid: 30425 components: - rot: -1.5707963267948966 rad pos: -17.5,-76.5 parent: 2 type: Transform - - uid: 30419 + - uid: 30426 components: - rot: -1.5707963267948966 rad pos: -16.5,-79.5 parent: 2 type: Transform - - uid: 30420 + - uid: 30427 components: - rot: 1.5707963267948966 rad pos: -28.5,-78.5 parent: 2 type: Transform - - uid: 30421 + - uid: 30428 components: - rot: 3.141592653589793 rad pos: -26.5,-88.5 parent: 2 type: Transform - - uid: 30422 + - uid: 30429 components: - rot: 3.141592653589793 rad pos: -23.5,-88.5 parent: 2 type: Transform - - uid: 30423 + - uid: 30430 components: - rot: 3.141592653589793 rad pos: -21.5,-88.5 parent: 2 type: Transform - - uid: 30424 + - uid: 30431 components: - pos: 26.5,-23.5 parent: 2 type: Transform - - uid: 30425 + - uid: 30432 components: - rot: 3.141592653589793 rad pos: -24.5,-88.5 parent: 2 type: Transform - - uid: 30426 + - uid: 30433 components: - rot: -1.5707963267948966 rad pos: -22.5,-90.5 parent: 2 type: Transform - - uid: 30427 + - uid: 30434 components: - rot: -1.5707963267948966 rad pos: -22.5,-88.5 parent: 2 type: Transform - - uid: 30428 + - uid: 30435 components: - rot: -1.5707963267948966 rad pos: 28.5,27.5 parent: 2 type: Transform - - uid: 30429 + - uid: 30436 components: - pos: -9.5,-81.5 parent: 2 type: Transform - - uid: 30430 + - uid: 30437 components: - rot: 3.141592653589793 rad pos: 31.5,30.5 parent: 2 type: Transform - - uid: 30431 + - uid: 30438 components: - rot: 3.141592653589793 rad pos: 27.5,30.5 parent: 2 type: Transform - - uid: 30432 + - uid: 30439 components: - rot: 3.141592653589793 rad pos: -8.5,21.5 parent: 2 type: Transform - - uid: 30433 + - uid: 30440 components: - rot: 3.141592653589793 rad pos: 32.5,30.5 parent: 2 type: Transform - - uid: 30434 + - uid: 30441 components: - rot: 1.5707963267948966 rad pos: 23.5,-24.5 parent: 2 type: Transform - - uid: 30435 + - uid: 30442 components: - rot: 3.141592653589793 rad pos: 31.5,28.5 parent: 2 type: Transform - - uid: 30436 + - uid: 30443 components: - rot: -1.5707963267948966 rad pos: -22.5,-89.5 parent: 2 type: Transform - - uid: 30437 + - uid: 30444 components: - rot: 1.5707963267948966 rad pos: -23.5,-89.5 parent: 2 type: Transform - - uid: 30438 + - uid: 30445 components: - pos: -29.5,-78.5 parent: 2 type: Transform - - uid: 30439 + - uid: 30446 components: - rot: 1.5707963267948966 rad pos: 30.5,27.5 parent: 2 type: Transform - - uid: 30440 + - uid: 30447 components: - rot: -1.5707963267948966 rad pos: 24.5,-21.5 parent: 2 type: Transform - - uid: 30441 + - uid: 30448 components: - rot: 1.5707963267948966 rad pos: 28.5,-21.5 parent: 2 type: Transform - - uid: 30442 + - uid: 30449 components: - pos: -3.5,4.5 parent: 2 type: Transform - - uid: 30443 + - uid: 30450 components: - rot: 1.5707963267948966 rad pos: 22.5,-21.5 parent: 2 type: Transform - - uid: 30444 + - uid: 30451 components: - rot: 1.5707963267948966 rad pos: -10.5,-82.5 parent: 2 type: Transform - - uid: 30445 + - uid: 30452 components: - rot: -1.5707963267948966 rad pos: 27.5,-24.5 parent: 2 type: Transform - - uid: 30446 + - uid: 30453 components: - pos: 24.5,-23.5 parent: 2 type: Transform - - uid: 30447 + - uid: 30454 components: - pos: 18.5,-53.5 parent: 2 type: Transform - - uid: 30448 + - uid: 30455 components: - pos: -14.5,-9.5 parent: 2 type: Transform - - uid: 30449 + - uid: 30456 components: - rot: 3.141592653589793 rad pos: -22.5,-88.5 parent: 2 type: Transform - - uid: 30450 + - uid: 30457 components: - rot: 3.141592653589793 rad pos: -19.5,-88.5 parent: 2 type: Transform - - uid: 30451 + - uid: 30458 components: - rot: -1.5707963267948966 rad pos: -10.5,-10.5 parent: 2 type: Transform - - uid: 30452 + - uid: 30459 components: - rot: 1.5707963267948966 rad pos: -15.5,-10.5 parent: 2 type: Transform - - uid: 30453 + - uid: 30460 components: - pos: -10.5,29.5 parent: 2 type: Transform - - uid: 30454 + - uid: 30461 components: - pos: -9.5,29.5 parent: 2 type: Transform - - uid: 30455 + - uid: 30462 components: - pos: 46.5,22.5 parent: 2 type: Transform - - uid: 30456 + - uid: 30463 components: - rot: -1.5707963267948966 rad pos: 60.5,19.5 parent: 2 type: Transform - - uid: 30457 + - uid: 30464 components: - rot: -1.5707963267948966 rad pos: 60.5,16.5 parent: 2 type: Transform - - uid: 30458 + - uid: 30465 components: - pos: -10.5,-82.5 parent: 2 type: Transform - - uid: 30459 + - uid: 30466 components: - pos: 30.5,-52.5 parent: 2 type: Transform - - uid: 30460 + - uid: 30467 components: - pos: 29.5,-52.5 parent: 2 type: Transform - - uid: 30461 + - uid: 30468 components: - pos: 28.5,-52.5 parent: 2 type: Transform - - uid: 30462 + - uid: 30469 components: - pos: 32.5,-52.5 parent: 2 type: Transform - - uid: 30463 + - uid: 30470 components: - pos: 33.5,-52.5 parent: 2 type: Transform - - uid: 30464 + - uid: 30471 components: - pos: 34.5,-52.5 parent: 2 type: Transform - - uid: 30465 + - uid: 30472 components: - rot: 1.5707963267948966 rad pos: 32.5,-47.5 parent: 2 type: Transform - - uid: 30466 + - uid: 30473 components: - rot: 1.5707963267948966 rad pos: 32.5,-48.5 parent: 2 type: Transform - - uid: 30467 + - uid: 30474 components: - pos: 33.5,-48.5 parent: 2 type: Transform - - uid: 30468 + - uid: 30475 components: - pos: 34.5,-48.5 parent: 2 type: Transform - - uid: 30469 + - uid: 30476 components: - rot: 1.5707963267948966 rad pos: 34.5,-48.5 parent: 2 type: Transform - - uid: 30470 + - uid: 30477 components: - rot: 1.5707963267948966 rad pos: 34.5,-47.5 parent: 2 type: Transform - - uid: 30471 + - uid: 30478 components: - rot: 1.5707963267948966 rad pos: 29.5,-47.5 parent: 2 type: Transform - - uid: 30472 + - uid: 30479 components: - rot: 1.5707963267948966 rad pos: 29.5,-48.5 parent: 2 type: Transform - - uid: 30473 + - uid: 30480 components: - pos: 29.5,-48.5 parent: 2 type: Transform - - uid: 30474 + - uid: 30481 components: - pos: 28.5,-48.5 parent: 2 type: Transform - - uid: 30475 + - uid: 30482 components: - rot: 3.141592653589793 rad pos: 62.5,-48.5 parent: 2 type: Transform - - uid: 30476 + - uid: 30483 components: - rot: 1.5707963267948966 rad pos: 61.5,-47.5 parent: 2 type: Transform - - uid: 30477 + - uid: 30484 components: - rot: -1.5707963267948966 rad pos: 63.5,-47.5 parent: 2 type: Transform - - uid: 30478 + - uid: 30485 components: - rot: 3.141592653589793 rad pos: 63.5,-47.5 parent: 2 type: Transform - - uid: 30479 + - uid: 30486 components: - rot: -1.5707963267948966 rad pos: 64.5,-46.5 parent: 2 type: Transform - - uid: 30480 + - uid: 30487 components: - pos: 63.5,-45.5 parent: 2 type: Transform - - uid: 30481 + - uid: 30488 components: - pos: 62.5,-44.5 parent: 2 type: Transform - - uid: 30482 + - uid: 30489 components: - rot: -1.5707963267948966 rad pos: 63.5,-45.5 parent: 2 type: Transform - - uid: 30483 + - uid: 30490 components: - rot: 1.5707963267948966 rad pos: 61.5,-45.5 parent: 2 type: Transform - - uid: 30484 + - uid: 30491 components: - pos: 61.5,-45.5 parent: 2 type: Transform - - uid: 30485 + - uid: 30492 components: - rot: 1.5707963267948966 rad pos: 60.5,-46.5 parent: 2 type: Transform - - uid: 30486 + - uid: 30493 components: - rot: 3.141592653589793 rad pos: 61.5,-47.5 parent: 2 type: Transform - - uid: 30487 + - uid: 30494 components: - rot: 1.5707963267948966 rad pos: -44.5,-13.5 parent: 2 type: Transform - - uid: 30488 + - uid: 30495 components: - rot: 3.141592653589793 rad pos: -46.5,-8.5 parent: 2 type: Transform - - uid: 30489 + - uid: 30496 components: - rot: -1.5707963267948966 rad pos: -8.5,27.5 parent: 2 type: Transform - - uid: 30490 + - uid: 30497 components: - rot: 1.5707963267948966 rad pos: -11.5,28.5 parent: 2 type: Transform - - uid: 30491 + - uid: 30498 components: - rot: -1.5707963267948966 rad pos: -8.5,28.5 parent: 2 type: Transform - - uid: 30492 + - uid: 30499 components: - rot: -1.5707963267948966 rad pos: -34.5,13.5 parent: 2 type: Transform - - uid: 30493 + - uid: 30500 components: - rot: -1.5707963267948966 rad pos: -34.5,15.5 parent: 2 type: Transform - - uid: 30494 + - uid: 30501 components: - rot: 3.141592653589793 rad pos: -3.5,4.5 parent: 2 type: Transform - - uid: 30495 + - uid: 30502 components: - rot: 3.141592653589793 rad pos: -4.5,4.5 parent: 2 type: Transform - - uid: 30496 + - uid: 30503 components: - rot: 1.5707963267948966 rad pos: -3.5,4.5 parent: 2 type: Transform - - uid: 30497 + - uid: 30504 components: - rot: -1.5707963267948966 rad pos: -4.5,4.5 parent: 2 type: Transform - - uid: 30498 + - uid: 30505 components: - pos: -12.5,-9.5 parent: 2 type: Transform - - uid: 30499 + - uid: 30506 components: - rot: 3.141592653589793 rad pos: 30.5,30.5 parent: 2 type: Transform - - uid: 30500 + - uid: 30507 components: - pos: -8.5,-81.5 parent: 2 type: Transform - - uid: 30501 + - uid: 30508 components: - rot: 3.141592653589793 rad pos: -10.5,-84.5 parent: 2 type: Transform - - uid: 30502 + - uid: 30509 components: - rot: 3.141592653589793 rad pos: -9.5,-84.5 parent: 2 type: Transform - - uid: 30503 + - uid: 30510 components: - pos: 45.5,38.5 parent: 2 type: Transform - - uid: 30504 + - uid: 30511 components: - pos: 46.5,38.5 parent: 2 type: Transform - - uid: 30505 + - uid: 30512 components: - pos: 47.5,38.5 parent: 2 type: Transform - - uid: 30506 + - uid: 30513 components: - rot: -1.5707963267948966 rad pos: 49.5,37.5 parent: 2 type: Transform - - uid: 30507 + - uid: 30514 components: - rot: -1.5707963267948966 rad pos: 49.5,36.5 parent: 2 type: Transform - - uid: 30508 + - uid: 30515 components: - rot: 3.141592653589793 rad pos: 48.5,35.5 parent: 2 type: Transform - - uid: 30509 + - uid: 30516 components: - rot: 3.141592653589793 rad pos: 47.5,35.5 parent: 2 type: Transform - - uid: 30510 + - uid: 30517 components: - rot: 3.141592653589793 rad pos: 46.5,35.5 parent: 2 type: Transform - - uid: 30511 + - uid: 30518 components: - rot: 1.5707963267948966 rad pos: 45.5,36.5 parent: 2 type: Transform - - uid: 30512 + - uid: 30519 components: - rot: 3.141592653589793 rad pos: 45.5,36.5 parent: 2 type: Transform - - uid: 30513 + - uid: 30520 components: - pos: -2.5,71.5 parent: 2 type: Transform - - uid: 30514 + - uid: 30521 components: - pos: -1.5,71.5 parent: 2 type: Transform - - uid: 30515 + - uid: 30522 components: - pos: -0.5,71.5 parent: 2 type: Transform - - uid: 30516 + - uid: 30523 components: - rot: 1.5707963267948966 rad pos: -3.5,70.5 parent: 2 type: Transform - - uid: 30517 + - uid: 30524 components: - rot: 1.5707963267948966 rad pos: -3.5,69.5 parent: 2 type: Transform - - uid: 30518 + - uid: 30525 components: - rot: 1.5707963267948966 rad pos: -3.5,68.5 parent: 2 type: Transform - - uid: 30519 + - uid: 30526 components: - rot: 3.141592653589793 rad pos: -2.5,67.5 parent: 2 type: Transform - - uid: 30520 + - uid: 30527 components: - rot: 3.141592653589793 rad pos: -1.5,67.5 parent: 2 type: Transform - - uid: 30521 + - uid: 30528 components: - rot: 3.141592653589793 rad pos: -0.5,67.5 parent: 2 type: Transform - - uid: 30522 + - uid: 30529 components: - rot: -1.5707963267948966 rad pos: 0.5,68.5 parent: 2 type: Transform - - uid: 30523 + - uid: 30530 components: - rot: -1.5707963267948966 rad pos: 0.5,69.5 parent: 2 type: Transform - - uid: 30524 + - uid: 30531 components: - rot: -1.5707963267948966 rad pos: 0.5,70.5 parent: 2 type: Transform - - uid: 30525 + - uid: 30532 components: - pos: -10.5,24.5 parent: 2 type: Transform - - uid: 30526 + - uid: 30533 components: - rot: 3.141592653589793 rad pos: -10.5,21.5 parent: 2 type: Transform - - uid: 30527 + - uid: 30534 components: - rot: 3.141592653589793 rad pos: -9.5,21.5 parent: 2 type: Transform - - uid: 30528 + - uid: 30535 components: - rot: 1.5707963267948966 rad pos: -10.5,24.5 parent: 2 type: Transform - - uid: 30529 + - uid: 30536 components: - pos: -11.5,28.5 parent: 2 type: Transform - - uid: 30530 + - uid: 30537 components: - rot: -1.5707963267948966 rad pos: -8.5,26.5 parent: 2 type: Transform - - uid: 30531 + - uid: 30538 components: - rot: -1.5707963267948966 rad pos: -8.5,24.5 parent: 2 type: Transform - - uid: 30532 + - uid: 30539 components: - rot: -1.5707963267948966 rad pos: -8.5,23.5 parent: 2 type: Transform - - uid: 30533 + - uid: 30540 components: - pos: -8.5,23.5 parent: 2 type: Transform - - uid: 30534 + - uid: 30541 components: - rot: 3.141592653589793 rad pos: -8.5,-84.5 parent: 2 type: Transform - - uid: 30535 + - uid: 30542 components: - rot: -1.5707963267948966 rad pos: -7.5,-83.5 parent: 2 type: Transform - - uid: 30536 + - uid: 30543 components: - rot: -1.5707963267948966 rad pos: -7.5,-82.5 parent: 2 type: Transform - - uid: 30537 + - uid: 30544 components: - rot: 3.141592653589793 rad pos: -10.5,26.5 parent: 2 type: Transform - - uid: 30538 + - uid: 30545 components: - rot: 1.5707963267948966 rad pos: -10.5,26.5 parent: 2 type: Transform - - uid: 30539 + - uid: 30546 components: - rot: 3.141592653589793 rad pos: -11.5,26.5 parent: 2 type: Transform - - uid: 30540 + - uid: 30547 components: - rot: 3.141592653589793 rad pos: -12.5,26.5 parent: 2 type: Transform - - uid: 30541 + - uid: 30548 components: - pos: -11.5,-81.5 parent: 2 type: Transform - - uid: 30542 + - uid: 30549 components: - rot: 1.5707963267948966 rad pos: -12.5,-82.5 parent: 2 type: Transform - - uid: 30543 + - uid: 30550 components: - rot: 3.141592653589793 rad pos: -11.5,-84.5 parent: 2 type: Transform - - uid: 30544 + - uid: 30551 components: - rot: 1.5707963267948966 rad pos: -13.5,-83.5 parent: 2 type: Transform - - uid: 30545 + - uid: 30552 components: - rot: 1.5707963267948966 rad pos: -13.5,-82.5 parent: 2 type: Transform - - uid: 30546 + - uid: 30553 components: - rot: 3.141592653589793 rad pos: -12.5,-84.5 parent: 2 type: Transform - - uid: 30547 + - uid: 30554 components: - rot: 3.141592653589793 rad pos: -12.5,-81.5 parent: 2 type: Transform - - uid: 30548 + - uid: 30555 components: - rot: -1.5707963267948966 rad pos: -11.5,-81.5 parent: 2 type: Transform - - uid: 30549 + - uid: 30556 components: - rot: -1.5707963267948966 rad pos: -10.5,-81.5 parent: 2 type: Transform - - uid: 30550 + - uid: 30557 components: - rot: -1.5707963267948966 rad pos: -10.5,-80.5 parent: 2 type: Transform - - uid: 30551 + - uid: 30558 components: - rot: 3.141592653589793 rad pos: -10.5,-79.5 parent: 2 type: Transform - - uid: 30552 + - uid: 30559 components: - rot: 3.141592653589793 rad pos: -11.5,-79.5 parent: 2 type: Transform - - uid: 30553 + - uid: 30560 components: - rot: 1.5707963267948966 rad pos: -12.5,-80.5 parent: 2 type: Transform - - uid: 30554 + - uid: 30561 components: - rot: 1.5707963267948966 rad pos: -12.5,-79.5 parent: 2 type: Transform - - uid: 30555 + - uid: 30562 components: - rot: -1.5707963267948966 rad pos: -9.5,-81.5 parent: 2 type: Transform - - uid: 30556 + - uid: 30563 components: - rot: -1.5707963267948966 rad pos: -9.5,-80.5 parent: 2 type: Transform - - uid: 30557 + - uid: 30564 components: - rot: 3.141592653589793 rad pos: -9.5,-79.5 parent: 2 type: Transform - - uid: 30558 + - uid: 30565 components: - rot: 1.5707963267948966 rad pos: -9.5,-79.5 parent: 2 type: Transform - - uid: 30559 + - uid: 30566 components: - rot: 1.5707963267948966 rad pos: -9.5,-80.5 parent: 2 type: Transform - - uid: 30560 + - uid: 30567 components: - pos: -8.5,-80.5 parent: 2 type: Transform - - uid: 30561 + - uid: 30568 components: - rot: 1.5707963267948966 rad pos: -8.5,-80.5 parent: 2 type: Transform - - uid: 30562 + - uid: 30569 components: - rot: 1.5707963267948966 rad pos: -8.5,-79.5 parent: 2 type: Transform - - uid: 30563 + - uid: 30570 components: - rot: 1.5707963267948966 rad pos: -7.5,-79.5 parent: 2 type: Transform - - uid: 30564 + - uid: 30571 components: - rot: 1.5707963267948966 rad pos: -7.5,-80.5 parent: 2 type: Transform - - uid: 30565 + - uid: 30572 components: - pos: -7.5,-81.5 parent: 2 type: Transform - - uid: 30566 + - uid: 30573 components: - rot: -1.5707963267948966 rad pos: -5.5,-81.5 parent: 2 type: Transform - - uid: 30567 + - uid: 30574 components: - rot: 3.141592653589793 rad pos: -6.5,-81.5 parent: 2 type: Transform - - uid: 30568 + - uid: 30575 components: - rot: 1.5707963267948966 rad pos: -6.5,-82.5 parent: 2 type: Transform - - uid: 30569 + - uid: 30576 components: - rot: 3.141592653589793 rad pos: -6.5,-83.5 parent: 2 type: Transform - - uid: 30570 + - uid: 30577 components: - rot: -1.5707963267948966 rad pos: -6.5,-83.5 parent: 2 type: Transform - - uid: 30571 + - uid: 30578 components: - rot: -1.5707963267948966 rad pos: -6.5,-84.5 parent: 2 type: Transform - - uid: 30572 + - uid: 30579 components: - rot: 3.141592653589793 rad pos: -7.5,-85.5 parent: 2 type: Transform - - uid: 30573 + - uid: 30580 components: - rot: 1.5707963267948966 rad pos: -9.5,-84.5 parent: 2 type: Transform - - uid: 30574 + - uid: 30581 components: - rot: 1.5707963267948966 rad pos: -8.5,-85.5 parent: 2 type: Transform - - uid: 30575 + - uid: 30582 components: - rot: 1.5707963267948966 rad pos: -9.5,-85.5 parent: 2 type: Transform - - uid: 30576 + - uid: 30583 components: - rot: 1.5707963267948966 rad pos: -9.5,-77.5 parent: 2 type: Transform - - uid: 30577 + - uid: 30584 components: - rot: 3.141592653589793 rad pos: -8.5,-78.5 parent: 2 type: Transform - - uid: 30578 + - uid: 30585 components: - rot: 3.141592653589793 rad pos: -7.5,-78.5 parent: 2 type: Transform - - uid: 30579 + - uid: 30586 components: - rot: -1.5707963267948966 rad pos: -6.5,-78.5 parent: 2 type: Transform - - uid: 30580 + - uid: 30587 components: - rot: -1.5707963267948966 rad pos: -9.5,-77.5 parent: 2 type: Transform - - uid: 30581 + - uid: 30588 components: - pos: -6.5,-79.5 parent: 2 type: Transform - - uid: 30582 + - uid: 30589 components: - pos: -5.5,-79.5 parent: 2 type: Transform - - uid: 30583 + - uid: 30590 components: - rot: -1.5707963267948966 rad pos: -4.5,-80.5 parent: 2 type: Transform - - uid: 30584 + - uid: 30591 components: - rot: 3.141592653589793 rad pos: -4.5,-82.5 parent: 2 type: Transform - - uid: 30585 + - uid: 30592 components: - rot: 1.5707963267948966 rad pos: -5.5,-82.5 parent: 2 type: Transform - - uid: 30586 + - uid: 30593 components: - rot: 1.5707963267948966 rad pos: -5.5,-83.5 parent: 2 type: Transform - - uid: 30587 + - uid: 30594 components: - rot: 1.5707963267948966 rad pos: -6.5,-83.5 parent: 2 type: Transform - - uid: 30588 + - uid: 30595 components: - rot: 1.5707963267948966 rad pos: -6.5,-84.5 parent: 2 type: Transform - - uid: 30589 + - uid: 30596 components: - rot: 3.141592653589793 rad pos: -5.5,-85.5 parent: 2 type: Transform - - uid: 30590 + - uid: 30597 components: - rot: 1.5707963267948966 rad pos: -4.5,-83.5 parent: 2 type: Transform - - uid: 30591 + - uid: 30598 components: - rot: 1.5707963267948966 rad pos: -4.5,-82.5 parent: 2 type: Transform - - uid: 30592 + - uid: 30599 components: - rot: 3.141592653589793 rad pos: -5.5,-87.5 parent: 2 type: Transform - - uid: 30593 + - uid: 30600 components: - rot: 3.141592653589793 rad pos: -6.5,-87.5 parent: 2 type: Transform - - uid: 30594 + - uid: 30601 components: - rot: 3.141592653589793 rad pos: -7.5,-87.5 parent: 2 type: Transform - - uid: 30595 + - uid: 30602 components: - rot: 3.141592653589793 rad pos: -8.5,-87.5 parent: 2 type: Transform - - uid: 30596 + - uid: 30603 components: - rot: 3.141592653589793 rad pos: -9.5,-87.5 parent: 2 type: Transform - - uid: 30597 + - uid: 30604 components: - rot: 3.141592653589793 rad pos: -10.5,-88.5 parent: 2 type: Transform - - uid: 30598 + - uid: 30605 components: - rot: 1.5707963267948966 rad pos: -11.5,-86.5 parent: 2 type: Transform - - uid: 30599 + - uid: 30606 components: - rot: 1.5707963267948966 rad pos: -11.5,-85.5 parent: 2 type: Transform - - uid: 30600 + - uid: 30607 components: - rot: 3.141592653589793 rad pos: -9.5,-86.5 parent: 2 type: Transform - - uid: 30601 + - uid: 30608 components: - rot: 1.5707963267948966 rad pos: -10.5,-85.5 parent: 2 type: Transform - - uid: 30602 + - uid: 30609 components: - rot: 3.141592653589793 rad pos: -11.5,-85.5 parent: 2 type: Transform - - uid: 30603 + - uid: 30610 components: - rot: 3.141592653589793 rad pos: -12.5,-85.5 parent: 2 type: Transform - - uid: 30604 + - uid: 30611 components: - rot: 3.141592653589793 rad pos: -7.5,-86.5 parent: 2 type: Transform - - uid: 30605 + - uid: 30612 components: - rot: 3.141592653589793 rad pos: -6.5,-86.5 parent: 2 type: Transform - - uid: 30606 + - uid: 30613 components: - rot: 1.5707963267948966 rad pos: -5.5,-85.5 parent: 2 type: Transform - - uid: 30607 + - uid: 30614 components: - rot: 1.5707963267948966 rad pos: -13.5,-85.5 parent: 2 type: Transform - - uid: 30608 + - uid: 30615 components: - rot: 1.5707963267948966 rad pos: -14.5,-85.5 parent: 2 type: Transform - - uid: 30609 + - uid: 30616 components: - rot: 1.5707963267948966 rad pos: -14.5,-84.5 parent: 2 type: Transform - - uid: 30610 + - uid: 30617 components: - rot: 1.5707963267948966 rad pos: -14.5,-83.5 parent: 2 type: Transform - - uid: 30611 + - uid: 30618 components: - rot: 3.141592653589793 rad pos: -13.5,-87.5 parent: 2 type: Transform - - uid: 30612 + - uid: 30619 components: - rot: 1.5707963267948966 rad pos: -14.5,-86.5 parent: 2 type: Transform - - uid: 30613 + - uid: 30620 components: - rot: 3.141592653589793 rad pos: -12.5,-86.5 parent: 2 type: Transform - - uid: 30614 + - uid: 30621 components: - rot: 1.5707963267948966 rad pos: -14.5,-82.5 parent: 2 type: Transform - - uid: 30615 + - uid: 30622 components: - rot: 3.141592653589793 rad pos: -14.5,-82.5 parent: 2 type: Transform - - uid: 30616 + - uid: 30623 components: - rot: 1.5707963267948966 rad pos: -15.5,-82.5 parent: 2 type: Transform - - uid: 30617 + - uid: 30624 components: - pos: -15.5,-83.5 parent: 2 type: Transform - - uid: 30618 + - uid: 30625 components: - rot: 3.141592653589793 rad pos: -14.5,-85.5 parent: 2 type: Transform - - uid: 30619 + - uid: 30626 components: - rot: 1.5707963267948966 rad pos: -12.5,-87.5 parent: 2 type: Transform - - uid: 30620 + - uid: 30627 components: - rot: 3.141592653589793 rad pos: -11.5,-88.5 parent: 2 type: Transform - - uid: 30621 + - uid: 30628 components: - rot: 1.5707963267948966 rad pos: -11.5,-87.5 parent: 2 type: Transform - - uid: 30622 + - uid: 30629 components: - rot: 1.5707963267948966 rad pos: -10.5,-87.5 parent: 2 type: Transform - - uid: 30623 + - uid: 30630 components: - rot: 3.141592653589793 rad pos: -8.5,-88.5 parent: 2 type: Transform - - uid: 30624 + - uid: 30631 components: - rot: 1.5707963267948966 rad pos: -8.5,-88.5 parent: 2 type: Transform - - uid: 30625 + - uid: 30632 components: - rot: -1.5707963267948966 rad pos: -6.5,-88.5 parent: 2 type: Transform - - uid: 30626 + - uid: 30633 components: - pos: -6.5,-87.5 parent: 2 type: Transform - - uid: 30627 + - uid: 30634 components: - pos: -5.5,-87.5 parent: 2 type: Transform - - uid: 30628 + - uid: 30635 components: - rot: -1.5707963267948966 rad pos: -4.5,-87.5 parent: 2 type: Transform - - uid: 30629 + - uid: 30636 components: - rot: -1.5707963267948966 rad pos: -12.5,-87.5 parent: 2 type: Transform - - uid: 30630 + - uid: 30637 components: - rot: 3.141592653589793 rad pos: -13.5,-88.5 parent: 2 type: Transform - - uid: 30631 + - uid: 30638 components: - rot: 3.141592653589793 rad pos: -14.5,-88.5 parent: 2 type: Transform - - uid: 30632 + - uid: 30639 components: - rot: 1.5707963267948966 rad pos: -15.5,-87.5 parent: 2 type: Transform - - uid: 30633 + - uid: 30640 components: - pos: -15.5,-85.5 parent: 2 type: Transform - - uid: 30634 + - uid: 30641 components: - rot: 1.5707963267948966 rad pos: -13.5,-86.5 parent: 2 type: Transform - - uid: 30635 + - uid: 30642 components: - rot: 1.5707963267948966 rad pos: -10.5,-86.5 parent: 2 type: Transform - - uid: 30636 + - uid: 30643 components: - rot: -1.5707963267948966 rad pos: -5.5,-77.5 parent: 2 type: Transform - - uid: 30637 + - uid: 30644 components: - rot: -1.5707963267948966 rad pos: -5.5,-78.5 parent: 2 type: Transform - - uid: 30638 + - uid: 30645 components: - rot: -1.5707963267948966 rad pos: -4.5,-79.5 parent: 2 type: Transform - - uid: 30639 + - uid: 30646 components: - rot: -1.5707963267948966 rad pos: -4.5,-78.5 parent: 2 type: Transform - - uid: 30640 + - uid: 30647 components: - rot: -1.5707963267948966 rad pos: -10.5,-78.5 parent: 2 type: Transform - - uid: 30641 + - uid: 30648 components: - rot: 3.141592653589793 rad pos: -11.5,-78.5 parent: 2 type: Transform - - uid: 30642 + - uid: 30649 components: - rot: 3.141592653589793 rad pos: 28.5,30.5 parent: 2 type: Transform - - uid: 30643 + - uid: 30650 components: - pos: 16.5,37.5 parent: 2 type: Transform - - uid: 30644 + - uid: 30651 components: - rot: 3.141592653589793 rad pos: -55.5,-63.5 parent: 2 type: Transform - - uid: 30645 + - uid: 30652 components: - rot: 3.141592653589793 rad pos: -54.5,-63.5 parent: 2 type: Transform - - uid: 30646 + - uid: 30653 components: - rot: -1.5707963267948966 rad pos: -53.5,-63.5 parent: 2 type: Transform - - uid: 30647 + - uid: 30654 components: - rot: -1.5707963267948966 rad pos: -53.5,-64.5 parent: 2 type: Transform - - uid: 30648 + - uid: 30655 components: - rot: 1.5707963267948966 rad pos: 42.5,5.5 parent: 2 type: Transform - - uid: 30649 + - uid: 30656 components: - rot: 1.5707963267948966 rad pos: 42.5,7.5 @@ -220707,7 +205835,7 @@ entities: type: Transform - proto: Wirecutter entities: - - uid: 30650 + - uid: 30657 components: - rot: -1.5707963267948966 rad pos: -54.537155,-38.29817 @@ -220715,70 +205843,70 @@ entities: type: Transform - proto: WoodblockInstrument entities: - - uid: 30651 + - uid: 30658 components: - pos: -47.491924,-64.51194 parent: 2 type: Transform - proto: WoodDoor entities: - - uid: 30652 + - uid: 30659 components: - pos: -31.5,-5.5 parent: 2 type: Transform - - uid: 30653 + - uid: 30660 components: - pos: -31.5,-7.5 parent: 2 type: Transform - - uid: 30654 + - uid: 30661 components: - pos: -38.5,7.5 parent: 2 type: Transform - - uid: 30655 + - uid: 30662 components: - pos: -37.5,7.5 parent: 2 type: Transform - - uid: 30656 + - uid: 30663 components: - rot: 3.141592653589793 rad pos: -29.5,-5.5 parent: 2 type: Transform - - uid: 30657 + - uid: 30664 components: - pos: 41.5,49.5 parent: 2 type: Transform - - uid: 30658 + - uid: 30665 components: - pos: 40.5,51.5 parent: 2 type: Transform - - uid: 30659 + - uid: 30666 components: - pos: -39.5,-95.5 parent: 2 type: Transform - - uid: 30660 + - uid: 30667 components: - pos: -39.5,-96.5 parent: 2 type: Transform - - uid: 30661 + - uid: 30668 components: - pos: 61.5,23.5 parent: 2 type: Transform - - uid: 30662 + - uid: 30669 components: - pos: 63.5,23.5 parent: 2 type: Transform - - uid: 30663 + - uid: 30670 components: - rot: 3.141592653589793 rad pos: -29.5,-7.5 @@ -220786,111 +205914,111 @@ entities: type: Transform - proto: Wrench entities: - - uid: 30664 + - uid: 30671 components: - pos: 19.497053,-52.46946 parent: 2 type: Transform - - uid: 30665 + - uid: 30672 components: - pos: 43.41047,-49.384262 parent: 2 type: Transform - - uid: 30666 + - uid: 30673 components: - pos: 40.515266,-53.36736 parent: 2 type: Transform - - uid: 30667 + - uid: 30674 components: - pos: 53.570477,-52.25876 parent: 2 type: Transform - - uid: 30668 + - uid: 30675 components: - pos: -65.459496,-32.443497 parent: 2 type: Transform - - uid: 30669 + - uid: 30676 components: - pos: -52.48202,-14.116064 parent: 2 type: Transform - - uid: 30670 + - uid: 30677 components: - pos: -43.931065,-77.41935 parent: 2 type: Transform - nextAttack: 1860.1092288 type: MeleeWeapon - - uid: 30671 + - uid: 30678 components: - pos: -3.6165767,31.44955 parent: 2 type: Transform - - uid: 30672 + - uid: 30679 components: - pos: -52.52865,13.566981 parent: 2 type: Transform - - uid: 30673 + - uid: 30680 components: - pos: -56.484455,-4.5012527 parent: 2 type: Transform - - uid: 30674 + - uid: 30681 components: - pos: -31.403458,-56.573048 parent: 2 type: Transform - - uid: 30675 + - uid: 30682 components: - pos: 56.276398,42.55694 parent: 2 type: Transform - - uid: 30676 + - uid: 30683 components: - pos: 30.53096,47.374912 parent: 2 type: Transform - - uid: 30677 + - uid: 30684 components: - pos: 63.43439,-33.411366 parent: 2 type: Transform - - uid: 30678 + - uid: 30685 components: - pos: 73.54562,-44.324593 parent: 2 type: Transform - nextAttack: 8686.1319246 type: MeleeWeapon - - uid: 30679 + - uid: 30686 components: - rot: 1.5707963267948966 rad pos: -37.345474,18.574602 parent: 2 type: Transform - - uid: 30680 + - uid: 30687 components: - pos: -8.112096,-15.394987 parent: 2 type: Transform - proto: YellowOxygenTankFilled entities: - - uid: 30681 + - uid: 30688 components: - pos: 64.41901,29.545698 parent: 2 type: Transform - - uid: 30682 + - uid: 30689 components: - pos: 67.49378,-65.34203 parent: 2 type: Transform - proto: Zipties entities: - - uid: 30683 + - uid: 30690 components: - pos: 22.565756,-47.432816 parent: 2 From 7c432b09e1d7c371c77ca8284cb457efc3b546c6 Mon Sep 17 00:00:00 2001 From: Chief-Engineer <119664036+Chief-Engineer@users.noreply.github.com> Date: Sun, 18 Jun 2023 16:53:05 -0500 Subject: [PATCH 328/474] update command role requirements (#17366) * update role requirements * add 6 hr overall requirement for mime I keep seeing mimes that don't know the controls, specifically how to use other chat channels, like emoting. * fix wrong prototype * split to part 2 * fix engi belts this is a pain --- .../Roles/Jobs/Cargo/quartermaster.yml | 9 +++--- .../Prototypes/Roles/Jobs/Civilian/lawyer.yml | 2 +- .../Prototypes/Roles/Jobs/Command/captain.yml | 29 ++++++++++++------- .../Roles/Jobs/Command/head_of_personnel.yml | 11 +++---- .../Roles/Jobs/Engineering/chief_engineer.yml | 9 +++--- .../Jobs/Medical/chief_medical_officer.yml | 10 +++++-- .../Roles/Jobs/Science/research_director.yml | 4 +-- .../Roles/Jobs/Security/head_of_security.yml | 12 +++++--- 8 files changed, 51 insertions(+), 35 deletions(-) diff --git a/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml b/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml index a60bbe4e02..2ba7f3f91a 100644 --- a/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml +++ b/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml @@ -4,14 +4,15 @@ description: job-description-qm playTimeTracker: JobQuartermaster requirements: + - !type:RoleTimeRequirement + role: JobCargoTechnician + time: 21600 #6 hrs - !type:RoleTimeRequirement role: JobSalvageSpecialist - time: 3600 + time: 21600 #6 hrs - !type:DepartmentTimeRequirement department: Cargo - time: 18000 - - !type:OverallPlaytimeRequirement - time: 108000 + time: 108000 # 30 hrs weight: 10 startingGear: QuartermasterGear icon: "QuarterMaster" diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/lawyer.yml b/Resources/Prototypes/Roles/Jobs/Civilian/lawyer.yml index 92becdd8c3..11c71fdf04 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/lawyer.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/lawyer.yml @@ -24,4 +24,4 @@ right hand: BriefcaseBrownFilled innerclothingskirt: ClothingUniformJumpskirtLawyerBlack satchel: ClothingBackpackSatchelFilled - duffelbag: ClothingBackpackDuffelFilled \ No newline at end of file + duffelbag: ClothingBackpackDuffelFilled diff --git a/Resources/Prototypes/Roles/Jobs/Command/captain.yml b/Resources/Prototypes/Roles/Jobs/Command/captain.yml index d06a97c7c5..ccca88d3cd 100644 --- a/Resources/Prototypes/Roles/Jobs/Command/captain.yml +++ b/Resources/Prototypes/Roles/Jobs/Command/captain.yml @@ -4,17 +4,24 @@ description: job-description-captain playTimeTracker: JobCaptain requirements: - - !type:DepartmentTimeRequirement - department: Engineering - time: 18000 - - !type:DepartmentTimeRequirement - department: Medical - time: 18000 - - !type:DepartmentTimeRequirement - department: Security - time: 18000 - - !type:OverallPlaytimeRequirement - time: 108000 + - !type:RoleTimeRequirement + role: JobHeadOfPersonnel + time: 21600 #6 hrs + - !type:RoleTimeRequirement + role: JobHeadOfSecurity + time: 21600 #6 hrs + - !type:RoleTimeRequirement + role: JobChiefMedicalOfficer + time: 21600 #6 hrs + - !type:RoleTimeRequirement + role: JobChiefEngineer + time: 21600 #6 hrs + - !type:RoleTimeRequirement + role: JobResearchDirector + time: 21600 #6 hrs + - !type:RoleTimeRequirement + role: JobQuartermaster + time: 21600 #6 hrs weight: 20 startingGear: CaptainGear icon: "Captain" diff --git a/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml b/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml index 6a2275601b..954c49a239 100644 --- a/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml +++ b/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml @@ -6,15 +6,16 @@ requirements: - !type:DepartmentTimeRequirement department: Engineering - time: 3600 + time: 54000 # 15 hrs - !type:DepartmentTimeRequirement department: Medical - time: 3600 + time: 54000 # 15 hrs - !type:DepartmentTimeRequirement department: Security - time: 3600 - - !type:OverallPlaytimeRequirement - time: 108000 + time: 54000 # 15 hrs + - !type:DepartmentTimeRequirement + department: Command + time: 72000 # 20 hrs weight: 20 startingGear: HoPGear icon: "HeadOfPersonnel" diff --git a/Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml b/Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml index 4e8494d6f5..461600d125 100644 --- a/Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml +++ b/Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml @@ -6,12 +6,13 @@ requirements: - !type:RoleTimeRequirement role: JobAtmosphericTechnician - time: 3600 + time: 21600 #6 hrs + - !type:RoleTimeRequirement + role: JobStationEngineer + time: 21600 #6 hrs - !type:DepartmentTimeRequirement department: Engineering - time: 18000 - - !type:OverallPlaytimeRequirement - time: 108000 + time: 108000 # 30 hrs weight: 10 startingGear: ChiefEngineerGear icon: "ChiefEngineer" diff --git a/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml b/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml index 61d0229bd9..22beedf860 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml @@ -6,11 +6,15 @@ description: job-description-cmo playTimeTracker: JobChiefMedicalOfficer requirements: + - !type:RoleTimeRequirement + role: JobChemist + time: 21600 #6 hrs + - !type:RoleTimeRequirement + role: JobMedicalDoctor + time: 21600 #6 hrs - !type:DepartmentTimeRequirement department: Medical - time: 18000 - - !type:OverallPlaytimeRequirement - time: 108000 + time: 108000 # 30 hrs weight: 10 startingGear: CMOGear icon: "ChiefMedicalOfficer" diff --git a/Resources/Prototypes/Roles/Jobs/Science/research_director.yml b/Resources/Prototypes/Roles/Jobs/Science/research_director.yml index d3e54f579c..e7e3bf4a53 100644 --- a/Resources/Prototypes/Roles/Jobs/Science/research_director.yml +++ b/Resources/Prototypes/Roles/Jobs/Science/research_director.yml @@ -6,9 +6,7 @@ requirements: - !type:DepartmentTimeRequirement department: Science - time: 18000 - - !type:OverallPlaytimeRequirement - time: 108000 + time: 108000 # 30 hrs weight: 10 startingGear: ResearchDirectorGear icon: "ResearchDirector" diff --git a/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml b/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml index f31999d4f9..ce06affd7f 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml @@ -6,12 +6,16 @@ requirements: - !type:RoleTimeRequirement role: JobWarden - time: 3600 + time: 21600 #6 hrs + - !type:RoleTimeRequirement + role: JobDetective + time: 7200 #2 hrs + - !type:RoleTimeRequirement + role: JobSecurityOfficer + time: 36000 #10 hrs - !type:DepartmentTimeRequirement department: Security - time: 18000 - - !type:OverallPlaytimeRequirement - time: 108000 + time: 108000 # 30 hrs weight: 10 startingGear: HoSGear icon: "HeadOfSecurity" From e8b766d33c0ade4c1084805c5d45be9185fba850 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 18 Jun 2023 17:54:09 -0400 Subject: [PATCH 329/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index ce0e2bf56d..408bbdebb5 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,10 +1,4 @@ Entries: -- author: ElectroJr - changes: - - {message: 'Fix some equipment actions (toggle light, magboots, etc) not showing - up.', type: Fix} - id: 3533 - time: '2023-04-24T19:29:48.0000000+00:00' - author: lzk changes: - {message: 'Syndicate has provided cheap top-tech disguise glasses, the outlaw @@ -2921,3 +2915,8 @@ Entries: in their uplinks., type: Add} id: 4032 time: '2023-06-18T19:35:23.0000000+00:00' +- author: Chief-Engineer + changes: + - {message: Command role requirements have been modified., type: Tweak} + id: 4033 + time: '2023-06-18T21:53:05.0000000+00:00' From 8cd6067d492f403701059af06e51f368e7ea9bf9 Mon Sep 17 00:00:00 2001 From: Chase Maguire <32408355+Wirdal@users.noreply.github.com> Date: Sun, 18 Jun 2023 14:56:09 -0700 Subject: [PATCH 330/474] Changing default fuel consumption for weldable components, and increasing non-default instances by two units of fuel (#17350) --- Content.Server/Tools/Components/WeldableComponent.cs | 2 +- .../Structures/Doors/Airlocks/base_structureairlocks.yml | 2 +- .../Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml | 2 +- .../Prototypes/Entities/Structures/Doors/Shutter/shutters.yml | 1 - 4 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Content.Server/Tools/Components/WeldableComponent.cs b/Content.Server/Tools/Components/WeldableComponent.cs index 46062692d3..edb980ca41 100644 --- a/Content.Server/Tools/Components/WeldableComponent.cs +++ b/Content.Server/Tools/Components/WeldableComponent.cs @@ -31,7 +31,7 @@ public sealed class WeldableComponent : SharedWeldableComponent /// [DataField("fuel")] [ViewVariables(VVAccess.ReadWrite)] - public float FuelConsumption = 1f; + public float FuelConsumption = 3f; /// /// How much time does it take to weld/unweld entity. diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml index 171dbed152..46bc26dede 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml @@ -62,7 +62,7 @@ containers: board: !type:Container - type: Weldable - fuel: 3 + fuel: 5 time: 3 - type: Airlock - type: DoorBolt diff --git a/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml b/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml index 60022c9f4f..2d8957661b 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml @@ -78,7 +78,7 @@ openingAnimationTime: 0.6 closingAnimationTime: 0.6 - type: Weldable - fuel: 3 + fuel: 5 time: 3 - type: Firelock - type: Appearance diff --git a/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml b/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml index 9d3a7b0607..021e68ee75 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml @@ -49,7 +49,6 @@ closeSound: path: /Audio/Machines/blastdoor.ogg - type: Weldable - fuel: 3 time: 3 - type: Appearance - type: UserInterface From 3975578e4e104561c2d752422906335f49b5d9dd Mon Sep 17 00:00:00 2001 From: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> Date: Sun, 18 Jun 2023 17:56:49 -0400 Subject: [PATCH 331/474] Arsenal tech discipline (#17400) --- .../Locale/en-US/research/technologies.ftl | 13 +- .../Guns/Ammunition/Boxes/light_rifle.yml | 15 ++ .../Weapons/Guns/Ammunition/Boxes/magnum.yml | 15 ++ .../Weapons/Guns/Ammunition/Boxes/pistol.yml | 15 ++ .../Weapons/Guns/Ammunition/Boxes/rifle.yml | 15 ++ .../Ammunition/Cartridges/light_rifle.yml | 8 + .../Guns/Ammunition/Cartridges/magnum.yml | 8 + .../Guns/Ammunition/Cartridges/pistol.yml | 8 + .../Guns/Ammunition/Cartridges/rifle.yml | 8 + .../Ammunition/Projectiles/light_rifle.yml | 11 ++ .../Guns/Ammunition/Projectiles/magnum.yml | 11 ++ .../Guns/Ammunition/Projectiles/pistol.yml | 11 ++ .../Guns/Ammunition/Projectiles/rifle.yml | 11 ++ .../Guns/Ammunition/Projectiles/shotgun.yml | 9 +- .../Weapons/Guns/Battery/battery_guns.yml | 3 +- .../Weapons/Guns/Projectiles/projectiles.yml | 18 ++ .../Entities/Structures/Machines/lathe.yml | 51 ++++-- .../Entities/Structures/Machines/research.yml | 1 + .../Prototypes/Recipes/Lathes/devices.yml | 9 + .../Prototypes/Recipes/Lathes/security.yml | 167 +++++++++++++++++- Resources/Prototypes/Research/arsenal.yml | 145 +++++++++++++++ Resources/Prototypes/Research/disciplines.yml | 12 ++ .../Prototypes/Research/experimental.yml | 16 -- Resources/Prototypes/Research/industrial.yml | 15 -- .../Misc/research_disciplines.rsi/arsenal.png | Bin 0 -> 160 bytes .../Misc/research_disciplines.rsi/meta.json | 3 + .../Boxes/light_rifle.rsi/incendiary.png | Bin 0 -> 298 bytes .../Boxes/light_rifle.rsi/meta.json | 3 + .../Boxes/magnum.rsi/incendiary.png | Bin 0 -> 147 bytes .../Ammunition/Boxes/magnum.rsi/meta.json | 3 + .../Ammunition/Boxes/pistol.rsi/hvdisplay.png | Bin 0 -> 456 bytes .../Boxes/pistol.rsi/incendiary.png | Bin 0 -> 305 bytes .../Boxes/pistol.rsi/incendiarydisplay.png | Bin 0 -> 472 bytes .../Ammunition/Boxes/pistol.rsi/meta.json | 9 + .../Ammunition/Boxes/rifle.rsi/incendiary.png | Bin 0 -> 356 bytes .../Guns/Ammunition/Boxes/rifle.rsi/meta.json | 3 + 36 files changed, 560 insertions(+), 56 deletions(-) create mode 100644 Resources/Prototypes/Research/arsenal.yml create mode 100644 Resources/Textures/Interface/Misc/research_disciplines.rsi/arsenal.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/incendiary.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/incendiary.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi/hvdisplay.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi/incendiary.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi/incendiarydisplay.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/incendiary.png diff --git a/Resources/Locale/en-US/research/technologies.ftl b/Resources/Locale/en-US/research/technologies.ftl index 5733b7e908..9f8bbf84ba 100644 --- a/Resources/Locale/en-US/research/technologies.ftl +++ b/Resources/Locale/en-US/research/technologies.ftl @@ -1,10 +1,10 @@ research-discipline-none = None research-discipline-industrial = Industrial research-discipline-biochemical = Biochemical +research-discipline-arsenal = Arsenal research-discipline-experimental = Experimental research-discipline-civilian-services = Civilian Services -research-technology-salvage-weapons = Salvage weapons research-technology-salvage-equipment = Salvage Equipment research-technology-advanced-powercells = Advanced Powercells research-technology-compact-power = Compact Power @@ -29,8 +29,17 @@ research-technology-crew-monitoring = Crew Monitoring research-technology-bluespace-chemistry = Bluespace Chemistry research-technology-cloning = Cloning +research-technology-salvage-weapons = Salvage Weapons +research-technology-draconic-munitions = Draconic Munitions +research-technology-explosive-technology = Explosive Technology +research-technology-advanced-laser-manipulation = Advanced Laser Manipulation +research-technology-nonlethal-ammunition = Nonlethal Ammunition +research-technology-optimized-ballistics = Optimized Ballistics +research-technology-concentrated-laser-weaponry = Concentrated Laser Weaponry +research-technology-wave-particle-harnessing = Wave Particle Harnessing +research-technology-handheld-electrical-propulsion = Handheld Electrical Propulsion + research-technology-basic-robotics = Basic Robotics -research-technology-signalling-tech = Signalling Tech research-technology-basic-anomalous-research = Basic Anomalous Research research-technology-basic-xenoarcheology = Basic XenoArcheology research-technology-alternative-research = Alternative Research diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.yml index 5ac13ad067..7018ff3764 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.yml @@ -103,3 +103,18 @@ - state: mag-1 map: ["enum.GunVisualLayers.Mag"] - state: rubber + +- type: entity + id: MagazineBoxLightRifleIncendiary + parent: BaseMagazineBoxLightRifle + name: ammunition box (.30 rifle incendiary) + components: + - type: BallisticAmmoProvider + proto: CartridgeLightRifleIncendiary + - type: Sprite + layers: + - state: base + map: ["enum.GunVisualLayers.Base"] + - state: mag-1 + map: ["enum.GunVisualLayers.Mag"] + - state: incendiary diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/magnum.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/magnum.yml index 44327b1878..9f7adc7868 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/magnum.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/magnum.yml @@ -82,3 +82,18 @@ - state: mag-1 map: ["enum.GunVisualLayers.Mag"] - state: rubber + +- type: entity + id: MagazineBoxMagnumIncendiary + parent: BaseMagazineBoxMagnum + name: ammunition box (.45 magnum incendiary) + components: + - type: BallisticAmmoProvider + proto: CartridgeMagnumIncendiary + - type: Sprite + layers: + - state: base + map: ["enum.GunVisualLayers.Base"] + - state: mag-1 + map: ["enum.GunVisualLayers.Mag"] + - state: incendiary diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/pistol.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/pistol.yml index 50491c9e43..d8bab16cdb 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/pistol.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/pistol.yml @@ -83,3 +83,18 @@ - state: mag-1 map: ["enum.GunVisualLayers.Mag"] - state: rubber + +- type: entity + id: MagazineBoxPistolIncendiary + parent: BaseMagazineBoxPistol + name: ammunition box (.35 auto incendiary) + components: + - type: BallisticAmmoProvider + proto: CartridgePistolIncendiary + - type: Sprite + layers: + - state: base + map: ["enum.GunVisualLayers.Base"] + - state: mag-1 + map: ["enum.GunVisualLayers.Mag"] + - state: incendiary diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/rifle.yml index 09a22bbafe..260237c3c0 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/rifle.yml @@ -123,3 +123,18 @@ - state: mag-1 map: ["enum.GunVisualLayers.Mag"] - state: rubber + +- type: entity + id: MagazineBoxRifleIncendiary + parent: BaseMagazineBoxRifle + name: ammunition box (.20 rifle incendiary) + components: + - type: BallisticAmmoProvider + proto: CartridgeRifleIncendiary + - type: Sprite + layers: + - state: base + map: ["enum.GunVisualLayers.Base"] + - state: mag-1 + map: ["enum.GunVisualLayers.Mag"] + - state: incendiary diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/light_rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/light_rifle.yml index 3d38920eb3..248a919ced 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/light_rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/light_rifle.yml @@ -51,3 +51,11 @@ components: - type: CartridgeAmmo proto: BulletLightRifleRubber + +- type: entity + id: CartridgeLightRifleIncendiary + name: cartridge (.30 rifle incendiary) + parent: BaseCartridgeLightRifle + components: + - type: CartridgeAmmo + proto: BulletLightRifleIncendiary diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/magnum.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/magnum.yml index dc500cffc5..757119ae25 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/magnum.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/magnum.yml @@ -52,6 +52,14 @@ - type: CartridgeAmmo proto: BulletMagnumRubber +- type: entity + id: CartridgeMagnumIncendiary + name: cartridge (.45 magnum incendiary) + parent: BaseCartridgeMagnum + components: + - type: CartridgeAmmo + proto: BulletMagnumIncendiary + - type: entity id: BaseAnomalousCartridge parent: BaseCartridgeMagnum diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/pistol.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/pistol.yml index eff0c4f5cf..0210b78c31 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/pistol.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/pistol.yml @@ -51,3 +51,11 @@ components: - type: CartridgeAmmo proto: BulletPistolRubber + +- type: entity + id: CartridgePistolIncendiary + name: cartridge (.35 auto incendiary) + parent: BaseCartridgePistol + components: + - type: CartridgeAmmo + proto: BulletPistolIncendiary diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/rifle.yml index c9949e6d8a..f30aa1a372 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/rifle.yml @@ -51,3 +51,11 @@ components: - type: CartridgeAmmo proto: BulletRifleRubber + +- type: entity + id: CartridgeRifleIncendiary + name: cartridge (.20 rifle incendiary) + parent: BaseCartridgeRifle + components: + - type: CartridgeAmmo + proto: BulletRifleIncendiary diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/light_rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/light_rifle.yml index e4d2f35822..8bf5ce5e62 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/light_rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/light_rifle.yml @@ -41,3 +41,14 @@ damage: types: Blunt: 3 + +- type: entity + id: BulletLightRifleIncendiary + parent: BaseBulletIncendiary + name: bullet (.20 rifle incendiary) + noSpawn: true + components: + - type: Projectile + damage: + groups: + Burn: 17 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/magnum.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/magnum.yml index 261cfb8c9c..12d3e6972e 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/magnum.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/magnum.yml @@ -43,3 +43,14 @@ Blunt: 3 - type: StaminaDamageOnCollide damage: 35 # 3 hits to stun cuz revolver + +- type: entity + id: BulletMagnumIncendiary + parent: BaseBulletIncendiary + name: bullet (.45 magnum incendiary) + noSpawn: true + components: + - type: Projectile + damage: + groups: + Burn: 32 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/pistol.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/pistol.yml index f26f7b4022..8474160ef7 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/pistol.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/pistol.yml @@ -41,3 +41,14 @@ damage: types: Blunt: 3 + +- type: entity + id: BulletPistolIncendiary + parent: BaseBulletIncendiary + name: bullet (.35 auto incendiary) + noSpawn: true + components: + - type: Projectile + damage: + groups: + Burn: 14 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/rifle.yml index 606505bd68..c3a0496e18 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/rifle.yml @@ -41,3 +41,14 @@ damage: types: Blunt: 3 + +- type: entity + id: BulletRifleIncendiary + parent: BaseBulletIncendiary + name: bullet (0.20 rifle incendiary) + noSpawn: true + components: + - type: Projectile + damage: + groups: + Burn: 15 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/shotgun.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/shotgun.yml index 9dde100821..6254136f3e 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/shotgun.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/shotgun.yml @@ -46,7 +46,7 @@ id: PelletShotgunIncendiary name: pellet (.50 incendiary) noSpawn: true - parent: BaseBullet + parent: BaseBulletIncendiary components: - type: Sprite sprite: Objects/Weapons/Guns/Projectiles/projectiles2.rsi @@ -55,13 +55,6 @@ damage: groups: Burn: 7 - - type: PointLight - enabled: true - color: "#ff4300" - radius: 2.0 - energy: 7.0 - - type: IgniteOnCollide - fireStacks: 1 - type: entity id: PelletShotgunPractice diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml index 00d7800bf7..dcbe38ca49 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml @@ -326,7 +326,6 @@ parent: BaseWeaponBatterySmall id: WeaponTaser description: A low-capacity, energy-based stun gun used by security teams to subdue targets at range. - suffix: Admin components: - type: Tag tags: @@ -350,7 +349,7 @@ path: /Audio/Weapons/Guns/Gunshots/taser.ogg - type: ProjectileBatteryAmmoProvider proto: BulletTaser - fireCost: 100 + fireCost: 200 - type: MagazineVisuals magState: mag steps: 5 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml index 63613492ac..4bae5cf524 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml @@ -126,6 +126,24 @@ - type: StaminaDamageOnCollide damage: 22 # 5 hits to stun sounds reasonable +- type: entity + id: BaseBulletIncendiary + name: base bullet incendiary + parent: BaseBullet + noSpawn: true + components: + - type: Projectile + damage: + types: + Blunt: 14 + - type: PointLight + enabled: true + color: "#ff4300" + radius: 2.0 + energy: 7.0 + - type: IgniteOnCollide + fireStacks: 1 + # Energy projectiles - type: entity name: taser bolt diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index e6210a75c7..5bd4c087b2 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -105,6 +105,7 @@ - StationMapElectronics - FireAlarmElectronics - MailingUnitElectronics + - SignalTimerElectronics - APCElectronics - SMESMachineCircuitboard - SubstationMachineCircuitboard @@ -215,7 +216,6 @@ - SuperCapacitorStockPart - SuperMatterBinStockPart - PicoManipulatorStockPart - - SignalTimerElectronics - MopItem - Holoprojector - Mousetrap @@ -279,7 +279,6 @@ idleState: icon runningState: building dynamicRecipes: - - SignalTimerElectronics - ThermomachineFreezerMachineCircuitBoard - PortableScrubberMachineCircuitBoard - CloningPodMachineCircuitboard @@ -432,7 +431,6 @@ runningState: icon staticRecipes: - Flash - - FlashPayload - Handcuffs - Zipties - Stunbaton @@ -441,27 +439,56 @@ - RiotShield - CartridgePistol - CartridgeMagnum - - CartridgePistolRubber - - CartridgeMagnumRubber - ShellShotgun - - ShellShotgunBeanbag - ShellShotgunFlare - ShellTranquilizer - CartridgeLightRifle - CartridgeRifle - - CartridgeLightRifleRubber - - CartridgeRifleRubber + - MagazineBoxPistol + - MagazineBoxMagnum + - MagazineBoxRifle + - MagazineBoxLightRifle - TargetHuman - TargetSyndicate - TargetClown - - MagazineBoxPistol + dynamicRecipes: + - CartridgePistolRubber + - CartridgeMagnumRubber + - ShellShotgunBeanbag + - CartridgeRifleRubber + - CartridgeLightRifleRubber - MagazineBoxPistolRubber - - MagazineBoxMagnum - MagazineBoxMagnumRubber - - MagazineBoxRifle - MagazineBoxRifleRubber - - MagazineBoxLightRifle - MagazineBoxLightRifleRubber + - CartridgePistolHighVelocity + - CartridgeMagnumHighVelocity + - CartridgeLightRifleHighVelocity + - CartridgeRifleHighVelocity + - MagazineBoxPistolHighVelocity + - MagazineBoxMagnumHighVelocity + - MagazineBoxLightRifleHighVelocity + - MagazineBoxRifleHighVelocity + - ShellShotgunIncendiary + - CartridgePistolIncendiary + - CartridgeMagnumIncendiary + - CartridgeLightRifleIncendiary + - CartridgeRifleIncendiary + - MagazineBoxPistolIncendiary + - MagazineBoxMagnumIncendiary + - MagazineBoxLightRifleIncendiary + - MagazineBoxRifleIncendiary + - Signaller + - SignalTrigger + - VoiceTrigger + - TimerTrigger + - FlashPayload + - ExplosivePayload + - WeaponLaserCarbine + - WeaponAdvancedLaser + - WeaponLaserCannon + - WeaponXrayCannon + - WeaponTaser - type: MaterialStorage whitelist: tags: diff --git a/Resources/Prototypes/Entities/Structures/Machines/research.yml b/Resources/Prototypes/Entities/Structures/Machines/research.yml index 69352b8459..4f2f360ff2 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/research.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/research.yml @@ -15,6 +15,7 @@ supportedDisciplines: - Industrial - Biochemical + - Arsenal - Experimental - CivilianServices - type: ApcPowerReceiver diff --git a/Resources/Prototypes/Recipes/Lathes/devices.yml b/Resources/Prototypes/Recipes/Lathes/devices.yml index 1be735a391..aa722e998a 100644 --- a/Resources/Prototypes/Recipes/Lathes/devices.yml +++ b/Resources/Prototypes/Recipes/Lathes/devices.yml @@ -40,6 +40,15 @@ Glass: 50 #one fourth of what making a flash would cost +- type: latheRecipe + id: ExplosivePayload + result: ExplosivePayload + completetime: 1 + materials: + Steel: 50 + Plastic: 100 + Glass: 50 + - type: latheRecipe id: Signaller result: RemoteSignaller diff --git a/Resources/Prototypes/Recipes/Lathes/security.yml b/Resources/Prototypes/Recipes/Lathes/security.yml index cc0f870dd7..be8efde540 100644 --- a/Resources/Prototypes/Recipes/Lathes/security.yml +++ b/Resources/Prototypes/Recipes/Lathes/security.yml @@ -20,6 +20,52 @@ Steel: 300 Plastic: 300 +- type: latheRecipe + id: WeaponLaserCarbine + result: WeaponLaserCarbine + completetime: 5 + materials: + Steel: 750 + Glass: 500 + Plastic: 250 + +- type: latheRecipe + id: WeaponAdvancedLaser + result: WeaponAdvancedLaser + completetime: 5 + materials: + Steel: 1000 + Glass: 500 + Gold: 150 + +- type: latheRecipe + id: WeaponLaserCannon + result: WeaponLaserCannon + completetime: 5 + materials: + Steel: 1250 + Plastic: 750 + Gold: 100 + +- type: latheRecipe + id: WeaponXrayCannon + result: WeaponXrayCannon + completetime: 5 + materials: + Steel: 1500 + Glass: 500 + Plastic: 250 + Gold: 100 + +- type: latheRecipe + id: WeaponTaser + result: WeaponTaser + completetime: 5 + materials: + Steel: 700 + Plastic: 300 + Gold: 250 + - type: latheRecipe id: ForensicPad result: ForensicPad @@ -223,7 +269,7 @@ id: MagazineBoxRifle result: MagazineBoxRifle completetime: 5 - materials: + materials: Steel: 950 - type: latheRecipe @@ -248,3 +294,122 @@ materials: Steel: 350 Plastic: 600 + +- type: latheRecipe + id: CartridgePistolHighVelocity + result: CartridgePistolHighVelocity + completetime: 2 + materials: + Steel: 20 + +- type: latheRecipe + id: CartridgeMagnumHighVelocity + result: CartridgeMagnumHighVelocity + completetime: 2 + materials: + Steel: 40 + +- type: latheRecipe + id: CartridgeLightRifleHighVelocity + result: CartridgeLightRifleHighVelocity + completetime: 2 + materials: + Steel: 40 + +- type: latheRecipe + id: CartridgeRifleHighVelocity + result: CartridgeRifleHighVelocity + completetime: 2 + materials: + Steel: 30 + +- type: latheRecipe + id: MagazineBoxPistolHighVelocity + result: MagazineBoxPistolHighVelocity + completetime: 5 + materials: + Steel: 1250 + +- type: latheRecipe + id: MagazineBoxMagnumHighVelocity + result: MagazineBoxMagnumHighVelocity + completetime: 5 + materials: + Steel: 2450 + +- type: latheRecipe + id: MagazineBoxLightRifleHighVelocity + result: MagazineBoxLightRifleHighVelocity + completetime: 5 + materials: + Steel: 2050 + +- type: latheRecipe + id: MagazineBoxRifleHighVelocity + result: MagazineBoxRifleHighVelocity + completetime: 5 + materials: + Steel: 1850 + +- type: latheRecipe + id: ShellShotgunIncendiary + result: ShellShotgunIncendiary + completetime: 2 + materials: + Plastic: 20 + +- type: latheRecipe + id: CartridgePistolIncendiary + result: CartridgePistolIncendiary + completetime: 2 + materials: + Plastic: 10 + +- type: latheRecipe + id: CartridgeMagnumIncendiary + result: CartridgeMagnumIncendiary + completetime: 2 + materials: + Plastic: 20 + +- type: latheRecipe + id: CartridgeLightRifleIncendiary + result: CartridgeLightRifleIncendiary + completetime: 2 + materials: + Plastic: 20 + +- type: latheRecipe + id: CartridgeRifleIncendiary + result: CartridgeRifleIncendiary + completetime: 2 + materials: + Plastic: 15 + +- type: latheRecipe + id: MagazineBoxPistolIncendiary + result: MagazineBoxPistolIncendiary + completetime: 5 + materials: + Plastic: 650 + +- type: latheRecipe + id: MagazineBoxMagnumIncendiary + result: MagazineBoxMagnumIncendiary + completetime: 5 + materials: + Plastic: 1250 + +- type: latheRecipe + id: MagazineBoxLightRifleIncendiary + result: MagazineBoxLightRifleIncendiary + completetime: 5 + materials: + Plastic: 1800 + +- type: latheRecipe + id: MagazineBoxRifleIncendiary + result: MagazineBoxRifleIncendiary + completetime: 5 + materials: + Plastic: 950 diff --git a/Resources/Prototypes/Research/arsenal.yml b/Resources/Prototypes/Research/arsenal.yml new file mode 100644 index 0000000000..64f8dc3401 --- /dev/null +++ b/Resources/Prototypes/Research/arsenal.yml @@ -0,0 +1,145 @@ +# Tier 1 + +- type: technology + id: SalvageWeapons + name: research-technology-salvage-weapons + icon: + sprite: Objects/Weapons/Guns/Basic/kinetic_accelerator.rsi + state: gun + discipline: Arsenal + tier: 1 + cost: 10000 + recipeUnlocks: + - WeaponProtoKineticAccelerator + # These are roundstart but not replenishable for salvage + - WeaponCrusher + - WeaponCrusherDagger + +- type: technology + id: DraconicMunitions + name: research-technology-draconic-munitions + icon: + sprite: Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi + state: incendiarydisplay + discipline: Arsenal + tier: 1 + cost: 10000 + recipeUnlocks: + - ShellShotgunIncendiary + - CartridgePistolIncendiary + - CartridgeMagnumIncendiary + - CartridgeLightRifleIncendiary + - CartridgeRifleIncendiary + - MagazineBoxPistolIncendiary + - MagazineBoxMagnumIncendiary + - MagazineBoxLightRifleIncendiary + - MagazineBoxRifleIncendiary + +- type: technology + id: ExplosiveTechnology + name: research-technology-explosive-technology + icon: + sprite: Objects/Devices/payload.rsi + state: payload-explosive-armed + discipline: Arsenal + tier: 1 + cost: 7500 + recipeUnlocks: + - Signaller + - SignalTrigger + - VoiceTrigger + - TimerTrigger + - FlashPayload + - ExplosivePayload + +- type: technology + id: AdvancedLaserManipulation + name: research-technology-advanced-laser-manipulation + icon: + sprite: Objects/Weapons/Guns/Battery/advancedlasergun.rsi + state: icon + discipline: Arsenal + tier: 1 + cost: 10000 + recipeUnlocks: + - WeaponLaserCarbine + - WeaponAdvancedLaser + +- type: technology + id: NonlethalAmmunition + name: research-technology-nonlethal-ammunition + icon: + sprite: Objects/Weapons/Guns/Ammunition/Casings/shotgun_shell.rsi + state: beanbag + discipline: Arsenal + tier: 1 + cost: 7500 + recipeUnlocks: + - ShellShotgunBeanbag + - CartridgePistolRubber + - CartridgeMagnumRubber + - CartridgeLightRifleRubber + - CartridgeRifleRubber + - MagazineBoxPistolRubber + - MagazineBoxMagnumRubber + - MagazineBoxLightRifleRubber + - MagazineBoxRifleRubber + +# Tier 2 + +- type: technology + id: OptimizedBallistics + name: research-technology-optimized-ballistics + icon: + sprite: Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi + state: hvdisplay + discipline: Arsenal + tier: 2 + cost: 7500 + recipeUnlocks: + - CartridgePistolHighVelocity + - CartridgeMagnumHighVelocity + - CartridgeLightRifleHighVelocity + - CartridgeRifleHighVelocity + - MagazineBoxPistolHighVelocity + - MagazineBoxMagnumHighVelocity + - MagazineBoxLightRifleHighVelocity + - MagazineBoxRifleHighVelocity + +- type: technology + id: ConcentratedLaserWeaponry + name: research-technology-concentrated-laser-weaponry + icon: + sprite: Objects/Weapons/Guns/Battery/laser_cannon.rsi + state: icon + discipline: Arsenal + tier: 2 + cost: 10000 + recipeUnlocks: + - WeaponLaserCannon + +- type: technology + id: WaveParticleHarnessing + name: research-technology-wave-particle-harnessing + icon: + sprite: Objects/Weapons/Guns/Battery/xray.rsi + state: icon + discipline: Arsenal + tier: 2 + cost: 10000 + recipeUnlocks: + - WeaponXrayCannon + +# Tier 3 + +- type: technology + id: HandheldElectricalPropulsion + name: research-technology-handheld-electrical-propulsion + icon: + sprite: Objects/Weapons/Guns/Battery/taser.rsi + state: icon + discipline: Arsenal + tier: 3 + cost: 15000 + recipeUnlocks: + - WeaponTaser diff --git a/Resources/Prototypes/Research/disciplines.yml b/Resources/Prototypes/Research/disciplines.yml index bd39059fbd..7ce290d23c 100644 --- a/Resources/Prototypes/Research/disciplines.yml +++ b/Resources/Prototypes/Research/disciplines.yml @@ -22,6 +22,18 @@ 2: 0.75 3: 0.75 +- type: techDiscipline + id: Arsenal + name: research-discipline-arsenal + color: "#dc373b" + icon: + sprite: Interface/Misc/research_disciplines.rsi + state: arsenal + tierPrerequisites: + 1: 0 + 2: 0.75 + 3: 0.75 + - type: techDiscipline id: Experimental name: research-discipline-experimental diff --git a/Resources/Prototypes/Research/experimental.yml b/Resources/Prototypes/Research/experimental.yml index c2e96fd0a7..4dfff7259a 100644 --- a/Resources/Prototypes/Research/experimental.yml +++ b/Resources/Prototypes/Research/experimental.yml @@ -19,22 +19,6 @@ - Drone - ExosuitFabricatorMachineCircuitboard -- type: technology - id: SignallingTech - name: research-technology-signalling-tech - icon: - sprite: Objects/Devices/signaller.rsi - state: signaller - discipline: Experimental - tier: 1 - cost: 7500 - recipeUnlocks: - - Signaller - - SignalTrigger - - VoiceTrigger - - TimerTrigger - - SignalTimerElectronics - - type: technology id: BasicAnomalousResearch name: research-technology-basic-anomalous-research diff --git a/Resources/Prototypes/Research/industrial.yml b/Resources/Prototypes/Research/industrial.yml index 21192133c8..0061d78c3d 100644 --- a/Resources/Prototypes/Research/industrial.yml +++ b/Resources/Prototypes/Research/industrial.yml @@ -1,20 +1,5 @@ # Tier 1 -- type: technology - id: SalvageWeapons - name: research-technology-salvage-weapons - icon: - sprite: Objects/Weapons/Guns/Basic/kinetic_accelerator.rsi - state: gun - discipline: Industrial - tier: 1 - cost: 10000 - recipeUnlocks: - - WeaponProtoKineticAccelerator - # These are roundstart but not replenishable for salvage - - WeaponCrusher - - WeaponCrusherDagger - - type: technology id: SalvageEquipment name: research-technology-salvage-equipment diff --git a/Resources/Textures/Interface/Misc/research_disciplines.rsi/arsenal.png b/Resources/Textures/Interface/Misc/research_disciplines.rsi/arsenal.png new file mode 100644 index 0000000000000000000000000000000000000000..1bb171df85e4ff7635c44e5ac38307d7af9cb15f GIT binary patch literal 160 zcmeAS@N?(olHy`uVBq!ia0vp^93afW1|*O0@9PFqjKx9jP7LeL$-D$|qC8z3LnNjq zrz9jKL?|!&IiHc6qq21F#KPVg&+3_76?ZK7)TzuPx#XK+(vs wbFVB{H>_$payZ2B1VtnBR7VLH1VIo0?&7CYC8K-JF8}}l07*qoM6N<$g67?MQUCw| literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/meta.json index d94e6c23c1..787a519c84 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/meta.json @@ -22,6 +22,9 @@ { "name": "hv" }, + { + "name": "incendiary" + }, { "name": "practice" }, diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/incendiary.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/incendiary.png new file mode 100644 index 0000000000000000000000000000000000000000..d4d581f5bbdf8f4e95f8d6749deed9d475644d7a GIT binary patch literal 147 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}zMd|QArY;~ z2@zopr09i;aA^-pY literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/meta.json index 5473222995..8b856ddf13 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/meta.json @@ -22,6 +22,9 @@ { "name": "hv" }, + { + "name": "incendiary" + }, { "name": "practice" }, diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi/hvdisplay.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi/hvdisplay.png new file mode 100644 index 0000000000000000000000000000000000000000..f83bd2db9756302048a0df80e5a3f3dcb2c26a9c GIT binary patch literal 456 zcmV;(0XP1MP)Px$f=NU{R9J=Wk}*gEQ5eU6hBOAz=3ui_bZybnO)XKAE>5;MNP`a15IO`7x#-|@ z5Jp2w4Pr<`1cC%E*+EzkffU*%4!Sg5lgF8zckfUlxc~Ov$NPT2_wj)nH*Wqoo^i!W zrDD5L{yMG!?C<18ddjkF`p#>cU;&o`eoK+52pHi2q9QYsgol0IArUFyXFD!yQxO;k zA4GlmuR!t2%c zkVtQCjeNG_2o4rYSS%#9Xe0!LXw^=J;Pq-7&*~oc4{!P}MB$bK0F9?d0G3t`SzbgJ z8Ndh0ocAazVsKjmW+KYjrCw9tzep*k!f+u0qloe6jb`6594wZw(d?sKsblL$$63d4 yu$aK0c{-KQ0HQ%@qHs$AGZEvR8#iwLeZB#J>e8q+vdqE&0000Px#>q$gGR9J=WlD`UqP!xxMMx!)Dw0T8nbBe|qgrK#@=mC6*7Kxx2X$=CG#{R9* z(rt@!vE7EyEVJ~g)NsD(a>4U`R}MfB#E+3gKC*2)a>q|+4**!b7MW=nM(nJzNWeR} z!r1-Hd2C1_0bw}+qzx(MDOVjckSUBoVGPsR+$$vDlicUX`PVr@0dev})e2slL=Fh< zKt~=+a2~?2IE@_0xC5$VO0T~@EMIT7==Zw$FX3Q##ct(BLek2G19VM>HItq~!a+&p z!U2ASuE}sKO-x1?A$g_%0BE-wSS}_o!!80;700000NkvXXu0mjf DM^Jtd literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi/incendiarydisplay.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi/incendiarydisplay.png new file mode 100644 index 0000000000000000000000000000000000000000..1d8de97957ef2eb23d269a003d60aa48d14e6362 GIT binary patch literal 472 zcmV;}0Vn>6P)Px$l1W5CR9J=WmcL5^VHn3hiZn$-L|f<5WJO9#R96R~V=Xpoi?bBb-{24uI61Y~ z(wY>K1TLu&Hbfy_))47pOVis>+L=Gj_fTrM?{s%B_k2F@!*jd`cI?>s<2bCmluoDH zp6Rb|0zjFZXsfAdTGv`GD*~P1Q;PC+t?OMyh9Y2u1IUUv2MKrAc3VWI6ou2Xb1@Ww zUhqbqbltR$C4p}6^7w%i94yShj^86zMh~I(12lqV;2_z79lu8e)<&B5?%Hl!>y7Yy z;fBq?`e24I8dAlga)%c5l89Hi&(+&RWZ``aL_?}ra%I@q3scFa=pKERZz;Adi z^V}j*AM=rjS1rN8WC)`nRYbyDz!sHktOcISJmZ+(=IZ*PxeHl1n4AUCkSdlJrU96l z^8qkYjs7x@HzkPx$9!W$&R9J=Wld(#}Kpcm^h^vE>P{~csO+#KFAh=n#K0y)cA{1Mnp|$U!xT((} zS{Lbh0YMO~WG$SF7tV&1-Wdn+z9n}#^8bBz{|k6L9*^h06WD&x=^PU!O{Vux07OX> zfVYoV1#on*U#gj=X=S}lTLCj1D8{{h7l51FyGoH-1k7+vuisUA+-@IQiC7D)3OCUr zo(!w&;nij>;GnOe&!tRBv2({zVmoIe~M3ODRD>h?-CXO0000 Date: Sun, 18 Jun 2023 17:57:53 -0400 Subject: [PATCH 332/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 26 +++++++++++++++----------- 1 file changed, 15 insertions(+), 11 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 408bbdebb5..a34b9d7e7f 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,15 +1,4 @@ Entries: -- author: lzk - changes: - - {message: 'Syndicate has provided cheap top-tech disguise glasses, the outlaw - glasses, to it''s agents.', type: Add} - id: 3534 - time: '2023-04-24T19:55:13.0000000+00:00' -- author: metalgearsloth - changes: - - {message: 'Spreaders (kudzu, puddles, smoke) can now travel across docks.', type: Add} - id: 3535 - time: '2023-04-24T20:04:50.0000000+00:00' - author: lzk228 changes: - {message: NT added appraisal tool to cargodrobe and cargo lockers, type: Tweak} @@ -2920,3 +2909,18 @@ Entries: - {message: Command role requirements have been modified., type: Tweak} id: 4033 time: '2023-06-18T21:53:05.0000000+00:00' +- author: Wirdal + changes: + - {message: Changed fuel consumption for weldable things to be higher in general., + type: Tweak} + id: 4034 + time: '2023-06-18T21:56:09.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: Added the new Arsenal research discipline., type: Add} + - {message: Added incendiary ammunition variants., type: Add} + - {message: Salvage Weapons and Signalling Tech are now part of the Arsenal discipline., + type: Tweak} + - {message: Reduced taser shot count from 10 down to 5., type: Tweak} + id: 4035 + time: '2023-06-18T21:56:49.0000000+00:00' From 8411739e007fdcc3ca9c03299289c92281093704 Mon Sep 17 00:00:00 2001 From: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> Date: Sun, 18 Jun 2023 18:35:19 -0400 Subject: [PATCH 333/474] Fix secfab being able to print protolathe items (#17443) --- Content.Client/Lathe/UI/LatheMenu.xaml.cs | 7 +- Content.Server/Lathe/LatheSystem.cs | 18 ++- Content.Shared/Lathe/LatheComponent.cs | 2 +- .../Components/TechnologyDatabaseComponent.cs | 3 +- .../Entities/Structures/Machines/lathe.yml | 126 +++++++----------- 5 files changed, 66 insertions(+), 90 deletions(-) diff --git a/Content.Client/Lathe/UI/LatheMenu.xaml.cs b/Content.Client/Lathe/UI/LatheMenu.xaml.cs index fd3319c434..7a1a4f08f3 100644 --- a/Content.Client/Lathe/UI/LatheMenu.xaml.cs +++ b/Content.Client/Lathe/UI/LatheMenu.xaml.cs @@ -1,4 +1,5 @@ -using System.Text; +using System.Linq; +using System.Text; using Content.Shared.Lathe; using Content.Shared.Materials; using Content.Shared.Research.Prototypes; @@ -53,7 +54,7 @@ public LatheMenu(LatheBoundUserInterface owner) if (_entityManager.TryGetComponent(owner.Lathe, out var latheComponent)) { - if (latheComponent.DynamicRecipes == null) + if (!latheComponent.DynamicRecipes.Any()) { ServerListButton.Visible = false; ServerSyncButton.Visible = false; @@ -132,7 +133,7 @@ public void PopulateRecipes(EntityUid lathe) sb.Append('\n'); var adjustedAmount = SharedLatheSystem.AdjustMaterial(amount, prototype.ApplyMaterialDiscount, component.MaterialUseMultiplier); - + sb.Append(adjustedAmount); sb.Append(' '); sb.Append(Loc.GetString(proto.Name)); diff --git a/Content.Server/Lathe/LatheSystem.cs b/Content.Server/Lathe/LatheSystem.cs index 25b5dcbb81..d3fa6d23cd 100644 --- a/Content.Server/Lathe/LatheSystem.cs +++ b/Content.Server/Lathe/LatheSystem.cs @@ -53,13 +53,14 @@ public override void Initialize() public override void Update(float frameTime) { - foreach (var (comp, lathe) in EntityQuery()) + var query = EntityQueryEnumerator(); + while(query.MoveNext(out var uid, out var comp, out var lathe)) { if (lathe.CurrentRecipe == null) continue; if ( _timing.CurTime - comp.StartTime >= comp.ProductionLength) - FinishProducing(comp.Owner, lathe); + FinishProducing(uid, lathe); } } @@ -108,9 +109,7 @@ public List GetAvailableRecipes(EntityUid uid, LatheComponent component) public List GetAllBaseRecipes(LatheComponent component) { - return component.DynamicRecipes == null - ? component.StaticRecipes - : component.StaticRecipes.Union(component.DynamicRecipes).ToList(); + return component.StaticRecipes.Union(component.DynamicRecipes).ToList(); } public bool TryAddToQueue(EntityUid uid, LatheRecipePrototype recipe, LatheComponent? component = null) @@ -191,10 +190,15 @@ public void UpdateUserInterfaceState(EntityUid uid, LatheComponent? component = private void OnGetRecipes(EntityUid uid, TechnologyDatabaseComponent component, LatheGetRecipesEvent args) { - if (uid != args.Lathe || !TryComp(uid, out var latheComponent) || latheComponent.DynamicRecipes == null) + if (uid != args.Lathe || !TryComp(uid, out var latheComponent)) return; - args.Recipes = args.Recipes.Union(component.UnlockedRecipes.Where(r => latheComponent.DynamicRecipes.Contains(r))).ToList(); + foreach (var recipe in latheComponent.DynamicRecipes) + { + if (!component.UnlockedRecipes.Contains(recipe)) + continue; + args.Recipes.Add(recipe); + } } private void OnMaterialAmountChanged(EntityUid uid, LatheComponent component, ref MaterialAmountChangedEvent args) diff --git a/Content.Shared/Lathe/LatheComponent.cs b/Content.Shared/Lathe/LatheComponent.cs index 4cfd94c80f..15c8b44c7f 100644 --- a/Content.Shared/Lathe/LatheComponent.cs +++ b/Content.Shared/Lathe/LatheComponent.cs @@ -20,7 +20,7 @@ public sealed class LatheComponent : Component /// All of the recipes that the lathe is capable of researching /// [DataField("dynamicRecipes", customTypeSerializer: typeof(PrototypeIdListSerializer))] - public readonly List? DynamicRecipes; + public readonly List DynamicRecipes = new(); /// /// The lathe's construction queue diff --git a/Content.Shared/Research/Components/TechnologyDatabaseComponent.cs b/Content.Shared/Research/Components/TechnologyDatabaseComponent.cs index 28999087c6..b9936956ad 100644 --- a/Content.Shared/Research/Components/TechnologyDatabaseComponent.cs +++ b/Content.Shared/Research/Components/TechnologyDatabaseComponent.cs @@ -1,3 +1,4 @@ +using Content.Shared.Lathe; using Content.Shared.Research.Prototypes; using Content.Shared.Research.Systems; using Robust.Shared.GameStates; @@ -6,7 +7,7 @@ namespace Content.Shared.Research.Components; -[RegisterComponent, NetworkedComponent, Access(typeof(SharedResearchSystem)), AutoGenerateComponentState] +[RegisterComponent, NetworkedComponent, Access(typeof(SharedResearchSystem), typeof(SharedLatheSystem)), AutoGenerateComponentState] public sealed partial class TechnologyDatabaseComponent : Component { /// diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index 5bd4c087b2..db34becbb9 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -1,26 +1,11 @@ - type: entity + id: BaseLathe parent: [ BaseMachinePowered, ConstructibleMachine ] - id: Autolathe - name: autolathe - description: It produces items using metal and glass. + abstract: true + name: lathe components: - - type: Sprite - sprite: Structures/Machines/autolathe.rsi - snapCardinals: true - layers: - - state: icon - map: ["enum.LatheVisualLayers.IsRunning"] - - state: unlit - shader: unshaded - map: ["enum.PowerDeviceVisualLayers.Powered"] - - state: inserting - map: ["enum.MaterialStorageVisualLayers.Inserting"] - - state: panel - map: ["enum.WiresVisualLayers.MaintenancePanel"] - type: Appearance - type: WiresVisuals - - type: Physics - bodyType: Static - type: Fixtures fixtures: fix1: @@ -31,7 +16,9 @@ mask: - MachineMask layer: - - MachineLayer + - MachineLayer + - type: Lathe + - type: MaterialStorage - type: Destructible thresholds: - trigger: @@ -42,14 +29,6 @@ node: machineFrame - !type:DoActsBehavior acts: ["Destruction"] - - type: Machine - board: AutolatheMachineCircuitboard - - type: MaterialStorage - whitelist: - tags: - - Sheet - - RawMaterial - - Ingot - type: WiresPanel - type: Wires BoardName: "Autolathe" @@ -64,6 +43,38 @@ - type: Transform anchored: true - type: Pullable + - type: StaticPrice + price: 800 + - type: ResearchClient + - type: TechnologyDatabase + +- type: entity + id: Autolathe + parent: BaseLathe + name: autolathe + description: It produces items using metal and glass. + components: + - type: Sprite + sprite: Structures/Machines/autolathe.rsi + snapCardinals: true + layers: + - state: icon + map: ["enum.LatheVisualLayers.IsRunning"] + - state: unlit + shader: unshaded + map: ["enum.PowerDeviceVisualLayers.Powered"] + - state: inserting + map: ["enum.MaterialStorageVisualLayers.Inserting"] + - state: panel + map: ["enum.WiresVisualLayers.MaintenancePanel"] + - type: Machine + board: AutolatheMachineCircuitboard + - type: MaterialStorage + whitelist: + tags: + - Sheet + - RawMaterial + - Ingot - type: Lathe idleState: icon runningState: building @@ -111,12 +122,10 @@ - SubstationMachineCircuitboard - CellRechargerCircuitboard - WeaponCapacitorRechargerCircuitboard - - type: StaticPrice - price: 800 - type: entity - parent: [ BaseMachinePowered, ConstructibleMachine ] id: Protolathe + parent: BaseLathe name: protolathe description: Converts raw materials into useful objects. components: @@ -133,57 +142,17 @@ map: ["enum.MaterialStorageVisualLayers.Inserting"] - state: panel map: ["enum.WiresVisualLayers.MaintenancePanel"] - - type: Appearance - - type: WiresVisuals - - type: Physics - bodyType: Static - - type: Fixtures - fixtures: - fix1: - shape: - !type:PhysShapeAabb - bounds: "-0.4,-0.4,0.4,0.4" - density: 190 - mask: - - MachineMask - layer: - - MachineLayer - - type: ResearchClient - - type: Destructible - thresholds: - - trigger: - !type:DamageTrigger - damage: 100 - behaviors: - - !type:ChangeConstructionNodeBehavior - node: machineFrame - - !type:DoActsBehavior - acts: ["Destruction"] - type: Machine board: ProtolatheMachineCircuitboard - - type: WiresPanel - type: Wires BoardName: "Protolathe" LayoutId: Protolathe - - type: TechnologyDatabase - type: MaterialStorage whitelist: tags: - Sheet - RawMaterial - Ingot - - type: ActivatableUI - key: enum.LatheUiKey.Key #Yes only having 1 of them here doesn't break anything - - type: ActivatableUIRequiresPower - - type: UserInterface - interfaces: - - key: enum.LatheUiKey.Key - type: LatheBoundUserInterface - - key: enum.ResearchClientUiKey.Key - type: ResearchClientBoundUserInterface - - type: Transform - anchored: true - - type: Pullable - type: Lathe idleState: icon runningState: building @@ -257,8 +226,8 @@ - JawsOfLife - type: entity - parent: Protolathe id: CircuitImprinter + parent: BaseLathe name: circuit imprinter description: Prints circuit boards for machines. components: @@ -351,8 +320,8 @@ - Ingot - type: entity - parent: Protolathe id: ExosuitFabricator + parent: BaseLathe name: exosuit fabricator description: Creates parts for robotics and other mechanical needs components: @@ -405,10 +374,9 @@ guides: - Robotics - - type: entity - parent: Protolathe id: SecurityTechFab + parent: BaseLathe name: security techfab description: Prints equipment for use by security crew. components: @@ -497,8 +465,8 @@ - Ingot - type: entity - parent: Protolathe id: MedicalTechFab + parent: BaseLathe name: medical techfab description: Prints equipment for use by the medbay. components: @@ -559,7 +527,7 @@ board: MedicalTechFabCircuitboard - type: entity - parent: Autolathe + parent: BaseLathe id: UniformPrinter name: uniform printer description: Prints new or replacement uniforms. @@ -678,7 +646,7 @@ - Ingot - type: entity - parent: Autolathe + parent: BaseLathe id: OreProcessor name: ore processor description: It produces sheets and ingots using ores. @@ -704,6 +672,8 @@ tags: - Ore - type: Lathe + idleState: icon + runningState: building staticRecipes: - SheetSteel30 - SheetGlass30 @@ -717,7 +687,7 @@ - MaterialBananium1 - type: entity - parent: Autolathe + parent: BaseLathe id: Sheetifier name: sheet-meister 2000 description: A very sheety machine. From 82d54d1a11049e399512a64d2b51c9d36dd791a0 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 18 Jun 2023 18:36:23 -0400 Subject: [PATCH 334/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index a34b9d7e7f..85a3823bf2 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: lzk228 - changes: - - {message: NT added appraisal tool to cargodrobe and cargo lockers, type: Tweak} - id: 3536 - time: '2023-04-24T20:44:10.0000000+00:00' - author: Kit0vras changes: - {message: The security holoprojector sprite has been changed., type: Tweak} @@ -2924,3 +2919,9 @@ Entries: - {message: Reduced taser shot count from 10 down to 5., type: Tweak} id: 4035 time: '2023-06-18T21:56:49.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: The security techfab no longer contains all the protolathe recipes., + type: Fix} + id: 4036 + time: '2023-06-18T22:35:19.0000000+00:00' From 7ea7e3f49d9cb24ef9454da509a2138a4bb5cf80 Mon Sep 17 00:00:00 2001 From: Vordenburg <114301317+Vordenburg@users.noreply.github.com> Date: Sun, 18 Jun 2023 18:38:27 -0400 Subject: [PATCH 335/474] Set marker drawdepth to Overdoors (#17438) --- Resources/Prototypes/Entities/Markers/marker_base.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/Resources/Prototypes/Entities/Markers/marker_base.yml b/Resources/Prototypes/Entities/Markers/marker_base.yml index 7613913edb..ecd4cf5004 100644 --- a/Resources/Prototypes/Entities/Markers/marker_base.yml +++ b/Resources/Prototypes/Entities/Markers/marker_base.yml @@ -10,6 +10,7 @@ - type: Clickable - type: InteractionOutline - type: Sprite + drawdepth: Overdoors sprite: Markers/cross.rsi # If serialization was cool this would work. # layers: From c8930106b6e26324a2dffb4d371ea7ccfc0c33f9 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Mon, 19 Jun 2023 01:13:53 +0200 Subject: [PATCH 336/474] CE belt in locker again, CE doesn't spawn with it. (#17445) Better way to do #17430 Yes I know this means the CE spawns with a regular filled toolbelt they'll just throw away at round start. Oh well. --- Resources/Prototypes/Catalog/Fills/Lockers/heads.yml | 1 + Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml index f13444efea..d80fad39e8 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml @@ -158,6 +158,7 @@ contents: - id: ClothingNeckCloakCe - id: ClothingEyesGlassesMeson + - id: ClothingBeltChiefEngineerFilled - id: ClothingHeadHatBeretEngineering - id: ClothingHandsGlovesColorYellow - id: CigarCase diff --git a/Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml b/Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml index 461600d125..c81c19f7de 100644 --- a/Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml +++ b/Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml @@ -37,7 +37,7 @@ id: CEPDA eyes: ClothingEyesGlassesMeson ears: ClothingHeadsetCE - belt: ClothingBeltChiefEngineerFilled + belt: ClothingBeltUtilityEngineering innerclothingskirt: ClothingUniformJumpskirtChiefEngineer satchel: ClothingBackpackSatchelChiefEngineerFilled duffelbag: ClothingBackpackDuffelChiefEngineerFilled From 9797a0d42ec810f605898bfe313a7bb4eff2875d Mon Sep 17 00:00:00 2001 From: Nim <128169402+Nimfar11@users.noreply.github.com> Date: Mon, 19 Jun 2023 02:14:31 +0300 Subject: [PATCH 337/474] ert and death squad gas mask (#17444) --- .../Entities/Clothing/Masks/masks.yml | 32 ++++++++++++++++++ .../Roles/Jobs/Fun/emergencyresponseteam.yml | 8 ++--- .../Roles/Jobs/Fun/misc_startinggear.yml | 2 +- .../Clothing/Mask/ert.rsi/equipped-MASK.png | Bin 0 -> 776 bytes .../Textures/Clothing/Mask/ert.rsi/icon.png | Bin 0 -> 391 bytes .../Clothing/Mask/ert.rsi/inhand-left.png | Bin 0 -> 439 bytes .../Clothing/Mask/ert.rsi/inhand-right.png | Bin 0 -> 432 bytes .../Textures/Clothing/Mask/ert.rsi/meta.json | 26 ++++++++++++++ .../Mask/squadron.rsi/equipped-MASK.png | Bin 0 -> 842 bytes .../Clothing/Mask/squadron.rsi/icon.png | Bin 0 -> 529 bytes .../Mask/squadron.rsi/inhand-left.png | Bin 0 -> 451 bytes .../Mask/squadron.rsi/inhand-right.png | Bin 0 -> 470 bytes .../Clothing/Mask/squadron.rsi/meta.json | 26 ++++++++++++++ 13 files changed, 89 insertions(+), 5 deletions(-) create mode 100644 Resources/Textures/Clothing/Mask/ert.rsi/equipped-MASK.png create mode 100644 Resources/Textures/Clothing/Mask/ert.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Mask/ert.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Mask/ert.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Mask/ert.rsi/meta.json create mode 100644 Resources/Textures/Clothing/Mask/squadron.rsi/equipped-MASK.png create mode 100644 Resources/Textures/Clothing/Mask/squadron.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Mask/squadron.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Mask/squadron.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Mask/squadron.rsi/meta.json diff --git a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml index e9329d9412..cc78985790 100644 --- a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml +++ b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml @@ -262,6 +262,38 @@ - type: Clothing sprite: Clothing/Mask/swat.rsi +- type: entity + parent: ClothingMaskGasExplorer + id: ClothingMaskGasERT + name: ert gas mask + description: The gas mask of the elite squad of the ERT. + components: + - type: Sprite + sprite: Clothing/Mask/ert.rsi + - type: Clothing + sprite: Clothing/Mask/ert.rsi + - type: FlashImmunity + - type: EyeProtection + protectionTime: 5 + +- type: entity + parent: ClothingMaskGasERT + id: ClothingMaskGasDeathSquad + name: death squad gas mask + description: A unique gas mask for the NT's most elite squad. + components: + - type: Sprite + sprite: Clothing/Mask/squadron.rsi + - type: Clothing + sprite: Clothing/Mask/squadron.rsi + - type: Armor + modifiers: + coefficients: + Blunt: 0.80 + Slash: 0.80 + Piercing: 0.90 + Heat: 0.90 + - type: entity parent: ClothingMaskBase id: ClothingMaskRat diff --git a/Resources/Prototypes/Roles/Jobs/Fun/emergencyresponseteam.yml b/Resources/Prototypes/Roles/Jobs/Fun/emergencyresponseteam.yml index b877a24cee..3dbb6c18f3 100644 --- a/Resources/Prototypes/Roles/Jobs/Fun/emergencyresponseteam.yml +++ b/Resources/Prototypes/Roles/Jobs/Fun/emergencyresponseteam.yml @@ -33,7 +33,7 @@ jumpsuit: ClothingUniformJumpsuitERTLeader back: ClothingBackpackERTLeaderFilled shoes: ClothingShoesBootsMag - mask: ClothingMaskBreath + mask: ClothingMaskGasERT eyes: ClothingEyesGlassesSecurity gloves: ClothingHandsGlovesColorBlack outerClothing: ClothingOuterHardsuitERTLeader @@ -78,7 +78,7 @@ jumpsuit: ClothingUniformJumpsuitERTEngineer back: ClothingBackpackERTEngineerFilled shoes: ClothingShoesBootsMagAdv - mask: ClothingMaskBreath + mask: ClothingMaskGasERT eyes: ClothingEyesGlassesMeson gloves: ClothingHandsGlovesColorYellow outerClothing: ClothingOuterHardsuitERTEngineer @@ -123,7 +123,7 @@ jumpsuit: ClothingUniformJumpsuitERTSecurity back: ClothingBackpackERTSecurityFilled shoes: ClothingShoesBootsMag - mask: ClothingMaskBreath + mask: ClothingMaskGasERT eyes: ClothingEyesGlassesSecurity gloves: ClothingHandsGlovesColorBlack outerClothing: ClothingOuterHardsuitERTSecurity @@ -169,7 +169,7 @@ jumpsuit: ClothingUniformJumpsuitERTMedic back: ClothingBackpackERTMedicalFilled shoes: ClothingShoesBootsMag - mask: ClothingMaskBreath + mask: ClothingMaskGasERT eyes: ClothingEyesHudMedical gloves: ClothingHandsGlovesColorBlack outerClothing: ClothingOuterHardsuitERTMedical diff --git a/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml b/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml index aae21134ad..79fb317924 100644 --- a/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml +++ b/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml @@ -40,7 +40,7 @@ equipment: jumpsuit: ClothingUniformJumpsuitDeathSquad back: ClothingBackpackDuffelSyndicateAmmo - mask: ClothingMaskBreath + mask: ClothingMaskGasDeathSquad eyes: ClothingEyesGlassesSecurity ears: ClothingHeadsetAltCommand gloves: ClothingHandsGlovesCombat diff --git a/Resources/Textures/Clothing/Mask/ert.rsi/equipped-MASK.png b/Resources/Textures/Clothing/Mask/ert.rsi/equipped-MASK.png new file mode 100644 index 0000000000000000000000000000000000000000..da0578fbf0fd1ef7b57a13939d19b6d6ff0a06b3 GIT binary patch literal 776 zcmV+j1NZ!iP)Px%!bwCyRCt{2nlWzMFcgOW6hc4^h3tiqp@QI0AXx-$<=QPb=-5;A7`;Kaj?D!! zXG<2t$Pxh^WTQeTFA;$N;ie7_1fyv^~^4r3rbScWIhpGMS)l+Xv~t2@#Lu*a@R;Tf}iZcq3!7y?6ka zOeRRvG+5tz2Q*Cs#u)DI?qH1RKdrSP`rb56)3@CY&{_}1eel`=&gI*Wx4<#5|79OI zzV8F0?*cc!F$P-ee(}bbV0|wGoKVIy)ax4Yw;1)hM#i(j_hWJO_6kK&z*-Aq49c?X zcVAHyLHb@tz*-9_CG-!CEXh!s5}D3mjDeIARaJQh;KTIi6#77eF*Z1Ij4^1fgN~t> z0qga8k1^I+YkM=?qUX^ZQ%t=B2-SCe&iSD4JE!*pob#?I3M>|je(dJ`4S>xX3JKyl z2?~~T{?{Lym$rCU$Zmz4+ZkC}YfL zss~Y)Px$K}keGR9J=Wl(CA!KomufONtQ^qD_bdf?aI4*;dQ_iv2jhVGGOD`vH=|DiAPJ zIVfZbAzR1<5er{f*k(>MGY@j_o0pq_$K&z*Gn26o=6T*f*6O+z>jh)Yi=tpQn+>(o z=>*VAn|K>*{*0n1o=)aZ8vroI0K=_^)zu}4#+B!JAIC8O)9DnqcjjH!4f|JLg(w5o zTCBAwrKsL3A|kRRqtOlL#hFF9z*;Mjl!s6$#btA0m8^(AZWD-!F+YZ8(-4-SsEJWu zL9h$p3-;f8f?dG%^GcRvx4M#Pi9?vCDM~5YZA(~&tk-M8GNj$MD5Xf#RHP>gVUi@h zGwHexW6Y2VSF56m`C*RM`Xz1A1hm!@Yc0p)aWG#lm$+ILRT4R1tv(2?qUctuic5-~}M$x3#azc`XBj$2}nhR-Z%#bw?%6s4dN(U6xea&GnOV|Kqlm;knGIO)Z9O ziYz(Xqo<@=TCC6Af9kdPLf^Fwt5%6IJj&bd94KO8Kd-U>-FL^zYqu(N6SbQ8z6)pP zmPhmd{T%#E5DA>Uc0+K_tGWYwGv6qmDZ5f~*WKgt7U}uj9J7`kjQ=JWvi$J(C0qLq zZZk2=t!;_C&v?$VMLwaf)fdli1?8EWtJEm_nyEFTH;v3iLwaGq0lQ-Od-)#8o-JaJAxv$+? zFvTfy+CmL36JO?~B5SrjEU;Mftk-t^B8_$Yi!0gH4^;PmJ}nu&*Y)=mr+cjPzp7tb z-`ua`blGG_jlpx7J>M_>UcC6^JtGD7kfjQK6Fl4a?yhNk{%p?c?Mg;f^(DLp#|~8U z3pRe2J2s;-=%13{!H*R!9SdF`v%mI0KH&OSE{7X$%T}!7T7F#k!^QdWYu-1@owl}; zSX;V(l3wixhpNiX4mi*d)SPnqxJ!2P_9Zur1&mjgl)RKY@p+HFV>idGZAULvv$gqX zeOrDDC}mmMWy@?h`Fev$HCx)!t$eAGY->wz*yJB7wX|}zkJ=H@tiI^~Bkt_gtD7br SG}r-*0tQc4KbLh*2~7Z^kinw> literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Mask/ert.rsi/meta.json b/Resources/Textures/Clothing/Mask/ert.rsi/meta.json new file mode 100644 index 0000000000..c46db45e2a --- /dev/null +++ b/Resources/Textures/Clothing/Mask/ert.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Nimfar11 (GitHub) for Space Station 14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-MASK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Mask/squadron.rsi/equipped-MASK.png b/Resources/Textures/Clothing/Mask/squadron.rsi/equipped-MASK.png new file mode 100644 index 0000000000000000000000000000000000000000..d87712442082daca23ebec61ef39b0896b91a386 GIT binary patch literal 842 zcmV-Q1GW5#P)Px&1W80eRCt{2n!#$+Kp4k=EpD9%+n_=MJq+^tQ5Z=ENnLH{J-zZmtmOyfbf5_(e;m6 zmeqg(!tr?Ad7KsX0a!)69-A z2LwTI?TPeBqra~d$I~hMO0A^tU9~8RYNZrm7!m{l)>@1)IOnLUs`oC4qNtAJm>>uk ze)`1alP6efxwyFKr0>-MS(epyc*r1n!QDr%aPEq`k6tl|USNlZy>~$~zA*-CZJWF? z=GuK9yb559A-FuEnhltpe`G6p&FuUm)oeg;dDI5d7seQpB*8g{F@~}%+wMz}q?5i^ z0UDwEKi;)PsAdE1|9IC1)+f$6thFemaL%V>-nLKn@2f*)S<2dGYXNNeBZ*B5|AP9mW2!bF8f*=TjAPD~*op*D!*4KQvv$M0c z?hN0Qey445t#$o!u^>%T(lq7eV)0i%eR7lf-UZNF*U#s3j;GVsj69xBc|M=7r3lOV z@Y^t5Mc=D!wAOW+rWj)=isIV6#ux1SRcMm@(+EwHgfI*_IXUr)!Mg(*TRKS+k|Y7Z z4iAYQzooj`^&QTe>S~wh@muWh5TK2tvC4h%w#Un|B+qlovLp;clv3W2n{xc)GcM8yIFDLG+z0x|M z31Ij9oYS41wH%ac4rwiGDy7!G4r$R^*XvvZ{A*o75ClOG1VIo4K@bE%5NAivR!s07*qoM6N<$f?IBu%K!iX literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Mask/squadron.rsi/icon.png b/Resources/Textures/Clothing/Mask/squadron.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..707d9c7c148284442182c926526a210eb593d024 GIT binary patch literal 529 zcmV+s0`C2ZP)Px$%Sl8*R9J=Wm9c8uKpe(@GHTETieyS9B?S$ot~G{2(2&8Chde_m9r_ZXL&we; zy5u_>jK;cb`ri)YR1c?^x@; z7)8ziqTOx-@bc`e(!cNS0?_aG zjha}ifubk?7GMSKNjNjD|gIOW`%nm!5yL03~4r;{>Ax%>wzm@+2-}kFZ9mfIg51e}X0WmvT(n_){d(eO721+x> zacD_d>0)+Nty@x7K~@=V6reQqJdYpA7XX4FpwsCP1OY&$mmwZK0KjB2VRrEetu=8R zGd?*Xj$;7kzdi$Im(p6dq3`>PtruJ5mpLsdx!B&O`K(EPnXh#t*3{J0{8R1#*Cx2c Tb(Gi%00000NkvXXu0mjfXs7HT literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Mask/squadron.rsi/inhand-left.png b/Resources/Textures/Clothing/Mask/squadron.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..70795a046567fcd668870291ee3bec5979515143 GIT binary patch literal 451 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D%zYdu{YLn`LH zy=CZqI6#E;LGsEZu1Q-i9lvd5VSlHzq~KhBLBR)eORLfsZ?t}JTY0cA*Q?~rlH>F2 zHSyD2`y!!8m+d_J(w9Y_c3jxKhgm=n222xrG?#u}Vtl<+<#3PT(rZ?G5$55{S=(*^Z zUaXPX6J=u_WJW4<-ZQ-7-VtB+aBtl8bE|m{6_|!(CNVQK)D<@0J9Io?{^IRBT=y58 zkbYwMJnVd+h^hSpahLLjYf{&uWXj$ptUdb6ZiVvsVvFYnv(K8fDSCdfUphtW^WNY$ z`|mFP)%SSEH|r@u(%tJluU*qvdTMjt_CGa0)GDvKEA@9Ez>2N2;tqD-S$;cqn7y;IvM~O@EhF>Cx9{AUb!z{Z*bX0Xh%n`2K4c7)w)Uc8g$71;=Qh)od-MaI9?|%kO)h*X7bZwopc{NiFHMgIL>W*8_ zo~^s=@}KihZBILKnA`3;^zk@%-7yu Date: Sun, 18 Jun 2023 19:15:35 -0400 Subject: [PATCH 338/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 85a3823bf2..1ed885156a 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,14 +1,4 @@ Entries: -- author: Kit0vras - changes: - - {message: The security holoprojector sprite has been changed., type: Tweak} - id: 3537 - time: '2023-04-25T11:58:35.0000000+00:00' -- author: EmoGarbage404 - changes: - - {message: Fixed artifacts getting negative point values, type: Fix} - id: 3538 - time: '2023-04-25T13:18:30.0000000+00:00' - author: Slava0135 changes: - {message: fixed hypospray "you feel prick" popup appearing to everyone., type: Fix} @@ -2925,3 +2915,15 @@ Entries: type: Fix} id: 4036 time: '2023-06-18T22:35:19.0000000+00:00' +- author: PJB3005 + changes: + - {message: 'Turning around from the previous change to the CE''s belt: the CE no + longer spawns with their special belt, instead it''s in their locker again.', + type: Tweak} + id: 4037 + time: '2023-06-18T23:13:53.0000000+00:00' +- author: Nimfar11 + changes: + - {message: Adds a gas mask for the ERT and death squadron., type: Add} + id: 4038 + time: '2023-06-18T23:14:32.0000000+00:00' From 9c1c7cabb361f72636c605f48639df3c3722fa55 Mon Sep 17 00:00:00 2001 From: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> Date: Sun, 18 Jun 2023 19:28:27 -0400 Subject: [PATCH 339/474] machine part resprite (#17447) --- .../Misc/stock_parts.rsi/adv_capacitor.png | Bin 340 -> 420 bytes .../stock_parts.rsi/advanced_matter_bin.png | Bin 369 -> 426 bytes .../stock_parts.rsi/bluespace_matter_bin.png | Bin 626 -> 627 bytes .../Misc/stock_parts.rsi/capacitor.png | Bin 277 -> 420 bytes .../Misc/stock_parts.rsi/femto_mani.png | Bin 363 -> 589 bytes .../Misc/stock_parts.rsi/matter_bin.png | Bin 293 -> 412 bytes .../Objects/Misc/stock_parts.rsi/meta.json | 192 +++--------------- .../Misc/stock_parts.rsi/micro_mani.png | Bin 254 -> 380 bytes .../Misc/stock_parts.rsi/nano_mani.png | Bin 262 -> 394 bytes .../Misc/stock_parts.rsi/pico_mani.png | Bin 314 -> 373 bytes .../stock_parts.rsi/quadratic_capacitor.png | Bin 334 -> 729 bytes .../Misc/stock_parts.rsi/super_capacitor.png | Bin 371 -> 419 bytes .../Misc/stock_parts.rsi/super_matter_bin.png | Bin 358 -> 397 bytes 13 files changed, 31 insertions(+), 161 deletions(-) diff --git a/Resources/Textures/Objects/Misc/stock_parts.rsi/adv_capacitor.png b/Resources/Textures/Objects/Misc/stock_parts.rsi/adv_capacitor.png index 1d136394f03ac186a1395daca2995f4ee0f46a2a..039817e37b9cb3f6c43fa5d8481ab2d2a50025d2 100644 GIT binary patch delta 395 zcmV;60d)S<0;B_wBYyx1a7bBm000ie000ie0hKEb8vpVQ!P zj5=V{0c1O1%JkL$LG+zFcNkPuRKQ|6nW2nyaRA72Ljz4XAI1iWlj;bP9e{2*G60E_ z>Ijk@019$s3t^5qf8jcYJWU(`0^Xjs49}jwfm;l7h?JxV!+*rdGsJ`IZa)lm z1jGRhV2eQjBu*+II~Tw#0|oik?WhiN^I^X3?~Z49`I5$I;MlP%4EB!RV9V}=r!lCkoCT+0@-%fob5W;&gBT2*j$aW{8>e3vS_(JhuNk$uNg(2iSN^GB8Yfh?7rq2Pn8d pWW>j(xdW&LMjbHffB|;^0MUey1+yW^IsgCw07*qoL1t|!O1!a651gbFm-vk(Q_9LIs_``3R-%CBH~RfoMLWP6>^ zYI3AsnLpd-W;4=&yXzWOFiI`gb!iRyD3#J0^znValH6c07z_r0Pa5fC#|8y;Q~&?~ M07*qoM6N<$g3-&5VgLXD diff --git a/Resources/Textures/Objects/Misc/stock_parts.rsi/advanced_matter_bin.png b/Resources/Textures/Objects/Misc/stock_parts.rsi/advanced_matter_bin.png index 3edc50d99aa1a70a2e6db2303c87a2991bbf8520..819275417bab0d14b6904c6877cf9435fb74a812 100644 GIT binary patch delta 401 zcmV;C0dD^B0;&U$BYyx1a7bBm000ie000ie0hKEb8vpVQ!P zj5=V{0mH)qQ>L%}k4r8mGnA304ggv1?P<#}aq@f&ITaNZg8E5v!2W&Hz&<_f(*WiR z^-g6lG|&XIuV24Hdk27kxVQ>~ff5&({fL2bK+pk4k6-zJ{(r)ChC6re;8izcS}%s! z*6oKWcL2xY2d9D0 zx9)=ZcNFgcEoT5*6dK~ouzJmAup>a0gV@;81<4Kofd@O~{~y`JXds{w@+2!9}3zH{4ByjhTF2Pn8d1RLbTwDP~M7BARxutVI_!SWzqBZmU9mJ{s& zSO~0`!hoM;ff`_VR7Rr?7<}KaFSicxkCW}015yANkvXXu0mjfQ#r0s delta 343 zcmV-d0jU0}1MvcoBYy!nNkljmGx6&jnGGVlut<24*64@(Qg0HQ;{*2x9VCX@(mom?0W?|<7vT?a5QFfe%e2QaX6 za^aK@jEG|R`TZNi=g(h=Hj`)v9NxEw!OK5@fq{X6AtF8ztD2ubf5O#L-2t{vE)3f? zZoun+^(&Ua)zUNyRxF&4R}D>~02#nS;M0fq4BIwtfG0{)Qa=n3oelAUjcZpkbWfQ^ zmR_njfbl;AgHXDJDD50jUs1+LO3FUGZx7LR0nupyYT$nc2FzUWpOJy#*7Mg4D;VZ8 pY}>ejHnkx#pk{ku6pVra2LMF0aVZ98|NZ~~002ovPDHLkV1nyqm*M~b diff --git a/Resources/Textures/Objects/Misc/stock_parts.rsi/bluespace_matter_bin.png b/Resources/Textures/Objects/Misc/stock_parts.rsi/bluespace_matter_bin.png index 90d4ed9e76d9d5619253738000b045714bafa285..ba244f3f29787b76c4d627848f663efbcc0c7d90 100644 GIT binary patch delta 615 zcmeyw@|k6Vc)bG$8v_Hws?5TBK#H@#BeIx*f$sqmQwU&?Rh7ifn@7YbTmc_p;UPfIl4 z`M|>20>w#N8?!Edc@pvPx7>@TPv$)Hoi}HR?oTEKKJI#k!U%?r!%Pk`VhoQqFxZD} z+96?H|Jr-$x99~DGixdtPcB)Rsz1R`KD@NmNl`<6qQTZj*@u75V>z=X_vW(i%$&RT z{u6W85@Xh3TpF};A@789{VojN4vT-zOLs`$Af9`1<9Ro>`o8-=*D;xyZ9Dt?xwu4I zVDX((r;4s_s`)3hseZ+|a?uZ>ddniVUwzl#v!J%<&t~IbPNC#E!Fn?9%J06Y3Yhy| z>p-PwZyD>`;tf{{lehCGFZh$CAU4}!VL@ts3y1jodMo|Ci>&sq%RX@T;e^UrHHY3= z78sN!=|`V97j@qJe)5rtLKcThZJ(bGUvTQrE*75i_it<8$~-$GLRPoEK3w41T=#?L z=Z4RHpUD>Ues6ed{lcv0q0g&lF;C2U z4X-yZel=BJ*YWuM56S<+{Iur(=V`RiVK|b=2n<%#P!(urZ2(C<{KfF{%UR#x*U~w0 zwGAozYHAx2mU-TtKmDBk_rh9-=7QRW+YIaYf4u+7*lZgkuQ2)iSH`bAkA5{oeSiM> x=d)|<5hmO19L}2piRZr(qz8HnZT69;OXk;vd$@?2>={G8TkMJ delta 614 zcmV-s0-62u1o8xs7k?lK1^@s6qMd$(0006xNklul1#`O786#nge-aJNf|O8LpaA2 zgYI0r8FIhHr@PDj-o5zVNd^oCgTY`h7!0dPt;mmvNaXd$aerKBy=D6AMZ}D`Xmop+ zjz<8HX%9uwK$hkIpd)V`o`NwK0PyKcD;<+<#$2=xPv889{)NB&c@*(0C4h(oV{W?9 z-Qy$trjOV?K6=px=E-2pEj0PRAqEu6@*l1oa?6?b^q5JW7+HgK`3HF3+&#-{avf zf@SUC;Vw$YvVB|rJ#H?~w1QB9^C8yGuK)m+wexCR_N|>?f%BpAy2?dxbJNDJ!FK>a zr}F~|{=l+613=pLy%R*wbHgxD4nox*hChMueg9&vntxyG7O-s_j4@0mb5WETivT!| z1I{^SGo4kJ>sPuiWI>Suya(qTK`_sLS=V8eeyt-Q7j_&ccg|!oN#|B^1gh|BAA#9y zA<7GKeI1n^fwKL|w?H+X>XJ5OWj?1}~`m=7&E9_S;g7Wp6SK<6uFk6MgFetSMR^?X?kcfnB+W_!pCFYz1 z0D_>r%~$Q$3Nm{gp^S8K0LXGf15G#|#s-O#>Ijk@fNnW50Ev_8 z2$CHD3UXu%VU9U};W~yqO&kCM-k!D$&z`@5TMToEl%xp5#DB>&cEI)PR~WW#KMZyR z!~qOoi$MS+PAVWf7r-n71^L$Ps1Bs511d_a89I74F!=fgV90IWya6n~bK6qdIRFH< zZ*61n^sa*QVZQF~j%RrJlE!J^*s&`N_Kx0Q%RoSGM-Iayk0~hfG<86A%`{LR{~s8L z83pUtZ-B|u&VKVQ!P47dXT;JJr%Z^%(-00000NkvXXt^-0~f^xd00ssI2 delta 249 zcmVru7ym)oz0$QAG2aku3drUmAm=D9XD~6fqtmittBtnEbyIMe+TT{39iF z1*U0=#+V53oQD)J#>5*i&od$d+z=7^zE3KV?F~e0H__#?J#vU_^YI{S+ui$i2fiSF zo=$`i@ZRH`V_jG7ZOb`fU(z24A<%Ul0K+h(tVl2L19=1!1+qbaw>i%WCD6(Zs*tXWK zA*R`C`_GYUMGJ#rLXn_N9fPkw+#sf3BB4=(|z>UY}3`M-m==KtLx7? zmW}}Hzs$}SJ#rEEpRY?_C?xtb_C3Q!j?G+R@25Rca$#NdX~vCpN!7DNZJk`}!kL^F zCjJ!cU}ZU!T(sxgwvWbauhxf3>WO8n-#cl6(*2DMQES;^&u_0;fB#w3xynkNho4^` zp0z!E`-)TVH6HxSxpHEjO``hu???TX>#g~iV$~G$?$Yv1trSXX_v=IT(9f5K|Q z+jjr`^lpRI4mK4>l%)6~S7Q=VAYaa0v<{y*{jdnN@wZid1L z2Fw6UWQ0gHTo&GG&u~Znz+Xlval!2TU&fSQ%=eBrx-7C>__{+(s&U>I_Kuo^Cl-WO yPkg_}USXbj!PNYjpSRg70F`R3JB?va4Rf!${Fei_UkC%!2ZN`ppUXO@geCx_?EK&W delta 349 zcmV-j0iyoR1nUBj7k?lK1^@s6qMd$(0003pNklFuNs zz@%G~R;wpb)K-_cUbp^dF4`~s3H+qpeq}m+=ON3S$40~Y5Q_A-I)F*HCi{nH-=5jL vf;;VhJYRoJI*R(%Pkq;YrIb=isXylvu_ui!E>rRM00000NkvXXu0mjf`9qx5 diff --git a/Resources/Textures/Objects/Misc/stock_parts.rsi/matter_bin.png b/Resources/Textures/Objects/Misc/stock_parts.rsi/matter_bin.png index b9257f20c75c179625b84fd7ae5c769d5f11c4af..1e0d4f86186e912fffefa03c761fffca9aeaf1b9 100644 GIT binary patch delta 385 zcmV-{0e=3a0-OVoB!3BTNLh0L01m_e01m_fl`9S#0003_Nklpb2JQzkY@G4gdjhaTNwGQ#A%^0fG)Vdi=`&^B1l&+<&=q2d}yr(|R$)wr)R6 zxdUL9gM!%K+nPZ`OPzu7y*fnlG6RE@qzKp|kQ(G52Sp7bM-$}$h z`FEb(0b0%gwkR~jmtpmq&0t4>EC;c%r3;cB00Iwo%KtyI^*O^su;mlLVy6uY7#N;? zgsTCC6bK+&zIt=pQoLD^Xa^{`KLi_8!#3kTL%RyZawGuqHF78rYdO&lfQ7(~8GkS= zhXHadC)xq95NK`5`hV;gB3`dw{|Jxg&6_uXX;LgF+5s?7T{Dd&!>R57T7Xdpj5=V{ f0izBWa0dVY^rDTfxqo2<00000NkvXXu0mjfJ1w2_ delta 266 zcmV+l0rmcz1Em6xB!BElL_t(|oMT`Z1*2dTjDnF47|GGp*wOVLn|OUi8Oi36qyc8} z+0&=7${U-SlI#$o6*hKs{l{f7Hir=F2qtP<&cFZ(AzaZ!mIG)Bh;{%heyOdNg;<5Q zPA+gZp+sowU6vNN&-+vfBfBr(WnIt&?1|s4U zv5Nov`IBU`hE5_J)D9@k$zmwY$s$WHS!n(YC~MvaK*y;3=9l3stvI@1Rapm9vB6qV88(Y?WIZz`#^_H Q00000NkvXXt^-0~f?VQv#{d8T diff --git a/Resources/Textures/Objects/Misc/stock_parts.rsi/meta.json b/Resources/Textures/Objects/Misc/stock_parts.rsi/meta.json index c150d2133a..c69c108731 100644 --- a/Resources/Textures/Objects/Misc/stock_parts.rsi/meta.json +++ b/Resources/Textures/Objects/Misc/stock_parts.rsi/meta.json @@ -8,12 +8,7 @@ "copyright": "Taken from https://github.com/tgstation/tgstation at 0d9c9a8233dfc3fc55edc538955a761a6328bee0", "states": [ { - "name": "adv_capacitor", - "delays": [ - [ - 1 - ] - ] + "name": "adv_capacitor" }, { "name": "adv_electrolite", @@ -40,20 +35,10 @@ "name": "adv_scan_module_static" }, { - "name": "advanced_matter_bin", - "delays": [ - [ - 1 - ] - ] + "name": "advanced_matter_bin" }, { - "name": "ansible_crystal", - "delays": [ - [ - 1 - ] - ] + "name": "ansible_crystal" }, { "name": "bluespace_electrolite", @@ -68,26 +53,18 @@ "name": "bluespace_matter_bin", "delays": [ [ + 0.3, + 0.1, 0.1, 0.1 ] ] }, { - "name": "capacitor", - "delays": [ - [ - 1 - ] - ] + "name": "capacitor" }, { - "name": "card_reader", - "delays": [ - [ - 1 - ] - ] + "name": "card_reader" }, { "name": "datadisk0", @@ -172,88 +149,45 @@ "name": "femto_mani", "delays": [ [ + 0.3, + 0.1, 0.1, 0.1 ] ] }, { - "name": "hdd1", - "delays": [ - [ - 1 - ] - ] + "name": "hdd1" }, { - "name": "hdd2", - "delays": [ - [ - 1 - ] - ] + "name": "hdd2" }, { - "name": "high_micro_laser", - "delays": [ - [ - 1 - ] - ] + "name": "high_micro_laser" }, { - "name": "hyperwave_filter", - "delays": [ - [ - 1 - ] - ] + "name": "hyperwave_filter" }, { - "name": "matter_bin", - "delays": [ - [ - 1 - ] - ] + "name": "matter_bin" }, { - "name": "micro_laser", - "delays": [ - [ - 1 - ] - ] + "name": "micro_laser" }, { - "name": "micro_mani", - "delays": [ - [ - 1 - ] - ] + "name": "micro_mani" }, { - "name": "nano_mani", - "delays": [ - [ - 1 - ] - ] + "name": "nano_mani" }, { - "name": "pico_mani", - "delays": [ - [ - 1 - ] - ] + "name": "pico_mani" }, { "name": "quadratic_capacitor", "delays": [ [ - 0.1, + 0.3, 0.1, 0.1, 0.1 @@ -270,36 +204,16 @@ ] }, { - "name": "rom1", - "delays": [ - [ - 1 - ] - ] + "name": "rom1" }, { - "name": "rom2", - "delays": [ - [ - 1 - ] - ] + "name": "rom2" }, { - "name": "romos1", - "delays": [ - [ - 1 - ] - ] + "name": "romos1" }, { - "name": "romos2", - "delays": [ - [ - 1 - ] - ] + "name": "romos2" }, { "name": "scan_module", @@ -325,28 +239,13 @@ ] }, { - "name": "subspace_ansible", - "delays": [ - [ - 1 - ] - ] + "name": "subspace_ansible" }, { - "name": "subspace_transmitter", - "delays": [ - [ - 1 - ] - ] + "name": "subspace_transmitter" }, { - "name": "super_capacitor", - "delays": [ - [ - 1 - ] - ] + "name": "super_capacitor" }, { "name": "super_electrolite", @@ -358,32 +257,13 @@ ] }, { - "name": "super_matter_bin", - "delays": [ - [ - 1 - ] - ] + "name": "super_matter_bin" }, { - "name": "super_scan_module", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] + "name": "super_scan_module" }, { - "name": "treatment_disk", - "delays": [ - [ - 1 - ] - ] + "name": "treatment_disk" }, { "name": "triphasic_scan_module", @@ -398,20 +278,10 @@ ] }, { - "name": "ultra_high_micro_laser", - "delays": [ - [ - 1 - ] - ] + "name": "ultra_high_micro_laser" }, { - "name": "wavelength_analyzer", - "delays": [ - [ - 1 - ] - ] + "name": "wavelength_analyzer" }, { "name": "scan_module_static" diff --git a/Resources/Textures/Objects/Misc/stock_parts.rsi/micro_mani.png b/Resources/Textures/Objects/Misc/stock_parts.rsi/micro_mani.png index 916ab58b9581341605a28b423ca53e11e3c158f0..118f810d73740188466501e1e0a3f7b89774d6ef 100644 GIT binary patch delta 353 zcmV-n0iOQ;0sI1xB!3BTNLh0L01m_e01m_fl`9S#0003lNkl0{*Nw}lNriLHwS=#p@Alxeg49AhW-1dVK~asDT^dWk>mi7rN}^B zT!leyM-H5S+OU9uR6ueFfE)p%LEw?c6tE*eG{eg~U@=g1fq$Y0MpMlJQj#J-YztuO55Wc$6f^u+QBeUq z0!D)XDB*z|0a{Lgzz_fdn5Bd)C&~fHApim(%VFRc)IyNYVV08$hz*Kr1lnfKdmGI$+cR1MUC-_sE6Lk}&Q400000NkvXXu0mjf&xe!r delta 226 zcmV<803HAQ0{#JzB!9(8L_t(|obA#v3c^4T1<=3N38da5#8`-+B39ek2wuWFd5YX1 zWyk?S4j`l#l!V;5JJpMaR*%X2a4hZujd1KRR+&naKcTR zQC^j*ZSQ!~0w&F9vH~W}sAy_+T5kyeymN@+BzVr>1%_~IJ6jY@t*q_fox^!|4B7(g z1lIK^npzEotn1;u@~07*qoM6N<$g4%UxlK=n! diff --git a/Resources/Textures/Objects/Misc/stock_parts.rsi/nano_mani.png b/Resources/Textures/Objects/Misc/stock_parts.rsi/nano_mani.png index 0c9b5e978218989e9113252027268a533df7f9a5..93b2d06f098388d6a153ab87f3bfb3836c5db4e1 100644 GIT binary patch delta 367 zcmV-#0g(QN0*V8WB!3BTNLh0L01m_e01m_fl`9S#0003zNkl0{*Nw}lNriLHwS=#p@Alxeg49AhW-1d{Xgu}02i~}(!k*8ltq%G zNOAzkQe+@5uEG#*g!AS@OIl*AdK@LQw@i~HM2i&=Hhhgh>RQ|#Jufdjn&g){} zom9qf?AR5C*Y9QF^2jvV4tTIr{{NA!&l%3(F$`om3{2>)WGpCd|Bp;lnWeg#Et!nUPwA8x6cMjHpfz)mE~s0oHnT`=l^Q3s4VVAKJ$0szNxh=i;l9rpkL N002ovPDHLkV1mD4oiqRd delta 234 zcmVSB!A6GL_t(|obA%F3W8u11>mEzg0pjz*$_cQqg!Jy(K|Ku1mPR# zCO$wk-6?Pv3PCMSLp9i@!tZiF_}6m|mmg3{DWxW6jSbjuwsc$%k9&zY&wA(CW6Gl- zWSnPKQQYvNjVK6dY(Nx*Os*Gew_Fnd+NOcydcAW75BQbWbz_C(da>%dLfbSD5vFO{ z`x1jh^F^mfM93#7B4!5sE6b81LIR(6SeYN<`{az^nI{sMW&i-p_$fDf1>Yxe><%#J kTMPhao~HSPN+~tO8zuK<^#oYeB>(^b07*qoM6N<$f&tcM@Bjb+ diff --git a/Resources/Textures/Objects/Misc/stock_parts.rsi/pico_mani.png b/Resources/Textures/Objects/Misc/stock_parts.rsi/pico_mani.png index 7775adb0893a5dbe3cb5d50ab285b1861b83c1ed..f3d1ff54dc93bff2eaf5ba08ed42bc1f64a49508 100644 GIT binary patch delta 347 zcmV-h0i^!A0`&rrBYyx1a7bBm000ie000ie0hKEb8vpRCt_YVHjXA>VQ!P zj5=V{0izBe+5s`O>HpEimNd^~q?-dkKv7Q>&c1)?Hj1N?9reMqqf-`1jv~ncAWN}1 z2qZ2puEOy0xHvM64-j;~gPrpKk8FL;Fz-DB zR>MGIpPs#k^Y<;@#^@C5^&gq0$N>uO55WdF#WMVtQji5(2&0!Y%>=7)it|Fz1GAKn zfF z4LCo$kfW1hUZ0*>-raiVwUWer`C6^DVy%_783#VaU0nrfZ+|EN#u(!Knzl`NjV$dA z;?S=RbZcpD5JBrUo!TTEmghWlv%AT7EA@ZS`?uHdiYozBaTy`(I6^EZq} mtM8M}7L(nNUKuH+w)F|GYg36c3rhU}0000?f;DuN;8)eir`Mb>PLza2BNQe_n<+I*uId;mt3? z|1>LKgqUB1Py18xD+f^1@=)d(~CeMMEzo}>eu=i&^h)R5QmNO zpl1kwe*c7Rq+cA?gkL#;U*~x=w>_0IVxwgpV<+SPt$*9Zv|l-Zlk67#jx9B{cE{H8 z-}ZuaYnb+Hy#=cOUP>A9apgPmoqORt2~7I60w@-XsIG#%2R|5ih9+FyfY3Y%O!~C~ z$mRA^p4U~13Tci6FzMI+YjC>%7?YXHP`LWGvNUP)2EdYEJAl5CdLVOJ_S!b4{MrFL z96C+ibboCdQ-1!B5FCdCfa7oga2yT*j>7@KaX0`t4hI0o;Q(~Mkoy7L4~WD40B}FR zfquZ_M}Ux&eLhd?3eV^7+OOUZ$R5Fe^GcQ!0>bC>Qxo#}z14mI`Fq=C2r<7nJgwXB z2T)0YLWpio%oFJcWDl=Gi2B9hlj{e}FU01F_B#VM%=oz2Y~wl+z;S>0JtB( o{Q&L<+!HteI1UE@$8kP@f5w*?ALXS{~(O1A&dW7f?0002ML_GlWWJk-rV|jJ}0000X^y3-}nl)5Gmu zj*x(?7{QzyC0nS@Hw10Lj*Z9ZcJ1_{Ne19eA=>vpe zpC0dTXsNMH1AmHSajj9OEAN;(oi6KsY(VSa0%tr$Sve^G-q!~}f|n#~>;67xMhSrT z9%NVX?h%{@?g>x^JOw?gwpLHeg_u_YK=u}%$@M;Ep}#wwx&i+_%7Ep~86s~ucC8&? oZw#%!*4hF86$3DUi37d>>ST$&v;hYy00000NkvXXt^-0~g7)sN*#H0l delta 345 zcmV-f0jB<=1M>oqBYy!pNklvi#m15=GP!j{)GAgA_^jkgG0f^N+_j@pb%4VXoXH`st(t!`;DL=_w3K}9Nrfc z3WegoAnqdK&xUke{LXks0y=}b{`#Zwt}r1Fux(pdmL&i(nSV@Z326b#vc#jN;dvgu z?-K;~0GOs3NVQ!P zj5=V{0mH)qF}3Ocamg)dp2hw4#C{!_iIq!0`{V2$mjT0OT-ijwaaw$f@|4qai%;ffC)m zMcWt{;vjM$wo{xJ*byMhL5{_e2~F>Qi533B3piD?{U0Y zkZ1=exIY9N)NIR5)-*2Qoig8+za?dL?2_SBfs2DIgT?cWW0$}*DV7uM02rvQnMRV~RCfR^z^DU89Wd&EQ3njT0{}K>k`QEN R2I>F+002ovPDHLkV1f%ApPT>y delta 332 zcmV-S0ki&%1LgvdBYy!cNkl1^+GdukAIVKO0m$k+uUg%A}r%|AchoprbUJ2k|m1b?7uTsP9R{|bQfZ4(ws`L-=HlJfS8t;sb)p`er zjX{xTtpL0-u`yx@uMu#KCIazCSf3FQfrxgIRIBCQ>8Oc7wF`2%dBt;LKRnb6*0JcY}ZSI1_x;$tmy$i%Ezz}r+mW_b>Ckx;aMV|f5ZCIDj e|AC;Ov+D;ip?~oz2ZmYz0000 Date: Sun, 18 Jun 2023 19:29:31 -0400 Subject: [PATCH 340/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 1ed885156a..effaa52230 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: Slava0135 - changes: - - {message: fixed hypospray "you feel prick" popup appearing to everyone., type: Fix} - id: 3539 - time: '2023-04-25T13:18:52.0000000+00:00' - author: EmoGarbage404 changes: - {message: Space Dragon event works again., type: Fix} @@ -2927,3 +2922,8 @@ Entries: - {message: Adds a gas mask for the ERT and death squadron., type: Add} id: 4038 time: '2023-06-18T23:14:32.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: Updated visuals for machine parts., type: Tweak} + id: 4039 + time: '2023-06-18T23:28:27.0000000+00:00' From b8fb9aaabd4b60bc2b5086b45b0aa978a46395c7 Mon Sep 17 00:00:00 2001 From: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> Date: Sun, 18 Jun 2023 19:37:16 -0400 Subject: [PATCH 341/474] Make BOH require less uranium (#17449) --- Resources/Prototypes/Recipes/Lathes/devices.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Resources/Prototypes/Recipes/Lathes/devices.yml b/Resources/Prototypes/Recipes/Lathes/devices.yml index aa722e998a..82e3eb46a1 100644 --- a/Resources/Prototypes/Recipes/Lathes/devices.yml +++ b/Resources/Prototypes/Recipes/Lathes/devices.yml @@ -90,7 +90,7 @@ Steel: 2000 Silver: 750 Plasma: 1500 - Uranium: 1500 + Uranium: 150 - type: latheRecipe id: ClothingBackpackSatchelHolding @@ -100,7 +100,7 @@ Steel: 2000 Silver: 750 Plasma: 1500 - Uranium: 1500 + Uranium: 150 - type: latheRecipe id: ClothingBackpackDuffelHolding @@ -110,7 +110,7 @@ Steel: 2000 Silver: 750 Plasma: 1500 - Uranium: 1500 + Uranium: 150 - type: latheRecipe id: WeaponCrusher From 580c57926fb5636c83cbc160a09d88adfefd22ae Mon Sep 17 00:00:00 2001 From: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> Date: Sun, 18 Jun 2023 19:37:34 -0400 Subject: [PATCH 342/474] Remove security techfab board from expedition loot (#17448) --- Resources/Prototypes/Procedural/salvage_rewards.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/Resources/Prototypes/Procedural/salvage_rewards.yml b/Resources/Prototypes/Procedural/salvage_rewards.yml index d0b27167ac..957a4b7690 100644 --- a/Resources/Prototypes/Procedural/salvage_rewards.yml +++ b/Resources/Prototypes/Procedural/salvage_rewards.yml @@ -46,7 +46,6 @@ id: SalvageRewardEpic weights: # rare machinery - SecurityTechFabCircuitboard: 1.0 ResearchAndDevelopmentServerMachineCircuitboard: 1.0 CratePartsT4: 1.0 # rare weapons From 9750a588e4f62853db8e5c8d8c20f784de7c6ba8 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 18 Jun 2023 19:38:38 -0400 Subject: [PATCH 343/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index effaa52230..383d60a06d 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,14 +1,4 @@ Entries: -- author: EmoGarbage404 - changes: - - {message: Space Dragon event works again., type: Fix} - id: 3540 - time: '2023-04-26T00:23:14.0000000+00:00' -- author: metalgearsloth - changes: - - {message: Flashbangs now have a light when they flash., type: Add} - id: 3541 - time: '2023-04-26T03:51:48.0000000+00:00' - author: ElectroJr changes: - {message: Fixed a bug that caused the toggle-light & FOV ghost actions to not @@ -2927,3 +2917,14 @@ Entries: - {message: Updated visuals for machine parts., type: Tweak} id: 4039 time: '2023-06-18T23:28:27.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: 'Due to new refinement procedures, Bags of Holding now require less + uranium to create.', type: Tweak} + id: 4040 + time: '2023-06-18T23:37:17.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: Removed security techfab board from expedition loot., type: Remove} + id: 4041 + time: '2023-06-18T23:37:34.0000000+00:00' From 0e238dabc9077b03c2e5ed5f3c3827dbf37c5dbf Mon Sep 17 00:00:00 2001 From: Flareguy <78941145+Flareguy@users.noreply.github.com> Date: Sun, 18 Jun 2023 18:38:55 -0500 Subject: [PATCH 344/474] Adds the SWAT Helmet (#17384) * adds swat helmet * joever * epic > rare * A --- .../Entities/Clothing/Head/helmets.yml | 37 ++++++- .../Prototypes/Procedural/salvage_rewards.yml | 2 + .../Roles/Jobs/Fun/misc_startinggear.yml | 94 +++++++++++++++++- .../Head/Helmets/swat.rsi/equipped-HELMET.png | Bin 0 -> 688 bytes .../Clothing/Head/Helmets/swat.rsi/icon.png | Bin 0 -> 291 bytes .../Head/Helmets/swat.rsi/inhand-left.png | Bin 0 -> 649 bytes .../Head/Helmets/swat.rsi/inhand-right.png | Bin 0 -> 845 bytes .../Clothing/Head/Helmets/swat.rsi/meta.json | 26 +++++ .../swat_syndicate.rsi/equipped-HELMET.png | Bin 0 -> 744 bytes .../Head/Helmets/swat_syndicate.rsi/icon.png | Bin 0 -> 291 bytes .../swat_syndicate.rsi/inhand-left.png | Bin 0 -> 658 bytes .../swat_syndicate.rsi/inhand-right.png | Bin 0 -> 666 bytes .../Head/Helmets/swat_syndicate.rsi/meta.json | 26 +++++ 13 files changed, 182 insertions(+), 3 deletions(-) create mode 100644 Resources/Textures/Clothing/Head/Helmets/swat.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Helmets/swat.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Head/Helmets/swat.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Head/Helmets/swat.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Head/Helmets/swat.rsi/meta.json create mode 100644 Resources/Textures/Clothing/Head/Helmets/swat_syndicate.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Helmets/swat_syndicate.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Head/Helmets/swat_syndicate.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Head/Helmets/swat_syndicate.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Head/Helmets/swat_syndicate.rsi/meta.json diff --git a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml index 04aa5185a7..8f9396dcee 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml @@ -22,13 +22,48 @@ parent: ClothingHeadHelmetHelmet id: ClothingHeadHelmetHelmetOld name: helmet - description: An old usual helmet. + description: Standard Security gear. Protects the head from impacts. components: - type: Sprite sprite: Clothing/Head/Helmets/securityold.rsi - type: Clothing sprite: Clothing/Head/Helmets/securityold.rsi +#SWAT Helmet +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHelmetSwat + name: SWAT helmet + description: An extremely robust helmet, commonly used by paramilitary forces. This one has the Nanotrasen logo emblazoned on the top. + components: + - type: Sprite + sprite: Clothing/Head/Helmets/swat.rsi + - type: Clothing + sprite: Clothing/Head/Helmets/swat.rsi + - type: Armor #In SS13 this has 100% acid (caustic) protection, however it would be probably be silly to give this to a helmet without locational damage existing yet. + modifiers: + coefficients: + Blunt: 0.70 + Slash: 0.70 + Piercing: 0.80 + Heat: 0.80 + Radiation: 0.80 + - type: ExplosionResistance + damageCoefficient: 0.75 + +#Syndicate SWAT Helmet +- type: entity + parent: ClothingHeadHelmetSwat + id: ClothingHeadHelmetSwatSyndicate + name: SWAT helmet + suffix: Syndicate + description: An extremely robust helmet, commonly used by paramilitary forces. It is adorned in a nefarious red and black stripe pattern. + components: + - type: Sprite + sprite: Clothing/Head/Helmets/swat_syndicate.rsi + - type: Clothing + sprite: Clothing/Head/Helmets/swat_syndicate.rsi + #Light Riot Helmet - type: entity parent: ClothingHeadBase diff --git a/Resources/Prototypes/Procedural/salvage_rewards.yml b/Resources/Prototypes/Procedural/salvage_rewards.yml index 957a4b7690..f64ea80f83 100644 --- a/Resources/Prototypes/Procedural/salvage_rewards.yml +++ b/Resources/Prototypes/Procedural/salvage_rewards.yml @@ -39,6 +39,8 @@ CrateArmorySMG: 0.25 CrateArmoryLaser: 0.25 WeaponMakeshiftLaser: 0.25 + # rare armor + ClothingHeadHelmetSwat: 0.1 # rare weapons WeaponSubMachineGunC20r: 0.1 diff --git a/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml b/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml index 79fb317924..081733e27e 100644 --- a/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml +++ b/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml @@ -54,7 +54,6 @@ satchel: ClothingBackpackDuffelSyndicateAmmo duffelbag: ClothingBackpackDuffelSyndicateAmmo - # Syndicate Operative Outfit - Poverty - type: startingGear id: SyndicateOperativeGearExtremelyBasic @@ -66,7 +65,6 @@ satchel: ClothingBackpackDuffelSyndicateOperative duffelbag: ClothingBackpackDuffelSyndicateOperative - #Syndicate Operative Outfit - Basic - type: startingGear id: SyndicateOperativeGearBasic @@ -103,6 +101,7 @@ satchel: ClothingBackpackDuffelSyndicateOperative duffelbag: ClothingBackpackDuffelSyndicateOperative +#Nuclear Operative Commander Gear - type: startingGear id: SyndicateCommanderGearFull equipment: @@ -123,6 +122,7 @@ satchel: ClothingBackpackDuffelSyndicateOperative duffelbag: ClothingBackpackDuffelSyndicateOperative +#Nuclear Operative Medic Gear - type: startingGear id: SyndicateOperativeMedicFull equipment: @@ -142,6 +142,96 @@ satchel: ClothingBackpackDuffelSyndicateOperativeMedic duffelbag: ClothingBackpackDuffelSyndicateOperativeMedic +# Syndicate Footsoldier Gear - Unarmed +- type: startingGear + id: SyndicateFootsoldierGear + equipment: + jumpsuit: ClothingUniformJumpsuitOperative + head: ClothingHeadHelmetSwatSyndicate + mask: ClothingMaskGas + outerClothing: ClothingOuterVestKevlar + ears: ClothingHeadsetAltSyndicate + gloves: ClothingHandsGlovesCombat + back: ClothingBackpackFilled + shoes: ClothingShoesBootsCombat + id: SyndiPDA #a subtype of this for footsoldiers would probably be good to have + innerclothingskirt: ClothingUniformJumpsuitOperative + satchel: ClothingBackpackSatchelFilled + duffelbag: ClothingBackpackDuffelFilled + +# Syndicate Footsoldier Gear - Knife +- type: startingGear + id: SyndicateFootsoldierGearKnife + equipment: + jumpsuit: ClothingUniformJumpsuitOperative + head: ClothingHeadHelmetSwatSyndicate + mask: ClothingMaskGas + outerClothing: ClothingOuterVestKevlar + ears: ClothingHeadsetAltSyndicate + gloves: ClothingHandsGlovesCombat + back: ClothingBackpackFilled + shoes: ClothingShoesBootsCombat + pocket1: CombatKnife + id: SyndiPDA + innerclothingskirt: ClothingUniformJumpsuitOperative + satchel: ClothingBackpackSatchelFilled + duffelbag: ClothingBackpackDuffelFilled + +# Syndicate Footsoldier Gear - Energy Sword +#Add energy shield to this when that gets added. +- type: startingGear + id: SyndicateFootsoldierGearESword + equipment: + jumpsuit: ClothingUniformJumpsuitOperative + head: ClothingHeadHelmetSwatSyndicate + mask: ClothingMaskGas + outerClothing: ClothingOuterVestKevlar + ears: ClothingHeadsetAltSyndicate + gloves: ClothingHandsGlovesCombat + back: ClothingBackpackFilled + shoes: ClothingShoesBootsCombatFilled + pocket1: EnergySword + id: SyndiPDA + innerclothingskirt: ClothingUniformJumpsuitOperative + satchel: ClothingBackpackSatchelFilled + duffelbag: ClothingBackpackDuffelFilled + +# Syndicate Footsoldier Gear - Viper +- type: startingGear + id: SyndicateFootsoldierGearPistol + equipment: + jumpsuit: ClothingUniformJumpsuitOperative + head: ClothingHeadHelmetSwatSyndicate + mask: ClothingMaskGas + outerClothing: ClothingOuterVestKevlar + ears: ClothingHeadsetAltSyndicate + gloves: ClothingHandsGlovesCombat + back: ClothingBackpackFilled + shoes: ClothingShoesBootsCombat + pocket1: WeaponPistolViper + id: SyndiPDA + innerclothingskirt: ClothingUniformJumpsuitOperative + satchel: ClothingBackpackSatchelFilled + duffelbag: ClothingBackpackDuffelFilled + +# Nanotrasen Paramilitary Unit Gear - Unarmed +#I do not feel like doing more of these right now because this probably needs more stuff (like a different ID.) +- type: startingGear + id: NanotrasenParamilitaryGear + equipment: + jumpsuit: ClothingUniformJumpsuitSec + back: ClothingBackpackSecurityFilled + shoes: ClothingShoesBootsCombatFilled + eyes: ClothingEyesGlassesSecurity + head: ClothingHeadHelmetSwat + mask: ClothingMaskGasSwat + outerClothing: ClothingOuterVestKevlar + ears: ClothingHeadsetSecurity + gloves: ClothingHandsGlovesCombat + innerclothingskirt: ClothingUniformJumpskirtSec + satchel: ClothingBackpackSatchelSecurityFilled + duffelbag: ClothingBackpackDuffelSecurityFilled + #CBURN Unit Gear - Full Kit - type: startingGear id: CBURNGear diff --git a/Resources/Textures/Clothing/Head/Helmets/swat.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Helmets/swat.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..030107f05e3e15775b5dc5b634ff75fbd3e26787 GIT binary patch literal 688 zcmV;h0#E&kP)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D0!2wgK~#8N?b<<0 z8$lEY@K><}iJogOVq+`>niwS_5tLklc=gf`(R)rF{R)1FUUC)5C0GzdiINC`8WZs( z2&F``P3Jw-!}P zjC>xjtLtlOx7%`XTOa;0=cYe>e)3y*ZahdFgP-%^XI+nlF$XamD73(R&&9HxgZ1;u z?*r9z`rHEm000000000006<`@{-4iP7=L}9g}Fx{$oR$=aB!~A`)l(|?-$7D^G=gc zDwU)l!+R1mJr|oj0@nKj{EKILzd)@$=3*zUnzX#K zVwC{1{Q>+WcGI z!eiEflbM$Bd4ldDdu^O||R8X*iz<_aiC1S&8X zl~gQFX`Hq2vUI9I-?6tdxSY=X@_tq@-~7Z^mP;>tC$-KlSKKn0xAFK44t{R~7r$p} Ws+T6dRjmWs&*16m=d#Wzp$Pz6Mrif` literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Helmets/swat.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Helmets/swat.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..c334355ba851e9647f3a9dbe9ad2dc6d4336a326 GIT binary patch literal 649 zcmV;40(Sk0P)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!TMVg|$lXr^pH_ZRw6@P;_{0;I>+8-d%%u*||v}m*!$ktla z)${BeZa3^+o{RMT)a^XyZ1>!Ap53!I=O_RG00000004mRiAJNA4wrTIs#%vJ zXwZp7Lf7i3?sYQn^^;5{EkBYXmH--DFc46+T1~gqQJvb|4xYXjkH`5wnzU}_I<-qD zp-GqDHW(hV+S`MwwWUcNrPJK+L@dUGeR{T3xm-~f`Ll-4o1dHGdqUwb*X=Izc`kSN z_Qb|5nt)2>Q9Z<0b<3O1{WTQ~c6ds_XCxCKwghPMcEg1&9o0EM|Hx&bph~3@Ulg0m z-X=*blcc+=$Lj0t;h2_zSprwrMRjvqbp0%|&U3lk>pkza{YjJr9WrO#EvbGQ@g;5D5Nqc#N00000000000002sf1#Zsv-4y~?;QVGsZ`3M%f5YXcuj)n0SRMi zalyA=f+kL7Bog7elb5pyM0C4JYD?@h&exup^9b}t&_Rl9CiB|Xi0mMjw~wg^)NaPA zJ1f2+s-! z+bY#6mu~p-D~*nfTPNA$AL*Nx-OTJX$EVpWPyScV5ZKp04N`~V?0uVOQfYtwuc5*D jIeFu!o&x~z&nfi+u5Iy{5Lm~a00000NkvXXu0mjfCq^-u literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Helmets/swat.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Helmets/swat.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..423f3fe52e61453a8d7dd00119b1bb5853864aa0 GIT binary patch literal 845 zcmV-T1G4;yP)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D0^&(TK~#8N?V8VP z6G0TmM=znof;a0WRE<1QNh0O{0&~bO35WC7>cFc_7V_U zN};q8umuez{vh(5&I_|YW_Od!u1Wen@YtC*J2UUSeKQF=D;S1h7=~dOhG7_nxpG`n z*P&=M8mi=`TrR89cmw-=0SI%7+Q`A6dnd(tVDeQ`C=`0CDDl<-1|Ug;sJVh{3kxX`^m8 zf&qP)&AtHq>i!kK|MbM3avsstGa_v;H$6BK)T3+~>4}C7p2U)%`MhJB z^aR?2+MrJ?07ROB7?e~3FeqV8dFPwT01SeS02ntxhG7_nVHk#C7=~e(X(jSa?k#;fE>eVi+;Pb+179{b#r&O|l(X}nQb#PdUKdr- zIP)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!Tsmgf z8UKm1_Xfci4{K&}vTQyc)vbkpS5hHB9EqE>zVX!pbUIyYudX_`tjvc7aT?L>wZiv} zuM%Kld@9Q4bLQIlpPrShg^zh0w-bTD^~>ewcHDmhFz*vzy#uh_zZS<#qj6zPB_pa(tVwx{+nz zc*@}V_}d_e$f6iW9n2V$^3BLc>&Gggwo7eB+&+?_q^@?&$svk>#0FZJxc7Y^=t$2Fc2r2+NLgdkd=yLbvrl3l! zsZ^;2fL%I2i30+NvEeGV5GbSoQU?E94#5OK0rErZGA>68x!hBOJ^|+rl+9D){dU}i zG4br#bd)_r|fcxuNSLr?n~ht9?~cARt%E@zRM{!>kjL-SUF*rEsPSiI(_aKufHVpPs_ zc+FYBPx#1ZP1_K>z@;j|==^1poj532;bRa{vGi!TRzb@zl4LMi<66AKo=22S8>o)@B=th9UO#KDyZ#H z5N$^h@72rPB19DBexBmb*Efm-cJrRs*Sw^XXmd%Y3d zhvOg?mwEe>Lf*cnQ%Ie)z_O1-qAK^PTrP=H`QCS1s7EEg2vSc+cst*0FwN+y=O;#H z)A>uCFI=_UhI7!r{>>8+5fKp)5fKp)kzoj#dELg?9r`OZ&>$;}M*-T@rn zy?yWggr8^)jzT-$z+omWcBW@l&TT)D3=~4wIss@nm%CIsbI=At@2Qhx*J^8J6NTPz z)8c{L2+;j}H}QJ3WF(Z;lisvmdZK4Y51p<|IHSekaG%H&uH>EszoE3iE1+SJQVkwP zirXrspEK;9pIny{frvB?XIR}YBX0@I^86y#mb&rTC6l8vjZXuU(2+o@^M}Xuzko`9 sw28B`{fV!Z literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Helmets/swat_syndicate.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Helmets/swat_syndicate.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..e0ab815b503825445f130f89ce44fcd39568966d GIT binary patch literal 666 zcmV;L0%iS)P)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!TLYwL*}nd;^7ER2mwufNRX3wx#C1{ ziffkt?#$WUn>+T-%HaP?WM1}m_Lb#h=_=Yh=_=Y9DTh>OICjsf815g12?S* z;kglQ(-%b--*zNYG47}=Jzie&vgTE;-xP??|Kc*1RWa_81!!;Uuo@a-;_1CUIx=1y z3~lt|y3=D8#MRo`B3lj>Kl;nXt=$2$>6F-sH;GK z*U>J(`uk)bhnB@n&tkEB7+kXZO@^(GovJ2`674`oAfJDhHAm;whFwOZ&PV;%O@X-Z zx8K%bw=r=*TV2zM$kGGbJ|0iV)`x8NUfgHzwD*_*am#9nz;XKrt2DStg2r8ORovg4 z7nkS8zIi|Qq)pzjL_|bHL_|bHL`1&}Qc&*v;h#4$)Ta{R>QCtkHo}ga$dfQ((TnHrk9;?YiS7uYzzMp68xqa;~HL6MA26|g~0N!{q*=@J6CEZC=9EsC(DwG`%=GcMZ z9ICVEK9fK7U*NmH2Wp1k!koPFQ_mqH`X_{V1B`y{uUq{c2LJ#707*qoM6N<$f>6pa AX#fBK literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Helmets/swat_syndicate.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/swat_syndicate.rsi/meta.json new file mode 100644 index 0000000000..8bedbfb78e --- /dev/null +++ b/Resources/Textures/Clothing/Head/Helmets/swat_syndicate.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/fb2d71495bfe81446159ef528534193d09dd8d34, inhand sprites by Flareguy, icon edited by Flareguy", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} From 5df1552dd8bd9c50610d1cfb3a778b65cf79f288 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 18 Jun 2023 19:39:58 -0400 Subject: [PATCH 345/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 383d60a06d..e82a2bd4e6 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,10 +1,4 @@ Entries: -- author: ElectroJr - changes: - - {message: Fixed a bug that caused the toggle-light & FOV ghost actions to not - appear., type: Fix} - id: 3542 - time: '2023-04-26T04:05:05.0000000+00:00' - author: Vasilis changes: - {message: 'Added a new job tab for Station specific jobs, as well as saying what @@ -2928,3 +2922,9 @@ Entries: - {message: Removed security techfab board from expedition loot., type: Remove} id: 4041 time: '2023-06-18T23:37:34.0000000+00:00' +- author: Flareguy + changes: + - {message: Added the extremely robust & highly coveted SWAT helmet. You can find + it as a reward in salvage expeditions., type: Add} + id: 4042 + time: '2023-06-18T23:38:55.0000000+00:00' From 21b583a68cb5f240d7e810c66839ea45b24774e7 Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Mon, 19 Jun 2023 00:53:01 +0000 Subject: [PATCH 346/474] add pkas back to salv vendor (#17446) * add pka back to salv lockers * troller ops --------- Co-authored-by: deltanedas <@deltanedas:kde.org> --- .../Prototypes/Catalog/VendingMachines/Inventories/salvage.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/salvage.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/salvage.yml index 51700a9015..9d41051f76 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/salvage.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/salvage.yml @@ -11,3 +11,4 @@ RadioHandheld: 2 WeaponCrusher: 2 WeaponCrusherDagger: 2 + WeaponProtoKineticAccelerator: 2 From d9714c0246f0918a0d203e7987f78c2b40162485 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 18 Jun 2023 20:54:05 -0400 Subject: [PATCH 347/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index e82a2bd4e6..ad624f045d 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,10 +1,4 @@ Entries: -- author: Vasilis - changes: - - {message: 'Added a new job tab for Station specific jobs, as well as saying what - stations have the role.', type: Add} - id: 3543 - time: '2023-04-26T06:18:25.0000000+00:00' - author: PuroSlavKing changes: - {message: 'Added more things for the brigmedic, updated PDA animation, a new sprite @@ -2928,3 +2922,8 @@ Entries: it as a reward in salvage expeditions., type: Add} id: 4042 time: '2023-06-18T23:38:55.0000000+00:00' +- author: deltanedas + changes: + - {message: Proto-kinetic accelerators have returned to the salvage vendor., type: Tweak} + id: 4043 + time: '2023-06-19T00:53:01.0000000+00:00' From acf102ba0df5ffc92eb726f756984b142fb95984 Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Mon, 19 Jun 2023 04:14:28 +0300 Subject: [PATCH 348/474] add suffix for rigged gloves (#17287) * Update gloves.yml * Update Resources/Prototypes/Entities/Clothing/Hands/gloves.yml Co-authored-by: keronshb <54602815+keronshb@users.noreply.github.com> --------- Co-authored-by: keronshb <54602815+keronshb@users.noreply.github.com> --- Resources/Prototypes/Entities/Clothing/Hands/gloves.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml b/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml index 70caea5970..f2d5a5842e 100644 --- a/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml +++ b/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml @@ -80,7 +80,8 @@ parent: ClothingHandsGlovesBoxingBlue id: ClothingHandsGlovesBoxingRigged name: blue boxing gloves - description: Blue gloves for competitive boxing. Feels like they're heavier than usual... + suffix: Rigged + description: Regal blue gloves, with a nice gold trim. Swanky. components: - type: StaminaDamageOnHit damage: 30 From ac63a7c7005e4712d69640f9d5644a485ac30569 Mon Sep 17 00:00:00 2001 From: Sir Winters <7543955+Owai-Seek@users.noreply.github.com> Date: Sun, 18 Jun 2023 21:15:01 -0400 Subject: [PATCH 349/474] Minor changes to Janitorial and Cryogenics Guidebooks (#17282) Co-authored-by: Owai-Seek <> --- Resources/ServerInfo/Guidebook/Medical/Cryogenics.xml | 8 ++++++++ Resources/ServerInfo/Guidebook/Service/Janitorial.xml | 4 ++++ 2 files changed, 12 insertions(+) diff --git a/Resources/ServerInfo/Guidebook/Medical/Cryogenics.xml b/Resources/ServerInfo/Guidebook/Medical/Cryogenics.xml index 36cf5d181d..514068cd6b 100644 --- a/Resources/ServerInfo/Guidebook/Medical/Cryogenics.xml +++ b/Resources/ServerInfo/Guidebook/Medical/Cryogenics.xml @@ -38,4 +38,12 @@ An important thing to note, winter clothing (and hardsuits) will make cryogenic ## Using the Pod Once things have been set up, you're going to require a specific medication, Cryoxadone. Cryoxadone heals all damage types when a patient is chilled, and can either be pre-adminsitered (with a pill), or loaded into the cell directly with a beaker. Do note, patients won't begin to heal until they've chilled to the appropriate temperature, it may be worthwhile to wait a bit before placing a beaker inside. + +## Additional Information: + +The standard pressure for a gas pump is 1.325 kpa. Cryoxadone works at under 170K, but it is standard practice to set the freezer to 100K for faster freezing. + + + + diff --git a/Resources/ServerInfo/Guidebook/Service/Janitorial.xml b/Resources/ServerInfo/Guidebook/Service/Janitorial.xml index 04237032ce..f61931c672 100644 --- a/Resources/ServerInfo/Guidebook/Service/Janitorial.xml +++ b/Resources/ServerInfo/Guidebook/Service/Janitorial.xml @@ -47,4 +47,8 @@ Space Cleaner: This miracle spray can do two things, clean graffiti, and in a pi ## Extra Duties A good janitor is always on the lookout for a bit more to do, and there are plenty of tools at your disposal. Keep an eye out for broken lights, help the chef take care of mice in the kitchen, and if you're feeling -really- generous, try to restock the vending machines and emergency closets around the station! + +##Additional Information: + + From 1026bb17af1f412a732edbf1ade58e7f87660b58 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 18 Jun 2023 21:16:05 -0400 Subject: [PATCH 350/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index ad624f045d..35d643a908 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: PuroSlavKing - changes: - - {message: 'Added more things for the brigmedic, updated PDA animation, a new sprite - for brigmedic locker, a custom brigmedic headset , new sprites skirts and overalls, - a new beret, armored medical gown, new bags, a new military-style medical mask, - and most importantly, a bedsheet, and all this for the brigmedic.', type: Add} - id: 3544 - time: '2023-04-26T06:48:44.0000000+00:00' - author: Nimfar changes: - {message: Adds the Space Spider., type: Add} @@ -2927,3 +2919,9 @@ Entries: - {message: Proto-kinetic accelerators have returned to the salvage vendor., type: Tweak} id: 4043 time: '2023-06-19T00:53:01.0000000+00:00' +- author: Owai-Seek + changes: + - {message: Provided some minor updates to Janitorial and Cryogenics guidebooks., + type: Tweak} + id: 4044 + time: '2023-06-19T01:15:01.0000000+00:00' From 78adc99aceae0628839772c5bc3cb768ec74944a Mon Sep 17 00:00:00 2001 From: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> Date: Mon, 19 Jun 2023 00:02:27 -0400 Subject: [PATCH 351/474] Artifact crafting fix (#17454) * Fix tag steps double counting entities * oauhg --- .../Construction/ConstructionSystem.Initial.cs | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/Content.Server/Construction/ConstructionSystem.Initial.cs b/Content.Server/Construction/ConstructionSystem.Initial.cs index 7bb5422945..9c50b3d9a4 100644 --- a/Content.Server/Construction/ConstructionSystem.Initial.cs +++ b/Content.Server/Construction/ConstructionSystem.Initial.cs @@ -107,8 +107,8 @@ private IEnumerable EnumerateNearby(EntityUid user) // But I'd rather do this shit than risk having collisions with other containers. Container GetContainer(string name) { - if (containers.ContainsKey(name)) - return containers[name]; + if (containers.TryGetValue(name, out var container1)) + return container1; while (true) { @@ -154,6 +154,7 @@ void ShutdownContainers() var failed = false; var steps = new List(); + var used = new HashSet(); foreach (var step in edge.Steps) { @@ -169,6 +170,9 @@ void ShutdownContainers() if (!materialStep.EntityValid(entity, out var stack)) continue; + if (used.Contains(entity)) + continue; + // TODO allow taking from several stacks. // Also update crafting steps to check if it works. var splitStack = _stackSystem.Split(entity, materialStep.Amount, user.ToCoordinates(0, 0), stack); @@ -182,7 +186,7 @@ void ShutdownContainers() continue; } else if (!GetContainer(materialStep.Store).Insert(splitStack.Value)) - continue; + continue; handled = true; break; @@ -191,11 +195,14 @@ void ShutdownContainers() break; case ArbitraryInsertConstructionGraphStep arbitraryStep: - foreach (var entity in EnumerateNearby(user)) + foreach (var entity in new HashSet(EnumerateNearby(user))) { if (!arbitraryStep.EntityValid(entity, EntityManager, _factory)) continue; + if (used.Contains(entity)) + continue; + if (string.IsNullOrEmpty(arbitraryStep.Store)) { if (!container.Insert(entity)) @@ -205,6 +212,7 @@ void ShutdownContainers() continue; handled = true; + used.Add(entity); break; } From 7e1183dd0989a1c45671eda02dad1db2c5589217 Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 19 Jun 2023 00:03:36 -0400 Subject: [PATCH 352/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 35d643a908..317e0465f5 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: Nimfar - changes: - - {message: Adds the Space Spider., type: Add} - id: 3545 - time: '2023-04-26T06:51:40.0000000+00:00' - author: liltenhead changes: - {message: 'Holos share less damage to their owner, updated description.', type: Tweak} @@ -2925,3 +2920,9 @@ Entries: type: Tweak} id: 4044 time: '2023-06-19T01:15:01.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: Fixed being able to craft artifacts without the proper amount of fragments., + type: Fix} + id: 4045 + time: '2023-06-19T04:02:28.0000000+00:00' From ea767b742bf4d43813b2608e6942c72a434b084d Mon Sep 17 00:00:00 2001 From: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> Date: Mon, 19 Jun 2023 00:03:41 -0400 Subject: [PATCH 353/474] Buff ores, add quartz (#17453) --- .../Procedural/biome_ore_templates.yml | 20 +++++++++++++------ .../Prototypes/Procedural/salvage_loot.yml | 10 +++++++++- 2 files changed, 23 insertions(+), 7 deletions(-) diff --git a/Resources/Prototypes/Procedural/biome_ore_templates.yml b/Resources/Prototypes/Procedural/biome_ore_templates.yml index 01132b249a..e548f64d2c 100644 --- a/Resources/Prototypes/Procedural/biome_ore_templates.yml +++ b/Resources/Prototypes/Procedural/biome_ore_templates.yml @@ -3,7 +3,15 @@ id: OreTin proto: WallRockTin entityMask: WallRock - maxCount: 15 + maxCount: 30 + groupCount: 10 + radius: 4 + +- type: biomeMarkerLayer + id: OreQuartz + proto: WallRockQuartz + entityMask: WallRock + maxCount: 30 groupCount: 10 radius: 4 @@ -13,7 +21,7 @@ id: OreGold proto: WallRockGold entityMask: WallRock - maxCount: 15 + maxCount: 30 groupCount: 5 radius: 4 @@ -22,7 +30,7 @@ id: OreSilver proto: WallRockSilver entityMask: WallRock - maxCount: 15 + maxCount: 30 groupCount: 5 radius: 4 @@ -32,7 +40,7 @@ id: OrePlasma proto: WallRockPlasma entityMask: WallRock - maxCount: 6 + maxCount: 12 groupCount: 5 radius: 4 @@ -41,7 +49,7 @@ id: OreUranium proto: WallRockUranium entityMask: WallRock - maxCount: 6 + maxCount: 12 groupCount: 5 radius: 4 @@ -49,7 +57,7 @@ id: OreBananium proto: WallRockBananium entityMask: WallRock - maxCount: 6 + maxCount: 12 groupCount: 5 radius: 4 diff --git a/Resources/Prototypes/Procedural/salvage_loot.yml b/Resources/Prototypes/Procedural/salvage_loot.yml index a5a6827069..ecc45159ab 100644 --- a/Resources/Prototypes/Procedural/salvage_loot.yml +++ b/Resources/Prototypes/Procedural/salvage_loot.yml @@ -8,6 +8,14 @@ - !type:BiomeMarkerLoot proto: OreTin +- type: salvageLoot + id: OreQuartz + desc: Veins of quartz + guaranteed: true + loots: + - !type:BiomeMarkerLoot + proto: OreQuartz + # - Medium value - type: salvageLoot id: OreGold @@ -56,4 +64,4 @@ guaranteed: true loots: - !type:BiomeMarkerLoot - proto: OreArtifactFragment \ No newline at end of file + proto: OreArtifactFragment From 8ba5ef33ee7a6ec72a15f64ab651e55b812a9333 Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 19 Jun 2023 00:04:46 -0400 Subject: [PATCH 354/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 317e0465f5..bd6b34920e 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: liltenhead - changes: - - {message: 'Holos share less damage to their owner, updated description.', type: Tweak} - id: 3546 - time: '2023-04-26T06:52:07.0000000+00:00' - author: metalgearsloth changes: - {message: Bump collision sound velocity required from 0.25 to 1., type: Tweak} @@ -2926,3 +2921,10 @@ Entries: type: Fix} id: 4045 time: '2023-06-19T04:02:28.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: Quartz now generates on planets., type: Add} + - {message: Greatly increased the amount of ore that generates on planets. Grab + your picks!, type: Tweak} + id: 4046 + time: '2023-06-19T04:03:41.0000000+00:00' From f9f8bb2f1c9c4d4e5dd77e609ef2e9c64cbed758 Mon Sep 17 00:00:00 2001 From: Chief-Engineer <119664036+Chief-Engineer@users.noreply.github.com> Date: Mon, 19 Jun 2023 02:04:30 -0500 Subject: [PATCH 355/474] add tile pry and place logs (#17461) --- Content.Server/Tools/ToolSystem.TilePrying.cs | 13 ++++++++++++ Content.Shared/Tiles/FloorTileSystem.cs | 20 +++++++++++++------ 2 files changed, 27 insertions(+), 6 deletions(-) diff --git a/Content.Server/Tools/ToolSystem.TilePrying.cs b/Content.Server/Tools/ToolSystem.TilePrying.cs index cbc5870187..05ff6a9ca5 100644 --- a/Content.Server/Tools/ToolSystem.TilePrying.cs +++ b/Content.Server/Tools/ToolSystem.TilePrying.cs @@ -1,6 +1,8 @@ using System.Threading; using Content.Server.Fluids.Components; using Content.Server.Tools.Components; +using Content.Shared.Administration.Logs; +using Content.Shared.Database; using Content.Shared.DoAfter; using Content.Shared.Fluids.Components; using Content.Shared.Interaction; @@ -44,6 +46,17 @@ private void OnTilePryComplete(EntityUid uid, TilePryingComponent component, Til } var tile = grid.GetTileRef(args.Coordinates); + if (args.Used != null) + { + _adminLogger.Add(LogType.Action, LogImpact.Low, + $"{ToPrettyString(args.User):actor} used {ToPrettyString(args.Used.Value):tool} to pry {_tileDefinitionManager[tile.Tile.TypeId].Name} at {ToPrettyString(tile.GridUid):grid} {tile.GridPosition()}"); + } + else + { + _adminLogger.Add(LogType.Action, LogImpact.Low, + $"{ToPrettyString(args.User):actor} pried {_tileDefinitionManager[tile.Tile.TypeId].Name} at {ToPrettyString(tile.GridUid):grid} {tile.GridPosition()}"); + } + _tile.PryTile(tile); } diff --git a/Content.Shared/Tiles/FloorTileSystem.cs b/Content.Shared/Tiles/FloorTileSystem.cs index a098eea26a..bc3428b8cb 100644 --- a/Content.Shared/Tiles/FloorTileSystem.cs +++ b/Content.Shared/Tiles/FloorTileSystem.cs @@ -1,5 +1,7 @@ using System.Linq; +using Content.Shared.Administration.Logs; using Content.Shared.Audio; +using Content.Shared.Database; using Content.Shared.Interaction; using Content.Shared.Maps; using Content.Shared.Physics; @@ -24,6 +26,7 @@ public sealed class FloorTileSystem : EntitySystem [Dependency] private readonly INetManager _netManager = default!; [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly ITileDefinitionManager _tileDefinitionManager = default!; + [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; [Dependency] private readonly EntityLookupSystem _lookup = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; @@ -91,10 +94,11 @@ private void OnAfterInteract(EntityUid uid, FloorTileComponent component, AfterI if (mapGrid != null) { + var gridUid = mapGrid.Owner; var ev = new FloorTileAttemptEvent(); RaiseLocalEvent(mapGrid); - if (HasComp(mapGrid.Owner) || ev.Cancelled) + if (HasComp(gridUid) || ev.Cancelled) { if (_netManager.IsClient && _timing.IsFirstTimePredicted) _popup.PopupEntity(Loc.GetString("invalid-floor-placement"), args.User); @@ -110,7 +114,7 @@ private void OnAfterInteract(EntityUid uid, FloorTileComponent component, AfterI if (!_stackSystem.Use(uid, 1, stack)) continue; - PlaceAt(args.User, mapGrid, location, currentTileDefinition.TileId, component.PlaceTileSound); + PlaceAt(args.User, gridUid, mapGrid, location, currentTileDefinition.TileId, component.PlaceTileSound); args.Handled = true; return; } @@ -125,10 +129,11 @@ private void OnAfterInteract(EntityUid uid, FloorTileComponent component, AfterI return; mapGrid = _mapManager.CreateGrid(locationMap.MapId); - var gridXform = Transform(mapGrid.Owner); + var gridUid = mapGrid.Owner; + var gridXform = Transform(gridUid); _transform.SetWorldPosition(gridXform, locationMap.Position); - location = new EntityCoordinates(mapGrid.Owner, Vector2.Zero); - PlaceAt(args.User, mapGrid, location, _tileDefinitionManager[component.OutputTiles[0]].TileId, component.PlaceTileSound, mapGrid.TileSize / 2f); + location = new EntityCoordinates(gridUid, Vector2.Zero); + PlaceAt(args.User, gridUid, mapGrid, location, _tileDefinitionManager[component.OutputTiles[0]].TileId, component.PlaceTileSound, mapGrid.TileSize / 2f); return; } } @@ -139,8 +144,11 @@ public bool HasBaseTurf(ContentTileDefinition tileDef, string baseTurf) return tileDef.BaseTurf == baseTurf; } - private void PlaceAt(EntityUid user, MapGridComponent mapGrid, EntityCoordinates location, ushort tileId, SoundSpecifier placeSound, float offset = 0) + private void PlaceAt(EntityUid user, EntityUid gridUid, MapGridComponent mapGrid, EntityCoordinates location, + ushort tileId, SoundSpecifier placeSound, float offset = 0) { + _adminLogger.Add(LogType.Action, LogImpact.Low, $"{ToPrettyString(user):actor} placed tile {_tileDefinitionManager[tileId].Name} at {ToPrettyString(gridUid)} {location}"); + var variant = _random.Pick(((ContentTileDefinition) _tileDefinitionManager[tileId]).PlacementVariants); mapGrid.SetTile(location.Offset(new Vector2(offset, offset)), new Tile(tileId, 0, variant)); From bf8fa41ecde4b23a64d8d6a41650d77b770abe0a Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Mon, 19 Jun 2023 11:36:29 +0300 Subject: [PATCH 356/474] comit (#17462) --- Resources/Maps/Dungeon/lava_brig.yml | 2 +- Resources/Maps/bagel.yml | 8 ++++---- Resources/Maps/fland.yml | 2 +- Resources/Maps/meta.yml | 2 +- .../Prototypes/Catalog/Fills/Crates/fun.yml | 2 +- .../Catalog/Fills/Crates/medical.yml | 6 +++--- .../Catalog/Fills/Lockers/service.yml | 2 +- .../Catalog/Fills/Lockers/wardrobe_colors.yml | 8 ++++---- .../Inventories/cargodrobe.yml | 2 +- .../Inventories/clothesmate.yml | 10 +++++----- .../VendingMachines/Inventories/hydrobe.yml | 2 +- .../VendingMachines/Inventories/robodrobe.yml | 2 +- .../VendingMachines/Inventories/secdrobe.yml | 2 +- .../Entities/Clothing/Head/bandanas.yml | 20 +++++++++---------- Resources/Prototypes/Roles/Antags/pirate.yml | 2 +- .../Roles/Jobs/Fun/misc_startinggear.yml | 2 +- 16 files changed, 37 insertions(+), 37 deletions(-) diff --git a/Resources/Maps/Dungeon/lava_brig.yml b/Resources/Maps/Dungeon/lava_brig.yml index cc432b3f73..765dffca65 100644 --- a/Resources/Maps/Dungeon/lava_brig.yml +++ b/Resources/Maps/Dungeon/lava_brig.yml @@ -9158,7 +9158,7 @@ entities: - pos: 22.608034,10.659381 parent: 588 type: Transform -- proto: HatBandRed +- proto: ClothingHeadBandRed entities: - uid: 1295 components: diff --git a/Resources/Maps/bagel.yml b/Resources/Maps/bagel.yml index 47e63f8845..5ef62dd848 100644 --- a/Resources/Maps/bagel.yml +++ b/Resources/Maps/bagel.yml @@ -112014,7 +112014,7 @@ entities: - pos: 22.5,-0.5 parent: 60 type: Transform -- proto: HatBandGold +- proto: ClothingHeadBandGold entities: - uid: 952 components: @@ -112026,7 +112026,7 @@ entities: - pos: -56.55667,-23.491457 parent: 60 type: Transform -- proto: HatBandMerc +- proto: ClothingHeadBandMerc entities: - uid: 17463 components: @@ -112037,7 +112037,7 @@ entities: - canCollide: False type: Physics - type: InsideEntityStorage -- proto: HatBandRed +- proto: ClothingHeadBandRed entities: - uid: 1405 components: @@ -112054,7 +112054,7 @@ entities: - pos: 31.491577,14.711699 parent: 60 type: Transform -- proto: HatBandSkull +- proto: ClothingHeadBandSkull entities: - uid: 4377 components: diff --git a/Resources/Maps/fland.yml b/Resources/Maps/fland.yml index 82ccec973f..66ebfde0bb 100644 --- a/Resources/Maps/fland.yml +++ b/Resources/Maps/fland.yml @@ -188739,7 +188739,7 @@ entities: - pos: 37.581806,-4.4282417 parent: 13329 type: Transform -- proto: HatBandRed +- proto: ClothingHeadBandRed entities: - uid: 34062 components: diff --git a/Resources/Maps/meta.yml b/Resources/Maps/meta.yml index c678a618ac..fd7d445733 100644 --- a/Resources/Maps/meta.yml +++ b/Resources/Maps/meta.yml @@ -136150,7 +136150,7 @@ entities: - pos: 29.558147,-58.540123 parent: 5350 type: Transform -- proto: HatBandGold +- proto: ClothingHeadBandGold entities: - uid: 24777 components: diff --git a/Resources/Prototypes/Catalog/Fills/Crates/fun.yml b/Resources/Prototypes/Catalog/Fills/Crates/fun.yml index e8eb6b0cba..36121f2a06 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/fun.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/fun.yml @@ -237,7 +237,7 @@ - id: ClothingOuterCoatPirate - id: ClothingShoesBootsLaceup amount: 2 - - id: HatBandRed + - id: ClothingHeadBandRed - id: FoamCutlass amount: 2 diff --git a/Resources/Prototypes/Catalog/Fills/Crates/medical.yml b/Resources/Prototypes/Catalog/Fills/Crates/medical.yml index ab16064403..a386674d5c 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/medical.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/medical.yml @@ -51,9 +51,9 @@ - id: UniformScrubsColorGreen - id: UniformScrubsColorPurple - id: UniformScrubsColorBlue - - id: HatBandBlue - - id: HatBandRed - - id: HatBandGreen + - id: ClothingHeadBandBlue + - id: ClothingHeadBandRed + - id: ClothingHeadBandGreen - id: ClothingMaskSterile amount: 3 diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/service.yml b/Resources/Prototypes/Catalog/Fills/Lockers/service.yml index 19cfa5e927..7da64f2d1a 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/service.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/service.yml @@ -94,7 +94,7 @@ amount: 2 - id: ClothingOuterApronBotanist amount: 2 - - id: HatBandBotany + - id: ClothingHeadBandBotany amount: 2 - id: HydroponicsToolClippers - id: ClothingBeltPlant diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/wardrobe_colors.yml b/Resources/Prototypes/Catalog/Fills/Lockers/wardrobe_colors.yml index 57d90a7964..0c7661452a 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/wardrobe_colors.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/wardrobe_colors.yml @@ -86,7 +86,7 @@ - id: ClothingUniformJumpskirtColorYellow - id: ClothingShoesColorOrange amount: 2 - - id: HatBandGold + - id: ClothingHeadBandGold - type: entity @@ -137,8 +137,8 @@ - id: ClothingUniformJumpskirtColorBlack - id: ClothingShoesColorBlack amount: 2 - - id: HatBandBlack - - id: HatBandSkull + - id: ClothingHeadBandBlack + - id: ClothingHeadBandSkull prob: 0.4 - type: entity @@ -152,4 +152,4 @@ - id: ClothingUniformJumpskirtColorGreen - id: ClothingShoesColorBlack amount: 2 - - id: HatBandGreen + - id: ClothingHeadBandGreen diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/cargodrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/cargodrobe.yml index 14b5fec215..70bee8f80e 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/cargodrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/cargodrobe.yml @@ -6,7 +6,7 @@ ClothingShoesColorBlack: 3 ClothingHandsGlovesFingerless: 3 ClothingHeadHatCargosoft: 3 - HatBandBrown: 3 + ClothingHeadBandBrown: 3 ClothingHeadsetCargo: 3 ClothingOuterWinterCargo: 2 ClothingOuterWinterMiner: 2 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/clothesmate.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/clothesmate.yml index 2867bcfe9c..29fd3cc7bf 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/clothesmate.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/clothesmate.yml @@ -5,11 +5,11 @@ ClothingBackpackDuffel: 5 ClothingBackpackSatchel: 3 ClothingBackpackSatchelLeather: 2 - HatBandBlack: 2 - HatBandBlue: 2 - HatBandGreen: 2 - HatBandRed: 2 - HatBandSkull: 2 + ClothingHeadBandBlack: 2 + ClothingHeadBandBlue: 2 + ClothingHeadBandGreen: 2 + ClothingHeadBandRed: 2 + ClothingHeadBandSkull: 2 ClothingUniformJumpsuitColorGrey: 8 ClothingUniformJumpskirtColorGrey: 8 ClothingUniformJumpsuitColorWhite: 3 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/hydrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/hydrobe.yml index 787ad545c3..5e1833f0b5 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/hydrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/hydrobe.yml @@ -8,6 +8,6 @@ ClothingUniformOveralls: 3 ClothingUniformJumpsuitHydroponics: 3 ClothingUniformJumpskirtHydroponics: 3 - HatBandBotany: 3 + ClothingHeadBandBotany: 3 ClothingHeadsetService: 2 ClothingOuterWinterHydro: 2 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/robodrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/robodrobe.yml index 711b7cd879..117478d7cf 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/robodrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/robodrobe.yml @@ -7,6 +7,6 @@ ClothingShoesColorBlack: 2 ClothingHandsGlovesFingerless: 2 ClothingHeadHatCorpsoft: 2 - HatBandSkull: 2 + ClothingHeadBandSkull: 2 ClothingHeadsetRobotics: 2 ClothingOuterWinterRobo: 2 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/secdrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/secdrobe.yml index f82efdc227..4a8e5acf57 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/secdrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/secdrobe.yml @@ -8,7 +8,7 @@ ClothingShoesBootsJack: 3 ClothingHeadHatBeret: 3 ClothingHeadHatSecsoft: 3 - HatBandRed: 3 + ClothingHeadBandRed: 3 ClothingHandsGlovesColorBlack: 3 ClothingUniformJumpskirtSec: 3 ClothingUniformJumpsuitSecGrey: 3 diff --git a/Resources/Prototypes/Entities/Clothing/Head/bandanas.yml b/Resources/Prototypes/Entities/Clothing/Head/bandanas.yml index daaf09e5a4..982aecd856 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/bandanas.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/bandanas.yml @@ -1,6 +1,6 @@ - type: entity parent: ClothingHeadBaseButcherable - id: HatBandBlack + id: ClothingHeadBandBlack name: black bandana description: A black bandana to make you look cool. components: @@ -11,7 +11,7 @@ - type: entity parent: ClothingHeadBaseButcherable - id: HatBandBlue + id: ClothingHeadBandBlue name: blue bandana description: A blue bandana to make you look cool. components: @@ -22,7 +22,7 @@ - type: entity parent: ClothingHeadBaseButcherable - id: HatBandBotany + id: ClothingHeadBandBotany name: botany bandana description: A botany bandana to make you look cool, made from natural fibers. components: @@ -33,7 +33,7 @@ - type: entity parent: ClothingHeadBaseButcherable - id: HatBandGold + id: ClothingHeadBandGold name: gold bandana description: A gold bandana to make you look cool. components: @@ -44,7 +44,7 @@ - type: entity parent: ClothingHeadBaseButcherable - id: HatBandGreen + id: ClothingHeadBandGreen name: green bandana description: A green bandana to make you look cool. components: @@ -55,7 +55,7 @@ - type: entity parent: ClothingHeadBaseButcherable - id: HatBandGrey + id: ClothingHeadBandGrey name: grey bandana description: A grey bandana to make you look cool. components: @@ -66,7 +66,7 @@ - type: entity parent: ClothingHeadBaseButcherable - id: HatBandRed + id: ClothingHeadBandRed name: red bandana description: A red bandana to make you look cool. components: @@ -77,7 +77,7 @@ - type: entity parent: ClothingHeadBaseButcherable - id: HatBandSkull + id: ClothingHeadBandSkull name: skull bandana description: A bandana with a skull to make you look even cooler. components: @@ -88,7 +88,7 @@ - type: entity parent: ClothingHeadBaseButcherable - id: HatBandMerc + id: ClothingHeadBandMerc name: mercenary bandana description: To protect the head from the sun, insects and other dangers of the higher path. components: @@ -99,7 +99,7 @@ - type: entity parent: ClothingHeadBaseButcherable - id: HatBandBrown + id: ClothingHeadBandBrown name: brown bandana description: A brown bandana to make you look cool. components: diff --git a/Resources/Prototypes/Roles/Antags/pirate.yml b/Resources/Prototypes/Roles/Antags/pirate.yml index e08e293f3a..e325643d3a 100644 --- a/Resources/Prototypes/Roles/Antags/pirate.yml +++ b/Resources/Prototypes/Roles/Antags/pirate.yml @@ -3,7 +3,7 @@ equipment: jumpsuit: ClothingUniformJumpsuitPirate back: ClothingBackpackPirateFilled - head: HatBandBlack + head: ClothingHeadBandBlack shoes: ClothingShoesBootsLaceup id: PassengerPDA belt: ClothingBeltUtility diff --git a/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml b/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml index 081733e27e..ca627885c6 100644 --- a/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml +++ b/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml @@ -6,7 +6,7 @@ equipment: jumpsuit: ClothingUniformJumpsuitColorBlack back: ClothingBackpackFilled - head: HatBandSkull + head: ClothingHeadBandSkull eyes: ClothingEyesGlassesSunglasses outerClothing: ClothingOuterCoatGentle gloves: ClothingHandsGlovesFingerless From 69c6ab5aaf5e631d4dde6c5a0a059b3adcfd41a5 Mon Sep 17 00:00:00 2001 From: Vordenburg <114301317+Vordenburg@users.noreply.github.com> Date: Mon, 19 Jun 2023 09:47:59 -0400 Subject: [PATCH 357/474] Add dungeon templates as uninitialized maps (#17468) --- Content.Server/Procedural/DungeonSystem.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Content.Server/Procedural/DungeonSystem.cs b/Content.Server/Procedural/DungeonSystem.cs index 7dabc23943..00a06ac754 100644 --- a/Content.Server/Procedural/DungeonSystem.cs +++ b/Content.Server/Procedural/DungeonSystem.cs @@ -150,6 +150,7 @@ public MapId GetOrCreateTemplate(DungeonRoomPrototype proto) } var mapId = _mapManager.CreateMap(); + _mapManager.AddUninitializedMap(mapId); _loader.Load(mapId, proto.AtlasPath.ToString()); var mapUid = _mapManager.GetMapEntityId(mapId); _mapManager.SetMapPaused(mapId, true); From 3d98319069a786320d48969d0091e0ac2712c195 Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Mon, 19 Jun 2023 20:29:44 +0300 Subject: [PATCH 358/474] Add more windoors (#17471) --- .../Structures/Doors/Windoors/windoor.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/Resources/Prototypes/Entities/Structures/Doors/Windoors/windoor.yml b/Resources/Prototypes/Entities/Structures/Doors/Windoors/windoor.yml index 41ace99bd7..f30472710d 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Windoors/windoor.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Windoors/windoor.yml @@ -214,3 +214,19 @@ components: - type: AccessReader access: [["HeadOfPersonnel"]] + +- type: entity + parent: WindoorSecure + id: WindoorAtmosphericsLocked + suffix: Atmospherics, Locked + components: + - type: AccessReader + access: [["Atmospherics"]] + +- type: entity + parent: WindoorSecure + id: WindoorParamedicLocked + suffix: Paramedic, Locked + components: + - type: AccessReader + access: [["Paramedic"]] From 83aaeb3597586a4860db90bdad9da3bac12342c7 Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 19 Jun 2023 13:30:49 -0400 Subject: [PATCH 359/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index bd6b34920e..9645f47fe5 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: metalgearsloth - changes: - - {message: Bump collision sound velocity required from 0.25 to 1., type: Tweak} - id: 3547 - time: '2023-04-26T06:52:57.0000000+00:00' - author: kzhanik changes: - {message: 'HoS and CMO get survival boxes according to their departments (HoS @@ -2928,3 +2923,8 @@ Entries: your picks!, type: Tweak} id: 4046 time: '2023-06-19T04:03:41.0000000+00:00' +- author: lzk + changes: + - {message: Added paramedic and atmospherics windoor for mapping., type: Add} + id: 4047 + time: '2023-06-19T17:29:45.0000000+00:00' From 3cb919fe7702e55dc3da3097ad78bbee6f3f2034 Mon Sep 17 00:00:00 2001 From: Jackal298 <129199891+Jackal298@users.noreply.github.com> Date: Mon, 19 Jun 2023 20:38:57 +0300 Subject: [PATCH 360/474] Small addition to mercenary items (#17464) * Small addition to mercenary items try number three * Bot * Bot fix --- .../Entities/Clothing/Hands/gloves.yml | 18 ++++++++++++ .../Entities/Clothing/Head/hats.yml | 11 ++++++++ .../Entities/Clothing/Head/helmets.yml | 12 ++++++++ .../Entities/Clothing/Masks/masks.yml | 11 ++++++++ .../Gloves/Color/olive.rsi/equipped-HAND.png | Bin 0 -> 463 bytes .../Hands/Gloves/Color/olive.rsi/icon.png | Bin 0 -> 396 bytes .../Gloves/Color/olive.rsi/inhand-left.png | Bin 0 -> 278 bytes .../Gloves/Color/olive.rsi/inhand-right.png | Bin 0 -> 286 bytes .../Hands/Gloves/Color/olive.rsi/meta.json | 26 ++++++++++++++++++ .../Hats/beret_merc.rsi/equipped-HELMET.png | Bin 0 -> 472 bytes .../Head/Hats/beret_merc.rsi/icon.png | Bin 0 -> 298 bytes .../Head/Hats/beret_merc.rsi/inhand-left.png | Bin 0 -> 539 bytes .../Head/Hats/beret_merc.rsi/inhand-right.png | Bin 0 -> 524 bytes .../Head/Hats/beret_merc.rsi/meta.json | 26 ++++++++++++++++++ .../merc_helmet.rsi/equipped-HELMET.png | Bin 0 -> 746 bytes .../Head/Helmets/merc_helmet.rsi/icon.png | Bin 0 -> 374 bytes .../Helmets/merc_helmet.rsi/inhand-left.png | Bin 0 -> 655 bytes .../Helmets/merc_helmet.rsi/inhand-right.png | Bin 0 -> 630 bytes .../Head/Helmets/merc_helmet.rsi/meta.json | 26 ++++++++++++++++++ .../Clothing/Mask/merc.rsi/equipped-MASK.png | Bin 0 -> 956 bytes .../Textures/Clothing/Mask/merc.rsi/icon.png | Bin 0 -> 551 bytes .../Clothing/Mask/merc.rsi/inhand-left.png | Bin 0 -> 420 bytes .../Clothing/Mask/merc.rsi/inhand-right.png | Bin 0 -> 427 bytes .../Textures/Clothing/Mask/merc.rsi/meta.json | 26 ++++++++++++++++++ 24 files changed, 156 insertions(+) create mode 100644 Resources/Textures/Clothing/Hands/Gloves/Color/olive.rsi/equipped-HAND.png create mode 100644 Resources/Textures/Clothing/Hands/Gloves/Color/olive.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Hands/Gloves/Color/olive.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Hands/Gloves/Color/olive.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Hands/Gloves/Color/olive.rsi/meta.json create mode 100644 Resources/Textures/Clothing/Head/Hats/beret_merc.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Hats/beret_merc.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Head/Hats/beret_merc.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Head/Hats/beret_merc.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Head/Hats/beret_merc.rsi/meta.json create mode 100644 Resources/Textures/Clothing/Head/Helmets/merc_helmet.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Helmets/merc_helmet.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Head/Helmets/merc_helmet.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Head/Helmets/merc_helmet.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Head/Helmets/merc_helmet.rsi/meta.json create mode 100644 Resources/Textures/Clothing/Mask/merc.rsi/equipped-MASK.png create mode 100644 Resources/Textures/Clothing/Mask/merc.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Mask/merc.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Mask/merc.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Mask/merc.rsi/meta.json diff --git a/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml b/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml index f2d5a5842e..b468268ec4 100644 --- a/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml +++ b/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml @@ -222,6 +222,24 @@ fiberColor: fibers-black - type: FingerprintMask +- type: entity + parent: ClothingHandsBase + id: ClothingHandsMercGlovesCombat + name: mercenary combat gloves + description: High-quality combat gloves to protect hands from mechanical damage during combat. + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/Color/olive.rsi + - type: Clothing + sprite: Clothing/Hands/Gloves/Color/olive.rsi + - type: GloveHeatResistance + heatResistance: 1400 + - type: Insulated + - type: Fiber + fiberMaterial: fibers-insulative + fiberColor: fibers-olive + - type: FingerprintMask + - type: entity parent: ClothingHandsBase id: ClothingHandsGlovesFingerless diff --git a/Resources/Prototypes/Entities/Clothing/Head/hats.yml b/Resources/Prototypes/Entities/Clothing/Head/hats.yml index c45c287a2e..e8de33a111 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hats.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hats.yml @@ -75,6 +75,17 @@ - type: Clothing sprite: Clothing/Head/Hats/beret_brigmedic.rsi +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatBeretMerc + name: mercenary beret + description: Olive beret, the badge depicts a jackal on a rock. + components: + - type: Sprite + sprite: Clothing/Head/Hats/beret_merc.rsi + - type: Clothing + sprite: Clothing/Head/Hats/beret_merc.rsi + - type: entity parent: ClothingHeadBase id: ClothingHeadHatBowlerHat diff --git a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml index 8f9396dcee..3117e4478d 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml @@ -29,6 +29,18 @@ - type: Clothing sprite: Clothing/Head/Helmets/securityold.rsi +#Mercenary Helmet +- type: entity + parent: ClothingHeadHelmetHelmet + id: ClothingHeadHelmetMerc + name: mercenary helmet + description: The combat helmet is commonly used by mercenaries, is strong, light and smells like gunpowder and the jungle. + components: + - type: Sprite + sprite: Clothing/Head/Helmets/merc_helmet.rsi + - type: Clothing + sprite: Clothing/Head/Helmets/merc_helmet.rsi + #SWAT Helmet - type: entity parent: ClothingHeadBase diff --git a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml index cc78985790..cc7450219f 100644 --- a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml +++ b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml @@ -262,6 +262,17 @@ - type: Clothing sprite: Clothing/Mask/swat.rsi +- type: entity + parent: ClothingMaskGasExplorer + id: ClothingMaskGasMerc + name: mercenary gas mask + description: Slightly outdated, but reliable military-style gas mask. + components: + - type: Sprite + sprite: Clothing/Mask/merc.rsi + - type: Clothing + sprite: Clothing/Mask/merc.rsi + - type: entity parent: ClothingMaskGasExplorer id: ClothingMaskGasERT diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/olive.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/Color/olive.rsi/equipped-HAND.png new file mode 100644 index 0000000000000000000000000000000000000000..a78b4f96a6dc33d36db8886507db0fa22218b6c9 GIT binary patch literal 463 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEV4UXZ;uuoF_;!|I9+RPf>)zEN z-mVjKGb|))wbpG2U*I)=@|(bnj0FoAr>H5-R1x*sm!8{`@;9H8(?qWN*?H-(1oOuh zY|kzlsps$XW)O5(*AUep!%)k)iuDT96Rs7kCm1gTJLoPDQwVR^$2w1d;qZqdTet8B(~Re@o85XhPyX5GnWvxcH_xHnN_gReOg-`#n(QS6A zJ@T*jpQxLv!iIxl3Mb>^@P&vb6ni>(|Xb8~sJ@;M-mE&eyMfsi9zhe z72|6EqLsx(@0C?J4ZfbSGqvoGe^=YG|u8|0ITa3$kV|KAxaE zRZDa^hsM$z-Pc_WQCgu|eu4pBH>0jCRevDNxMte26V7SBfDy&u>FVdQ&MBb@0KYiI A?EnA( literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/olive.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/Color/olive.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..db6378de51d8abea50cd7aa69da52349d51f51d8 GIT binary patch literal 396 zcmV;70dxL|P)Z}kn**=~y{g}u3}fs-rEF{o#Tn21|2){~$8qeo z93NYn35a`$pXmua2UL1de=^$c?a%|h#S5amYPKX0000?qcl>f<&A~=j7OP990Cds4GfG-EXa%k$Arjv^SK|k zFO02x->yBcLeTZx=j2s-+qCm@Hu5NR#azFhd;6aHi@J7~dne+1quC}LJ<9n)qH41t&i!lmnJY4{4(L$^Pgg&ebxsLQ03J|a_5c6? literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/olive.rsi/inhand-right.png b/Resources/Textures/Clothing/Hands/Gloves/Color/olive.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..f1c3af4ca2d69bdce0aaaaf559bc946cfc4aef3d GIT binary patch literal 286 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=Pd!~6Ln;{G-r6X5$bg46z}b5$ zYeeJU<0rUuCUi;pwOWgBI@wrUsaI?F^Lgalpf1-221X_p4gm!RBt~P~fyagQ=G&Iv zes#9;Y>lHx?6l~Yy7N}3S8TIaVYLBj=Yuy)oBg_~@2Q%~U-CrBb%O&F|4E*3uy6)D(NE(8yHR!PC{xWt~$(698&s BZEXMm literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/olive.rsi/meta.json b/Resources/Textures/Clothing/Hands/Gloves/Color/olive.rsi/meta.json new file mode 100644 index 0000000000..5b65737755 --- /dev/null +++ b/Resources/Textures/Clothing/Hands/Gloves/Color/olive.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "modified sprite from Jackal298 based on the sprite from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HAND", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hats/beret_merc.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/beret_merc.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..7878ecdc421532ec329379830e5324556828b302 GIT binary patch literal 472 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEV4Uyi;uuoF`1Y2e_hAQ#V;_T; zTv*$zVd251xx=I2^|g~b?_brwu=d3j$AT3dJGKVD6k3(=MtDbooa`^TCj!6hGbTIf zo&WuBmhSpu_kDgrzvTP#v-js))%xygzdyf-=kxa4`R23ts$MTh({*@w_+jdfwFghI z3O-*SCT%Wt_sU8RwVehr2gUb_hsXTg@x0%9dtCUs>=q0AKjPC)`(Bz{V9>xH{+Mg^ zs`Uo<&pw~ee*g7(x5xZ{Zx?RMyZHY5tXWp8oexevS-W=e#%DUyr#~(IUi$a?v&|gB zO$D0MgEL3rW2tEuykrA6itSZjK9@V7_FC$^R~_jr-$YW@Hog{g iU|?hsz(o{s{9)?so_0RmThbXAV+@|IelF{r5}E+|_sRMI literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hats/beret_merc.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/beret_merc.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..e04ccd7765fa2155fdb15c5c5ab2ca81c1584289 GIT binary patch literal 298 zcmV+_0oDGAP)K0Ry-wrkFB)+g_h>tdJxDHaO2G28^KVZj>To zjKray;k;uPROaG6M96opICD+fa}wS(7vjg)*nyNb=zxU#3a3J4ouB|0yewxjp8(&? z_q1O2bU00tX8-^I literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hats/beret_merc.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hats/beret_merc.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..3605b07345bad72d6112ada3c5f98437a20c87b7 GIT binary patch literal 539 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEV0`51;uuoF_;%LDtiuKZZC8c3 z;=I}#!u@Cd=9u?OV(zYz)3eS-U(1QL`YQU1X&zT?tH>_v;FCg^_%ihr66H^9teq~j zFkV0Ebso+RaSkwn;v|6{qdWd@?OVI!PvG%~Pfhlke*U?*TWkKG3D2_x6MDC+Z@c@?H;SK2x3K$NS;ruGuPmJX*7GCh z9@=PzGdrBBS?-=a{ZgU}j~w##NrtP{yc+g;9V3 z17!%kn6f^*>(Be1^!dNv)oGPWT(NgDJM6Rf?^o7C_xafx&f49cmnE=k+1;I&zg8MB ztT@*oW$7205pAu|x?q~z`e57RKi(=^UtzDYyc%g%n0!(}g2Cpq&sU~vgoa34F0mh88j1Ju?E2;z-7tWhA?QREy?xcmU99debilWN?Gp@fgRsCTtZzV9& O89ZJ6T-G@yGywoO`{Y^x literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hats/beret_merc.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hats/beret_merc.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..85ccb585735815980f7c38406a347247dc0bc356 GIT binary patch literal 524 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEV7%<<;uuoF_;%L9yu$_pZFe(g zi5N|7Wq)hf=61~M^dYa)Zf)OG9IHER9lMuJS|xqrm%Ekr$2nTv%DT`0Ok8EL z^8DZb@AVjMr4Ki=cr;+3ge;ac*FcuabDMND>`W{|{%`enm}ft|$o_nMn$fkQb+7H` z?mL_I`PQq4;tVYMVk^IDb!Rd@e0Bdlf7;$Ut=kGQk;|Vu+DbG&`+V2tPW_CZHY@k7 zJ}>+D#?|;r3vS=bx4D}9H`lUz7&MjbZnl)$FZFr*ZS#D|-nX(1IlFHqs(9vU`LE;u z&G8^o@N@3dOA1Dpy3O9MzMA}URy*r&4h4ak`OyhW>a0(HnwigVz;(?t{lHD41(`u- z?h87cx%u`{ujqx=pfkl0jE3pkySJYVcM$iOVuJ)fdOG;pPF;zH3%|xw6mV7!ri64PVW?mKL++JJSNg%SktEzt?f@;?CTw x#;|s#w3oSdg2tq%>xrxxXYT~;Qjce}=g^(Qq&@NCePApzc)I$ztaD0e0stxV;CTQ5 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hats/beret_merc.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/beret_merc.rsi/meta.json new file mode 100644 index 0000000000..6e7020ce75 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/beret_merc.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "modified sprite from Jackal298 based on the sprite from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Helmets/merc_helmet.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Helmets/merc_helmet.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..9a52c7de5a4759baae1669319f869c6b36a0edc2 GIT binary patch literal 746 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEVA|;E;uuoF_;%JtKWRr1SM@+E zC6%rvjEr9CoSpFn^Wz_UezEe!%8VdI!JW-~|jW&ektU%ssVSyNd# zS5GhR@JF#mF8ePp@87pyHp}%##ERQI+11wGJ`c=53pEr1YGa0(X3r$9@ThiGqza*W(U9xFC5T#k0~kYM#ZUxj(wMT`+EV zP`mnexoy^pe4B#G3tWfp-MfB7K62s7%@!A3HP{ZYl$Y)M`ZIgoWqT2hO?vGG#h)jf zJ72H1ZHdw3f9u}VoG$s1{rbg=-*0~WD0#VW-|PI&>t8SD5?vbya87^<$475x!RvSH;7uuwm7P%Bf}Z z7=0HOac~?FsmOfjD)*!_d!pDaCap&8zk;Xki%&3IntsINWW=h&CXZgvW!a>cU(q9y z;mn|-a?5JooIfk-W@tUDKE5uUJMtjY28B@p$S#$sZ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Helmets/merc_helmet.rsi/icon.png b/Resources/Textures/Clothing/Head/Helmets/merc_helmet.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..bbf9b3700af4a648e701ed6e94d1df2fee73638c GIT binary patch literal 374 zcmV-+0g3*JP)KgkH zsm0pjV)3cI|1OrrxpmZ>C1-Jzs0(6VxcPiarR8!{bDx2iic<~)C?pUPc((+80X(v2 U+;~-vl>h($07*qoM6N<$f*mrbwEzGB literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Helmets/merc_helmet.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Helmets/merc_helmet.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..d06c541e407dae34494d5e06656f741277677088 GIT binary patch literal 655 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEU<&heaSW+od^_uW7L%dCvCEfc zyMDM3H$`hNXVdxzd)GgB{F7^M^(VcEJ)*i*nf%#?F_st!FyS{Lrcy>R< zX#d=kO~T0$9t|v5(1ZDcJFMFGE)J~EUvE8E&-?W%t^C(|S<~-@TvV#!nf?BIb>{WF z@1<+>#k7s*@2~v&^kn{ac{P@#U5x%uZyC#(6<#U-|$bvEwb=Ps7xZP;`7X;G=c zmuo5~(|5(+J!TWGu|R&IvZC^#OKuzoy7`W3>VI~gf04n#(5%z^c~_{!i_Z)a+|$Ju zr~2AFjE%4_>#Sl+C|+3~~ovVYz@A+=b+UZb4% zi>XY{)4SFOA_7;Qm0Zv};c&pEXA;fjPg3V?T@(BNvtmNNM6TtR2a-i<2dw=xw{kE} zPc-=R{glsAeMenqhH_rB+1I~h7j(VmzH+Ow;mH1$Mu|h}oD�Cmi5p*~hqW;t!^K T8UY-@gvQ|M>gTe~DWM4fp8O+K literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Helmets/merc_helmet.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Helmets/merc_helmet.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..cfe18a362910a898eaf0ab2b18559779fba7900d GIT binary patch literal 630 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEV6ydeaSW+od^^i9o5@h*_~lDy zl`OV&2Q8hg@I&;@Z_z&$@BHr0jj`es3)kJT<#6Mc&0q8Xw$JF^CLZ|ym3_e-)yk85 zzgO#9?hsE7adBY5f*u^=h-rQEwq%y~{#t_>EUC3SZLVy7G2e)*dG^`1t;rjIMA`Qr z4>p$CyY$K01V6d5m-h4PXG{=YAG`PO!57-oy|X8Vtxml4wml?e$K&&Veg0}sopi9( z>F?^RyBGX3Uw28s>0!cl{)qxv<*A>(%u%tQ_(6P>dB`a zA`8T)=}p&}nl9_j5V%Jx`d2i=i$;MHt=G8XCVb~;*vL^Ski3Zb7$Ph501qaMo0nI<*M-Y zzy0c83-3Rz`=t1K&hjbuPw}SJ8uqx~;{0i`Y>t^{XKJ8=3$p`L>&udcWHUAeGj<&= z#)Hq;Hdo1iI4RGv3H?&8W2{FJ9&d~`>wy+mOUGx@{Z%FmJZW08f(?g-7Z$Tl t*xk|8EXq8jO4Bst0pbJb-44$rjF6*2Ung9j47xDlA literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Helmets/merc_helmet.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/merc_helmet.rsi/meta.json new file mode 100644 index 0000000000..f4c7ee3e40 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Helmets/merc_helmet.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "modified sprite from Jackal298 based on the sprite from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/a75dee2e6d236612dbd403dd5f8687ca930c01f1", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Mask/merc.rsi/equipped-MASK.png b/Resources/Textures/Clothing/Mask/merc.rsi/equipped-MASK.png new file mode 100644 index 0000000000000000000000000000000000000000..1ff7f0eb6db0538afa134124a0bb7c25cd0c7bb9 GIT binary patch literal 956 zcmV;t14I0YP)s7R)7xN|Ac0SmI5OIpr$kDB`6BX?qZ{MF_n%;!O%td+^W(!GcKfm>&=? zy;YB)LN1mdHl#&JB`v{qzojn>QpvteHZyEyE^lUccE0z%_s#6#O`=+@(m1!|I0ui| z$DV+TVHL2nH0$!WYisWl+#i*ln|tWi>j#OcscUYzyd4@plmZZZCUco4C$A8!O2#M% zK=A3b<3qt>92Qqh0D@iLyhG*fd1|*izQuS{B;@mXLeL-{4HjcO57R_jfP=r4Ep)ow zF7TX7sS6!%OzWHEJe!|&qudS%^6ambK)+D9>sBgX6Z|Jr-UsGFL;$baKK|i%!F=bW zNp!+*qP5uXUK0GQd%?4HOQk1tbaYJKdpICE4@3k&@~>X}q~(=eXX8zq_V-)#viR9q zSWNrR@jlANhu(QA<3mx3-;+PR^_bLEqm``GiSqY`mThSim^>x|6 zTR@kCQR4qx!*p2@&EgfEpYFaq!D4*Xcv$X(#I9 zC;|fpuz(5T;RBw-C$3*&9JGlE;1Zb{ymDV4DDFV>a5n*%|B}GINfs9qfWUe0GZ5|z z;GO`s0B3~X4bx(6zLUUr6nK636b4&d9cKA63AiV)u(<0ye)PpBAj;}6*2ccSpWATW zeY{7&M#Hw?f-Msg)P_0)d2x_{y8>J#ZnZkpXdKYt;cwd7`ZUzTaAxL#J28==R_hn# za<_dKa4Q6*`LMxb5wQX|cvt|l5~inb(%#;8Iz9d4T~)cNP8&)eYu4*c0tq`i-+F5f z5dSCn(Fg+ltf0h6# zV{w~r6%e>8UBY^}+f3;eWn1C!2wd1c%yT~6~Ac3F&zqQXLu)klLRw`Nf0MM>~Yd#Ae^U3jx zbUw3N@AlUi#FLG42H#u2CIzO^xCK`?ISD}nl4kAxdcEoN#QAAk-US*I;kMLjuf90G z2H8CusAr{;GlRiMGz51&K0*$XNHQ5WjYix08qO_&MDh%i$y9=)2E1I(%ITPu4B+@7 znaqZ7+QnfuSP|e+>2~`P91sLh%HjpbFO^ys9~%-@1c=sXygMXVE4aRpoE-32EM|JW zp-HC`xCM$;54fY~{njSKruFCK3eMc=da|CIk{X`jvGVqrf_y!tnv7zXyk7Q&7pH$TP_wn$;~7|UGHIjNF8>o(dVceq91>I6>EA}`tq{Rds3@@FTDJJX0Kat z+UBL%=hr3PDp_7E{D1lDugksvX&Nyb?B`HuU|_;cTyb%@&ZoO}*E#kGDbJNx+qa)n zz9OcuMryy``=!5X@4Z;(EONX~aNTD{&HRf&j}7}DY^uqvO3`V5|~elF{r5}E)LqP2nm literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Mask/merc.rsi/inhand-right.png b/Resources/Textures/Clothing/Mask/merc.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..7145305d9fc830085c9a2a05588cfa43ae9b2930 GIT binary patch literal 427 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEU@Y=x4gdfhr+ zy}`#q;>)S&_diywd#j)96u0rI^rf!#++&C>~RfBusp+VAS3WJ}|O z)y~Q1-WI-Hvi6o~o}Otqa=RwY;q&&by$mT$66bkta9xjh{5CI^)o`xlg{0iv pWQLh7wiVK Date: Mon, 19 Jun 2023 13:40:05 -0400 Subject: [PATCH 361/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 9645f47fe5..6077a87dc0 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,10 +1,4 @@ Entries: -- author: kzhanik - changes: - - {message: 'HoS and CMO get survival boxes according to their departments (HoS - gets sec box, CMO gets medical box)', type: Tweak} - id: 3548 - time: '2023-04-26T06:53:45.0000000+00:00' - author: metalgearsloth changes: - {message: Puddles will disperse faster., type: Fix} @@ -2928,3 +2922,8 @@ Entries: - {message: Added paramedic and atmospherics windoor for mapping., type: Add} id: 4047 time: '2023-06-19T17:29:45.0000000+00:00' +- author: Jackal298 + changes: + - {message: Added 4 new mercenary items, type: Add} + id: 4048 + time: '2023-06-19T17:38:57.0000000+00:00' From 910c2da9bbef1e2e39605b97d8646c7d2a83ad37 Mon Sep 17 00:00:00 2001 From: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> Date: Mon, 19 Jun 2023 13:43:20 -0400 Subject: [PATCH 362/474] fix-lathe-recipe-dupes (#17473) --- Content.Server/Lathe/LatheSystem.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Server/Lathe/LatheSystem.cs b/Content.Server/Lathe/LatheSystem.cs index d3fa6d23cd..c19a093097 100644 --- a/Content.Server/Lathe/LatheSystem.cs +++ b/Content.Server/Lathe/LatheSystem.cs @@ -101,7 +101,7 @@ public List GetAvailableRecipes(EntityUid uid, LatheComponent component) { var ev = new LatheGetRecipesEvent(uid) { - Recipes = component.StaticRecipes + Recipes = new List(component.StaticRecipes) }; RaiseLocalEvent(uid, ev); return ev.Recipes; @@ -195,7 +195,7 @@ private void OnGetRecipes(EntityUid uid, TechnologyDatabaseComponent component, foreach (var recipe in latheComponent.DynamicRecipes) { - if (!component.UnlockedRecipes.Contains(recipe)) + if (!component.UnlockedRecipes.Contains(recipe) || args.Recipes.Contains(recipe)) continue; args.Recipes.Add(recipe); } From 04353618348b50e211bb00e54c7ed74bab2244da Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 19 Jun 2023 13:44:25 -0400 Subject: [PATCH 363/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 6077a87dc0..97d7c8960b 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: metalgearsloth - changes: - - {message: Puddles will disperse faster., type: Fix} - id: 3549 - time: '2023-04-26T11:29:31.0000000+00:00' - author: Slava0135 changes: - {message: fixed combat (harm) mode popup appearing to everyone, type: Fix} @@ -2927,3 +2922,9 @@ Entries: - {message: Added 4 new mercenary items, type: Add} id: 4048 time: '2023-06-19T17:38:57.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: Lathe recipes no longer permanently duplicate and accumulate when trying + to sync., type: Fix} + id: 4049 + time: '2023-06-19T17:43:20.0000000+00:00' From d4c87155f86c0fbb21a73312ab7c1eb85991abcf Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Tue, 20 Jun 2023 12:23:10 +1000 Subject: [PATCH 364/474] Nerf stims (#17485) --- .../Prototypes/Catalog/uplink_catalog.yml | 15 --- .../Objects/Consumable/Drinks/drinks_cans.yml | 4 +- .../Objects/Specific/Medical/hypospray.yml | 37 +----- Resources/Prototypes/Reagents/narcotics.yml | 115 +----------------- 4 files changed, 8 insertions(+), 163 deletions(-) diff --git a/Resources/Prototypes/Catalog/uplink_catalog.yml b/Resources/Prototypes/Catalog/uplink_catalog.yml index 1a2841e41f..ceea36350b 100644 --- a/Resources/Prototypes/Catalog/uplink_catalog.yml +++ b/Resources/Prototypes/Catalog/uplink_catalog.yml @@ -899,21 +899,6 @@ categories: - UplinkMisc -- type: listing - id: UplinkStimpackExperimental - name: uplink-experimental-stimpack-name - description: uplink-experimental-stimpack-desc - productEntity: StimpackExperimental - cost: - Telecrystal: 8 - categories: - - UplinkMisc - conditions: - - !type:StoreWhitelistCondition - whitelist: - tags: - - NukeOpsUplink - - type: listing id: UplinkSyndicateSegwayCrate name: uplink-syndicate-segway-crate-name diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml index 2514f08214..34f27450c7 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml @@ -307,9 +307,9 @@ maxVol: 30 reagents: - ReagentId: Stimulants - Quantity: 10 + Quantity: 5 - ReagentId: NuclearCola - Quantity: 15 + Quantity: 20 - ReagentId: Ice Quantity: 5 - type: Tag diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml index d5333d18b0..2a12bbbb95 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml @@ -179,13 +179,13 @@ - type: SolutionContainerManager solutions: pen: - maxVol: 60 + maxVol: 30 reagents: - ReagentId: Stimulants - Quantity: 60 + Quantity: 30 - type: Hypospray solutionName: pen - transferAmount: 60 + transferAmount: 30 - type: StaticPrice price: 500 - type: Tag @@ -195,7 +195,7 @@ name: stimulant microinjector parent: ChemicalMedipen id: StimpackMini - description: A microinjector of stimulants that give you about one minute of the chemical's effects. + description: A microinjector of stimulants that give you about fifteen seconds of the chemical's effects. components: - type: Sprite sprite: Objects/Specific/Medical/medipen.rsi @@ -217,35 +217,6 @@ - type: Tag tags: [] -- type: entity - name: experimental stimulant injector - parent: ChemicalMedipen - id: StimpackExperimental - description: There's a red label on the side of it. It says "PRODUCT HAS EXTREME SIDE EFFECTS, PRODUCTION HALTED. DO NOT DISTRIBUTE." - components: - - type: Sprite - sprite: Objects/Specific/Medical/medipen.rsi - layers: - - state: stimpen - map: ["enum.SolutionContainerLayers.Fill"] - - type: Item - sprite: Objects/Specific/Medical/medipen.rsi - size: 10 - - type: SolutionContainerManager - solutions: - pen: - maxVol: 60 - reagents: - - ReagentId: ExperimentalStimulants - Quantity: 60 - - type: Hypospray - solutionName: pen - transferAmount: 60 - - type: StaticPrice - price: 1000 - - type: Tag - tags: [] - - type: entity name: pen suffix: Hypopen diff --git a/Resources/Prototypes/Reagents/narcotics.yml b/Resources/Prototypes/Reagents/narcotics.yml index fca709180f..b414df8cf7 100644 --- a/Resources/Prototypes/Reagents/narcotics.yml +++ b/Resources/Prototypes/Reagents/narcotics.yml @@ -104,7 +104,7 @@ meltingPoint: 170.0 metabolisms: Narcotic: - metabolismRate: 0.2 + metabolismRate: 1.0 effects: - !type:MovespeedModifier walkSpeedModifier: 1.3 @@ -125,7 +125,7 @@ time: 3 type: Remove Medicine: - metabolismRate: 0.2 + metabolismRate: 1.0 effects: - !type:ResetNarcolepsy - !type:SatiateHunger @@ -142,117 +142,6 @@ Burn: -1 Brute: -1 -# a chemical prototype to surpass epinephrine -- type: reagent - id: ExperimentalStimulants - name: reagent-name-experimental-stimulants - group: Narcotics - desc: reagent-desc-experimental-stimulants - physicalDesc: reagent-physical-desc-exhilarating - flavor: bottledlightning - color: "#AE0101" - boilingPoint: 212.0 - meltingPoint: 170.0 - metabolisms: - Narcotic: - metabolismRate: 0.25 # lasts for 4 minutes instead of 5 - effects: - - !type:MovespeedModifier # nyoom - conditions: - - !type:ReagentThreshold - min: 10 - walkSpeedModifier: 1.8 - sprintSpeedModifier: 1.8 - - !type:MovespeedModifier # antinyoom - conditions: - - !type:ReagentThreshold - max: 10 # ghetto withdrawal - walkSpeedModifier: 0.7 - sprintSpeedModifier: 0.7 - - !type:Electrocute - conditions: - - !type:ReagentThreshold - max: 10 # ghetto withdrawal effect - probability: 0.1 # get stunlocked nerd - - !type:Jitter - conditions: - - !type:ReagentThreshold - max: 10 # ghetto withdrawal - - !type:GenericStatusEffect - conditions: - - !type:ReagentThreshold - max: 10 # ghetto withdrawal - key: Stutter - component: StutteringAccent - - !type:HealthChange - conditions: - - !type:ReagentThreshold - min: 10 - damage: - types: - Poison: 1 # You will be laying on the floor in crit in 100 seconds if you don't have antitoxin meds (Ideally this should deal twice as much damage but since nukies don't have access to stellbinin it would kill them) - - !type:HealthChange - conditions: - - !type:ReagentThreshold - min: 60 - damage: - types: - Poison: 8 # TODO this should ideally kill your liver instead - # effectively negates stamcrits - - !type:GenericStatusEffect - conditions: - - !type:ReagentThreshold - min: 10 - key: Stun - time: 6 - type: Remove - - !type:GenericStatusEffect - conditions: - - !type:ReagentThreshold - min: 10 - key: KnockedDown - time: 6 - type: Remove - - !type:GenericStatusEffect - conditions: - - !type:ReagentThreshold - min: 10 - key: ForcedSleep - component: ForcedSleeping - refresh: false - type: Remove - Medicine: - metabolismRate: 0.25 - effects: - - !type:ResetNarcolepsy - - !type:SatiateHunger - factor: 1 - - !type:SatiateThirst - factor: 1 - - !type:HealthChange - conditions: - - !type:ReagentThreshold - min: 10 - damage: - groups: - Brute: -4 - Burn: -4 - # stops CMOs from hypoing you with lexorin and sec from filling you with tranq shells - - !type:AdjustReagent - conditions: - - !type:ReagentThreshold - reagent: Lexorin - min: 1 - reagent: Lexorin - amount: -3 - - !type:AdjustReagent - conditions: - - !type:ReagentThreshold - reagent: ChloralHydrate - min: 1 - reagent: ChloralHydrate - amount: -3 - - type: reagent id: THC name: reagent-name-thc From 67089e3ab2465fe2a6f419f7fad79b0b53985f6c Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 19 Jun 2023 22:24:14 -0400 Subject: [PATCH 365/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 97d7c8960b..920ef99f0a 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: Slava0135 - changes: - - {message: fixed combat (harm) mode popup appearing to everyone, type: Fix} - id: 3550 - time: '2023-04-26T16:21:44.0000000+00:00' - author: OctoRocket changes: - {message: Blood packs work now., type: Fix} @@ -2928,3 +2923,10 @@ Entries: to sync., type: Fix} id: 4049 time: '2023-06-19T17:43:20.0000000+00:00' +- author: metalgearsloth + changes: + - {message: Removed experimental stims., type: Remove} + - {message: Bumped stimulants metabolism from 0.2 to 1.0 per second, type: Tweak} + - {message: Reduced stimpacks from 5 minutes to 30 seconds., type: Tweak} + id: 4050 + time: '2023-06-20T02:23:10.0000000+00:00' From 55690f688eddbe5efae5ce00aaedbddfcb6d8d68 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Tue, 20 Jun 2023 13:53:26 +1000 Subject: [PATCH 366/474] Remove cat ear guaranteed spawns (#17488) --- Resources/Maps/barratry.yml | 16 ------------- Resources/Maps/cluster.yml | 24 ------------------- .../Entities/Clothing/Head/misc.yml | 1 + .../Markers/Spawners/Random/maintenance.yml | 1 - 4 files changed, 1 insertion(+), 41 deletions(-) diff --git a/Resources/Maps/barratry.yml b/Resources/Maps/barratry.yml index 02c254a84a..f305497b48 100644 --- a/Resources/Maps/barratry.yml +++ b/Resources/Maps/barratry.yml @@ -52694,16 +52694,6 @@ entities: - pos: 1.8966352,1.6815121 parent: 1 type: Transform -- proto: ClothingHeadHatCatEars - entities: - - uid: 1856 - components: - - flags: InContainer - type: MetaData - - parent: 1666 - type: Transform - - canCollide: False - type: Physics - proto: ClothingHeadHatCone entities: - uid: 717 @@ -105617,12 +105607,6 @@ entities: pos: 19.5,-10.5 parent: 1 type: Transform - - containers: - stash: !type:ContainerSlot - showEnts: False - occludes: True - ent: 1856 - type: ContainerContainer - uid: 4069 components: - rot: -1.5707963267948966 rad diff --git a/Resources/Maps/cluster.yml b/Resources/Maps/cluster.yml index dbe683207a..c74743826b 100644 --- a/Resources/Maps/cluster.yml +++ b/Resources/Maps/cluster.yml @@ -34535,16 +34535,6 @@ entities: - pos: -7.4940805,-11.8714485 parent: 1 type: Transform -- proto: ClothingHeadHatCatEars - entities: - - uid: 9046 - components: - - flags: InContainer - type: MetaData - - parent: 9045 - type: Transform - - canCollide: False - type: Physics - proto: ClothingHeadHatFedoraBrown entities: - uid: 12535 @@ -36133,20 +36123,6 @@ entities: - pos: 3.278635,-0.52339196 parent: 1 type: Transform - - uid: 9045 - components: - - pos: -29.974428,-14.48443 - parent: 1 - type: Transform - - isSeatUp: True - toggleSound: !type:SoundPathSpecifier - path: /Audio/Items/desk_bell_ring.ogg - type: Toilet - - type: SecretStash - - containers: - stash: !type:ContainerSlot - ent: 9046 - type: ContainerContainer - proto: DiceBag entities: - uid: 5590 diff --git a/Resources/Prototypes/Entities/Clothing/Head/misc.yml b/Resources/Prototypes/Entities/Clothing/Head/misc.yml index b010f1a978..8d0f2aa162 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/misc.yml @@ -149,6 +149,7 @@ id: ClothingHeadHatCatEars name: cat ears description: "NYAH!" + suffix: DO NOT MAP components: - type: Tag tags: # ignore "WhitelistChameleon" tag diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml index 0b0b6f46bb..01cb8f653b 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml @@ -24,7 +24,6 @@ - BalloonCorgi - PonderingOrb - Skub - - ClothingHeadHatCatEars - DrinkMugDog - ClothingNeckLGBTPin - ClothingNeckAromanticPin From 41244b74aabed7bfa976b7643935c93707fed9cc Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 19 Jun 2023 23:54:32 -0400 Subject: [PATCH 367/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 920ef99f0a..1b98896276 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: OctoRocket - changes: - - {message: Blood packs work now., type: Fix} - id: 3551 - time: '2023-04-28T14:01:24.0000000+00:00' - author: notquitehadouken changes: - {message: updated the localization files (there was a typo), type: Fix} @@ -2930,3 +2925,8 @@ Entries: - {message: Reduced stimpacks from 5 minutes to 30 seconds., type: Tweak} id: 4050 time: '2023-06-20T02:23:10.0000000+00:00' +- author: metalgearsloth + changes: + - {message: Remove guaranteed cat ear spawns., type: Remove} + id: 4051 + time: '2023-06-20T03:53:27.0000000+00:00' From 9fc4fc6ac241700e6a87cb0ffecb61367b93ba8e Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Tue, 20 Jun 2023 16:29:26 +1200 Subject: [PATCH 368/474] Fix some Mind ECS bugs (#17480) --- .../Tests/Interaction/InteractionTest.cs | 3 +- .../Tests/Minds/GhostTests.cs | 234 ++++++++++++++++++ .../Tests/Minds/MindEntityDeletionTest.cs | 92 ++----- .../Tests/Minds/MindTests.Helpers.cs | 134 ++++++++++ .../Tests/Minds/MindTests.ReconnectTests.cs | 157 ++++++++++++ .../Tests/Minds/MindTests.cs | 56 +++-- .../GameTicking/Commands/RespawnCommand.cs | 7 +- .../GameTicking/GameTicker.Player.cs | 37 ++- .../GameTicking/GameTicker.RoundFlow.cs | 7 - .../GameTicking/GameTicker.Spawning.cs | 12 +- .../GameTicking/Rules/NukeopsRuleSystem.cs | 2 +- .../GameTicking/Rules/PiratesRuleSystem.cs | 2 +- Content.Server/Ghost/GhostSystem.cs | 2 - Content.Server/Ghost/Roles/GhostRoleSystem.cs | 2 +- .../Mind/Components/MindContainerComponent.cs | 1 - Content.Server/Mind/Mind.cs | 9 +- Content.Server/Mind/MindSystem.cs | 222 ++++++++++------- Content.Server/Players/PlayerData.cs | 26 +- 18 files changed, 762 insertions(+), 243 deletions(-) create mode 100644 Content.IntegrationTests/Tests/Minds/GhostTests.cs create mode 100644 Content.IntegrationTests/Tests/Minds/MindTests.Helpers.cs create mode 100644 Content.IntegrationTests/Tests/Minds/MindTests.ReconnectTests.cs diff --git a/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs b/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs index 0f1690d453..597c063dc7 100644 --- a/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs +++ b/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs @@ -4,6 +4,7 @@ using Content.Client.Construction; using Content.Client.Examine; using Content.Server.Body.Systems; +using Content.Server.Mind; using Content.Server.Mind.Components; using Content.Server.Players; using Content.Server.Stack; @@ -184,7 +185,7 @@ await Server.WaitPost(() => { // Fuck you mind system I want an hour of my life back // Mind system is a time vampire - ServerSession.ContentData()?.WipeMind(); + SEntMan.System().WipeMind(ServerSession.ContentData()?.Mind); old = cPlayerMan.LocalPlayer.ControlledEntity; Player = SEntMan.SpawnEntity(PlayerPrototype, PlayerCoords); diff --git a/Content.IntegrationTests/Tests/Minds/GhostTests.cs b/Content.IntegrationTests/Tests/Minds/GhostTests.cs new file mode 100644 index 0000000000..5d9ea2b30b --- /dev/null +++ b/Content.IntegrationTests/Tests/Minds/GhostTests.cs @@ -0,0 +1,234 @@ +using System.Linq; +using System.Threading.Tasks; +using Content.Server.GameTicking; +using Content.Server.Ghost.Components; +using Content.Server.Mind; +using Content.Server.Mind.Components; +using Content.Server.Players; +using NUnit.Framework; +using Robust.Server.Console; +using Robust.Server.GameObjects; +using Robust.Server.Player; +using Robust.Shared.GameObjects; +using Robust.Shared.Map; +using Robust.Shared.Network; + +namespace Content.IntegrationTests.Tests.Minds; + +[TestFixture] +public sealed class GhostTests +{ + /// + /// Test that a ghost gets created when the player entity is deleted. + /// 1. Delete mob + /// 2. Assert is ghost + /// + [Test] + public async Task TestGhostOnDelete() + { + // Client is needed to spawn session + await using var pairTracker = await PoolManager.GetServerClient(); + var server = pairTracker.Pair.Server; + + var entMan = server.ResolveDependency(); + var playerMan = server.ResolveDependency(); + + IPlayerSession player = playerMan.ServerSessions.Single(); + + await server.WaitAssertion(() => + { + Assert.That(player.AttachedEntity, Is.Not.EqualTo(null)); + entMan.DeleteEntity(player.AttachedEntity!.Value); + }); + + await PoolManager.RunTicksSync(pairTracker.Pair, 5); + + await server.WaitAssertion(() => + { + // Is player a ghost? + Assert.That(player.AttachedEntity, Is.Not.EqualTo(null)); + var entity = player.AttachedEntity!.Value; + Assert.That(entMan.HasComponent(entity)); + }); + + await pairTracker.CleanReturnAsync(); + } + + /// + /// Test that when the original mob gets deleted, the visited ghost does not get deleted. + /// And that the visited ghost becomes the main mob. + /// 1. Visit ghost + /// 2. Delete original mob + /// 3. Assert is ghost + /// 4. Assert was not deleted + /// 5. Assert is main mob + /// + [Test] + public async Task TestOriginalDeletedWhileGhostingKeepsGhost() + { + // Client is needed to spawn session + await using var pairTracker = await PoolManager.GetServerClient(); + var server = pairTracker.Pair.Server; + + var entMan = server.ResolveDependency(); + var playerMan = server.ResolveDependency(); + var gameTicker = entMan.EntitySysManager.GetEntitySystem(); + var mindSystem = entMan.EntitySysManager.GetEntitySystem(); + + IPlayerSession player = playerMan.ServerSessions.Single(); + + EntityUid originalEntity = default!; + EntityUid ghost = default!; + + await server.WaitAssertion(() => + { + Assert.That(player.AttachedEntity, Is.Not.EqualTo(null)); + originalEntity = player.AttachedEntity!.Value; + + Assert.That(mindSystem.TryGetMind(player.UserId, out var mind), "could not find mind"); + ghost = entMan.SpawnEntity("MobObserver", MapCoordinates.Nullspace); + mindSystem.Visit(mind, ghost); + + Assert.That(player.AttachedEntity, Is.EqualTo(ghost)); + Assert.That(entMan.HasComponent(player.AttachedEntity), "player is not a ghost"); + Assert.That(mind.VisitingEntity, Is.EqualTo(player.AttachedEntity)); + Assert.That(mind.OwnedEntity, Is.EqualTo(originalEntity)); + }); + + await PoolManager.RunTicksSync(pairTracker.Pair, 5); + await server.WaitAssertion(() => entMan.DeleteEntity(originalEntity)); + await PoolManager.RunTicksSync(pairTracker.Pair, 5); + + await server.WaitAssertion(() => + { + // Is player a ghost? + Assert.That(!entMan.Deleted(ghost), "ghost has been deleted"); + Assert.That(player.AttachedEntity, Is.EqualTo(ghost)); + Assert.That(entMan.HasComponent(player.AttachedEntity)); + + Assert.That(mindSystem.TryGetMind(player.UserId, out var mind), "could not find mind"); + Assert.That(mind.UserId, Is.EqualTo(player.UserId)); + Assert.That(mind.Session, Is.EqualTo(player)); + Assert.IsNull(mind.VisitingEntity); + Assert.That(mind.OwnedEntity, Is.EqualTo(ghost)); + }); + + await pairTracker.CleanReturnAsync(); + } + + /// + /// Test that ghosts can become admin ghosts without issue + /// 1. Become a ghost + /// 2. visit an admin ghost + /// 3. original ghost is deleted, player is an admin ghost. + /// + [Test] + public async Task TestGhostToAghost() + { + // Client is needed to spawn session + await using var pairTracker = await PoolManager.GetServerClient(); + var server = pairTracker.Pair.Server; + + var entMan = server.ResolveDependency(); + var playerMan = server.ResolveDependency(); + var serverConsole = server.ResolveDependency(); + + IPlayerSession player = playerMan.ServerSessions.Single(); + + EntityUid ghost = default!; + + await server.WaitAssertion(() => + { + Assert.That(player.AttachedEntity, Is.Not.EqualTo(null)); + entMan.DeleteEntity(player.AttachedEntity!.Value); + }); + + await PoolManager.RunTicksSync(pairTracker.Pair, 5); + + await server.WaitAssertion(() => + { + // Is player a ghost? + Assert.That(player.AttachedEntity, Is.Not.EqualTo(null)); + ghost = player.AttachedEntity!.Value; + Assert.That(entMan.HasComponent(ghost)); + }); + + await PoolManager.RunTicksSync(pairTracker.Pair, 5); + + await server.WaitAssertion(() => + { + serverConsole.ExecuteCommand(player, "aghost"); + }); + + await PoolManager.RunTicksSync(pairTracker.Pair, 5); + + await server.WaitAssertion(() => + { + Assert.That(entMan.Deleted(ghost)); + Assert.That(player.AttachedEntity, Is.Not.EqualTo(ghost)); + Assert.That(entMan.HasComponent(player.AttachedEntity!.Value)); + + var mind = player.ContentData()?.Mind; + Assert.NotNull(mind); + Assert.Null(mind.VisitingEntity); + }); + + await pairTracker.CleanReturnAsync(); + } + + /// + /// Test ghost getting deleted while player is connected spawns another ghost + /// 1. become ghost + /// 2. delete ghost + /// 3. new ghost is spawned + /// + [Test] + public async Task TestGhostDeletedSpawnsNewGhost() + { + // Client is needed to spawn session + await using var pairTracker = await PoolManager.GetServerClient(); + var server = pairTracker.Pair.Server; + + var entMan = server.ResolveDependency(); + var playerMan = server.ResolveDependency(); + var serverConsole = server.ResolveDependency(); + + IPlayerSession player = playerMan.ServerSessions.Single(); + + EntityUid ghost = default!; + + await server.WaitAssertion(() => + { + Assert.That(player.AttachedEntity, Is.Not.EqualTo(null)); + entMan.DeleteEntity(player.AttachedEntity!.Value); + }); + + await PoolManager.RunTicksSync(pairTracker.Pair, 5); + + await server.WaitAssertion(() => + { + // Is player a ghost? + Assert.That(player.AttachedEntity, Is.Not.EqualTo(null)); + ghost = player.AttachedEntity!.Value; + Assert.That(entMan.HasComponent(ghost)); + }); + + await PoolManager.RunTicksSync(pairTracker.Pair, 5); + + await server.WaitAssertion(() => + { + serverConsole.ExecuteCommand(player, "aghost"); + }); + + await PoolManager.RunTicksSync(pairTracker.Pair, 5); + + await server.WaitAssertion(() => + { + Assert.That(entMan.Deleted(ghost)); + Assert.That(player.AttachedEntity, Is.Not.EqualTo(ghost)); + Assert.That(entMan.HasComponent(player.AttachedEntity!.Value)); + }); + + await pairTracker.CleanReturnAsync(); + } +} diff --git a/Content.IntegrationTests/Tests/Minds/MindEntityDeletionTest.cs b/Content.IntegrationTests/Tests/Minds/MindEntityDeletionTest.cs index 82baf4810d..49626d8082 100644 --- a/Content.IntegrationTests/Tests/Minds/MindEntityDeletionTest.cs +++ b/Content.IntegrationTests/Tests/Minds/MindEntityDeletionTest.cs @@ -2,6 +2,7 @@ using System.Linq; using System.Threading.Tasks; using Content.Server.Mind; +using Content.Server.Players; using NUnit.Framework; using Robust.Server.GameObjects; using Robust.Server.Player; @@ -16,6 +17,11 @@ namespace Content.IntegrationTests.Tests.Minds [TestFixture] public sealed class MindEntityDeletionTest { + // This test will do the following: + // - spawn a player + // - visit some entity + // - delete the entity being visited + // - assert that player returns to original entity [Test] public async Task TestDeleteVisiting() { @@ -50,95 +56,34 @@ await server.WaitAssertion(() => }); await PoolManager.RunTicksSync(pairTracker.Pair, 5); - - await server.WaitAssertion(() => - { - entMan.DeleteEntity(visitEnt); - - if (mind.VisitingEntity != null) - { - Assert.Fail("Mind VisitingEntity was not null"); - return; - } - - // This used to throw so make sure it doesn't. - entMan.DeleteEntity(playerEnt); - }); - + await server.WaitPost(() => entMan.DeleteEntity(visitEnt)); await PoolManager.RunTicksSync(pairTracker.Pair, 5); - await server.WaitPost(() => - { - mapManager.DeleteMap(map.MapId); - }); - - await pairTracker.CleanReturnAsync(); - } - - [Test] - public async Task TestGhostOnDelete() - { - // Has to be a non-dummy ticker so we have a proper map. - - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; - - var entMan = server.ResolveDependency(); - var playerMan = server.ResolveDependency(); - var mapManager = server.ResolveDependency(); - - var mindSystem = entMan.EntitySysManager.GetEntitySystem(); - - var map = await PoolManager.CreateTestMap(pairTracker); - - EntityUid playerEnt = default; - Mind mind = default!; - await server.WaitAssertion(() => - { - var player = playerMan.ServerSessions.Single(); - - var pos = new MapCoordinates(Vector2.Zero, map.MapId); - - playerEnt = entMan.SpawnEntity(null, pos); - - mind = mindSystem.CreateMind(player.UserId); - mindSystem.TransferTo(mind, playerEnt); - - Assert.That(mind.CurrentEntity, Is.EqualTo(playerEnt)); - }); + Assert.IsNull(mind.VisitingEntity); + Assert.That(entMan.EntityExists(mind.OwnedEntity)); + Assert.That(mind.OwnedEntity, Is.EqualTo(playerEnt)); + // This used to throw so make sure it doesn't. + await server.WaitPost(() => entMan.DeleteEntity(mind.OwnedEntity!.Value)); await PoolManager.RunTicksSync(pairTracker.Pair, 5); - await server.WaitPost(() => - { - entMan.DeleteEntity(playerEnt); - }); - - await PoolManager.RunTicksSync(pairTracker.Pair, 5); - - await server.WaitAssertion(() => - { - Assert.That(entMan.EntityExists(mind.CurrentEntity!.Value), Is.True); - }); - - await server.WaitPost(() => - { - mapManager.DeleteMap(map.MapId); - }); - + await server.WaitPost(() => mapManager.DeleteMap(map.MapId)); await pairTracker.CleanReturnAsync(); } + // this is a variant of TestGhostOnDelete that just deletes the whole map. [Test] public async Task TestGhostOnDeleteMap() { - await using var pairTracker = await PoolManager.GetServerClient(new PoolSettings { NoClient = true }); + await using var pairTracker = await PoolManager.GetServerClient(); var server = pairTracker.Pair.Server; var testMap = await PoolManager.CreateTestMap(pairTracker); var coordinates = testMap.GridCoords; var entMan = server.ResolveDependency(); var mapManager = server.ResolveDependency(); + var playerMan = server.ResolveDependency(); + var player = playerMan.ServerSessions.Single(); var mindSystem = entMan.EntitySysManager.GetEntitySystem(); @@ -149,8 +94,7 @@ public async Task TestGhostOnDeleteMap() await server.WaitAssertion(() => { playerEnt = entMan.SpawnEntity(null, coordinates); - - mind = mindSystem.CreateMind(null); + mind = player.ContentData()!.Mind!; mindSystem.TransferTo(mind, playerEnt); Assert.That(mind.CurrentEntity, Is.EqualTo(playerEnt)); diff --git a/Content.IntegrationTests/Tests/Minds/MindTests.Helpers.cs b/Content.IntegrationTests/Tests/Minds/MindTests.Helpers.cs new file mode 100644 index 0000000000..b4cae0bd88 --- /dev/null +++ b/Content.IntegrationTests/Tests/Minds/MindTests.Helpers.cs @@ -0,0 +1,134 @@ +using System.Linq; +using System.Threading.Tasks; +using Content.Server.Ghost.Components; +using Content.Server.Mind; +using Content.Server.Players; +using NUnit.Framework; +using Robust.Server.GameObjects; +using Robust.Server.Player; +using Robust.Shared.Enums; +using Robust.Shared.GameObjects; +using Robust.Shared.Map; +using Robust.Shared.Network; +using IPlayerManager = Robust.Server.Player.IPlayerManager; + +namespace Content.IntegrationTests.Tests.Minds; + +// This partial class contains misc helper functions for other tests. +[TestFixture] +public sealed partial class MindTests +{ + public async Task BecomeGhost(Pair pair, bool visit = false) + { + var entMan = pair.Server.ResolveDependency(); + var playerMan = pair.Server.ResolveDependency(); + var mindSys = entMan.System(); + EntityUid ghostUid = default; + Mind mind = default!; + + var player = playerMan.ServerSessions.Single(); + await pair.Server.WaitAssertion(() => + { + var oldUid = player.AttachedEntity; + ghostUid = entMan.SpawnEntity("MobObserver", MapCoordinates.Nullspace); + mind = mindSys.GetMind(player.UserId); + Assert.NotNull(mind); + + if (visit) + { + mindSys.Visit(mind, ghostUid); + return; + } + + mindSys.TransferTo(mind, ghostUid); + if (oldUid != null) + entMan.DeleteEntity(oldUid.Value); + + }); + + await PoolManager.RunTicksSync(pair, 5); + Assert.That(entMan.HasComponent(ghostUid)); + Assert.That(player.AttachedEntity == ghostUid); + Assert.That(mind.CurrentEntity == ghostUid); + + if (!visit) + Assert.Null(mind.VisitingEntity); + + return ghostUid; + } + + public async Task VisitGhost(Pair pair, bool visit = false) + { + return await BecomeGhost(pair, visit: true); + } + + /// + /// Get the player's current mind and check that the entities exists. + /// + public Mind GetMind(Pair pair) + { + var playerMan = pair.Server.ResolveDependency(); + var entMan = pair.Server.ResolveDependency(); + var player = playerMan.ServerSessions.SingleOrDefault(); + Assert.NotNull(player); + + var mind = player.ContentData()!.Mind; + Assert.NotNull(mind); + Assert.That(player.AttachedEntity, Is.EqualTo(mind.CurrentEntity)); + Assert.That(entMan.EntityExists(mind.OwnedEntity)); + Assert.That(entMan.EntityExists(mind.CurrentEntity)); + + return mind; + } + + public async Task Disconnect(Pair pair) + { + var netManager = pair.Client.ResolveDependency(); + var playerMan = pair.Server.ResolveDependency(); + var player = playerMan.ServerSessions.Single(); + var mind = player.ContentData()!.Mind; + + await pair.Client.WaitAssertion(() => + { + netManager.ClientDisconnect("Disconnect command used."); + }); + await PoolManager.RunTicksSync(pair, 5); + + Assert.That(player.Status == SessionStatus.Disconnected); + Assert.NotNull(mind.UserId); + Assert.Null(mind.Session); + } + + public async Task Connect(Pair pair, string username) + { + var netManager = pair.Client.ResolveDependency(); + var playerMan = pair.Server.ResolveDependency(); + Assert.That(!playerMan.ServerSessions.Any()); + + await Task.WhenAll(pair.Client.WaitIdleAsync(), pair.Client.WaitIdleAsync()); + pair.Client.SetConnectTarget(pair.Server); + await pair.Client.WaitPost(() => netManager.ClientConnect(null!, 0, username)); + await PoolManager.RunTicksSync(pair, 5); + + var player = playerMan.ServerSessions.Single(); + Assert.That(player.Status == SessionStatus.InGame); + } + + public async Task DisconnectReconnect(Pair pair) + { + var playerMan = pair.Server.ResolveDependency(); + var player = playerMan.ServerSessions.Single(); + var name = player.Name; + var id = player.UserId; + + await Disconnect(pair); + await Connect(pair, name); + + // Session has changed + var newSession = playerMan.ServerSessions.Single(); + Assert.That(newSession != player); + Assert.That(newSession.UserId == id); + + return newSession; + } +} diff --git a/Content.IntegrationTests/Tests/Minds/MindTests.ReconnectTests.cs b/Content.IntegrationTests/Tests/Minds/MindTests.ReconnectTests.cs new file mode 100644 index 0000000000..161bcf9dd2 --- /dev/null +++ b/Content.IntegrationTests/Tests/Minds/MindTests.ReconnectTests.cs @@ -0,0 +1,157 @@ +using System.Linq; +using System.Threading.Tasks; +using Content.Server.Ghost.Components; +using Content.Server.Mind; +using NUnit.Framework; +using Robust.Server.Player; +using Robust.Shared.GameObjects; +using Robust.Shared.Map; + +namespace Content.IntegrationTests.Tests.Minds; + +[TestFixture] +public sealed partial class MindTests +{ + // This test will do the following: + // - attach a player to a ghost (not visiting) + // - disconnect + // - reconnect + // - assert that they spawned in as a new entity + [Test] + public async Task TestGhostsCanReconnect() + { + await using var pairTracker = await PoolManager.GetServerClient(); + var pair = pairTracker.Pair; + + var entMan = pair.Server.ResolveDependency(); + await PoolManager.RunTicksSync(pair, 5); + var mind = GetMind(pair); + + var ghost = await BecomeGhost(pair); + await DisconnectReconnect(pair); + + // Player in control of a NEW entity + var newMind = GetMind(pair); + Assert.That(newMind != mind); + Assert.That(entMan.Deleted(ghost)); + Assert.Null(newMind.VisitingEntity); + + await pairTracker.CleanReturnAsync(); + } + + // This test will do the following: + // - disconnect a player + // - delete their original entity + // - reconnect + // - assert that they spawned in as a new entity + [Test] + public async Task TestDeletedCanReconnect() + { + await using var pairTracker = await PoolManager.GetServerClient(); + var pair = pairTracker.Pair; + + var entMan = pair.Server.ResolveDependency(); + await PoolManager.RunTicksSync(pair, 5); + var mind = GetMind(pair); + + var playerMan = pair.Server.ResolveDependency(); + var player = playerMan.ServerSessions.Single(); + var name = player.Name; + var user = player.UserId; + Assert.NotNull(mind.OwnedEntity); + var entity = mind.OwnedEntity.Value; + + // Player is not a ghost + Assert.That(!entMan.HasComponent(mind.CurrentEntity)); + + // Disconnect + await Disconnect(pair); + + // Delete entity + Assert.That(entMan.EntityExists(entity)); + await pair.Server.WaitPost(() => entMan.DeleteEntity(entity)); + Assert.That(entMan.Deleted(entity)); + Assert.IsNull(mind.OwnedEntity); + + // Reconnect + await Connect(pair, name); + player = playerMan.ServerSessions.Single(); + Assert.That(user == player.UserId); + + // Player is now a new entity + var newMind = GetMind(pair); + Assert.That(newMind != mind); + Assert.Null(mind.UserId); + Assert.Null(mind.CurrentEntity); + Assert.NotNull(newMind.OwnedEntity); + Assert.That(entMan.EntityExists(newMind.OwnedEntity)); + + await pairTracker.CleanReturnAsync(); + } + + // This test will do the following: + // - visit a ghost + // - disconnect + // - reconnect + // - assert that they return to their original entity + [Test] + public async Task TestVisitingGhostReconnect() + { + await using var pairTracker = await PoolManager.GetServerClient(); + var pair = pairTracker.Pair; + + var entMan = pair.Server.ResolveDependency(); + await PoolManager.RunTicksSync(pair, 5); + var mind = GetMind(pair); + + var original = mind.CurrentEntity; + var ghost = await VisitGhost(pair); + await DisconnectReconnect(pair); + + // Player now controls their original mob, mind was preserved + Assert.That(mind == GetMind(pair)); + Assert.That(mind.CurrentEntity == original); + Assert.That(!entMan.Deleted(original)); + Assert.That(entMan.Deleted(ghost)); + + await pairTracker.CleanReturnAsync(); + } + + // This test will do the following: + // - visit a normal (non-ghost) entity, + // - disconnect + // - reconnect + // - assert that they return to the visited entity. + [Test] + public async Task TestVisitingReconnect() + { + await using var pairTracker = await PoolManager.GetServerClient(new PoolSettings{ ExtraPrototypes = Prototypes }); + var pair = pairTracker.Pair; + + var entMan = pair.Server.ResolveDependency(); + var mindSys = entMan.System(); + await PoolManager.RunTicksSync(pair, 5); + var mind = GetMind(pair); + + // Make player visit a new mob + var original = mind.CurrentEntity; + EntityUid visiting = default; + await pair.Server.WaitAssertion(() => + { + visiting = entMan.SpawnEntity("MindTestEntity", MapCoordinates.Nullspace); + mindSys.Visit(mind, visiting); + }); + await PoolManager.RunTicksSync(pair, 5); + + await DisconnectReconnect(pair); + + // Player is back in control of the visited mob, mind was preserved + Assert.That(mind == GetMind(pair)); + Assert.That(!entMan.Deleted(original)); + Assert.That(!entMan.Deleted(visiting)); + Assert.That(mind.CurrentEntity == visiting); + Assert.That(mind.CurrentEntity == visiting); + + await pairTracker.CleanReturnAsync(); + } +} diff --git a/Content.IntegrationTests/Tests/Minds/MindTests.cs b/Content.IntegrationTests/Tests/Minds/MindTests.cs index 68c1617554..e5d781c96d 100644 --- a/Content.IntegrationTests/Tests/Minds/MindTests.cs +++ b/Content.IntegrationTests/Tests/Minds/MindTests.cs @@ -28,7 +28,7 @@ namespace Content.IntegrationTests.Tests.Minds; [TestFixture] -public sealed class MindTests +public sealed partial class MindTests { private const string Prototypes = @" - type: entity @@ -125,7 +125,7 @@ await server.WaitAssertion(() => var mind = mindSystem.CreateMind(null); mindSystem.TransferTo(mind, entity); Assert.That(mindSystem.GetMind(entity, mindComp), Is.EqualTo(mind)); - + var mind2 = mindSystem.CreateMind(null); mindSystem.TransferTo(mind2, entity); Assert.That(mindSystem.GetMind(entity, mindComp), Is.EqualTo(mind2)); @@ -220,32 +220,44 @@ await server.WaitAssertion(() => [Test] public async Task TestOwningPlayerCanBeChanged() { - await using var pairTracker = await PoolManager.GetServerClient(new PoolSettings{ NoClient = true }); + await using var pairTracker = await PoolManager.GetServerClient(); var server = pairTracker.Pair.Server; var entMan = server.ResolveDependency(); + await PoolManager.RunTicksSync(pairTracker.Pair, 5); + var mindSystem = entMan.EntitySysManager.GetEntitySystem(); + var originalMind = GetMind(pairTracker.Pair); + var userId = originalMind.UserId; + + Mind mind = default!; await server.WaitAssertion(() => { - var mindSystem = entMan.EntitySysManager.GetEntitySystem(); - var entity = entMan.SpawnEntity(null, new MapCoordinates()); var mindComp = entMan.EnsureComponent(entity); + entMan.DirtyEntity(entity); - var mind = mindSystem.CreateMind(null); - + mind = mindSystem.CreateMind(null); mindSystem.TransferTo(mind, entity); - Assert.That(mindSystem.GetMind(entity, mindComp), Is.EqualTo(mind)); - - var newUserId = new NetUserId(Guid.NewGuid()); Assert.That(mindComp.HasMind); - CatchPlayerDataException(() => - mindSystem.ChangeOwningPlayer(mindComp.Mind!, newUserId)); + }); - Assert.That(mind.UserId, Is.EqualTo(newUserId)); + await PoolManager.RunTicksSync(pairTracker.Pair, 5); + + await server.WaitAssertion(() => + { + mindSystem.SetUserId(mind, userId); + Assert.That(mind.UserId, Is.EqualTo(userId)); + Assert.That(originalMind.UserId, Is.EqualTo(null)); + + mindSystem.SetUserId(originalMind, userId); + Assert.That(mind.UserId, Is.EqualTo(null)); + Assert.That(originalMind.UserId, Is.EqualTo(userId)); }); + await PoolManager.RunTicksSync(pairTracker.Pair, 5); + await pairTracker.CleanReturnAsync(); } @@ -275,26 +287,26 @@ await server.WaitAssertion(() => Assert.That(!mindSystem.HasRole(mind)); var traitorRole = new TraitorRole(mind, new AntagPrototype()); - + mindSystem.AddRole(mind, traitorRole); - + Assert.That(mindSystem.HasRole(mind)); Assert.That(!mindSystem.HasRole(mind)); var jobRole = new Job(mind, new JobPrototype()); - + mindSystem.AddRole(mind, jobRole); - + Assert.That(mindSystem.HasRole(mind)); Assert.That(mindSystem.HasRole(mind)); - + mindSystem.RemoveRole(mind, traitorRole); - + Assert.That(!mindSystem.HasRole(mind)); Assert.That(mindSystem.HasRole(mind)); - + mindSystem.RemoveRole(mind, jobRole); - + Assert.That(!mindSystem.HasRole(mind)); Assert.That(!mindSystem.HasRole(mind)); }); @@ -353,7 +365,7 @@ await server.WaitAssertion(() => MakeSentientCommand.MakeSentient(mob, IoCManager.Resolve()); mobMind = mindSystem.CreateMind(player.UserId, "Mindy McThinker the Second"); - mindSystem.ChangeOwningPlayer(mobMind, player.UserId); + mindSystem.SetUserId(mobMind, player.UserId); mindSystem.TransferTo(mobMind, mob); }); diff --git a/Content.Server/GameTicking/Commands/RespawnCommand.cs b/Content.Server/GameTicking/Commands/RespawnCommand.cs index 3d24443023..df08b05084 100644 --- a/Content.Server/GameTicking/Commands/RespawnCommand.cs +++ b/Content.Server/GameTicking/Commands/RespawnCommand.cs @@ -1,3 +1,4 @@ +using Content.Server.Mind; using Content.Server.Players; using Robust.Server.Player; using Robust.Shared.Console; @@ -21,7 +22,9 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) } var playerMgr = IoCManager.Resolve(); - var ticker = EntitySystem.Get(); + var sysMan = IoCManager.Resolve(); + var ticker = sysMan.GetEntitySystem(); + var mind = sysMan.GetEntitySystem(); NetUserId userId; if (args.Length == 0) @@ -48,7 +51,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - data.ContentData()?.WipeMind(); + mind.WipeMind(data.ContentData()?.Mind); shell.WriteLine("Player is not currently online, but they will respawn if they come back online"); return; } diff --git a/Content.Server/GameTicking/GameTicker.Player.cs b/Content.Server/GameTicking/GameTicker.Player.cs index fd4a2e6a9c..31b2eb4773 100644 --- a/Content.Server/GameTicking/GameTicker.Player.cs +++ b/Content.Server/GameTicking/GameTicker.Player.cs @@ -27,15 +27,28 @@ private async void PlayerStatusChanged(object? sender, SessionStatusEventArgs ar { var session = args.Session; + if (_mindSystem.TryGetMind(session.UserId, out var mind)) + { + if (args.OldStatus == SessionStatus.Connecting && args.NewStatus == SessionStatus.Connected) + mind.Session = session; + + DebugTools.Assert(mind.Session == session); + DebugTools.Assert(session.Data.ContentData()?.Mind is not {} dataMind || dataMind == mind); + } + switch (args.NewStatus) { case SessionStatus.Connected: { AddPlayerToDb(args.Session.UserId.UserId); - // Always make sure the client has player data. Mind gets assigned on spawn. + // Always make sure the client has player data. if (session.Data.ContentDataUncast == null) - session.Data.ContentDataUncast = new PlayerData(session.UserId, args.Session.Name); + { + var data = new PlayerData(session.UserId, args.Session.Name); + data.Mind = mind; + session.Data.ContentDataUncast = data; + } // Make the player actually join the game. // timer time must be > tick length @@ -74,28 +87,28 @@ private async void PlayerStatusChanged(object? sender, SessionStatusEventArgs ar return; } + SpawnWaitDb(); + break; + } + if (data.Mind.CurrentEntity == null || Deleted(data.Mind.CurrentEntity)) + { + DebugTools.Assert(data.Mind.CurrentEntity == null, "a mind's current entity has been deleted"); SpawnWaitDb(); } else { - if (data.Mind.CurrentEntity == null) - { - SpawnWaitDb(); - } - else - { - session.AttachToEntity(data.Mind.CurrentEntity); - PlayerJoinGame(session); - } + session.AttachToEntity(data.Mind.CurrentEntity); + PlayerJoinGame(session); } - break; } case SessionStatus.Disconnected: { _chatManager.SendAdminAnnouncement(Loc.GetString("player-leave-message", ("name", args.Session.Name))); + if (mind != null) + mind.Session = null; _userDb.ClientDisconnected(session); break; diff --git a/Content.Server/GameTicking/GameTicker.RoundFlow.cs b/Content.Server/GameTicking/GameTicker.RoundFlow.cs index 4f21cc2184..6b85f718e0 100644 --- a/Content.Server/GameTicking/GameTicker.RoundFlow.cs +++ b/Content.Server/GameTicking/GameTicker.RoundFlow.cs @@ -414,13 +414,6 @@ private void ResettingCleanup() PlayerJoinLobby(player); } - // Delete the minds of everybody. - // TODO: Maybe move this into a separate manager? - foreach (var unCastData in _playerManager.GetAllPlayerData()) - { - unCastData.ContentData()?.WipeMind(); - } - // Delete all entities. foreach (var entity in EntityManager.GetEntities().ToArray()) { diff --git a/Content.Server/GameTicking/GameTicker.Spawning.cs b/Content.Server/GameTicking/GameTicker.Spawning.cs index 115c3ace02..73b3ad74d5 100644 --- a/Content.Server/GameTicking/GameTicker.Spawning.cs +++ b/Content.Server/GameTicking/GameTicker.Spawning.cs @@ -175,9 +175,8 @@ private void SpawnPlayer(IPlayerSession player, HumanoidCharacterProfile charact DebugTools.AssertNotNull(data); - data!.WipeMind(); - var newMind = _mindSystem.CreateMind(data.UserId, character.Name); - _mindSystem.ChangeOwningPlayer(newMind, data.UserId); + var newMind = _mindSystem.CreateMind(data!.UserId, character.Name); + _mindSystem.SetUserId(newMind, data.UserId); var jobPrototype = _prototypeManager.Index(jobId); var job = new Job(newMind, jobPrototype); @@ -244,7 +243,7 @@ private void SpawnPlayer(IPlayerSession player, HumanoidCharacterProfile charact public void Respawn(IPlayerSession player) { - player.ContentData()?.WipeMind(); + _mindSystem.WipeMind(player); _adminLogger.Add(LogType.Respawn, LogImpact.Medium, $"Player {player} was respawned."); if (LobbyEnabled) @@ -278,9 +277,8 @@ public void MakeObserve(IPlayerSession player) DebugTools.AssertNotNull(data); - data!.WipeMind(); - var newMind = _mindSystem.CreateMind(data.UserId); - _mindSystem.ChangeOwningPlayer(newMind, data.UserId); + var newMind = _mindSystem.CreateMind(data!.UserId); + _mindSystem.SetUserId(newMind, data.UserId); _mindSystem.AddRole(newMind, new ObserverRole(newMind)); var mob = SpawnObserverMob(); diff --git a/Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs b/Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs index 9bc2324d4f..b99af24f0e 100644 --- a/Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs @@ -759,7 +759,7 @@ private void SpawnOperatives(int spawnCount, List sessions, bool var mob = EntityManager.SpawnEntity(species.Prototype, _random.Pick(spawns)); SetupOperativeEntity(mob, spawnDetails.Name, spawnDetails.Gear, profile, component); var newMind = _mindSystem.CreateMind(session.UserId, spawnDetails.Name); - _mindSystem.ChangeOwningPlayer(newMind, session.UserId); + _mindSystem.SetUserId(newMind, session.UserId); _mindSystem.AddRole(newMind, new NukeopsRole(newMind, nukeOpsAntag)); _mindSystem.TransferTo(newMind, mob); diff --git a/Content.Server/GameTicking/Rules/PiratesRuleSystem.cs b/Content.Server/GameTicking/Rules/PiratesRuleSystem.cs index e38eeba2e9..5bccab0b9e 100644 --- a/Content.Server/GameTicking/Rules/PiratesRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/PiratesRuleSystem.cs @@ -208,7 +208,7 @@ private void OnPlayerSpawningEvent(RulePlayerSpawningEvent ev) var session = ops[i]; var newMind = _mindSystem.CreateMind(session.UserId, name); - _mindSystem.ChangeOwningPlayer(newMind, session.UserId); + _mindSystem.SetUserId(newMind, session.UserId); var mob = Spawn("MobHuman", _random.Pick(spawns)); MetaData(mob).EntityName = name; diff --git a/Content.Server/Ghost/GhostSystem.cs b/Content.Server/Ghost/GhostSystem.cs index 9e598964c3..6bc2604e60 100644 --- a/Content.Server/Ghost/GhostSystem.cs +++ b/Content.Server/Ghost/GhostSystem.cs @@ -236,8 +236,6 @@ private void DeleteEntity(EntityUid uid) if (Deleted(uid) || Terminating(uid)) return; - if (EntityManager.TryGetComponent(uid, out var mind)) - _mindSystem.SetGhostOnShutdown(uid, false, mind); QueueDel(uid); } diff --git a/Content.Server/Ghost/Roles/GhostRoleSystem.cs b/Content.Server/Ghost/Roles/GhostRoleSystem.cs index 70f4673b19..09cb53392b 100644 --- a/Content.Server/Ghost/Roles/GhostRoleSystem.cs +++ b/Content.Server/Ghost/Roles/GhostRoleSystem.cs @@ -222,7 +222,7 @@ public void GhostRoleInternalCreateMindAndTransfer(IPlayerSession player, Entity EntityManager.GetComponent(mob).EntityName); _mindSystem.AddRole(newMind, new GhostRoleMarkerRole(newMind, role.RoleName)); - _mindSystem.ChangeOwningPlayer(newMind, player.UserId); + _mindSystem.SetUserId(newMind, player.UserId); _mindSystem.TransferTo(newMind, mob); } diff --git a/Content.Server/Mind/Components/MindContainerComponent.cs b/Content.Server/Mind/Components/MindContainerComponent.cs index bf2c8291fc..0333c75ada 100644 --- a/Content.Server/Mind/Components/MindContainerComponent.cs +++ b/Content.Server/Mind/Components/MindContainerComponent.cs @@ -1,5 +1,4 @@ using System.Diagnostics.CodeAnalysis; -using YamlDotNet.Core.Tokens; namespace Content.Server.Mind.Components { diff --git a/Content.Server/Mind/Mind.cs b/Content.Server/Mind/Mind.cs index 81f26d55a9..b1a6e228e0 100644 --- a/Content.Server/Mind/Mind.cs +++ b/Content.Server/Mind/Mind.cs @@ -1,4 +1,5 @@ using System.Linq; +using Content.Server.GameTicking; using Content.Server.Mind.Components; using Content.Server.Objectives; using Content.Server.Roles; @@ -30,16 +31,14 @@ public sealed class Mind /// Note: the Mind is NOT initially attached! /// The provided UserId is solely for tracking of intended owner. /// - /// The session ID of the original owner (may get credited). - public Mind(NetUserId? userId) + public Mind() { - OriginalOwnerUserId = userId; } /// /// The session ID of the player owning this mind. /// - [ViewVariables] + [ViewVariables, Access(typeof(MindSystem))] public NetUserId? UserId { get; internal set; } /// @@ -112,7 +111,7 @@ public Mind(NetUserId? userId) /// The session of the player owning this mind. /// Can be null, in which case the player is currently not logged in. /// - [ViewVariables] + [ViewVariables, Access(typeof(MindSystem), typeof(GameTicker))] public IPlayerSession? Session { get; internal set; } /// diff --git a/Content.Server/Mind/MindSystem.cs b/Content.Server/Mind/MindSystem.cs index ccb180cd5a..c6b8a65af0 100644 --- a/Content.Server/Mind/MindSystem.cs +++ b/Content.Server/Mind/MindSystem.cs @@ -10,6 +10,7 @@ using Content.Server.Roles; using Content.Shared.Database; using Content.Shared.Examine; +using Content.Shared.GameTicking; using Content.Shared.Mobs.Systems; using Content.Shared.Interaction.Events; using Content.Shared.Mobs.Components; @@ -30,29 +31,25 @@ public sealed class MindSystem : EntitySystem [Dependency] private readonly GhostSystem _ghostSystem = default!; [Dependency] private readonly IAdminLogManager _adminLogger = default!; [Dependency] private readonly IPlayerManager _playerManager = default!; - [Dependency] private readonly ActorSystem _actor = default!; + + // This is dictionary is required to track the minds of disconnected players that may have had their entity deleted. + private readonly Dictionary _userMinds = new(); public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnShutdown); SubscribeLocalEvent(OnExamined); SubscribeLocalEvent(OnSuicide); - SubscribeLocalEvent(OnTerminating); - SubscribeLocalEvent(OnDetached); - } - - private void OnDetached(EntityUid uid, VisitingMindComponent component, PlayerDetachedEvent args) - { - component.Mind = null; - RemCompDeferred(uid, component); + SubscribeLocalEvent(OnMindContainerTerminating); + SubscribeLocalEvent(OnVisitingTerminating); + SubscribeLocalEvent(OnReset); } - private void OnTerminating(EntityUid uid, VisitingMindComponent component, ref EntityTerminatingEvent args) + public override void Shutdown() { - if (component.Mind?.Session?.AttachedEntity == uid) - UnVisit(component.Mind); + base.Shutdown(); + WipeAllMinds(); } public void SetGhostOnShutdown(EntityUid uid, bool value, MindContainerComponent? mind = null) @@ -63,6 +60,49 @@ public void SetGhostOnShutdown(EntityUid uid, bool value, MindContainerComponent mind.GhostOnShutdown = value; } + private void OnReset(RoundRestartCleanupEvent ev) + { + WipeAllMinds(); + } + + public void WipeAllMinds() + { + foreach (var mind in _userMinds.Values) + { + WipeMind(mind); + } + DebugTools.Assert(_userMinds.Count == 0); + + foreach (var unCastData in _playerManager.GetAllPlayerData()) + { + if (unCastData.ContentData()?.Mind is not { } mind) + continue; + + Log.Error("Player mind was missing from MindSystem dictionary."); + WipeMind(mind); + } + } + + public Mind? GetMind(NetUserId user) + { + TryGetMind(user, out var mind); + return mind; + } + + public bool TryGetMind(NetUserId user, [NotNullWhen(true)] out Mind? mind) + { + if (_userMinds.TryGetValue(user, out mind)) + { + DebugTools.Assert(mind.UserId == user); + DebugTools.Assert(_playerManager.GetPlayerData(user).ContentData() is not {} data + || data.Mind == mind); + return true; + } + + DebugTools.Assert(_playerManager.GetPlayerData(user).ContentData()?.Mind == null); + return false; + } + /// /// Don't call this unless you know what the hell you're doing. /// Use instead. @@ -91,29 +131,39 @@ private void InternalEjectMind(EntityUid uid, MindContainerComponent? mind = nul mind.Mind = null; } - private void OnShutdown(EntityUid uid, MindContainerComponent mindContainerComp, ComponentShutdown args) + private void OnVisitingTerminating(EntityUid uid, VisitingMindComponent component, ref EntityTerminatingEvent args) + { + if (component.Mind != null) + UnVisit(component.Mind); + } + + private void OnMindContainerTerminating(EntityUid uid, MindContainerComponent component, ref EntityTerminatingEvent args) { // Let's not create ghosts if not in the middle of the round. if (_gameTicker.RunLevel != GameRunLevel.InRound) return; - if (!TryGetMind(uid, out var mind, mindContainerComp)) + if (component.Mind is not { } mind) return; - if (mind.VisitingEntity is {Valid: true} visiting) + // If the player is currently visiting some other entity, simply attach to that entity. + if (mind.VisitingEntity is {Valid: true} visiting + && visiting != uid + && !Deleted(visiting) + && !Terminating(visiting)) { + TransferTo(mind, visiting); if (TryComp(visiting, out GhostComponent? ghost)) - { _ghostSystem.SetCanReturnToBody(ghost, false); - } - - TransferTo(mind, visiting); + return; } - else if (mindContainerComp.GhostOnShutdown) + + TransferTo(mind, null); + + if (component.GhostOnShutdown && mind.Session != null) { - // Changing an entities parents while deleting is VERY sus. This WILL throw exceptions. - // TODO: just find the applicable spawn position directly without actually updating the transform's parent. - Transform(uid).AttachToGridOrMap(); + var xform = Transform(uid); + var gridId = xform.GridUid; var spawnPosition = Transform(uid).Coordinates; // Use a regular timer here because the entity has probably been deleted. @@ -124,11 +174,8 @@ private void OnShutdown(EntityUid uid, MindContainerComponent mindContainerComp, return; // Async this so that we don't throw if the grid we're on is being deleted. - var gridId = spawnPosition.GetGridUid(EntityManager); - if (!spawnPosition.IsValid(EntityManager) || gridId == EntityUid.Invalid || !_mapManager.GridExists(gridId)) - { + if (!_mapManager.GridExists(gridId)) spawnPosition = _gameTicker.GetObserverSpawnPoint(); - } // TODO refactor observer spawning. // please. @@ -195,9 +242,10 @@ private void OnSuicide(EntityUid uid, MindContainerComponent component, SuicideE public Mind CreateMind(NetUserId? userId, string? name = null) { - var mind = new Mind(userId); + var mind = new Mind(); mind.CharacterName = name; - ChangeOwningPlayer(mind, userId); + SetUserId(mind, userId); + return mind; } @@ -262,7 +310,6 @@ public void UnVisit(Mind? mind) if (mind == null || mind.VisitingEntity == null) return; - DebugTools.Assert(mind.VisitingEntity != mind.OwnedEntity); RemoveVisitingEntity(mind); if (mind.Session == null || mind.Session.AttachedEntity == mind.VisitingEntity) @@ -300,6 +347,25 @@ private void RemoveVisitingEntity(Mind mind) RaiseLocalEvent(oldVisitingEnt, new MindUnvisitedMessage(), true); } + public void WipeMind(IPlayerSession player) + { + var mind = player.ContentData()?.Mind; + DebugTools.Assert(GetMind(player.UserId) == mind); + WipeMind(mind); + } + + /// + /// Detaches a mind from all entities and clears the user ID. + /// + public void WipeMind(Mind? mind) + { + if (mind == null) + return; + + TransferTo(mind, null); + SetUserId(mind, null); + } + /// /// Transfer this mind's control over to a new entity. /// @@ -316,12 +382,8 @@ private void RemoveVisitingEntity(Mind mind) /// public void TransferTo(Mind mind, EntityUid? entity, bool ghostCheckOverride = false) { - // Looks like caller just wants us to go back to normal. if (entity == mind.OwnedEntity) - { - UnVisit(mind); return; - } MindContainerComponent? component = null; var alreadyAttached = false; @@ -382,51 +444,6 @@ public void TransferTo(Mind mind, EntityUid? entity, bool ghostCheckOverride = f } } - public void ChangeOwningPlayer(Mind mind, NetUserId? newOwner) - { - // Make sure to remove control from our old owner if they're logged in. - var oldSession = mind.Session; - oldSession?.AttachToEntity(null); - - if (mind.UserId.HasValue) - { - if (_playerManager.TryGetPlayerData(mind.UserId.Value, out var oldUncast)) - { - var data = oldUncast.ContentData(); - DebugTools.AssertNotNull(data); - data!.UpdateMindFromMindChangeOwningPlayer(null); - } - else - { - Log.Warning($"Mind UserId {newOwner} is does not exist in PlayerManager"); - } - } - - SetUserId(mind, newOwner); - if (!newOwner.HasValue) - { - return; - } - - if (!_playerManager.TryGetPlayerData(newOwner.Value, out var uncast)) - { - // This restriction is because I'm too lazy to initialize the player data - // for a client that hasn't logged in yet. - // Go ahead and remove it if you need. - throw new ArgumentException("New owner must have previously logged into the server.", nameof(newOwner)); - } - - // PlayerData? newOwnerData = null; - var newOwnerData = uncast.ContentData(); - - // Yank new owner out of their old mind too. - // Can I mention how much I love the word yank? - DebugTools.AssertNotNull(newOwnerData); - if (newOwnerData!.Mind != null) - ChangeOwningPlayer(newOwnerData.Mind, null); - newOwnerData.UpdateMindFromMindChangeOwningPlayer(mind); - } - /// /// Adds an objective to this mind. /// @@ -569,19 +586,56 @@ private void SetOwnedEntity(Mind mind, EntityUid? uid, MindContainerComponent? m } /// - /// Sets the Mind's UserId and Session + /// Sets the Mind's UserId, Session, and updates the player's PlayerData. + /// This should have no direct effect on the entity that any mind is connected to, but it may change a player's attached entity. /// /// /// - private void SetUserId(Mind mind, NetUserId? userId) + public void SetUserId(Mind mind, NetUserId? userId) { - mind.UserId = userId; + if (mind.UserId == userId) + return; - if (!userId.HasValue) + if (userId != null && !_playerManager.TryGetPlayerData(userId.Value, out _)) + { + Log.Error($"Attempted to set mind user to invalid value {userId}"); return; + } + + if (mind.Session != null) + { + mind.Session.AttachToEntity(null); + mind.Session = null; + } + + if (mind.UserId != null) + { + _userMinds.Remove(mind.UserId.Value); + if (_playerManager.GetPlayerData(mind.UserId.Value).ContentData() is { } oldData) + oldData.Mind = null; + mind.UserId = null; + } + + if (userId == null) + { + DebugTools.AssertNull(mind.Session); + return; + } + + if (_userMinds.TryGetValue(userId.Value, out var oldMind)) + SetUserId(oldMind, null); + + DebugTools.AssertNull(_playerManager.GetPlayerData(userId.Value).ContentData()?.Mind); + + _userMinds[userId.Value] = mind; + mind.UserId = userId; _playerManager.TryGetSessionById(userId.Value, out var ret); mind.Session = ret; + + // session may be null, but user data may still exist for disconnected players. + if (_playerManager.GetPlayerData(userId.Value).ContentData() is { } data) + data.Mind = mind; } /// diff --git a/Content.Server/Players/PlayerData.cs b/Content.Server/Players/PlayerData.cs index c8e368cfed..90d59113c1 100644 --- a/Content.Server/Players/PlayerData.cs +++ b/Content.Server/Players/PlayerData.cs @@ -1,3 +1,4 @@ +using Content.Server.GameTicking; using Content.Server.Mind; using Robust.Server.Player; using Robust.Shared.Network; @@ -27,8 +28,8 @@ public sealed class PlayerData /// The currently occupied mind of the player owning this data. /// DO NOT DIRECTLY SET THIS UNLESS YOU KNOW WHAT YOU'RE DOING. /// - [ViewVariables] - public Mind.Mind? Mind { get; private set; } + [ViewVariables, Access(typeof(MindSystem), typeof(GameTicker))] + public Mind.Mind? Mind { get; set; } /// /// If true, the player is an admin and they explicitly de-adminned mid-game, @@ -36,27 +37,6 @@ public sealed class PlayerData /// public bool ExplicitlyDeadminned { get; set; } - public void WipeMind() - { - var entityManager = IoCManager.Resolve(); - var mindSystem = entityManager.System(); - - // This will ensure Mind == null - if (Mind == null) - return; - - mindSystem.TransferTo(Mind, null); - mindSystem.ChangeOwningPlayer(Mind, null); - } - - /// - /// Called from Mind.ChangeOwningPlayer *and nowhere else.* - /// - public void UpdateMindFromMindChangeOwningPlayer(Mind.Mind? mind) - { - Mind = mind; - } - public PlayerData(NetUserId userId, string name) { UserId = userId; From f7e44b9b403c78b482497d99b5400878b197b58f Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 20 Jun 2023 00:30:30 -0400 Subject: [PATCH 369/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 1b98896276..b071b4cc91 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: notquitehadouken - changes: - - {message: updated the localization files (there was a typo), type: Fix} - id: 3552 - time: '2023-04-29T03:12:21.0000000+00:00' - author: freeman2651 changes: - {message: Pills are now destructible., type: Tweak} @@ -2930,3 +2925,8 @@ Entries: - {message: Remove guaranteed cat ear spawns., type: Remove} id: 4051 time: '2023-06-20T03:53:27.0000000+00:00' +- author: ElectroJr + changes: + - {message: Fixed some bugs that prevented ghosts from spawning., type: Fix} + id: 4052 + time: '2023-06-20T04:29:26.0000000+00:00' From 34e03a07f272be18de7fe6c6aac23effd6b1a16d Mon Sep 17 00:00:00 2001 From: Vordenburg <114301317+Vordenburg@users.noreply.github.com> Date: Tue, 20 Jun 2023 00:52:03 -0400 Subject: [PATCH 370/474] Improve HandLabeler and AgentID UI (#16902) --- .../Access/UI/AgentIDCardBoundUserInterface.cs | 4 ++-- Content.Client/Access/UI/AgentIDCardWindow.xaml.cs | 12 +++++++----- .../Labels/UI/HandLabelerBoundUserInterface.cs | 4 +--- Content.Client/Labels/UI/HandLabelerWindow.xaml.cs | 7 +++---- Content.Server/Labels/Label/HandLabelerSystem.cs | 11 +---------- .../Entities/Objects/Misc/identification_cards.yml | 1 + .../Entities/Objects/Tools/hand_labeler.yml | 3 +++ 7 files changed, 18 insertions(+), 24 deletions(-) diff --git a/Content.Client/Access/UI/AgentIDCardBoundUserInterface.cs b/Content.Client/Access/UI/AgentIDCardBoundUserInterface.cs index b9880eb8b6..6b6ce1e565 100644 --- a/Content.Client/Access/UI/AgentIDCardBoundUserInterface.cs +++ b/Content.Client/Access/UI/AgentIDCardBoundUserInterface.cs @@ -25,8 +25,8 @@ protected override void Open() _window.OpenCentered(); _window.OnClose += Close; - _window.OnNameEntered += OnNameChanged; - _window.OnJobEntered += OnJobChanged; + _window.OnNameChanged += OnNameChanged; + _window.OnJobChanged += OnJobChanged; } private void OnNameChanged(string newName) diff --git a/Content.Client/Access/UI/AgentIDCardWindow.xaml.cs b/Content.Client/Access/UI/AgentIDCardWindow.xaml.cs index 9813a2946e..1be816f027 100644 --- a/Content.Client/Access/UI/AgentIDCardWindow.xaml.cs +++ b/Content.Client/Access/UI/AgentIDCardWindow.xaml.cs @@ -7,16 +7,18 @@ namespace Content.Client.Access.UI [GenerateTypedNameReferences] public sealed partial class AgentIDCardWindow : DefaultWindow { - public event Action? OnNameEntered; - - public event Action? OnJobEntered; + public event Action? OnNameChanged; + public event Action? OnJobChanged; public AgentIDCardWindow() { RobustXamlLoader.Load(this); - NameLineEdit.OnTextEntered += e => OnNameEntered?.Invoke(e.Text); - JobLineEdit.OnTextEntered += e => OnJobEntered?.Invoke(e.Text); + NameLineEdit.OnTextEntered += e => OnNameChanged?.Invoke(e.Text); + NameLineEdit.OnFocusExit += e => OnNameChanged?.Invoke(e.Text); + + JobLineEdit.OnTextEntered += e => OnJobChanged?.Invoke(e.Text); + JobLineEdit.OnFocusExit += e => OnJobChanged?.Invoke(e.Text); } public void SetCurrentName(string name) diff --git a/Content.Client/Labels/UI/HandLabelerBoundUserInterface.cs b/Content.Client/Labels/UI/HandLabelerBoundUserInterface.cs index 40677e1512..352e90958b 100644 --- a/Content.Client/Labels/UI/HandLabelerBoundUserInterface.cs +++ b/Content.Client/Labels/UI/HandLabelerBoundUserInterface.cs @@ -26,14 +26,12 @@ protected override void Open() _window.OpenCentered(); _window.OnClose += Close; - _window.OnLabelEntered += OnLabelChanged; - + _window.OnLabelChanged += OnLabelChanged; } private void OnLabelChanged(string newLabel) { SendMessage(new HandLabelerLabelChangedMessage(newLabel)); - Close(); } /// diff --git a/Content.Client/Labels/UI/HandLabelerWindow.xaml.cs b/Content.Client/Labels/UI/HandLabelerWindow.xaml.cs index b55c4c069a..7706c31f85 100644 --- a/Content.Client/Labels/UI/HandLabelerWindow.xaml.cs +++ b/Content.Client/Labels/UI/HandLabelerWindow.xaml.cs @@ -1,7 +1,5 @@ -using System; using Robust.Client.UserInterface.CustomControls; using Robust.Client.AutoGenerated; -using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.XAML; namespace Content.Client.Labels.UI @@ -9,13 +7,14 @@ namespace Content.Client.Labels.UI [GenerateTypedNameReferences] public sealed partial class HandLabelerWindow : DefaultWindow { - public event Action? OnLabelEntered; + public event Action? OnLabelChanged; public HandLabelerWindow() { RobustXamlLoader.Load(this); - LabelLineEdit.OnTextEntered += e => OnLabelEntered?.Invoke(e.Text); + LabelLineEdit.OnTextEntered += e => OnLabelChanged?.Invoke(e.Text); + LabelLineEdit.OnFocusExit += e => OnLabelChanged?.Invoke(e.Text); } public void SetCurrentLabel(string label) diff --git a/Content.Server/Labels/Label/HandLabelerSystem.cs b/Content.Server/Labels/Label/HandLabelerSystem.cs index 1f50906bec..9273be9778 100644 --- a/Content.Server/Labels/Label/HandLabelerSystem.cs +++ b/Content.Server/Labels/Label/HandLabelerSystem.cs @@ -28,7 +28,6 @@ public override void Initialize() base.Initialize(); SubscribeLocalEvent(AfterInteractOn); - SubscribeLocalEvent(OnActivate); SubscribeLocalEvent>(OnUtilityVerb); // Bound UI subscriptions SubscribeLocalEvent(OnHandLabelerLabelChanged); @@ -54,6 +53,7 @@ private void OnUtilityVerb(EntityUid uid, HandLabelerComponent handLabeler, GetV args.Verbs.Add(verb); } + private void AfterInteractOn(EntityUid uid, HandLabelerComponent handLabeler, AfterInteractEvent args) { if (args.Target is not {Valid: true} target || !handLabeler.Whitelist.IsValid(target) || !args.CanReach) @@ -88,15 +88,6 @@ private void AddLabelTo(EntityUid uid, HandLabelerComponent? handLabeler, Entity result = Loc.GetString("hand-labeler-successfully-applied"); } - private void OnActivate(EntityUid uid, HandLabelerComponent handLabeler, ActivateInWorldEvent args) - { - if (!EntityManager.TryGetComponent(args.User, out ActorComponent? actor)) - return; - - handLabeler.Owner.GetUIOrNull(HandLabelerUiKey.Key)?.Open(actor.PlayerSession); - args.Handled = true; - } - private void OnHandLabelerLabelChanged(EntityUid uid, HandLabelerComponent handLabeler, HandLabelerLabelChangedMessage args) { if (args.Session.AttachedEntity is not {Valid: true} player) diff --git a/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml b/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml index 90b1b8395b..976431dc84 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml @@ -499,6 +499,7 @@ - type: AgentIDCard - type: ActivatableUI key: enum.AgentIDCardUiKey.Key + inHandsOnly: true - type: UserInterface interfaces: - key: enum.AgentIDCardUiKey.Key diff --git a/Resources/Prototypes/Entities/Objects/Tools/hand_labeler.yml b/Resources/Prototypes/Entities/Objects/Tools/hand_labeler.yml index 3b16f6938a..4708970ed0 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/hand_labeler.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/hand_labeler.yml @@ -11,6 +11,9 @@ sprite: Objects/Tools/hand_labeler.rsi - type: UseDelay delay: 2.0 + - type: ActivatableUI + key: enum.HandLabelerUiKey.Key + inHandsOnly: true - type: UserInterface interfaces: - key: enum.HandLabelerUiKey.Key From 41f4bed2c7cdaf8c445501cd14b1e71079771036 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 20 Jun 2023 00:53:07 -0400 Subject: [PATCH 371/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index b071b4cc91..36e868ab25 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: freeman2651 - changes: - - {message: Pills are now destructible., type: Tweak} - id: 3553 - time: '2023-04-29T03:13:20.0000000+00:00' - author: EmoGarbage404 changes: - {message: Nuke ops will no longer start in the middle of rounds instead of lone @@ -2930,3 +2925,9 @@ Entries: - {message: Fixed some bugs that prevented ghosts from spawning., type: Fix} id: 4052 time: '2023-06-20T04:29:26.0000000+00:00' +- author: Vordenburg + changes: + - {message: The hand labeler and Syndicate agent ID now set their labels without + the player needing to hit enter on the input fields., type: Tweak} + id: 4053 + time: '2023-06-20T04:52:03.0000000+00:00' From 56cb07edd7f7a75939ac78ef0f175471f770c9aa Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Tue, 20 Jun 2023 06:35:29 +0000 Subject: [PATCH 372/474] saltern 4.12 (#17481) Co-authored-by: deltanedas <@deltanedas:kde.org> --- Resources/Maps/saltern.yml | 4999 +----------------------------------- 1 file changed, 17 insertions(+), 4982 deletions(-) diff --git a/Resources/Maps/saltern.yml b/Resources/Maps/saltern.yml index 7becb9b351..9e247f06e8 100644 --- a/Resources/Maps/saltern.yml +++ b/Resources/Maps/saltern.yml @@ -2484,6 +2484,8 @@ entities: - type: Broadphase - type: OccluderTree - type: LoadedMap + - type: GridTree + - type: MovedGrids - proto: AcousticGuitarInstrument entities: - uid: 3146 @@ -5735,22 +5737,16 @@ entities: - pos: 13.5,-9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 18 components: - pos: -13.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 51 components: - pos: 12.5,-9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 69 components: - pos: 44.5,24.5 @@ -5758,43 +5754,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 103 components: - pos: 28.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 106 components: - pos: 8.5,28.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 131 components: - pos: 24.5,15.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 164 components: - pos: 16.5,-1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 167 components: - pos: -26.5,16.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 168 components: - pos: 13.5,1.5 @@ -5802,8 +5786,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 198 components: - pos: -27.5,16.5 @@ -5811,71 +5793,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 199 components: - pos: -28.5,16.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 200 components: - pos: -37.5,17.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 201 components: - pos: -36.5,17.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 204 components: - pos: 53.5,-28.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 207 components: - pos: 45.5,-28.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 208 components: - pos: 45.5,-20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 209 components: - pos: 53.5,-20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 218 components: - pos: -6.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 250 components: - pos: -34.5,17.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 258 components: - pos: -33.5,17.5 @@ -5883,22 +5845,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 266 components: - pos: -1.5,-30.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 297 components: - pos: -6.5,30.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 415 components: - pos: -19.5,-16.5 @@ -5906,71 +5862,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 531 components: - pos: 16.5,-10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 537 components: - pos: 7.5,-10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 549 components: - pos: 27.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 552 components: - pos: 7.5,-9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 607 components: - pos: -4.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 645 components: - pos: 16.5,16.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 646 components: - pos: 16.5,15.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 650 components: - pos: -2.5,12.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 652 components: - pos: -2.5,13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 656 components: - pos: 30.5,27.5 @@ -5978,15 +5914,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 682 components: - pos: -37.5,2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 699 components: - pos: 10.5,-13.5 @@ -5994,43 +5926,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 742 components: - pos: -23.5,-22.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 780 components: - pos: 21.5,22.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 795 components: - pos: 19.5,16.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 814 components: - pos: 22.5,16.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 815 components: - pos: 21.5,16.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 862 components: - pos: 16.5,19.5 @@ -6038,8 +5958,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 866 components: - pos: 16.5,20.5 @@ -6047,8 +5965,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 939 components: - pos: 8.5,27.5 @@ -6056,15 +5972,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 948 components: - pos: -23.5,-23.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 949 components: - pos: -41.5,2.5 @@ -6072,8 +5984,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 971 components: - pos: -40.5,2.5 @@ -6081,8 +5991,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 992 components: - pos: 1.5,1.5 @@ -6090,8 +5998,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 996 components: - pos: 1.5,2.5 @@ -6099,8 +6005,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 998 components: - pos: 6.5,18.5 @@ -6108,64 +6012,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 999 components: - pos: 3.5,28.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1000 components: - pos: 26.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1001 components: - pos: 25.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1004 components: - pos: 27.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1005 components: - pos: 27.5,6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1006 components: - pos: 27.5,5.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1007 components: - pos: 3.5,29.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1008 components: - pos: 16.5,-2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1010 components: - pos: 22.5,-18.5 @@ -6173,57 +6059,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1017 components: - pos: -6.5,-26.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1024 components: - pos: -37.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1078 components: - pos: -5.5,-27.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1079 components: - pos: -6.5,-31.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1081 components: - pos: -7.5,-31.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1082 components: - pos: -5.5,-28.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1094 components: - pos: 24.5,-15.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1127 components: - pos: 7.5,-18.5 @@ -6231,50 +6101,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1128 components: - pos: 14.5,-17.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1145 components: - pos: 22.5,-4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1159 components: - pos: 20.5,21.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1172 components: - pos: -6.5,5.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1174 components: - pos: 11.5,24.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1176 components: - pos: 8.5,25.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1181 components: - pos: -43.5,2.5 @@ -6282,57 +6138,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1201 components: - pos: 27.5,3.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1214 components: - pos: 21.5,21.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1223 components: - pos: 27.5,2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1240 components: - pos: -2.5,-15.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1241 components: - pos: 6.5,-0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1243 components: - pos: 6.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1251 components: - pos: -5.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1327 components: - pos: 16.5,22.5 @@ -6340,29 +6180,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1341 components: - pos: -12.5,8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1369 components: - pos: -4.5,5.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1382 components: - pos: 3.5,27.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1421 components: - pos: -40.5,0.5 @@ -6370,8 +6202,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1428 components: - pos: -42.5,0.5 @@ -6379,8 +6209,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1429 components: - pos: -43.5,0.5 @@ -6388,8 +6216,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1431 components: - pos: -41.5,10.5 @@ -6397,8 +6223,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1433 components: - pos: -43.5,10.5 @@ -6406,8 +6230,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1450 components: - pos: -23.5,-24.5 @@ -6415,71 +6237,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1466 components: - pos: -7.5,-25.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1467 components: - pos: -7.5,-26.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1525 components: - pos: 14.5,-9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1528 components: - pos: 18.5,16.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1558 components: - pos: 26.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1578 components: - pos: -38.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1580 components: - pos: 16.5,17.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1581 components: - pos: 16.5,18.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1591 components: - pos: -39.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1593 components: - pos: -41.5,0.5 @@ -6487,8 +6289,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1597 components: - pos: 13.5,18.5 @@ -6496,8 +6296,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1598 components: - pos: 13.5,19.5 @@ -6505,15 +6303,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1599 components: - pos: 15.5,14.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1654 components: - pos: -18.5,15.5 @@ -6521,8 +6315,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1693 components: - pos: -18.5,18.5 @@ -6530,8 +6322,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1694 components: - pos: -18.5,16.5 @@ -6539,8 +6329,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1703 components: - pos: -40.5,10.5 @@ -6548,8 +6336,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1704 components: - pos: -42.5,10.5 @@ -6557,43 +6343,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1705 components: - pos: -39.5,8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1726 components: - pos: -6.5,26.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1764 components: - pos: 44.5,-24.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1838 components: - pos: 22.5,21.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1870 components: - pos: 3.5,26.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1878 components: - pos: 30.5,23.5 @@ -6601,15 +6375,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2005 components: - pos: -24.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2041 components: - pos: -16.5,17.5 @@ -6617,15 +6387,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2066 components: - pos: -10.5,7.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2069 components: - pos: 1.5,6.5 @@ -6633,43 +6399,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2118 components: - pos: -12.5,9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2120 components: - pos: -8.5,9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2126 components: - pos: -8.5,8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2127 components: - pos: 20.5,16.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2202 components: - pos: -6.5,27.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2203 components: - pos: 16.5,21.5 @@ -6677,8 +6431,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2330 components: - pos: 13.5,17.5 @@ -6686,22 +6438,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2374 components: - pos: -10.5,8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2389 components: - pos: -1.5,6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2394 components: - pos: -3.5,6.5 @@ -6709,8 +6455,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2395 components: - pos: -2.5,6.5 @@ -6718,15 +6462,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2398 components: - pos: -4.5,6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2402 components: - pos: -15.5,-9.5 @@ -6734,8 +6474,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2482 components: - pos: -17.5,16.5 @@ -6743,15 +6481,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2483 components: - pos: 12.5,25.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2506 components: - pos: -28.5,12.5 @@ -6759,50 +6493,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2507 components: - pos: -28.5,11.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2508 components: - pos: -28.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2509 components: - pos: -28.5,9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2510 components: - pos: -28.5,8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2511 components: - pos: -27.5,9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2512 components: - pos: -26.5,9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2513 components: - pos: -25.5,9.5 @@ -6810,85 +6530,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2514 components: - pos: -26.5,8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2516 components: - pos: -24.5,9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2517 components: - pos: -23.5,9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2518 components: - pos: -22.5,9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2519 components: - pos: -21.5,9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2520 components: - pos: -20.5,9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2521 components: - pos: -20.5,11.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2522 components: - pos: -23.5,8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2524 components: - pos: -23.5,7.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2525 components: - pos: -23.5,6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2526 components: - pos: -28.5,13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2528 components: - pos: -22.5,13.5 @@ -6896,15 +6592,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2529 components: - pos: -23.5,13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2530 components: - pos: -24.5,12.5 @@ -6912,15 +6604,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2531 components: - pos: -20.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2532 components: - pos: -18.5,14.5 @@ -6928,99 +6616,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2536 components: - pos: -13.5,14.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2538 components: - pos: -17.5,19.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2539 components: - pos: -17.5,20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2540 components: - pos: -17.5,21.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2541 components: - pos: -17.5,22.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2542 components: - pos: -17.5,23.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2543 components: - pos: -17.5,24.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2544 components: - pos: -16.5,24.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2545 components: - pos: -15.5,24.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2546 components: - pos: -14.5,24.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2547 components: - pos: -13.5,24.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2548 components: - pos: -12.5,24.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2549 components: - pos: -11.5,24.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2550 components: - pos: -10.5,24.5 @@ -7028,22 +6688,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2551 components: - pos: -9.5,24.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2552 components: - pos: -8.5,24.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2553 components: - pos: -7.5,24.5 @@ -7051,8 +6705,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2554 components: - pos: -12.5,12.5 @@ -7060,29 +6712,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2555 components: - pos: -12.5,11.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2556 components: - pos: -13.5,11.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2557 components: - pos: -12.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2558 components: - pos: -9.5,8.5 @@ -7090,8 +6734,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2560 components: - pos: 6.5,19.5 @@ -7099,141 +6741,101 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2562 components: - pos: -11.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2563 components: - pos: -9.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2564 components: - pos: -10.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2565 components: - pos: -8.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2566 components: - pos: -7.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2567 components: - pos: -6.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2568 components: - pos: -5.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2569 components: - pos: -4.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2570 components: - pos: -3.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2571 components: - pos: -2.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2572 components: - pos: -1.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2573 components: - pos: -0.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2574 components: - pos: 0.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2575 components: - pos: -5.5,9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2576 components: - pos: -5.5,8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2577 components: - pos: -5.5,7.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2578 components: - pos: 0.5,9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2579 components: - pos: 0.5,8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2580 components: - pos: 0.5,7.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2582 components: - pos: -25.5,19.5 @@ -7241,8 +6843,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2584 components: - pos: -3.5,15.5 @@ -7250,50 +6850,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2585 components: - pos: -3.5,16.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2586 components: - pos: -3.5,17.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2587 components: - pos: -3.5,18.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2588 components: - pos: -2.5,18.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2589 components: - pos: -1.5,18.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2590 components: - pos: -0.5,18.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2591 components: - pos: -0.5,9.5 @@ -7301,15 +6887,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2592 components: - pos: -3.5,14.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2593 components: - pos: -4.5,14.5 @@ -7317,43 +6899,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2594 components: - pos: -5.5,14.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2595 components: - pos: -6.5,14.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2596 components: - pos: -7.5,14.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2597 components: - pos: -8.5,14.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2598 components: - pos: -9.5,14.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2599 components: - pos: -10.5,14.5 @@ -7361,155 +6931,111 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2600 components: - pos: -11.5,14.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2601 components: - pos: -12.5,14.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2602 components: - pos: -12.5,15.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2603 components: - pos: -12.5,16.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2604 components: - pos: -7.5,15.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2605 components: - pos: -7.5,16.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2606 components: - pos: -7.5,17.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2607 components: - pos: -6.5,17.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2608 components: - pos: -8.5,17.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2609 components: - pos: -8.5,18.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2610 components: - pos: -8.5,19.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2611 components: - pos: -8.5,20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2612 components: - pos: -9.5,20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2613 components: - pos: -8.5,21.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2614 components: - pos: -7.5,21.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2615 components: - pos: -12.5,17.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2616 components: - pos: -12.5,18.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2617 components: - pos: -12.5,19.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2618 components: - pos: -12.5,20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2619 components: - pos: -13.5,20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2620 components: - pos: -14.5,20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2621 components: - pos: -1.5,9.5 @@ -7517,15 +7043,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2622 components: - pos: -2.5,14.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2623 components: - pos: -1.5,14.5 @@ -7533,22 +7055,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2624 components: - pos: -0.5,14.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2625 components: - pos: 0.5,14.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2626 components: - pos: 1.5,14.5 @@ -7556,22 +7072,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2627 components: - pos: 0.5,13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2628 components: - pos: 0.5,12.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2629 components: - pos: -39.5,11.5 @@ -7579,239 +7089,171 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2630 components: - pos: -39.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2631 components: - pos: -38.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2632 components: - pos: -37.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2633 components: - pos: -36.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2634 components: - pos: -36.5,9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2635 components: - pos: -36.5,8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2636 components: - pos: -36.5,7.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2637 components: - pos: -36.5,6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2638 components: - pos: -36.5,5.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2639 components: - pos: -36.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2640 components: - pos: -36.5,3.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2641 components: - pos: -36.5,2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2642 components: - pos: -36.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2643 components: - pos: -36.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2644 components: - pos: -36.5,-0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2645 components: - pos: -36.5,-1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2646 components: - pos: -36.5,-2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2647 components: - pos: -36.5,-3.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2648 components: - pos: -36.5,-4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2649 components: - pos: -36.5,-5.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2650 components: - pos: -36.5,-6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2651 components: - pos: -35.5,-6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2652 components: - pos: -35.5,2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2653 components: - pos: -35.5,5.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2654 components: - pos: -34.5,5.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2655 components: - pos: -33.5,5.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2656 components: - pos: -32.5,5.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2657 components: - pos: -35.5,8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2658 components: - pos: -34.5,8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2659 components: - pos: -37.5,8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2660 components: - pos: -38.5,8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2663 components: - pos: -37.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2664 components: - pos: -38.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2672 components: - pos: -30.5,-3.5 @@ -7819,22 +7261,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2673 components: - pos: -30.5,-4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2674 components: - pos: -30.5,-5.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2675 components: - pos: -30.5,-6.5 @@ -7842,36 +7278,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2676 components: - pos: -30.5,-7.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2677 components: - pos: -29.5,-7.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2678 components: - pos: -28.5,-7.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2679 components: - pos: -27.5,-7.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2680 components: - pos: -26.5,-7.5 @@ -7879,43 +7305,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2681 components: - pos: -25.5,-7.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2682 components: - pos: -25.5,-8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2683 components: - pos: -24.5,-7.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2684 components: - pos: -23.5,-7.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2685 components: - pos: -23.5,-8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2686 components: - pos: 0.5,6.5 @@ -7923,22 +7337,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2687 components: - pos: -30.5,-2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2688 components: - pos: -30.5,-1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2689 components: - pos: -30.5,-0.5 @@ -7946,43 +7354,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2690 components: - pos: -30.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2691 components: - pos: -30.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2692 components: - pos: -29.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2693 components: - pos: -28.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2694 components: - pos: -27.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2695 components: - pos: -27.5,-0.5 @@ -7990,15 +7386,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2696 components: - pos: -27.5,-1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2698 components: - pos: -31.5,-6.5 @@ -8006,8 +7398,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2699 components: - pos: -0.5,6.5 @@ -8015,8 +7405,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2700 components: - pos: -32.5,-5.5 @@ -8024,8 +7412,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2701 components: - pos: -32.5,-4.5 @@ -8033,8 +7419,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2702 components: - pos: -32.5,-3.5 @@ -8042,8 +7426,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2703 components: - pos: -32.5,-2.5 @@ -8051,8 +7433,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2704 components: - pos: -32.5,-1.5 @@ -8060,8 +7440,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2705 components: - pos: -32.5,-0.5 @@ -8069,8 +7447,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2706 components: - pos: -32.5,0.5 @@ -8078,8 +7454,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2707 components: - pos: -32.5,1.5 @@ -8087,8 +7461,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2709 components: - pos: -21.5,-12.5 @@ -8096,8 +7468,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2710 components: - pos: -21.5,-13.5 @@ -8105,8 +7475,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2711 components: - pos: -21.5,-14.5 @@ -8114,8 +7482,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2712 components: - pos: -10.5,6.5 @@ -8123,8 +7489,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2713 components: - pos: -22.5,-14.5 @@ -8132,8 +7496,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2714 components: - pos: -23.5,-14.5 @@ -8141,8 +7503,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2715 components: - pos: -24.5,-14.5 @@ -8150,29 +7510,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2716 components: - pos: -24.5,-13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2717 components: - pos: -14.5,-8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2718 components: - pos: -14.5,-9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2719 components: - pos: -11.5,8.5 @@ -8180,8 +7532,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2720 components: - pos: -14.5,-10.5 @@ -8189,15 +7539,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2722 components: - pos: -13.5,-11.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2723 components: - pos: -12.5,-11.5 @@ -8205,8 +7551,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2724 components: - pos: -11.5,-11.5 @@ -8214,78 +7558,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2725 components: - pos: -12.5,-10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2726 components: - pos: -12.5,-9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2727 components: - pos: -13.5,-12.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2728 components: - pos: -12.5,-8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2729 components: - pos: -16.5,-7.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2730 components: - pos: -15.5,-7.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2731 components: - pos: -14.5,-7.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2732 components: - pos: -17.5,-7.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2733 components: - pos: -18.5,-7.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2734 components: - pos: -19.5,-7.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2735 components: - pos: -20.5,-7.5 @@ -8293,92 +7615,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2736 components: - pos: -18.5,-6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2737 components: - pos: -18.5,-5.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2738 components: - pos: -18.5,-4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2739 components: - pos: -19.5,-4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2740 components: - pos: -20.5,-4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2741 components: - pos: -21.5,-4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2742 components: - pos: -22.5,-4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2743 components: - pos: -22.5,-3.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2745 components: - pos: -22.5,-2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2746 components: - pos: -22.5,-1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2747 components: - pos: -22.5,-0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2748 components: - pos: -22.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2749 components: - pos: -22.5,1.5 @@ -8386,36 +7682,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2750 components: - pos: -23.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2751 components: - pos: -15.5,-6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2752 components: - pos: -15.5,-5.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2753 components: - pos: -15.5,-4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2754 components: - pos: -11.5,2.5 @@ -8423,36 +7709,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2755 components: - pos: -11.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2756 components: - pos: -11.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2757 components: - pos: -11.5,-0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2758 components: - pos: -11.5,-1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2759 components: - pos: -11.5,-2.5 @@ -8460,281 +7736,201 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2760 components: - pos: -11.5,-3.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2761 components: - pos: -11.5,-4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2762 components: - pos: -12.5,-4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2763 components: - pos: -12.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2764 components: - pos: -13.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2765 components: - pos: -14.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2768 components: - pos: -15.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2769 components: - pos: -16.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2770 components: - pos: -17.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2771 components: - pos: -18.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2772 components: - pos: -19.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2773 components: - pos: -20.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2774 components: - pos: -20.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2775 components: - pos: -16.5,-0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2776 components: - pos: -16.5,-1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2778 components: - pos: -12.5,-1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2779 components: - pos: -13.5,-1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2781 components: - pos: -20.5,-0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2782 components: - pos: -20.5,-1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2783 components: - pos: -20.5,-2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2784 components: - pos: -10.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2785 components: - pos: -9.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2786 components: - pos: -8.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2787 components: - pos: -7.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2788 components: - pos: -6.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2789 components: - pos: -5.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2790 components: - pos: -4.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2791 components: - pos: -3.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2792 components: - pos: -2.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2793 components: - pos: -1.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2794 components: - pos: -0.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2795 components: - pos: 0.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2796 components: - pos: -0.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2797 components: - pos: -0.5,-0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2798 components: - pos: -0.5,-1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2799 components: - pos: -0.5,-2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2800 components: - pos: -0.5,-3.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2801 components: - pos: -0.5,-4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2802 components: - pos: 0.5,-4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2803 components: - pos: -5.5,-8.5 @@ -8742,8 +7938,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2804 components: - pos: -5.5,-7.5 @@ -8751,8 +7945,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2805 components: - pos: -4.5,-7.5 @@ -8760,8 +7952,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2806 components: - pos: -3.5,-7.5 @@ -8769,8 +7959,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2808 components: - pos: -6.5,-7.5 @@ -8778,8 +7966,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2809 components: - pos: -7.5,-7.5 @@ -8787,29 +7973,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2810 components: - pos: -6.5,-6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2811 components: - pos: -6.5,-5.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2812 components: - pos: -6.5,-4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2813 components: - pos: -5.5,-9.5 @@ -8817,8 +7995,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2814 components: - pos: -5.5,-10.5 @@ -8826,8 +8002,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2816 components: - pos: -4.5,-10.5 @@ -8835,8 +8009,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2817 components: - pos: -3.5,-10.5 @@ -8844,8 +8016,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2818 components: - pos: -2.5,-10.5 @@ -8853,8 +8023,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2819 components: - pos: -1.5,-10.5 @@ -8862,8 +8030,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2820 components: - pos: -0.5,-10.5 @@ -8871,8 +8037,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2821 components: - pos: 0.5,-10.5 @@ -8880,15 +8044,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2825 components: - pos: -0.5,-11.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2826 components: - pos: -1.5,-18.5 @@ -8896,85 +8056,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2827 components: - pos: -1.5,-19.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2828 components: - pos: -1.5,-20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2829 components: - pos: -0.5,-19.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2830 components: - pos: -2.5,-19.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2831 components: - pos: -3.5,-19.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2832 components: - pos: -4.5,-19.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2833 components: - pos: -3.5,-20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2834 components: - pos: -3.5,-21.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2835 components: - pos: -3.5,-23.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2836 components: - pos: -3.5,-22.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2837 components: - pos: -2.5,-23.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2838 components: - pos: -9.5,-21.5 @@ -8982,36 +8118,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2839 components: - pos: -9.5,-22.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2840 components: - pos: -9.5,-23.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2841 components: - pos: -8.5,-23.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2842 components: - pos: -7.5,-23.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2843 components: - pos: -7.5,-24.5 @@ -9019,141 +8145,101 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2845 components: - pos: -9.5,-20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2846 components: - pos: -10.5,-20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2847 components: - pos: -11.5,-20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2848 components: - pos: -11.5,-19.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2849 components: - pos: -9.5,-19.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2850 components: - pos: -9.5,-18.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2851 components: - pos: -9.5,-17.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2852 components: - pos: -8.5,-17.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2853 components: - pos: -3.5,-18.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2855 components: - pos: -3.5,-17.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2856 components: - pos: -3.5,-16.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2857 components: - pos: -3.5,-15.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2858 components: - pos: -3.5,-14.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2859 components: - pos: -3.5,-13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2860 components: - pos: -3.5,-12.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2861 components: - pos: -2.5,-13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2862 components: - pos: -1.5,-13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2863 components: - pos: -1.5,-17.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2864 components: - pos: -0.5,-17.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2865 components: - pos: 0.5,-17.5 @@ -9161,36 +8247,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2866 components: - pos: -4.5,-14.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2867 components: - pos: -4.5,-12.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2868 components: - pos: -4.5,-17.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2869 components: - pos: -5.5,-12.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2870 components: - pos: -6.5,-12.5 @@ -9198,15 +8274,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2871 components: - pos: -5.5,-14.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2872 components: - pos: -14.5,-16.5 @@ -9214,50 +8286,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2873 components: - pos: -14.5,-17.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2874 components: - pos: -14.5,-18.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2875 components: - pos: -14.5,-19.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2876 components: - pos: -14.5,-20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2877 components: - pos: -14.5,-21.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2878 components: - pos: -14.5,-22.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2879 components: - pos: -14.5,-23.5 @@ -9265,22 +8323,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2880 components: - pos: -14.5,-24.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2881 components: - pos: -14.5,-25.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2882 components: - pos: -15.5,-25.5 @@ -9288,36 +8340,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2883 components: - pos: -16.5,-25.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2884 components: - pos: -15.5,-22.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2885 components: - pos: -16.5,-22.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2886 components: - pos: -17.5,-22.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2887 components: - pos: -1.5,-23.5 @@ -9325,8 +8367,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2888 components: - pos: -0.5,-23.5 @@ -9334,8 +8374,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2889 components: - pos: 0.5,-23.5 @@ -9343,36 +8381,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2890 components: - pos: 7.5,-17.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2894 components: - pos: 10.5,-19.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2895 components: - pos: 11.5,-19.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2896 components: - pos: 12.5,-19.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2897 components: - pos: 13.5,-19.5 @@ -9380,15 +8408,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2898 components: - pos: 14.5,-19.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2899 components: - pos: 14.5,-18.5 @@ -9396,36 +8420,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2900 components: - pos: 7.5,-16.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2901 components: - pos: 7.5,-15.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2902 components: - pos: 7.5,-14.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2903 components: - pos: 7.5,-13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2904 components: - pos: 6.5,-13.5 @@ -9433,29 +8447,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2905 components: - pos: 5.5,-13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2906 components: - pos: 8.5,-13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2907 components: - pos: 9.5,-13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2908 components: - pos: 10.5,-13.5 @@ -9463,29 +8469,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2911 components: - pos: 22.5,-5.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2912 components: - pos: 23.5,-4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2913 components: - pos: 24.5,-4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2914 components: - pos: 25.5,-4.5 @@ -9493,8 +8491,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2915 components: - pos: 22.5,-2.5 @@ -9502,36 +8498,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2916 components: - pos: 22.5,-1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2917 components: - pos: 22.5,-0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2918 components: - pos: 22.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2919 components: - pos: 22.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2920 components: - pos: 21.5,1.5 @@ -9539,29 +8525,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2921 components: - pos: 23.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2922 components: - pos: 23.5,-1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2923 components: - pos: 24.5,-1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2924 components: - pos: 25.5,-1.5 @@ -9569,127 +8547,91 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2925 components: - pos: 22.5,-6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2926 components: - pos: 21.5,-6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2927 components: - pos: 20.5,-6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2928 components: - pos: 19.5,-6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2929 components: - pos: 18.5,-6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2930 components: - pos: 18.5,-5.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2931 components: - pos: 18.5,-4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2933 components: - pos: 18.5,-8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2934 components: - pos: 18.5,-9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2935 components: - pos: 18.5,-10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2936 components: - pos: 18.5,-11.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2937 components: - pos: 18.5,-12.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2938 components: - pos: 18.5,-13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2939 components: - pos: 18.5,-14.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2940 components: - pos: 18.5,-15.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2941 components: - pos: 18.5,-16.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2942 components: - pos: 18.5,-17.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2943 components: - pos: 18.5,-18.5 @@ -9697,29 +8639,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2944 components: - pos: 18.5,-19.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2945 components: - pos: 18.5,-20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2946 components: - pos: 19.5,-13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2947 components: - pos: 20.5,-13.5 @@ -9727,43 +8661,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2948 components: - pos: 21.5,-13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2950 components: - pos: 22.5,-13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2951 components: - pos: 23.5,-13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2952 components: - pos: 24.5,-13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2953 components: - pos: 8.5,-12.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2954 components: - pos: 8.5,-11.5 @@ -9771,36 +8693,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2955 components: - pos: 7.5,-11.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2956 components: - pos: 9.5,-11.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2957 components: - pos: 10.5,-11.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2958 components: - pos: 7.5,-7.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2959 components: - pos: 8.5,-7.5 @@ -9808,85 +8720,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2960 components: - pos: 9.5,-7.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2961 components: - pos: 10.5,-7.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2962 components: - pos: 11.5,-7.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2963 components: - pos: 12.5,-7.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2964 components: - pos: 14.5,-8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2965 components: - pos: 14.5,-7.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2966 components: - pos: 15.5,-7.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2967 components: - pos: 16.5,-7.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2968 components: - pos: 17.5,-7.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2969 components: - pos: 18.5,-7.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2970 components: - pos: 17.5,-17.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2971 components: - pos: 16.5,-17.5 @@ -9894,15 +8782,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2972 components: - pos: 15.5,-17.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2973 components: - pos: 16.5,2.5 @@ -9910,197 +8794,141 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2974 components: - pos: 16.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2975 components: - pos: 17.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2976 components: - pos: 18.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2977 components: - pos: 15.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2978 components: - pos: 14.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2980 components: - pos: 12.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2981 components: - pos: 11.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2982 components: - pos: 10.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2983 components: - pos: 9.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2984 components: - pos: 8.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2985 components: - pos: 7.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2986 components: - pos: 6.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2987 components: - pos: 16.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2988 components: - pos: 16.5,-0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2989 components: - pos: 17.5,-0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2990 components: - pos: 18.5,-0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2991 components: - pos: 9.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2992 components: - pos: 9.5,-0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2993 components: - pos: 9.5,-1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2994 components: - pos: 9.5,-2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2995 components: - pos: 9.5,-3.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2996 components: - pos: 9.5,-4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2997 components: - pos: 8.5,-4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2998 components: - pos: 7.5,-4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2999 components: - pos: 6.5,-4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3000 components: - pos: 10.5,-2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3001 components: - pos: 11.5,-2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3002 components: - pos: 6.5,-17.5 @@ -10108,8 +8936,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3003 components: - pos: 1.5,-23.5 @@ -10117,50 +8943,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3004 components: - pos: 2.5,-23.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3005 components: - pos: 3.5,-23.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3006 components: - pos: 3.5,-22.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3007 components: - pos: 3.5,-21.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3008 components: - pos: 2.5,-21.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3009 components: - pos: 4.5,-21.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3010 components: - pos: 22.5,-3.5 @@ -10168,85 +8980,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3012 components: - pos: 31.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3013 components: - pos: 31.5,-0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3014 components: - pos: 31.5,-1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3015 components: - pos: 31.5,-3.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3016 components: - pos: 31.5,-2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3017 components: - pos: 30.5,-2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3018 components: - pos: 29.5,-2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3019 components: - pos: 32.5,-2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3020 components: - pos: 33.5,-2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3021 components: - pos: 34.5,-2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3022 components: - pos: 35.5,-2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3023 components: - pos: 31.5,1.5 @@ -10254,218 +9042,156 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3024 components: - pos: 31.5,2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3025 components: - pos: 31.5,3.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3026 components: - pos: 31.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3027 components: - pos: 32.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3028 components: - pos: 33.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3029 components: - pos: 34.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3030 components: - pos: 35.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3031 components: - pos: 36.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3032 components: - pos: 37.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3033 components: - pos: 38.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3034 components: - pos: 38.5,3.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3035 components: - pos: 38.5,2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3036 components: - pos: 38.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3037 components: - pos: 38.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3038 components: - pos: 38.5,-0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3039 components: - pos: 38.5,-1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3054 components: - pos: 44.5,5.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3055 components: - pos: 44.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3056 components: - pos: 45.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3057 components: - pos: 46.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3058 components: - pos: 47.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3059 components: - pos: 48.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3060 components: - pos: 49.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3061 components: - pos: 33.5,-3.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3062 components: - pos: 33.5,-4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3063 components: - pos: 43.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3064 components: - pos: 43.5,3.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3065 components: - pos: 43.5,2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3066 components: - pos: 43.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3067 components: - pos: 43.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3068 components: - pos: 43.5,-0.5 @@ -10473,8 +9199,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3069 components: - pos: 43.5,-1.5 @@ -10482,8 +9206,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3070 components: - pos: 43.5,-2.5 @@ -10491,8 +9213,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3071 components: - pos: 43.5,-3.5 @@ -10500,8 +9220,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3072 components: - pos: 42.5,-3.5 @@ -10509,8 +9227,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3073 components: - pos: 41.5,-3.5 @@ -10518,8 +9234,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3074 components: - pos: 40.5,-3.5 @@ -10527,8 +9241,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3075 components: - pos: 39.5,-3.5 @@ -10536,8 +9248,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3076 components: - pos: 38.5,-3.5 @@ -10545,8 +9255,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3077 components: - pos: 37.5,-3.5 @@ -10554,8 +9262,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3078 components: - pos: 37.5,-4.5 @@ -10563,8 +9269,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3079 components: - pos: 37.5,-5.5 @@ -10572,85 +9276,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3080 components: - pos: 37.5,-6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3081 components: - pos: 36.5,-6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3082 components: - pos: 35.5,-6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3083 components: - pos: 34.5,-6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3084 components: - pos: 33.5,-6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3085 components: - pos: 32.5,-6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3086 components: - pos: 31.5,-6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3087 components: - pos: 30.5,-6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3088 components: - pos: 29.5,-6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3089 components: - pos: 28.5,-6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3090 components: - pos: 27.5,-6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3091 components: - pos: 27.5,-7.5 @@ -10658,29 +9338,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3092 components: - pos: 27.5,-8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3093 components: - pos: 27.5,-9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3094 components: - pos: 27.5,-10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3095 components: - pos: 27.5,-11.5 @@ -10688,8 +9360,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3096 components: - pos: 27.5,-12.5 @@ -10697,8 +9367,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3097 components: - pos: 27.5,-13.5 @@ -10706,8 +9374,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3098 components: - pos: 27.5,-14.5 @@ -10715,8 +9381,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3099 components: - pos: 27.5,-15.5 @@ -10724,8 +9388,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3100 components: - pos: 27.5,-16.5 @@ -10733,8 +9395,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3101 components: - pos: 27.5,-17.5 @@ -10742,8 +9402,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3102 components: - pos: 27.5,-18.5 @@ -10751,8 +9409,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3103 components: - pos: 26.5,-18.5 @@ -10760,8 +9416,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3104 components: - pos: 25.5,-18.5 @@ -10769,8 +9423,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3105 components: - pos: 24.5,-18.5 @@ -10778,8 +9430,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3106 components: - pos: 47.5,-1.5 @@ -10787,8 +9437,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3107 components: - pos: 47.5,-2.5 @@ -10796,8 +9444,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3108 components: - pos: 47.5,-3.5 @@ -10805,8 +9451,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3109 components: - pos: 48.5,-2.5 @@ -10814,8 +9458,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3110 components: - pos: 49.5,-2.5 @@ -10823,8 +9465,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3111 components: - pos: 50.5,-2.5 @@ -10832,8 +9472,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3112 components: - pos: 51.5,-2.5 @@ -10841,8 +9479,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3113 components: - pos: 51.5,-3.5 @@ -10850,8 +9486,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3114 components: - pos: 51.5,-4.5 @@ -10859,8 +9493,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3119 components: - pos: 28.5,14.5 @@ -10868,8 +9500,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3120 components: - pos: 28.5,13.5 @@ -10877,8 +9507,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3121 components: - pos: 28.5,12.5 @@ -10886,57 +9514,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3122 components: - pos: 23.5,9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3125 components: - pos: 28.5,9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3126 components: - pos: 27.5,9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3127 components: - pos: 26.5,9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3128 components: - pos: 25.5,9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3129 components: - pos: 26.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3131 components: - pos: 27.5,8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3132 components: - pos: 27.5,7.5 @@ -10944,8 +9556,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3148 components: - pos: 24.5,14.5 @@ -10953,127 +9563,91 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3149 components: - pos: 24.5,13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3150 components: - pos: 23.5,13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3151 components: - pos: 22.5,13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3155 components: - pos: 21.5,13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3156 components: - pos: 20.5,13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3159 components: - pos: 19.5,13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3160 components: - pos: 18.5,13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3161 components: - pos: 21.5,12.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3162 components: - pos: 21.5,11.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3163 components: - pos: 21.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3164 components: - pos: 21.5,9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3165 components: - pos: 21.5,8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3166 components: - pos: 22.5,8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3167 components: - pos: 23.5,8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3168 components: - pos: 20.5,8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3169 components: - pos: 19.5,8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3170 components: - pos: 18.5,8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3171 components: - pos: 17.5,8.5 @@ -11081,85 +9655,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3172 components: - pos: 18.5,12.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3173 components: - pos: 18.5,11.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3175 components: - pos: 12.5,12.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3176 components: - pos: 12.5,11.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3177 components: - pos: 12.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3178 components: - pos: 13.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3179 components: - pos: 14.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3180 components: - pos: 15.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3181 components: - pos: 16.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3182 components: - pos: 15.5,11.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3183 components: - pos: 13.5,9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3184 components: - pos: 11.5,10.5 @@ -11167,71 +9717,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3185 components: - pos: 10.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3186 components: - pos: 9.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3187 components: - pos: 8.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3188 components: - pos: 7.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3189 components: - pos: 6.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3190 components: - pos: 8.5,11.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3191 components: - pos: 8.5,9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3192 components: - pos: 8.5,8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3193 components: - pos: 8.5,7.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3194 components: - pos: 8.5,6.5 @@ -11239,8 +9769,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3195 components: - pos: 12.5,13.5 @@ -11248,8 +9776,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3197 components: - pos: 11.5,14.5 @@ -11257,8 +9783,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3198 components: - pos: 10.5,14.5 @@ -11266,8 +9790,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3199 components: - pos: 9.5,14.5 @@ -11275,8 +9797,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3200 components: - pos: 8.5,14.5 @@ -11284,8 +9804,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3201 components: - pos: 7.5,14.5 @@ -11293,8 +9811,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3202 components: - pos: 6.5,14.5 @@ -11302,8 +9818,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3203 components: - pos: 12.5,14.5 @@ -11311,8 +9825,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3204 components: - pos: 13.5,14.5 @@ -11320,15 +9832,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3205 components: - pos: 14.5,14.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3208 components: - pos: 13.5,16.5 @@ -11336,8 +9844,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3209 components: - pos: 13.5,15.5 @@ -11345,8 +9851,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3210 components: - pos: 9.5,22.5 @@ -11354,239 +9858,171 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3211 components: - pos: 9.5,21.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3212 components: - pos: 9.5,20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3213 components: - pos: 9.5,19.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3214 components: - pos: 9.5,18.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3215 components: - pos: 9.5,17.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3216 components: - pos: 9.5,16.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3217 components: - pos: 10.5,20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3218 components: - pos: 8.5,17.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3220 components: - pos: 7.5,17.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3222 components: - pos: 6.5,17.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3223 components: - pos: 5.5,17.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3224 components: - pos: 5.5,16.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3225 components: - pos: 4.5,17.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3226 components: - pos: 3.5,17.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3227 components: - pos: 3.5,18.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3228 components: - pos: 3.5,19.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3230 components: - pos: 3.5,20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3231 components: - pos: 3.5,21.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3232 components: - pos: 3.5,22.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3233 components: - pos: 2.5,20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3234 components: - pos: 1.5,20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3236 components: - pos: 10.5,24.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3237 components: - pos: 9.5,25.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3239 components: - pos: 8.5,24.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3240 components: - pos: 7.5,24.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3241 components: - pos: 6.5,24.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3242 components: - pos: 9.5,28.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3243 components: - pos: 9.5,29.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3244 components: - pos: 9.5,30.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3245 components: - pos: 8.5,30.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3246 components: - pos: 7.5,30.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3247 components: - pos: 6.5,30.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3248 components: - pos: 6.5,31.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3249 components: - pos: -2.5,27.5 @@ -11594,169 +10030,121 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3250 components: - pos: -2.5,28.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3251 components: - pos: -2.5,29.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3252 components: - pos: -2.5,30.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3253 components: - pos: -1.5,30.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3254 components: - pos: -0.5,30.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3255 components: - pos: 0.5,30.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3256 components: - pos: 1.5,30.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3257 components: - pos: 2.5,30.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3258 components: - pos: 3.5,30.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3259 components: - pos: 0.5,31.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3260 components: - pos: 3.5,31.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3261 components: - pos: -2.5,26.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3262 components: - pos: -2.5,25.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3263 components: - pos: -1.5,25.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3264 components: - pos: -0.5,25.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3265 components: - pos: 0.5,25.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3266 components: - pos: 0.5,24.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3267 components: - pos: -2.5,24.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3268 components: - pos: -2.5,23.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3269 components: - pos: -1.5,23.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3368 components: - pos: -0.5,-15.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3370 components: - pos: -1.5,-15.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3371 components: - pos: -6.5,28.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3536 components: - pos: 12.5,19.5 @@ -11764,8 +10152,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3625 components: - pos: 28.5,11.5 @@ -11773,22 +10159,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3626 components: - pos: 10.5,25.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3638 components: - pos: 25.5,9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3680 components: - pos: 26.5,12.5 @@ -11796,8 +10176,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3727 components: - pos: -16.5,16.5 @@ -11805,8 +10183,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3830 components: - pos: -18.5,17.5 @@ -11814,8 +10190,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3843 components: - pos: -4.5,12.5 @@ -11823,8 +10197,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3845 components: - pos: -4.5,13.5 @@ -11832,71 +10204,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3853 components: - pos: 22.5,-7.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3885 components: - pos: -24.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3886 components: - pos: -24.5,11.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3891 components: - pos: 21.5,17.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3909 components: - pos: 15.5,15.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3918 components: - pos: 3.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3921 components: - pos: 8.5,20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3924 components: - pos: 3.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3931 components: - pos: 2.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3932 components: - pos: 1.5,0.5 @@ -11904,50 +10256,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3937 components: - pos: -31.5,5.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3938 components: - pos: 7.5,20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3941 components: - pos: -30.5,5.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3942 components: - pos: -23.5,5.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3945 components: - pos: 12.5,-8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3948 components: - pos: 2.5,6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3949 components: - pos: -26.5,7.5 @@ -11955,8 +10293,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3950 components: - pos: 27.5,12.5 @@ -11964,15 +10300,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3951 components: - pos: -21.5,13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3953 components: - pos: -26.5,6.5 @@ -11980,36 +10312,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3954 components: - pos: -26.5,5.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3956 components: - pos: 3.5,6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3957 components: - pos: 4.5,6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3960 components: - pos: 12.5,-9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3965 components: - pos: -32.5,-8.5 @@ -12017,15 +10339,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3966 components: - pos: 21.5,19.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3979 components: - pos: -32.5,-7.5 @@ -12033,8 +10351,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3995 components: - pos: 23.5,-18.5 @@ -12042,22 +10358,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4008 components: - pos: -22.5,-22.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4022 components: - pos: -18.5,13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4023 components: - pos: 13.5,-29.5 @@ -12065,36 +10375,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4027 components: - pos: -5.5,-26.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4029 components: - pos: -4.5,-26.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4035 components: - pos: -6.5,3.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4037 components: - pos: -20.5,13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4039 components: - pos: -8.5,-7.5 @@ -12102,8 +10402,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4040 components: - pos: -32.5,-6.5 @@ -12111,22 +10409,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4043 components: - pos: -26.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4047 components: - pos: -19.5,13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4048 components: - pos: -24.5,19.5 @@ -12134,8 +10426,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4049 components: - pos: -22.5,19.5 @@ -12143,15 +10433,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4111 components: - pos: 27.5,16.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4132 components: - pos: -41.5,8.5 @@ -12159,15 +10445,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4138 components: - pos: 11.5,-13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4157 components: - pos: 26.5,-10.5 @@ -12175,8 +10457,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4158 components: - pos: 25.5,-10.5 @@ -12184,8 +10464,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4159 components: - pos: -42.5,8.5 @@ -12193,8 +10471,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4208 components: - pos: -38.5,-11.5 @@ -12202,43 +10478,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4253 components: - pos: 17.5,-10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4280 components: - pos: 28.5,16.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4281 components: - pos: 23.5,16.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4283 components: - pos: 47.5,2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4285 components: - pos: -4.5,-30.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4310 components: - pos: -40.5,8.5 @@ -12246,8 +10510,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4379 components: - pos: 36.5,-12.5 @@ -12255,15 +10517,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4383 components: - pos: 33.5,-22.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4410 components: - pos: 47.5,-4.5 @@ -12271,8 +10529,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4491 components: - pos: 29.5,-17.5 @@ -12280,8 +10536,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4492 components: - pos: 28.5,-17.5 @@ -12289,8 +10543,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4495 components: - pos: 38.5,-12.5 @@ -12298,8 +10550,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4496 components: - pos: 37.5,-7.5 @@ -12307,8 +10557,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4497 components: - pos: 36.5,-11.5 @@ -12316,8 +10564,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4498 components: - pos: 38.5,-10.5 @@ -12325,8 +10571,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4500 components: - pos: 48.5,-6.5 @@ -12334,8 +10578,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4501 components: - pos: 51.5,-5.5 @@ -12343,8 +10585,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4502 components: - pos: 51.5,-6.5 @@ -12352,15 +10592,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4505 components: - pos: 29.5,-9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4589 components: - pos: 50.5,-6.5 @@ -12368,8 +10604,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4590 components: - pos: 47.5,-5.5 @@ -12377,8 +10611,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4591 components: - pos: 36.5,-14.5 @@ -12386,15 +10618,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4592 components: - pos: 33.5,-9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4593 components: - pos: 34.5,-9.5 @@ -12402,8 +10630,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4623 components: - pos: 37.5,-9.5 @@ -12411,15 +10637,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4630 components: - pos: 42.5,-24.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4633 components: - pos: 43.5,-24.5 @@ -12427,8 +10649,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4643 components: - pos: 30.5,-9.5 @@ -12436,8 +10656,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4644 components: - pos: 38.5,-11.5 @@ -12445,8 +10663,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4645 components: - pos: 37.5,-8.5 @@ -12454,8 +10670,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4647 components: - pos: 32.5,-9.5 @@ -12463,8 +10677,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4649 components: - pos: 47.5,-6.5 @@ -12472,134 +10684,96 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4664 components: - pos: -3.5,-30.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4665 components: - pos: 39.5,-24.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4666 components: - pos: 38.5,-24.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4667 components: - pos: 37.5,-24.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4668 components: - pos: 36.5,-24.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4669 components: - pos: 35.5,-24.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4670 components: - pos: 34.5,-24.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4671 components: - pos: 33.5,-24.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4672 components: - pos: 33.5,-23.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4682 components: - pos: -2.5,-30.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4709 components: - pos: -0.5,-30.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4720 components: - pos: 7.5,-29.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4736 components: - pos: 21.5,18.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4743 components: - pos: 8.5,-29.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4745 components: - pos: 5.5,-25.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4746 components: - pos: 6.5,-28.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4752 components: - pos: 6.5,-29.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4753 components: - pos: 4.5,-29.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4754 components: - pos: 5.5,-29.5 @@ -12607,15 +10781,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4755 components: - pos: 6.5,-27.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4758 components: - pos: 13.5,-23.5 @@ -12623,71 +10793,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4759 components: - pos: 10.5,-23.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4760 components: - pos: 8.5,-23.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4761 components: - pos: 9.5,-23.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4762 components: - pos: 9.5,-29.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4763 components: - pos: 11.5,-29.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4764 components: - pos: 11.5,-23.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4765 components: - pos: 12.5,-23.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4766 components: - pos: 12.5,-29.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4767 components: - pos: 12.5,-24.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4768 components: - pos: 12.5,-28.5 @@ -12695,8 +10845,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4769 components: - pos: 22.5,-19.5 @@ -12704,15 +10852,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4770 components: - pos: 12.5,-25.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4771 components: - pos: 10.5,-29.5 @@ -12720,50 +10864,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4786 components: - pos: 12.5,-26.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4794 components: - pos: 12.5,-27.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4808 components: - pos: 12.5,24.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4824 components: - pos: 6.5,-26.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4825 components: - pos: 6.5,-25.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4832 components: - pos: 4.5,-25.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4859 components: - pos: -15.5,-10.5 @@ -12771,15 +10901,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4861 components: - pos: -13.5,-10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4864 components: - pos: 12.5,20.5 @@ -12787,8 +10913,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4865 components: - pos: 12.5,21.5 @@ -12796,8 +10920,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4866 components: - pos: 12.5,22.5 @@ -12805,22 +10927,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4919 components: - pos: 12.5,26.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4929 components: - pos: 21.5,20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4961 components: - pos: 26.5,-19.5 @@ -12828,8 +10944,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4962 components: - pos: 26.5,-20.5 @@ -12837,8 +10951,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4963 components: - pos: 22.5,-24.5 @@ -12846,8 +10958,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4964 components: - pos: 23.5,-24.5 @@ -12855,8 +10965,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4965 components: - pos: 22.5,-23.5 @@ -12864,8 +10972,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4966 components: - pos: 22.5,-22.5 @@ -12873,8 +10979,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4967 components: - pos: 22.5,-20.5 @@ -12882,8 +10986,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4968 components: - pos: 22.5,-21.5 @@ -12891,8 +10993,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4970 components: - pos: 24.5,-24.5 @@ -12900,22 +11000,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4972 components: - pos: 26.5,-24.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4973 components: - pos: 27.5,-24.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4996 components: - pos: -20.5,19.5 @@ -12923,8 +11017,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4997 components: - pos: -21.5,19.5 @@ -12932,8 +11024,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4998 components: - pos: -23.5,19.5 @@ -12941,8 +11031,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5000 components: - pos: -19.5,19.5 @@ -12950,8 +11038,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5001 components: - pos: -18.5,19.5 @@ -12959,8 +11045,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5023 components: - pos: 25.5,-24.5 @@ -12968,8 +11052,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5025 components: - pos: -25.5,16.5 @@ -12977,8 +11059,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5026 components: - pos: -25.5,17.5 @@ -12986,8 +11066,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5027 components: - pos: -25.5,18.5 @@ -12995,29 +11073,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5134 components: - pos: 15.5,-10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 5135 components: - pos: 10.5,-9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 5136 components: - pos: 10.5,-10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 5185 components: - pos: -22.5,21.5 @@ -13025,22 +11095,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5186 components: - pos: -22.5,22.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 5187 components: - pos: -22.5,23.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 5188 components: - pos: -22.5,24.5 @@ -13048,8 +11112,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5189 components: - pos: -23.5,24.5 @@ -13057,8 +11119,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5197 components: - pos: -25.5,24.5 @@ -13066,8 +11126,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5207 components: - pos: -24.5,24.5 @@ -13075,8 +11133,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5208 components: - pos: -22.5,20.5 @@ -13084,8 +11140,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5243 components: - pos: -21.5,24.5 @@ -13093,8 +11147,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5285 components: - pos: 14.5,-29.5 @@ -13102,8 +11154,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5286 components: - pos: 15.5,-29.5 @@ -13111,29 +11161,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5287 components: - pos: 16.5,-29.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 5288 components: - pos: 16.5,-28.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 5289 components: - pos: 16.5,-27.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 5290 components: - pos: 15.5,-27.5 @@ -13141,8 +11183,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5302 components: - pos: 15.5,-30.5 @@ -13150,8 +11190,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5303 components: - pos: 15.5,-31.5 @@ -13159,8 +11197,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5304 components: - pos: 16.5,-31.5 @@ -13168,8 +11204,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5317 components: - pos: 24.5,-23.5 @@ -13177,8 +11211,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5773 components: - pos: -39.5,-11.5 @@ -13186,8 +11218,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5977 components: - pos: -40.5,-11.5 @@ -13195,15 +11225,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5979 components: - pos: -37.5,-11.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6182 components: - pos: 30.5,25.5 @@ -13211,8 +11237,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6331 components: - pos: 47.5,15.5 @@ -13220,8 +11244,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6333 components: - pos: 45.5,15.5 @@ -13229,8 +11251,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6336 components: - pos: 44.5,15.5 @@ -13238,8 +11258,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6337 components: - pos: 44.5,14.5 @@ -13247,22 +11265,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6338 components: - pos: 42.5,11.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6339 components: - pos: 44.5,11.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6340 components: - pos: 48.5,15.5 @@ -13270,8 +11282,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6342 components: - pos: 48.5,16.5 @@ -13279,8 +11289,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6343 components: - pos: 48.5,18.5 @@ -13288,8 +11296,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6344 components: - pos: 49.5,15.5 @@ -13297,15 +11303,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6345 components: - pos: 47.5,11.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6346 components: - pos: 37.5,10.5 @@ -13313,8 +11315,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6347 components: - pos: 44.5,18.5 @@ -13322,8 +11322,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6350 components: - pos: 45.5,18.5 @@ -13331,92 +11329,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6355 components: - pos: 40.5,9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6358 components: - pos: 38.5,8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6359 components: - pos: 43.5,6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6374 components: - pos: 35.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6375 components: - pos: 35.5,8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6376 components: - pos: 32.5,8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6377 components: - pos: 49.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6378 components: - pos: 47.5,9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6379 components: - pos: 49.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6386 components: - pos: 44.5,12.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6396 components: - pos: 49.5,2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6397 components: - pos: 48.5,2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6398 components: - pos: 46.5,18.5 @@ -13424,50 +11396,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6399 components: - pos: 34.5,8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6400 components: - pos: 33.5,8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6402 components: - pos: 49.5,12.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6403 components: - pos: 24.5,16.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6404 components: - pos: 25.5,16.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6408 components: - pos: 49.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6418 components: - pos: 41.5,18.5 @@ -13475,8 +11433,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6419 components: - pos: 40.5,18.5 @@ -13484,15 +11440,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6420 components: - pos: 31.5,8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6421 components: - pos: 37.5,18.5 @@ -13500,29 +11452,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6422 components: - pos: 30.5,8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6423 components: - pos: 35.5,11.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6424 components: - pos: 35.5,12.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6425 components: - pos: 32.5,18.5 @@ -13530,8 +11474,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6426 components: - pos: 31.5,17.5 @@ -13539,15 +11481,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6427 components: - pos: 30.5,16.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6428 components: - pos: 35.5,13.5 @@ -13555,8 +11493,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6429 components: - pos: 31.5,14.5 @@ -13564,8 +11500,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6430 components: - pos: 35.5,14.5 @@ -13573,8 +11507,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6431 components: - pos: 34.5,14.5 @@ -13582,43 +11514,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6433 components: - pos: 35.5,9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6434 components: - pos: 36.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6437 components: - pos: 49.5,9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6442 components: - pos: 49.5,13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6443 components: - pos: 49.5,11.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6444 components: - pos: 50.5,16.5 @@ -13626,50 +11546,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6457 components: - pos: 44.5,9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6459 components: - pos: 43.5,9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6466 components: - pos: 40.5,11.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6473 components: - pos: 38.5,11.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6507 components: - pos: 49.5,8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6510 components: - pos: 37.5,11.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6513 components: - pos: 42.5,18.5 @@ -13677,8 +11583,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6515 components: - pos: 43.5,18.5 @@ -13686,8 +11590,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6516 components: - pos: 39.5,18.5 @@ -13695,8 +11597,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6517 components: - pos: 38.5,18.5 @@ -13704,8 +11604,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6518 components: - pos: 36.5,18.5 @@ -13713,8 +11611,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6519 components: - pos: 35.5,18.5 @@ -13722,8 +11618,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6520 components: - pos: 34.5,18.5 @@ -13731,8 +11625,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6521 components: - pos: 33.5,18.5 @@ -13740,8 +11632,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6522 components: - pos: 31.5,18.5 @@ -13749,29 +11639,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6523 components: - pos: 30.5,17.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6524 components: - pos: 30.5,15.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6525 components: - pos: 30.5,14.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6526 components: - pos: 32.5,14.5 @@ -13779,8 +11661,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6529 components: - pos: 33.5,14.5 @@ -13788,36 +11668,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6543 components: - pos: 39.5,9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6544 components: - pos: 46.5,8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6546 components: - pos: 45.5,8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6547 components: - pos: 47.5,8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6550 components: - pos: 46.5,15.5 @@ -13825,8 +11695,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6560 components: - pos: 47.5,18.5 @@ -13834,8 +11702,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6561 components: - pos: 48.5,17.5 @@ -13843,120 +11709,86 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6596 components: - pos: 44.5,6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6597 components: - pos: 44.5,7.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6598 components: - pos: 44.5,8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6605 components: - pos: 47.5,12.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6606 components: - pos: 47.5,13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6611 components: - pos: 26.5,16.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6620 components: - pos: 42.5,6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6621 components: - pos: 41.5,11.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6623 components: - pos: 44.5,2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6624 components: - pos: 42.5,9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6625 components: - pos: 38.5,9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6630 components: - pos: 50.5,2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6631 components: - pos: 52.5,2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6722 components: - pos: 41.5,9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6723 components: - pos: 44.5,13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6724 components: - pos: 39.5,11.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6816 components: - pos: 43.5,10.5 @@ -13964,8 +11796,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6825 components: - pos: 50.5,15.5 @@ -13973,8 +11803,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6826 components: - pos: 50.5,17.5 @@ -13982,78 +11810,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6829 components: - pos: 41.5,6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6831 components: - pos: 45.5,2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6832 components: - pos: 46.5,2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6843 components: - pos: 53.5,2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6844 components: - pos: 47.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6848 components: - pos: 51.5,2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6887 components: - pos: 48.5,13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6981 components: - pos: 41.5,-24.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6982 components: - pos: 40.5,-24.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7010 components: - pos: 45.5,-24.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7026 components: - pos: 37.5,-10.5 @@ -14061,8 +11867,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7028 components: - pos: 49.5,-6.5 @@ -14070,8 +11874,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7030 components: - pos: 31.5,-9.5 @@ -14079,8 +11881,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7031 components: - pos: 36.5,-13.5 @@ -14088,8 +11888,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7032 components: - pos: 36.5,-10.5 @@ -14097,8 +11895,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7033 components: - pos: 36.5,-9.5 @@ -14106,15 +11902,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7054 components: - pos: 33.5,-21.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7064 components: - pos: 29.5,-10.5 @@ -14122,8 +11914,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7066 components: - pos: 35.5,-9.5 @@ -14131,36 +11921,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7106 components: - pos: 24.5,9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7124 components: - pos: 23.5,-13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7125 components: - pos: 24.5,-14.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7144 components: - pos: 8.5,26.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7423 components: - pos: -20.5,16.5 @@ -14168,8 +11948,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7428 components: - pos: -19.5,16.5 @@ -14177,8 +11955,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7465 components: - pos: -6.5,-25.5 @@ -14186,29 +11962,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7474 components: - pos: 3.5,-29.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7476 components: - pos: -32.5,17.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7519 components: - pos: -7.5,31.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7541 components: - pos: -25.5,-14.5 @@ -14216,8 +11984,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7542 components: - pos: -26.5,-14.5 @@ -14225,8 +11991,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7543 components: - pos: -27.5,-14.5 @@ -14234,15 +11998,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7637 components: - pos: -37.5,-9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7639 components: - pos: -38.5,-9.5 @@ -14250,274 +12010,196 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7648 components: - pos: -25.5,-6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7649 components: - pos: -25.5,-5.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7650 components: - pos: -25.5,-4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7671 components: - pos: -14.5,14.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7676 components: - pos: -5.5,31.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7677 components: - pos: -4.5,31.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7696 components: - pos: -6.5,29.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7714 components: - pos: -36.5,11.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7715 components: - pos: -36.5,12.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7716 components: - pos: -36.5,13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7717 components: - pos: -36.5,14.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7718 components: - pos: -37.5,14.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7719 components: - pos: -38.5,14.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7720 components: - pos: -38.5,15.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7721 components: - pos: -38.5,16.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7722 components: - pos: -38.5,17.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7753 components: - pos: -16.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7754 components: - pos: -15.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7755 components: - pos: -14.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7756 components: - pos: -13.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7757 components: - pos: -12.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7758 components: - pos: -11.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7759 components: - pos: -10.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7760 components: - pos: -9.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7761 components: - pos: -8.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7762 components: - pos: -17.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7763 components: - pos: -18.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7764 components: - pos: -19.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7765 components: - pos: -20.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7766 components: - pos: -21.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7767 components: - pos: -22.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7768 components: - pos: -25.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7769 components: - pos: -27.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7770 components: - pos: -28.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7771 components: - pos: -29.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7772 components: - pos: -24.5,3.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7773 components: - pos: -24.5,2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7833 components: - pos: -24.5,13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7846 components: - pos: 30.5,24.5 @@ -14525,22 +12207,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7944 components: - pos: -35.5,17.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8019 components: - pos: -6.5,31.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8048 components: - pos: 29.5,17.5 @@ -14548,8 +12224,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8049 components: - pos: 29.5,18.5 @@ -14557,8 +12231,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8053 components: - pos: -42.5,2.5 @@ -14566,22 +12238,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8054 components: - pos: -38.5,2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8055 components: - pos: -39.5,2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8057 components: - pos: 30.5,21.5 @@ -14589,8 +12255,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8058 components: - pos: 32.5,24.5 @@ -14598,8 +12262,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8059 components: - pos: 33.5,24.5 @@ -14607,8 +12269,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8060 components: - pos: 34.5,24.5 @@ -14616,8 +12276,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8061 components: - pos: 35.5,24.5 @@ -14625,8 +12283,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8062 components: - pos: 36.5,24.5 @@ -14634,8 +12290,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8063 components: - pos: 37.5,24.5 @@ -14643,8 +12297,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8064 components: - pos: 38.5,24.5 @@ -14652,8 +12304,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8065 components: - pos: 39.5,24.5 @@ -14661,8 +12311,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8066 components: - pos: 40.5,24.5 @@ -14670,8 +12318,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8067 components: - pos: 41.5,24.5 @@ -14679,8 +12325,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8068 components: - pos: 42.5,24.5 @@ -14688,8 +12332,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8069 components: - pos: 43.5,24.5 @@ -14697,8 +12339,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8070 components: - pos: 45.5,24.5 @@ -14706,8 +12346,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8073 components: - pos: 43.5,24.5 @@ -14715,155 +12353,111 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8087 components: - pos: -35.5,14.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8088 components: - pos: -34.5,14.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8147 components: - pos: 49.5,-1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8148 components: - pos: 49.5,-0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8149 components: - pos: 49.5,-3.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8150 components: - pos: 49.5,-4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8151 components: - pos: 49.5,-5.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8152 components: - pos: 54.5,2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8153 components: - pos: 55.5,2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8154 components: - pos: 55.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8155 components: - pos: 55.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8156 components: - pos: 56.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8157 components: - pos: 57.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8158 components: - pos: 58.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8159 components: - pos: 59.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8160 components: - pos: 60.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8161 components: - pos: 60.5,-0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8162 components: - pos: 60.5,-1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8163 components: - pos: 57.5,-0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8164 components: - pos: 57.5,-1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8165 components: - pos: 53.5,3.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8166 components: - pos: 53.5,4.5 @@ -14871,8 +12465,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8167 components: - pos: 53.5,5.5 @@ -14880,8 +12472,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8168 components: - pos: 53.5,6.5 @@ -14889,8 +12479,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8169 components: - pos: 53.5,7.5 @@ -14898,22 +12486,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8170 components: - pos: 55.5,3.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8171 components: - pos: 55.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8172 components: - pos: 55.5,5.5 @@ -14921,8 +12503,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8173 components: - pos: 55.5,6.5 @@ -14930,8 +12510,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8174 components: - pos: 56.5,6.5 @@ -14939,8 +12517,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8175 components: - pos: 57.5,6.5 @@ -14948,8 +12524,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8176 components: - pos: 58.5,6.5 @@ -14957,8 +12531,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8177 components: - pos: 59.5,6.5 @@ -14966,8 +12538,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8178 components: - pos: 60.5,6.5 @@ -14975,8 +12545,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8179 components: - pos: 60.5,7.5 @@ -14984,50 +12552,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8180 components: - pos: 56.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8181 components: - pos: 57.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8182 components: - pos: 58.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8183 components: - pos: 59.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8184 components: - pos: 60.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8208 components: - pos: -11.5,-25.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8210 components: - pos: 28.5,21.5 @@ -15035,309 +12589,221 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8211 components: - pos: -11.5,-24.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8214 components: - pos: -11.5,-22.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8226 components: - pos: 53.5,-24.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8227 components: - pos: 54.5,-24.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8228 components: - pos: 54.5,-23.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8229 components: - pos: 54.5,-22.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8230 components: - pos: 54.5,-25.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8231 components: - pos: 54.5,-26.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8233 components: - pos: 49.5,-28.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8234 components: - pos: 49.5,-29.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8235 components: - pos: 48.5,-29.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8236 components: - pos: 47.5,-29.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8237 components: - pos: 50.5,-29.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8238 components: - pos: 51.5,-29.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8240 components: - pos: 49.5,-20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8241 components: - pos: 49.5,-19.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8242 components: - pos: 48.5,-19.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8243 components: - pos: 47.5,-19.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8244 components: - pos: 50.5,-19.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8245 components: - pos: 51.5,-19.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8246 components: - pos: 44.5,-25.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8247 components: - pos: 44.5,-26.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8248 components: - pos: 44.5,-23.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8249 components: - pos: 44.5,-22.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8250 components: - pos: 45.5,-22.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8251 components: - pos: 45.5,-21.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8252 components: - pos: 47.5,-20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8253 components: - pos: 46.5,-20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8254 components: - pos: 51.5,-20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8255 components: - pos: 52.5,-20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8256 components: - pos: 53.5,-22.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8257 components: - pos: 53.5,-21.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8258 components: - pos: 53.5,-26.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8259 components: - pos: 53.5,-27.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8260 components: - pos: 51.5,-28.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8261 components: - pos: 52.5,-28.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8262 components: - pos: 47.5,-28.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8263 components: - pos: 46.5,-28.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8264 components: - pos: 45.5,-26.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8265 components: - pos: 45.5,-27.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8281 components: - pos: -11.5,-21.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8282 components: - pos: 38.5,-13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8287 components: - pos: 39.5,-13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8297 components: - pos: -40.5,-9.5 @@ -15345,8 +12811,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8298 components: - pos: -39.5,-9.5 @@ -15354,8 +12818,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8301 components: - pos: -35.5,-22.5 @@ -15363,8 +12825,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8348 components: - pos: 33.5,19.5 @@ -15372,8 +12832,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8358 components: - pos: 30.5,22.5 @@ -15381,8 +12839,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8359 components: - pos: 33.5,23.5 @@ -15390,8 +12846,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8360 components: - pos: 33.5,20.5 @@ -15399,8 +12853,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8361 components: - pos: 33.5,21.5 @@ -15408,22 +12860,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8403 components: - pos: 33.5,-20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8404 components: - pos: 33.5,-19.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8405 components: - pos: 33.5,-18.5 @@ -15431,29 +12877,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8406 components: - pos: -23.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8407 components: - pos: -29.5,5.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8450 components: - pos: -20.5,-22.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8483 components: - pos: -21.5,-22.5 @@ -15461,8 +12899,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8489 components: - pos: -21.5,-11.5 @@ -15470,8 +12906,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8490 components: - pos: -20.5,-11.5 @@ -15479,8 +12913,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8491 components: - pos: -19.5,-11.5 @@ -15488,8 +12920,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8492 components: - pos: -19.5,-12.5 @@ -15497,8 +12927,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8493 components: - pos: -19.5,-13.5 @@ -15506,8 +12934,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8494 components: - pos: -19.5,-14.5 @@ -15515,8 +12941,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8495 components: - pos: -19.5,-15.5 @@ -15524,8 +12948,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8496 components: - pos: -19.5,-17.5 @@ -15533,8 +12955,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8497 components: - pos: -19.5,-18.5 @@ -15542,8 +12962,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8498 components: - pos: -19.5,-19.5 @@ -15551,8 +12969,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8499 components: - pos: -19.5,-20.5 @@ -15560,8 +12976,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8500 components: - pos: -19.5,-21.5 @@ -15569,8 +12983,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8501 components: - pos: -19.5,-22.5 @@ -15578,8 +12990,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8502 components: - pos: -19.5,-23.5 @@ -15587,8 +12997,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8503 components: - pos: -19.5,-24.5 @@ -15596,8 +13004,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8504 components: - pos: -19.5,-25.5 @@ -15605,8 +13011,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8505 components: - pos: -19.5,-26.5 @@ -15614,8 +13018,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8506 components: - pos: -19.5,-27.5 @@ -15623,8 +13025,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8507 components: - pos: -19.5,-28.5 @@ -15632,8 +13032,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8508 components: - pos: -19.5,-29.5 @@ -15641,8 +13039,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8509 components: - pos: -19.5,-30.5 @@ -15650,8 +13046,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8510 components: - pos: -20.5,-26.5 @@ -15659,8 +13053,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8511 components: - pos: -21.5,-26.5 @@ -15668,8 +13060,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8512 components: - pos: -22.5,-26.5 @@ -15677,8 +13067,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8513 components: - pos: -23.5,-26.5 @@ -15686,8 +13074,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8514 components: - pos: -24.5,-26.5 @@ -15695,8 +13081,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8677 components: - pos: -32.5,-25.5 @@ -15704,15 +13088,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8678 components: - pos: -32.5,-26.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8679 components: - pos: -31.5,-26.5 @@ -15720,8 +13100,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8680 components: - pos: -30.5,-26.5 @@ -15729,8 +13107,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8681 components: - pos: -29.5,-26.5 @@ -15738,253 +13114,181 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8682 components: - pos: -33.5,-26.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8683 components: - pos: -34.5,-26.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8684 components: - pos: -35.5,-26.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8685 components: - pos: -35.5,-25.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8686 components: - pos: -35.5,-24.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8687 components: - pos: -35.5,-23.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8688 components: - pos: -35.5,-27.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8689 components: - pos: -35.5,-28.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8690 components: - pos: -35.5,-29.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8691 components: - pos: -33.5,-27.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8692 components: - pos: -33.5,-28.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8693 components: - pos: -33.5,-29.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8694 components: - pos: -33.5,-30.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8696 components: - pos: -33.5,-31.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8697 components: - pos: -33.5,-32.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8698 components: - pos: -32.5,-32.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8699 components: - pos: -31.5,-32.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8700 components: - pos: -30.5,-32.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8757 components: - pos: -20.5,12.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8761 components: - pos: -14.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8762 components: - pos: -15.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8763 components: - pos: -16.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8764 components: - pos: -16.5,9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8765 components: - pos: -16.5,8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8821 components: - pos: 3.5,25.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8822 components: - pos: 3.5,24.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8823 components: - pos: 4.5,25.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8824 components: - pos: 5.5,25.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8825 components: - pos: 2.5,25.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8826 components: - pos: 2.5,28.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8827 components: - pos: 1.5,28.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8828 components: - pos: 0.5,28.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8829 components: - pos: 4.5,28.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8830 components: - pos: 5.5,28.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8831 components: - pos: 6.5,28.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8957 components: - pos: 1.5,-10.5 @@ -15992,218 +13296,156 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8958 components: - pos: 2.5,-10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8959 components: - pos: 3.5,-10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8960 components: - pos: 3.5,-11.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8961 components: - pos: 3.5,-12.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8962 components: - pos: 3.5,-13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8963 components: - pos: 3.5,-14.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8964 components: - pos: 3.5,-15.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8965 components: - pos: 3.5,-16.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8966 components: - pos: 3.5,-17.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8967 components: - pos: 3.5,-18.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8968 components: - pos: 3.5,-19.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8969 components: - pos: 9.5,-19.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8970 components: - pos: 8.5,-19.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8971 components: - pos: 3.5,-9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8972 components: - pos: 3.5,-8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8973 components: - pos: 3.5,-7.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8974 components: - pos: 3.5,-6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8975 components: - pos: 3.5,-5.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8976 components: - pos: 3.5,-4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8977 components: - pos: 3.5,-3.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8978 components: - pos: 3.5,-2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8979 components: - pos: 3.5,16.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8980 components: - pos: 3.5,15.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8981 components: - pos: 3.5,14.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8982 components: - pos: 3.5,13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8983 components: - pos: 3.5,12.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8984 components: - pos: 3.5,11.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8985 components: - pos: 3.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8986 components: - pos: 3.5,9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8987 components: - pos: 3.5,8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9167 components: - pos: -43.5,8.5 @@ -16211,71 +13453,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9210 components: - pos: -36.5,-7.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9211 components: - pos: -36.5,-8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9212 components: - pos: -36.5,-9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9213 components: - pos: -36.5,-10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9214 components: - pos: -36.5,-11.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9215 components: - pos: -37.5,-4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9216 components: - pos: -37.5,6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9217 components: - pos: -38.5,6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9218 components: - pos: -39.5,6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9266 components: - pos: -23.5,-15.5 @@ -16283,8 +13505,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9267 components: - pos: -23.5,-16.5 @@ -16292,15 +13512,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9268 components: - pos: -23.5,-17.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9269 components: - pos: -23.5,-18.5 @@ -16308,8 +13524,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9270 components: - pos: -23.5,-19.5 @@ -16317,8 +13531,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9271 components: - pos: -24.5,-18.5 @@ -16326,8 +13538,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9272 components: - pos: -25.5,-18.5 @@ -16335,8 +13545,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9273 components: - pos: -26.5,-18.5 @@ -16344,57 +13552,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9402 components: - pos: -8.5,-26.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9403 components: - pos: -10.5,-26.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9404 components: - pos: -9.5,-26.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9405 components: - pos: -11.5,-26.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9406 components: - pos: -11.5,-27.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9407 components: - pos: -11.5,-28.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9408 components: - pos: -11.5,-29.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9409 components: - pos: -11.5,-30.5 @@ -16402,8 +13594,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9410 components: - pos: -11.5,-31.5 @@ -16411,8 +13601,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9411 components: - pos: -19.5,-31.5 @@ -16420,8 +13608,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9412 components: - pos: -18.5,-31.5 @@ -16429,8 +13615,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9413 components: - pos: -17.5,-31.5 @@ -16438,8 +13622,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9414 components: - pos: -16.5,-31.5 @@ -16447,22 +13629,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9439 components: - pos: -19.5,-32.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9440 components: - pos: -20.5,-32.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9441 components: - pos: -21.5,-32.5 @@ -16470,8 +13646,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9442 components: - pos: -22.5,-32.5 @@ -16479,8 +13653,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9443 components: - pos: -23.5,-32.5 @@ -16488,50 +13660,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9727 components: - pos: -21.5,16.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9738 components: - pos: -9.5,-27.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9777 components: - pos: -8.5,-31.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9778 components: - pos: -5.5,-31.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9779 components: - pos: -5.5,-30.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9780 components: - pos: -5.5,-29.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9828 components: - pos: 30.5,-17.5 @@ -16539,8 +13697,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9829 components: - pos: 31.5,-17.5 @@ -16548,8 +13704,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9830 components: - pos: 32.5,-17.5 @@ -16557,8 +13711,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9831 components: - pos: 33.5,-17.5 @@ -16566,8 +13718,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9896 components: - pos: 29.5,21.5 @@ -16575,15 +13725,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9927 components: - pos: 27.5,17.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9928 components: - pos: 27.5,18.5 @@ -16591,8 +13737,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9929 components: - pos: 27.5,19.5 @@ -16600,8 +13744,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9930 components: - pos: 27.5,20.5 @@ -16609,8 +13751,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9931 components: - pos: 27.5,21.5 @@ -16618,8 +13758,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9935 components: - pos: 33.5,22.5 @@ -16627,8 +13765,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9937 components: - pos: 33.5,27.5 @@ -16636,8 +13772,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9938 components: - pos: 34.5,28.5 @@ -16645,8 +13779,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9939 components: - pos: 34.5,27.5 @@ -16654,8 +13786,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9945 components: - pos: 34.5,29.5 @@ -16663,8 +13793,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9955 components: - pos: 34.5,37.5 @@ -16672,8 +13800,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9956 components: - pos: 34.5,36.5 @@ -16681,8 +13807,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10012 components: - pos: 30.5,26.5 @@ -16690,29 +13814,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10055 components: - pos: 21.5,23.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 10056 components: - pos: 21.5,24.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 10057 components: - pos: 21.5,25.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 10058 components: - pos: 21.5,26.5 @@ -16720,8 +13836,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10059 components: - pos: 20.5,26.5 @@ -16729,8 +13843,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10060 components: - pos: 22.5,26.5 @@ -16738,8 +13850,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10100 components: - pos: 31.5,27.5 @@ -16747,8 +13857,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10101 components: - pos: 32.5,27.5 @@ -16756,8 +13864,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10102 components: - pos: 34.5,30.5 @@ -16765,8 +13871,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10103 components: - pos: 34.5,31.5 @@ -16774,8 +13878,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10104 components: - pos: 34.5,32.5 @@ -16783,8 +13885,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10105 components: - pos: 34.5,33.5 @@ -16792,8 +13892,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10106 components: - pos: 34.5,34.5 @@ -16801,8 +13899,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10107 components: - pos: 34.5,35.5 @@ -16810,15 +13906,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10222 components: - pos: -38.5,18.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - proto: CableApcStack entities: - uid: 94 @@ -16858,8 +13950,6 @@ entities: - pos: -12.5,-19.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 23 components: - pos: 19.5,-30.5 @@ -16867,8 +13957,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29 components: - pos: 19.5,-29.5 @@ -16876,8 +13964,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 104 components: - pos: 21.5,-29.5 @@ -16885,8 +13971,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 128 components: - pos: -25.5,18.5 @@ -16894,8 +13978,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 130 components: - pos: 21.5,-28.5 @@ -16903,8 +13985,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 140 components: - pos: -22.5,21.5 @@ -16912,22 +13992,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 290 components: - pos: 3.5,-20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 412 components: - pos: -21.5,22.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 420 components: - pos: 21.5,-34.5 @@ -16935,8 +14009,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 421 components: - pos: 21.5,-33.5 @@ -16944,8 +14016,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 422 components: - pos: 21.5,-32.5 @@ -16953,8 +14023,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 437 components: - pos: 19.5,-34.5 @@ -16962,8 +14030,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 442 components: - pos: -35.5,22.5 @@ -16971,8 +14037,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 443 components: - pos: -35.5,23.5 @@ -16980,8 +14044,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 444 components: - pos: -37.5,21.5 @@ -16989,8 +14051,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 445 components: - pos: -37.5,22.5 @@ -16998,8 +14058,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 450 components: - pos: -38.5,24.5 @@ -17007,8 +14065,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 451 components: - pos: -37.5,23.5 @@ -17016,8 +14072,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 452 components: - pos: -35.5,21.5 @@ -17025,8 +14079,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 453 components: - pos: -33.5,23.5 @@ -17034,8 +14086,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 455 components: - pos: -31.5,23.5 @@ -17043,8 +14093,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 456 components: - pos: -33.5,21.5 @@ -17052,8 +14100,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 457 components: - pos: -33.5,22.5 @@ -17061,8 +14107,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 458 components: - pos: -35.5,26.5 @@ -17070,8 +14114,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 459 components: - pos: -35.5,25.5 @@ -17079,8 +14121,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 460 components: - pos: -37.5,27.5 @@ -17088,8 +14128,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 461 components: - pos: -37.5,26.5 @@ -17097,8 +14135,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 464 components: - pos: -37.5,25.5 @@ -17106,8 +14142,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 465 components: - pos: 32.5,-31.5 @@ -17115,8 +14149,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 466 components: - pos: 30.5,-31.5 @@ -17124,8 +14156,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 468 components: - pos: 29.5,-33.5 @@ -17133,8 +14163,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 470 components: - pos: 31.5,-31.5 @@ -17142,8 +14170,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 471 components: - pos: 29.5,-30.5 @@ -17151,8 +14177,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 479 components: - pos: 27.5,-29.5 @@ -17160,8 +14184,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 480 components: - pos: 27.5,-28.5 @@ -17169,8 +14191,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 481 components: - pos: 29.5,-28.5 @@ -17178,8 +14198,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 482 components: - pos: 29.5,-29.5 @@ -17187,8 +14205,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 483 components: - pos: 27.5,-30.5 @@ -17196,8 +14212,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 485 components: - pos: 27.5,-32.5 @@ -17205,8 +14219,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 486 components: - pos: 25.5,-32.5 @@ -17214,8 +14226,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 487 components: - pos: 27.5,-33.5 @@ -17223,8 +14233,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 488 components: - pos: 27.5,-34.5 @@ -17232,8 +14240,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 489 components: - pos: 25.5,-33.5 @@ -17241,8 +14247,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 499 components: - pos: 23.5,-35.5 @@ -17250,8 +14254,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 500 components: - pos: 23.5,-34.5 @@ -17259,8 +14261,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 502 components: - pos: 23.5,-33.5 @@ -17268,8 +14268,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 504 components: - pos: 23.5,-32.5 @@ -17277,8 +14275,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 505 components: - pos: 23.5,-30.5 @@ -17286,8 +14282,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 506 components: - pos: 23.5,-28.5 @@ -17295,8 +14289,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 507 components: - pos: 23.5,-29.5 @@ -17304,8 +14296,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 508 components: - pos: 23.5,-27.5 @@ -17313,8 +14303,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 509 components: - pos: 25.5,-28.5 @@ -17322,8 +14310,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 510 components: - pos: 25.5,-29.5 @@ -17331,8 +14317,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 511 components: - pos: 25.5,-30.5 @@ -17340,8 +14324,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 512 components: - pos: 25.5,-35.5 @@ -17349,8 +14331,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 513 components: - pos: 25.5,-34.5 @@ -17358,8 +14338,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 544 components: - pos: -24.5,19.5 @@ -17367,29 +14345,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 605 components: - pos: -9.5,-26.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 617 components: - pos: 10.5,19.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 637 components: - pos: 3.5,-23.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 642 components: - pos: 25.5,12.5 @@ -17397,8 +14367,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 692 components: - pos: -0.5,-8.5 @@ -17406,64 +14374,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 700 components: - pos: 3.5,-22.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 702 components: - pos: 3.5,-21.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 756 components: - pos: 14.5,11.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 785 components: - pos: -11.5,-26.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 808 components: - pos: -11.5,-23.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 831 components: - pos: 58.5,-1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 832 components: - pos: 57.5,-1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 878 components: - pos: 51.5,3.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 932 components: - pos: 19.5,-32.5 @@ -17471,8 +14421,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 972 components: - pos: 29.5,-34.5 @@ -17480,8 +14428,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1273 components: - pos: 43.5,-0.5 @@ -17489,8 +14435,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1380 components: - pos: 64.5,-2.5 @@ -17498,8 +14442,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1577 components: - pos: 64.5,1.5 @@ -17507,15 +14449,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1609 components: - pos: 33.5,8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1614 components: - pos: 70.5,-4.5 @@ -17523,8 +14461,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1615 components: - pos: 64.5,-3.5 @@ -17532,8 +14468,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1631 components: - pos: 65.5,-4.5 @@ -17541,8 +14475,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1640 components: - pos: -29.5,22.5 @@ -17550,22 +14482,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1696 components: - pos: 8.5,13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1728 components: - pos: 56.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1742 components: - pos: 28.5,12.5 @@ -17573,15 +14499,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1973 components: - pos: -15.5,-19.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2009 components: - pos: -18.5,14.5 @@ -17589,57 +14511,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2050 components: - pos: -16.5,-18.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2052 components: - pos: -16.5,-17.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2055 components: - pos: -16.5,-15.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2082 components: - pos: -13.5,-19.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2156 components: - pos: -8.5,-26.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2344 components: - pos: -14.5,-19.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2393 components: - pos: -4.5,-26.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2534 components: - pos: -18.5,15.5 @@ -17647,15 +14553,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2583 components: - pos: -6.5,-26.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3123 components: - pos: 29.5,12.5 @@ -17663,43 +14565,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3143 components: - pos: 32.5,8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3272 components: - pos: 41.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3275 components: - pos: 42.5,3.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3276 components: - pos: 42.5,2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3277 components: - pos: 42.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3279 components: - pos: 42.5,-0.5 @@ -17707,8 +14597,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3280 components: - pos: 42.5,-1.5 @@ -17716,8 +14604,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3281 components: - pos: 42.5,-2.5 @@ -17725,8 +14611,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3282 components: - pos: 42.5,-3.5 @@ -17734,8 +14618,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3284 components: - pos: 42.5,-4.5 @@ -17743,8 +14625,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3285 components: - pos: 41.5,-4.5 @@ -17752,8 +14632,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3286 components: - pos: 40.5,-4.5 @@ -17761,8 +14639,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3287 components: - pos: 39.5,-4.5 @@ -17770,8 +14646,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3288 components: - pos: 38.5,-4.5 @@ -17779,8 +14653,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3289 components: - pos: 38.5,-5.5 @@ -17788,8 +14660,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3290 components: - pos: 38.5,-6.5 @@ -17797,8 +14667,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3291 components: - pos: 38.5,-7.5 @@ -17806,8 +14674,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3292 components: - pos: 37.5,-7.5 @@ -17815,8 +14681,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3293 components: - pos: 36.5,-7.5 @@ -17824,8 +14688,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3294 components: - pos: 35.5,-7.5 @@ -17833,8 +14695,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3295 components: - pos: 34.5,-7.5 @@ -17842,8 +14702,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3296 components: - pos: 33.5,-7.5 @@ -17851,8 +14709,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3297 components: - pos: 32.5,-7.5 @@ -17860,8 +14716,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3298 components: - pos: 31.5,-7.5 @@ -17869,8 +14723,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3299 components: - pos: 30.5,-7.5 @@ -17878,8 +14730,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3300 components: - pos: 29.5,-7.5 @@ -17887,8 +14737,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3301 components: - pos: 28.5,-7.5 @@ -17896,8 +14744,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3302 components: - pos: 27.5,-7.5 @@ -17905,8 +14751,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3303 components: - pos: 26.5,-7.5 @@ -17914,8 +14758,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3304 components: - pos: 26.5,-8.5 @@ -17923,8 +14765,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3305 components: - pos: 26.5,-9.5 @@ -17932,8 +14772,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3306 components: - pos: 26.5,-10.5 @@ -17941,8 +14779,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3307 components: - pos: 26.5,-11.5 @@ -17950,8 +14786,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3308 components: - pos: 26.5,-12.5 @@ -17959,8 +14793,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3309 components: - pos: 26.5,-13.5 @@ -17968,8 +14800,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3310 components: - pos: 26.5,-14.5 @@ -17977,8 +14807,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3311 components: - pos: 26.5,-15.5 @@ -17986,8 +14814,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3312 components: - pos: 26.5,-16.5 @@ -17995,8 +14821,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3313 components: - pos: 26.5,-17.5 @@ -18004,29 +14828,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3315 components: - pos: 6.5,13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3316 components: - pos: 9.5,13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3317 components: - pos: 7.5,13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3318 components: - pos: 21.5,-9.5 @@ -18034,8 +14850,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3319 components: - pos: 25.5,-17.5 @@ -18043,8 +14857,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3320 components: - pos: 24.5,-17.5 @@ -18052,8 +14864,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3321 components: - pos: 23.5,-17.5 @@ -18061,8 +14871,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3322 components: - pos: 22.5,-17.5 @@ -18070,8 +14878,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3323 components: - pos: 22.5,-18.5 @@ -18079,8 +14885,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3324 components: - pos: 22.5,-19.5 @@ -18088,8 +14892,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3325 components: - pos: 22.5,-20.5 @@ -18097,8 +14899,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3326 components: - pos: 22.5,-21.5 @@ -18106,8 +14906,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3327 components: - pos: 22.5,-22.5 @@ -18115,8 +14913,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3328 components: - pos: 22.5,-23.5 @@ -18124,8 +14920,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3329 components: - pos: 22.5,-24.5 @@ -18133,8 +14927,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3330 components: - pos: 22.5,-25.5 @@ -18142,8 +14934,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3331 components: - pos: 21.5,-25.5 @@ -18151,8 +14941,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3332 components: - pos: 20.5,-25.5 @@ -18160,8 +14948,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3333 components: - pos: 19.5,-25.5 @@ -18169,8 +14955,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3334 components: - pos: 18.5,-25.5 @@ -18178,8 +14962,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3335 components: - pos: 17.5,-25.5 @@ -18187,8 +14969,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3336 components: - pos: 16.5,-25.5 @@ -18196,8 +14976,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3337 components: - pos: 15.5,-25.5 @@ -18205,8 +14983,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3338 components: - pos: 14.5,-25.5 @@ -18214,8 +14990,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3339 components: - pos: 14.5,-24.5 @@ -18223,8 +14997,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3340 components: - pos: 14.5,-23.5 @@ -18232,8 +15004,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3341 components: - pos: 14.5,-22.5 @@ -18241,8 +15011,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3342 components: - pos: 14.5,-21.5 @@ -18250,8 +15018,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3343 components: - pos: 14.5,-20.5 @@ -18259,8 +15025,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3344 components: - pos: 13.5,-20.5 @@ -18268,8 +15032,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3345 components: - pos: 12.5,-20.5 @@ -18277,8 +15039,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3346 components: - pos: 11.5,-20.5 @@ -18286,8 +15046,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3347 components: - pos: 10.5,-20.5 @@ -18295,8 +15053,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3348 components: - pos: 9.5,-20.5 @@ -18304,8 +15060,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3349 components: - pos: 8.5,-20.5 @@ -18313,8 +15067,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3350 components: - pos: 7.5,-20.5 @@ -18322,8 +15074,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3351 components: - pos: 6.5,-20.5 @@ -18331,29 +15081,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3352 components: - pos: 5.5,-20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3353 components: - pos: 4.5,-20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3358 components: - pos: 2.5,-23.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3359 components: - pos: 1.5,-23.5 @@ -18361,8 +15103,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3360 components: - pos: -0.5,-23.5 @@ -18370,8 +15110,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3361 components: - pos: 0.5,-23.5 @@ -18379,8 +15117,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3362 components: - pos: -0.5,-24.5 @@ -18388,8 +15124,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3363 components: - pos: -0.5,-25.5 @@ -18397,8 +15131,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3364 components: - pos: -0.5,-26.5 @@ -18406,8 +15138,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3365 components: - pos: -1.5,-26.5 @@ -18415,8 +15145,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3366 components: - pos: -2.5,-26.5 @@ -18424,36 +15152,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3379 components: - pos: -11.5,-24.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3381 components: - pos: -11.5,-21.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3382 components: - pos: -11.5,-20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3383 components: - pos: -11.5,-19.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3384 components: - pos: -16.5,-16.5 @@ -18461,8 +15179,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3388 components: - pos: -11.5,-14.5 @@ -18470,8 +15186,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3389 components: - pos: -10.5,-14.5 @@ -18479,8 +15193,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3390 components: - pos: -9.5,-14.5 @@ -18488,8 +15200,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3391 components: - pos: -9.5,-13.5 @@ -18497,8 +15207,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3392 components: - pos: -9.5,-12.5 @@ -18506,8 +15214,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3393 components: - pos: -9.5,-11.5 @@ -18515,8 +15221,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3394 components: - pos: -9.5,-10.5 @@ -18524,8 +15228,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3395 components: - pos: -8.5,-10.5 @@ -18533,8 +15235,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3396 components: - pos: -7.5,-10.5 @@ -18542,8 +15242,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3397 components: - pos: -6.5,-10.5 @@ -18551,8 +15249,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3398 components: - pos: -5.5,-10.5 @@ -18560,8 +15256,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3399 components: - pos: -4.5,-10.5 @@ -18569,8 +15263,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3400 components: - pos: -3.5,-10.5 @@ -18578,8 +15270,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3401 components: - pos: -2.5,-10.5 @@ -18587,8 +15277,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3402 components: - pos: -1.5,-10.5 @@ -18596,8 +15284,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3403 components: - pos: -0.5,-10.5 @@ -18605,8 +15291,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3404 components: - pos: -0.5,-9.5 @@ -18614,8 +15298,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3408 components: - pos: -12.5,-14.5 @@ -18623,8 +15305,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3409 components: - pos: -13.5,-14.5 @@ -18632,8 +15312,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3410 components: - pos: -14.5,-14.5 @@ -18641,8 +15319,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3411 components: - pos: -15.5,-14.5 @@ -18650,8 +15326,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3412 components: - pos: -16.5,-14.5 @@ -18659,8 +15333,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3413 components: - pos: -17.5,-14.5 @@ -18668,8 +15340,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3414 components: - pos: -18.5,-14.5 @@ -18677,8 +15347,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3415 components: - pos: -18.5,-13.5 @@ -18686,8 +15354,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3416 components: - pos: -18.5,-12.5 @@ -18695,8 +15361,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3418 components: - pos: -18.5,-11.5 @@ -18704,8 +15368,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3419 components: - pos: -19.5,-11.5 @@ -18713,8 +15375,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3420 components: - pos: -20.5,-11.5 @@ -18722,8 +15382,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3421 components: - pos: -21.5,-11.5 @@ -18731,8 +15389,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3422 components: - pos: -22.5,-11.5 @@ -18740,8 +15396,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3423 components: - pos: -23.5,-11.5 @@ -18749,8 +15403,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3424 components: - pos: -24.5,-11.5 @@ -18758,8 +15410,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3425 components: - pos: -25.5,-11.5 @@ -18767,8 +15417,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3426 components: - pos: -26.5,-11.5 @@ -18776,8 +15424,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3427 components: - pos: -27.5,-11.5 @@ -18785,8 +15431,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3428 components: - pos: -21.5,-10.5 @@ -18794,8 +15438,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3429 components: - pos: -28.5,-11.5 @@ -18803,8 +15445,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3430 components: - pos: -29.5,-11.5 @@ -18812,8 +15452,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3431 components: - pos: -30.5,-11.5 @@ -18821,8 +15459,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3432 components: - pos: -31.5,-11.5 @@ -18830,8 +15466,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3433 components: - pos: -32.5,-11.5 @@ -18839,8 +15473,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3434 components: - pos: -33.5,-11.5 @@ -18848,8 +15480,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3435 components: - pos: -33.5,-10.5 @@ -18857,8 +15487,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3436 components: - pos: -33.5,-9.5 @@ -18866,8 +15494,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3437 components: - pos: -33.5,-8.5 @@ -18875,8 +15501,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3438 components: - pos: -33.5,-7.5 @@ -18884,8 +15508,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3439 components: - pos: -33.5,-6.5 @@ -18893,8 +15515,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3440 components: - pos: -33.5,-5.5 @@ -18902,8 +15522,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3441 components: - pos: -33.5,-4.5 @@ -18911,8 +15529,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3442 components: - pos: -33.5,-3.5 @@ -18920,8 +15536,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3443 components: - pos: -33.5,-2.5 @@ -18929,8 +15543,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3444 components: - pos: -33.5,-1.5 @@ -18938,8 +15550,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3445 components: - pos: -33.5,-0.5 @@ -18947,8 +15557,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3446 components: - pos: -33.5,0.5 @@ -18956,8 +15564,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3447 components: - pos: -32.5,0.5 @@ -18965,8 +15571,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3448 components: - pos: -32.5,1.5 @@ -18974,8 +15578,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3449 components: - pos: -32.5,2.5 @@ -18983,29 +15585,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3450 components: - pos: -32.5,3.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3451 components: - pos: -32.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3452 components: - pos: -32.5,5.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3453 components: - pos: -32.5,6.5 @@ -19013,8 +15607,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3454 components: - pos: -32.5,7.5 @@ -19022,8 +15614,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3455 components: - pos: -32.5,8.5 @@ -19031,8 +15621,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3456 components: - pos: -32.5,9.5 @@ -19040,8 +15628,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3457 components: - pos: -32.5,10.5 @@ -19049,8 +15635,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3458 components: - pos: -32.5,11.5 @@ -19058,8 +15642,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3459 components: - pos: -32.5,12.5 @@ -19067,8 +15649,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3460 components: - pos: -32.5,13.5 @@ -19076,8 +15656,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3462 components: - pos: -32.5,14.5 @@ -19085,8 +15663,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3463 components: - pos: -31.5,14.5 @@ -19094,8 +15670,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3464 components: - pos: -30.5,14.5 @@ -19103,8 +15677,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3465 components: - pos: -29.5,14.5 @@ -19112,8 +15684,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3466 components: - pos: -28.5,14.5 @@ -19121,8 +15691,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3467 components: - pos: -27.5,14.5 @@ -19130,8 +15698,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3468 components: - pos: -26.5,14.5 @@ -19139,8 +15705,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3469 components: - pos: -25.5,14.5 @@ -19148,8 +15712,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3470 components: - pos: -24.5,14.5 @@ -19157,8 +15719,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3471 components: - pos: -23.5,14.5 @@ -19166,8 +15726,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3472 components: - pos: -22.5,14.5 @@ -19175,8 +15733,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3473 components: - pos: -21.5,14.5 @@ -19184,8 +15740,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3474 components: - pos: -20.5,14.5 @@ -19193,8 +15747,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3478 components: - pos: -19.5,14.5 @@ -19202,8 +15754,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3482 components: - pos: -18.5,16.5 @@ -19211,8 +15761,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3483 components: - pos: -17.5,16.5 @@ -19220,8 +15768,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3484 components: - pos: -16.5,16.5 @@ -19229,8 +15775,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3485 components: - pos: -15.5,16.5 @@ -19238,8 +15782,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3486 components: - pos: -18.5,17.5 @@ -19247,8 +15789,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3487 components: - pos: -18.5,18.5 @@ -19256,8 +15796,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3488 components: - pos: -18.5,19.5 @@ -19265,8 +15803,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3489 components: - pos: -18.5,20.5 @@ -19274,8 +15810,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3490 components: - pos: -18.5,21.5 @@ -19283,8 +15817,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3491 components: - pos: -18.5,22.5 @@ -19292,8 +15824,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3492 components: - pos: -18.5,23.5 @@ -19301,8 +15831,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3493 components: - pos: -18.5,24.5 @@ -19310,8 +15838,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3494 components: - pos: -18.5,25.5 @@ -19319,8 +15845,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3495 components: - pos: -17.5,25.5 @@ -19328,8 +15852,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3496 components: - pos: -16.5,25.5 @@ -19337,8 +15859,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3497 components: - pos: -15.5,25.5 @@ -19346,8 +15866,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3498 components: - pos: -14.5,25.5 @@ -19355,8 +15873,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3499 components: - pos: -13.5,25.5 @@ -19364,8 +15880,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3500 components: - pos: -12.5,25.5 @@ -19373,8 +15887,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3501 components: - pos: -11.5,25.5 @@ -19382,8 +15894,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3502 components: - pos: -10.5,25.5 @@ -19391,8 +15901,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3503 components: - pos: -9.5,25.5 @@ -19400,8 +15908,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3504 components: - pos: -8.5,25.5 @@ -19409,8 +15915,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3505 components: - pos: -7.5,25.5 @@ -19418,8 +15922,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3506 components: - pos: -7.5,24.5 @@ -19427,8 +15929,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3507 components: - pos: -6.5,24.5 @@ -19436,8 +15936,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3508 components: - pos: -5.5,24.5 @@ -19445,8 +15943,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3510 components: - pos: -4.5,24.5 @@ -19454,8 +15950,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3511 components: - pos: -4.5,23.5 @@ -19463,8 +15957,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3512 components: - pos: -4.5,22.5 @@ -19472,8 +15964,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3514 components: - pos: -4.5,21.5 @@ -19481,8 +15971,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3515 components: - pos: -3.5,21.5 @@ -19490,8 +15978,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3516 components: - pos: -2.5,21.5 @@ -19499,8 +15985,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3517 components: - pos: -1.5,21.5 @@ -19508,8 +15992,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3518 components: - pos: -0.5,21.5 @@ -19517,15 +15999,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3519 components: - pos: -0.5,20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3520 components: - pos: 0.5,20.5 @@ -19533,85 +16011,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3521 components: - pos: 1.5,20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3522 components: - pos: 2.5,20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3523 components: - pos: 3.5,20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3524 components: - pos: 4.5,20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3525 components: - pos: 5.5,20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3526 components: - pos: 6.5,20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3527 components: - pos: 7.5,20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3528 components: - pos: 8.5,20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3529 components: - pos: 9.5,20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3530 components: - pos: 10.5,20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3531 components: - pos: 11.5,19.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3532 components: - pos: 12.5,20.5 @@ -19619,8 +16073,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3533 components: - pos: 12.5,21.5 @@ -19628,8 +16080,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3534 components: - pos: 12.5,22.5 @@ -19637,8 +16087,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3539 components: - pos: 12.5,19.5 @@ -19646,8 +16094,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3540 components: - pos: 12.5,18.5 @@ -19655,8 +16101,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3541 components: - pos: 12.5,17.5 @@ -19664,8 +16108,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3542 components: - pos: 12.5,16.5 @@ -19673,8 +16115,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3543 components: - pos: 12.5,15.5 @@ -19682,8 +16122,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3544 components: - pos: 12.5,14.5 @@ -19691,8 +16129,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3545 components: - pos: 11.5,14.5 @@ -19700,8 +16136,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3546 components: - pos: 10.5,14.5 @@ -19709,92 +16143,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3547 components: - pos: 10.5,13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3552 components: - pos: 13.5,11.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3554 components: - pos: 15.5,11.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3555 components: - pos: 16.5,11.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3556 components: - pos: 17.5,11.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3557 components: - pos: 18.5,11.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3558 components: - pos: 19.5,11.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3559 components: - pos: 20.5,11.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3560 components: - pos: 21.5,11.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3561 components: - pos: 22.5,11.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3562 components: - pos: 23.5,11.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3563 components: - pos: 24.5,11.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3564 components: - pos: 26.5,12.5 @@ -19802,15 +16210,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3566 components: - pos: 24.5,12.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3567 components: - pos: 27.5,12.5 @@ -19818,8 +16222,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3568 components: - pos: 27.5,13.5 @@ -19827,57 +16229,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3569 components: - pos: 30.5,12.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3570 components: - pos: 30.5,11.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3572 components: - pos: 31.5,11.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3573 components: - pos: 31.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3574 components: - pos: 31.5,9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3575 components: - pos: 31.5,8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3578 components: - pos: 34.5,8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3579 components: - pos: 34.5,7.5 @@ -19885,50 +16271,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3580 components: - pos: 34.5,6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3581 components: - pos: 34.5,5.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3582 components: - pos: 35.5,5.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3583 components: - pos: 36.5,5.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3584 components: - pos: 37.5,5.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3585 components: - pos: 38.5,5.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3593 components: - pos: -0.5,-22.5 @@ -19936,8 +16308,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3851 components: - pos: -21.5,19.5 @@ -19945,29 +16315,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3890 components: - pos: -16.5,-19.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3912 components: - pos: -21.5,23.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4215 components: - pos: -5.5,-26.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4218 components: - pos: 19.5,-33.5 @@ -19975,8 +16337,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4226 components: - pos: 19.5,-28.5 @@ -19984,8 +16344,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4227 components: - pos: 21.5,-30.5 @@ -19993,8 +16351,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4233 components: - pos: -21.5,24.5 @@ -20002,22 +16358,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4255 components: - pos: -22.5,22.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4314 components: - pos: 47.5,7.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4333 components: - pos: 14.5,-27.5 @@ -20025,8 +16375,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4341 components: - pos: 14.5,-28.5 @@ -20034,8 +16382,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4342 components: - pos: 14.5,-29.5 @@ -20043,8 +16389,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4343 components: - pos: 19.5,-35.5 @@ -20052,8 +16396,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4412 components: - pos: 21.5,-27.5 @@ -20061,8 +16403,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4413 components: - pos: 19.5,-27.5 @@ -20070,8 +16410,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4442 components: - pos: 48.5,-1.5 @@ -20079,29 +16417,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4443 components: - pos: 57.5,2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4445 components: - pos: 55.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4446 components: - pos: 55.5,3.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4447 components: - pos: 54.5,3.5 @@ -20109,22 +16439,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4448 components: - pos: 53.5,3.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4449 components: - pos: 52.5,3.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4454 components: - pos: 27.5,-27.5 @@ -20132,8 +16456,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4462 components: - pos: 25.5,-27.5 @@ -20141,8 +16463,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4479 components: - pos: -25.5,17.5 @@ -20150,8 +16470,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4534 components: - pos: -25.5,16.5 @@ -20159,15 +16477,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4563 components: - pos: 46.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4564 components: - pos: 21.5,-35.5 @@ -20175,43 +16489,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4565 components: - pos: 45.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4566 components: - pos: 51.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4567 components: - pos: 53.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4568 components: - pos: 55.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4655 components: - pos: 49.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4744 components: - pos: 29.5,-32.5 @@ -20219,43 +16521,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4774 components: - pos: 3.5,-24.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4775 components: - pos: 3.5,-26.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4776 components: - pos: 3.5,-25.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4809 components: - pos: 3.5,-27.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4810 components: - pos: 3.5,-28.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4873 components: - pos: 29.5,-27.5 @@ -20263,8 +16553,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4875 components: - pos: 29.5,-35.5 @@ -20272,8 +16560,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4876 components: - pos: 27.5,-35.5 @@ -20281,8 +16567,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4947 components: - pos: -22.5,19.5 @@ -20290,8 +16574,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4953 components: - pos: -29.5,26.5 @@ -20299,8 +16581,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4955 components: - pos: -29.5,27.5 @@ -20308,8 +16588,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4956 components: - pos: -29.5,23.5 @@ -20317,8 +16595,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4960 components: - pos: -33.5,27.5 @@ -20326,8 +16602,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4992 components: - pos: -22.5,20.5 @@ -20335,8 +16609,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4994 components: - pos: -25.5,15.5 @@ -20344,8 +16616,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4995 components: - pos: -25.5,19.5 @@ -20353,8 +16623,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5038 components: - pos: -31.5,25.5 @@ -20362,8 +16630,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5039 components: - pos: -35.5,27.5 @@ -20371,8 +16637,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5040 components: - pos: -29.5,25.5 @@ -20380,8 +16644,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5041 components: - pos: -28.5,24.5 @@ -20389,8 +16651,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5042 components: - pos: -31.5,26.5 @@ -20398,8 +16658,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5043 components: - pos: -31.5,27.5 @@ -20407,8 +16665,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5051 components: - pos: -29.5,21.5 @@ -20416,8 +16672,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5052 components: - pos: -31.5,21.5 @@ -20425,8 +16679,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5053 components: - pos: -31.5,22.5 @@ -20434,8 +16686,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5054 components: - pos: -33.5,26.5 @@ -20443,8 +16693,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5055 components: - pos: -33.5,25.5 @@ -20452,8 +16700,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5200 components: - pos: -23.5,25.5 @@ -20461,8 +16707,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5201 components: - pos: -22.5,25.5 @@ -20470,8 +16714,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5202 components: - pos: -23.5,24.5 @@ -20479,8 +16721,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5203 components: - pos: -24.5,24.5 @@ -20488,8 +16728,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5204 components: - pos: -25.5,24.5 @@ -20497,8 +16735,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5205 components: - pos: -26.5,24.5 @@ -20506,8 +16742,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5206 components: - pos: -27.5,24.5 @@ -20515,8 +16749,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5209 components: - pos: -20.5,19.5 @@ -20524,8 +16756,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5210 components: - pos: -19.5,19.5 @@ -20533,8 +16763,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5213 components: - pos: -21.5,25.5 @@ -20542,8 +16770,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5259 components: - pos: 15.5,-26.5 @@ -20551,8 +16777,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5260 components: - pos: 15.5,-27.5 @@ -20560,8 +16784,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5262 components: - pos: 15.5,-29.5 @@ -20569,8 +16791,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5263 components: - pos: 15.5,-30.5 @@ -20578,8 +16798,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5264 components: - pos: 15.5,-31.5 @@ -20587,8 +16805,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5299 components: - pos: 16.5,-31.5 @@ -20596,8 +16812,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5300 components: - pos: 17.5,-31.5 @@ -20605,8 +16819,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5301 components: - pos: 18.5,-31.5 @@ -20614,71 +16826,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6198 components: - pos: 42.5,6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6232 components: - pos: 57.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6280 components: - pos: 57.5,-0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6290 components: - pos: 59.5,-1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6297 components: - pos: 56.5,2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6301 components: - pos: 43.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6302 components: - pos: 44.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6304 components: - pos: 55.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6305 components: - pos: 47.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6312 components: - pos: 54.5,1.5 @@ -20686,50 +16878,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6313 components: - pos: 52.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6314 components: - pos: 50.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6316 components: - pos: -11.5,-25.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6320 components: - pos: 48.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6322 components: - pos: -10.5,-26.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6323 components: - pos: -7.5,-26.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6324 components: - pos: -3.5,-26.5 @@ -20737,8 +16915,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6352 components: - pos: 66.5,-4.5 @@ -20746,8 +16922,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6360 components: - pos: 64.5,0.5 @@ -20755,15 +16929,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6365 components: - pos: 48.5,5.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6409 components: - pos: 64.5,-1.5 @@ -20771,8 +16941,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6410 components: - pos: 48.5,11.5 @@ -20780,15 +16948,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6415 components: - pos: 39.5,5.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6439 components: - pos: 68.5,-4.5 @@ -20796,8 +16960,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6465 components: - pos: 78.5,6.5 @@ -20805,8 +16967,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6490 components: - pos: 69.5,-4.5 @@ -20814,8 +16974,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6530 components: - pos: 48.5,12.5 @@ -20823,15 +16981,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6571 components: - pos: 56.5,2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6604 components: - pos: 64.5,-4.5 @@ -20839,15 +16993,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6610 components: - pos: 49.5,5.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6619 components: - pos: 64.5,-0.5 @@ -20855,8 +17005,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6635 components: - pos: 48.5,10.5 @@ -20864,8 +17012,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6642 components: - pos: 78.5,-3.5 @@ -20873,8 +17019,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6749 components: - pos: 71.5,-4.5 @@ -20882,15 +17026,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6817 components: - pos: 47.5,5.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6818 components: - pos: 45.5,7.5 @@ -20898,15 +17038,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6819 components: - pos: 50.5,5.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6820 components: - pos: 48.5,9.5 @@ -20914,22 +17050,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6821 components: - pos: 44.5,6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6823 components: - pos: 45.5,5.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6830 components: - pos: 74.5,-4.5 @@ -20937,15 +17067,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6833 components: - pos: 44.5,7.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6834 components: - pos: 48.5,8.5 @@ -20953,15 +17079,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6835 components: - pos: 48.5,7.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6842 components: - pos: 78.5,-4.5 @@ -20969,8 +17091,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6846 components: - pos: 78.5,5.5 @@ -20978,15 +17098,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6849 components: - pos: 46.5,7.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6850 components: - pos: 78.5,4.5 @@ -20994,8 +17110,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6854 components: - pos: 78.5,-0.5 @@ -21003,8 +17117,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6855 components: - pos: 78.5,-1.5 @@ -21012,8 +17124,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6864 components: - pos: 78.5,2.5 @@ -21021,8 +17131,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6866 components: - pos: 78.5,-2.5 @@ -21030,8 +17138,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6867 components: - pos: 77.5,-4.5 @@ -21039,8 +17145,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6868 components: - pos: 76.5,-4.5 @@ -21048,8 +17152,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6869 components: - pos: 75.5,-4.5 @@ -21057,8 +17159,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6871 components: - pos: 72.5,-4.5 @@ -21066,8 +17166,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6872 components: - pos: 73.5,-4.5 @@ -21075,15 +17173,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6911 components: - pos: 41.5,6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6912 components: - pos: 78.5,3.5 @@ -21091,22 +17185,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6913 components: - pos: 46.5,5.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6914 components: - pos: 44.5,5.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6915 components: - pos: 78.5,1.5 @@ -21114,8 +17202,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6917 components: - pos: 78.5,0.5 @@ -21123,8 +17209,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6918 components: - pos: 67.5,-4.5 @@ -21132,64 +17216,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6934 components: - pos: 40.5,5.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6935 components: - pos: 40.5,6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6936 components: - pos: 42.5,5.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6937 components: - pos: 41.5,5.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6938 components: - pos: 42.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6940 components: - pos: 40.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6942 components: - pos: 50.5,3.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6946 components: - pos: 57.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6947 components: - pos: 50.5,-1.5 @@ -21197,29 +17263,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6960 components: - pos: -11.5,-22.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7173 components: - pos: 50.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7174 components: - pos: 43.5,6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7186 components: - pos: 64.5,2.5 @@ -21227,8 +17285,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7187 components: - pos: 64.5,6.5 @@ -21236,8 +17292,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7188 components: - pos: 64.5,7.5 @@ -21245,8 +17299,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7189 components: - pos: 64.5,5.5 @@ -21254,8 +17306,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7190 components: - pos: 65.5,9.5 @@ -21263,8 +17313,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7191 components: - pos: 64.5,9.5 @@ -21272,8 +17320,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7192 components: - pos: 64.5,3.5 @@ -21281,8 +17327,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7193 components: - pos: 66.5,9.5 @@ -21290,8 +17334,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7194 components: - pos: 67.5,9.5 @@ -21299,8 +17341,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7195 components: - pos: 68.5,9.5 @@ -21308,8 +17348,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7196 components: - pos: 70.5,9.5 @@ -21317,8 +17355,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7197 components: - pos: 71.5,9.5 @@ -21326,8 +17362,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7198 components: - pos: 73.5,9.5 @@ -21335,8 +17369,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7199 components: - pos: 74.5,9.5 @@ -21344,8 +17376,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7200 components: - pos: 75.5,9.5 @@ -21353,8 +17383,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7201 components: - pos: 77.5,9.5 @@ -21362,8 +17390,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7202 components: - pos: 78.5,7.5 @@ -21371,8 +17397,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7203 components: - pos: 78.5,9.5 @@ -21380,8 +17404,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7204 components: - pos: 78.5,8.5 @@ -21389,8 +17411,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7213 components: - pos: 64.5,4.5 @@ -21398,8 +17418,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7214 components: - pos: 69.5,9.5 @@ -21407,8 +17425,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7215 components: - pos: 72.5,9.5 @@ -21416,8 +17432,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7216 components: - pos: 76.5,9.5 @@ -21425,8 +17439,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7217 components: - pos: 64.5,8.5 @@ -21434,8 +17446,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7371 components: - pos: 0.5,-8.5 @@ -21443,15 +17453,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7679 components: - pos: -8.5,27.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8131 components: - pos: 57.5,7.5 @@ -21459,8 +17465,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8132 components: - pos: 56.5,7.5 @@ -21468,15 +17472,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8134 components: - pos: 57.5,3.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8135 components: - pos: 59.5,7.5 @@ -21484,8 +17484,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8136 components: - pos: 58.5,7.5 @@ -21493,8 +17491,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8137 components: - pos: 55.5,7.5 @@ -21502,8 +17498,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8138 components: - pos: 55.5,6.5 @@ -21511,8 +17505,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8139 components: - pos: 55.5,5.5 @@ -21520,8 +17512,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8140 components: - pos: 60.5,7.5 @@ -21529,8 +17519,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8141 components: - pos: 61.5,7.5 @@ -21538,8 +17526,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8142 components: - pos: 62.5,7.5 @@ -21547,8 +17533,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8143 components: - pos: 63.5,7.5 @@ -21556,15 +17540,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8602 components: - pos: -30.5,-32.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8603 components: - pos: -29.5,-32.5 @@ -21572,8 +17552,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8604 components: - pos: -28.5,-32.5 @@ -21581,8 +17559,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8605 components: - pos: -28.5,-33.5 @@ -21590,8 +17566,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8606 components: - pos: -28.5,-34.5 @@ -21599,8 +17573,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8607 components: - pos: -29.5,-34.5 @@ -21608,8 +17580,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8608 components: - pos: -31.5,-34.5 @@ -21617,8 +17587,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8609 components: - pos: -30.5,-34.5 @@ -21626,8 +17594,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8610 components: - pos: -32.5,-34.5 @@ -21635,8 +17601,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8611 components: - pos: -33.5,-34.5 @@ -21644,8 +17608,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8612 components: - pos: -34.5,-34.5 @@ -21653,8 +17615,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8613 components: - pos: -35.5,-34.5 @@ -21662,8 +17622,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8614 components: - pos: -35.5,-33.5 @@ -21671,8 +17629,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8615 components: - pos: -35.5,-32.5 @@ -21680,8 +17636,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8616 components: - pos: -35.5,-31.5 @@ -21689,8 +17643,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8617 components: - pos: -36.5,-31.5 @@ -21698,8 +17650,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8618 components: - pos: -37.5,-31.5 @@ -21707,8 +17657,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8619 components: - pos: -38.5,-31.5 @@ -21716,8 +17664,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8620 components: - pos: -38.5,-30.5 @@ -21725,8 +17671,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8621 components: - pos: -38.5,-29.5 @@ -21734,8 +17678,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8622 components: - pos: -38.5,-28.5 @@ -21743,8 +17685,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8623 components: - pos: -39.5,-28.5 @@ -21752,8 +17692,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8624 components: - pos: -40.5,-28.5 @@ -21761,8 +17699,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8625 components: - pos: -41.5,-28.5 @@ -21770,8 +17706,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8626 components: - pos: -42.5,-28.5 @@ -21779,8 +17713,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8627 components: - pos: -42.5,-29.5 @@ -21788,8 +17720,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8628 components: - pos: -42.5,-30.5 @@ -21797,8 +17727,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8629 components: - pos: -42.5,-31.5 @@ -21806,8 +17734,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8630 components: - pos: -40.5,-31.5 @@ -21815,8 +17741,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8631 components: - pos: -40.5,-30.5 @@ -21824,8 +17748,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8632 components: - pos: -40.5,-29.5 @@ -21833,8 +17755,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8633 components: - pos: -40.5,-27.5 @@ -21842,8 +17762,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8634 components: - pos: -40.5,-26.5 @@ -21851,8 +17769,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8635 components: - pos: -40.5,-25.5 @@ -21860,8 +17776,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8636 components: - pos: -42.5,-27.5 @@ -21869,8 +17783,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8637 components: - pos: -42.5,-26.5 @@ -21878,8 +17790,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8638 components: - pos: -42.5,-25.5 @@ -21887,8 +17797,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8639 components: - pos: -32.5,-35.5 @@ -21896,8 +17804,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8640 components: - pos: -32.5,-36.5 @@ -21905,8 +17811,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8641 components: - pos: -32.5,-37.5 @@ -21914,8 +17818,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8642 components: - pos: -32.5,-38.5 @@ -21923,8 +17825,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8643 components: - pos: -33.5,-38.5 @@ -21932,8 +17832,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8644 components: - pos: -34.5,-38.5 @@ -21941,8 +17839,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8645 components: - pos: -35.5,-38.5 @@ -21950,8 +17846,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8646 components: - pos: -31.5,-38.5 @@ -21959,8 +17853,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8647 components: - pos: -30.5,-38.5 @@ -21968,8 +17860,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8648 components: - pos: -29.5,-38.5 @@ -21977,8 +17867,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8649 components: - pos: -29.5,-36.5 @@ -21986,8 +17874,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8650 components: - pos: -30.5,-36.5 @@ -21995,8 +17881,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8651 components: - pos: -31.5,-36.5 @@ -22004,8 +17888,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8652 components: - pos: -33.5,-36.5 @@ -22013,8 +17895,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8653 components: - pos: -34.5,-36.5 @@ -22022,8 +17902,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8654 components: - pos: -35.5,-36.5 @@ -22031,22 +17909,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8665 components: - pos: -30.5,-31.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8666 components: - pos: -31.5,-31.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9000 components: - pos: -23.5,19.5 @@ -22054,8 +17926,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9166 components: - pos: 5.5,13.5 @@ -22063,197 +17933,141 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9390 components: - pos: 4.5,13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9393 components: - pos: 13.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9394 components: - pos: 13.5,9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9474 components: - pos: 13.5,8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9481 components: - pos: 13.5,7.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9482 components: - pos: 13.5,6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9483 components: - pos: 13.5,5.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9484 components: - pos: 13.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9485 components: - pos: 12.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9486 components: - pos: 11.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9487 components: - pos: 10.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9488 components: - pos: 9.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9489 components: - pos: 8.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9490 components: - pos: 7.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9491 components: - pos: 6.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9492 components: - pos: 5.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9493 components: - pos: 4.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9494 components: - pos: 3.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9495 components: - pos: 3.5,5.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9496 components: - pos: 3.5,6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9497 components: - pos: 3.5,7.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9498 components: - pos: 3.5,8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9499 components: - pos: 3.5,9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9500 components: - pos: 3.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9501 components: - pos: 3.5,11.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9502 components: - pos: 3.5,12.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9503 components: - pos: 3.5,13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9504 components: - pos: 25.5,-10.5 @@ -22261,8 +18075,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9505 components: - pos: 24.5,-10.5 @@ -22270,8 +18082,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9506 components: - pos: 23.5,-10.5 @@ -22279,8 +18089,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9507 components: - pos: 22.5,-10.5 @@ -22288,8 +18096,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9508 components: - pos: 21.5,-10.5 @@ -22297,22 +18103,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9509 components: - pos: 43.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9708 components: - pos: -7.5,27.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9710 components: - pos: -7.5,25.5 @@ -22320,8 +18120,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - proto: CableHVStack entities: - uid: 3138 @@ -22356,43 +18154,31 @@ entities: - pos: 42.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 203 components: - pos: -11.5,-23.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 245 components: - pos: -6.5,27.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 312 components: - pos: -7.5,-26.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 618 components: - pos: 37.5,3.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 755 components: - pos: 10.5,25.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 830 components: - pos: 62.5,-1.5 @@ -22400,15 +18186,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 872 components: - pos: -10.5,-26.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 890 components: - pos: 12.5,21.5 @@ -22416,22 +18198,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 931 components: - pos: 8.5,26.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 986 components: - pos: -11.5,-26.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1125 components: - pos: 7.5,-18.5 @@ -22439,15 +18215,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1160 components: - pos: 59.5,-1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1196 components: - pos: -1.5,-10.5 @@ -22455,8 +18227,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1297 components: - pos: 12.5,22.5 @@ -22464,29 +18234,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1571 components: - pos: 36.5,3.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1572 components: - pos: 35.5,3.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1589 components: - pos: -6.5,26.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1729 components: - pos: 64.5,0.5 @@ -22494,36 +18256,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1731 components: - pos: -7.5,27.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 1873 components: - pos: -8.5,27.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2054 components: - pos: -11.5,-24.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2141 components: - pos: -11.5,-25.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 2406 components: - pos: 65.5,-4.5 @@ -22531,8 +18283,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2822 components: - pos: -0.5,-8.5 @@ -22540,8 +18290,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2823 components: - pos: -0.5,-9.5 @@ -22549,8 +18297,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3140 components: - pos: 64.5,-0.5 @@ -22558,8 +18304,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3144 components: - pos: 43.5,10.5 @@ -22567,8 +18311,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3356 components: - pos: 14.5,-25.5 @@ -22576,8 +18318,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3357 components: - pos: 13.5,-25.5 @@ -22585,8 +18325,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3481 components: - pos: -16.5,17.5 @@ -22594,15 +18332,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3589 components: - pos: 12.5,24.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3597 components: - pos: 27.5,13.5 @@ -22610,8 +18344,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3598 components: - pos: 28.5,13.5 @@ -22619,8 +18351,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3599 components: - pos: 28.5,14.5 @@ -22628,8 +18358,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3600 components: - pos: 26.5,13.5 @@ -22637,8 +18365,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3601 components: - pos: 25.5,13.5 @@ -22646,15 +18372,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3602 components: - pos: 24.5,13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3603 components: - pos: 24.5,14.5 @@ -22662,57 +18384,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3604 components: - pos: 24.5,12.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3605 components: - pos: 23.5,12.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3606 components: - pos: 22.5,12.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3607 components: - pos: 21.5,12.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3608 components: - pos: 20.5,12.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3609 components: - pos: 19.5,12.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3610 components: - pos: 18.5,12.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3611 components: - pos: 17.5,12.5 @@ -22720,43 +18426,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3612 components: - pos: 16.5,12.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3613 components: - pos: 15.5,12.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3614 components: - pos: 14.5,12.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3615 components: - pos: 13.5,12.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3616 components: - pos: 12.5,12.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3617 components: - pos: 12.5,13.5 @@ -22764,22 +18458,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3618 components: - pos: 11.5,24.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3620 components: - pos: 10.5,24.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3621 components: - pos: 9.5,23.5 @@ -22787,8 +18475,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3622 components: - pos: 9.5,22.5 @@ -22796,106 +18482,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3624 components: - pos: 9.5,25.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3628 components: - pos: 8.5,25.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3629 components: - pos: 7.5,25.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3630 components: - pos: 6.5,25.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3631 components: - pos: 5.5,25.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3632 components: - pos: 4.5,25.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3633 components: - pos: 3.5,25.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3634 components: - pos: 2.5,25.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3635 components: - pos: 1.5,25.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3636 components: - pos: 0.5,25.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3637 components: - pos: 0.5,26.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3639 components: - pos: -0.5,26.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3640 components: - pos: -1.5,26.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3641 components: - pos: -2.5,26.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3642 components: - pos: -2.5,27.5 @@ -22903,85 +18559,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3643 components: - pos: 41.5,2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3644 components: - pos: 42.5,2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3645 components: - pos: 43.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3646 components: - pos: 43.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3647 components: - pos: 44.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3648 components: - pos: 45.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3649 components: - pos: 46.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3650 components: - pos: 47.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3651 components: - pos: 48.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3652 components: - pos: 48.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3653 components: - pos: 48.5,-0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3654 components: - pos: 48.5,-1.5 @@ -22989,8 +18621,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3655 components: - pos: 48.5,-2.5 @@ -22998,8 +18628,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3656 components: - pos: 47.5,-2.5 @@ -23007,8 +18635,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3657 components: - pos: 47.5,-1.5 @@ -23016,8 +18642,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3658 components: - pos: 41.5,-0.5 @@ -23025,36 +18649,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3659 components: - pos: 40.5,2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3660 components: - pos: 39.5,-0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3661 components: - pos: 39.5,2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3662 components: - pos: 38.5,2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3663 components: - pos: 36.5,-0.5 @@ -23062,50 +18676,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3664 components: - pos: 37.5,2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3665 components: - pos: 34.5,-0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3666 components: - pos: 33.5,-0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3667 components: - pos: 32.5,-0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3668 components: - pos: 32.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3669 components: - pos: 31.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3670 components: - pos: 31.5,1.5 @@ -23113,36 +18713,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3671 components: - pos: 43.5,2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3672 components: - pos: 43.5,3.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3673 components: - pos: 43.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3674 components: - pos: 43.5,5.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3681 components: - pos: 21.5,-8.5 @@ -23150,43 +18740,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3682 components: - pos: 21.5,-7.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3683 components: - pos: 21.5,-6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3684 components: - pos: 21.5,-5.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3685 components: - pos: 21.5,-4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3686 components: - pos: 22.5,-4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3687 components: - pos: 22.5,-3.5 @@ -23194,8 +18772,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3688 components: - pos: 20.5,-9.5 @@ -23203,15 +18779,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3689 components: - pos: 19.5,-9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3690 components: - pos: 21.5,-9.5 @@ -23219,92 +18791,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3691 components: - pos: 18.5,-9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3692 components: - pos: 17.5,-9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3693 components: - pos: 16.5,-9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3694 components: - pos: 15.5,-9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3695 components: - pos: 14.5,-9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3696 components: - pos: 13.5,-9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3697 components: - pos: 12.5,-9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3698 components: - pos: 11.5,-9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3699 components: - pos: 10.5,-9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3700 components: - pos: 9.5,-9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3701 components: - pos: 8.5,-9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3702 components: - pos: 8.5,-10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3703 components: - pos: 8.5,-11.5 @@ -23312,141 +18858,101 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3704 components: - pos: 8.5,-12.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3705 components: - pos: 8.5,-13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3706 components: - pos: 8.5,-14.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3707 components: - pos: 8.5,-15.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3708 components: - pos: 8.5,-16.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3709 components: - pos: 7.5,-16.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3710 components: - pos: 7.5,-17.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3711 components: - pos: 15.5,-8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3712 components: - pos: 15.5,-7.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3713 components: - pos: 15.5,-6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3714 components: - pos: 15.5,-5.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3715 components: - pos: 15.5,-4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3716 components: - pos: 15.5,-3.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3717 components: - pos: 15.5,-2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3718 components: - pos: 15.5,-1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3719 components: - pos: 15.5,-0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3720 components: - pos: 15.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3721 components: - pos: 15.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3722 components: - pos: 16.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3723 components: - pos: 16.5,2.5 @@ -23454,8 +18960,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3724 components: - pos: -0.5,-22.5 @@ -23463,8 +18967,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3725 components: - pos: -0.5,-21.5 @@ -23472,22 +18974,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3726 components: - pos: -0.5,-20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3728 components: - pos: -1.5,-19.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3729 components: - pos: -1.5,-18.5 @@ -23495,71 +18991,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3730 components: - pos: -1.5,-20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3731 components: - pos: -2.5,-20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3732 components: - pos: -3.5,-20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3733 components: - pos: -4.5,-20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3734 components: - pos: -5.5,-20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3735 components: - pos: -6.5,-20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3736 components: - pos: -7.5,-20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3737 components: - pos: -8.5,-20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3738 components: - pos: -9.5,-20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3739 components: - pos: -9.5,-21.5 @@ -23567,64 +19043,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3740 components: - pos: -10.5,-20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3741 components: - pos: -11.5,-20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3742 components: - pos: -12.5,-20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3743 components: - pos: -13.5,-20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3744 components: - pos: -13.5,-19.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3745 components: - pos: -13.5,-18.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3746 components: - pos: -13.5,-17.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3747 components: - pos: -14.5,-17.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3748 components: - pos: -14.5,-16.5 @@ -23632,8 +19090,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3754 components: - pos: -2.5,-10.5 @@ -23641,8 +19097,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3755 components: - pos: -2.5,-9.5 @@ -23650,8 +19104,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3756 components: - pos: -3.5,-9.5 @@ -23659,8 +19111,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3757 components: - pos: -4.5,-9.5 @@ -23668,8 +19118,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3758 components: - pos: -5.5,-9.5 @@ -23677,8 +19125,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3759 components: - pos: -5.5,-8.5 @@ -23686,8 +19132,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3760 components: - pos: -6.5,-9.5 @@ -23695,8 +19139,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3761 components: - pos: -7.5,-9.5 @@ -23704,8 +19146,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3762 components: - pos: -8.5,-9.5 @@ -23713,8 +19153,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3763 components: - pos: -9.5,-9.5 @@ -23722,8 +19160,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3764 components: - pos: -9.5,-8.5 @@ -23731,43 +19167,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3765 components: - pos: -9.5,-7.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3766 components: - pos: -9.5,-6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3767 components: - pos: -10.5,-6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3768 components: - pos: -11.5,-6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3769 components: - pos: -12.5,-6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3770 components: - pos: -12.5,-5.5 @@ -23775,64 +19199,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3771 components: - pos: -12.5,-4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3772 components: - pos: -12.5,-3.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3773 components: - pos: -12.5,-2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3774 components: - pos: -12.5,-1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3775 components: - pos: -12.5,-0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3776 components: - pos: -12.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3777 components: - pos: -12.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3778 components: - pos: -11.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3779 components: - pos: -11.5,2.5 @@ -23840,8 +19246,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3780 components: - pos: -21.5,-10.5 @@ -23849,8 +19253,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3781 components: - pos: -21.5,-9.5 @@ -23858,50 +19260,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3782 components: - pos: -21.5,-8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3783 components: - pos: -20.5,-8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3784 components: - pos: -19.5,-8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3785 components: - pos: -18.5,-8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3786 components: - pos: -17.5,-8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3787 components: - pos: -17.5,-9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3788 components: - pos: -16.5,-9.5 @@ -23909,8 +19297,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3789 components: - pos: -15.5,-9.5 @@ -23918,29 +19304,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3790 components: - pos: -14.5,-9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3791 components: - pos: -14.5,-8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3792 components: - pos: -22.5,-8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3793 components: - pos: -21.5,-11.5 @@ -23948,8 +19326,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3794 components: - pos: -21.5,-12.5 @@ -23957,8 +19333,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3795 components: - pos: -20.5,-12.5 @@ -23966,64 +19340,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3796 components: - pos: -23.5,-8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3797 components: - pos: -24.5,-8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3798 components: - pos: -25.5,-8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3799 components: - pos: -26.5,-8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3800 components: - pos: -27.5,-8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3801 components: - pos: -28.5,-8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3802 components: - pos: -29.5,-8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3803 components: - pos: -29.5,-7.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3804 components: - pos: -29.5,-6.5 @@ -24031,29 +19387,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3805 components: - pos: -29.5,-5.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3806 components: - pos: -29.5,-4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3807 components: - pos: -30.5,-4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3808 components: - pos: -30.5,-3.5 @@ -24061,8 +19409,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3809 components: - pos: -32.5,7.5 @@ -24070,8 +19416,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3810 components: - pos: -32.5,8.5 @@ -24079,8 +19423,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3811 components: - pos: -32.5,9.5 @@ -24088,8 +19430,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3812 components: - pos: -33.5,9.5 @@ -24097,57 +19437,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3813 components: - pos: -34.5,9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3814 components: - pos: -35.5,9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3815 components: - pos: -36.5,9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3816 components: - pos: -37.5,9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3817 components: - pos: -38.5,9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3818 components: - pos: -38.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3819 components: - pos: -39.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3820 components: - pos: -39.5,11.5 @@ -24155,8 +19479,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3821 components: - pos: -28.5,12.5 @@ -24164,85 +19486,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3822 components: - pos: -31.5,9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3823 components: - pos: -31.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3824 components: - pos: -31.5,11.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3825 components: - pos: -31.5,12.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3826 components: - pos: -31.5,13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3827 components: - pos: -30.5,13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3828 components: - pos: -29.5,13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3829 components: - pos: -28.5,13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3831 components: - pos: -14.5,16.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3832 components: - pos: -13.5,16.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3833 components: - pos: -13.5,15.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3837 components: - pos: -12.5,12.5 @@ -24250,22 +19548,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3846 components: - pos: -6.5,15.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3847 components: - pos: -5.5,15.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3848 components: - pos: -3.5,15.5 @@ -24273,8 +19565,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3849 components: - pos: -15.5,16.5 @@ -24282,8 +19572,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3850 components: - pos: -16.5,16.5 @@ -24291,8 +19579,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3870 components: - pos: -4.5,15.5 @@ -24300,15 +19586,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3896 components: - pos: -7.5,15.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 3919 components: - pos: 13.5,-24.5 @@ -24316,8 +19598,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3920 components: - pos: 13.5,-23.5 @@ -24325,8 +19605,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4054 components: - pos: -5.5,-7.5 @@ -24334,8 +19612,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4139 components: - pos: 8.5,27.5 @@ -24343,15 +19619,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4201 components: - pos: -10.5,15.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4332 components: - pos: 78.5,-3.5 @@ -24359,8 +19631,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4335 components: - pos: 78.5,4.5 @@ -24368,8 +19638,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4348 components: - pos: 78.5,8.5 @@ -24377,8 +19645,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4349 components: - pos: 78.5,7.5 @@ -24386,8 +19652,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4350 components: - pos: 78.5,5.5 @@ -24395,8 +19659,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4351 components: - pos: 64.5,6.5 @@ -24404,8 +19666,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4352 components: - pos: 64.5,8.5 @@ -24413,8 +19673,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4354 components: - pos: 66.5,9.5 @@ -24422,8 +19680,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4355 components: - pos: 67.5,9.5 @@ -24431,8 +19687,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4356 components: - pos: 69.5,9.5 @@ -24440,8 +19694,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4357 components: - pos: 71.5,9.5 @@ -24449,8 +19701,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4358 components: - pos: 73.5,9.5 @@ -24458,8 +19708,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4359 components: - pos: 75.5,9.5 @@ -24467,8 +19715,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4360 components: - pos: 77.5,9.5 @@ -24476,8 +19722,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4362 components: - pos: 64.5,7.5 @@ -24485,8 +19729,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4363 components: - pos: 64.5,9.5 @@ -24494,8 +19736,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4365 components: - pos: 65.5,9.5 @@ -24503,8 +19743,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4366 components: - pos: 68.5,9.5 @@ -24512,8 +19750,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4367 components: - pos: 78.5,9.5 @@ -24521,8 +19757,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4369 components: - pos: 76.5,9.5 @@ -24530,8 +19764,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4370 components: - pos: 74.5,9.5 @@ -24539,8 +19771,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4371 components: - pos: 72.5,9.5 @@ -24548,8 +19778,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4372 components: - pos: 70.5,9.5 @@ -24557,8 +19785,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4373 components: - pos: 64.5,5.5 @@ -24566,8 +19792,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4450 components: - pos: 74.5,-4.5 @@ -24575,8 +19799,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4543 components: - pos: 73.5,-4.5 @@ -24584,8 +19806,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4544 components: - pos: 77.5,-4.5 @@ -24593,8 +19813,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4545 components: - pos: 76.5,-4.5 @@ -24602,8 +19820,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4546 components: - pos: 78.5,-1.5 @@ -24611,8 +19827,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4547 components: - pos: 78.5,-2.5 @@ -24620,8 +19834,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4553 components: - pos: 78.5,-4.5 @@ -24629,8 +19841,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4651 components: - pos: 64.5,-1.5 @@ -24638,8 +19848,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4652 components: - pos: 64.5,-2.5 @@ -24647,8 +19855,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4653 components: - pos: 64.5,-3.5 @@ -24656,8 +19862,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4806 components: - pos: -6.5,-25.5 @@ -24665,22 +19869,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4835 components: - pos: -6.5,-26.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4863 components: - pos: 12.5,23.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 4911 components: - pos: 78.5,6.5 @@ -24688,8 +19886,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4999 components: - pos: -0.5,-10.5 @@ -24697,8 +19893,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5014 components: - pos: 64.5,-4.5 @@ -24706,8 +19900,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5108 components: - pos: 66.5,-4.5 @@ -24715,8 +19907,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5122 components: - pos: 67.5,-4.5 @@ -24724,8 +19914,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5261 components: - pos: 68.5,-4.5 @@ -24733,22 +19921,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5981 components: - pos: -12.5,15.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 5982 components: - pos: -9.5,15.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6175 components: - pos: 64.5,1.5 @@ -24756,15 +19938,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6285 components: - pos: 60.5,-1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6291 components: - pos: 63.5,-1.5 @@ -24772,8 +19950,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6292 components: - pos: 61.5,-1.5 @@ -24781,8 +19957,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6317 components: - pos: 78.5,0.5 @@ -24790,8 +19964,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6318 components: - pos: 78.5,1.5 @@ -24799,8 +19971,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6319 components: - pos: 78.5,3.5 @@ -24808,8 +19978,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6325 components: - pos: 78.5,2.5 @@ -24817,8 +19985,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6371 components: - pos: 34.5,10.5 @@ -24826,15 +19992,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6372 components: - pos: 35.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6373 components: - pos: 37.5,10.5 @@ -24842,36 +20004,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6450 components: - pos: 43.5,6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6460 components: - pos: 43.5,8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6461 components: - pos: 43.5,7.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6554 components: - pos: 36.5,10.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6555 components: - pos: 34.5,9.5 @@ -24879,15 +20031,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6556 components: - pos: 34.5,8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6588 components: - pos: 34.5,7.5 @@ -24895,43 +20043,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6589 components: - pos: 34.5,6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6590 components: - pos: 34.5,5.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6591 components: - pos: 34.5,4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6592 components: - pos: 34.5,3.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6593 components: - pos: 34.5,2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6594 components: - pos: 34.5,1.5 @@ -24939,22 +20075,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6595 components: - pos: 34.5,0.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6638 components: - pos: 43.5,9.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 6750 components: - pos: 64.5,3.5 @@ -24962,8 +20092,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6856 components: - pos: 64.5,2.5 @@ -24971,8 +20099,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6882 components: - pos: 64.5,4.5 @@ -24980,8 +20106,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6922 components: - pos: 69.5,-4.5 @@ -24989,8 +20113,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6923 components: - pos: 70.5,-4.5 @@ -24998,8 +20120,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6924 components: - pos: 71.5,-4.5 @@ -25007,8 +20127,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6925 components: - pos: 72.5,-4.5 @@ -25016,8 +20134,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7168 components: - pos: 0.5,-8.5 @@ -25025,8 +20141,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7177 components: - pos: 75.5,-4.5 @@ -25034,36 +20148,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7266 components: - pos: -9.5,-26.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7272 components: - pos: -8.5,-26.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7453 components: - pos: -11.5,-21.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 7625 components: - pos: -11.5,-22.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8077 components: - pos: 12.5,20.5 @@ -25071,8 +20175,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8078 components: - pos: 12.5,19.5 @@ -25080,78 +20182,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8079 components: - pos: 11.5,19.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8080 components: - pos: 10.5,19.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8081 components: - pos: 9.5,19.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8082 components: - pos: 9.5,20.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8083 components: - pos: 9.5,21.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8133 components: - pos: 49.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8185 components: - pos: 50.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8186 components: - pos: 51.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8187 components: - pos: 52.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8188 components: - pos: 53.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8189 components: - pos: 54.5,1.5 @@ -25159,57 +20239,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8190 components: - pos: 55.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8191 components: - pos: 56.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8192 components: - pos: 57.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8193 components: - pos: 58.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8194 components: - pos: 59.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8195 components: - pos: 60.5,1.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8196 components: - pos: 60.5,2.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8197 components: - pos: 61.5,2.5 @@ -25217,8 +20281,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8198 components: - pos: 62.5,2.5 @@ -25226,8 +20288,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8199 components: - pos: 63.5,2.5 @@ -25235,57 +20295,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8669 components: - pos: -31.5,-31.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8670 components: - pos: -32.5,-31.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8671 components: - pos: -32.5,-30.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8672 components: - pos: -32.5,-29.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8673 components: - pos: -32.5,-28.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8674 components: - pos: -32.5,-27.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8675 components: - pos: -32.5,-26.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 8676 components: - pos: -32.5,-25.5 @@ -25293,36 +20337,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8782 components: - pos: -8.5,15.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9734 components: - pos: -11.5,15.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9869 components: - pos: -12.5,14.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - uid: 9870 components: - pos: -12.5,13.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - proto: CableMVStack entities: - uid: 48 @@ -30274,11 +25308,6 @@ entities: type: Transform - proto: ComputerPowerMonitoring entities: - - uid: 2447 - components: - - pos: 6.5,32.5 - parent: 31 - type: Transform - uid: 4306 components: - pos: 42.5,4.5 @@ -30286,6 +25315,11 @@ entities: type: Transform - proto: ComputerRadar entities: + - uid: 2447 + components: + - pos: 6.5,32.5 + parent: 31 + type: Transform - uid: 10109 components: - pos: 34.5,35.5 @@ -51707,7 +46741,7 @@ entities: - pos: 57.5,1.5 parent: 31 type: Transform -- proto: ParticleAcceleratorEmitterCenterUnfinished +- proto: ParticleAcceleratorEmitterForeUnfinished entities: - uid: 4562 components: @@ -51715,20 +46749,20 @@ entities: pos: 59.5,2.5 parent: 31 type: Transform -- proto: ParticleAcceleratorEmitterLeftUnfinished +- proto: ParticleAcceleratorEmitterPortUnfinished entities: - - uid: 4560 + - uid: 6300 components: - rot: 1.5707963267948966 rad - pos: 59.5,1.5 + pos: 59.5,3.5 parent: 31 type: Transform -- proto: ParticleAcceleratorEmitterRightUnfinished +- proto: ParticleAcceleratorEmitterStarboardUnfinished entities: - - uid: 6300 + - uid: 4560 components: - rot: 1.5707963267948966 rad - pos: 59.5,3.5 + pos: 59.5,1.5 parent: 31 type: Transform - proto: ParticleAcceleratorEndCapUnfinished @@ -62738,9 +57772,10 @@ entities: - pos: -9.5,22.5 parent: 31 type: Transform - - uid: 4203 + - uid: 3927 components: - - pos: -0.5,9.5 + - rot: 3.141592653589793 rad + pos: -0.5,9.5 parent: 31 type: Transform - uid: 9512 From 763f6048f2d60cb1bcfa4d24590605058a86dd8b Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Tue, 20 Jun 2023 06:39:20 +0000 Subject: [PATCH 373/474] make taser require silver (#17477) Co-authored-by: deltanedas <@deltanedas:kde.org> --- Resources/Prototypes/Recipes/Lathes/security.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/Resources/Prototypes/Recipes/Lathes/security.yml b/Resources/Prototypes/Recipes/Lathes/security.yml index be8efde540..8df6cb4d14 100644 --- a/Resources/Prototypes/Recipes/Lathes/security.yml +++ b/Resources/Prototypes/Recipes/Lathes/security.yml @@ -65,6 +65,7 @@ Steel: 700 Plastic: 300 Gold: 250 + Silver: 500 - type: latheRecipe id: ForensicPad From a01f26d3a6de5d4cb1aefa7eaa6d0a0c92481277 Mon Sep 17 00:00:00 2001 From: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> Date: Tue, 20 Jun 2023 02:39:35 -0400 Subject: [PATCH 374/474] fix lathe syncing and tweak ui (#17489) --- .../Lathe/UI/LatheBoundUserInterface.cs | 11 ++- Content.Client/Lathe/UI/LatheMenu.xaml | 81 +++++++++---------- Content.Client/Lathe/UI/LatheMenu.xaml.cs | 8 +- Content.Client/Lathe/UI/RecipeControl.xaml | 6 +- .../UI/ResearchConsoleBoundUserInterface.cs | 9 +-- .../Research/UI/ResearchConsoleMenu.xaml | 5 +- .../Research/UI/ResearchConsoleMenu.xaml.cs | 2 - Content.Server/Lathe/LatheSystem.cs | 6 ++ .../Research/Systems/ResearchSystem.Client.cs | 9 --- .../Research/Systems/ResearchSystem.Server.cs | 2 + .../SharedResearchConsoleComponent.cs | 6 -- .../Entities/Structures/Machines/lathe.yml | 2 + 12 files changed, 64 insertions(+), 83 deletions(-) diff --git a/Content.Client/Lathe/UI/LatheBoundUserInterface.cs b/Content.Client/Lathe/UI/LatheBoundUserInterface.cs index 5c3e8ea036..03159b5859 100644 --- a/Content.Client/Lathe/UI/LatheBoundUserInterface.cs +++ b/Content.Client/Lathe/UI/LatheBoundUserInterface.cs @@ -29,16 +29,15 @@ protected override void Open() _menu.OnQueueButtonPressed += _ => { - _queueMenu.OpenCenteredLeft(); + if (_queueMenu.IsOpen) + _queueMenu.Close(); + else + _queueMenu.OpenCenteredLeft(); }; _menu.OnServerListButtonPressed += _ => { SendMessage(new ConsoleServerSelectionMessage()); }; - _menu.OnServerSyncButtonPressed += _ => - { - SendMessage(new ConsoleServerSyncMessage()); - }; _menu.RecipeQueueAction += (recipe, amount) => { SendMessage(new LatheQueueRecipeMessage(recipe, amount)); @@ -56,7 +55,7 @@ protected override void UpdateState(BoundUserInterfaceState state) case LatheUpdateState msg: if (_menu != null) _menu.Recipes = msg.Recipes; - _menu?.PopulateRecipes(Owner.Owner); + _menu?.PopulateRecipes(Lathe); _menu?.PopulateMaterials(Lathe); _queueMenu?.PopulateList(msg.Queue); _queueMenu?.SetInfo(msg.CurrentlyProducing); diff --git a/Content.Client/Lathe/UI/LatheMenu.xaml b/Content.Client/Lathe/UI/LatheMenu.xaml index f5f6ecff8b..50f6fd9948 100644 --- a/Content.Client/Lathe/UI/LatheMenu.xaml +++ b/Content.Client/Lathe/UI/LatheMenu.xaml @@ -1,85 +1,84 @@  + HorizontalExpand="True"> - - + + HorizontalExpand="True"> - - - - - + + + + + + + + + + + + + + + - - diff --git a/Content.Client/Lathe/UI/LatheMenu.xaml.cs b/Content.Client/Lathe/UI/LatheMenu.xaml.cs index 7a1a4f08f3..7247db647b 100644 --- a/Content.Client/Lathe/UI/LatheMenu.xaml.cs +++ b/Content.Client/Lathe/UI/LatheMenu.xaml.cs @@ -1,5 +1,6 @@ using System.Linq; using System.Text; +using Content.Client.Stylesheets; using Content.Shared.Lathe; using Content.Shared.Materials; using Content.Shared.Research.Prototypes; @@ -22,7 +23,6 @@ public sealed partial class LatheMenu : DefaultWindow public event Action? OnQueueButtonPressed; public event Action? OnServerListButtonPressed; - public event Action? OnServerSyncButtonPressed; public event Action? RecipeQueueAction; public List Recipes = new(); @@ -49,15 +49,13 @@ public LatheMenu(LatheBoundUserInterface owner) QueueButton.OnPressed += a => OnQueueButtonPressed?.Invoke(a); ServerListButton.OnPressed += a => OnServerListButtonPressed?.Invoke(a); - //refresh the bui state - ServerSyncButton.OnPressed += a => OnServerSyncButtonPressed?.Invoke(a); - if (_entityManager.TryGetComponent(owner.Lathe, out var latheComponent)) { if (!latheComponent.DynamicRecipes.Any()) { ServerListButton.Visible = false; - ServerSyncButton.Visible = false; + QueueButton.RemoveStyleClass(StyleBase.ButtonOpenRight); + //QueueButton.AddStyleClass(StyleBase.ButtonSquare); } } } diff --git a/Content.Client/Lathe/UI/RecipeControl.xaml b/Content.Client/Lathe/UI/RecipeControl.xaml index 5ef5342185..cacbf84ff7 100644 --- a/Content.Client/Lathe/UI/RecipeControl.xaml +++ b/Content.Client/Lathe/UI/RecipeControl.xaml @@ -2,11 +2,13 @@ [ViewVariables, Access(typeof(MindSystem))] - public NetUserId? UserId { get; internal set; } + public NetUserId? UserId { get; set; } /// /// The session ID of the original owner, if any. /// May end up used for round-end information (as the owner may have abandoned Mind since) /// - [ViewVariables] - public NetUserId? OriginalOwnerUserId { get; } + [ViewVariables, Access(typeof(MindSystem))] + public NetUserId? OriginalOwnerUserId { get; set; } [ViewVariables] public bool IsVisitingEntity => VisitingEntity != null; - [ViewVariables] + [ViewVariables, Access(typeof(MindSystem))] public EntityUid? VisitingEntity { get; set; } [ViewVariables] @@ -78,8 +78,8 @@ public Mind() /// The entity currently owned by this mind. /// Can be null. /// - [ViewVariables] - public EntityUid? OwnedEntity { get; internal set; } + [ViewVariables, Access(typeof(MindSystem))] + public EntityUid? OwnedEntity { get; set; } /// /// An enumerable over all the roles this mind has. diff --git a/Content.Server/Mind/MindSystem.cs b/Content.Server/Mind/MindSystem.cs index c6b8a65af0..18420d3702 100644 --- a/Content.Server/Mind/MindSystem.cs +++ b/Content.Server/Mind/MindSystem.cs @@ -629,6 +629,7 @@ public void SetUserId(Mind mind, NetUserId? userId) _userMinds[userId.Value] = mind; mind.UserId = userId; + mind.OriginalOwnerUserId ??= userId; _playerManager.TryGetSessionById(userId.Value, out var ret); mind.Session = ret; From 567490bfa5d4ab802f2dbbe94303cbae3966d7b7 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 20 Jun 2023 21:19:20 -0400 Subject: [PATCH 392/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index e1dcdb705f..206e4ca714 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,10 +1,4 @@ Entries: -- author: jamessimo - changes: - - {message: Minor UI enhancements to the Anomaly Generator UI, type: Tweak} - - {message: Fixed broken sprite view in Anomaly Generator UI, type: Fix} - id: 3561 - time: '2023-04-29T05:53:57.0000000+00:00' - author: lzk changes: - {message: Added ghost sheet craft recipe, type: Add} @@ -2936,3 +2930,8 @@ Entries: and reconnecting., type: Fix} id: 4060 time: '2023-06-21T01:04:08.0000000+00:00' +- author: ElectroJr + changes: + - {message: Fixed usernames not showing up in the round end window., type: Fix} + id: 4061 + time: '2023-06-21T01:18:16.0000000+00:00' From 7f203be3c9c2480cd0e8a9c7b3c419aaeba8786b Mon Sep 17 00:00:00 2001 From: Aexolott <125095677+Aexolott@users.noreply.github.com> Date: Tue, 20 Jun 2023 20:24:32 -0500 Subject: [PATCH 393/474] Fix throw hotkey also focusing UI (#17493) Back in 2019, throw was set to Ctrl+Click so canFocus was set to true. It wasn't removed when the hotkey changed from left click to Q. --- Resources/keybinds.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/Resources/keybinds.yml b/Resources/keybinds.yml index 82e5baeb43..4ce5d84e8c 100644 --- a/Resources/keybinds.yml +++ b/Resources/keybinds.yml @@ -201,7 +201,6 @@ binds: - function: ThrowItemInHand type: State key: Q - canFocus: true mod1: Control - function: TryPullObject type: State From 3fa99b8abf41463cf414c2931321e69467c73848 Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Wed, 21 Jun 2023 14:11:58 +1200 Subject: [PATCH 394/474] Slight mind test cleanup (#17521) --- .../Tests/Minds/GhostRoleTests.cs | 33 ++--- .../Tests/Minds/MindEntityDeletionTest.cs | 126 ------------------ ...stTests.cs => MindTests.EntityDeletion.cs} | 117 +++++++++++++--- .../Tests/Minds/MindTests.Helpers.cs | 5 +- .../Tests/Minds/MindTests.ReconnectTests.cs | 6 +- .../Tests/Minds/MindTests.cs | 7 +- Content.Server/Mind/MindSystem.cs | 10 +- 7 files changed, 115 insertions(+), 189 deletions(-) delete mode 100644 Content.IntegrationTests/Tests/Minds/MindEntityDeletionTest.cs rename Content.IntegrationTests/Tests/Minds/{GhostTests.cs => MindTests.EntityDeletion.cs} (67%) diff --git a/Content.IntegrationTests/Tests/Minds/GhostRoleTests.cs b/Content.IntegrationTests/Tests/Minds/GhostRoleTests.cs index bd6ce81d1a..cb6f224628 100644 --- a/Content.IntegrationTests/Tests/Minds/GhostRoleTests.cs +++ b/Content.IntegrationTests/Tests/Minds/GhostRoleTests.cs @@ -1,4 +1,5 @@ #nullable enable +using System.Linq; using System.Threading.Tasks; using Content.Server.Ghost.Roles; using Content.Server.Ghost.Roles.Components; @@ -16,12 +17,7 @@ public sealed class GhostRoleTests { private const string Prototypes = @" - type: entity - id: GhostRoleTestEntity_Player - components: - - type: MindContainer - -- type: entity - id: GhostRoleTestEntity_Role + id: GhostRoleTestEntity components: - type: MindContainer - type: GhostRole @@ -42,36 +38,29 @@ public async Task TakeRoleAndReturn() var entMan = server.ResolveDependency(); var sPlayerMan = server.ResolveDependency(); var conHost = client.ResolveDependency(); - var cPlayerMan = client.ResolveDependency(); var mindSystem = entMan.System(); - - // Get player data - if (cPlayerMan.LocalPlayer?.Session == null) - Assert.Fail("No player"); - - var clientSession = cPlayerMan.LocalPlayer!.Session!; - var session = sPlayerMan.GetSessionByUserId(clientSession.UserId); + var session = sPlayerMan.ServerSessions.Single(); // Spawn player entity & attach EntityUid originalMob = default; await server.WaitPost(() => { - originalMob = entMan.SpawnEntity("GhostRoleTestEntity_Player", MapCoordinates.Nullspace); + originalMob = entMan.SpawnEntity(null, MapCoordinates.Nullspace); mindSystem.TransferTo(session.ContentData()!.Mind!, originalMob, true); }); // Check player got attached. await PoolManager.RunTicksSync(pairTracker.Pair, 10); - Assert.That(cPlayerMan.LocalPlayer.ControlledEntity, Is.EqualTo(originalMob)); + Assert.That(session.AttachedEntity, Is.EqualTo(originalMob)); // Use the ghost command conHost.ExecuteCommand("ghost"); await PoolManager.RunTicksSync(pairTracker.Pair, 10); - Assert.That(cPlayerMan.LocalPlayer.ControlledEntity, Is.Not.EqualTo(originalMob)); + Assert.That(session.AttachedEntity, Is.Not.EqualTo(originalMob)); // Spawn ghost takeover entity. EntityUid ghostRole = default; - await server.WaitPost(() => ghostRole = entMan.SpawnEntity("GhostRoleTestEntity_Role", MapCoordinates.Nullspace)); + await server.WaitPost(() => ghostRole = entMan.SpawnEntity("GhostRoleTestEntity", MapCoordinates.Nullspace)); // Take the ghost role await server.WaitPost(() => @@ -82,13 +71,13 @@ await server.WaitPost(() => // Check player got attached to ghost role. await PoolManager.RunTicksSync(pairTracker.Pair, 10); - Assert.That(cPlayerMan.LocalPlayer.ControlledEntity, Is.EqualTo(ghostRole)); + Assert.That(session.AttachedEntity, Is.EqualTo(ghostRole)); // Ghost again. conHost.ExecuteCommand("ghost"); await PoolManager.RunTicksSync(pairTracker.Pair, 10); - Assert.That(cPlayerMan.LocalPlayer.ControlledEntity, Is.Not.EqualTo(originalMob)); - Assert.That(cPlayerMan.LocalPlayer.ControlledEntity, Is.Not.EqualTo(ghostRole)); + Assert.That(session.AttachedEntity, Is.Not.EqualTo(originalMob)); + Assert.That(session.AttachedEntity, Is.Not.EqualTo(ghostRole)); // Next, control the original entity again: await server.WaitPost(() => @@ -96,7 +85,7 @@ await server.WaitPost(() => mindSystem.TransferTo(session.ContentData()!.Mind!, originalMob, true); }); await PoolManager.RunTicksSync(pairTracker.Pair, 10); - Assert.That(cPlayerMan.LocalPlayer.ControlledEntity, Is.EqualTo(originalMob)); + Assert.That(session.AttachedEntity, Is.EqualTo(originalMob)); await pairTracker.CleanReturnAsync(); } diff --git a/Content.IntegrationTests/Tests/Minds/MindEntityDeletionTest.cs b/Content.IntegrationTests/Tests/Minds/MindEntityDeletionTest.cs deleted file mode 100644 index 49626d8082..0000000000 --- a/Content.IntegrationTests/Tests/Minds/MindEntityDeletionTest.cs +++ /dev/null @@ -1,126 +0,0 @@ -#nullable enable -using System.Linq; -using System.Threading.Tasks; -using Content.Server.Mind; -using Content.Server.Players; -using NUnit.Framework; -using Robust.Server.GameObjects; -using Robust.Server.Player; -using Robust.Shared.GameObjects; -using Robust.Shared.IoC; -using Robust.Shared.Map; -using Robust.Shared.Maths; - -namespace Content.IntegrationTests.Tests.Minds -{ - // Tests various scenarios of deleting the entity that a player's mind is connected to. - [TestFixture] - public sealed class MindEntityDeletionTest - { - // This test will do the following: - // - spawn a player - // - visit some entity - // - delete the entity being visited - // - assert that player returns to original entity - [Test] - public async Task TestDeleteVisiting() - { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; - - var entMan = server.ResolveDependency(); - var playerMan = server.ResolveDependency(); - var mapManager = server.ResolveDependency(); - - var mindSystem = entMan.EntitySysManager.GetEntitySystem(); - - EntityUid playerEnt = default; - EntityUid visitEnt = default; - Mind mind = default!; - var map = await PoolManager.CreateTestMap(pairTracker); - - await server.WaitAssertion(() => - { - var player = playerMan.ServerSessions.Single(); - var pos = new MapCoordinates(Vector2.Zero, map.MapId); - - playerEnt = entMan.SpawnEntity(null, pos); - visitEnt = entMan.SpawnEntity(null, pos); - - mind = mindSystem.CreateMind(player.UserId); - mindSystem.TransferTo(mind, playerEnt); - mindSystem.Visit(mind, visitEnt); - - Assert.That(player.AttachedEntity, Is.EqualTo(visitEnt)); - Assert.That(mind.VisitingEntity, Is.EqualTo(visitEnt)); - }); - - await PoolManager.RunTicksSync(pairTracker.Pair, 5); - await server.WaitPost(() => entMan.DeleteEntity(visitEnt)); - await PoolManager.RunTicksSync(pairTracker.Pair, 5); - - Assert.IsNull(mind.VisitingEntity); - Assert.That(entMan.EntityExists(mind.OwnedEntity)); - Assert.That(mind.OwnedEntity, Is.EqualTo(playerEnt)); - - // This used to throw so make sure it doesn't. - await server.WaitPost(() => entMan.DeleteEntity(mind.OwnedEntity!.Value)); - await PoolManager.RunTicksSync(pairTracker.Pair, 5); - - await server.WaitPost(() => mapManager.DeleteMap(map.MapId)); - await pairTracker.CleanReturnAsync(); - } - - // this is a variant of TestGhostOnDelete that just deletes the whole map. - [Test] - public async Task TestGhostOnDeleteMap() - { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; - var testMap = await PoolManager.CreateTestMap(pairTracker); - var coordinates = testMap.GridCoords; - - var entMan = server.ResolveDependency(); - var mapManager = server.ResolveDependency(); - var playerMan = server.ResolveDependency(); - var player = playerMan.ServerSessions.Single(); - - var mindSystem = entMan.EntitySysManager.GetEntitySystem(); - - var map = await PoolManager.CreateTestMap(pairTracker); - - EntityUid playerEnt = default; - Mind mind = default!; - await server.WaitAssertion(() => - { - playerEnt = entMan.SpawnEntity(null, coordinates); - mind = player.ContentData()!.Mind!; - mindSystem.TransferTo(mind, playerEnt); - - Assert.That(mind.CurrentEntity, Is.EqualTo(playerEnt)); - }); - - await PoolManager.RunTicksSync(pairTracker.Pair, 5); - - await server.WaitPost(() => - { - mapManager.DeleteMap(testMap.MapId); - }); - - await PoolManager.RunTicksSync(pairTracker.Pair, 5); - - await server.WaitAssertion(() => - { - Assert.That(entMan.EntityExists(mind.CurrentEntity!.Value), Is.True); - Assert.That(mind.CurrentEntity, Is.Not.EqualTo(playerEnt)); - }); - - await server.WaitPost(() => - { - mapManager.DeleteMap(map.MapId); - }); - - await pairTracker.CleanReturnAsync(); - } - } -} diff --git a/Content.IntegrationTests/Tests/Minds/GhostTests.cs b/Content.IntegrationTests/Tests/Minds/MindTests.EntityDeletion.cs similarity index 67% rename from Content.IntegrationTests/Tests/Minds/GhostTests.cs rename to Content.IntegrationTests/Tests/Minds/MindTests.EntityDeletion.cs index 5d9ea2b30b..e23ca32756 100644 --- a/Content.IntegrationTests/Tests/Minds/GhostTests.cs +++ b/Content.IntegrationTests/Tests/Minds/MindTests.EntityDeletion.cs @@ -1,9 +1,7 @@ -using System.Linq; +using System.Linq; using System.Threading.Tasks; -using Content.Server.GameTicking; using Content.Server.Ghost.Components; using Content.Server.Mind; -using Content.Server.Mind.Components; using Content.Server.Players; using NUnit.Framework; using Robust.Server.Console; @@ -11,13 +9,101 @@ using Robust.Server.Player; using Robust.Shared.GameObjects; using Robust.Shared.Map; -using Robust.Shared.Network; namespace Content.IntegrationTests.Tests.Minds; -[TestFixture] -public sealed class GhostTests +// Tests various scenarios where an entity that is associated with a player's mind is deleted. +public sealed partial class MindTests { + // This test will do the following: + // - spawn a player + // - visit some entity + // - delete the entity being visited + // - assert that player returns to original entity + [Test] + public async Task TestDeleteVisiting() + { + await using var pairTracker = await PoolManager.GetServerClient(); + var server = pairTracker.Pair.Server; + + var entMan = server.ResolveDependency(); + var playerMan = server.ResolveDependency(); + + var mindSystem = entMan.EntitySysManager.GetEntitySystem(); + + EntityUid playerEnt = default; + EntityUid visitEnt = default; + Mind mind = default!; + await server.WaitAssertion(() => + { + var player = playerMan.ServerSessions.Single(); + + playerEnt = entMan.SpawnEntity(null, MapCoordinates.Nullspace); + visitEnt = entMan.SpawnEntity(null, MapCoordinates.Nullspace); + + mind = mindSystem.CreateMind(player.UserId); + mindSystem.TransferTo(mind, playerEnt); + mindSystem.Visit(mind, visitEnt); + + Assert.That(player.AttachedEntity, Is.EqualTo(visitEnt)); + Assert.That(mind.VisitingEntity, Is.EqualTo(visitEnt)); + }); + + await PoolManager.RunTicksSync(pairTracker.Pair, 5); + await server.WaitPost(() => entMan.DeleteEntity(visitEnt)); + await PoolManager.RunTicksSync(pairTracker.Pair, 5); + + Assert.IsNull(mind.VisitingEntity); + Assert.That(entMan.EntityExists(mind.OwnedEntity)); + Assert.That(mind.OwnedEntity, Is.EqualTo(playerEnt)); + + // This used to throw so make sure it doesn't. + await server.WaitPost(() => entMan.DeleteEntity(mind.OwnedEntity!.Value)); + await PoolManager.RunTicksSync(pairTracker.Pair, 5); + + await pairTracker.CleanReturnAsync(); + } + + // this is a variant of TestGhostOnDelete that just deletes the whole map. + [Test] + public async Task TestGhostOnDeleteMap() + { + await using var pairTracker = await PoolManager.GetServerClient(); + var server = pairTracker.Pair.Server; + var testMap = await PoolManager.CreateTestMap(pairTracker); + var coordinates = testMap.GridCoords; + + var entMan = server.ResolveDependency(); + var mapManager = server.ResolveDependency(); + var playerMan = server.ResolveDependency(); + var player = playerMan.ServerSessions.Single(); + + var mindSystem = entMan.EntitySysManager.GetEntitySystem(); + + EntityUid playerEnt = default; + Mind mind = default!; + await server.WaitAssertion(() => + { + playerEnt = entMan.SpawnEntity(null, coordinates); + mind = player.ContentData()!.Mind!; + mindSystem.TransferTo(mind, playerEnt); + + Assert.That(mind.CurrentEntity, Is.EqualTo(playerEnt)); + }); + + await PoolManager.RunTicksSync(pairTracker.Pair, 5); + await server.WaitPost(() => mapManager.DeleteMap(testMap.MapId)); + await PoolManager.RunTicksSync(pairTracker.Pair, 5); + + await server.WaitAssertion(() => + { + Assert.That(entMan.EntityExists(mind.CurrentEntity!.Value), Is.True); + Assert.That(mind.CurrentEntity, Is.Not.EqualTo(playerEnt)); + }); + + await pairTracker.CleanReturnAsync(); + } + /// /// Test that a ghost gets created when the player entity is deleted. /// 1. Delete mob @@ -27,7 +113,7 @@ public sealed class GhostTests public async Task TestGhostOnDelete() { // Client is needed to spawn session - await using var pairTracker = await PoolManager.GetServerClient(); + await using var pairTracker = await SetupPair(); var server = pairTracker.Pair.Server; var entMan = server.ResolveDependency(); @@ -35,21 +121,13 @@ public async Task TestGhostOnDelete() IPlayerSession player = playerMan.ServerSessions.Single(); - await server.WaitAssertion(() => - { - Assert.That(player.AttachedEntity, Is.Not.EqualTo(null)); - entMan.DeleteEntity(player.AttachedEntity!.Value); - }); + Assert.That(!entMan.HasComponent(player.AttachedEntity), "Player was initially a ghost?"); + // Delete entity + await server.WaitPost(() => entMan.DeleteEntity(player.AttachedEntity!.Value)); await PoolManager.RunTicksSync(pairTracker.Pair, 5); - await server.WaitAssertion(() => - { - // Is player a ghost? - Assert.That(player.AttachedEntity, Is.Not.EqualTo(null)); - var entity = player.AttachedEntity!.Value; - Assert.That(entMan.HasComponent(entity)); - }); + Assert.That(entMan.HasComponent(player.AttachedEntity), "Player did not become a ghost"); await pairTracker.CleanReturnAsync(); } @@ -72,7 +150,6 @@ public async Task TestOriginalDeletedWhileGhostingKeepsGhost() var entMan = server.ResolveDependency(); var playerMan = server.ResolveDependency(); - var gameTicker = entMan.EntitySysManager.GetEntitySystem(); var mindSystem = entMan.EntitySysManager.GetEntitySystem(); IPlayerSession player = playerMan.ServerSessions.Single(); diff --git a/Content.IntegrationTests/Tests/Minds/MindTests.Helpers.cs b/Content.IntegrationTests/Tests/Minds/MindTests.Helpers.cs index bff534a547..51d451451a 100644 --- a/Content.IntegrationTests/Tests/Minds/MindTests.Helpers.cs +++ b/Content.IntegrationTests/Tests/Minds/MindTests.Helpers.cs @@ -15,7 +15,6 @@ namespace Content.IntegrationTests.Tests.Minds; // This partial class contains misc helper functions for other tests. -[TestFixture] public sealed partial class MindTests { /// @@ -23,7 +22,7 @@ public sealed partial class MindTests /// public async Task SetupPair() { - var pairTracker = await PoolManager.GetServerClient(new PoolSettings{ ExtraPrototypes = Prototypes }); + var pairTracker = await PoolManager.GetServerClient(); var pair = pairTracker.Pair; var entMan = pair.Server.ResolveDependency(); @@ -35,7 +34,7 @@ public async Task SetupPair() EntityUid entity = default; await pair.Server.WaitPost(() => { - entity = entMan.SpawnEntity("MindTestEntity", MapCoordinates.Nullspace); + entity = entMan.SpawnEntity(null, MapCoordinates.Nullspace); mindSys.TransferTo(mindSys.CreateMind(player.UserId), entity); }); diff --git a/Content.IntegrationTests/Tests/Minds/MindTests.ReconnectTests.cs b/Content.IntegrationTests/Tests/Minds/MindTests.ReconnectTests.cs index 031955b416..b9727a7d23 100644 --- a/Content.IntegrationTests/Tests/Minds/MindTests.ReconnectTests.cs +++ b/Content.IntegrationTests/Tests/Minds/MindTests.ReconnectTests.cs @@ -9,7 +9,6 @@ namespace Content.IntegrationTests.Tests.Minds; -[TestFixture] public sealed partial class MindTests { // This test will do the following: @@ -92,7 +91,6 @@ public async Task TestVisitingGhostReconnect() { await using var pairTracker = await SetupPair(); var pair = pairTracker.Pair; - var entMan = pair.Server.ResolveDependency(); var mind = GetMind(pair); @@ -119,10 +117,8 @@ public async Task TestVisitingReconnect() { await using var pairTracker = await SetupPair(); var pair = pairTracker.Pair; - var entMan = pair.Server.ResolveDependency(); var mindSys = entMan.System(); - await PoolManager.RunTicksSync(pair, 5); var mind = GetMind(pair); // Make player visit a new mob @@ -130,7 +126,7 @@ public async Task TestVisitingReconnect() EntityUid visiting = default; await pair.Server.WaitAssertion(() => { - visiting = entMan.SpawnEntity("MindTestEntity", MapCoordinates.Nullspace); + visiting = entMan.SpawnEntity(null, MapCoordinates.Nullspace); mindSys.Visit(mind, visiting); }); await PoolManager.RunTicksSync(pair, 5); diff --git a/Content.IntegrationTests/Tests/Minds/MindTests.cs b/Content.IntegrationTests/Tests/Minds/MindTests.cs index 57a4a9d510..e1c07850ef 100644 --- a/Content.IntegrationTests/Tests/Minds/MindTests.cs +++ b/Content.IntegrationTests/Tests/Minds/MindTests.cs @@ -32,14 +32,9 @@ public sealed partial class MindTests { private const string Prototypes = @" - type: entity - id: MindTestEntity - components: - - type: MindContainer - -- type: entity - parent: MindTestEntity id: MindTestEntityDamageable components: + - type: MindContainer - type: Damageable damageContainer: Biological - type: Body diff --git a/Content.Server/Mind/MindSystem.cs b/Content.Server/Mind/MindSystem.cs index 18420d3702..044193a6ae 100644 --- a/Content.Server/Mind/MindSystem.cs +++ b/Content.Server/Mind/MindSystem.cs @@ -390,14 +390,10 @@ public void TransferTo(Mind mind, EntityUid? entity, bool ghostCheckOverride = f if (entity != null) { - if (!TryComp(entity.Value, out component)) - { - component = AddComp(entity.Value); - } - else if (component.HasMind) - { + component = EnsureComp(entity.Value); + + if (component.HasMind) _gameTicker.OnGhostAttempt(component.Mind, false); - } if (TryComp(entity.Value, out var actor)) { From 276f18102128145a82f035d1b8d97301b5b8acdd Mon Sep 17 00:00:00 2001 From: Whisper <121047731+QuietlyWhisper@users.noreply.github.com> Date: Wed, 21 Jun 2023 10:30:19 -0400 Subject: [PATCH 395/474] Bleed Tweaks (#17528) --- Content.Server/Body/Components/BloodstreamComponent.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Content.Server/Body/Components/BloodstreamComponent.cs b/Content.Server/Body/Components/BloodstreamComponent.cs index d056df289d..00d8a7b42d 100644 --- a/Content.Server/Body/Components/BloodstreamComponent.cs +++ b/Content.Server/Body/Components/BloodstreamComponent.cs @@ -35,13 +35,13 @@ public sealed class BloodstreamComponent : Component /// How much should bleeding should be reduced every update interval? /// [DataField("bleedReductionAmount")] - public float BleedReductionAmount = 0.5f; + public float BleedReductionAmount = 1.0f; /// /// How high can go? /// [DataField("maxBleedAmount")] - public float MaxBleedAmount = 20.0f; + public float MaxBleedAmount = 10.0f; /// /// What percentage of current blood is necessary to avoid dealing blood loss damage? @@ -67,7 +67,7 @@ public sealed class BloodstreamComponent : Component /// How frequently should this bloodstream update, in seconds? /// [DataField("updateInterval")] - public float UpdateInterval = 5.0f; + public float UpdateInterval = 3.0f; // TODO shouldn't be hardcoded, should just use some organ simulation like bone marrow or smth. /// @@ -80,7 +80,7 @@ public sealed class BloodstreamComponent : Component /// How much blood needs to be in the temporary solution in order to create a puddle? /// [DataField("bleedPuddleThreshold")] - public FixedPoint2 BleedPuddleThreshold = 5.0f; + public FixedPoint2 BleedPuddleThreshold = 1.0f; /// /// A modifier set prototype ID corresponding to how damage should be modified From f14f09cc908274067186362b7acaa6fe741c210b Mon Sep 17 00:00:00 2001 From: Chief-Engineer <119664036+Chief-Engineer@users.noreply.github.com> Date: Wed, 21 Jun 2023 09:30:31 -0500 Subject: [PATCH 396/474] remove armor from uniforms (#17523) --- .../Entities/Clothing/Uniforms/jumpsuits.yml | 23 ++----------------- 1 file changed, 2 insertions(+), 21 deletions(-) diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml index 465a587510..d5e60935e7 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml @@ -92,10 +92,6 @@ sprite: Clothing/Uniforms/Jumpsuit/salvage.rsi - type: Clothing sprite: Clothing/Uniforms/Jumpsuit/salvage.rsi - - type: Armor - modifiers: - coefficients: - Blunt: 0.9 # Those overalls ARE sturdy. - type: entity parent: ClothingUniformBase @@ -107,11 +103,6 @@ sprite: Clothing/Uniforms/Jumpsuit/ce.rsi - type: Clothing sprite: Clothing/Uniforms/Jumpsuit/ce.rsi - - type: Armor - modifiers: - coefficients: - Radiation: 0.8 - - type: entity parent: ClothingUniformBase @@ -292,33 +283,23 @@ parent: ClothingUniformBase id: ClothingUniformJumpsuitHoS name: head of security's jumpsuit - description: It's bright red and rather crisp, much like security's victims tend to be. Its sturdy fabric provides minor protection from slash and pierce damage. + description: It's bright red and rather crisp, much like security's victims tend to be. components: - type: Sprite sprite: Clothing/Uniforms/Jumpsuit/hos.rsi - type: Clothing sprite: Clothing/Uniforms/Jumpsuit/hos.rsi - - type: Armor - modifiers: - coefficients: - Slash: 0.9 - Piercing: 0.9 - type: entity parent: ClothingUniformBase id: ClothingUniformJumpsuitHoSAlt name: head of security's turtleneck - description: It's a turtleneck worn by those strong and disciplined enough to achieve the position of Head of Security. Its sturdy fabric provides minor protection from slash and pierce damage. + description: It's a turtleneck worn by those strong and disciplined enough to achieve the position of Head of Security. components: - type: Sprite sprite: Clothing/Uniforms/Jumpsuit/hos_alt.rsi - type: Clothing sprite: Clothing/Uniforms/Jumpsuit/hos_alt.rsi - - type: Armor - modifiers: - coefficients: - Slash: 0.9 - Piercing: 0.9 - type: entity parent: ClothingUniformBase From 9849737e5a244ddcba3db92b14de6847e6c54388 Mon Sep 17 00:00:00 2001 From: TemporalOroboros Date: Wed, 21 Jun 2023 07:31:19 -0700 Subject: [PATCH 397/474] Cleans up warnings in disposals (#17419) --- .../Disposal/Systems/DisposalUnitSystem.cs | 42 ++-- .../Tests/Disposal/DisposalUnitTest.cs | 74 ++++--- .../AtmosphereSystem.Processing.cs | 1 - .../Disposal/Mailing/MailingUnitSystem.cs | 24 +-- .../Tube/Components/DisposalEntryComponent.cs | 26 +-- .../Components/DisposalRouterComponent.cs | 60 +----- .../Components/DisposalTaggerComponent.cs | 53 +---- .../Tube/Components/DisposalTubeComponent.cs | 50 +---- .../Disposal/Tube/DisposalTubeSystem.cs | 185 +++++++++++++++--- .../GetDisposalsConnectableDirectionsEvent.cs | 4 +- .../Components/DisposalHolderComponent.cs | 45 +---- .../Unit/Components/DisposalUnitComponent.cs | 6 + .../Unit/EntitySystems/DisposableSystem.cs | 89 +++++++-- .../Unit/EntitySystems/DisposalUnitSystem.cs | 94 +++++---- .../MailingUnitBoundUserInterfaceState.cs | 20 +- .../Disposal/MailingUnitUiMessages.cs | 4 +- .../Disposal/SharedDisposalUnitSystem.cs | 6 +- 17 files changed, 396 insertions(+), 387 deletions(-) diff --git a/Content.Client/Disposal/Systems/DisposalUnitSystem.cs b/Content.Client/Disposal/Systems/DisposalUnitSystem.cs index 2a531e9a41..7f950439cc 100644 --- a/Content.Client/Disposal/Systems/DisposalUnitSystem.cs +++ b/Content.Client/Disposal/Systems/DisposalUnitSystem.cs @@ -9,12 +9,12 @@ namespace Content.Client.Disposal.Systems; public sealed class DisposalUnitSystem : SharedDisposalUnitSystem { - [Dependency] private readonly AppearanceSystem AppearanceSystem = default!; - [Dependency] private readonly AnimationPlayerSystem AnimationSystem = default!; - [Dependency] private readonly SharedAudioSystem SoundSystem = default!; + [Dependency] private readonly AppearanceSystem _appearanceSystem = default!; + [Dependency] private readonly AnimationPlayerSystem _animationSystem = default!; + [Dependency] private readonly SharedAudioSystem _audioSystem = default!; private const string AnimationKey = "disposal_unit_animation"; - private List PressuringDisposals = new(); + private readonly List _pressuringDisposals = new(); public override void Initialize() { @@ -28,25 +28,25 @@ public void UpdateActive(EntityUid disposalEntity, bool active) { if (active) { - if (!PressuringDisposals.Contains(disposalEntity)) - PressuringDisposals.Add(disposalEntity); + if (!_pressuringDisposals.Contains(disposalEntity)) + _pressuringDisposals.Add(disposalEntity); } else { - PressuringDisposals.Remove(disposalEntity); + _pressuringDisposals.Remove(disposalEntity); } } public override void FrameUpdate(float frameTime) { base.FrameUpdate(frameTime); - for (var i = PressuringDisposals.Count - 1; i >= 0; i--) + for (var i = _pressuringDisposals.Count - 1; i >= 0; i--) { - var disposal = PressuringDisposals[i]; + var disposal = _pressuringDisposals[i]; if (!UpdateInterface(disposal)) continue; - PressuringDisposals.RemoveAt(i); + _pressuringDisposals.RemoveAt(i); } } @@ -79,17 +79,18 @@ private void OnComponentInit(EntityUid uid, DisposalUnitComponent disposalUnit, if (!TryComp(uid, out var sprite)) return; - if(!sprite.LayerMapTryGet(DisposalUnitVisualLayers.Base, out var baseLayerIdx)) + if (!sprite.LayerMapTryGet(DisposalUnitVisualLayers.Base, out var baseLayerIdx)) return; // Couldn't find the "normal" layer to return to after flush animation - if(!sprite.LayerMapTryGet(DisposalUnitVisualLayers.BaseFlush, out var flushLayerIdx)) + if (!sprite.LayerMapTryGet(DisposalUnitVisualLayers.BaseFlush, out var flushLayerIdx)) return; // Couldn't find the flush animation layer var originalBaseState = sprite.LayerGetState(baseLayerIdx); var flushState = sprite.LayerGetState(flushLayerIdx); // Setup the flush animation to play - disposalUnit.FlushAnimation = new Animation { + disposalUnit.FlushAnimation = new Animation + { Length = TimeSpan.FromSeconds(disposalUnit.FlushTime), AnimationTracks = { new AnimationTrackSpriteFlick { @@ -109,9 +110,10 @@ private void OnComponentInit(EntityUid uid, DisposalUnitComponent disposalUnit, if (disposalUnit.FlushSound != null) { disposalUnit.FlushAnimation.AnimationTracks.Add( - new AnimationTrackPlaySound { + new AnimationTrackPlaySound + { KeyFrames = { - new AnimationTrackPlaySound.KeyFrame(SoundSystem.GetSound(disposalUnit.FlushSound), 0) + new AnimationTrackPlaySound.KeyFrame(_audioSystem.GetSound(disposalUnit.FlushSound), 0) } }); } @@ -134,7 +136,7 @@ private void OnAppearanceChange(EntityUid uid, DisposalUnitComponent unit, ref A // Update visuals and tick animation private void UpdateState(EntityUid uid, DisposalUnitComponent unit, SpriteComponent sprite) { - if (!AppearanceSystem.TryGetData(uid, Visuals.VisualState, out var state)) + if (!_appearanceSystem.TryGetData(uid, Visuals.VisualState, out var state)) { return; } @@ -146,20 +148,20 @@ private void UpdateState(EntityUid uid, DisposalUnitComponent unit, SpriteCompon if (state == VisualState.Flushing) { - if (!AnimationSystem.HasRunningAnimation(uid, AnimationKey)) + if (!_animationSystem.HasRunningAnimation(uid, AnimationKey)) { - AnimationSystem.Play(uid, unit.FlushAnimation, AnimationKey); + _animationSystem.Play(uid, unit.FlushAnimation, AnimationKey); } } - if (!AppearanceSystem.TryGetData(uid, Visuals.Handle, out var handleState)) + if (!_appearanceSystem.TryGetData(uid, Visuals.Handle, out var handleState)) { handleState = HandleState.Normal; } sprite.LayerSetVisible(DisposalUnitVisualLayers.OverlayEngaged, handleState != HandleState.Normal); - if (!AppearanceSystem.TryGetData(uid, Visuals.Light, out var lightState)) + if (!_appearanceSystem.TryGetData(uid, Visuals.Light, out var lightState)) { lightState = LightStates.Off; } diff --git a/Content.IntegrationTests/Tests/Disposal/DisposalUnitTest.cs b/Content.IntegrationTests/Tests/Disposal/DisposalUnitTest.cs index 4d8616bd81..3c9fdddb93 100644 --- a/Content.IntegrationTests/Tests/Disposal/DisposalUnitTest.cs +++ b/Content.IntegrationTests/Tests/Disposal/DisposalUnitTest.cs @@ -8,7 +8,6 @@ using Content.Shared.Disposal; using NUnit.Framework; using Robust.Shared.GameObjects; -using Robust.Shared.IoC; using Robust.Shared.Reflection; namespace Content.IntegrationTests.Tests.Disposal @@ -33,22 +32,20 @@ public override void Initialize() var unitTransform = EntityManager.GetComponent(unit); // Not in a tube yet Assert.That(insertTransform.ParentUid, Is.EqualTo(unit)); - }, after: new[] {typeof(SharedDisposalUnitSystem)}); + }, after: new[] { typeof(SharedDisposalUnitSystem) }); } } - private void UnitInsert(DisposalUnitComponent unit, bool result, params EntityUid[] entities) + private static void UnitInsert(EntityUid uid, DisposalUnitComponent unit, bool result, DisposalUnitSystem disposalSystem, params EntityUid[] entities) { - var system = EntitySystem.Get(); - foreach (var entity in entities) { - Assert.That(system.CanInsert(unit, entity), Is.EqualTo(result)); - system.TryInsert(unit.Owner, entity, null); + Assert.That(disposalSystem.CanInsert(uid, unit, entity), Is.EqualTo(result)); + disposalSystem.TryInsert(uid, entity, null); } } - private void UnitContains(DisposalUnitComponent unit, bool result, params EntityUid[] entities) + private static void UnitContains(DisposalUnitComponent unit, bool result, params EntityUid[] entities) { foreach (var entity in entities) { @@ -56,19 +53,22 @@ private void UnitContains(DisposalUnitComponent unit, bool result, params Entity } } - private void UnitInsertContains(DisposalUnitComponent unit, bool result, params EntityUid[] entities) + private static void UnitInsertContains(EntityUid uid, DisposalUnitComponent unit, bool result, DisposalUnitSystem disposalSystem, params EntityUid[] entities) { - UnitInsert(unit, result, entities); + UnitInsert(uid, unit, result, disposalSystem, entities); UnitContains(unit, result, entities); } - private void Flush(EntityUid unitEntity, DisposalUnitComponent unit, bool result, params EntityUid[] entities) + private static void Flush(EntityUid unitEntity, DisposalUnitComponent unit, bool result, DisposalUnitSystem disposalSystem, params EntityUid[] entities) { - Assert.That(unit.Container.ContainedEntities, Is.SupersetOf(entities)); - Assert.That(entities.Length, Is.EqualTo(unit.Container.ContainedEntities.Count)); + Assert.Multiple(() => + { + Assert.That(unit.Container.ContainedEntities, Is.SupersetOf(entities)); + Assert.That(entities, Has.Length.EqualTo(unit.Container.ContainedEntities.Count)); - Assert.That(result, Is.EqualTo(EntitySystem.Get().TryFlush(unitEntity, unit))); - Assert.That(result || entities.Length == 0, Is.EqualTo(unit.Container.ContainedEntities.Count == 0)); + Assert.That(result, Is.EqualTo(disposalSystem.TryFlush(unitEntity, unit))); + Assert.That(result || entities.Length == 0, Is.EqualTo(unit.Container.ContainedEntities.Count == 0)); + }); } private const string Prototypes = @" @@ -147,7 +147,10 @@ private void Flush(EntityUid unitEntity, DisposalUnitComponent unit, bool result public async Task Test() { await using var pairTracker = await PoolManager.GetServerClient(new PoolSettings - {NoClient = true, ExtraPrototypes = Prototypes}); + { + NoClient = true, + ExtraPrototypes = Prototypes + }); var server = pairTracker.Pair.Server; var testMap = await PoolManager.CreateTestMap(pairTracker); @@ -161,6 +164,8 @@ public async Task Test() DisposalUnitComponent unitComponent = default!; var entityManager = server.ResolveDependency(); + var xformSystem = entityManager.System(); + var disposalSystem = entityManager.System(); await server.WaitAssertion(() => { @@ -174,62 +179,69 @@ await server.WaitAssertion(() => // Test for components existing unitUid = disposalUnit; - Assert.True(entityManager.TryGetComponent(disposalUnit, out unitComponent)); - Assert.True(entityManager.HasComponent(disposalTrunk)); + Assert.Multiple(() => + { + Assert.That(entityManager.TryGetComponent(disposalUnit, out unitComponent)); + Assert.That(entityManager.HasComponent(disposalTrunk)); + }); // Can't insert, unanchored and unpowered - entityManager.GetComponent(unitUid).Anchored = false; - UnitInsertContains(unitComponent, false, human, wrench, disposalUnit, disposalTrunk); + xformSystem.Unanchor(unitUid, entityManager.GetComponent(unitUid)); + UnitInsertContains(disposalUnit, unitComponent, false, disposalSystem, human, wrench, disposalUnit, disposalTrunk); }); await server.WaitAssertion(() => { // Anchor the disposal unit - entityManager.GetComponent(unitUid).Anchored = true; + xformSystem.AnchorEntity(unitUid, entityManager.GetComponent(unitUid)); // No power - Assert.False(unitComponent.Powered); + Assert.That(unitComponent.Powered, Is.False); // Can't insert the trunk or the unit into itself - UnitInsertContains(unitComponent, false, disposalUnit, disposalTrunk); + UnitInsertContains(unitUid, unitComponent, false, disposalSystem, disposalUnit, disposalTrunk); // Can insert mobs and items - UnitInsertContains(unitComponent, true, human, wrench); + UnitInsertContains(unitUid, unitComponent, true, disposalSystem, human, wrench); }); await server.WaitAssertion(() => { // Move the disposal trunk away - entityManager.GetComponent(disposalTrunk).WorldPosition += (1, 0); + var xform = entityManager.GetComponent(disposalTrunk); + var worldPos = xformSystem.GetWorldPosition(disposalTrunk); + xformSystem.SetWorldPosition(xform, worldPos + (1, 0)); // Fail to flush with a mob and an item - Flush(disposalUnit, unitComponent, false, human, wrench); + Flush(disposalUnit, unitComponent, false, disposalSystem, human, wrench); }); await server.WaitAssertion(() => { // Move the disposal trunk back - entityManager.GetComponent(disposalTrunk).WorldPosition -= (1, 0); + var xform = entityManager.GetComponent(disposalTrunk); + var worldPos = xformSystem.GetWorldPosition(disposalTrunk); + xformSystem.SetWorldPosition(xform, worldPos - (1, 0)); // Fail to flush with a mob and an item, no power - Flush(disposalUnit, unitComponent, false, human, wrench); + Flush(disposalUnit, unitComponent, false, disposalSystem, human, wrench); }); await server.WaitAssertion(() => { // Remove power need - Assert.True(entityManager.TryGetComponent(disposalUnit, out ApcPowerReceiverComponent power)); + Assert.That(entityManager.TryGetComponent(disposalUnit, out ApcPowerReceiverComponent power)); power!.NeedsPower = false; unitComponent.Powered = true; //Power state changed event doesn't get fired smh // Flush with a mob and an item - Flush(disposalUnit, unitComponent, true, human, wrench); + Flush(disposalUnit, unitComponent, true, disposalSystem, human, wrench); }); await server.WaitAssertion(() => { // Re-pressurizing - Flush(disposalUnit, unitComponent, false); + Flush(disposalUnit, unitComponent, false, disposalSystem); }); await pairTracker.CleanReturnAsync(); } diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Processing.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Processing.cs index df63727532..f5b06a5f0c 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Processing.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Processing.cs @@ -7,7 +7,6 @@ using Robust.Shared.Map.Components; using Robust.Shared.Physics.Components; using Robust.Shared.Timing; -using static Content.Shared.Disposal.Components.SharedDisposalUnitComponent; namespace Content.Server.Atmos.EntitySystems { diff --git a/Content.Server/Disposal/Mailing/MailingUnitSystem.cs b/Content.Server/Disposal/Mailing/MailingUnitSystem.cs index ebb9c69d4f..bc70bcb6dc 100644 --- a/Content.Server/Disposal/Mailing/MailingUnitSystem.cs +++ b/Content.Server/Disposal/Mailing/MailingUnitSystem.cs @@ -58,7 +58,7 @@ private void OnPacketReceived(EntityUid uid, MailingUnitComponent component, Dev case NetCmdResponse when args.Data.TryGetValue(NetTag, out string? tag): //Add the received tag request response to the list of targets component.TargetList.Add(tag); - UpdateUserInterface(component); + UpdateUserInterface(uid, component); break; } } @@ -146,7 +146,7 @@ private void OnConfigurationUpdated(EntityUid uid, MailingUnitComponent componen } component.Tag = configuration[TagConfigurationKey]; - UpdateUserInterface(component); + UpdateUserInterface(uid, component); } private void HandleActivate(EntityUid uid, MailingUnitComponent component, ActivateInWorldEvent args) @@ -158,7 +158,8 @@ private void HandleActivate(EntityUid uid, MailingUnitComponent component, Activ args.Handled = true; UpdateTargetList(uid, component); - _userInterfaceSystem.GetUiOrNull(uid, MailingUnitUiKey.Key)?.Open(actor.PlayerSession); + if (_userInterfaceSystem.TryGetUi(uid, MailingUnitUiKey.Key, out var bui)) + _userInterfaceSystem.OpenUi(bui, actor.PlayerSession); } /// @@ -167,28 +168,23 @@ private void HandleActivate(EntityUid uid, MailingUnitComponent component, Activ private void OnDisposalUnitUIStateChange(EntityUid uid, MailingUnitComponent component, DisposalUnitUIStateUpdatedEvent args) { component.DisposalUnitInterfaceState = args.State; - UpdateUserInterface(component); + UpdateUserInterface(uid, component); } - private void UpdateUserInterface(MailingUnitComponent component) + private void UpdateUserInterface(EntityUid uid, MailingUnitComponent component) { if (component.DisposalUnitInterfaceState == null) return; var state = new MailingUnitBoundUserInterfaceState(component.DisposalUnitInterfaceState, component.Target, component.TargetList, component.Tag); - component.Owner.GetUIOrNull(MailingUnitUiKey.Key)?.SetState(state); + if (_userInterfaceSystem.TryGetUi(uid, MailingUnitUiKey.Key, out var bui)) + _userInterfaceSystem.SetUiState(bui, state); } private void OnTargetSelected(EntityUid uid, MailingUnitComponent component, TargetSelectedMessage args) { - if (string.IsNullOrEmpty(args.target)) - { - component.Target = null; - } - - component.Target = args.target; - UpdateUserInterface(component); - + component.Target = args.Target; + UpdateUserInterface(uid, component); } /// diff --git a/Content.Server/Disposal/Tube/Components/DisposalEntryComponent.cs b/Content.Server/Disposal/Tube/Components/DisposalEntryComponent.cs index a9fc1ae4cf..3223de35db 100644 --- a/Content.Server/Disposal/Tube/Components/DisposalEntryComponent.cs +++ b/Content.Server/Disposal/Tube/Components/DisposalEntryComponent.cs @@ -1,6 +1,3 @@ -using System.Linq; -using Content.Server.Atmos.EntitySystems; -using Content.Server.Disposal.Unit.Components; using Content.Server.Disposal.Unit.EntitySystems; namespace Content.Server.Disposal.Tube.Components @@ -9,27 +6,6 @@ namespace Content.Server.Disposal.Tube.Components [Access(typeof(DisposalTubeSystem), typeof(DisposalUnitSystem))] public sealed class DisposalEntryComponent : Component { - [Dependency] private readonly IEntityManager _entMan = default!; - - private const string HolderPrototypeId = "DisposalHolder"; - - public bool TryInsert(DisposalUnitComponent from, IEnumerable? tags = default) - { - var holder = _entMan.SpawnEntity(HolderPrototypeId, _entMan.GetComponent(Owner).MapPosition); - var holderComponent = _entMan.GetComponent(holder); - - foreach (var entity in from.Container.ContainedEntities.ToArray()) - { - holderComponent.TryInsert(entity); - } - - EntitySystem.Get().Merge(holderComponent.Air, from.Air); - from.Air.Clear(); - - if (tags != default) - holderComponent.Tags.UnionWith(tags); - - return EntitySystem.Get().EnterTube((holderComponent).Owner, Owner, holderComponent); - } + public const string HolderPrototypeId = "DisposalHolder"; } } diff --git a/Content.Server/Disposal/Tube/Components/DisposalRouterComponent.cs b/Content.Server/Disposal/Tube/Components/DisposalRouterComponent.cs index 1f5214282f..6ab7e3d3be 100644 --- a/Content.Server/Disposal/Tube/Components/DisposalRouterComponent.cs +++ b/Content.Server/Disposal/Tube/Components/DisposalRouterComponent.cs @@ -17,63 +17,7 @@ public sealed class DisposalRouterComponent : DisposalJunctionComponent [DataField("tags")] public HashSet Tags = new(); - [ViewVariables] - public bool Anchored => - !_entMan.TryGetComponent(Owner, out PhysicsComponent? physics) || - physics.BodyType == BodyType.Static; - - [ViewVariables] public BoundUserInterface? UserInterface => Owner.GetUIOrNull(DisposalRouterUiKey.Key); - - [DataField("clickSound")] private SoundSpecifier _clickSound = new SoundPathSpecifier("/Audio/Machines/machine_switch.ogg"); - - protected override void Initialize() - { - base.Initialize(); - - if (UserInterface != null) - { - UserInterface.OnReceiveMessage += OnUiReceiveMessage; - } - } - - /// - /// Handles ui messages from the client. For things such as button presses - /// which interact with the world and require server action. - /// - /// A user interface message from the client. - private void OnUiReceiveMessage(ServerBoundUserInterfaceMessage obj) - { - if (obj.Session.AttachedEntity == null) - { - return; - } - - var msg = (UiActionMessage) obj.Message; - - if (!Anchored) - return; - - //Check for correct message and ignore maleformed strings - if (msg.Action == UiAction.Ok && TagRegex.IsMatch(msg.Tags)) - { - Tags.Clear(); - foreach (var tag in msg.Tags.Split(',', StringSplitOptions.RemoveEmptyEntries)) - { - Tags.Add(tag.Trim()); - ClickSound(); - } - } - } - - private void ClickSound() - { - SoundSystem.Play(_clickSound.GetSound(), Filter.Pvs(Owner), Owner, AudioParams.Default.WithVolume(-2f)); - } - - protected override void OnRemove() - { - UserInterface?.CloseAll(); - base.OnRemove(); - } + [DataField("clickSound")] + public SoundSpecifier ClickSound = new SoundPathSpecifier("/Audio/Machines/machine_switch.ogg"); } } diff --git a/Content.Server/Disposal/Tube/Components/DisposalTaggerComponent.cs b/Content.Server/Disposal/Tube/Components/DisposalTaggerComponent.cs index 1c37ae25cc..a1fbade5e7 100644 --- a/Content.Server/Disposal/Tube/Components/DisposalTaggerComponent.cs +++ b/Content.Server/Disposal/Tube/Components/DisposalTaggerComponent.cs @@ -12,60 +12,11 @@ namespace Content.Server.Disposal.Tube.Components [RegisterComponent] public sealed class DisposalTaggerComponent : DisposalTransitComponent { - [Dependency] private readonly IEntityManager _entMan = default!; - [ViewVariables(VVAccess.ReadWrite)] [DataField("tag")] public string Tag = ""; - [ViewVariables] - public bool Anchored => - !_entMan.TryGetComponent(Owner, out PhysicsComponent? physics) || - physics.BodyType == BodyType.Static; - - [ViewVariables] public BoundUserInterface? UserInterface => Owner.GetUIOrNull(DisposalTaggerUiKey.Key); - - [DataField("clickSound")] private SoundSpecifier _clickSound = new SoundPathSpecifier("/Audio/Machines/machine_switch.ogg"); - - protected override void Initialize() - { - base.Initialize(); - - if (UserInterface != null) - { - UserInterface.OnReceiveMessage += OnUiReceiveMessage; - } - } - - /// - /// Handles ui messages from the client. For things such as button presses - /// which interact with the world and require server action. - /// - /// A user interface message from the client. - private void OnUiReceiveMessage(ServerBoundUserInterfaceMessage obj) - { - var msg = (UiActionMessage) obj.Message; - - if (!Anchored) - return; - - //Check for correct message and ignore maleformed strings - if (msg.Action == UiAction.Ok && TagRegex.IsMatch(msg.Tag)) - { - Tag = msg.Tag; - ClickSound(); - } - } - - private void ClickSound() - { - SoundSystem.Play(_clickSound.GetSound(), Filter.Pvs(Owner), Owner, AudioParams.Default.WithVolume(-2f)); - } - - protected override void OnRemove() - { - base.OnRemove(); - UserInterface?.CloseAll(); - } + [DataField("clickSound")] + public SoundSpecifier ClickSound = new SoundPathSpecifier("/Audio/Machines/machine_switch.ogg"); } } diff --git a/Content.Server/Disposal/Tube/Components/DisposalTubeComponent.cs b/Content.Server/Disposal/Tube/Components/DisposalTubeComponent.cs index f6bfc00a63..c673e9cca5 100644 --- a/Content.Server/Disposal/Tube/Components/DisposalTubeComponent.cs +++ b/Content.Server/Disposal/Tube/Components/DisposalTubeComponent.cs @@ -26,53 +26,7 @@ public sealed class DisposalTubeComponent : Component /// Container of entities that are currently inside this tube /// [ViewVariables] - public Container Contents { get; private set; } = default!; - - // TODO: Make disposal pipes extend the grid - // ??? - public void Connect() - { - if (Connected) - { - return; - } - - Connected = true; - } - - public void Disconnect() - { - if (!Connected) - { - return; - } - - Connected = false; - - foreach (var entity in Contents.ContainedEntities.ToArray()) - { - if (!_entMan.TryGetComponent(entity, out DisposalHolderComponent? holder)) - { - continue; - } - - EntitySystem.Get().ExitDisposals((holder).Owner); - } - } - - protected override void Initialize() - { - base.Initialize(); - - Contents = ContainerHelpers.EnsureContainer(Owner, ContainerId); - Owner.EnsureComponent(); - } - - protected override void OnRemove() - { - base.OnRemove(); - - Disconnect(); - } + [Access(typeof(DisposalTubeSystem), typeof(DisposableSystem))] + public Container Contents { get; set; } = default!; } } diff --git a/Content.Server/Disposal/Tube/DisposalTubeSystem.cs b/Content.Server/Disposal/Tube/DisposalTubeSystem.cs index aea901ee1f..8bd31ce2d6 100644 --- a/Content.Server/Disposal/Tube/DisposalTubeSystem.cs +++ b/Content.Server/Disposal/Tube/DisposalTubeSystem.cs @@ -1,19 +1,26 @@ using System.Linq; using System.Text; +using Content.Server.Atmos.EntitySystems; using Content.Server.Construction.Completions; using Content.Server.Disposal.Tube.Components; +using Content.Server.Disposal.Unit.Components; +using Content.Server.Disposal.Unit.EntitySystems; using Content.Server.Popups; using Content.Server.UserInterface; using Content.Shared.Destructible; using Content.Shared.Disposal.Components; using Content.Shared.Hands.Components; using Content.Shared.Movement.Events; -using Content.Shared.Popups; +using Robust.Server.GameObjects; using Robust.Shared.Audio; +using Robust.Shared.Containers; using Robust.Shared.Map; -using Robust.Shared.Player; +using Robust.Shared.Physics; +using Robust.Shared.Physics.Components; using Robust.Shared.Random; using Robust.Shared.Timing; +using static Content.Shared.Disposal.Components.SharedDisposalRouterComponent; +using static Content.Shared.Disposal.Components.SharedDisposalTaggerComponent; namespace Content.Server.Disposal.Tube { @@ -24,11 +31,18 @@ public sealed class DisposalTubeSystem : EntitySystem [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly SharedAppearanceSystem _appearanceSystem = default!; [Dependency] private readonly PopupSystem _popups = default!; - + [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; + [Dependency] private readonly SharedAudioSystem _audioSystem = default!; + [Dependency] private readonly DisposableSystem _disposableSystem = default!; + [Dependency] private readonly SharedContainerSystem _containerSystem = default!; + [Dependency] private readonly AtmosphereSystem _atmosSystem = default!; public override void Initialize() { base.Initialize(); + SubscribeLocalEvent(OnComponentInit); + SubscribeLocalEvent(OnComponentRemove); + SubscribeLocalEvent(OnAnchorChange); SubscribeLocalEvent(OnRelayMovement); SubscribeLocalEvent(OnBreak); @@ -44,17 +58,90 @@ public override void Initialize() SubscribeLocalEvent(OnGetJunctionConnectableDirections); SubscribeLocalEvent(OnGetJunctionNextDirection); + SubscribeLocalEvent(OnComponentRemove); SubscribeLocalEvent(OnGetRouterConnectableDirections); SubscribeLocalEvent(OnGetRouterNextDirection); SubscribeLocalEvent(OnGetTransitConnectableDirections); SubscribeLocalEvent(OnGetTransitNextDirection); + SubscribeLocalEvent(OnComponentRemove); SubscribeLocalEvent(OnGetTaggerConnectableDirections); SubscribeLocalEvent(OnGetTaggerNextDirection); SubscribeLocalEvent(OnOpenRouterUIAttempt); SubscribeLocalEvent(OnOpenTaggerUIAttempt); + + SubscribeLocalEvent(OnUiAction); + SubscribeLocalEvent(OnUiAction); + } + + + /// + /// Handles ui messages from the client. For things such as button presses + /// which interact with the world and require server action. + /// + /// A user interface message from the client. + private void OnUiAction(EntityUid uid, DisposalTaggerComponent tagger, SharedDisposalTaggerComponent.UiActionMessage msg) + { + if (!DisposalTaggerUiKey.Key.Equals(msg.UiKey)) + return; + if (TryComp(uid, out var physBody) && physBody.BodyType != BodyType.Static) + return; + + //Check for correct message and ignore maleformed strings + if (msg.Action == SharedDisposalTaggerComponent.UiAction.Ok && SharedDisposalTaggerComponent.TagRegex.IsMatch(msg.Tag)) + { + tagger.Tag = msg.Tag; + _audioSystem.PlayPvs(tagger.ClickSound, uid, AudioParams.Default.WithVolume(-2f)); + } + } + + + /// + /// Handles ui messages from the client. For things such as button presses + /// which interact with the world and require server action. + /// + /// A user interface message from the client. + private void OnUiAction(EntityUid uid, DisposalRouterComponent router, SharedDisposalRouterComponent.UiActionMessage msg) + { + if (!DisposalRouterUiKey.Key.Equals(msg.UiKey)) + return; + if (!EntityManager.EntityExists(msg.Session.AttachedEntity)) + return; + if (TryComp(uid, out var physBody) && physBody.BodyType != BodyType.Static) + return; + + //Check for correct message and ignore maleformed strings + if (msg.Action == SharedDisposalRouterComponent.UiAction.Ok && SharedDisposalRouterComponent.TagRegex.IsMatch(msg.Tags)) + { + router.Tags.Clear(); + foreach (var tag in msg.Tags.Split(',', StringSplitOptions.RemoveEmptyEntries)) + { + router.Tags.Add(tag.Trim()); + _audioSystem.PlayPvs(router.ClickSound, uid, AudioParams.Default.WithVolume(-2f)); + } + } + } + + private void OnComponentInit(EntityUid uid, DisposalTubeComponent tube, ComponentInit args) + { + tube.Contents = _containerSystem.EnsureContainer(uid, tube.ContainerId); + } + + private void OnComponentRemove(EntityUid uid, DisposalTubeComponent tube, ComponentRemove args) + { + DisconnectTube(uid, tube); + } + + private void OnComponentRemove(EntityUid uid, DisposalTaggerComponent tagger, ComponentRemove args) + { + _uiSystem.TryCloseAll(uid, DisposalTaggerUiKey.Key); + } + + private void OnComponentRemove(EntityUid uid, DisposalRouterComponent tagger, ComponentRemove args) + { + _uiSystem.TryCloseAll(uid, DisposalRouterUiKey.Key); } private void OnGetBendConnectableDirections(EntityUid uid, DisposalBendComponent component, ref GetDisposalsConnectableDirectionsEvent args) @@ -62,7 +149,7 @@ private void OnGetBendConnectableDirections(EntityUid uid, DisposalBendComponent var direction = Transform(uid).LocalRotation; var side = new Angle(MathHelper.DegreesToRadians(direction.Degrees - 90)); - args.Connectable = new[] {direction.GetDir(), side.GetDir()}; + args.Connectable = new[] { direction.GetDir(), side.GetDir() }; } private void OnGetBendNextDirection(EntityUid uid, DisposalBendComponent component, ref GetDisposalsNextDirectionEvent args) @@ -83,7 +170,7 @@ private void OnGetBendNextDirection(EntityUid uid, DisposalBendComponent compone private void OnGetEntryConnectableDirections(EntityUid uid, DisposalEntryComponent component, ref GetDisposalsConnectableDirectionsEvent args) { - args.Connectable = new[] {Transform(uid).LocalRotation.GetDir()}; + args.Connectable = new[] { Transform(uid).LocalRotation.GetDir() }; } private void OnGetEntryNextDirection(EntityUid uid, DisposalEntryComponent component, ref GetDisposalsNextDirectionEvent args) @@ -150,7 +237,7 @@ private void OnGetTransitConnectableDirections(EntityUid uid, DisposalTransitCom var rotation = Transform(uid).LocalRotation; var opposite = new Angle(rotation.Theta + Math.PI); - args.Connectable = new[] {rotation.GetDir(), opposite.GetDir()}; + args.Connectable = new[] { rotation.GetDir(), opposite.GetDir() }; } private void OnGetTransitNextDirection(EntityUid uid, DisposalTransitComponent component, ref GetDisposalsNextDirectionEvent args) @@ -183,7 +270,7 @@ private void OnGetTaggerNextDirection(EntityUid uid, DisposalTaggerComponent com private void OnDeconstruct(EntityUid uid, DisposalTubeComponent component, ConstructionBeforeDeleteEvent args) { - component.Disconnect(); + DisconnectTube(uid, component); } private void OnStartup(EntityUid uid, DisposalTubeComponent component, ComponentStartup args) @@ -199,19 +286,19 @@ private void OnRelayMovement(EntityUid uid, DisposalTubeComponent component, ref } component.LastClang = _gameTiming.CurTime; - SoundSystem.Play(component.ClangSound.GetSound(), Filter.Pvs(uid), uid); + _audioSystem.PlayPvs(component.ClangSound, uid); } private void OnBreak(EntityUid uid, DisposalTubeComponent component, BreakageEventArgs args) { - component.Disconnect(); + DisconnectTube(uid, component); } private void OnOpenRouterUIAttempt(EntityUid uid, DisposalRouterComponent router, ActivatableUIOpenAttemptEvent args) { if (!TryComp(args.User, out var hands)) { - uid.PopupMessage(args.User, Loc.GetString("disposal-router-window-tag-input-activate-no-hands")); + _popups.PopupClient(Loc.GetString("disposal-router-window-tag-input-activate-no-hands"), uid, args.User); return; } @@ -221,14 +308,14 @@ private void OnOpenRouterUIAttempt(EntityUid uid, DisposalRouterComponent router args.Cancel(); } - UpdateRouterUserInterface(router); + UpdateRouterUserInterface(uid, router); } private void OnOpenTaggerUIAttempt(EntityUid uid, DisposalTaggerComponent tagger, ActivatableUIOpenAttemptEvent args) { if (!TryComp(args.User, out var hands)) { - uid.PopupMessage(args.User, Loc.GetString("disposal-tagger-window-activate-no-hands")); + _popups.PopupClient(Loc.GetString("disposal-tagger-window-activate-no-hands"), uid, args.User); return; } @@ -238,18 +325,21 @@ private void OnOpenTaggerUIAttempt(EntityUid uid, DisposalTaggerComponent tagger args.Cancel(); } - tagger.UserInterface?.SetState(new SharedDisposalTaggerComponent.DisposalTaggerUserInterfaceState(tagger.Tag)); + if (_uiSystem.TryGetUi(uid, SharedDisposalTaggerComponent.DisposalTaggerUiKey.Key, out var bui)) + _uiSystem.SetUiState(bui, new SharedDisposalTaggerComponent.DisposalTaggerUserInterfaceState(tagger.Tag)); } /// /// Gets component data to be used to update the user interface client-side. /// /// Returns a - private void UpdateRouterUserInterface(DisposalRouterComponent router) + private void UpdateRouterUserInterface(EntityUid uid, DisposalRouterComponent router) { + var bui = _uiSystem.GetUiOrNull(uid, SharedDisposalTaggerComponent.DisposalTaggerUiKey.Key); if (router.Tags.Count <= 0) { - router.UserInterface?.SetState(new SharedDisposalRouterComponent.DisposalRouterUserInterfaceState("")); + if (bui is not null) + _uiSystem.SetUiState(bui, new SharedDisposalTaggerComponent.DisposalTaggerUserInterfaceState("")); return; } @@ -263,7 +353,8 @@ private void UpdateRouterUserInterface(DisposalRouterComponent router) taglist.Remove(taglist.Length - 2, 2); - router.UserInterface?.SetState(new SharedDisposalRouterComponent.DisposalRouterUserInterfaceState(taglist.ToString())); + if (bui is not null) + _uiSystem.SetUiState(bui, new SharedDisposalTaggerComponent.DisposalTaggerUserInterfaceState(taglist.ToString())); } private void OnAnchorChange(EntityUid uid, DisposalTubeComponent component, ref AnchorStateChangedEvent args) @@ -275,25 +366,25 @@ private void UpdateAnchored(EntityUid uid, DisposalTubeComponent component, bool { if (anchored) { - component.Connect(); + ConnectTube(uid, component); // TODO this visual data should just generalized into some anchored-visuals system/comp, this has nothing to do with disposal tubes. _appearanceSystem.SetData(uid, DisposalTubeVisuals.VisualState, DisposalTubeVisualState.Anchored); } else { - component.Disconnect(); + DisconnectTube(uid, component); _appearanceSystem.SetData(uid, DisposalTubeVisuals.VisualState, DisposalTubeVisualState.Free); } } - public DisposalTubeComponent? NextTubeFor(EntityUid target, Direction nextDirection, DisposalTubeComponent? targetTube = null) + public EntityUid? NextTubeFor(EntityUid target, Direction nextDirection, DisposalTubeComponent? targetTube = null) { if (!Resolve(target, ref targetTube)) return null; var oppositeDirection = nextDirection.GetOpposite(); - var xform = Transform(targetTube.Owner); + var xform = Transform(target); if (!_mapManager.TryGetGrid(xform.GridUid, out var grid)) return null; @@ -315,12 +406,39 @@ private void UpdateAnchored(EntityUid uid, DisposalTubeComponent component, bool continue; } - return tube; + return entity; } return null; } + public static void ConnectTube(EntityUid _, DisposalTubeComponent tube) + { + if (tube.Connected) + { + return; + } + + tube.Connected = true; + } + + + public void DisconnectTube(EntityUid _, DisposalTubeComponent tube) + { + if (!tube.Connected) + { + return; + } + + tube.Connected = false; + + var query = GetEntityQuery(); + foreach (var entity in tube.Contents.ContainedEntities.ToArray()) + { + if (query.TryGetComponent(entity, out var holder)) + _disposableSystem.ExitDisposals(entity, holder); + } + } public bool CanConnect(EntityUid tubeId, DisposalTubeComponent tube, Direction direction) { @@ -334,7 +452,7 @@ public bool CanConnect(EntityUid tubeId, DisposalTubeComponent tube, Direction d return ev.Connectable.Contains(direction); } - public void PopupDirections(EntityUid tubeId, DisposalTubeComponent tube, EntityUid recipient) + public void PopupDirections(EntityUid tubeId, DisposalTubeComponent _, EntityUid recipient) { var ev = new GetDisposalsConnectableDirectionsEvent(); RaiseLocalEvent(tubeId, ref ev); @@ -342,5 +460,28 @@ public void PopupDirections(EntityUid tubeId, DisposalTubeComponent tube, Entity _popups.PopupEntity(Loc.GetString("disposal-tube-component-popup-directions-text", ("directions", directions)), tubeId, recipient); } + + public bool TryInsert(EntityUid uid, DisposalUnitComponent from, IEnumerable? tags = default, DisposalEntryComponent? entry = null) + { + if (!Resolve(uid, ref entry)) + return false; + + var xform = Transform(uid); + var holder = Spawn(DisposalEntryComponent.HolderPrototypeId, xform.MapPosition); + var holderComponent = Comp(holder); + + foreach (var entity in from.Container.ContainedEntities.ToArray()) + { + _disposableSystem.TryInsert(holder, entity, holderComponent); + } + + _atmosSystem.Merge(holderComponent.Air, from.Air); + from.Air.Clear(); + + if (tags != default) + holderComponent.Tags.UnionWith(tags); + + return _disposableSystem.EnterTube(holder, uid, holderComponent); + } } } diff --git a/Content.Server/Disposal/Tube/GetDisposalsConnectableDirectionsEvent.cs b/Content.Server/Disposal/Tube/GetDisposalsConnectableDirectionsEvent.cs index c2a6fb7075..6139571cee 100644 --- a/Content.Server/Disposal/Tube/GetDisposalsConnectableDirectionsEvent.cs +++ b/Content.Server/Disposal/Tube/GetDisposalsConnectableDirectionsEvent.cs @@ -1,6 +1,4 @@ -using Content.Server.Disposal.Unit.Components; - -namespace Content.Server.Disposal.Tube; +namespace Content.Server.Disposal.Tube; [ByRefEvent] public record struct GetDisposalsConnectableDirectionsEvent diff --git a/Content.Server/Disposal/Unit/Components/DisposalHolderComponent.cs b/Content.Server/Disposal/Unit/Components/DisposalHolderComponent.cs index e6fe9998b2..653d7789b0 100644 --- a/Content.Server/Disposal/Unit/Components/DisposalHolderComponent.cs +++ b/Content.Server/Disposal/Unit/Components/DisposalHolderComponent.cs @@ -1,18 +1,12 @@ using Content.Server.Atmos; using Content.Server.Disposal.Tube.Components; -using Content.Shared.Body.Components; -using Content.Shared.Item; using Robust.Shared.Containers; -using Robust.Shared.Physics.Components; -using Robust.Shared.Physics.Systems; namespace Content.Server.Disposal.Unit.Components { [RegisterComponent] public sealed class DisposalHolderComponent : Component, IGasMixtureHolder { - [Dependency] private readonly IEntityManager _entMan = default!; - public Container Container = null!; /// @@ -29,7 +23,7 @@ public sealed class DisposalHolderComponent : Component, IGasMixtureHolder public float TimeLeft { get; set; } [ViewVariables] - public DisposalTubeComponent? PreviousTube { get; set; } + public EntityUid? PreviousTube { get; set; } [ViewVariables] public Direction PreviousDirection { get; set; } = Direction.Invalid; @@ -38,7 +32,7 @@ public sealed class DisposalHolderComponent : Component, IGasMixtureHolder public Direction PreviousDirectionFrom => (PreviousDirection == Direction.Invalid) ? Direction.Invalid : PreviousDirection.GetOpposite(); [ViewVariables] - public DisposalTubeComponent? CurrentTube { get; set; } + public EntityUid? CurrentTube { get; set; } // CurrentDirection is not null when CurrentTube isn't null. [ViewVariables] @@ -55,39 +49,6 @@ public sealed class DisposalHolderComponent : Component, IGasMixtureHolder public HashSet Tags { get; set; } = new(); [DataField("air")] - public GasMixture Air { get; set; } = new (70); - - protected override void Initialize() - { - base.Initialize(); - - Container = ContainerHelpers.EnsureContainer(Owner, nameof(DisposalHolderComponent)); - } - - private bool CanInsert(EntityUid entity) - { - if (!Container.CanInsert(entity)) - { - return false; - } - - return _entMan.HasComponent(entity) || - _entMan.HasComponent(entity); - } - - public bool TryInsert(EntityUid entity) - { - if (!CanInsert(entity) || !Container.Insert(entity)) - { - return false; - } - - if (_entMan.TryGetComponent(entity, out PhysicsComponent? physics)) - { - _entMan.System().SetCanCollide(entity, false, body: physics); - } - - return true; - } + public GasMixture Air { get; set; } = new(70); } } diff --git a/Content.Server/Disposal/Unit/Components/DisposalUnitComponent.cs b/Content.Server/Disposal/Unit/Components/DisposalUnitComponent.cs index 25e5ad708e..0cd7137362 100644 --- a/Content.Server/Disposal/Unit/Components/DisposalUnitComponent.cs +++ b/Content.Server/Disposal/Unit/Components/DisposalUnitComponent.cs @@ -67,5 +67,11 @@ public sealed class DisposalUnitComponent : SharedDisposalUnitComponent, IGasMix [DataField("air")] public GasMixture Air { get; set; } = new(Atmospherics.CellVolume); + + [ViewVariables] + public TimeSpan NextFlush = TimeSpan.MaxValue; + + [ViewVariables] + public bool AutoFlushing = false; } } diff --git a/Content.Server/Disposal/Unit/EntitySystems/DisposableSystem.cs b/Content.Server/Disposal/Unit/EntitySystems/DisposableSystem.cs index 0f8d14670f..8f42c957f1 100644 --- a/Content.Server/Disposal/Unit/EntitySystems/DisposableSystem.cs +++ b/Content.Server/Disposal/Unit/EntitySystems/DisposableSystem.cs @@ -3,7 +3,10 @@ using Content.Server.Disposal.Tube; using Content.Server.Disposal.Tube.Components; using Content.Server.Disposal.Unit.Components; +using Content.Shared.Body.Components; +using Content.Shared.Item; using JetBrains.Annotations; +using Robust.Shared.Containers; using Robust.Shared.Map; using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Systems; @@ -18,6 +21,50 @@ internal sealed class DisposableSystem : EntitySystem [Dependency] private readonly DisposalTubeSystem _disposalTubeSystem = default!; [Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; [Dependency] private readonly SharedPhysicsSystem _physicsSystem = default!; + [Dependency] private readonly SharedContainerSystem _containerSystem = default!; + [Dependency] private readonly SharedTransformSystem _xformSystem = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnComponentStartup); + } + + private void OnComponentStartup(EntityUid uid, DisposalHolderComponent holder, ComponentStartup args) + { + holder.Container = _containerSystem.EnsureContainer(uid, nameof(DisposalHolderComponent)); + } + + public bool TryInsert(EntityUid uid, EntityUid toInsert, DisposalHolderComponent? holder = null) + { + if (!Resolve(uid, ref holder)) + return false; + if (!CanInsert(uid, toInsert, holder)) + return false; + + if (!holder.Container.Insert(toInsert, EntityManager)) + return false; + + if (TryComp(toInsert, out var physBody)) + _physicsSystem.SetCanCollide(toInsert, false, body: physBody); + + return true; + } + + private bool CanInsert(EntityUid uid, EntityUid toInsert, DisposalHolderComponent? holder = null) + { + if (!Resolve(uid, ref holder)) + return false; + + if (!holder.Container.CanInsert(toInsert)) + { + return false; + } + + return HasComp(toInsert) || + HasComp(toInsert); + } public void ExitDisposals(EntityUid uid, DisposalHolderComponent? holder = null, TransformComponent? holderTransform = null) { @@ -28,7 +75,7 @@ public void ExitDisposals(EntityUid uid, DisposalHolderComponent? holder = null, return; if (holder.IsExitingDisposals) { - Logger.ErrorS("c.s.disposal.holder", "Tried exiting disposals twice. This should never happen."); + Log.Error("Tried exiting disposals twice. This should never happen."); return; } holder.IsExitingDisposals = true; @@ -65,7 +112,7 @@ public void ExitDisposals(EntityUid uid, DisposalHolderComponent? holder = null, if (duc != null) duc.Container.Insert(entity, EntityManager, xform, meta: meta); else - xform.AttachToGridOrMap(); + _xformSystem.AttachToGridOrMap(entity, xform); if (EntityManager.TryGetComponent(entity, out PhysicsComponent? physics)) { @@ -78,7 +125,7 @@ public void ExitDisposals(EntityUid uid, DisposalHolderComponent? holder = null, _disposalUnitSystem.TryEjectContents(disposalId.Value, duc); } - if (_atmosphereSystem.GetContainingMixture(uid, false, true) is {} environment) + if (_atmosphereSystem.GetContainingMixture(uid, false, true) is { } environment) { _atmosphereSystem.Merge(environment, holder.Air); holder.Air.Clear(); @@ -94,7 +141,7 @@ public bool EnterTube(EntityUid holderUid, EntityUid toUid, DisposalHolderCompon return false; if (holder.IsExitingDisposals) { - Logger.ErrorS("c.s.disposal.holder", "Tried entering tube after exiting disposals. This should never happen."); + Log.Error("Tried entering tube after exiting disposals. This should never happen."); return false; } if (!Resolve(toUid, ref to, ref toTransform)) @@ -106,11 +153,11 @@ public bool EnterTube(EntityUid holderUid, EntityUid toUid, DisposalHolderCompon foreach (var ent in holder.Container.ContainedEntities) { var comp = EnsureComp(ent); - comp.Holder = holder.Owner; + comp.Holder = holderUid; } // Insert into next tube - if (!to.Contents.Insert(holder.Owner)) + if (!to.Contents.Insert(holderUid)) { ExitDisposals(holderUid, holder, holderTransform); return false; @@ -121,7 +168,7 @@ public bool EnterTube(EntityUid holderUid, EntityUid toUid, DisposalHolderCompon holder.PreviousTube = holder.CurrentTube; holder.PreviousDirection = holder.CurrentDirection; } - holder.CurrentTube = to; + holder.CurrentTube = toUid; var ev = new GetDisposalsNextDirectionEvent(holder); RaiseLocalEvent(toUid, ref ev); holder.CurrentDirection = ev.Next; @@ -140,13 +187,14 @@ public bool EnterTube(EntityUid holderUid, EntityUid toUid, DisposalHolderCompon public override void Update(float frameTime) { - foreach (var comp in EntityManager.EntityQuery()) + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var holder)) { - UpdateComp(comp, frameTime); + UpdateComp(uid, holder, frameTime); } } - private void UpdateComp(DisposalHolderComponent holder, float frameTime) + private void UpdateComp(EntityUid uid, DisposalHolderComponent holder, float frameTime) { while (frameTime > 0) { @@ -159,40 +207,39 @@ private void UpdateComp(DisposalHolderComponent holder, float frameTime) holder.TimeLeft -= time; frameTime -= time; - var currentTube = holder.CurrentTube; - if (currentTube == null || currentTube.Deleted) + if (!EntityManager.EntityExists(holder.CurrentTube)) { - ExitDisposals((holder).Owner); + ExitDisposals(uid, holder); break; } + var currentTube = holder.CurrentTube!.Value; if (holder.TimeLeft > 0) { var progress = 1 - holder.TimeLeft / holder.StartingTime; - var origin = EntityManager.GetComponent(currentTube.Owner).Coordinates; + var origin = Transform(currentTube).Coordinates; var destination = holder.CurrentDirection.ToVec(); var newPosition = destination * progress; // This is some supreme shit code. - EntityManager.GetComponent(holder.Owner).Coordinates = origin.Offset(newPosition).WithEntityId(currentTube.Owner); - + _xformSystem.SetCoordinates(uid, origin.Offset(newPosition).WithEntityId(currentTube)); continue; } // Past this point, we are performing inter-tube transfer! // Remove current tube content - currentTube.Contents.Remove(holder.Owner, reparent: false, force: true); + Comp(currentTube).Contents.Remove(uid, reparent: false, force: true); // Find next tube - var nextTube = _disposalTubeSystem.NextTubeFor(currentTube.Owner, holder.CurrentDirection); - if (nextTube == null || nextTube.Deleted) + var nextTube = _disposalTubeSystem.NextTubeFor(currentTube, holder.CurrentDirection); + if (!EntityManager.EntityExists(nextTube)) { - ExitDisposals((holder).Owner); + ExitDisposals(uid, holder); break; } // Perform remainder of entry process - if (!EnterTube((holder).Owner, nextTube.Owner, holder)) + if (!EnterTube(uid, nextTube!.Value, holder)) { break; } diff --git a/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs b/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs index 49aa7313a3..1deb292d70 100644 --- a/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs +++ b/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs @@ -2,6 +2,7 @@ using System.Threading; using Content.Server.Administration.Logs; using Content.Server.Atmos.EntitySystems; +using Content.Server.Disposal.Tube; using Content.Server.Disposal.Tube.Components; using Content.Server.Disposal.Unit.Components; using Content.Server.Popups; @@ -29,6 +30,7 @@ using Robust.Shared.Map.Components; using Robust.Shared.Physics.Components; using Robust.Shared.Random; +using Robust.Shared.Timing; using Robust.Shared.Utility; namespace Content.Server.Disposal.Unit.EntitySystems @@ -48,6 +50,9 @@ public sealed class DisposalUnitSystem : SharedDisposalUnitSystem [Dependency] private readonly TransformSystem _transformSystem = default!; [Dependency] private readonly UserInterfaceSystem _ui = default!; [Dependency] private readonly PowerReceiverSystem _power = default!; + [Dependency] private readonly DisposalTubeSystem _disposalTubeSystem = default!; + [Dependency] private readonly IGameTiming _gameTiming = default!; + public override void Initialize() { @@ -92,11 +97,13 @@ private void AddDisposalAltVerbs(EntityUid uid, DisposalUnitComponent component, if (component.Container.ContainedEntities.Count > 0) { // Verbs to flush the unit - AlternativeVerb flushVerb = new(); - flushVerb.Act = () => Engage(uid, component); - flushVerb.Text = Loc.GetString("disposal-flush-verb-get-data-text"); - flushVerb.Icon = new SpriteSpecifier.Texture(new ("/Textures/Interface/VerbIcons/delete_transparent.svg.192dpi.png")); - flushVerb.Priority = 1; + AlternativeVerb flushVerb = new() + { + Act = () => Engage(uid, component), + Text = Loc.GetString("disposal-flush-verb-get-data-text"), + Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/delete_transparent.svg.192dpi.png")), + Priority = 1, + }; args.Verbs.Add(flushVerb); // Verb to eject the contents @@ -143,7 +150,7 @@ private void AddInsertVerb(EntityUid uid, DisposalUnitComponent component, GetVe if (!_actionBlockerSystem.CanDrop(args.User)) return; - if (!CanInsert(component, args.Using.Value)) + if (!CanInsert(uid, component, args.Using.Value)) return; InteractionVerb insertVerb = new() @@ -186,10 +193,11 @@ public void DoInsertDisposalUnit(EntityUid uid, EntityUid toInsert, EntityUid us public override void Update(float frameTime) { base.Update(frameTime); - foreach (var (_, comp) in EntityQuery()) + + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var _, out var unit)) { - var uid = comp.Owner; - if (!Update(uid, comp, frameTime)) + if (!Update(uid, unit, frameTime)) continue; RemComp(uid); @@ -199,7 +207,7 @@ public override void Update(float frameTime) #region UI Handlers private void OnUiButtonPressed(EntityUid uid, DisposalUnitComponent component, SharedDisposalUnitComponent.UiButtonPressedMessage args) { - if (args.Session.AttachedEntity is not {Valid: true} player) + if (args.Session.AttachedEntity is not { Valid: true } player) { return; } @@ -218,7 +226,7 @@ private void OnUiButtonPressed(EntityUid uid, DisposalUnitComponent component, S _power.TogglePower(uid, user: args.Session.AttachedEntity); break; default: - throw new ArgumentOutOfRangeException(); + throw new ArgumentOutOfRangeException($"{ToPrettyString(player):player} attempted to hit a nonexistant button on {ToPrettyString(uid)}"); } } @@ -259,7 +267,7 @@ private void HandleAfterInteractUsing(EntityUid uid, DisposalUnitComponent compo return; } - if (!CanInsert(component, args.Used) || !_handsSystem.TryDropIntoContainer(args.User, args.Used, component.Container)) + if (!CanInsert(uid, component, args.Used) || !_handsSystem.TryDropIntoContainer(args.User, args.Used, component.Container)) { return; } @@ -274,7 +282,7 @@ private void HandleAfterInteractUsing(EntityUid uid, DisposalUnitComponent compo /// private void HandleThrowCollide(EntityUid uid, DisposalUnitComponent component, ThrowHitByEvent args) { - if (!CanInsert(component, args.Thrown) || + if (!CanInsert(uid, component, args.Thrown) || _robustRandom.NextDouble() > 0.75 || !component.Container.Insert(args.Thrown)) { @@ -295,7 +303,7 @@ private void HandleDisposalInit(EntityUid uid, DisposalUnitComponent component, if (!HasComp(uid)) { - Logger.WarningS("VitalComponentMissing", $"Disposal unit {uid} is missing an {nameof(AnchorableComponent)}"); + Log.Warning($"Disposal unit {uid} is missing an {nameof(AnchorableComponent)}"); } } @@ -307,8 +315,7 @@ private void HandleDisposalRemove(EntityUid uid, DisposalUnitComponent component } _ui.TryCloseAll(uid, SharedDisposalUnitComponent.DisposalUnitUiKey.Key); - component.AutomaticEngageToken?.Cancel(); - component.AutomaticEngageToken = null; + component.NextFlush = TimeSpan.MaxValue; component.Container = null!; RemComp(uid); @@ -324,11 +331,10 @@ private void HandlePowerChange(EntityUid uid, DisposalUnitComponent component, r // TODO: Need to check the other stuff. if (!args.Powered) { - component.AutomaticEngageToken?.Cancel(); - component.AutomaticEngageToken = null; + component.NextFlush = TimeSpan.MaxValue; } - HandleStateChange(uid, component, args.Powered && component.State == SharedDisposalUnitComponent.PressureState.Pressurizing); + HandleStateChange(uid, component, args.Powered && (component.State == SharedDisposalUnitComponent.PressureState.Pressurizing || component.NextFlush != TimeSpan.MaxValue)); UpdateVisualState(uid, component); UpdateInterface(uid, component, args.Powered); @@ -341,7 +347,7 @@ private void HandlePowerChange(EntityUid uid, DisposalUnitComponent component, r /// /// Add or remove this disposal from the active ones for updating. /// - public void HandleStateChange(EntityUid uid, DisposalUnitComponent component, bool active) + public void HandleStateChange(EntityUid uid, DisposalUnitComponent _, bool active) { if (active) { @@ -416,20 +422,27 @@ private bool Update(EntityUid uid, DisposalUnitComponent component, float frameT if (component.State == SharedDisposalUnitComponent.PressureState.Pressurizing) { var oldTimeElapsed = oldPressure / PressurePerSecond; - if (oldTimeElapsed < component.FlushTime && (oldTimeElapsed + frameTime) >= component.FlushTime) + if (oldTimeElapsed < component.FlushTime && oldTimeElapsed + frameTime >= component.FlushTime) { // We've crossed over the amount of time it takes to flush. This will switch the // visuals over to a 'Charging' state. UpdateVisualState(uid, component); } } + else if (component.State == SharedDisposalUnitComponent.PressureState.Ready && component.NextFlush < _gameTiming.CurTime) + { + if (!TryFlush(uid, component) && component.AutoFlushing) + TryQueueEngage(uid, component); + else + component.AutoFlushing = false; + } Box2? disposalsBounds = null; var count = component.RecentlyEjected.Count; if (count > 0) { - if (!TryComp(uid, out PhysicsComponent? disposalsBody)) + if (!HasComp(uid)) { component.RecentlyEjected.Clear(); } @@ -442,8 +455,7 @@ private bool Update(EntityUid uid, DisposalUnitComponent component, float frameT for (var i = component.RecentlyEjected.Count - 1; i >= 0; i--) { var ejectedId = component.RecentlyEjected[i]; - if (Exists(ejectedId) && - TryComp(ejectedId, out PhysicsComponent? body)) + if (HasComp(ejectedId)) { // TODO: We need to use a specific collision method (which sloth hasn't coded yet) for actual bounds overlaps. // TODO: Come do this sloth :^) @@ -460,7 +472,7 @@ private bool Update(EntityUid uid, DisposalUnitComponent component, float frameT if (count != component.RecentlyEjected.Count) Dirty(component); - return state == SharedDisposalUnitComponent.PressureState.Ready && component.RecentlyEjected.Count == 0; + return state == SharedDisposalUnitComponent.PressureState.Ready && component.NextFlush == TimeSpan.MaxValue && component.RecentlyEjected.Count == 0; } public bool TryInsert(EntityUid unitId, EntityUid toInsertId, EntityUid? userId, DisposalUnitComponent? unit = null) @@ -474,7 +486,7 @@ public bool TryInsert(EntityUid unitId, EntityUid toInsertId, EntityUid? userId, return false; } - if (!CanInsert(unit, toInsertId)) + if (!CanInsert(unitId, unit, toInsertId)) return false; var delay = userId == toInsertId ? unit.EntryDelay : unit.DraggedEntryDelay; @@ -507,6 +519,8 @@ public bool TryFlush(EntityUid uid, DisposalUnitComponent component) return false; } + component.NextFlush = TimeSpan.MaxValue; + //Allows the MailingUnitSystem to add tags or prevent flushing var beforeFlushArgs = new BeforeDisposalFlushEvent(); RaiseLocalEvent(uid, beforeFlushArgs); @@ -534,17 +548,16 @@ public bool TryFlush(EntityUid uid, DisposalUnitComponent component) var entryComponent = Comp(entry); var indices = _transformSystem.GetGridOrMapTilePosition(uid, xform); - if (_atmosSystem.GetTileMixture(xform.GridUid, xform.MapUid, indices, true) is {Temperature: > 0} environment) + if (_atmosSystem.GetTileMixture(xform.GridUid, xform.MapUid, indices, true) is { Temperature: > 0f } environment) { var transferMoles = 0.1f * (0.25f * Atmospherics.OneAtmosphere * 1.01f - air.Pressure) * air.Volume / (environment.Temperature * Atmospherics.R); component.Air = environment.Remove(transferMoles); } - entryComponent.TryInsert(component, beforeFlushArgs.Tags); + _disposalTubeSystem.TryInsert(entry, component, beforeFlushArgs.Tags); - component.AutomaticEngageToken?.Cancel(); - component.AutomaticEngageToken = null; + component.NextFlush = TimeSpan.MaxValue; if (!component.DisablePressure) { @@ -642,8 +655,7 @@ public void Remove(EntityUid uid, DisposalUnitComponent component, EntityUid toR if (component.Container.ContainedEntities.Count == 0) { - component.AutomaticEngageToken?.Cancel(); - component.AutomaticEngageToken = null; + component.NextFlush = TimeSpan.MaxValue; } if (!component.RecentlyEjected.Contains(toRemove)) @@ -669,7 +681,8 @@ public void Engage(EntityUid uid, DisposalUnitComponent component) if (CanFlush(uid, component)) { - uid.SpawnTimer(component.FlushDelay, () => TryFlush(uid, component)); + component.NextFlush = _gameTiming.CurTime + component.FlushDelay; + EnsureComp(uid); } } @@ -691,9 +704,9 @@ public void TryEjectContents(EntityUid uid, DisposalUnitComponent component) } } - public override bool CanInsert(SharedDisposalUnitComponent component, EntityUid entity) + public override bool CanInsert(EntityUid uid, SharedDisposalUnitComponent component, EntityUid entity) { - if (!base.CanInsert(component, entity) || component is not DisposalUnitComponent serverComp) + if (!base.CanInsert(uid, component, entity) || component is not DisposalUnitComponent serverComp) return false; return serverComp.Container.CanInsert(entity); @@ -709,15 +722,10 @@ public void TryQueueEngage(EntityUid uid, DisposalUnitComponent component) return; } - component.AutomaticEngageToken = new CancellationTokenSource(); + component.NextFlush = _gameTiming.CurTime + component.AutomaticEngageTime; + component.AutoFlushing = true; - uid.SpawnTimer(component.AutomaticEngageTime, () => - { - if (!TryFlush(uid, component)) - { - TryQueueEngage(uid, component); - } - }, component.AutomaticEngageToken.Token); + EnsureComp(uid); } public void AfterInsert(EntityUid uid, DisposalUnitComponent component, EntityUid inserted, EntityUid? user = null) diff --git a/Content.Shared/Disposal/MailingUnitBoundUserInterfaceState.cs b/Content.Shared/Disposal/MailingUnitBoundUserInterfaceState.cs index 4f67af67a4..65be092072 100644 --- a/Content.Shared/Disposal/MailingUnitBoundUserInterfaceState.cs +++ b/Content.Shared/Disposal/MailingUnitBoundUserInterfaceState.cs @@ -4,7 +4,7 @@ namespace Content.Shared.Disposal; [Serializable, NetSerializable] -public sealed class MailingUnitBoundUserInterfaceState: BoundUserInterfaceState, IEquatable +public sealed class MailingUnitBoundUserInterfaceState : BoundUserInterfaceState, IEquatable { public string? Target; public List TargetList; @@ -21,11 +21,25 @@ public MailingUnitBoundUserInterfaceState(SharedDisposalUnitComponent.DisposalUn public bool Equals(MailingUnitBoundUserInterfaceState? other) { - if (ReferenceEquals(null, other)) return false; - if (ReferenceEquals(this, other)) return true; + if (other is null) + return false; + if (ReferenceEquals(this, other)) + return true; return DisposalState.Equals(other.DisposalState) && Target == other.Target && TargetList.Equals(other.TargetList) && Tag == other.Tag; } + + public override bool Equals(object? other) + { + if (other is MailingUnitBoundUserInterfaceState otherState) + return Equals(otherState); + return false; + } + + public override int GetHashCode() + { + return base.GetHashCode(); + } } diff --git a/Content.Shared/Disposal/MailingUnitUiMessages.cs b/Content.Shared/Disposal/MailingUnitUiMessages.cs index 42c3a521a9..0e5047e362 100644 --- a/Content.Shared/Disposal/MailingUnitUiMessages.cs +++ b/Content.Shared/Disposal/MailingUnitUiMessages.cs @@ -14,10 +14,10 @@ public enum MailingUnitUiKey : byte [Serializable, NetSerializable] public sealed class TargetSelectedMessage : BoundUserInterfaceMessage { - public readonly string? target; + public readonly string? Target; public TargetSelectedMessage(string? target) { - this.target = target; + Target = target; } } diff --git a/Content.Shared/Disposal/SharedDisposalUnitSystem.cs b/Content.Shared/Disposal/SharedDisposalUnitSystem.cs index cc573c4243..5e80a85d7c 100644 --- a/Content.Shared/Disposal/SharedDisposalUnitSystem.cs +++ b/Content.Shared/Disposal/SharedDisposalUnitSystem.cs @@ -63,7 +63,7 @@ private void OnCanDragDropOn(EntityUid uid, SharedDisposalUnitComponent componen if (args.Handled) return; - args.CanDrop = CanInsert(component, args.Dragged); + args.CanDrop = CanInsert(uid, component, args.Dragged); args.Handled = true; } @@ -73,9 +73,9 @@ private void OnEmagged(EntityUid uid, SharedDisposalUnitComponent component, ref args.Handled = true; } - public virtual bool CanInsert(SharedDisposalUnitComponent component, EntityUid entity) + public virtual bool CanInsert(EntityUid uid, SharedDisposalUnitComponent component, EntityUid entity) { - if (!EntityManager.GetComponent(component.Owner).Anchored) + if (!EntityManager.GetComponent(uid).Anchored) return false; // TODO: Probably just need a disposable tag. From 362974e81b3c617ad98821927de79bc37678dc70 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 21 Jun 2023 10:31:37 -0400 Subject: [PATCH 398/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 27 +++++++++++++++++---------- 1 file changed, 17 insertions(+), 10 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 206e4ca714..d6294bce86 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,14 +1,4 @@ Entries: -- author: lzk - changes: - - {message: Added ghost sheet craft recipe, type: Add} - id: 3562 - time: '2023-04-29T06:14:46.0000000+00:00' -- author: Vasilis - changes: - - {message: Added LOOC and Emote focus keybinds, type: Add} - id: 3563 - time: '2023-04-29T06:15:42.0000000+00:00' - author: ElectroJr changes: - {message: Fixed a bug that allowed slime corpses/brains to move around after death., @@ -2935,3 +2925,20 @@ Entries: - {message: Fixed usernames not showing up in the round end window., type: Fix} id: 4061 time: '2023-06-21T01:18:16.0000000+00:00' +- author: Whisper + changes: + - {message: The rate of which bleeding wounds passively clot has been doubled. (0.5u + to 1.0u), type: Tweak} + - {message: Max bleed rate has been halved (20u to 10u), type: Tweak} + - {message: blood puddles will always be created at a minimum of 1u of blood lost. + (5u to 1u), type: Tweak} + - {message: 'The refresh rate for all bloodstream effects (Losing blood, Regaining + blood, taking damage, Wound clotting) has been reduced to 3 seconds. This will + mean players will both bleed faster but also recover faster.', type: Tweak} + id: 4062 + time: '2023-06-21T14:30:20.0000000+00:00' +- author: Chief-Engineer + changes: + - {message: Armor has been removed from jumpsuits., type: Tweak} + id: 4063 + time: '2023-06-21T14:30:31.0000000+00:00' From cd949bcb2bdd8622cd62c5c096cd11b972941208 Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Wed, 21 Jun 2023 18:00:53 +0300 Subject: [PATCH 399/474] some more netsync: false removing (#17472) Co-authored-by: metalgearsloth --- Resources/Prototypes/Entities/Objects/Misc/spider_web.yml | 1 - .../Entities/Objects/Specific/Mech/mech_construction.yml | 1 - Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml | 1 - 3 files changed, 3 deletions(-) diff --git a/Resources/Prototypes/Entities/Objects/Misc/spider_web.yml b/Resources/Prototypes/Entities/Objects/Misc/spider_web.yml index 3f669bf2f2..d0178e70c3 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/spider_web.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/spider_web.yml @@ -94,7 +94,6 @@ - state: spider_web_clown_1 map: ["spiderWebLayer"] drawdepth: WallMountedItems - netsync: false - type: Appearance - type: GenericVisualizer visuals: diff --git a/Resources/Prototypes/Entities/Objects/Specific/Mech/mech_construction.yml b/Resources/Prototypes/Entities/Objects/Specific/Mech/mech_construction.yml index df6ca8e88c..10aa03f662 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Mech/mech_construction.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Mech/mech_construction.yml @@ -292,7 +292,6 @@ - type: Sprite drawdepth: Items noRot: false - netsync: false sprite: Objects/Specific/Mech/hamtr_construction.rsi - type: entity diff --git a/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml b/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml index 7007004d44..8d1355de01 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml @@ -154,7 +154,6 @@ description: "An experimental mech which uses a neuralink to interface directly to a hamsters brain." components: - type: Sprite - netsync: false drawdepth: Mobs noRot: true sprite: Objects/Specific/Mech/mecha.rsi From 3f946bb1e597260d6d1eca8a763546b43ce210cb Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Wed, 21 Jun 2023 21:44:17 +0300 Subject: [PATCH 400/474] secure windoor id standartization (#17531) * Update windoor.yml * comit --- .../Structures/Doors/Windoors/windoor.yml | 30 +++++++++---------- Resources/migration.yml | 14 +++++++++ 2 files changed, 29 insertions(+), 15 deletions(-) diff --git a/Resources/Prototypes/Entities/Structures/Doors/Windoors/windoor.yml b/Resources/Prototypes/Entities/Structures/Doors/Windoors/windoor.yml index f30472710d..75162c022a 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Windoors/windoor.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Windoors/windoor.yml @@ -96,16 +96,16 @@ # Secure - type: entity - parent: WindoorSecurityLocked - id: WindoorArmoryLocked + parent: WindoorSecureSecurityLocked + id: WindoorSecureArmoryLocked suffix: Armory, Locked components: - type: AccessReader access: [["Armory"]] - type: entity - parent: WindoorSecurityLocked - id: WindoorBrigLocked + parent: WindoorSecureSecurityLocked + id: WindoorSecureBrigLocked suffix: Brig, Locked components: - type: AccessReader @@ -129,7 +129,7 @@ - type: entity parent: WindoorSecure - id: WindoorChemistryLocked + id: WindoorSecureChemistryLocked suffix: Chemistry, Locked components: - type: AccessReader @@ -137,7 +137,7 @@ - type: entity parent: WindoorSecure - id: WindoorCommandLocked + id: WindoorSecureCommandLocked suffix: Command, Locked components: - type: AccessReader @@ -145,7 +145,7 @@ - type: entity parent: WindoorSecure - id: WindoorEngineeringLocked + id: WindoorSecureEngineeringLocked suffix: Engineering, Locked components: - type: AccessReader @@ -153,7 +153,7 @@ - type: entity parent: WindoorSecure - id: WindoorExternalLocked + id: WindoorSecureExternalLocked suffix: External, Locked components: - type: AccessReader @@ -177,7 +177,7 @@ - type: entity parent: WindoorSecure - id: WindoorMedicalLocked + id: WindoorSecureMedicalLocked suffix: Medical, Locked components: - type: AccessReader @@ -193,7 +193,7 @@ - type: entity parent: WindoorSecure - id: WindoorSecurityLocked + id: WindoorSecureSecurityLocked suffix: Security, Locked components: - type: AccessReader @@ -201,15 +201,15 @@ - type: entity parent: WindoorSecure - id: WindoorScienceLocked + id: WindoorSecureScienceLocked suffix: Science, Locked components: - type: AccessReader access: [["Research"]] - + - type: entity parent: WindoorSecure - id: WindoorHeadOfPersonnelLocked + id: WindoorSecureHeadOfPersonnelLocked suffix: HeadOfPersonnel, Locked components: - type: AccessReader @@ -217,7 +217,7 @@ - type: entity parent: WindoorSecure - id: WindoorAtmosphericsLocked + id: WindoorSecureAtmosphericsLocked suffix: Atmospherics, Locked components: - type: AccessReader @@ -225,7 +225,7 @@ - type: entity parent: WindoorSecure - id: WindoorParamedicLocked + id: WindoorSecureParamedicLocked suffix: Paramedic, Locked components: - type: AccessReader diff --git a/Resources/migration.yml b/Resources/migration.yml index a9b824da7c..6f400e854e 100644 --- a/Resources/migration.yml +++ b/Resources/migration.yml @@ -74,3 +74,17 @@ ParticleAcceleratorEmitterLeft: ParticleAcceleratorEmitterStarboard ParticleAcceleratorEmitterLeftUnfinished: ParticleAcceleratorEmitterStarboardUnfinished ParticleAcceleratorEmitterRight: ParticleAcceleratorEmitterPort ParticleAcceleratorEmitterRightUnfinished: ParticleAcceleratorEmitterPortUnfinished + +# 2023-06-21 +WindoorArmoryLocked: WindoorSecureArmoryLocked +WindoorBrigLocked: WindoorSecureBrigLocked +WindoorChemistryLocked: WindoorSecureChemistryLocked +WindoorCommandLocked: WindoorSecureCommandLocked +WindoorEngineeringLocked: WindoorSecureEngineeringLocked +WindoorExternalLocked: WindoorSecureExternalLocked +WindoorMedicalLocked: WindoorSecureMedicalLocked +WindoorSecurityLocked: WindoorSecureSecurityLocked +WindoorScienceLocked: WindoorSecureScienceLocked +WindoorHeadOfPersonnelLocked: WindoorSecureHeadOfPersonnelLocked +WindoorAtmosphericsLocked: WindoorSecureAtmosphericsLocked +WindoorParamedicLocked: WindoorSecureParamedicLocked From 779db9ffd94cb785d3755a2c612177ee6eb66a1c Mon Sep 17 00:00:00 2001 From: Emisse <99158783+Emisse@users.noreply.github.com> Date: Wed, 21 Jun 2023 13:41:14 -0600 Subject: [PATCH 401/474] marathon update (#17534) * marathon update * marathon update --- Resources/Maps/marathon.yml | 17035 ++++++---------------------------- 1 file changed, 2743 insertions(+), 14292 deletions(-) diff --git a/Resources/Maps/marathon.yml b/Resources/Maps/marathon.yml index af96358760..dc9d76fbc1 100644 --- a/Resources/Maps/marathon.yml +++ b/Resources/Maps/marathon.yml @@ -369,30 +369,30 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 812: -8,-44 - 1681: 23,23 - 1682: 21,23 - 2912: -35,40 - 2913: -37,40 + 806: -8,-44 + 1654: 23,23 + 1655: 21,23 + 2878: -35,40 + 2879: -37,40 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: - 2597: 5,-30 + 2563: 5,-30 - node: color: '#FFFFFFFF' id: Arrows decals: - 1679: 23,25 - 1680: 21,25 - 2224: 31,21 + 1652: 23,25 + 1653: 21,25 + 2197: 31,21 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: - 1420: 33,-3 + 1414: 33,-3 - node: color: '#FFFFFFFF' id: Bot @@ -414,932 +414,932 @@ entities: 390: 3,29 397: 9,41 488: -8,-9 - 665: -12,-1 - 672: -26,-11 - 707: 6,-1 - 813: -11,-44 - 814: -12,-44 - 815: -13,-44 - 816: -14,-44 - 895: 19,0 - 906: 12,14 - 962: -30,37 - 1214: 5,43 - 1215: 3,41 - 1216: 7,41 - 1325: -41,59 - 1327: 14,-2 - 1328: 15,-2 - 1376: 23,-6 - 1377: 23,-5 - 1378: 23,-4 - 1379: 25,-6 - 1380: 25,-5 - 1381: 25,-4 - 1382: 27,-6 - 1383: 27,-5 - 1384: 27,-4 - 1385: 29,-6 - 1386: 29,-5 - 1387: 29,-4 - 1439: 21,-20 - 1440: 18,-20 - 1441: 18,-18 - 1442: 18,-17 - 1443: 19,-17 - 1444: 19,-18 - 1445: 20,-18 - 1446: 20,-17 - 1447: 20,-15 - 1448: 20,-14 - 1449: 21,-14 - 1450: 21,-15 - 1451: 22,-15 - 1452: 22,-14 - 1594: 36,7 - 1595: 35,7 - 1602: 22,20 - 1603: 22,21 - 1604: 23,21 - 1605: 23,20 - 1610: 27,9 - 1611: 27,10 - 1711: 12,12 - 1712: 20,23 - 1879: -1,29 - 2089: 5,-26 - 2090: 5,-25 - 2091: 7,-30 - 2215: 33,17 - 2216: 32,17 - 2217: 31,17 - 2545: -40,54 - 2637: 3,-41 - 2641: -4,-38 - 2642: -2,-38 - 2658: -22,-45 - 2697: -26,-47 - 2698: -26,-48 - 2800: 1,-7 - 2801: -1,-7 - 2927: -13,38 - 2928: -12,31 - 2939: 12,-30 - 2940: 12,-29 - 2941: 12,-28 - 2942: 11,-23 - 2943: 10,-23 - 2953: 32,21 - 2954: 32,22 - 2955: 32,23 - 2971: 41,12 - 2972: 41,13 - 2973: 41,14 - 2985: 7,35 - 3037: 32,39 - 3038: 24,33 + 659: -12,-1 + 666: -26,-11 + 701: 6,-1 + 807: -11,-44 + 808: -12,-44 + 809: -13,-44 + 810: -14,-44 + 889: 19,0 + 900: 12,14 + 956: -30,37 + 1208: 5,43 + 1209: 3,41 + 1210: 7,41 + 1319: -41,59 + 1321: 14,-2 + 1322: 15,-2 + 1370: 23,-6 + 1371: 23,-5 + 1372: 23,-4 + 1373: 25,-6 + 1374: 25,-5 + 1375: 25,-4 + 1376: 27,-6 + 1377: 27,-5 + 1378: 27,-4 + 1379: 29,-6 + 1380: 29,-5 + 1381: 29,-4 + 1433: 21,-20 + 1434: 18,-20 + 1435: 18,-18 + 1436: 18,-17 + 1437: 19,-17 + 1438: 19,-18 + 1439: 20,-18 + 1440: 20,-17 + 1441: 20,-15 + 1442: 20,-14 + 1443: 21,-14 + 1444: 21,-15 + 1445: 22,-15 + 1446: 22,-14 + 1567: 36,7 + 1568: 35,7 + 1575: 22,20 + 1576: 22,21 + 1577: 23,21 + 1578: 23,20 + 1583: 27,9 + 1584: 27,10 + 1684: 12,12 + 1685: 20,23 + 1852: -1,29 + 2062: 5,-26 + 2063: 5,-25 + 2064: 7,-30 + 2188: 33,17 + 2189: 32,17 + 2190: 31,17 + 2518: -40,54 + 2603: 3,-41 + 2607: -4,-38 + 2608: -2,-38 + 2624: -22,-45 + 2663: -26,-47 + 2664: -26,-48 + 2766: 1,-7 + 2767: -1,-7 + 2893: -13,38 + 2894: -12,31 + 2905: 12,-30 + 2906: 12,-29 + 2907: 12,-28 + 2908: 11,-23 + 2909: 10,-23 + 2919: 32,21 + 2920: 32,22 + 2921: 32,23 + 2937: 41,12 + 2938: 41,13 + 2939: 41,14 + 2951: 7,35 + 3003: 32,39 + 3004: 24,33 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Bot decals: - 789: 14,-19 + 783: 14,-19 - node: color: '#FFFFFFFF' id: BotGreyscale decals: - 2829: -22,-1 + 2795: -22,-1 - node: color: '#FFFFFFFF' id: BotLeft decals: - 2543: -39,56 - 2544: -41,56 - 2638: 2,-38 - 2639: 0,-38 - 2659: -26,-45 - 2660: -26,-44 - 2661: -26,-43 - 2847: -57,-22 - 2909: -42,42 - 2910: -46,42 - 2911: -49,42 - 2956: 33,20 - 2957: 33,19 - 2974: 40,14 + 2516: -39,56 + 2517: -41,56 + 2604: 2,-38 + 2605: 0,-38 + 2625: -26,-45 + 2626: -26,-44 + 2627: -26,-43 + 2813: -57,-22 + 2875: -42,42 + 2876: -46,42 + 2877: -49,42 + 2922: 33,20 + 2923: 33,19 + 2940: 40,14 - node: color: '#FFFFFFFF' id: BotRight decals: - 2640: 3,-40 - 2662: -23,-40 - 2663: -22,-40 - 2906: -45,51 - 2907: -45,52 - 2908: -45,53 + 2606: 3,-40 + 2628: -23,-40 + 2629: -22,-40 + 2872: -45,51 + 2873: -45,52 + 2874: -45,53 - node: color: '#FFFFFFFF' id: BotRightGreyscale decals: - 3190: -24,-5 + 3156: -24,-5 - node: color: '#FFFFFFFF' id: Box decals: - 2689: -12,-38 - 2690: -14,-38 - 2975: 39,9 + 2655: -12,-38 + 2656: -14,-38 + 2941: 39,9 - node: color: '#FFFFFFFF' id: BrickTileDarkBox decals: - 2196: -6,40 - 2197: -14,40 - 2473: -46,-13 - 2474: -46,-15 - 2475: -46,-17 - 2476: -46,-19 - 2477: -46,-21 + 2169: -6,40 + 2170: -14,40 + 2446: -46,-13 + 2447: -46,-15 + 2448: -46,-17 + 2449: -46,-19 + 2450: -46,-21 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: - 1821: -7,36 - 1988: -57,-50 - 2158: -50,24 + 1794: -7,36 + 1961: -57,-50 + 2131: -50,24 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: - 1820: -13,36 - 2005: -68,-50 + 1793: -13,36 + 1978: -68,-50 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 1816: -7,32 - 1996: -57,-60 - 2173: -50,12 + 1789: -7,32 + 1969: -57,-60 + 2146: -50,12 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: - 1815: -13,32 - 2006: -68,-60 + 1788: -13,32 + 1979: -68,-60 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: - 1911: -12,40 - 2022: -66,-50 + 1884: -12,40 + 1995: -66,-50 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 1913: -8,40 - 2020: -64,-50 - 2021: -59,-50 + 1886: -8,40 + 1993: -64,-50 + 1994: -59,-50 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: - 1910: -12,42 - 1997: -57,-59 + 1883: -12,42 + 1970: -57,-59 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: - 1912: -8,42 - 1990: -59,-60 + 1885: -8,42 + 1963: -59,-60 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 1734: -17,37 - 1817: -7,33 - 1818: -7,34 - 1819: -7,35 - 1909: -12,41 - 1939: -17,39 - 1940: -17,40 - 1998: -57,-58 - 2150: -50,16 - 2151: -50,17 - 2152: -50,18 - 2153: -50,19 - 2154: -50,20 - 2155: -50,21 - 2156: -50,22 - 2157: -50,23 + 1707: -17,37 + 1790: -7,33 + 1791: -7,34 + 1792: -7,35 + 1882: -12,41 + 1912: -17,39 + 1913: -17,40 + 1971: -57,-58 + 2123: -50,16 + 2124: -50,17 + 2125: -50,18 + 2126: -50,19 + 2127: -50,20 + 2128: -50,21 + 2129: -50,22 + 2130: -50,23 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 1822: -8,36 - 1823: -9,36 - 1824: -10,36 - 1825: -11,36 - 1826: -12,36 - 1905: -9,40 - 1906: -10,40 - 1907: -11,40 - 2016: -60,-50 - 2017: -61,-50 - 2018: -65,-50 - 2019: -62,-50 - 2159: -52,24 - 2160: -51,24 - 2161: -53,24 - 2162: -54,24 - 2163: -55,24 - 2164: -57,24 - 2165: -56,24 - 2166: -58,24 + 1795: -8,36 + 1796: -9,36 + 1797: -10,36 + 1798: -11,36 + 1799: -12,36 + 1878: -9,40 + 1879: -10,40 + 1880: -11,40 + 1989: -60,-50 + 1990: -61,-50 + 1991: -65,-50 + 1992: -62,-50 + 2132: -52,24 + 2133: -51,24 + 2134: -53,24 + 2135: -54,24 + 2136: -55,24 + 2137: -57,24 + 2138: -56,24 + 2139: -58,24 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 1757: -23,38 - 1804: -7,32 - 1805: -8,32 - 1806: -9,32 - 1807: -10,32 - 1808: -11,32 - 1809: -12,32 - 1810: -13,32 - 1902: -10,42 - 1903: -9,42 - 1904: -11,42 - 1989: -60,-60 - 1991: -64,-60 - 1992: -66,-60 - 2167: -58,12 - 2168: -57,12 - 2169: -56,12 - 2170: -55,12 - 2171: -54,12 - 2172: -51,12 + 1730: -23,38 + 1777: -7,32 + 1778: -8,32 + 1779: -9,32 + 1780: -10,32 + 1781: -11,32 + 1782: -12,32 + 1783: -13,32 + 1875: -10,42 + 1876: -9,42 + 1877: -11,42 + 1962: -60,-60 + 1964: -64,-60 + 1965: -66,-60 + 2140: -58,12 + 2141: -57,12 + 2142: -56,12 + 2143: -55,12 + 2144: -54,12 + 2145: -51,12 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW decals: - 1811: -13,32 - 1812: -13,33 - 1813: -13,34 - 1814: -13,35 - 1908: -8,41 + 1784: -13,32 + 1785: -13,33 + 1786: -13,34 + 1787: -13,35 + 1881: -8,41 - node: color: '#9FED5896' id: BrickTileSteelBox decals: - 2797: 2,-9 - 2798: 2,-10 - 2799: 2,-11 + 2763: 2,-9 + 2764: 2,-10 + 2765: 2,-11 - node: color: '#9FED5896' id: BrickTileSteelCornerNe decals: - 2788: 1,-7 - 2852: -31,10 - 2863: -31,13 + 2754: 1,-7 + 2818: -31,10 + 2829: -31,13 - node: color: '#D381C996' id: BrickTileSteelCornerNe decals: - 2961: 33,9 + 2927: 33,9 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNe decals: - 2849: -62,-24 - 3051: -25,11 + 2815: -62,-24 + 3017: -25,11 - node: color: '#9FED5896' id: BrickTileSteelCornerNw decals: - 2789: -1,-7 - 2853: -33,10 - 2864: -33,13 + 2755: -1,-7 + 2819: -33,10 + 2830: -33,13 - node: color: '#D381C996' id: BrickTileSteelCornerNw decals: - 2962: 31,9 + 2928: 31,9 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNw decals: - 2850: -63,-24 - 3050: -27,11 + 2816: -63,-24 + 3016: -27,11 - node: color: '#9FED5896' id: BrickTileSteelCornerSe decals: - 2855: -31,6 - 2866: -31,12 + 2821: -31,6 + 2832: -31,12 - node: color: '#D381C996' id: BrickTileSteelCornerSe decals: - 2964: 33,7 + 2930: 33,7 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSe decals: - 2851: -62,-25 - 3052: -25,7 + 2817: -62,-25 + 3018: -25,7 - node: color: '#9FED5896' id: BrickTileSteelCornerSw decals: - 2792: -1,-10 - 2854: -33,6 - 2865: -33,12 + 2758: -1,-10 + 2820: -33,6 + 2831: -33,12 - node: color: '#D381C996' id: BrickTileSteelCornerSw decals: - 2963: 31,7 + 2929: 31,7 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSw decals: - 2848: -63,-25 - 3049: -27,7 + 2814: -63,-25 + 3015: -27,7 - node: color: '#9FED5896' id: BrickTileSteelEndS decals: - 2796: 1,-12 + 2762: 1,-12 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNe decals: - 2014: -69,-52 - 2015: -69,-58 + 1987: -69,-52 + 1988: -69,-58 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNw decals: - 1995: -61,-61 - 2002: -56,-56 + 1968: -61,-61 + 1975: -56,-56 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSe decals: - 2007: -68,-60 - 2012: -69,-53 - 2013: -69,-51 + 1980: -68,-60 + 1985: -69,-53 + 1986: -69,-51 - node: color: '#9FED5896' id: BrickTileSteelInnerSw decals: - 2794: 1,-10 + 2760: 1,-10 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSw decals: - 2003: -56,-55 - 2004: -56,-52 + 1976: -56,-55 + 1977: -56,-52 - node: color: '#9FED5896' id: BrickTileSteelLineE decals: - 2784: 1,-11 - 2785: 1,-10 - 2786: 1,-9 - 2787: 1,-8 - 2857: -31,7 - 2858: -31,8 - 2859: -31,9 + 2750: 1,-11 + 2751: 1,-10 + 2752: 1,-9 + 2753: 1,-8 + 2823: -31,7 + 2824: -31,8 + 2825: -31,9 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE decals: - 2008: -69,-57 - 2009: -69,-56 - 2011: -69,-54 - 3057: -25,8 - 3058: -25,9 - 3059: -25,10 + 1981: -69,-57 + 1982: -69,-56 + 1984: -69,-54 + 3023: -25,8 + 3024: -25,9 + 3025: -25,10 - node: color: '#334E6DC8' id: BrickTileSteelLineN decals: - 1735: -18,37 - 1736: -19,37 - 1737: -20,37 - 1738: -21,37 - 1739: -22,37 - 1740: -24,37 - 1741: -25,37 - 1742: -26,37 - 1743: -28,37 + 1708: -18,37 + 1709: -19,37 + 1710: -20,37 + 1711: -21,37 + 1712: -22,37 + 1713: -24,37 + 1714: -25,37 + 1715: -26,37 + 1716: -28,37 - node: color: '#9FED5896' id: BrickTileSteelLineN decals: - 2867: -32,13 + 2833: -32,13 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN decals: - 1959: 26,32 - 1994: -62,-61 - 3060: -26,11 + 1932: 26,32 + 1967: -62,-61 + 3026: -26,11 - node: color: '#9FED5896' id: BrickTileSteelLineS decals: - 2793: 0,-10 - 2856: -32,6 + 2759: 0,-10 + 2822: -32,6 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS decals: - 1957: -27,24 - 2044: 8,-18 - 3056: -26,7 + 1930: -27,24 + 2017: 8,-18 + 3022: -26,7 - node: color: '#9FED5896' id: BrickTileSteelLineW decals: - 2790: -1,-8 - 2791: -1,-9 - 2795: 1,-11 - 2860: -33,9 + 2756: -1,-8 + 2757: -1,-9 + 2761: 1,-11 + 2826: -33,9 - node: color: '#D381C996' id: BrickTileSteelLineW decals: - 2965: 31,8 + 2931: 31,8 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW decals: - 1958: 25,26 - 2001: -56,-53 - 3053: -27,8 - 3054: -27,9 - 3055: -27,10 + 1931: 25,26 + 1974: -56,-53 + 3019: -27,8 + 3020: -27,9 + 3021: -27,10 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNe decals: - 3039: -19,40 + 3005: -19,40 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNe decals: - 2580: -2,-33 + 2546: -2,-33 - node: color: '#EFB34196' id: BrickTileWhiteCornerNe decals: - 2647: -22,-41 - 2668: -16,-39 - 2700: -6,-28 + 2613: -22,-41 + 2634: -16,-39 + 2666: -6,-28 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNw decals: - 3040: -21,40 + 3006: -21,40 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNw decals: - 2581: -4,-33 + 2547: -4,-33 - node: color: '#EFB34196' id: BrickTileWhiteCornerNw decals: - 2646: -25,-41 - 2667: -20,-39 - 2701: -14,-28 - 2929: 5,-24 - 2934: 9,-23 + 2612: -25,-41 + 2633: -20,-39 + 2667: -14,-28 + 2895: 5,-24 + 2900: 9,-23 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSe decals: - 2582: -2,-36 + 2548: -2,-36 - node: color: '#EFB34196' id: BrickTileWhiteCornerSe decals: - 2085: 7,-30 - 2631: 3,-45 - 2649: -22,-45 - 2669: -16,-45 - 2703: -6,-32 + 2058: 7,-30 + 2597: 3,-45 + 2615: -22,-45 + 2635: -16,-45 + 2669: -6,-32 - node: color: '#52B4E996' id: BrickTileWhiteCornerSw decals: - 2876: -37,0 + 2842: -37,0 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSw decals: - 2583: -4,-36 + 2549: -4,-36 - node: color: '#EFB34196' id: BrickTileWhiteCornerSw decals: - 2084: 5,-30 - 2632: 0,-45 - 2648: -25,-45 - 2672: -20,-45 - 2702: -14,-32 + 2057: 5,-30 + 2598: 0,-45 + 2614: -25,-45 + 2638: -20,-45 + 2668: -14,-32 - node: color: '#334E6DC8' id: BrickTileWhiteInnerNe decals: - 1899: -3,32 - 1923: -12,40 + 1872: -3,32 + 1896: -12,40 - node: color: '#D381C996' id: BrickTileWhiteInnerNe decals: - 3071: 12,20 + 3037: 12,20 - node: color: '#EFB34196' id: BrickTileWhiteInnerNe decals: - 2779: -11,-42 + 2745: -11,-42 - node: color: '#334E6DC8' id: BrickTileWhiteInnerNw decals: - 1897: -3,32 - 1925: -8,40 + 1870: -3,32 + 1898: -8,40 - node: color: '#79150096' id: BrickTileWhiteInnerNw decals: - 2811: 7,-9 + 2777: 7,-9 - node: color: '#D381C996' id: BrickTileWhiteInnerNw decals: - 3070: 14,20 + 3036: 14,20 - node: color: '#EFB34196' id: BrickTileWhiteInnerNw decals: - 2778: -5,-42 - 2933: 9,-24 + 2744: -5,-42 + 2899: 9,-24 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSe decals: - 1900: -3,32 - 1924: -12,42 + 1873: -3,32 + 1897: -12,42 - node: color: '#D381C996' id: BrickTileWhiteInnerSe decals: - 3069: 12,23 + 3035: 12,23 - node: color: '#EFB34196' id: BrickTileWhiteInnerSe decals: - 2088: 7,-25 - 2777: -11,-40 + 2061: 7,-25 + 2743: -11,-40 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSw decals: - 1898: -3,32 - 1922: -8,42 + 1871: -3,32 + 1895: -8,42 - node: color: '#79150096' id: BrickTileWhiteInnerSw decals: - 2810: 7,-4 - 2812: 7,-11 + 2776: 7,-4 + 2778: 7,-11 - node: color: '#D381C996' id: BrickTileWhiteInnerSw decals: - 3068: 14,23 + 3034: 14,23 - node: color: '#EFB34196' id: BrickTileWhiteInnerSw decals: - 2087: 9,-25 - 2776: -5,-40 + 2060: 9,-25 + 2742: -5,-40 - node: color: '#334E6DC8' id: BrickTileWhiteLineE decals: - 1833: -4,29 - 1834: -4,30 - 1835: -4,31 - 1836: -4,33 - 1837: -4,35 - 1838: -15,29 - 1839: -15,30 - 1840: -15,31 - 1841: -15,33 - 1842: -15,35 - 1920: -12,41 - 3080: -40,-61 + 1806: -4,29 + 1807: -4,30 + 1808: -4,31 + 1809: -4,33 + 1810: -4,35 + 1811: -15,29 + 1812: -15,30 + 1813: -15,31 + 1814: -15,33 + 1815: -15,35 + 1893: -12,41 + 3046: -40,-61 - node: color: '#52B4E996' id: BrickTileWhiteLineE decals: - 3083: -40,-63 + 3049: -40,-63 - node: color: '#9FED5896' id: BrickTileWhiteLineE decals: - 3092: -37,-60 - 3093: -37,-59 - 3094: -37,-58 + 3058: -37,-60 + 3059: -37,-59 + 3060: -37,-58 - node: color: '#A4610696' id: BrickTileWhiteLineE decals: - 3079: -40,-59 + 3045: -40,-59 - node: color: '#D381C996' id: BrickTileWhiteLineE decals: - 3063: 12,21 - 3064: 12,22 - 3084: -40,-64 + 3029: 12,21 + 3030: 12,22 + 3050: -40,-64 - node: color: '#D4D4D428' id: BrickTileWhiteLineE decals: - 3104: -42,-60 - 3105: -42,-59 - 3106: -42,-58 + 3070: -42,-60 + 3071: -42,-59 + 3072: -42,-58 - node: color: '#D4D4D496' id: BrickTileWhiteLineE decals: - 3101: -42,-64 - 3102: -42,-63 - 3103: -42,-62 + 3067: -42,-64 + 3068: -42,-63 + 3069: -42,-62 - node: color: '#DE3A3A96' id: BrickTileWhiteLineE decals: - 2586: -2,-35 - 2587: -2,-34 - 3089: -37,-64 - 3090: -37,-63 - 3091: -37,-62 + 2552: -2,-35 + 2553: -2,-34 + 3055: -37,-64 + 3056: -37,-63 + 3057: -37,-62 - node: color: '#EFB34196' id: BrickTileWhiteLineE decals: - 2075: 7,-29 - 2076: 7,-28 - 2077: 7,-27 - 2078: 7,-26 - 2590: -4,-35 - 2591: -4,-34 - 2625: 3,-42 - 2626: 3,-41 - 2627: 3,-40 - 2628: 3,-39 - 2629: 3,-43 - 2630: 3,-44 - 2652: -22,-44 - 2675: -16,-44 - 2676: -16,-43 - 2711: -6,-31 - 2712: -6,-30 - 2713: -6,-29 - 3076: -40,-58 + 2048: 7,-29 + 2049: 7,-28 + 2050: 7,-27 + 2051: 7,-26 + 2556: -4,-35 + 2557: -4,-34 + 2591: 3,-42 + 2592: 3,-41 + 2593: 3,-40 + 2594: 3,-39 + 2595: 3,-43 + 2596: 3,-44 + 2618: -22,-44 + 2641: -16,-44 + 2642: -16,-43 + 2677: -6,-31 + 2678: -6,-30 + 2679: -6,-29 + 3042: -40,-58 - node: color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 1794: -18,37 - 1795: -19,37 - 1796: -20,37 - 1797: -21,37 - 1798: -22,37 - 1799: -25,37 - 1800: -26,37 - 1801: -28,37 - 1802: -24,37 - 1917: -9,40 - 1918: -10,40 - 1919: -11,40 + 1767: -18,37 + 1768: -19,37 + 1769: -20,37 + 1770: -21,37 + 1771: -22,37 + 1772: -25,37 + 1773: -26,37 + 1774: -28,37 + 1775: -24,37 + 1890: -9,40 + 1891: -10,40 + 1892: -11,40 - node: color: '#D381C996' id: BrickTileWhiteLineN decals: - 2959: 17,16 - 2960: 18,16 - 3061: 13,20 + 2925: 17,16 + 2926: 18,16 + 3027: 13,20 - node: color: '#DE3A3A96' id: BrickTileWhiteLineN decals: - 2588: -3,-33 - 2643: -3,-39 + 2554: -3,-33 + 2609: -3,-39 - node: color: '#EFB34196' id: BrickTileWhiteLineN decals: - 2594: -3,-34 - 2656: -24,-41 - 2657: -23,-41 - 2673: -17,-39 - 2674: -18,-39 - 2714: -7,-28 - 2715: -8,-28 - 2716: -9,-28 - 2717: -10,-28 - 2718: -11,-28 - 2719: -12,-28 - 2720: -13,-28 - 2771: -6,-42 - 2772: -7,-42 - 2773: -8,-42 - 2774: -9,-42 - 2775: -10,-42 - 2930: 8,-24 - 2932: 7,-24 - 2935: 10,-23 - 2936: 11,-23 - 2937: 12,-23 - 2938: 13,-23 + 2560: -3,-34 + 2622: -24,-41 + 2623: -23,-41 + 2639: -17,-39 + 2640: -18,-39 + 2680: -7,-28 + 2681: -8,-28 + 2682: -9,-28 + 2683: -10,-28 + 2684: -11,-28 + 2685: -12,-28 + 2686: -13,-28 + 2737: -6,-42 + 2738: -7,-42 + 2739: -8,-42 + 2740: -9,-42 + 2741: -10,-42 + 2896: 8,-24 + 2898: 7,-24 + 2901: 10,-23 + 2902: 11,-23 + 2903: 12,-23 + 2904: 13,-23 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineN decals: - 1750: -26,39 - 1751: -28,39 - 1752: -27,39 + 1723: -26,39 + 1724: -28,39 + 1725: -27,39 - node: color: '#334E6DC8' id: BrickTileWhiteLineS decals: - 1914: -9,42 - 1915: -10,42 - 1916: -11,42 + 1887: -9,42 + 1888: -10,42 + 1889: -11,42 - node: color: '#52B4E996' id: BrickTileWhiteLineS decals: - 2874: -34,0 - 2875: -36,0 + 2840: -34,0 + 2841: -36,0 - node: color: '#79150096' id: BrickTileWhiteLineS decals: - 2807: 6,-4 - 2808: 5,-4 - 2809: 3,-4 + 2773: 6,-4 + 2774: 5,-4 + 2775: 3,-4 - node: color: '#D381C996' id: BrickTileWhiteLineS decals: - 2958: 17,14 - 3062: 13,23 + 2924: 17,14 + 3028: 13,23 - node: color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 2589: -3,-36 + 2555: -3,-36 - node: color: '#EFB34196' id: BrickTileWhiteLineS decals: - 2595: -3,-35 - 2635: 2,-45 - 2636: 1,-45 - 2650: -23,-45 - 2651: -24,-45 - 2670: -19,-45 - 2671: -17,-45 - 2704: -7,-32 - 2705: -8,-32 - 2706: -9,-32 - 2707: -10,-32 - 2708: -11,-32 - 2709: -12,-32 - 2710: -13,-32 - 2766: -6,-40 - 2767: -7,-40 - 2768: -8,-40 - 2769: -9,-40 - 2770: -10,-40 - 2931: 8,-25 + 2561: -3,-35 + 2601: 2,-45 + 2602: 1,-45 + 2616: -23,-45 + 2617: -24,-45 + 2636: -19,-45 + 2637: -17,-45 + 2670: -7,-32 + 2671: -8,-32 + 2672: -9,-32 + 2673: -10,-32 + 2674: -11,-32 + 2675: -12,-32 + 2676: -13,-32 + 2732: -6,-40 + 2733: -7,-40 + 2734: -8,-40 + 2735: -9,-40 + 2736: -10,-40 + 2897: 8,-25 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineS decals: - 1749: -27,39 + 1722: -27,39 - node: color: '#334E6DC8' id: BrickTileWhiteLineW decals: - 1827: -16,29 - 1828: -16,30 - 1829: -16,31 - 1830: -16,32 - 1831: -16,33 - 1832: -16,35 - 1843: -5,29 - 1844: -5,30 - 1845: -5,31 - 1846: -5,33 - 1847: -5,35 - 1921: -8,41 - 3081: -37,-61 + 1800: -16,29 + 1801: -16,30 + 1802: -16,31 + 1803: -16,32 + 1804: -16,33 + 1805: -16,35 + 1816: -5,29 + 1817: -5,30 + 1818: -5,31 + 1819: -5,33 + 1820: -5,35 + 1894: -8,41 + 3047: -37,-61 - node: color: '#52B4E996' id: BrickTileWhiteLineW decals: - 2027: -37,-15 - 2028: -37,-13 - 2029: -37,-14 - 2030: -37,-12 - 2031: -37,-11 - 2032: -37,-10 - 3082: -37,-63 + 2000: -37,-15 + 2001: -37,-13 + 2002: -37,-14 + 2003: -37,-12 + 2004: -37,-11 + 2005: -37,-10 + 3048: -37,-63 - node: color: '#79150096' id: BrickTileWhiteLineW decals: - 2802: 7,-12 - 2803: 7,-8 - 2804: 7,-7 - 2805: 7,-6 - 2806: 7,-5 + 2768: 7,-12 + 2769: 7,-8 + 2770: 7,-7 + 2771: 7,-6 + 2772: 7,-5 - node: color: '#9FED5896' id: BrickTileWhiteLineW decals: - 3095: -35,-60 - 3096: -35,-59 - 3097: -35,-58 + 3061: -35,-60 + 3062: -35,-59 + 3063: -35,-58 - node: color: '#A4610696' id: BrickTileWhiteLineW decals: - 3078: -37,-59 + 3044: -37,-59 - node: color: '#D381C996' id: BrickTileWhiteLineW decals: - 3066: 14,21 - 3067: 14,22 - 3085: -37,-64 + 3032: 14,21 + 3033: 14,22 + 3051: -37,-64 - node: color: '#D4D4D428' id: BrickTileWhiteLineW decals: - 3107: -40,-60 - 3108: -40,-59 - 3109: -40,-58 + 3073: -40,-60 + 3074: -40,-59 + 3075: -40,-58 - node: color: '#D4D4D496' id: BrickTileWhiteLineW decals: - 3098: -40,-64 - 3099: -40,-63 - 3100: -40,-62 + 3064: -40,-64 + 3065: -40,-63 + 3066: -40,-62 - node: color: '#DE3A3A96' id: BrickTileWhiteLineW decals: - 2584: -4,-35 - 2585: -4,-34 - 3086: -35,-64 - 3087: -35,-63 - 3088: -35,-62 + 2550: -4,-35 + 2551: -4,-34 + 3052: -35,-64 + 3053: -35,-63 + 3054: -35,-62 - node: color: '#EFB34196' id: BrickTileWhiteLineW decals: - 2079: 5,-28 - 2080: 5,-27 - 2081: 5,-29 - 2082: 5,-26 - 2083: 5,-25 - 2086: 9,-26 - 2592: -2,-35 - 2593: -2,-34 - 2633: 0,-44 - 2634: 0,-43 - 2653: -25,-44 - 2654: -25,-43 - 2655: -25,-42 - 2664: -20,-44 - 2665: -20,-41 - 2666: -20,-40 - 2721: -14,-31 - 2722: -14,-29 - 3077: -37,-58 + 2052: 5,-28 + 2053: 5,-27 + 2054: 5,-29 + 2055: 5,-26 + 2056: 5,-25 + 2059: 9,-26 + 2558: -2,-35 + 2559: -2,-34 + 2599: 0,-44 + 2600: 0,-43 + 2619: -25,-44 + 2620: -25,-43 + 2621: -25,-42 + 2630: -20,-44 + 2631: -20,-41 + 2632: -20,-40 + 2687: -14,-31 + 2688: -14,-29 + 3043: -37,-58 - node: color: '#FFFFFFFF' id: Busha1 @@ -1349,206 +1349,206 @@ entities: color: '#FFFFFFFF' id: Busha2 decals: - 1288: -25.204376,3.9985995 + 1282: -25.204376,3.9985995 - node: color: '#FFFFFFFF' id: Busha3 decals: - 1228: -67.012436,-29.136745 + 1222: -67.012436,-29.136745 - node: color: '#9FED5896' id: Bushb1 decals: - 1262: 5.955755,-11.904804 + 1256: 5.955755,-11.904804 - node: color: '#FFFFFFFF' id: Bushb1 decals: 370: -39.0226,31.318937 - 1496: -35.010017,-12.392109 - 1554: -39.779045,-10.06321 + 1490: -35.010017,-12.392109 + 1548: -39.779045,-10.06321 - node: color: '#FFFFFFFF' id: Bushb2 decals: - 1553: -38.716545,-15.03196 + 1547: -38.716545,-15.03196 - node: color: '#9FED5896' id: Bushb3 decals: - 1260: 5.424505,-4.9673038 + 1254: 5.424505,-4.9673038 - node: color: '#FFFFFFFF' id: Bushb3 decals: 371: -39.256973,28.912687 - 1223: -71.06114,-43.947823 - 1495: -34,-9 - 1497: -34.994392,-10.845234 - 1552: -38.13842,-10.75071 - 2024: -52.14543,-42.415432 + 1217: -71.06114,-43.947823 + 1489: -34,-9 + 1491: -34.994392,-10.845234 + 1546: -38.13842,-10.75071 + 1997: -52.14543,-42.415432 - node: color: '#9FED5896' id: Bushc1 decals: - 1259: 6.03388,-7.2173038 + 1253: 6.03388,-7.2173038 - node: color: '#FFFFFFFF' id: Bushc1 decals: - 1104: -12.158052,22.978218 - 1551: -39.35717,-12.922585 + 1098: -12.158052,22.978218 + 1545: -39.35717,-12.922585 - node: color: '#9FED5896' id: Bushc2 decals: - 1258: 6,-8 - 1261: 2.9401298,-4.9985538 + 1252: 6,-8 + 1255: 2.9401298,-4.9985538 - node: color: '#FFFFFFFF' id: Bushc2 decals: 372: -39.1476,33.037685 - 1103: -9.158052,23.040718 - 1494: -32,-9 + 1097: -9.158052,23.040718 + 1488: -32,-9 - node: color: '#FFFFFFFF' id: Bushc3 decals: 374: -39.11635,29.006437 - 1249: -65.91299,-37.046043 + 1243: -65.91299,-37.046043 - node: color: '#FFFFFFFF' id: Bushd3 decals: - 1241: -67.06147,-29.881145 + 1235: -67.06147,-29.881145 - node: color: '#FFFFFFFF' id: Bushd4 decals: - 1296: -27.485626,3.9673495 + 1290: -27.485626,3.9673495 - node: color: '#FFFFFFFF' id: Bushe1 decals: - 1235: -65.58819,-29.014542 - 1295: -28.454376,3.9517245 + 1229: -65.58819,-29.014542 + 1289: -28.454376,3.9517245 - node: color: '#FFFFFFFF' id: Bushe2 decals: - 1226: -71.81257,-43.137188 - 1236: -65.66631,-32.030167 - 1237: -59.71319,-35.530167 + 1220: -71.81257,-43.137188 + 1230: -65.66631,-32.030167 + 1231: -59.71319,-35.530167 - node: color: '#FFFFFFFF' id: Bushe3 decals: - 1238: -65.26006,-35.280167 - 1239: -59.36944,-31.748917 - 1299: -24.141876,3.9673495 + 1232: -65.26006,-35.280167 + 1233: -59.36944,-31.748917 + 1293: -24.141876,3.9673495 - node: color: '#FFFFFFFF' id: Bushe4 decals: - 1482: -59.021492,-29.650486 + 1476: -59.021492,-29.650486 - node: color: '#FFFFFFFF' id: Bushf1 decals: - 1230: -65.58819,-32.131794 - 1231: -59.291313,-31.866169 + 1224: -65.58819,-32.131794 + 1225: -59.291313,-31.866169 - node: color: '#FFFFFFFF' id: Bushf2 decals: - 1232: -59.74444,-35.631794 - 1233: -65.52569,-29.053669 - 1481: -59.068367,-29.628086 - 1550: -40.091545,-13.047585 + 1226: -59.74444,-35.631794 + 1227: -65.52569,-29.053669 + 1475: -59.068367,-29.628086 + 1544: -40.091545,-13.047585 - node: color: '#FFFFFFFF' id: Bushf3 decals: - 1234: -65.27569,-35.350544 + 1228: -65.27569,-35.350544 - node: color: '#FFFFFFFF' id: Bushg2 decals: - 775: 1.6603951,-25.388582 + 769: 1.6603951,-25.388582 - node: color: '#FFFFFFFF' id: Bushg4 decals: - 779: 0.55303955,-25.07197 + 773: 0.55303955,-25.07197 - node: color: '#FFFFFFFF' id: Bushh2 decals: - 1242: -50.04093,-42.20576 + 1236: -50.04093,-42.20576 - node: color: '#FFFFFFFF' id: Bushh3 decals: - 1240: -66.616165,-27.440277 - 1243: -53.009384,-36.94919 + 1234: -66.616165,-27.440277 + 1237: -53.009384,-36.94919 - node: color: '#FFFFFFFF' id: Bushi1 decals: 381: -38.850723,30.881437 - 1095: -10.897953,23.01216 - 1096: -7.147953,23.059034 - 1098: -12.769052,22.88716 + 1089: -10.897953,23.01216 + 1090: -7.147953,23.059034 + 1092: -12.769052,22.88716 - node: color: '#FFFFFFFF' id: Bushi2 decals: 380: -40.131973,32.52206 - 1263: 5.9999943,-7.451386 + 1257: 5.9999943,-7.451386 - node: color: '#FFFFFFFF' id: Bushi3 decals: 378: -38.850723,29.881437 379: -40.05385,31.053312 - 1298: -28.032501,3.9673495 + 1292: -28.032501,3.9673495 - node: color: '#FFFFFFFF' id: Bushi4 decals: - 1097: -9.757328,22.85591 - 1264: 5.4999943,-5.029511 - 1297: -25.548126,3.9829745 + 1091: -9.757328,22.85591 + 1258: 5.4999943,-5.029511 + 1291: -25.548126,3.9829745 - node: color: '#FFFFFFFF' id: Bushj1 decals: - 1227: -73.48444,-43.855938 - 1244: -68.11463,-38.9754 - 1251: -69.40792,-34.063843 - 1548: -38.04467,-13.172585 + 1221: -73.48444,-43.855938 + 1238: -68.11463,-38.9754 + 1245: -69.40792,-34.063843 + 1542: -38.04467,-13.172585 - node: color: '#FFFFFFFF' id: Bushj2 decals: - 1245: -57.046288,-37.982056 - 1250: -58.64736,-27.005693 - 1547: -39.57592,-14.84446 + 1239: -57.046288,-37.982056 + 1244: -58.64736,-27.005693 + 1541: -39.57592,-14.84446 - node: color: '#FFFFFFFF' id: Bushj3 decals: - 1246: -49.987144,-48.963146 - 1549: -39.41967,-11.28196 + 1240: -49.987144,-48.963146 + 1543: -39.41967,-11.28196 - node: color: '#FFFFFFFF' id: Bushk1 decals: 367: -39.256973,30.272062 369: -39.9601,29.068937 - 774: 0.19164515,-23.341707 - 1502: -34.993874,-16.00803 + 768: 0.19164515,-23.341707 + 1496: -34.993874,-16.00803 - node: color: '#FFFFFFFF' id: Bushk3 @@ -1558,50 +1558,50 @@ entities: color: '#FFFFFFFF' id: Bushl1 decals: - 1044: -59.13713,-56.211792 - 1265: 3.0098214,-4.939097 - 1890: -9.9612665,40.993107 + 1038: -59.13713,-56.211792 + 1259: 3.0098214,-4.939097 + 1863: -9.9612665,40.993107 - node: color: '#FFFFFFFF' id: Bushl2 decals: - 1045: -59.79338,-57.039917 - 1266: 6.009821,-11.977411 + 1039: -59.79338,-57.039917 + 1260: 6.009821,-11.977411 - node: color: '#FFFFFFFF' id: Bushm2 decals: - 1046: -59.16838,-57.789917 + 1040: -59.16838,-57.789917 - node: color: '#FFFFFFFF' id: Bushm3 decals: - 1047: -65.91838,-51.868042 + 1041: -65.91838,-51.868042 - node: color: '#FFFFFFFF' id: Bushm4 decals: - 778: 0.45727015,-23.544832 + 772: 0.45727015,-23.544832 - node: color: '#FFFFFFFF' id: Bushn1 decals: - 1105: -10.126802,23.012297 + 1099: -10.126802,23.012297 - node: color: '#FFFFFFFF' id: Caution decals: - 817: -8,-45 + 811: -8,-45 - node: color: '#52B4E944' id: CheckerNESW decals: - 2879: -35,-3 - 2880: -36,-3 - 2881: -36,-2 - 2882: -34,-2 - 2883: -34,-3 - 2884: -35,-2 + 2845: -35,-3 + 2846: -36,-3 + 2847: -36,-2 + 2848: -34,-2 + 2849: -34,-3 + 2850: -35,-2 - node: color: '#52B4E996' id: CheckerNESW @@ -1636,87 +1636,87 @@ entities: color: '#D381C996' id: CheckerNESW decals: - 3229: -39,-7 - 3230: -38,-6 - 3231: -37,-7 - 3232: -37,-6 - 3233: -36,-6 - 3234: -36,-7 - 3235: -35,-6 - 3236: -34,-6 - 3237: -34,-7 - 3238: -33,-6 - 3239: -39,-6 - 3240: -35,-7 - 3241: -38,-7 - 3242: -33,-7 + 3194: -39,-7 + 3195: -38,-6 + 3196: -37,-7 + 3197: -37,-6 + 3198: -36,-6 + 3199: -36,-7 + 3200: -35,-6 + 3201: -34,-6 + 3202: -34,-7 + 3203: -33,-6 + 3204: -39,-6 + 3205: -35,-7 + 3206: -38,-7 + 3207: -33,-7 - node: color: '#D4D4D496' id: CheckerNESW decals: - 2095: -18,5 - 2096: -18,6 - 2097: -17,5 - 2098: -17,6 - 2099: -17,7 - 2100: -18,7 - 2101: -18,8 - 2102: -17,8 - 2103: -18,9 - 2104: -17,9 - 2105: -18,10 - 2106: -17,10 - 2107: -18,11 - 2108: -17,11 - 2109: -16,11 - 2110: -16,10 - 2111: -15,10 - 2112: -15,11 - 2113: -14,11 - 2114: -14,10 - 2115: -13,10 - 2116: -13,11 - 2117: -12,11 - 2118: -12,10 - 2119: -12,9 - 2120: -12,8 - 2121: -12,7 - 2122: -12,6 - 2123: -13,6 - 2124: -14,6 - 2125: -15,6 - 2126: -16,6 - 2127: -16,5 - 2128: -15,5 - 2129: -14,5 - 2130: -14,7 - 2131: -15,7 - 2132: -16,7 - 2133: -16,8 - 2134: -16,9 - 2135: -15,9 - 2136: -15,8 - 2137: -14,8 - 2138: -14,9 + 2068: -18,5 + 2069: -18,6 + 2070: -17,5 + 2071: -17,6 + 2072: -17,7 + 2073: -18,7 + 2074: -18,8 + 2075: -17,8 + 2076: -18,9 + 2077: -17,9 + 2078: -18,10 + 2079: -17,10 + 2080: -18,11 + 2081: -17,11 + 2082: -16,11 + 2083: -16,10 + 2084: -15,10 + 2085: -15,11 + 2086: -14,11 + 2087: -14,10 + 2088: -13,10 + 2089: -13,11 + 2090: -12,11 + 2091: -12,10 + 2092: -12,9 + 2093: -12,8 + 2094: -12,7 + 2095: -12,6 + 2096: -13,6 + 2097: -14,6 + 2098: -15,6 + 2099: -16,6 + 2100: -16,5 + 2101: -15,5 + 2102: -14,5 + 2103: -14,7 + 2104: -15,7 + 2105: -16,7 + 2106: -16,8 + 2107: -16,9 + 2108: -15,9 + 2109: -15,8 + 2110: -14,8 + 2111: -14,9 - node: color: '#EFB34196' id: CheckerNESW decals: - 1197: -20,-37 - 1198: -19,-37 - 1199: -18,-37 - 1200: -17,-37 - 1201: -16,-37 - 1202: -16,-36 - 1203: -17,-36 - 1204: -19,-36 - 1205: -19,-36 - 1206: -20,-36 - 1207: -20,-35 - 1208: -19,-35 - 1209: -18,-35 - 1210: -17,-35 - 1211: -16,-35 + 1191: -20,-37 + 1192: -19,-37 + 1193: -18,-37 + 1194: -17,-37 + 1195: -16,-37 + 1196: -16,-36 + 1197: -17,-36 + 1198: -19,-36 + 1199: -19,-36 + 1200: -20,-36 + 1201: -20,-35 + 1202: -19,-35 + 1203: -18,-35 + 1204: -17,-35 + 1205: -16,-35 - node: color: '#52B4E996' id: CheckerNWSE @@ -1745,38 +1745,38 @@ entities: color: '#9FED5896' id: CheckerNWSE decals: - 1425: -35,-25 - 1426: -34,-25 - 1427: -34,-24 - 1428: -35,-24 - 1429: -35,-23 - 1430: -34,-23 - 1431: -34,-22 - 1432: -32,-22 - 1433: -32,-23 - 1434: -31,-23 - 1435: -32,-24 - 1436: -31,-24 - 1437: -32,-25 - 1438: -31,-25 + 1419: -35,-25 + 1420: -34,-25 + 1421: -34,-24 + 1422: -35,-24 + 1423: -35,-23 + 1424: -34,-23 + 1425: -34,-22 + 1426: -32,-22 + 1427: -32,-23 + 1428: -31,-23 + 1429: -32,-24 + 1430: -31,-24 + 1431: -32,-25 + 1432: -31,-25 - node: color: '#A4610696' id: CheckerNWSE decals: - 1268: 30,0 - 1269: 29,0 - 1270: 29,1 - 1271: 29,2 - 1272: 30,2 - 1273: 30,1 - 1274: 31,0 - 1275: 31,1 - 1276: 31,2 + 1262: 30,0 + 1263: 29,0 + 1264: 29,1 + 1265: 29,2 + 1266: 30,2 + 1267: 30,1 + 1268: 31,0 + 1269: 31,1 + 1270: 31,2 - node: color: '#EFB34196' id: CheckerNWSE decals: - 1303: 3,-28 + 1297: 3,-28 - node: color: '#FFFFFFFF' id: Delivery @@ -1795,74 +1795,74 @@ entities: 230: -48,41 391: 4,29 396: 11,41 - 752: 7,-22 - 753: 6,-22 - 754: 5,-22 - 780: 0,-36 - 781: 1,-36 - 782: 2,-36 - 783: 3,-35 - 784: 3,-34 - 785: 3,-33 - 867: 14,-12 - 868: 14,-11 - 869: 14,-10 - 1329: 16,-2 - 1330: 17,-2 - 1422: 31,-6 - 1423: 31,-5 - 1424: 31,-4 - 1453: 18,-15 - 1454: 18,-14 - 1455: 19,-14 - 1456: 19,-15 - 1591: 38,7 - 1592: 39,7 - 1593: 40,7 - 1612: 28,9 - 1613: 28,10 - 1614: 26,9 - 1615: 26,10 - 2596: 4,-30 - 2691: -15,-42 - 2692: -15,-41 - 2693: -15,-40 - 2694: -1,-42 - 2695: -1,-41 - 2696: -1,-40 - 3152: -49,-6 - 3153: -49,-5 - 3191: -21,-10 - 3192: -21,-9 - 3193: -27,-10 - 3194: -27,-9 - 3195: -20,-12 - 3196: -19,-12 - 3197: -18,-12 - 3198: -17,-11 - 3199: -17,-10 - 3200: -17,-9 + 746: 7,-22 + 747: 6,-22 + 748: 5,-22 + 774: 0,-36 + 775: 1,-36 + 776: 2,-36 + 777: 3,-35 + 778: 3,-34 + 779: 3,-33 + 861: 14,-12 + 862: 14,-11 + 863: 14,-10 + 1323: 16,-2 + 1324: 17,-2 + 1416: 31,-6 + 1417: 31,-5 + 1418: 31,-4 + 1447: 18,-15 + 1448: 18,-14 + 1449: 19,-14 + 1450: 19,-15 + 1564: 38,7 + 1565: 39,7 + 1566: 40,7 + 1585: 28,9 + 1586: 28,10 + 1587: 26,9 + 1588: 26,10 + 2562: 4,-30 + 2657: -15,-42 + 2658: -15,-41 + 2659: -15,-40 + 2660: -1,-42 + 2661: -1,-41 + 2662: -1,-40 + 3118: -49,-6 + 3119: -49,-5 + 3157: -21,-10 + 3158: -21,-9 + 3159: -27,-10 + 3160: -27,-9 + 3161: -20,-12 + 3162: -19,-12 + 3163: -18,-12 + 3164: -17,-11 + 3165: -17,-10 + 3166: -17,-9 - node: color: '#FFFFFFFF' id: DiagonalCheckerAOverlay decals: - 1949: -29,22 - 1950: -28,22 - 1951: -27,22 - 1952: -26,22 - 1953: -26,23 - 1954: -27,23 - 1955: -28,23 - 1956: -29,23 + 1922: -29,22 + 1923: -28,22 + 1924: -27,22 + 1925: -26,22 + 1926: -26,23 + 1927: -27,23 + 1928: -28,23 + 1929: -29,23 - node: cleanable: True color: '#FFFFFFFF' id: Dirt decals: - 1078: -27,-36 - 1079: -28,-38 - 1080: -23,-36 - 1081: -25,-38 + 1072: -27,-36 + 1073: -28,-38 + 1074: -23,-36 + 1075: -25,-38 - node: color: '#FFFFFFFF' id: DirtHeavy @@ -1873,9 +1873,9 @@ entities: 238: -49,40 251: -34,57 252: -31,59 - 836: 1,-38 - 917: 53,19 - 918: 53,20 + 830: 1,-38 + 911: 53,19 + 912: 53,20 - node: cleanable: True color: '#FFFFFFFF' @@ -1886,28 +1886,28 @@ entities: 409: -28,32 410: -28,31 411: -31,30 - 1048: -76,-57 - 1049: -76,-56 - 1050: -77,-55 - 1051: -79,-54 - 1065: -22,-38 - 1066: -23,-38 - 1067: -24,-36 - 1068: -25,-36 - 1069: -25,-36 - 1349: 23,-12 - 1350: 23,-11 - 1351: 24,-12 - 1352: 34,-12 - 1353: 35,-11 - 1354: 32,-12 - 1355: 31,-10 - 2731: -13,-31 - 2732: -11,-32 - 2887: -19,19 - 2888: -14,19 - 2889: -21,18 - 2892: -15,19 + 1042: -76,-57 + 1043: -76,-56 + 1044: -77,-55 + 1045: -79,-54 + 1059: -22,-38 + 1060: -23,-38 + 1061: -24,-36 + 1062: -25,-36 + 1063: -25,-36 + 1343: 23,-12 + 1344: 23,-11 + 1345: 24,-12 + 1346: 34,-12 + 1347: 35,-11 + 1348: 32,-12 + 1349: 31,-10 + 2697: -13,-31 + 2698: -11,-32 + 2853: -19,19 + 2854: -14,19 + 2855: -21,18 + 2858: -15,19 - node: color: '#FFFFFFFF' id: DirtLight @@ -1937,25 +1937,25 @@ entities: 266: -40,42 268: -48,42 269: -37,40 - 845: -19,-44 - 846: -17,-42 - 847: -14,-40 - 848: -19,-42 - 849: -23,-43 - 850: -1,-40 - 851: -4,-41 - 852: 1,-40 - 853: 0,-39 - 854: 2,-38 - 855: 2,-39 - 856: 1,-34 - 857: 1,-31 - 913: 43,22 - 914: 45,22 - 915: 52,19 - 916: 51,20 - 919: 50,19 - 925: 45,23 + 839: -19,-44 + 840: -17,-42 + 841: -14,-40 + 842: -19,-42 + 843: -23,-43 + 844: -1,-40 + 845: -4,-41 + 846: 1,-40 + 847: 0,-39 + 848: 2,-38 + 849: 2,-39 + 850: 1,-34 + 851: 1,-31 + 907: 43,22 + 908: 45,22 + 909: 52,19 + 910: 51,20 + 913: 50,19 + 919: 45,23 - node: cleanable: True color: '#FFFFFFFF' @@ -1972,109 +1972,109 @@ entities: 425: -32,27 426: -26,28 427: -33,27 - 897: 20,-11 - 898: 21,-10 - 899: 17,-11 - 900: 17,-12 - 901: 19,-8 - 1058: -78,-53 - 1059: -76,-53 - 1060: -78,-56 - 1061: -79,-56 - 1062: -80,-53 - 1063: -79,-52 - 1064: -76,-55 - 1157: 27,0 - 1158: 28,1 - 1159: 29,1 - 1361: 24,-11 - 1362: 24,-10 - 1363: 23,-10 - 1364: 26,-12 - 1365: 31,-12 - 1366: 32,-11 - 1367: 33,-10 - 1368: 34,-11 - 1369: 33,-12 - 1370: 32,-9 - 1371: 33,-9 - 1372: 24,-9 - 1373: 21,-9 - 1374: 24,-8 - 1375: 23,-8 - 1407: 29,-2 - 1408: 30,-3 - 1409: 31,-4 - 1410: 32,-4 - 1411: 30,0 - 1412: 33,-7 - 1413: 32,-8 - 1414: 24,-8 - 1415: 25,-7 - 1416: 26,-6 - 1417: 23,-3 - 1418: 22,-2 - 1419: 21,-2 - 1880: -1,29 - 2186: -58,15 - 2187: -57,16 - 2188: -58,21 - 2189: -57,20 - 2190: -57,23 - 2192: -51,14 - 2193: -51,15 - 2194: -56,20 - 2198: -4,27 - 2199: -6,27 - 2200: -14,26 - 2201: -19,27 - 2202: -26,28 - 2203: -26,27 - 2204: -27,26 - 2205: -25,25 - 2206: -27,31 - 2207: -39,37 - 2208: -37,36 - 2209: -36,35 - 2210: -41,43 - 2211: -47,52 - 2212: -49,53 - 2213: -47,56 - 2738: -13,-32 - 2739: -11,-31 - 2740: -9,-32 - 2741: -10,-30 - 2742: -10,-31 - 2743: -11,-29 - 2744: -11,-28 - 2745: -13,-29 - 2746: -14,-30 - 2747: -13,-33 - 2748: -13,-34 - 2749: -19,-41 - 2750: -20,-42 - 2751: -20,-44 - 2752: -20,-44 - 2753: -22,-44 - 2754: -22,-43 - 2755: -22,-41 - 2756: -25,-41 - 2757: -26,-41 - 2758: -26,-42 - 2759: -24,-43 - 2760: -24,-45 - 2761: -25,-44 - 2762: -12,-39 - 2763: -12,-40 - 2764: -9,-39 - 2765: -8,-39 - 2890: -18,19 - 2891: -21,19 - 2893: -16,19 - 2894: -22,19 - 2895: -31,16 - 2896: -31,17 - 2897: -7,18 + 891: 20,-11 + 892: 21,-10 + 893: 17,-11 + 894: 17,-12 + 895: 19,-8 + 1052: -78,-53 + 1053: -76,-53 + 1054: -78,-56 + 1055: -79,-56 + 1056: -80,-53 + 1057: -79,-52 + 1058: -76,-55 + 1151: 27,0 + 1152: 28,1 + 1153: 29,1 + 1355: 24,-11 + 1356: 24,-10 + 1357: 23,-10 + 1358: 26,-12 + 1359: 31,-12 + 1360: 32,-11 + 1361: 33,-10 + 1362: 34,-11 + 1363: 33,-12 + 1364: 32,-9 + 1365: 33,-9 + 1366: 24,-9 + 1367: 21,-9 + 1368: 24,-8 + 1369: 23,-8 + 1401: 29,-2 + 1402: 30,-3 + 1403: 31,-4 + 1404: 32,-4 + 1405: 30,0 + 1406: 33,-7 + 1407: 32,-8 + 1408: 24,-8 + 1409: 25,-7 + 1410: 26,-6 + 1411: 23,-3 + 1412: 22,-2 + 1413: 21,-2 + 1853: -1,29 + 2159: -58,15 + 2160: -57,16 + 2161: -58,21 + 2162: -57,20 + 2163: -57,23 + 2165: -51,14 + 2166: -51,15 + 2167: -56,20 + 2171: -4,27 + 2172: -6,27 + 2173: -14,26 + 2174: -19,27 + 2175: -26,28 + 2176: -26,27 + 2177: -27,26 + 2178: -25,25 + 2179: -27,31 + 2180: -39,37 + 2181: -37,36 + 2182: -36,35 + 2183: -41,43 + 2184: -47,52 + 2185: -49,53 + 2186: -47,56 + 2704: -13,-32 + 2705: -11,-31 + 2706: -9,-32 + 2707: -10,-30 + 2708: -10,-31 + 2709: -11,-29 + 2710: -11,-28 + 2711: -13,-29 + 2712: -14,-30 + 2713: -13,-33 + 2714: -13,-34 + 2715: -19,-41 + 2716: -20,-42 + 2717: -20,-44 + 2718: -20,-44 + 2719: -22,-44 + 2720: -22,-43 + 2721: -22,-41 + 2722: -25,-41 + 2723: -26,-41 + 2724: -26,-42 + 2725: -24,-43 + 2726: -24,-45 + 2727: -25,-44 + 2728: -12,-39 + 2729: -12,-40 + 2730: -9,-39 + 2731: -8,-39 + 2856: -18,19 + 2857: -21,19 + 2859: -16,19 + 2860: -22,19 + 2861: -31,16 + 2862: -31,17 + 2863: -7,18 - node: color: '#FFFFFFFF' id: DirtMedium @@ -2087,21 +2087,21 @@ entities: 250: -35,58 259: -36,54 267: -48,41 - 837: 0,-38 - 838: 1,-39 - 839: 0,-40 - 840: -18,-44 - 841: -19,-43 - 842: -23,-44 - 843: -18,-42 - 844: -16,-41 - 911: 46,23 - 912: 43,21 - 920: 52,19 - 921: 43,22 - 922: 46,23 - 923: 46,22 - 924: 44,23 + 831: 0,-38 + 832: 1,-39 + 833: 0,-40 + 834: -18,-44 + 835: -19,-43 + 836: -23,-44 + 837: -18,-42 + 838: -16,-41 + 905: 46,23 + 906: 43,21 + 914: 52,19 + 915: 43,22 + 916: 46,23 + 917: 46,22 + 918: 44,23 - node: cleanable: True color: '#FFFFFFFF' @@ -2112,31 +2112,31 @@ entities: 414: -30,30 415: -32,29 416: -31,32 - 896: 21,-11 - 1052: -78,-54 - 1053: -79,-55 - 1054: -79,-53 - 1055: -80,-53 - 1056: -76,-54 - 1057: -77,-53 - 1070: -26,-36 - 1071: -27,-37 - 1156: 27,1 - 1356: 32,-10 - 1357: 31,-11 - 1358: 30,-11 - 1359: 25,-12 - 1360: 26,-11 - 1404: 34,-7 - 1405: 30,-2 - 1406: 31,-3 - 1881: 3,29 - 2191: -58,13 - 2733: -10,-32 - 2734: -12,-31 - 2735: -12,-32 - 2736: -14,-31 - 2737: -12,-29 + 890: 21,-11 + 1046: -78,-54 + 1047: -79,-55 + 1048: -79,-53 + 1049: -80,-53 + 1050: -76,-54 + 1051: -77,-53 + 1064: -26,-36 + 1065: -27,-37 + 1150: 27,1 + 1350: 32,-10 + 1351: 31,-11 + 1352: 30,-11 + 1353: 25,-12 + 1354: 26,-11 + 1398: 34,-7 + 1399: 30,-2 + 1400: 31,-3 + 1854: 3,29 + 2164: -58,13 + 2699: -10,-32 + 2700: -12,-31 + 2701: -12,-32 + 2702: -14,-31 + 2703: -12,-29 - node: color: '#FFFFFFFF' id: Flowersbr1 @@ -2144,61 +2144,61 @@ entities: 76: -55,17 77: -53,18 78: -54.752693,18.73386 - 773: 1.3791451,-24.388582 - 1037: -59.152756,-56.526844 + 767: 1.3791451,-24.388582 + 1031: -59.152756,-56.526844 - node: color: '#FFFFFFFF' id: Flowersbr2 decals: - 772: -0.011479855,-25.497957 - 1032: -64.66838,-52.26122 - 1033: -65.559006,-53.82372 - 1034: -64.94963,-56.339344 - 1035: -59.777756,-52.66747 - 1294: -24.157501,3.9829745 - 1539: -38.404045,-11.453835 - 1889: -10.5706415,40.97748 + 766: -0.011479855,-25.497957 + 1026: -64.66838,-52.26122 + 1027: -65.559006,-53.82372 + 1028: -64.94963,-56.339344 + 1029: -59.777756,-52.66747 + 1288: -24.157501,3.9829745 + 1533: -38.404045,-11.453835 + 1862: -10.5706415,40.97748 - node: color: '#FFFFFFFF' id: Flowersbr3 decals: 63: -53,22 64: -55,14 - 1036: -60.121506,-53.44872 - 1540: -39.07592,-11.90696 - 1546: -39.48217,-14.43821 + 1030: -60.121506,-53.44872 + 1534: -39.07592,-11.90696 + 1540: -39.48217,-14.43821 - node: color: '#FFFFFFFF' id: Flowerspv1 decals: - 1038: -62.184006,-55.76122 - 1039: -61.777756,-56.370594 - 1040: -62.152756,-53.308094 - 1544: -39.57592,-10.735085 - 1545: -38.13842,-15.06321 - 1888: -9.3987665,40.961857 + 1032: -62.184006,-55.76122 + 1033: -61.777756,-56.370594 + 1034: -62.152756,-53.308094 + 1538: -39.57592,-10.735085 + 1539: -38.13842,-15.06321 + 1861: -9.3987665,40.961857 - node: color: '#FFFFFFFF' id: Flowerspv2 decals: 82: -54.471443,18.20261 83: -53.533943,17.17136 - 1041: -58.996506,-57.370594 - 1042: -62.88713,-57.995594 - 1543: -38.654045,-10.360085 + 1035: -58.996506,-57.370594 + 1036: -62.88713,-57.995594 + 1537: -38.654045,-10.360085 - node: color: '#FFFFFFFF' id: Flowerspv3 decals: 65: -53,14 66: -55,22 - 1043: -59.809006,-54.414917 - 1291: -25.970001,3.9985995 + 1037: -59.809006,-54.414917 + 1285: -25.970001,3.9985995 - node: color: '#FFFFFFFF' id: Flowersy1 decals: - 1102: -13.0907,22.978218 + 1096: -13.0907,22.978218 - node: color: '#FFFFFFFF' id: Flowersy2 @@ -2210,97 +2210,97 @@ entities: 79: -53.471443,17.280735 80: -54.76832,17.48386 382: -39.80385,29.303312 - 1024: -64.98088,-57.620594 - 1025: -62.090256,-57.776844 - 1026: -61.10588,-57.13622 - 1027: -60.090256,-57.91747 - 1028: -64.152756,-53.683094 - 1029: -62.69963,-52.51122 - 1292: -28.032501,3.9985995 - 1887: -9.9456415,40.993107 + 1018: -64.98088,-57.620594 + 1019: -62.090256,-57.776844 + 1020: -61.10588,-57.13622 + 1021: -60.090256,-57.91747 + 1022: -64.152756,-53.683094 + 1023: -62.69963,-52.51122 + 1286: -28.032501,3.9985995 + 1860: -9.9456415,40.993107 - node: color: '#FFFFFFFF' id: Flowersy3 decals: 383: -39.4601,29.881437 - 776: 1.7228951,-23.216707 - 1031: -65.652756,-52.401844 - 1099: -7.856325,22.931343 - 1542: -39.04467,-14.46946 + 770: 1.7228951,-23.216707 + 1025: -65.652756,-52.401844 + 1093: -7.856325,22.931343 + 1536: -39.04467,-14.46946 - node: color: '#FFFFFFFF' id: Flowersy4 decals: 81: -53.61207,18.499485 384: -39.069473,32.17831 - 1030: -63.26213,-53.76122 - 1100: -10.293825,23.009468 - 1101: -11.18445,22.978218 - 1293: -28.938751,3.9985995 - 1491: -35.025642,-10.569359 - 1541: -39.73217,-13.68821 + 1024: -63.26213,-53.76122 + 1094: -10.293825,23.009468 + 1095: -11.18445,22.978218 + 1287: -28.938751,3.9985995 + 1485: -35.025642,-10.569359 + 1535: -39.73217,-13.68821 - node: color: '#334E6DC8' id: FullTileOverlayGreyscale decals: - 3126: -30,-62 + 3092: -30,-62 - node: color: '#4A8F37B1' id: FullTileOverlayGreyscale decals: - 2236: 5,23 - 2237: 6,23 - 2238: 3,23 - 2239: 2,23 - 2240: 2,20 - 2241: 2,21 - 2242: 3,20 - 2243: 5,20 - 2244: 6,20 - 2245: 6,21 + 2209: 5,23 + 2210: 6,23 + 2211: 3,23 + 2212: 2,23 + 2213: 2,20 + 2214: 2,21 + 2215: 3,20 + 2216: 5,20 + 2217: 6,20 + 2218: 6,21 - node: color: '#52B4E996' id: FullTileOverlayGreyscale decals: 514: -17,-15 - 728: -13,-21 + 722: -13,-21 - node: color: '#79150096' id: FullTileOverlayGreyscale decals: - 963: -76,-46 - 964: -77,-46 - 965: -78,-46 - 966: -79,-46 - 967: -80,-46 - 968: -81,-46 + 957: -76,-46 + 958: -77,-46 + 959: -78,-46 + 960: -79,-46 + 961: -80,-46 + 962: -81,-46 - node: color: '#A4610696' id: FullTileOverlayGreyscale decals: - 1277: 28,1 - 1278: 30,-1 - 1279: 20,-1 + 1271: 28,1 + 1272: 30,-1 + 1273: 20,-1 - node: color: '#D4D4D406' id: FullTileOverlayGreyscale decals: - 2813: -22,-6 - 2814: -23,-6 - 2815: -24,-6 - 2816: -25,-6 - 2817: -26,-6 - 2818: -25,-5 - 2819: -25,-4 - 2820: -25,-3 - 2821: -25,-2 - 2822: -25,-1 - 2823: -23,-5 - 2824: -23,-4 - 2825: -23,-3 - 2826: -23,-2 - 2827: -23,-1 - 2828: -24,-1 + 2779: -22,-6 + 2780: -23,-6 + 2781: -24,-6 + 2782: -25,-6 + 2783: -26,-6 + 2784: -25,-5 + 2785: -25,-4 + 2786: -25,-3 + 2787: -25,-2 + 2788: -25,-1 + 2789: -23,-5 + 2790: -23,-4 + 2791: -23,-3 + 2792: -23,-2 + 2793: -23,-1 + 2794: -24,-1 - node: color: '#D4D4D428' id: FullTileOverlayGreyscale @@ -2321,89 +2321,89 @@ entities: 485: -19,-4 486: 13,19 487: -38,10 - 835: -1,-34 - 1267: -19,0 - 2578: -3,-37 - 2579: -3,-32 + 829: -1,-34 + 1261: -19,0 + 2544: -3,-37 + 2545: -3,-32 - node: color: '#EFB34196' id: FullTileOverlayGreyscale decals: - 866: -11,-34 - 2644: -26,-42 - 2645: -26,-41 + 860: -11,-34 + 2610: -26,-42 + 2611: -26,-41 - node: color: '#FFFFFFFF' id: Grassa1 decals: - 1484: -35,-13 + 1478: -35,-13 - node: color: '#FFFFFFFF' id: Grassa2 decals: - 1483: -35,-15 - 1500: -35,-16 + 1477: -35,-15 + 1494: -35,-16 - node: color: '#FFFFFFFF' id: Grassa3 decals: - 1485: -35,-12 - 1537: -37.997795,-14.328835 + 1479: -35,-12 + 1531: -37.997795,-14.328835 - node: color: '#FFFFFFFF' id: Grassa4 decals: - 1486: -35,-11 + 1480: -35,-11 - node: color: '#FFFFFFFF' id: Grassa5 decals: - 1487: -35,-10 - 1534: -38.41967,-13.485085 - 1538: -39.88842,-12.266335 + 1481: -35,-10 + 1528: -38.41967,-13.485085 + 1532: -39.88842,-12.266335 - node: color: '#FFFFFFFF' id: Grassb1 decals: 376: -39.100723,32.30331 - 1091: -7.3405266,22.973469 - 1094: -11.434277,23.035969 - 1247: -56.986298,-31.010326 - 1248: -59.069237,-37.03042 - 2026: -70.08625,-34.436035 + 1085: -7.3405266,22.973469 + 1088: -11.434277,23.035969 + 1241: -56.986298,-31.010326 + 1242: -59.069237,-37.03042 + 1999: -70.08625,-34.436035 - node: color: '#FFFFFFFF' id: Grassb2 decals: - 1221: -74.07677,-44.072823 - 1229: -67.18431,-28.324245 - 1286: -29.016876,3.9360995 - 1533: -40.029045,-15.12571 - 2023: -53.955444,-43.088474 + 1215: -74.07677,-44.072823 + 1223: -67.18431,-28.324245 + 1280: -29.016876,3.9360995 + 1527: -40.029045,-15.12571 + 1996: -53.955444,-43.088474 - node: color: '#FFFFFFFF' id: Grassb3 decals: - 1222: -71.98302,-44.010323 - 1287: -24.048126,3.9673495 - 1535: -38.01342,-12.610085 + 1216: -71.98302,-44.010323 + 1281: -24.048126,3.9673495 + 1529: -38.01342,-12.610085 - node: color: '#FFFFFFFF' id: Grassb4 decals: - 1093: -8.387402,22.973469 - 1224: -70.92052,-43.057198 - 1536: -39.98217,-11.00071 - 2025: -52.942307,-42.899807 + 1087: -8.387402,22.973469 + 1218: -70.92052,-43.057198 + 1530: -39.98217,-11.00071 + 1998: -52.942307,-42.899807 - node: color: '#FFFFFFFF' id: Grassb5 decals: 375: -39.881973,31.162687 377: -40.0851,28.850187 - 1092: -12.856152,23.020344 - 1225: -73.10302,-35.91218 - 1532: -39.904045,-10.110085 + 1086: -12.856152,23.020344 + 1219: -73.10302,-35.91218 + 1526: -39.904045,-10.110085 - node: color: '#FFFFFFFF' id: Grassd1 @@ -2420,99 +2420,99 @@ entities: 363: -39.2726,29.881437 364: -39.694473,32.58456 365: -39.163223,31.818935 - 769: 0.66039515,-25.576082 - 1021: -65.69963,-54.183094 - 1022: -59.934006,-54.276844 - 1023: -60.98088,-57.745594 - 1284: -24.516876,4.0142245 - 1489: -34.931892,-11.397484 + 763: 0.66039515,-25.576082 + 1015: -65.69963,-54.183094 + 1016: -59.934006,-54.276844 + 1017: -60.98088,-57.745594 + 1278: -24.516876,4.0142245 + 1483: -34.931892,-11.397484 - node: color: '#FFFFFFFF' id: Grassd2 decals: 84: -53.596443,17.79636 362: -39.7726,29.178312 - 768: 1.4416451,-26.060457 - 771: 0.83227015,-24.888582 - 777: 0.051020145,-22.997957 - 1003: -65.01213,-58.04247 - 1004: -62.29338,-52.69872 - 1005: -61.684006,-53.433094 - 1006: -65.027756,-53.464344 - 1007: -62.809006,-53.32372 - 1087: -12.746777,23.114094 - 1088: -6.8249016,22.957844 - 1283: -24.048126,4.0298495 - 1490: -34.978767,-10.272484 - 1523: -38.466545,-10.78196 - 1524: -39.466545,-14.797585 - 1529: -38.122795,-11.672585 - 1531: -39.404045,-12.547585 + 762: 1.4416451,-26.060457 + 765: 0.83227015,-24.888582 + 771: 0.051020145,-22.997957 + 997: -65.01213,-58.04247 + 998: -62.29338,-52.69872 + 999: -61.684006,-53.433094 + 1000: -65.027756,-53.464344 + 1001: -62.809006,-53.32372 + 1081: -12.746777,23.114094 + 1082: -6.8249016,22.957844 + 1277: -24.048126,4.0298495 + 1484: -34.978767,-10.272484 + 1517: -38.466545,-10.78196 + 1518: -39.466545,-14.797585 + 1523: -38.122795,-11.672585 + 1525: -39.404045,-12.547585 - node: color: '#FFFFFFFF' id: Grassd3 decals: - 1008: -63.38713,-53.72997 - 1009: -59.98088,-52.35497 - 1010: -65.01213,-57.19872 - 1011: -60.19963,-57.464344 - 1012: -59.41838,-56.79247 - 1089: -9.168652,22.942219 - 1090: -10.309277,23.067219 - 1527: -38.466545,-12.40696 - 1530: -39.591545,-11.53196 + 1002: -63.38713,-53.72997 + 1003: -59.98088,-52.35497 + 1004: -65.01213,-57.19872 + 1005: -60.19963,-57.464344 + 1006: -59.41838,-56.79247 + 1083: -9.168652,22.942219 + 1084: -10.309277,23.067219 + 1521: -38.466545,-12.40696 + 1524: -39.591545,-11.53196 - node: color: '#FFFFFFFF' id: Grasse1 decals: - 766: 1,-23 - 1013: -65.652756,-52.41747 - 1014: -58.98088,-57.97997 - 1015: -64.69963,-56.44872 - 1016: -62.98088,-57.776844 - 1256: 6,-7 - 1257: 3,-5 - 1282: -27.532501,4.0298495 - 1526: -39.45092,-13.12571 + 760: 1,-23 + 1007: -65.652756,-52.41747 + 1008: -58.98088,-57.97997 + 1009: -64.69963,-56.44872 + 1010: -62.98088,-57.776844 + 1250: 6,-7 + 1251: 3,-5 + 1276: -27.532501,4.0298495 + 1520: -39.45092,-13.12571 - node: color: '#FFFFFFFF' id: Grasse2 decals: 366: -39.881973,31.74081 - 767: 1.5353951,-23.607332 - 1085: -11.340527,23.020344 - 1086: -7.8092766,22.989094 - 1252: 6,-8 - 1253: 5,-5 - 1281: -28.532501,3.9829745 - 1285: -25.938751,4.0923495 - 1488: -34.978767,-13.038109 - 1492: -34,-9 - 1522: -38.435295,-10.016335 - 1525: -39.685295,-14.141335 - 1884: -9,41 - 1885: -10.480507,40.958054 + 761: 1.5353951,-23.607332 + 1079: -11.340527,23.020344 + 1080: -7.8092766,22.989094 + 1246: 6,-8 + 1247: 5,-5 + 1275: -28.532501,3.9829745 + 1279: -25.938751,4.0923495 + 1482: -34.978767,-13.038109 + 1486: -34,-9 + 1516: -38.435295,-10.016335 + 1519: -39.685295,-14.141335 + 1857: -9,41 + 1858: -10.480507,40.958054 - node: color: '#FFFFFFFF' id: Grasse3 decals: - 770: 0.019770145,-24.841707 - 1017: -60.277756,-56.558094 - 1018: -63.340256,-52.22997 - 1019: -65.82463,-53.29247 - 1020: -60.23088,-53.433094 - 1082: -7.3717766,23.020344 - 1083: -8.434277,22.973469 - 1084: -11.918652,23.051594 - 1254: 6,-5 - 1255: 6,-12 - 1280: -29.001251,3.9829745 - 1493: -32,-9 - 1521: -39.654045,-10.328835 - 1528: -38.51342,-14.71946 - 1882: -11,41 - 1883: -10,41 - 1886: -9.464882,40.926804 + 764: 0.019770145,-24.841707 + 1011: -60.277756,-56.558094 + 1012: -63.340256,-52.22997 + 1013: -65.82463,-53.29247 + 1014: -60.23088,-53.433094 + 1076: -7.3717766,23.020344 + 1077: -8.434277,22.973469 + 1078: -11.918652,23.051594 + 1248: 6,-5 + 1249: 6,-12 + 1274: -29.001251,3.9829745 + 1487: -32,-9 + 1515: -39.654045,-10.328835 + 1522: -38.51342,-14.71946 + 1855: -11,41 + 1856: -10,41 + 1859: -9.464882,40.926804 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale @@ -2526,21 +2526,21 @@ entities: 404: -12,27 405: -13,27 406: -14,27 - 1118: -1,66 - 1856: -3,27 - 1858: -17,27 - 3124: -31,-63 + 1112: -1,66 + 1829: -3,27 + 1831: -17,27 + 3090: -31,-63 - node: color: '#33666DC8' id: HalfTileOverlayGreyscale decals: - 1692: 33,20 - 1693: 32,20 - 1694: 31,20 - 1695: 30,20 - 1696: 29,20 - 1697: 28,20 - 1698: 27,20 + 1665: 33,20 + 1666: 32,20 + 1667: 31,20 + 1668: 30,20 + 1669: 29,20 + 1670: 28,20 + 1671: 27,20 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale @@ -2559,103 +2559,103 @@ entities: 584: -18,-5 585: -19,-5 586: -20,-5 - 633: -22,-17 - 634: -23,-17 - 635: -24,-17 - 636: -25,-17 - 637: -26,-17 - 647: -22,-13 - 648: -23,-13 - 708: -8,-20 - 709: -9,-20 - 710: -10,-20 - 711: -11,-20 - 712: -12,-20 - 3201: -22,-9 - 3202: -23,-9 - 3203: -24,-9 - 3204: -26,-9 - 3205: -25,-9 - 3206: -36,-5 - 3207: -37,-5 - 3208: -39,-5 - 3209: -38,-5 - 3210: -34,-5 - 3211: -33,-5 + 632: -22,-17 + 633: -23,-17 + 634: -24,-17 + 635: -25,-17 + 636: -26,-17 + 646: -22,-13 + 647: -23,-13 + 702: -8,-20 + 703: -9,-20 + 704: -10,-20 + 705: -11,-20 + 706: -12,-20 + 3167: -22,-9 + 3168: -23,-9 + 3169: -24,-9 + 3170: -26,-9 + 3171: -25,-9 + 3172: -36,-5 + 3173: -37,-5 + 3174: -39,-5 + 3175: -38,-5 + 3176: -34,-5 + 3177: -33,-5 - node: color: '#79150096' id: HalfTileOverlayGreyscale decals: - 974: -76,-47 - 975: -77,-47 - 976: -78,-47 - 977: -79,-47 - 978: -80,-47 - 979: -81,-47 + 968: -76,-47 + 969: -77,-47 + 970: -78,-47 + 971: -79,-47 + 972: -80,-47 + 973: -81,-47 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale decals: - 1175: -29,-19 - 1176: -34,-20 - 1177: -33,-20 - 1178: -32,-20 - 1179: -31,-20 - 1184: -27,-22 + 1169: -29,-19 + 1170: -34,-20 + 1171: -33,-20 + 1172: -32,-20 + 1173: -31,-20 + 1178: -27,-22 - node: color: '#A4610696' id: HalfTileOverlayGreyscale decals: - 676: 0,-2 - 677: 1,-2 - 678: 2,-2 - 679: 9,-2 - 680: 8,-2 - 681: 7,-2 - 685: 6,-2 - 877: 21,2 - 878: 20,2 - 879: 19,2 - 880: 18,2 - 881: 17,2 - 882: 16,2 - 883: 15,2 - 1334: 26,-10 - 1335: 27,-10 - 1336: 28,-10 - 1337: 29,-10 - 1338: 30,-10 + 670: 0,-2 + 671: 1,-2 + 672: 2,-2 + 673: 9,-2 + 674: 8,-2 + 675: 7,-2 + 679: 6,-2 + 871: 21,2 + 872: 20,2 + 873: 19,2 + 874: 18,2 + 875: 17,2 + 876: 16,2 + 877: 15,2 + 1328: 26,-10 + 1329: 27,-10 + 1330: 28,-10 + 1331: 29,-10 + 1332: 30,-10 - node: color: '#D381C93B' id: HalfTileOverlayGreyscale decals: - 1649: 12,12 - 1650: 13,12 - 1651: 14,12 - 1652: 15,12 - 1653: 16,12 - 1654: 17,12 - 1655: 18,12 - 1656: 19,12 - 1657: 20,12 - 1659: 20,16 - 1674: 18,23 - 1675: 17,23 - 1676: 16,23 + 1622: 12,12 + 1623: 13,12 + 1624: 14,12 + 1625: 15,12 + 1626: 16,12 + 1627: 17,12 + 1628: 18,12 + 1629: 19,12 + 1630: 20,12 + 1632: 20,16 + 1647: 18,23 + 1648: 17,23 + 1649: 16,23 - node: color: '#D381C996' id: HalfTileOverlayGreyscale decals: - 1622: 29,11 - 1623: 28,11 - 1624: 27,11 - 1625: 26,11 - 1626: 25,11 - 1627: 24,11 - 1670: 24,23 - 1671: 25,23 - 1672: 20,23 - 1673: 19,23 + 1595: 29,11 + 1596: 28,11 + 1597: 27,11 + 1598: 26,11 + 1599: 25,11 + 1600: 24,11 + 1643: 24,23 + 1644: 25,23 + 1645: 20,23 + 1646: 19,23 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale @@ -2724,35 +2724,35 @@ entities: color: '#EFB34196' id: HalfTileOverlayGreyscale decals: - 825: -5,-39 - 826: -4,-39 - 827: -1,-39 - 828: -2,-39 - 829: -6,-39 - 830: -7,-39 - 831: -8,-39 - 832: -9,-39 - 833: -10,-39 - 834: -11,-39 - 2687: -12,-39 - 2688: -14,-39 - 3111: -31,-58 + 819: -5,-39 + 820: -4,-39 + 821: -1,-39 + 822: -2,-39 + 823: -6,-39 + 824: -7,-39 + 825: -8,-39 + 826: -9,-39 + 827: -10,-39 + 828: -11,-39 + 2653: -12,-39 + 2654: -14,-39 + 3077: -31,-58 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale180 decals: - 3125: -31,-64 + 3091: -31,-64 - node: color: '#33666DC8' id: HalfTileOverlayGreyscale180 decals: - 1685: 27,18 - 1686: 28,18 - 1687: 29,18 - 1688: 30,18 - 1689: 31,18 - 1690: 32,18 - 1691: 33,18 + 1658: 27,18 + 1659: 28,18 + 1660: 29,18 + 1661: 30,18 + 1662: 31,18 + 1663: 32,18 + 1664: 33,18 - node: color: '#52B4E935' id: HalfTileOverlayGreyscale180 @@ -2764,7 +2764,7 @@ entities: color: '#52B4E957' id: HalfTileOverlayGreyscale180 decals: - 2902: -49,42 + 2868: -49,42 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 @@ -2780,27 +2780,27 @@ entities: 561: -7,0 562: -6,0 563: -5,0 - 638: -26,-20 - 639: -25,-20 - 640: -24,-20 - 641: -23,-20 - 642: -22,-20 - 643: -22,-15 - 644: -23,-15 - 645: -24,-15 - 646: -25,-15 - 649: -22,-11 - 650: -23,-11 - 713: -8,-24 - 714: -9,-24 - 715: -10,-24 - 716: -11,-24 - 717: -12,-24 - 3219: -39,-8 - 3220: -38,-8 - 3221: -37,-8 - 3222: -35,-8 - 3223: -34,-8 + 637: -26,-20 + 638: -25,-20 + 639: -24,-20 + 640: -23,-20 + 641: -22,-20 + 642: -22,-15 + 643: -23,-15 + 644: -24,-15 + 645: -25,-15 + 648: -22,-11 + 649: -23,-11 + 707: -8,-24 + 708: -9,-24 + 709: -10,-24 + 710: -11,-24 + 711: -12,-24 + 3184: -39,-8 + 3185: -38,-8 + 3186: -37,-8 + 3187: -35,-8 + 3188: -34,-8 - node: color: '#79150096' id: HalfTileOverlayGreyscale180 @@ -2811,13 +2811,13 @@ entities: 38: -3,15 39: -2,15 40: -1,15 - 969: -80,-45 - 970: -79,-45 - 971: -78,-45 - 972: -77,-45 - 973: -76,-45 - 980: -81,-45 - 2039: 0,15 + 963: -80,-45 + 964: -79,-45 + 965: -78,-45 + 966: -77,-45 + 967: -76,-45 + 974: -81,-45 + 2012: 0,15 - node: color: '#9FED582F' id: HalfTileOverlayGreyscale180 @@ -2829,88 +2829,88 @@ entities: color: '#9FED5844' id: HalfTileOverlayGreyscale180 decals: - 2901: -46,42 + 2867: -46,42 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale180 decals: - 1169: -28,-13 - 1170: -29,-13 - 1171: -30,-13 - 1188: -27,-25 - 1189: -28,-25 - 1190: -29,-25 + 1163: -28,-13 + 1164: -29,-13 + 1165: -30,-13 + 1182: -27,-25 + 1183: -28,-25 + 1184: -29,-25 - node: color: '#A4610696' id: HalfTileOverlayGreyscale180 decals: - 673: -1,0 - 674: 0,0 - 675: 1,0 - 870: 21,0 - 871: 20,0 - 872: 19,0 - 873: 18,0 - 874: 17,0 - 875: 16,0 - 876: 15,0 - 884: 19,-12 - 885: 20,-12 - 886: 21,-12 - 887: 16,-12 - 888: 17,-12 - 1339: 23,-12 - 1340: 24,-12 - 1341: 25,-12 - 1342: 26,-12 - 1343: 27,-12 - 1344: 28,-12 - 1345: 29,-12 - 1346: 30,-12 - 1347: 31,-12 - 1388: 26,-8 - 1389: 27,-8 - 1390: 28,-8 - 1391: 29,-8 - 1392: 30,-8 + 667: -1,0 + 668: 0,0 + 669: 1,0 + 864: 21,0 + 865: 20,0 + 866: 19,0 + 867: 18,0 + 868: 17,0 + 869: 16,0 + 870: 15,0 + 878: 19,-12 + 879: 20,-12 + 880: 21,-12 + 881: 16,-12 + 882: 17,-12 + 1333: 23,-12 + 1334: 24,-12 + 1335: 25,-12 + 1336: 26,-12 + 1337: 27,-12 + 1338: 28,-12 + 1339: 29,-12 + 1340: 30,-12 + 1341: 31,-12 + 1382: 26,-8 + 1383: 27,-8 + 1384: 28,-8 + 1385: 29,-8 + 1386: 30,-8 - node: color: '#D381C93B' id: HalfTileOverlayGreyscale180 decals: - 1633: 23,7 - 1634: 22,7 - 1635: 21,7 - 1640: 20,10 - 1641: 19,10 - 1642: 18,10 - 1643: 17,10 - 1644: 16,10 - 1645: 15,10 - 1646: 14,10 - 1647: 13,10 - 1648: 12,10 - 1658: 20,14 - 1703: 12,14 - 1704: 13,14 - 1705: 14,14 + 1606: 23,7 + 1607: 22,7 + 1608: 21,7 + 1613: 20,10 + 1614: 19,10 + 1615: 18,10 + 1616: 17,10 + 1617: 16,10 + 1618: 15,10 + 1619: 14,10 + 1620: 13,10 + 1621: 12,10 + 1631: 20,14 + 1676: 12,14 + 1677: 13,14 + 1678: 14,14 - node: color: '#D381C996' id: HalfTileOverlayGreyscale180 decals: - 1160: 24,25 - 1161: 20,25 - 1162: 19,25 - 1163: 18,25 - 1164: 17,25 - 1165: 16,25 - 1166: 15,25 - 1167: 14,25 - 1168: 13,25 - 1665: 21,18 - 1666: 22,18 - 1667: 23,18 - 1668: 24,18 - 1669: 25,18 + 1154: 24,25 + 1155: 20,25 + 1156: 19,25 + 1157: 18,25 + 1158: 17,25 + 1159: 16,25 + 1160: 15,25 + 1161: 14,25 + 1162: 13,25 + 1638: 21,18 + 1639: 22,18 + 1640: 23,18 + 1641: 24,18 + 1642: 25,18 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale180 @@ -2953,7 +2953,7 @@ entities: 435: 14,20 477: -18,-3 478: -19,-3 - 2899: -43,42 + 2865: -43,42 - node: color: '#EDD75E93' id: HalfTileOverlayGreyscale180 @@ -2972,7 +2972,7 @@ entities: color: '#EFB3415D' id: HalfTileOverlayGreyscale180 decals: - 2900: -42,42 + 2866: -42,42 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale180 @@ -2982,23 +2982,23 @@ entities: 88: -42,17 89: -43,17 90: -44,17 - 3127: -28,-60 - 3128: -27,-60 - 3129: -26,-60 + 3093: -28,-60 + 3094: -27,-60 + 3095: -26,-60 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale270 decals: - 1114: -2,63 - 1115: -2,64 - 1116: -2,65 - 1117: -2,66 - 1849: -5,28 - 1852: -16,28 - 1861: -5,34 - 1862: -16,34 - 1926: -5,36 - 1927: -16,36 + 1108: -2,63 + 1109: -2,64 + 1110: -2,65 + 1111: -2,66 + 1822: -5,28 + 1825: -16,28 + 1834: -5,34 + 1835: -16,34 + 1899: -5,36 + 1900: -16,36 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale270 @@ -3006,54 +3006,54 @@ entities: 556: -5,-4 557: -5,-3 587: -20,-6 - 614: -20,-15 - 615: -20,-16 - 616: -20,-17 - 617: -20,-20 - 618: -20,-21 - 619: -20,-22 - 620: -20,-23 - 621: -20,-24 - 656: -30,-6 - 657: -30,-8 - 658: -30,-9 - 719: -12,-23 - 720: -12,-22 - 721: -12,-21 - 1195: -32,-2 - 2549: -30,-10 - 3217: -40,-7 - 3218: -40,-6 + 613: -20,-15 + 614: -20,-16 + 615: -20,-17 + 616: -20,-20 + 617: -20,-21 + 618: -20,-22 + 619: -20,-23 + 620: -20,-24 + 650: -30,-6 + 651: -30,-8 + 652: -30,-9 + 713: -12,-23 + 714: -12,-22 + 715: -12,-21 + 1189: -32,-2 + 2522: -30,-10 + 3182: -40,-7 + 3183: -40,-6 - node: color: '#A4610696' id: HalfTileOverlayGreyscale270 decals: - 683: 3,-1 - 698: 11,-8 - 699: 11,-7 - 700: 11,-6 - 701: 11,-5 - 702: 11,-4 - 703: 11,-3 - 704: 11,-2 - 1153: 27,0 - 1154: 27,1 - 1155: 27,2 + 677: 3,-1 + 692: 11,-8 + 693: 11,-7 + 694: 11,-6 + 695: 11,-5 + 696: 11,-4 + 697: 11,-3 + 698: 11,-2 + 1147: 27,0 + 1148: 27,1 + 1149: 27,2 - node: color: '#D381C93B' id: HalfTileOverlayGreyscale270 decals: - 1637: 21,8 - 1638: 21,9 - 1660: 21,13 - 1661: 21,17 + 1610: 21,8 + 1611: 21,9 + 1633: 21,13 + 1634: 21,17 - node: color: '#D381C996' id: HalfTileOverlayGreyscale270 decals: - 2218: 30,21 - 2219: 30,22 - 2220: 30,23 + 2191: 30,21 + 2192: 30,22 + 2193: 30,23 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 @@ -3105,28 +3105,28 @@ entities: color: '#EFB34196' id: HalfTileOverlayGreyscale270 decals: - 729: 9,-30 - 730: 9,-29 - 731: 9,-28 - 858: -10,-37 - 859: -10,-36 - 860: -10,-35 - 861: -10,-34 - 3110: -31,-60 + 723: 9,-30 + 724: 9,-29 + 725: 9,-28 + 852: -10,-37 + 853: -10,-36 + 854: -10,-35 + 855: -10,-34 + 3076: -31,-60 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale90 decals: - 1119: 0,66 - 1120: 0,65 - 1121: 0,64 - 1122: 0,63 - 1850: -4,28 - 1851: -15,28 - 1860: -4,34 - 1863: -15,34 - 1928: -15,36 - 1929: -4,36 + 1113: 0,66 + 1114: 0,65 + 1115: 0,64 + 1116: 0,63 + 1823: -4,28 + 1824: -15,28 + 1833: -4,34 + 1836: -15,34 + 1901: -15,36 + 1902: -4,36 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale90 @@ -3138,61 +3138,61 @@ entities: 580: -15,-6 581: -15,-5 588: -18,-6 - 622: -18,-24 - 623: -18,-23 - 624: -18,-22 - 625: -18,-20 - 626: -18,-19 - 627: -18,-18 - 628: -18,-17 - 629: -18,-16 - 630: -18,-14 - 661: -28,-11 - 662: -28,-8 - 663: -28,-7 - 664: -28,-6 - 725: -8,-23 - 726: -8,-22 - 727: -8,-21 - 1196: -31,-2 - 3224: -32,-6 + 621: -18,-24 + 622: -18,-23 + 623: -18,-22 + 624: -18,-20 + 625: -18,-19 + 626: -18,-18 + 627: -18,-17 + 628: -18,-16 + 629: -18,-14 + 655: -28,-11 + 656: -28,-8 + 657: -28,-7 + 658: -28,-6 + 719: -8,-23 + 720: -8,-22 + 721: -8,-21 + 1190: -31,-2 + 3189: -32,-6 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale90 decals: - 1181: -28,-20 - 1182: -28,-21 - 1186: -26,-23 - 1187: -26,-24 + 1175: -28,-20 + 1176: -28,-21 + 1180: -26,-23 + 1181: -26,-24 - node: color: '#A4610696' id: HalfTileOverlayGreyscale90 decals: - 684: 5,-1 - 1333: 21,-4 + 678: 5,-1 + 1327: 21,-4 - node: cleanable: True color: '#A4610696' id: HalfTileOverlayGreyscale90 decals: - 1331: 21,-6 - 1332: 21,-5 + 1325: 21,-6 + 1326: 21,-5 - node: color: '#D381C93B' id: HalfTileOverlayGreyscale90 decals: - 1683: 23,17 - 1707: 15,15 - 1708: 15,16 - 1709: 15,17 - 1710: 15,18 + 1656: 23,17 + 1680: 15,15 + 1681: 15,16 + 1682: 15,17 + 1683: 15,18 - node: color: '#D381C996' id: HalfTileOverlayGreyscale90 decals: - 2221: 32,21 - 2222: 32,22 - 2223: 32,23 + 2194: 32,21 + 2195: 32,22 + 2196: 32,23 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale90 @@ -3240,7 +3240,7 @@ entities: 471: -17,-3 472: -17,-2 473: -17,-1 - 3065: 14,21 + 3031: 14,21 - node: color: '#EDD75E93' id: HalfTileOverlayGreyscale90 @@ -3256,20 +3256,20 @@ entities: color: '#EFB34196' id: HalfTileOverlayGreyscale90 decals: - 732: 12,-30 - 733: 12,-29 - 734: 12,-28 - 862: -6,-37 - 863: -6,-36 - 864: -6,-35 - 865: -6,-34 - 3112: -30,-60 - 3113: -30,-59 + 726: 12,-30 + 727: 12,-29 + 728: 12,-28 + 856: -6,-37 + 857: -6,-36 + 858: -6,-35 + 859: -6,-34 + 3078: -30,-60 + 3079: -30,-59 - node: color: '#FFFFFFFF' id: HatchSmall decals: - 1901: -3,32 + 1874: -3,32 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -3281,9 +3281,9 @@ entities: color: '#FFFFFFFF' id: LoadingArea decals: - 1326: 16,-4 - 1421: 34,-7 - 2598: 3,-30 + 1320: 16,-4 + 1415: 34,-7 + 2564: 3,-30 - node: color: '#FFFFFFFF' id: LoadingArea @@ -3293,119 +3293,119 @@ entities: color: '#FFFFFFFF' id: MiniTileDarkLineE decals: - 1999: -57,-57 + 1972: -57,-57 - node: color: '#FFFFFFFF' id: MiniTileDarkLineS decals: - 1732: -27,38 - 1993: -65,-60 + 1705: -27,38 + 1966: -65,-60 - node: color: '#FFFFFFFF' id: MiniTileSteelLineE decals: - 2010: -69,-55 + 1983: -69,-55 - node: color: '#FFFFFFFF' id: MiniTileSteelLineW decals: - 2000: -56,-54 + 1973: -56,-54 - node: color: '#52B4E996' id: MiniTileWhiteCornerNe decals: - 2149: -32,-10 + 2122: -32,-10 - node: color: '#52B4E996' id: MiniTileWhiteCornerNw decals: - 2557: -34,-10 + 2530: -34,-10 - node: color: '#52B4E996' id: MiniTileWhiteCornerSe decals: - 2143: -32,-16 + 2116: -32,-16 - node: color: '#52B4E996' id: MiniTileWhiteCornerSw decals: - 2144: -34,-16 + 2117: -34,-16 - node: color: '#52B4E996' id: MiniTileWhiteLineE decals: - 2145: -32,-15 - 2146: -32,-13 - 2147: -32,-14 - 2148: -32,-12 - 2566: -36,-15 - 2567: -36,-13 - 2568: -36,-12 - 2569: -36,-11 - 2570: -36,-10 + 2118: -32,-15 + 2119: -32,-13 + 2120: -32,-14 + 2121: -32,-12 + 2539: -36,-15 + 2540: -36,-13 + 2541: -36,-12 + 2542: -36,-11 + 2543: -36,-10 - node: color: '#EFB34196' id: MiniTileWhiteLineE decals: - 2780: -11,-41 + 2746: -11,-41 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineE decals: - 1960: 25,26 - 2561: -36,-15 - 2562: -36,-13 - 2563: -36,-11 - 2564: -36,-12 - 2565: -36,-10 + 1933: 25,26 + 2534: -36,-15 + 2535: -36,-13 + 2536: -36,-11 + 2537: -36,-12 + 2538: -36,-10 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineN decals: - 1733: -27,38 + 1706: -27,38 - node: color: '#52B4E996' id: MiniTileWhiteLineS decals: - 2142: -33,-16 + 2115: -33,-16 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineS decals: - 1961: 26,32 + 1934: 26,32 - node: color: '#52B4E996' id: MiniTileWhiteLineW decals: - 2553: -34,-15 - 2554: -34,-13 - 2555: -34,-12 - 2556: -34,-11 + 2526: -34,-15 + 2527: -34,-13 + 2528: -34,-12 + 2529: -34,-11 - node: color: '#EFB34196' id: MiniTileWhiteLineW decals: - 2781: -5,-41 + 2747: -5,-41 - node: color: '#D381C996' id: MonoOverlay decals: - 2948: 29,21 - 2949: 28,22 - 2950: 29,23 - 2951: 27,23 - 2952: 27,21 + 2914: 29,21 + 2915: 28,22 + 2916: 29,23 + 2917: 27,23 + 2918: 27,21 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale decals: - 1848: -5,27 - 1854: -16,27 - 1857: -2,27 - 1935: -16,38 - 1936: -16,41 - 1937: -16,40 - 1938: -16,39 + 1821: -5,27 + 1827: -16,27 + 1830: -2,27 + 1908: -16,38 + 1909: -16,41 + 1910: -16,40 + 1911: -16,39 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale @@ -3414,33 +3414,33 @@ entities: 583: -15,-5 591: -20,-7 594: -20,-8 - 631: -20,-18 - 659: -30,-12 - 718: -12,-24 + 630: -20,-18 + 653: -30,-12 + 712: -12,-24 - node: color: '#79150096' id: QuarterTileOverlayGreyscale decals: - 981: -81,-45 - 982: -80,-45 - 983: -79,-45 - 984: -78,-45 - 985: -77,-45 - 986: -76,-45 - 2421: -52,13 - 2422: -53,13 - 2423: -54,13 - 2424: -55,13 - 2425: -56,13 - 2426: -56,21 - 2427: -55,21 - 2428: -54,21 - 2429: -53,21 - 2430: -52,21 - 2441: -51,13 - 2442: -51,14 - 2447: -51,22 - 2448: -51,21 + 975: -81,-45 + 976: -80,-45 + 977: -79,-45 + 978: -78,-45 + 979: -77,-45 + 980: -76,-45 + 2394: -52,13 + 2395: -53,13 + 2396: -54,13 + 2397: -55,13 + 2398: -56,13 + 2399: -56,21 + 2400: -55,21 + 2401: -54,21 + 2402: -53,21 + 2403: -52,21 + 2414: -51,13 + 2415: -51,14 + 2420: -51,22 + 2421: -51,21 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale @@ -3449,145 +3449,145 @@ entities: 17: -24,3 18: -28,3 19: -29,3 - 1180: -30,-20 - 1289: -25,3 - 1300: -26,3 - 1301: -27,3 + 1174: -30,-20 + 1283: -25,3 + 1294: -26,3 + 1295: -27,3 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale decals: - 682: 3,-2 - 705: 11,-9 + 676: 3,-2 + 699: 11,-9 - node: color: '#D381C93B' id: QuarterTileOverlayGreyscale decals: - 1636: 21,7 - 1663: 21,12 - 1664: 21,16 + 1609: 21,7 + 1636: 21,12 + 1637: 21,16 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale decals: - 940: 8,7 - 941: 8,8 - 942: 8,9 - 943: 8,10 - 944: 8,11 - 945: 8,12 - 946: 8,13 - 947: 8,14 - 948: 8,15 - 949: 8,16 - 950: 8,17 - 951: 8,18 - 952: 8,19 - 953: 8,20 - 954: 8,21 - 955: 8,22 - 956: 8,23 + 934: 8,7 + 935: 8,8 + 936: 8,9 + 937: 8,10 + 938: 8,11 + 939: 8,12 + 940: 8,13 + 941: 8,14 + 942: 8,15 + 943: 8,16 + 944: 8,17 + 945: 8,18 + 946: 8,19 + 947: 8,20 + 948: 8,21 + 949: 8,22 + 950: 8,23 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale decals: - 2316: -12,4 - 2317: -11,4 - 2318: -10,4 - 2319: -9,4 - 2320: -8,4 - 2321: -7,4 - 2322: -6,4 - 2341: -22,3 - 2342: -22,4 - 2343: -22,5 - 2344: -22,6 - 2345: -22,7 - 2367: -44,-3 - 2478: 11,-19 - 2479: 11,-18 - 2480: 11,-17 - 2481: 10,-19 - 2482: 9,-19 - 2483: 8,-19 - 2484: 7,-19 - 2485: 5,-19 - 2486: 6,-19 - 2487: 4,-19 - 2488: 3,-19 - 2489: 2,-19 - 2490: 1,-19 - 2491: 0,-19 - 2492: -1,-19 - 2493: -2,-19 - 2494: -3,-19 - 2495: -4,-19 - 2496: 11,-16 - 2497: 11,-15 - 2498: 11,-14 - 2522: -37,34 - 2523: -37,33 - 2524: -37,32 - 2525: -37,31 - 2526: -37,30 - 2527: -37,29 - 2528: -37,28 - 2529: -37,27 - 2530: -37,26 - 2531: -37,25 - 2532: -37,24 - 2533: -37,23 - 2534: -37,22 - 2535: -37,21 - 2536: -37,20 - 2537: -37,19 - 2538: -37,18 - 2539: -37,17 - 2540: -37,16 - 2541: -37,15 - 2542: -38,15 - 2976: 7,35 - 2977: 7,34 - 2986: 13,27 - 2987: 14,27 - 2988: 15,27 - 2989: 16,27 - 2990: 17,27 - 2991: 18,27 - 2992: 19,27 - 2993: 20,27 - 2994: 21,27 - 2995: 21,28 - 2996: 21,29 - 2997: 21,30 - 2998: 21,31 - 3009: 24,40 - 3010: 23,40 - 3011: 22,40 - 3012: 21,40 - 3013: 20,40 - 3014: 20,39 - 3015: 20,38 - 3016: 20,37 - 3017: 20,36 - 3018: 20,35 - 3019: 20,34 - 3020: 20,33 + 2289: -12,4 + 2290: -11,4 + 2291: -10,4 + 2292: -9,4 + 2293: -8,4 + 2294: -7,4 + 2295: -6,4 + 2314: -22,3 + 2315: -22,4 + 2316: -22,5 + 2317: -22,6 + 2318: -22,7 + 2340: -44,-3 + 2451: 11,-19 + 2452: 11,-18 + 2453: 11,-17 + 2454: 10,-19 + 2455: 9,-19 + 2456: 8,-19 + 2457: 7,-19 + 2458: 5,-19 + 2459: 6,-19 + 2460: 4,-19 + 2461: 3,-19 + 2462: 2,-19 + 2463: 1,-19 + 2464: 0,-19 + 2465: -1,-19 + 2466: -2,-19 + 2467: -3,-19 + 2468: -4,-19 + 2469: 11,-16 + 2470: 11,-15 + 2471: 11,-14 + 2495: -37,34 + 2496: -37,33 + 2497: -37,32 + 2498: -37,31 + 2499: -37,30 + 2500: -37,29 + 2501: -37,28 + 2502: -37,27 + 2503: -37,26 + 2504: -37,25 + 2505: -37,24 + 2506: -37,23 + 2507: -37,22 + 2508: -37,21 + 2509: -37,20 + 2510: -37,19 + 2511: -37,18 + 2512: -37,17 + 2513: -37,16 + 2514: -37,15 + 2515: -38,15 + 2942: 7,35 + 2943: 7,34 + 2952: 13,27 + 2953: 14,27 + 2954: 15,27 + 2955: 16,27 + 2956: 17,27 + 2957: 18,27 + 2958: 19,27 + 2959: 20,27 + 2960: 21,27 + 2961: 21,28 + 2962: 21,29 + 2963: 21,30 + 2964: 21,31 + 2975: 24,40 + 2976: 23,40 + 2977: 22,40 + 2978: 21,40 + 2979: 20,40 + 2980: 20,39 + 2981: 20,38 + 2982: 20,37 + 2983: 20,36 + 2984: 20,35 + 2985: 20,34 + 2986: 20,33 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale decals: - 2379: -58,10 - 2380: -57,10 - 2381: -56,10 - 2382: -55,10 - 2383: -54,10 - 2384: -53,10 - 2385: -52,10 - 2386: -51,10 - 2387: -50,10 - 2388: -49,10 - 2389: -48,10 + 2352: -58,10 + 2353: -57,10 + 2354: -56,10 + 2355: -55,10 + 2356: -54,10 + 2357: -53,10 + 2358: -52,10 + 2359: -51,10 + 2360: -50,10 + 2361: -49,10 + 2362: -48,10 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale @@ -3600,7 +3600,7 @@ entities: 354: -37,37 436: 12,20 481: -17,-1 - 2923: -49,45 + 2889: -49,45 - node: color: '#EDD75E93' id: QuarterTileOverlayGreyscale @@ -3612,12 +3612,12 @@ entities: color: '#EFB34196' id: QuarterTileOverlayGreyscale decals: - 793: -4,-2 - 794: -4,-5 - 1304: 2,-28 - 1305: 1,-28 - 1306: 0,-28 - 1307: -1,-28 + 787: -4,-2 + 788: -4,-5 + 1298: 2,-28 + 1299: 1,-28 + 1300: 0,-28 + 1301: -1,-28 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 @@ -3655,160 +3655,160 @@ entities: 607: -12,-8 610: -18,-12 611: -18,-13 - 723: -8,-20 + 717: -8,-20 - node: color: '#79150096' id: QuarterTileOverlayGreyscale180 decals: - 2431: -56,23 - 2432: -54,23 - 2433: -55,23 - 2434: -52,23 - 2435: -53,23 - 2436: -56,15 - 2437: -55,15 - 2438: -54,15 - 2439: -53,15 - 2440: -52,15 - 2443: -57,14 - 2444: -57,15 - 2445: -57,22 - 2446: -57,23 + 2404: -56,23 + 2405: -54,23 + 2406: -55,23 + 2407: -52,23 + 2408: -53,23 + 2409: -56,15 + 2410: -55,15 + 2411: -54,15 + 2412: -53,15 + 2413: -52,15 + 2416: -57,14 + 2417: -57,15 + 2418: -57,22 + 2419: -57,23 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale180 decals: - 688: 5,0 - 689: 6,1 - 694: 17,-8 - 695: 16,-8 - 696: 15,-8 - 697: 14,-8 - 957: 13,0 - 958: 13,1 - 959: 13,2 - 960: 13,3 - 961: 13,4 - 3048: 5,1 + 682: 5,0 + 683: 6,1 + 688: 17,-8 + 689: 16,-8 + 690: 15,-8 + 691: 14,-8 + 951: 13,0 + 952: 13,1 + 953: 13,2 + 954: 13,3 + 955: 13,4 + 3014: 5,1 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale180 decals: - 1583: 39,7 - 1584: 38,7 - 1585: 37,7 - 1586: 36,7 - 1587: 35,7 - 1588: 40,8 - 1589: 40,9 - 1590: 40,10 + 1556: 39,7 + 1557: 38,7 + 1558: 37,7 + 1559: 36,7 + 1560: 35,7 + 1561: 40,8 + 1562: 40,9 + 1563: 40,10 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale180 decals: - 2255: 10,24 - 2256: 10,25 - 2257: 11,25 - 2260: -11,25 - 2261: -12,25 - 2262: -13,25 - 2263: -14,25 - 2264: -15,25 - 2265: -16,25 - 2266: -17,25 - 2267: -18,25 - 2268: -19,25 - 2269: -20,25 - 2270: -21,25 - 2271: -22,25 - 2272: -23,25 - 2273: -24,25 - 2274: -25,25 - 2275: -26,25 - 2276: -27,25 - 2277: -28,25 - 2278: -29,25 - 2279: -30,25 - 2280: -31,25 - 2281: -32,25 - 2282: -33,25 - 2283: -34,25 - 2284: -35,25 - 2285: -35,24 - 2286: -35,23 - 2287: -35,22 - 2288: -35,21 - 2289: -35,20 - 2290: -35,19 - 2291: -35,18 - 2292: -35,17 - 2293: -35,16 - 2294: -35,15 - 2295: -35,14 - 2296: -35,12 - 2297: -35,13 - 2298: -35,11 - 2299: -35,10 - 2300: -35,9 - 2301: -35,7 - 2302: -35,8 - 2303: -35,6 - 2304: -35,5 - 2353: -40,5 - 2354: -41,5 - 2355: -42,5 - 2356: -43,5 - 2357: -44,5 - 2358: -45,5 - 2359: -45,4 - 2360: -45,3 - 2361: -45,2 - 2362: -45,1 - 2363: -45,0 - 2364: -45,-1 - 2365: -45,-2 - 2373: -44,-6 - 2374: -45,-6 - 2465: -47,13 - 2466: -46,13 - 2467: -45,13 - 2468: -44,13 - 2469: -43,13 - 2470: -42,13 - 2471: -40,13 - 2472: -41,13 - 2868: -28,1 - 2869: -29,1 - 2870: -30,1 - 2871: -31,1 - 2872: -32,1 - 2873: -33,1 - 3021: 24,33 - 3022: 25,33 - 3023: 26,33 - 3024: 27,33 - 3025: 27,34 - 3026: 27,35 - 3027: 33,35 - 3028: 32,35 - 3029: 31,35 - 3030: 30,35 - 3031: 29,35 + 2228: 10,24 + 2229: 10,25 + 2230: 11,25 + 2233: -11,25 + 2234: -12,25 + 2235: -13,25 + 2236: -14,25 + 2237: -15,25 + 2238: -16,25 + 2239: -17,25 + 2240: -18,25 + 2241: -19,25 + 2242: -20,25 + 2243: -21,25 + 2244: -22,25 + 2245: -23,25 + 2246: -24,25 + 2247: -25,25 + 2248: -26,25 + 2249: -27,25 + 2250: -28,25 + 2251: -29,25 + 2252: -30,25 + 2253: -31,25 + 2254: -32,25 + 2255: -33,25 + 2256: -34,25 + 2257: -35,25 + 2258: -35,24 + 2259: -35,23 + 2260: -35,22 + 2261: -35,21 + 2262: -35,20 + 2263: -35,19 + 2264: -35,18 + 2265: -35,17 + 2266: -35,16 + 2267: -35,15 + 2268: -35,14 + 2269: -35,12 + 2270: -35,13 + 2271: -35,11 + 2272: -35,10 + 2273: -35,9 + 2274: -35,7 + 2275: -35,8 + 2276: -35,6 + 2277: -35,5 + 2326: -40,5 + 2327: -41,5 + 2328: -42,5 + 2329: -43,5 + 2330: -44,5 + 2331: -45,5 + 2332: -45,4 + 2333: -45,3 + 2334: -45,2 + 2335: -45,1 + 2336: -45,0 + 2337: -45,-1 + 2338: -45,-2 + 2346: -44,-6 + 2347: -45,-6 + 2438: -47,13 + 2439: -46,13 + 2440: -45,13 + 2441: -44,13 + 2442: -43,13 + 2443: -42,13 + 2444: -40,13 + 2445: -41,13 + 2834: -28,1 + 2835: -29,1 + 2836: -30,1 + 2837: -31,1 + 2838: -32,1 + 2839: -33,1 + 2987: 24,33 + 2988: 25,33 + 2989: 26,33 + 2990: 27,33 + 2991: 27,34 + 2992: 27,35 + 2993: 33,35 + 2994: 32,35 + 2995: 31,35 + 2996: 30,35 + 2997: 29,35 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale180 decals: - 3141: -50,-6 - 3142: -51,-6 - 3143: -52,-6 - 3144: -53,-6 - 3145: -55,-6 - 3146: -54,-6 - 3147: -56,-6 - 3148: -57,-6 - 3149: -58,-6 - 3150: -59,-6 - 3151: -60,-6 + 3107: -50,-6 + 3108: -51,-6 + 3109: -52,-6 + 3110: -53,-6 + 3111: -55,-6 + 3112: -54,-6 + 3113: -56,-6 + 3114: -57,-6 + 3115: -58,-6 + 3116: -59,-6 + 3117: -60,-6 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale180 @@ -3831,54 +3831,54 @@ entities: color: '#EFB34196' id: QuarterTileOverlayGreyscale180 decals: - 747: -2,-23 - 748: -2,-24 - 749: -2,-25 - 750: -2,-26 - 751: -2,-27 - 762: 2,-31 - 763: 3,-31 - 764: 3,-30 - 765: 3,-29 - 993: -81,-44 - 994: -80,-44 - 995: -79,-44 - 996: -78,-44 - 997: -77,-44 - 1308: -1,-21 - 1309: 0,-21 - 1310: 1,-21 - 1311: 3,-21 - 1312: 4,-21 - 1318: 2,-21 - 2727: -12,-36 - 2728: -12,-35 - 2729: -12,-34 - 2730: -12,-33 + 741: -2,-23 + 742: -2,-24 + 743: -2,-25 + 744: -2,-26 + 745: -2,-27 + 756: 2,-31 + 757: 3,-31 + 758: 3,-30 + 759: 3,-29 + 987: -81,-44 + 988: -80,-44 + 989: -79,-44 + 990: -78,-44 + 991: -77,-44 + 1302: -1,-21 + 1303: 0,-21 + 1304: 1,-21 + 1305: 3,-21 + 1306: 4,-21 + 1312: 2,-21 + 2693: -12,-36 + 2694: -12,-35 + 2695: -12,-34 + 2696: -12,-33 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale270 decals: - 2305: -4,25 - 2306: -3,25 - 2307: -2,25 - 2308: -1,25 - 2309: 0,25 + 2278: -4,25 + 2279: -3,25 + 2280: -2,25 + 2281: -1,25 + 2282: 0,25 - node: color: '#52B4E93E' id: QuarterTileOverlayGreyscale270 decals: - 3130: -60,-6 - 3131: -59,-6 - 3132: -58,-6 - 3133: -57,-6 - 3134: -56,-6 - 3135: -55,-6 - 3136: -54,-6 - 3137: -53,-6 - 3138: -51,-6 - 3139: -52,-6 - 3140: -50,-6 + 3096: -60,-6 + 3097: -59,-6 + 3098: -58,-6 + 3099: -57,-6 + 3100: -56,-6 + 3101: -55,-6 + 3102: -54,-6 + 3103: -53,-6 + 3104: -51,-6 + 3105: -52,-6 + 3106: -50,-6 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 @@ -3898,117 +3898,117 @@ entities: 608: -13,-8 609: -20,-12 612: -20,-13 - 632: -20,-19 - 722: -12,-20 + 631: -20,-19 + 716: -12,-20 - node: color: '#79150096' id: QuarterTileOverlayGreyscale270 decals: - 987: -81,-47 - 988: -80,-47 - 989: -79,-47 - 990: -78,-47 - 991: -77,-47 - 992: -76,-47 + 981: -81,-47 + 982: -80,-47 + 983: -79,-47 + 984: -78,-47 + 985: -77,-47 + 986: -76,-47 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale270 decals: - 687: 3,0 - 706: 11,0 - 1348: 32,-12 - 3044: 8,1 - 3045: 9,1 - 3046: 10,1 - 3047: 11,1 + 681: 3,0 + 700: 11,0 + 1342: 32,-12 + 3010: 8,1 + 3011: 9,1 + 3012: 10,1 + 3013: 11,1 - node: color: '#D381C93B' id: QuarterTileOverlayGreyscale270 decals: - 1639: 21,10 - 1662: 21,14 + 1612: 21,10 + 1635: 21,14 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale270 decals: - 1628: 25,7 - 1629: 26,7 - 1630: 27,7 - 1631: 28,7 - 1632: 29,7 - 1702: 24,7 + 1601: 25,7 + 1602: 26,7 + 1603: 27,7 + 1604: 28,7 + 1605: 29,7 + 1675: 24,7 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale270 decals: - 2246: -9,25 - 2247: -8,25 - 2248: -7,25 - 2249: -6,25 - 2250: -5,25 - 2251: 1,25 - 2252: 2,25 - 2253: 8,25 - 2254: 8,24 - 2258: 6,25 - 2259: 7,25 - 2313: 8,6 - 2314: 8,5 - 2315: 8,4 - 2346: -37,1 - 2347: -37,2 - 2348: -37,3 - 2349: -37,4 - 2350: -37,5 - 2351: -38,5 - 2352: -39,5 - 2372: -44,-6 - 2499: 11,-12 - 2500: 10,-12 - 2501: 9,-12 - 2502: 8,-12 - 3164: -60,7 - 3165: -58,7 - 3166: -57,7 - 3167: -56,7 - 3168: -55,7 - 3169: -54,7 - 3170: -53,7 - 3171: -51,7 - 3172: -50,7 - 3173: -49,7 - 3174: -48,7 - 3175: -47,7 - 3176: -46,7 - 3177: -46,6 - 3178: -46,5 - 3179: -46,4 - 3180: -46,3 - 3181: -46,2 - 3182: -46,1 - 3183: -46,0 - 3184: -46,-1 - 3185: -46,-2 - 3186: -46,-3 - 3187: -46,-4 + 2219: -9,25 + 2220: -8,25 + 2221: -7,25 + 2222: -6,25 + 2223: -5,25 + 2224: 1,25 + 2225: 2,25 + 2226: 8,25 + 2227: 8,24 + 2231: 6,25 + 2232: 7,25 + 2286: 8,6 + 2287: 8,5 + 2288: 8,4 + 2319: -37,1 + 2320: -37,2 + 2321: -37,3 + 2322: -37,4 + 2323: -37,5 + 2324: -38,5 + 2325: -39,5 + 2345: -44,-6 + 2472: 11,-12 + 2473: 10,-12 + 2474: 9,-12 + 2475: 8,-12 + 3130: -60,7 + 3131: -58,7 + 3132: -57,7 + 3133: -56,7 + 3134: -55,7 + 3135: -54,7 + 3136: -53,7 + 3137: -51,7 + 3138: -50,7 + 3139: -49,7 + 3140: -48,7 + 3141: -47,7 + 3142: -46,7 + 3143: -46,6 + 3144: -46,5 + 3145: -46,4 + 3146: -46,3 + 3147: -46,2 + 3148: -46,1 + 3149: -46,0 + 3150: -46,-1 + 3151: -46,-2 + 3152: -46,-3 + 3153: -46,-4 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale270 decals: - 2401: -56,15 - 2402: -55,15 - 2403: -54,15 - 2404: -52,15 - 2405: -53,15 - 2406: -52,23 - 2407: -53,23 - 2408: -54,23 - 2409: -55,23 - 2410: -56,23 - 2449: -51,23 - 2450: -51,22 - 2451: -51,15 - 2452: -51,14 + 2374: -56,15 + 2375: -55,15 + 2376: -54,15 + 2377: -52,15 + 2378: -53,15 + 2379: -52,23 + 2380: -53,23 + 2381: -54,23 + 2382: -55,23 + 2383: -56,23 + 2422: -51,23 + 2423: -51,22 + 2424: -51,15 + 2425: -51,14 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 @@ -4045,68 +4045,68 @@ entities: color: '#EFB34196' id: QuarterTileOverlayGreyscale270 decals: - 735: -4,-19 - 736: -4,-20 - 737: -4,-21 - 738: -4,-23 - 739: -4,-24 - 740: -4,-25 - 741: -4,-26 - 742: -4,-27 - 743: -4,-28 - 744: -4,-29 - 745: -4,-30 - 746: -4,-31 - 758: -3,-31 - 759: -2,-31 - 760: -1,-31 - 761: 0,-31 - 1313: 8,-21 - 1314: 9,-21 - 1315: 11,-21 - 1316: 12,-21 - 1317: 13,-21 - 2310: 5,25 - 2311: 4,25 - 2312: 3,25 - 2723: -14,-36 - 2724: -14,-35 - 2725: -14,-34 - 2726: -14,-33 - 3117: -31,-59 + 729: -4,-19 + 730: -4,-20 + 731: -4,-21 + 732: -4,-23 + 733: -4,-24 + 734: -4,-25 + 735: -4,-26 + 736: -4,-27 + 737: -4,-28 + 738: -4,-29 + 739: -4,-30 + 740: -4,-31 + 752: -3,-31 + 753: -2,-31 + 754: -1,-31 + 755: 0,-31 + 1307: 8,-21 + 1308: 9,-21 + 1309: 11,-21 + 1310: 12,-21 + 1311: 13,-21 + 2283: 5,25 + 2284: 4,25 + 2285: 3,25 + 2689: -14,-36 + 2690: -14,-35 + 2691: -14,-34 + 2692: -14,-33 + 3083: -31,-59 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale90 decals: - 1853: -15,27 - 1855: -4,27 - 1859: -18,27 - 1930: -4,37 - 1931: -4,38 - 1932: -4,39 - 1933: -4,40 - 1934: -4,41 - 1941: -19,27 - 1942: -20,27 - 1943: -21,27 - 1944: -22,27 - 1945: -23,27 - 1946: -24,27 + 1826: -15,27 + 1828: -4,27 + 1832: -18,27 + 1903: -4,37 + 1904: -4,38 + 1905: -4,39 + 1906: -4,40 + 1907: -4,41 + 1914: -19,27 + 1915: -20,27 + 1916: -21,27 + 1917: -22,27 + 1918: -23,27 + 1919: -24,27 - node: color: '#52B4E957' id: QuarterTileOverlayGreyscale90 decals: - 2390: -58,10 - 2391: -57,10 - 2392: -56,10 - 2393: -55,10 - 2394: -54,10 - 2395: -53,10 - 2396: -52,10 - 2397: -51,10 - 2398: -50,10 - 2399: -49,10 - 2400: -48,10 + 2363: -58,10 + 2364: -57,10 + 2365: -56,10 + 2366: -55,10 + 2367: -54,10 + 2368: -53,10 + 2369: -52,10 + 2370: -51,10 + 2371: -50,10 + 2372: -49,10 + 2373: -48,10 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 @@ -4120,158 +4120,158 @@ entities: 596: -16,-9 597: -15,-9 598: -14,-9 - 660: -28,-12 - 724: -8,-24 + 654: -28,-12 + 718: -8,-24 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale90 decals: - 1183: -28,-22 + 1177: -28,-22 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale90 decals: - 686: 5,-2 - 690: 17,-2 - 691: 16,-2 - 692: 15,-2 - 693: 14,-2 + 680: 5,-2 + 684: 17,-2 + 685: 16,-2 + 686: 15,-2 + 687: 14,-2 - node: color: '#D381C93B' id: QuarterTileOverlayGreyscale90 decals: - 1684: 23,16 + 1657: 23,16 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale90 decals: - 926: 10,23 - 927: 10,22 - 928: 10,21 - 929: 10,20 - 930: 10,19 - 931: 10,18 - 932: 10,14 - 933: 10,13 - 934: 10,12 - 935: 10,11 - 936: 10,10 - 937: 10,9 - 938: 10,8 - 939: 10,7 + 920: 10,23 + 921: 10,22 + 922: 10,21 + 923: 10,20 + 924: 10,19 + 925: 10,18 + 926: 10,14 + 927: 10,13 + 928: 10,12 + 929: 10,11 + 930: 10,10 + 931: 10,9 + 932: 10,8 + 933: 10,7 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale90 decals: - 2323: 0,4 - 2324: 1,4 - 2325: 2,4 - 2326: 4,4 - 2327: 3,4 - 2328: 5,4 - 2329: 6,4 - 2330: -14,3 - 2331: -15,3 - 2332: -16,3 - 2333: -17,3 - 2334: -18,3 - 2335: -19,3 - 2336: -20,3 - 2337: -20,4 - 2338: -20,5 - 2339: -20,6 - 2340: -20,7 - 2366: -45,-3 - 2368: -44,-3 - 2369: -44,-4 - 2370: -44,-5 - 2371: -44,-6 - 2375: -45,-7 - 2376: -45,-8 - 2377: -45,-9 - 2378: -45,-10 - 2457: -47,15 - 2458: -46,15 - 2459: -45,15 - 2460: -44,15 - 2461: -43,15 - 2462: -42,15 - 2463: -41,15 - 2464: -40,15 - 2503: 9,-3 - 2504: 9,-4 - 2505: 9,-5 - 2506: 9,-6 - 2507: 9,-7 - 2508: 9,-8 - 2509: 9,-9 - 2510: 9,-10 - 2511: 10,-10 - 2512: -33,27 - 2513: -34,27 - 2514: -35,27 - 2515: -35,28 - 2516: -35,29 - 2517: -35,30 - 2518: -35,31 - 2519: -35,32 - 2520: -35,33 - 2521: -35,34 - 2832: 10,6 - 2833: 10,5 - 2834: 10,4 - 2835: 11,4 - 2836: 12,4 - 2837: 13,4 - 2838: -40,7 - 2839: -41,7 - 2840: -42,7 - 2841: -43,7 - 2842: -44,7 - 2843: -45,7 - 2844: -45,8 - 2845: -46,8 - 2846: -47,8 - 2978: 11,35 - 2979: 11,34 - 2980: 11,33 - 2981: 11,32 - 2982: 11,31 - 2983: 11,30 - 2984: 11,29 - 2999: 24,27 - 3000: 23,27 - 3001: 23,28 - 3002: 23,29 - 3003: 23,30 - 3004: 23,31 - 3005: 27,40 - 3006: 27,38 - 3007: 27,39 - 3008: 26,40 - 3032: 33,38 - 3033: 32,38 - 3034: 31,38 - 3035: 30,38 - 3036: 29,38 + 2296: 0,4 + 2297: 1,4 + 2298: 2,4 + 2299: 4,4 + 2300: 3,4 + 2301: 5,4 + 2302: 6,4 + 2303: -14,3 + 2304: -15,3 + 2305: -16,3 + 2306: -17,3 + 2307: -18,3 + 2308: -19,3 + 2309: -20,3 + 2310: -20,4 + 2311: -20,5 + 2312: -20,6 + 2313: -20,7 + 2339: -45,-3 + 2341: -44,-3 + 2342: -44,-4 + 2343: -44,-5 + 2344: -44,-6 + 2348: -45,-7 + 2349: -45,-8 + 2350: -45,-9 + 2351: -45,-10 + 2430: -47,15 + 2431: -46,15 + 2432: -45,15 + 2433: -44,15 + 2434: -43,15 + 2435: -42,15 + 2436: -41,15 + 2437: -40,15 + 2476: 9,-3 + 2477: 9,-4 + 2478: 9,-5 + 2479: 9,-6 + 2480: 9,-7 + 2481: 9,-8 + 2482: 9,-9 + 2483: 9,-10 + 2484: 10,-10 + 2485: -33,27 + 2486: -34,27 + 2487: -35,27 + 2488: -35,28 + 2489: -35,29 + 2490: -35,30 + 2491: -35,31 + 2492: -35,32 + 2493: -35,33 + 2494: -35,34 + 2798: 10,6 + 2799: 10,5 + 2800: 10,4 + 2801: 11,4 + 2802: 12,4 + 2803: 13,4 + 2804: -40,7 + 2805: -41,7 + 2806: -42,7 + 2807: -43,7 + 2808: -44,7 + 2809: -45,7 + 2810: -45,8 + 2811: -46,8 + 2812: -47,8 + 2944: 11,35 + 2945: 11,34 + 2946: 11,33 + 2947: 11,32 + 2948: 11,31 + 2949: 11,30 + 2950: 11,29 + 2965: 24,27 + 2966: 23,27 + 2967: 23,28 + 2968: 23,29 + 2969: 23,30 + 2970: 23,31 + 2971: 27,40 + 2972: 27,38 + 2973: 27,39 + 2974: 26,40 + 2998: 33,38 + 2999: 32,38 + 3000: 31,38 + 3001: 30,38 + 3002: 29,38 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale90 decals: - 2411: -52,21 - 2412: -53,21 - 2413: -54,21 - 2414: -55,21 - 2415: -56,21 - 2416: -56,13 - 2417: -55,13 - 2418: -54,13 - 2419: -53,13 - 2420: -52,13 - 2453: -57,13 - 2454: -57,14 - 2455: -57,21 - 2456: -57,22 + 2384: -52,21 + 2385: -53,21 + 2386: -54,21 + 2387: -55,21 + 2388: -56,21 + 2389: -56,13 + 2390: -55,13 + 2391: -54,13 + 2392: -53,13 + 2393: -52,13 + 2426: -57,13 + 2427: -57,14 + 2428: -57,21 + 2429: -57,22 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale90 @@ -4306,247 +4306,247 @@ entities: color: '#EFB34196' id: QuarterTileOverlayGreyscale90 decals: - 795: -2,-5 - 796: -2,-2 - 998: -81,-48 - 999: -80,-48 - 1000: -79,-48 - 1001: -78,-48 - 1002: -77,-48 + 789: -2,-5 + 790: -2,-2 + 992: -81,-48 + 993: -80,-48 + 994: -79,-48 + 995: -78,-48 + 996: -77,-48 - node: color: '#FFFFFFFF' id: Rock01 decals: - 1290: -26.720001,4.0298495 - 1498: -35.025642,-11.548359 - 1501: -35,-16 + 1284: -26.720001,4.0298495 + 1492: -35.025642,-11.548359 + 1495: -35,-16 - node: color: '#FFFFFFFF' id: Rock05 decals: - 1499: -35.025642,-14.985859 + 1493: -35.025642,-14.985859 - node: cleanable: True color: '#FFFFFFFF' id: Rust decals: - 1072: -24,-36 - 1073: -22,-38 - 1074: -22,-38 - 1075: -26,-37 - 1076: -28,-37 - 1077: -28,-37 + 1066: -24,-36 + 1067: -22,-38 + 1068: -22,-38 + 1069: -26,-37 + 1070: -28,-37 + 1071: -28,-37 - node: color: '#FFFFFFFF' id: StandClear decals: 395: 10,42 - 810: -10,-45 - 811: -6,-45 - 1220: 5,41 - 1677: 22,25 - 1678: 22,23 + 804: -10,-45 + 805: -6,-45 + 1214: 5,41 + 1650: 22,25 + 1651: 22,23 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale decals: - 3122: -32,-63 + 3088: -32,-63 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale decals: - 1193: -32,-1 - 3212: -40,-5 + 1187: -32,-1 + 3178: -40,-5 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale decals: - 1172: -35,-20 - 1174: -30,-19 + 1166: -35,-20 + 1168: -30,-19 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale decals: - 3114: -32,-58 + 3080: -32,-58 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale180 decals: - 3120: -30,-64 + 3086: -30,-64 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1194: -31,-3 - 3214: -32,-8 + 1188: -31,-3 + 3180: -32,-8 - node: color: '#D381C93B' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1706: 15,14 + 1679: 15,14 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1582: 40,7 + 1555: 40,7 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale180 decals: - 3119: -30,-61 + 3085: -30,-61 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale270 decals: - 3123: -32,-64 + 3089: -32,-64 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 decals: - 1191: -32,-3 - 3216: -40,-8 + 1185: -32,-3 + 3181: -40,-8 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale270 decals: - 3116: -32,-59 - 3118: -31,-61 + 3082: -32,-59 + 3084: -31,-61 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale90 decals: - 3121: -30,-63 + 3087: -30,-63 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 1192: -31,-1 - 3213: -32,-5 + 1186: -31,-1 + 3179: -32,-5 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale90 decals: - 1173: -28,-19 - 1185: -26,-22 + 1167: -28,-19 + 1179: -26,-22 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale90 decals: - 3115: -30,-58 + 3081: -30,-58 - node: color: '#FFFFFFFF' id: VentSmall decals: - 1753: -27,39 - 1873: -1,34 - 1962: 34,30 - 1963: 33,30 - 2195: -14,40 + 1726: -27,39 + 1846: -1,34 + 1935: 34,30 + 1936: 33,30 + 2168: -14,40 - node: color: '#FFFFFFFF' id: WarnBox decals: - 3075: -19,-48 + 3041: -19,-48 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' id: WarnCorner decals: - 671: -28,-15 - 1324: -40,60 + 665: -28,-15 + 1318: -40,60 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: WarnCorner decals: 469: -6,-12 - 670: -30,-15 - 1125: 2,64 + 664: -30,-15 + 1119: 2,64 - node: color: '#FFFFFFFF' id: WarnCorner decals: - 668: -30,-17 - 1321: -42,58 + 662: -30,-17 + 1315: -42,58 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' id: WarnCornerFlipped decals: - 1323: -42,60 + 1317: -42,60 - node: color: '#FFFFFFFF' id: WarnCornerFlipped decals: - 669: -28,-17 - 1322: -40,58 + 663: -28,-17 + 1316: -40,58 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: WarnCornerFlipped decals: - 1128: -4,64 + 1122: -4,64 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: - 2622: 2,-33 + 2588: 2,-33 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: - 2621: 0,-33 + 2587: 0,-33 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: - 2227: 5,21 - 2608: -4,-59 - 2620: 2,-35 + 2200: 5,21 + 2574: -4,-59 + 2586: 2,-35 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: - 2226: 3,21 - 2607: -12,-59 - 2619: 0,-35 + 2199: 3,21 + 2573: -12,-59 + 2585: 0,-35 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 2602: -10,-36 - 3157: -53,-5 - 3158: -60,-5 + 2568: -10,-36 + 3123: -53,-5 + 3124: -60,-5 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 1473: 21,-19 - 2185: -58,19 - 2601: -6,-36 - 3156: -51,-5 - 3159: -58,-5 + 1467: 21,-19 + 2158: -58,19 + 2567: -6,-36 + 3122: -51,-5 + 3125: -58,-5 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 1475: 20,-19 - 2228: 5,22 - 2783: -10,-34 - 3162: -53,7 - 3163: -60,7 + 1469: 20,-19 + 2201: 5,22 + 2749: -10,-34 + 3128: -53,7 + 3129: -60,7 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 1472: 21,-16 - 1474: 19,-19 - 1480: 22,-19 - 2184: -58,17 - 2229: 3,22 - 2782: -6,-34 - 3188: -51,7 - 3189: -58,7 + 1466: 21,-16 + 1468: 19,-19 + 1474: 22,-19 + 2157: -58,17 + 2202: 3,22 + 2748: -6,-34 + 3154: -51,7 + 3155: -58,7 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -4562,250 +4562,250 @@ entities: color: '#52B4E996' id: WarnFullGreyscale decals: - 2552: -31,-11 - 2560: -35,-14 - 2878: -35,-1 - 3244: -33,-9 - 3245: -36,-9 + 2525: -31,-11 + 2533: -35,-14 + 2844: -35,-1 + 3209: -33,-9 + 3210: -36,-9 - node: color: '#D381C996' id: WarnFullGreyscale decals: - 2966: 30,7 - 2967: 30,8 + 2932: 30,7 + 2933: 30,8 - node: color: '#DE3A3A96' id: WarnFullGreyscale decals: - 2919: -33,45 - 2922: -40,45 + 2885: -33,45 + 2888: -40,45 - node: color: '#FFFFFFFF' id: WarnFullGreyscale decals: - 2682: -21,-43 - 2683: -21,-42 - 2685: -18,-46 - 2686: -19,-38 + 2648: -21,-43 + 2649: -21,-42 + 2651: -18,-46 + 2652: -19,-38 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 1476: 20,-20 - 1580: 38,9 - 1581: 38,10 - 1600: 20,18 - 1601: 20,19 - 1608: 21,20 - 1609: 21,21 - 2600: -10,-35 - 2606: -4,-58 - 2623: 2,-34 - 2831: -2,-1 + 1470: 20,-20 + 1553: 38,9 + 1554: 38,10 + 1573: 20,18 + 1574: 20,19 + 1581: 21,20 + 1582: 21,21 + 2566: -10,-35 + 2572: -4,-58 + 2589: 2,-34 + 2797: -2,-1 - node: color: '#334E6DC8' id: WarnLineGreyscaleE decals: - 3042: -19,39 + 3008: -19,39 - node: color: '#52B4E996' id: WarnLineGreyscaleE decals: - 2551: -32,-11 - 2559: -36,-14 - 3227: -32,-7 + 2524: -32,-11 + 2532: -36,-14 + 3192: -32,-7 - node: color: '#D381C996' id: WarnLineGreyscaleE decals: - 2969: 33,8 + 2935: 33,8 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleE decals: - 2680: -22,-43 - 2681: -22,-42 + 2646: -22,-43 + 2647: -22,-42 - node: color: '#334E6DC8' id: WarnLineGreyscaleN decals: - 3043: -20,40 + 3009: -20,40 - node: color: '#52B4E996' id: WarnLineGreyscaleN decals: - 3228: -35,-5 - 3243: -33,-10 + 3193: -35,-5 + 3208: -33,-10 - node: color: '#D381C996' id: WarnLineGreyscaleN decals: - 2970: 32,9 + 2936: 32,9 - node: color: '#DE3A3A96' id: WarnLineGreyscaleN decals: - 2917: -33,44 - 2918: -40,44 + 2883: -33,44 + 2884: -40,44 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleN decals: - 2679: -19,-39 - 2699: -13,-39 - 3246: -26,-9 - 3247: -25,-9 - 3248: -24,-9 - 3249: -23,-9 - 3250: -22,-9 + 2645: -19,-39 + 2665: -13,-39 + 3211: -26,-9 + 3212: -25,-9 + 3213: -24,-9 + 3214: -23,-9 + 3215: -22,-9 - node: color: '#52B4E996' id: WarnLineGreyscaleS decals: - 2877: -35,0 - 3225: -36,-8 - 3226: -33,-8 + 2843: -35,0 + 3190: -36,-8 + 3191: -33,-8 - node: color: '#D381C996' id: WarnLineGreyscaleS decals: - 2968: 32,7 + 2934: 32,7 - node: color: '#DE3A3A96' id: WarnLineGreyscaleS decals: - 2914: -32,42 - 2915: -35,42 - 2916: -37,42 - 2920: -33,46 - 2921: -40,46 - 2924: -47,45 - 2925: -48,45 - 2926: -49,45 + 2880: -32,42 + 2881: -35,42 + 2882: -37,42 + 2886: -33,46 + 2887: -40,46 + 2890: -47,45 + 2891: -48,45 + 2892: -49,45 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleS decals: - 2684: -18,-45 - 2903: -40,42 - 2904: -44,42 - 2905: -48,42 + 2650: -18,-45 + 2869: -40,42 + 2870: -44,42 + 2871: -48,42 - node: color: '#334E6DC8' id: WarnLineGreyscaleW decals: - 3041: -21,39 + 3007: -21,39 - node: color: '#52B4E996' id: WarnLineGreyscaleW decals: - 2550: -30,-11 - 2558: -34,-14 + 2523: -30,-11 + 2531: -34,-14 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleW decals: - 2677: -20,-43 - 2678: -20,-42 - 2861: -33,7 - 2862: -33,8 + 2643: -20,-43 + 2644: -20,-42 + 2827: -33,7 + 2828: -33,8 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 1462: 18,-16 - 1463: 19,-16 - 1464: 20,-16 - 1465: 21,-19 - 1466: 18,-19 - 1576: 38,9 - 1577: 37,9 - 1578: 36,9 - 1579: 35,9 - 1619: 28,11 - 1620: 27,11 - 1621: 26,11 - 2225: 4,21 - 2230: 6,22 - 2231: 2,22 - 2546: -21,43 - 2547: -20,43 - 2548: -19,43 - 2609: -5,-59 - 2610: -6,-59 - 2611: -7,-59 - 2612: -8,-59 - 2613: -9,-59 - 2614: -10,-59 - 2615: -11,-59 - 2624: 1,-35 - 3072: -26,-58 - 3073: -27,-58 - 3074: -28,-58 - 3160: -52,7 - 3161: -59,7 + 1456: 18,-16 + 1457: 19,-16 + 1458: 20,-16 + 1459: 21,-19 + 1460: 18,-19 + 1549: 38,9 + 1550: 37,9 + 1551: 36,9 + 1552: 35,9 + 1592: 28,11 + 1593: 27,11 + 1594: 26,11 + 2198: 4,21 + 2203: 6,22 + 2204: 2,22 + 2519: -21,43 + 2520: -20,43 + 2521: -19,43 + 2575: -5,-59 + 2576: -6,-59 + 2577: -7,-59 + 2578: -8,-59 + 2579: -9,-59 + 2580: -10,-59 + 2581: -11,-59 + 2590: 1,-35 + 3038: -26,-58 + 3039: -27,-58 + 3040: -28,-58 + 3126: -52,7 + 3127: -59,7 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 1470: 21,-18 - 1471: 21,-17 - 1477: 19,-20 - 1606: 24,20 - 1607: 24,21 - 1699: 27,18 - 1700: 27,19 - 1701: 27,20 - 2174: -58,12 - 2175: -58,13 - 2176: -58,14 - 2177: -58,15 - 2178: -58,16 - 2179: -58,20 - 2180: -58,21 - 2181: -58,22 - 2182: -58,23 - 2183: -58,24 - 2599: -6,-35 - 2616: -12,-58 - 2617: 0,-34 - 2830: -4,-1 - 2944: 14,-26 - 2945: 14,-25 - 2946: 14,-24 - 2947: 14,-23 + 1464: 21,-18 + 1465: 21,-17 + 1471: 19,-20 + 1579: 24,20 + 1580: 24,21 + 1672: 27,18 + 1673: 27,19 + 1674: 27,20 + 2147: -58,12 + 2148: -58,13 + 2149: -58,14 + 2150: -58,15 + 2151: -58,16 + 2152: -58,20 + 2153: -58,21 + 2154: -58,22 + 2155: -58,23 + 2156: -58,24 + 2565: -6,-35 + 2582: -12,-58 + 2583: 0,-34 + 2796: -4,-1 + 2910: 14,-26 + 2911: 14,-25 + 2912: 14,-24 + 2913: 14,-23 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 1457: 18,-16 - 1458: 19,-16 - 1459: 20,-16 - 1460: 21,-16 - 1461: 22,-16 - 1467: 18,-19 - 1468: 19,-19 - 1469: 20,-19 - 1478: 20,-21 - 1479: 19,-21 - 1596: 17,19 - 1597: 18,19 - 1598: 19,19 - 1599: 20,19 - 1616: 26,8 - 1617: 27,8 - 1618: 28,8 - 1756: -23,38 - 2232: 6,22 - 2233: 5,22 - 2234: 3,22 - 2235: 2,22 - 2603: -7,-36 - 2604: -8,-36 - 2605: -9,-36 - 2618: 1,-33 - 3154: -52,-5 - 3155: -59,-5 + 1451: 18,-16 + 1452: 19,-16 + 1453: 20,-16 + 1454: 21,-16 + 1455: 22,-16 + 1461: 18,-19 + 1462: 19,-19 + 1463: 20,-19 + 1472: 20,-21 + 1473: 19,-21 + 1569: 17,19 + 1570: 18,19 + 1571: 19,19 + 1572: 20,19 + 1589: 26,8 + 1590: 27,8 + 1591: 28,8 + 1729: -23,38 + 2205: 6,22 + 2206: 5,22 + 2207: 3,22 + 2208: 2,22 + 2569: -7,-36 + 2570: -8,-36 + 2571: -9,-36 + 2584: 1,-33 + 3120: -52,-5 + 3121: -59,-5 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -4820,17 +4820,17 @@ entities: 393: 10,42 394: 9,42 470: -5,-12 - 790: -24,-47 - 791: -25,-47 - 792: -26,-47 - 889: 13,-9 - 890: 12,-9 - 891: 11,-9 - 1131: -6,82 - 1132: 4,82 - 1143: 3,78 - 1144: -5,78 - 1302: 2,-38 + 784: -24,-47 + 785: -25,-47 + 786: -26,-47 + 883: 13,-9 + 884: 12,-9 + 885: 11,-9 + 1125: -6,82 + 1126: 4,82 + 1137: 3,78 + 1138: -5,78 + 1296: 2,-38 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' @@ -4842,14 +4842,14 @@ entities: 8: 0,22 9: 0,23 468: -6,-13 - 666: -30,-16 - 1106: -47,-25 - 1107: -47,-24 - 1108: -47,-23 - 1123: 2,62 - 1124: 2,63 - 1135: 4,87 - 1145: 4,79 + 660: -30,-16 + 1100: -47,-25 + 1101: -47,-24 + 1102: -47,-23 + 1117: 2,62 + 1118: 2,63 + 1129: 4,87 + 1139: 4,79 - node: color: '#FFFFFFFF' id: WarningLine @@ -4859,48 +4859,48 @@ entities: 102: -40,53 103: -41,53 104: -42,53 - 755: 7,-21 - 756: 6,-21 - 757: 5,-21 - 797: -2,-46 - 798: -3,-46 - 799: -4,-46 - 800: -5,-46 - 801: -6,-46 - 802: -7,-46 - 803: -8,-46 - 804: -9,-46 - 805: -10,-46 - 806: -11,-46 - 807: -12,-46 - 808: -13,-46 - 809: -14,-46 - 818: -8,-42 - 819: -7,-42 - 820: -9,-42 - 821: -10,-42 - 822: -6,-42 - 892: 13,-9 - 893: 12,-9 - 894: 11,-9 - 902: 17,16 - 903: 18,16 - 907: 38,12 - 908: 37,12 - 909: 36,12 - 910: 35,12 - 1129: 4,84 - 1130: -6,84 - 1133: 3,88 - 1134: -5,88 - 1212: 6,41 - 1213: 4,41 - 1217: 7,41 - 1218: 3,41 - 1219: 5,41 - 1400: 35,-12 - 1401: 34,-12 - 1402: 33,-12 + 749: 7,-21 + 750: 6,-21 + 751: 5,-21 + 791: -2,-46 + 792: -3,-46 + 793: -4,-46 + 794: -5,-46 + 795: -6,-46 + 796: -7,-46 + 797: -8,-46 + 798: -9,-46 + 799: -10,-46 + 800: -11,-46 + 801: -12,-46 + 802: -13,-46 + 803: -14,-46 + 812: -8,-42 + 813: -7,-42 + 814: -9,-42 + 815: -10,-42 + 816: -6,-42 + 886: 13,-9 + 887: 12,-9 + 888: 11,-9 + 896: 17,16 + 897: 18,16 + 901: 38,12 + 902: 37,12 + 903: 36,12 + 904: 35,12 + 1123: 4,84 + 1124: -6,84 + 1127: 3,88 + 1128: -5,88 + 1206: 6,41 + 1207: 4,41 + 1211: 7,41 + 1212: 3,41 + 1213: 5,41 + 1394: 35,-12 + 1395: 34,-12 + 1396: 33,-12 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -4912,338 +4912,338 @@ entities: 13: -4,22 14: -4,23 15: -2,22 - 667: -28,-16 - 1109: -57,-25 - 1110: -57,-24 - 1111: -57,-23 - 1126: -4,62 - 1127: -4,63 - 1136: -6,87 - 1146: -6,79 - 1393: 35,-8 - 1394: 35,-7 - 1395: 35,-6 - 1396: 35,-5 - 1397: 35,-4 - 1398: 35,-3 - 1399: 35,-2 + 661: -28,-16 + 1103: -57,-25 + 1104: -57,-24 + 1105: -57,-23 + 1120: -4,62 + 1121: -4,63 + 1130: -6,87 + 1140: -6,79 + 1387: 35,-8 + 1388: 35,-7 + 1389: 35,-6 + 1390: 35,-5 + 1391: 35,-4 + 1392: 35,-3 + 1393: 35,-2 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: WarningLine decals: - 786: 2,-38 - 787: 1,-38 - 788: 0,-38 - 904: 17,14 - 905: 18,14 + 780: 2,-38 + 781: 1,-38 + 782: 0,-38 + 898: 17,14 + 899: 18,14 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' id: WarningLineCorner decals: - 1148: 4,78 - 1150: -4,78 + 1142: 4,78 + 1144: -4,78 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: WarningLineCorner decals: - 1113: -47,-22 + 1107: -47,-22 - node: color: '#FFFFFFFF' id: WarningLineCorner decals: - 824: -11,-42 - 1138: 2,88 - 1140: -6,88 - 1152: -6,80 - 1320: 4,-21 - 1403: 32,-12 + 818: -11,-42 + 1132: 2,88 + 1134: -6,88 + 1146: -6,80 + 1314: 4,-21 + 1397: 32,-12 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: WarningLineCorner decals: - 1142: -6,86 + 1136: -6,86 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' id: WarningLineCornerFlipped decals: - 1147: -6,78 - 1149: 2,78 + 1141: -6,78 + 1143: 2,78 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: WarningLineCornerFlipped decals: - 1139: 4,86 + 1133: 4,86 - node: color: '#FFFFFFFF' id: WarningLineCornerFlipped decals: - 823: -5,-42 - 1137: 4,88 - 1141: -4,88 - 1151: 4,80 - 1319: 8,-21 + 817: -5,-42 + 1131: 4,88 + 1135: -4,88 + 1145: 4,80 + 1313: 8,-21 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: WarningLineCornerFlipped decals: - 1112: -57,-22 + 1106: -57,-22 - node: color: '#FFFFFFFF' id: WoodTrimThinBox decals: - 2139: -11,34 - 2140: -10,34 - 2141: -9,34 + 2112: -11,34 + 2113: -10,34 + 2114: -9,34 - node: color: '#334E6DC8' id: WoodTrimThinEndE decals: - 1891: -9,41 + 1864: -9,41 - node: color: '#FFFFFFFF' id: WoodTrimThinEndN decals: - 1769: -22,31 + 1742: -22,31 - node: color: '#334E6DC8' id: WoodTrimThinEndW decals: - 1892: -11,41 + 1865: -11,41 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNe decals: - 1793: -13,32 - 1973: 42,40 - 2898: -27,52 + 1766: -13,32 + 1946: 42,40 + 2864: -27,52 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNw decals: - 1792: -7,32 + 1765: -7,32 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSe decals: - 1763: -24,37 - 1791: -13,36 - 2061: -21,36 + 1736: -24,37 + 1764: -13,36 + 2034: -21,36 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSw decals: - 1762: -24,37 - 1790: -7,36 + 1735: -24,37 + 1763: -7,36 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 1774: -20,30 - 1787: -13,33 - 1788: -13,34 - 1789: -13,35 - 1864: -2,32 - 1865: -2,33 - 1866: -2,31 - 1878: -19,32 - 1964: 35,37 - 1965: 35,38 - 1966: 35,39 - 1967: 35,40 - 1968: 35,41 - 1969: 43,37 - 1970: 43,38 - 1971: 43,39 - 1972: 43,40 - 1974: -75,-55 - 1976: -71,-55 - 1977: -71,-54 - 1978: -71,-53 - 1979: -71,-52 - 1980: -71,-56 - 1981: -71,-57 - 2059: -21,34 - 2060: -21,35 - 2066: 25,14 - 2067: 25,15 - 2072: -31,-3 - 2073: -31,-2 - 2074: -31,-1 + 1747: -20,30 + 1760: -13,33 + 1761: -13,34 + 1762: -13,35 + 1837: -2,32 + 1838: -2,33 + 1839: -2,31 + 1851: -19,32 + 1937: 35,37 + 1938: 35,38 + 1939: 35,39 + 1940: 35,40 + 1941: 35,41 + 1942: 43,37 + 1943: 43,38 + 1944: 43,39 + 1945: 43,40 + 1947: -75,-55 + 1949: -71,-55 + 1950: -71,-54 + 1951: -71,-53 + 1952: -71,-52 + 1953: -71,-56 + 1954: -71,-57 + 2032: -21,34 + 2033: -21,35 + 2039: 25,14 + 2040: 25,15 + 2045: -31,-3 + 2046: -31,-2 + 2047: -31,-1 - node: color: '#334E6DC8' id: WoodTrimThinLineN decals: - 1893: -10,41 + 1866: -10,41 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 1715: -49,32 - 1716: -50,32 - 1717: -51,32 - 1718: -52,32 - 1719: -53,32 - 1726: -54,32 - 1727: -22,52 - 1728: -23,52 - 1729: -24,52 - 1730: -25,52 - 1731: -26,52 - 1755: -21,33 - 1767: -20,30 - 1768: -21,30 - 1782: -8,32 - 1783: -9,32 - 1784: -10,32 - 1785: -11,32 - 1786: -12,32 - 1868: -1,34 - 1874: -22,32 - 1875: -20,32 - 1948: -32,20 - 2045: 8,-18 - 2063: 26,13 - 2064: 27,13 - 2065: 28,13 + 1688: -49,32 + 1689: -50,32 + 1690: -51,32 + 1691: -52,32 + 1692: -53,32 + 1699: -54,32 + 1700: -22,52 + 1701: -23,52 + 1702: -24,52 + 1703: -25,52 + 1704: -26,52 + 1728: -21,33 + 1740: -20,30 + 1741: -21,30 + 1755: -8,32 + 1756: -9,32 + 1757: -10,32 + 1758: -11,32 + 1759: -12,32 + 1841: -1,34 + 1847: -22,32 + 1848: -20,32 + 1921: -32,20 + 2018: 8,-18 + 2036: 26,13 + 2037: 27,13 + 2038: 28,13 - node: color: '#334E6DC8' id: WoodTrimThinLineS decals: - 1894: -10,41 + 1867: -10,41 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 1713: -43,32 - 1714: -44,32 - 1720: -52,29 - 1721: -53,29 - 1722: -51,29 - 1723: -50,29 - 1724: -49,29 - 1725: -54,29 - 1744: -18,37 - 1745: -19,37 - 1746: -20,37 - 1747: -21,37 - 1748: -22,37 - 1754: -21,33 - 1758: -25,37 - 1759: -26,37 - 1760: -27,37 - 1761: -28,37 - 1764: -19,36 - 1765: -20,36 - 1766: -18,36 - 1771: -22,30 - 1772: -21,30 - 1773: -20,30 - 1775: -12,36 - 1776: -10,36 - 1777: -9,36 - 1778: -8,36 - 1803: -11,36 - 1867: -1,34 - 1869: 3,34 - 1870: 4,34 - 1871: 5,34 - 1872: 2,34 - 1876: -19,32 - 1947: -32,24 - 2033: -6,15 - 2034: -5,15 - 2035: -4,15 - 2036: -3,15 - 2037: -2,15 - 2038: -1,15 - 2040: 0,15 - 2046: 9,-17 - 2047: 8,-17 - 2048: 7,-17 - 2049: 5,-12 - 2050: 4,-12 - 2051: 3,-12 - 2062: 28,16 - 2070: 27,16 - 2071: 26,16 - 2885: -42,32 - 2886: -45,32 + 1686: -43,32 + 1687: -44,32 + 1693: -52,29 + 1694: -53,29 + 1695: -51,29 + 1696: -50,29 + 1697: -49,29 + 1698: -54,29 + 1717: -18,37 + 1718: -19,37 + 1719: -20,37 + 1720: -21,37 + 1721: -22,37 + 1727: -21,33 + 1731: -25,37 + 1732: -26,37 + 1733: -27,37 + 1734: -28,37 + 1737: -19,36 + 1738: -20,36 + 1739: -18,36 + 1744: -22,30 + 1745: -21,30 + 1746: -20,30 + 1748: -12,36 + 1749: -10,36 + 1750: -9,36 + 1751: -8,36 + 1776: -11,36 + 1840: -1,34 + 1842: 3,34 + 1843: 4,34 + 1844: 5,34 + 1845: 2,34 + 1849: -19,32 + 1920: -32,24 + 2006: -6,15 + 2007: -5,15 + 2008: -4,15 + 2009: -3,15 + 2010: -2,15 + 2011: -1,15 + 2013: 0,15 + 2019: 9,-17 + 2020: 8,-17 + 2021: 7,-17 + 2022: 5,-12 + 2023: 4,-12 + 2024: 3,-12 + 2035: 28,16 + 2043: 27,16 + 2044: 26,16 + 2851: -42,32 + 2852: -45,32 - node: cleanable: True color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 2214: -23,37 + 2187: -23,37 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 1770: -22,30 - 1779: -7,33 - 1780: -7,34 - 1781: -7,35 - 1877: -19,32 - 1975: -70,-55 - 1982: -74,-57 - 1983: -74,-56 - 1984: -74,-55 - 1985: -74,-54 - 1986: -74,-53 - 1987: -74,-52 - 2041: 6,-11 - 2042: 6,-10 - 2043: 6,-9 - 2052: 3,-12 - 2053: 3,-11 - 2054: 3,-10 - 2055: 3,-9 - 2056: 3,-8 - 2057: 3,-7 - 2058: 3,-6 - 2068: 29,14 - 2069: 29,15 - 2092: 27,0 - 2093: 27,1 - 2094: 27,2 + 1743: -22,30 + 1752: -7,33 + 1753: -7,34 + 1754: -7,35 + 1850: -19,32 + 1948: -70,-55 + 1955: -74,-57 + 1956: -74,-56 + 1957: -74,-55 + 1958: -74,-54 + 1959: -74,-53 + 1960: -74,-52 + 2014: 6,-11 + 2015: 6,-10 + 2016: 6,-9 + 2025: 3,-12 + 2026: 3,-11 + 2027: 3,-10 + 2028: 3,-9 + 2029: 3,-8 + 2030: 3,-7 + 2031: 3,-6 + 2041: 29,14 + 2042: 29,15 + 2065: 27,0 + 2066: 27,1 + 2067: 27,2 - node: color: '#FFFFFFFF' id: bushsnowa1 decals: - 1896: -11,41 + 1869: -11,41 - node: color: '#FFFFFFFF' id: bushsnowb3 decals: - 1895: -9,41 + 1868: -9,41 - node: color: '#ABCC370F' id: largebrush decals: - 1503: -39,-14 - 1504: -39,-15 - 1505: -38,-15 - 1506: -38,-14 - 1507: -40,-15 - 1508: -40,-14 - 1509: -40,-13 - 1510: -39,-13 - 1511: -38,-13 - 1512: -38,-12 - 1513: -39,-12 - 1514: -40,-12 - 1515: -40,-11 - 1516: -39,-11 - 1517: -38,-11 - 1518: -38,-10 - 1519: -39,-10 - 1520: -40,-10 + 1497: -39,-14 + 1498: -39,-15 + 1499: -38,-15 + 1500: -38,-14 + 1501: -40,-15 + 1502: -40,-14 + 1503: -40,-13 + 1504: -39,-13 + 1505: -38,-13 + 1506: -38,-12 + 1507: -39,-12 + 1508: -40,-12 + 1509: -40,-11 + 1510: -39,-11 + 1511: -38,-11 + 1512: -38,-10 + 1513: -39,-10 + 1514: -40,-10 type: DecalGrid - version: 2 data: @@ -7680,6 +7680,7 @@ entities: - type: GasTileOverlay - nextUpdate: 0 type: SpreaderGrid + - type: GridPathfinding - uid: 5350 components: - type: MetaData @@ -7689,6 +7690,8 @@ entities: - type: Broadphase - type: OccluderTree - type: LoadedMap + - type: GridTree + - type: MovedGrids - proto: AcousticGuitarInstrument entities: - uid: 525 @@ -9586,6 +9589,13 @@ entities: - pos: -19.5,41.5 parent: 30 type: Transform +- proto: AirlockDetectiveLocked + entities: + - uid: 783 + components: + - pos: -41.5,34.5 + parent: 30 + type: Transform - proto: AirlockEngineeringGlassLocked entities: - uid: 9353 @@ -10594,6 +10604,13 @@ entities: - pos: -8.5,-13.5 parent: 30 type: Transform +- proto: AirlockMaintDetectiveLocked + entities: + - uid: 1423 + components: + - pos: -45.5,30.5 + parent: 30 + type: Transform - proto: AirlockMaintEngiLocked entities: - uid: 1181 @@ -10936,11 +10953,6 @@ entities: type: Transform - proto: AirlockMaintSecLocked entities: - - uid: 1423 - components: - - pos: -45.5,30.5 - parent: 30 - type: Transform - uid: 2195 components: - pos: -49.5,43.5 @@ -11290,11 +11302,6 @@ entities: - pos: -37.5,10.5 parent: 30 type: Transform - - uid: 1431 - components: - - pos: -41.5,34.5 - parent: 30 - type: Transform - uid: 1782 components: - pos: -28.5,46.5 @@ -16511,22 +16518,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 48 components: - pos: 27.5,20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 408 components: - pos: -7.5,11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 410 components: - pos: -14.5,20.5 @@ -16534,29 +16535,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 828 components: - pos: 30.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 908 components: - pos: -47.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 1043 components: - pos: -61.5,-27.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 1302 components: - pos: -43.5,-0.5 @@ -16564,22 +16557,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1909 components: - pos: -37.5,59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 1910 components: - pos: -38.5,59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 1912 components: - pos: -39.5,59.5 @@ -16587,22 +16574,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1913 components: - pos: -40.5,59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 2047 components: - pos: -37.5,60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 2048 components: - pos: -37.5,61.5 @@ -16610,127 +16591,91 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3175 components: - pos: -49.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3177 components: - pos: -48.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3178 components: - pos: -51.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3186 components: - pos: -50.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3188 components: - pos: -52.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3193 components: - pos: -57.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3199 components: - pos: -57.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3200 components: - pos: -55.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3201 components: - pos: -56.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3202 components: - pos: -57.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3506 components: - pos: -53.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3508 components: - pos: -54.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3509 components: - pos: -51.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3511 components: - pos: -51.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3513 components: - pos: -58.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3596 components: - pos: -59.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3620 components: - pos: -58.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3627 components: - pos: -50.5,11.5 @@ -16738,393 +16683,281 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3628 components: - pos: -50.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3629 components: - pos: -50.5,9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3630 components: - pos: -51.5,9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3631 components: - pos: -52.5,9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3632 components: - pos: -53.5,9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3633 components: - pos: -54.5,9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3634 components: - pos: -55.5,9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3635 components: - pos: -56.5,9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3636 components: - pos: -57.5,9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3638 components: - pos: -47.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3640 components: - pos: -49.5,9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3641 components: - pos: -48.5,9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3642 components: - pos: -47.5,9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3644 components: - pos: -46.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3645 components: - pos: -46.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3646 components: - pos: -45.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3647 components: - pos: -44.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3648 components: - pos: -44.5,6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3649 components: - pos: -43.5,6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3650 components: - pos: -42.5,6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3651 components: - pos: -41.5,6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3652 components: - pos: -40.5,6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3653 components: - pos: -39.5,6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3660 components: - pos: -45.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3661 components: - pos: -44.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3662 components: - pos: -44.5,-1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3663 components: - pos: -44.5,-0.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3664 components: - pos: -44.5,0.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3665 components: - pos: -44.5,1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3666 components: - pos: -44.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3667 components: - pos: -44.5,3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3668 components: - pos: -44.5,4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3669 components: - pos: -40.5,5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3670 components: - pos: -40.5,4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3671 components: - pos: -40.5,3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3672 components: - pos: -40.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3673 components: - pos: -40.5,1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3674 components: - pos: -40.5,0.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3675 components: - pos: -41.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3676 components: - pos: -42.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3677 components: - pos: -39.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3678 components: - pos: -38.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3679 components: - pos: -44.5,-3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3680 components: - pos: -44.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3681 components: - pos: -44.5,-5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3682 components: - pos: -44.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3683 components: - pos: -44.5,-7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3684 components: - pos: -44.5,-8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3685 components: - pos: -44.5,-9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3686 components: - pos: -44.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3687 components: - pos: -44.5,-11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3688 components: - pos: -44.5,-12.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3689 components: - pos: -45.5,-12.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3690 components: - pos: -46.5,-12.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3691 components: - pos: -45.5,-8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3692 components: - pos: -46.5,-8.5 @@ -17132,8 +16965,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3693 components: - pos: -47.5,-8.5 @@ -17141,22 +16972,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3694 components: - pos: -45.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3695 components: - pos: -46.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3713 components: - pos: -48.5,20.5 @@ -17164,372 +16989,266 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3714 components: - pos: -49.5,20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3715 components: - pos: -49.5,21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3716 components: - pos: -49.5,22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3717 components: - pos: -49.5,23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3718 components: - pos: -49.5,24.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3719 components: - pos: -50.5,24.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3720 components: - pos: -51.5,24.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3721 components: - pos: -52.5,24.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3722 components: - pos: -53.5,24.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3723 components: - pos: -54.5,24.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3724 components: - pos: -55.5,24.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3725 components: - pos: -56.5,24.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3726 components: - pos: -57.5,24.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3727 components: - pos: -49.5,19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3728 components: - pos: -49.5,18.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3729 components: - pos: -49.5,17.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3730 components: - pos: -49.5,16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3731 components: - pos: -49.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3732 components: - pos: -49.5,14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3733 components: - pos: -49.5,13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3734 components: - pos: -50.5,13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3735 components: - pos: -52.5,13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3736 components: - pos: -51.5,13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3737 components: - pos: -53.5,13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3738 components: - pos: -54.5,13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3739 components: - pos: -55.5,13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3740 components: - pos: -56.5,13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3741 components: - pos: -57.5,13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3742 components: - pos: -57.5,14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3743 components: - pos: -57.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3744 components: - pos: -57.5,16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3745 components: - pos: -57.5,17.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3746 components: - pos: -57.5,18.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3747 components: - pos: -57.5,19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3748 components: - pos: -57.5,20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3749 components: - pos: -57.5,21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3750 components: - pos: -57.5,22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3751 components: - pos: -57.5,23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3752 components: - pos: -56.5,20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3753 components: - pos: -55.5,20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3754 components: - pos: -54.5,20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3755 components: - pos: -53.5,20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3756 components: - pos: -52.5,20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3757 components: - pos: -51.5,20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3758 components: - pos: -50.5,20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3759 components: - pos: -50.5,16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3760 components: - pos: -51.5,16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3761 components: - pos: -52.5,16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3762 components: - pos: -53.5,16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3763 components: - pos: -54.5,16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3764 components: - pos: -55.5,16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3765 components: - pos: -56.5,16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3766 components: - pos: -58.5,13.5 @@ -17537,8 +17256,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3767 components: - pos: -59.5,13.5 @@ -17546,8 +17263,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3768 components: - pos: -60.5,13.5 @@ -17555,8 +17270,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3769 components: - pos: -61.5,13.5 @@ -17564,8 +17277,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3770 components: - pos: -58.5,15.5 @@ -17573,8 +17284,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3771 components: - pos: -59.5,15.5 @@ -17582,8 +17291,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3772 components: - pos: -60.5,15.5 @@ -17591,8 +17298,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3773 components: - pos: -61.5,15.5 @@ -17600,8 +17305,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3774 components: - pos: -58.5,21.5 @@ -17609,8 +17312,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3775 components: - pos: -59.5,21.5 @@ -17618,8 +17319,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3776 components: - pos: -60.5,21.5 @@ -17627,8 +17326,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3777 components: - pos: -61.5,21.5 @@ -17636,8 +17333,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3778 components: - pos: -58.5,23.5 @@ -17645,8 +17340,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3779 components: - pos: -59.5,23.5 @@ -17654,8 +17347,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3780 components: - pos: -60.5,23.5 @@ -17663,8 +17354,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3781 components: - pos: -61.5,23.5 @@ -17672,57 +17361,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3782 components: - pos: -48.5,14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3783 components: - pos: -47.5,14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3784 components: - pos: -46.5,14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3785 components: - pos: -45.5,14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3786 components: - pos: -44.5,14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3787 components: - pos: -43.5,14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3788 components: - pos: -42.5,14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3819 components: - pos: -37.5,16.5 @@ -17730,176 +17403,126 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3820 components: - pos: -37.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3821 components: - pos: -37.5,14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3822 components: - pos: -38.5,14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3823 components: - pos: -39.5,14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3824 components: - pos: -40.5,14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3825 components: - pos: -40.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3826 components: - pos: -40.5,16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3827 components: - pos: -40.5,17.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3828 components: - pos: -40.5,18.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3829 components: - pos: -41.5,18.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3830 components: - pos: -42.5,18.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3831 components: - pos: -43.5,18.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3832 components: - pos: -36.5,14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3833 components: - pos: -35.5,14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3834 components: - pos: -35.5,13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3835 components: - pos: -35.5,12.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3836 components: - pos: -35.5,11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3837 components: - pos: -35.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3838 components: - pos: -36.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3839 components: - pos: -37.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3840 components: - pos: -38.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3841 components: - pos: -39.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3842 components: - pos: -40.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3843 components: - pos: -41.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3844 components: - pos: -30.5,11.5 @@ -17907,330 +17530,236 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3845 components: - pos: -30.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3846 components: - pos: -31.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3847 components: - pos: -31.5,9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3848 components: - pos: -31.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3849 components: - pos: -31.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3850 components: - pos: -32.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3851 components: - pos: -32.5,6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3852 components: - pos: -32.5,5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3853 components: - pos: -32.5,4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3854 components: - pos: -32.5,3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3855 components: - pos: -32.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3856 components: - pos: -32.5,1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3857 components: - pos: -33.5,1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3858 components: - pos: -34.5,1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3859 components: - pos: -34.5,0.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3860 components: - pos: -31.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3861 components: - pos: -30.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3862 components: - pos: -29.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3863 components: - pos: -28.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3864 components: - pos: -34.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3865 components: - pos: -34.5,3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3866 components: - pos: -35.5,3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3867 components: - pos: -35.5,4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3868 components: - pos: -35.5,5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3869 components: - pos: -35.5,6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3870 components: - pos: -35.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3871 components: - pos: -36.5,6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3872 components: - pos: -37.5,6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3873 components: - pos: -35.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3874 components: - pos: -35.5,0.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3875 components: - pos: -36.5,0.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3876 components: - pos: -27.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3877 components: - pos: -26.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3878 components: - pos: -25.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3879 components: - pos: -24.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3880 components: - pos: -23.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3881 components: - pos: -35.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3882 components: - pos: -35.5,16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3883 components: - pos: -35.5,17.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3884 components: - pos: -35.5,18.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3885 components: - pos: -35.5,19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3886 components: - pos: -35.5,20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3887 components: - pos: -35.5,21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3888 components: - pos: -35.5,22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3889 components: - pos: -35.5,23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3890 components: - pos: -35.5,24.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3891 components: - pos: -33.5,32.5 @@ -18238,330 +17767,236 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3892 components: - pos: -32.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3893 components: - pos: -31.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3894 components: - pos: -30.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3895 components: - pos: -29.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3896 components: - pos: -28.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3897 components: - pos: -27.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3898 components: - pos: -27.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3899 components: - pos: -26.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3900 components: - pos: -25.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3901 components: - pos: -24.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3902 components: - pos: -25.5,31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3903 components: - pos: -25.5,30.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3904 components: - pos: -25.5,29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3905 components: - pos: -25.5,28.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3906 components: - pos: -25.5,27.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3907 components: - pos: -31.5,31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3908 components: - pos: -31.5,30.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3909 components: - pos: -31.5,29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3910 components: - pos: -31.5,28.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3911 components: - pos: -31.5,27.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3912 components: - pos: -34.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3913 components: - pos: -35.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3914 components: - pos: -35.5,31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3915 components: - pos: -35.5,29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3916 components: - pos: -35.5,28.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3917 components: - pos: -35.5,27.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3918 components: - pos: -35.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3919 components: - pos: -34.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3920 components: - pos: -33.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3921 components: - pos: -31.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3922 components: - pos: -32.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3923 components: - pos: -30.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3924 components: - pos: -29.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3925 components: - pos: -28.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3926 components: - pos: -27.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3927 components: - pos: -26.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3928 components: - pos: -25.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3929 components: - pos: -35.5,33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3930 components: - pos: -35.5,34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3931 components: - pos: -35.5,35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3932 components: - pos: -35.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3933 components: - pos: -34.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3934 components: - pos: -33.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3935 components: - pos: -32.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3936 components: - pos: -31.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3937 components: - pos: -30.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3942 components: - pos: -45.5,32.5 @@ -18569,64 +18004,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3945 components: - pos: -49.5,34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3946 components: - pos: -49.5,35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3947 components: - pos: -48.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3948 components: - pos: -49.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3949 components: - pos: -47.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3950 components: - pos: -46.5,35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3951 components: - pos: -46.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3952 components: - pos: -46.5,34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3953 components: - pos: -46.5,33.5 @@ -18634,8 +18051,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3954 components: - pos: -46.5,32.5 @@ -18643,155 +18058,111 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3955 components: - pos: -43.5,30.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3956 components: - pos: -41.5,33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3957 components: - pos: -43.5,31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3959 components: - pos: -43.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3968 components: - pos: -44.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3969 components: - pos: -42.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3970 components: - pos: -41.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3971 components: - pos: -43.5,29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3972 components: - pos: -41.5,34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3979 components: - pos: -49.5,33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3980 components: - pos: -49.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3981 components: - pos: -50.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3982 components: - pos: -51.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3983 components: - pos: -52.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3984 components: - pos: -53.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3985 components: - pos: -52.5,31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3986 components: - pos: -52.5,30.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3987 components: - pos: -52.5,29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3988 components: - pos: -49.5,31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3989 components: - pos: -49.5,30.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3990 components: - pos: -49.5,29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3991 components: - pos: -46.5,31.5 @@ -18799,8 +18170,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3992 components: - pos: -46.5,30.5 @@ -18808,8 +18177,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3993 components: - pos: -46.5,29.5 @@ -18817,8 +18184,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3994 components: - pos: -46.5,28.5 @@ -18826,8 +18191,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3995 components: - pos: -46.5,27.5 @@ -18835,8 +18198,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3996 components: - pos: -46.5,26.5 @@ -18844,29 +18205,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3997 components: - pos: -53.5,25.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3998 components: - pos: -34.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3999 components: - pos: -33.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4000 components: - pos: -32.5,15.5 @@ -18874,8 +18227,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4001 components: - pos: -31.5,15.5 @@ -18883,8 +18234,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4002 components: - pos: -31.5,16.5 @@ -18892,8 +18241,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4003 components: - pos: -31.5,17.5 @@ -18901,8 +18248,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4004 components: - pos: -31.5,18.5 @@ -18910,8 +18255,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4005 components: - pos: -31.5,19.5 @@ -18919,8 +18262,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4006 components: - pos: -30.5,19.5 @@ -18928,8 +18269,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4007 components: - pos: -29.5,19.5 @@ -18937,8 +18276,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4008 components: - pos: -28.5,19.5 @@ -18946,85 +18283,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4009 components: - pos: -41.5,35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4010 components: - pos: -41.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4011 components: - pos: -42.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4012 components: - pos: -42.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4013 components: - pos: -43.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4014 components: - pos: -44.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4015 components: - pos: -45.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4016 components: - pos: -40.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4017 components: - pos: -39.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4018 components: - pos: -38.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4019 components: - pos: -37.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4034 components: - pos: -26.5,21.5 @@ -19032,64 +18345,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4035 components: - pos: -26.5,22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4036 components: - pos: -26.5,23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4037 components: - pos: -26.5,24.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4038 components: - pos: -31.5,25.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4039 components: - pos: -31.5,24.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4040 components: - pos: -31.5,23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4041 components: - pos: -31.5,22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4042 components: - pos: -31.5,21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4043 components: - pos: -25.5,20.5 @@ -19097,8 +18392,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4044 components: - pos: -26.5,20.5 @@ -19106,8 +18399,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4045 components: - pos: -26.5,19.5 @@ -19115,8 +18406,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4046 components: - pos: -24.5,20.5 @@ -19124,8 +18413,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4047 components: - pos: -23.5,20.5 @@ -19133,8 +18420,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4048 components: - pos: -22.5,20.5 @@ -19142,8 +18427,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4049 components: - pos: -21.5,20.5 @@ -19151,8 +18434,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4050 components: - pos: -20.5,20.5 @@ -19160,8 +18441,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4051 components: - pos: -19.5,20.5 @@ -19169,29 +18448,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4052 components: - pos: -22.5,21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4053 components: - pos: -22.5,22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4054 components: - pos: -22.5,23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4055 components: - pos: -19.5,19.5 @@ -19199,8 +18470,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4056 components: - pos: -19.5,18.5 @@ -19208,8 +18477,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4057 components: - pos: -18.5,20.5 @@ -19217,8 +18484,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4058 components: - pos: -17.5,20.5 @@ -19226,8 +18491,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4059 components: - pos: -16.5,20.5 @@ -19235,8 +18498,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4060 components: - pos: -15.5,20.5 @@ -19244,8 +18505,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4061 components: - pos: -14.5,21.5 @@ -19253,8 +18512,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4062 components: - pos: -14.5,22.5 @@ -19262,8 +18519,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4063 components: - pos: -14.5,23.5 @@ -19271,8 +18526,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4064 components: - pos: -13.5,21.5 @@ -19280,8 +18533,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4065 components: - pos: -12.5,21.5 @@ -19289,8 +18540,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4066 components: - pos: -11.5,21.5 @@ -19298,8 +18547,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4067 components: - pos: -10.5,21.5 @@ -19307,8 +18554,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4068 components: - pos: -9.5,21.5 @@ -19316,8 +18561,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4069 components: - pos: -8.5,21.5 @@ -19325,8 +18568,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4070 components: - pos: -7.5,21.5 @@ -19334,8 +18575,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4071 components: - pos: -6.5,21.5 @@ -19343,8 +18582,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4072 components: - pos: -5.5,21.5 @@ -19352,8 +18589,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4073 components: - pos: -5.5,20.5 @@ -19361,8 +18596,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4074 components: - pos: -5.5,19.5 @@ -19370,8 +18603,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4075 components: - pos: -5.5,18.5 @@ -19379,8 +18610,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4110 components: - pos: -26.5,14.5 @@ -19388,624 +18617,446 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4111 components: - pos: -26.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4112 components: - pos: -26.5,16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4113 components: - pos: -27.5,16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4114 components: - pos: -28.5,16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4115 components: - pos: -25.5,16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4116 components: - pos: -24.5,16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4117 components: - pos: -23.5,16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4118 components: - pos: -22.5,16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4119 components: - pos: -26.5,13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4120 components: - pos: -26.5,12.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4121 components: - pos: -26.5,11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4122 components: - pos: -26.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4123 components: - pos: -26.5,9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4124 components: - pos: -26.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4125 components: - pos: -26.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4126 components: - pos: -26.5,6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4127 components: - pos: -26.5,6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4128 components: - pos: -26.5,5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4129 components: - pos: -27.5,5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4130 components: - pos: -28.5,5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4131 components: - pos: -27.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4132 components: - pos: -28.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4133 components: - pos: -25.5,11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4134 components: - pos: -24.5,11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4135 components: - pos: -23.5,11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4136 components: - pos: -22.5,11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4137 components: - pos: -21.5,11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4138 components: - pos: -20.5,11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4139 components: - pos: -19.5,11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4140 components: - pos: -25.5,6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4141 components: - pos: -24.5,6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4142 components: - pos: -23.5,6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4143 components: - pos: -22.5,6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4144 components: - pos: -21.5,6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4145 components: - pos: -20.5,6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4146 components: - pos: -20.5,5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4147 components: - pos: -20.5,4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4148 components: - pos: -20.5,3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4149 components: - pos: -20.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4150 components: - pos: -21.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4151 components: - pos: -19.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4152 components: - pos: -19.5,6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4153 components: - pos: -18.5,6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4154 components: - pos: -17.5,6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4155 components: - pos: -16.5,6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4156 components: - pos: -16.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4157 components: - pos: -16.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4158 components: - pos: -16.5,9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4159 components: - pos: -16.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4160 components: - pos: -16.5,11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4161 components: - pos: -17.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4162 components: - pos: -20.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4163 components: - pos: -18.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4164 components: - pos: -16.5,12.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4165 components: - pos: -16.5,13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4166 components: - pos: -16.5,14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4167 components: - pos: -16.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4168 components: - pos: -16.5,16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4169 components: - pos: -16.5,17.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4170 components: - pos: -17.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4171 components: - pos: -18.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4172 components: - pos: -19.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4173 components: - pos: -15.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4174 components: - pos: -17.5,13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4175 components: - pos: -15.5,17.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4176 components: - pos: -14.5,17.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4177 components: - pos: -13.5,17.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4178 components: - pos: -15.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4179 components: - pos: -14.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4180 components: - pos: -13.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4181 components: - pos: -12.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4182 components: - pos: -11.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4183 components: - pos: -15.5,6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4184 components: - pos: -14.5,6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4185 components: - pos: -13.5,6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4186 components: - pos: -12.5,6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4187 components: - pos: -11.5,6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4188 components: - pos: -11.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4189 components: - pos: -14.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4190 components: - pos: -16.5,5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4191 components: - pos: -18.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4192 components: - pos: -17.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4193 components: - pos: -16.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4194 components: - pos: -15.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4195 components: - pos: -15.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4196 components: - pos: -14.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4197 components: - pos: -13.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4198 components: - pos: -12.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4243 components: - pos: -6.5,13.5 @@ -20013,64 +19064,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4244 components: - pos: -5.5,13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4245 components: - pos: -5.5,14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4246 components: - pos: -4.5,14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4247 components: - pos: -3.5,14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4248 components: - pos: -2.5,14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4249 components: - pos: -1.5,14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4250 components: - pos: -0.5,14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4251 components: - pos: -5.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4252 components: - pos: -2.5,18.5 @@ -20078,85 +19111,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4253 components: - pos: -2.5,19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4254 components: - pos: -2.5,20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4255 components: - pos: -2.5,21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4256 components: - pos: -2.5,22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4257 components: - pos: -2.5,23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4258 components: - pos: -1.5,19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4259 components: - pos: -0.5,19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4260 components: - pos: -0.5,20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4261 components: - pos: -0.5,21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4262 components: - pos: -0.5,22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4263 components: - pos: -0.5,23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4264 components: - pos: -2.5,17.5 @@ -20164,8 +19173,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4265 components: - pos: -3.5,17.5 @@ -20173,8 +19180,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4266 components: - pos: -4.5,17.5 @@ -20182,8 +19187,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4267 components: - pos: -1.5,17.5 @@ -20191,8 +19194,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4268 components: - pos: -0.5,17.5 @@ -20200,8 +19201,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4269 components: - pos: 0.5,17.5 @@ -20209,8 +19208,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4270 components: - pos: 0.5,17.5 @@ -20218,8 +19215,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4271 components: - pos: 1.5,17.5 @@ -20227,8 +19222,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4272 components: - pos: 2.5,17.5 @@ -20236,8 +19229,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4273 components: - pos: 3.5,17.5 @@ -20245,8 +19236,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4274 components: - pos: 4.5,17.5 @@ -20254,8 +19243,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4275 components: - pos: 5.5,17.5 @@ -20263,8 +19250,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4276 components: - pos: 6.5,17.5 @@ -20272,477 +19257,341 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4278 components: - pos: 2.5,14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4279 components: - pos: 3.5,14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4280 components: - pos: 4.5,14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4281 components: - pos: 5.5,14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4282 components: - pos: 6.5,14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4283 components: - pos: 2.5,13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4284 components: - pos: 2.5,12.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4285 components: - pos: 2.5,11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4286 components: - pos: 2.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4287 components: - pos: 2.5,9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4288 components: - pos: 2.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4289 components: - pos: 2.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4290 components: - pos: 2.5,6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4291 components: - pos: 3.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4292 components: - pos: 4.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4293 components: - pos: 5.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4294 components: - pos: 6.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4295 components: - pos: 1.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4296 components: - pos: -0.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4297 components: - pos: 0.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4298 components: - pos: -0.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4299 components: - pos: -2.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4300 components: - pos: -1.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4301 components: - pos: -3.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4302 components: - pos: -4.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4303 components: - pos: -5.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4304 components: - pos: -6.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4305 components: - pos: -7.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4306 components: - pos: -8.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4307 components: - pos: -9.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4308 components: - pos: -7.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4309 components: - pos: -7.5,9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4311 components: - pos: -2.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4312 components: - pos: -2.5,9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4313 components: - pos: -2.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4315 components: - pos: -3.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4316 components: - pos: -4.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4317 components: - pos: -1.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4318 components: - pos: -0.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4319 components: - pos: -2.5,12.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4320 components: - pos: -5.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4321 components: - pos: 0.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4322 components: - pos: -2.5,6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4323 components: - pos: -2.5,5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4324 components: - pos: -2.5,4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4325 components: - pos: 5.5,6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4326 components: - pos: -9.5,6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4327 components: - pos: -7.5,13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4328 components: - pos: -8.5,13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4329 components: - pos: -9.5,13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4330 components: - pos: -10.5,13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4331 components: - pos: -11.5,13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4332 components: - pos: -12.5,13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4333 components: - pos: -13.5,13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4334 components: - pos: -13.5,12.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4335 components: - pos: -13.5,14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4336 components: - pos: -10.5,14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4337 components: - pos: -10.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4338 components: - pos: -10.5,16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4339 components: - pos: -10.5,17.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4340 components: - pos: -10.5,18.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4341 components: - pos: -10.5,19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4342 components: - pos: -9.5,18.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4343 components: - pos: -8.5,18.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4344 components: - pos: -11.5,18.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4345 components: - pos: -7.5,12.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4346 components: - pos: -2.5,13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4569 components: - pos: -45.5,49.5 @@ -20750,197 +19599,141 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4570 components: - pos: -46.5,49.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4571 components: - pos: -47.5,49.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4572 components: - pos: -47.5,50.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4573 components: - pos: -47.5,51.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4574 components: - pos: -47.5,52.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4575 components: - pos: -47.5,53.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4576 components: - pos: -47.5,54.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4577 components: - pos: -47.5,48.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4578 components: - pos: -47.5,47.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4579 components: - pos: -47.5,46.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4580 components: - pos: -47.5,45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4581 components: - pos: -47.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4582 components: - pos: -47.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4583 components: - pos: -47.5,42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4584 components: - pos: -44.5,49.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4585 components: - pos: -43.5,49.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4586 components: - pos: -43.5,48.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4587 components: - pos: -43.5,47.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4588 components: - pos: -42.5,47.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4589 components: - pos: -41.5,47.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4590 components: - pos: -40.5,47.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4591 components: - pos: -39.5,47.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4592 components: - pos: -38.5,47.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4593 components: - pos: -37.5,47.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4594 components: - pos: -39.5,46.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4595 components: - pos: -39.5,48.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4596 components: - pos: -39.5,49.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4597 components: - pos: -39.5,50.5 @@ -20948,414 +19741,296 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4598 components: - pos: -39.5,51.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4599 components: - pos: -39.5,52.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4600 components: - pos: -39.5,53.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4601 components: - pos: -40.5,53.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4602 components: - pos: -40.5,54.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4603 components: - pos: -40.5,55.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4604 components: - pos: -39.5,55.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4605 components: - pos: -38.5,55.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4606 components: - pos: -38.5,54.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4607 components: - pos: -38.5,53.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4608 components: - pos: -47.5,41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4609 components: - pos: -47.5,40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4610 components: - pos: -47.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4611 components: - pos: -46.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4612 components: - pos: -45.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4613 components: - pos: -44.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4614 components: - pos: -43.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4615 components: - pos: -43.5,42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4616 components: - pos: -43.5,41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4617 components: - pos: -43.5,40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4618 components: - pos: -43.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4619 components: - pos: -42.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4620 components: - pos: -41.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4621 components: - pos: -40.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4622 components: - pos: -39.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4623 components: - pos: -39.5,41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4624 components: - pos: -39.5,42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4625 components: - pos: -39.5,40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4626 components: - pos: -39.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4627 components: - pos: -38.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4628 components: - pos: -37.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4629 components: - pos: -36.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4630 components: - pos: -35.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4631 components: - pos: -35.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4632 components: - pos: -35.5,40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4633 components: - pos: -36.5,40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4634 components: - pos: -36.5,41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4635 components: - pos: -36.5,42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4636 components: - pos: -34.5,40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4637 components: - pos: -34.5,41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4638 components: - pos: -34.5,42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4639 components: - pos: -34.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4640 components: - pos: -33.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4641 components: - pos: -32.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4642 components: - pos: -31.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4643 components: - pos: -31.5,41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4644 components: - pos: -31.5,40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4645 components: - pos: -31.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4646 components: - pos: -30.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4647 components: - pos: -32.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4648 components: - pos: -31.5,42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4649 components: - pos: -30.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4650 components: - pos: -29.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4651 components: - pos: -28.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4652 components: - pos: -27.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4653 components: - pos: -26.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4654 components: - pos: -27.5,42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4655 components: - pos: -27.5,41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4656 components: - pos: -47.5,59.5 @@ -21363,344 +20038,246 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4657 components: - pos: -47.5,58.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4658 components: - pos: -47.5,57.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4659 components: - pos: -48.5,57.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4660 components: - pos: -49.5,57.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4661 components: - pos: -50.5,57.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4662 components: - pos: -51.5,57.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4663 components: - pos: -52.5,57.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4664 components: - pos: -46.5,57.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4665 components: - pos: -45.5,57.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4666 components: - pos: -47.5,60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4667 components: - pos: -46.5,60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4668 components: - pos: -46.5,61.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4669 components: - pos: -46.5,62.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4670 components: - pos: -46.5,63.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4671 components: - pos: -46.5,64.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4672 components: - pos: -46.5,65.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4673 components: - pos: -46.5,66.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4674 components: - pos: -46.5,67.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4675 components: - pos: -47.5,67.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4676 components: - pos: -47.5,68.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4677 components: - pos: -47.5,69.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4678 components: - pos: -48.5,68.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4679 components: - pos: -49.5,68.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4680 components: - pos: -50.5,68.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4681 components: - pos: -51.5,68.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4682 components: - pos: -47.5,63.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4683 components: - pos: -48.5,63.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4684 components: - pos: -49.5,63.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4685 components: - pos: -50.5,63.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4686 components: - pos: -51.5,63.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4687 components: - pos: -50.5,58.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4688 components: - pos: -50.5,59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4689 components: - pos: -50.5,60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4690 components: - pos: -50.5,61.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4691 components: - pos: -50.5,62.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4692 components: - pos: -45.5,63.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4693 components: - pos: -44.5,63.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4694 components: - pos: -43.5,63.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4695 components: - pos: -43.5,62.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4696 components: - pos: -43.5,61.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4697 components: - pos: -43.5,60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4698 components: - pos: -45.5,65.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4699 components: - pos: -45.5,66.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4700 components: - pos: -44.5,66.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4701 components: - pos: -43.5,66.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4702 components: - pos: -51.5,64.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4703 components: - pos: -51.5,65.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4704 components: - pos: -51.5,66.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4705 components: - pos: -36.5,53.5 @@ -21708,554 +20285,396 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4706 components: - pos: -35.5,53.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4707 components: - pos: -34.5,53.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4708 components: - pos: -33.5,53.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4709 components: - pos: -32.5,53.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4710 components: - pos: -32.5,52.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4711 components: - pos: -32.5,51.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4712 components: - pos: -32.5,50.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4713 components: - pos: -32.5,50.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4714 components: - pos: -32.5,49.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4715 components: - pos: -32.5,48.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4716 components: - pos: -32.5,47.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4717 components: - pos: -32.5,46.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4718 components: - pos: -31.5,46.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4719 components: - pos: -30.5,46.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4720 components: - pos: -29.5,46.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4721 components: - pos: -32.5,45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4722 components: - pos: -33.5,47.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4723 components: - pos: -34.5,47.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4724 components: - pos: -35.5,47.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4725 components: - pos: -31.5,47.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4726 components: - pos: -29.5,47.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4727 components: - pos: -29.5,48.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4728 components: - pos: -29.5,49.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4729 components: - pos: -29.5,50.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4730 components: - pos: -28.5,50.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4731 components: - pos: -27.5,50.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4732 components: - pos: -26.5,50.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4733 components: - pos: -26.5,49.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4734 components: - pos: -26.5,48.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4735 components: - pos: -25.5,48.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4736 components: - pos: -24.5,48.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4737 components: - pos: -23.5,48.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4738 components: - pos: -22.5,48.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4739 components: - pos: -21.5,48.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4740 components: - pos: -26.5,51.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4741 components: - pos: -26.5,52.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4742 components: - pos: -25.5,52.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4743 components: - pos: -24.5,52.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4744 components: - pos: -23.5,52.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4745 components: - pos: -22.5,52.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4746 components: - pos: -21.5,52.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4747 components: - pos: -29.5,51.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4748 components: - pos: -29.5,52.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4749 components: - pos: -29.5,53.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4750 components: - pos: -29.5,54.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4751 components: - pos: -29.5,55.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4752 components: - pos: -29.5,56.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4753 components: - pos: -29.5,57.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4754 components: - pos: -29.5,58.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4755 components: - pos: -29.5,59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4756 components: - pos: -28.5,58.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4757 components: - pos: -30.5,57.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4758 components: - pos: -32.5,57.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4759 components: - pos: -33.5,57.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4760 components: - pos: -31.5,57.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4761 components: - pos: -34.5,57.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4762 components: - pos: -35.5,57.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4763 components: - pos: -35.5,58.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4764 components: - pos: -35.5,59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4765 components: - pos: -35.5,54.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4766 components: - pos: -35.5,55.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4767 components: - pos: -35.5,56.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4768 components: - pos: -34.5,50.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4769 components: - pos: -34.5,50.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4770 components: - pos: -33.5,50.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4771 components: - pos: -35.5,50.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4774 components: - pos: -48.5,51.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4775 components: - pos: -49.5,51.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4776 components: - pos: -50.5,51.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4777 components: - pos: -51.5,51.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4778 components: - pos: -51.5,50.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4779 components: - pos: -50.5,52.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4780 components: - pos: -50.5,53.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4781 components: - pos: -51.5,56.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4782 components: - pos: -51.5,55.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4829 components: - pos: -41.5,31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4830 components: - pos: -41.5,30.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4831 components: - pos: -41.5,29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5188 components: - pos: -23.5,40.5 @@ -22263,8 +20682,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5189 components: - pos: -22.5,40.5 @@ -22272,8 +20689,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5190 components: - pos: -22.5,41.5 @@ -22281,8 +20696,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5191 components: - pos: -22.5,42.5 @@ -22290,8 +20703,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5192 components: - pos: -22.5,43.5 @@ -22299,8 +20710,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5193 components: - pos: -22.5,44.5 @@ -22308,8 +20717,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5194 components: - pos: -22.5,45.5 @@ -22317,8 +20724,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5195 components: - pos: -22.5,46.5 @@ -22326,8 +20731,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5196 components: - pos: -23.5,46.5 @@ -22335,8 +20738,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5197 components: - pos: -24.5,46.5 @@ -22344,8 +20745,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5198 components: - pos: -25.5,46.5 @@ -22353,8 +20752,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5199 components: - pos: -26.5,46.5 @@ -22362,8 +20759,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5200 components: - pos: -27.5,46.5 @@ -22371,8 +20766,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5201 components: - pos: -21.5,46.5 @@ -22380,8 +20773,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5202 components: - pos: -20.5,46.5 @@ -22389,8 +20780,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5203 components: - pos: -19.5,46.5 @@ -22398,8 +20787,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5204 components: - pos: -22.5,39.5 @@ -22407,239 +20794,171 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5205 components: - pos: -22.5,38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5206 components: - pos: -22.5,37.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5207 components: - pos: -23.5,37.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5208 components: - pos: -24.5,37.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5209 components: - pos: -25.5,37.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5210 components: - pos: -26.5,37.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5211 components: - pos: -26.5,38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5212 components: - pos: -26.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5213 components: - pos: -27.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5214 components: - pos: -25.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5215 components: - pos: -26.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5216 components: - pos: -26.5,35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5217 components: - pos: -21.5,37.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5218 components: - pos: -20.5,37.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5219 components: - pos: -19.5,37.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5220 components: - pos: -18.5,37.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5221 components: - pos: -17.5,37.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5222 components: - pos: -20.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5223 components: - pos: -20.5,35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5224 components: - pos: -20.5,34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5225 components: - pos: -19.5,34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5226 components: - pos: -18.5,34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5227 components: - pos: -17.5,34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5228 components: - pos: -21.5,34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5229 components: - pos: -22.5,34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5230 components: - pos: -20.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5231 components: - pos: -20.5,33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5232 components: - pos: -20.5,31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5233 components: - pos: -18.5,31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5234 components: - pos: -19.5,31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5235 components: - pos: -21.5,31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5236 components: - pos: -17.5,31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5237 components: - pos: -19.5,30.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5567 components: - pos: 8.5,42.5 @@ -22647,218 +20966,156 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5568 components: - pos: 9.5,42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5569 components: - pos: 10.5,42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5570 components: - pos: 10.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5571 components: - pos: 10.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5572 components: - pos: 9.5,41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5573 components: - pos: 9.5,40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5574 components: - pos: 9.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5575 components: - pos: 10.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5576 components: - pos: 11.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5577 components: - pos: 12.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5578 components: - pos: 8.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5579 components: - pos: 7.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5580 components: - pos: 6.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5581 components: - pos: 5.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5582 components: - pos: 4.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5583 components: - pos: 5.5,40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5584 components: - pos: 5.5,41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5585 components: - pos: 5.5,42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5586 components: - pos: 4.5,42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5587 components: - pos: 3.5,42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5588 components: - pos: 3.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5589 components: - pos: 3.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5590 components: - pos: 7.5,42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5591 components: - pos: 6.5,42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5592 components: - pos: 6.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5593 components: - pos: 6.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5595 components: - pos: 9.5,38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5596 components: - pos: 9.5,37.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5597 components: - pos: 9.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5598 components: - pos: 9.5,35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5910 components: - pos: 4.5,35.5 @@ -22866,218 +21123,156 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5911 components: - pos: 4.5,34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5912 components: - pos: 4.5,33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5913 components: - pos: 4.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5914 components: - pos: 4.5,31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5915 components: - pos: 4.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5916 components: - pos: 3.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5917 components: - pos: 2.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5918 components: - pos: 1.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5919 components: - pos: 0.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5920 components: - pos: -0.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5921 components: - pos: -1.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5922 components: - pos: -0.5,33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5923 components: - pos: -0.5,34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5924 components: - pos: -0.5,35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5925 components: - pos: 0.5,35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5926 components: - pos: 5.5,33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5927 components: - pos: 6.5,33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5928 components: - pos: -2.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5929 components: - pos: -3.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5930 components: - pos: -3.5,31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5931 components: - pos: -3.5,30.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5932 components: - pos: -3.5,29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5933 components: - pos: -3.5,28.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5934 components: - pos: -3.5,33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5935 components: - pos: -3.5,34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5936 components: - pos: -3.5,35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5937 components: - pos: -3.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5938 components: - pos: -3.5,37.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5939 components: - pos: -2.5,37.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5940 components: - pos: -1.5,37.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5941 components: - pos: -0.5,37.5 @@ -23085,8 +21280,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5942 components: - pos: -0.5,38.5 @@ -23094,8 +21287,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5943 components: - pos: -0.5,39.5 @@ -23103,8 +21294,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5944 components: - pos: -0.5,40.5 @@ -23112,8 +21301,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5945 components: - pos: -13.5,45.5 @@ -23121,1114 +21308,796 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5946 components: - pos: -12.5,45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5947 components: - pos: -11.5,45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5948 components: - pos: -10.5,45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5949 components: - pos: -9.5,45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5950 components: - pos: -8.5,45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5951 components: - pos: -7.5,45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5952 components: - pos: -6.5,45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5953 components: - pos: -11.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5954 components: - pos: -11.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5955 components: - pos: -11.5,42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5956 components: - pos: -11.5,41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5957 components: - pos: -11.5,40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5958 components: - pos: -11.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5959 components: - pos: -10.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5960 components: - pos: -9.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5961 components: - pos: -9.5,38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5962 components: - pos: -9.5,37.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5963 components: - pos: -9.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5964 components: - pos: -10.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5965 components: - pos: -11.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5966 components: - pos: -12.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5967 components: - pos: -12.5,35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5968 components: - pos: -12.5,34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5969 components: - pos: -12.5,33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5970 components: - pos: -12.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5971 components: - pos: -11.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5972 components: - pos: -10.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5973 components: - pos: -10.5,31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5974 components: - pos: -9.5,31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5975 components: - pos: -8.5,31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5976 components: - pos: -8.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5977 components: - pos: -7.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5978 components: - pos: -6.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5979 components: - pos: -6.5,33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5980 components: - pos: -6.5,34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5981 components: - pos: -6.5,35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5982 components: - pos: -6.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5983 components: - pos: -7.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5984 components: - pos: -8.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5985 components: - pos: -12.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5986 components: - pos: -13.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5987 components: - pos: -14.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5988 components: - pos: -14.5,38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5989 components: - pos: -14.5,37.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5990 components: - pos: -14.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5991 components: - pos: -14.5,35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5992 components: - pos: -14.5,35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5993 components: - pos: -14.5,34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5994 components: - pos: -14.5,33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5995 components: - pos: -14.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5996 components: - pos: -14.5,31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5997 components: - pos: -14.5,30.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5998 components: - pos: -14.5,29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5999 components: - pos: -14.5,28.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6000 components: - pos: -8.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6001 components: - pos: -7.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6002 components: - pos: -7.5,40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6003 components: - pos: -7.5,41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6004 components: - pos: -7.5,42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6005 components: - pos: -7.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6006 components: - pos: -7.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6007 components: - pos: -6.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6008 components: - pos: -5.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6009 components: - pos: -4.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6010 components: - pos: -3.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6011 components: - pos: -3.5,40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6012 components: - pos: -3.5,41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6013 components: - pos: -6.5,41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6014 components: - pos: -5.5,41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6015 components: - pos: -12.5,41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6016 components: - pos: -14.5,41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6017 components: - pos: -13.5,41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6018 components: - pos: -10.5,42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6019 components: - pos: -9.5,42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6020 components: - pos: -15.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6021 components: - pos: -16.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6022 components: - pos: -17.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6023 components: - pos: -18.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6024 components: - pos: -19.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6025 components: - pos: -20.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6033 components: - pos: -24.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6034 components: - pos: -23.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6035 components: - pos: -22.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6036 components: - pos: -21.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6037 components: - pos: -20.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6038 components: - pos: -19.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6039 components: - pos: -18.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6040 components: - pos: -17.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6041 components: - pos: -16.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6042 components: - pos: -15.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6043 components: - pos: -14.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6044 components: - pos: -13.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6045 components: - pos: -12.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6046 components: - pos: -11.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6047 components: - pos: -10.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6048 components: - pos: -8.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6049 components: - pos: -7.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6050 components: - pos: -9.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6051 components: - pos: -6.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6052 components: - pos: -5.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6053 components: - pos: -4.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6054 components: - pos: -0.5,24.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6055 components: - pos: -0.5,25.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6056 components: - pos: -0.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6057 components: - pos: -1.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6058 components: - pos: -2.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6059 components: - pos: -0.5,27.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6060 components: - pos: -0.5,28.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6061 components: - pos: -0.5,29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6062 components: - pos: 0.5,29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6063 components: - pos: 1.5,29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6064 components: - pos: 3.5,29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6065 components: - pos: 2.5,29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6066 components: - pos: 4.5,29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6067 components: - pos: 0.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6068 components: - pos: 1.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6069 components: - pos: 2.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6070 components: - pos: 3.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6071 components: - pos: 4.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6072 components: - pos: 5.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6073 components: - pos: 6.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6074 components: - pos: 7.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6075 components: - pos: 4.5,25.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6076 components: - pos: 4.5,24.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6077 components: - pos: 4.5,23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6078 components: - pos: 4.5,22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6079 components: - pos: 4.5,21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6080 components: - pos: 4.5,20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6081 components: - pos: 3.5,22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6082 components: - pos: 2.5,22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6083 components: - pos: 5.5,21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6084 components: - pos: 6.5,21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6085 components: - pos: 5.5,23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6086 components: - pos: 6.5,23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6087 components: - pos: 3.5,20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6088 components: - pos: 7.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6606 components: - pos: 20.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7236 components: - pos: -36.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7242 components: - pos: -32.5,-5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7243 components: - pos: -38.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7247 components: - pos: -32.5,-14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7248 components: - pos: -35.5,-7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7249 components: - pos: -35.5,-9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7250 components: - pos: -35.5,-8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7251 components: - pos: -37.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7252 components: - pos: -38.5,-5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7257 components: - pos: -36.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7259 components: - pos: -36.5,-13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7264 components: - pos: -35.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7265 components: - pos: -35.5,-11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7276 components: - pos: -35.5,-12.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7277 components: - pos: -35.5,-13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7471 components: - pos: -32.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7482 components: - pos: -32.5,-8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7518 components: - pos: -27.5,-19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7749 components: - pos: 9.5,-16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7752 components: - pos: -29.5,-20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7753 components: - pos: -28.5,-20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7892 components: - pos: -35.5,-3.5 @@ -24236,36 +22105,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7893 components: - pos: -35.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7894 components: - pos: -34.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7895 components: - pos: -33.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7896 components: - pos: -36.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7897 components: - pos: -37.5,-2.5 @@ -24273,8 +22132,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7898 components: - pos: -38.5,-2.5 @@ -24282,8 +22139,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7899 components: - pos: -39.5,-2.5 @@ -24291,8 +22146,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7900 components: - pos: -40.5,-2.5 @@ -24300,8 +22153,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7901 components: - pos: -41.5,-2.5 @@ -24309,8 +22160,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7902 components: - pos: -41.5,-3.5 @@ -24318,8 +22167,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7903 components: - pos: -41.5,-4.5 @@ -24327,8 +22174,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7904 components: - pos: -41.5,-4.5 @@ -24336,8 +22181,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7905 components: - pos: -41.5,-5.5 @@ -24345,8 +22188,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7906 components: - pos: -41.5,-6.5 @@ -24354,8 +22195,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7907 components: - pos: -41.5,-7.5 @@ -24363,8 +22202,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7908 components: - pos: -41.5,-8.5 @@ -24372,8 +22209,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7909 components: - pos: -42.5,-8.5 @@ -24381,8 +22216,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7910 components: - pos: -33.5,-3.5 @@ -24390,183 +22223,131 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7928 components: - pos: -32.5,-9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7929 components: - pos: -32.5,-7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7930 components: - pos: -33.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7931 components: - pos: -34.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7932 components: - pos: -35.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7933 components: - pos: -35.5,-5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7934 components: - pos: -32.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7935 components: - pos: -35.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7946 components: - pos: -31.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7947 components: - pos: -30.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7948 components: - pos: -29.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7949 components: - pos: -28.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7950 components: - pos: -28.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7951 components: - pos: -28.5,-5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7952 components: - pos: -28.5,-3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7953 components: - pos: -28.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7954 components: - pos: -28.5,-1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7955 components: - pos: -28.5,-0.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7956 components: - pos: -29.5,-1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7957 components: - pos: -30.5,-1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7958 components: - pos: -27.5,-1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7959 components: - pos: -28.5,-7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7960 components: - pos: -28.5,-8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7961 components: - pos: -28.5,-9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7962 components: - pos: -28.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7963 components: - pos: -27.5,-17.5 @@ -24574,85 +22355,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7964 components: - pos: -27.5,-18.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7966 components: - pos: -27.5,-20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7967 components: - pos: -27.5,-21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7968 components: - pos: -27.5,-22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7969 components: - pos: -27.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7970 components: - pos: -27.5,-24.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7971 components: - pos: -26.5,-22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7972 components: - pos: -28.5,-22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7974 components: - pos: -30.5,-22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7976 components: - pos: -30.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7977 components: - pos: -30.5,-24.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7978 components: - pos: -30.5,-21.5 @@ -24660,155 +22417,111 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7979 components: - pos: -30.5,-20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7980 components: - pos: -30.5,-19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7981 components: - pos: -31.5,-19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7982 components: - pos: -32.5,-19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7983 components: - pos: -33.5,-19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7984 components: - pos: -33.5,-20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7985 components: - pos: -33.5,-21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7986 components: - pos: -33.5,-22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7987 components: - pos: -33.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7988 components: - pos: -33.5,-24.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7989 components: - pos: -31.5,-18.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7990 components: - pos: -31.5,-17.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7991 components: - pos: -32.5,-17.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7992 components: - pos: -33.5,-17.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7993 components: - pos: -34.5,-17.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7994 components: - pos: -27.5,-16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7995 components: - pos: -28.5,-16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7996 components: - pos: -28.5,-15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7997 components: - pos: -28.5,-13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7998 components: - pos: -28.5,-14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7999 components: - pos: -28.5,-12.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8000 components: - pos: -20.5,-20.5 @@ -24816,197 +22529,141 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8001 components: - pos: -19.5,-20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8002 components: - pos: -18.5,-20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8003 components: - pos: -17.5,-20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8004 components: - pos: -16.5,-20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8005 components: - pos: -15.5,-20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8006 components: - pos: -14.5,-20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8007 components: - pos: -13.5,-20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8008 components: - pos: -12.5,-20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8009 components: - pos: -11.5,-20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8010 components: - pos: -10.5,-20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8011 components: - pos: -8.5,-20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8012 components: - pos: -8.5,-20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8013 components: - pos: -9.5,-20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8014 components: - pos: -10.5,-21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8015 components: - pos: -10.5,-22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8016 components: - pos: -10.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8017 components: - pos: -8.5,-21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8018 components: - pos: -8.5,-22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8019 components: - pos: -8.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8020 components: - pos: -7.5,-20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8021 components: - pos: -6.5,-20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8022 components: - pos: -14.5,-21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8023 components: - pos: -14.5,-22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8024 components: - pos: -14.5,-19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8025 components: - pos: -18.5,-21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8026 components: - pos: -18.5,-22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8027 components: - pos: -18.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8028 components: - pos: -20.5,-21.5 @@ -25014,358 +22671,256 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8029 components: - pos: -19.5,-21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8030 components: - pos: -21.5,-21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8031 components: - pos: -22.5,-21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8032 components: - pos: -22.5,-22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8033 components: - pos: -18.5,-19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8034 components: - pos: -18.5,-18.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8035 components: - pos: -18.5,-17.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8036 components: - pos: -18.5,-16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8037 components: - pos: -18.5,-15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8038 components: - pos: -18.5,-14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8039 components: - pos: -18.5,-13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8040 components: - pos: -18.5,-12.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8041 components: - pos: -18.5,-11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8042 components: - pos: -18.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8043 components: - pos: -18.5,-9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8044 components: - pos: -18.5,-8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8045 components: - pos: -19.5,-8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8046 components: - pos: -20.5,-8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8047 components: - pos: -21.5,-8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8048 components: - pos: -22.5,-8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8049 components: - pos: -23.5,-8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8050 components: - pos: -24.5,-8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8051 components: - pos: -25.5,-8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8052 components: - pos: -26.5,-8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8053 components: - pos: -24.5,-9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8054 components: - pos: -24.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8055 components: - pos: -24.5,-11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8056 components: - pos: -24.5,-12.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8057 components: - pos: -24.5,-13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8058 components: - pos: -19.5,-13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8059 components: - pos: -20.5,-13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8060 components: - pos: -21.5,-13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8061 components: - pos: -22.5,-13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8062 components: - pos: -19.5,-17.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8063 components: - pos: -20.5,-17.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8064 components: - pos: -21.5,-17.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8065 components: - pos: -22.5,-17.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8066 components: - pos: -23.5,-17.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8067 components: - pos: -24.5,-17.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8068 components: - pos: -25.5,-17.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8069 components: - pos: -23.5,-18.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8070 components: - pos: -23.5,-19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8071 components: - pos: -17.5,-14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8072 components: - pos: -16.5,-14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8073 components: - pos: -15.5,-14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8074 components: - pos: -14.5,-14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8075 components: - pos: -13.5,-14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8076 components: - pos: -12.5,-14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8077 components: - pos: -11.5,-14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8078 components: - pos: -10.5,-14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8079 components: - pos: -9.5,-14.5 @@ -25373,8 +22928,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8080 components: - pos: -7.5,-14.5 @@ -25382,8 +22935,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8081 components: - pos: -8.5,-14.5 @@ -25391,8 +22942,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8082 components: - pos: -6.5,-14.5 @@ -25400,8 +22949,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8083 components: - pos: -5.5,-14.5 @@ -25409,8 +22956,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8084 components: - pos: -4.5,-14.5 @@ -25418,8 +22963,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8085 components: - pos: -5.5,-15.5 @@ -25427,8 +22970,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8086 components: - pos: -5.5,-16.5 @@ -25436,106 +22977,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8087 components: - pos: -11.5,-15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8088 components: - pos: -11.5,-16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8089 components: - pos: -10.5,-16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8090 components: - pos: -9.5,-16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8091 components: - pos: -8.5,-16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8092 components: - pos: -7.5,-16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8093 components: - pos: -8.5,-17.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8094 components: - pos: -17.5,-9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8095 components: - pos: -16.5,-9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8096 components: - pos: -14.5,-9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8097 components: - pos: -15.5,-9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8098 components: - pos: -13.5,-9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8099 components: - pos: -12.5,-9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8100 components: - pos: -11.5,-9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8101 components: - pos: -15.5,-3.5 @@ -25543,512 +23054,366 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8102 components: - pos: -15.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8103 components: - pos: -15.5,-5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8104 components: - pos: -16.5,-5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8105 components: - pos: -17.5,-5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8106 components: - pos: -18.5,-5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8107 components: - pos: -18.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8108 components: - pos: -19.5,-5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8109 components: - pos: -20.5,-5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8110 components: - pos: -21.5,-5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8111 components: - pos: -22.5,-5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8112 components: - pos: -23.5,-5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8113 components: - pos: -24.5,-5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8114 components: - pos: -25.5,-5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8115 components: - pos: -22.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8116 components: - pos: -22.5,-3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8117 components: - pos: -22.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8118 components: - pos: -22.5,-0.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8119 components: - pos: -22.5,-1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8120 components: - pos: -24.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8121 components: - pos: -24.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8122 components: - pos: -24.5,-3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8123 components: - pos: -24.5,-1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8124 components: - pos: -24.5,-0.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8125 components: - pos: -14.5,-5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8126 components: - pos: -13.5,-5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8127 components: - pos: -12.5,-5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8128 components: - pos: -11.5,-5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8129 components: - pos: -11.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8130 components: - pos: -11.5,-3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8131 components: - pos: -11.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8132 components: - pos: -11.5,-1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8133 components: - pos: -11.5,-0.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8134 components: - pos: -12.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8135 components: - pos: -13.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8136 components: - pos: -14.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8137 components: - pos: -10.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8138 components: - pos: -9.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8139 components: - pos: -8.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8140 components: - pos: -7.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8141 components: - pos: -6.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8142 components: - pos: -5.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8143 components: - pos: -10.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8144 components: - pos: -9.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8145 components: - pos: -8.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8146 components: - pos: -6.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8147 components: - pos: -5.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8148 components: - pos: -7.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8149 components: - pos: -9.5,-1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8150 components: - pos: -9.5,-0.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8151 components: - pos: -8.5,-5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8152 components: - pos: -8.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8153 components: - pos: -8.5,-7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8154 components: - pos: -8.5,-8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8155 components: - pos: -8.5,-9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8156 components: - pos: -8.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8157 components: - pos: -8.5,-11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8158 components: - pos: -8.5,-12.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8159 components: - pos: -6.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8160 components: - pos: -6.5,-7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8161 components: - pos: -6.5,-8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8162 components: - pos: -6.5,-9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8163 components: - pos: -6.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8164 components: - pos: -6.5,-11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8165 components: - pos: -6.5,-5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8166 components: - pos: -9.5,-9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8167 components: - pos: -5.5,-9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8168 components: - pos: -4.5,-9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8169 components: - pos: -5.5,-11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8170 components: - pos: -4.5,-11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8171 components: - pos: -4.5,-12.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8172 components: - pos: -5.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8173 components: - pos: -9.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8174 components: - pos: -0.5,-0.5 @@ -26056,64 +23421,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8175 components: - pos: -1.5,-0.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8176 components: - pos: -2.5,-0.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8177 components: - pos: -2.5,-1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8178 components: - pos: -2.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8179 components: - pos: -2.5,-3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8180 components: - pos: -2.5,-3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8181 components: - pos: -2.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8182 components: - pos: -2.5,-5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8183 components: - pos: -2.5,-6.5 @@ -26121,8 +23468,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8184 components: - pos: -2.5,-7.5 @@ -26130,8 +23475,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8185 components: - pos: -2.5,-8.5 @@ -26139,8 +23482,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8186 components: - pos: -2.5,-9.5 @@ -26148,8 +23489,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8187 components: - pos: -2.5,-10.5 @@ -26157,8 +23496,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8188 components: - pos: -2.5,-11.5 @@ -26166,8 +23503,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8189 components: - pos: -2.5,-12.5 @@ -26175,197 +23510,141 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8190 components: - pos: -2.5,0.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8191 components: - pos: -2.5,1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8192 components: - pos: -2.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8194 components: - pos: -3.5,1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8195 components: - pos: -4.5,1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8196 components: - pos: -5.5,1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8197 components: - pos: -5.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8198 components: - pos: -6.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8199 components: - pos: -7.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8200 components: - pos: -8.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8201 components: - pos: -9.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8202 components: - pos: -10.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8203 components: - pos: -1.5,1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8204 components: - pos: -0.5,1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8205 components: - pos: -0.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8206 components: - pos: 0.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8207 components: - pos: 1.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8208 components: - pos: 2.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8209 components: - pos: 3.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8210 components: - pos: 4.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8211 components: - pos: 5.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8212 components: - pos: 6.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8235 components: - pos: -32.5,-11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8237 components: - pos: -32.5,-12.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8239 components: - pos: -32.5,-13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8357 components: - pos: 8.5,-16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8465 components: - pos: 31.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8640 components: - pos: 28.5,-21.5 @@ -26373,8 +23652,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8642 components: - pos: 25.5,-21.5 @@ -26382,8 +23659,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8643 components: - pos: 26.5,-21.5 @@ -26391,8 +23666,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8644 components: - pos: 27.5,-21.5 @@ -26400,22 +23673,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9611 components: - pos: 1.5,-8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10536 components: - pos: 3.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10582 components: - pos: -20.5,-38.5 @@ -26423,288 +23690,206 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10583 components: - pos: -19.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10584 components: - pos: -18.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10585 components: - pos: -17.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10586 components: - pos: -18.5,-37.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10587 components: - pos: -18.5,-36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10588 components: - pos: -17.5,-36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10589 components: - pos: -16.5,-36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10590 components: - pos: -16.5,-35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10591 components: - pos: -16.5,-34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10592 components: - pos: -18.5,-39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10593 components: - pos: -18.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10594 components: - pos: -18.5,-41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10595 components: - pos: -18.5,-42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10596 components: - pos: -18.5,-43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10597 components: - pos: -19.5,-42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10598 components: - pos: -20.5,-42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10599 components: - pos: -21.5,-42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10600 components: - pos: -22.5,-42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10601 components: - pos: -23.5,-42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10602 components: - pos: -23.5,-43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10603 components: - pos: -23.5,-44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10604 components: - pos: -23.5,-45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10605 components: - pos: -23.5,-46.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10606 components: - pos: -23.5,-47.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10607 components: - pos: -23.5,-48.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10608 components: - pos: -23.5,-49.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10609 components: - pos: -23.5,-50.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10610 components: - pos: -23.5,-41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10611 components: - pos: -23.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10612 components: - pos: -24.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10613 components: - pos: -25.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10614 components: - pos: -22.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10615 components: - pos: -21.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10616 components: - pos: -17.5,-43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10617 components: - pos: -17.5,-44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10618 components: - pos: -17.5,-45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10619 components: - pos: -17.5,-46.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10620 components: - pos: -17.5,-47.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10621 components: - pos: -17.5,-48.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10622 components: - pos: -17.5,-48.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10623 components: - pos: -17.5,-49.5 @@ -26712,8 +23897,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10624 components: - pos: -17.5,-50.5 @@ -26721,8 +23904,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10625 components: - pos: -17.5,-51.5 @@ -26730,8 +23911,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10626 components: - pos: -17.5,-52.5 @@ -26739,8 +23918,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10627 components: - pos: -17.5,-53.5 @@ -26748,8 +23925,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10628 components: - pos: -17.5,-54.5 @@ -26757,239 +23932,171 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10629 components: - pos: -17.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10630 components: - pos: -16.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10631 components: - pos: -15.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10632 components: - pos: -14.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10633 components: - pos: -13.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10634 components: - pos: -12.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10635 components: - pos: -11.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10636 components: - pos: -10.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10637 components: - pos: -9.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10638 components: - pos: -8.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10639 components: - pos: -7.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10640 components: - pos: -7.5,-41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10641 components: - pos: -7.5,-42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10642 components: - pos: -7.5,-43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10643 components: - pos: -7.5,-43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10644 components: - pos: -7.5,-44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10645 components: - pos: -8.5,-44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10646 components: - pos: -9.5,-44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10647 components: - pos: -10.5,-44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10648 components: - pos: -11.5,-44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10649 components: - pos: -12.5,-44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10650 components: - pos: -13.5,-44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10651 components: - pos: -13.5,-45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10652 components: - pos: -13.5,-46.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10653 components: - pos: -13.5,-47.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10654 components: - pos: -13.5,-48.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10655 components: - pos: -13.5,-49.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10656 components: - pos: -13.5,-50.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10657 components: - pos: -13.5,-51.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10658 components: - pos: -13.5,-52.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10659 components: - pos: -13.5,-53.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10660 components: - pos: -13.5,-54.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10661 components: - pos: -13.5,-55.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10662 components: - pos: -12.5,-55.5 @@ -26997,8 +24104,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10663 components: - pos: -12.5,-56.5 @@ -27006,8 +24111,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10664 components: - pos: -12.5,-57.5 @@ -27015,8 +24118,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10665 components: - pos: -12.5,-58.5 @@ -27024,78 +24125,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10666 components: - pos: -11.5,-58.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10667 components: - pos: -9.5,-58.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10668 components: - pos: -10.5,-58.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10669 components: - pos: -8.5,-58.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10670 components: - pos: -7.5,-58.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10671 components: - pos: -6.5,-58.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10672 components: - pos: -5.5,-58.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10673 components: - pos: -4.5,-58.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10674 components: - pos: -3.5,-58.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10675 components: - pos: -3.5,-57.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10676 components: - pos: -2.5,-57.5 @@ -27103,8 +24182,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10677 components: - pos: -2.5,-56.5 @@ -27112,8 +24189,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10678 components: - pos: -2.5,-55.5 @@ -27121,8 +24196,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10679 components: - pos: -1.5,-55.5 @@ -27130,8 +24203,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10680 components: - pos: -1.5,-53.5 @@ -27139,8 +24210,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10681 components: - pos: -1.5,-52.5 @@ -27148,8 +24217,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10682 components: - pos: -1.5,-54.5 @@ -27157,8 +24224,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10683 components: - pos: -1.5,-51.5 @@ -27166,8 +24231,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10684 components: - pos: -1.5,-50.5 @@ -27175,8 +24238,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10685 components: - pos: -1.5,-49.5 @@ -27184,8 +24245,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10686 components: - pos: -1.5,-48.5 @@ -27193,8 +24252,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10687 components: - pos: -1.5,-47.5 @@ -27202,8 +24259,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10688 components: - pos: -1.5,-46.5 @@ -27211,64 +24266,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10689 components: - pos: -1.5,-45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10690 components: - pos: -2.5,-44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10691 components: - pos: -3.5,-44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10692 components: - pos: -1.5,-44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10693 components: - pos: -4.5,-44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10694 components: - pos: -6.5,-44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10695 components: - pos: -5.5,-44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10696 components: - pos: -7.5,-57.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10697 components: - pos: -7.5,-56.5 @@ -27276,8 +24313,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10698 components: - pos: -7.5,-55.5 @@ -27285,8 +24320,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10699 components: - pos: -7.5,-54.5 @@ -27294,113 +24327,81 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10700 components: - pos: -7.5,-53.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10701 components: - pos: -7.5,-52.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10702 components: - pos: -7.5,-51.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10703 components: - pos: -7.5,-50.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10704 components: - pos: -7.5,-49.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10705 components: - pos: -7.5,-48.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10706 components: - pos: -7.5,-47.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10707 components: - pos: -8.5,-51.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10708 components: - pos: -9.5,-51.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10709 components: - pos: -10.5,-51.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10710 components: - pos: -11.5,-51.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10711 components: - pos: -6.5,-51.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10712 components: - pos: -5.5,-51.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10713 components: - pos: -4.5,-51.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10714 components: - pos: -3.5,-51.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10715 components: - pos: -12.5,-51.5 @@ -27408,8 +24409,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10716 components: - pos: -2.5,-51.5 @@ -27417,8 +24416,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10717 components: - pos: 0.5,-31.5 @@ -27426,239 +24423,171 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10718 components: - pos: 0.5,-32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10719 components: - pos: 0.5,-33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10720 components: - pos: 1.5,-33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10721 components: - pos: 1.5,-34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10722 components: - pos: 1.5,-35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10723 components: - pos: 1.5,-36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10724 components: - pos: 1.5,-37.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10725 components: - pos: 1.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10726 components: - pos: 0.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10727 components: - pos: 2.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10728 components: - pos: 2.5,-33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10729 components: - pos: 3.5,-33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10730 components: - pos: 0.5,-30.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10731 components: - pos: 0.5,-29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10732 components: - pos: 1.5,-29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10733 components: - pos: 2.5,-29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10734 components: - pos: 3.5,-29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10735 components: - pos: 3.5,-28.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10736 components: - pos: 3.5,-27.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10737 components: - pos: 2.5,-27.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10738 components: - pos: 2.5,-26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10740 components: - pos: 2.5,-20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10743 components: - pos: 2.5,-21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10744 components: - pos: -0.5,-29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10745 components: - pos: -1.5,-29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10746 components: - pos: -2.5,-29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10747 components: - pos: -2.5,-28.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10748 components: - pos: -2.5,-27.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10749 components: - pos: -2.5,-26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10750 components: - pos: -2.5,-25.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10751 components: - pos: -3.5,-29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10752 components: - pos: -4.5,-29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10753 components: - pos: -5.5,-29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10754 components: - pos: -6.5,-29.5 @@ -27666,8 +24595,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10755 components: - pos: -7.5,-29.5 @@ -27675,8 +24602,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10756 components: - pos: -8.5,-29.5 @@ -27684,8 +24609,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10757 components: - pos: -9.5,-29.5 @@ -27693,8 +24616,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10758 components: - pos: -10.5,-29.5 @@ -27702,8 +24623,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10759 components: - pos: -11.5,-29.5 @@ -27711,8 +24630,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10760 components: - pos: -12.5,-29.5 @@ -27720,71 +24637,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10761 components: - pos: -13.5,-29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10762 components: - pos: -14.5,-29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10763 components: - pos: -16.5,-29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10764 components: - pos: -15.5,-29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10765 components: - pos: -16.5,-30.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10766 components: - pos: -16.5,-31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10767 components: - pos: -12.5,-28.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10768 components: - pos: -12.5,-27.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10769 components: - pos: -12.5,-26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10770 components: - pos: -12.5,-25.5 @@ -27792,8 +24689,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10771 components: - pos: -10.5,-25.5 @@ -27801,8 +24696,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10772 components: - pos: -11.5,-25.5 @@ -27810,8 +24703,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10773 components: - pos: -9.5,-25.5 @@ -27819,8 +24710,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10774 components: - pos: -8.5,-25.5 @@ -27828,8 +24717,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10775 components: - pos: -7.5,-25.5 @@ -27837,8 +24724,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10776 components: - pos: -13.5,-25.5 @@ -27846,8 +24731,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10777 components: - pos: -14.5,-25.5 @@ -27855,8 +24738,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10778 components: - pos: -15.5,-25.5 @@ -27864,8 +24745,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10779 components: - pos: -16.5,-25.5 @@ -27873,8 +24752,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10780 components: - pos: -17.5,-25.5 @@ -27882,8 +24759,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10781 components: - pos: -18.5,-25.5 @@ -27891,8 +24766,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10782 components: - pos: -19.5,-25.5 @@ -27900,8 +24773,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10783 components: - pos: -20.5,-25.5 @@ -27909,8 +24780,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10784 components: - pos: -21.5,-25.5 @@ -27918,218 +24787,156 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10785 components: - pos: -12.5,-30.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10786 components: - pos: -12.5,-31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10787 components: - pos: -12.5,-32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10788 components: - pos: -12.5,-33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10789 components: - pos: -12.5,-34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10790 components: - pos: -12.5,-35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10791 components: - pos: -11.5,-33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10792 components: - pos: -10.5,-33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10793 components: - pos: -9.5,-33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10794 components: - pos: -8.5,-33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10795 components: - pos: -7.5,-33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10796 components: - pos: -6.5,-33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10797 components: - pos: -5.5,-33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10798 components: - pos: -7.5,-30.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10799 components: - pos: -7.5,-31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10800 components: - pos: -7.5,-28.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10801 components: - pos: -7.5,-27.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10802 components: - pos: -2.5,-24.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10803 components: - pos: -2.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10804 components: - pos: -2.5,-22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10805 components: - pos: -2.5,-21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10806 components: - pos: -2.5,-20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10807 components: - pos: -2.5,-19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10808 components: - pos: -1.5,-19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10809 components: - pos: 0.5,-19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10810 components: - pos: -0.5,-19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10811 components: - pos: -2.5,-18.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10812 components: - pos: -3.5,-24.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10813 components: - pos: -4.5,-24.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10814 components: - pos: 1.5,-19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10815 components: - pos: -5.5,-23.5 @@ -28137,8 +24944,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10816 components: - pos: -5.5,-22.5 @@ -28146,15 +24951,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10817 components: - pos: 2.5,-19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10818 components: - pos: -5.5,-21.5 @@ -28162,8 +24963,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10819 components: - pos: -5.5,-20.5 @@ -28171,36 +24970,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10820 components: - pos: 3.5,-19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10821 components: - pos: 4.5,-19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10822 components: - pos: 5.5,-19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10823 components: - pos: 6.5,-19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10824 components: - pos: 9.5,-30.5 @@ -28208,169 +24997,121 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10825 components: - pos: 9.5,-31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10826 components: - pos: 8.5,-31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10827 components: - pos: 7.5,-31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10828 components: - pos: 6.5,-31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10829 components: - pos: 5.5,-31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10830 components: - pos: 5.5,-32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10831 components: - pos: 5.5,-33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10832 components: - pos: 5.5,-34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10833 components: - pos: 5.5,-35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10834 components: - pos: 5.5,-36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10835 components: - pos: 10.5,-30.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10836 components: - pos: 11.5,-30.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10837 components: - pos: 11.5,-29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10838 components: - pos: 11.5,-28.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10839 components: - pos: 11.5,-27.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10840 components: - pos: 11.5,-26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10841 components: - pos: 11.5,-25.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10842 components: - pos: 11.5,-24.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10843 components: - pos: 11.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10844 components: - pos: 11.5,-31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10845 components: - pos: 12.5,-31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10846 components: - pos: 13.5,-31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10847 components: - pos: 14.5,-31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10848 components: - pos: 15.5,-31.5 @@ -28378,8 +25119,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10849 components: - pos: 15.5,-30.5 @@ -28387,8 +25126,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10850 components: - pos: 15.5,-28.5 @@ -28396,8 +25133,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10851 components: - pos: 15.5,-29.5 @@ -28405,8 +25140,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10852 components: - pos: 15.5,-27.5 @@ -28414,8 +25147,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10853 components: - pos: 15.5,-27.5 @@ -28423,8 +25154,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10854 components: - pos: 15.5,-26.5 @@ -28432,8 +25161,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10855 components: - pos: 15.5,-25.5 @@ -28441,8 +25168,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10856 components: - pos: 15.5,-24.5 @@ -28450,8 +25175,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10857 components: - pos: 15.5,-23.5 @@ -28459,8 +25182,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10858 components: - pos: 15.5,-22.5 @@ -28468,8 +25189,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10859 components: - pos: 16.5,-22.5 @@ -28477,8 +25196,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10860 components: - pos: 17.5,-22.5 @@ -28486,8 +25203,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10861 components: - pos: 18.5,-22.5 @@ -28495,8 +25210,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10862 components: - pos: 19.5,-22.5 @@ -28504,8 +25217,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10863 components: - pos: 20.5,-22.5 @@ -28513,8 +25224,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10864 components: - pos: 19.5,-21.5 @@ -28522,85 +25231,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10865 components: - pos: 19.5,-20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10866 components: - pos: 19.5,-19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10867 components: - pos: 19.5,-18.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10868 components: - pos: 19.5,-17.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10869 components: - pos: 19.5,-16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10870 components: - pos: 19.5,-15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10871 components: - pos: 19.5,-14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10872 components: - pos: 19.5,-13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10873 components: - pos: 20.5,-18.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10874 components: - pos: 21.5,-18.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10875 components: - pos: 22.5,-18.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10876 components: - pos: 23.5,-18.5 @@ -28608,8 +25293,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10877 components: - pos: 24.5,-18.5 @@ -28617,8 +25300,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10878 components: - pos: 25.5,-18.5 @@ -28626,134 +25307,96 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10879 components: - pos: 21.5,-17.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10880 components: - pos: 21.5,-16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10881 components: - pos: 21.5,-15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10882 components: - pos: 21.5,-14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10883 components: - pos: 10.5,-24.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10884 components: - pos: 9.5,-24.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10885 components: - pos: 8.5,-24.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10886 components: - pos: 7.5,-24.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10887 components: - pos: 6.5,-24.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10888 components: - pos: 6.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10889 components: - pos: 6.5,-22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10890 components: - pos: 6.5,-21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10891 components: - pos: 6.5,-25.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10892 components: - pos: 6.5,-26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10893 components: - pos: 6.5,-27.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10894 components: - pos: 6.5,-28.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10895 components: - pos: 6.5,-29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10896 components: - pos: 6.5,-30.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10897 components: - pos: 5.5,-37.5 @@ -28761,8 +25404,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10898 components: - pos: 6.5,-37.5 @@ -28770,8 +25411,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10899 components: - pos: 8.5,-37.5 @@ -28779,8 +25418,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10900 components: - pos: 6.5,-37.5 @@ -28788,8 +25425,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10901 components: - pos: 7.5,-37.5 @@ -28797,8 +25432,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10902 components: - pos: 8.5,-36.5 @@ -28806,8 +25439,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10903 components: - pos: 8.5,-35.5 @@ -28815,8 +25446,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10904 components: - pos: 8.5,-34.5 @@ -28824,8 +25453,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10905 components: - pos: 8.5,-33.5 @@ -28833,8 +25460,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10906 components: - pos: 9.5,-33.5 @@ -28842,8 +25467,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10907 components: - pos: 10.5,-33.5 @@ -28851,8 +25474,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10908 components: - pos: 11.5,-33.5 @@ -28860,8 +25481,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10909 components: - pos: 12.5,-33.5 @@ -28869,8 +25488,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10910 components: - pos: 13.5,-33.5 @@ -28878,8 +25495,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10911 components: - pos: 14.5,-33.5 @@ -28887,8 +25502,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10912 components: - pos: 15.5,-33.5 @@ -28896,8 +25509,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10913 components: - pos: 16.5,-33.5 @@ -28905,8 +25516,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10914 components: - pos: 16.5,-34.5 @@ -28914,8 +25523,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10915 components: - pos: 16.5,-35.5 @@ -28923,8 +25530,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10916 components: - pos: 16.5,-36.5 @@ -28932,8 +25537,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10917 components: - pos: 16.5,-37.5 @@ -28941,8 +25544,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10918 components: - pos: 22.5,-36.5 @@ -28950,8 +25551,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10919 components: - pos: 22.5,-35.5 @@ -28959,8 +25558,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10920 components: - pos: 22.5,-34.5 @@ -28968,8 +25565,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10921 components: - pos: 22.5,-33.5 @@ -28977,8 +25572,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10922 components: - pos: 22.5,-32.5 @@ -28986,8 +25579,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10923 components: - pos: 22.5,-31.5 @@ -28995,8 +25586,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10924 components: - pos: 22.5,-30.5 @@ -29004,8 +25593,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10925 components: - pos: 22.5,-29.5 @@ -29013,8 +25600,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10926 components: - pos: 22.5,-28.5 @@ -29022,8 +25607,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10927 components: - pos: 22.5,-27.5 @@ -29031,8 +25614,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10928 components: - pos: 22.5,-26.5 @@ -29040,8 +25621,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10929 components: - pos: 22.5,-25.5 @@ -29049,8 +25628,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10930 components: - pos: 22.5,-24.5 @@ -29058,8 +25635,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10931 components: - pos: 22.5,-23.5 @@ -29067,8 +25642,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10932 components: - pos: 22.5,-22.5 @@ -29076,8 +25649,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10933 components: - pos: 22.5,-21.5 @@ -29085,8 +25656,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10934 components: - pos: 23.5,-21.5 @@ -29094,8 +25663,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10935 components: - pos: 27.5,-35.5 @@ -29103,8 +25670,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10936 components: - pos: 26.5,-35.5 @@ -29112,8 +25677,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10937 components: - pos: 25.5,-35.5 @@ -29121,8 +25684,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10938 components: - pos: 24.5,-35.5 @@ -29130,8 +25691,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10939 components: - pos: 23.5,-35.5 @@ -29139,8 +25698,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10940 components: - pos: 24.5,-21.5 @@ -29148,8 +25705,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10941 components: - pos: 28.5,-22.5 @@ -29157,8 +25712,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10942 components: - pos: 28.5,-23.5 @@ -29166,8 +25719,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10943 components: - pos: 28.5,-24.5 @@ -29175,8 +25726,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10948 components: - pos: 28.5,-25.5 @@ -29184,8 +25733,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10949 components: - pos: 28.5,-25.5 @@ -29193,8 +25740,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10950 components: - pos: 28.5,-26.5 @@ -29202,8 +25747,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10951 components: - pos: 28.5,-27.5 @@ -29211,8 +25754,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10952 components: - pos: 28.5,-28.5 @@ -29220,8 +25761,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10953 components: - pos: 28.5,-29.5 @@ -29229,8 +25768,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10954 components: - pos: 28.5,-30.5 @@ -29238,8 +25775,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10955 components: - pos: 28.5,-29.5 @@ -29247,8 +25782,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10956 components: - pos: 28.5,-31.5 @@ -29256,8 +25789,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10957 components: - pos: 28.5,-32.5 @@ -29265,8 +25796,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10958 components: - pos: 28.5,-32.5 @@ -29274,8 +25803,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10959 components: - pos: 28.5,-33.5 @@ -29283,8 +25810,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10960 components: - pos: 28.5,-34.5 @@ -29292,8 +25817,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10961 components: - pos: 28.5,-35.5 @@ -29301,8 +25824,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10962 components: - pos: 27.5,-35.5 @@ -29310,8 +25831,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10963 components: - pos: 26.5,-35.5 @@ -29319,8 +25838,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10964 components: - pos: 25.5,-35.5 @@ -29328,8 +25845,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10965 components: - pos: 24.5,-35.5 @@ -29337,239 +25852,171 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11039 components: - pos: -9.5,-34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11040 components: - pos: -9.5,-35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11041 components: - pos: -9.5,-36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11042 components: - pos: -5.5,-34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11043 components: - pos: -5.5,-35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11044 components: - pos: -5.5,-36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11045 components: - pos: -6.5,-36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11046 components: - pos: -7.5,-36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11047 components: - pos: -5.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11048 components: - pos: -6.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11049 components: - pos: -4.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11050 components: - pos: -3.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11051 components: - pos: -2.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11052 components: - pos: -1.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11053 components: - pos: -0.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11054 components: - pos: 0.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11055 components: - pos: 1.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11056 components: - pos: 2.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11057 components: - pos: 1.5,-41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11058 components: - pos: 1.5,-42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11059 components: - pos: 1.5,-42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11060 components: - pos: 1.5,-43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11061 components: - pos: 1.5,-44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11062 components: - pos: 2.5,-43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11063 components: - pos: 3.5,-43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11064 components: - pos: -2.5,-39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11065 components: - pos: -2.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11066 components: - pos: -9.5,-39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11067 components: - pos: -12.5,-39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11068 components: - pos: -12.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11069 components: - pos: -12.5,-37.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11070 components: - pos: -15.5,-41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11071 components: - pos: -15.5,-42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11231 components: - pos: 41.5,17.5 @@ -29577,8 +26024,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11239 components: - pos: 17.5,-37.5 @@ -29586,8 +26031,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11240 components: - pos: 18.5,-37.5 @@ -29595,8 +26038,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11241 components: - pos: 19.5,-37.5 @@ -29604,8 +26045,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11242 components: - pos: 20.5,-37.5 @@ -29613,8 +26052,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11243 components: - pos: 21.5,-37.5 @@ -29622,8 +26059,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11244 components: - pos: 22.5,-37.5 @@ -29631,15 +26066,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11332 components: - pos: 1.5,-9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11350 components: - pos: 40.5,17.5 @@ -29647,22 +26078,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11351 components: - pos: 3.5,-8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11354 components: - pos: 1.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11423 components: - pos: 39.5,17.5 @@ -29670,8 +26095,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11474 components: - pos: 10.5,-16.5 @@ -29679,414 +26102,296 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11475 components: - pos: 11.5,-16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11476 components: - pos: 12.5,-16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11477 components: - pos: 12.5,-17.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11478 components: - pos: 12.5,-18.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11479 components: - pos: 12.5,-19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11480 components: - pos: 11.5,-19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11481 components: - pos: 10.5,-19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11482 components: - pos: 9.5,-19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11483 components: - pos: 8.5,-19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11484 components: - pos: 12.5,-15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11485 components: - pos: 12.5,-14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11486 components: - pos: 12.5,-13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11487 components: - pos: 12.5,-12.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11488 components: - pos: 12.5,-11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11489 components: - pos: 12.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11490 components: - pos: 12.5,-9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11491 components: - pos: 11.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11492 components: - pos: 10.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11493 components: - pos: 9.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11494 components: - pos: 8.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11495 components: - pos: 7.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11496 components: - pos: 6.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11497 components: - pos: 5.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11498 components: - pos: 4.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11499 components: - pos: 2.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11500 components: - pos: 3.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11501 components: - pos: 4.5,-11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11502 components: - pos: 2.5,-9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11503 components: - pos: 2.5,-8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11505 components: - pos: 1.5,-7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11506 components: - pos: 0.5,-7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11507 components: - pos: 3.5,-7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11508 components: - pos: 4.5,-7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11509 components: - pos: 4.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11510 components: - pos: 4.5,-5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11511 components: - pos: 4.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11512 components: - pos: 4.5,-3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11513 components: - pos: 4.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11514 components: - pos: 3.5,-3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11515 components: - pos: 2.5,-3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11516 components: - pos: 1.5,-3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11517 components: - pos: 0.5,-3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11518 components: - pos: 4.5,-1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11519 components: - pos: 4.5,-0.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11520 components: - pos: 8.5,-9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11521 components: - pos: 8.5,-8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11522 components: - pos: 8.5,-7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11523 components: - pos: 8.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11524 components: - pos: 8.5,-5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11525 components: - pos: 8.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11526 components: - pos: 8.5,-3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11527 components: - pos: 8.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11528 components: - pos: 8.5,-1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11529 components: - pos: 7.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11530 components: - pos: 6.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11531 components: - pos: 5.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11532 components: - pos: 13.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11533 components: - pos: 14.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11576 components: - pos: 38.5,17.5 @@ -30094,8 +26399,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11578 components: - pos: 37.5,17.5 @@ -30103,15 +26406,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11642 components: - pos: 30.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11654 components: - pos: 34.5,-15.5 @@ -30119,8 +26418,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11661 components: - pos: 34.5,-16.5 @@ -30128,8 +26425,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11667 components: - pos: 34.5,-12.5 @@ -30137,36 +26432,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11669 components: - pos: 23.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11670 components: - pos: 25.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11673 components: - pos: 28.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11674 components: - pos: 23.5,-1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11676 components: - pos: 36.5,17.5 @@ -30174,8 +26459,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11683 components: - pos: 34.5,-14.5 @@ -30183,8 +26466,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11684 components: - pos: 34.5,-13.5 @@ -30192,22 +26473,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11687 components: - pos: 34.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11689 components: - pos: 33.5,-3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11693 components: - pos: 35.5,-18.5 @@ -30215,15 +26490,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11695 components: - pos: 33.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11703 components: - pos: 34.5,-18.5 @@ -30231,22 +26502,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11706 components: - pos: 23.5,-3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11756 components: - pos: 35.5,-3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11757 components: - pos: 37.5,-3.5 @@ -30254,15 +26519,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11758 components: - pos: 33.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11759 components: - pos: 36.5,-6.5 @@ -30270,29 +26531,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11765 components: - pos: 33.5,-5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11766 components: - pos: 34.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11767 components: - pos: 32.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11768 components: - pos: 37.5,-6.5 @@ -30300,22 +26553,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11798 components: - pos: 29.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11824 components: - pos: 26.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11831 components: - pos: 23.5,5.5 @@ -30323,8 +26570,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11832 components: - pos: 21.5,5.5 @@ -30332,8 +26577,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11833 components: - pos: 20.5,5.5 @@ -30341,8 +26584,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11834 components: - pos: 19.5,5.5 @@ -30350,8 +26591,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11841 components: - pos: 30.5,5.5 @@ -30359,8 +26598,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11842 components: - pos: 18.5,5.5 @@ -30368,43 +26605,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11967 components: - pos: 28.5,-1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11996 components: - pos: 32.5,-1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11997 components: - pos: 33.5,0.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11998 components: - pos: 33.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12017 components: - pos: 27.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12049 components: - pos: 21.5,-12.5 @@ -30412,120 +26637,86 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12050 components: - pos: 21.5,-11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12051 components: - pos: 21.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12052 components: - pos: 20.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12053 components: - pos: 19.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12054 components: - pos: 18.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12055 components: - pos: 17.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12056 components: - pos: 16.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12057 components: - pos: 22.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12058 components: - pos: 23.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12073 components: - pos: 20.5,-9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12075 components: - pos: 20.5,-7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12076 components: - pos: 20.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12077 components: - pos: 19.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12078 components: - pos: 22.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12079 components: - pos: 21.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12080 components: - pos: 23.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12087 components: - pos: 33.5,-0.5 @@ -30533,71 +26724,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12088 components: - pos: 33.5,-1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12090 components: - pos: 33.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12093 components: - pos: 31.5,-1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12107 components: - pos: 30.5,-1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12108 components: - pos: 30.5,-0.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12109 components: - pos: 30.5,0.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12110 components: - pos: 30.5,1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12111 components: - pos: 31.5,1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12112 components: - pos: 32.5,1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12113 components: - pos: 33.5,1.5 @@ -30605,8 +26776,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12114 components: - pos: 33.5,2.5 @@ -30614,8 +26783,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12115 components: - pos: 33.5,3.5 @@ -30623,8 +26790,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12116 components: - pos: 33.5,4.5 @@ -30632,8 +26797,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12117 components: - pos: 32.5,5.5 @@ -30641,8 +26804,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12118 components: - pos: 22.5,5.5 @@ -30650,50 +26811,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12119 components: - pos: 29.5,1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12120 components: - pos: 28.5,1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12121 components: - pos: 27.5,1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12122 components: - pos: 26.5,1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12123 components: - pos: 25.5,1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12124 components: - pos: 24.5,1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12129 components: - pos: 34.5,-17.5 @@ -30701,288 +26848,206 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12133 components: - pos: 23.5,-5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12134 components: - pos: 23.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12136 components: - pos: 34.5,-11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12137 components: - pos: 22.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12138 components: - pos: 21.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12139 components: - pos: 20.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12140 components: - pos: 19.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12141 components: - pos: 19.5,-5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12142 components: - pos: 19.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12143 components: - pos: 19.5,-1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12144 components: - pos: 20.5,-1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12145 components: - pos: 20.5,-0.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12146 components: - pos: 20.5,0.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12147 components: - pos: 20.5,1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12148 components: - pos: 19.5,1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12149 components: - pos: 18.5,1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12150 components: - pos: 17.5,1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12151 components: - pos: 16.5,1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12152 components: - pos: 16.5,0.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12153 components: - pos: 18.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12154 components: - pos: 17.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12155 components: - pos: 16.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12156 components: - pos: 15.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12157 components: - pos: 14.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12158 components: - pos: 13.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12159 components: - pos: 12.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12160 components: - pos: 12.5,-7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12161 components: - pos: 12.5,-5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12162 components: - pos: 12.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12163 components: - pos: 12.5,-3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12164 components: - pos: 12.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12165 components: - pos: 12.5,-1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12166 components: - pos: 12.5,-0.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12167 components: - pos: 12.5,0.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12168 components: - pos: 12.5,1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12169 components: - pos: 12.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12170 components: - pos: 12.5,3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12171 components: - pos: 12.5,4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12172 components: - pos: 17.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12173 components: - pos: 17.5,3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12174 components: - pos: 17.5,4.5 @@ -30990,8 +27055,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12175 components: - pos: 17.5,5.5 @@ -30999,8 +27062,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12176 components: - pos: 17.5,6.5 @@ -31008,8 +27069,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12177 components: - pos: 17.5,7.5 @@ -31017,8 +27076,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12178 components: - pos: 15.5,7.5 @@ -31026,8 +27083,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12179 components: - pos: 16.5,7.5 @@ -31035,8 +27090,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12180 components: - pos: 14.5,7.5 @@ -31044,8 +27097,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12181 components: - pos: 13.5,7.5 @@ -31053,8 +27104,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12182 components: - pos: 12.5,7.5 @@ -31062,8 +27111,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12183 components: - pos: 12.5,6.5 @@ -31071,8 +27118,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12184 components: - pos: 31.5,5.5 @@ -31080,127 +27125,91 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12190 components: - pos: 11.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12191 components: - pos: 10.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12192 components: - pos: 9.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12193 components: - pos: 9.5,3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12194 components: - pos: 9.5,4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12195 components: - pos: 9.5,5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12196 components: - pos: 8.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12197 components: - pos: 9.5,6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12198 components: - pos: 9.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12199 components: - pos: 9.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12218 components: - pos: 13.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12219 components: - pos: 14.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12220 components: - pos: 15.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12221 components: - pos: 16.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12222 components: - pos: 15.5,-3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12223 components: - pos: 15.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12224 components: - pos: 17.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12228 components: - pos: 36.5,-18.5 @@ -31208,78 +27217,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12239 components: - pos: 31.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12240 components: - pos: 35.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12265 components: - pos: -36.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12266 components: - pos: -36.5,25.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12267 components: - pos: -37.5,25.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12268 components: - pos: -38.5,25.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12269 components: - pos: -39.5,25.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12270 components: - pos: -40.5,25.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12271 components: - pos: -41.5,25.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12307 components: - pos: 34.5,-3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12321 components: - pos: 19.5,28.5 @@ -31287,8 +27274,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12322 components: - pos: 19.5,29.5 @@ -31296,8 +27281,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12323 components: - pos: 19.5,30.5 @@ -31305,15 +27288,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12324 components: - pos: 18.5,30.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12325 components: - pos: 17.5,30.5 @@ -31321,8 +27300,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12326 components: - pos: 16.5,30.5 @@ -31330,617 +27307,441 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12327 components: - pos: 19.5,27.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12328 components: - pos: 19.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12329 components: - pos: 18.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12330 components: - pos: 17.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12331 components: - pos: 16.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12332 components: - pos: 15.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12333 components: - pos: 14.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12334 components: - pos: 13.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12335 components: - pos: 12.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12336 components: - pos: 11.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12337 components: - pos: 9.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12338 components: - pos: 10.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12339 components: - pos: 9.5,27.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12340 components: - pos: 9.5,28.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12341 components: - pos: 9.5,29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12342 components: - pos: 9.5,30.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12343 components: - pos: 9.5,31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12344 components: - pos: 9.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12345 components: - pos: 9.5,33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12346 components: - pos: 9.5,33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12347 components: - pos: 8.5,33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12348 components: - pos: 10.5,33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12349 components: - pos: 10.5,30.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12350 components: - pos: 8.5,30.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12351 components: - pos: 9.5,25.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12352 components: - pos: 9.5,24.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12353 components: - pos: 9.5,23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12354 components: - pos: 9.5,22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12355 components: - pos: 9.5,22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12356 components: - pos: 9.5,21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12357 components: - pos: 9.5,20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12358 components: - pos: 20.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12359 components: - pos: 21.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12360 components: - pos: 22.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12361 components: - pos: 23.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12362 components: - pos: 24.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12363 components: - pos: 25.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12364 components: - pos: 26.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12365 components: - pos: 27.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12366 components: - pos: 27.5,27.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12367 components: - pos: 27.5,28.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12368 components: - pos: 27.5,29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12369 components: - pos: 28.5,29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12370 components: - pos: 29.5,29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12371 components: - pos: 30.5,29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12372 components: - pos: 31.5,29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12373 components: - pos: 26.5,29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12374 components: - pos: 26.5,30.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12375 components: - pos: 26.5,31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12376 components: - pos: 22.5,27.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12377 components: - pos: 22.5,28.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12378 components: - pos: 22.5,30.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12379 components: - pos: 22.5,29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12380 components: - pos: 22.5,31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12381 components: - pos: 22.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12382 components: - pos: 22.5,33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12383 components: - pos: 21.5,33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12384 components: - pos: 20.5,33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12385 components: - pos: 19.5,33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12386 components: - pos: 18.5,33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12387 components: - pos: 17.5,33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12388 components: - pos: 16.5,33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12389 components: - pos: 22.5,34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12390 components: - pos: 22.5,35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12391 components: - pos: 22.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12392 components: - pos: 21.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12393 components: - pos: 20.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12394 components: - pos: 19.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12395 components: - pos: 18.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12396 components: - pos: 17.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12397 components: - pos: 16.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12398 components: - pos: 22.5,37.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12399 components: - pos: 22.5,38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12400 components: - pos: 22.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12401 components: - pos: 21.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12402 components: - pos: 20.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12403 components: - pos: 19.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12404 components: - pos: 18.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12405 components: - pos: 17.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12406 components: - pos: 16.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12407 components: - pos: 20.5,40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12408 components: - pos: 20.5,41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12409 components: - pos: 20.5,42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12410 components: - pos: 20.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12411 components: - pos: 19.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12412 components: - pos: 18.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12413 components: - pos: 17.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12414 components: - pos: 16.5,43.5 @@ -31948,15 +27749,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12415 components: - pos: 16.5,42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12416 components: - pos: 16.5,44.5 @@ -31964,8 +27761,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12417 components: - pos: 16.5,45.5 @@ -31973,50 +27768,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12418 components: - pos: 23.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12419 components: - pos: 24.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12420 components: - pos: 25.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12421 components: - pos: 26.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12422 components: - pos: 27.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12423 components: - pos: 25.5,40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12424 components: - pos: 25.5,41.5 @@ -32024,8 +27805,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12425 components: - pos: 25.5,42.5 @@ -32033,8 +27812,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12426 components: - pos: 24.5,42.5 @@ -32042,8 +27819,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12427 components: - pos: 25.5,42.5 @@ -32051,8 +27826,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12428 components: - pos: 26.5,42.5 @@ -32060,141 +27833,101 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12429 components: - pos: 23.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12430 components: - pos: 24.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12431 components: - pos: 25.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12432 components: - pos: 26.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12433 components: - pos: 27.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12434 components: - pos: 27.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12435 components: - pos: 28.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12436 components: - pos: 29.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12437 components: - pos: 23.5,34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12438 components: - pos: 25.5,34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12439 components: - pos: 26.5,34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12440 components: - pos: 27.5,34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12441 components: - pos: 24.5,34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12442 components: - pos: 26.5,33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12443 components: - pos: 26.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12444 components: - pos: 31.5,30.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12445 components: - pos: 31.5,31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12832 components: - pos: 26.5,20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12861 components: - pos: 25.5,20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12961 components: - pos: 18.5,13.5 @@ -32202,15 +27935,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12973 components: - pos: 18.5,12.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13169 components: - pos: 32.5,16.5 @@ -32218,232 +27947,166 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13170 components: - pos: 32.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13171 components: - pos: 32.5,14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13172 components: - pos: 31.5,14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13173 components: - pos: 33.5,14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13174 components: - pos: 32.5,13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13175 components: - pos: 32.5,12.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13176 components: - pos: 32.5,11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13177 components: - pos: 32.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13178 components: - pos: 31.5,11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13179 components: - pos: 33.5,11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13180 components: - pos: 32.5,9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13181 components: - pos: 32.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13182 components: - pos: 32.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13184 components: - pos: 34.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13185 components: - pos: 35.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13186 components: - pos: 36.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13187 components: - pos: 37.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13188 components: - pos: 38.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13189 components: - pos: 39.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13190 components: - pos: 40.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13191 components: - pos: 40.5,9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13192 components: - pos: 40.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13193 components: - pos: 40.5,11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13194 components: - pos: 40.5,12.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13195 components: - pos: 40.5,13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13196 components: - pos: 40.5,14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13197 components: - pos: 39.5,13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13198 components: - pos: 38.5,13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13199 components: - pos: 37.5,13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13200 components: - pos: 36.5,13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13201 components: - pos: 35.5,13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13204 components: - pos: 37.5,12.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13205 components: - pos: 37.5,9.5 @@ -32451,8 +28114,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13206 components: - pos: 37.5,10.5 @@ -32460,463 +28121,331 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13207 components: - pos: 40.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13208 components: - pos: 35.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13209 components: - pos: 31.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13210 components: - pos: 30.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13213 components: - pos: 24.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13214 components: - pos: 25.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13215 components: - pos: 26.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13216 components: - pos: 27.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13217 components: - pos: 28.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13218 components: - pos: 29.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13219 components: - pos: 26.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13220 components: - pos: 26.5,9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13221 components: - pos: 26.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13222 components: - pos: 26.5,11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13223 components: - pos: 27.5,11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13224 components: - pos: 28.5,11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13225 components: - pos: 29.5,11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13226 components: - pos: 25.5,11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13227 components: - pos: 23.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13228 components: - pos: 22.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13229 components: - pos: 22.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13230 components: - pos: 22.5,9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13231 components: - pos: 22.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13232 components: - pos: 22.5,11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13233 components: - pos: 21.5,11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13234 components: - pos: 20.5,11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13235 components: - pos: 19.5,11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13236 components: - pos: 18.5,11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13237 components: - pos: 17.5,11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13238 components: - pos: 16.5,11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13239 components: - pos: 15.5,11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13240 components: - pos: 14.5,11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13241 components: - pos: 13.5,11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13242 components: - pos: 22.5,12.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13243 components: - pos: 22.5,13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13244 components: - pos: 22.5,14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13245 components: - pos: 22.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13246 components: - pos: 21.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13247 components: - pos: 20.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13248 components: - pos: 19.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13249 components: - pos: 18.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13250 components: - pos: 17.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13251 components: - pos: 16.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13252 components: - pos: 15.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13253 components: - pos: 14.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13254 components: - pos: 13.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13255 components: - pos: 12.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13256 components: - pos: 12.5,16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13257 components: - pos: 11.5,16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13258 components: - pos: 10.5,16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13259 components: - pos: 9.5,16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13260 components: - pos: 9.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13261 components: - pos: 9.5,14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13262 components: - pos: 9.5,13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13263 components: - pos: 9.5,13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13264 components: - pos: 9.5,12.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13265 components: - pos: 9.5,11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13266 components: - pos: 9.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13267 components: - pos: 9.5,17.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13268 components: - pos: 9.5,18.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13269 components: - pos: 14.5,16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13270 components: - pos: 14.5,17.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13271 components: - pos: 14.5,18.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13272 components: - pos: 14.5,14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13273 components: - pos: 23.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13274 components: - pos: 24.5,15.5 @@ -32924,22 +28453,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13275 components: - pos: 22.5,16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13276 components: - pos: 22.5,17.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13277 components: - pos: 24.5,15.5 @@ -32947,43 +28470,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13278 components: - pos: 25.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13279 components: - pos: 27.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13280 components: - pos: 26.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13281 components: - pos: 28.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13282 components: - pos: 28.5,16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13284 components: - pos: 20.5,24.5 @@ -32991,239 +28502,171 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13285 components: - pos: 20.5,23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13286 components: - pos: 20.5,22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13287 components: - pos: 20.5,21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13288 components: - pos: 20.5,20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13289 components: - pos: 19.5,21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13290 components: - pos: 18.5,21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13291 components: - pos: 17.5,21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13292 components: - pos: 16.5,21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13293 components: - pos: 15.5,21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13294 components: - pos: 13.5,21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13295 components: - pos: 14.5,21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13296 components: - pos: 20.5,19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13297 components: - pos: 20.5,18.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13298 components: - pos: 17.5,20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13299 components: - pos: 17.5,19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13300 components: - pos: 17.5,18.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13301 components: - pos: 21.5,21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13302 components: - pos: 22.5,21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13303 components: - pos: 23.5,21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13304 components: - pos: 25.5,21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13305 components: - pos: 24.5,21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13306 components: - pos: 25.5,21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13308 components: - pos: 28.5,21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13309 components: - pos: 27.5,21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13310 components: - pos: 29.5,21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13311 components: - pos: 30.5,21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13312 components: - pos: 31.5,21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13313 components: - pos: 31.5,22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13314 components: - pos: 31.5,23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13315 components: - pos: 31.5,24.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13316 components: - pos: 31.5,25.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13317 components: - pos: 32.5,25.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13318 components: - pos: 33.5,25.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13319 components: - pos: 33.5,26.5 @@ -33231,8 +28674,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13320 components: - pos: 35.5,25.5 @@ -33240,8 +28681,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13321 components: - pos: 35.5,24.5 @@ -33249,8 +28688,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13322 components: - pos: 35.5,23.5 @@ -33258,8 +28695,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13323 components: - pos: 35.5,22.5 @@ -33267,78 +28702,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13324 components: - pos: 29.5,20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13325 components: - pos: 29.5,19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13326 components: - pos: 29.5,18.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13327 components: - pos: 30.5,19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13328 components: - pos: 31.5,19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13329 components: - pos: 32.5,19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13330 components: - pos: 32.5,18.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13332 components: - pos: 32.5,20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13333 components: - pos: 25.5,19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13334 components: - pos: 25.5,18.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13428 components: - pos: 19.5,60.5 @@ -33346,29 +28759,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13429 components: - pos: 19.5,59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13430 components: - pos: 19.5,57.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13431 components: - pos: 17.5,57.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13432 components: - pos: 16.5,56.5 @@ -33376,8 +28781,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13447 components: - pos: 15.5,54.5 @@ -33385,8 +28788,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13715 components: - pos: 19.5,58.5 @@ -33394,8 +28795,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13716 components: - pos: 18.5,57.5 @@ -33403,15 +28802,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13717 components: - pos: 16.5,57.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13726 components: - pos: 15.5,55.5 @@ -33419,8 +28814,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13845 components: - pos: 43.5,11.5 @@ -33428,8 +28821,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13846 components: - pos: 41.5,10.5 @@ -33437,15 +28828,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13869 components: - pos: 24.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14555 components: - pos: 48.5,20.5 @@ -33453,8 +28840,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14556 components: - pos: 48.5,19.5 @@ -33462,15 +28847,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14557 components: - pos: 47.5,19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14558 components: - pos: 46.5,19.5 @@ -33478,8 +28859,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14559 components: - pos: 45.5,19.5 @@ -33487,8 +28866,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14560 components: - pos: 44.5,19.5 @@ -33496,8 +28873,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14561 components: - pos: 43.5,19.5 @@ -33505,8 +28880,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14562 components: - pos: 42.5,19.5 @@ -33514,8 +28887,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14563 components: - pos: 42.5,18.5 @@ -33523,8 +28894,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14564 components: - pos: 42.5,17.5 @@ -33532,8 +28901,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14565 components: - pos: 49.5,19.5 @@ -33541,36 +28908,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14566 components: - pos: 50.5,19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14567 components: - pos: 51.5,19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14568 components: - pos: 52.5,19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14569 components: - pos: 52.5,20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14570 components: - pos: 52.5,21.5 @@ -33578,8 +28935,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14571 components: - pos: 51.5,21.5 @@ -33587,8 +28942,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14572 components: - pos: 50.5,21.5 @@ -33596,8 +28949,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14573 components: - pos: 49.5,21.5 @@ -33605,8 +28956,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14574 components: - pos: 48.5,21.5 @@ -33614,8 +28963,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14575 components: - pos: 48.5,22.5 @@ -33623,8 +28970,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14576 components: - pos: 48.5,23.5 @@ -33632,8 +28977,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14577 components: - pos: 48.5,24.5 @@ -33641,8 +28984,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14578 components: - pos: 48.5,25.5 @@ -33650,8 +28991,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14579 components: - pos: 51.5,22.5 @@ -33659,8 +28998,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14580 components: - pos: 51.5,23.5 @@ -33668,8 +29005,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14581 components: - pos: 51.5,24.5 @@ -33677,8 +29012,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14582 components: - pos: 52.5,24.5 @@ -33686,8 +29019,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14583 components: - pos: 53.5,24.5 @@ -33695,43 +29026,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14584 components: - pos: 32.5,29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14585 components: - pos: 33.5,29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14586 components: - pos: 34.5,29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14587 components: - pos: 34.5,28.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14588 components: - pos: 34.5,27.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14589 components: - pos: 34.5,26.5 @@ -33739,8 +29058,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14590 components: - pos: 35.5,26.5 @@ -33748,8 +29065,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14591 components: - pos: 36.5,26.5 @@ -33757,8 +29072,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14592 components: - pos: 37.5,26.5 @@ -33766,8 +29079,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14593 components: - pos: 38.5,26.5 @@ -33775,8 +29086,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14594 components: - pos: 39.5,26.5 @@ -33784,8 +29093,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14595 components: - pos: 40.5,26.5 @@ -33793,8 +29100,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14596 components: - pos: 41.5,26.5 @@ -33802,8 +29107,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14597 components: - pos: 42.5,26.5 @@ -33811,8 +29114,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14598 components: - pos: 42.5,25.5 @@ -33820,8 +29121,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14599 components: - pos: 42.5,24.5 @@ -33829,8 +29128,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14600 components: - pos: 42.5,23.5 @@ -33838,8 +29135,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14601 components: - pos: 42.5,22.5 @@ -33847,8 +29142,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14602 components: - pos: 42.5,27.5 @@ -33856,8 +29149,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14603 components: - pos: 42.5,28.5 @@ -33865,8 +29156,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14604 components: - pos: 42.5,29.5 @@ -33874,8 +29163,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14605 components: - pos: 42.5,30.5 @@ -33883,8 +29170,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14606 components: - pos: 43.5,30.5 @@ -33892,8 +29177,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14607 components: - pos: 44.5,30.5 @@ -33901,8 +29184,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14608 components: - pos: 16.5,46.5 @@ -33910,8 +29191,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14647 components: - pos: 43.5,12.5 @@ -33919,8 +29198,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14772 components: - pos: 16.5,50.5 @@ -33928,8 +29205,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14773 components: - pos: 16.5,51.5 @@ -33937,8 +29212,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14774 components: - pos: 16.5,52.5 @@ -33946,8 +29219,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14775 components: - pos: 16.5,53.5 @@ -33955,8 +29226,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14776 components: - pos: 16.5,54.5 @@ -33964,8 +29233,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14777 components: - pos: 16.5,55.5 @@ -33973,22 +29240,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14786 components: - pos: 12.5,60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14787 components: - pos: 12.5,54.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14788 components: - pos: 12.5,56.5 @@ -33996,29 +29257,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14789 components: - pos: 14.5,57.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14790 components: - pos: 15.5,57.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14791 components: - pos: 15.5,61.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14792 components: - pos: 17.5,61.5 @@ -34026,36 +29279,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14793 components: - pos: 12.5,59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14794 components: - pos: 12.5,58.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14795 components: - pos: 12.5,53.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14796 components: - pos: 13.5,57.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14802 components: - pos: 16.5,49.5 @@ -34063,8 +29306,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14803 components: - pos: 16.5,48.5 @@ -34072,8 +29313,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14804 components: - pos: 17.5,48.5 @@ -34081,8 +29320,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14805 components: - pos: 18.5,48.5 @@ -34090,8 +29327,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14806 components: - pos: 19.5,48.5 @@ -34099,22 +29334,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14807 components: - pos: 19.5,47.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14808 components: - pos: 19.5,46.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14809 components: - pos: 19.5,49.5 @@ -34122,8 +29351,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14810 components: - pos: 19.5,50.5 @@ -34131,8 +29358,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14812 components: - pos: 19.5,51.5 @@ -34140,8 +29365,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14813 components: - pos: 19.5,52.5 @@ -34149,8 +29372,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14814 components: - pos: 19.5,53.5 @@ -34158,15 +29379,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14815 components: - pos: 19.5,54.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14816 components: - pos: 19.5,53.5 @@ -34174,8 +29391,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14817 components: - pos: 20.5,53.5 @@ -34183,8 +29398,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14818 components: - pos: 18.5,53.5 @@ -34192,8 +29405,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14819 components: - pos: 21.5,53.5 @@ -34201,8 +29412,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14820 components: - pos: 22.5,53.5 @@ -34210,8 +29419,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14821 components: - pos: 23.5,53.5 @@ -34219,8 +29426,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14822 components: - pos: 24.5,53.5 @@ -34228,8 +29433,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14823 components: - pos: 25.5,53.5 @@ -34237,8 +29440,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14824 components: - pos: 26.5,53.5 @@ -34246,8 +29447,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14825 components: - pos: 27.5,53.5 @@ -34255,8 +29454,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14826 components: - pos: 28.5,53.5 @@ -34264,8 +29461,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14827 components: - pos: 29.5,53.5 @@ -34273,8 +29468,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14828 components: - pos: 30.5,53.5 @@ -34282,8 +29475,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14829 components: - pos: 30.5,52.5 @@ -34291,8 +29482,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14830 components: - pos: 32.5,44.5 @@ -34300,8 +29489,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14831 components: - pos: 33.5,44.5 @@ -34309,8 +29496,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14832 components: - pos: 40.5,44.5 @@ -34318,8 +29503,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14833 components: - pos: 32.5,45.5 @@ -34327,8 +29510,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14834 components: - pos: 31.5,45.5 @@ -34336,8 +29517,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14835 components: - pos: 30.5,45.5 @@ -34345,8 +29524,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14836 components: - pos: 30.5,46.5 @@ -34354,8 +29531,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14837 components: - pos: 30.5,48.5 @@ -34363,8 +29538,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14838 components: - pos: 30.5,47.5 @@ -34372,8 +29545,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14839 components: - pos: 30.5,49.5 @@ -34381,8 +29552,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14840 components: - pos: 30.5,50.5 @@ -34390,8 +29559,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14841 components: - pos: 33.5,43.5 @@ -34399,8 +29566,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14842 components: - pos: 33.5,42.5 @@ -34408,50 +29573,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14843 components: - pos: 32.5,42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14844 components: - pos: 31.5,42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14845 components: - pos: 31.5,42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14846 components: - pos: 30.5,42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14847 components: - pos: 30.5,41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14848 components: - pos: 30.5,40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14849 components: - pos: 34.5,44.5 @@ -34459,8 +29610,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14850 components: - pos: 36.5,44.5 @@ -34468,8 +29617,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14851 components: - pos: 35.5,44.5 @@ -34477,8 +29624,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14852 components: - pos: 37.5,44.5 @@ -34486,15 +29631,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14853 components: - pos: 38.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14854 components: - pos: 39.5,44.5 @@ -34502,22 +29643,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14855 components: - pos: 41.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14856 components: - pos: 42.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14857 components: - pos: 43.5,44.5 @@ -34525,8 +29660,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14858 components: - pos: 44.5,44.5 @@ -34534,22 +29667,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14859 components: - pos: 45.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14860 components: - pos: 46.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14861 components: - pos: 46.5,43.5 @@ -34557,29 +29684,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14862 components: - pos: 46.5,42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14863 components: - pos: 46.5,41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14864 components: - pos: 45.5,41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14865 components: - pos: 45.5,30.5 @@ -34587,8 +29706,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14866 components: - pos: 46.5,30.5 @@ -34596,8 +29713,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14867 components: - pos: 47.5,30.5 @@ -34605,8 +29720,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14868 components: - pos: 46.5,31.5 @@ -34614,8 +29727,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14870 components: - pos: 33.5,5.5 @@ -34623,8 +29734,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14871 components: - pos: 35.5,5.5 @@ -34632,8 +29741,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14872 components: - pos: 34.5,5.5 @@ -34641,8 +29748,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14873 components: - pos: 36.5,5.5 @@ -34650,8 +29755,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14874 components: - pos: 37.5,5.5 @@ -34659,8 +29762,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14875 components: - pos: 38.5,5.5 @@ -34668,8 +29769,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14876 components: - pos: 39.5,5.5 @@ -34677,8 +29776,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14877 components: - pos: 40.5,5.5 @@ -34686,8 +29783,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14878 components: - pos: 41.5,5.5 @@ -34695,8 +29790,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14879 components: - pos: 42.5,5.5 @@ -34704,8 +29797,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14880 components: - pos: 42.5,6.5 @@ -34713,8 +29804,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14881 components: - pos: 42.5,7.5 @@ -34722,211 +29811,151 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14882 components: - pos: 27.5,38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14883 components: - pos: 27.5,37.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14884 components: - pos: 27.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14885 components: - pos: 30.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14886 components: - pos: 31.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14887 components: - pos: 32.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14888 components: - pos: 33.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14889 components: - pos: 33.5,35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14890 components: - pos: 34.5,35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14891 components: - pos: 33.5,37.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14892 components: - pos: 33.5,38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14893 components: - pos: 30.5,37.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14894 components: - pos: 30.5,38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14895 components: - pos: 30.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14896 components: - pos: 31.5,35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14897 components: - pos: 31.5,34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14898 components: - pos: 34.5,38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14899 components: - pos: 35.5,38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14900 components: - pos: 36.5,38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14901 components: - pos: 35.5,35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14902 components: - pos: 36.5,35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14903 components: - pos: 37.5,35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14904 components: - pos: 38.5,35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14905 components: - pos: 39.5,35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14906 components: - pos: 40.5,35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14907 components: - pos: 40.5,35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14908 components: - pos: 41.5,35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14909 components: - pos: 42.5,35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14910 components: - pos: 43.5,35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14911 components: - pos: 44.5,35.5 @@ -34934,260 +29963,186 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14912 components: - pos: 45.5,35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14913 components: - pos: 46.5,35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14914 components: - pos: 46.5,34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14915 components: - pos: 46.5,33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14916 components: - pos: 46.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14917 components: - pos: 46.5,37.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14918 components: - pos: 46.5,38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14919 components: - pos: 46.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14920 components: - pos: 45.5,38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14921 components: - pos: 44.5,38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14922 components: - pos: 43.5,38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14923 components: - pos: 42.5,38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14924 components: - pos: 41.5,38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14925 components: - pos: 40.5,38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14926 components: - pos: 39.5,38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14927 components: - pos: 38.5,38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14928 components: - pos: 37.5,38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14929 components: - pos: 36.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14930 components: - pos: 36.5,40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14931 components: - pos: 36.5,41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14932 components: - pos: 36.5,35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14933 components: - pos: 36.5,34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14934 components: - pos: 36.5,33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14935 components: - pos: 36.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14936 components: - pos: 42.5,34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14937 components: - pos: 42.5,33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14938 components: - pos: 42.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14939 components: - pos: 42.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14940 components: - pos: 42.5,40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14941 components: - pos: 42.5,41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14942 components: - pos: 39.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14943 components: - pos: 39.5,41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14944 components: - pos: 39.5,40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14945 components: - pos: 39.5,34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14946 components: - pos: 39.5,33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14947 components: - pos: 39.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14964 components: - pos: 38.5,-18.5 @@ -35195,22 +30150,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14986 components: - pos: 12.5,61.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14987 components: - pos: 12.5,57.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14989 components: - pos: 16.5,61.5 @@ -35218,15 +30167,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14992 components: - pos: 12.5,55.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 15010 components: - pos: 44.5,-18.5 @@ -35234,8 +30179,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15034 components: - pos: 43.5,15.5 @@ -35243,8 +30186,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15035 components: - pos: 43.5,14.5 @@ -35252,8 +30193,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15169 components: - pos: 36.5,-3.5 @@ -35261,15 +30200,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15201 components: - pos: 29.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 15208 components: - pos: 19.5,61.5 @@ -35277,8 +30212,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15222 components: - pos: 18.5,61.5 @@ -35286,8 +30219,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15270 components: - pos: 42.5,-18.5 @@ -35295,8 +30226,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15341 components: - pos: 48.5,30.5 @@ -35304,8 +30233,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15342 components: - pos: 49.5,30.5 @@ -35313,8 +30240,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15343 components: - pos: 50.5,30.5 @@ -35322,8 +30247,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15344 components: - pos: 51.5,30.5 @@ -35331,8 +30254,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15345 components: - pos: 52.5,30.5 @@ -35340,8 +30261,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15346 components: - pos: 53.5,30.5 @@ -35349,8 +30268,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15432 components: - pos: 40.5,-19.5 @@ -35358,8 +30275,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15434 components: - pos: 43.5,16.5 @@ -35367,8 +30282,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15435 components: - pos: 45.5,16.5 @@ -35376,8 +30289,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15436 components: - pos: 47.5,16.5 @@ -35385,8 +30296,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15440 components: - pos: 42.5,8.5 @@ -35394,8 +30303,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15463 components: - pos: 37.5,-18.5 @@ -35403,8 +30310,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15542 components: - pos: 39.5,-18.5 @@ -35412,8 +30317,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15543 components: - pos: 43.5,-18.5 @@ -35421,8 +30324,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15544 components: - pos: 41.5,-18.5 @@ -35430,8 +30331,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15545 components: - pos: 40.5,-18.5 @@ -35439,8 +30338,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15550 components: - pos: 46.5,16.5 @@ -35448,8 +30345,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15551 components: - pos: 44.5,16.5 @@ -35457,8 +30352,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15616 components: - pos: 42.5,16.5 @@ -35466,8 +30359,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15626 components: - pos: 40.5,-17.5 @@ -35475,8 +30366,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15640 components: - pos: 42.5,9.5 @@ -35484,8 +30373,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15647 components: - pos: 40.5,-16.5 @@ -35493,8 +30380,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15715 components: - pos: 43.5,13.5 @@ -35502,8 +30387,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15736 components: - pos: 43.5,10.5 @@ -35511,8 +30394,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16018 components: - pos: 29.5,5.5 @@ -35520,22 +30401,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16097 components: - pos: 29.5,-1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 16100 components: - pos: 32.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 16108 components: - pos: -2.5,-13.5 @@ -35543,8 +30418,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16109 components: - pos: -2.5,-14.5 @@ -35552,36 +30425,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16110 components: - pos: -2.5,-15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 16111 components: - pos: -2.5,-16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 16233 components: - pos: 25.5,20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 16821 components: - pos: -50.5,37.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 16822 components: - pos: -50.5,39.5 @@ -35589,8 +30452,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16823 components: - pos: -50.5,38.5 @@ -35598,8 +30459,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16824 components: - pos: -50.5,40.5 @@ -35607,8 +30466,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16825 components: - pos: -50.5,41.5 @@ -35616,8 +30473,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16826 components: - pos: -50.5,42.5 @@ -35625,22 +30480,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16827 components: - pos: -52.5,50.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 16828 components: - pos: -52.5,49.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 16829 components: - pos: -52.5,48.5 @@ -35648,8 +30497,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16830 components: - pos: -52.5,47.5 @@ -35657,8 +30504,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16831 components: - pos: -52.5,46.5 @@ -35666,8 +30511,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16832 components: - pos: -52.5,45.5 @@ -35675,8 +30518,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16833 components: - pos: -52.5,44.5 @@ -35684,8 +30525,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16834 components: - pos: -52.5,43.5 @@ -35693,8 +30532,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16835 components: - pos: -53.5,43.5 @@ -35702,8 +30539,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16836 components: - pos: -54.5,43.5 @@ -35711,8 +30546,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16837 components: - pos: -51.5,43.5 @@ -35720,8 +30553,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16838 components: - pos: -55.5,43.5 @@ -35729,8 +30560,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16839 components: - pos: -56.5,43.5 @@ -35738,8 +30567,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16840 components: - pos: -58.5,43.5 @@ -35747,8 +30574,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16841 components: - pos: -57.5,43.5 @@ -35756,8 +30581,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16842 components: - pos: -59.5,43.5 @@ -35765,8 +30588,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16843 components: - pos: -60.5,43.5 @@ -35774,8 +30595,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16844 components: - pos: -61.5,43.5 @@ -35783,8 +30602,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16845 components: - pos: -62.5,43.5 @@ -35792,8 +30609,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16846 components: - pos: -63.5,43.5 @@ -35801,8 +30616,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16847 components: - pos: -64.5,43.5 @@ -35810,8 +30623,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16848 components: - pos: -65.5,43.5 @@ -35819,8 +30630,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16849 components: - pos: -66.5,43.5 @@ -35828,8 +30637,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16850 components: - pos: -67.5,43.5 @@ -35837,22 +30644,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16851 components: - pos: -54.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 16852 components: - pos: -55.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 16853 components: - pos: -56.5,32.5 @@ -35860,8 +30661,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16854 components: - pos: -56.5,31.5 @@ -35869,8 +30668,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16855 components: - pos: -56.5,30.5 @@ -35878,8 +30675,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16856 components: - pos: -56.5,29.5 @@ -35887,8 +30682,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16857 components: - pos: -56.5,28.5 @@ -35896,8 +30689,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16858 components: - pos: -56.5,27.5 @@ -35905,8 +30696,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16859 components: - pos: -55.5,27.5 @@ -35914,8 +30703,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16860 components: - pos: -54.5,27.5 @@ -35923,8 +30710,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16861 components: - pos: -53.5,27.5 @@ -35932,8 +30717,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16862 components: - pos: -52.5,27.5 @@ -35941,8 +30724,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16863 components: - pos: -51.5,27.5 @@ -35950,8 +30731,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16864 components: - pos: -50.5,27.5 @@ -35959,8 +30738,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16865 components: - pos: -49.5,27.5 @@ -35968,8 +30745,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16866 components: - pos: -46.5,25.5 @@ -35977,8 +30752,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16867 components: - pos: -46.5,24.5 @@ -35986,8 +30759,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16868 components: - pos: -60.5,42.5 @@ -35995,8 +30766,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16869 components: - pos: -60.5,41.5 @@ -36004,8 +30773,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16870 components: - pos: -60.5,40.5 @@ -36013,8 +30780,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16871 components: - pos: -60.5,39.5 @@ -36022,8 +30787,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16872 components: - pos: -60.5,38.5 @@ -36031,8 +30794,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16873 components: - pos: -60.5,37.5 @@ -36040,8 +30801,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16874 components: - pos: -60.5,36.5 @@ -36049,8 +30808,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16875 components: - pos: -60.5,35.5 @@ -36058,8 +30815,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16876 components: - pos: -60.5,34.5 @@ -36067,8 +30822,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16877 components: - pos: -57.5,30.5 @@ -36076,8 +30829,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16878 components: - pos: -58.5,30.5 @@ -36085,8 +30836,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16879 components: - pos: -59.5,30.5 @@ -36094,8 +30843,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17041 components: - pos: -57.5,44.5 @@ -36103,8 +30850,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17585 components: - pos: 23.5,-0.5 @@ -36112,113 +30857,81 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17811 components: - pos: 28.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17812 components: - pos: 27.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17813 components: - pos: 26.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17814 components: - pos: 32.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17815 components: - pos: 31.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17816 components: - pos: 30.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17817 components: - pos: 29.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17994 components: - pos: 28.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17995 components: - pos: 27.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17996 components: - pos: 26.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17997 components: - pos: 26.5,-3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17998 components: - pos: 26.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18000 components: - pos: 32.5,-7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18049 components: - pos: -45.5,-24.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18050 components: - pos: -45.5,-25.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18126 components: - pos: -79.5,-57.5 @@ -36226,8 +30939,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18970 components: - pos: -43.5,-22.5 @@ -36235,155 +30946,111 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18971 components: - pos: -44.5,-22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18972 components: - pos: -45.5,-22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18973 components: - pos: -45.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18974 components: - pos: -46.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18975 components: - pos: -47.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18976 components: - pos: -48.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18977 components: - pos: -49.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18978 components: - pos: -50.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18979 components: - pos: -51.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18980 components: - pos: -52.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18981 components: - pos: -53.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18982 components: - pos: -54.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18983 components: - pos: -45.5,-21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18984 components: - pos: -45.5,-20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18985 components: - pos: -45.5,-19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18986 components: - pos: -45.5,-18.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18987 components: - pos: -45.5,-17.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18988 components: - pos: -45.5,-16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18989 components: - pos: -45.5,-15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18990 components: - pos: -45.5,-14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18991 components: - pos: -42.5,-22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18992 components: - pos: -41.5,-22.5 @@ -36391,8 +31058,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18993 components: - pos: -40.5,-22.5 @@ -36400,8 +31065,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18994 components: - pos: -39.5,-22.5 @@ -36409,8 +31072,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18995 components: - pos: -38.5,-22.5 @@ -36418,8 +31079,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18996 components: - pos: -38.5,-23.5 @@ -36427,8 +31086,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18997 components: - pos: -38.5,-24.5 @@ -36436,8 +31093,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18998 components: - pos: -37.5,-24.5 @@ -36445,8 +31100,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18999 components: - pos: -36.5,-24.5 @@ -36454,8 +31107,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19000 components: - pos: -36.5,-23.5 @@ -36463,8 +31114,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19001 components: - pos: -36.5,-22.5 @@ -36472,8 +31121,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19002 components: - pos: -36.5,-21.5 @@ -36481,8 +31128,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19003 components: - pos: -36.5,-20.5 @@ -36490,8 +31135,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19004 components: - pos: -36.5,-19.5 @@ -36499,8 +31142,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19005 components: - pos: -36.5,-18.5 @@ -36508,8 +31149,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19006 components: - pos: -36.5,-17.5 @@ -36517,8 +31156,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19007 components: - pos: -36.5,-16.5 @@ -36526,8 +31163,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19008 components: - pos: -37.5,-16.5 @@ -36535,8 +31170,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19009 components: - pos: -38.5,-16.5 @@ -36544,8 +31177,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19010 components: - pos: -39.5,-16.5 @@ -36553,8 +31184,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19011 components: - pos: -36.5,-25.5 @@ -36562,8 +31191,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19012 components: - pos: -36.5,-26.5 @@ -36571,8 +31198,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19013 components: - pos: -36.5,-27.5 @@ -36580,8 +31205,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19014 components: - pos: -36.5,-28.5 @@ -36589,8 +31212,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19015 components: - pos: -35.5,-28.5 @@ -36598,8 +31219,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19016 components: - pos: -34.5,-28.5 @@ -36607,8 +31226,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19017 components: - pos: -33.5,-28.5 @@ -36616,8 +31233,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19018 components: - pos: -32.5,-28.5 @@ -36625,8 +31240,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19019 components: - pos: -31.5,-28.5 @@ -36634,8 +31247,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19020 components: - pos: -30.5,-28.5 @@ -36643,8 +31254,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19021 components: - pos: -29.5,-28.5 @@ -36652,8 +31261,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19022 components: - pos: -29.5,-29.5 @@ -36661,8 +31268,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19023 components: - pos: -29.5,-30.5 @@ -36670,8 +31275,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19024 components: - pos: -29.5,-31.5 @@ -36679,8 +31282,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19025 components: - pos: -28.5,-28.5 @@ -36688,8 +31289,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19026 components: - pos: -27.5,-28.5 @@ -36697,8 +31296,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19027 components: - pos: -26.5,-28.5 @@ -36706,8 +31303,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19028 components: - pos: -25.5,-28.5 @@ -36715,8 +31310,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19029 components: - pos: -24.5,-28.5 @@ -36724,8 +31317,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19030 components: - pos: -24.5,-27.5 @@ -36733,8 +31324,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19031 components: - pos: -24.5,-26.5 @@ -36742,8 +31331,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19032 components: - pos: -59.5,-25.5 @@ -36751,78 +31338,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19035 components: - pos: -59.5,-27.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19036 components: - pos: -59.5,-26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19037 components: - pos: -61.5,-26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19038 components: - pos: -61.5,-25.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19039 components: - pos: -61.5,-24.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19040 components: - pos: -61.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19041 components: - pos: -61.5,-22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19042 components: - pos: -62.5,-22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19043 components: - pos: -63.5,-22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19044 components: - pos: -63.5,-21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19045 components: - pos: -63.5,-20.5 @@ -36830,8 +31395,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19046 components: - pos: -63.5,-19.5 @@ -36839,106 +31402,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19047 components: - pos: -63.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19048 components: - pos: -63.5,-24.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19049 components: - pos: -60.5,-22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19050 components: - pos: -59.5,-22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19051 components: - pos: -58.5,-22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19052 components: - pos: -56.5,-22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19053 components: - pos: -57.5,-22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19054 components: - pos: -57.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19055 components: - pos: -57.5,-24.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19057 components: - pos: -60.5,-28.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19058 components: - pos: -59.5,-28.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19059 components: - pos: -61.5,-28.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19060 components: - pos: -62.5,-28.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19061 components: - pos: -61.5,-29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19062 components: - pos: -52.5,-40.5 @@ -36946,15 +31479,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19063 components: - pos: -60.5,-34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19064 components: - pos: -51.5,-40.5 @@ -36962,8 +31491,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19065 components: - pos: -74.5,-41.5 @@ -36971,204 +31498,146 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19070 components: - pos: -61.5,-35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19071 components: - pos: -61.5,-34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19072 components: - pos: -57.5,-34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19073 components: - pos: -58.5,-34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19074 components: - pos: -59.5,-34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19075 components: - pos: -55.5,-35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19076 components: - pos: -54.5,-36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19077 components: - pos: -54.5,-35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19078 components: - pos: -54.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19079 components: - pos: -54.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19080 components: - pos: -54.5,-41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19081 components: - pos: -53.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19082 components: - pos: -53.5,-39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19083 components: - pos: -53.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19084 components: - pos: -51.5,-43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19085 components: - pos: -52.5,-43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19086 components: - pos: -53.5,-43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19091 components: - pos: -50.5,-43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19092 components: - pos: -50.5,-44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19093 components: - pos: -50.5,-45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19094 components: - pos: -50.5,-46.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19095 components: - pos: -50.5,-47.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19096 components: - pos: -50.5,-48.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19097 components: - pos: -50.5,-49.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19098 components: - pos: -51.5,-49.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19099 components: - pos: -56.5,-35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19100 components: - pos: -56.5,-34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19101 components: - pos: -54.5,-37.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19102 components: - pos: -59.5,-25.5 @@ -37176,8 +31645,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19103 components: - pos: -50.5,-40.5 @@ -37185,8 +31652,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19104 components: - pos: -48.5,-43.5 @@ -37194,8 +31659,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19105 components: - pos: -48.5,-44.5 @@ -37203,8 +31666,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19106 components: - pos: -48.5,-46.5 @@ -37212,8 +31673,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19107 components: - pos: -48.5,-45.5 @@ -37221,8 +31680,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19108 components: - pos: -48.5,-47.5 @@ -37230,8 +31687,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19109 components: - pos: -48.5,-48.5 @@ -37239,8 +31694,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19110 components: - pos: -48.5,-49.5 @@ -37248,8 +31701,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19111 components: - pos: -52.5,-38.5 @@ -37257,8 +31708,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19112 components: - pos: -51.5,-38.5 @@ -37266,8 +31715,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19113 components: - pos: -49.5,-40.5 @@ -37275,8 +31722,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19114 components: - pos: -48.5,-40.5 @@ -37284,8 +31729,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19115 components: - pos: -48.5,-41.5 @@ -37293,8 +31736,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19116 components: - pos: -48.5,-42.5 @@ -37302,8 +31743,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19117 components: - pos: -50.5,-38.5 @@ -37311,8 +31750,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19118 components: - pos: -51.5,-37.5 @@ -37320,8 +31757,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19119 components: - pos: -51.5,-36.5 @@ -37329,8 +31764,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19120 components: - pos: -51.5,-35.5 @@ -37338,8 +31771,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19121 components: - pos: -52.5,-35.5 @@ -37347,8 +31778,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19122 components: - pos: -52.5,-33.5 @@ -37356,8 +31785,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19123 components: - pos: -54.5,-32.5 @@ -37365,8 +31792,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19124 components: - pos: -54.5,-31.5 @@ -37374,29 +31799,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19125 components: - pos: -67.5,-41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19126 components: - pos: -67.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19127 components: - pos: -66.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19128 components: - pos: -65.5,-24.5 @@ -37404,8 +31821,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19129 components: - pos: -64.5,-24.5 @@ -37413,8 +31828,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19130 components: - pos: -66.5,-25.5 @@ -37422,8 +31835,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19131 components: - pos: -66.5,-24.5 @@ -37431,8 +31842,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19132 components: - pos: -67.5,-29.5 @@ -37440,8 +31849,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19133 components: - pos: -67.5,-25.5 @@ -37449,8 +31856,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19134 components: - pos: -67.5,-28.5 @@ -37458,8 +31863,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19135 components: - pos: -67.5,-27.5 @@ -37467,8 +31870,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19136 components: - pos: -67.5,-26.5 @@ -37476,8 +31877,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19137 components: - pos: -52.5,-34.5 @@ -37485,8 +31884,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19138 components: - pos: -53.5,-33.5 @@ -37494,8 +31891,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19139 components: - pos: -53.5,-32.5 @@ -37503,8 +31898,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19140 components: - pos: -55.5,-29.5 @@ -37512,8 +31905,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19141 components: - pos: -56.5,-29.5 @@ -37521,8 +31912,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19142 components: - pos: -56.5,-28.5 @@ -37530,8 +31919,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19143 components: - pos: -56.5,-27.5 @@ -37539,8 +31926,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19144 components: - pos: -56.5,-26.5 @@ -37548,8 +31933,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19145 components: - pos: -69.5,-40.5 @@ -37557,8 +31940,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19146 components: - pos: -54.5,-30.5 @@ -37566,8 +31947,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19147 components: - pos: -55.5,-30.5 @@ -37575,8 +31954,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19148 components: - pos: -68.5,-29.5 @@ -37584,15 +31961,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19150 components: - pos: -73.5,-41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19151 components: - pos: -65.5,-47.5 @@ -37600,463 +31973,331 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19152 components: - pos: -65.5,-48.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19153 components: - pos: -65.5,-49.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19154 components: - pos: -66.5,-49.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19155 components: - pos: -67.5,-49.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19156 components: - pos: -67.5,-50.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19157 components: - pos: -67.5,-51.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19158 components: - pos: -67.5,-52.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19159 components: - pos: -67.5,-53.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19160 components: - pos: -67.5,-54.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19161 components: - pos: -67.5,-56.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19162 components: - pos: -67.5,-57.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19163 components: - pos: -67.5,-55.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19164 components: - pos: -67.5,-58.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19165 components: - pos: -67.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19166 components: - pos: -66.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19167 components: - pos: -65.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19168 components: - pos: -64.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19169 components: - pos: -62.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19170 components: - pos: -63.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19171 components: - pos: -61.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19172 components: - pos: -60.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19173 components: - pos: -59.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19174 components: - pos: -58.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19175 components: - pos: -57.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19176 components: - pos: -56.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19177 components: - pos: -58.5,-60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19178 components: - pos: -58.5,-62.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19179 components: - pos: -58.5,-63.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19180 components: - pos: -58.5,-61.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19181 components: - pos: -58.5,-64.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19182 components: - pos: -58.5,-65.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19183 components: - pos: -58.5,-66.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19184 components: - pos: -58.5,-67.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19185 components: - pos: -58.5,-68.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19186 components: - pos: -57.5,-66.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19187 components: - pos: -56.5,-66.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19188 components: - pos: -55.5,-66.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19189 components: - pos: -59.5,-63.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19190 components: - pos: -60.5,-63.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19191 components: - pos: -57.5,-64.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19192 components: - pos: -56.5,-64.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19193 components: - pos: -55.5,-64.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19194 components: - pos: -54.5,-64.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19195 components: - pos: -56.5,-58.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19196 components: - pos: -56.5,-57.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19197 components: - pos: -56.5,-56.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19198 components: - pos: -56.5,-55.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19199 components: - pos: -56.5,-54.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19200 components: - pos: -56.5,-53.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19201 components: - pos: -56.5,-52.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19202 components: - pos: -56.5,-51.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19203 components: - pos: -56.5,-50.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19204 components: - pos: -56.5,-49.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19205 components: - pos: -57.5,-49.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19206 components: - pos: -58.5,-49.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19207 components: - pos: -59.5,-49.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19208 components: - pos: -60.5,-49.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19209 components: - pos: -61.5,-49.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19210 components: - pos: -62.5,-49.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19211 components: - pos: -63.5,-49.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19212 components: - pos: -64.5,-49.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19213 components: - pos: -55.5,-52.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19214 components: - pos: -54.5,-52.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19215 components: - pos: -53.5,-52.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19216 components: - pos: -55.5,-49.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19217 components: - pos: -54.5,-49.5 @@ -38064,8 +32305,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19218 components: - pos: -53.5,-49.5 @@ -38073,113 +32312,81 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19219 components: - pos: -52.5,-52.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19220 components: - pos: -51.5,-52.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19221 components: - pos: -50.5,-52.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19222 components: - pos: -49.5,-52.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19223 components: - pos: -55.5,-56.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19224 components: - pos: -54.5,-56.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19225 components: - pos: -53.5,-56.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19226 components: - pos: -52.5,-56.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19227 components: - pos: -51.5,-56.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19228 components: - pos: -50.5,-56.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19229 components: - pos: -49.5,-56.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19230 components: - pos: -55.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19231 components: - pos: -54.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19232 components: - pos: -64.5,-60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19233 components: - pos: -64.5,-61.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19234 components: - pos: -64.5,-62.5 @@ -38187,8 +32394,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19235 components: - pos: -64.5,-63.5 @@ -38196,8 +32401,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19236 components: - pos: -64.5,-64.5 @@ -38205,8 +32408,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19237 components: - pos: -64.5,-65.5 @@ -38214,575 +32415,411 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19238 components: - pos: -63.5,-64.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19239 components: - pos: -62.5,-64.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19240 components: - pos: -65.5,-63.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19241 components: - pos: -67.5,-63.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19242 components: - pos: -66.5,-63.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19243 components: - pos: -68.5,-63.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19244 components: - pos: -68.5,-54.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19245 components: - pos: -69.5,-54.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19246 components: - pos: -70.5,-54.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19247 components: - pos: -71.5,-54.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19248 components: - pos: -72.5,-54.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19249 components: - pos: -73.5,-54.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19250 components: - pos: -74.5,-54.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19251 components: - pos: -75.5,-54.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19252 components: - pos: -76.5,-54.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19253 components: - pos: -78.5,-54.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19254 components: - pos: -77.5,-54.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19255 components: - pos: -77.5,-53.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19256 components: - pos: -77.5,-52.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19257 components: - pos: -77.5,-51.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19258 components: - pos: -72.5,-53.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19259 components: - pos: -72.5,-52.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19260 components: - pos: -72.5,-51.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19261 components: - pos: -72.5,-55.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19262 components: - pos: -72.5,-56.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19263 components: - pos: -78.5,-55.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19264 components: - pos: -78.5,-56.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19265 components: - pos: -75.5,-55.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19266 components: - pos: -75.5,-56.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19267 components: - pos: -71.5,-51.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19268 components: - pos: -73.5,-51.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19269 components: - pos: -67.5,-48.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19270 components: - pos: -67.5,-47.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19271 components: - pos: -67.5,-46.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19272 components: - pos: -67.5,-45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19273 components: - pos: -67.5,-44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19274 components: - pos: -68.5,-44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19275 components: - pos: -68.5,-43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19276 components: - pos: -68.5,-42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19277 components: - pos: -67.5,-42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19278 components: - pos: -61.5,-48.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19279 components: - pos: -61.5,-47.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19280 components: - pos: -61.5,-46.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19281 components: - pos: -61.5,-45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19282 components: - pos: -60.5,-45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19283 components: - pos: -59.5,-45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19284 components: - pos: -58.5,-45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19285 components: - pos: -58.5,-44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19286 components: - pos: -58.5,-43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19287 components: - pos: -58.5,-42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19288 components: - pos: -58.5,-41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19289 components: - pos: -58.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19290 components: - pos: -58.5,-39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19291 components: - pos: -58.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19292 components: - pos: -59.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19293 components: - pos: -60.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19294 components: - pos: -61.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19295 components: - pos: -62.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19296 components: - pos: -63.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19297 components: - pos: -64.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19298 components: - pos: -62.5,-37.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19299 components: - pos: -65.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19300 components: - pos: -65.5,-39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19301 components: - pos: -65.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19302 components: - pos: -65.5,-42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19303 components: - pos: -65.5,-42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19304 components: - pos: -65.5,-41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19305 components: - pos: -65.5,-43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19306 components: - pos: -65.5,-44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19307 components: - pos: -65.5,-45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19308 components: - pos: -66.5,-45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19309 components: - pos: -57.5,-48.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19310 components: - pos: -56.5,-48.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19311 components: - pos: -56.5,-47.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19312 components: - pos: -56.5,-46.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19313 components: - pos: -56.5,-45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19314 components: - pos: -55.5,-45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19315 components: - pos: -54.5,-45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19316 components: - pos: -53.5,-45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19317 components: - pos: -54.5,-42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19318 components: - pos: -54.5,-43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19319 components: - pos: -76.5,-42.5 @@ -38790,246 +32827,176 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19320 components: - pos: -76.5,-43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19321 components: - pos: -76.5,-44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19322 components: - pos: -76.5,-45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19323 components: - pos: -75.5,-45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19324 components: - pos: -74.5,-45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19325 components: - pos: -73.5,-45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19326 components: - pos: -72.5,-45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19327 components: - pos: -71.5,-45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19328 components: - pos: -70.5,-45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19329 components: - pos: -76.5,-46.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19330 components: - pos: -76.5,-47.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19331 components: - pos: -77.5,-46.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19332 components: - pos: -78.5,-46.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19333 components: - pos: -79.5,-46.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19334 components: - pos: -80.5,-46.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19335 components: - pos: -81.5,-46.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19336 components: - pos: -82.5,-46.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19337 components: - pos: -83.5,-46.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19338 components: - pos: -84.5,-46.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19339 components: - pos: -79.5,-47.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19340 components: - pos: -79.5,-48.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19341 components: - pos: -79.5,-49.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19342 components: - pos: -78.5,-45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19343 components: - pos: -78.5,-44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19344 components: - pos: -78.5,-43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19345 components: - pos: -78.5,-42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19346 components: - pos: -78.5,-41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19347 components: - pos: -78.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19348 components: - pos: -78.5,-39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19349 components: - pos: -78.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19350 components: - pos: -79.5,-39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19351 components: - pos: -80.5,-39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19352 components: - pos: -77.5,-39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19353 components: - pos: -75.5,-43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19354 components: - pos: -75.5,-42.5 @@ -39037,8 +33004,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19355 components: - pos: -75.5,-41.5 @@ -39046,43 +33011,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19356 components: - pos: -79.5,-58.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19357 components: - pos: -79.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19358 components: - pos: -79.5,-60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19359 components: - pos: -80.5,-60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19360 components: - pos: -81.5,-60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19361 components: - pos: -82.5,-60.5 @@ -39090,8 +33043,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19362 components: - pos: -83.5,-60.5 @@ -39099,8 +33050,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19363 components: - pos: -84.5,-60.5 @@ -39108,197 +33057,141 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19364 components: - pos: -78.5,-60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19365 components: - pos: -77.5,-60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19366 components: - pos: -76.5,-60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19367 components: - pos: -75.5,-60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19368 components: - pos: -74.5,-60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19369 components: - pos: -73.5,-60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19370 components: - pos: -72.5,-60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19371 components: - pos: -71.5,-60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19372 components: - pos: -70.5,-60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19373 components: - pos: -70.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19374 components: - pos: -70.5,-58.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19375 components: - pos: -77.5,-61.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19376 components: - pos: -77.5,-62.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19377 components: - pos: -77.5,-63.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19378 components: - pos: -77.5,-64.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19379 components: - pos: -77.5,-65.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19380 components: - pos: -72.5,-65.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19381 components: - pos: -72.5,-64.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19382 components: - pos: -72.5,-63.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19383 components: - pos: -72.5,-62.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19384 components: - pos: -72.5,-61.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19385 components: - pos: -76.5,-65.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19386 components: - pos: -75.5,-65.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19387 components: - pos: -74.5,-65.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19388 components: - pos: -74.5,-66.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19389 components: - pos: -74.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19390 components: - pos: -74.5,-58.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19581 components: - pos: -50.5,43.5 @@ -39306,50 +33199,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19597 components: - pos: -25.5,-41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19598 components: - pos: -26.5,-41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19599 components: - pos: -27.5,-41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19600 components: - pos: -28.5,-41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19601 components: - pos: -28.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19602 components: - pos: -28.5,-39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19603 components: - pos: -29.5,-39.5 @@ -39357,8 +33236,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19604 components: - pos: -30.5,-39.5 @@ -39366,8 +33243,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19605 components: - pos: -31.5,-39.5 @@ -39375,8 +33250,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19606 components: - pos: -32.5,-39.5 @@ -39384,8 +33257,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19607 components: - pos: -33.5,-39.5 @@ -39393,8 +33264,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19608 components: - pos: -34.5,-39.5 @@ -39402,8 +33271,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19609 components: - pos: -36.5,-39.5 @@ -39411,8 +33278,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19610 components: - pos: -35.5,-39.5 @@ -39420,8 +33285,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19611 components: - pos: -29.5,-38.5 @@ -39429,8 +33292,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19612 components: - pos: -29.5,-37.5 @@ -39438,8 +33299,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19613 components: - pos: -29.5,-36.5 @@ -39447,8 +33306,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19614 components: - pos: -29.5,-35.5 @@ -39456,8 +33313,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19615 components: - pos: -29.5,-34.5 @@ -39465,22 +33320,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19709 components: - pos: -19.5,-34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19710 components: - pos: -18.5,-34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19797 components: - pos: -38.5,62.5 @@ -39488,8 +33337,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20163 components: - pos: 0.5,85.5 @@ -39497,407 +33344,291 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20164 components: - pos: 0.5,84.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20165 components: - pos: 0.5,83.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20166 components: - pos: -0.5,83.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20167 components: - pos: -1.5,83.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20168 components: - pos: -2.5,83.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20169 components: - pos: -3.5,83.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20170 components: - pos: -4.5,83.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20171 components: - pos: -4.5,82.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20172 components: - pos: -4.5,81.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20173 components: - pos: -4.5,80.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20174 components: - pos: -3.5,80.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20175 components: - pos: -3.5,79.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20176 components: - pos: -2.5,79.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20177 components: - pos: -1.5,79.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20178 components: - pos: -0.5,79.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20179 components: - pos: 0.5,79.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20180 components: - pos: 1.5,79.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20181 components: - pos: 2.5,79.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20182 components: - pos: 2.5,80.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20183 components: - pos: 3.5,80.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20184 components: - pos: 3.5,81.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20185 components: - pos: 3.5,82.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20186 components: - pos: 3.5,83.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20187 components: - pos: 3.5,84.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20188 components: - pos: 3.5,85.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20189 components: - pos: 3.5,86.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20190 components: - pos: 2.5,86.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20191 components: - pos: 2.5,87.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20192 components: - pos: 1.5,87.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20193 components: - pos: 0.5,87.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20194 components: - pos: -0.5,87.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20195 components: - pos: -1.5,87.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20196 components: - pos: -2.5,87.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20197 components: - pos: -3.5,87.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20198 components: - pos: -3.5,86.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20199 components: - pos: -4.5,86.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20200 components: - pos: -4.5,85.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20201 components: - pos: -4.5,84.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20202 components: - pos: 1.5,83.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20203 components: - pos: 2.5,83.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20204 components: - pos: -0.5,82.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20205 components: - pos: -0.5,78.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20206 components: - pos: -0.5,77.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20207 components: - pos: -0.5,76.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20208 components: - pos: -0.5,75.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20209 components: - pos: -0.5,74.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20210 components: - pos: -0.5,73.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20211 components: - pos: -0.5,72.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20212 components: - pos: -0.5,71.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20213 components: - pos: -0.5,70.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20214 components: - pos: -0.5,69.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20215 components: - pos: -0.5,68.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20216 components: - pos: -0.5,67.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20217 components: - pos: -0.5,66.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20218 components: - pos: -0.5,65.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20219 components: - pos: -0.5,64.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20220 components: - pos: -0.5,63.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20221 components: - pos: -0.5,62.5 @@ -39905,8 +33636,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20222 components: - pos: -0.5,60.5 @@ -39914,8 +33643,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20223 components: - pos: -0.5,61.5 @@ -39923,428 +33650,306 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20224 components: - pos: -1.5,66.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20225 components: - pos: -2.5,66.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20226 components: - pos: -3.5,66.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20227 components: - pos: -4.5,66.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20228 components: - pos: -5.5,66.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20229 components: - pos: -6.5,66.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20230 components: - pos: -6.5,67.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20231 components: - pos: -6.5,68.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20232 components: - pos: -6.5,70.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20233 components: - pos: -6.5,69.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20234 components: - pos: -6.5,71.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20235 components: - pos: -6.5,72.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20236 components: - pos: -6.5,73.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20237 components: - pos: -6.5,74.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20238 components: - pos: -5.5,74.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20239 components: - pos: -4.5,74.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20240 components: - pos: -3.5,74.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20241 components: - pos: -2.5,74.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20242 components: - pos: 0.5,74.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20243 components: - pos: -1.5,74.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20244 components: - pos: 1.5,74.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20245 components: - pos: 2.5,74.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20246 components: - pos: 3.5,74.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20247 components: - pos: 4.5,74.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20248 components: - pos: 5.5,74.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20249 components: - pos: 5.5,73.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20250 components: - pos: 5.5,72.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20251 components: - pos: 5.5,71.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20252 components: - pos: 5.5,70.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20253 components: - pos: 5.5,69.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20254 components: - pos: 5.5,68.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20255 components: - pos: 5.5,67.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20256 components: - pos: 5.5,66.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20257 components: - pos: 4.5,66.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20258 components: - pos: 3.5,66.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20259 components: - pos: 2.5,66.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20260 components: - pos: 1.5,66.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20261 components: - pos: 0.5,66.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20363 components: - pos: -0.5,-49.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20364 components: - pos: 0.5,-49.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20365 components: - pos: 1.5,-49.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20366 components: - pos: 1.5,-51.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20367 components: - pos: 1.5,-50.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20368 components: - pos: 1.5,-52.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20369 components: - pos: 1.5,-53.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20370 components: - pos: 1.5,-54.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20371 components: - pos: 0.5,-54.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20504 components: - pos: -37.5,-28.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20505 components: - pos: -37.5,-29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20506 components: - pos: -37.5,-30.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20507 components: - pos: -37.5,-30.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20508 components: - pos: -37.5,-31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20509 components: - pos: -36.5,-31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20510 components: - pos: -35.5,-31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20511 components: - pos: -34.5,-31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20512 components: - pos: -33.5,-31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20513 components: - pos: -33.5,-32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20514 components: - pos: -33.5,-33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20515 components: - pos: -33.5,-34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20516 components: - pos: -33.5,-35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 21007 components: - pos: -20.5,52.5 @@ -40352,8 +33957,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21008 components: - pos: -20.5,51.5 @@ -40361,8 +33964,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21009 components: - pos: -20.5,50.5 @@ -40370,8 +33971,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21010 components: - pos: -20.5,49.5 @@ -40379,8 +33978,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21011 components: - pos: -20.5,48.5 @@ -40388,15 +33985,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21012 components: - pos: -27.5,58.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 21013 components: - pos: -26.5,58.5 @@ -40404,8 +33997,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21014 components: - pos: -26.5,59.5 @@ -40413,8 +34004,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21015 components: - pos: -26.5,60.5 @@ -40422,15 +34011,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21016 components: - pos: -29.5,60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 21017 components: - pos: -28.5,61.5 @@ -40438,8 +34023,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21018 components: - pos: -29.5,61.5 @@ -40447,8 +34030,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21019 components: - pos: -30.5,61.5 @@ -40456,22 +34037,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21020 components: - pos: -35.5,60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 21022 components: - pos: -36.5,59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 21023 components: - pos: -34.5,61.5 @@ -40479,8 +34054,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21024 components: - pos: -33.5,61.5 @@ -40488,8 +34061,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21025 components: - pos: -32.5,61.5 @@ -40497,15 +34068,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21026 components: - pos: -34.5,60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 21032 components: - pos: -36.5,61.5 @@ -40513,8 +34080,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21100 components: - pos: -31.5,-40.5 @@ -40522,8 +34087,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21101 components: - pos: -31.5,-41.5 @@ -40531,8 +34094,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21102 components: - pos: -31.5,-42.5 @@ -40540,8 +34101,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21103 components: - pos: -31.5,-43.5 @@ -40549,8 +34108,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21104 components: - pos: -31.5,-44.5 @@ -40558,8 +34115,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21105 components: - pos: -31.5,-45.5 @@ -40567,8 +34122,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21106 components: - pos: -31.5,-46.5 @@ -40576,8 +34129,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21107 components: - pos: -32.5,-46.5 @@ -40585,8 +34136,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21108 components: - pos: -33.5,-46.5 @@ -40594,8 +34143,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21109 components: - pos: -34.5,-46.5 @@ -40603,8 +34150,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21110 components: - pos: -35.5,-46.5 @@ -40612,8 +34157,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21111 components: - pos: -36.5,-46.5 @@ -40621,8 +34164,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21138 components: - pos: -57.5,45.5 @@ -40630,8 +34171,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21139 components: - pos: -57.5,46.5 @@ -40639,8 +34178,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21140 components: - pos: -57.5,47.5 @@ -40648,8 +34185,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21141 components: - pos: -57.5,48.5 @@ -40657,8 +34192,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21142 components: - pos: -57.5,49.5 @@ -40666,8 +34199,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21143 components: - pos: -57.5,50.5 @@ -40675,8 +34206,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21144 components: - pos: -57.5,51.5 @@ -40684,8 +34213,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21145 components: - pos: -56.5,51.5 @@ -40693,50 +34220,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21263 components: - pos: -61.5,-30.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 21315 components: - pos: -61.5,-31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 21316 components: - pos: 1.5,-11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 21317 components: - pos: 0.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 21462 components: - pos: 8.5,-15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 21463 components: - pos: 8.5,-14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 21464 components: - pos: -1.5,-14.5 @@ -40744,8 +34257,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21465 components: - pos: -0.5,-14.5 @@ -40753,57 +34264,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21475 components: - pos: -79.5,-43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 21476 components: - pos: -80.5,-43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 21477 components: - pos: -81.5,-43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 21495 components: - pos: -18.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 21496 components: - pos: -18.5,-3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 21497 components: - pos: -18.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 21498 components: - pos: -18.5,-1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 21595 components: - pos: -45.5,-26.5 @@ -40811,8 +34306,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21596 components: - pos: -45.5,-27.5 @@ -40820,8 +34313,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21597 components: - pos: -44.5,-27.5 @@ -40829,8 +34320,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21598 components: - pos: -43.5,-27.5 @@ -40838,8 +34327,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21599 components: - pos: -42.5,-27.5 @@ -40847,8 +34334,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21600 components: - pos: -41.5,-27.5 @@ -40856,8 +34341,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21601 components: - pos: -40.5,-27.5 @@ -40865,22 +34348,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21655 components: - pos: -61.5,-32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 21656 components: - pos: -61.5,-33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 21657 components: - pos: -68.5,-30.5 @@ -40888,8 +34365,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21658 components: - pos: -69.5,-30.5 @@ -40897,8 +34372,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21659 components: - pos: -69.5,-31.5 @@ -40906,8 +34379,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21660 components: - pos: -69.5,-32.5 @@ -40915,8 +34386,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21661 components: - pos: -70.5,-32.5 @@ -40924,8 +34393,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21662 components: - pos: -70.5,-33.5 @@ -40933,8 +34400,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21663 components: - pos: -71.5,-33.5 @@ -40942,8 +34407,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21664 components: - pos: -71.5,-34.5 @@ -40951,8 +34414,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21665 components: - pos: -72.5,-34.5 @@ -40960,8 +34421,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21666 components: - pos: -73.5,-34.5 @@ -40969,8 +34428,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21667 components: - pos: -73.5,-35.5 @@ -40978,8 +34435,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21668 components: - pos: -74.5,-34.5 @@ -40987,8 +34442,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21669 components: - pos: -75.5,-34.5 @@ -40996,8 +34449,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21730 components: - pos: -37.5,62.5 @@ -41005,8 +34456,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21951 components: - pos: -0.5,59.5 @@ -41014,8 +34463,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21952 components: - pos: -0.5,58.5 @@ -41023,8 +34470,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21953 components: - pos: -0.5,57.5 @@ -41032,8 +34477,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21954 components: - pos: -0.5,56.5 @@ -41041,8 +34484,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21955 components: - pos: -0.5,55.5 @@ -41050,8 +34491,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21956 components: - pos: -0.5,54.5 @@ -41059,8 +34498,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21957 components: - pos: -0.5,53.5 @@ -41068,8 +34505,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21958 components: - pos: -0.5,52.5 @@ -41077,8 +34512,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21959 components: - pos: -0.5,51.5 @@ -41086,8 +34519,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21960 components: - pos: -0.5,50.5 @@ -41095,8 +34526,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21961 components: - pos: -0.5,49.5 @@ -41104,8 +34533,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21962 components: - pos: -0.5,48.5 @@ -41113,8 +34540,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21963 components: - pos: -0.5,47.5 @@ -41122,8 +34547,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21964 components: - pos: -0.5,46.5 @@ -41131,8 +34554,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21965 components: - pos: -0.5,45.5 @@ -41140,8 +34561,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21966 components: - pos: -0.5,44.5 @@ -41149,8 +34568,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21968 components: - pos: -0.5,42.5 @@ -41158,8 +34575,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21969 components: - pos: -0.5,41.5 @@ -41167,22 +34582,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22101 components: - pos: 2.5,-21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22107 components: - pos: -82.5,-43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22227 components: - pos: -36.5,62.5 @@ -41190,8 +34599,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22228 components: - pos: -39.5,62.5 @@ -41199,8 +34606,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22229 components: - pos: -40.5,62.5 @@ -41208,8 +34613,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22230 components: - pos: -41.5,62.5 @@ -41217,8 +34620,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22258 components: - pos: 3.5,10.5 @@ -41226,15 +34627,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22260 components: - pos: 1.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22706 components: - pos: -33.5,-57.5 @@ -41242,204 +34639,146 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22707 components: - pos: -34.5,-57.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22708 components: - pos: -34.5,-58.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22709 components: - pos: -34.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22710 components: - pos: -34.5,-60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22711 components: - pos: -34.5,-61.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22712 components: - pos: -34.5,-62.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22713 components: - pos: -34.5,-63.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22714 components: - pos: -35.5,-60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22715 components: - pos: -36.5,-60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22716 components: - pos: -36.5,-61.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22717 components: - pos: -37.5,-61.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22718 components: - pos: -38.5,-61.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22719 components: - pos: -39.5,-61.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22720 components: - pos: -39.5,-60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22721 components: - pos: -40.5,-60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22722 components: - pos: -41.5,-60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22723 components: - pos: -39.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22724 components: - pos: -38.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22725 components: - pos: -37.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22726 components: - pos: -36.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22727 components: - pos: -41.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22728 components: - pos: -41.5,-58.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22729 components: - pos: -41.5,-61.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22730 components: - pos: -41.5,-62.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22731 components: - pos: -36.5,-58.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22732 components: - pos: -36.5,-62.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22733 components: - pos: -39.5,-62.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22734 components: - pos: -39.5,-58.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22735 components: - pos: -28.5,-60.5 @@ -41447,127 +34786,91 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22736 components: - pos: -29.5,-60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22737 components: - pos: -29.5,-61.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22738 components: - pos: -29.5,-62.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22739 components: - pos: -29.5,-63.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22740 components: - pos: -30.5,-63.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22741 components: - pos: -29.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22742 components: - pos: -29.5,-58.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22743 components: - pos: -29.5,-57.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22744 components: - pos: -30.5,-57.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22745 components: - pos: -30.5,-60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22746 components: - pos: -31.5,-60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22747 components: - pos: -28.5,-58.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22748 components: - pos: -26.5,-58.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22749 components: - pos: -25.5,-58.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22750 components: - pos: -25.5,-58.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22751 components: - pos: -27.5,-58.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22752 components: - pos: -26.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22753 components: - pos: -26.5,-60.5 @@ -41575,15 +34878,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22754 components: - pos: -26.5,-62.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22755 components: - pos: -26.5,-61.5 @@ -41591,8 +34890,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22756 components: - pos: -24.5,-58.5 @@ -41600,8 +34897,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22757 components: - pos: -23.5,-58.5 @@ -41609,8 +34904,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22758 components: - pos: -22.5,-58.5 @@ -41618,8 +34911,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22759 components: - pos: -21.5,-58.5 @@ -41627,8 +34918,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - proto: CableApcStack entities: - uid: 1637 @@ -41683,29 +34972,21 @@ entities: - pos: -46.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 936 components: - pos: -44.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 1297 components: - pos: -45.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 1301 components: - pos: -46.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3187 components: - pos: -45.5,10.5 @@ -41713,211 +34994,151 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3197 components: - pos: -47.5,9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3532 components: - pos: -44.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3533 components: - pos: -44.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3534 components: - pos: -43.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3535 components: - pos: -42.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3536 components: - pos: -41.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3537 components: - pos: -40.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3538 components: - pos: -39.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3539 components: - pos: -38.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3540 components: - pos: -37.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3541 components: - pos: -36.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3542 components: - pos: -36.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3543 components: - pos: -36.5,9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3544 components: - pos: -36.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3545 components: - pos: -36.5,11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3546 components: - pos: -36.5,12.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3547 components: - pos: -36.5,13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3548 components: - pos: -36.5,14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3549 components: - pos: -36.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3550 components: - pos: -37.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3551 components: - pos: -38.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3552 components: - pos: -39.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3553 components: - pos: -40.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3554 components: - pos: -40.5,16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3555 components: - pos: -40.5,17.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3556 components: - pos: -40.5,18.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3557 components: - pos: -40.5,19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3558 components: - pos: -41.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3559 components: - pos: -42.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3560 components: - pos: -42.5,16.5 @@ -41925,64 +35146,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3561 components: - pos: -42.5,17.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3562 components: - pos: -42.5,18.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3563 components: - pos: -42.5,19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3597 components: - pos: -47.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3654 components: - pos: -47.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3943 components: - pos: -43.5,18.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3944 components: - pos: -44.5,18.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4456 components: - pos: -45.5,18.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4457 components: - pos: -46.5,18.5 @@ -41990,8 +35193,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4458 components: - pos: -46.5,19.5 @@ -41999,8 +35200,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4459 components: - pos: -46.5,20.5 @@ -42008,8 +35207,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4460 components: - pos: -46.5,21.5 @@ -42017,8 +35214,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4461 components: - pos: -46.5,22.5 @@ -42026,8 +35221,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4462 components: - pos: -46.5,23.5 @@ -42035,8 +35228,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4463 components: - pos: -46.5,24.5 @@ -42044,8 +35235,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4464 components: - pos: -46.5,25.5 @@ -42053,8 +35242,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4465 components: - pos: -46.5,26.5 @@ -42062,8 +35249,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4466 components: - pos: -46.5,27.5 @@ -42071,8 +35256,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4467 components: - pos: -47.5,27.5 @@ -42080,8 +35263,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4468 components: - pos: -48.5,27.5 @@ -42089,8 +35270,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4469 components: - pos: -49.5,27.5 @@ -42098,8 +35277,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4470 components: - pos: -50.5,27.5 @@ -42107,8 +35284,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4471 components: - pos: -51.5,27.5 @@ -42116,8 +35291,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4472 components: - pos: -52.5,27.5 @@ -42125,8 +35298,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4473 components: - pos: -53.5,27.5 @@ -42134,8 +35305,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4474 components: - pos: -54.5,27.5 @@ -42143,8 +35312,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4475 components: - pos: -55.5,27.5 @@ -42152,8 +35319,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4476 components: - pos: -56.5,27.5 @@ -42161,8 +35326,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4477 components: - pos: -56.5,28.5 @@ -42170,8 +35333,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4478 components: - pos: -56.5,29.5 @@ -42179,8 +35340,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4479 components: - pos: -56.5,30.5 @@ -42188,8 +35347,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4480 components: - pos: -57.5,30.5 @@ -42197,8 +35354,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4481 components: - pos: -58.5,30.5 @@ -42206,8 +35361,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4482 components: - pos: -59.5,30.5 @@ -42215,8 +35368,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4483 components: - pos: -60.5,30.5 @@ -42224,8 +35375,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4484 components: - pos: -60.5,31.5 @@ -42233,8 +35382,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4485 components: - pos: -60.5,32.5 @@ -42242,8 +35389,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4486 components: - pos: -60.5,33.5 @@ -42251,8 +35396,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4487 components: - pos: -60.5,34.5 @@ -42260,8 +35403,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4488 components: - pos: -50.5,48.5 @@ -42269,8 +35410,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4489 components: - pos: -50.5,47.5 @@ -42278,8 +35417,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4490 components: - pos: -50.5,46.5 @@ -42287,8 +35424,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4491 components: - pos: -50.5,45.5 @@ -42296,8 +35431,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4492 components: - pos: -50.5,44.5 @@ -42305,8 +35438,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4493 components: - pos: -50.5,43.5 @@ -42314,8 +35445,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4494 components: - pos: -51.5,43.5 @@ -42323,8 +35452,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4495 components: - pos: -52.5,43.5 @@ -42332,8 +35459,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4496 components: - pos: -53.5,43.5 @@ -42341,8 +35466,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4497 components: - pos: -54.5,43.5 @@ -42350,8 +35473,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4498 components: - pos: -55.5,43.5 @@ -42359,8 +35480,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4499 components: - pos: -56.5,43.5 @@ -42368,8 +35487,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4500 components: - pos: -57.5,43.5 @@ -42377,8 +35494,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4501 components: - pos: -58.5,43.5 @@ -42386,8 +35501,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4502 components: - pos: -59.5,43.5 @@ -42395,8 +35508,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4503 components: - pos: -60.5,43.5 @@ -42404,8 +35515,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4504 components: - pos: -60.5,42.5 @@ -42413,8 +35522,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4505 components: - pos: -60.5,41.5 @@ -42422,8 +35529,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4506 components: - pos: -60.5,40.5 @@ -42431,8 +35536,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4507 components: - pos: -60.5,39.5 @@ -42440,8 +35543,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4508 components: - pos: -60.5,35.5 @@ -42449,8 +35550,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4509 components: - pos: -60.5,36.5 @@ -42458,8 +35557,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4510 components: - pos: -60.5,37.5 @@ -42467,8 +35564,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4511 components: - pos: -60.5,38.5 @@ -42476,8 +35571,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5085 components: - pos: -24.5,41.5 @@ -42485,29 +35578,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5089 components: - pos: -35.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5090 components: - pos: -34.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5091 components: - pos: -33.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5092 components: - pos: -32.5,15.5 @@ -42515,8 +35600,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5093 components: - pos: -31.5,15.5 @@ -42524,8 +35607,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5094 components: - pos: -31.5,16.5 @@ -42533,8 +35614,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5095 components: - pos: -31.5,17.5 @@ -42542,8 +35621,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5096 components: - pos: -31.5,18.5 @@ -42551,8 +35628,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5097 components: - pos: -31.5,19.5 @@ -42560,8 +35635,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5098 components: - pos: -30.5,19.5 @@ -42569,8 +35642,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5099 components: - pos: -29.5,19.5 @@ -42578,8 +35649,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5100 components: - pos: -28.5,19.5 @@ -42587,8 +35656,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5101 components: - pos: -27.5,19.5 @@ -42596,8 +35663,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5102 components: - pos: -26.5,19.5 @@ -42605,8 +35670,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5103 components: - pos: -25.5,19.5 @@ -42614,8 +35677,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5104 components: - pos: -24.5,19.5 @@ -42623,8 +35684,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5105 components: - pos: -23.5,19.5 @@ -42632,8 +35691,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5106 components: - pos: -23.5,20.5 @@ -42641,8 +35698,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5107 components: - pos: -22.5,20.5 @@ -42650,8 +35705,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5108 components: - pos: -21.5,20.5 @@ -42659,8 +35712,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5109 components: - pos: -20.5,20.5 @@ -42668,8 +35719,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5110 components: - pos: -19.5,20.5 @@ -42677,8 +35726,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5111 components: - pos: -18.5,20.5 @@ -42686,8 +35733,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5112 components: - pos: -17.5,20.5 @@ -42695,8 +35740,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5113 components: - pos: -16.5,20.5 @@ -42704,8 +35747,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5114 components: - pos: -15.5,20.5 @@ -42713,8 +35754,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5115 components: - pos: -14.5,20.5 @@ -42722,8 +35761,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5116 components: - pos: -14.5,22.5 @@ -42731,8 +35768,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5117 components: - pos: -14.5,21.5 @@ -42740,8 +35775,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5118 components: - pos: -14.5,23.5 @@ -42749,169 +35782,121 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5119 components: - pos: -14.5,24.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5120 components: - pos: -14.5,25.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5121 components: - pos: -14.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5122 components: - pos: -14.5,27.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5123 components: - pos: -14.5,28.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5124 components: - pos: -14.5,29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5125 components: - pos: -14.5,30.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5126 components: - pos: -14.5,31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5127 components: - pos: -14.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5128 components: - pos: -14.5,33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5129 components: - pos: -14.5,34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5130 components: - pos: -14.5,35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5131 components: - pos: -14.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5132 components: - pos: -14.5,37.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5133 components: - pos: -15.5,37.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5134 components: - pos: -16.5,37.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5135 components: - pos: -17.5,37.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5136 components: - pos: -18.5,37.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5137 components: - pos: -20.5,37.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5138 components: - pos: -19.5,37.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5139 components: - pos: -21.5,37.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5140 components: - pos: -22.5,37.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5141 components: - pos: -22.5,38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5142 components: - pos: -22.5,39.5 @@ -42919,8 +35904,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5143 components: - pos: -22.5,40.5 @@ -42928,8 +35911,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5144 components: - pos: -22.5,41.5 @@ -42937,8 +35918,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5145 components: - pos: -22.5,42.5 @@ -42946,8 +35925,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5146 components: - pos: -23.5,42.5 @@ -42955,8 +35932,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5147 components: - pos: -24.5,42.5 @@ -42964,183 +35939,131 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5148 components: - pos: -49.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5149 components: - pos: -48.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5150 components: - pos: -47.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5151 components: - pos: -46.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5152 components: - pos: -46.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5153 components: - pos: -45.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5154 components: - pos: -43.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5155 components: - pos: -44.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5156 components: - pos: -42.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5157 components: - pos: -41.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5158 components: - pos: -40.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5159 components: - pos: -39.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5160 components: - pos: -38.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5161 components: - pos: -37.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5162 components: - pos: -36.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5163 components: - pos: -35.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5164 components: - pos: -34.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5165 components: - pos: -33.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5166 components: - pos: -32.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5167 components: - pos: -32.5,45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5168 components: - pos: -32.5,46.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5169 components: - pos: -30.5,46.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5170 components: - pos: -31.5,46.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5171 components: - pos: -29.5,46.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5172 components: - pos: -28.5,46.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5173 components: - pos: -27.5,46.5 @@ -43148,8 +36071,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5174 components: - pos: -26.5,46.5 @@ -43157,8 +36078,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5175 components: - pos: -25.5,46.5 @@ -43166,8 +36085,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5176 components: - pos: -24.5,46.5 @@ -43175,8 +36092,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5177 components: - pos: -23.5,46.5 @@ -43184,8 +36099,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5178 components: - pos: -22.5,46.5 @@ -43193,8 +36106,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5179 components: - pos: -22.5,45.5 @@ -43202,8 +36113,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5180 components: - pos: -22.5,44.5 @@ -43211,8 +36120,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5181 components: - pos: -22.5,43.5 @@ -43220,8 +36127,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5240 components: - pos: -24.5,-58.5 @@ -43229,330 +36134,236 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5507 components: - pos: -14.5,38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5508 components: - pos: -14.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5509 components: - pos: -13.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5510 components: - pos: -12.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5511 components: - pos: -11.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5512 components: - pos: -9.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5513 components: - pos: -9.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5514 components: - pos: -10.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5515 components: - pos: -8.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5516 components: - pos: -7.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5517 components: - pos: -6.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5518 components: - pos: -5.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5519 components: - pos: -4.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5520 components: - pos: -3.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5521 components: - pos: -3.5,38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5522 components: - pos: -3.5,37.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5523 components: - pos: -3.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5524 components: - pos: -3.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5525 components: - pos: -3.5,35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5526 components: - pos: -3.5,34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5527 components: - pos: -3.5,33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5528 components: - pos: -3.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5529 components: - pos: -2.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5530 components: - pos: -1.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5531 components: - pos: -0.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5532 components: - pos: 0.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5533 components: - pos: 1.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5534 components: - pos: 2.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5535 components: - pos: 3.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5536 components: - pos: 5.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5537 components: - pos: 5.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5538 components: - pos: 5.5,33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5539 components: - pos: 4.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5540 components: - pos: 6.5,33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5541 components: - pos: 7.5,33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5542 components: - pos: 8.5,33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5543 components: - pos: 9.5,33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5544 components: - pos: 9.5,34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5545 components: - pos: 9.5,35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5546 components: - pos: 9.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5547 components: - pos: 9.5,37.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5548 components: - pos: 9.5,38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5549 components: - pos: 9.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5550 components: - pos: 10.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5551 components: - pos: 11.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5552 components: - pos: 12.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5553 components: - pos: 12.5,40.5 @@ -43560,8 +36371,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5554 components: - pos: 12.5,41.5 @@ -43569,8 +36378,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5555 components: - pos: 12.5,42.5 @@ -43578,8 +36385,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5634 components: - pos: -18.5,-58.5 @@ -43587,8 +36392,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5635 components: - pos: -23.5,-58.5 @@ -43596,8 +36399,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5636 components: - pos: -19.5,-58.5 @@ -43605,8 +36406,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5722 components: - pos: -22.5,-58.5 @@ -43614,8 +36413,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5732 components: - pos: -20.5,-58.5 @@ -43623,8 +36420,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6095 components: - pos: -21.5,-58.5 @@ -43632,8 +36427,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6271 components: - pos: -29.5,20.5 @@ -43641,8 +36434,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6272 components: - pos: -3.5,18.5 @@ -43650,127 +36441,91 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6387 components: - pos: 10.5,33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6388 components: - pos: 10.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6389 components: - pos: 10.5,31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6390 components: - pos: 10.5,30.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6391 components: - pos: 10.5,29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6392 components: - pos: 10.5,28.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6393 components: - pos: 10.5,27.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6394 components: - pos: 11.5,27.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6395 components: - pos: 12.5,27.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6396 components: - pos: 13.5,27.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6397 components: - pos: 14.5,27.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6398 components: - pos: 15.5,27.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6399 components: - pos: 16.5,27.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6400 components: - pos: 17.5,27.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6401 components: - pos: 18.5,27.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6402 components: - pos: 18.5,28.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6403 components: - pos: 18.5,29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6404 components: - pos: 19.5,29.5 @@ -43778,8 +36533,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6405 components: - pos: 19.5,30.5 @@ -43787,8 +36540,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6406 components: - pos: 19.5,31.5 @@ -43796,127 +36547,91 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7615 components: - pos: -44.5,6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7616 components: - pos: -44.5,5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7617 components: - pos: -44.5,4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7618 components: - pos: -44.5,3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7619 components: - pos: -44.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7620 components: - pos: -44.5,1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7621 components: - pos: -44.5,0.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7622 components: - pos: -44.5,-0.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7623 components: - pos: -44.5,-1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7624 components: - pos: -44.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7625 components: - pos: -44.5,-3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7626 components: - pos: -44.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7627 components: - pos: -44.5,-5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7628 components: - pos: -44.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7629 components: - pos: -44.5,-7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7630 components: - pos: -44.5,-8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7631 components: - pos: -43.5,-8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7632 components: - pos: -42.5,-8.5 @@ -43924,8 +36639,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7633 components: - pos: -41.5,-8.5 @@ -43933,8 +36646,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7634 components: - pos: -41.5,-7.5 @@ -43942,8 +36653,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7635 components: - pos: -41.5,-6.5 @@ -43951,8 +36660,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7636 components: - pos: -41.5,-5.5 @@ -43960,8 +36667,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7637 components: - pos: -41.5,-4.5 @@ -43969,8 +36674,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7638 components: - pos: -41.5,-3.5 @@ -43978,8 +36681,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7639 components: - pos: -41.5,-2.5 @@ -43987,8 +36688,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7640 components: - pos: -40.5,-2.5 @@ -43996,8 +36695,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7641 components: - pos: -39.5,-2.5 @@ -44005,8 +36702,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7642 components: - pos: -38.5,-2.5 @@ -44014,8 +36709,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7643 components: - pos: -37.5,-2.5 @@ -44023,8 +36716,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7644 components: - pos: -37.5,-1.5 @@ -44032,106 +36723,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7645 components: - pos: -36.5,6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7646 components: - pos: -36.5,5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7647 components: - pos: -36.5,4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7648 components: - pos: -36.5,3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7649 components: - pos: -36.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7650 components: - pos: -36.5,1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7651 components: - pos: -35.5,1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7652 components: - pos: -34.5,1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7653 components: - pos: -34.5,0.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7654 components: - pos: -34.5,-0.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7655 components: - pos: -34.5,-1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7656 components: - pos: -34.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7657 components: - pos: -35.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7658 components: - pos: -36.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7659 components: - pos: -41.5,-9.5 @@ -44139,8 +36800,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7660 components: - pos: -41.5,-10.5 @@ -44148,8 +36807,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7661 components: - pos: -41.5,-11.5 @@ -44157,8 +36814,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7662 components: - pos: -41.5,-12.5 @@ -44166,8 +36821,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7663 components: - pos: -41.5,-13.5 @@ -44175,8 +36828,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7664 components: - pos: -41.5,-15.5 @@ -44184,8 +36835,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7665 components: - pos: -41.5,-14.5 @@ -44193,8 +36842,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7666 components: - pos: -41.5,-16.5 @@ -44202,8 +36849,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7667 components: - pos: -40.5,-16.5 @@ -44211,8 +36856,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7668 components: - pos: -39.5,-16.5 @@ -44220,8 +36863,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7669 components: - pos: -38.5,-16.5 @@ -44229,8 +36870,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7670 components: - pos: -37.5,-16.5 @@ -44238,8 +36877,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7671 components: - pos: -36.5,-16.5 @@ -44247,8 +36884,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7672 components: - pos: -36.5,-17.5 @@ -44256,8 +36891,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7673 components: - pos: -36.5,-18.5 @@ -44265,8 +36898,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7674 components: - pos: -36.5,-19.5 @@ -44274,8 +36905,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7675 components: - pos: -36.5,-21.5 @@ -44283,8 +36912,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7676 components: - pos: -36.5,-20.5 @@ -44292,8 +36919,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7677 components: - pos: -36.5,-22.5 @@ -44301,8 +36926,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7678 components: - pos: -36.5,-23.5 @@ -44310,8 +36933,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7679 components: - pos: -36.5,-24.5 @@ -44319,8 +36940,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7680 components: - pos: -36.5,-25.5 @@ -44328,8 +36947,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7681 components: - pos: -36.5,-26.5 @@ -44337,8 +36954,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7682 components: - pos: -36.5,-27.5 @@ -44346,8 +36961,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7683 components: - pos: -36.5,-28.5 @@ -44355,8 +36968,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7684 components: - pos: -35.5,-28.5 @@ -44364,8 +36975,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7685 components: - pos: -34.5,-28.5 @@ -44373,8 +36982,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7686 components: - pos: -33.5,-28.5 @@ -44382,8 +36989,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7687 components: - pos: -32.5,-28.5 @@ -44391,8 +36996,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7688 components: - pos: -31.5,-28.5 @@ -44400,8 +37003,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7689 components: - pos: -30.5,-28.5 @@ -44409,8 +37010,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7690 components: - pos: -29.5,-28.5 @@ -44418,8 +37017,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7691 components: - pos: -28.5,-28.5 @@ -44427,8 +37024,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7692 components: - pos: -27.5,-28.5 @@ -44436,8 +37031,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7693 components: - pos: -26.5,-28.5 @@ -44445,8 +37038,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7694 components: - pos: -25.5,-28.5 @@ -44454,8 +37045,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7695 components: - pos: -22.5,-25.5 @@ -44463,8 +37052,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7696 components: - pos: -23.5,-25.5 @@ -44472,8 +37059,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7697 components: - pos: -24.5,-28.5 @@ -44481,8 +37066,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7698 components: - pos: -24.5,-27.5 @@ -44490,8 +37073,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7699 components: - pos: -24.5,-26.5 @@ -44499,8 +37080,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7700 components: - pos: -24.5,-25.5 @@ -44508,8 +37087,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7701 components: - pos: -21.5,-25.5 @@ -44517,8 +37094,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7702 components: - pos: -20.5,-25.5 @@ -44526,8 +37101,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7703 components: - pos: -19.5,-25.5 @@ -44535,8 +37108,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7704 components: - pos: -18.5,-25.5 @@ -44544,8 +37115,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7705 components: - pos: -17.5,-25.5 @@ -44553,8 +37122,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7706 components: - pos: -16.5,-25.5 @@ -44562,8 +37129,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7707 components: - pos: -15.5,-25.5 @@ -44571,8 +37136,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7708 components: - pos: -14.5,-25.5 @@ -44580,8 +37143,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7775 components: - pos: -13.5,-25.5 @@ -44589,8 +37150,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7776 components: - pos: -12.5,-25.5 @@ -44598,8 +37157,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7777 components: - pos: -11.5,-25.5 @@ -44607,8 +37164,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7778 components: - pos: -10.5,-25.5 @@ -44616,8 +37171,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7779 components: - pos: -9.5,-25.5 @@ -44625,8 +37178,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7780 components: - pos: -8.5,-25.5 @@ -44634,8 +37185,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7781 components: - pos: -7.5,-25.5 @@ -44643,8 +37192,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7782 components: - pos: -6.5,-25.5 @@ -44652,8 +37199,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7783 components: - pos: -5.5,-25.5 @@ -44661,8 +37206,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7784 components: - pos: -5.5,-24.5 @@ -44670,8 +37213,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7785 components: - pos: -5.5,-23.5 @@ -44679,8 +37220,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7786 components: - pos: -5.5,-22.5 @@ -44688,8 +37227,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7787 components: - pos: -5.5,-21.5 @@ -44697,8 +37234,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7788 components: - pos: -5.5,-20.5 @@ -44706,8 +37241,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7789 components: - pos: -5.5,-19.5 @@ -44715,8 +37248,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7790 components: - pos: -5.5,-19.5 @@ -44724,8 +37255,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7791 components: - pos: -5.5,-18.5 @@ -44733,8 +37262,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7792 components: - pos: -5.5,-17.5 @@ -44742,8 +37269,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7793 components: - pos: -5.5,-16.5 @@ -44751,8 +37276,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7794 components: - pos: -5.5,-15.5 @@ -44760,8 +37283,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7795 components: - pos: -5.5,-14.5 @@ -44769,8 +37290,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7796 components: - pos: -4.5,-14.5 @@ -44778,8 +37297,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7797 components: - pos: -3.5,-14.5 @@ -44787,8 +37304,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7798 components: - pos: -2.5,-14.5 @@ -44796,8 +37311,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7799 components: - pos: -1.5,-14.5 @@ -44805,8 +37318,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7800 components: - pos: -0.5,-14.5 @@ -44814,8 +37325,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7801 components: - pos: -0.5,-13.5 @@ -44823,8 +37332,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7802 components: - pos: -0.5,-12.5 @@ -44832,8 +37339,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7803 components: - pos: -0.5,-11.5 @@ -44841,15 +37346,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8402 components: - pos: 3.5,-13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9293 components: - pos: 3.5,-37.5 @@ -44857,50 +37358,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9484 components: - pos: -8.5,-33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9485 components: - pos: -7.5,-33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9486 components: - pos: -6.5,-33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9490 components: - pos: -8.5,-35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9491 components: - pos: -7.5,-35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9492 components: - pos: -6.5,-35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9493 components: - pos: -8.5,-34.5 @@ -44908,8 +37395,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9494 components: - pos: -6.5,-34.5 @@ -44917,8 +37402,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9495 components: - pos: -7.5,-34.5 @@ -44926,155 +37409,111 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9499 components: - pos: -9.5,-33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9500 components: - pos: -7.5,-36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9501 components: - pos: -7.5,-37.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9502 components: - pos: -7.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9503 components: - pos: -6.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9504 components: - pos: -5.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9505 components: - pos: -4.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9506 components: - pos: -3.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9507 components: - pos: -10.5,-33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9508 components: - pos: -11.5,-33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9509 components: - pos: -12.5,-33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9510 components: - pos: -12.5,-34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9511 components: - pos: -12.5,-35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9512 components: - pos: -12.5,-36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9513 components: - pos: -12.5,-37.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9514 components: - pos: -12.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9515 components: - pos: -12.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9516 components: - pos: -12.5,-39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9517 components: - pos: -12.5,-32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9518 components: - pos: -12.5,-31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9519 components: - pos: -12.5,-30.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9520 components: - pos: -12.5,-29.5 @@ -45082,8 +37521,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9521 components: - pos: -11.5,-29.5 @@ -45091,8 +37528,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9522 components: - pos: -9.5,-29.5 @@ -45100,8 +37535,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9523 components: - pos: -10.5,-29.5 @@ -45109,8 +37542,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9524 components: - pos: -8.5,-29.5 @@ -45118,8 +37549,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9525 components: - pos: -7.5,-29.5 @@ -45127,8 +37556,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9526 components: - pos: -6.5,-29.5 @@ -45136,295 +37563,211 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9527 components: - pos: -5.5,-29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9528 components: - pos: -13.5,-29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9529 components: - pos: -2.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9530 components: - pos: -1.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9531 components: - pos: -0.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9532 components: - pos: 0.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9533 components: - pos: 1.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9534 components: - pos: 1.5,-37.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9535 components: - pos: 1.5,-36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9536 components: - pos: 1.5,-35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9537 components: - pos: 1.5,-34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9538 components: - pos: 1.5,-33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9539 components: - pos: 1.5,-32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9540 components: - pos: 1.5,-31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9541 components: - pos: 1.5,-30.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9542 components: - pos: 1.5,-29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9543 components: - pos: 0.5,-29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9544 components: - pos: -0.5,-29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9545 components: - pos: -1.5,-29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9546 components: - pos: -2.5,-29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9547 components: - pos: -2.5,-27.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9548 components: - pos: -2.5,-26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9549 components: - pos: -2.5,-28.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9550 components: - pos: -2.5,-25.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9551 components: - pos: -2.5,-24.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9552 components: - pos: -3.5,-24.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9553 components: - pos: -4.5,-24.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9554 components: - pos: -2.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9555 components: - pos: -2.5,-22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9556 components: - pos: -2.5,-21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9557 components: - pos: -2.5,-20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9558 components: - pos: -2.5,-19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9559 components: - pos: -2.5,-18.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9560 components: - pos: -2.5,-17.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9561 components: - pos: -2.5,-16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9562 components: - pos: -2.5,-15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9571 components: - pos: 2.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9572 components: - pos: 3.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9594 components: - pos: 3.5,-11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9595 components: - pos: 3.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9792 components: - pos: -12.5,-44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9793 components: - pos: -12.5,-42.5 @@ -45432,22 +37775,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9795 components: - pos: -17.5,-41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9796 components: - pos: -12.5,-45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9797 components: - pos: -12.5,-46.5 @@ -45455,8 +37792,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9798 components: - pos: -12.5,-47.5 @@ -45464,8 +37799,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9799 components: - pos: -12.5,-48.5 @@ -45473,8 +37806,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9800 components: - pos: -12.5,-49.5 @@ -45482,8 +37813,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9801 components: - pos: -12.5,-50.5 @@ -45491,8 +37820,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9802 components: - pos: -12.5,-51.5 @@ -45500,8 +37827,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9803 components: - pos: -12.5,-52.5 @@ -45509,8 +37834,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9804 components: - pos: -12.5,-53.5 @@ -45518,8 +37841,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9805 components: - pos: -12.5,-54.5 @@ -45527,36 +37848,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9806 components: - pos: -11.5,-51.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9807 components: - pos: -10.5,-51.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9808 components: - pos: -10.5,-50.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9809 components: - pos: -10.5,-52.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9810 components: - pos: -11.5,-54.5 @@ -45564,8 +37875,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9811 components: - pos: -10.5,-54.5 @@ -45573,8 +37882,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9812 components: - pos: -9.5,-54.5 @@ -45582,8 +37889,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9813 components: - pos: -8.5,-54.5 @@ -45591,8 +37896,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9814 components: - pos: -7.5,-54.5 @@ -45600,8 +37903,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9815 components: - pos: -6.5,-54.5 @@ -45609,8 +37910,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9816 components: - pos: -5.5,-54.5 @@ -45618,8 +37917,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9817 components: - pos: -4.5,-54.5 @@ -45627,8 +37924,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9818 components: - pos: -3.5,-54.5 @@ -45636,8 +37931,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9819 components: - pos: -2.5,-54.5 @@ -45645,8 +37938,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9820 components: - pos: -2.5,-53.5 @@ -45654,8 +37945,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9821 components: - pos: -2.5,-52.5 @@ -45663,8 +37952,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9822 components: - pos: -2.5,-51.5 @@ -45672,36 +37959,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9823 components: - pos: -3.5,-51.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9824 components: - pos: -4.5,-51.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9825 components: - pos: -4.5,-50.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9826 components: - pos: -4.5,-52.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9827 components: - pos: -2.5,-50.5 @@ -45709,8 +37986,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9828 components: - pos: -2.5,-49.5 @@ -45718,8 +37993,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9829 components: - pos: -2.5,-48.5 @@ -45727,8 +38000,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9830 components: - pos: -2.5,-47.5 @@ -45736,8 +38007,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9831 components: - pos: -2.5,-46.5 @@ -45745,225 +38014,161 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9832 components: - pos: -2.5,-45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9833 components: - pos: -2.5,-44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9834 components: - pos: -4.5,-44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9835 components: - pos: -3.5,-44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9836 components: - pos: -5.5,-44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9837 components: - pos: -6.5,-44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9838 components: - pos: -8.5,-44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9839 components: - pos: -7.5,-44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9840 components: - pos: -9.5,-44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9841 components: - pos: -10.5,-44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9842 components: - pos: -11.5,-44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 9999 components: - pos: -17.5,-42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10151 components: - pos: -13.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10152 components: - pos: -14.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10153 components: - pos: -15.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10154 components: - pos: -16.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10155 components: - pos: -17.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10156 components: - pos: -7.5,-43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10157 components: - pos: -7.5,-42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10158 components: - pos: -7.5,-41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10159 components: - pos: -7.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10160 components: - pos: -8.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10161 components: - pos: -9.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10162 components: - pos: -10.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10163 components: - pos: -11.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10164 components: - pos: -17.5,-43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10165 components: - pos: -17.5,-44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10166 components: - pos: -17.5,-45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10167 components: - pos: -17.5,-46.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10168 components: - pos: -17.5,-47.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10169 components: - pos: -17.5,-48.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10170 components: - pos: -17.5,-49.5 @@ -45971,8 +38176,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10171 components: - pos: -17.5,-50.5 @@ -45980,8 +38183,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10172 components: - pos: -17.5,-51.5 @@ -45989,8 +38190,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10173 components: - pos: -17.5,-52.5 @@ -45998,8 +38197,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10174 components: - pos: -17.5,-53.5 @@ -46007,8 +38204,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10175 components: - pos: -17.5,-54.5 @@ -46016,8 +38211,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10176 components: - pos: -17.5,-55.5 @@ -46025,8 +38218,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10177 components: - pos: -17.5,-56.5 @@ -46034,8 +38225,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10178 components: - pos: -17.5,-57.5 @@ -46043,8 +38232,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10179 components: - pos: -17.5,-58.5 @@ -46052,8 +38239,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10180 components: - pos: -17.5,-59.5 @@ -46061,8 +38246,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10181 components: - pos: -17.5,-60.5 @@ -46070,8 +38253,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10182 components: - pos: -17.5,-61.5 @@ -46079,8 +38260,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10183 components: - pos: -17.5,-62.5 @@ -46088,8 +38267,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10184 components: - pos: -17.5,-63.5 @@ -46097,8 +38274,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10185 components: - pos: -17.5,-64.5 @@ -46106,8 +38281,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10186 components: - pos: -17.5,-65.5 @@ -46115,8 +38288,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10187 components: - pos: -17.5,-66.5 @@ -46124,8 +38295,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10188 components: - pos: -17.5,-67.5 @@ -46133,8 +38302,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10189 components: - pos: -17.5,-69.5 @@ -46142,8 +38309,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10190 components: - pos: -17.5,-70.5 @@ -46151,8 +38316,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10191 components: - pos: -17.5,-71.5 @@ -46160,8 +38323,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10192 components: - pos: -17.5,-72.5 @@ -46169,8 +38330,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10193 components: - pos: -17.5,-73.5 @@ -46178,8 +38337,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10194 components: - pos: -17.5,-74.5 @@ -46187,8 +38344,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10195 components: - pos: -17.5,-75.5 @@ -46196,8 +38351,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10196 components: - pos: -16.5,-75.5 @@ -46205,8 +38358,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10197 components: - pos: -15.5,-75.5 @@ -46214,8 +38365,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10198 components: - pos: -14.5,-75.5 @@ -46223,8 +38372,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10199 components: - pos: -12.5,-75.5 @@ -46232,8 +38379,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10200 components: - pos: -13.5,-75.5 @@ -46241,8 +38386,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10201 components: - pos: -11.5,-75.5 @@ -46250,8 +38393,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10202 components: - pos: -10.5,-75.5 @@ -46259,8 +38400,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10203 components: - pos: -9.5,-75.5 @@ -46268,8 +38407,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10204 components: - pos: -9.5,-76.5 @@ -46277,8 +38414,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10205 components: - pos: -9.5,-77.5 @@ -46286,8 +38421,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10206 components: - pos: -9.5,-78.5 @@ -46295,8 +38428,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10207 components: - pos: -9.5,-79.5 @@ -46304,8 +38435,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10208 components: - pos: -9.5,-80.5 @@ -46313,8 +38442,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10209 components: - pos: -9.5,-81.5 @@ -46322,8 +38449,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10210 components: - pos: -9.5,-82.5 @@ -46331,8 +38456,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10211 components: - pos: -9.5,-84.5 @@ -46340,8 +38463,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10212 components: - pos: -9.5,-83.5 @@ -46349,8 +38470,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10213 components: - pos: -9.5,-85.5 @@ -46358,8 +38477,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10214 components: - pos: -9.5,-86.5 @@ -46367,8 +38484,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10215 components: - pos: -9.5,-87.5 @@ -46376,8 +38491,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10216 components: - pos: -9.5,-88.5 @@ -46385,8 +38498,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10217 components: - pos: -9.5,-89.5 @@ -46394,8 +38505,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10218 components: - pos: -9.5,-90.5 @@ -46403,8 +38512,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10219 components: - pos: -9.5,-91.5 @@ -46412,8 +38519,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10220 components: - pos: -10.5,-91.5 @@ -46421,8 +38526,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10221 components: - pos: -11.5,-91.5 @@ -46430,8 +38533,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10222 components: - pos: -12.5,-91.5 @@ -46439,8 +38540,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10223 components: - pos: -13.5,-91.5 @@ -46448,8 +38547,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10224 components: - pos: -14.5,-91.5 @@ -46457,8 +38554,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10225 components: - pos: -15.5,-91.5 @@ -46466,8 +38561,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10226 components: - pos: -16.5,-91.5 @@ -46475,8 +38568,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10227 components: - pos: -17.5,-91.5 @@ -46484,8 +38575,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10228 components: - pos: -18.5,-91.5 @@ -46493,8 +38582,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10229 components: - pos: -19.5,-91.5 @@ -46502,8 +38589,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10230 components: - pos: -20.5,-91.5 @@ -46511,8 +38596,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10231 components: - pos: -21.5,-91.5 @@ -46520,8 +38603,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10232 components: - pos: -22.5,-91.5 @@ -46529,8 +38610,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10233 components: - pos: -23.5,-91.5 @@ -46538,8 +38617,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10234 components: - pos: -24.5,-91.5 @@ -46547,8 +38624,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10235 components: - pos: -25.5,-91.5 @@ -46556,8 +38631,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10236 components: - pos: -25.5,-90.5 @@ -46565,8 +38638,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10237 components: - pos: -25.5,-89.5 @@ -46574,8 +38645,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10238 components: - pos: -25.5,-88.5 @@ -46583,8 +38652,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10239 components: - pos: -25.5,-87.5 @@ -46592,8 +38659,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10240 components: - pos: -25.5,-86.5 @@ -46601,8 +38666,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10241 components: - pos: -25.5,-85.5 @@ -46610,8 +38673,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10242 components: - pos: -25.5,-84.5 @@ -46619,8 +38680,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10243 components: - pos: -25.5,-83.5 @@ -46628,8 +38687,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10244 components: - pos: -25.5,-82.5 @@ -46637,8 +38694,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10245 components: - pos: -25.5,-81.5 @@ -46646,8 +38701,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10246 components: - pos: -25.5,-80.5 @@ -46655,8 +38708,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10247 components: - pos: -26.5,-83.5 @@ -46664,8 +38715,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10248 components: - pos: -17.5,-92.5 @@ -46673,8 +38722,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10249 components: - pos: -8.5,-83.5 @@ -46682,8 +38729,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10250 components: - pos: -25.5,-79.5 @@ -46691,8 +38736,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10251 components: - pos: -25.5,-78.5 @@ -46700,8 +38743,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10252 components: - pos: -25.5,-77.5 @@ -46709,8 +38750,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10253 components: - pos: -25.5,-76.5 @@ -46718,8 +38757,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10254 components: - pos: -25.5,-75.5 @@ -46727,8 +38764,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10255 components: - pos: -24.5,-75.5 @@ -46736,8 +38771,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10256 components: - pos: -23.5,-75.5 @@ -46745,8 +38778,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10257 components: - pos: -22.5,-75.5 @@ -46754,8 +38785,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10258 components: - pos: -21.5,-75.5 @@ -46763,8 +38792,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10259 components: - pos: -20.5,-75.5 @@ -46772,8 +38799,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10260 components: - pos: -19.5,-75.5 @@ -46781,8 +38806,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10261 components: - pos: -18.5,-75.5 @@ -46790,8 +38813,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10535 components: - pos: -16.5,-51.5 @@ -46799,8 +38820,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11378 components: - pos: 15.5,4.5 @@ -46808,8 +38827,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11379 components: - pos: 15.5,5.5 @@ -46817,8 +38834,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11380 components: - pos: 15.5,6.5 @@ -46826,8 +38841,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11381 components: - pos: 15.5,7.5 @@ -46835,8 +38848,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11382 components: - pos: 14.5,7.5 @@ -46844,8 +38855,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11383 components: - pos: 13.5,7.5 @@ -46853,8 +38862,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11384 components: - pos: 12.5,7.5 @@ -46862,8 +38869,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11385 components: - pos: 12.5,6.5 @@ -46871,190 +38876,136 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11386 components: - pos: 12.5,5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11387 components: - pos: 12.5,4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11388 components: - pos: 12.5,3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11389 components: - pos: 12.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11390 components: - pos: 12.5,1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11391 components: - pos: 12.5,0.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11392 components: - pos: 12.5,-0.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11393 components: - pos: 12.5,-1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11394 components: - pos: 12.5,-3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11395 components: - pos: 12.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11396 components: - pos: 12.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11397 components: - pos: 12.5,-5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11398 components: - pos: 12.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11399 components: - pos: 12.5,-7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11400 components: - pos: 12.5,-8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11401 components: - pos: 12.5,-9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11402 components: - pos: 12.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11403 components: - pos: 11.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11404 components: - pos: 10.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11405 components: - pos: 9.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11406 components: - pos: 8.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11407 components: - pos: 7.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11408 components: - pos: 6.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11409 components: - pos: 5.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11410 components: - pos: 4.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11415 components: - pos: 3.5,-14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11416 components: - pos: 2.5,-14.5 @@ -47062,8 +39013,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11417 components: - pos: 1.5,-14.5 @@ -47071,8 +39020,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11418 components: - pos: 0.5,-14.5 @@ -47080,8 +39027,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11434 components: - pos: 3.5,-12.5 @@ -47089,8 +39034,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13842 components: - pos: 43.5,14.5 @@ -47098,8 +39041,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13843 components: - pos: 42.5,10.5 @@ -47107,8 +39048,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13844 components: - pos: 43.5,12.5 @@ -47116,8 +39055,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14609 components: - pos: 16.5,7.5 @@ -47125,8 +39062,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14610 components: - pos: 17.5,5.5 @@ -47134,8 +39069,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14611 components: - pos: 17.5,7.5 @@ -47143,8 +39076,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14612 components: - pos: 17.5,6.5 @@ -47152,8 +39083,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14613 components: - pos: 18.5,5.5 @@ -47161,8 +39090,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14614 components: - pos: 19.5,5.5 @@ -47170,8 +39097,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14615 components: - pos: 20.5,5.5 @@ -47179,8 +39104,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14616 components: - pos: 21.5,5.5 @@ -47188,8 +39111,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14617 components: - pos: 22.5,5.5 @@ -47197,8 +39118,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14618 components: - pos: 23.5,5.5 @@ -47206,8 +39125,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14619 components: - pos: 24.5,5.5 @@ -47215,8 +39132,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14620 components: - pos: 25.5,5.5 @@ -47224,8 +39139,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14621 components: - pos: 26.5,5.5 @@ -47233,8 +39146,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14622 components: - pos: 27.5,5.5 @@ -47242,8 +39153,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14623 components: - pos: 28.5,5.5 @@ -47251,8 +39160,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14624 components: - pos: 29.5,5.5 @@ -47260,8 +39167,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14625 components: - pos: 30.5,5.5 @@ -47269,8 +39174,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14626 components: - pos: 31.5,5.5 @@ -47278,8 +39181,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14627 components: - pos: 32.5,5.5 @@ -47287,8 +39188,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14628 components: - pos: 33.5,5.5 @@ -47296,8 +39195,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14629 components: - pos: 34.5,5.5 @@ -47305,8 +39202,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14630 components: - pos: 35.5,5.5 @@ -47314,8 +39209,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14631 components: - pos: 36.5,5.5 @@ -47323,8 +39216,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14632 components: - pos: 37.5,5.5 @@ -47332,8 +39223,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14633 components: - pos: 38.5,5.5 @@ -47341,8 +39230,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14634 components: - pos: 39.5,5.5 @@ -47350,8 +39237,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14635 components: - pos: 40.5,5.5 @@ -47359,8 +39244,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14636 components: - pos: 41.5,5.5 @@ -47368,8 +39251,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14637 components: - pos: 42.5,5.5 @@ -47377,8 +39258,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14638 components: - pos: 42.5,6.5 @@ -47386,8 +39265,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14639 components: - pos: 42.5,7.5 @@ -47395,8 +39272,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14640 components: - pos: 42.5,8.5 @@ -47404,8 +39279,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14641 components: - pos: 42.5,9.5 @@ -47413,8 +39286,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14644 components: - pos: 43.5,15.5 @@ -47422,8 +39293,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14645 components: - pos: 43.5,11.5 @@ -47431,8 +39300,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14649 components: - pos: 42.5,17.5 @@ -47440,8 +39307,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14650 components: - pos: 41.5,17.5 @@ -47449,8 +39314,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14651 components: - pos: 40.5,17.5 @@ -47458,8 +39321,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14652 components: - pos: 39.5,17.5 @@ -47467,8 +39328,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14653 components: - pos: 38.5,17.5 @@ -47476,8 +39335,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14654 components: - pos: 37.5,17.5 @@ -47485,8 +39342,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14655 components: - pos: 36.5,17.5 @@ -47494,8 +39349,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14656 components: - pos: 35.5,17.5 @@ -47503,176 +39356,126 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14657 components: - pos: 20.5,30.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14658 components: - pos: 21.5,30.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14659 components: - pos: 22.5,30.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14660 components: - pos: 22.5,29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14661 components: - pos: 22.5,28.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14662 components: - pos: 22.5,27.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14663 components: - pos: 22.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14664 components: - pos: 23.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14665 components: - pos: 24.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14666 components: - pos: 25.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14667 components: - pos: 26.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14668 components: - pos: 27.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14669 components: - pos: 27.5,27.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14670 components: - pos: 27.5,28.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14671 components: - pos: 27.5,29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14672 components: - pos: 28.5,29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14673 components: - pos: 29.5,29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14674 components: - pos: 30.5,29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14675 components: - pos: 31.5,29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14676 components: - pos: 32.5,29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14677 components: - pos: 33.5,29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14678 components: - pos: 34.5,29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14679 components: - pos: 34.5,28.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14680 components: - pos: 34.5,27.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14681 components: - pos: 34.5,26.5 @@ -47680,8 +39483,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14682 components: - pos: 42.5,27.5 @@ -47689,8 +39490,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14683 components: - pos: 35.5,25.5 @@ -47698,8 +39497,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14684 components: - pos: 35.5,24.5 @@ -47707,8 +39504,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14685 components: - pos: 35.5,23.5 @@ -47716,8 +39511,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14686 components: - pos: 35.5,22.5 @@ -47725,8 +39518,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14687 components: - pos: 35.5,21.5 @@ -47734,8 +39525,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14688 components: - pos: 35.5,20.5 @@ -47743,8 +39532,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14689 components: - pos: 35.5,19.5 @@ -47752,8 +39539,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14690 components: - pos: 36.5,19.5 @@ -47761,8 +39546,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14691 components: - pos: 37.5,19.5 @@ -47770,8 +39553,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14692 components: - pos: 38.5,19.5 @@ -47779,8 +39560,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14693 components: - pos: 38.5,18.5 @@ -47788,134 +39567,96 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14694 components: - pos: 22.5,31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14695 components: - pos: 22.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14696 components: - pos: 22.5,33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14697 components: - pos: 22.5,34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14698 components: - pos: 22.5,35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14699 components: - pos: 22.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14700 components: - pos: 22.5,37.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14701 components: - pos: 22.5,38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14702 components: - pos: 22.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14703 components: - pos: 22.5,40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14704 components: - pos: 21.5,40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14705 components: - pos: 20.5,40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14706 components: - pos: 20.5,41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14707 components: - pos: 20.5,42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14708 components: - pos: 20.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14709 components: - pos: 19.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14710 components: - pos: 18.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14711 components: - pos: 17.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14712 components: - pos: 16.5,43.5 @@ -47923,8 +39664,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14713 components: - pos: 16.5,44.5 @@ -47932,8 +39671,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14714 components: - pos: 16.5,45.5 @@ -47941,8 +39678,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14715 components: - pos: 16.5,46.5 @@ -47950,8 +39685,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14716 components: - pos: 16.5,47.5 @@ -47959,8 +39692,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14717 components: - pos: 16.5,48.5 @@ -47968,8 +39699,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14718 components: - pos: 16.5,49.5 @@ -47977,8 +39706,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14719 components: - pos: 16.5,50.5 @@ -47986,8 +39713,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14720 components: - pos: 16.5,51.5 @@ -47995,8 +39720,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14721 components: - pos: 16.5,52.5 @@ -48004,8 +39727,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14722 components: - pos: 16.5,53.5 @@ -48013,8 +39734,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15008 components: - pos: 14.5,50.5 @@ -48022,8 +39741,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15009 components: - pos: 15.5,50.5 @@ -48031,8 +39748,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15011 components: - pos: 13.5,50.5 @@ -48040,8 +39755,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15012 components: - pos: 12.5,50.5 @@ -48049,8 +39762,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15036 components: - pos: 43.5,13.5 @@ -48058,8 +39769,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15048 components: - pos: 12.5,51.5 @@ -48067,8 +39776,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15294 components: - pos: 49.5,31.5 @@ -48076,8 +39783,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15295 components: - pos: 50.5,31.5 @@ -48085,8 +39790,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15297 components: - pos: 51.5,30.5 @@ -48094,8 +39797,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15298 components: - pos: 52.5,30.5 @@ -48103,8 +39804,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15300 components: - pos: 51.5,31.5 @@ -48112,8 +39811,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15301 components: - pos: 49.5,30.5 @@ -48121,8 +39818,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15302 components: - pos: 48.5,30.5 @@ -48130,8 +39825,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15303 components: - pos: 47.5,30.5 @@ -48139,8 +39832,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15304 components: - pos: 46.5,30.5 @@ -48148,8 +39839,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15305 components: - pos: 45.5,30.5 @@ -48157,8 +39846,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15306 components: - pos: 44.5,30.5 @@ -48166,8 +39853,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15307 components: - pos: 43.5,30.5 @@ -48175,8 +39860,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15308 components: - pos: 42.5,30.5 @@ -48184,8 +39867,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15309 components: - pos: 42.5,28.5 @@ -48193,8 +39874,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15310 components: - pos: 42.5,28.5 @@ -48202,8 +39881,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15311 components: - pos: 42.5,29.5 @@ -48211,8 +39888,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15312 components: - pos: 42.5,26.5 @@ -48220,8 +39895,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15313 components: - pos: 41.5,26.5 @@ -48229,8 +39902,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15314 components: - pos: 40.5,26.5 @@ -48238,8 +39909,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15315 components: - pos: 39.5,26.5 @@ -48247,8 +39916,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15316 components: - pos: 38.5,26.5 @@ -48256,8 +39923,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15317 components: - pos: 37.5,26.5 @@ -48265,8 +39930,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15318 components: - pos: 36.5,26.5 @@ -48274,8 +39937,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15319 components: - pos: 35.5,26.5 @@ -48283,8 +39944,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15320 components: - pos: 42.5,18.5 @@ -48292,8 +39951,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15321 components: - pos: 42.5,19.5 @@ -48301,8 +39958,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15322 components: - pos: 42.5,20.5 @@ -48310,8 +39965,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15323 components: - pos: 42.5,21.5 @@ -48319,8 +39972,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15324 components: - pos: 42.5,22.5 @@ -48328,8 +39979,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15325 components: - pos: 42.5,23.5 @@ -48337,8 +39986,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15326 components: - pos: 42.5,24.5 @@ -48346,8 +39993,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15327 components: - pos: 42.5,25.5 @@ -48355,8 +40000,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15358 components: - pos: 53.5,30.5 @@ -48364,8 +40007,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15359 components: - pos: 54.5,30.5 @@ -48373,8 +40014,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15360 components: - pos: 55.5,30.5 @@ -48382,8 +40021,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15361 components: - pos: 56.5,30.5 @@ -48391,8 +40028,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15362 components: - pos: 57.5,30.5 @@ -48400,8 +40035,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15365 components: - pos: 58.5,32.5 @@ -48409,8 +40042,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15366 components: - pos: 58.5,33.5 @@ -48418,8 +40049,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15367 components: - pos: 58.5,34.5 @@ -48427,8 +40056,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15368 components: - pos: 58.5,35.5 @@ -48436,8 +40063,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15369 components: - pos: 58.5,36.5 @@ -48445,8 +40070,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15370 components: - pos: 58.5,37.5 @@ -48454,8 +40077,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15371 components: - pos: 58.5,38.5 @@ -48463,8 +40084,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15372 components: - pos: 58.5,39.5 @@ -48472,8 +40091,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15373 components: - pos: 60.5,32.5 @@ -48481,8 +40098,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15374 components: - pos: 60.5,33.5 @@ -48490,8 +40105,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15375 components: - pos: 60.5,34.5 @@ -48499,8 +40112,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15376 components: - pos: 60.5,35.5 @@ -48508,8 +40119,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15377 components: - pos: 60.5,36.5 @@ -48517,8 +40126,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15378 components: - pos: 60.5,37.5 @@ -48526,8 +40133,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15379 components: - pos: 60.5,37.5 @@ -48535,8 +40140,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15380 components: - pos: 60.5,38.5 @@ -48544,8 +40147,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15381 components: - pos: 60.5,39.5 @@ -48553,8 +40154,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15384 components: - pos: 62.5,32.5 @@ -48562,8 +40161,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15385 components: - pos: 62.5,33.5 @@ -48571,8 +40168,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15386 components: - pos: 62.5,34.5 @@ -48580,8 +40175,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15387 components: - pos: 62.5,35.5 @@ -48589,8 +40182,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15388 components: - pos: 62.5,36.5 @@ -48598,8 +40189,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15389 components: - pos: 62.5,37.5 @@ -48607,8 +40196,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15390 components: - pos: 62.5,38.5 @@ -48616,8 +40203,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15391 components: - pos: 62.5,39.5 @@ -48625,8 +40210,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15392 components: - pos: 64.5,32.5 @@ -48634,8 +40217,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15393 components: - pos: 64.5,33.5 @@ -48643,8 +40224,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15394 components: - pos: 64.5,34.5 @@ -48652,8 +40231,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15395 components: - pos: 64.5,35.5 @@ -48661,8 +40238,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15396 components: - pos: 64.5,36.5 @@ -48670,8 +40245,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15397 components: - pos: 64.5,37.5 @@ -48679,8 +40252,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15398 components: - pos: 64.5,38.5 @@ -48688,8 +40259,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15399 components: - pos: 64.5,39.5 @@ -48697,8 +40266,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15400 components: - pos: 66.5,32.5 @@ -48706,8 +40273,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15401 components: - pos: 66.5,33.5 @@ -48715,8 +40280,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15402 components: - pos: 66.5,34.5 @@ -48724,8 +40287,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15403 components: - pos: 66.5,35.5 @@ -48733,8 +40294,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15404 components: - pos: 66.5,36.5 @@ -48742,8 +40301,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15405 components: - pos: 66.5,37.5 @@ -48751,8 +40308,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15406 components: - pos: 66.5,38.5 @@ -48760,8 +40315,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15407 components: - pos: 66.5,39.5 @@ -48769,8 +40322,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15408 components: - pos: 68.5,32.5 @@ -48778,8 +40329,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15409 components: - pos: 68.5,33.5 @@ -48787,8 +40336,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15410 components: - pos: 68.5,34.5 @@ -48796,8 +40343,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15411 components: - pos: 68.5,35.5 @@ -48805,8 +40350,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15412 components: - pos: 68.5,36.5 @@ -48814,8 +40357,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15413 components: - pos: 68.5,37.5 @@ -48823,8 +40364,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15414 components: - pos: 68.5,38.5 @@ -48832,8 +40371,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15415 components: - pos: 68.5,39.5 @@ -48841,8 +40378,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15416 components: - pos: 70.5,32.5 @@ -48850,8 +40385,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15417 components: - pos: 70.5,33.5 @@ -48859,8 +40392,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15418 components: - pos: 70.5,34.5 @@ -48868,8 +40399,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15419 components: - pos: 70.5,35.5 @@ -48877,8 +40406,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15420 components: - pos: 70.5,36.5 @@ -48886,8 +40413,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15421 components: - pos: 70.5,37.5 @@ -48895,8 +40420,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15422 components: - pos: 70.5,38.5 @@ -48904,8 +40427,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15423 components: - pos: 70.5,39.5 @@ -48913,8 +40434,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15424 components: - pos: 72.5,32.5 @@ -48922,8 +40441,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15425 components: - pos: 72.5,33.5 @@ -48931,8 +40448,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15426 components: - pos: 72.5,34.5 @@ -48940,8 +40455,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15427 components: - pos: 72.5,35.5 @@ -48949,8 +40462,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15428 components: - pos: 72.5,36.5 @@ -48958,8 +40469,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15429 components: - pos: 72.5,37.5 @@ -48967,8 +40476,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15430 components: - pos: 72.5,38.5 @@ -48976,8 +40483,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15431 components: - pos: 72.5,39.5 @@ -48985,8 +40490,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15442 components: - pos: 43.5,10.5 @@ -48994,8 +40497,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15464 components: - pos: 72.5,21.5 @@ -49003,8 +40504,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15465 components: - pos: 72.5,22.5 @@ -49012,8 +40511,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15466 components: - pos: 72.5,23.5 @@ -49021,8 +40518,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15467 components: - pos: 72.5,24.5 @@ -49030,8 +40525,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15468 components: - pos: 72.5,25.5 @@ -49039,8 +40532,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15469 components: - pos: 72.5,26.5 @@ -49048,8 +40539,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15470 components: - pos: 72.5,27.5 @@ -49057,8 +40546,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15471 components: - pos: 72.5,28.5 @@ -49066,8 +40553,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15472 components: - pos: 70.5,21.5 @@ -49075,8 +40560,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15473 components: - pos: 70.5,22.5 @@ -49084,8 +40567,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15474 components: - pos: 70.5,23.5 @@ -49093,8 +40574,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15475 components: - pos: 70.5,24.5 @@ -49102,8 +40581,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15476 components: - pos: 70.5,25.5 @@ -49111,8 +40588,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15477 components: - pos: 70.5,26.5 @@ -49120,8 +40595,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15478 components: - pos: 70.5,27.5 @@ -49129,8 +40602,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15479 components: - pos: 70.5,28.5 @@ -49138,8 +40609,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15480 components: - pos: 66.5,21.5 @@ -49147,8 +40616,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15481 components: - pos: 66.5,22.5 @@ -49156,8 +40623,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15482 components: - pos: 66.5,23.5 @@ -49165,8 +40630,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15483 components: - pos: 66.5,24.5 @@ -49174,8 +40637,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15484 components: - pos: 66.5,25.5 @@ -49183,8 +40644,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15485 components: - pos: 66.5,26.5 @@ -49192,8 +40651,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15486 components: - pos: 66.5,27.5 @@ -49201,8 +40658,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15487 components: - pos: 66.5,28.5 @@ -49210,8 +40665,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15488 components: - pos: 68.5,21.5 @@ -49219,8 +40672,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15489 components: - pos: 68.5,22.5 @@ -49228,8 +40679,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15490 components: - pos: 68.5,23.5 @@ -49237,8 +40686,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15491 components: - pos: 68.5,24.5 @@ -49246,8 +40693,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15492 components: - pos: 68.5,25.5 @@ -49255,8 +40700,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15493 components: - pos: 68.5,26.5 @@ -49264,8 +40707,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15494 components: - pos: 68.5,27.5 @@ -49273,8 +40714,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15495 components: - pos: 68.5,28.5 @@ -49282,8 +40721,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15496 components: - pos: 62.5,21.5 @@ -49291,8 +40728,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15497 components: - pos: 62.5,22.5 @@ -49300,8 +40735,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15498 components: - pos: 62.5,23.5 @@ -49309,8 +40742,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15499 components: - pos: 62.5,24.5 @@ -49318,8 +40749,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15500 components: - pos: 62.5,25.5 @@ -49327,8 +40756,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15501 components: - pos: 62.5,26.5 @@ -49336,8 +40763,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15502 components: - pos: 62.5,27.5 @@ -49345,8 +40770,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15503 components: - pos: 62.5,28.5 @@ -49354,8 +40777,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15504 components: - pos: 64.5,21.5 @@ -49363,8 +40784,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15505 components: - pos: 64.5,22.5 @@ -49372,8 +40791,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15506 components: - pos: 64.5,23.5 @@ -49381,8 +40798,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15507 components: - pos: 64.5,24.5 @@ -49390,8 +40805,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15508 components: - pos: 64.5,25.5 @@ -49399,8 +40812,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15509 components: - pos: 64.5,26.5 @@ -49408,8 +40819,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15510 components: - pos: 64.5,27.5 @@ -49417,8 +40826,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15511 components: - pos: 64.5,28.5 @@ -49426,8 +40833,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15512 components: - pos: 58.5,21.5 @@ -49435,8 +40840,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15513 components: - pos: 58.5,22.5 @@ -49444,8 +40847,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15514 components: - pos: 58.5,23.5 @@ -49453,8 +40854,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15515 components: - pos: 58.5,24.5 @@ -49462,8 +40861,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15516 components: - pos: 58.5,25.5 @@ -49471,8 +40868,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15517 components: - pos: 58.5,26.5 @@ -49480,8 +40875,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15518 components: - pos: 58.5,27.5 @@ -49489,8 +40882,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15519 components: - pos: 58.5,28.5 @@ -49498,8 +40889,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15520 components: - pos: 60.5,21.5 @@ -49507,8 +40896,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15521 components: - pos: 60.5,22.5 @@ -49516,8 +40903,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15522 components: - pos: 60.5,23.5 @@ -49525,8 +40910,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15523 components: - pos: 60.5,24.5 @@ -49534,8 +40917,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15524 components: - pos: 60.5,25.5 @@ -49543,8 +40924,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15525 components: - pos: 60.5,26.5 @@ -49552,8 +40931,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15526 components: - pos: 60.5,27.5 @@ -49561,8 +40938,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15527 components: - pos: 60.5,28.5 @@ -49570,15 +40945,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15637 components: - pos: 75.5,30.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 15714 components: - pos: 43.5,16.5 @@ -49586,8 +40957,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15739 components: - pos: 42.5,16.5 @@ -49595,8 +40964,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15896 components: - pos: 17.5,48.5 @@ -49604,8 +40971,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15897 components: - pos: 18.5,48.5 @@ -49613,8 +40978,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15898 components: - pos: 19.5,48.5 @@ -49622,8 +40985,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15899 components: - pos: 19.5,49.5 @@ -49631,8 +40992,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15900 components: - pos: 19.5,50.5 @@ -49640,8 +40999,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15901 components: - pos: 19.5,51.5 @@ -49649,8 +41006,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15902 components: - pos: 19.5,52.5 @@ -49658,8 +41013,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15903 components: - pos: 19.5,53.5 @@ -49667,8 +41020,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15904 components: - pos: 20.5,53.5 @@ -49676,8 +41027,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15905 components: - pos: 21.5,53.5 @@ -49685,8 +41034,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15906 components: - pos: 22.5,53.5 @@ -49694,8 +41041,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15907 components: - pos: 23.5,53.5 @@ -49703,8 +41048,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15908 components: - pos: 24.5,53.5 @@ -49712,8 +41055,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15909 components: - pos: 25.5,53.5 @@ -49721,8 +41062,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15910 components: - pos: 26.5,53.5 @@ -49730,8 +41069,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15911 components: - pos: 27.5,53.5 @@ -49739,8 +41076,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15912 components: - pos: 28.5,53.5 @@ -49748,8 +41083,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15913 components: - pos: 29.5,53.5 @@ -49757,8 +41090,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15914 components: - pos: 30.5,53.5 @@ -49766,8 +41097,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15915 components: - pos: 30.5,52.5 @@ -49775,8 +41104,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15916 components: - pos: 30.5,51.5 @@ -49784,8 +41111,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15917 components: - pos: 30.5,50.5 @@ -49793,8 +41118,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15918 components: - pos: 30.5,49.5 @@ -49802,8 +41125,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15919 components: - pos: 30.5,48.5 @@ -49811,8 +41132,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15920 components: - pos: 30.5,47.5 @@ -49820,8 +41139,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15921 components: - pos: 30.5,46.5 @@ -49829,8 +41146,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15922 components: - pos: 30.5,45.5 @@ -49838,8 +41153,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15923 components: - pos: 31.5,45.5 @@ -49847,8 +41160,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15924 components: - pos: 32.5,45.5 @@ -49856,8 +41167,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15925 components: - pos: 33.5,45.5 @@ -49865,8 +41174,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15926 components: - pos: 33.5,44.5 @@ -49874,8 +41181,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15927 components: - pos: 34.5,44.5 @@ -49883,8 +41188,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15928 components: - pos: 35.5,44.5 @@ -49892,8 +41195,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15929 components: - pos: 36.5,44.5 @@ -49901,8 +41202,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15930 components: - pos: 37.5,44.5 @@ -49910,15 +41209,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15931 components: - pos: 38.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 15932 components: - pos: 39.5,44.5 @@ -49926,8 +41221,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15933 components: - pos: 40.5,44.5 @@ -49935,22 +41228,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15934 components: - pos: 41.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 15935 components: - pos: 42.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 15936 components: - pos: 43.5,44.5 @@ -49958,8 +41245,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15937 components: - pos: 44.5,44.5 @@ -49967,22 +41252,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15938 components: - pos: 45.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 15939 components: - pos: 46.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 15940 components: - pos: 46.5,43.5 @@ -49990,85 +41269,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15941 components: - pos: 46.5,42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 15942 components: - pos: 46.5,41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 15943 components: - pos: 46.5,40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 15944 components: - pos: 46.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 15945 components: - pos: 46.5,38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 15946 components: - pos: 46.5,37.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 15947 components: - pos: 46.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 15948 components: - pos: 46.5,35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 15949 components: - pos: 46.5,34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 15950 components: - pos: 46.5,33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 15951 components: - pos: 46.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 15952 components: - pos: 46.5,31.5 @@ -50076,8 +41331,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16265 components: - pos: -65.5,44.5 @@ -50085,8 +41338,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16266 components: - pos: -64.5,44.5 @@ -50094,8 +41345,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16267 components: - pos: -63.5,44.5 @@ -50103,8 +41352,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16268 components: - pos: -63.5,43.5 @@ -50112,8 +41359,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16269 components: - pos: -62.5,43.5 @@ -50121,8 +41366,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16270 components: - pos: -61.5,43.5 @@ -50130,8 +41373,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16271 components: - pos: -65.5,43.5 @@ -50139,8 +41380,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16272 components: - pos: -66.5,43.5 @@ -50148,8 +41387,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16273 components: - pos: -67.5,43.5 @@ -50157,8 +41394,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16274 components: - pos: -68.5,43.5 @@ -50166,8 +41401,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16275 components: - pos: -69.5,43.5 @@ -50175,8 +41408,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16283 components: - pos: -70.5,43.5 @@ -50184,8 +41415,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16284 components: - pos: -71.5,43.5 @@ -50193,8 +41422,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16285 components: - pos: -72.5,45.5 @@ -50202,8 +41429,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16286 components: - pos: -72.5,46.5 @@ -50211,8 +41436,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16287 components: - pos: -72.5,47.5 @@ -50220,8 +41443,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16288 components: - pos: -72.5,48.5 @@ -50229,8 +41450,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16289 components: - pos: -72.5,49.5 @@ -50238,8 +41457,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16290 components: - pos: -72.5,50.5 @@ -50247,8 +41464,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16291 components: - pos: -72.5,51.5 @@ -50256,8 +41471,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16292 components: - pos: -72.5,52.5 @@ -50265,8 +41478,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16293 components: - pos: -74.5,52.5 @@ -50274,8 +41485,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16294 components: - pos: -74.5,51.5 @@ -50283,8 +41492,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16295 components: - pos: -74.5,50.5 @@ -50292,8 +41499,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16296 components: - pos: -74.5,49.5 @@ -50301,8 +41506,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16297 components: - pos: -74.5,48.5 @@ -50310,8 +41513,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16298 components: - pos: -74.5,47.5 @@ -50319,8 +41520,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16299 components: - pos: -74.5,46.5 @@ -50328,8 +41527,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16300 components: - pos: -74.5,45.5 @@ -50337,8 +41534,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16301 components: - pos: -76.5,45.5 @@ -50346,8 +41541,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16302 components: - pos: -76.5,46.5 @@ -50355,8 +41548,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16303 components: - pos: -76.5,47.5 @@ -50364,8 +41555,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16304 components: - pos: -76.5,48.5 @@ -50373,8 +41562,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16305 components: - pos: -76.5,49.5 @@ -50382,8 +41569,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16306 components: - pos: -76.5,50.5 @@ -50391,8 +41576,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16307 components: - pos: -76.5,51.5 @@ -50400,8 +41583,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16308 components: - pos: -76.5,52.5 @@ -50409,8 +41590,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16309 components: - pos: -78.5,52.5 @@ -50418,8 +41597,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16310 components: - pos: -78.5,51.5 @@ -50427,8 +41604,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16311 components: - pos: -78.5,50.5 @@ -50436,8 +41611,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16312 components: - pos: -78.5,49.5 @@ -50445,8 +41618,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16313 components: - pos: -78.5,48.5 @@ -50454,8 +41625,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16314 components: - pos: -78.5,47.5 @@ -50463,8 +41632,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16315 components: - pos: -78.5,46.5 @@ -50472,8 +41639,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16316 components: - pos: -78.5,45.5 @@ -50481,8 +41646,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16317 components: - pos: -80.5,45.5 @@ -50490,8 +41653,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16318 components: - pos: -80.5,46.5 @@ -50499,8 +41660,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16319 components: - pos: -80.5,47.5 @@ -50508,8 +41667,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16320 components: - pos: -80.5,48.5 @@ -50517,8 +41674,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16321 components: - pos: -80.5,49.5 @@ -50526,8 +41681,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16322 components: - pos: -80.5,50.5 @@ -50535,8 +41688,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16323 components: - pos: -80.5,51.5 @@ -50544,8 +41695,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16324 components: - pos: -80.5,52.5 @@ -50553,8 +41702,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16325 components: - pos: -82.5,45.5 @@ -50562,8 +41709,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16326 components: - pos: -82.5,46.5 @@ -50571,8 +41716,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16327 components: - pos: -82.5,47.5 @@ -50580,8 +41723,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16328 components: - pos: -82.5,48.5 @@ -50589,8 +41730,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16329 components: - pos: -82.5,49.5 @@ -50598,8 +41737,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16330 components: - pos: -82.5,50.5 @@ -50607,8 +41744,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16331 components: - pos: -82.5,51.5 @@ -50616,8 +41751,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16332 components: - pos: -82.5,52.5 @@ -50625,8 +41758,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16333 components: - pos: -84.5,45.5 @@ -50634,8 +41765,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16334 components: - pos: -84.5,46.5 @@ -50643,8 +41772,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16335 components: - pos: -84.5,47.5 @@ -50652,8 +41779,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16336 components: - pos: -84.5,48.5 @@ -50661,8 +41786,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16337 components: - pos: -84.5,49.5 @@ -50670,8 +41793,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16338 components: - pos: -84.5,50.5 @@ -50679,8 +41800,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16339 components: - pos: -84.5,51.5 @@ -50688,8 +41807,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16340 components: - pos: -84.5,52.5 @@ -50697,8 +41814,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16341 components: - pos: -86.5,52.5 @@ -50706,8 +41821,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16342 components: - pos: -86.5,51.5 @@ -50715,8 +41828,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16343 components: - pos: -86.5,50.5 @@ -50724,8 +41835,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16344 components: - pos: -86.5,49.5 @@ -50733,8 +41842,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16345 components: - pos: -86.5,48.5 @@ -50742,8 +41849,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16346 components: - pos: -86.5,47.5 @@ -50751,8 +41856,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16347 components: - pos: -86.5,46.5 @@ -50760,8 +41863,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16348 components: - pos: -86.5,45.5 @@ -50769,8 +41870,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16349 components: - pos: -84.5,59.5 @@ -50778,8 +41877,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16350 components: - pos: -84.5,58.5 @@ -50787,8 +41884,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16351 components: - pos: -84.5,57.5 @@ -50796,8 +41891,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16352 components: - pos: -84.5,56.5 @@ -50805,8 +41898,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16357 components: - pos: -86.5,56.5 @@ -50814,8 +41905,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16358 components: - pos: -86.5,57.5 @@ -50823,8 +41912,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16362 components: - pos: -82.5,55.5 @@ -50832,8 +41919,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16363 components: - pos: -82.5,56.5 @@ -50841,8 +41926,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16364 components: - pos: -82.5,57.5 @@ -50850,8 +41933,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16365 components: - pos: -86.5,58.5 @@ -50859,8 +41940,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16366 components: - pos: -86.5,60.5 @@ -50868,8 +41947,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16379 components: - pos: -86.5,61.5 @@ -50877,8 +41954,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16380 components: - pos: -84.5,61.5 @@ -50886,8 +41961,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16387 components: - pos: -86.5,54.5 @@ -50895,8 +41968,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16388 components: - pos: -86.5,55.5 @@ -50904,8 +41975,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16411 components: - pos: -72.5,61.5 @@ -50913,8 +41982,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16413 components: - pos: -84.5,60.5 @@ -50922,8 +41989,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16429 components: - pos: -86.5,43.5 @@ -50931,8 +41996,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16430 components: - pos: -87.5,43.5 @@ -50940,8 +42003,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16431 components: - pos: -88.5,43.5 @@ -50949,15 +42010,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16432 components: - pos: -89.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 16520 components: - pos: -76.5,60.5 @@ -50965,8 +42022,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16521 components: - pos: -76.5,59.5 @@ -50974,8 +42029,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16522 components: - pos: -76.5,58.5 @@ -50983,8 +42036,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16523 components: - pos: -76.5,57.5 @@ -50992,8 +42043,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16524 components: - pos: -76.5,56.5 @@ -51001,8 +42050,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16525 components: - pos: -76.5,55.5 @@ -51010,8 +42057,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16526 components: - pos: -76.5,54.5 @@ -51019,8 +42064,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16527 components: - pos: -74.5,54.5 @@ -51028,8 +42071,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16528 components: - pos: -72.5,59.5 @@ -51037,8 +42078,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16529 components: - pos: -72.5,58.5 @@ -51046,8 +42085,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16530 components: - pos: -72.5,55.5 @@ -51055,8 +42092,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16531 components: - pos: -72.5,54.5 @@ -51064,8 +42099,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16628 components: - pos: -84.5,55.5 @@ -51073,8 +42106,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16629 components: - pos: -84.5,54.5 @@ -51082,8 +42113,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16630 components: - pos: -82.5,54.5 @@ -51091,8 +42120,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16631 components: - pos: -82.5,58.5 @@ -51100,8 +42127,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16636 components: - pos: -80.5,61.5 @@ -51109,8 +42134,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16637 components: - pos: -80.5,60.5 @@ -51118,8 +42141,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16641 components: - pos: -86.5,59.5 @@ -51127,8 +42148,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16646 components: - pos: -82.5,59.5 @@ -51136,8 +42155,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16647 components: - pos: -82.5,60.5 @@ -51145,8 +42162,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16648 components: - pos: -82.5,61.5 @@ -51154,8 +42169,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16660 components: - pos: -80.5,54.5 @@ -51163,8 +42176,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16661 components: - pos: -78.5,54.5 @@ -51172,8 +42183,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16662 components: - pos: -78.5,55.5 @@ -51181,8 +42190,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16663 components: - pos: -78.5,56.5 @@ -51190,8 +42197,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16664 components: - pos: -78.5,57.5 @@ -51199,8 +42204,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16665 components: - pos: -78.5,58.5 @@ -51208,8 +42211,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16666 components: - pos: -78.5,59.5 @@ -51217,8 +42218,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16667 components: - pos: -78.5,60.5 @@ -51226,8 +42225,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16670 components: - pos: -78.5,61.5 @@ -51235,8 +42232,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16671 components: - pos: -76.5,61.5 @@ -51244,8 +42239,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16672 components: - pos: -74.5,55.5 @@ -51253,8 +42246,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16673 components: - pos: -80.5,59.5 @@ -51262,8 +42253,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16674 components: - pos: -74.5,56.5 @@ -51271,8 +42260,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16675 components: - pos: -74.5,57.5 @@ -51280,8 +42267,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16676 components: - pos: -74.5,58.5 @@ -51289,8 +42274,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16677 components: - pos: -74.5,59.5 @@ -51298,8 +42281,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16678 components: - pos: -74.5,60.5 @@ -51307,8 +42288,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16679 components: - pos: -74.5,61.5 @@ -51316,8 +42295,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16680 components: - pos: -72.5,60.5 @@ -51325,8 +42302,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16699 components: - pos: -80.5,57.5 @@ -51334,8 +42309,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16700 components: - pos: -80.5,56.5 @@ -51343,8 +42316,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16704 components: - pos: -80.5,55.5 @@ -51352,8 +42323,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16711 components: - pos: -80.5,58.5 @@ -51361,8 +42330,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16716 components: - pos: -72.5,57.5 @@ -51370,8 +42337,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16717 components: - pos: -72.5,56.5 @@ -51379,498 +42344,356 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17095 components: - pos: 75.5,30.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17320 components: - pos: -53.5,-43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17644 components: - pos: -50.5,-47.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17645 components: - pos: -50.5,-44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17818 components: - pos: -44.5,-9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17819 components: - pos: -44.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17820 components: - pos: -44.5,-11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17821 components: - pos: -44.5,-12.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17822 components: - pos: -44.5,-13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17823 components: - pos: -44.5,-14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17824 components: - pos: -44.5,-15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17825 components: - pos: -44.5,-16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17826 components: - pos: -44.5,-17.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17827 components: - pos: -44.5,-18.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17828 components: - pos: -44.5,-19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17829 components: - pos: -44.5,-20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17830 components: - pos: -44.5,-21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17831 components: - pos: -44.5,-22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17832 components: - pos: -44.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17833 components: - pos: -45.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17834 components: - pos: -46.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17835 components: - pos: -47.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17836 components: - pos: -49.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17837 components: - pos: -48.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17838 components: - pos: -50.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17839 components: - pos: -51.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17840 components: - pos: -52.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17841 components: - pos: -53.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17842 components: - pos: -54.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17843 components: - pos: -55.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17844 components: - pos: -56.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17845 components: - pos: -57.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17846 components: - pos: -57.5,-22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17847 components: - pos: -58.5,-22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17848 components: - pos: -59.5,-22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17849 components: - pos: -60.5,-22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17850 components: - pos: -61.5,-22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17851 components: - pos: -61.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17852 components: - pos: -61.5,-24.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17853 components: - pos: -61.5,-25.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17854 components: - pos: -61.5,-26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17855 components: - pos: -61.5,-27.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17856 components: - pos: -61.5,-28.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17857 components: - pos: -61.5,-29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17858 components: - pos: -61.5,-30.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17859 components: - pos: -61.5,-31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17860 components: - pos: -61.5,-32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17861 components: - pos: -61.5,-33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17862 components: - pos: -61.5,-34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17863 components: - pos: -61.5,-35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17864 components: - pos: -61.5,-36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17865 components: - pos: -61.5,-37.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17866 components: - pos: -61.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17867 components: - pos: -61.5,-39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17868 components: - pos: -61.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17869 components: - pos: -61.5,-41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17870 components: - pos: -61.5,-42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17871 components: - pos: -61.5,-43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17872 components: - pos: -61.5,-44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17873 components: - pos: -61.5,-45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17874 components: - pos: -61.5,-45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17875 components: - pos: -61.5,-46.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17876 components: - pos: -61.5,-47.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17877 components: - pos: -61.5,-48.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17878 components: - pos: -60.5,-48.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17879 components: - pos: -59.5,-48.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17880 components: - pos: -58.5,-48.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17881 components: - pos: -57.5,-48.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17882 components: - pos: -56.5,-48.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17883 components: - pos: -55.5,-48.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17884 components: - pos: -52.5,-59.5 @@ -51878,8 +42701,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17885 components: - pos: -53.5,-59.5 @@ -51887,92 +42708,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17886 components: - pos: -54.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17887 components: - pos: -55.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17888 components: - pos: -55.5,-58.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17889 components: - pos: -55.5,-57.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17890 components: - pos: -55.5,-56.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17891 components: - pos: -55.5,-55.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17892 components: - pos: -55.5,-54.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17893 components: - pos: -55.5,-53.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17894 components: - pos: -55.5,-52.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17895 components: - pos: -55.5,-51.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17896 components: - pos: -55.5,-50.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17897 components: - pos: -55.5,-49.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17913 components: - pos: -54.5,-49.5 @@ -51980,8 +42775,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17914 components: - pos: -53.5,-49.5 @@ -51989,8 +42782,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17915 components: - pos: -52.5,-49.5 @@ -51998,64 +42789,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17916 components: - pos: -51.5,-49.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17917 components: - pos: -50.5,-49.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17918 components: - pos: -50.5,-46.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17919 components: - pos: -50.5,-48.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17920 components: - pos: -50.5,-45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17921 components: - pos: -54.5,-43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17922 components: - pos: -51.5,-43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17923 components: - pos: -54.5,-39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17924 components: - pos: -52.5,-39.5 @@ -52063,15 +42836,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17925 components: - pos: -50.5,-43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17926 components: - pos: -51.5,-39.5 @@ -52079,8 +42848,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17927 components: - pos: -50.5,-39.5 @@ -52088,8 +42855,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17928 components: - pos: -49.5,-39.5 @@ -52097,8 +42862,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17929 components: - pos: -48.5,-39.5 @@ -52106,8 +42869,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17930 components: - pos: -47.5,-39.5 @@ -52115,8 +42876,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17931 components: - pos: -46.5,-39.5 @@ -52124,8 +42883,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17932 components: - pos: -45.5,-39.5 @@ -52133,8 +42890,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17933 components: - pos: -44.5,-39.5 @@ -52142,8 +42897,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17934 components: - pos: -43.5,-39.5 @@ -52151,8 +42904,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17935 components: - pos: -42.5,-39.5 @@ -52160,8 +42911,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17936 components: - pos: -41.5,-39.5 @@ -52169,8 +42918,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17937 components: - pos: -40.5,-39.5 @@ -52178,8 +42925,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18024 components: - pos: -39.5,-39.5 @@ -52187,8 +42932,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18025 components: - pos: -38.5,-39.5 @@ -52196,8 +42939,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18026 components: - pos: -37.5,-39.5 @@ -52205,8 +42946,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18027 components: - pos: -36.5,-39.5 @@ -52214,8 +42953,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18028 components: - pos: -35.5,-39.5 @@ -52223,8 +42960,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18029 components: - pos: -34.5,-39.5 @@ -52232,8 +42967,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18030 components: - pos: -33.5,-39.5 @@ -52241,8 +42974,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18031 components: - pos: -32.5,-39.5 @@ -52250,8 +42981,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18032 components: - pos: -29.5,-29.5 @@ -52259,8 +42988,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18033 components: - pos: -29.5,-30.5 @@ -52268,8 +42995,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18034 components: - pos: -29.5,-31.5 @@ -52277,8 +43002,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18035 components: - pos: -29.5,-32.5 @@ -52286,8 +43009,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18036 components: - pos: -29.5,-33.5 @@ -52295,8 +43016,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18037 components: - pos: -29.5,-34.5 @@ -52304,8 +43023,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18038 components: - pos: -29.5,-35.5 @@ -52313,8 +43030,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18039 components: - pos: -29.5,-36.5 @@ -52322,8 +43037,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18040 components: - pos: -29.5,-37.5 @@ -52331,8 +43044,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18041 components: - pos: -29.5,-38.5 @@ -52340,8 +43051,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18042 components: - pos: -29.5,-39.5 @@ -52349,8 +43058,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18043 components: - pos: -30.5,-39.5 @@ -52358,8 +43065,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18044 components: - pos: -31.5,-39.5 @@ -52367,22 +43072,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18342 components: - pos: -52.5,-43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18796 components: - pos: -69.5,-63.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18797 components: - pos: -68.5,-62.5 @@ -52390,8 +43089,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18798 components: - pos: -69.5,-62.5 @@ -52399,8 +43096,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18799 components: - pos: -67.5,-62.5 @@ -52408,8 +43103,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18800 components: - pos: -65.5,-62.5 @@ -52417,8 +43110,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18801 components: - pos: -64.5,-62.5 @@ -52426,85 +43117,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18802 components: - pos: -64.5,-61.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18803 components: - pos: -64.5,-60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18804 components: - pos: -64.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18805 components: - pos: -63.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18806 components: - pos: -62.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18807 components: - pos: -61.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18808 components: - pos: -60.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18809 components: - pos: -59.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18810 components: - pos: -58.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18811 components: - pos: -57.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18812 components: - pos: -56.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18926 components: - pos: -43.5,-27.5 @@ -52512,8 +43179,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18928 components: - pos: -37.5,-24.5 @@ -52521,8 +43186,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18929 components: - pos: -38.5,-24.5 @@ -52530,8 +43193,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18930 components: - pos: -39.5,-24.5 @@ -52539,8 +43200,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18931 components: - pos: -40.5,-24.5 @@ -52548,8 +43207,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18932 components: - pos: -41.5,-24.5 @@ -52557,8 +43214,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18933 components: - pos: -45.5,-27.5 @@ -52566,15 +43221,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18934 components: - pos: -45.5,-25.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18937 components: - pos: -44.5,-27.5 @@ -52582,8 +43233,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18938 components: - pos: -45.5,-26.5 @@ -52591,43 +43240,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18939 components: - pos: -45.5,-24.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19087 components: - pos: -53.5,-39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19088 components: - pos: -54.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19089 components: - pos: -54.5,-41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19090 components: - pos: -54.5,-42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19816 components: - pos: -42.5,-27.5 @@ -52635,22 +43272,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20155 components: - pos: -0.5,84.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20156 components: - pos: -1.5,84.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20321 components: - pos: -5.5,-13.5 @@ -52658,8 +43289,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20337 components: - pos: -2.5,36.5 @@ -52667,8 +43296,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20340 components: - pos: 30.5,6.5 @@ -52676,99 +43303,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20404 components: - pos: -29.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20405 components: - pos: -28.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20406 components: - pos: -28.5,-41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20407 components: - pos: -27.5,-41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20408 components: - pos: -26.5,-41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20409 components: - pos: -25.5,-41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20410 components: - pos: -24.5,-41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20411 components: - pos: -23.5,-41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20412 components: - pos: -23.5,-42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20413 components: - pos: -23.5,-43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20414 components: - pos: -23.5,-44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20415 components: - pos: -23.5,-45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20416 components: - pos: -23.5,-46.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20417 components: - pos: -22.5,-46.5 @@ -52776,36 +43375,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21289 components: - pos: -6.5,40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 21290 components: - pos: -6.5,41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 21291 components: - pos: -6.5,42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 21292 components: - pos: -6.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 21618 components: - pos: -41.5,-27.5 @@ -52813,8 +43402,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21619 components: - pos: -40.5,-27.5 @@ -52822,8 +43409,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21620 components: - pos: -39.5,-27.5 @@ -52831,8 +43416,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21621 components: - pos: -38.5,-27.5 @@ -52840,8 +43423,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21622 components: - pos: -37.5,-27.5 @@ -52849,8 +43430,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21644 components: - pos: -42.5,-24.5 @@ -52858,36 +43437,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21950 components: - pos: 0.5,84.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22660 components: - pos: -25.5,-58.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22661 components: - pos: -26.5,-58.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22662 components: - pos: -26.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22663 components: - pos: -26.5,-60.5 @@ -52895,8 +43464,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22664 components: - pos: -26.5,-61.5 @@ -52904,8 +43471,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22665 components: - pos: -25.5,-61.5 @@ -52913,8 +43478,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22666 components: - pos: -25.5,-62.5 @@ -52922,8 +43485,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22667 components: - pos: -25.5,-63.5 @@ -52931,8 +43492,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22668 components: - pos: -26.5,-63.5 @@ -52940,8 +43499,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22669 components: - pos: -27.5,-63.5 @@ -52949,8 +43506,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22670 components: - pos: -27.5,-62.5 @@ -52958,8 +43513,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - proto: CableHVStack entities: - uid: 1639 @@ -53013,29 +43566,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3564 components: - pos: -42.5,19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3565 components: - pos: -42.5,18.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3566 components: - pos: -42.5,17.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3567 components: - pos: -42.5,16.5 @@ -53043,99 +43588,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3568 components: - pos: -42.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3569 components: - pos: -43.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3570 components: - pos: -44.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3571 components: - pos: -45.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3572 components: - pos: -46.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3573 components: - pos: -47.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3574 components: - pos: -48.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3575 components: - pos: -49.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3576 components: - pos: -49.5,16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3577 components: - pos: -49.5,17.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3578 components: - pos: -49.5,18.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3579 components: - pos: -49.5,19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3580 components: - pos: -49.5,20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3581 components: - pos: -48.5,20.5 @@ -53143,92 +43660,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3582 components: - pos: -44.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3584 components: - pos: -44.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3585 components: - pos: -44.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3586 components: - pos: -44.5,6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3587 components: - pos: -44.5,6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3588 components: - pos: -44.5,5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3589 components: - pos: -44.5,4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3590 components: - pos: -44.5,3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3591 components: - pos: -44.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3592 components: - pos: -44.5,1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3593 components: - pos: -44.5,0.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3594 components: - pos: -44.5,-0.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3595 components: - pos: -43.5,-0.5 @@ -53236,127 +43727,91 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3599 components: - pos: -43.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3600 components: - pos: -42.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3601 components: - pos: -41.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3602 components: - pos: -40.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3603 components: - pos: -39.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3604 components: - pos: -38.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3605 components: - pos: -37.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3606 components: - pos: -36.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3607 components: - pos: -35.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3608 components: - pos: -34.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3609 components: - pos: -33.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3610 components: - pos: -31.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3611 components: - pos: -32.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3612 components: - pos: -31.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3613 components: - pos: -31.5,9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3614 components: - pos: -31.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3615 components: - pos: -30.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3616 components: - pos: -30.5,11.5 @@ -53364,57 +43819,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3618 components: - pos: -45.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3619 components: - pos: -46.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3621 components: - pos: -46.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3622 components: - pos: -47.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3623 components: - pos: -48.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3624 components: - pos: -49.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3625 components: - pos: -50.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3626 components: - pos: -50.5,11.5 @@ -53422,78 +43861,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3639 components: - pos: -47.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3643 components: - pos: -47.5,9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3789 components: - pos: -40.5,19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3790 components: - pos: -40.5,18.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3791 components: - pos: -40.5,17.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3792 components: - pos: -40.5,16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3793 components: - pos: -40.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3794 components: - pos: -39.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3795 components: - pos: -38.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3796 components: - pos: -37.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3797 components: - pos: -37.5,16.5 @@ -53501,8 +43918,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3798 components: - pos: -33.5,32.5 @@ -53510,148 +43925,106 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3799 components: - pos: -34.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3800 components: - pos: -34.5,31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3801 components: - pos: -34.5,30.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3802 components: - pos: -34.5,29.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3803 components: - pos: -34.5,28.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3804 components: - pos: -34.5,27.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3805 components: - pos: -34.5,26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3806 components: - pos: -34.5,25.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3807 components: - pos: -34.5,24.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3808 components: - pos: -34.5,23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3809 components: - pos: -34.5,22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3810 components: - pos: -34.5,21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3811 components: - pos: -34.5,20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3812 components: - pos: -34.5,19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3813 components: - pos: -36.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3814 components: - pos: -35.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3815 components: - pos: -34.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3816 components: - pos: -34.5,16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3817 components: - pos: -34.5,17.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3818 components: - pos: -34.5,18.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3938 components: - pos: -46.5,24.5 @@ -53659,8 +44032,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3939 components: - pos: -46.5,23.5 @@ -53668,8 +44039,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3940 components: - pos: -46.5,22.5 @@ -53677,8 +44046,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3941 components: - pos: -46.5,21.5 @@ -53686,15 +44053,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3958 components: - pos: -43.5,18.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3960 components: - pos: -46.5,26.5 @@ -53702,8 +44065,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3961 components: - pos: -46.5,25.5 @@ -53711,15 +44072,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3962 components: - pos: -45.5,18.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3963 components: - pos: -46.5,19.5 @@ -53727,8 +44084,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3964 components: - pos: -46.5,20.5 @@ -53736,8 +44091,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3965 components: - pos: -46.5,18.5 @@ -53745,8 +44098,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3966 components: - pos: -46.5,27.5 @@ -53754,15 +44105,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3967 components: - pos: -44.5,18.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 3973 components: - pos: -46.5,28.5 @@ -53770,8 +44117,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3974 components: - pos: -46.5,29.5 @@ -53779,8 +44124,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3975 components: - pos: -46.5,30.5 @@ -53788,8 +44131,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3976 components: - pos: -46.5,31.5 @@ -53797,8 +44138,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3977 components: - pos: -46.5,32.5 @@ -53806,8 +44145,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3978 components: - pos: -45.5,32.5 @@ -53815,15 +44152,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4020 components: - pos: -33.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4021 components: - pos: -32.5,15.5 @@ -53831,8 +44164,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4022 components: - pos: -31.5,15.5 @@ -53840,8 +44171,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4023 components: - pos: -31.5,16.5 @@ -53849,8 +44178,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4024 components: - pos: -31.5,17.5 @@ -53858,8 +44185,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4025 components: - pos: -31.5,18.5 @@ -53867,8 +44192,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4026 components: - pos: -31.5,19.5 @@ -53876,8 +44199,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4027 components: - pos: -30.5,19.5 @@ -53885,8 +44206,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4028 components: - pos: -29.5,19.5 @@ -53894,8 +44213,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4029 components: - pos: -28.5,19.5 @@ -53903,8 +44220,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4030 components: - pos: -27.5,19.5 @@ -53912,8 +44227,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4031 components: - pos: -26.5,19.5 @@ -53921,8 +44234,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4032 components: - pos: -26.5,20.5 @@ -53930,8 +44241,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4033 components: - pos: -26.5,21.5 @@ -53939,239 +44248,171 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4076 components: - pos: -34.5,6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4077 components: - pos: -34.5,5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4078 components: - pos: -34.5,4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4079 components: - pos: -34.5,3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4080 components: - pos: -33.5,3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4081 components: - pos: -32.5,3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4082 components: - pos: -31.5,3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4083 components: - pos: -30.5,3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4084 components: - pos: -29.5,3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4085 components: - pos: -28.5,3.5 parent: 30 - type: Transform - - fixtures: {} - type: Fixtures + type: Transform - uid: 4086 components: - pos: -26.5,3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4087 components: - pos: -27.5,3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4088 components: - pos: -25.5,3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4089 components: - pos: -24.5,3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4090 components: - pos: -23.5,3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4091 components: - pos: -22.5,3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4092 components: - pos: -21.5,3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4093 components: - pos: -21.5,4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4094 components: - pos: -21.5,5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4095 components: - pos: -21.5,6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4096 components: - pos: -22.5,6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4097 components: - pos: -23.5,6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4098 components: - pos: -24.5,6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4099 components: - pos: -25.5,6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4100 components: - pos: -26.5,6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4101 components: - pos: -26.5,6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4102 components: - pos: -26.5,7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4103 components: - pos: -26.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4104 components: - pos: -26.5,9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4105 components: - pos: -26.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4106 components: - pos: -26.5,11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4107 components: - pos: -26.5,12.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4108 components: - pos: -26.5,13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4109 components: - pos: -26.5,14.5 @@ -54179,8 +44420,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4199 components: - pos: -25.5,20.5 @@ -54188,8 +44427,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4200 components: - pos: -24.5,20.5 @@ -54197,8 +44434,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4201 components: - pos: -23.5,20.5 @@ -54206,8 +44441,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4202 components: - pos: -22.5,20.5 @@ -54215,8 +44448,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4203 components: - pos: -21.5,20.5 @@ -54224,8 +44455,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4204 components: - pos: -20.5,20.5 @@ -54233,8 +44462,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4205 components: - pos: -19.5,20.5 @@ -54242,8 +44469,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4206 components: - pos: -18.5,20.5 @@ -54251,8 +44476,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4207 components: - pos: -17.5,20.5 @@ -54260,8 +44483,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4208 components: - pos: -16.5,20.5 @@ -54269,8 +44490,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4209 components: - pos: -15.5,20.5 @@ -54278,8 +44497,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4210 components: - pos: -14.5,20.5 @@ -54287,8 +44504,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4211 components: - pos: -13.5,20.5 @@ -54296,8 +44511,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4212 components: - pos: -13.5,21.5 @@ -54305,8 +44518,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4213 components: - pos: -12.5,21.5 @@ -54314,8 +44525,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4214 components: - pos: -11.5,21.5 @@ -54323,8 +44532,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4215 components: - pos: -9.5,21.5 @@ -54332,8 +44539,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4216 components: - pos: -10.5,21.5 @@ -54341,8 +44546,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4217 components: - pos: -8.5,21.5 @@ -54350,8 +44553,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4218 components: - pos: -7.5,21.5 @@ -54359,8 +44560,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4219 components: - pos: -6.5,21.5 @@ -54368,8 +44567,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4220 components: - pos: -5.5,21.5 @@ -54377,8 +44574,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4221 components: - pos: -5.5,20.5 @@ -54386,8 +44581,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4222 components: - pos: -5.5,19.5 @@ -54395,8 +44588,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4223 components: - pos: -5.5,17.5 @@ -54404,8 +44595,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4224 components: - pos: -5.5,17.5 @@ -54413,8 +44602,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4225 components: - pos: -5.5,18.5 @@ -54422,8 +44609,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4226 components: - pos: -4.5,17.5 @@ -54431,8 +44616,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4227 components: - pos: -2.5,17.5 @@ -54440,8 +44623,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4228 components: - pos: -2.5,17.5 @@ -54449,8 +44630,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4229 components: - pos: -2.5,18.5 @@ -54458,8 +44637,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4230 components: - pos: -3.5,17.5 @@ -54467,36 +44644,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4231 components: - pos: -5.5,16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4232 components: - pos: -5.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4233 components: - pos: -5.5,14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4234 components: - pos: -5.5,13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4235 components: - pos: -6.5,13.5 @@ -54504,22 +44671,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4310 components: - pos: -5.5,11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4314 components: - pos: -5.5,12.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4512 components: - pos: -50.5,48.5 @@ -54527,8 +44688,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4513 components: - pos: -50.5,47.5 @@ -54536,8 +44695,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4514 components: - pos: -50.5,46.5 @@ -54545,8 +44702,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4515 components: - pos: -50.5,45.5 @@ -54554,8 +44709,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4516 components: - pos: -50.5,44.5 @@ -54563,8 +44716,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4517 components: - pos: -50.5,44.5 @@ -54572,8 +44723,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4518 components: - pos: -50.5,43.5 @@ -54581,78 +44730,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4519 components: - pos: -49.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4520 components: - pos: -48.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4521 components: - pos: -47.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4522 components: - pos: -46.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4523 components: - pos: -46.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4524 components: - pos: -46.5,45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4525 components: - pos: -46.5,46.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4526 components: - pos: -46.5,47.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4527 components: - pos: -46.5,48.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4528 components: - pos: -46.5,49.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4529 components: - pos: -45.5,49.5 @@ -54660,8 +44787,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4530 components: - pos: -47.5,59.5 @@ -54669,78 +44794,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4531 components: - pos: -47.5,58.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4532 components: - pos: -47.5,57.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4533 components: - pos: -47.5,56.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4534 components: - pos: -47.5,55.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4535 components: - pos: -47.5,54.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4536 components: - pos: -46.5,54.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4537 components: - pos: -46.5,53.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4538 components: - pos: -46.5,51.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4539 components: - pos: -46.5,52.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4540 components: - pos: -46.5,50.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4541 components: - pos: -36.5,53.5 @@ -54748,197 +44851,141 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4542 components: - pos: -35.5,53.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4543 components: - pos: -34.5,53.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4544 components: - pos: -33.5,53.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4545 components: - pos: -32.5,53.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4546 components: - pos: -32.5,51.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4547 components: - pos: -32.5,51.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4548 components: - pos: -32.5,52.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4549 components: - pos: -32.5,50.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4550 components: - pos: -32.5,49.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4551 components: - pos: -32.5,48.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4552 components: - pos: -32.5,47.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4553 components: - pos: -32.5,46.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4554 components: - pos: -32.5,45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4555 components: - pos: -32.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4556 components: - pos: -33.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4557 components: - pos: -34.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4558 components: - pos: -35.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4559 components: - pos: -36.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4560 components: - pos: -37.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4561 components: - pos: -38.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4562 components: - pos: -39.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4563 components: - pos: -40.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4564 components: - pos: -41.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4565 components: - pos: -42.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4566 components: - pos: -43.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4567 components: - pos: -44.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4568 components: - pos: -45.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 4973 components: - pos: -24.5,41.5 @@ -54946,8 +44993,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5182 components: - pos: -24.5,42.5 @@ -54955,8 +45000,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5183 components: - pos: -23.5,42.5 @@ -54964,8 +45007,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5184 components: - pos: -22.5,42.5 @@ -54973,8 +45014,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5185 components: - pos: -22.5,41.5 @@ -54982,8 +45021,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5186 components: - pos: -22.5,40.5 @@ -54991,8 +45028,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5187 components: - pos: -23.5,40.5 @@ -55000,8 +45035,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5562 components: - pos: 12.5,42.5 @@ -55009,29 +45042,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5563 components: - pos: 11.5,42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5564 components: - pos: 10.5,42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5565 components: - pos: 9.5,42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5566 components: - pos: 8.5,42.5 @@ -55039,8 +45064,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5863 components: - pos: -22.5,39.5 @@ -55048,134 +45071,96 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5864 components: - pos: -21.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5865 components: - pos: -20.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5866 components: - pos: -19.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5867 components: - pos: -18.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5868 components: - pos: -17.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5869 components: - pos: -16.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5870 components: - pos: -15.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5871 components: - pos: -14.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5872 components: - pos: -13.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5873 components: - pos: -12.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5874 components: - pos: -11.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5875 components: - pos: -11.5,40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5876 components: - pos: -11.5,41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5877 components: - pos: -11.5,42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5878 components: - pos: -11.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5879 components: - pos: -11.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5880 components: - pos: -11.5,45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5881 components: - pos: -12.5,45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5882 components: - pos: -13.5,45.5 @@ -55183,183 +45168,131 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5883 components: - pos: -10.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5884 components: - pos: -9.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5885 components: - pos: -8.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5886 components: - pos: -7.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5887 components: - pos: -6.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5888 components: - pos: -5.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5889 components: - pos: -4.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5890 components: - pos: -3.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5891 components: - pos: -3.5,38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5893 components: - pos: -3.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5894 components: - pos: -3.5,36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5895 components: - pos: -3.5,35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5896 components: - pos: -3.5,34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5897 components: - pos: -3.5,33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5898 components: - pos: -3.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5899 components: - pos: -2.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5900 components: - pos: -1.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5901 components: - pos: -0.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5902 components: - pos: 0.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5903 components: - pos: 1.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5904 components: - pos: 2.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5905 components: - pos: 3.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5906 components: - pos: 4.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5907 components: - pos: 4.5,33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5908 components: - pos: 4.5,34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 5909 components: - pos: 4.5,35.5 @@ -55367,15 +45300,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6225 components: - pos: -3.5,37.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 6273 components: - pos: -3.5,18.5 @@ -55383,8 +45312,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6274 components: - pos: -29.5,20.5 @@ -55392,22 +45319,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7470 components: - pos: -34.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7481 components: - pos: -32.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7804 components: - pos: -0.5,-11.5 @@ -55415,8 +45336,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7805 components: - pos: -0.5,-12.5 @@ -55424,8 +45343,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7806 components: - pos: -0.5,-13.5 @@ -55433,8 +45350,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7807 components: - pos: -0.5,-14.5 @@ -55442,8 +45357,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7808 components: - pos: -1.5,-14.5 @@ -55451,8 +45364,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7809 components: - pos: -2.5,-14.5 @@ -55460,8 +45371,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7810 components: - pos: -3.5,-14.5 @@ -55469,8 +45378,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7811 components: - pos: -4.5,-14.5 @@ -55478,8 +45385,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7812 components: - pos: -5.5,-14.5 @@ -55487,8 +45392,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7813 components: - pos: -6.5,-14.5 @@ -55496,8 +45399,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7814 components: - pos: -7.5,-14.5 @@ -55505,8 +45406,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7815 components: - pos: -8.5,-14.5 @@ -55514,8 +45413,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7816 components: - pos: -9.5,-14.5 @@ -55523,120 +45420,86 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7817 components: - pos: -10.5,-14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7818 components: - pos: -11.5,-14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7819 components: - pos: -12.5,-14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7820 components: - pos: -13.5,-14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7821 components: - pos: -14.5,-14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7822 components: - pos: -15.5,-14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7823 components: - pos: -16.5,-14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7824 components: - pos: -17.5,-14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7825 components: - pos: -18.5,-14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7826 components: - pos: -18.5,-15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7827 components: - pos: -18.5,-16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7828 components: - pos: -18.5,-17.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7829 components: - pos: -18.5,-18.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7830 components: - pos: -18.5,-19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7831 components: - pos: -18.5,-20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7832 components: - pos: -19.5,-20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7833 components: - pos: -20.5,-20.5 @@ -55644,99 +45507,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7834 components: - pos: -18.5,-13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7835 components: - pos: -18.5,-12.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7836 components: - pos: -18.5,-11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7837 components: - pos: -18.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7838 components: - pos: -18.5,-9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7839 components: - pos: -18.5,-8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7840 components: - pos: -18.5,-7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7841 components: - pos: -18.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7842 components: - pos: -18.5,-5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7843 components: - pos: -17.5,-5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7844 components: - pos: -16.5,-5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7845 components: - pos: -15.5,-5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7846 components: - pos: -15.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7847 components: - pos: -15.5,-3.5 @@ -55744,8 +45579,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7848 components: - pos: -2.5,-13.5 @@ -55753,8 +45586,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7849 components: - pos: -2.5,-12.5 @@ -55762,8 +45593,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7850 components: - pos: -2.5,-11.5 @@ -55771,8 +45600,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7851 components: - pos: -2.5,-10.5 @@ -55780,8 +45607,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7852 components: - pos: -2.5,-9.5 @@ -55789,8 +45614,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7853 components: - pos: -2.5,-8.5 @@ -55798,8 +45621,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7854 components: - pos: -2.5,-7.5 @@ -55807,8 +45628,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7855 components: - pos: -2.5,-6.5 @@ -55816,57 +45635,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7856 components: - pos: -2.5,-5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7857 components: - pos: -2.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7858 components: - pos: -2.5,-3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7859 components: - pos: -2.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7860 components: - pos: -2.5,-1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7861 components: - pos: -2.5,-0.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7862 components: - pos: -1.5,-0.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7863 components: - pos: -0.5,-0.5 @@ -55874,8 +45677,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7864 components: - pos: -37.5,-1.5 @@ -55883,8 +45684,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7865 components: - pos: -37.5,-2.5 @@ -55892,22 +45691,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7866 components: - pos: -36.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7867 components: - pos: -35.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7868 components: - pos: -35.5,-3.5 @@ -55915,113 +45708,81 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7876 components: - pos: -31.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7877 components: - pos: -30.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7878 components: - pos: -28.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7879 components: - pos: -28.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7880 components: - pos: -28.5,-7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7881 components: - pos: -28.5,-8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7882 components: - pos: -28.5,-9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7883 components: - pos: -28.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7884 components: - pos: -28.5,-11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7885 components: - pos: -28.5,-12.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7886 components: - pos: -28.5,-13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7887 components: - pos: -28.5,-14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7888 components: - pos: -28.5,-15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7889 components: - pos: -28.5,-16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7890 components: - pos: -27.5,-16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7891 components: - pos: -27.5,-17.5 @@ -56029,36 +45790,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7927 components: - pos: -33.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7936 components: - pos: -35.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 7937 components: - pos: -35.5,-5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8238 components: - pos: -35.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 8606 components: - pos: 3.5,-37.5 @@ -56066,8 +45817,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10063 components: - pos: -12.5,-57.5 @@ -56075,8 +45824,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10064 components: - pos: -12.5,-58.5 @@ -56084,8 +45831,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10065 components: - pos: -12.5,-59.5 @@ -56093,8 +45838,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10066 components: - pos: -11.5,-59.5 @@ -56102,8 +45845,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10067 components: - pos: -10.5,-59.5 @@ -56111,8 +45852,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10068 components: - pos: -9.5,-59.5 @@ -56120,8 +45859,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10069 components: - pos: -2.5,-58.5 @@ -56129,8 +45866,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10070 components: - pos: -2.5,-59.5 @@ -56138,8 +45873,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10071 components: - pos: -3.5,-59.5 @@ -56147,8 +45880,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10072 components: - pos: -5.5,-59.5 @@ -56156,8 +45887,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10073 components: - pos: -6.5,-59.5 @@ -56165,8 +45894,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10074 components: - pos: -8.5,-60.5 @@ -56174,8 +45901,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10075 components: - pos: -7.5,-60.5 @@ -56183,8 +45908,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10076 components: - pos: -6.5,-60.5 @@ -56192,8 +45915,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10269 components: - pos: -17.5,-51.5 @@ -56201,8 +45922,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10270 components: - pos: -17.5,-52.5 @@ -56210,8 +45929,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10271 components: - pos: -17.5,-53.5 @@ -56219,8 +45936,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10272 components: - pos: -17.5,-54.5 @@ -56228,8 +45943,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10273 components: - pos: -17.5,-55.5 @@ -56237,8 +45950,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10274 components: - pos: -17.5,-56.5 @@ -56246,8 +45957,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10275 components: - pos: -17.5,-57.5 @@ -56255,8 +45964,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10276 components: - pos: -17.5,-58.5 @@ -56264,8 +45971,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10277 components: - pos: -17.5,-59.5 @@ -56273,8 +45978,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10278 components: - pos: -17.5,-60.5 @@ -56282,8 +45985,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10279 components: - pos: -17.5,-61.5 @@ -56291,8 +45992,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10280 components: - pos: -17.5,-62.5 @@ -56300,8 +45999,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10281 components: - pos: -17.5,-63.5 @@ -56309,8 +46006,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10282 components: - pos: -17.5,-64.5 @@ -56318,8 +46013,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10283 components: - pos: -17.5,-65.5 @@ -56327,8 +46020,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10284 components: - pos: -17.5,-66.5 @@ -56336,8 +46027,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10285 components: - pos: -17.5,-67.5 @@ -56345,8 +46034,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10286 components: - pos: -17.5,-68.5 @@ -56354,8 +46041,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10287 components: - pos: -17.5,-69.5 @@ -56363,8 +46048,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10288 components: - pos: -17.5,-70.5 @@ -56372,8 +46055,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10289 components: - pos: -17.5,-71.5 @@ -56381,8 +46062,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10290 components: - pos: -16.5,-71.5 @@ -56390,8 +46069,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10291 components: - pos: -15.5,-71.5 @@ -56399,8 +46076,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10292 components: - pos: -14.5,-71.5 @@ -56408,8 +46083,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10293 components: - pos: -13.5,-71.5 @@ -56417,8 +46090,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10294 components: - pos: -12.5,-71.5 @@ -56426,8 +46097,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10295 components: - pos: -11.5,-71.5 @@ -56435,8 +46104,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10296 components: - pos: -10.5,-71.5 @@ -56444,8 +46111,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10297 components: - pos: -9.5,-71.5 @@ -56453,8 +46118,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10298 components: - pos: -8.5,-71.5 @@ -56462,8 +46125,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10299 components: - pos: -6.5,-71.5 @@ -56471,8 +46132,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10300 components: - pos: -7.5,-71.5 @@ -56480,8 +46139,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10301 components: - pos: -5.5,-71.5 @@ -56489,8 +46146,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10302 components: - pos: -5.5,-72.5 @@ -56498,8 +46153,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10303 components: - pos: -5.5,-73.5 @@ -56507,8 +46160,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10304 components: - pos: -5.5,-74.5 @@ -56516,8 +46167,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10305 components: - pos: -5.5,-75.5 @@ -56525,8 +46174,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10306 components: - pos: -5.5,-76.5 @@ -56534,8 +46181,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10307 components: - pos: -5.5,-77.5 @@ -56543,8 +46188,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10308 components: - pos: -5.5,-78.5 @@ -56552,8 +46195,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10309 components: - pos: -5.5,-79.5 @@ -56561,8 +46202,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10310 components: - pos: -5.5,-80.5 @@ -56570,8 +46209,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10311 components: - pos: -5.5,-81.5 @@ -56579,8 +46216,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10312 components: - pos: -5.5,-82.5 @@ -56588,8 +46223,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10313 components: - pos: -5.5,-83.5 @@ -56597,8 +46230,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10314 components: - pos: -5.5,-84.5 @@ -56606,8 +46237,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10315 components: - pos: -5.5,-85.5 @@ -56615,8 +46244,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10316 components: - pos: -5.5,-86.5 @@ -56624,8 +46251,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10317 components: - pos: -5.5,-87.5 @@ -56633,8 +46258,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10318 components: - pos: -5.5,-88.5 @@ -56642,8 +46265,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10319 components: - pos: -5.5,-89.5 @@ -56651,8 +46272,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10320 components: - pos: -5.5,-90.5 @@ -56660,8 +46279,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10321 components: - pos: -5.5,-91.5 @@ -56669,8 +46286,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10322 components: - pos: -5.5,-92.5 @@ -56678,8 +46293,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10323 components: - pos: -5.5,-93.5 @@ -56687,8 +46300,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10324 components: - pos: -5.5,-94.5 @@ -56696,8 +46307,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10325 components: - pos: -5.5,-95.5 @@ -56705,8 +46314,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10326 components: - pos: -6.5,-95.5 @@ -56714,8 +46321,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10327 components: - pos: -7.5,-95.5 @@ -56723,8 +46328,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10328 components: - pos: -8.5,-95.5 @@ -56732,8 +46335,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10329 components: - pos: -9.5,-95.5 @@ -56741,8 +46342,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10330 components: - pos: -10.5,-95.5 @@ -56750,8 +46349,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10331 components: - pos: -11.5,-95.5 @@ -56759,8 +46356,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10332 components: - pos: -12.5,-95.5 @@ -56768,8 +46363,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10333 components: - pos: -13.5,-95.5 @@ -56777,8 +46370,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10334 components: - pos: -14.5,-95.5 @@ -56786,8 +46377,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10335 components: - pos: -15.5,-95.5 @@ -56795,8 +46384,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10336 components: - pos: -16.5,-95.5 @@ -56804,8 +46391,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10337 components: - pos: -17.5,-95.5 @@ -56813,8 +46398,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10338 components: - pos: -18.5,-95.5 @@ -56822,8 +46405,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10339 components: - pos: -19.5,-95.5 @@ -56831,8 +46412,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10340 components: - pos: -20.5,-95.5 @@ -56840,8 +46419,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10341 components: - pos: -21.5,-95.5 @@ -56849,8 +46426,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10342 components: - pos: -22.5,-95.5 @@ -56858,8 +46433,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10343 components: - pos: -23.5,-95.5 @@ -56867,8 +46440,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10344 components: - pos: -24.5,-95.5 @@ -56876,8 +46447,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10345 components: - pos: -25.5,-95.5 @@ -56885,8 +46454,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10346 components: - pos: -26.5,-95.5 @@ -56894,8 +46461,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10347 components: - pos: -27.5,-95.5 @@ -56903,8 +46468,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10348 components: - pos: -28.5,-95.5 @@ -56912,8 +46475,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10349 components: - pos: -29.5,-95.5 @@ -56921,8 +46482,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10350 components: - pos: -29.5,-94.5 @@ -56930,8 +46489,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10351 components: - pos: -29.5,-93.5 @@ -56939,8 +46496,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10352 components: - pos: -29.5,-92.5 @@ -56948,8 +46503,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10353 components: - pos: -29.5,-91.5 @@ -56957,8 +46510,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10354 components: - pos: -29.5,-90.5 @@ -56966,8 +46517,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10355 components: - pos: -29.5,-89.5 @@ -56975,8 +46524,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10356 components: - pos: -29.5,-88.5 @@ -56984,8 +46531,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10357 components: - pos: -29.5,-87.5 @@ -56993,8 +46538,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10358 components: - pos: -29.5,-86.5 @@ -57002,8 +46545,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10359 components: - pos: -29.5,-85.5 @@ -57011,8 +46552,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10360 components: - pos: -29.5,-84.5 @@ -57020,8 +46559,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10361 components: - pos: -29.5,-83.5 @@ -57029,8 +46566,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10362 components: - pos: -29.5,-82.5 @@ -57038,8 +46573,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10363 components: - pos: -29.5,-81.5 @@ -57047,8 +46580,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10364 components: - pos: -29.5,-80.5 @@ -57056,8 +46587,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10365 components: - pos: -29.5,-79.5 @@ -57065,8 +46594,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10366 components: - pos: -29.5,-78.5 @@ -57074,8 +46601,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10367 components: - pos: -29.5,-77.5 @@ -57083,8 +46608,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10368 components: - pos: -29.5,-76.5 @@ -57092,8 +46615,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10369 components: - pos: -29.5,-75.5 @@ -57101,8 +46622,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10370 components: - pos: -29.5,-74.5 @@ -57110,8 +46629,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10371 components: - pos: -29.5,-73.5 @@ -57119,8 +46636,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10372 components: - pos: -29.5,-72.5 @@ -57128,8 +46643,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10373 components: - pos: -29.5,-71.5 @@ -57137,8 +46650,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10374 components: - pos: -28.5,-71.5 @@ -57146,8 +46657,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10375 components: - pos: -27.5,-71.5 @@ -57155,8 +46664,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10376 components: - pos: -26.5,-71.5 @@ -57164,8 +46671,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10377 components: - pos: -25.5,-71.5 @@ -57173,8 +46678,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10378 components: - pos: -24.5,-71.5 @@ -57182,8 +46685,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10379 components: - pos: -23.5,-71.5 @@ -57191,8 +46692,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10380 components: - pos: -22.5,-71.5 @@ -57200,8 +46699,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10381 components: - pos: -21.5,-71.5 @@ -57209,8 +46706,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10382 components: - pos: -20.5,-71.5 @@ -57218,8 +46713,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10383 components: - pos: -19.5,-71.5 @@ -57227,8 +46720,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10384 components: - pos: -18.5,-71.5 @@ -57236,8 +46727,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10534 components: - pos: -16.5,-51.5 @@ -57245,78 +46734,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10537 components: - pos: 3.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10538 components: - pos: 2.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10539 components: - pos: 1.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10540 components: - pos: 0.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10541 components: - pos: -0.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10542 components: - pos: -1.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10543 components: - pos: -1.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10544 components: - pos: -2.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10545 components: - pos: -3.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10546 components: - pos: -4.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10547 components: - pos: -20.5,-38.5 @@ -57324,43 +46791,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10548 components: - pos: -19.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10549 components: - pos: -18.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10550 components: - pos: -17.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10551 components: - pos: -16.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10552 components: - pos: -15.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10553 components: - pos: -14.5,-38.5 @@ -57368,120 +46823,86 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10554 components: - pos: -13.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10555 components: - pos: -12.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10556 components: - pos: -11.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10557 components: - pos: -10.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10558 components: - pos: -9.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10559 components: - pos: -8.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10560 components: - pos: -7.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10561 components: - pos: -6.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10562 components: - pos: -5.5,-38.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10563 components: - pos: 1.5,-37.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10564 components: - pos: 1.5,-36.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10565 components: - pos: 1.5,-35.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10566 components: - pos: 1.5,-34.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10567 components: - pos: 1.5,-33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10568 components: - pos: 1.5,-32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10569 components: - pos: 0.5,-32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10570 components: - pos: 0.5,-31.5 @@ -57489,78 +46910,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10571 components: - pos: 2.5,-33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10572 components: - pos: 3.5,-33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10573 components: - pos: 4.5,-33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10574 components: - pos: 5.5,-33.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10575 components: - pos: 5.5,-32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10576 components: - pos: 5.5,-31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10577 components: - pos: 6.5,-31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10578 components: - pos: 8.5,-31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10579 components: - pos: 9.5,-31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10580 components: - pos: 7.5,-31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 10581 components: - pos: 9.5,-30.5 @@ -57568,15 +46967,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11238 components: - pos: -29.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11534 components: - pos: 10.5,-16.5 @@ -57584,176 +46979,126 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11535 components: - pos: 11.5,-16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11536 components: - pos: 12.5,-16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11537 components: - pos: 12.5,-15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11538 components: - pos: 12.5,-14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11539 components: - pos: 12.5,-13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11540 components: - pos: 12.5,-12.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11541 components: - pos: 12.5,-11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11542 components: - pos: 12.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11543 components: - pos: 12.5,-9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11544 components: - pos: 12.5,-8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11545 components: - pos: 12.5,-7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11546 components: - pos: 12.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11547 components: - pos: 12.5,-5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11548 components: - pos: 12.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11549 components: - pos: 12.5,-3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11550 components: - pos: 12.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11551 components: - pos: 12.5,-1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11552 components: - pos: 12.5,-0.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11553 components: - pos: 12.5,0.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11554 components: - pos: 12.5,1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11555 components: - pos: 12.5,2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11556 components: - pos: 12.5,3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11557 components: - pos: 12.5,4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11558 components: - pos: 12.5,5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11559 components: - pos: 12.5,6.5 @@ -57761,8 +47106,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11560 components: - pos: 12.5,7.5 @@ -57770,8 +47113,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11561 components: - pos: 13.5,7.5 @@ -57779,8 +47120,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11562 components: - pos: 14.5,7.5 @@ -57788,8 +47127,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11563 components: - pos: 15.5,7.5 @@ -57797,8 +47134,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11564 components: - pos: 15.5,6.5 @@ -57806,8 +47141,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11565 components: - pos: 15.5,5.5 @@ -57815,8 +47148,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11566 components: - pos: 15.5,4.5 @@ -57824,85 +47155,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11712 components: - pos: 23.5,-1.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11809 components: - pos: 13.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11810 components: - pos: 14.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11811 components: - pos: 15.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11812 components: - pos: 16.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11813 components: - pos: 17.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11814 components: - pos: 18.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11815 components: - pos: 19.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11816 components: - pos: 20.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11817 components: - pos: 21.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11818 components: - pos: 22.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11825 components: - pos: 33.5,-0.5 @@ -57910,15 +47217,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11826 components: - pos: 33.5,0.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11827 components: - pos: 33.5,1.5 @@ -57926,8 +47229,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11828 components: - pos: 33.5,2.5 @@ -57935,8 +47236,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11829 components: - pos: 33.5,3.5 @@ -57944,8 +47243,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11830 components: - pos: 33.5,4.5 @@ -57953,8 +47250,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11835 components: - pos: 19.5,5.5 @@ -57962,8 +47257,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11836 components: - pos: 16.5,7.5 @@ -57971,8 +47264,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11837 components: - pos: 17.5,7.5 @@ -57980,8 +47271,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11838 components: - pos: 17.5,6.5 @@ -57989,8 +47278,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11839 components: - pos: 17.5,5.5 @@ -57998,8 +47285,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11840 components: - pos: 18.5,5.5 @@ -58007,8 +47292,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11843 components: - pos: 32.5,5.5 @@ -58016,8 +47299,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11844 components: - pos: 30.5,5.5 @@ -58025,8 +47306,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11845 components: - pos: 29.5,5.5 @@ -58034,8 +47313,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11846 components: - pos: 27.5,5.5 @@ -58043,8 +47320,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11847 components: - pos: 25.5,5.5 @@ -58052,8 +47327,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11848 components: - pos: 23.5,5.5 @@ -58061,8 +47334,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11849 components: - pos: 22.5,5.5 @@ -58070,8 +47341,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11850 components: - pos: 21.5,5.5 @@ -58079,52 +47348,38 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11851 components: - pos: 20.5,5.5 parent: 30 type: Transform - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures + type: AmbientSound - uid: 11852 components: - pos: 21.5,-7.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11853 components: - pos: 21.5,-8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11854 components: - pos: 21.5,-9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11855 components: - pos: 21.5,-10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11856 components: - pos: 21.5,-11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 11857 components: - pos: 21.5,-12.5 @@ -58132,22 +47387,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11940 components: - pos: 23.5,-2.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12026 components: - pos: 23.5,-3.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12027 components: - pos: 23.5,-0.5 @@ -58155,8 +47404,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12185 components: - pos: 33.5,5.5 @@ -58164,8 +47411,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12186 components: - pos: 31.5,5.5 @@ -58173,8 +47418,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12187 components: - pos: 28.5,5.5 @@ -58182,8 +47425,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12188 components: - pos: 26.5,5.5 @@ -58191,8 +47432,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12189 components: - pos: 24.5,5.5 @@ -58200,8 +47439,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12315 components: - pos: 12.5,42.5 @@ -58209,15 +47446,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12316 components: - pos: 11.5,42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12317 components: - pos: 19.5,31.5 @@ -58225,8 +47458,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12318 components: - pos: 19.5,30.5 @@ -58234,8 +47465,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12319 components: - pos: 19.5,29.5 @@ -58243,8 +47472,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12320 components: - pos: 19.5,28.5 @@ -58252,22 +47479,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12860 components: - pos: 21.5,12.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 12862 components: - pos: 20.5,12.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13099 components: - pos: 35.5,17.5 @@ -58275,8 +47496,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13100 components: - pos: 36.5,17.5 @@ -58284,8 +47503,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13101 components: - pos: 37.5,17.5 @@ -58293,8 +47510,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13102 components: - pos: 38.5,17.5 @@ -58302,8 +47517,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13103 components: - pos: 38.5,18.5 @@ -58311,8 +47524,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13104 components: - pos: 38.5,19.5 @@ -58320,8 +47531,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13105 components: - pos: 37.5,19.5 @@ -58329,8 +47538,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13106 components: - pos: 36.5,19.5 @@ -58338,8 +47545,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13107 components: - pos: 35.5,19.5 @@ -58347,8 +47552,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13108 components: - pos: 35.5,20.5 @@ -58356,8 +47559,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13109 components: - pos: 35.5,21.5 @@ -58365,8 +47566,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13110 components: - pos: 35.5,22.5 @@ -58374,8 +47573,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13111 components: - pos: 35.5,23.5 @@ -58383,8 +47580,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13112 components: - pos: 35.5,24.5 @@ -58392,8 +47587,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13113 components: - pos: 35.5,25.5 @@ -58401,155 +47594,111 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13114 components: - pos: 34.5,25.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13115 components: - pos: 33.5,25.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13116 components: - pos: 32.5,25.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13117 components: - pos: 31.5,25.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13118 components: - pos: 31.5,24.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13119 components: - pos: 31.5,23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13120 components: - pos: 31.5,22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13121 components: - pos: 31.5,21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13122 components: - pos: 30.5,21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13123 components: - pos: 29.5,21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13124 components: - pos: 28.5,21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13125 components: - pos: 27.5,21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13126 components: - pos: 25.5,20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13127 components: - pos: 25.5,21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13128 components: - pos: 24.5,21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13129 components: - pos: 23.5,21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13130 components: - pos: 22.5,21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13131 components: - pos: 21.5,21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13132 components: - pos: 20.5,21.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13133 components: - pos: 20.5,22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13134 components: - pos: 20.5,23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13135 components: - pos: 20.5,24.5 @@ -58557,225 +47706,161 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13136 components: - pos: 22.5,20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13137 components: - pos: 22.5,19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13138 components: - pos: 22.5,18.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13139 components: - pos: 22.5,18.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13140 components: - pos: 22.5,17.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13141 components: - pos: 22.5,16.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13142 components: - pos: 22.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13143 components: - pos: 22.5,14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13144 components: - pos: 22.5,13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13145 components: - pos: 22.5,12.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13146 components: - pos: 22.5,11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13147 components: - pos: 22.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13148 components: - pos: 22.5,9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13149 components: - pos: 22.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13150 components: - pos: 23.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13151 components: - pos: 24.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13153 components: - pos: 25.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13154 components: - pos: 26.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13155 components: - pos: 27.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13156 components: - pos: 28.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13157 components: - pos: 29.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13158 components: - pos: 30.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13159 components: - pos: 31.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13160 components: - pos: 32.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13161 components: - pos: 32.5,9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13162 components: - pos: 32.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13163 components: - pos: 32.5,11.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13164 components: - pos: 32.5,12.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13165 components: - pos: 32.5,13.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13166 components: - pos: 32.5,14.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13167 components: - pos: 32.5,15.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13168 components: - pos: 32.5,16.5 @@ -58783,15 +47868,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13211 components: - pos: 19.5,12.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13283 components: - pos: 18.5,13.5 @@ -58799,29 +47880,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13307 components: - pos: 26.5,20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13331 components: - pos: 18.5,12.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13369 components: - pos: 27.5,20.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 13445 components: - pos: 15.5,50.5 @@ -58829,8 +47902,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13448 components: - pos: 15.5,54.5 @@ -58838,8 +47909,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13724 components: - pos: 16.5,54.5 @@ -58847,8 +47916,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13727 components: - pos: 15.5,55.5 @@ -58856,8 +47923,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14542 components: - pos: 39.5,17.5 @@ -58865,8 +47930,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14543 components: - pos: 40.5,17.5 @@ -58874,8 +47937,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14544 components: - pos: 41.5,17.5 @@ -58883,8 +47944,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14545 components: - pos: 42.5,17.5 @@ -58892,8 +47951,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14546 components: - pos: 42.5,18.5 @@ -58901,8 +47958,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14547 components: - pos: 42.5,19.5 @@ -58910,8 +47965,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14548 components: - pos: 43.5,19.5 @@ -58919,8 +47972,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14549 components: - pos: 44.5,19.5 @@ -58928,8 +47979,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14550 components: - pos: 45.5,19.5 @@ -58937,8 +47986,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14551 components: - pos: 46.5,19.5 @@ -58946,15 +47993,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14552 components: - pos: 47.5,19.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 14553 components: - pos: 48.5,19.5 @@ -58962,8 +48005,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14554 components: - pos: 48.5,20.5 @@ -58971,8 +48012,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14731 components: - pos: 16.5,50.5 @@ -58980,8 +48019,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14732 components: - pos: 16.5,51.5 @@ -58989,8 +48026,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14733 components: - pos: 16.5,52.5 @@ -58998,8 +48033,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14734 components: - pos: 16.5,53.5 @@ -59007,8 +48040,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14739 components: - pos: 16.5,49.5 @@ -59016,8 +48047,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14740 components: - pos: 16.5,48.5 @@ -59025,8 +48054,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14741 components: - pos: 17.5,48.5 @@ -59034,8 +48061,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14742 components: - pos: 18.5,48.5 @@ -59043,8 +48068,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14743 components: - pos: 19.5,48.5 @@ -59052,8 +48075,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14744 components: - pos: 19.5,49.5 @@ -59061,8 +48082,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14745 components: - pos: 19.5,50.5 @@ -59070,8 +48089,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14746 components: - pos: 19.5,51.5 @@ -59079,8 +48096,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14747 components: - pos: 19.5,52.5 @@ -59088,8 +48103,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14748 components: - pos: 19.5,53.5 @@ -59097,8 +48110,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14749 components: - pos: 20.5,53.5 @@ -59106,8 +48117,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14750 components: - pos: 21.5,53.5 @@ -59115,8 +48124,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14751 components: - pos: 22.5,53.5 @@ -59124,8 +48131,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14752 components: - pos: 23.5,53.5 @@ -59133,8 +48138,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14753 components: - pos: 24.5,53.5 @@ -59142,8 +48145,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14754 components: - pos: 25.5,53.5 @@ -59151,8 +48152,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14755 components: - pos: 26.5,53.5 @@ -59160,8 +48159,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14756 components: - pos: 27.5,53.5 @@ -59169,8 +48166,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14757 components: - pos: 28.5,53.5 @@ -59178,8 +48173,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14758 components: - pos: 29.5,53.5 @@ -59187,8 +48180,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14759 components: - pos: 30.5,53.5 @@ -59196,8 +48187,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14760 components: - pos: 30.5,52.5 @@ -59205,8 +48194,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14761 components: - pos: 30.5,51.5 @@ -59214,8 +48201,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14762 components: - pos: 30.5,50.5 @@ -59223,8 +48208,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14763 components: - pos: 30.5,48.5 @@ -59232,8 +48215,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14764 components: - pos: 30.5,49.5 @@ -59241,8 +48222,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14765 components: - pos: 30.5,47.5 @@ -59250,8 +48229,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14766 components: - pos: 30.5,46.5 @@ -59259,8 +48236,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14767 components: - pos: 30.5,45.5 @@ -59268,8 +48243,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14768 components: - pos: 31.5,45.5 @@ -59277,8 +48250,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14769 components: - pos: 32.5,45.5 @@ -59286,8 +48257,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14770 components: - pos: 32.5,44.5 @@ -59295,29 +48264,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16128 components: - pos: 23.5,-4.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 16420 components: - pos: 23.5,-5.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 17584 components: - pos: 23.5,-6.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18118 components: - pos: -79.5,-57.5 @@ -59325,8 +48286,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18859 components: - pos: -52.5,-59.5 @@ -59334,8 +48293,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18860 components: - pos: -53.5,-59.5 @@ -59343,323 +48300,231 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18861 components: - pos: -54.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18862 components: - pos: -55.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18863 components: - pos: -56.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18864 components: - pos: -57.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18865 components: - pos: -58.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18866 components: - pos: -59.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18867 components: - pos: -60.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18868 components: - pos: -61.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18869 components: - pos: -62.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18870 components: - pos: -63.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18871 components: - pos: -64.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18872 components: - pos: -65.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18873 components: - pos: -66.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18874 components: - pos: -66.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18875 components: - pos: -67.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18876 components: - pos: -68.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18877 components: - pos: -68.5,-58.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18878 components: - pos: -69.5,-58.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18879 components: - pos: -70.5,-58.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18880 components: - pos: -70.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18881 components: - pos: -70.5,-60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18882 components: - pos: -71.5,-60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18883 components: - pos: -72.5,-60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18884 components: - pos: -73.5,-60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18885 components: - pos: -74.5,-60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18886 components: - pos: -75.5,-60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18887 components: - pos: -76.5,-60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18888 components: - pos: -77.5,-60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18889 components: - pos: -78.5,-60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18890 components: - pos: -79.5,-60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18891 components: - pos: -79.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18892 components: - pos: -79.5,-58.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18893 components: - pos: -68.5,-57.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18894 components: - pos: -68.5,-56.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18895 components: - pos: -68.5,-54.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18896 components: - pos: -68.5,-55.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18897 components: - pos: -68.5,-53.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18898 components: - pos: -68.5,-52.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18899 components: - pos: -68.5,-51.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18900 components: - pos: -68.5,-50.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18901 components: - pos: -68.5,-49.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18902 components: - pos: -68.5,-48.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18903 components: - pos: -67.5,-48.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18904 components: - pos: -65.5,-48.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18905 components: - pos: -66.5,-48.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18906 components: - pos: -65.5,-47.5 @@ -59667,106 +48532,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18907 components: - pos: -67.5,-47.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18908 components: - pos: -67.5,-46.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18909 components: - pos: -67.5,-45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18910 components: - pos: -68.5,-45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18911 components: - pos: -69.5,-45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18912 components: - pos: -70.5,-45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18913 components: - pos: -71.5,-45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18914 components: - pos: -72.5,-45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18915 components: - pos: -73.5,-45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18916 components: - pos: -74.5,-45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18917 components: - pos: -75.5,-45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18918 components: - pos: -76.5,-45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18919 components: - pos: -76.5,-44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18920 components: - pos: -76.5,-43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18921 components: - pos: -76.5,-42.5 @@ -59774,8 +48609,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18936 components: - pos: -41.5,-24.5 @@ -59783,22 +48616,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18940 components: - pos: -44.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18941 components: - pos: -44.5,-22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18942 components: - pos: -43.5,-22.5 @@ -59806,169 +48633,121 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18943 components: - pos: -45.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18944 components: - pos: -46.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18945 components: - pos: -47.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18946 components: - pos: -48.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18947 components: - pos: -49.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18948 components: - pos: -50.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18949 components: - pos: -51.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18950 components: - pos: -52.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18951 components: - pos: -53.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18952 components: - pos: -54.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18953 components: - pos: -55.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18954 components: - pos: -56.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18955 components: - pos: -57.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18956 components: - pos: -58.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18957 components: - pos: -58.5,-22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18958 components: - pos: -59.5,-22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18959 components: - pos: -60.5,-22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18960 components: - pos: -61.5,-22.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18961 components: - pos: -61.5,-23.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18962 components: - pos: -61.5,-24.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18963 components: - pos: -61.5,-25.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18964 components: - pos: -61.5,-26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18965 components: - pos: -61.5,-27.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18966 components: - pos: -59.5,-25.5 @@ -59976,22 +48755,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18967 components: - pos: -59.5,-27.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18968 components: - pos: -60.5,-28.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 18969 components: - pos: -59.5,-25.5 @@ -59999,64 +48772,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19033 components: - pos: -61.5,-28.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19034 components: - pos: -59.5,-28.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 19056 components: - pos: -59.5,-26.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20157 components: - pos: -1.5,84.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20158 components: - pos: -1.5,83.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20159 components: - pos: -0.5,83.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20160 components: - pos: 0.5,83.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20161 components: - pos: 0.5,84.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20162 components: - pos: 0.5,85.5 @@ -60064,8 +48819,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20322 components: - pos: -5.5,-13.5 @@ -60073,8 +48826,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20338 components: - pos: -2.5,36.5 @@ -60082,8 +48833,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20341 components: - pos: 30.5,6.5 @@ -60091,8 +48840,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20418 components: - pos: -22.5,-46.5 @@ -60100,127 +48847,91 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20419 components: - pos: -23.5,-46.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20420 components: - pos: -23.5,-45.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20421 components: - pos: -23.5,-44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20422 components: - pos: -23.5,-43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20423 components: - pos: -23.5,-42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20424 components: - pos: -22.5,-42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20425 components: - pos: -21.5,-42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20426 components: - pos: -20.5,-42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20427 components: - pos: -19.5,-42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20428 components: - pos: -18.5,-42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20429 components: - pos: -18.5,-41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20430 components: - pos: -18.5,-40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20431 components: - pos: -18.5,-39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20893 components: - pos: -47.5,42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20894 components: - pos: -47.5,41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20895 components: - pos: -47.5,40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20896 components: - pos: -47.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20897 components: - pos: -47.5,38.5 @@ -60228,8 +48939,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20898 components: - pos: -46.5,38.5 @@ -60237,8 +48946,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20899 components: - pos: -48.5,38.5 @@ -60246,43 +48953,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20900 components: - pos: -43.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20901 components: - pos: -43.5,42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20902 components: - pos: -43.5,41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20903 components: - pos: -43.5,40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20904 components: - pos: -43.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20905 components: - pos: -43.5,38.5 @@ -60290,8 +48985,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20906 components: - pos: -44.5,38.5 @@ -60299,8 +48992,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20907 components: - pos: -42.5,38.5 @@ -60308,50 +48999,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20908 components: - pos: -39.5,44.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20909 components: - pos: -39.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20910 components: - pos: -39.5,42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20911 components: - pos: -39.5,41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20912 components: - pos: -39.5,40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20913 components: - pos: -39.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20914 components: - pos: -39.5,38.5 @@ -60359,8 +49036,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20915 components: - pos: -40.5,38.5 @@ -60368,8 +49043,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20916 components: - pos: -38.5,38.5 @@ -60377,22 +49050,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20917 components: - pos: -35.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20918 components: - pos: -35.5,42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20919 components: - pos: -35.5,41.5 @@ -60400,22 +49067,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20920 components: - pos: -35.5,40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20921 components: - pos: -35.5,39.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20922 components: - pos: -35.5,38.5 @@ -60423,8 +49084,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20923 components: - pos: -13.5,46.5 @@ -60432,8 +49091,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20924 components: - pos: -13.5,47.5 @@ -60441,8 +49098,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20925 components: - pos: -12.5,47.5 @@ -60450,8 +49105,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20926 components: - pos: -11.5,47.5 @@ -60459,8 +49112,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20927 components: - pos: -10.5,47.5 @@ -60468,8 +49119,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20928 components: - pos: -9.5,47.5 @@ -60477,8 +49126,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20929 components: - pos: -8.5,47.5 @@ -60486,8 +49133,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20930 components: - pos: -7.5,47.5 @@ -60495,8 +49140,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20931 components: - pos: -6.5,47.5 @@ -60504,8 +49147,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20932 components: - pos: -5.5,47.5 @@ -60513,8 +49154,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20933 components: - pos: -5.5,46.5 @@ -60522,36 +49161,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20934 components: - pos: -14.5,40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20935 components: - pos: -14.5,41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20936 components: - pos: -14.5,42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20937 components: - pos: -14.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20938 components: - pos: -14.5,44.5 @@ -60559,8 +49188,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20939 components: - pos: -15.5,43.5 @@ -60568,36 +49195,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20940 components: - pos: -4.5,40.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20941 components: - pos: -4.5,41.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20942 components: - pos: -4.5,42.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20943 components: - pos: -4.5,43.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20944 components: - pos: -4.5,44.5 @@ -60605,8 +49222,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20945 components: - pos: -3.5,43.5 @@ -60614,15 +49229,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20946 components: - pos: 0.5,31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20947 components: - pos: 0.5,30.5 @@ -60630,15 +49241,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20948 components: - pos: 3.5,32.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 20949 components: - pos: 3.5,30.5 @@ -60646,15 +49253,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20950 components: - pos: 3.5,31.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 21035 components: - pos: 14.5,50.5 @@ -60662,8 +49265,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21036 components: - pos: 13.5,50.5 @@ -60671,8 +49272,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21037 components: - pos: 12.5,50.5 @@ -60680,8 +49279,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21038 components: - pos: 12.5,51.5 @@ -60689,8 +49286,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21623 components: - pos: -42.5,-24.5 @@ -60698,8 +49293,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21624 components: - pos: -40.5,-24.5 @@ -60707,8 +49300,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21625 components: - pos: -39.5,-24.5 @@ -60716,8 +49307,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21626 components: - pos: -38.5,-24.5 @@ -60725,8 +49314,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21627 components: - pos: -37.5,-24.5 @@ -60734,8 +49321,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21628 components: - pos: -36.5,-24.5 @@ -60743,8 +49328,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21629 components: - pos: -36.5,-25.5 @@ -60752,8 +49335,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21630 components: - pos: -36.5,-26.5 @@ -60761,8 +49342,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21631 components: - pos: -36.5,-27.5 @@ -60770,8 +49349,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21632 components: - pos: -37.5,-27.5 @@ -60779,8 +49356,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21633 components: - pos: -38.5,-27.5 @@ -60788,8 +49363,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21634 components: - pos: -39.5,-27.5 @@ -60797,8 +49370,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21635 components: - pos: -40.5,-27.5 @@ -60806,8 +49377,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21636 components: - pos: -41.5,-27.5 @@ -60815,8 +49384,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21637 components: - pos: -42.5,-27.5 @@ -60824,8 +49391,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21638 components: - pos: -43.5,-27.5 @@ -60833,8 +49398,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21639 components: - pos: -44.5,-27.5 @@ -60842,8 +49405,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21640 components: - pos: -45.5,-27.5 @@ -60851,8 +49412,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21641 components: - pos: -45.5,-26.5 @@ -60860,92 +49419,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21642 components: - pos: -45.5,-25.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 21643 components: - pos: -45.5,-24.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22237 components: - pos: 33.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22238 components: - pos: 34.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22239 components: - pos: 35.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22240 components: - pos: 36.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22241 components: - pos: 37.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22242 components: - pos: 38.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22243 components: - pos: 39.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22244 components: - pos: 40.5,8.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22245 components: - pos: 40.5,9.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22246 components: - pos: 40.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22247 components: - pos: 41.5,10.5 @@ -60953,71 +49486,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22248 components: - pos: -5.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22249 components: - pos: -4.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22250 components: - pos: -3.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22251 components: - pos: -2.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22252 components: - pos: -1.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22253 components: - pos: -0.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22254 components: - pos: 0.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22255 components: - pos: 1.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22256 components: - pos: 2.5,10.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22257 components: - pos: 3.5,10.5 @@ -61025,8 +49538,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22674 components: - pos: -27.5,-62.5 @@ -61034,8 +49545,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22675 components: - pos: -27.5,-61.5 @@ -61043,8 +49552,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22676 components: - pos: -26.5,-61.5 @@ -61052,8 +49559,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22677 components: - pos: -26.5,-60.5 @@ -61061,57 +49566,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22678 components: - pos: -26.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22679 components: - pos: -27.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22680 components: - pos: -27.5,-58.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22681 components: - pos: -28.5,-58.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22682 components: - pos: -29.5,-58.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22683 components: - pos: -29.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22684 components: - pos: -29.5,-60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22685 components: - pos: -28.5,-60.5 @@ -61119,64 +49608,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22686 components: - pos: -30.5,-60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22687 components: - pos: -31.5,-60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22688 components: - pos: -32.5,-60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22689 components: - pos: -33.5,-60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22690 components: - pos: -34.5,-60.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22691 components: - pos: -34.5,-59.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22692 components: - pos: -34.5,-58.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22693 components: - pos: -34.5,-57.5 parent: 30 type: Transform - - fixtures: {} - type: Fixtures - uid: 22694 components: - pos: -33.5,-57.5 @@ -61184,8 +49655,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22695 components: - pos: -32.5,-59.5 @@ -61193,8 +49662,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22696 components: - pos: -32.5,-58.5 @@ -61202,8 +49669,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22697 components: - pos: -32.5,-57.5 @@ -61211,8 +49676,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22698 components: - pos: -32.5,-61.5 @@ -61220,8 +49683,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22699 components: - pos: -32.5,-62.5 @@ -61229,8 +49690,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22700 components: - pos: -32.5,-63.5 @@ -61238,8 +49697,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22701 components: - pos: -31.5,-59.5 @@ -61247,8 +49704,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22702 components: - pos: -33.5,-59.5 @@ -61256,8 +49711,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22703 components: - pos: -33.5,-61.5 @@ -61265,8 +49718,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22704 components: - pos: -31.5,-61.5 @@ -61274,8 +49725,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22705 components: - pos: -30.5,-61.5 @@ -61283,8 +49732,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - proto: CableMVStack entities: - uid: 1638 @@ -63131,6 +51578,11 @@ entities: pos: 6.5,17.5 parent: 30 type: Transform + - uid: 4987 + components: + - pos: -20.5,-58.5 + parent: 30 + type: Transform - uid: 5068 components: - pos: -20.5,46.5 @@ -63238,6 +51690,16 @@ entities: - pos: 27.5,-18.5 parent: 30 type: Transform + - uid: 7443 + components: + - pos: -19.5,-58.5 + parent: 30 + type: Transform + - uid: 7444 + components: + - pos: -18.5,-58.5 + parent: 30 + type: Transform - uid: 7975 components: - pos: 24.5,-18.5 @@ -71820,9 +60282,9 @@ entities: type: Transform - proto: ComputerTelevision entities: - - uid: 1440 + - uid: 1431 components: - - pos: -42.5,31.5 + - pos: -42.5,33.5 parent: 30 type: Transform - proto: ContainmentFieldGenerator @@ -72997,6 +61459,13 @@ entities: - 0 - 0 type: EntityStorage +- proto: CrewMonitoringServer + entities: + - uid: 7439 + components: + - pos: 33.5,14.5 + parent: 30 + type: Transform - proto: Crowbar entities: - uid: 12836 @@ -118868,31 +107337,13 @@ entities: - 0 - 0 type: EntityStorage -- proto: LockerCaptainFilled +- proto: LockerCaptainFilledHardsuit entities: - - uid: 4987 + - uid: 1440 components: - pos: -17.5,32.5 parent: 30 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - proto: LockerChemistryFilled entities: - uid: 6698 @@ -121794,25 +110245,25 @@ entities: - pos: -16.5,-65.5 parent: 30 type: Transform -- proto: ParticleAcceleratorEmitterCenterUnfinished +- proto: ParticleAcceleratorEmitterForeUnfinished entities: - uid: 10145 components: - pos: -17.5,-69.5 parent: 30 type: Transform -- proto: ParticleAcceleratorEmitterLeftUnfinished +- proto: ParticleAcceleratorEmitterPortUnfinished entities: - - uid: 10147 + - uid: 10146 components: - - pos: -18.5,-69.5 + - pos: -16.5,-69.5 parent: 30 type: Transform -- proto: ParticleAcceleratorEmitterRightUnfinished +- proto: ParticleAcceleratorEmitterStarboardUnfinished entities: - - uid: 10146 + - uid: 10147 components: - - pos: -16.5,-69.5 + - pos: -18.5,-69.5 parent: 30 type: Transform - proto: ParticleAcceleratorEndCapUnfinished @@ -137793,6 +126244,13 @@ entities: - pos: -57.5,-64.5 parent: 30 type: Transform +- proto: SpawnMobSmile + entities: + - uid: 7441 + components: + - pos: 22.5,12.5 + parent: 30 + type: Transform - proto: SpawnMobWalter entities: - uid: 6768 @@ -138944,13 +127402,6 @@ entities: - pos: 9.5,-27.5 parent: 30 type: Transform -- proto: SuitStorageCaptain - entities: - - uid: 783 - components: - - pos: -19.5,32.5 - parent: 30 - type: Transform - proto: SuitStorageCE entities: - uid: 773 @@ -160309,7 +148760,64 @@ entities: pos: -74.5,-55.5 parent: 30 type: Transform -- proto: WindoorArmoryLocked +- proto: WindoorCargoLocked + entities: + - uid: 21788 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-8.5 + parent: 30 + type: Transform +- proto: WindoorHydroponicsLocked + entities: + - uid: 322 + components: + - rot: 3.141592653589793 rad + pos: -20.5,8.5 + parent: 30 + type: Transform +- proto: WindoorSecure + entities: + - uid: 1751 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,39.5 + parent: 30 + type: Transform + - uid: 1752 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,40.5 + parent: 30 + type: Transform + - uid: 1753 + components: + - pos: -32.5,38.5 + parent: 30 + type: Transform + - uid: 1754 + components: + - pos: -31.5,38.5 + parent: 30 + type: Transform + - uid: 1755 + components: + - pos: -30.5,38.5 + parent: 30 + type: Transform + - uid: 15983 + components: + - rot: 3.141592653589793 rad + pos: 52.5,20.5 + parent: 30 + type: Transform + - uid: 15984 + components: + - rot: 3.141592653589793 rad + pos: 51.5,20.5 + parent: 30 + type: Transform +- proto: WindoorSecureArmoryLocked entities: - uid: 1914 components: @@ -160327,22 +148835,34 @@ entities: pos: -42.5,45.5 parent: 30 type: Transform -- proto: WindoorBrigLocked +- proto: WindoorSecureBrigLocked entities: - uid: 2013 components: - pos: -42.5,45.5 parent: 30 type: Transform -- proto: WindoorCargoLocked +- proto: WindoorSecureCargoLocked entities: - - uid: 21788 + - uid: 8464 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-1.5 + parent: 30 + type: Transform + - uid: 8471 components: - rot: 3.141592653589793 rad - pos: 31.5,-8.5 + pos: 16.5,-0.5 + parent: 30 + type: Transform + - uid: 8472 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-0.5 parent: 30 type: Transform -- proto: WindoorChemistryLocked +- proto: WindoorSecureChemistryLocked entities: - uid: 6674 components: @@ -160366,7 +148886,7 @@ entities: pos: -5.5,-11.5 parent: 30 type: Transform -- proto: WindoorCommandLocked +- proto: WindoorSecureCommandLocked entities: - uid: 445 components: @@ -160379,7 +148899,7 @@ entities: pos: 4.5,20.5 parent: 30 type: Transform -- proto: WindoorEngineeringLocked +- proto: WindoorSecureEngineeringLocked entities: - uid: 8607 components: @@ -160399,7 +148919,7 @@ entities: pos: 5.5,-29.5 parent: 30 type: Transform -- proto: WindoorHeadOfPersonnelLocked +- proto: WindoorSecureHeadOfPersonnelLocked entities: - uid: 5409 components: @@ -160407,22 +148927,14 @@ entities: pos: 4.5,30.5 parent: 30 type: Transform -- proto: WindoorHydroponicsLocked - entities: - - uid: 322 - components: - - rot: 3.141592653589793 rad - pos: -20.5,8.5 - parent: 30 - type: Transform -- proto: WindoorMedicalLocked +- proto: WindoorSecureMedicalLocked entities: - uid: 7200 components: - pos: -31.5,-18.5 parent: 30 type: Transform -- proto: WindoorScienceLocked +- proto: WindoorSecureScienceLocked entities: - uid: 6488 components: @@ -160449,68 +148961,7 @@ entities: - pos: 32.5,18.5 parent: 30 type: Transform -- proto: WindoorSecure - entities: - - uid: 1751 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,39.5 - parent: 30 - type: Transform - - uid: 1752 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,40.5 - parent: 30 - type: Transform - - uid: 1753 - components: - - pos: -32.5,38.5 - parent: 30 - type: Transform - - uid: 1754 - components: - - pos: -31.5,38.5 - parent: 30 - type: Transform - - uid: 1755 - components: - - pos: -30.5,38.5 - parent: 30 - type: Transform - - uid: 15983 - components: - - rot: 3.141592653589793 rad - pos: 52.5,20.5 - parent: 30 - type: Transform - - uid: 15984 - components: - - rot: 3.141592653589793 rad - pos: 51.5,20.5 - parent: 30 - type: Transform -- proto: WindoorSecureCargoLocked - entities: - - uid: 8464 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-1.5 - parent: 30 - type: Transform - - uid: 8471 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-0.5 - parent: 30 - type: Transform - - uid: 8472 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-0.5 - parent: 30 - type: Transform -- proto: WindoorSecurityLocked +- proto: WindoorSecureSecurityLocked entities: - uid: 1052 components: From 742bc778228b73dfc53615f270566e8f06b13542 Mon Sep 17 00:00:00 2001 From: Emisse <99158783+Emisse@users.noreply.github.com> Date: Wed, 21 Jun 2023 13:45:40 -0600 Subject: [PATCH 402/474] meta update (#17535) --- Resources/Maps/meta.yml | 13710 +------------------------------------- 1 file changed, 117 insertions(+), 13593 deletions(-) diff --git a/Resources/Maps/meta.yml b/Resources/Maps/meta.yml index fd7d445733..4c20a35e6c 100644 --- a/Resources/Maps/meta.yml +++ b/Resources/Maps/meta.yml @@ -53,6 +53,8 @@ entities: - type: Broadphase - type: OccluderTree - type: LoadedMap + - type: GridTree + - type: MovedGrids - uid: 5350 components: - type: MetaData @@ -7646,6 +7648,7 @@ entities: - type: RadiationGridResistance - nextUpdate: 0 type: SpreaderGrid + - type: GridPathfinding - proto: AcousticGuitarInstrument entities: - uid: 12657 @@ -15198,99 +15201,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 843 components: - pos: -18.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 844 components: - pos: -18.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 845 components: - pos: -18.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 846 components: - pos: -18.5,-1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 847 components: - pos: -18.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 848 components: - pos: -17.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 849 components: - pos: -16.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 850 components: - pos: -15.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 851 components: - pos: -14.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 852 components: - pos: -13.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 853 components: - pos: -12.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 854 components: - pos: -12.5,-1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 855 components: - pos: -12.5,-3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 856 components: - pos: -12.5,-4.5 @@ -15298,78 +15273,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 857 components: - pos: -12.5,-5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 858 components: - pos: -13.5,-5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 859 components: - pos: -14.5,-5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 860 components: - pos: -15.5,-5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 861 components: - pos: -16.5,-5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 862 components: - pos: -17.5,-5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 863 components: - pos: -12.5,-6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 864 components: - pos: -17.5,-6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 865 components: - pos: -11.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 866 components: - pos: -10.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 867 components: - pos: -8.5,3.5 @@ -15377,225 +15330,161 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 868 components: - pos: -8.5,2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 869 components: - pos: -8.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 870 components: - pos: -8.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 871 components: - pos: -8.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 872 components: - pos: -8.5,-1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 873 components: - pos: -8.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 874 components: - pos: -8.5,-3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 875 components: - pos: -8.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 876 components: - pos: -8.5,-5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 877 components: - pos: -7.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 878 components: - pos: -6.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 879 components: - pos: -5.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 880 components: - pos: -4.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 881 components: - pos: -3.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 882 components: - pos: -2.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 883 components: - pos: -1.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 884 components: - pos: -0.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 885 components: - pos: 0.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 886 components: - pos: 1.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 887 components: - pos: 2.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 888 components: - pos: 3.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 889 components: - pos: 4.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 890 components: - pos: -4.5,2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 891 components: - pos: -4.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 892 components: - pos: -4.5,4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 893 components: - pos: -0.5,2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 894 components: - pos: -0.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 895 components: - pos: -0.5,4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 896 components: - pos: -2.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 897 components: - pos: -2.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 898 components: - pos: -2.5,-1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 899 components: - pos: -0.5,-2.5 @@ -15603,141 +15492,101 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 900 components: - pos: -0.5,-3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 901 components: - pos: -0.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 902 components: - pos: -0.5,-5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 903 components: - pos: -1.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 904 components: - pos: -2.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 905 components: - pos: -3.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 906 components: - pos: -4.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 907 components: - pos: -5.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 908 components: - pos: -6.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 909 components: - pos: 0.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 910 components: - pos: 1.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 911 components: - pos: 2.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 912 components: - pos: 3.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 913 components: - pos: 4.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 914 components: - pos: 3.5,-5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 915 components: - pos: 3.5,-3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 916 components: - pos: 3.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 917 components: - pos: 3.5,-1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 918 components: - pos: 3.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 919 components: - pos: 7.5,1.5 @@ -15745,85 +15594,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 920 components: - pos: 7.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 921 components: - pos: 7.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 922 components: - pos: 7.5,-1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 923 components: - pos: 7.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 924 components: - pos: 7.5,-3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 925 components: - pos: 7.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 926 components: - pos: 7.5,-5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 927 components: - pos: 6.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 928 components: - pos: 8.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 929 components: - pos: 9.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 930 components: - pos: 10.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 931 components: - pos: -18.5,3.5 @@ -15831,148 +15656,106 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 932 components: - pos: 10.5,-3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 933 components: - pos: 10.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 934 components: - pos: 10.5,-1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 935 components: - pos: 10.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 936 components: - pos: 10.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 937 components: - pos: 10.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 938 components: - pos: 10.5,2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 939 components: - pos: 10.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 940 components: - pos: 10.5,4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 941 components: - pos: 10.5,5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 942 components: - pos: 9.5,2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 943 components: - pos: 8.5,2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 944 components: - pos: 7.5,2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 945 components: - pos: 9.5,5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 946 components: - pos: 8.5,5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 947 components: - pos: 11.5,5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 948 components: - pos: 12.5,5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 949 components: - pos: 11.5,2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 950 components: - pos: 12.5,2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 952 components: - pos: 12.5,-3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 953 components: - pos: 13.5,-3.5 @@ -15980,8 +15763,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 954 components: - pos: 13.5,-2.5 @@ -15989,8 +15770,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 955 components: - pos: 13.5,-1.5 @@ -15998,8 +15777,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 956 components: - pos: 13.5,-5.5 @@ -16007,8 +15784,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 957 components: - pos: 13.5,-4.5 @@ -16016,15 +15791,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 958 components: - pos: -17.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 959 components: - pos: -16.5,3.5 @@ -16032,43 +15803,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 960 components: - pos: -16.5,4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 961 components: - pos: -16.5,5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 962 components: - pos: -16.5,6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 963 components: - pos: -9.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 964 components: - pos: -10.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 965 components: - pos: -11.5,1.5 @@ -16076,8 +15835,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 966 components: - pos: -12.5,1.5 @@ -16085,8 +15842,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 967 components: - pos: -12.5,2.5 @@ -16094,8 +15849,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 968 components: - pos: -12.5,3.5 @@ -16103,8 +15856,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 969 components: - pos: -12.5,4.5 @@ -16112,8 +15863,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 970 components: - pos: -12.5,5.5 @@ -16121,8 +15870,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 971 components: - pos: -12.5,6.5 @@ -16130,15 +15877,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 972 components: - pos: -15.5,5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 973 components: - pos: -17.5,5.5 @@ -16146,22 +15889,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 974 components: - pos: -18.5,5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 975 components: - pos: -19.5,5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1650 components: - pos: -12.5,-17.5 @@ -16169,15 +15906,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1718 components: - pos: -15.5,-16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1719 components: - pos: -15.5,-17.5 @@ -16185,253 +15918,181 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1720 components: - pos: -15.5,-15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1721 components: - pos: -15.5,-14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1722 components: - pos: -15.5,-13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1723 components: - pos: -15.5,-12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1724 components: - pos: -15.5,-11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1725 components: - pos: -15.5,-10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1726 components: - pos: -15.5,-9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1727 components: - pos: -15.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1728 components: - pos: -16.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1729 components: - pos: -17.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1730 components: - pos: -18.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1731 components: - pos: -19.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1732 components: - pos: -20.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1733 components: - pos: -14.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1734 components: - pos: -13.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1735 components: - pos: -12.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1736 components: - pos: -11.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1737 components: - pos: -10.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1738 components: - pos: -9.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1739 components: - pos: -8.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1740 components: - pos: -7.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1741 components: - pos: -6.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1742 components: - pos: -15.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1743 components: - pos: -15.5,-19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1744 components: - pos: -16.5,-16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1745 components: - pos: -17.5,-16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1746 components: - pos: -17.5,-15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1747 components: - pos: -17.5,-14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1748 components: - pos: -17.5,-13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1749 components: - pos: -17.5,-12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1750 components: - pos: -17.5,-11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1751 components: - pos: -14.5,-19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1752 components: - pos: -13.5,-19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1753 components: - pos: -12.5,-19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1754 components: - pos: -12.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1756 components: - pos: -12.5,-16.5 @@ -16439,8 +16100,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1757 components: - pos: -12.5,-15.5 @@ -16448,8 +16107,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1758 components: - pos: -12.5,-14.5 @@ -16457,8 +16114,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1759 components: - pos: -12.5,-13.5 @@ -16466,8 +16121,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1760 components: - pos: -12.5,-12.5 @@ -16475,8 +16128,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1761 components: - pos: -12.5,-11.5 @@ -16484,50 +16135,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1762 components: - pos: -11.5,-19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1763 components: - pos: -10.5,-19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1764 components: - pos: -9.5,-19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1765 components: - pos: -8.5,-19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1766 components: - pos: -7.5,-19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1767 components: - pos: -6.5,-19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1768 components: - pos: -0.5,-12.5 @@ -16535,106 +16172,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1769 components: - pos: -0.5,-11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1770 components: - pos: -0.5,-10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1771 components: - pos: -0.5,-9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1772 components: - pos: -0.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1774 components: - pos: -0.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1775 components: - pos: -1.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1776 components: - pos: -2.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1777 components: - pos: -3.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1778 components: - pos: -4.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1779 components: - pos: 0.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1780 components: - pos: 1.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1781 components: - pos: 2.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1782 components: - pos: 3.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1783 components: - pos: 4.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1784 components: - pos: 9.5,-11.5 @@ -16642,218 +16249,156 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1786 components: - pos: 7.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1787 components: - pos: 8.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1788 components: - pos: 9.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1789 components: - pos: 10.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1790 components: - pos: -0.5,-13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1791 components: - pos: -0.5,-14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1792 components: - pos: -1.5,-14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1793 components: - pos: -2.5,-14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1794 components: - pos: -3.5,-14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1795 components: - pos: -4.5,-14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1796 components: - pos: -5.5,-14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1797 components: - pos: -6.5,-14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1798 components: - pos: -7.5,-14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1799 components: - pos: 0.5,-14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1800 components: - pos: 1.5,-14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1801 components: - pos: 0.5,-15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1802 components: - pos: 0.5,-16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1803 components: - pos: -5.5,-15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1804 components: - pos: -5.5,-16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1867 components: - pos: 8.5,-9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1868 components: - pos: 8.5,-10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1869 components: - pos: 8.5,-11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1870 components: - pos: 8.5,-12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1871 components: - pos: 8.5,-13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1872 components: - pos: 8.5,-14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1873 components: - pos: 7.5,-13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1874 components: - pos: 9.5,-13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2098 components: - pos: 11.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2099 components: - pos: 12.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2567 components: - pos: 28.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2875 components: - pos: 24.5,-11.5 @@ -16861,239 +16406,171 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2876 components: - pos: 24.5,-10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2877 components: - pos: 24.5,-9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2878 components: - pos: 24.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2879 components: - pos: 24.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2880 components: - pos: 23.5,-9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2881 components: - pos: 22.5,-9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2882 components: - pos: 21.5,-9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2883 components: - pos: 20.5,-9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2884 components: - pos: 24.5,-6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2885 components: - pos: 24.5,-5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2886 components: - pos: 24.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2887 components: - pos: 24.5,-3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2888 components: - pos: 24.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2889 components: - pos: 24.5,-1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2890 components: - pos: 24.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2891 components: - pos: 24.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2892 components: - pos: 23.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2893 components: - pos: 22.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2894 components: - pos: 21.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2895 components: - pos: 20.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2896 components: - pos: 19.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2897 components: - pos: 23.5,-1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2898 components: - pos: 22.5,-1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2899 components: - pos: 21.5,-1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2900 components: - pos: 20.5,-1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2901 components: - pos: 19.5,-1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2902 components: - pos: 24.5,-12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2903 components: - pos: 24.5,-13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2904 components: - pos: 23.5,-13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2905 components: - pos: 22.5,-13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2906 components: - pos: 21.5,-13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2907 components: - pos: 20.5,-13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2908 components: - pos: 19.5,-13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2909 components: - pos: 34.5,-1.5 @@ -17101,15 +16578,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2910 components: - pos: 34.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2911 components: - pos: 34.5,-0.5 @@ -17117,8 +16590,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2912 components: - pos: 35.5,-0.5 @@ -17126,8 +16597,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2913 components: - pos: 36.5,-0.5 @@ -17135,8 +16604,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2914 components: - pos: 37.5,-0.5 @@ -17144,267 +16611,191 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2915 components: - pos: 33.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2916 components: - pos: 32.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2917 components: - pos: 31.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2918 components: - pos: 30.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2919 components: - pos: 29.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2920 components: - pos: 28.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2921 components: - pos: 28.5,-1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2922 components: - pos: 28.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2923 components: - pos: 28.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2924 components: - pos: 28.5,-3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2925 components: - pos: 28.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2926 components: - pos: 28.5,-5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2927 components: - pos: 28.5,-6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2928 components: - pos: 28.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2929 components: - pos: 35.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2930 components: - pos: 37.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2931 components: - pos: 36.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2932 components: - pos: 37.5,-3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2933 components: - pos: 37.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2934 components: - pos: 37.5,-5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2935 components: - pos: 37.5,-6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2936 components: - pos: 37.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2937 components: - pos: 37.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2938 components: - pos: 37.5,-9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2939 components: - pos: 37.5,-10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2940 components: - pos: 37.5,-11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2941 components: - pos: 37.5,-12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2942 components: - pos: 37.5,-13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2943 components: - pos: 38.5,-10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2944 components: - pos: 39.5,-10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2945 components: - pos: 40.5,-10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2946 components: - pos: 41.5,-10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2947 components: - pos: 38.5,-12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2948 components: - pos: 39.5,-12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2949 components: - pos: 40.5,-12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2950 components: - pos: 41.5,-12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2951 components: - pos: 38.5,-6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2952 components: - pos: 39.5,-6.5 @@ -17412,8 +16803,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2953 components: - pos: 40.5,-6.5 @@ -17421,8 +16810,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2954 components: - pos: 40.5,-5.5 @@ -17430,8 +16817,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2955 components: - pos: 40.5,-4.5 @@ -17439,8 +16824,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2956 components: - pos: 40.5,-3.5 @@ -17448,8 +16831,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2957 components: - pos: 40.5,-2.5 @@ -17457,8 +16838,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2958 components: - pos: 40.5,-1.5 @@ -17466,8 +16845,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2959 components: - pos: 40.5,-0.5 @@ -17475,15 +16852,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2960 components: - pos: 40.5,-13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2961 components: - pos: 40.5,-14.5 @@ -17491,15 +16864,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2962 components: - pos: 40.5,-15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2963 components: - pos: 40.5,-16.5 @@ -17507,610 +16876,436 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2964 components: - pos: 31.5,-13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2965 components: - pos: 31.5,-12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2966 components: - pos: 31.5,-11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2967 components: - pos: 31.5,-10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2968 components: - pos: 31.5,-9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2969 components: - pos: 30.5,-9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2970 components: - pos: 29.5,-9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2971 components: - pos: 28.5,-9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2972 components: - pos: 27.5,-9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2973 components: - pos: 30.5,-12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2974 components: - pos: 29.5,-12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2975 components: - pos: 28.5,-12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2976 components: - pos: 27.5,-12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2977 components: - pos: 32.5,-11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2978 components: - pos: 33.5,-11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2979 components: - pos: 34.5,-11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2980 components: - pos: 34.5,-12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2981 components: - pos: 34.5,-13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2982 components: - pos: 34.5,-14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2983 components: - pos: 34.5,-15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2984 components: - pos: 34.5,-16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2985 components: - pos: 35.5,-16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2986 components: - pos: 36.5,-16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2987 components: - pos: 37.5,-16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2988 components: - pos: 38.5,-16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2989 components: - pos: 31.5,-15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2990 components: - pos: 31.5,-16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2991 components: - pos: 31.5,-17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2992 components: - pos: 31.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2993 components: - pos: 31.5,-19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2994 components: - pos: 30.5,-21.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2995 components: - pos: 30.5,-22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2997 components: - pos: 31.5,-23.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2998 components: - pos: 31.5,-24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2999 components: - pos: 32.5,-23.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3000 components: - pos: 33.5,-23.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3001 components: - pos: 34.5,-23.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3002 components: - pos: 34.5,-22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3003 components: - pos: 34.5,-21.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3004 components: - pos: 34.5,-20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3005 components: - pos: 34.5,-19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3006 components: - pos: 34.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3007 components: - pos: 33.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3008 components: - pos: 32.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3009 components: - pos: 30.5,-23.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3010 components: - pos: 29.5,-23.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3011 components: - pos: 28.5,-23.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3012 components: - pos: 27.5,-23.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3013 components: - pos: 26.5,-23.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3014 components: - pos: 25.5,-23.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3015 components: - pos: 24.5,-23.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3016 components: - pos: 23.5,-23.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3017 components: - pos: 22.5,-23.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3018 components: - pos: 21.5,-23.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3019 components: - pos: 20.5,-23.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3020 components: - pos: 19.5,-23.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3021 components: - pos: 18.5,-23.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3022 components: - pos: 18.5,-22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3023 components: - pos: 18.5,-21.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3024 components: - pos: 18.5,-20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3025 components: - pos: 18.5,-19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3026 components: - pos: 18.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3027 components: - pos: 18.5,-17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3028 components: - pos: 18.5,-16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3029 components: - pos: 30.5,-16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3030 components: - pos: 29.5,-16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3031 components: - pos: 28.5,-16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3032 components: - pos: 27.5,-16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3033 components: - pos: 26.5,-16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3034 components: - pos: 25.5,-16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3035 components: - pos: 24.5,-16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3036 components: - pos: 23.5,-16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3037 components: - pos: 22.5,-16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3038 components: - pos: 21.5,-16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3039 components: - pos: 30.5,-20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3040 components: - pos: 29.5,-20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3041 components: - pos: 28.5,-20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3042 components: - pos: 25.5,-21.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3043 components: - pos: 27.5,-21.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3044 components: - pos: 26.5,-21.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3045 components: - pos: 24.5,-20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3046 components: - pos: 23.5,-20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3047 components: - pos: 22.5,-20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3048 components: - pos: 22.5,-19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3049 components: - pos: 24.5,-21.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3050 components: - pos: 35.5,-19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3051 components: - pos: 36.5,-19.5 @@ -18118,8 +17313,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3052 components: - pos: 37.5,-19.5 @@ -18127,8 +17320,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3053 components: - pos: 38.5,-19.5 @@ -18136,8 +17327,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3054 components: - pos: 39.5,-19.5 @@ -18145,57 +17334,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3055 components: - pos: 32.5,-3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3056 components: - pos: 32.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3057 components: - pos: 32.5,-5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3058 components: - pos: 32.5,-6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3059 components: - pos: 36.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3078 components: - pos: 28.5,-21.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3368 components: - pos: -25.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3475 components: - pos: -42.5,32.5 @@ -18203,36 +17376,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3495 components: - pos: -14.5,-24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3562 components: - pos: -24.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3563 components: - pos: -23.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3598 components: - pos: -23.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3645 components: - pos: -42.5,30.5 @@ -18240,162 +17403,116 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3675 components: - pos: -18.5,12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3713 components: - pos: -25.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3714 components: - pos: -23.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3715 components: - pos: -22.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3723 components: - pos: -21.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3726 components: - pos: -25.5,16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3730 components: - pos: -20.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3731 components: - pos: -19.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3735 components: - pos: -22.5,15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3736 components: - pos: -19.5,17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3737 components: - pos: -22.5,16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3748 components: - pos: -18.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3749 components: - pos: -20.5,17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3769 components: - pos: -21.5,17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3778 components: - pos: -22.5,17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3792 components: - pos: -23.5,16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3793 components: - pos: -24.5,16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3795 components: - pos: -18.5,17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3796 components: - pos: -22.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3797 components: - pos: -22.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 3828 components: - pos: -18.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4063 components: - pos: -42.5,29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4099 components: - pos: -42.5,31.5 @@ -18403,22 +17520,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4458 components: - pos: -42.5,28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4464 components: - pos: -14.5,-25.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4465 components: - pos: -13.5,-24.5 @@ -18426,197 +17537,141 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4523 components: - pos: -25.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4581 components: - pos: -26.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4582 components: - pos: -26.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4583 components: - pos: -26.5,6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4584 components: - pos: -26.5,5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4585 components: - pos: -26.5,4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4586 components: - pos: -26.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4587 components: - pos: -26.5,2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4588 components: - pos: -26.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4589 components: - pos: -25.5,5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4590 components: - pos: -24.5,5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4591 components: - pos: -23.5,5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4592 components: - pos: -27.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4593 components: - pos: -28.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4594 components: - pos: -29.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4595 components: - pos: -30.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4596 components: - pos: -31.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4597 components: - pos: -32.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4598 components: - pos: -33.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4599 components: - pos: -31.5,4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4600 components: - pos: -31.5,5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4601 components: - pos: -31.5,6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4602 components: - pos: -31.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4603 components: - pos: -33.5,4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4604 components: - pos: -33.5,5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4605 components: - pos: -33.5,6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4606 components: - pos: -33.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4607 components: - pos: -43.5,7.5 @@ -18624,134 +17679,96 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4608 components: - pos: -43.5,6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4609 components: - pos: -43.5,5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4611 components: - pos: -42.5,5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4612 components: - pos: -41.5,5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4613 components: - pos: -40.5,5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4614 components: - pos: -39.5,5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4615 components: - pos: -38.5,5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4616 components: - pos: -37.5,5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4617 components: - pos: -36.5,5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4618 components: - pos: -42.5,4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4619 components: - pos: -42.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4620 components: - pos: -41.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4621 components: - pos: -40.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4622 components: - pos: -39.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4623 components: - pos: -38.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4624 components: - pos: -37.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4625 components: - pos: -44.5,6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4626 components: - pos: -45.5,6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4627 components: - pos: -46.5,6.5 @@ -18759,8 +17776,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4628 components: - pos: -46.5,5.5 @@ -18768,15 +17783,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4629 components: - pos: -46.5,4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4631 components: - pos: -46.5,7.5 @@ -18784,8 +17795,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4632 components: - pos: -46.5,8.5 @@ -18793,8 +17802,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4633 components: - pos: -47.5,8.5 @@ -18802,8 +17809,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4634 components: - pos: -48.5,8.5 @@ -18811,8 +17816,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4635 components: - pos: -49.5,8.5 @@ -18820,8 +17823,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4636 components: - pos: -50.5,8.5 @@ -18829,8 +17830,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4637 components: - pos: -51.5,8.5 @@ -18838,8 +17837,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4638 components: - pos: -52.5,8.5 @@ -18847,15 +17844,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4639 components: - pos: -53.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4640 components: - pos: -38.5,22.5 @@ -18863,134 +17856,96 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4641 components: - pos: -38.5,21.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4642 components: - pos: -38.5,20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4643 components: - pos: -38.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4644 components: - pos: -38.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4645 components: - pos: -38.5,17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4646 components: - pos: -38.5,16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4647 components: - pos: -38.5,15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4648 components: - pos: -38.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4649 components: - pos: -38.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4650 components: - pos: -38.5,12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4651 components: - pos: -38.5,11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4652 components: - pos: -38.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4653 components: - pos: -38.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4654 components: - pos: -38.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4655 components: - pos: -39.5,15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4656 components: - pos: -40.5,15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4657 components: - pos: -41.5,15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4658 components: - pos: -42.5,15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4659 components: - pos: -43.5,15.5 @@ -18998,8 +17953,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4660 components: - pos: -44.5,15.5 @@ -19007,8 +17960,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4661 components: - pos: -45.5,15.5 @@ -19016,36 +17967,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4662 components: - pos: -39.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4663 components: - pos: -40.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4664 components: - pos: -41.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4665 components: - pos: -42.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4666 components: - pos: -43.5,19.5 @@ -19053,8 +17994,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4667 components: - pos: -44.5,19.5 @@ -19062,8 +18001,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4668 components: - pos: -45.5,19.5 @@ -19071,358 +18008,256 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4669 components: - pos: -40.5,20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4670 components: - pos: -40.5,21.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4671 components: - pos: -40.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4672 components: - pos: -40.5,23.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4673 components: - pos: -40.5,24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4674 components: - pos: -40.5,25.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4675 components: - pos: -40.5,26.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4676 components: - pos: -40.5,27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4677 components: - pos: -40.5,28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4678 components: - pos: -41.5,27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4679 components: - pos: -42.5,27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4684 components: - pos: -37.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4685 components: - pos: -36.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4686 components: - pos: -35.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4687 components: - pos: -34.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4688 components: - pos: -33.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4689 components: - pos: -32.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4690 components: - pos: -31.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4691 components: - pos: -30.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4692 components: - pos: -37.5,16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4693 components: - pos: -36.5,16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4694 components: - pos: -35.5,16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4695 components: - pos: -34.5,16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4696 components: - pos: -33.5,16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4697 components: - pos: -32.5,16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4698 components: - pos: -31.5,16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4699 components: - pos: -30.5,16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4700 components: - pos: -29.5,16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4701 components: - pos: -29.5,15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4702 components: - pos: -37.5,11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4703 components: - pos: -36.5,11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4704 components: - pos: -35.5,11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4705 components: - pos: -34.5,11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4706 components: - pos: -33.5,11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4707 components: - pos: -32.5,11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4708 components: - pos: -31.5,11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4709 components: - pos: -30.5,11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4710 components: - pos: -29.5,11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4711 components: - pos: -39.5,11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4712 components: - pos: -40.5,11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4713 components: - pos: -41.5,11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4714 components: - pos: -39.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4715 components: - pos: -40.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4716 components: - pos: -41.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4717 components: - pos: -37.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4718 components: - pos: -36.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4719 components: - pos: -35.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4720 components: - pos: -37.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4721 components: - pos: -36.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4722 components: - pos: -35.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4723 components: - pos: -26.5,10.5 @@ -19430,8 +18265,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4724 components: - pos: -26.5,11.5 @@ -19439,8 +18272,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4725 components: - pos: -26.5,12.5 @@ -19448,8 +18279,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4726 components: - pos: -26.5,13.5 @@ -19457,8 +18286,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4727 components: - pos: -26.5,14.5 @@ -19466,8 +18293,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4728 components: - pos: -26.5,15.5 @@ -19475,8 +18300,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4729 components: - pos: -26.5,16.5 @@ -19484,8 +18307,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4730 components: - pos: -26.5,17.5 @@ -19493,8 +18314,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4731 components: - pos: -26.5,18.5 @@ -19502,8 +18321,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4732 components: - pos: -26.5,19.5 @@ -19511,8 +18328,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4733 components: - pos: -27.5,19.5 @@ -19520,8 +18335,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4734 components: - pos: -28.5,19.5 @@ -19529,8 +18342,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4735 components: - pos: -29.5,19.5 @@ -19538,8 +18349,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4736 components: - pos: -30.5,19.5 @@ -19547,8 +18356,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4737 components: - pos: -25.5,10.5 @@ -19556,8 +18363,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4738 components: - pos: -24.5,10.5 @@ -19565,36 +18370,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4739 components: - pos: -23.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4740 components: - pos: -22.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4741 components: - pos: -21.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4742 components: - pos: -20.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5219 components: - pos: 35.5,52.5 @@ -19602,8 +18397,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5220 components: - pos: 35.5,51.5 @@ -19611,8 +18404,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5246 components: - pos: 35.5,50.5 @@ -19620,15 +18411,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5247 components: - pos: 34.5,50.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5249 components: - pos: -48.5,-54.5 @@ -19636,15 +18423,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5664 components: - pos: -19.5,-26.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5919 components: - pos: -60.5,-6.5 @@ -19652,127 +18435,91 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5920 components: - pos: -60.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5921 components: - pos: -60.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5922 components: - pos: -60.5,-9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5923 components: - pos: -61.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5924 components: - pos: -62.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5925 components: - pos: -63.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5926 components: - pos: -64.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5927 components: - pos: -65.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5928 components: - pos: -66.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5929 components: - pos: -67.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5930 components: - pos: -68.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5931 components: - pos: -69.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5932 components: - pos: -70.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5933 components: - pos: -71.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5934 components: - pos: -72.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5935 components: - pos: -73.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5936 components: - pos: -74.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5937 components: - pos: -70.5,-7.5 @@ -19780,8 +18527,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5938 components: - pos: -63.5,-7.5 @@ -19789,162 +18534,116 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5939 components: - pos: -60.5,-10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5940 components: - pos: -60.5,-11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5941 components: - pos: -60.5,-12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5942 components: - pos: -60.5,-13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5943 components: - pos: -60.5,-14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5944 components: - pos: -60.5,-15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5945 components: - pos: -60.5,-16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5946 components: - pos: -60.5,-17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5947 components: - pos: -60.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5948 components: - pos: -61.5,-17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5949 components: - pos: -62.5,-17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5950 components: - pos: -63.5,-17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5951 components: - pos: -64.5,-17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5952 components: - pos: -65.5,-17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5953 components: - pos: -66.5,-17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5954 components: - pos: -67.5,-17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5955 components: - pos: -68.5,-17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5956 components: - pos: -69.5,-17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5957 components: - pos: -70.5,-17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5958 components: - pos: -71.5,-17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5959 components: - pos: -72.5,-17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5960 components: - pos: -73.5,-17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5961 components: - pos: -74.5,-17.5 @@ -19952,8 +18651,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5962 components: - pos: -75.5,-17.5 @@ -19961,15 +18658,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5963 components: - pos: -72.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5964 components: - pos: -72.5,-19.5 @@ -19977,8 +18670,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5965 components: - pos: -72.5,-20.5 @@ -19986,8 +18677,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5966 components: - pos: -72.5,-21.5 @@ -19995,15 +18684,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5967 components: - pos: -61.5,-13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5968 components: - pos: -62.5,-13.5 @@ -20011,8 +18696,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5969 components: - pos: -63.5,-13.5 @@ -20020,106 +18703,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5970 components: - pos: -59.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5971 components: - pos: -58.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5972 components: - pos: -57.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5973 components: - pos: -56.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5974 components: - pos: -55.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5975 components: - pos: -55.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5976 components: - pos: -55.5,-6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5977 components: - pos: -55.5,-5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5978 components: - pos: -55.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5979 components: - pos: -55.5,-3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5980 components: - pos: -54.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5981 components: - pos: -53.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5982 components: - pos: -52.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5983 components: - pos: -51.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5984 components: - pos: -52.5,4.5 @@ -20127,358 +18780,256 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5985 components: - pos: -52.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5986 components: - pos: -52.5,2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5987 components: - pos: -51.5,2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5988 components: - pos: -50.5,2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5989 components: - pos: -49.5,2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5990 components: - pos: -48.5,2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5991 components: - pos: -47.5,2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5992 components: - pos: -46.5,2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5993 components: - pos: -45.5,2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5994 components: - pos: -44.5,2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5995 components: - pos: -45.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5996 components: - pos: -45.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5997 components: - pos: -45.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5998 components: - pos: -45.5,-1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5999 components: - pos: -45.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6000 components: - pos: -50.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6001 components: - pos: -50.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6002 components: - pos: -50.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6003 components: - pos: -53.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6004 components: - pos: -54.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6005 components: - pos: -55.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6006 components: - pos: -55.5,2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6007 components: - pos: -55.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6008 components: - pos: -55.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6009 components: - pos: -55.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6010 components: - pos: -55.5,4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6011 components: - pos: -55.5,5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6012 components: - pos: -55.5,6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6013 components: - pos: -55.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6014 components: - pos: -56.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6015 components: - pos: -57.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6016 components: - pos: -58.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6017 components: - pos: -59.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6018 components: - pos: -60.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6019 components: - pos: -61.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6020 components: - pos: -62.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6021 components: - pos: -63.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6022 components: - pos: -64.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6023 components: - pos: -65.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6024 components: - pos: -66.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6025 components: - pos: -67.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6026 components: - pos: -68.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6027 components: - pos: -69.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6028 components: - pos: -70.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6029 components: - pos: -71.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6030 components: - pos: -72.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6031 components: - pos: -73.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6032 components: - pos: -74.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6033 components: - pos: -74.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6034 components: - pos: -75.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6035 components: - pos: -76.5,8.5 @@ -20486,8 +19037,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6036 components: - pos: -77.5,8.5 @@ -20495,8 +19044,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6037 components: - pos: -70.5,6.5 @@ -20504,8 +19051,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6038 components: - pos: -63.5,6.5 @@ -20513,78 +19058,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6039 components: - pos: -67.5,6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6040 components: - pos: -66.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6041 components: - pos: -44.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6042 components: - pos: -43.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6043 components: - pos: -42.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6044 components: - pos: -41.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6045 components: - pos: -40.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6046 components: - pos: -39.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6047 components: - pos: -38.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6048 components: - pos: -37.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6209 components: - pos: 31.5,-14.5 @@ -20592,36 +19115,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6355 components: - pos: 9.5,44.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6439 components: - pos: 17.5,42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6440 components: - pos: 9.5,43.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6448 components: - pos: -15.5,27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6449 components: - pos: -17.5,26.5 @@ -20629,29 +19142,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6467 components: - pos: -17.5,29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6468 components: - pos: -17.5,30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6469 components: - pos: -17.5,31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6470 components: - pos: -17.5,32.5 @@ -20659,8 +19164,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6472 components: - pos: -15.5,26.5 @@ -20668,57 +19171,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6500 components: - pos: -10.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6531 components: - pos: -11.5,52.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6532 components: - pos: -11.5,51.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6533 components: - pos: -11.5,50.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6535 components: - pos: -11.5,56.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6536 components: - pos: -4.5,48.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6537 components: - pos: -7.5,49.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6574 components: - pos: -6.5,16.5 @@ -20726,29 +19213,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6575 components: - pos: -11.5,15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6576 components: - pos: -10.5,16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6577 components: - pos: -10.5,17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6596 components: - pos: 3.5,44.5 @@ -20756,36 +19235,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6625 components: - pos: -9.5,17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6633 components: - pos: -13.5,17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6636 components: - pos: -11.5,17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6644 components: - pos: -10.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6657 components: - pos: 12.5,42.5 @@ -20793,50 +19262,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6659 components: - pos: 12.5,41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6673 components: - pos: 17.5,43.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6676 components: - pos: 17.5,45.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6691 components: - pos: 0.5,52.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6698 components: - pos: -8.5,17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6717 components: - pos: -9.5,48.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6723 components: - pos: -6.5,17.5 @@ -20844,22 +19299,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7018 components: - pos: -10.5,15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7019 components: - pos: 16.5,46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7064 components: - pos: 17.5,48.5 @@ -20867,134 +19316,96 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7133 components: - pos: -3.5,53.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7134 components: - pos: -3.5,51.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7135 components: - pos: -3.5,50.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7137 components: - pos: 0.5,51.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7138 components: - pos: 0.5,50.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7139 components: - pos: 0.5,48.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7140 components: - pos: -0.5,48.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7141 components: - pos: -14.5,48.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7142 components: - pos: -14.5,56.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7143 components: - pos: -11.5,57.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7144 components: - pos: -4.5,54.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7145 components: - pos: -6.5,60.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7146 components: - pos: -6.5,57.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7147 components: - pos: -7.5,55.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7149 components: - pos: -1.5,48.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7150 components: - pos: -7.5,52.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7157 components: - pos: -3.5,48.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7172 components: - pos: -16.5,30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7177 components: - pos: -9.5,49.5 @@ -21002,22 +19413,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7178 components: - pos: -10.5,48.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7182 components: - pos: 2.5,44.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7192 components: - pos: -14.5,16.5 @@ -21025,22 +19430,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7208 components: - pos: -10.5,12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7209 components: - pos: -3.5,56.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7210 components: - pos: -14.5,17.5 @@ -21048,15 +19447,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7220 components: - pos: -7.5,17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7221 components: - pos: -11.5,11.5 @@ -21064,134 +19459,96 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7225 components: - pos: -17.5,28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7227 components: - pos: -3.5,55.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7228 components: - pos: -7.5,51.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7229 components: - pos: -7.5,54.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7230 components: - pos: -6.5,56.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7231 components: - pos: -6.5,59.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7232 components: - pos: -5.5,54.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7233 components: - pos: -10.5,55.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7234 components: - pos: -14.5,57.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7235 components: - pos: -13.5,48.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7248 components: - pos: 10.5,46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7249 components: - pos: 7.5,46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7250 components: - pos: 8.5,46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7251 components: - pos: 9.5,48.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7258 components: - pos: 17.5,39.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7266 components: - pos: -10.5,11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7267 components: - pos: -10.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7269 components: - pos: -10.5,47.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7270 components: - pos: 3.5,45.5 @@ -21199,120 +19556,86 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7278 components: - pos: 17.5,47.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7291 components: - pos: -3.5,54.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7292 components: - pos: -7.5,50.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7293 components: - pos: -7.5,53.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7294 components: - pos: -7.5,56.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7295 components: - pos: -6.5,58.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7296 components: - pos: -6.5,54.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7297 components: - pos: -9.5,55.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7298 components: - pos: -13.5,57.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7299 components: - pos: -12.5,48.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7302 components: - pos: -3.5,52.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7319 components: - pos: -3.5,49.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7320 components: - pos: -5.5,48.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7321 components: - pos: -11.5,53.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7324 components: - pos: -2.5,48.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7325 components: - pos: -7.5,48.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7356 components: - pos: 8.5,26.5 @@ -21320,15 +19643,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7357 components: - pos: 7.5,26.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7536 components: - pos: -6.5,35.5 @@ -21336,323 +19655,231 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7537 components: - pos: -6.5,36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7538 components: - pos: -6.5,37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7539 components: - pos: -6.5,38.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7540 components: - pos: -5.5,38.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7541 components: - pos: -4.5,38.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7542 components: - pos: -3.5,38.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7543 components: - pos: -2.5,38.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7544 components: - pos: -2.5,37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7545 components: - pos: -2.5,39.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7546 components: - pos: -6.5,39.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7547 components: - pos: -2.5,36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7548 components: - pos: -6.5,34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7549 components: - pos: -6.5,33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7550 components: - pos: -6.5,32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7551 components: - pos: -6.5,31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7552 components: - pos: -6.5,30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7553 components: - pos: -6.5,29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7554 components: - pos: -6.5,28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7555 components: - pos: -6.5,27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7556 components: - pos: -7.5,30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7557 components: - pos: -8.5,30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7558 components: - pos: -9.5,30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7559 components: - pos: -10.5,30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7560 components: - pos: -11.5,30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7561 components: - pos: -12.5,30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7562 components: - pos: -12.5,29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7563 components: - pos: -12.5,28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7564 components: - pos: -12.5,27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7565 components: - pos: -9.5,29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7566 components: - pos: -9.5,28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7567 components: - pos: -9.5,27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7568 components: - pos: -5.5,33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7569 components: - pos: -4.5,33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7570 components: - pos: -3.5,33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7571 components: - pos: -2.5,33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7572 components: - pos: -2.5,32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7573 components: - pos: -2.5,31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7574 components: - pos: -2.5,30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7575 components: - pos: -2.5,29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7576 components: - pos: -2.5,28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7577 components: - pos: -2.5,27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7578 components: - pos: -3.5,30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7579 components: - pos: -4.5,30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7580 components: - pos: -3.5,27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7581 components: - pos: -4.5,27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7582 components: - pos: 9.5,33.5 @@ -21660,162 +19887,116 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7583 components: - pos: 9.5,32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7584 components: - pos: 9.5,31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7585 components: - pos: 8.5,31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7586 components: - pos: 7.5,31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7587 components: - pos: 6.5,31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7588 components: - pos: 5.5,31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7589 components: - pos: 4.5,31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7590 components: - pos: 3.5,31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7591 components: - pos: 2.5,31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7592 components: - pos: 2.5,30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7593 components: - pos: 2.5,29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7594 components: - pos: 2.5,28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7595 components: - pos: 2.5,27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7596 components: - pos: 10.5,31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7597 components: - pos: 11.5,31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7598 components: - pos: 12.5,31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7599 components: - pos: 13.5,31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7600 components: - pos: 14.5,31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7601 components: - pos: 15.5,31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7602 components: - pos: 16.5,31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7603 components: - pos: 17.5,31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7604 components: - pos: 18.5,31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7605 components: - pos: -18.5,26.5 @@ -21823,127 +20004,91 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7606 components: - pos: 11.5,29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7607 components: - pos: 11.5,28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7608 components: - pos: 11.5,27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7609 components: - pos: 11.5,26.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7610 components: - pos: 11.5,25.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7611 components: - pos: 11.5,24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7612 components: - pos: 11.5,23.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7613 components: - pos: 12.5,26.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7614 components: - pos: 13.5,26.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7615 components: - pos: 10.5,23.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7617 components: - pos: 6.5,29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7618 components: - pos: 6.5,28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7619 components: - pos: 6.5,27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7620 components: - pos: 6.5,26.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7621 components: - pos: 6.5,25.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7622 components: - pos: 6.5,24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7623 components: - pos: 6.5,21.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7624 components: - pos: 3.5,41.5 @@ -21951,8 +20096,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7625 components: - pos: 2.5,41.5 @@ -21960,568 +20103,406 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7626 components: - pos: 1.5,41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7627 components: - pos: 1.5,42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7628 components: - pos: 1.5,43.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7629 components: - pos: 0.5,43.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7630 components: - pos: -0.5,43.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7631 components: - pos: -1.5,43.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7632 components: - pos: -2.5,43.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7633 components: - pos: -3.5,43.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7634 components: - pos: -4.5,43.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7635 components: - pos: -5.5,43.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7636 components: - pos: -6.5,43.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7637 components: - pos: -7.5,43.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7638 components: - pos: 1.5,44.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7639 components: - pos: -7.5,44.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7640 components: - pos: -2.5,44.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7641 components: - pos: 1.5,40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7642 components: - pos: 1.5,39.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7643 components: - pos: 1.5,38.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7644 components: - pos: 1.5,37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7645 components: - pos: 1.5,36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7646 components: - pos: 1.5,35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7647 components: - pos: 1.5,34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7649 components: - pos: 11.5,41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7650 components: - pos: 11.5,40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7651 components: - pos: 11.5,39.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7652 components: - pos: 11.5,38.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7653 components: - pos: 11.5,37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7654 components: - pos: 11.5,36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7655 components: - pos: 11.5,35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7656 components: - pos: 10.5,35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7657 components: - pos: 9.5,35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7658 components: - pos: 8.5,35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7659 components: - pos: 7.5,35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7660 components: - pos: 6.5,35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7661 components: - pos: 5.5,35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7662 components: - pos: 5.5,36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7663 components: - pos: 5.5,37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7664 components: - pos: 5.5,38.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7665 components: - pos: 5.5,39.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7666 components: - pos: 5.5,40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7667 components: - pos: 5.5,41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7668 components: - pos: 5.5,42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7675 components: - pos: -9.5,15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7678 components: - pos: 10.5,41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7679 components: - pos: 9.5,41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7680 components: - pos: 8.5,41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7681 components: - pos: 7.5,41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7682 components: - pos: 6.5,41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7683 components: - pos: 12.5,39.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7684 components: - pos: 13.5,39.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7685 components: - pos: 14.5,39.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7686 components: - pos: 15.5,39.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7694 components: - pos: 16.5,39.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7698 components: - pos: 17.5,41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7701 components: - pos: 12.5,35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7702 components: - pos: 13.5,35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7703 components: - pos: 14.5,35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7704 components: - pos: 15.5,35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7705 components: - pos: 16.5,35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7706 components: - pos: 17.5,35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7707 components: - pos: 18.5,35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7708 components: - pos: 19.5,35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7713 components: - pos: 17.5,44.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7715 components: - pos: 9.5,42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7718 components: - pos: 17.5,40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7723 components: - pos: 9.5,47.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7756 components: - pos: -10.5,46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7757 components: - pos: -10.5,45.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7758 components: - pos: -10.5,44.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7759 components: - pos: -10.5,43.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7760 components: - pos: -10.5,42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7761 components: - pos: -10.5,41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7762 components: - pos: -10.5,40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7763 components: - pos: -11.5,40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7764 components: - pos: -12.5,40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7767 components: - pos: -11.5,44.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7768 components: - pos: -12.5,44.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7769 components: - pos: -13.5,44.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7770 components: - pos: -14.5,44.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7771 components: - pos: -15.5,44.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7794 components: - pos: 15.5,46.5 @@ -22529,281 +20510,201 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7799 components: - pos: -7.5,47.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7800 components: - pos: -6.5,48.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7814 components: - pos: -8.5,48.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7823 components: - pos: -12.5,17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7824 components: - pos: -10.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7828 components: - pos: 0.5,49.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7838 components: - pos: -14.5,55.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7839 components: - pos: -12.5,57.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7840 components: - pos: -8.5,55.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7841 components: - pos: -11.5,49.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7842 components: - pos: -11.5,48.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7843 components: - pos: -11.5,55.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7844 components: - pos: -11.5,54.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7875 components: - pos: 17.5,46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7876 components: - pos: 9.5,46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7878 components: - pos: 8.5,44.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7879 components: - pos: -11.5,31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7880 components: - pos: -11.5,32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7881 components: - pos: -11.5,33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7882 components: - pos: -11.5,34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7883 components: - pos: -11.5,35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7884 components: - pos: -11.5,36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7885 components: - pos: -11.5,37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7886 components: - pos: -11.5,38.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7887 components: - pos: -12.5,36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7892 components: - pos: -12.5,31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7893 components: - pos: -13.5,31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7894 components: - pos: -10.5,34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7895 components: - pos: -9.5,34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7897 components: - pos: -17.5,27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7907 components: - pos: 11.5,46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7908 components: - pos: 10.5,44.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7911 components: - pos: 9.5,45.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7912 components: - pos: -15.5,30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 8033 components: - pos: 8.5,40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 8034 components: - pos: 8.5,39.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 8035 components: - pos: 8.5,38.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 8036 components: - pos: 8.5,37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 8037 components: - pos: 8.5,36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 8090 components: - pos: -14.5,30.5 @@ -22811,15 +20712,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8091 components: - pos: -16.5,27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 8957 components: - pos: 40.5,0.5 @@ -22827,8 +20724,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9539 components: - pos: -31.5,41.5 @@ -22836,22 +20731,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9540 components: - pos: -31.5,42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9541 components: - pos: -31.5,43.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9542 components: - pos: -32.5,43.5 @@ -22859,8 +20748,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9543 components: - pos: -32.5,44.5 @@ -22868,8 +20755,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9544 components: - pos: -32.5,45.5 @@ -22877,8 +20762,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9545 components: - pos: -32.5,46.5 @@ -22886,8 +20769,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9546 components: - pos: -32.5,47.5 @@ -22895,8 +20776,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9547 components: - pos: -31.5,40.5 @@ -22904,8 +20783,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9548 components: - pos: -32.5,40.5 @@ -22913,8 +20790,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9549 components: - pos: -33.5,40.5 @@ -22922,29 +20797,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9550 components: - pos: -34.5,40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9551 components: - pos: -35.5,40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9552 components: - pos: -36.5,40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9553 components: - pos: -37.5,40.5 @@ -22952,8 +20819,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9554 components: - pos: -38.5,40.5 @@ -22961,8 +20826,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9555 components: - pos: -38.5,39.5 @@ -22970,8 +20833,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9556 components: - pos: -38.5,38.5 @@ -22979,8 +20840,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9557 components: - pos: -39.5,40.5 @@ -22988,8 +20847,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9558 components: - pos: -40.5,40.5 @@ -22997,8 +20854,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9559 components: - pos: -40.5,41.5 @@ -23006,8 +20861,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9560 components: - pos: -40.5,42.5 @@ -23015,8 +20868,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9561 components: - pos: -37.5,41.5 @@ -23024,8 +20875,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9562 components: - pos: -37.5,42.5 @@ -23033,22 +20882,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9563 components: - pos: -35.5,39.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9564 components: - pos: -35.5,38.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9565 components: - pos: -26.5,29.5 @@ -23056,71 +20899,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9566 components: - pos: -26.5,28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9567 components: - pos: -26.5,27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9568 components: - pos: -26.5,26.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9569 components: - pos: -27.5,27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9570 components: - pos: -28.5,27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9571 components: - pos: -25.5,27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9572 components: - pos: -24.5,27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9574 components: - pos: -23.5,26.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9575 components: - pos: -24.5,28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9576 components: - pos: -24.5,29.5 @@ -23128,8 +20951,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9577 components: - pos: -24.5,30.5 @@ -23137,36 +20958,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9578 components: - pos: -24.5,26.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9579 components: - pos: -24.5,25.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9580 components: - pos: -24.5,24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9581 components: - pos: -23.5,24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9582 components: - pos: -20.5,25.5 @@ -23174,267 +20985,191 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9583 components: - pos: -19.5,25.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9584 components: - pos: -19.5,24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9585 components: - pos: -19.5,23.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9586 components: - pos: -19.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9587 components: - pos: -20.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9588 components: - pos: -21.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9589 components: - pos: -22.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9590 components: - pos: -23.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9591 components: - pos: -24.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9592 components: - pos: -25.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9593 components: - pos: -26.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9594 components: - pos: -27.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9595 components: - pos: -18.5,24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9596 components: - pos: -17.5,24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9597 components: - pos: -16.5,24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9598 components: - pos: -15.5,24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9599 components: - pos: -14.5,24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9600 components: - pos: -13.5,24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9601 components: - pos: -12.5,24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9602 components: - pos: -11.5,24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9603 components: - pos: -10.5,24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9604 components: - pos: -9.5,24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9605 components: - pos: -8.5,24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9606 components: - pos: -7.5,24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9607 components: - pos: -6.5,24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9608 components: - pos: -5.5,24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9609 components: - pos: -4.5,24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9610 components: - pos: -3.5,24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9611 components: - pos: -2.5,24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9612 components: - pos: -1.5,24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9613 components: - pos: -0.5,24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9614 components: - pos: 0.5,24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9615 components: - pos: 1.5,24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9616 components: - pos: -2.5,23.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9617 components: - pos: -2.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9618 components: - pos: -2.5,21.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9619 components: - pos: -2.5,20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9816 components: - pos: 0.5,12.5 @@ -23442,463 +21177,331 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9817 components: - pos: 0.5,11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9818 components: - pos: 0.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9819 components: - pos: 0.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9820 components: - pos: -0.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9821 components: - pos: -1.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9822 components: - pos: -2.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9823 components: - pos: -3.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9824 components: - pos: -4.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9825 components: - pos: -5.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9826 components: - pos: -6.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9827 components: - pos: -7.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9828 components: - pos: -8.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9829 components: - pos: -9.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9830 components: - pos: -10.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9831 components: - pos: -11.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9832 components: - pos: -12.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9833 components: - pos: -13.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9834 components: - pos: -14.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9835 components: - pos: -15.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9836 components: - pos: -16.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9837 components: - pos: -17.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9838 components: - pos: -18.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9839 components: - pos: 1.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9840 components: - pos: 2.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9841 components: - pos: 3.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9842 components: - pos: 4.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9843 components: - pos: 5.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9844 components: - pos: 6.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9845 components: - pos: 7.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9846 components: - pos: 8.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9847 components: - pos: 9.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9848 components: - pos: 10.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9849 components: - pos: 11.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9850 components: - pos: 12.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9851 components: - pos: 13.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9852 components: - pos: 14.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9853 components: - pos: 15.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9854 components: - pos: 16.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9855 components: - pos: 0.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9856 components: - pos: 0.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9857 components: - pos: -0.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9858 components: - pos: -1.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9859 components: - pos: -2.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9860 components: - pos: -2.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9861 components: - pos: -2.5,12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9862 components: - pos: 1.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9863 components: - pos: 2.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9864 components: - pos: 3.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9865 components: - pos: 4.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9866 components: - pos: 5.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9867 components: - pos: 6.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9868 components: - pos: 7.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9869 components: - pos: 8.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9870 components: - pos: 9.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9871 components: - pos: 10.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9872 components: - pos: 11.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9873 components: - pos: 12.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9874 components: - pos: 11.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9875 components: - pos: 11.5,12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9876 components: - pos: 11.5,11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9877 components: - pos: 11.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9878 components: - pos: 6.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9879 components: - pos: 6.5,11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9880 components: - pos: 6.5,12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9898 components: - pos: 15.5,-3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9899 components: - pos: 14.5,-3.5 @@ -23906,211 +21509,151 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9900 components: - pos: 16.5,-3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9901 components: - pos: 16.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9902 components: - pos: 16.5,-1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9903 components: - pos: 16.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9904 components: - pos: 16.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9905 components: - pos: 16.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9906 components: - pos: 16.5,2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9907 components: - pos: 16.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9908 components: - pos: 16.5,4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9909 components: - pos: 16.5,5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9910 components: - pos: 16.5,6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9911 components: - pos: 17.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9912 components: - pos: 18.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9913 components: - pos: 19.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9914 components: - pos: 20.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9915 components: - pos: 21.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9916 components: - pos: 16.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9917 components: - pos: 16.5,-5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9918 components: - pos: 16.5,-6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9919 components: - pos: 16.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9920 components: - pos: 16.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9921 components: - pos: 16.5,-9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9922 components: - pos: 16.5,-10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9923 components: - pos: 16.5,-11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9924 components: - pos: 16.5,-12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9925 components: - pos: 16.5,-13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9926 components: - pos: 16.5,-14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9927 components: - pos: 15.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9963 components: - pos: 10.5,26.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9964 components: - pos: 9.5,26.5 @@ -24118,15 +21661,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9965 components: - pos: 6.5,20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9966 components: - pos: 6.5,22.5 @@ -24134,36 +21673,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9967 components: - pos: 6.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9968 components: - pos: 5.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9970 components: - pos: 13.5,25.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9971 components: - pos: 13.5,24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 10013 components: - pos: -14.5,37.5 @@ -24171,8 +21700,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10014 components: - pos: -14.5,38.5 @@ -24180,8 +21707,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10015 components: - pos: -15.5,38.5 @@ -24189,8 +21714,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10016 components: - pos: -15.5,39.5 @@ -24198,8 +21721,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10017 components: - pos: -15.5,40.5 @@ -24207,8 +21728,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10018 components: - pos: -15.5,41.5 @@ -24216,8 +21735,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10019 components: - pos: -14.5,36.5 @@ -24225,8 +21742,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10020 components: - pos: -15.5,36.5 @@ -24234,8 +21749,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10021 components: - pos: -15.5,35.5 @@ -24243,8 +21756,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10022 components: - pos: -15.5,34.5 @@ -24252,8 +21763,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10023 components: - pos: -16.5,34.5 @@ -24261,8 +21770,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10024 components: - pos: -17.5,34.5 @@ -24270,85 +21777,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10057 components: - pos: 4.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 10058 components: - pos: 3.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 10059 components: - pos: 2.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 10060 components: - pos: 1.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 10061 components: - pos: 0.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 10062 components: - pos: -2.5,15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 10063 components: - pos: -2.5,16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 10064 components: - pos: -2.5,17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 10065 components: - pos: 4.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 10066 components: - pos: 4.5,17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 10067 components: - pos: 7.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 10106 components: - pos: 13.5,22.5 @@ -24356,106 +21839,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10107 components: - pos: 13.5,21.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 10108 components: - pos: 13.5,20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 10109 components: - pos: 13.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 10110 components: - pos: 13.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 10111 components: - pos: 13.5,17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 10112 components: - pos: 12.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 10113 components: - pos: 10.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 10114 components: - pos: 11.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 10115 components: - pos: 12.5,21.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 10391 components: - pos: -7.5,-32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 10393 components: - pos: -7.5,-35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 10395 components: - pos: -5.5,-34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 10397 components: - pos: -21.5,-27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 10413 components: - pos: -22.5,-23.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 10685 components: - pos: -34.5,32.5 @@ -24463,15 +21916,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10686 components: - pos: -34.5,33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 10687 components: - pos: -35.5,33.5 @@ -24479,8 +21928,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10688 components: - pos: -35.5,34.5 @@ -24488,8 +21935,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10689 components: - pos: -34.5,31.5 @@ -24497,8 +21942,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10690 components: - pos: -35.5,31.5 @@ -24506,8 +21949,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10691 components: - pos: -36.5,31.5 @@ -24515,8 +21956,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10692 components: - pos: -37.5,31.5 @@ -24524,8 +21963,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10693 components: - pos: -38.5,31.5 @@ -24533,8 +21970,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10694 components: - pos: -38.5,32.5 @@ -24542,8 +21977,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10695 components: - pos: -38.5,33.5 @@ -24551,8 +21984,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10696 components: - pos: -38.5,34.5 @@ -24560,8 +21991,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10697 components: - pos: -38.5,35.5 @@ -24569,8 +21998,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10698 components: - pos: -39.5,35.5 @@ -24578,8 +22005,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10699 components: - pos: -40.5,35.5 @@ -24587,8 +22012,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10700 components: - pos: -41.5,35.5 @@ -24596,8 +22019,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10701 components: - pos: -42.5,35.5 @@ -24605,8 +22026,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10702 components: - pos: -43.5,35.5 @@ -24614,8 +22033,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10703 components: - pos: -33.5,31.5 @@ -24623,8 +22040,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10704 components: - pos: -32.5,31.5 @@ -24632,8 +22047,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10705 components: - pos: -32.5,32.5 @@ -24641,8 +22054,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10706 components: - pos: -32.5,33.5 @@ -24650,8 +22061,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10707 components: - pos: -32.5,34.5 @@ -24659,8 +22068,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10708 components: - pos: -32.5,35.5 @@ -24668,8 +22075,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10709 components: - pos: -32.5,36.5 @@ -24677,8 +22082,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10710 components: - pos: -32.5,37.5 @@ -24686,8 +22089,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10711 components: - pos: -34.5,30.5 @@ -24695,8 +22096,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10712 components: - pos: -34.5,29.5 @@ -24704,8 +22103,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10713 components: - pos: -34.5,28.5 @@ -24713,8 +22110,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10714 components: - pos: -35.5,28.5 @@ -24722,8 +22117,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10715 components: - pos: -36.5,28.5 @@ -24731,8 +22124,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10716 components: - pos: -36.5,27.5 @@ -24740,8 +22131,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10717 components: - pos: -36.5,26.5 @@ -24749,8 +22138,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10718 components: - pos: -36.5,25.5 @@ -24758,8 +22145,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10719 components: - pos: -31.5,31.5 @@ -24767,8 +22152,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10720 components: - pos: -31.5,30.5 @@ -24776,8 +22159,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10721 components: - pos: -31.5,29.5 @@ -24785,8 +22166,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10722 components: - pos: -31.5,28.5 @@ -24794,8 +22173,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10723 components: - pos: -31.5,27.5 @@ -24803,8 +22180,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10724 components: - pos: -31.5,26.5 @@ -24812,8 +22187,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10725 components: - pos: -32.5,26.5 @@ -24821,8 +22194,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10726 components: - pos: -33.5,26.5 @@ -24830,8 +22201,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10727 components: - pos: -30.5,30.5 @@ -24839,8 +22208,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10728 components: - pos: -29.5,30.5 @@ -24848,8 +22215,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11646 components: - pos: 52.5,-9.5 @@ -24857,71 +22222,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11647 components: - pos: 52.5,-10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11648 components: - pos: 52.5,-11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11649 components: - pos: 52.5,-12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11650 components: - pos: 52.5,-13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11651 components: - pos: 52.5,-14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11652 components: - pos: 52.5,-15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11653 components: - pos: 44.5,-25.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11654 components: - pos: 52.5,-17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11655 components: - pos: 52.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11656 components: - pos: 52.5,-19.5 @@ -24929,8 +22274,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11657 components: - pos: 51.5,-19.5 @@ -24938,8 +22281,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11658 components: - pos: 52.5,-20.5 @@ -24947,8 +22288,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11659 components: - pos: 52.5,-21.5 @@ -24956,8 +22295,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11660 components: - pos: 52.5,-22.5 @@ -24965,8 +22302,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11661 components: - pos: 52.5,-23.5 @@ -24974,8 +22309,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11662 components: - pos: 52.5,-24.5 @@ -24983,8 +22316,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11663 components: - pos: 52.5,-25.5 @@ -24992,8 +22323,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11664 components: - pos: 51.5,-25.5 @@ -25001,8 +22330,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11665 components: - pos: 50.5,-25.5 @@ -25010,8 +22337,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11666 components: - pos: 53.5,-25.5 @@ -25019,8 +22344,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11667 components: - pos: 54.5,-25.5 @@ -25028,8 +22351,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11668 components: - pos: 55.5,-25.5 @@ -25037,8 +22358,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11669 components: - pos: 56.5,-25.5 @@ -25046,8 +22365,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11670 components: - pos: 57.5,-25.5 @@ -25055,8 +22372,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11671 components: - pos: 58.5,-25.5 @@ -25064,8 +22379,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11672 components: - pos: 59.5,-25.5 @@ -25073,8 +22386,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11673 components: - pos: 60.5,-25.5 @@ -25082,8 +22393,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11674 components: - pos: 61.5,-25.5 @@ -25091,8 +22400,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11675 components: - pos: 52.5,-26.5 @@ -25100,8 +22407,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11676 components: - pos: 51.5,-27.5 @@ -25109,8 +22414,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11677 components: - pos: 52.5,-27.5 @@ -25118,8 +22421,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11678 components: - pos: 53.5,-27.5 @@ -25127,8 +22428,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11679 components: - pos: 56.5,-26.5 @@ -25136,8 +22435,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11680 components: - pos: 55.5,-27.5 @@ -25145,8 +22442,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11681 components: - pos: 56.5,-27.5 @@ -25154,8 +22449,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11682 components: - pos: 57.5,-27.5 @@ -25163,8 +22456,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11683 components: - pos: 60.5,-26.5 @@ -25172,8 +22463,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11684 components: - pos: 59.5,-27.5 @@ -25181,8 +22470,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11685 components: - pos: 60.5,-27.5 @@ -25190,8 +22477,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11686 components: - pos: 61.5,-27.5 @@ -25199,50 +22484,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11687 components: - pos: 60.5,-28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11688 components: - pos: 60.5,-29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11689 components: - pos: 56.5,-28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11690 components: - pos: 56.5,-29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11691 components: - pos: 52.5,-29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11692 components: - pos: 52.5,-28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11693 components: - pos: 61.5,-24.5 @@ -25250,8 +22521,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11694 components: - pos: 62.5,-24.5 @@ -25259,8 +22528,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11695 components: - pos: 63.5,-24.5 @@ -25268,8 +22535,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11696 components: - pos: 63.5,-23.5 @@ -25277,8 +22542,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11697 components: - pos: 64.5,-24.5 @@ -25286,8 +22549,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11698 components: - pos: 65.5,-24.5 @@ -25295,8 +22556,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11699 components: - pos: 66.5,-24.5 @@ -25304,8 +22563,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11700 components: - pos: 63.5,-22.5 @@ -25313,8 +22570,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11701 components: - pos: 63.5,-21.5 @@ -25322,8 +22577,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11702 components: - pos: 63.5,-20.5 @@ -25331,8 +22584,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11703 components: - pos: 64.5,-20.5 @@ -25340,8 +22591,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11704 components: - pos: 64.5,-19.5 @@ -25349,8 +22598,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11705 components: - pos: 64.5,-18.5 @@ -25358,8 +22605,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11706 components: - pos: 64.5,-17.5 @@ -25367,8 +22612,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11707 components: - pos: 64.5,-16.5 @@ -25376,8 +22619,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11708 components: - pos: 64.5,-15.5 @@ -25385,8 +22626,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11709 components: - pos: 64.5,-14.5 @@ -25394,8 +22633,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11710 components: - pos: 64.5,-13.5 @@ -25403,8 +22640,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11711 components: - pos: 64.5,-12.5 @@ -25412,8 +22647,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11712 components: - pos: 64.5,-11.5 @@ -25421,8 +22654,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11713 components: - pos: 64.5,-10.5 @@ -25430,8 +22661,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11714 components: - pos: 64.5,-9.5 @@ -25439,8 +22668,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11715 components: - pos: 64.5,-8.5 @@ -25448,8 +22675,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11716 components: - pos: 64.5,-7.5 @@ -25457,8 +22682,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11717 components: - pos: 64.5,-6.5 @@ -25466,8 +22689,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11718 components: - pos: 65.5,-7.5 @@ -25475,8 +22696,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11719 components: - pos: 66.5,-7.5 @@ -25484,8 +22703,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11720 components: - pos: 66.5,-8.5 @@ -25493,8 +22710,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11721 components: - pos: 66.5,-6.5 @@ -25502,8 +22717,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11722 components: - pos: 65.5,-11.5 @@ -25511,8 +22724,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11723 components: - pos: 66.5,-11.5 @@ -25520,8 +22731,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11724 components: - pos: 66.5,-12.5 @@ -25529,8 +22738,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11725 components: - pos: 66.5,-10.5 @@ -25538,8 +22745,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11726 components: - pos: 65.5,-15.5 @@ -25547,8 +22752,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11727 components: - pos: 66.5,-15.5 @@ -25556,8 +22759,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11728 components: - pos: 66.5,-14.5 @@ -25565,8 +22766,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11729 components: - pos: 66.5,-16.5 @@ -25574,8 +22773,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11730 components: - pos: 65.5,-19.5 @@ -25583,8 +22780,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11731 components: - pos: 66.5,-19.5 @@ -25592,8 +22787,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11732 components: - pos: 66.5,-20.5 @@ -25601,8 +22794,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11733 components: - pos: 66.5,-18.5 @@ -25610,92 +22801,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11734 components: - pos: 67.5,-19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11735 components: - pos: 68.5,-19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11736 components: - pos: 67.5,-15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11737 components: - pos: 68.5,-15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11738 components: - pos: 67.5,-11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11739 components: - pos: 68.5,-11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11740 components: - pos: 67.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11741 components: - pos: 68.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11742 components: - pos: 53.5,-10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11743 components: - pos: 54.5,-10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11744 components: - pos: 55.5,-10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11745 components: - pos: 56.5,-10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11746 components: - pos: 44.5,-23.5 @@ -25703,8 +22868,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11747 components: - pos: 58.5,-10.5 @@ -25712,8 +22875,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11748 components: - pos: 59.5,-10.5 @@ -25721,8 +22882,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11749 components: - pos: 60.5,-10.5 @@ -25730,8 +22889,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11750 components: - pos: 60.5,-11.5 @@ -25739,8 +22896,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11751 components: - pos: 61.5,-11.5 @@ -25748,8 +22903,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11752 components: - pos: 62.5,-11.5 @@ -25757,8 +22910,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11753 components: - pos: 63.5,-11.5 @@ -25766,8 +22917,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11754 components: - pos: 63.5,-7.5 @@ -25775,8 +22924,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11755 components: - pos: 62.5,-7.5 @@ -25784,8 +22931,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11756 components: - pos: 61.5,-7.5 @@ -25793,8 +22938,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11757 components: - pos: 60.5,-7.5 @@ -25802,8 +22945,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11758 components: - pos: 59.5,-7.5 @@ -25811,8 +22952,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11759 components: - pos: 58.5,-7.5 @@ -25820,8 +22959,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11760 components: - pos: 57.5,-7.5 @@ -25829,8 +22966,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11761 components: - pos: 58.5,-6.5 @@ -25838,8 +22973,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11762 components: - pos: 58.5,-5.5 @@ -25847,8 +22980,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11763 components: - pos: 61.5,-6.5 @@ -25856,8 +22987,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11764 components: - pos: 61.5,-5.5 @@ -25865,43 +22994,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11765 components: - pos: 53.5,-12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11766 components: - pos: 54.5,-12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11767 components: - pos: 55.5,-12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11768 components: - pos: 56.5,-12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11769 components: - pos: 44.5,-24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11770 components: - pos: 58.5,-12.5 @@ -25909,8 +23026,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11771 components: - pos: 58.5,-13.5 @@ -25918,8 +23033,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11772 components: - pos: 58.5,-14.5 @@ -25927,8 +23040,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11773 components: - pos: 58.5,-15.5 @@ -25936,8 +23047,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11774 components: - pos: 58.5,-16.5 @@ -25945,8 +23054,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11775 components: - pos: 58.5,-17.5 @@ -25954,8 +23061,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11776 components: - pos: 58.5,-18.5 @@ -25963,8 +23068,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11777 components: - pos: 58.5,-19.5 @@ -25972,8 +23075,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11778 components: - pos: 58.5,-20.5 @@ -25981,8 +23082,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11779 components: - pos: 58.5,-21.5 @@ -25990,8 +23089,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11780 components: - pos: 57.5,-20.5 @@ -25999,8 +23096,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11781 components: - pos: 56.5,-20.5 @@ -26008,8 +23103,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11782 components: - pos: 55.5,-20.5 @@ -26017,8 +23110,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11783 components: - pos: 54.5,-20.5 @@ -26026,8 +23117,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11784 components: - pos: 63.5,-17.5 @@ -26035,8 +23124,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11785 components: - pos: 62.5,-17.5 @@ -26044,99 +23131,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11953 components: - pos: 52.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11954 components: - pos: 52.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11955 components: - pos: 53.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11956 components: - pos: 55.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11957 components: - pos: 54.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11958 components: - pos: 51.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11959 components: - pos: 50.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11960 components: - pos: 49.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11961 components: - pos: 48.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11962 components: - pos: 47.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11963 components: - pos: 46.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11964 components: - pos: 47.5,-6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11965 components: - pos: 47.5,-5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11968 components: - pos: 50.5,-19.5 @@ -26144,8 +23203,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11969 components: - pos: 50.5,-18.5 @@ -26153,8 +23210,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11971 components: - pos: 44.5,-26.5 @@ -26162,8 +23217,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11972 components: - pos: 44.5,-27.5 @@ -26171,8 +23224,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11973 components: - pos: 44.5,-28.5 @@ -26180,8 +23231,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11974 components: - pos: 45.5,-27.5 @@ -26189,8 +23238,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11975 components: - pos: 46.5,-27.5 @@ -26198,8 +23245,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11976 components: - pos: 46.5,-28.5 @@ -26207,50 +23252,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11977 components: - pos: 46.5,-29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11978 components: - pos: 46.5,-30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11979 components: - pos: 46.5,-31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11980 components: - pos: 46.5,-32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11981 components: - pos: 46.5,-33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11982 components: - pos: 46.5,-34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11983 components: - pos: 46.5,-26.5 @@ -26258,22 +23289,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11984 components: - pos: 46.5,-25.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11985 components: - pos: 46.5,-24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11986 components: - pos: 43.5,-18.5 @@ -26281,8 +23306,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11987 components: - pos: 43.5,-19.5 @@ -26290,8 +23313,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11988 components: - pos: 43.5,-20.5 @@ -26299,8 +23320,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11989 components: - pos: 43.5,-21.5 @@ -26308,8 +23327,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11990 components: - pos: 42.5,-21.5 @@ -26317,8 +23334,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11991 components: - pos: 41.5,-21.5 @@ -26326,8 +23341,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11992 components: - pos: 41.5,-22.5 @@ -26335,8 +23348,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11993 components: - pos: 40.5,-22.5 @@ -26344,8 +23355,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11994 components: - pos: 39.5,-22.5 @@ -26353,8 +23362,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11995 components: - pos: 38.5,-22.5 @@ -26362,8 +23369,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11996 components: - pos: 44.5,-20.5 @@ -26371,8 +23376,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11997 components: - pos: 45.5,-20.5 @@ -26380,8 +23383,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11998 components: - pos: 46.5,-20.5 @@ -26389,8 +23390,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11999 components: - pos: 46.5,-19.5 @@ -26398,15 +23397,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12000 components: - pos: 46.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12001 components: - pos: 46.5,-17.5 @@ -26414,8 +23409,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12002 components: - pos: 46.5,-16.5 @@ -26423,15 +23416,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12003 components: - pos: 46.5,-15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12004 components: - pos: 46.5,-14.5 @@ -26439,8 +23428,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12005 components: - pos: 47.5,-16.5 @@ -26448,8 +23435,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12006 components: - pos: 48.5,-16.5 @@ -26457,8 +23442,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12007 components: - pos: 47.5,-14.5 @@ -26466,8 +23449,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12008 components: - pos: 48.5,-14.5 @@ -26475,8 +23456,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12009 components: - pos: 43.5,-17.5 @@ -26484,8 +23463,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12010 components: - pos: 43.5,-16.5 @@ -26493,8 +23470,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12011 components: - pos: 43.5,-15.5 @@ -26502,8 +23477,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12012 components: - pos: 43.5,-14.5 @@ -26511,8 +23484,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12013 components: - pos: 43.5,-13.5 @@ -26520,8 +23491,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12014 components: - pos: 43.5,-12.5 @@ -26529,8 +23498,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12015 components: - pos: 43.5,-11.5 @@ -26538,8 +23505,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12016 components: - pos: 40.5,-23.5 @@ -26547,8 +23512,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12017 components: - pos: 40.5,-24.5 @@ -26556,8 +23519,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12018 components: - pos: 40.5,-25.5 @@ -26565,8 +23526,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12019 components: - pos: 40.5,-26.5 @@ -26574,43 +23533,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12282 components: - pos: 21.5,4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12283 components: - pos: 21.5,5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12284 components: - pos: 21.5,6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12285 components: - pos: 21.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12286 components: - pos: 21.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12469 components: - pos: 52.5,7.5 @@ -26618,50 +23565,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12470 components: - pos: 53.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12471 components: - pos: 54.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12472 components: - pos: 55.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12473 components: - pos: 54.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12474 components: - pos: 54.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12475 components: - pos: 54.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12476 components: - pos: 58.5,2.5 @@ -26669,162 +23602,116 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12477 components: - pos: 58.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12478 components: - pos: 58.5,4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12479 components: - pos: 58.5,5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12480 components: - pos: 57.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12481 components: - pos: 56.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12482 components: - pos: 55.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12483 components: - pos: 54.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12484 components: - pos: 53.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12485 components: - pos: 52.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12486 components: - pos: 51.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12487 components: - pos: 50.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12488 components: - pos: 50.5,2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12489 components: - pos: 50.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12490 components: - pos: 50.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12491 components: - pos: 50.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12492 components: - pos: 50.5,-1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12493 components: - pos: 50.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12494 components: - pos: 50.5,-3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12495 components: - pos: 51.5,-3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12496 components: - pos: 51.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12497 components: - pos: 52.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12498 components: - pos: 53.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12499 components: - pos: 54.5,-0.5 @@ -26832,85 +23719,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12500 components: - pos: 55.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12501 components: - pos: 56.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12502 components: - pos: 56.5,-1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12503 components: - pos: 56.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12504 components: - pos: 59.5,2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12505 components: - pos: 59.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12506 components: - pos: 59.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12507 components: - pos: 59.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12508 components: - pos: 60.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12509 components: - pos: 60.5,-1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12510 components: - pos: 60.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12511 components: - pos: 61.5,-2.5 @@ -26918,8 +23781,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12512 components: - pos: 62.5,-2.5 @@ -26927,36 +23788,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12513 components: - pos: 60.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12514 components: - pos: 61.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12515 components: - pos: 59.5,4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12516 components: - pos: 60.5,4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12517 components: - pos: 61.5,4.5 @@ -26964,8 +23815,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12518 components: - pos: 62.5,4.5 @@ -26973,8 +23822,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12519 components: - pos: 63.5,4.5 @@ -26982,8 +23829,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12520 components: - pos: 64.5,4.5 @@ -26991,8 +23836,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12521 components: - pos: 65.5,4.5 @@ -27000,8 +23843,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12522 components: - pos: 66.5,4.5 @@ -27009,8 +23850,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12523 components: - pos: 67.5,4.5 @@ -27018,8 +23857,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12524 components: - pos: 58.5,6.5 @@ -27027,8 +23864,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12525 components: - pos: 58.5,7.5 @@ -27036,8 +23871,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12526 components: - pos: 58.5,8.5 @@ -27045,71 +23878,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12527 components: - pos: 58.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12528 components: - pos: 59.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12529 components: - pos: 59.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12530 components: - pos: 51.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12531 components: - pos: 50.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12532 components: - pos: 50.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12533 components: - pos: 50.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12534 components: - pos: 50.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12535 components: - pos: 50.5,4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12544 components: - pos: 48.5,10.5 @@ -27117,106 +23930,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12545 components: - pos: 47.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12546 components: - pos: 46.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12547 components: - pos: 45.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12548 components: - pos: 44.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12549 components: - pos: 43.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12550 components: - pos: 42.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12551 components: - pos: 42.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12552 components: - pos: 42.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12553 components: - pos: 42.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12554 components: - pos: 42.5,6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12555 components: - pos: 47.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12556 components: - pos: 47.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12557 components: - pos: 47.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12558 components: - pos: 47.5,6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12590 components: - pos: 37.5,11.5 @@ -27224,267 +24007,191 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12591 components: - pos: 37.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12592 components: - pos: 37.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12593 components: - pos: 37.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12594 components: - pos: 37.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12595 components: - pos: 38.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12596 components: - pos: 39.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12597 components: - pos: 36.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12598 components: - pos: 35.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12599 components: - pos: 34.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12600 components: - pos: 33.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12601 components: - pos: 36.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12602 components: - pos: 39.5,6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12603 components: - pos: 39.5,5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12604 components: - pos: 39.5,4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12605 components: - pos: 39.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12606 components: - pos: 40.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12607 components: - pos: 41.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12608 components: - pos: 42.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12609 components: - pos: 43.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12610 components: - pos: 44.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12611 components: - pos: 45.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12612 components: - pos: 46.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12613 components: - pos: 22.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12614 components: - pos: 23.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12615 components: - pos: 24.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12616 components: - pos: 25.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12617 components: - pos: 26.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12618 components: - pos: 38.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12619 components: - pos: 37.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12620 components: - pos: 36.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12621 components: - pos: 35.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12622 components: - pos: 34.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12623 components: - pos: 33.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12624 components: - pos: 32.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12625 components: - pos: 31.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12626 components: - pos: 30.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12627 components: - pos: 49.5,-1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12628 components: - pos: 48.5,-1.5 @@ -27492,92 +24199,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12629 components: - pos: 47.5,-1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12630 components: - pos: 46.5,-1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12631 components: - pos: 46.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12632 components: - pos: 46.5,-3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12633 components: - pos: 45.5,-1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12634 components: - pos: 44.5,-1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12635 components: - pos: 43.5,-1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12636 components: - pos: 43.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12637 components: - pos: 43.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12638 components: - pos: 46.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12639 components: - pos: 46.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12640 components: - pos: 46.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13229 components: - pos: 35.5,49.5 @@ -27585,99 +24266,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13230 components: - pos: 34.5,49.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13231 components: - pos: 33.5,49.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13232 components: - pos: 32.5,49.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13233 components: - pos: 31.5,49.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13234 components: - pos: 30.5,49.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13235 components: - pos: 29.5,49.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13236 components: - pos: 28.5,49.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13237 components: - pos: 28.5,50.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13238 components: - pos: 28.5,51.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13239 components: - pos: 28.5,52.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13240 components: - pos: 28.5,53.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13241 components: - pos: 28.5,54.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13242 components: - pos: 33.5,50.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13246 components: - pos: -44.5,-51.5 @@ -27685,15 +24338,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13247 components: - pos: 27.5,49.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13248 components: - pos: 34.5,47.5 @@ -27701,57 +24350,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13249 components: - pos: 34.5,46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13250 components: - pos: 34.5,45.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13251 components: - pos: 34.5,44.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13252 components: - pos: 35.5,46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13253 components: - pos: 36.5,46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13254 components: - pos: 37.5,46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13255 components: - pos: 37.5,47.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13256 components: - pos: 38.5,47.5 @@ -27759,8 +24392,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13257 components: - pos: 39.5,47.5 @@ -27768,8 +24399,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13258 components: - pos: 40.5,47.5 @@ -27777,386 +24406,276 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13259 components: - pos: 33.5,45.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13260 components: - pos: 32.5,45.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13261 components: - pos: 31.5,45.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13262 components: - pos: 30.5,45.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13263 components: - pos: 29.5,45.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13264 components: - pos: 28.5,45.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13265 components: - pos: 28.5,44.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13266 components: - pos: 28.5,43.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13267 components: - pos: 28.5,42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13268 components: - pos: 28.5,41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13269 components: - pos: 28.5,40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13270 components: - pos: 28.5,39.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13271 components: - pos: 28.5,38.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13272 components: - pos: 28.5,37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13273 components: - pos: 35.5,44.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13274 components: - pos: 35.5,43.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13275 components: - pos: 35.5,42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13276 components: - pos: 35.5,41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13277 components: - pos: 35.5,40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13278 components: - pos: 35.5,39.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13279 components: - pos: 35.5,38.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13280 components: - pos: 35.5,37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13281 components: - pos: 36.5,39.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13282 components: - pos: 37.5,39.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13283 components: - pos: 38.5,39.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13284 components: - pos: 39.5,39.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13285 components: - pos: 40.5,39.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13286 components: - pos: 41.5,39.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13287 components: - pos: 42.5,39.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13288 components: - pos: 43.5,39.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13289 components: - pos: 44.5,39.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13290 components: - pos: 45.5,39.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13291 components: - pos: 35.5,36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13292 components: - pos: 36.5,36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13293 components: - pos: 37.5,36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13294 components: - pos: 38.5,36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13295 components: - pos: 39.5,36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13296 components: - pos: 40.5,36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13297 components: - pos: 41.5,36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13298 components: - pos: 42.5,36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13299 components: - pos: 43.5,36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13300 components: - pos: 44.5,36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13301 components: - pos: 45.5,36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13302 components: - pos: 41.5,35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13303 components: - pos: 41.5,34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13304 components: - pos: 41.5,40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13305 components: - pos: 41.5,41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13306 components: - pos: 34.5,39.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13307 components: - pos: 33.5,39.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13308 components: - pos: 32.5,39.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13309 components: - pos: 32.5,40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13310 components: - pos: 35.5,35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13311 components: - pos: 27.5,37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13312 components: - pos: 26.5,37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13313 components: - pos: 25.5,37.5 @@ -28164,8 +24683,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13314 components: - pos: 24.5,37.5 @@ -28173,8 +24690,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13315 components: - pos: 23.5,37.5 @@ -28182,8 +24697,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13316 components: - pos: 22.5,37.5 @@ -28191,8 +24704,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13317 components: - pos: 21.5,37.5 @@ -28200,8 +24711,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13318 components: - pos: 20.5,37.5 @@ -28209,8 +24718,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13319 components: - pos: 20.5,38.5 @@ -28218,8 +24725,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13320 components: - pos: 20.5,39.5 @@ -28227,8 +24732,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13321 components: - pos: 24.5,38.5 @@ -28236,8 +24739,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13322 components: - pos: 24.5,39.5 @@ -28245,8 +24746,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13323 components: - pos: 24.5,40.5 @@ -28254,8 +24753,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13324 components: - pos: 22.5,36.5 @@ -28263,8 +24760,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13325 components: - pos: 22.5,35.5 @@ -28272,8 +24767,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13326 components: - pos: 19.5,20.5 @@ -28281,113 +24774,81 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13327 components: - pos: 19.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13328 components: - pos: 19.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13329 components: - pos: 19.5,17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13330 components: - pos: 19.5,16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13331 components: - pos: 19.5,15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13332 components: - pos: 19.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13333 components: - pos: 19.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13334 components: - pos: 18.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13335 components: - pos: 17.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13336 components: - pos: 16.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13337 components: - pos: 18.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13338 components: - pos: 17.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13339 components: - pos: 16.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13340 components: - pos: 16.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13341 components: - pos: 16.5,20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13342 components: - pos: 16.5,21.5 @@ -28395,8 +24856,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13343 components: - pos: 16.5,22.5 @@ -28404,8 +24863,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13344 components: - pos: 16.5,23.5 @@ -28413,8 +24870,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13345 components: - pos: 16.5,24.5 @@ -28422,8 +24877,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13346 components: - pos: 16.5,25.5 @@ -28431,8 +24884,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13347 components: - pos: 16.5,26.5 @@ -28440,8 +24891,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13348 components: - pos: 16.5,27.5 @@ -28449,8 +24898,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13349 components: - pos: 16.5,28.5 @@ -28458,148 +24905,106 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13351 components: - pos: 21.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13352 components: - pos: 21.5,20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13353 components: - pos: 21.5,21.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13354 components: - pos: 21.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13355 components: - pos: 21.5,23.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13356 components: - pos: 21.5,24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13357 components: - pos: 21.5,25.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13358 components: - pos: 21.5,26.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13359 components: - pos: 21.5,27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13360 components: - pos: 20.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13361 components: - pos: 21.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13362 components: - pos: 22.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13363 components: - pos: 23.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13364 components: - pos: 24.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13365 components: - pos: 25.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13366 components: - pos: 26.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13367 components: - pos: 27.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13368 components: - pos: 28.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13369 components: - pos: 24.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13370 components: - pos: 24.5,12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13371 components: - pos: 24.5,11.5 @@ -28607,8 +25012,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13372 components: - pos: 24.5,10.5 @@ -28616,8 +25019,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13373 components: - pos: 23.5,10.5 @@ -28625,8 +25026,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13374 components: - pos: 22.5,10.5 @@ -28634,8 +25033,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13375 components: - pos: 21.5,10.5 @@ -28643,8 +25040,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13376 components: - pos: 33.5,20.5 @@ -28652,379 +25047,271 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13377 components: - pos: 33.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13378 components: - pos: 33.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13379 components: - pos: 33.5,17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13380 components: - pos: 34.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13381 components: - pos: 35.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13382 components: - pos: 36.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13383 components: - pos: 37.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13384 components: - pos: 35.5,17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13385 components: - pos: 35.5,16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13386 components: - pos: 35.5,15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13387 components: - pos: 35.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13388 components: - pos: 36.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13389 components: - pos: 37.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13390 components: - pos: 34.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13391 components: - pos: 33.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13392 components: - pos: 32.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13393 components: - pos: 34.5,20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13394 components: - pos: 34.5,21.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13395 components: - pos: 34.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13396 components: - pos: 34.5,23.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13397 components: - pos: 34.5,24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13398 components: - pos: 34.5,25.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13399 components: - pos: 34.5,26.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13400 components: - pos: 34.5,27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13401 components: - pos: 34.5,28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13402 components: - pos: 34.5,29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13403 components: - pos: 34.5,30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13404 components: - pos: 34.5,31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13405 components: - pos: 34.5,32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13406 components: - pos: 33.5,32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13407 components: - pos: 32.5,32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13408 components: - pos: 31.5,32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13409 components: - pos: 30.5,32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13410 components: - pos: 29.5,32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13411 components: - pos: 28.5,32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13412 components: - pos: 28.5,33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13413 components: - pos: 28.5,34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13414 components: - pos: 32.5,33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13415 components: - pos: 35.5,30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13416 components: - pos: 35.5,25.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13417 components: - pos: 36.5,25.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13418 components: - pos: 37.5,25.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13419 components: - pos: 33.5,27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13420 components: - pos: 32.5,27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13421 components: - pos: 31.5,27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13422 components: - pos: 30.5,27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13423 components: - pos: 29.5,27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13424 components: - pos: 28.5,27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13425 components: - pos: 27.5,27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13426 components: - pos: 27.5,28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13427 components: - pos: 33.5,23.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13428 components: - pos: 32.5,23.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13429 components: - pos: 31.5,23.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13430 components: - pos: 34.5,13.5 @@ -29032,8 +25319,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13431 components: - pos: 34.5,12.5 @@ -29041,8 +25326,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13432 components: - pos: 33.5,12.5 @@ -29050,8 +25333,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13433 components: - pos: 32.5,12.5 @@ -29059,134 +25340,96 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13434 components: - pos: 20.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13435 components: - pos: 21.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13436 components: - pos: 22.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13437 components: - pos: 23.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13438 components: - pos: 24.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13439 components: - pos: 25.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13440 components: - pos: 26.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13441 components: - pos: 27.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13442 components: - pos: 28.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13443 components: - pos: 27.5,17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13444 components: - pos: 27.5,16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13445 components: - pos: 27.5,15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13446 components: - pos: 27.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13447 components: - pos: 27.5,20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13448 components: - pos: 27.5,21.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13449 components: - pos: 27.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13450 components: - pos: 27.5,23.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13451 components: - pos: 27.5,24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13470 components: - pos: 24.5,41.5 @@ -29194,8 +25437,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13471 components: - pos: 24.5,42.5 @@ -29203,8 +25444,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13472 components: - pos: 24.5,43.5 @@ -29212,8 +25451,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13473 components: - pos: 24.5,44.5 @@ -29221,8 +25458,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13474 components: - pos: 24.5,45.5 @@ -29230,8 +25465,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13475 components: - pos: 23.5,43.5 @@ -29239,8 +25472,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13476 components: - pos: 22.5,43.5 @@ -29248,8 +25479,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13477 components: - pos: 22.5,44.5 @@ -29257,8 +25486,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13478 components: - pos: 22.5,34.5 @@ -29266,15 +25493,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13771 components: - pos: 16.5,44.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13772 components: - pos: 15.5,44.5 @@ -29282,15 +25505,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13773 components: - pos: 16.5,42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13774 components: - pos: 15.5,42.5 @@ -29298,15 +25517,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13775 components: - pos: 18.5,42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13776 components: - pos: 19.5,42.5 @@ -29314,15 +25529,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13777 components: - pos: 18.5,44.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13778 components: - pos: 19.5,44.5 @@ -29330,15 +25541,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13779 components: - pos: 18.5,46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13780 components: - pos: 19.5,46.5 @@ -29346,15 +25553,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13920 components: - pos: -18.5,-24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14018 components: - pos: 53.5,36.5 @@ -29362,99 +25565,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14019 components: - pos: 54.5,36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14020 components: - pos: 55.5,36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14021 components: - pos: 56.5,36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14022 components: - pos: 56.5,37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14023 components: - pos: 56.5,38.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14024 components: - pos: 56.5,39.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14025 components: - pos: 56.5,40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14026 components: - pos: 56.5,41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14027 components: - pos: 56.5,35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14028 components: - pos: 54.5,35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14029 components: - pos: 54.5,34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14030 components: - pos: 54.5,33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14031 components: - pos: 54.5,32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14032 components: - pos: 62.5,34.5 @@ -29462,15 +25637,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14033 components: - pos: 62.5,35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14034 components: - pos: 63.5,35.5 @@ -29478,8 +25649,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14035 components: - pos: 63.5,36.5 @@ -29487,8 +25656,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14036 components: - pos: 63.5,37.5 @@ -29496,8 +25663,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14037 components: - pos: 63.5,38.5 @@ -29505,8 +25670,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14038 components: - pos: 63.5,39.5 @@ -29514,8 +25677,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14039 components: - pos: 62.5,33.5 @@ -29523,8 +25684,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14040 components: - pos: 62.5,32.5 @@ -29532,8 +25691,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14041 components: - pos: 63.5,32.5 @@ -29541,8 +25698,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14042 components: - pos: 64.5,32.5 @@ -29550,8 +25705,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14043 components: - pos: 65.5,32.5 @@ -29559,8 +25712,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14044 components: - pos: 66.5,32.5 @@ -29568,8 +25719,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14045 components: - pos: 67.5,32.5 @@ -29577,8 +25726,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14046 components: - pos: 68.5,32.5 @@ -29586,8 +25733,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14047 components: - pos: 69.5,32.5 @@ -29595,8 +25740,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14048 components: - pos: 70.5,32.5 @@ -29604,8 +25747,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14049 components: - pos: 61.5,32.5 @@ -29613,8 +25754,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14050 components: - pos: 60.5,32.5 @@ -29622,8 +25761,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14051 components: - pos: 59.5,32.5 @@ -29631,8 +25768,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14052 components: - pos: 58.5,32.5 @@ -29640,8 +25775,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14069 components: - pos: -75.5,9.5 @@ -29649,8 +25782,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14070 components: - pos: -76.5,10.5 @@ -29658,8 +25789,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14071 components: - pos: -75.5,10.5 @@ -29667,8 +25796,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14072 components: - pos: -74.5,10.5 @@ -29676,8 +25803,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14073 components: - pos: -73.5,10.5 @@ -29685,8 +25810,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14074 components: - pos: -72.5,10.5 @@ -29694,8 +25817,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14075 components: - pos: -71.5,10.5 @@ -29703,8 +25824,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14076 components: - pos: -70.5,10.5 @@ -29712,8 +25831,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14077 components: - pos: -69.5,10.5 @@ -29721,8 +25838,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14078 components: - pos: -68.5,10.5 @@ -29730,8 +25845,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14079 components: - pos: -67.5,10.5 @@ -29739,8 +25852,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14080 components: - pos: -66.5,10.5 @@ -29748,8 +25859,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14081 components: - pos: -65.5,10.5 @@ -29757,8 +25866,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14082 components: - pos: -64.5,10.5 @@ -29766,8 +25873,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14083 components: - pos: -63.5,10.5 @@ -29775,8 +25880,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14084 components: - pos: -62.5,10.5 @@ -29784,8 +25887,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14085 components: - pos: -61.5,10.5 @@ -29793,8 +25894,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14086 components: - pos: -60.5,10.5 @@ -29802,8 +25901,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14087 components: - pos: -59.5,10.5 @@ -29811,8 +25908,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14093 components: - pos: -49.5,9.5 @@ -29820,8 +25915,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14094 components: - pos: -50.5,9.5 @@ -29829,8 +25922,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14095 components: - pos: -48.5,9.5 @@ -29838,29 +25929,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14104 components: - pos: -16.5,-22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14105 components: - pos: -17.5,-25.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14106 components: - pos: -75.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14107 components: - pos: -76.5,-8.5 @@ -29868,8 +25951,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14108 components: - pos: -76.5,-7.5 @@ -29877,8 +25958,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14109 components: - pos: -75.5,-7.5 @@ -29886,8 +25965,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14110 components: - pos: -76.5,-6.5 @@ -29895,8 +25972,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14111 components: - pos: -76.5,-9.5 @@ -29904,8 +25979,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14112 components: - pos: -76.5,-10.5 @@ -29913,8 +25986,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14113 components: - pos: -75.5,-10.5 @@ -29922,8 +25993,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14114 components: - pos: -76.5,7.5 @@ -29931,8 +26000,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14115 components: - pos: -76.5,6.5 @@ -29940,8 +26007,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14116 components: - pos: -76.5,5.5 @@ -29949,8 +26014,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14117 components: - pos: -75.5,6.5 @@ -29958,8 +26021,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14118 components: - pos: -77.5,7.5 @@ -29967,8 +26028,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14119 components: - pos: -78.5,7.5 @@ -29976,8 +26035,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14120 components: - pos: -78.5,8.5 @@ -29985,8 +26042,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14121 components: - pos: -78.5,9.5 @@ -29994,8 +26049,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14122 components: - pos: -73.5,6.5 @@ -30003,8 +26056,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14123 components: - pos: -71.5,6.5 @@ -30012,8 +26063,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14124 components: - pos: -71.5,5.5 @@ -30021,8 +26070,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14125 components: - pos: -71.5,4.5 @@ -30030,8 +26077,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14126 components: - pos: -71.5,-7.5 @@ -30039,8 +26084,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14127 components: - pos: -71.5,-6.5 @@ -30048,8 +26091,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14128 components: - pos: -71.5,-5.5 @@ -30057,15 +26098,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14129 components: - pos: -73.5,-9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14130 components: - pos: -73.5,-10.5 @@ -30073,15 +26110,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14131 components: - pos: -71.5,-9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14132 components: - pos: -71.5,-10.5 @@ -30089,15 +26122,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14133 components: - pos: -68.5,-9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14134 components: - pos: -68.5,-10.5 @@ -30105,8 +26134,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14135 components: - pos: -69.5,-10.5 @@ -30114,8 +26141,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14136 components: - pos: -67.5,-10.5 @@ -30123,15 +26148,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14137 components: - pos: -65.5,-9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14138 components: - pos: -65.5,-10.5 @@ -30139,8 +26160,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14150 components: - pos: -44.5,-54.5 @@ -30148,71 +26167,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14156 components: - pos: -11.5,-30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14157 components: - pos: -9.5,-29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14158 components: - pos: -10.5,-29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14159 components: - pos: -11.5,-26.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14187 components: - pos: -7.5,-33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14188 components: - pos: -9.5,-32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14248 components: - pos: -6.5,-34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14249 components: - pos: -8.5,-32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14260 components: - pos: -18.5,-22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14261 components: - pos: -18.5,-21.5 @@ -30220,15 +26219,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14262 components: - pos: -16.5,-24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14263 components: - pos: -16.5,-21.5 @@ -30236,22 +26231,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14305 components: - pos: -14.5,-26.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14362 components: - pos: -17.5,-24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14386 components: - pos: -14.5,-27.5 @@ -30259,22 +26248,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14568 components: - pos: -17.5,-26.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14587 components: - pos: -15.5,-24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14628 components: - pos: -13.5,-26.5 @@ -30282,8 +26265,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14629 components: - pos: -15.5,-27.5 @@ -30291,29 +26272,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14632 components: - pos: -23.5,-24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14635 components: - pos: -7.5,-29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14638 components: - pos: -6.5,-29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14692 components: - pos: -10.5,-30.5 @@ -30321,50 +26294,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14693 components: - pos: -11.5,-29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14800 components: - pos: -20.5,-26.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14808 components: - pos: -18.5,-26.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14845 components: - pos: -20.5,-24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14846 components: - pos: -17.5,-22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14847 components: - pos: -22.5,-24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14854 components: - pos: -21.5,-28.5 @@ -30372,22 +26331,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14877 components: - pos: -22.5,-26.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15621 components: - pos: -7.5,-34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15665 components: - pos: -24.5,-24.5 @@ -30395,15 +26348,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15666 components: - pos: -21.5,-24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15757 components: - pos: -37.5,-47.5 @@ -30411,253 +26360,181 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15758 components: - pos: -38.5,-47.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15759 components: - pos: -38.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15760 components: - pos: -39.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15761 components: - pos: -36.5,-47.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15762 components: - pos: -35.5,-47.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15763 components: - pos: -35.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15764 components: - pos: -34.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15765 components: - pos: -33.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15766 components: - pos: -32.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15767 components: - pos: -31.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15768 components: - pos: -30.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15769 components: - pos: -29.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15770 components: - pos: -28.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15771 components: - pos: -27.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15772 components: - pos: -26.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15773 components: - pos: -25.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15774 components: - pos: -24.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15775 components: - pos: -31.5,-47.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15776 components: - pos: -31.5,-48.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15777 components: - pos: -31.5,-49.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15778 components: - pos: -31.5,-50.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15779 components: - pos: -31.5,-51.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15780 components: - pos: -32.5,-51.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15781 components: - pos: -33.5,-51.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15782 components: - pos: -34.5,-51.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15783 components: - pos: -27.5,-47.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15784 components: - pos: -27.5,-48.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15785 components: - pos: -27.5,-49.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15786 components: - pos: -27.5,-50.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15787 components: - pos: -27.5,-51.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15788 components: - pos: -26.5,-51.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15789 components: - pos: -25.5,-51.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15790 components: - pos: -24.5,-51.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15791 components: - pos: -33.5,-45.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15792 components: - pos: -33.5,-44.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15793 components: - pos: -33.5,-43.5 @@ -30665,8 +26542,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15794 components: - pos: -33.5,-42.5 @@ -30674,8 +26549,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15795 components: - pos: -33.5,-41.5 @@ -30683,8 +26556,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15796 components: - pos: -33.5,-40.5 @@ -30692,8 +26563,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15797 components: - pos: -33.5,-39.5 @@ -30701,8 +26570,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15798 components: - pos: -34.5,-39.5 @@ -30710,8 +26577,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15799 components: - pos: -35.5,-39.5 @@ -30719,8 +26584,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15800 components: - pos: -36.5,-39.5 @@ -30728,8 +26591,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15801 components: - pos: -36.5,-40.5 @@ -30737,8 +26598,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15802 components: - pos: -36.5,-41.5 @@ -30746,8 +26605,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15803 components: - pos: -36.5,-42.5 @@ -30755,8 +26612,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15804 components: - pos: -22.5,-38.5 @@ -30764,274 +26619,196 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15805 components: - pos: -22.5,-39.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15806 components: - pos: -22.5,-40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15807 components: - pos: -23.5,-40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15808 components: - pos: -24.5,-40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15809 components: - pos: -25.5,-40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15810 components: - pos: -26.5,-40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15811 components: - pos: -27.5,-40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15812 components: - pos: -28.5,-40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15813 components: - pos: -29.5,-40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15814 components: - pos: -30.5,-40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15815 components: - pos: -31.5,-40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15816 components: - pos: -31.5,-41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15817 components: - pos: -31.5,-42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15818 components: - pos: -28.5,-41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15819 components: - pos: -25.5,-41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15820 components: - pos: -28.5,-39.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15821 components: - pos: -21.5,-40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15822 components: - pos: -20.5,-40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15823 components: - pos: -20.5,-41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15824 components: - pos: -20.5,-42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15825 components: - pos: -20.5,-43.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15826 components: - pos: -20.5,-44.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15827 components: - pos: -20.5,-45.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15828 components: - pos: -20.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15829 components: - pos: -20.5,-47.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15830 components: - pos: -20.5,-48.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15831 components: - pos: -20.5,-49.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15832 components: - pos: -20.5,-50.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15833 components: - pos: -19.5,-41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15834 components: - pos: -18.5,-41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15835 components: - pos: -17.5,-41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15836 components: - pos: -16.5,-41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15837 components: - pos: -15.5,-41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15838 components: - pos: -14.5,-41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15839 components: - pos: -14.5,-42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15840 components: - pos: -14.5,-43.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15841 components: - pos: -16.5,-42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15842 components: - pos: -16.5,-43.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15843 components: - pos: -8.5,-45.5 @@ -31039,148 +26816,106 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15844 components: - pos: -8.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15845 components: - pos: -8.5,-47.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15846 components: - pos: -8.5,-48.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15847 components: - pos: -8.5,-49.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15848 components: - pos: -8.5,-50.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15849 components: - pos: -9.5,-50.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15850 components: - pos: -10.5,-50.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15851 components: - pos: -11.5,-50.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15852 components: - pos: -12.5,-50.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15853 components: - pos: -13.5,-50.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15854 components: - pos: -14.5,-50.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15855 components: - pos: -11.5,-49.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15856 components: - pos: -11.5,-48.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15857 components: - pos: -14.5,-49.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15858 components: - pos: -14.5,-48.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15859 components: - pos: -15.5,-49.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15860 components: - pos: -16.5,-49.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15861 components: - pos: -16.5,-50.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15862 components: - pos: -16.5,-48.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15863 components: - pos: -16.5,-47.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15864 components: - pos: -22.5,-54.5 @@ -31188,162 +26923,116 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15865 components: - pos: -21.5,-54.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15866 components: - pos: -20.5,-54.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15867 components: - pos: -19.5,-54.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15868 components: - pos: -18.5,-54.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15869 components: - pos: -17.5,-54.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15870 components: - pos: -16.5,-54.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15871 components: - pos: -15.5,-54.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15872 components: - pos: -16.5,-55.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15873 components: - pos: -16.5,-56.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15874 components: - pos: -16.5,-57.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15875 components: - pos: -16.5,-58.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15876 components: - pos: -16.5,-59.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15877 components: - pos: -20.5,-55.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15878 components: - pos: -20.5,-56.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15879 components: - pos: -21.5,-56.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15880 components: - pos: -22.5,-56.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15881 components: - pos: -23.5,-56.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15882 components: - pos: -24.5,-56.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15883 components: - pos: -25.5,-56.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15884 components: - pos: -26.5,-56.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15885 components: - pos: -26.5,-57.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15886 components: - pos: -27.5,-57.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15887 components: - pos: -28.5,-57.5 @@ -31351,8 +27040,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15888 components: - pos: -29.5,-57.5 @@ -31360,15 +27047,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15889 components: - pos: -30.5,-57.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15890 components: - pos: -31.5,-57.5 @@ -31376,8 +27059,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15891 components: - pos: -31.5,-56.5 @@ -31385,8 +27066,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15892 components: - pos: -32.5,-56.5 @@ -31394,8 +27073,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15893 components: - pos: -33.5,-56.5 @@ -31403,15 +27080,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15894 components: - pos: -34.5,-56.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15895 components: - pos: -31.5,-55.5 @@ -31419,8 +27092,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15896 components: - pos: -34.5,-55.5 @@ -31428,8 +27099,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15897 components: - pos: -35.5,-55.5 @@ -31437,8 +27106,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15898 components: - pos: -36.5,-55.5 @@ -31446,8 +27113,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15899 components: - pos: -37.5,-55.5 @@ -31455,8 +27120,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15900 components: - pos: -38.5,-55.5 @@ -31464,43 +27127,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15901 components: - pos: -20.5,-57.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15902 components: - pos: -20.5,-53.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15950 components: - pos: -11.5,-27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15952 components: - pos: -17.5,-23.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15956 components: - pos: -11.5,-28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15993 components: - pos: -24.5,-28.5 @@ -31508,176 +27159,126 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15994 components: - pos: -24.5,-29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15995 components: - pos: -24.5,-30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15996 components: - pos: -24.5,-31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15997 components: - pos: -24.5,-32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15998 components: - pos: -24.5,-33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15999 components: - pos: -24.5,-34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16000 components: - pos: -24.5,-35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16001 components: - pos: -24.5,-36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16002 components: - pos: -25.5,-30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16003 components: - pos: -26.5,-30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16004 components: - pos: -27.5,-30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16005 components: - pos: -28.5,-30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16006 components: - pos: -29.5,-30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16007 components: - pos: -30.5,-30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16008 components: - pos: -25.5,-35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16009 components: - pos: -26.5,-35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16010 components: - pos: -27.5,-35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16011 components: - pos: -28.5,-35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16012 components: - pos: -29.5,-35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16013 components: - pos: -30.5,-35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16014 components: - pos: -27.5,-29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16015 components: - pos: -27.5,-28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16016 components: - pos: -27.5,-27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16017 components: - pos: -27.5,-26.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16020 components: - pos: -34.5,-29.5 @@ -31685,71 +27286,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16021 components: - pos: -34.5,-30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16022 components: - pos: -34.5,-31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16023 components: - pos: -34.5,-32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16024 components: - pos: -34.5,-33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16025 components: - pos: -34.5,-34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16026 components: - pos: -34.5,-35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16027 components: - pos: -35.5,-35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16028 components: - pos: -36.5,-35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16029 components: - pos: -37.5,-35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16030 components: - pos: -38.5,-35.5 @@ -31757,8 +27338,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16031 components: - pos: -39.5,-35.5 @@ -31766,8 +27345,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16032 components: - pos: -39.5,-34.5 @@ -31775,8 +27352,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16033 components: - pos: -39.5,-33.5 @@ -31784,8 +27359,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16034 components: - pos: -39.5,-32.5 @@ -31793,8 +27366,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16035 components: - pos: -39.5,-31.5 @@ -31802,8 +27373,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16036 components: - pos: -39.5,-30.5 @@ -31811,8 +27380,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16037 components: - pos: -39.5,-29.5 @@ -31820,8 +27387,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16038 components: - pos: -39.5,-28.5 @@ -31829,8 +27394,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16039 components: - pos: -39.5,-27.5 @@ -31838,8 +27401,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16040 components: - pos: -38.5,-27.5 @@ -31847,8 +27408,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16041 components: - pos: -37.5,-27.5 @@ -31856,8 +27415,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16042 components: - pos: -36.5,-27.5 @@ -31865,8 +27422,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16043 components: - pos: -35.5,-27.5 @@ -31874,8 +27429,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16044 components: - pos: -34.5,-27.5 @@ -31883,8 +27436,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16045 components: - pos: -33.5,-27.5 @@ -31892,43 +27443,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16046 components: - pos: -35.5,-31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16047 components: - pos: -36.5,-31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16048 components: - pos: -30.5,-33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16049 components: - pos: -30.5,-34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16050 components: - pos: -30.5,-36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16051 components: - pos: -13.5,-32.5 @@ -31936,386 +27475,276 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16052 components: - pos: -13.5,-33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16053 components: - pos: -13.5,-34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16054 components: - pos: -13.5,-35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16055 components: - pos: -13.5,-36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16056 components: - pos: -13.5,-37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16057 components: - pos: -14.5,-36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16058 components: - pos: -15.5,-36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16059 components: - pos: -16.5,-36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16060 components: - pos: -17.5,-36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16061 components: - pos: -14.5,-34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16062 components: - pos: -15.5,-34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16063 components: - pos: -16.5,-34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16064 components: - pos: -17.5,-34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16065 components: - pos: -18.5,-34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16066 components: - pos: -19.5,-34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16067 components: - pos: -20.5,-34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16068 components: - pos: -20.5,-35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16069 components: - pos: -20.5,-37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16070 components: - pos: -20.5,-36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16071 components: - pos: -20.5,-33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16072 components: - pos: -20.5,-32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16073 components: - pos: -20.5,-31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16074 components: - pos: -20.5,-30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16081 components: - pos: -11.5,-25.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16088 components: - pos: -16.5,-19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16089 components: - pos: -17.5,-19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16090 components: - pos: -18.5,-19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16091 components: - pos: -19.5,-19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16092 components: - pos: -20.5,-19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16093 components: - pos: -21.5,-19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16094 components: - pos: -21.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16095 components: - pos: -21.5,-17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16096 components: - pos: -21.5,-16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16097 components: - pos: -21.5,-15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16098 components: - pos: -21.5,-14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16099 components: - pos: -21.5,-13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16100 components: - pos: -21.5,-12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16101 components: - pos: -21.5,-11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16102 components: - pos: -21.5,-10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16103 components: - pos: -13.5,-31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16104 components: - pos: -13.5,-30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16105 components: - pos: -14.5,-30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16106 components: - pos: -15.5,-30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16107 components: - pos: -16.5,-30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16121 components: - pos: -10.5,-25.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16122 components: - pos: -9.5,-25.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16123 components: - pos: -8.5,-25.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16124 components: - pos: -7.5,-25.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16125 components: - pos: -6.5,-25.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16126 components: - pos: -5.5,-25.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16127 components: - pos: -6.5,-24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16128 components: - pos: -9.5,-24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16129 components: - pos: -9.5,-23.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16130 components: - pos: -9.5,-20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16131 components: - pos: -7.5,-36.5 @@ -32323,29 +27752,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16135 components: - pos: -21.5,-26.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16141 components: - pos: -7.5,-37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16142 components: - pos: -8.5,-37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16143 components: - pos: -8.5,-38.5 @@ -32353,8 +27774,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16144 components: - pos: -8.5,-39.5 @@ -32362,8 +27781,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16145 components: - pos: -8.5,-40.5 @@ -32371,8 +27788,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16146 components: - pos: -8.5,-41.5 @@ -32380,8 +27795,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16147 components: - pos: -8.5,-42.5 @@ -32389,8 +27802,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16148 components: - pos: -8.5,-43.5 @@ -32398,36 +27809,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16216 components: - pos: -9.5,-43.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16217 components: - pos: -10.5,-43.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16244 components: - pos: -19.5,-24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16312 components: - pos: -48.5,-53.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16352 components: - pos: -48.5,-55.5 @@ -32435,8 +27836,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16382 components: - pos: -44.5,-53.5 @@ -32444,8 +27843,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16395 components: - pos: -48.5,-57.5 @@ -32453,8 +27850,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16402 components: - pos: -48.5,-56.5 @@ -32462,8 +27857,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16404 components: - pos: -47.5,-57.5 @@ -32471,8 +27864,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16410 components: - pos: -46.5,-57.5 @@ -32480,8 +27871,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16411 components: - pos: -45.5,-57.5 @@ -32489,8 +27878,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16432 components: - pos: -44.5,-50.5 @@ -32498,8 +27885,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16433 components: - pos: -44.5,-52.5 @@ -32507,8 +27892,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16577 components: - pos: -44.5,-55.5 @@ -32516,8 +27899,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16578 components: - pos: -44.5,-56.5 @@ -32525,8 +27906,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16579 components: - pos: -44.5,-57.5 @@ -32534,8 +27913,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16597 components: - pos: -50.5,-44.5 @@ -32543,92 +27920,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16598 components: - pos: -50.5,-45.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16599 components: - pos: -50.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16600 components: - pos: -50.5,-47.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16601 components: - pos: -50.5,-48.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16602 components: - pos: -50.5,-49.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16603 components: - pos: -50.5,-50.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16604 components: - pos: -50.5,-51.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16605 components: - pos: -50.5,-52.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16606 components: - pos: -50.5,-53.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16607 components: - pos: -50.5,-54.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16608 components: - pos: -50.5,-55.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16609 components: - pos: -49.5,-53.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16613 components: - pos: -46.5,-52.5 @@ -32636,134 +27987,96 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16616 components: - pos: -51.5,-54.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16617 components: - pos: -52.5,-54.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16618 components: - pos: -53.5,-54.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16619 components: - pos: -51.5,-52.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16620 components: - pos: -52.5,-52.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16621 components: - pos: -53.5,-52.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16622 components: - pos: -51.5,-47.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16623 components: - pos: -52.5,-47.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16624 components: - pos: -53.5,-47.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16625 components: - pos: -53.5,-48.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16626 components: - pos: -49.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16627 components: - pos: -48.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16628 components: - pos: -47.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16629 components: - pos: -46.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16630 components: - pos: -45.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16631 components: - pos: -44.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16632 components: - pos: -43.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16633 components: - pos: -42.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16662 components: - pos: 53.5,-20.5 @@ -32771,8 +28084,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17186 components: - pos: -36.5,-61.5 @@ -32780,8 +28091,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17187 components: - pos: -36.5,-62.5 @@ -32789,8 +28098,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17188 components: - pos: -36.5,-63.5 @@ -32798,8 +28105,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17189 components: - pos: -37.5,-63.5 @@ -32807,8 +28112,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17190 components: - pos: -38.5,-63.5 @@ -32816,8 +28119,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17191 components: - pos: -39.5,-63.5 @@ -32825,8 +28126,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17192 components: - pos: -40.5,-63.5 @@ -32834,8 +28133,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17193 components: - pos: -41.5,-63.5 @@ -32843,8 +28140,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17194 components: - pos: -36.5,-60.5 @@ -32852,8 +28147,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17195 components: - pos: -37.5,-60.5 @@ -32861,8 +28154,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17196 components: - pos: -38.5,-60.5 @@ -32870,8 +28161,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17197 components: - pos: -38.5,-59.5 @@ -32879,8 +28168,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17198 components: - pos: -38.5,-58.5 @@ -32888,8 +28175,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17199 components: - pos: -38.5,-56.5 @@ -32897,15 +28182,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17200 components: - pos: -38.5,-48.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17201 components: - pos: -38.5,-49.5 @@ -32913,8 +28194,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17202 components: - pos: -38.5,-50.5 @@ -32922,8 +28201,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17203 components: - pos: -38.5,-51.5 @@ -32931,8 +28208,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17361 components: - pos: -39.5,-36.5 @@ -32940,8 +28215,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17362 components: - pos: -39.5,-37.5 @@ -32949,8 +28222,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17363 components: - pos: -39.5,-38.5 @@ -32958,8 +28229,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17364 components: - pos: -39.5,-39.5 @@ -32967,8 +28236,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17365 components: - pos: -39.5,-40.5 @@ -32976,8 +28243,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17366 components: - pos: -39.5,-41.5 @@ -32985,8 +28250,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17367 components: - pos: -39.5,-42.5 @@ -32994,8 +28257,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17368 components: - pos: -40.5,-41.5 @@ -33003,8 +28264,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17369 components: - pos: -41.5,-41.5 @@ -33012,8 +28271,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17370 components: - pos: -42.5,-41.5 @@ -33021,8 +28278,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17371 components: - pos: -43.5,-41.5 @@ -33030,8 +28285,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17372 components: - pos: -44.5,-41.5 @@ -33039,8 +28292,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17373 components: - pos: -45.5,-41.5 @@ -33048,8 +28299,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17374 components: - pos: -46.5,-41.5 @@ -33057,8 +28306,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17375 components: - pos: -47.5,-41.5 @@ -33066,8 +28313,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17376 components: - pos: -48.5,-41.5 @@ -33075,8 +28320,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17377 components: - pos: -49.5,-41.5 @@ -33084,8 +28327,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17378 components: - pos: -49.5,-40.5 @@ -33093,8 +28334,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17379 components: - pos: -49.5,-39.5 @@ -33102,8 +28341,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17380 components: - pos: -49.5,-38.5 @@ -33111,8 +28348,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17381 components: - pos: -49.5,-37.5 @@ -33120,8 +28355,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17382 components: - pos: -50.5,-40.5 @@ -33129,8 +28362,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17383 components: - pos: -42.5,-40.5 @@ -33138,22 +28369,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17384 components: - pos: -42.5,-39.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17385 components: - pos: -42.5,-38.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17386 components: - pos: -42.5,-37.5 @@ -33161,15 +28386,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17387 components: - pos: -42.5,-36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17388 components: - pos: -42.5,-35.5 @@ -33177,8 +28398,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17389 components: - pos: -43.5,-37.5 @@ -33186,15 +28405,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17390 components: - pos: -44.5,-37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17391 components: - pos: -40.5,-28.5 @@ -33202,8 +28417,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17392 components: - pos: -41.5,-28.5 @@ -33211,8 +28424,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17393 components: - pos: -42.5,-28.5 @@ -33220,8 +28431,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17394 components: - pos: -43.5,-28.5 @@ -33229,8 +28438,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17395 components: - pos: -44.5,-28.5 @@ -33238,8 +28445,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17396 components: - pos: -45.5,-28.5 @@ -33247,8 +28452,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17397 components: - pos: -46.5,-28.5 @@ -33256,8 +28459,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17398 components: - pos: -47.5,-28.5 @@ -33265,8 +28466,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17399 components: - pos: -48.5,-28.5 @@ -33274,22 +28473,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17400 components: - pos: -49.5,-28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17401 components: - pos: -50.5,-28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17402 components: - pos: -51.5,-28.5 @@ -33297,8 +28490,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17403 components: - pos: -52.5,-28.5 @@ -33306,8 +28497,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17404 components: - pos: -53.5,-28.5 @@ -33315,29 +28504,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17405 components: - pos: -54.5,-28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17406 components: - pos: -55.5,-28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17407 components: - pos: -56.5,-28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17408 components: - pos: -52.5,-27.5 @@ -33345,15 +28526,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17409 components: - pos: -52.5,-26.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17410 components: - pos: -52.5,-25.5 @@ -33361,92 +28538,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17411 components: - pos: -52.5,-24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17412 components: - pos: -56.5,-27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17413 components: - pos: -56.5,-26.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17414 components: - pos: -56.5,-25.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17415 components: - pos: -56.5,-24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17416 components: - pos: -51.5,-29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17417 components: - pos: -51.5,-30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17418 components: - pos: -51.5,-31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17419 components: - pos: -51.5,-32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17420 components: - pos: -51.5,-33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17421 components: - pos: -55.5,-29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17422 components: - pos: -55.5,-30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17423 components: - pos: -55.5,-31.5 @@ -33454,8 +28605,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17424 components: - pos: -55.5,-32.5 @@ -33463,15 +28612,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17425 components: - pos: -55.5,-33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17426 components: - pos: -43.5,-29.5 @@ -33479,22 +28624,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17427 components: - pos: -43.5,-30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17428 components: - pos: -43.5,-31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17429 components: - pos: -43.5,-32.5 @@ -33502,22 +28641,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17430 components: - pos: -43.5,-33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17431 components: - pos: -43.5,-34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17432 components: - pos: -42.5,-34.5 @@ -33525,8 +28658,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17433 components: - pos: -44.5,-32.5 @@ -33534,15 +28665,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17434 components: - pos: -45.5,-32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17435 components: - pos: -46.5,-32.5 @@ -33550,8 +28677,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17436 components: - pos: -47.5,-32.5 @@ -33559,8 +28684,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17437 components: - pos: -46.5,-31.5 @@ -33568,15 +28691,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17438 components: - pos: -46.5,-33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17439 components: - pos: -46.5,-34.5 @@ -33584,8 +28703,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17440 components: - pos: -46.5,-35.5 @@ -33593,8 +28710,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17441 components: - pos: -46.5,-36.5 @@ -33602,15 +28717,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17583 components: - pos: -8.5,-29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17830 components: - pos: -41.5,-3.5 @@ -33618,8 +28729,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17831 components: - pos: -41.5,-4.5 @@ -33627,8 +28736,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17832 components: - pos: -41.5,-5.5 @@ -33636,29 +28743,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17833 components: - pos: -41.5,-6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17834 components: - pos: -41.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17835 components: - pos: -41.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17836 components: - pos: -41.5,-9.5 @@ -33666,8 +28765,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17837 components: - pos: -41.5,-10.5 @@ -33675,22 +28772,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17838 components: - pos: -42.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17839 components: - pos: -43.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17840 components: - pos: -30.5,-5.5 @@ -33698,575 +28789,411 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17841 components: - pos: -30.5,-6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17842 components: - pos: -30.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17843 components: - pos: -30.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17844 components: - pos: -30.5,-9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17845 components: - pos: -30.5,-10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17846 components: - pos: -30.5,-11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17847 components: - pos: -30.5,-12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17848 components: - pos: -30.5,-13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17849 components: - pos: -30.5,-14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17850 components: - pos: -30.5,-15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17851 components: - pos: -30.5,-16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17852 components: - pos: -30.5,-17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17853 components: - pos: -30.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17854 components: - pos: -31.5,-16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17855 components: - pos: -32.5,-16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17856 components: - pos: -33.5,-16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17857 components: - pos: -29.5,-11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17858 components: - pos: -28.5,-11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17859 components: - pos: -27.5,-11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17860 components: - pos: -26.5,-11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17861 components: - pos: -25.5,-11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17862 components: - pos: -25.5,-12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17863 components: - pos: -25.5,-13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17864 components: - pos: -25.5,-14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17865 components: - pos: -25.5,-15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17866 components: - pos: -25.5,-16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17867 components: - pos: -31.5,-12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17868 components: - pos: -32.5,-12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17869 components: - pos: -33.5,-12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17870 components: - pos: -34.5,-12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17871 components: - pos: -31.5,-10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17872 components: - pos: -32.5,-10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17873 components: - pos: -33.5,-10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17874 components: - pos: -34.5,-10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17875 components: - pos: -29.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17876 components: - pos: -28.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17877 components: - pos: -27.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17878 components: - pos: -26.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17879 components: - pos: -25.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17880 components: - pos: -25.5,-6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17881 components: - pos: -25.5,-5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17882 components: - pos: -25.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17883 components: - pos: -28.5,-6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17884 components: - pos: -28.5,-5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17885 components: - pos: -28.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17886 components: - pos: -31.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17887 components: - pos: -32.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17888 components: - pos: -33.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17889 components: - pos: -34.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17890 components: - pos: -32.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17891 components: - pos: -33.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17892 components: - pos: -26.5,-9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17893 components: - pos: -26.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17894 components: - pos: -22.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17895 components: - pos: -23.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17896 components: - pos: -24.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17897 components: - pos: -21.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17898 components: - pos: -21.5,-6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17899 components: - pos: -21.5,-5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17900 components: - pos: -21.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17901 components: - pos: -21.5,-3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17902 components: - pos: -21.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17903 components: - pos: -21.5,-1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17904 components: - pos: -20.5,5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17905 components: - pos: -21.5,5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17906 components: - pos: -21.5,4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17907 components: - pos: -21.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17908 components: - pos: -21.5,2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17909 components: - pos: -21.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17910 components: - pos: -26.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17911 components: - pos: -26.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17912 components: - pos: -27.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17913 components: - pos: -28.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17914 components: - pos: -29.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17915 components: - pos: -30.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17916 components: - pos: -31.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17917 components: - pos: -32.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17918 components: - pos: -33.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17919 components: - pos: -34.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17920 components: - pos: -25.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17921 components: - pos: -24.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17942 components: - pos: -35.5,-7.5 @@ -34274,8 +29201,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17943 components: - pos: -36.5,-7.5 @@ -34283,8 +29208,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17944 components: - pos: -37.5,-7.5 @@ -34292,8 +29215,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17945 components: - pos: -37.5,-6.5 @@ -34301,8 +29222,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17946 components: - pos: -37.5,-5.5 @@ -34310,8 +29229,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17947 components: - pos: -37.5,-4.5 @@ -34319,8 +29236,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17948 components: - pos: -37.5,-3.5 @@ -34328,8 +29243,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17949 components: - pos: -37.5,-8.5 @@ -34337,8 +29250,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17950 components: - pos: -37.5,-9.5 @@ -34346,8 +29257,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17951 components: - pos: -37.5,-10.5 @@ -34355,8 +29264,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17952 components: - pos: -37.5,-11.5 @@ -34364,8 +29271,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17953 components: - pos: -37.5,-12.5 @@ -34373,8 +29278,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17954 components: - pos: -37.5,-13.5 @@ -34382,8 +29285,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17955 components: - pos: -37.5,-14.5 @@ -34391,8 +29292,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17956 components: - pos: -37.5,-15.5 @@ -34400,8 +29299,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17957 components: - pos: -37.5,-16.5 @@ -34409,8 +29306,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17958 components: - pos: -37.5,-17.5 @@ -34418,8 +29313,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17959 components: - pos: -38.5,-16.5 @@ -34427,8 +29320,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17960 components: - pos: -39.5,-16.5 @@ -34436,8 +29327,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17961 components: - pos: -40.5,-16.5 @@ -34445,8 +29334,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17962 components: - pos: -41.5,-16.5 @@ -34454,8 +29341,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17963 components: - pos: -42.5,-16.5 @@ -34463,8 +29348,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17964 components: - pos: -43.5,-16.5 @@ -34472,8 +29355,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17965 components: - pos: -44.5,-16.5 @@ -34481,8 +29362,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17966 components: - pos: -40.5,-15.5 @@ -34490,8 +29369,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17967 components: - pos: -40.5,-14.5 @@ -34499,8 +29376,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17968 components: - pos: -40.5,-13.5 @@ -34508,8 +29383,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17969 components: - pos: -41.5,-13.5 @@ -34517,8 +29390,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17970 components: - pos: -42.5,-13.5 @@ -34526,8 +29397,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17971 components: - pos: -43.5,-13.5 @@ -34535,8 +29404,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18230 components: - pos: -58.5,-16.5 @@ -34544,36 +29411,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18232 components: - pos: -59.5,-16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18235 components: - pos: -49.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18236 components: - pos: -49.5,-6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18237 components: - pos: -49.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18238 components: - pos: -52.5,-10.5 @@ -34581,15 +29438,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18239 components: - pos: -49.5,-9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18240 components: - pos: -52.5,-6.5 @@ -34597,8 +29450,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18241 components: - pos: -52.5,-8.5 @@ -34606,8 +29457,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18242 components: - pos: -52.5,-11.5 @@ -34615,15 +29464,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18243 components: - pos: -52.5,-5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18244 components: - pos: -52.5,-7.5 @@ -34631,8 +29476,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18245 components: - pos: -52.5,-9.5 @@ -34640,43 +29483,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18246 components: - pos: -49.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18247 components: - pos: -49.5,-10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18248 components: - pos: -48.5,-10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18258 components: - pos: -50.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18259 components: - pos: -49.5,-5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18264 components: - pos: -57.5,-16.5 @@ -34684,8 +29515,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18265 components: - pos: -56.5,-16.5 @@ -34693,8 +29522,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18266 components: - pos: -55.5,-16.5 @@ -34702,8 +29529,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18267 components: - pos: -54.5,-16.5 @@ -34711,8 +29536,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18278 components: - pos: -30.5,-19.5 @@ -34720,8 +29543,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18279 components: - pos: -30.5,-20.5 @@ -34729,8 +29550,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18280 components: - pos: -31.5,-20.5 @@ -34738,8 +29557,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18281 components: - pos: -32.5,-20.5 @@ -34747,8 +29564,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18282 components: - pos: -33.5,-20.5 @@ -34756,8 +29571,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18283 components: - pos: -34.5,-20.5 @@ -34765,8 +29578,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18284 components: - pos: -35.5,-20.5 @@ -34774,8 +29585,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18285 components: - pos: -36.5,-20.5 @@ -34783,8 +29592,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18286 components: - pos: -36.5,-19.5 @@ -34792,8 +29599,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18287 components: - pos: -36.5,-18.5 @@ -34801,8 +29606,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18288 components: - pos: -36.5,-21.5 @@ -34810,8 +29613,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18289 components: - pos: -36.5,-22.5 @@ -34819,8 +29620,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18290 components: - pos: -36.5,-23.5 @@ -34828,8 +29627,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18291 components: - pos: -36.5,-24.5 @@ -34837,29 +29634,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18292 components: - pos: -21.5,-20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18293 components: - pos: -22.5,-20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18294 components: - pos: -23.5,-20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18295 components: - pos: -24.5,-20.5 @@ -34867,8 +29656,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18296 components: - pos: -25.5,-20.5 @@ -34876,8 +29663,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18297 components: - pos: -26.5,-20.5 @@ -34885,8 +29670,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18298 components: - pos: -53.5,-16.5 @@ -34894,8 +29677,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18299 components: - pos: -52.5,-16.5 @@ -34903,8 +29684,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18300 components: - pos: -52.5,-17.5 @@ -34912,8 +29691,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18301 components: - pos: -52.5,-18.5 @@ -34921,8 +29698,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18302 components: - pos: -52.5,-19.5 @@ -34930,8 +29705,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18303 components: - pos: -52.5,-20.5 @@ -34939,8 +29712,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18304 components: - pos: -52.5,-21.5 @@ -34948,8 +29719,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18305 components: - pos: -51.5,-21.5 @@ -34957,8 +29726,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18306 components: - pos: -50.5,-21.5 @@ -34966,8 +29733,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18307 components: - pos: -49.5,-21.5 @@ -34975,8 +29740,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18308 components: - pos: -48.5,-21.5 @@ -34984,8 +29747,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18309 components: - pos: -47.5,-21.5 @@ -34993,8 +29754,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18310 components: - pos: -46.5,-21.5 @@ -35002,8 +29761,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18311 components: - pos: -48.5,-20.5 @@ -35011,8 +29768,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18312 components: - pos: -48.5,-19.5 @@ -35020,8 +29775,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18313 components: - pos: -48.5,-18.5 @@ -35029,8 +29782,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18314 components: - pos: -48.5,-17.5 @@ -35038,8 +29789,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18315 components: - pos: -46.5,-22.5 @@ -35047,8 +29796,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18316 components: - pos: -46.5,-23.5 @@ -35056,15 +29803,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18317 components: - pos: -46.5,-24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18318 components: - pos: -45.5,-24.5 @@ -35072,8 +29815,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18319 components: - pos: -44.5,-24.5 @@ -35081,8 +29822,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18320 components: - pos: -43.5,-24.5 @@ -35090,8 +29829,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18321 components: - pos: -42.5,-24.5 @@ -35099,8 +29836,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18322 components: - pos: -41.5,-24.5 @@ -35108,8 +29843,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18323 components: - pos: -40.5,-24.5 @@ -35117,8 +29850,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18324 components: - pos: -41.5,-17.5 @@ -35126,8 +29857,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18325 components: - pos: -41.5,-18.5 @@ -35135,8 +29864,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18326 components: - pos: -52.5,-15.5 @@ -35144,8 +29871,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18327 components: - pos: -52.5,-14.5 @@ -35153,8 +29878,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18328 components: - pos: -59.5,-21.5 @@ -35162,8 +29885,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18329 components: - pos: -58.5,-21.5 @@ -35171,8 +29892,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18330 components: - pos: -57.5,-21.5 @@ -35180,8 +29899,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18331 components: - pos: -56.5,-21.5 @@ -35189,8 +29906,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18332 components: - pos: -55.5,-21.5 @@ -35198,8 +29913,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18415 components: - pos: -61.5,-21.5 @@ -35207,8 +29920,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18419 components: - pos: -61.5,-22.5 @@ -35216,8 +29927,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18426 components: - pos: -54.5,-21.5 @@ -35225,8 +29934,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18427 components: - pos: -53.5,-21.5 @@ -35234,8 +29941,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18429 components: - pos: -60.5,-21.5 @@ -35243,8 +29948,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18515 components: - pos: -56.5,-15.5 @@ -35252,8 +29955,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18516 components: - pos: -56.5,-14.5 @@ -35261,8 +29962,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18517 components: - pos: -56.5,-13.5 @@ -35270,8 +29969,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18518 components: - pos: -56.5,-12.5 @@ -35279,29 +29976,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18605 components: - pos: 29.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18606 components: - pos: 28.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18607 components: - pos: 28.5,4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18608 components: - pos: 28.5,5.5 @@ -35309,8 +29998,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18609 components: - pos: 28.5,6.5 @@ -35318,8 +30005,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18610 components: - pos: 28.5,7.5 @@ -35327,8 +30012,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18611 components: - pos: 28.5,8.5 @@ -35336,22 +30019,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18949 components: - pos: 53.5,32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18950 components: - pos: 52.5,32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18951 components: - pos: 51.5,32.5 @@ -35359,8 +30036,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18952 components: - pos: 50.5,32.5 @@ -35368,8 +30043,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18953 components: - pos: 49.5,32.5 @@ -35377,8 +30050,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18954 components: - pos: 48.5,32.5 @@ -35386,8 +30057,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18955 components: - pos: 47.5,32.5 @@ -35395,8 +30064,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18956 components: - pos: 46.5,32.5 @@ -35404,15 +30071,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18957 components: - pos: 50.5,33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18958 components: - pos: 50.5,34.5 @@ -35420,8 +30083,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18959 components: - pos: 50.5,35.5 @@ -35429,8 +30090,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18960 components: - pos: 50.5,36.5 @@ -35438,8 +30097,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18961 components: - pos: 50.5,37.5 @@ -35447,8 +30104,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18962 components: - pos: 49.5,36.5 @@ -35456,15 +30111,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18963 components: - pos: 48.5,36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18964 components: - pos: 48.5,37.5 @@ -35472,8 +30123,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18965 components: - pos: 48.5,38.5 @@ -35481,8 +30130,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18966 components: - pos: 48.5,39.5 @@ -35490,8 +30137,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20288 components: - pos: 8.5,-47.5 @@ -35499,260 +30144,186 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20289 components: - pos: 8.5,-48.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20290 components: - pos: 8.5,-49.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20291 components: - pos: 8.5,-50.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20292 components: - pos: 8.5,-51.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20293 components: - pos: 8.5,-52.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20294 components: - pos: 8.5,-53.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20295 components: - pos: 8.5,-54.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20296 components: - pos: 8.5,-55.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20297 components: - pos: 9.5,-50.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20298 components: - pos: 10.5,-50.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20299 components: - pos: 11.5,-50.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20300 components: - pos: 12.5,-50.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20301 components: - pos: 13.5,-50.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20302 components: - pos: 14.5,-50.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20303 components: - pos: 14.5,-49.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20304 components: - pos: 15.5,-49.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20305 components: - pos: 16.5,-49.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20306 components: - pos: 17.5,-49.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20307 components: - pos: 18.5,-49.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20308 components: - pos: 19.5,-49.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20309 components: - pos: 20.5,-49.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20310 components: - pos: 21.5,-49.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20311 components: - pos: 22.5,-49.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20312 components: - pos: 23.5,-49.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20313 components: - pos: 24.5,-49.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20314 components: - pos: 25.5,-49.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20315 components: - pos: 26.5,-49.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20316 components: - pos: 22.5,-50.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20317 components: - pos: 22.5,-51.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20318 components: - pos: 22.5,-52.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20319 components: - pos: 26.5,-50.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20320 components: - pos: 26.5,-51.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20321 components: - pos: 26.5,-52.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20322 components: - pos: 7.5,-55.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20323 components: - pos: 6.5,-55.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20324 components: - pos: 6.5,-56.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20326 components: - pos: 6.5,-57.5 @@ -35760,8 +30331,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20327 components: - pos: 7.5,-58.5 @@ -35769,8 +30338,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20328 components: - pos: 8.5,-58.5 @@ -35778,8 +30345,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20329 components: - pos: 9.5,-58.5 @@ -35787,8 +30352,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20330 components: - pos: 10.5,-58.5 @@ -35796,8 +30359,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20331 components: - pos: 11.5,-58.5 @@ -35805,8 +30366,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20332 components: - pos: 10.5,-59.5 @@ -35814,8 +30373,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20333 components: - pos: 10.5,-60.5 @@ -35823,8 +30380,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20334 components: - pos: 5.5,-57.5 @@ -35832,8 +30387,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20335 components: - pos: 4.5,-57.5 @@ -35841,8 +30394,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20336 components: - pos: 3.5,-57.5 @@ -35850,8 +30401,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20337 components: - pos: 3.5,-56.5 @@ -35859,8 +30408,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20338 components: - pos: 3.5,-55.5 @@ -35868,8 +30415,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20339 components: - pos: 3.5,-54.5 @@ -35877,8 +30422,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20340 components: - pos: 3.5,-53.5 @@ -35886,8 +30429,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20341 components: - pos: 3.5,-52.5 @@ -35895,15 +30436,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20342 components: - pos: 3.5,-51.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20343 components: - pos: 3.5,-50.5 @@ -35911,8 +30448,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20344 components: - pos: 3.5,-49.5 @@ -35920,15 +30455,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20345 components: - pos: 2.5,-49.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20346 components: - pos: 1.5,-49.5 @@ -35936,8 +30467,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20347 components: - pos: 1.5,-48.5 @@ -35945,8 +30474,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20348 components: - pos: 0.5,-48.5 @@ -35954,15 +30481,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20349 components: - pos: 0.5,-47.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20350 components: - pos: 0.5,-46.5 @@ -35970,8 +30493,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20351 components: - pos: 0.5,-45.5 @@ -35979,8 +30500,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20352 components: - pos: 2.5,-54.5 @@ -35988,8 +30507,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20353 components: - pos: 13.5,-40.5 @@ -35997,379 +30514,271 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20354 components: - pos: 13.5,-41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20355 components: - pos: 13.5,-42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20356 components: - pos: 14.5,-42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20357 components: - pos: 15.5,-42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20358 components: - pos: 16.5,-42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20359 components: - pos: 17.5,-42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20360 components: - pos: 18.5,-42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20361 components: - pos: 19.5,-42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20362 components: - pos: 20.5,-42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20363 components: - pos: 21.5,-42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20364 components: - pos: 22.5,-42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20365 components: - pos: 23.5,-42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20366 components: - pos: 24.5,-42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20367 components: - pos: 25.5,-42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20368 components: - pos: 26.5,-42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20369 components: - pos: 27.5,-42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20370 components: - pos: 28.5,-42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20371 components: - pos: 28.5,-41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20372 components: - pos: 28.5,-40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20373 components: - pos: 28.5,-39.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20374 components: - pos: 28.5,-38.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20375 components: - pos: 28.5,-37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20376 components: - pos: 28.5,-36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20377 components: - pos: 21.5,-41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20378 components: - pos: 21.5,-40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20379 components: - pos: 21.5,-39.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20380 components: - pos: 21.5,-38.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20381 components: - pos: 21.5,-37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20382 components: - pos: 21.5,-36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20383 components: - pos: 21.5,-35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20384 components: - pos: 22.5,-35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20385 components: - pos: 23.5,-35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20386 components: - pos: 24.5,-35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20387 components: - pos: 24.5,-36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20388 components: - pos: 24.5,-37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20389 components: - pos: 24.5,-38.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20390 components: - pos: 12.5,-42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20391 components: - pos: 11.5,-42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20392 components: - pos: 11.5,-43.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20393 components: - pos: 11.5,-44.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20394 components: - pos: 11.5,-45.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20395 components: - pos: 10.5,-45.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20396 components: - pos: 9.5,-45.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20397 components: - pos: 8.5,-45.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20398 components: - pos: 7.5,-45.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20399 components: - pos: 6.5,-45.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20400 components: - pos: 5.5,-45.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20401 components: - pos: 4.5,-45.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20402 components: - pos: 3.5,-45.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20403 components: - pos: 5.5,-38.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20404 components: - pos: 5.5,-39.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20405 components: - pos: 5.5,-40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20406 components: - pos: 5.5,-41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20407 components: - pos: 5.5,-37.5 @@ -36377,407 +30786,291 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20408 components: - pos: 6.5,-40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20409 components: - pos: 7.5,-40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20410 components: - pos: 4.5,-40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20411 components: - pos: 3.5,-40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20412 components: - pos: 2.5,-40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20413 components: - pos: 1.5,-40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20414 components: - pos: 2.5,-39.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20415 components: - pos: 2.5,-38.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20416 components: - pos: 2.5,-37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20417 components: - pos: 2.5,-36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20418 components: - pos: 2.5,-35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20419 components: - pos: 2.5,-34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20420 components: - pos: 2.5,-33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20421 components: - pos: 2.5,-32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20422 components: - pos: 2.5,-31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20423 components: - pos: 2.5,-30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20424 components: - pos: 2.5,-29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20425 components: - pos: 2.5,-28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20426 components: - pos: 3.5,-35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20427 components: - pos: 3.5,-30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20428 components: - pos: 1.5,-30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20429 components: - pos: 0.5,-30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20430 components: - pos: -0.5,-30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20431 components: - pos: -1.5,-30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20432 components: - pos: -2.5,-30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20433 components: - pos: -2.5,-31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20434 components: - pos: -2.5,-32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20435 components: - pos: -2.5,-33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20436 components: - pos: -2.5,-34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20437 components: - pos: -2.5,-35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20438 components: - pos: -2.5,-36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20439 components: - pos: -2.5,-29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20440 components: - pos: -2.5,-28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20441 components: - pos: -2.5,-27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20442 components: - pos: -0.5,-45.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20443 components: - pos: -1.5,-45.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20444 components: - pos: -2.5,-45.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20445 components: - pos: -2.5,-44.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20446 components: - pos: -2.5,-43.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20447 components: - pos: -2.5,-42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20448 components: - pos: -2.5,-41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20449 components: - pos: -2.5,-40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20450 components: - pos: -2.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20451 components: - pos: -2.5,-47.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20452 components: - pos: -2.5,-48.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20453 components: - pos: -2.5,-49.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20454 components: - pos: -2.5,-50.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20455 components: - pos: -2.5,-51.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20456 components: - pos: -2.5,-52.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20457 components: - pos: -2.5,-53.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20458 components: - pos: -2.5,-54.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20459 components: - pos: -2.5,-56.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20460 components: - pos: -2.5,-55.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20461 components: - pos: 12.5,-45.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20462 components: - pos: 13.5,-45.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20463 components: - pos: 14.5,-45.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20464 components: - pos: 14.5,-44.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20465 components: - pos: 13.5,-27.5 @@ -36785,148 +31078,106 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20466 components: - pos: 13.5,-28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20467 components: - pos: 13.5,-29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20468 components: - pos: 13.5,-30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20469 components: - pos: 13.5,-31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20470 components: - pos: 13.5,-32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20471 components: - pos: 14.5,-29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20472 components: - pos: 15.5,-29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20475 components: - pos: 18.5,-29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20476 components: - pos: 19.5,-29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20477 components: - pos: 20.5,-29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20478 components: - pos: 21.5,-29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20479 components: - pos: 20.5,-30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20480 components: - pos: 20.5,-31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20481 components: - pos: 21.5,-31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20482 components: - pos: 22.5,-31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20483 components: - pos: 23.5,-31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20484 components: - pos: 24.5,-31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20485 components: - pos: 24.5,-30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20486 components: - pos: 24.5,-29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20487 components: - pos: 20.5,-28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20488 components: - pos: 20.5,-27.5 @@ -36934,8 +31185,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20489 components: - pos: 20.5,-26.5 @@ -36943,8 +31192,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20490 components: - pos: 19.5,-26.5 @@ -36952,8 +31199,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20491 components: - pos: 18.5,-26.5 @@ -36961,8 +31206,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20493 components: - pos: 16.5,-26.5 @@ -36970,8 +31213,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20494 components: - pos: 15.5,-26.5 @@ -36979,8 +31220,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20495 components: - pos: 15.5,-25.5 @@ -36988,8 +31227,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20496 components: - pos: 15.5,-24.5 @@ -36997,8 +31234,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20497 components: - pos: 15.5,-23.5 @@ -37006,8 +31241,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20498 components: - pos: 14.5,-26.5 @@ -37015,8 +31248,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20499 components: - pos: 14.5,-27.5 @@ -37024,8 +31255,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20500 components: - pos: 21.5,-26.5 @@ -37033,8 +31262,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20501 components: - pos: 22.5,-26.5 @@ -37042,8 +31269,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20502 components: - pos: 23.5,-26.5 @@ -37051,8 +31276,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20503 components: - pos: 24.5,-26.5 @@ -37060,8 +31283,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20504 components: - pos: 25.5,-26.5 @@ -37069,8 +31290,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20505 components: - pos: 26.5,-26.5 @@ -37078,8 +31297,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20506 components: - pos: 27.5,-26.5 @@ -37087,8 +31304,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20507 components: - pos: 28.5,-26.5 @@ -37096,8 +31311,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20508 components: - pos: 29.5,-26.5 @@ -37105,8 +31318,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20509 components: - pos: 30.5,-26.5 @@ -37114,8 +31325,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20510 components: - pos: 30.5,-27.5 @@ -37123,8 +31332,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20511 components: - pos: 32.5,-40.5 @@ -37132,15 +31339,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20512 components: - pos: 32.5,-41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20513 components: - pos: 32.5,-39.5 @@ -37148,8 +31351,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20514 components: - pos: 31.5,-39.5 @@ -37157,8 +31358,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20515 components: - pos: 31.5,-38.5 @@ -37166,8 +31365,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20516 components: - pos: 31.5,-37.5 @@ -37175,8 +31372,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20517 components: - pos: 31.5,-36.5 @@ -37184,8 +31379,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20518 components: - pos: 31.5,-35.5 @@ -37193,8 +31386,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20519 components: - pos: 31.5,-34.5 @@ -37202,8 +31393,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20520 components: - pos: 31.5,-33.5 @@ -37211,8 +31400,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20521 components: - pos: 31.5,-32.5 @@ -37220,8 +31407,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20522 components: - pos: 31.5,-31.5 @@ -37229,8 +31414,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20523 components: - pos: 30.5,-33.5 @@ -37238,8 +31421,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20524 components: - pos: 32.5,-31.5 @@ -37247,15 +31428,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20525 components: - pos: 33.5,-31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20526 components: - pos: 34.5,-31.5 @@ -37263,8 +31440,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20527 components: - pos: 35.5,-31.5 @@ -37272,15 +31447,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20528 components: - pos: 35.5,-32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20529 components: - pos: 35.5,-33.5 @@ -37288,8 +31459,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20530 components: - pos: 35.5,-34.5 @@ -37297,15 +31466,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20531 components: - pos: 35.5,-35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20532 components: - pos: 36.5,-34.5 @@ -37313,8 +31478,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20533 components: - pos: 37.5,-34.5 @@ -37322,8 +31485,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20534 components: - pos: 38.5,-34.5 @@ -37331,8 +31492,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20535 components: - pos: 39.5,-34.5 @@ -37340,8 +31499,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20536 components: - pos: 40.5,-34.5 @@ -37349,8 +31506,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20537 components: - pos: 39.5,-33.5 @@ -37358,8 +31513,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20538 components: - pos: 39.5,-32.5 @@ -37367,8 +31520,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20539 components: - pos: 39.5,-31.5 @@ -37376,99 +31527,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20540 components: - pos: 32.5,-42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20541 components: - pos: 32.5,-43.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20542 components: - pos: 33.5,-42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20543 components: - pos: 34.5,-42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20544 components: - pos: 35.5,-42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20545 components: - pos: 36.5,-42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20546 components: - pos: 37.5,-42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20547 components: - pos: 38.5,-42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20548 components: - pos: 39.5,-42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20549 components: - pos: 36.5,-41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20550 components: - pos: 36.5,-40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20551 components: - pos: 36.5,-39.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20552 components: - pos: 36.5,-38.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20553 components: - pos: 30.5,-47.5 @@ -37476,8 +31599,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20554 components: - pos: 31.5,-45.5 @@ -37485,22 +31606,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20555 components: - pos: 31.5,-44.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20556 components: - pos: 31.5,-43.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20557 components: - pos: 31.5,-47.5 @@ -37508,8 +31623,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20560 components: - pos: 30.5,-45.5 @@ -37517,8 +31630,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20561 components: - pos: 29.5,-45.5 @@ -37526,8 +31637,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20562 components: - pos: 28.5,-45.5 @@ -37535,8 +31644,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20563 components: - pos: 27.5,-45.5 @@ -37544,8 +31651,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20564 components: - pos: 26.5,-45.5 @@ -37553,8 +31658,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20565 components: - pos: 25.5,-45.5 @@ -37562,8 +31665,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20566 components: - pos: 24.5,-45.5 @@ -37571,8 +31672,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20567 components: - pos: 23.5,-45.5 @@ -37580,8 +31679,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20568 components: - pos: 22.5,-45.5 @@ -37589,8 +31686,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20569 components: - pos: 21.5,-45.5 @@ -37598,428 +31693,306 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20570 components: - pos: 12.5,-29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20571 components: - pos: 11.5,-29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20572 components: - pos: 11.5,-28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20573 components: - pos: 11.5,-27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20574 components: - pos: 11.5,-26.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20575 components: - pos: 11.5,-25.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20576 components: - pos: 11.5,-24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20577 components: - pos: 11.5,-30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20578 components: - pos: 11.5,-31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20579 components: - pos: 11.5,-32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20582 components: - pos: 11.5,-35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20583 components: - pos: 10.5,-35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20584 components: - pos: 9.5,-35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20585 components: - pos: 8.5,-35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20586 components: - pos: 7.5,-35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20587 components: - pos: 6.5,-35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20589 components: - pos: 7.5,-33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20590 components: - pos: 7.5,-32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20591 components: - pos: 7.5,-31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20592 components: - pos: 7.5,-30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20593 components: - pos: 7.5,-29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20594 components: - pos: 7.5,-28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20595 components: - pos: 7.5,-27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20596 components: - pos: 7.5,-26.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20597 components: - pos: 7.5,-25.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20598 components: - pos: 7.5,-24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20599 components: - pos: 6.5,-25.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20600 components: - pos: 5.5,-25.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20601 components: - pos: 4.5,-25.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20602 components: - pos: 3.5,-25.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20603 components: - pos: 2.5,-25.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20604 components: - pos: 1.5,-25.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20605 components: - pos: 3.5,-24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20606 components: - pos: 3.5,-23.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20607 components: - pos: 3.5,-22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20608 components: - pos: 3.5,-21.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20609 components: - pos: 3.5,-20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20610 components: - pos: 4.5,-20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20611 components: - pos: 5.5,-20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20612 components: - pos: 6.5,-20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20613 components: - pos: 7.5,-20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20614 components: - pos: 8.5,-20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20615 components: - pos: 9.5,-20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20616 components: - pos: 10.5,-20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20617 components: - pos: 11.5,-20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20618 components: - pos: 12.5,-20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20619 components: - pos: 13.5,-20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20620 components: - pos: 6.5,-19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20621 components: - pos: 2.5,-20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20622 components: - pos: 1.5,-20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20623 components: - pos: 0.5,-20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20624 components: - pos: -0.5,-20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20625 components: - pos: -1.5,-20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20626 components: - pos: -2.5,-20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20627 components: - pos: -2.5,-19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20628 components: - pos: 0.5,-25.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20629 components: - pos: -0.5,-25.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20630 components: - pos: -1.5,-25.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20631 components: - pos: -1.5,-24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20632 components: - pos: -1.5,-23.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20633 components: - pos: 29.5,-33.5 @@ -38027,8 +32000,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20634 components: - pos: 31.5,-30.5 @@ -38036,8 +32007,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20635 components: - pos: 31.5,-29.5 @@ -38045,106 +32014,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20710 components: - pos: 12.5,-35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20711 components: - pos: 13.5,-35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20712 components: - pos: 14.5,-35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20713 components: - pos: 15.5,-35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20714 components: - pos: 15.5,-36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20715 components: - pos: 15.5,-37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20716 components: - pos: 16.5,-37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20717 components: - pos: 11.5,-41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20718 components: - pos: 11.5,-40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20719 components: - pos: 11.5,-39.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20720 components: - pos: 11.5,-38.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20721 components: - pos: -1.5,-10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20722 components: - pos: -2.5,-10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20723 components: - pos: -3.5,-10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20900 components: - pos: 10.5,-57.5 @@ -38152,8 +32091,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20901 components: - pos: 10.5,-56.5 @@ -38161,8 +32098,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20902 components: - pos: 7.5,-59.5 @@ -38170,8 +32105,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20903 components: - pos: 6.5,-59.5 @@ -38179,8 +32112,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20904 components: - pos: 5.5,-59.5 @@ -38188,8 +32119,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20905 components: - pos: 5.5,-60.5 @@ -38197,8 +32126,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20906 components: - pos: 5.5,-61.5 @@ -38206,8 +32133,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20907 components: - pos: 5.5,-62.5 @@ -38215,8 +32140,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20908 components: - pos: 5.5,-63.5 @@ -38224,8 +32147,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20909 components: - pos: 5.5,-64.5 @@ -38233,8 +32154,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20910 components: - pos: 5.5,-65.5 @@ -38242,8 +32161,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20911 components: - pos: 5.5,-66.5 @@ -38251,8 +32168,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20912 components: - pos: 12.5,-58.5 @@ -38260,8 +32175,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20913 components: - pos: 12.5,-57.5 @@ -38269,8 +32182,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20914 components: - pos: 13.5,-57.5 @@ -38278,8 +32189,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20915 components: - pos: 14.5,-57.5 @@ -38287,8 +32196,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20916 components: - pos: 15.5,-57.5 @@ -38296,8 +32203,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20917 components: - pos: 16.5,-57.5 @@ -38305,8 +32210,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20918 components: - pos: 17.5,-57.5 @@ -38314,8 +32217,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20919 components: - pos: 18.5,-57.5 @@ -38323,8 +32224,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20920 components: - pos: 18.5,-58.5 @@ -38332,8 +32231,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20921 components: - pos: 18.5,-60.5 @@ -38341,8 +32238,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20922 components: - pos: 18.5,-59.5 @@ -38350,8 +32245,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20923 components: - pos: 18.5,-56.5 @@ -38359,8 +32252,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20924 components: - pos: 19.5,-56.5 @@ -38368,134 +32259,96 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20925 components: - pos: 20.5,-56.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20926 components: - pos: 21.5,-56.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20927 components: - pos: 22.5,-56.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20928 components: - pos: 23.5,-56.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20929 components: - pos: 24.5,-56.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20930 components: - pos: 25.5,-56.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20931 components: - pos: 26.5,-56.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20932 components: - pos: 27.5,-56.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20933 components: - pos: 28.5,-56.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20934 components: - pos: 28.5,-57.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20935 components: - pos: 28.5,-58.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20936 components: - pos: 28.5,-59.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20937 components: - pos: 28.5,-60.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20938 components: - pos: 23.5,-57.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20939 components: - pos: 23.5,-58.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20940 components: - pos: 23.5,-59.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20941 components: - pos: 23.5,-55.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20942 components: - pos: 23.5,-54.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20943 components: - pos: 18.5,-55.5 @@ -38503,8 +32356,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20944 components: - pos: 18.5,-54.5 @@ -38512,8 +32363,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20945 components: - pos: 18.5,-53.5 @@ -38521,64 +32370,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20946 components: - pos: 14.5,-51.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20947 components: - pos: 14.5,-52.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20948 components: - pos: 14.5,-53.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20949 components: - pos: 14.5,-54.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20950 components: - pos: 14.5,-55.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20951 components: - pos: 13.5,-54.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20952 components: - pos: 15.5,-54.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21453 components: - pos: 1.5,-41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21455 components: - pos: 22.5,-40.5 @@ -38586,8 +32417,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21456 components: - pos: 20.5,-40.5 @@ -38595,8 +32424,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21457 components: - pos: 19.5,-40.5 @@ -38604,15 +32431,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21458 components: - pos: 21.5,-34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21459 components: - pos: 21.5,-33.5 @@ -38620,8 +32443,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21460 components: - pos: 22.5,-33.5 @@ -38629,29 +32450,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21461 components: - pos: 20.5,-35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21462 components: - pos: 19.5,-35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21463 components: - pos: 19.5,-34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21464 components: - pos: 19.5,-33.5 @@ -38659,15 +32472,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21465 components: - pos: 25.5,-35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21466 components: - pos: 26.5,-35.5 @@ -38675,8 +32484,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21467 components: - pos: 26.5,-36.5 @@ -38684,8 +32491,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21468 components: - pos: 27.5,-37.5 @@ -38693,8 +32498,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21469 components: - pos: 29.5,-37.5 @@ -38702,15 +32505,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21470 components: - pos: 14.5,-48.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21471 components: - pos: 15.5,-47.5 @@ -38718,8 +32517,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21472 components: - pos: 14.5,-47.5 @@ -38727,8 +32524,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21473 components: - pos: 13.5,-47.5 @@ -38736,22 +32531,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21474 components: - pos: 10.5,-49.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21475 components: - pos: 10.5,-48.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21476 components: - pos: 9.5,-47.5 @@ -38759,8 +32548,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21477 components: - pos: 10.5,-47.5 @@ -38768,8 +32555,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21478 components: - pos: 11.5,-47.5 @@ -38777,8 +32562,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21825 components: - pos: -19.5,-63.5 @@ -38786,358 +32569,256 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21826 components: - pos: -19.5,-64.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21827 components: - pos: -18.5,-64.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21828 components: - pos: -17.5,-64.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21829 components: - pos: -17.5,-65.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21830 components: - pos: -17.5,-66.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21831 components: - pos: -17.5,-67.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21832 components: - pos: -17.5,-68.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21833 components: - pos: -17.5,-69.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21834 components: - pos: -17.5,-70.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21835 components: - pos: -17.5,-71.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21836 components: - pos: -17.5,-72.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21837 components: - pos: -17.5,-73.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21838 components: - pos: -16.5,-70.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21839 components: - pos: -15.5,-70.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21840 components: - pos: -14.5,-70.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21841 components: - pos: -18.5,-70.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21842 components: - pos: -19.5,-70.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21843 components: - pos: -20.5,-70.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21844 components: - pos: -21.5,-70.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21845 components: - pos: -22.5,-70.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21846 components: - pos: -23.5,-70.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21847 components: - pos: -24.5,-70.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21848 components: - pos: -25.5,-70.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21849 components: - pos: -26.5,-70.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21850 components: - pos: -27.5,-70.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21851 components: - pos: -28.5,-70.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21852 components: - pos: -29.5,-70.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21853 components: - pos: -26.5,-71.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21854 components: - pos: -26.5,-72.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21855 components: - pos: -26.5,-73.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21856 components: - pos: -29.5,-71.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21857 components: - pos: -29.5,-72.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21858 components: - pos: -29.5,-73.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21859 components: - pos: -24.5,-69.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21860 components: - pos: -24.5,-68.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21861 components: - pos: -24.5,-67.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21862 components: - pos: -24.5,-66.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21863 components: - pos: -24.5,-65.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21864 components: - pos: -24.5,-64.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21865 components: - pos: -25.5,-66.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21866 components: - pos: -26.5,-66.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21867 components: - pos: -27.5,-66.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21868 components: - pos: -28.5,-66.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21869 components: - pos: -29.5,-66.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21870 components: - pos: -29.5,-65.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21871 components: - pos: -29.5,-64.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21872 components: - pos: -29.5,-63.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21873 components: - pos: -24.5,-63.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21874 components: - pos: -25.5,-63.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21875 components: - pos: -25.5,-62.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21876 components: - pos: -25.5,-61.5 @@ -39145,8 +32826,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21877 components: - pos: -24.5,-61.5 @@ -39154,8 +32833,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21878 components: - pos: -23.5,-61.5 @@ -39163,8 +32840,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21879 components: - pos: -22.5,-61.5 @@ -39172,8 +32847,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21880 components: - pos: -21.5,-61.5 @@ -39181,8 +32854,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21881 components: - pos: -20.5,-61.5 @@ -39190,15 +32861,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21882 components: - pos: -19.5,-61.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21883 components: - pos: -19.5,-62.5 @@ -39206,8 +32873,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21884 components: - pos: -18.5,-62.5 @@ -39215,8 +32880,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21885 components: - pos: -17.5,-62.5 @@ -39224,8 +32887,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21886 components: - pos: -16.5,-62.5 @@ -39233,8 +32894,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21887 components: - pos: -15.5,-62.5 @@ -39242,8 +32901,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21888 components: - pos: -14.5,-62.5 @@ -39251,8 +32908,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21889 components: - pos: -13.5,-62.5 @@ -39260,8 +32915,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21890 components: - pos: -25.5,-60.5 @@ -39269,8 +32922,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21891 components: - pos: -26.5,-60.5 @@ -39278,8 +32929,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21892 components: - pos: -27.5,-60.5 @@ -39287,8 +32936,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21893 components: - pos: -28.5,-60.5 @@ -39296,8 +32943,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21894 components: - pos: -29.5,-60.5 @@ -39305,8 +32950,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21895 components: - pos: -30.5,-60.5 @@ -39314,8 +32957,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21896 components: - pos: -31.5,-60.5 @@ -39323,8 +32964,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21897 components: - pos: -32.5,-60.5 @@ -39332,8 +32971,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21898 components: - pos: -33.5,-60.5 @@ -39341,8 +32978,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21899 components: - pos: -0.5,-65.5 @@ -39350,232 +32985,166 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21900 components: - pos: -1.5,-65.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21901 components: - pos: -2.5,-65.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21902 components: - pos: -2.5,-66.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21903 components: - pos: -2.5,-67.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21904 components: - pos: -2.5,-68.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21905 components: - pos: -2.5,-69.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21906 components: - pos: -2.5,-70.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21907 components: - pos: -3.5,-70.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21908 components: - pos: -4.5,-70.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21909 components: - pos: -5.5,-70.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21910 components: - pos: -6.5,-70.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21911 components: - pos: -7.5,-70.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21912 components: - pos: -8.5,-70.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21913 components: - pos: -9.5,-70.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21914 components: - pos: -9.5,-69.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21915 components: - pos: -9.5,-68.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21916 components: - pos: -9.5,-67.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21917 components: - pos: -9.5,-66.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21918 components: - pos: -9.5,-65.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21919 components: - pos: -9.5,-64.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21920 components: - pos: -9.5,-63.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21921 components: - pos: -9.5,-62.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21922 components: - pos: -8.5,-62.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21923 components: - pos: -7.5,-62.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21924 components: - pos: -6.5,-62.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21925 components: - pos: -5.5,-62.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21926 components: - pos: -4.5,-62.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21927 components: - pos: -3.5,-62.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21928 components: - pos: -2.5,-62.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21929 components: - pos: -2.5,-63.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21930 components: - pos: -2.5,-64.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21931 components: - pos: -9.5,-71.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21932 components: - pos: -9.5,-72.5 @@ -39583,29 +33152,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21933 components: - pos: -10.5,-70.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21934 components: - pos: -11.5,-70.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21935 components: - pos: -11.5,-71.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21936 components: - pos: -11.5,-72.5 @@ -39613,15 +33174,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21937 components: - pos: -3.5,-71.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21938 components: - pos: -3.5,-72.5 @@ -39629,78 +33186,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21939 components: - pos: -1.5,-69.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21940 components: - pos: -0.5,-69.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21941 components: - pos: 0.5,-69.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21942 components: - pos: 1.5,-69.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21943 components: - pos: 2.5,-69.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21944 components: - pos: 1.5,-70.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21945 components: - pos: 1.5,-71.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21946 components: - pos: 1.5,-72.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21947 components: - pos: 1.5,-73.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21948 components: - pos: 0.5,-73.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21949 components: - pos: -0.5,-73.5 @@ -39708,8 +33243,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21950 components: - pos: -1.5,-73.5 @@ -39717,29 +33250,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21951 components: - pos: -3.5,-66.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21952 components: - pos: -4.5,-66.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21953 components: - pos: -1.5,-62.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21954 components: - pos: -0.5,-62.5 @@ -39747,8 +33272,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21955 components: - pos: 0.5,-62.5 @@ -39756,8 +33279,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21956 components: - pos: 1.5,-62.5 @@ -39765,8 +33286,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21957 components: - pos: 2.5,-62.5 @@ -39774,36 +33293,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21958 components: - pos: -2.5,-61.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21959 components: - pos: -2.5,-60.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21960 components: - pos: -2.5,-59.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21961 components: - pos: -7.5,-50.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21962 components: - pos: -6.5,-50.5 @@ -39811,8 +33320,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21963 components: - pos: -6.5,-51.5 @@ -39820,8 +33327,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21964 components: - pos: -6.5,-52.5 @@ -39829,8 +33334,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21965 components: - pos: -6.5,-53.5 @@ -39838,8 +33341,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21966 components: - pos: -6.5,-54.5 @@ -39847,8 +33348,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21967 components: - pos: -6.5,-55.5 @@ -39856,8 +33355,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21968 components: - pos: -6.5,-56.5 @@ -39865,8 +33362,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21969 components: - pos: -6.5,-57.5 @@ -39874,8 +33369,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21970 components: - pos: -6.5,-49.5 @@ -39883,8 +33376,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21971 components: - pos: -6.5,-48.5 @@ -39892,8 +33383,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21972 components: - pos: -6.5,-47.5 @@ -39901,8 +33390,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21973 components: - pos: -6.5,-46.5 @@ -39910,8 +33397,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21974 components: - pos: -6.5,-45.5 @@ -39919,8 +33404,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21975 components: - pos: -6.5,-44.5 @@ -39928,8 +33411,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22088 components: - pos: 1.5,-74.5 @@ -39937,8 +33418,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22089 components: - pos: 0.5,-74.5 @@ -39946,8 +33425,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22090 components: - pos: 2.5,-74.5 @@ -39955,22 +33432,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22091 components: - pos: 2.5,-71.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 22092 components: - pos: 3.5,-71.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 22093 components: - pos: 4.5,-71.5 @@ -39978,8 +33449,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22094 components: - pos: 4.5,-72.5 @@ -39987,8 +33456,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22095 components: - pos: 4.5,-70.5 @@ -39996,8 +33463,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22096 components: - pos: -2.5,-73.5 @@ -40005,8 +33470,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22097 components: - pos: -2.5,-74.5 @@ -40014,8 +33477,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22098 components: - pos: -2.5,-72.5 @@ -40023,8 +33484,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22099 components: - pos: -1.5,-72.5 @@ -40032,8 +33491,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22445 components: - pos: 38.5,-48.5 @@ -40041,8 +33498,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22446 components: - pos: 37.5,-48.5 @@ -40050,8 +33505,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22447 components: - pos: 37.5,-49.5 @@ -40059,8 +33512,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22448 components: - pos: 37.5,-50.5 @@ -40068,50 +33519,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22449 components: - pos: 37.5,-51.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 22450 components: - pos: 37.5,-52.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 22451 components: - pos: 37.5,-53.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 22452 components: - pos: 37.5,-54.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 22453 components: - pos: 37.5,-55.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 22454 components: - pos: 37.5,-56.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 22455 components: - pos: 38.5,-54.5 @@ -40119,8 +33556,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22456 components: - pos: 39.5,-54.5 @@ -40128,8 +33563,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22457 components: - pos: 40.5,-54.5 @@ -40137,8 +33570,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22458 components: - pos: 38.5,-56.5 @@ -40146,8 +33577,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22459 components: - pos: 38.5,-57.5 @@ -40155,8 +33584,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22460 components: - pos: 38.5,-58.5 @@ -40164,8 +33591,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22461 components: - pos: 38.5,-59.5 @@ -40173,8 +33598,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22462 components: - pos: 38.5,-60.5 @@ -40182,8 +33605,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22463 components: - pos: 38.5,-61.5 @@ -40191,8 +33612,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22464 components: - pos: 38.5,-62.5 @@ -40200,8 +33619,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22465 components: - pos: 38.5,-63.5 @@ -40209,8 +33626,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22466 components: - pos: 37.5,-47.5 @@ -40218,8 +33633,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22467 components: - pos: 36.5,-47.5 @@ -40227,8 +33640,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22468 components: - pos: 35.5,-47.5 @@ -40236,8 +33647,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22469 components: - pos: 34.5,-47.5 @@ -40245,8 +33654,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22470 components: - pos: 33.5,-47.5 @@ -40254,8 +33661,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22471 components: - pos: 32.5,-47.5 @@ -40263,8 +33668,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22472 components: - pos: 30.5,-48.5 @@ -40272,8 +33675,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22473 components: - pos: 30.5,-49.5 @@ -40281,8 +33682,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22474 components: - pos: 32.5,-48.5 @@ -40290,8 +33689,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22475 components: - pos: 32.5,-49.5 @@ -40299,8 +33696,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22476 components: - pos: 32.5,-50.5 @@ -40308,8 +33703,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22477 components: - pos: 33.5,-50.5 @@ -40317,8 +33710,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22478 components: - pos: 34.5,-50.5 @@ -40326,8 +33717,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22479 components: - pos: 34.5,-51.5 @@ -40335,8 +33724,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22480 components: - pos: 34.5,-52.5 @@ -40344,8 +33731,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22481 components: - pos: 34.5,-53.5 @@ -40353,8 +33738,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22482 components: - pos: 34.5,-54.5 @@ -40362,8 +33745,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22483 components: - pos: 34.5,-55.5 @@ -40371,8 +33752,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22484 components: - pos: 34.5,-56.5 @@ -40380,8 +33759,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22485 components: - pos: 34.5,-57.5 @@ -40389,8 +33766,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22486 components: - pos: 33.5,-53.5 @@ -40398,8 +33773,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22487 components: - pos: 32.5,-53.5 @@ -40407,8 +33780,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22488 components: - pos: 33.5,-56.5 @@ -40416,8 +33787,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22489 components: - pos: 32.5,-56.5 @@ -40425,8 +33794,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23046 components: - pos: -32.5,39.5 @@ -40434,8 +33801,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23047 components: - pos: -31.5,39.5 @@ -40443,8 +33808,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23048 components: - pos: -30.5,39.5 @@ -40452,8 +33815,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23049 components: - pos: -29.5,39.5 @@ -40461,8 +33822,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23050 components: - pos: -28.5,39.5 @@ -40470,8 +33829,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23051 components: - pos: -27.5,39.5 @@ -40479,8 +33836,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23052 components: - pos: -28.5,40.5 @@ -40488,8 +33843,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23053 components: - pos: -28.5,38.5 @@ -40497,8 +33850,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23054 components: - pos: -28.5,37.5 @@ -40506,8 +33857,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23055 components: - pos: -28.5,36.5 @@ -40515,8 +33864,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23056 components: - pos: -28.5,35.5 @@ -40524,8 +33871,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23057 components: - pos: -18.5,34.5 @@ -40533,8 +33878,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23058 components: - pos: -19.5,34.5 @@ -40542,8 +33885,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23059 components: - pos: -20.5,34.5 @@ -40551,8 +33892,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23060 components: - pos: -21.5,34.5 @@ -40560,8 +33899,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23061 components: - pos: -22.5,34.5 @@ -40569,8 +33906,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23062 components: - pos: -23.5,34.5 @@ -40578,8 +33913,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23063 components: - pos: -23.5,35.5 @@ -40587,8 +33920,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23064 components: - pos: -23.5,36.5 @@ -40596,15 +33927,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23065 components: - pos: -23.5,37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23066 components: - pos: -23.5,38.5 @@ -40612,29 +33939,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23237 components: - pos: 43.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23238 components: - pos: 48.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23239 components: - pos: 42.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23325 components: - pos: 47.5,18.5 @@ -40642,64 +33961,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23326 components: - pos: 47.5,17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23327 components: - pos: 47.5,16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23328 components: - pos: 47.5,15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23329 components: - pos: 47.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23330 components: - pos: 47.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23331 components: - pos: 46.5,15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23332 components: - pos: 45.5,15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23336 components: - pos: 44.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23337 components: - pos: 45.5,14.5 @@ -40707,162 +34008,116 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23338 components: - pos: 50.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23339 components: - pos: 50.5,17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23340 components: - pos: 49.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23341 components: - pos: 50.5,16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23342 components: - pos: 50.5,15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23343 components: - pos: 50.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23344 components: - pos: 50.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23345 components: - pos: 50.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23346 components: - pos: 50.5,20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23347 components: - pos: 50.5,21.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23348 components: - pos: 50.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23349 components: - pos: 50.5,23.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23350 components: - pos: 50.5,24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23351 components: - pos: 50.5,25.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23352 components: - pos: 50.5,26.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23353 components: - pos: 50.5,27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23354 components: - pos: 50.5,28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23355 components: - pos: 49.5,20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23356 components: - pos: 48.5,20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23357 components: - pos: 47.5,20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23358 components: - pos: 46.5,20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23359 components: - pos: 45.5,20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23360 components: - pos: 44.5,20.5 @@ -40870,239 +34125,171 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23361 components: - pos: 43.5,20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23362 components: - pos: 43.5,21.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23363 components: - pos: 43.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23364 components: - pos: 43.5,23.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23365 components: - pos: 43.5,24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23366 components: - pos: 45.5,21.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23367 components: - pos: 45.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23368 components: - pos: 45.5,23.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23369 components: - pos: 45.5,24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23671 components: - pos: 51.5,15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23672 components: - pos: 52.5,15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23673 components: - pos: 53.5,15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23674 components: - pos: 54.5,15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23675 components: - pos: 55.5,15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23676 components: - pos: 56.5,15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23677 components: - pos: 51.5,25.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23678 components: - pos: 52.5,25.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23679 components: - pos: 53.5,25.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23680 components: - pos: 54.5,25.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23681 components: - pos: 55.5,25.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23682 components: - pos: 56.5,25.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23683 components: - pos: 56.5,16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23684 components: - pos: 56.5,17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23685 components: - pos: 56.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23686 components: - pos: 57.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23687 components: - pos: 58.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23688 components: - pos: 59.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23689 components: - pos: 56.5,24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23690 components: - pos: 56.5,23.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23691 components: - pos: 56.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23692 components: - pos: 57.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23693 components: - pos: 58.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23694 components: - pos: 59.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23695 components: - pos: 59.5,11.5 @@ -41110,71 +34297,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23696 components: - pos: 55.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23697 components: - pos: 55.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23698 components: - pos: 55.5,26.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23699 components: - pos: 55.5,27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23700 components: - pos: 55.5,28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23701 components: - pos: 55.5,29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23702 components: - pos: 56.5,29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23703 components: - pos: 57.5,29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23704 components: - pos: 58.5,29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23705 components: - pos: 59.5,29.5 @@ -41182,8 +34349,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23706 components: - pos: 60.5,29.5 @@ -41191,8 +34356,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23707 components: - pos: 61.5,29.5 @@ -41200,29 +34363,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23708 components: - pos: 54.5,29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23710 components: - pos: 50.5,29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23717 components: - pos: 44.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23718 components: - pos: 44.5,18.5 @@ -41230,8 +34385,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23719 components: - pos: 59.5,17.5 @@ -41239,8 +34392,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23720 components: - pos: 60.5,17.5 @@ -41248,8 +34399,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23721 components: - pos: 60.5,16.5 @@ -41257,8 +34406,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23722 components: - pos: 60.5,15.5 @@ -41266,8 +34413,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23723 components: - pos: 60.5,14.5 @@ -41275,8 +34420,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23724 components: - pos: 61.5,17.5 @@ -41284,8 +34427,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23725 components: - pos: 61.5,18.5 @@ -41293,8 +34434,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23726 components: - pos: 61.5,19.5 @@ -41302,8 +34441,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23727 components: - pos: 61.5,20.5 @@ -41311,8 +34448,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23728 components: - pos: 61.5,21.5 @@ -41320,8 +34455,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23729 components: - pos: 61.5,22.5 @@ -41329,8 +34462,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23730 components: - pos: 61.5,23.5 @@ -41338,8 +34469,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23731 components: - pos: 60.5,23.5 @@ -41347,8 +34476,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23732 components: - pos: 59.5,23.5 @@ -41356,8 +34483,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23733 components: - pos: 60.5,24.5 @@ -41365,8 +34490,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23734 components: - pos: 60.5,25.5 @@ -41374,8 +34497,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23735 components: - pos: 60.5,26.5 @@ -41383,134 +34504,96 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23951 components: - pos: 51.5,29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 24132 components: - pos: 35.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 24133 components: - pos: 36.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 24134 components: - pos: 37.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 24197 components: - pos: -31.5,-5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 24198 components: - pos: -31.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 24199 components: - pos: -10.5,-65.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 24200 components: - pos: -11.5,-65.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 24201 components: - pos: -12.5,-65.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 24202 components: - pos: -16.5,-65.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 24203 components: - pos: -15.5,-65.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 24473 components: - pos: 28.5,-19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 24474 components: - pos: 27.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 24475 components: - pos: 26.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 24476 components: - pos: 25.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 24477 components: - pos: 24.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 24478 components: - pos: 24.5,-19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 24622 components: - pos: 30.5,-19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 24637 components: - pos: 35.5,53.5 @@ -41518,8 +34601,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24638 components: - pos: 35.5,54.5 @@ -41527,15 +34608,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25681 components: - pos: 111.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 25994 components: - pos: 100.5,-1.5 @@ -41543,15 +34620,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25995 components: - pos: 108.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 25996 components: - pos: 108.5,-1.5 @@ -41559,631 +34632,451 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25997 components: - pos: 99.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 25998 components: - pos: 99.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 25999 components: - pos: 99.5,-1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26000 components: - pos: 99.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26001 components: - pos: 99.5,-3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26002 components: - pos: 99.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26003 components: - pos: 99.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26004 components: - pos: 98.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26005 components: - pos: 97.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26007 components: - pos: 108.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26008 components: - pos: 109.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26009 components: - pos: 110.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26010 components: - pos: 111.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26011 components: - pos: 112.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26012 components: - pos: 113.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26013 components: - pos: 114.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26014 components: - pos: 115.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26015 components: - pos: 115.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26016 components: - pos: 115.5,2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26017 components: - pos: 115.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26018 components: - pos: 115.5,4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26019 components: - pos: 115.5,5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26020 components: - pos: 115.5,6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26021 components: - pos: 114.5,6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26022 components: - pos: 113.5,6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26023 components: - pos: 113.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26024 components: - pos: 113.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26025 components: - pos: 113.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26026 components: - pos: 113.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26027 components: - pos: 113.5,11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26028 components: - pos: 115.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26029 components: - pos: 115.5,-1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26030 components: - pos: 115.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26031 components: - pos: 115.5,-3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26032 components: - pos: 115.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26033 components: - pos: 114.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26034 components: - pos: 113.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26037 components: - pos: 112.5,-10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26038 components: - pos: 112.5,-9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26039 components: - pos: 112.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26040 components: - pos: 112.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26041 components: - pos: 112.5,-6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26042 components: - pos: 112.5,-5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26043 components: - pos: 112.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26044 components: - pos: 112.5,-13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26045 components: - pos: 112.5,-14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26046 components: - pos: 112.5,-15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26047 components: - pos: 112.5,-16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26048 components: - pos: 112.5,-17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26049 components: - pos: 112.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26050 components: - pos: 110.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26051 components: - pos: 109.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26052 components: - pos: 108.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26053 components: - pos: 107.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26054 components: - pos: 106.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26055 components: - pos: 105.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26056 components: - pos: 104.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26057 components: - pos: 103.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26058 components: - pos: 102.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26059 components: - pos: 101.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26060 components: - pos: 100.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26061 components: - pos: 99.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26062 components: - pos: 98.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26063 components: - pos: 97.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26064 components: - pos: 96.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26065 components: - pos: 93.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26066 components: - pos: 96.5,-17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26067 components: - pos: 96.5,-16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26068 components: - pos: 96.5,-15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26069 components: - pos: 96.5,-14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26070 components: - pos: 96.5,-13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26071 components: - pos: 96.5,-12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26072 components: - pos: 96.5,-11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26073 components: - pos: 96.5,-10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26074 components: - pos: 96.5,-9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26075 components: - pos: 96.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26076 components: - pos: 96.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26077 components: - pos: 96.5,-6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26078 components: - pos: 96.5,-5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26079 components: - pos: 96.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26080 components: - pos: 95.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26081 components: - pos: 94.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26082 components: - pos: 94.5,-3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26083 components: - pos: 94.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26084 components: - pos: 94.5,-1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26085 components: - pos: 94.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26086 components: - pos: 94.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26087 components: - pos: 92.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26088 components: - pos: 92.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26089 components: - pos: 92.5,-1.5 @@ -42191,50 +35084,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26090 components: - pos: 94.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26091 components: - pos: 94.5,2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26092 components: - pos: 94.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26093 components: - pos: 94.5,4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26094 components: - pos: 94.5,5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26095 components: - pos: 94.5,6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26096 components: - pos: 93.5,4.5 @@ -42242,8 +35121,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26097 components: - pos: 92.5,4.5 @@ -42251,8 +35128,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26098 components: - pos: 91.5,4.5 @@ -42260,260 +35135,186 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26099 components: - pos: 95.5,6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26100 components: - pos: 95.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26101 components: - pos: 95.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26102 components: - pos: 95.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26103 components: - pos: 95.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26104 components: - pos: 95.5,11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26105 components: - pos: 95.5,12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26106 components: - pos: 95.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26108 components: - pos: 96.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26109 components: - pos: 96.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26110 components: - pos: 96.5,15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26111 components: - pos: 96.5,16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26112 components: - pos: 96.5,17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26113 components: - pos: 96.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26114 components: - pos: 97.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26115 components: - pos: 98.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26116 components: - pos: 99.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26117 components: - pos: 100.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26118 components: - pos: 101.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26119 components: - pos: 102.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26120 components: - pos: 103.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26121 components: - pos: 104.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26122 components: - pos: 105.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26123 components: - pos: 106.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26124 components: - pos: 107.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26125 components: - pos: 108.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26126 components: - pos: 109.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26127 components: - pos: 110.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26128 components: - pos: 111.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26129 components: - pos: 112.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26130 components: - pos: 112.5,17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26131 components: - pos: 112.5,16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26132 components: - pos: 112.5,15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26133 components: - pos: 112.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26134 components: - pos: 104.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26135 components: - pos: 104.5,-19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26146 components: - pos: 103.5,-1.5 @@ -42521,29 +35322,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26147 components: - pos: 103.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26148 components: - pos: 103.5,-3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26149 components: - pos: 103.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26150 components: - pos: 103.5,3.5 @@ -42551,50 +35344,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26151 components: - pos: 102.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26152 components: - pos: 104.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26153 components: - pos: 105.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26154 components: - pos: 106.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26155 components: - pos: 107.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26156 components: - pos: 107.5,-3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26157 components: - pos: 107.5,-6.5 @@ -42602,155 +35381,111 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26158 components: - pos: 107.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26159 components: - pos: 107.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26160 components: - pos: 107.5,-9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26161 components: - pos: 107.5,-10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26162 components: - pos: 107.5,-11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26163 components: - pos: 107.5,-12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26164 components: - pos: 107.5,-13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26165 components: - pos: 106.5,-12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26166 components: - pos: 105.5,-12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26167 components: - pos: 104.5,-12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26168 components: - pos: 103.5,-12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26169 components: - pos: 102.5,-12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26170 components: - pos: 101.5,-12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26171 components: - pos: 101.5,-11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26172 components: - pos: 101.5,-10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26173 components: - pos: 101.5,-9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26174 components: - pos: 101.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26175 components: - pos: 104.5,-11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26176 components: - pos: 104.5,-10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26177 components: - pos: 104.5,-9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26178 components: - pos: 104.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26179 components: - pos: 105.5,-8.5 @@ -42758,8 +35493,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26180 components: - pos: 105.5,-7.5 @@ -42767,8 +35500,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26181 components: - pos: 105.5,-6.5 @@ -42776,8 +35507,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26182 components: - pos: 103.5,-8.5 @@ -42785,8 +35514,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26183 components: - pos: 103.5,-7.5 @@ -42794,8 +35521,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26184 components: - pos: 103.5,-6.5 @@ -42803,50 +35528,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26185 components: - pos: 103.5,2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26186 components: - pos: 103.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26187 components: - pos: 103.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26188 components: - pos: 104.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26189 components: - pos: 105.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26190 components: - pos: 106.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26191 components: - pos: 105.5,7.5 @@ -42854,162 +35565,116 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26192 components: - pos: 105.5,6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26193 components: - pos: 105.5,5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26194 components: - pos: 104.5,5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26195 components: - pos: 103.5,5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26196 components: - pos: 102.5,5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26197 components: - pos: 102.5,6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26198 components: - pos: 102.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26199 components: - pos: 102.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26200 components: - pos: 102.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26201 components: - pos: 102.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26202 components: - pos: 102.5,11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26203 components: - pos: 103.5,11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26204 components: - pos: 104.5,11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26205 components: - pos: 105.5,11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26206 components: - pos: 106.5,11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26207 components: - pos: 106.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26208 components: - pos: 106.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26209 components: - pos: 106.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26210 components: - pos: 106.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26211 components: - pos: 105.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26212 components: - pos: 104.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26213 components: - pos: 104.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26214 components: - pos: 104.5,10.5 @@ -43017,15 +35682,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26529 components: - pos: -32.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26530 components: - pos: -32.5,8.5 @@ -43033,8 +35694,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26577 components: - pos: 8.5,-27.5 @@ -43042,8 +35701,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26602 components: - pos: 13.5,-34.5 @@ -43051,15 +35708,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26603 components: - pos: 18.5,-28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26604 components: - pos: 18.5,-27.5 @@ -43067,8 +35720,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - proto: CableApcStack entities: - uid: 1550 @@ -43125,22 +35776,16 @@ entities: - pos: -2.5,4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1212 components: - pos: -2.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1214 components: - pos: -2.5,2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1225 components: - pos: -14.5,1.5 @@ -43148,8 +35793,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1226 components: - pos: -13.5,1.5 @@ -43157,8 +35800,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1227 components: - pos: -12.5,1.5 @@ -43166,8 +35807,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1228 components: - pos: -11.5,1.5 @@ -43175,225 +35814,161 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1229 components: - pos: -10.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1230 components: - pos: -9.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1231 components: - pos: -8.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1232 components: - pos: -7.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1233 components: - pos: -6.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1234 components: - pos: -5.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1235 components: - pos: -4.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1236 components: - pos: -3.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1237 components: - pos: -2.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1238 components: - pos: -1.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1239 components: - pos: -0.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1240 components: - pos: 0.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1241 components: - pos: 1.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1242 components: - pos: 2.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1243 components: - pos: 3.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1244 components: - pos: 4.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1245 components: - pos: 4.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1246 components: - pos: 4.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1247 components: - pos: 4.5,-1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1248 components: - pos: 4.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1249 components: - pos: 4.5,-3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1250 components: - pos: 4.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1251 components: - pos: 5.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1252 components: - pos: 6.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1253 components: - pos: 7.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1254 components: - pos: 8.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1255 components: - pos: 9.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1256 components: - pos: 10.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1257 components: - pos: 11.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1258 components: - pos: 11.5,-3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1259 components: - pos: 12.5,-3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1260 components: - pos: 13.5,-3.5 @@ -43401,8 +35976,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1261 components: - pos: 13.5,-2.5 @@ -43410,8 +35983,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1262 components: - pos: 13.5,-1.5 @@ -43419,8 +35990,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1263 components: - pos: 13.5,-0.5 @@ -43428,8 +35997,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1264 components: - pos: 13.5,0.5 @@ -43437,15 +36004,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1640 components: - pos: -10.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1643 components: - pos: -10.5,-11.5 @@ -43453,8 +36016,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1644 components: - pos: -10.5,-10.5 @@ -43462,85 +36023,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1645 components: - pos: -10.5,-9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1652 components: - pos: -10.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1653 components: - pos: -9.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1654 components: - pos: -9.5,-6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1655 components: - pos: -9.5,-5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1656 components: - pos: -9.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1657 components: - pos: -9.5,-3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1658 components: - pos: -9.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1659 components: - pos: -9.5,-1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1660 components: - pos: -9.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1661 components: - pos: -9.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4475 components: - pos: -12.5,2.5 @@ -43548,8 +36085,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4476 components: - pos: -12.5,3.5 @@ -43557,8 +36092,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4477 components: - pos: -12.5,4.5 @@ -43566,8 +36099,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4478 components: - pos: -12.5,5.5 @@ -43575,8 +36106,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4479 components: - pos: -12.5,6.5 @@ -43584,113 +36113,81 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4480 components: - pos: -12.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4481 components: - pos: -12.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4482 components: - pos: -12.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4483 components: - pos: -12.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4484 components: - pos: -13.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4485 components: - pos: -14.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4486 components: - pos: -15.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4487 components: - pos: -16.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4488 components: - pos: -17.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4489 components: - pos: -18.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4490 components: - pos: -19.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4491 components: - pos: -20.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4492 components: - pos: -21.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4493 components: - pos: -22.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4494 components: - pos: -23.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4495 components: - pos: -24.5,10.5 @@ -43698,8 +36195,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4496 components: - pos: -25.5,10.5 @@ -43707,8 +36202,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4497 components: - pos: -26.5,10.5 @@ -43716,8 +36209,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4498 components: - pos: -26.5,11.5 @@ -43725,8 +36216,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4499 components: - pos: -26.5,12.5 @@ -43734,8 +36223,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4500 components: - pos: -26.5,13.5 @@ -43743,8 +36230,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4501 components: - pos: -26.5,14.5 @@ -43752,8 +36237,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4502 components: - pos: -26.5,15.5 @@ -43761,8 +36244,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4503 components: - pos: -26.5,16.5 @@ -43770,8 +36251,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4504 components: - pos: -26.5,17.5 @@ -43779,8 +36258,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4505 components: - pos: -26.5,18.5 @@ -43788,8 +36265,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4506 components: - pos: -26.5,19.5 @@ -43797,8 +36272,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4507 components: - pos: -27.5,19.5 @@ -43806,8 +36279,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4508 components: - pos: -28.5,19.5 @@ -43815,8 +36286,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4509 components: - pos: -29.5,19.5 @@ -43824,8 +36293,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4510 components: - pos: -30.5,19.5 @@ -43833,8 +36300,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4511 components: - pos: -31.5,19.5 @@ -43842,43 +36307,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4512 components: - pos: -31.5,20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4513 components: - pos: -31.5,21.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4514 components: - pos: -31.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4515 components: - pos: -31.5,23.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4516 components: - pos: -31.5,24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4517 components: - pos: -31.5,25.5 @@ -43886,8 +36339,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4518 components: - pos: -31.5,26.5 @@ -43895,8 +36346,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4519 components: - pos: -32.5,26.5 @@ -43904,8 +36353,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4520 components: - pos: -33.5,26.5 @@ -43913,8 +36360,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4521 components: - pos: -33.5,25.5 @@ -43922,64 +36367,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5090 components: - pos: 94.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5091 components: - pos: 59.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5092 components: - pos: 59.5,2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5093 components: - pos: 59.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5094 components: - pos: 59.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5095 components: - pos: 60.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5096 components: - pos: 61.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5097 components: - pos: 62.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5098 components: - pos: 63.5,0.5 @@ -43987,8 +36414,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5099 components: - pos: 64.5,0.5 @@ -43996,8 +36421,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5101 components: - pos: 65.5,0.5 @@ -44005,8 +36428,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5102 components: - pos: 66.5,0.5 @@ -44014,8 +36435,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5103 components: - pos: 67.5,0.5 @@ -44023,8 +36442,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5104 components: - pos: 68.5,0.5 @@ -44032,8 +36449,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5105 components: - pos: 69.5,0.5 @@ -44041,8 +36456,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5106 components: - pos: 70.5,0.5 @@ -44050,8 +36463,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5107 components: - pos: 71.5,0.5 @@ -44059,8 +36470,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5108 components: - pos: 72.5,0.5 @@ -44068,8 +36477,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5109 components: - pos: 73.5,0.5 @@ -44077,8 +36484,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5110 components: - pos: 74.5,0.5 @@ -44086,8 +36491,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5111 components: - pos: 75.5,0.5 @@ -44095,8 +36498,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5112 components: - pos: 76.5,0.5 @@ -44104,8 +36505,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5121 components: - pos: 77.5,0.5 @@ -44113,8 +36512,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5122 components: - pos: 78.5,0.5 @@ -44122,8 +36519,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5123 components: - pos: 79.5,0.5 @@ -44131,8 +36526,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5124 components: - pos: 80.5,0.5 @@ -44140,8 +36533,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5125 components: - pos: 81.5,0.5 @@ -44149,8 +36540,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5130 components: - pos: 82.5,0.5 @@ -44158,8 +36547,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5131 components: - pos: 83.5,0.5 @@ -44167,8 +36554,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5132 components: - pos: 84.5,0.5 @@ -44176,8 +36561,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5133 components: - pos: 85.5,0.5 @@ -44185,8 +36568,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5134 components: - pos: 86.5,0.5 @@ -44194,8 +36575,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5135 components: - pos: 87.5,0.5 @@ -44203,8 +36582,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5136 components: - pos: 88.5,0.5 @@ -44212,8 +36589,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5137 components: - pos: 89.5,0.5 @@ -44221,8 +36596,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5138 components: - pos: 90.5,0.5 @@ -44230,1240 +36603,886 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5139 components: - pos: 91.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5140 components: - pos: 92.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5143 components: - pos: 93.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5144 components: - pos: 94.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5145 components: - pos: 94.5,2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5146 components: - pos: 94.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5147 components: - pos: 94.5,4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5148 components: - pos: 94.5,5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5149 components: - pos: 94.5,6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5150 components: - pos: 95.5,6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5151 components: - pos: 95.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5152 components: - pos: 95.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5153 components: - pos: 95.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5154 components: - pos: 95.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5155 components: - pos: 95.5,11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5156 components: - pos: 95.5,12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5157 components: - pos: 95.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5158 components: - pos: 96.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5159 components: - pos: 96.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5160 components: - pos: 96.5,15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5208 components: - pos: 96.5,16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5209 components: - pos: 96.5,17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5210 components: - pos: 96.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5211 components: - pos: 97.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5212 components: - pos: 98.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5213 components: - pos: 99.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5214 components: - pos: 100.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5215 components: - pos: 101.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5216 components: - pos: 102.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5217 components: - pos: 103.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5218 components: - pos: 104.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5221 components: - pos: 105.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5222 components: - pos: 106.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5223 components: - pos: 107.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5224 components: - pos: 108.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5225 components: - pos: 109.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5226 components: - pos: 110.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5227 components: - pos: 111.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5228 components: - pos: 112.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5229 components: - pos: 112.5,17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5230 components: - pos: 112.5,16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5231 components: - pos: 112.5,15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5232 components: - pos: 112.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5233 components: - pos: 112.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5234 components: - pos: 112.5,-5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5235 components: - pos: 113.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5236 components: - pos: 56.5,4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5237 components: - pos: 56.5,5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5238 components: - pos: 47.5,12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5239 components: - pos: 47.5,11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5240 components: - pos: 113.5,12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5241 components: - pos: 113.5,11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5242 components: - pos: 113.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5243 components: - pos: 113.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5244 components: - pos: 113.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5245 components: - pos: 113.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5250 components: - pos: 113.5,6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5251 components: - pos: 114.5,6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5252 components: - pos: 115.5,6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5253 components: - pos: 115.5,5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5254 components: - pos: 115.5,4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5255 components: - pos: 115.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5256 components: - pos: 115.5,2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5257 components: - pos: 115.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5258 components: - pos: 115.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5259 components: - pos: 114.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5260 components: - pos: 113.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5261 components: - pos: 112.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5262 components: - pos: 111.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5263 components: - pos: 111.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5264 components: - pos: 115.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5265 components: - pos: 115.5,-1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5266 components: - pos: 115.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5267 components: - pos: 115.5,-3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5268 components: - pos: 115.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5269 components: - pos: 114.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5270 components: - pos: 113.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5271 components: - pos: 112.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5272 components: - pos: 112.5,-6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5273 components: - pos: 112.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5275 components: - pos: 112.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5276 components: - pos: 112.5,-9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5277 components: - pos: 112.5,-10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5278 components: - pos: 112.5,-11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5279 components: - pos: 112.5,-12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5280 components: - pos: 112.5,-13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5281 components: - pos: 112.5,-14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5282 components: - pos: 112.5,-15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5283 components: - pos: 112.5,-16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5284 components: - pos: 112.5,-17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5285 components: - pos: 112.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5286 components: - pos: 111.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5287 components: - pos: 110.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5288 components: - pos: 109.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5289 components: - pos: 108.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5290 components: - pos: 107.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5291 components: - pos: 106.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5292 components: - pos: 105.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5293 components: - pos: 104.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5294 components: - pos: 103.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5295 components: - pos: 102.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5296 components: - pos: 101.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5297 components: - pos: 100.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5298 components: - pos: 99.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5299 components: - pos: 98.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5300 components: - pos: 97.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5301 components: - pos: 96.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5302 components: - pos: 96.5,-17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5303 components: - pos: 96.5,-16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5304 components: - pos: 96.5,-15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5305 components: - pos: 96.5,-14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5306 components: - pos: 96.5,-13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5307 components: - pos: 96.5,-12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5308 components: - pos: 96.5,-11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5309 components: - pos: 96.5,-10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5310 components: - pos: 96.5,-9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5311 components: - pos: 96.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5312 components: - pos: 96.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5317 components: - pos: 96.5,-6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5318 components: - pos: 96.5,-5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5319 components: - pos: 96.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5320 components: - pos: 95.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5321 components: - pos: 94.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5322 components: - pos: 94.5,-3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5323 components: - pos: 94.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5324 components: - pos: 94.5,-1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5325 components: - pos: 94.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5333 components: - pos: 47.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6052 components: - pos: -11.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6053 components: - pos: -12.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6054 components: - pos: -13.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6055 components: - pos: -14.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6056 components: - pos: -15.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6057 components: - pos: -16.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6058 components: - pos: -17.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6059 components: - pos: -18.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6060 components: - pos: -19.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6061 components: - pos: -20.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6062 components: - pos: -21.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6063 components: - pos: -22.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6064 components: - pos: -22.5,-6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6065 components: - pos: -22.5,-5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6066 components: - pos: -22.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6067 components: - pos: -22.5,-3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6068 components: - pos: -22.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6069 components: - pos: -22.5,-1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6070 components: - pos: -22.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6071 components: - pos: -22.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6072 components: - pos: -23.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6073 components: - pos: -24.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6074 components: - pos: -25.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6075 components: - pos: -26.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6076 components: - pos: -27.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6077 components: - pos: -28.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6078 components: - pos: -29.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6079 components: - pos: -30.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6080 components: - pos: -31.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6081 components: - pos: -32.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6082 components: - pos: -33.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6083 components: - pos: -34.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6084 components: - pos: -35.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6085 components: - pos: -36.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6086 components: - pos: -37.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6087 components: - pos: -38.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6088 components: - pos: -39.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6089 components: - pos: -40.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6090 components: - pos: -41.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6091 components: - pos: -42.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6092 components: - pos: -43.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6093 components: - pos: -44.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6094 components: - pos: -44.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6095 components: - pos: -44.5,2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6096 components: - pos: -44.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6097 components: - pos: -45.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6098 components: - pos: -46.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6099 components: - pos: -46.5,4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6100 components: - pos: -46.5,5.5 @@ -45471,8 +37490,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6101 components: - pos: -47.5,5.5 @@ -45480,8 +37497,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6102 components: - pos: -48.5,5.5 @@ -45489,8 +37504,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6103 components: - pos: -49.5,5.5 @@ -45498,8 +37511,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6104 components: - pos: -50.5,5.5 @@ -45507,8 +37518,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6105 components: - pos: -51.5,5.5 @@ -45516,8 +37525,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6106 components: - pos: -52.5,5.5 @@ -45525,8 +37532,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6107 components: - pos: -46.5,6.5 @@ -45534,8 +37539,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6108 components: - pos: -46.5,7.5 @@ -45543,8 +37546,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6109 components: - pos: -46.5,8.5 @@ -45552,8 +37553,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6110 components: - pos: -45.5,8.5 @@ -45561,295 +37560,211 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6111 components: - pos: -44.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6112 components: - pos: -43.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6113 components: - pos: -42.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6114 components: - pos: -41.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6115 components: - pos: -40.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6116 components: - pos: -39.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6117 components: - pos: -38.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6118 components: - pos: -37.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6119 components: - pos: -36.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6120 components: - pos: -36.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6121 components: - pos: -36.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6122 components: - pos: -36.5,11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6123 components: - pos: -36.5,12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6124 components: - pos: -36.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6125 components: - pos: -36.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6126 components: - pos: -36.5,15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6127 components: - pos: -36.5,16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6128 components: - pos: -36.5,17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6129 components: - pos: -36.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6130 components: - pos: -36.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6131 components: - pos: -36.5,20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6132 components: - pos: -36.5,21.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6133 components: - pos: -36.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6134 components: - pos: -35.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6135 components: - pos: -34.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6136 components: - pos: -33.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6137 components: - pos: -32.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6138 components: - pos: -32.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6139 components: - pos: -33.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6140 components: - pos: -34.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6141 components: - pos: -35.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6142 components: - pos: -26.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6143 components: - pos: -26.5,2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6144 components: - pos: -26.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6145 components: - pos: -26.5,4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6146 components: - pos: -26.5,5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6147 components: - pos: -26.5,6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6148 components: - pos: -26.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6149 components: - pos: -25.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6150 components: - pos: -25.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6151 components: - pos: -25.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7993 components: - pos: -27.5,52.5 @@ -45857,8 +37772,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8077 components: - pos: -25.5,52.5 @@ -45866,8 +37779,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8089 components: - pos: -26.5,54.5 @@ -45875,8 +37786,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8175 components: - pos: -26.5,52.5 @@ -45884,8 +37793,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8176 components: - pos: -25.5,54.5 @@ -45893,8 +37800,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8621 components: - pos: -27.5,54.5 @@ -45902,8 +37807,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9478 components: - pos: -33.5,65.5 @@ -45911,8 +37814,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9521 components: - pos: -32.5,44.5 @@ -45920,8 +37821,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9522 components: - pos: -32.5,45.5 @@ -45929,8 +37828,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9523 components: - pos: -32.5,46.5 @@ -45938,8 +37835,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9524 components: - pos: -32.5,47.5 @@ -45947,8 +37842,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9525 components: - pos: -32.5,48.5 @@ -45956,8 +37849,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9526 components: - pos: -33.5,44.5 @@ -45965,8 +37856,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9527 components: - pos: -33.5,43.5 @@ -45974,8 +37863,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9528 components: - pos: -33.5,42.5 @@ -45983,8 +37870,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9529 components: - pos: -32.5,42.5 @@ -45992,8 +37877,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9530 components: - pos: -32.5,41.5 @@ -46001,8 +37884,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9531 components: - pos: -32.5,40.5 @@ -46010,8 +37891,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9532 components: - pos: -32.5,39.5 @@ -46019,8 +37898,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9533 components: - pos: -32.5,38.5 @@ -46028,8 +37905,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9642 components: - pos: -32.5,37.5 @@ -46037,8 +37912,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9643 components: - pos: -32.5,36.5 @@ -46046,8 +37919,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9644 components: - pos: -33.5,36.5 @@ -46055,8 +37926,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9645 components: - pos: -34.5,36.5 @@ -46064,8 +37933,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9646 components: - pos: -35.5,36.5 @@ -46073,8 +37940,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9647 components: - pos: -36.5,36.5 @@ -46082,8 +37947,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9648 components: - pos: -37.5,36.5 @@ -46091,8 +37954,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9649 components: - pos: -38.5,36.5 @@ -46100,8 +37961,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9650 components: - pos: -39.5,36.5 @@ -46109,8 +37968,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9651 components: - pos: -39.5,35.5 @@ -46118,8 +37975,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9652 components: - pos: -39.5,34.5 @@ -46127,8 +37982,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9653 components: - pos: -39.5,33.5 @@ -46136,8 +37989,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9654 components: - pos: -39.5,32.5 @@ -46145,8 +37996,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9655 components: - pos: -39.5,31.5 @@ -46154,8 +38003,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9656 components: - pos: -39.5,30.5 @@ -46163,8 +38010,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9657 components: - pos: -38.5,30.5 @@ -46172,8 +38017,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9658 components: - pos: -37.5,30.5 @@ -46181,8 +38024,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9659 components: - pos: -36.5,30.5 @@ -46190,8 +38031,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9660 components: - pos: -35.5,30.5 @@ -46199,8 +38038,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9661 components: - pos: -34.5,30.5 @@ -46208,8 +38045,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9662 components: - pos: -33.5,30.5 @@ -46217,8 +38052,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9663 components: - pos: -32.5,30.5 @@ -46226,8 +38059,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9664 components: - pos: -31.5,30.5 @@ -46235,8 +38066,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9665 components: - pos: -31.5,29.5 @@ -46244,8 +38073,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9666 components: - pos: -31.5,28.5 @@ -46253,8 +38080,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9667 components: - pos: -31.5,27.5 @@ -46262,8 +38087,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9668 components: - pos: -30.5,30.5 @@ -46271,8 +38094,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9669 components: - pos: -29.5,30.5 @@ -46280,8 +38101,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9670 components: - pos: -28.5,30.5 @@ -46289,8 +38108,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9671 components: - pos: -27.5,30.5 @@ -46298,8 +38115,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9672 components: - pos: -26.5,30.5 @@ -46307,8 +38122,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9673 components: - pos: -25.5,30.5 @@ -46316,8 +38129,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9674 components: - pos: -24.5,30.5 @@ -46325,8 +38136,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9675 components: - pos: -23.5,30.5 @@ -46334,8 +38143,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9676 components: - pos: -22.5,30.5 @@ -46343,8 +38150,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9677 components: - pos: -21.5,30.5 @@ -46352,8 +38157,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9678 components: - pos: -21.5,31.5 @@ -46361,8 +38164,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9679 components: - pos: -21.5,32.5 @@ -46370,8 +38171,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9680 components: - pos: -21.5,33.5 @@ -46379,8 +38178,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9681 components: - pos: -20.5,33.5 @@ -46388,8 +38185,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9682 components: - pos: -19.5,33.5 @@ -46397,8 +38192,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9683 components: - pos: -18.5,33.5 @@ -46406,8 +38199,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9684 components: - pos: -17.5,33.5 @@ -46415,8 +38206,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9685 components: - pos: -16.5,33.5 @@ -46424,8 +38213,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9686 components: - pos: -15.5,33.5 @@ -46433,8 +38220,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9687 components: - pos: -15.5,34.5 @@ -46442,8 +38227,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9688 components: - pos: -15.5,35.5 @@ -46451,8 +38234,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9689 components: - pos: -15.5,36.5 @@ -46460,8 +38241,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9690 components: - pos: -15.5,37.5 @@ -46469,8 +38248,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9691 components: - pos: -15.5,38.5 @@ -46478,8 +38255,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9692 components: - pos: -15.5,39.5 @@ -46487,8 +38262,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9693 components: - pos: -15.5,40.5 @@ -46496,8 +38269,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9694 components: - pos: -14.5,40.5 @@ -46505,85 +38276,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9695 components: - pos: -30.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9696 components: - pos: -29.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9697 components: - pos: -28.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9698 components: - pos: -27.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9699 components: - pos: -26.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9700 components: - pos: -25.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9701 components: - pos: -24.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9702 components: - pos: -23.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9703 components: - pos: -22.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9704 components: - pos: -21.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9705 components: - pos: -21.5,23.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9706 components: - pos: -21.5,24.5 @@ -46591,8 +38338,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9707 components: - pos: -21.5,25.5 @@ -46600,8 +38345,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9708 components: - pos: -21.5,26.5 @@ -46609,8 +38352,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9709 components: - pos: -21.5,27.5 @@ -46618,8 +38359,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9710 components: - pos: -21.5,28.5 @@ -46627,8 +38366,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9711 components: - pos: -21.5,29.5 @@ -46636,8 +38373,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10010 components: - pos: -14.5,39.5 @@ -46645,8 +38380,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10137 components: - pos: -28.5,52.5 @@ -46654,8 +38387,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10256 components: - pos: -29.5,52.5 @@ -46663,8 +38394,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10268 components: - pos: -30.5,52.5 @@ -46672,8 +38401,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10269 components: - pos: -34.5,54.5 @@ -46681,8 +38408,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10270 components: - pos: -35.5,54.5 @@ -46690,8 +38415,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10271 components: - pos: -36.5,54.5 @@ -46699,8 +38422,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10272 components: - pos: -37.5,54.5 @@ -46708,8 +38429,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10273 components: - pos: -38.5,54.5 @@ -46717,8 +38436,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10274 components: - pos: -39.5,54.5 @@ -46726,8 +38443,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10275 components: - pos: -34.5,52.5 @@ -46735,8 +38450,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10276 components: - pos: -35.5,52.5 @@ -46744,8 +38457,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10277 components: - pos: -36.5,52.5 @@ -46753,8 +38464,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10278 components: - pos: -37.5,52.5 @@ -46762,8 +38471,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10279 components: - pos: -38.5,52.5 @@ -46771,8 +38478,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10280 components: - pos: -39.5,52.5 @@ -46780,8 +38485,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10550 components: - pos: -28.5,54.5 @@ -46789,8 +38492,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10551 components: - pos: -29.5,54.5 @@ -46798,8 +38499,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10552 components: - pos: -30.5,54.5 @@ -46807,8 +38506,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10553 components: - pos: -30.5,56.5 @@ -46816,8 +38513,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10554 components: - pos: -29.5,56.5 @@ -46825,8 +38520,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10555 components: - pos: -28.5,56.5 @@ -46834,8 +38527,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10556 components: - pos: -27.5,56.5 @@ -46843,8 +38534,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10557 components: - pos: -26.5,56.5 @@ -46852,8 +38541,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10558 components: - pos: -25.5,56.5 @@ -46861,8 +38548,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10559 components: - pos: -25.5,58.5 @@ -46870,8 +38555,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10560 components: - pos: -26.5,58.5 @@ -46879,8 +38562,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10561 components: - pos: -27.5,58.5 @@ -46888,8 +38569,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10562 components: - pos: -28.5,58.5 @@ -46897,8 +38576,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10563 components: - pos: -29.5,58.5 @@ -46906,8 +38583,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10564 components: - pos: -30.5,58.5 @@ -46915,8 +38590,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10565 components: - pos: -34.5,58.5 @@ -46924,8 +38597,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10566 components: - pos: -35.5,58.5 @@ -46933,8 +38604,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10567 components: - pos: -36.5,58.5 @@ -46942,8 +38611,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10568 components: - pos: -37.5,58.5 @@ -46951,8 +38618,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10569 components: - pos: -38.5,58.5 @@ -46960,8 +38625,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10570 components: - pos: -39.5,58.5 @@ -46969,8 +38632,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10571 components: - pos: -39.5,56.5 @@ -46978,8 +38639,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10572 components: - pos: -38.5,56.5 @@ -46987,8 +38646,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10573 components: - pos: -37.5,56.5 @@ -46996,8 +38653,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10574 components: - pos: -36.5,56.5 @@ -47005,8 +38660,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10575 components: - pos: -35.5,56.5 @@ -47014,8 +38667,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10576 components: - pos: -34.5,56.5 @@ -47023,8 +38674,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10577 components: - pos: -39.5,60.5 @@ -47032,8 +38681,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10578 components: - pos: -38.5,60.5 @@ -47041,8 +38688,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10579 components: - pos: -37.5,60.5 @@ -47050,8 +38695,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10580 components: - pos: -36.5,60.5 @@ -47059,8 +38702,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10581 components: - pos: -35.5,60.5 @@ -47068,8 +38709,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10582 components: - pos: -34.5,60.5 @@ -47077,8 +38716,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10583 components: - pos: -39.5,62.5 @@ -47086,8 +38723,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10584 components: - pos: -38.5,62.5 @@ -47095,8 +38730,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10585 components: - pos: -37.5,62.5 @@ -47104,8 +38737,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10586 components: - pos: -36.5,62.5 @@ -47113,8 +38744,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10587 components: - pos: -35.5,62.5 @@ -47122,8 +38751,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10588 components: - pos: -34.5,62.5 @@ -47131,8 +38758,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10589 components: - pos: -39.5,64.5 @@ -47140,8 +38765,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10590 components: - pos: -38.5,64.5 @@ -47149,8 +38772,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10591 components: - pos: -37.5,64.5 @@ -47158,8 +38779,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10592 components: - pos: -36.5,64.5 @@ -47167,8 +38786,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10593 components: - pos: -35.5,64.5 @@ -47176,8 +38793,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10594 components: - pos: -34.5,64.5 @@ -47185,8 +38800,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10595 components: - pos: -39.5,66.5 @@ -47194,8 +38807,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10596 components: - pos: -38.5,66.5 @@ -47203,8 +38814,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10597 components: - pos: -37.5,66.5 @@ -47212,8 +38821,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10598 components: - pos: -36.5,66.5 @@ -47221,8 +38828,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10599 components: - pos: -35.5,66.5 @@ -47230,8 +38835,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10600 components: - pos: -34.5,66.5 @@ -47239,8 +38842,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10601 components: - pos: -32.5,70.5 @@ -47248,8 +38849,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10602 components: - pos: -32.5,69.5 @@ -47257,8 +38856,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10603 components: - pos: -32.5,68.5 @@ -47266,8 +38863,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10604 components: - pos: -32.5,67.5 @@ -47275,8 +38870,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10605 components: - pos: -32.5,66.5 @@ -47284,8 +38877,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10606 components: - pos: -30.5,66.5 @@ -47293,8 +38884,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10607 components: - pos: -29.5,66.5 @@ -47302,8 +38891,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10608 components: - pos: -28.5,66.5 @@ -47311,8 +38898,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10609 components: - pos: -27.5,66.5 @@ -47320,8 +38905,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10610 components: - pos: -26.5,66.5 @@ -47329,8 +38912,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10611 components: - pos: -25.5,66.5 @@ -47338,8 +38919,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10612 components: - pos: -25.5,64.5 @@ -47347,8 +38926,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10613 components: - pos: -26.5,64.5 @@ -47356,8 +38933,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10614 components: - pos: -27.5,64.5 @@ -47365,8 +38940,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10615 components: - pos: -28.5,64.5 @@ -47374,8 +38947,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10616 components: - pos: -29.5,64.5 @@ -47383,8 +38954,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10617 components: - pos: -30.5,64.5 @@ -47392,8 +38961,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10618 components: - pos: -30.5,65.5 @@ -47401,8 +38968,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10619 components: - pos: -31.5,65.5 @@ -47410,8 +38975,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10620 components: - pos: -34.5,65.5 @@ -47419,8 +38982,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10622 components: - pos: -34.5,61.5 @@ -47428,8 +38989,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10623 components: - pos: -33.5,61.5 @@ -47437,8 +38996,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10624 components: - pos: -31.5,61.5 @@ -47446,8 +39003,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10625 components: - pos: -30.5,61.5 @@ -47455,8 +39010,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10626 components: - pos: -30.5,57.5 @@ -47464,8 +39017,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10627 components: - pos: -31.5,57.5 @@ -47473,8 +39024,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10628 components: - pos: -34.5,57.5 @@ -47482,8 +39031,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10629 components: - pos: -33.5,57.5 @@ -47491,8 +39038,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10630 components: - pos: -34.5,53.5 @@ -47500,8 +39045,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10631 components: - pos: -33.5,53.5 @@ -47509,8 +39052,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10632 components: - pos: -30.5,53.5 @@ -47518,8 +39059,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10633 components: - pos: -31.5,53.5 @@ -47527,8 +39066,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10634 components: - pos: -32.5,49.5 @@ -47536,8 +39073,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11877 components: - pos: 37.5,-21.5 @@ -47545,8 +39080,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11878 components: - pos: 37.5,-22.5 @@ -47554,8 +39087,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11879 components: - pos: 38.5,-22.5 @@ -47563,8 +39094,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11880 components: - pos: 39.5,-22.5 @@ -47572,8 +39101,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11881 components: - pos: 40.5,-22.5 @@ -47581,8 +39108,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11882 components: - pos: 34.5,-0.5 @@ -47590,8 +39115,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11883 components: - pos: 35.5,-0.5 @@ -47599,8 +39122,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11884 components: - pos: 36.5,-0.5 @@ -47608,8 +39129,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11885 components: - pos: 37.5,-0.5 @@ -47617,8 +39136,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11886 components: - pos: 38.5,-0.5 @@ -47626,8 +39143,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11887 components: - pos: 39.5,-0.5 @@ -47635,8 +39150,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11888 components: - pos: 40.5,-0.5 @@ -47644,8 +39157,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11889 components: - pos: 40.5,-1.5 @@ -47653,8 +39164,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11890 components: - pos: 40.5,-2.5 @@ -47662,8 +39171,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11891 components: - pos: 40.5,-3.5 @@ -47671,8 +39178,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11892 components: - pos: 40.5,-4.5 @@ -47680,8 +39185,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11893 components: - pos: 40.5,-5.5 @@ -47689,8 +39192,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11894 components: - pos: 40.5,-6.5 @@ -47698,8 +39199,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11895 components: - pos: 41.5,-6.5 @@ -47707,8 +39206,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11896 components: - pos: 42.5,-6.5 @@ -47716,8 +39213,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11897 components: - pos: 43.5,-6.5 @@ -47725,8 +39220,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11898 components: - pos: 43.5,-7.5 @@ -47734,8 +39227,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11899 components: - pos: 43.5,-8.5 @@ -47743,8 +39234,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11900 components: - pos: 43.5,-9.5 @@ -47752,8 +39241,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11901 components: - pos: 43.5,-10.5 @@ -47761,8 +39248,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11902 components: - pos: 43.5,-11.5 @@ -47770,8 +39255,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11903 components: - pos: 43.5,-12.5 @@ -47779,8 +39262,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11904 components: - pos: 43.5,-13.5 @@ -47788,8 +39269,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11905 components: - pos: 43.5,-14.5 @@ -47797,8 +39276,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11906 components: - pos: 43.5,-15.5 @@ -47806,8 +39283,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11907 components: - pos: 43.5,-16.5 @@ -47815,8 +39290,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11908 components: - pos: 43.5,-17.5 @@ -47824,8 +39297,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11909 components: - pos: 41.5,-22.5 @@ -47833,8 +39304,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11910 components: - pos: 41.5,-21.5 @@ -47842,8 +39311,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11911 components: - pos: 41.5,-20.5 @@ -47851,8 +39318,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11912 components: - pos: 41.5,-19.5 @@ -47860,8 +39325,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11913 components: - pos: 41.5,-18.5 @@ -47869,15 +39332,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11914 components: - pos: 41.5,-17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11915 components: - pos: 42.5,-17.5 @@ -47885,8 +39344,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12385 components: - pos: 40.5,0.5 @@ -47894,8 +39351,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12386 components: - pos: 40.5,1.5 @@ -47903,162 +39358,116 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12387 components: - pos: 40.5,2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12388 components: - pos: 40.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12389 components: - pos: 41.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12390 components: - pos: 42.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12391 components: - pos: 43.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12392 components: - pos: 44.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12393 components: - pos: 45.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12394 components: - pos: 46.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12395 components: - pos: 47.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12396 components: - pos: 48.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12397 components: - pos: 49.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12398 components: - pos: 50.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12399 components: - pos: 51.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12400 components: - pos: 52.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12401 components: - pos: 53.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12402 components: - pos: 54.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12403 components: - pos: 55.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12404 components: - pos: 56.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12405 components: - pos: 57.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12406 components: - pos: 58.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12407 components: - pos: 58.5,4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12408 components: - pos: 58.5,5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12409 components: - pos: 58.5,6.5 @@ -48066,8 +39475,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12410 components: - pos: 58.5,7.5 @@ -48075,8 +39482,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12411 components: - pos: 59.5,7.5 @@ -48084,8 +39489,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12412 components: - pos: 60.5,7.5 @@ -48093,197 +39496,141 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12413 components: - pos: 51.5,2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12414 components: - pos: 51.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12415 components: - pos: 51.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12416 components: - pos: 51.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12417 components: - pos: 51.5,-1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12418 components: - pos: 51.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12419 components: - pos: 51.5,-3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12420 components: - pos: 51.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12421 components: - pos: 51.5,-5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12422 components: - pos: 51.5,-6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12423 components: - pos: 51.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12424 components: - pos: 51.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12425 components: - pos: 52.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12426 components: - pos: 53.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12427 components: - pos: 54.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12428 components: - pos: 54.5,-9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12429 components: - pos: 54.5,-10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12430 components: - pos: 54.5,-11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12431 components: - pos: 53.5,-11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12432 components: - pos: 52.5,-11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12433 components: - pos: 52.5,-12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12434 components: - pos: 52.5,-13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12435 components: - pos: 52.5,-14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12436 components: - pos: 52.5,-15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12437 components: - pos: 52.5,-16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12438 components: - pos: 52.5,-17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12439 components: - pos: 52.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12440 components: - pos: 52.5,-19.5 @@ -48291,8 +39638,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12441 components: - pos: 52.5,-20.5 @@ -48300,8 +39645,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12442 components: - pos: 51.5,-20.5 @@ -48309,8 +39652,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12443 components: - pos: 50.5,-20.5 @@ -48318,15 +39659,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12444 components: - pos: 49.5,-20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12445 components: - pos: 48.5,-20.5 @@ -48334,8 +39671,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12446 components: - pos: 47.5,-20.5 @@ -48343,8 +39678,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12447 components: - pos: 46.5,-20.5 @@ -48352,8 +39685,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12448 components: - pos: 45.5,-20.5 @@ -48361,8 +39692,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12449 components: - pos: 44.5,-20.5 @@ -48370,8 +39699,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12450 components: - pos: 43.5,-20.5 @@ -48379,8 +39706,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12451 components: - pos: 42.5,-20.5 @@ -48388,8 +39713,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13111 components: - pos: 20.5,40.5 @@ -48397,22 +39720,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13112 components: - pos: 21.5,40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13113 components: - pos: 22.5,40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13114 components: - pos: 20.5,39.5 @@ -48420,8 +39737,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13115 components: - pos: 20.5,38.5 @@ -48429,8 +39744,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13116 components: - pos: 20.5,37.5 @@ -48438,8 +39751,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13117 components: - pos: 21.5,37.5 @@ -48447,8 +39758,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13118 components: - pos: 22.5,37.5 @@ -48456,8 +39765,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13119 components: - pos: 23.5,37.5 @@ -48465,8 +39772,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13120 components: - pos: 24.5,37.5 @@ -48474,8 +39779,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13121 components: - pos: 24.5,38.5 @@ -48483,8 +39786,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13122 components: - pos: 24.5,39.5 @@ -48492,8 +39793,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13123 components: - pos: 23.5,39.5 @@ -48501,8 +39800,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13124 components: - pos: 22.5,39.5 @@ -48510,8 +39807,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13125 components: - pos: 22.5,36.5 @@ -48519,8 +39814,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13126 components: - pos: 22.5,35.5 @@ -48528,8 +39821,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13127 components: - pos: 22.5,34.5 @@ -48537,8 +39828,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13128 components: - pos: 22.5,33.5 @@ -48546,8 +39835,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13129 components: - pos: 22.5,32.5 @@ -48555,8 +39842,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13130 components: - pos: 22.5,31.5 @@ -48564,8 +39849,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13131 components: - pos: 22.5,30.5 @@ -48573,8 +39856,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13132 components: - pos: 22.5,29.5 @@ -48582,8 +39863,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13133 components: - pos: 21.5,29.5 @@ -48591,8 +39870,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13134 components: - pos: 21.5,28.5 @@ -48600,8 +39877,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13135 components: - pos: 20.5,28.5 @@ -48609,8 +39884,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13136 components: - pos: 19.5,28.5 @@ -48618,8 +39891,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13137 components: - pos: 18.5,28.5 @@ -48627,8 +39898,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13138 components: - pos: 17.5,28.5 @@ -48636,8 +39905,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13139 components: - pos: 16.5,28.5 @@ -48645,8 +39912,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13140 components: - pos: 16.5,27.5 @@ -48654,8 +39919,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13141 components: - pos: 16.5,26.5 @@ -48663,8 +39926,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13142 components: - pos: 16.5,25.5 @@ -48672,8 +39933,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13143 components: - pos: 16.5,24.5 @@ -48681,8 +39940,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13144 components: - pos: 16.5,23.5 @@ -48690,8 +39947,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13145 components: - pos: 16.5,22.5 @@ -48699,8 +39954,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13146 components: - pos: 16.5,21.5 @@ -48708,127 +39961,91 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13147 components: - pos: 16.5,20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13148 components: - pos: 16.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13149 components: - pos: 16.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13150 components: - pos: 16.5,17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13151 components: - pos: 16.5,16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13152 components: - pos: 16.5,15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13153 components: - pos: 16.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13154 components: - pos: 16.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13155 components: - pos: 17.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13156 components: - pos: 18.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13157 components: - pos: 19.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13158 components: - pos: 20.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13159 components: - pos: 21.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13160 components: - pos: 22.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13161 components: - pos: 23.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13162 components: - pos: 24.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13163 components: - pos: 24.5,12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13164 components: - pos: 24.5,11.5 @@ -48836,8 +40053,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13165 components: - pos: 24.5,10.5 @@ -48845,8 +40060,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13166 components: - pos: 25.5,10.5 @@ -48854,8 +40067,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13167 components: - pos: 26.5,10.5 @@ -48863,8 +40074,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13168 components: - pos: 27.5,10.5 @@ -48872,8 +40081,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13169 components: - pos: 28.5,10.5 @@ -48881,8 +40088,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13170 components: - pos: 28.5,9.5 @@ -48890,8 +40095,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13171 components: - pos: 28.5,8.5 @@ -48899,8 +40102,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13172 components: - pos: 28.5,7.5 @@ -48908,8 +40109,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13173 components: - pos: 28.5,6.5 @@ -48917,8 +40116,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13174 components: - pos: 28.5,5.5 @@ -48926,99 +40123,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13175 components: - pos: 28.5,4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13176 components: - pos: 28.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13177 components: - pos: 29.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13178 components: - pos: 30.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13179 components: - pos: 31.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13180 components: - pos: 32.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13181 components: - pos: 33.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13182 components: - pos: 34.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13183 components: - pos: 35.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13184 components: - pos: 36.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13185 components: - pos: 37.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13186 components: - pos: 38.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13187 components: - pos: 39.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13188 components: - pos: 40.5,12.5 @@ -49026,8 +40195,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13189 components: - pos: 39.5,12.5 @@ -49035,8 +40202,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13190 components: - pos: 38.5,12.5 @@ -49044,8 +40209,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13191 components: - pos: 37.5,12.5 @@ -49053,8 +40216,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13192 components: - pos: 36.5,12.5 @@ -49062,8 +40223,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13193 components: - pos: 35.5,12.5 @@ -49071,8 +40230,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13194 components: - pos: 34.5,12.5 @@ -49080,8 +40237,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13195 components: - pos: 33.5,12.5 @@ -49089,8 +40244,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13196 components: - pos: 32.5,12.5 @@ -49098,8 +40251,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13197 components: - pos: 31.5,12.5 @@ -49107,8 +40258,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13198 components: - pos: 31.5,11.5 @@ -49116,8 +40265,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13199 components: - pos: 31.5,10.5 @@ -49125,8 +40272,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13200 components: - pos: 30.5,10.5 @@ -49134,8 +40279,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13201 components: - pos: 29.5,10.5 @@ -49143,8 +40286,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13202 components: - pos: 25.5,37.5 @@ -49152,148 +40293,106 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13203 components: - pos: 26.5,37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13204 components: - pos: 27.5,37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13205 components: - pos: 28.5,37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13206 components: - pos: 29.5,37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13207 components: - pos: 30.5,37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13208 components: - pos: 31.5,37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13209 components: - pos: 32.5,37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13210 components: - pos: 33.5,37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13211 components: - pos: 34.5,37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13212 components: - pos: 35.5,37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13213 components: - pos: 35.5,36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13214 components: - pos: 35.5,35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13215 components: - pos: 35.5,34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13216 components: - pos: 35.5,33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13217 components: - pos: 35.5,32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13218 components: - pos: 35.5,31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13219 components: - pos: 35.5,30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13220 components: - pos: 35.5,29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13221 components: - pos: 35.5,28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13222 components: - pos: 36.5,28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13223 components: - pos: 37.5,28.5 @@ -49301,8 +40400,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13224 components: - pos: 38.5,28.5 @@ -49310,8 +40407,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13225 components: - pos: 39.5,28.5 @@ -49319,8 +40414,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13672 components: - pos: 40.5,13.5 @@ -49328,8 +40421,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13673 components: - pos: 40.5,14.5 @@ -49337,8 +40428,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13674 components: - pos: 40.5,15.5 @@ -49346,8 +40435,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13675 components: - pos: 40.5,16.5 @@ -49355,8 +40442,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13676 components: - pos: 40.5,17.5 @@ -49364,8 +40449,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13677 components: - pos: 40.5,18.5 @@ -49373,8 +40456,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13678 components: - pos: 40.5,19.5 @@ -49382,8 +40463,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13679 components: - pos: 40.5,20.5 @@ -49391,8 +40470,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13680 components: - pos: 40.5,21.5 @@ -49400,8 +40477,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13681 components: - pos: 40.5,22.5 @@ -49409,8 +40484,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13682 components: - pos: 40.5,23.5 @@ -49418,8 +40491,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13683 components: - pos: 40.5,24.5 @@ -49427,8 +40498,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13684 components: - pos: 40.5,25.5 @@ -49436,8 +40505,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13685 components: - pos: 40.5,26.5 @@ -49445,8 +40512,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13686 components: - pos: 40.5,27.5 @@ -49454,8 +40519,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13687 components: - pos: 40.5,28.5 @@ -49463,8 +40526,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13688 components: - pos: -14.5,33.5 @@ -49472,260 +40533,186 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13689 components: - pos: -13.5,33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13690 components: - pos: -12.5,33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13691 components: - pos: -11.5,33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13692 components: - pos: -10.5,33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13693 components: - pos: -9.5,33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13694 components: - pos: -8.5,33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13695 components: - pos: -7.5,33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13696 components: - pos: -6.5,33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13697 components: - pos: -5.5,33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13698 components: - pos: -4.5,33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13699 components: - pos: -3.5,33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13700 components: - pos: -2.5,33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13701 components: - pos: -1.5,33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13702 components: - pos: -0.5,33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13703 components: - pos: 0.5,33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13704 components: - pos: 1.5,33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13705 components: - pos: 2.5,33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13706 components: - pos: 2.5,32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13707 components: - pos: 3.5,32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13708 components: - pos: 4.5,32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13709 components: - pos: 5.5,32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13710 components: - pos: 6.5,32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13711 components: - pos: 7.5,32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13712 components: - pos: 7.5,33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13713 components: - pos: 7.5,34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13714 components: - pos: 7.5,35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13715 components: - pos: 7.5,36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13716 components: - pos: 8.5,36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13717 components: - pos: 9.5,36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13718 components: - pos: 10.5,36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13719 components: - pos: 11.5,36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13720 components: - pos: 12.5,36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13721 components: - pos: 13.5,36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13722 components: - pos: 14.5,36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13723 components: - pos: 14.5,37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13724 components: - pos: 15.5,37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13725 components: - pos: 16.5,37.5 @@ -49733,8 +40720,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13726 components: - pos: 17.5,37.5 @@ -49742,8 +40727,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13727 components: - pos: 18.5,37.5 @@ -49751,8 +40734,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13728 components: - pos: 19.5,37.5 @@ -49760,8 +40741,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13932 components: - pos: 40.5,29.5 @@ -49769,8 +40748,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13933 components: - pos: 40.5,30.5 @@ -49778,8 +40755,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13934 components: - pos: 41.5,30.5 @@ -49787,8 +40762,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13935 components: - pos: 42.5,30.5 @@ -49796,8 +40769,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13936 components: - pos: 43.5,30.5 @@ -49805,8 +40776,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13937 components: - pos: 44.5,30.5 @@ -49814,8 +40783,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13938 components: - pos: 45.5,30.5 @@ -49823,8 +40790,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13939 components: - pos: 46.5,30.5 @@ -49832,8 +40797,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13940 components: - pos: 46.5,31.5 @@ -49841,8 +40804,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13941 components: - pos: 46.5,32.5 @@ -49850,8 +40811,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13942 components: - pos: 47.5,32.5 @@ -49859,8 +40818,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13943 components: - pos: 48.5,32.5 @@ -49868,8 +40825,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13944 components: - pos: 49.5,32.5 @@ -49877,8 +40832,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13945 components: - pos: 50.5,32.5 @@ -49886,8 +40839,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13946 components: - pos: 51.5,32.5 @@ -49895,43 +40846,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13947 components: - pos: 52.5,32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13948 components: - pos: 53.5,32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13949 components: - pos: 54.5,32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13950 components: - pos: 55.5,32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13951 components: - pos: 56.5,32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13952 components: - pos: 57.5,32.5 @@ -49939,8 +40878,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13953 components: - pos: 58.5,32.5 @@ -49948,8 +40885,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13954 components: - pos: 59.5,32.5 @@ -49957,8 +40892,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13955 components: - pos: 60.5,32.5 @@ -49966,8 +40899,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13956 components: - pos: 61.5,32.5 @@ -49975,8 +40906,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13957 components: - pos: 62.5,32.5 @@ -49984,8 +40913,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13958 components: - pos: 63.5,32.5 @@ -49993,8 +40920,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13959 components: - pos: 63.5,33.5 @@ -50002,8 +40927,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13960 components: - pos: 63.5,34.5 @@ -50011,8 +40934,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13961 components: - pos: 63.5,35.5 @@ -50020,8 +40941,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13962 components: - pos: 64.5,35.5 @@ -50029,8 +40948,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13963 components: - pos: 64.5,36.5 @@ -50038,8 +40955,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13964 components: - pos: 64.5,37.5 @@ -50047,8 +40962,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13965 components: - pos: 63.5,37.5 @@ -50056,8 +40969,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13966 components: - pos: 63.5,38.5 @@ -50065,8 +40976,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13967 components: - pos: 63.5,39.5 @@ -50074,8 +40983,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13968 components: - pos: 63.5,40.5 @@ -50083,99 +40990,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13969 components: - pos: 54.5,33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13970 components: - pos: 54.5,34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13971 components: - pos: 54.5,35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13972 components: - pos: 55.5,35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13973 components: - pos: 56.5,35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13974 components: - pos: 57.5,35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13975 components: - pos: 57.5,34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13976 components: - pos: 58.5,34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14096 components: - pos: 46.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14097 components: - pos: 45.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14098 components: - pos: 44.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14099 components: - pos: 43.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14100 components: - pos: 43.5,11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14999 components: - pos: -10.5,-44.5 @@ -50183,8 +41062,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16151 components: - pos: -36.5,-43.5 @@ -50192,8 +41069,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16152 components: - pos: -36.5,-42.5 @@ -50201,8 +41076,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16153 components: - pos: -36.5,-41.5 @@ -50210,8 +41083,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16154 components: - pos: -36.5,-40.5 @@ -50219,8 +41090,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16155 components: - pos: -36.5,-39.5 @@ -50228,8 +41097,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16156 components: - pos: -38.5,-39.5 @@ -50237,8 +41104,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16157 components: - pos: -37.5,-39.5 @@ -50246,8 +41111,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16159 components: - pos: -39.5,-38.5 @@ -50255,8 +41118,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16160 components: - pos: -39.5,-37.5 @@ -50264,8 +41125,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16161 components: - pos: -39.5,-36.5 @@ -50273,8 +41132,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16162 components: - pos: -39.5,-35.5 @@ -50282,8 +41139,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16163 components: - pos: -39.5,-34.5 @@ -50291,8 +41146,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16164 components: - pos: -39.5,-33.5 @@ -50300,8 +41153,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16165 components: - pos: -39.5,-32.5 @@ -50309,8 +41160,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16166 components: - pos: -39.5,-31.5 @@ -50318,8 +41167,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16167 components: - pos: -39.5,-30.5 @@ -50327,8 +41174,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16168 components: - pos: -39.5,-29.5 @@ -50336,8 +41181,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16169 components: - pos: -39.5,-28.5 @@ -50345,8 +41188,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16170 components: - pos: -39.5,-27.5 @@ -50354,8 +41195,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16171 components: - pos: -38.5,-27.5 @@ -50363,8 +41202,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16172 components: - pos: -37.5,-27.5 @@ -50372,8 +41209,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16173 components: - pos: -36.5,-27.5 @@ -50381,8 +41216,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16174 components: - pos: -35.5,-27.5 @@ -50390,8 +41223,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16175 components: - pos: -34.5,-27.5 @@ -50399,8 +41230,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16176 components: - pos: -33.5,-27.5 @@ -50408,8 +41237,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16177 components: - pos: -32.5,-27.5 @@ -50417,8 +41244,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16178 components: - pos: -31.5,-27.5 @@ -50426,8 +41251,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16179 components: - pos: -9.5,-44.5 @@ -50435,8 +41258,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16180 components: - pos: -8.5,-44.5 @@ -50444,8 +41265,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16181 components: - pos: -8.5,-43.5 @@ -50453,8 +41272,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16182 components: - pos: -8.5,-42.5 @@ -50462,8 +41279,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16183 components: - pos: -8.5,-41.5 @@ -50471,8 +41286,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16184 components: - pos: -9.5,-41.5 @@ -50480,8 +41293,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16185 components: - pos: -10.5,-41.5 @@ -50489,8 +41300,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16186 components: - pos: -11.5,-41.5 @@ -50498,169 +41307,121 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16187 components: - pos: -12.5,-41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16188 components: - pos: -13.5,-41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16189 components: - pos: -14.5,-41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16190 components: - pos: -15.5,-41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16191 components: - pos: -16.5,-41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16192 components: - pos: -17.5,-41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16193 components: - pos: -18.5,-41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16194 components: - pos: -19.5,-41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16195 components: - pos: -20.5,-41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16196 components: - pos: -21.5,-41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16197 components: - pos: -22.5,-41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16198 components: - pos: -22.5,-40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16199 components: - pos: -23.5,-40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16200 components: - pos: -24.5,-40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16201 components: - pos: -25.5,-40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16202 components: - pos: -26.5,-40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16203 components: - pos: -27.5,-40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16204 components: - pos: -28.5,-40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16205 components: - pos: -29.5,-40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16206 components: - pos: -30.5,-40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16207 components: - pos: -31.5,-40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16208 components: - pos: -31.5,-39.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16209 components: - pos: -32.5,-39.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16210 components: - pos: -33.5,-39.5 @@ -50668,8 +41429,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16211 components: - pos: -34.5,-39.5 @@ -50677,8 +41436,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16212 components: - pos: -35.5,-39.5 @@ -50686,8 +41443,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16213 components: - pos: -11.5,-44.5 @@ -50695,8 +41450,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16958 components: - pos: -58.5,-70.5 @@ -50704,8 +41457,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16959 components: - pos: -58.5,-69.5 @@ -50713,8 +41464,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16960 components: - pos: -58.5,-68.5 @@ -50722,8 +41471,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16961 components: - pos: -58.5,-67.5 @@ -50731,8 +41478,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16962 components: - pos: -58.5,-66.5 @@ -50740,8 +41485,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16963 components: - pos: -58.5,-65.5 @@ -50749,8 +41492,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16964 components: - pos: -58.5,-64.5 @@ -50758,8 +41499,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16965 components: - pos: -56.5,-70.5 @@ -50767,8 +41506,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16966 components: - pos: -56.5,-69.5 @@ -50776,8 +41513,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16967 components: - pos: -56.5,-68.5 @@ -50785,8 +41520,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16968 components: - pos: -56.5,-67.5 @@ -50794,8 +41527,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16969 components: - pos: -56.5,-66.5 @@ -50803,8 +41534,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16970 components: - pos: -56.5,-65.5 @@ -50812,8 +41541,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16971 components: - pos: -56.5,-64.5 @@ -50821,8 +41548,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16972 components: - pos: -57.5,-71.5 @@ -50830,8 +41555,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16973 components: - pos: -53.5,-71.5 @@ -50839,8 +41562,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16974 components: - pos: -54.5,-70.5 @@ -50848,8 +41569,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16975 components: - pos: -54.5,-69.5 @@ -50857,8 +41576,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16976 components: - pos: -54.5,-68.5 @@ -50866,8 +41583,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16977 components: - pos: -54.5,-67.5 @@ -50875,8 +41590,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16978 components: - pos: -54.5,-66.5 @@ -50884,8 +41597,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16979 components: - pos: -54.5,-65.5 @@ -50893,8 +41604,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16980 components: - pos: -54.5,-64.5 @@ -50902,8 +41611,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16981 components: - pos: -52.5,-70.5 @@ -50911,8 +41618,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16982 components: - pos: -52.5,-69.5 @@ -50920,8 +41625,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16983 components: - pos: -52.5,-68.5 @@ -50929,8 +41632,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16984 components: - pos: -52.5,-67.5 @@ -50938,8 +41639,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16985 components: - pos: -52.5,-66.5 @@ -50947,8 +41646,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16986 components: - pos: -52.5,-65.5 @@ -50956,8 +41653,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16987 components: - pos: -52.5,-64.5 @@ -50965,8 +41660,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16988 components: - pos: -50.5,-70.5 @@ -50974,8 +41667,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16989 components: - pos: -50.5,-69.5 @@ -50983,8 +41674,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16990 components: - pos: -50.5,-68.5 @@ -50992,8 +41681,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16991 components: - pos: -50.5,-67.5 @@ -51001,8 +41688,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16992 components: - pos: -50.5,-66.5 @@ -51010,8 +41695,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16993 components: - pos: -50.5,-65.5 @@ -51019,8 +41702,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16994 components: - pos: -50.5,-64.5 @@ -51028,8 +41709,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16995 components: - pos: -49.5,-71.5 @@ -51037,8 +41716,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16996 components: - pos: -48.5,-70.5 @@ -51046,8 +41723,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16997 components: - pos: -48.5,-69.5 @@ -51055,8 +41730,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16998 components: - pos: -48.5,-68.5 @@ -51064,8 +41737,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16999 components: - pos: -48.5,-67.5 @@ -51073,8 +41744,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17000 components: - pos: -48.5,-66.5 @@ -51082,8 +41751,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17001 components: - pos: -48.5,-65.5 @@ -51091,8 +41758,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17002 components: - pos: -48.5,-64.5 @@ -51100,8 +41765,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17003 components: - pos: -46.5,-70.5 @@ -51109,8 +41772,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17004 components: - pos: -46.5,-69.5 @@ -51118,8 +41779,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17005 components: - pos: -46.5,-68.5 @@ -51127,8 +41786,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17006 components: - pos: -46.5,-67.5 @@ -51136,8 +41793,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17007 components: - pos: -46.5,-66.5 @@ -51145,8 +41800,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17008 components: - pos: -46.5,-65.5 @@ -51154,8 +41807,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17009 components: - pos: -46.5,-64.5 @@ -51163,8 +41814,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17010 components: - pos: -44.5,-70.5 @@ -51172,8 +41821,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17011 components: - pos: -44.5,-69.5 @@ -51181,8 +41828,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17012 components: - pos: -44.5,-68.5 @@ -51190,8 +41835,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17013 components: - pos: -44.5,-67.5 @@ -51199,8 +41842,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17014 components: - pos: -44.5,-66.5 @@ -51208,8 +41849,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17015 components: - pos: -44.5,-65.5 @@ -51217,8 +41856,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17016 components: - pos: -44.5,-64.5 @@ -51226,8 +41863,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17017 components: - pos: -45.5,-71.5 @@ -51235,8 +41870,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17018 components: - pos: -46.5,-62.5 @@ -51244,8 +41877,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17019 components: - pos: -45.5,-61.5 @@ -51253,8 +41884,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17020 components: - pos: -44.5,-62.5 @@ -51262,8 +41891,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17021 components: - pos: -45.5,-62.5 @@ -51271,8 +41898,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17022 components: - pos: -48.5,-62.5 @@ -51280,8 +41905,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17023 components: - pos: -49.5,-62.5 @@ -51289,8 +41912,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17024 components: - pos: -50.5,-62.5 @@ -51298,8 +41919,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17025 components: - pos: -49.5,-61.5 @@ -51307,8 +41926,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17026 components: - pos: -52.5,-62.5 @@ -51316,8 +41933,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17027 components: - pos: -53.5,-62.5 @@ -51325,8 +41940,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17028 components: - pos: -54.5,-62.5 @@ -51334,8 +41947,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17029 components: - pos: -53.5,-61.5 @@ -51343,8 +41954,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17030 components: - pos: -56.5,-62.5 @@ -51352,8 +41961,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17031 components: - pos: -57.5,-62.5 @@ -51361,8 +41968,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17032 components: - pos: -58.5,-62.5 @@ -51370,8 +41975,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17033 components: - pos: -57.5,-61.5 @@ -51379,8 +41982,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17034 components: - pos: -57.5,-70.5 @@ -51388,8 +41989,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17035 components: - pos: -53.5,-70.5 @@ -51397,8 +41996,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17036 components: - pos: -49.5,-70.5 @@ -51406,8 +42003,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17037 components: - pos: -45.5,-70.5 @@ -51415,8 +42010,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17038 components: - pos: -57.5,-64.5 @@ -51424,8 +42017,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17039 components: - pos: -53.5,-64.5 @@ -51433,8 +42024,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17040 components: - pos: -49.5,-64.5 @@ -51442,8 +42031,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17041 components: - pos: -45.5,-64.5 @@ -51451,8 +42038,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17042 components: - pos: -60.5,-63.5 @@ -51460,8 +42045,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17043 components: - pos: -61.5,-63.5 @@ -51469,8 +42052,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17173 components: - pos: -42.5,-63.5 @@ -51478,8 +42059,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17174 components: - pos: -41.5,-63.5 @@ -51487,8 +42066,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17175 components: - pos: -40.5,-63.5 @@ -51496,8 +42073,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17176 components: - pos: -39.5,-63.5 @@ -51505,8 +42080,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17177 components: - pos: -38.5,-63.5 @@ -51514,8 +42087,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17178 components: - pos: -38.5,-64.5 @@ -51523,8 +42094,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17179 components: - pos: -37.5,-64.5 @@ -51532,8 +42101,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17180 components: - pos: -36.5,-64.5 @@ -51541,8 +42108,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17206 components: - pos: -43.5,-63.5 @@ -51550,8 +42115,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17347 components: - pos: -39.5,-39.5 @@ -51559,29 +42122,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17352 components: - pos: -35.5,-41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18078 components: - pos: -37.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18079 components: - pos: -37.5,-1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18080 components: - pos: -37.5,-2.5 @@ -51589,8 +42144,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18081 components: - pos: -37.5,-3.5 @@ -51598,8 +42151,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18082 components: - pos: -37.5,-4.5 @@ -51607,8 +42158,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18083 components: - pos: -37.5,-5.5 @@ -51616,8 +42165,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18084 components: - pos: -37.5,-6.5 @@ -51625,8 +42172,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18085 components: - pos: -37.5,-7.5 @@ -51634,8 +42179,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18086 components: - pos: -37.5,-8.5 @@ -51643,8 +42186,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18087 components: - pos: -37.5,-9.5 @@ -51652,8 +42193,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18088 components: - pos: -37.5,-10.5 @@ -51661,8 +42200,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18089 components: - pos: -37.5,-11.5 @@ -51670,8 +42207,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18090 components: - pos: -37.5,-12.5 @@ -51679,8 +42214,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18091 components: - pos: -37.5,-13.5 @@ -51688,8 +42221,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18092 components: - pos: -37.5,-14.5 @@ -51697,8 +42228,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18093 components: - pos: -37.5,-15.5 @@ -51706,8 +42235,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18094 components: - pos: -37.5,-16.5 @@ -51715,8 +42242,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18095 components: - pos: -37.5,-17.5 @@ -51724,8 +42249,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18096 components: - pos: -37.5,-18.5 @@ -51733,8 +42256,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18097 components: - pos: -37.5,-19.5 @@ -51742,8 +42263,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18098 components: - pos: -36.5,-19.5 @@ -51751,8 +42270,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18099 components: - pos: -36.5,-20.5 @@ -51760,8 +42277,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18100 components: - pos: -36.5,-21.5 @@ -51769,8 +42284,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18101 components: - pos: -36.5,-22.5 @@ -51778,8 +42291,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18102 components: - pos: -36.5,-23.5 @@ -51787,8 +42298,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18103 components: - pos: -36.5,-24.5 @@ -51796,8 +42305,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18104 components: - pos: -36.5,-25.5 @@ -51805,8 +42312,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18105 components: - pos: -36.5,-26.5 @@ -51814,8 +42319,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18106 components: - pos: -35.5,-20.5 @@ -51823,8 +42326,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18107 components: - pos: -34.5,-20.5 @@ -51832,8 +42333,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18108 components: - pos: -33.5,-20.5 @@ -51841,8 +42340,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18109 components: - pos: -32.5,-20.5 @@ -51850,8 +42347,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18110 components: - pos: -31.5,-20.5 @@ -51859,8 +42354,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18111 components: - pos: -30.5,-20.5 @@ -51868,8 +42361,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18112 components: - pos: -29.5,-20.5 @@ -51877,8 +42368,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18113 components: - pos: -28.5,-20.5 @@ -51886,8 +42375,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18114 components: - pos: -27.5,-20.5 @@ -51895,8 +42382,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18115 components: - pos: -26.5,-20.5 @@ -51904,8 +42389,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18116 components: - pos: -25.5,-20.5 @@ -51913,8 +42396,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18117 components: - pos: -24.5,-20.5 @@ -51922,106 +42403,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18118 components: - pos: -23.5,-20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18119 components: - pos: -22.5,-20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18120 components: - pos: -21.5,-20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18121 components: - pos: -20.5,-20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18122 components: - pos: -19.5,-20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18123 components: - pos: -18.5,-20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18124 components: - pos: -17.5,-20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18125 components: - pos: -16.5,-20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18126 components: - pos: -15.5,-20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18127 components: - pos: -14.5,-20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18128 components: - pos: -13.5,-20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18129 components: - pos: -12.5,-20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18130 components: - pos: -12.5,-19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18131 components: - pos: -12.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18132 components: - pos: -12.5,-17.5 @@ -52029,8 +42480,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18133 components: - pos: -12.5,-16.5 @@ -52038,8 +42487,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18134 components: - pos: -12.5,-15.5 @@ -52047,8 +42494,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18135 components: - pos: -12.5,-14.5 @@ -52056,8 +42501,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18136 components: - pos: -12.5,-13.5 @@ -52065,8 +42508,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18137 components: - pos: -12.5,-12.5 @@ -52074,8 +42515,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18138 components: - pos: -12.5,-11.5 @@ -52083,8 +42522,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18139 components: - pos: -12.5,-10.5 @@ -52092,22 +42529,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18140 components: - pos: -12.5,-9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18141 components: - pos: -12.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18142 components: - pos: -47.5,8.5 @@ -52115,8 +42546,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18143 components: - pos: -48.5,8.5 @@ -52124,8 +42553,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18144 components: - pos: -49.5,8.5 @@ -52133,8 +42560,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18145 components: - pos: -50.5,8.5 @@ -52142,8 +42567,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18146 components: - pos: -51.5,8.5 @@ -52151,8 +42574,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18147 components: - pos: -52.5,8.5 @@ -52160,246 +42581,176 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18148 components: - pos: -53.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18149 components: - pos: -54.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18150 components: - pos: -54.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18151 components: - pos: -54.5,6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18152 components: - pos: -54.5,5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18153 components: - pos: -54.5,4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18154 components: - pos: -54.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18155 components: - pos: -54.5,2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18156 components: - pos: -54.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18157 components: - pos: -54.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18158 components: - pos: -54.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18159 components: - pos: -54.5,-1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18160 components: - pos: -54.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18161 components: - pos: -54.5,-3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18162 components: - pos: -54.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18163 components: - pos: -54.5,-5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18164 components: - pos: -54.5,-6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18165 components: - pos: -54.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18166 components: - pos: -54.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18167 components: - pos: -54.5,-9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18168 components: - pos: -55.5,-9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18169 components: - pos: -56.5,-9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18170 components: - pos: -57.5,-9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18171 components: - pos: -58.5,-9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18172 components: - pos: -59.5,-9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18173 components: - pos: -60.5,-9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18174 components: - pos: -60.5,-10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18175 components: - pos: -60.5,-11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18176 components: - pos: -60.5,-12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18177 components: - pos: -60.5,-13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18178 components: - pos: -60.5,-14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18179 components: - pos: -60.5,-15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18180 components: - pos: -60.5,-16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18181 components: - pos: -59.5,-16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18182 components: - pos: -58.5,-16.5 @@ -52407,8 +42758,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18183 components: - pos: -57.5,-16.5 @@ -52416,8 +42765,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18184 components: - pos: -56.5,-16.5 @@ -52425,8 +42772,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18185 components: - pos: -55.5,-16.5 @@ -52434,8 +42779,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18186 components: - pos: -54.5,-16.5 @@ -52443,8 +42786,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18187 components: - pos: -53.5,-16.5 @@ -52452,8 +42793,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18188 components: - pos: -52.5,-16.5 @@ -52461,8 +42800,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18189 components: - pos: -52.5,-17.5 @@ -52470,8 +42807,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18190 components: - pos: -52.5,-18.5 @@ -52479,8 +42814,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18191 components: - pos: -52.5,-19.5 @@ -52488,8 +42821,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18192 components: - pos: -52.5,-20.5 @@ -52497,8 +42828,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18193 components: - pos: -52.5,-21.5 @@ -52506,8 +42835,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18194 components: - pos: -40.5,-27.5 @@ -52515,8 +42842,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18195 components: - pos: -41.5,-27.5 @@ -52524,8 +42849,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18196 components: - pos: -42.5,-27.5 @@ -52533,8 +42856,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18197 components: - pos: -43.5,-27.5 @@ -52542,8 +42863,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18198 components: - pos: -44.5,-27.5 @@ -52551,8 +42870,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18199 components: - pos: -45.5,-27.5 @@ -52560,8 +42877,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18200 components: - pos: -46.5,-27.5 @@ -52569,8 +42884,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18201 components: - pos: -47.5,-27.5 @@ -52578,8 +42891,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18202 components: - pos: -47.5,-26.5 @@ -52587,8 +42898,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18203 components: - pos: -47.5,-25.5 @@ -52596,8 +42905,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18204 components: - pos: -47.5,-24.5 @@ -52605,8 +42912,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18205 components: - pos: -47.5,-23.5 @@ -52614,8 +42919,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18206 components: - pos: -46.5,-23.5 @@ -52623,8 +42926,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18207 components: - pos: -46.5,-22.5 @@ -52632,8 +42933,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18208 components: - pos: -46.5,-21.5 @@ -52641,8 +42940,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18209 components: - pos: -47.5,-21.5 @@ -52650,8 +42947,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18210 components: - pos: -48.5,-21.5 @@ -52659,8 +42954,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18211 components: - pos: -49.5,-21.5 @@ -52668,8 +42961,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18212 components: - pos: -50.5,-21.5 @@ -52677,8 +42968,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18213 components: - pos: -51.5,-21.5 @@ -52686,8 +42975,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18788 components: - pos: 65.5,56.5 @@ -52695,8 +42982,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18789 components: - pos: 65.5,55.5 @@ -52704,8 +42989,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18790 components: - pos: 66.5,56.5 @@ -52713,8 +42996,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18791 components: - pos: 66.5,55.5 @@ -52722,8 +43003,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18792 components: - pos: 65.5,53.5 @@ -52731,8 +43010,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18793 components: - pos: 65.5,52.5 @@ -52740,8 +43017,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18794 components: - pos: 66.5,53.5 @@ -52749,8 +43024,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18795 components: - pos: 66.5,52.5 @@ -52758,8 +43031,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18796 components: - pos: 68.5,53.5 @@ -52767,8 +43038,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18797 components: - pos: 68.5,52.5 @@ -52776,8 +43045,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18798 components: - pos: 69.5,53.5 @@ -52785,8 +43052,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18799 components: - pos: 69.5,52.5 @@ -52794,8 +43059,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18800 components: - pos: 68.5,56.5 @@ -52803,8 +43066,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18801 components: - pos: 68.5,55.5 @@ -52812,8 +43073,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18802 components: - pos: 69.5,56.5 @@ -52821,8 +43080,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18803 components: - pos: 69.5,55.5 @@ -52830,8 +43087,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18804 components: - pos: 71.5,56.5 @@ -52839,8 +43094,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18805 components: - pos: 71.5,55.5 @@ -52848,8 +43101,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18806 components: - pos: 72.5,56.5 @@ -52857,8 +43108,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18807 components: - pos: 72.5,55.5 @@ -52866,8 +43115,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18808 components: - pos: 71.5,53.5 @@ -52875,8 +43122,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18809 components: - pos: 71.5,52.5 @@ -52884,8 +43129,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18810 components: - pos: 72.5,53.5 @@ -52893,8 +43136,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18811 components: - pos: 72.5,52.5 @@ -52902,8 +43143,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18812 components: - pos: 74.5,53.5 @@ -52911,8 +43150,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18813 components: - pos: 74.5,52.5 @@ -52920,8 +43157,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18814 components: - pos: 75.5,53.5 @@ -52929,8 +43164,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18815 components: - pos: 75.5,52.5 @@ -52938,8 +43171,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18816 components: - pos: 74.5,56.5 @@ -52947,8 +43178,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18817 components: - pos: 74.5,55.5 @@ -52956,8 +43185,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18818 components: - pos: 75.5,56.5 @@ -52965,8 +43192,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18819 components: - pos: 75.5,55.5 @@ -52974,8 +43199,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18820 components: - pos: 74.5,50.5 @@ -52983,8 +43206,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18821 components: - pos: 74.5,49.5 @@ -52992,8 +43213,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18822 components: - pos: 75.5,50.5 @@ -53001,8 +43220,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18823 components: - pos: 75.5,49.5 @@ -53010,8 +43227,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18824 components: - pos: 71.5,50.5 @@ -53019,8 +43234,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18825 components: - pos: 71.5,49.5 @@ -53028,8 +43241,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18826 components: - pos: 72.5,50.5 @@ -53037,8 +43248,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18827 components: - pos: 72.5,49.5 @@ -53046,8 +43255,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18828 components: - pos: 74.5,47.5 @@ -53055,8 +43262,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18829 components: - pos: 74.5,46.5 @@ -53064,8 +43269,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18830 components: - pos: 75.5,47.5 @@ -53073,8 +43276,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18831 components: - pos: 75.5,46.5 @@ -53082,8 +43283,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18832 components: - pos: 71.5,47.5 @@ -53091,8 +43290,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18833 components: - pos: 71.5,46.5 @@ -53100,8 +43297,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18834 components: - pos: 72.5,47.5 @@ -53109,8 +43304,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18835 components: - pos: 72.5,46.5 @@ -53118,8 +43311,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18836 components: - pos: 68.5,47.5 @@ -53127,8 +43318,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18837 components: - pos: 68.5,46.5 @@ -53136,8 +43325,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18838 components: - pos: 69.5,47.5 @@ -53145,8 +43332,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18839 components: - pos: 69.5,46.5 @@ -53154,8 +43339,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18840 components: - pos: 68.5,50.5 @@ -53163,8 +43346,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18841 components: - pos: 68.5,49.5 @@ -53172,8 +43353,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18842 components: - pos: 69.5,50.5 @@ -53181,8 +43360,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18843 components: - pos: 69.5,49.5 @@ -53190,8 +43367,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18844 components: - pos: 65.5,50.5 @@ -53199,8 +43374,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18845 components: - pos: 65.5,49.5 @@ -53208,8 +43381,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18846 components: - pos: 66.5,50.5 @@ -53217,8 +43388,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18847 components: - pos: 66.5,49.5 @@ -53226,8 +43395,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18848 components: - pos: 65.5,47.5 @@ -53235,8 +43402,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18849 components: - pos: 65.5,46.5 @@ -53244,8 +43409,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18850 components: - pos: 66.5,47.5 @@ -53253,8 +43416,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18851 components: - pos: 66.5,46.5 @@ -53262,8 +43423,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18852 components: - pos: 63.5,41.5 @@ -53271,8 +43430,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18853 components: - pos: 63.5,42.5 @@ -53280,8 +43437,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18854 components: - pos: 63.5,43.5 @@ -53289,8 +43444,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18855 components: - pos: 63.5,44.5 @@ -53298,8 +43451,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18856 components: - pos: 63.5,45.5 @@ -53307,8 +43458,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18857 components: - pos: 63.5,46.5 @@ -53316,8 +43465,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18858 components: - pos: 63.5,47.5 @@ -53325,8 +43472,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18859 components: - pos: 63.5,48.5 @@ -53334,8 +43479,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18860 components: - pos: 63.5,49.5 @@ -53343,8 +43486,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18861 components: - pos: 63.5,50.5 @@ -53352,8 +43493,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18862 components: - pos: 63.5,51.5 @@ -53361,8 +43500,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18863 components: - pos: 63.5,52.5 @@ -53370,8 +43507,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18865 components: - pos: 63.5,54.5 @@ -53379,8 +43514,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18867 components: - pos: 63.5,56.5 @@ -53388,8 +43521,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18868 components: - pos: 63.5,57.5 @@ -53397,8 +43528,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18869 components: - pos: 63.5,58.5 @@ -53406,8 +43535,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18870 components: - pos: 63.5,59.5 @@ -53415,8 +43542,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19887 components: - pos: 36.5,-69.5 @@ -53424,8 +43549,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19888 components: - pos: 35.5,-69.5 @@ -53433,8 +43556,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19889 components: - pos: 34.5,-69.5 @@ -53442,8 +43563,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19890 components: - pos: 33.5,-68.5 @@ -53451,8 +43570,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19891 components: - pos: 34.5,-67.5 @@ -53460,8 +43577,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19892 components: - pos: 35.5,-67.5 @@ -53469,8 +43584,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19893 components: - pos: 36.5,-67.5 @@ -53478,8 +43591,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19894 components: - pos: 40.5,-69.5 @@ -53487,8 +43598,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19895 components: - pos: 41.5,-69.5 @@ -53496,8 +43605,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19896 components: - pos: 42.5,-69.5 @@ -53505,8 +43612,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19897 components: - pos: 43.5,-68.5 @@ -53514,8 +43619,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19898 components: - pos: 42.5,-67.5 @@ -53523,8 +43626,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19899 components: - pos: 41.5,-67.5 @@ -53532,8 +43633,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19900 components: - pos: 40.5,-67.5 @@ -53541,8 +43640,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19901 components: - pos: 42.5,-68.5 @@ -53550,8 +43647,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19902 components: - pos: 34.5,-68.5 @@ -53559,8 +43654,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19903 components: - pos: 36.5,-68.5 @@ -53568,8 +43661,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19904 components: - pos: 37.5,-68.5 @@ -53577,8 +43668,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19905 components: - pos: 39.5,-68.5 @@ -53586,8 +43675,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19906 components: - pos: 40.5,-68.5 @@ -53595,8 +43682,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19907 components: - pos: 40.5,-73.5 @@ -53604,8 +43689,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19908 components: - pos: 41.5,-73.5 @@ -53613,8 +43696,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19909 components: - pos: 42.5,-73.5 @@ -53622,8 +43703,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19910 components: - pos: 42.5,-72.5 @@ -53631,8 +43710,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19911 components: - pos: 43.5,-72.5 @@ -53640,8 +43717,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19912 components: - pos: 42.5,-71.5 @@ -53649,8 +43724,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19913 components: - pos: 41.5,-71.5 @@ -53658,8 +43731,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19914 components: - pos: 40.5,-71.5 @@ -53667,8 +43738,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19915 components: - pos: 40.5,-72.5 @@ -53676,8 +43745,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19916 components: - pos: 39.5,-72.5 @@ -53685,8 +43752,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19917 components: - pos: 37.5,-72.5 @@ -53694,8 +43759,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19918 components: - pos: 36.5,-72.5 @@ -53703,8 +43766,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19919 components: - pos: 36.5,-73.5 @@ -53712,8 +43773,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19920 components: - pos: 35.5,-73.5 @@ -53721,8 +43780,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19921 components: - pos: 34.5,-73.5 @@ -53730,8 +43787,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19922 components: - pos: 34.5,-72.5 @@ -53739,8 +43794,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19923 components: - pos: 33.5,-72.5 @@ -53748,8 +43801,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19924 components: - pos: 34.5,-71.5 @@ -53757,8 +43808,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19925 components: - pos: 35.5,-71.5 @@ -53766,8 +43815,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19926 components: - pos: 36.5,-71.5 @@ -53775,8 +43822,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19927 components: - pos: 37.5,-76.5 @@ -53784,8 +43829,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19928 components: - pos: 36.5,-76.5 @@ -53793,8 +43836,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19929 components: - pos: 36.5,-77.5 @@ -53802,8 +43843,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19930 components: - pos: 35.5,-77.5 @@ -53811,8 +43850,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19931 components: - pos: 34.5,-77.5 @@ -53820,8 +43857,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19932 components: - pos: 34.5,-76.5 @@ -53829,8 +43864,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19933 components: - pos: 33.5,-76.5 @@ -53838,8 +43871,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19934 components: - pos: 34.5,-75.5 @@ -53847,8 +43878,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19935 components: - pos: 35.5,-75.5 @@ -53856,8 +43885,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19936 components: - pos: 36.5,-75.5 @@ -53865,8 +43892,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19937 components: - pos: 39.5,-76.5 @@ -53874,8 +43899,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19938 components: - pos: 40.5,-76.5 @@ -53883,8 +43906,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19939 components: - pos: 40.5,-75.5 @@ -53892,8 +43913,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19940 components: - pos: 41.5,-75.5 @@ -53901,8 +43920,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19941 components: - pos: 42.5,-75.5 @@ -53910,8 +43927,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19942 components: - pos: 42.5,-76.5 @@ -53919,8 +43934,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19943 components: - pos: 43.5,-76.5 @@ -53928,8 +43941,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19944 components: - pos: 42.5,-77.5 @@ -53937,8 +43948,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19945 components: - pos: 40.5,-77.5 @@ -53946,8 +43955,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19946 components: - pos: 41.5,-77.5 @@ -53955,8 +43962,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19947 components: - pos: 38.5,-79.5 @@ -53964,8 +43969,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19948 components: - pos: 38.5,-78.5 @@ -53973,8 +43976,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19949 components: - pos: 38.5,-65.5 @@ -53982,8 +43983,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19950 components: - pos: 38.5,-64.5 @@ -53991,8 +43990,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19951 components: - pos: 38.5,-63.5 @@ -54000,8 +43997,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19952 components: - pos: 38.5,-62.5 @@ -54009,8 +44004,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19953 components: - pos: 38.5,-61.5 @@ -54018,8 +44011,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19954 components: - pos: 38.5,-60.5 @@ -54027,8 +44018,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19955 components: - pos: 39.5,-60.5 @@ -54036,8 +44025,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19956 components: - pos: 39.5,-59.5 @@ -54045,8 +44032,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19957 components: - pos: 39.5,-58.5 @@ -54054,8 +44039,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19958 components: - pos: 38.5,-58.5 @@ -54063,8 +44046,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19959 components: - pos: 38.5,-57.5 @@ -54072,8 +44053,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19960 components: - pos: 38.5,-56.5 @@ -54081,8 +44060,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20050 components: - pos: 11.5,-61.5 @@ -54090,8 +44067,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20051 components: - pos: 10.5,-61.5 @@ -54099,8 +44074,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20052 components: - pos: 10.5,-60.5 @@ -54108,8 +44081,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20053 components: - pos: 10.5,-59.5 @@ -54117,8 +44088,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20054 components: - pos: 10.5,-58.5 @@ -54126,8 +44095,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20186 components: - pos: 27.5,-32.5 @@ -54135,8 +44102,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20187 components: - pos: 27.5,-33.5 @@ -54144,8 +44109,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20188 components: - pos: 28.5,-33.5 @@ -54153,8 +44116,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20189 components: - pos: 30.5,-33.5 @@ -54162,8 +44123,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20191 components: - pos: 29.5,-33.5 @@ -54171,8 +44130,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21277 components: - pos: -36.5,-63.5 @@ -54180,8 +44137,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21278 components: - pos: -36.5,-62.5 @@ -54189,15 +44144,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21279 components: - pos: -37.5,-62.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21280 components: - pos: -37.5,-61.5 @@ -54205,8 +44156,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21281 components: - pos: -37.5,-60.5 @@ -54214,8 +44163,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21282 components: - pos: -36.5,-60.5 @@ -54223,8 +44170,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21283 components: - pos: -35.5,-60.5 @@ -54232,8 +44177,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21284 components: - pos: -34.5,-60.5 @@ -54241,8 +44184,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21285 components: - pos: -33.5,-60.5 @@ -54250,8 +44191,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21286 components: - pos: -32.5,-60.5 @@ -54259,8 +44198,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21287 components: - pos: -31.5,-60.5 @@ -54268,8 +44205,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21288 components: - pos: -30.5,-60.5 @@ -54277,8 +44212,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21289 components: - pos: -29.5,-60.5 @@ -54286,8 +44219,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21290 components: - pos: -28.5,-60.5 @@ -54295,8 +44226,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21291 components: - pos: -27.5,-60.5 @@ -54304,8 +44233,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21292 components: - pos: -26.5,-60.5 @@ -54313,8 +44240,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21293 components: - pos: -25.5,-60.5 @@ -54322,8 +44247,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21294 components: - pos: -24.5,-60.5 @@ -54331,8 +44254,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21295 components: - pos: -23.5,-60.5 @@ -54340,8 +44261,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21296 components: - pos: -22.5,-60.5 @@ -54349,8 +44268,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21297 components: - pos: -21.5,-60.5 @@ -54358,8 +44275,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21298 components: - pos: -20.5,-60.5 @@ -54367,8 +44282,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21299 components: - pos: -20.5,-61.5 @@ -54376,8 +44289,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21300 components: - pos: -20.5,-62.5 @@ -54385,8 +44296,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21301 components: - pos: -19.5,-62.5 @@ -54394,8 +44303,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21302 components: - pos: -18.5,-62.5 @@ -54403,8 +44310,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21303 components: - pos: -17.5,-62.5 @@ -54412,8 +44317,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21304 components: - pos: -16.5,-62.5 @@ -54421,8 +44324,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21305 components: - pos: -15.5,-62.5 @@ -54430,8 +44331,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21306 components: - pos: -14.5,-62.5 @@ -54439,8 +44338,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21307 components: - pos: -13.5,-62.5 @@ -54448,92 +44345,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21308 components: - pos: -12.5,-62.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21309 components: - pos: -11.5,-62.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21310 components: - pos: -10.5,-62.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21311 components: - pos: -9.5,-62.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21312 components: - pos: -8.5,-62.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21313 components: - pos: -7.5,-62.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21314 components: - pos: -6.5,-62.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21315 components: - pos: -5.5,-62.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21316 components: - pos: -4.5,-62.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21317 components: - pos: -3.5,-62.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21318 components: - pos: -2.5,-62.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21319 components: - pos: -1.5,-62.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21320 components: - pos: -0.5,-62.5 @@ -54541,8 +44412,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21321 components: - pos: 0.5,-62.5 @@ -54550,8 +44419,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21322 components: - pos: 1.5,-62.5 @@ -54559,8 +44426,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21323 components: - pos: 2.5,-62.5 @@ -54568,8 +44433,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21324 components: - pos: 3.5,-62.5 @@ -54577,8 +44440,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21325 components: - pos: 4.5,-62.5 @@ -54586,8 +44447,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21326 components: - pos: 5.5,-62.5 @@ -54595,8 +44454,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21327 components: - pos: 6.5,-62.5 @@ -54604,8 +44461,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21328 components: - pos: 6.5,-61.5 @@ -54613,8 +44468,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21329 components: - pos: 6.5,-60.5 @@ -54622,8 +44475,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21330 components: - pos: 6.5,-59.5 @@ -54631,8 +44482,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21331 components: - pos: 6.5,-58.5 @@ -54640,8 +44489,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21332 components: - pos: 7.5,-58.5 @@ -54649,8 +44496,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21333 components: - pos: 8.5,-58.5 @@ -54658,8 +44503,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21334 components: - pos: 9.5,-58.5 @@ -54667,8 +44510,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21335 components: - pos: 10.5,-57.5 @@ -54676,8 +44517,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21336 components: - pos: 11.5,-57.5 @@ -54685,8 +44524,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21337 components: - pos: 12.5,-57.5 @@ -54694,8 +44531,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21338 components: - pos: 13.5,-57.5 @@ -54703,8 +44538,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21339 components: - pos: 14.5,-57.5 @@ -54712,8 +44545,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21340 components: - pos: 15.5,-57.5 @@ -54721,8 +44552,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21341 components: - pos: 16.5,-57.5 @@ -54730,8 +44559,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21342 components: - pos: 17.5,-57.5 @@ -54739,8 +44566,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21343 components: - pos: 18.5,-57.5 @@ -54748,8 +44573,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21344 components: - pos: 18.5,-56.5 @@ -54757,8 +44580,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21345 components: - pos: 18.5,-55.5 @@ -54766,8 +44587,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21346 components: - pos: 18.5,-54.5 @@ -54775,8 +44594,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21347 components: - pos: 18.5,-53.5 @@ -54784,8 +44601,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21348 components: - pos: 18.5,-52.5 @@ -54793,43 +44608,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21349 components: - pos: 18.5,-51.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21350 components: - pos: 18.5,-50.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21351 components: - pos: 18.5,-49.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21352 components: - pos: 18.5,-48.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21353 components: - pos: 18.5,-47.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21354 components: - pos: 18.5,-46.5 @@ -54837,8 +44640,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21355 components: - pos: 18.5,-45.5 @@ -54846,8 +44647,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21356 components: - pos: 19.5,-45.5 @@ -54855,8 +44654,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21357 components: - pos: 20.5,-45.5 @@ -54864,8 +44661,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21358 components: - pos: 21.5,-45.5 @@ -54873,8 +44668,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21359 components: - pos: 22.5,-45.5 @@ -54882,8 +44675,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21360 components: - pos: 23.5,-45.5 @@ -54891,8 +44682,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21361 components: - pos: 24.5,-45.5 @@ -54900,8 +44689,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21362 components: - pos: 25.5,-45.5 @@ -54909,8 +44696,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21363 components: - pos: 26.5,-45.5 @@ -54918,8 +44703,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21364 components: - pos: 27.5,-45.5 @@ -54927,8 +44710,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21365 components: - pos: 28.5,-45.5 @@ -54936,8 +44717,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21366 components: - pos: 29.5,-45.5 @@ -54945,8 +44724,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21367 components: - pos: 30.5,-45.5 @@ -54954,8 +44731,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21368 components: - pos: 31.5,-45.5 @@ -54963,43 +44738,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21369 components: - pos: 31.5,-44.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21370 components: - pos: 31.5,-43.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21371 components: - pos: 31.5,-42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21372 components: - pos: 31.5,-41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21373 components: - pos: 31.5,-40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21374 components: - pos: 31.5,-39.5 @@ -55007,8 +44770,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21375 components: - pos: 31.5,-38.5 @@ -55016,8 +44777,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21376 components: - pos: 31.5,-37.5 @@ -55025,8 +44784,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21377 components: - pos: 31.5,-36.5 @@ -55034,8 +44791,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21378 components: - pos: 31.5,-35.5 @@ -55043,8 +44798,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21379 components: - pos: 31.5,-34.5 @@ -55052,8 +44805,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21380 components: - pos: 31.5,-33.5 @@ -55061,8 +44812,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21381 components: - pos: 40.5,-23.5 @@ -55070,8 +44819,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21382 components: - pos: 40.5,-24.5 @@ -55079,8 +44826,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21383 components: - pos: 40.5,-25.5 @@ -55088,8 +44833,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21384 components: - pos: 40.5,-26.5 @@ -55097,8 +44840,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21385 components: - pos: 39.5,-26.5 @@ -55106,8 +44847,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21386 components: - pos: 38.5,-26.5 @@ -55115,8 +44854,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21387 components: - pos: 37.5,-26.5 @@ -55124,8 +44861,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21388 components: - pos: 36.5,-26.5 @@ -55133,8 +44868,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21389 components: - pos: 35.5,-26.5 @@ -55142,8 +44875,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21390 components: - pos: 34.5,-26.5 @@ -55151,8 +44882,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21391 components: - pos: 33.5,-26.5 @@ -55160,8 +44889,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21392 components: - pos: 32.5,-26.5 @@ -55169,8 +44896,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21393 components: - pos: 31.5,-26.5 @@ -55178,8 +44903,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21394 components: - pos: 31.5,-32.5 @@ -55187,8 +44910,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21395 components: - pos: 31.5,-31.5 @@ -55196,8 +44917,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21396 components: - pos: 31.5,-30.5 @@ -55205,8 +44924,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21397 components: - pos: 31.5,-29.5 @@ -55214,8 +44931,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21398 components: - pos: 31.5,-28.5 @@ -55223,8 +44938,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21399 components: - pos: 31.5,-27.5 @@ -55232,8 +44945,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21400 components: - pos: -39.5,-40.5 @@ -55241,8 +44952,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21401 components: - pos: -39.5,-41.5 @@ -55250,8 +44959,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21402 components: - pos: -39.5,-42.5 @@ -55259,8 +44966,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21403 components: - pos: -39.5,-43.5 @@ -55268,50 +44973,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21404 components: - pos: -39.5,-44.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21405 components: - pos: -39.5,-45.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21406 components: - pos: -39.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21407 components: - pos: -39.5,-47.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21408 components: - pos: -38.5,-47.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21409 components: - pos: -38.5,-48.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21410 components: - pos: -38.5,-49.5 @@ -55319,8 +45010,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21411 components: - pos: -38.5,-50.5 @@ -55328,8 +45017,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21412 components: - pos: -38.5,-51.5 @@ -55337,8 +45024,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21413 components: - pos: -39.5,-51.5 @@ -55346,8 +45031,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21414 components: - pos: -39.5,-52.5 @@ -55355,8 +45038,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21415 components: - pos: -39.5,-53.5 @@ -55364,8 +45045,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21416 components: - pos: -39.5,-54.5 @@ -55373,8 +45052,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21417 components: - pos: -39.5,-55.5 @@ -55382,8 +45059,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21418 components: - pos: -39.5,-56.5 @@ -55391,8 +45066,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21419 components: - pos: -38.5,-56.5 @@ -55400,8 +45073,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21420 components: - pos: -38.5,-57.5 @@ -55409,8 +45080,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21421 components: - pos: -38.5,-58.5 @@ -55418,8 +45087,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21422 components: - pos: -38.5,-59.5 @@ -55427,8 +45094,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21423 components: - pos: -38.5,-60.5 @@ -55436,8 +45101,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21424 components: - pos: -7.5,-41.5 @@ -55445,8 +45108,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21425 components: - pos: -6.5,-41.5 @@ -55454,8 +45115,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21426 components: - pos: -6.5,-42.5 @@ -55463,8 +45122,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21427 components: - pos: -6.5,-43.5 @@ -55472,8 +45129,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21428 components: - pos: -6.5,-44.5 @@ -55481,8 +45136,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21429 components: - pos: -6.5,-45.5 @@ -55490,8 +45143,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21430 components: - pos: -6.5,-46.5 @@ -55499,8 +45150,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21431 components: - pos: -6.5,-47.5 @@ -55508,8 +45157,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21432 components: - pos: -6.5,-48.5 @@ -55517,8 +45164,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21433 components: - pos: -6.5,-49.5 @@ -55526,8 +45171,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21434 components: - pos: -6.5,-50.5 @@ -55535,8 +45178,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21435 components: - pos: -6.5,-51.5 @@ -55544,8 +45185,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21436 components: - pos: -6.5,-52.5 @@ -55553,8 +45192,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21437 components: - pos: -6.5,-53.5 @@ -55562,8 +45199,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21438 components: - pos: -6.5,-54.5 @@ -55571,8 +45206,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21439 components: - pos: -6.5,-55.5 @@ -55580,8 +45213,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21440 components: - pos: -6.5,-56.5 @@ -55589,8 +45220,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21441 components: - pos: -6.5,-57.5 @@ -55598,8 +45227,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21442 components: - pos: -6.5,-58.5 @@ -55607,8 +45234,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21443 components: - pos: -13.5,-61.5 @@ -55616,8 +45241,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21444 components: - pos: -13.5,-60.5 @@ -55625,8 +45248,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21445 components: - pos: -13.5,-59.5 @@ -55634,8 +45255,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21446 components: - pos: -13.5,-58.5 @@ -55643,8 +45262,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21447 components: - pos: -12.5,-58.5 @@ -55652,8 +45269,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21448 components: - pos: -11.5,-58.5 @@ -55661,8 +45276,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21449 components: - pos: -10.5,-58.5 @@ -55670,8 +45283,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21450 components: - pos: -9.5,-58.5 @@ -55679,8 +45290,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21451 components: - pos: -8.5,-58.5 @@ -55688,8 +45297,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21452 components: - pos: -7.5,-58.5 @@ -55697,8 +45304,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22416 components: - pos: 38.5,-55.5 @@ -55706,8 +45311,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22417 components: - pos: 38.5,-54.5 @@ -55715,8 +45318,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22418 components: - pos: 38.5,-53.5 @@ -55724,8 +45325,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22419 components: - pos: 38.5,-52.5 @@ -55733,8 +45332,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22420 components: - pos: 38.5,-51.5 @@ -55742,8 +45339,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22421 components: - pos: 38.5,-50.5 @@ -55751,8 +45346,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22422 components: - pos: 38.5,-49.5 @@ -55760,8 +45353,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22423 components: - pos: 37.5,-49.5 @@ -55769,8 +45360,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22424 components: - pos: 37.5,-48.5 @@ -55778,8 +45367,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22425 components: - pos: 37.5,-47.5 @@ -55787,8 +45374,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22426 components: - pos: 37.5,-46.5 @@ -55796,8 +45381,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22427 components: - pos: 34.5,-46.5 @@ -55805,8 +45388,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22428 components: - pos: 35.5,-46.5 @@ -55814,8 +45395,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22429 components: - pos: 33.5,-46.5 @@ -55823,8 +45402,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22430 components: - pos: 36.5,-46.5 @@ -55832,8 +45409,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22431 components: - pos: 32.5,-46.5 @@ -55841,8 +45416,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22432 components: - pos: 31.5,-46.5 @@ -55850,120 +45423,86 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22769 components: - pos: -11.5,-43.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23229 components: - pos: 44.5,16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23243 components: - pos: 44.5,17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23254 components: - pos: 44.5,15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23255 components: - pos: 45.5,15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23256 components: - pos: 46.5,15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23257 components: - pos: 47.5,15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23258 components: - pos: 48.5,15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23259 components: - pos: 48.5,16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23260 components: - pos: 48.5,17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23261 components: - pos: 48.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23262 components: - pos: 48.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23263 components: - pos: 48.5,20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23264 components: - pos: 47.5,20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23265 components: - pos: 46.5,20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23266 components: - pos: 45.5,20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23267 components: - pos: 44.5,20.5 @@ -55971,8 +45510,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23268 components: - pos: 44.5,21.5 @@ -55980,8 +45517,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23269 components: - pos: 44.5,22.5 @@ -55989,8 +45524,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23270 components: - pos: 44.5,23.5 @@ -55998,8 +45531,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23271 components: - pos: 44.5,24.5 @@ -56007,8 +45538,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23272 components: - pos: 44.5,25.5 @@ -56016,50 +45545,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23273 components: - pos: 43.5,17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23274 components: - pos: 43.5,16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23275 components: - pos: 43.5,15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23276 components: - pos: 43.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23277 components: - pos: 43.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23278 components: - pos: 44.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23279 components: - pos: 45.5,13.5 @@ -56067,106 +45582,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23280 components: - pos: 46.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23281 components: - pos: 47.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23282 components: - pos: 48.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23283 components: - pos: 49.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23284 components: - pos: 50.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23285 components: - pos: 50.5,12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23286 components: - pos: 50.5,11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23287 components: - pos: 50.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23288 components: - pos: 50.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23289 components: - pos: 50.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23290 components: - pos: 50.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23291 components: - pos: 50.5,6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23292 components: - pos: 50.5,5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23293 components: - pos: 50.5,4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23634 components: - pos: 59.5,14.5 @@ -56174,8 +45659,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23635 components: - pos: 59.5,15.5 @@ -56183,8 +45666,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23636 components: - pos: 59.5,16.5 @@ -56192,8 +45673,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23637 components: - pos: 59.5,24.5 @@ -56201,8 +45680,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23638 components: - pos: 59.5,25.5 @@ -56210,8 +45687,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23639 components: - pos: 59.5,26.5 @@ -56219,148 +45694,106 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23640 components: - pos: 59.5,27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23641 components: - pos: 58.5,27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23642 components: - pos: 57.5,27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23643 components: - pos: 56.5,27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23644 components: - pos: 59.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23645 components: - pos: 58.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23646 components: - pos: 57.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23647 components: - pos: 56.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23648 components: - pos: 55.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23649 components: - pos: 54.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23650 components: - pos: 53.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23651 components: - pos: 53.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23652 components: - pos: 53.5,15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23653 components: - pos: 53.5,16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23654 components: - pos: 53.5,17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23655 components: - pos: 53.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23656 components: - pos: 53.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23657 components: - pos: 53.5,20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23658 components: - pos: 53.5,21.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23659 components: - pos: 53.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23660 components: - pos: 53.5,23.5 @@ -56368,71 +45801,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23661 components: - pos: 53.5,24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23662 components: - pos: 53.5,25.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23663 components: - pos: 53.5,26.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23665 components: - pos: 54.5,27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23666 components: - pos: 52.5,20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23667 components: - pos: 55.5,27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23668 components: - pos: 51.5,20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23669 components: - pos: 50.5,20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23670 components: - pos: 49.5,20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23713 components: - pos: 47.5,21.5 @@ -56440,8 +45853,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23714 components: - pos: 47.5,19.5 @@ -56449,8 +45860,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23715 components: - pos: 43.5,18.5 @@ -56458,8 +45867,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23716 components: - pos: 42.5,18.5 @@ -56467,64 +45874,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23813 components: - pos: 54.5,20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23890 components: - pos: 54.5,31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23891 components: - pos: 54.5,30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23892 components: - pos: 55.5,30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23893 components: - pos: 56.5,30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23894 components: - pos: 57.5,30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23942 components: - pos: 55.5,20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23943 components: - pos: 56.5,20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23944 components: - pos: 57.5,20.5 @@ -56532,15 +45921,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24055 components: - pos: 54.5,26.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 25988 components: - pos: 108.5,2.5 @@ -56548,8 +45933,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25989 components: - pos: 109.5,2.5 @@ -56557,8 +45940,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25990 components: - pos: 110.5,2.5 @@ -56566,8 +45947,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25991 components: - pos: 111.5,2.5 @@ -56575,36 +45954,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26389 components: - pos: 109.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26390 components: - pos: 109.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26391 components: - pos: 109.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26392 components: - pos: 110.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - proto: CableHVStack entities: - uid: 1551 @@ -56636,8 +46005,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 144 components: - pos: 13.5,-0.5 @@ -56645,8 +46012,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 145 components: - pos: 13.5,-1.5 @@ -56654,8 +46019,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 146 components: - pos: 13.5,-2.5 @@ -56663,8 +46026,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 147 components: - pos: 13.5,-3.5 @@ -56672,78 +46033,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 148 components: - pos: 12.5,-3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 149 components: - pos: 11.5,-3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 150 components: - pos: 10.5,-3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 151 components: - pos: 9.5,-3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 152 components: - pos: 8.5,-3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 153 components: - pos: 7.5,-3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 154 components: - pos: 7.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 155 components: - pos: 7.5,-1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 156 components: - pos: 7.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 157 components: - pos: 7.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 158 components: - pos: 7.5,1.5 @@ -56751,8 +46090,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 159 components: - pos: -14.5,1.5 @@ -56760,8 +46097,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 160 components: - pos: -13.5,1.5 @@ -56769,8 +46104,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 161 components: - pos: -12.5,1.5 @@ -56778,8 +46111,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 162 components: - pos: -11.5,1.5 @@ -56787,36 +46118,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 163 components: - pos: -10.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 164 components: - pos: -9.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 165 components: - pos: -8.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 166 components: - pos: -8.5,2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 167 components: - pos: -8.5,3.5 @@ -56824,127 +46145,91 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 168 components: - pos: -9.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 169 components: - pos: -9.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 170 components: - pos: -9.5,-1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 171 components: - pos: -9.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 172 components: - pos: -10.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 173 components: - pos: -11.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 174 components: - pos: -12.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 175 components: - pos: -13.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 176 components: - pos: -14.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 177 components: - pos: -15.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 178 components: - pos: -16.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 179 components: - pos: -17.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 180 components: - pos: -18.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 181 components: - pos: -18.5,-1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 182 components: - pos: -18.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 183 components: - pos: -18.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 184 components: - pos: -18.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 185 components: - pos: -18.5,2.5 @@ -56952,78 +46237,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 187 components: - pos: 7.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 188 components: - pos: 6.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 189 components: - pos: 5.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 190 components: - pos: 4.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 191 components: - pos: 3.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 192 components: - pos: 2.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 193 components: - pos: 1.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 194 components: - pos: 0.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 195 components: - pos: -0.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 196 components: - pos: -0.5,-3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 197 components: - pos: -0.5,-2.5 @@ -57031,8 +46294,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 198 components: - pos: -8.5,4.5 @@ -57040,8 +46301,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 199 components: - pos: -8.5,5.5 @@ -57049,8 +46308,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 200 components: - pos: -9.5,3.5 @@ -57058,8 +46315,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 201 components: - pos: -7.5,5.5 @@ -57067,8 +46322,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 202 components: - pos: -6.5,5.5 @@ -57076,8 +46329,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 203 components: - pos: -5.5,5.5 @@ -57085,29 +46336,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 204 components: - pos: -5.5,4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 205 components: - pos: -4.5,4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 206 components: - pos: -3.5,4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 207 components: - pos: -3.5,5.5 @@ -57115,8 +46358,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 208 components: - pos: -2.5,5.5 @@ -57124,8 +46365,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 209 components: - pos: -1.5,5.5 @@ -57133,29 +46372,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 210 components: - pos: -1.5,4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 211 components: - pos: -0.5,4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 212 components: - pos: 0.5,4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 213 components: - pos: 0.5,5.5 @@ -57163,8 +46394,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 214 components: - pos: 1.5,5.5 @@ -57172,8 +46401,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 215 components: - pos: 2.5,5.5 @@ -57181,8 +46408,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 216 components: - pos: 3.5,5.5 @@ -57190,8 +46415,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 217 components: - pos: 3.5,4.5 @@ -57199,43 +46422,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 218 components: - pos: 2.5,4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 219 components: - pos: 2.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 220 components: - pos: 2.5,2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 221 components: - pos: 3.5,2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 222 components: - pos: 4.5,2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 223 components: - pos: 4.5,3.5 @@ -57243,15 +46454,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 224 components: - pos: -0.5,-5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 225 components: - pos: -0.5,-6.5 @@ -57259,8 +46466,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 226 components: - pos: -1.5,-6.5 @@ -57268,8 +46473,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 227 components: - pos: -2.5,-6.5 @@ -57277,8 +46480,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 228 components: - pos: -3.5,-6.5 @@ -57286,8 +46487,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 229 components: - pos: -4.5,-6.5 @@ -57295,15 +46494,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 230 components: - pos: -13.5,-3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 231 components: - pos: -13.5,-4.5 @@ -57311,15 +46506,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 232 components: - pos: -17.5,-3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 233 components: - pos: -17.5,-4.5 @@ -57327,8 +46518,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 234 components: - pos: -19.5,0.5 @@ -57336,8 +46525,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1634 components: - pos: -12.5,-17.5 @@ -57345,8 +46532,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1635 components: - pos: -10.5,-10.5 @@ -57354,22 +46539,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1639 components: - pos: -10.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1684 components: - pos: -10.5,-9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1685 components: - pos: -10.5,-11.5 @@ -57377,29 +46556,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1688 components: - pos: -11.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1689 components: - pos: -12.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1690 components: - pos: -12.5,-9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1691 components: - pos: -12.5,-10.5 @@ -57407,8 +46578,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1692 components: - pos: -12.5,-11.5 @@ -57416,8 +46585,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1693 components: - pos: -12.5,-12.5 @@ -57425,8 +46592,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1694 components: - pos: -12.5,-13.5 @@ -57434,8 +46599,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1695 components: - pos: -12.5,-14.5 @@ -57443,8 +46606,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1696 components: - pos: -12.5,-15.5 @@ -57452,8 +46613,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1697 components: - pos: -12.5,-16.5 @@ -57461,36 +46620,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1699 components: - pos: -12.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1700 components: - pos: -13.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1701 components: - pos: -14.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1702 components: - pos: -15.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1703 components: - pos: -15.5,-17.5 @@ -57498,99 +46647,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1704 components: - pos: -9.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1705 components: - pos: -8.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1706 components: - pos: -7.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1707 components: - pos: -6.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1708 components: - pos: -5.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1709 components: - pos: -4.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1710 components: - pos: -3.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1711 components: - pos: -2.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1712 components: - pos: -1.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1713 components: - pos: -0.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1714 components: - pos: -0.5,-9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1715 components: - pos: -0.5,-10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1716 components: - pos: -0.5,-11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1717 components: - pos: -0.5,-12.5 @@ -57598,50 +46719,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1875 components: - pos: 0.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1876 components: - pos: 1.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1877 components: - pos: 2.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1878 components: - pos: 3.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1879 components: - pos: 4.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1880 components: - pos: 5.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1881 components: - pos: 5.5,-9.5 @@ -57649,8 +46756,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1882 components: - pos: 6.5,-9.5 @@ -57658,8 +46763,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1883 components: - pos: 7.5,-9.5 @@ -57667,8 +46770,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1884 components: - pos: 7.5,-10.5 @@ -57676,15 +46777,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1885 components: - pos: 8.5,-10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1886 components: - pos: 9.5,-10.5 @@ -57692,8 +46789,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1887 components: - pos: 9.5,-9.5 @@ -57701,8 +46796,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1888 components: - pos: 10.5,-9.5 @@ -57710,8 +46803,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1889 components: - pos: 11.5,-9.5 @@ -57719,64 +46810,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1890 components: - pos: 11.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1891 components: - pos: 12.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1892 components: - pos: 13.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1893 components: - pos: 14.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1894 components: - pos: 15.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1895 components: - pos: 15.5,-9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1896 components: - pos: 15.5,-10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1897 components: - pos: 14.5,-10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1898 components: - pos: 13.5,-10.5 @@ -57784,8 +46857,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1899 components: - pos: 13.5,-11.5 @@ -57793,43 +46864,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1900 components: - pos: 14.5,-11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1901 components: - pos: 14.5,-12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1902 components: - pos: 14.5,-13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1903 components: - pos: 14.5,-14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1904 components: - pos: 14.5,-15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1905 components: - pos: 13.5,-15.5 @@ -57837,8 +46896,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1906 components: - pos: 13.5,-16.5 @@ -57846,92 +46903,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1907 components: - pos: -0.5,-13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1908 components: - pos: -0.5,-14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1909 components: - pos: -0.5,-15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1910 components: - pos: -0.5,-16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1911 components: - pos: 0.5,-16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1912 components: - pos: 0.5,-17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1913 components: - pos: 0.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1914 components: - pos: 1.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1915 components: - pos: 2.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1916 components: - pos: 3.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1917 components: - pos: 4.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1918 components: - pos: 5.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1919 components: - pos: 5.5,-17.5 @@ -57939,8 +46970,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1920 components: - pos: 6.5,-17.5 @@ -57948,43 +46977,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1921 components: - pos: 6.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1922 components: - pos: 7.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1923 components: - pos: 8.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1924 components: - pos: 9.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1925 components: - pos: 10.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1926 components: - pos: 10.5,-17.5 @@ -57992,8 +47009,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1927 components: - pos: 11.5,-17.5 @@ -58001,22 +47016,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1928 components: - pos: 1.5,-16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1929 components: - pos: 2.5,-16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 1930 components: - pos: 3.5,-16.5 @@ -58024,8 +47033,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1931 components: - pos: 3.5,-15.5 @@ -58033,8 +47040,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1960 components: - pos: 9.5,-11.5 @@ -58042,8 +47047,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2785 components: - pos: 34.5,-1.5 @@ -58051,8 +47054,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2786 components: - pos: 34.5,-0.5 @@ -58060,8 +47061,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2787 components: - pos: 36.5,-0.5 @@ -58069,8 +47068,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2789 components: - pos: 35.5,-0.5 @@ -58078,8 +47075,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2791 components: - pos: 37.5,-0.5 @@ -58087,8 +47082,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2792 components: - pos: 38.5,-0.5 @@ -58096,8 +47089,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2793 components: - pos: 39.5,-0.5 @@ -58105,8 +47096,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2794 components: - pos: 40.5,-0.5 @@ -58114,8 +47103,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2795 components: - pos: 40.5,-1.5 @@ -58123,8 +47110,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2796 components: - pos: 40.5,-2.5 @@ -58132,8 +47117,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2797 components: - pos: 40.5,-3.5 @@ -58141,8 +47124,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2798 components: - pos: 40.5,-4.5 @@ -58150,8 +47131,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2799 components: - pos: 40.5,-5.5 @@ -58159,8 +47138,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2800 components: - pos: 40.5,-6.5 @@ -58168,8 +47145,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2801 components: - pos: 39.5,-6.5 @@ -58177,218 +47152,156 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2802 components: - pos: 38.5,-6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2803 components: - pos: 37.5,-6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2804 components: - pos: 37.5,-5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2805 components: - pos: 37.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2806 components: - pos: 37.5,-3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2807 components: - pos: 37.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2808 components: - pos: 36.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2809 components: - pos: 35.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2810 components: - pos: 34.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2811 components: - pos: 33.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2812 components: - pos: 32.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2813 components: - pos: 31.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2814 components: - pos: 30.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2815 components: - pos: 29.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2816 components: - pos: 28.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2817 components: - pos: 27.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2818 components: - pos: 26.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2819 components: - pos: 26.5,-3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2820 components: - pos: 26.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2821 components: - pos: 26.5,-5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2822 components: - pos: 26.5,-6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2823 components: - pos: 26.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2824 components: - pos: 26.5,-8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2825 components: - pos: 26.5,-9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2826 components: - pos: 27.5,-9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2827 components: - pos: 27.5,-10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2828 components: - pos: 27.5,-11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2829 components: - pos: 27.5,-12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2830 components: - pos: 27.5,-13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2831 components: - pos: 26.5,-13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2832 components: - pos: 25.5,-13.5 @@ -58396,22 +47309,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2833 components: - pos: 24.5,-13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2834 components: - pos: 24.5,-12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2835 components: - pos: 24.5,-11.5 @@ -58419,43 +47326,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2836 components: - pos: 27.5,-14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2837 components: - pos: 27.5,-15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2838 components: - pos: 28.5,-15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2839 components: - pos: 29.5,-15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2840 components: - pos: 30.5,-15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2841 components: - pos: 31.5,-14.5 @@ -58463,15 +47358,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2842 components: - pos: 31.5,-15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2843 components: - pos: 41.5,-6.5 @@ -58479,8 +47370,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2844 components: - pos: 43.5,-6.5 @@ -58488,8 +47377,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2845 components: - pos: 43.5,-6.5 @@ -58497,8 +47384,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2846 components: - pos: 42.5,-6.5 @@ -58506,8 +47391,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2847 components: - pos: 43.5,-7.5 @@ -58515,8 +47398,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2848 components: - pos: 43.5,-8.5 @@ -58524,8 +47405,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2849 components: - pos: 43.5,-9.5 @@ -58533,8 +47412,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2850 components: - pos: 43.5,-10.5 @@ -58542,8 +47419,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2851 components: - pos: 43.5,-11.5 @@ -58551,8 +47426,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2852 components: - pos: 43.5,-12.5 @@ -58560,8 +47433,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2853 components: - pos: 43.5,-13.5 @@ -58569,8 +47440,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2854 components: - pos: 43.5,-14.5 @@ -58578,8 +47447,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2855 components: - pos: 43.5,-15.5 @@ -58587,8 +47454,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2856 components: - pos: 42.5,-15.5 @@ -58596,8 +47461,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2857 components: - pos: 41.5,-15.5 @@ -58605,127 +47468,91 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2858 components: - pos: 40.5,-15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2859 components: - pos: 39.5,-15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2860 components: - pos: 38.5,-15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2861 components: - pos: 37.5,-15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2862 components: - pos: 36.5,-15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2863 components: - pos: 35.5,-15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2864 components: - pos: 34.5,-15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2865 components: - pos: 34.5,-14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2866 components: - pos: 34.5,-13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2867 components: - pos: 34.5,-12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2868 components: - pos: 34.5,-11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2869 components: - pos: 33.5,-11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2870 components: - pos: 32.5,-11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2871 components: - pos: 31.5,-11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2872 components: - pos: 30.5,-11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2873 components: - pos: 29.5,-11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 2874 components: - pos: 28.5,-11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4524 components: - pos: -33.5,25.5 @@ -58733,8 +47560,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4525 components: - pos: -33.5,26.5 @@ -58742,8 +47567,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4526 components: - pos: -32.5,26.5 @@ -58751,8 +47574,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4527 components: - pos: -31.5,26.5 @@ -58760,8 +47581,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4528 components: - pos: -31.5,25.5 @@ -58769,71 +47588,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4529 components: - pos: -31.5,24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4530 components: - pos: -31.5,23.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4531 components: - pos: -31.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4532 components: - pos: -32.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4533 components: - pos: -33.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4534 components: - pos: -34.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4535 components: - pos: -35.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4536 components: - pos: -36.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4537 components: - pos: -37.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4538 components: - pos: -38.5,22.5 @@ -58841,15 +47640,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4539 components: - pos: -31.5,21.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4540 components: - pos: -31.5,19.5 @@ -58857,15 +47652,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4541 components: - pos: -31.5,20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4542 components: - pos: -30.5,19.5 @@ -58873,8 +47664,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4543 components: - pos: -29.5,19.5 @@ -58882,8 +47671,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4544 components: - pos: -28.5,19.5 @@ -58891,8 +47678,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4545 components: - pos: -27.5,19.5 @@ -58900,8 +47685,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4546 components: - pos: -26.5,19.5 @@ -58909,8 +47692,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4547 components: - pos: -26.5,18.5 @@ -58918,8 +47699,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4548 components: - pos: -26.5,17.5 @@ -58927,8 +47706,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4549 components: - pos: -26.5,16.5 @@ -58936,8 +47713,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4550 components: - pos: -26.5,15.5 @@ -58945,8 +47720,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4551 components: - pos: -26.5,14.5 @@ -58954,8 +47727,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4552 components: - pos: -26.5,13.5 @@ -58963,8 +47734,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4553 components: - pos: -26.5,12.5 @@ -58972,8 +47741,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4554 components: - pos: -26.5,11.5 @@ -58981,8 +47748,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4555 components: - pos: -26.5,10.5 @@ -58990,8 +47755,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4558 components: - pos: -43.5,7.5 @@ -58999,155 +47762,111 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4559 components: - pos: -43.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4560 components: - pos: -42.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4561 components: - pos: -41.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4562 components: - pos: -40.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4563 components: - pos: -39.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4564 components: - pos: -38.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4565 components: - pos: -37.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4566 components: - pos: -36.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4567 components: - pos: -36.5,21.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4568 components: - pos: -36.5,20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4569 components: - pos: -36.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4570 components: - pos: -36.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4571 components: - pos: -36.5,17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4572 components: - pos: -36.5,16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4573 components: - pos: -36.5,15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4574 components: - pos: -36.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4575 components: - pos: -36.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4576 components: - pos: -36.5,12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4577 components: - pos: -36.5,11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4578 components: - pos: -36.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 4579 components: - pos: -36.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5883 components: - pos: -52.5,5.5 @@ -59155,8 +47874,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5884 components: - pos: -51.5,5.5 @@ -59164,8 +47881,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5885 components: - pos: -50.5,5.5 @@ -59173,8 +47888,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5886 components: - pos: -49.5,5.5 @@ -59182,8 +47895,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5887 components: - pos: -48.5,5.5 @@ -59191,8 +47902,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5888 components: - pos: -47.5,5.5 @@ -59200,8 +47909,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5889 components: - pos: -46.5,5.5 @@ -59209,8 +47916,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5890 components: - pos: -52.5,4.5 @@ -59218,197 +47923,141 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5891 components: - pos: -46.5,4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5892 components: - pos: -46.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5893 components: - pos: -46.5,2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5894 components: - pos: -46.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5895 components: - pos: -46.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5896 components: - pos: -46.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5897 components: - pos: -46.5,-1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5898 components: - pos: -46.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5899 components: - pos: -46.5,-3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5900 components: - pos: -46.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5901 components: - pos: -47.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5902 components: - pos: -48.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5903 components: - pos: -49.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5904 components: - pos: -50.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5905 components: - pos: -51.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5906 components: - pos: -52.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5907 components: - pos: -53.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5908 components: - pos: -54.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5909 components: - pos: -55.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5910 components: - pos: -56.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5911 components: - pos: -56.5,-5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5912 components: - pos: -56.5,-6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5913 components: - pos: -56.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5914 components: - pos: -57.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5915 components: - pos: -58.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5916 components: - pos: -59.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5917 components: - pos: -60.5,-7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 5918 components: - pos: -60.5,-6.5 @@ -59416,8 +48065,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6262 components: - pos: -11.5,28.5 @@ -59425,8 +48072,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6263 components: - pos: -8.5,28.5 @@ -59434,29 +48079,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6264 components: - pos: 9.5,48.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6343 components: - pos: 12.5,46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6345 components: - pos: 10.5,46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6346 components: - pos: 10.5,49.5 @@ -59464,8 +48101,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6358 components: - pos: 8.5,49.5 @@ -59473,8 +48108,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6447 components: - pos: -9.5,49.5 @@ -59482,8 +48115,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6475 components: - pos: -17.5,32.5 @@ -59491,8 +48122,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6501 components: - pos: -11.5,11.5 @@ -59500,15 +48129,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6510 components: - pos: -12.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6566 components: - pos: -12.5,6.5 @@ -59516,8 +48141,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6567 components: - pos: -12.5,5.5 @@ -59525,8 +48148,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6568 components: - pos: -12.5,4.5 @@ -59534,8 +48155,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6569 components: - pos: -12.5,3.5 @@ -59543,8 +48162,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6570 components: - pos: -12.5,2.5 @@ -59552,43 +48169,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6597 components: - pos: -12.5,48.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6598 components: - pos: -11.5,48.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6599 components: - pos: -10.5,48.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6600 components: - pos: -9.5,48.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6603 components: - pos: -11.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6605 components: - pos: -11.5,43.5 @@ -59596,8 +48201,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6618 components: - pos: -11.5,46.5 @@ -59605,15 +48208,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6622 components: - pos: -12.5,47.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6638 components: - pos: -7.5,29.5 @@ -59621,29 +48220,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6663 components: - pos: 10.5,41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6668 components: - pos: 9.5,43.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6669 components: - pos: 9.5,45.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6672 components: - pos: 5.5,47.5 @@ -59651,15 +48242,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6680 components: - pos: 8.5,46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6681 components: - pos: 13.5,47.5 @@ -59667,29 +48254,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6682 components: - pos: 11.5,46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 6697 components: - pos: -12.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7096 components: - pos: -12.5,30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7188 components: - pos: -10.5,29.5 @@ -59697,15 +48276,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7241 components: - pos: -12.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7243 components: - pos: 12.5,42.5 @@ -59713,22 +48288,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7254 components: - pos: 9.5,44.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7255 components: - pos: 9.5,47.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7257 components: - pos: 5.5,45.5 @@ -59736,8 +48305,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7261 components: - pos: 4.5,43.5 @@ -59745,8 +48312,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7262 components: - pos: 13.5,45.5 @@ -59754,92 +48319,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7331 components: - pos: -14.5,31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7370 components: - pos: -13.5,31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7371 components: - pos: -12.5,31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7372 components: - pos: -11.5,31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7373 components: - pos: -10.5,31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7374 components: - pos: -9.5,31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7375 components: - pos: -8.5,31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7376 components: - pos: -7.5,31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7377 components: - pos: -6.5,31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7378 components: - pos: -6.5,32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7379 components: - pos: -6.5,33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7380 components: - pos: -6.5,34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7381 components: - pos: -6.5,35.5 @@ -59847,113 +48386,81 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7415 components: - pos: -12.5,46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7416 components: - pos: -12.5,45.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7417 components: - pos: -12.5,44.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7418 components: - pos: -12.5,43.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7419 components: - pos: -12.5,42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7420 components: - pos: -12.5,41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7421 components: - pos: -12.5,40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7422 components: - pos: -12.5,39.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7423 components: - pos: -12.5,38.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7424 components: - pos: -12.5,37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7425 components: - pos: -12.5,36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7426 components: - pos: -12.5,35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7427 components: - pos: -12.5,34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7428 components: - pos: -12.5,33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7429 components: - pos: -12.5,32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7430 components: - pos: 20.5,40.5 @@ -59961,8 +48468,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7431 components: - pos: 20.5,39.5 @@ -59970,8 +48475,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7434 components: - pos: 23.5,39.5 @@ -59979,8 +48482,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7435 components: - pos: 24.5,39.5 @@ -59988,8 +48489,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7436 components: - pos: 24.5,38.5 @@ -59997,8 +48496,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7437 components: - pos: 24.5,37.5 @@ -60006,8 +48503,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7439 components: - pos: 22.5,37.5 @@ -60015,8 +48510,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7440 components: - pos: 21.5,37.5 @@ -60024,8 +48517,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7441 components: - pos: 20.5,37.5 @@ -60033,8 +48524,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7442 components: - pos: 19.5,37.5 @@ -60042,8 +48531,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7443 components: - pos: 18.5,37.5 @@ -60051,8 +48538,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7444 components: - pos: 17.5,37.5 @@ -60060,8 +48545,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7445 components: - pos: 16.5,37.5 @@ -60069,71 +48552,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7446 components: - pos: 15.5,37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7447 components: - pos: 14.5,37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7448 components: - pos: 13.5,37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7449 components: - pos: 12.5,37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7450 components: - pos: 11.5,37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7451 components: - pos: 11.5,38.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7452 components: - pos: 11.5,39.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7453 components: - pos: 11.5,40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7454 components: - pos: 11.5,41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7455 components: - pos: -13.5,29.5 @@ -60141,50 +48604,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7457 components: - pos: 9.5,41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7458 components: - pos: 8.5,41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7459 components: - pos: 7.5,41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7460 components: - pos: 6.5,41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7461 components: - pos: 5.5,41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7462 components: - pos: 4.5,41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7463 components: - pos: 3.5,41.5 @@ -60192,8 +48641,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7464 components: - pos: 9.5,33.5 @@ -60201,106 +48648,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7465 components: - pos: 9.5,32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7466 components: - pos: 8.5,32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7467 components: - pos: 7.5,32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7468 components: - pos: 7.5,33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7469 components: - pos: 7.5,34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7470 components: - pos: 7.5,35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7471 components: - pos: 7.5,36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7472 components: - pos: 8.5,36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7473 components: - pos: 9.5,36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7474 components: - pos: 10.5,36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7475 components: - pos: 11.5,36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7476 components: - pos: -12.5,29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7477 components: - pos: -12.5,28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7478 components: - pos: -12.5,27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7479 components: - pos: -12.5,26.5 @@ -60308,8 +48725,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7480 components: - pos: -13.5,26.5 @@ -60317,36 +48732,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7481 components: - pos: -9.5,30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7482 components: - pos: -9.5,29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7483 components: - pos: -9.5,28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7484 components: - pos: -9.5,27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7485 components: - pos: -9.5,26.5 @@ -60354,8 +48759,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7486 components: - pos: -10.5,26.5 @@ -60363,36 +48766,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7487 components: - pos: -6.5,30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7488 components: - pos: -6.5,29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7489 components: - pos: -6.5,28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7490 components: - pos: -6.5,27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7491 components: - pos: -6.5,26.5 @@ -60400,8 +48793,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7492 components: - pos: -7.5,26.5 @@ -60409,29 +48800,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7493 components: - pos: -5.5,33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7494 components: - pos: -4.5,33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7495 components: - pos: -3.5,33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7496 components: - pos: -5.5,35.5 @@ -60439,50 +48822,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7497 components: - pos: -2.5,32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7498 components: - pos: -2.5,31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7499 components: - pos: -2.5,30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7500 components: - pos: -2.5,29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7501 components: - pos: -2.5,28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7502 components: - pos: -2.5,27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7503 components: - pos: -2.5,26.5 @@ -60490,8 +48859,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7504 components: - pos: -3.5,26.5 @@ -60499,8 +48866,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7505 components: - pos: -1.5,26.5 @@ -60508,64 +48873,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7506 components: - pos: 6.5,32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7507 components: - pos: 5.5,32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7508 components: - pos: 4.5,32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7509 components: - pos: 3.5,32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7510 components: - pos: 2.5,32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7511 components: - pos: 1.5,32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7512 components: - pos: 1.5,31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7513 components: - pos: 1.5,30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7514 components: - pos: 1.5,29.5 @@ -60573,22 +48920,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7515 components: - pos: 1.5,28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7516 components: - pos: 1.5,27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7517 components: - pos: 1.5,26.5 @@ -60596,15 +48937,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7518 components: - pos: 2.5,27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7519 components: - pos: 3.5,27.5 @@ -60612,8 +48949,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7520 components: - pos: 3.5,28.5 @@ -60621,15 +48956,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7521 components: - pos: 0.5,27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7522 components: - pos: -0.5,27.5 @@ -60637,8 +48968,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7523 components: - pos: -0.5,28.5 @@ -60646,8 +48975,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7524 components: - pos: -3.5,32.5 @@ -60655,8 +48982,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7525 components: - pos: -1.5,32.5 @@ -60664,8 +48989,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7526 components: - pos: -7.5,35.5 @@ -60673,29 +48996,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7527 components: - pos: -3.5,34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7528 components: - pos: -2.5,34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7529 components: - pos: -1.5,34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7530 components: - pos: -1.5,35.5 @@ -60703,29 +49018,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7531 components: - pos: -11.5,36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7532 components: - pos: -10.5,36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7533 components: - pos: -9.5,36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7534 components: - pos: -8.5,36.5 @@ -60733,8 +49040,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7693 components: - pos: 5.5,46.5 @@ -60742,15 +49047,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7699 components: - pos: 28.5,37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7710 components: - pos: 25.5,37.5 @@ -60758,15 +49059,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7711 components: - pos: 26.5,37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7753 components: - pos: -8.5,27.5 @@ -60774,8 +49071,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7754 components: - pos: -11.5,27.5 @@ -60783,8 +49078,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7755 components: - pos: -5.5,28.5 @@ -60792,8 +49085,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7765 components: - pos: -5.5,27.5 @@ -60801,15 +49092,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7787 components: - pos: -12.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7793 components: - pos: 9.5,49.5 @@ -60817,36 +49104,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7856 components: - pos: 9.5,42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7857 components: - pos: 9.5,46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7858 components: - pos: 7.5,46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7859 components: - pos: 4.5,42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7863 components: - pos: 14.5,43.5 @@ -60854,8 +49131,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7864 components: - pos: 13.5,46.5 @@ -60863,78 +49138,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7867 components: - pos: 29.5,37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7869 components: - pos: 6.5,46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7898 components: - pos: -15.5,31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7899 components: - pos: -16.5,31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7902 components: - pos: -17.5,31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7903 components: - pos: 12.5,41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7904 components: - pos: 13.5,41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7905 components: - pos: 14.5,41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7906 components: - pos: 14.5,42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7945 components: - pos: 22.5,40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 7951 components: - pos: 22.5,39.5 @@ -60942,15 +49195,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7952 components: - pos: 27.5,37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9535 components: - pos: -33.5,42.5 @@ -60958,8 +49207,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9536 components: - pos: -32.5,42.5 @@ -60967,15 +49214,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9537 components: - pos: -31.5,42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9538 components: - pos: -31.5,41.5 @@ -60983,15 +49226,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9631 components: - pos: -13.5,33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9632 components: - pos: -14.5,33.5 @@ -60999,8 +49238,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9633 components: - pos: -15.5,33.5 @@ -61008,8 +49245,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9634 components: - pos: -15.5,34.5 @@ -61017,8 +49252,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9635 components: - pos: -15.5,35.5 @@ -61026,8 +49259,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9636 components: - pos: -15.5,36.5 @@ -61035,8 +49266,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9637 components: - pos: -15.5,37.5 @@ -61044,8 +49273,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9638 components: - pos: -15.5,38.5 @@ -61053,8 +49280,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9639 components: - pos: -15.5,39.5 @@ -61062,8 +49287,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9640 components: - pos: -15.5,40.5 @@ -61071,8 +49294,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9641 components: - pos: -14.5,40.5 @@ -61080,99 +49301,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9797 components: - pos: -6.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9798 components: - pos: -7.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9799 components: - pos: -8.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9800 components: - pos: -9.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9801 components: - pos: -10.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9807 components: - pos: -5.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9808 components: - pos: -4.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9809 components: - pos: -3.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9810 components: - pos: -2.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9811 components: - pos: -1.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9812 components: - pos: -0.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9813 components: - pos: 0.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9814 components: - pos: 0.5,11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9815 components: - pos: 0.5,12.5 @@ -61180,8 +49373,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9897 components: - pos: 14.5,-3.5 @@ -61189,57 +49380,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9945 components: - pos: 6.5,31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9946 components: - pos: 6.5,30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9947 components: - pos: 6.5,29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9948 components: - pos: 6.5,28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9949 components: - pos: 6.5,27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9950 components: - pos: 6.5,26.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9951 components: - pos: 7.5,26.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9952 components: - pos: 8.5,26.5 @@ -61247,8 +49422,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9953 components: - pos: 9.5,26.5 @@ -61256,71 +49429,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9954 components: - pos: 10.5,26.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9955 components: - pos: 11.5,26.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9956 components: - pos: 11.5,27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9957 components: - pos: 11.5,28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9958 components: - pos: 11.5,29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9959 components: - pos: 11.5,30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9960 components: - pos: 11.5,31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9961 components: - pos: 11.5,32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 9962 components: - pos: 10.5,32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 10012 components: - pos: -14.5,37.5 @@ -61328,8 +49481,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10025 components: - pos: -31.5,28.5 @@ -61337,8 +49488,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10026 components: - pos: -31.5,27.5 @@ -61346,8 +49495,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10029 components: - pos: -31.5,29.5 @@ -61355,8 +49502,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10030 components: - pos: -31.5,30.5 @@ -61364,8 +49509,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10031 components: - pos: -30.5,30.5 @@ -61373,8 +49516,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10032 components: - pos: -29.5,30.5 @@ -61382,8 +49523,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10033 components: - pos: -28.5,30.5 @@ -61391,8 +49530,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10034 components: - pos: -27.5,30.5 @@ -61400,8 +49537,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10035 components: - pos: -26.5,30.5 @@ -61409,8 +49544,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10036 components: - pos: -26.5,29.5 @@ -61418,8 +49551,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10037 components: - pos: -21.5,25.5 @@ -61427,8 +49558,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10038 components: - pos: -20.5,25.5 @@ -61436,8 +49565,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10039 components: - pos: -21.5,26.5 @@ -61445,8 +49572,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10040 components: - pos: -21.5,27.5 @@ -61454,8 +49579,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10041 components: - pos: -21.5,28.5 @@ -61463,8 +49586,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10042 components: - pos: -21.5,29.5 @@ -61472,8 +49593,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10043 components: - pos: -21.5,30.5 @@ -61481,8 +49600,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10044 components: - pos: -21.5,31.5 @@ -61490,8 +49607,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10045 components: - pos: -21.5,32.5 @@ -61499,8 +49614,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10046 components: - pos: -21.5,33.5 @@ -61508,8 +49621,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10047 components: - pos: -20.5,33.5 @@ -61517,8 +49628,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10048 components: - pos: -19.5,33.5 @@ -61526,8 +49635,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10049 components: - pos: -18.5,33.5 @@ -61535,8 +49642,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10050 components: - pos: -17.5,33.5 @@ -61544,8 +49649,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10051 components: - pos: -16.5,33.5 @@ -61553,29 +49656,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10053 components: - pos: 6.5,23.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 10054 components: - pos: 6.5,24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 10055 components: - pos: 6.5,25.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 10056 components: - pos: 6.5,22.5 @@ -61583,8 +49678,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10082 components: - pos: 22.5,36.5 @@ -61592,8 +49685,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10083 components: - pos: 22.5,35.5 @@ -61601,8 +49692,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10084 components: - pos: 22.5,34.5 @@ -61610,8 +49699,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10085 components: - pos: 22.5,33.5 @@ -61619,8 +49706,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10086 components: - pos: 22.5,32.5 @@ -61628,8 +49713,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10087 components: - pos: 22.5,31.5 @@ -61637,8 +49720,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10088 components: - pos: 22.5,30.5 @@ -61646,8 +49727,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10089 components: - pos: 22.5,29.5 @@ -61655,8 +49734,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10090 components: - pos: 21.5,29.5 @@ -61664,8 +49741,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10091 components: - pos: 21.5,28.5 @@ -61673,8 +49748,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10092 components: - pos: 20.5,28.5 @@ -61682,8 +49755,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10093 components: - pos: 19.5,28.5 @@ -61691,8 +49762,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10094 components: - pos: 18.5,28.5 @@ -61700,8 +49769,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10095 components: - pos: 17.5,28.5 @@ -61709,8 +49776,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10096 components: - pos: 16.5,28.5 @@ -61718,8 +49783,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10097 components: - pos: 16.5,27.5 @@ -61727,8 +49790,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10098 components: - pos: 16.5,26.5 @@ -61736,8 +49797,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10099 components: - pos: 16.5,25.5 @@ -61745,8 +49804,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10100 components: - pos: 16.5,24.5 @@ -61754,8 +49811,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10101 components: - pos: 16.5,23.5 @@ -61763,8 +49818,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10102 components: - pos: 15.5,23.5 @@ -61772,8 +49825,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10103 components: - pos: 14.5,23.5 @@ -61781,8 +49832,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10104 components: - pos: 13.5,23.5 @@ -61790,8 +49839,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10105 components: - pos: 13.5,22.5 @@ -61799,8 +49846,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10544 components: - pos: -48.5,-56.5 @@ -61808,8 +49853,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10671 components: - pos: -31.5,40.5 @@ -61817,8 +49860,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10672 components: - pos: -31.5,39.5 @@ -61826,8 +49867,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10673 components: - pos: -31.5,38.5 @@ -61835,8 +49874,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10674 components: - pos: -31.5,37.5 @@ -61844,8 +49881,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10675 components: - pos: -31.5,36.5 @@ -61853,8 +49888,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10676 components: - pos: -32.5,36.5 @@ -61862,8 +49895,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10677 components: - pos: -32.5,35.5 @@ -61871,8 +49902,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10678 components: - pos: -32.5,34.5 @@ -61880,8 +49909,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10679 components: - pos: -32.5,33.5 @@ -61889,8 +49916,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10680 components: - pos: -32.5,32.5 @@ -61898,8 +49923,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10681 components: - pos: -32.5,31.5 @@ -61907,8 +49930,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10682 components: - pos: -33.5,31.5 @@ -61916,8 +49937,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10683 components: - pos: -34.5,31.5 @@ -61925,8 +49944,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10684 components: - pos: -34.5,32.5 @@ -61934,8 +49951,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11917 components: - pos: 37.5,-21.5 @@ -61943,8 +49958,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11918 components: - pos: 37.5,-22.5 @@ -61952,8 +49965,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11919 components: - pos: 38.5,-22.5 @@ -61961,8 +49972,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11920 components: - pos: 39.5,-22.5 @@ -61970,8 +49979,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11921 components: - pos: 40.5,-22.5 @@ -61979,8 +49986,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11922 components: - pos: 41.5,-22.5 @@ -61988,8 +49993,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11923 components: - pos: 41.5,-21.5 @@ -61997,8 +50000,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11924 components: - pos: 42.5,-21.5 @@ -62006,8 +50007,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11925 components: - pos: 43.5,-21.5 @@ -62015,8 +50014,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11926 components: - pos: 44.5,-21.5 @@ -62024,8 +50021,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11927 components: - pos: 45.5,-21.5 @@ -62033,8 +50028,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11928 components: - pos: 45.5,-22.5 @@ -62042,15 +50035,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11929 components: - pos: 45.5,-23.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11930 components: - pos: 44.5,-23.5 @@ -62058,8 +50047,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11931 components: - pos: 43.5,-20.5 @@ -62067,8 +50054,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11932 components: - pos: 43.5,-19.5 @@ -62076,8 +50061,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11933 components: - pos: 43.5,-18.5 @@ -62085,8 +50068,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11934 components: - pos: 45.5,-20.5 @@ -62094,8 +50075,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11935 components: - pos: 46.5,-20.5 @@ -62103,8 +50082,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11936 components: - pos: 47.5,-20.5 @@ -62112,8 +50089,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11937 components: - pos: 48.5,-20.5 @@ -62121,15 +50096,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11938 components: - pos: 49.5,-20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11939 components: - pos: 50.5,-20.5 @@ -62137,8 +50108,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11940 components: - pos: 51.5,-20.5 @@ -62146,8 +50115,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11941 components: - pos: 52.5,-20.5 @@ -62155,8 +50122,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11942 components: - pos: 52.5,-19.5 @@ -62164,71 +50129,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11943 components: - pos: 52.5,-18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11944 components: - pos: 52.5,-17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11945 components: - pos: 52.5,-16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11946 components: - pos: 52.5,-15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11947 components: - pos: 52.5,-14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11948 components: - pos: 52.5,-13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11949 components: - pos: 52.5,-12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11950 components: - pos: 52.5,-11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11951 components: - pos: 52.5,-10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 11952 components: - pos: 52.5,-9.5 @@ -62236,8 +50181,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11966 components: - pos: 50.5,-19.5 @@ -62245,8 +50188,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11967 components: - pos: 50.5,-18.5 @@ -62254,8 +50195,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12452 components: - pos: 60.5,7.5 @@ -62263,8 +50202,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12453 components: - pos: 59.5,7.5 @@ -62272,8 +50209,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12454 components: - pos: 58.5,7.5 @@ -62281,8 +50216,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12455 components: - pos: 58.5,6.5 @@ -62290,29 +50223,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12456 components: - pos: 58.5,5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12457 components: - pos: 58.5,4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12458 components: - pos: 58.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12459 components: - pos: 58.5,2.5 @@ -62320,64 +50245,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12460 components: - pos: 57.5,4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12461 components: - pos: 56.5,4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12462 components: - pos: 55.5,4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12463 components: - pos: 54.5,4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12464 components: - pos: 54.5,5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12465 components: - pos: 54.5,6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12466 components: - pos: 54.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12467 components: - pos: 53.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12468 components: - pos: 52.5,7.5 @@ -62385,50 +50292,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12537 components: - pos: 51.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12538 components: - pos: 50.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12539 components: - pos: 49.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12540 components: - pos: 49.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12541 components: - pos: 49.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12542 components: - pos: 49.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 12543 components: - pos: 48.5,10.5 @@ -62436,120 +50329,86 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13051 components: - pos: 30.5,37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13052 components: - pos: 31.5,37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13053 components: - pos: 32.5,37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13054 components: - pos: 33.5,37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13055 components: - pos: 34.5,37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13056 components: - pos: 35.5,37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13057 components: - pos: 35.5,38.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13058 components: - pos: 35.5,39.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13059 components: - pos: 35.5,40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13060 components: - pos: 35.5,41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13061 components: - pos: 35.5,42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13062 components: - pos: 35.5,43.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13063 components: - pos: 35.5,44.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13064 components: - pos: 35.5,45.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13065 components: - pos: 35.5,46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13066 components: - pos: 34.5,46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13067 components: - pos: 34.5,47.5 @@ -62557,22 +50416,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13068 components: - pos: 34.5,48.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13069 components: - pos: 34.5,49.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13070 components: - pos: 35.5,49.5 @@ -62580,127 +50433,91 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13071 components: - pos: 34.5,36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13072 components: - pos: 34.5,35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13073 components: - pos: 34.5,34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13074 components: - pos: 34.5,33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13075 components: - pos: 34.5,32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13076 components: - pos: 34.5,31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13077 components: - pos: 34.5,30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13078 components: - pos: 34.5,29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13079 components: - pos: 34.5,28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13080 components: - pos: 34.5,27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13081 components: - pos: 34.5,26.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13082 components: - pos: 34.5,25.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13083 components: - pos: 34.5,24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13084 components: - pos: 34.5,23.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13085 components: - pos: 34.5,22.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13086 components: - pos: 34.5,21.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13087 components: - pos: 34.5,20.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13088 components: - pos: 33.5,20.5 @@ -62708,113 +50525,81 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13089 components: - pos: 33.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13090 components: - pos: 32.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13091 components: - pos: 31.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13092 components: - pos: 30.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13093 components: - pos: 29.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13094 components: - pos: 28.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13095 components: - pos: 27.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13096 components: - pos: 26.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13097 components: - pos: 25.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13098 components: - pos: 24.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13099 components: - pos: 23.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13100 components: - pos: 22.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13101 components: - pos: 21.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13102 components: - pos: 20.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13103 components: - pos: 19.5,19.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13104 components: - pos: 19.5,20.5 @@ -62822,8 +50607,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13105 components: - pos: 20.5,38.5 @@ -62831,15 +50614,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13245 components: - pos: -49.5,-55.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13452 components: - pos: 37.5,11.5 @@ -62847,57 +50626,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13985 components: - pos: 58.5,34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13986 components: - pos: 58.5,35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13987 components: - pos: 58.5,36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13988 components: - pos: 57.5,36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13989 components: - pos: 56.5,36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13990 components: - pos: 55.5,36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13991 components: - pos: 54.5,36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13992 components: - pos: 53.5,36.5 @@ -62905,8 +50668,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13993 components: - pos: 64.5,35.5 @@ -62914,8 +50675,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13994 components: - pos: 63.5,35.5 @@ -62923,15 +50682,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13995 components: - pos: 62.5,35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 13996 components: - pos: 62.5,34.5 @@ -62939,8 +50694,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14014 components: - pos: 55.5,37.5 @@ -62948,8 +50701,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14015 components: - pos: 54.5,37.5 @@ -62957,8 +50708,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14016 components: - pos: 57.5,37.5 @@ -62966,8 +50715,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14017 components: - pos: 58.5,37.5 @@ -62975,183 +50722,131 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14155 components: - pos: -19.5,-30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14161 components: - pos: -16.5,-30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14162 components: - pos: -17.5,-30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14163 components: - pos: -18.5,-30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14173 components: - pos: -14.5,-30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14174 components: - pos: -9.5,-37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14175 components: - pos: -12.5,-30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14176 components: - pos: -11.5,-30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14177 components: - pos: -11.5,-31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14178 components: - pos: -11.5,-32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14179 components: - pos: -11.5,-33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14180 components: - pos: -11.5,-34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14181 components: - pos: -10.5,-37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14182 components: - pos: -11.5,-37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14183 components: - pos: -11.5,-36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14184 components: - pos: -11.5,-35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14185 components: - pos: -22.5,-24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14186 components: - pos: -23.5,-24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14240 components: - pos: -20.5,-29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14289 components: - pos: -20.5,-30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14296 components: - pos: -20.5,-28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14301 components: - pos: -20.5,-24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14302 components: - pos: -21.5,-24.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14363 components: - pos: -20.5,-27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14375 components: - pos: -20.5,-25.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14527 components: - pos: 40.5,0.5 @@ -63159,15 +50854,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14573 components: - pos: -20.5,-26.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 14588 components: - pos: -24.5,-24.5 @@ -63175,8 +50866,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15663 components: - pos: -10.5,-30.5 @@ -63184,8 +50873,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15706 components: - pos: -36.5,-43.5 @@ -63193,8 +50880,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15707 components: - pos: -36.5,-42.5 @@ -63202,8 +50887,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15708 components: - pos: -36.5,-41.5 @@ -63211,8 +50894,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15709 components: - pos: -36.5,-40.5 @@ -63220,8 +50901,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15710 components: - pos: -36.5,-39.5 @@ -63229,8 +50908,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15711 components: - pos: -35.5,-39.5 @@ -63238,8 +50915,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15712 components: - pos: -34.5,-39.5 @@ -63247,8 +50922,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15713 components: - pos: -33.5,-39.5 @@ -63256,8 +50929,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15714 components: - pos: -33.5,-40.5 @@ -63265,8 +50936,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15715 components: - pos: -33.5,-41.5 @@ -63274,8 +50943,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15716 components: - pos: -33.5,-42.5 @@ -63283,8 +50950,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15717 components: - pos: -33.5,-43.5 @@ -63292,57 +50957,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15718 components: - pos: -33.5,-44.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15719 components: - pos: -33.5,-45.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15720 components: - pos: -33.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15721 components: - pos: -33.5,-47.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15722 components: - pos: -34.5,-47.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15723 components: - pos: -35.5,-47.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15724 components: - pos: -36.5,-47.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15725 components: - pos: -37.5,-47.5 @@ -63350,8 +50999,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15727 components: - pos: -22.5,-54.5 @@ -63359,204 +51006,146 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15728 components: - pos: -21.5,-54.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15729 components: - pos: -21.5,-53.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15730 components: - pos: -21.5,-52.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15731 components: - pos: -21.5,-51.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15732 components: - pos: -21.5,-50.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15733 components: - pos: -21.5,-49.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15734 components: - pos: -21.5,-48.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15735 components: - pos: -21.5,-47.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15736 components: - pos: -21.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15737 components: - pos: -22.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15738 components: - pos: -23.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15739 components: - pos: -24.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15740 components: - pos: -25.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15741 components: - pos: -26.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15742 components: - pos: -27.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15743 components: - pos: -28.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15744 components: - pos: -29.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15745 components: - pos: -30.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15746 components: - pos: -31.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15747 components: - pos: -32.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15748 components: - pos: -21.5,-45.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15749 components: - pos: -21.5,-44.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15750 components: - pos: -21.5,-43.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15751 components: - pos: -21.5,-42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15752 components: - pos: -21.5,-41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15753 components: - pos: -21.5,-40.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15754 components: - pos: -21.5,-39.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15755 components: - pos: -22.5,-39.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15756 components: - pos: -22.5,-38.5 @@ -63564,8 +51153,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15911 components: - pos: -31.5,-27.5 @@ -63573,8 +51160,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15912 components: - pos: -32.5,-27.5 @@ -63582,8 +51167,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15913 components: - pos: -33.5,-27.5 @@ -63591,8 +51174,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15914 components: - pos: -34.5,-27.5 @@ -63600,8 +51181,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15915 components: - pos: -35.5,-27.5 @@ -63609,8 +51188,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15916 components: - pos: -36.5,-27.5 @@ -63618,8 +51195,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15917 components: - pos: -37.5,-27.5 @@ -63627,8 +51202,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15918 components: - pos: -38.5,-27.5 @@ -63636,8 +51209,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15919 components: - pos: -39.5,-27.5 @@ -63645,8 +51216,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15920 components: - pos: -39.5,-35.5 @@ -63654,8 +51223,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15921 components: - pos: -39.5,-34.5 @@ -63663,8 +51230,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15922 components: - pos: -39.5,-33.5 @@ -63672,8 +51237,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15923 components: - pos: -39.5,-32.5 @@ -63681,8 +51244,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15924 components: - pos: -39.5,-31.5 @@ -63690,8 +51251,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15925 components: - pos: -39.5,-30.5 @@ -63699,8 +51258,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15926 components: - pos: -39.5,-29.5 @@ -63708,8 +51265,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15927 components: - pos: -39.5,-28.5 @@ -63717,8 +51272,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15928 components: - pos: -38.5,-35.5 @@ -63726,148 +51279,106 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15929 components: - pos: -37.5,-35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15930 components: - pos: -36.5,-35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15931 components: - pos: -35.5,-35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15932 components: - pos: -34.5,-35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15933 components: - pos: -33.5,-35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15934 components: - pos: -33.5,-34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15935 components: - pos: -32.5,-34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15936 components: - pos: -31.5,-34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15937 components: - pos: -30.5,-34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15938 components: - pos: -29.5,-34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15939 components: - pos: -28.5,-34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15940 components: - pos: -27.5,-34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15941 components: - pos: -26.5,-34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15942 components: - pos: -25.5,-34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15943 components: - pos: -24.5,-34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15944 components: - pos: -24.5,-33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15945 components: - pos: -24.5,-32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15946 components: - pos: -24.5,-31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15947 components: - pos: -24.5,-30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15948 components: - pos: -24.5,-29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15949 components: - pos: -24.5,-28.5 @@ -63875,22 +51386,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15962 components: - pos: -13.5,-30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15963 components: - pos: -13.5,-31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15964 components: - pos: -13.5,-32.5 @@ -63898,8 +51403,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15974 components: - pos: -9.5,-44.5 @@ -63907,8 +51410,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15975 components: - pos: -8.5,-44.5 @@ -63916,8 +51417,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15976 components: - pos: -8.5,-45.5 @@ -63925,8 +51424,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15977 components: - pos: -8.5,-43.5 @@ -63934,8 +51431,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15978 components: - pos: -8.5,-42.5 @@ -63943,8 +51438,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15979 components: - pos: -8.5,-41.5 @@ -63952,8 +51445,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15980 components: - pos: -8.5,-40.5 @@ -63961,8 +51452,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15981 components: - pos: -8.5,-39.5 @@ -63970,8 +51459,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15982 components: - pos: -8.5,-38.5 @@ -63979,22 +51466,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15983 components: - pos: -8.5,-37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15984 components: - pos: -7.5,-37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15985 components: - pos: -7.5,-36.5 @@ -64002,43 +51483,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15987 components: - pos: -33.5,-33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15988 components: - pos: -33.5,-32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15989 components: - pos: -34.5,-32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15990 components: - pos: -34.5,-31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15991 components: - pos: -34.5,-30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 15992 components: - pos: -34.5,-29.5 @@ -64046,8 +51515,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16214 components: - pos: -10.5,-44.5 @@ -64055,8 +51522,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16215 components: - pos: -11.5,-44.5 @@ -64064,8 +51529,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16381 components: - pos: -48.5,-55.5 @@ -64073,8 +51536,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16518 components: - pos: -37.5,-39.5 @@ -64082,8 +51543,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16519 components: - pos: -38.5,-39.5 @@ -64091,8 +51550,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16520 components: - pos: -39.5,-39.5 @@ -64100,8 +51557,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16521 components: - pos: -39.5,-40.5 @@ -64109,8 +51564,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16522 components: - pos: -39.5,-41.5 @@ -64118,8 +51571,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16523 components: - pos: -39.5,-42.5 @@ -64127,8 +51578,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16524 components: - pos: -39.5,-43.5 @@ -64136,43 +51585,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16525 components: - pos: -39.5,-44.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16526 components: - pos: -39.5,-45.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16527 components: - pos: -39.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16528 components: - pos: -39.5,-47.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16529 components: - pos: -38.5,-47.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16530 components: - pos: -37.5,-47.5 @@ -64180,92 +51617,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16531 components: - pos: -40.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16532 components: - pos: -41.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16533 components: - pos: -42.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16534 components: - pos: -43.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16535 components: - pos: -44.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16536 components: - pos: -45.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16537 components: - pos: -46.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16538 components: - pos: -47.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16539 components: - pos: -48.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16540 components: - pos: -49.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16541 components: - pos: -50.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16542 components: - pos: -50.5,-45.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16543 components: - pos: -50.5,-44.5 @@ -64273,43 +51684,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16544 components: - pos: -50.5,-47.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16545 components: - pos: -51.5,-47.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16546 components: - pos: -52.5,-47.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16547 components: - pos: -53.5,-47.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16548 components: - pos: -54.5,-47.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16549 components: - pos: -55.5,-47.5 @@ -64317,8 +51716,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16550 components: - pos: -55.5,-46.5 @@ -64326,8 +51723,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16551 components: - pos: -55.5,-48.5 @@ -64335,71 +51730,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16552 components: - pos: -50.5,-48.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16553 components: - pos: -50.5,-49.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16554 components: - pos: -50.5,-50.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16555 components: - pos: -50.5,-51.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16556 components: - pos: -50.5,-52.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16557 components: - pos: -50.5,-53.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16558 components: - pos: -50.5,-54.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16559 components: - pos: -50.5,-55.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16560 components: - pos: -50.5,-56.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16561 components: - pos: -50.5,-57.5 @@ -64407,8 +51782,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16562 components: - pos: -51.5,-57.5 @@ -64416,8 +51789,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16563 components: - pos: -49.5,-57.5 @@ -64425,36 +51796,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16564 components: - pos: -51.5,-54.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16565 components: - pos: -52.5,-54.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16566 components: - pos: -53.5,-54.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16567 components: - pos: -54.5,-54.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16568 components: - pos: -55.5,-54.5 @@ -64462,8 +51823,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16569 components: - pos: -55.5,-55.5 @@ -64471,36 +51830,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16570 components: - pos: -51.5,-52.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16571 components: - pos: -52.5,-52.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16572 components: - pos: -53.5,-52.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16573 components: - pos: -54.5,-52.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16574 components: - pos: -55.5,-52.5 @@ -64508,8 +51857,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16575 components: - pos: -55.5,-51.5 @@ -64517,15 +51864,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16576 components: - pos: -49.5,-53.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 16581 components: - pos: -44.5,-53.5 @@ -64533,8 +51876,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16582 components: - pos: -44.5,-52.5 @@ -64542,8 +51883,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16583 components: - pos: -44.5,-54.5 @@ -64551,8 +51890,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16584 components: - pos: -44.5,-55.5 @@ -64560,8 +51897,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16588 components: - pos: -46.5,-57.5 @@ -64569,8 +51904,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16589 components: - pos: -47.5,-57.5 @@ -64578,8 +51911,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16590 components: - pos: -45.5,-57.5 @@ -64587,8 +51918,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16591 components: - pos: -46.5,-47.5 @@ -64596,8 +51925,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16592 components: - pos: -47.5,-47.5 @@ -64605,8 +51932,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16593 components: - pos: -45.5,-47.5 @@ -64614,8 +51939,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16594 components: - pos: -45.5,-45.5 @@ -64623,8 +51946,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16595 components: - pos: -46.5,-45.5 @@ -64632,8 +51953,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16596 components: - pos: -47.5,-45.5 @@ -64641,8 +51960,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17182 components: - pos: -36.5,-64.5 @@ -64650,8 +51967,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17183 components: - pos: -36.5,-63.5 @@ -64659,8 +51974,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17184 components: - pos: -36.5,-62.5 @@ -64668,8 +51981,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17185 components: - pos: -36.5,-61.5 @@ -64677,148 +51988,106 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17806 components: - pos: -45.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17807 components: - pos: -44.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17808 components: - pos: -43.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17809 components: - pos: -42.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17810 components: - pos: -41.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17811 components: - pos: -40.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17812 components: - pos: -39.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17813 components: - pos: -38.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17814 components: - pos: -37.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17815 components: - pos: -36.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17816 components: - pos: -35.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17817 components: - pos: -34.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17818 components: - pos: -33.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17819 components: - pos: -32.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17820 components: - pos: -31.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17821 components: - pos: -31.5,-1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17822 components: - pos: -31.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17823 components: - pos: -31.5,-3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17824 components: - pos: -31.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17825 components: - pos: -31.5,-5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17826 components: - pos: -30.5,-5.5 @@ -64826,22 +52095,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17827 components: - pos: -41.5,-1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17828 components: - pos: -41.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 17829 components: - pos: -41.5,-3.5 @@ -64849,15 +52112,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18425 components: - pos: -15.5,-30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18591 components: - pos: 40.5,1.5 @@ -64865,92 +52124,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18592 components: - pos: 40.5,2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18593 components: - pos: 40.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18594 components: - pos: 40.5,4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18595 components: - pos: 39.5,4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18596 components: - pos: 39.5,5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18597 components: - pos: 39.5,6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18598 components: - pos: 39.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18599 components: - pos: 39.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18600 components: - pos: 39.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18601 components: - pos: 38.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18602 components: - pos: 37.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18603 components: - pos: 37.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 18604 components: - pos: 37.5,11.5 @@ -64958,8 +52191,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20196 components: - pos: 11.5,-61.5 @@ -64967,8 +52198,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20197 components: - pos: 10.5,-61.5 @@ -64976,8 +52205,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20198 components: - pos: 10.5,-60.5 @@ -64985,8 +52212,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20199 components: - pos: 10.5,-59.5 @@ -64994,8 +52219,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20200 components: - pos: 10.5,-58.5 @@ -65003,8 +52226,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20201 components: - pos: 10.5,-57.5 @@ -65012,8 +52233,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20202 components: - pos: 9.5,-57.5 @@ -65021,8 +52240,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20203 components: - pos: 8.5,-57.5 @@ -65030,8 +52247,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20204 components: - pos: 7.5,-57.5 @@ -65039,8 +52254,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20205 components: - pos: 6.5,-57.5 @@ -65048,85 +52261,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20206 components: - pos: 6.5,-56.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20207 components: - pos: 6.5,-55.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20208 components: - pos: 7.5,-55.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20209 components: - pos: 7.5,-54.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20210 components: - pos: 7.5,-53.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20211 components: - pos: 7.5,-52.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20212 components: - pos: 7.5,-51.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20213 components: - pos: 7.5,-50.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20214 components: - pos: 7.5,-49.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20215 components: - pos: 8.5,-49.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20216 components: - pos: 8.5,-48.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20217 components: - pos: 8.5,-47.5 @@ -65134,8 +52323,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20218 components: - pos: 27.5,-32.5 @@ -65143,8 +52330,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20219 components: - pos: 27.5,-33.5 @@ -65152,8 +52337,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20220 components: - pos: 28.5,-33.5 @@ -65161,8 +52344,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20221 components: - pos: 29.5,-33.5 @@ -65170,8 +52351,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20222 components: - pos: 30.5,-33.5 @@ -65179,8 +52358,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20223 components: - pos: 31.5,-33.5 @@ -65188,8 +52365,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20224 components: - pos: 31.5,-34.5 @@ -65197,8 +52372,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20225 components: - pos: 31.5,-35.5 @@ -65206,8 +52379,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20226 components: - pos: 31.5,-36.5 @@ -65215,8 +52386,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20227 components: - pos: 31.5,-37.5 @@ -65224,8 +52393,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20228 components: - pos: 31.5,-38.5 @@ -65233,8 +52400,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20229 components: - pos: 31.5,-39.5 @@ -65242,8 +52407,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20230 components: - pos: 32.5,-39.5 @@ -65251,8 +52414,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20231 components: - pos: 32.5,-40.5 @@ -65260,8 +52421,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20232 components: - pos: 30.5,-32.5 @@ -65269,8 +52428,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20233 components: - pos: 30.5,-31.5 @@ -65278,8 +52435,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20234 components: - pos: 30.5,-30.5 @@ -65287,8 +52442,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20235 components: - pos: 30.5,-29.5 @@ -65296,8 +52449,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20236 components: - pos: 30.5,-28.5 @@ -65305,8 +52456,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20237 components: - pos: 30.5,-27.5 @@ -65314,8 +52463,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20238 components: - pos: 30.5,-26.5 @@ -65323,8 +52470,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20239 components: - pos: 29.5,-26.5 @@ -65332,8 +52477,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20240 components: - pos: 28.5,-26.5 @@ -65341,8 +52484,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20241 components: - pos: 27.5,-26.5 @@ -65350,8 +52491,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20242 components: - pos: 26.5,-26.5 @@ -65359,8 +52498,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20243 components: - pos: 25.5,-26.5 @@ -65368,8 +52505,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20244 components: - pos: 24.5,-26.5 @@ -65377,8 +52512,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20245 components: - pos: 23.5,-26.5 @@ -65386,8 +52519,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20246 components: - pos: 22.5,-26.5 @@ -65395,8 +52526,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20247 components: - pos: 21.5,-26.5 @@ -65404,8 +52533,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20248 components: - pos: 20.5,-26.5 @@ -65413,8 +52540,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20249 components: - pos: 19.5,-26.5 @@ -65422,8 +52547,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20250 components: - pos: 18.5,-26.5 @@ -65431,8 +52554,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20251 components: - pos: 17.5,-26.5 @@ -65440,8 +52561,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20252 components: - pos: 16.5,-26.5 @@ -65449,8 +52568,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20253 components: - pos: 15.5,-26.5 @@ -65458,8 +52575,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20254 components: - pos: 14.5,-26.5 @@ -65467,8 +52582,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20255 components: - pos: 14.5,-27.5 @@ -65476,22 +52589,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20256 components: - pos: 14.5,-28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20257 components: - pos: 13.5,-28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20258 components: - pos: 13.5,-27.5 @@ -65499,120 +52606,86 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20259 components: - pos: 12.5,-28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20260 components: - pos: 11.5,-28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20261 components: - pos: 11.5,-29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20262 components: - pos: 11.5,-30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20263 components: - pos: 11.5,-31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20264 components: - pos: 11.5,-32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20265 components: - pos: 11.5,-33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20266 components: - pos: 11.5,-34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20267 components: - pos: 11.5,-35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20268 components: - pos: 10.5,-35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20269 components: - pos: 9.5,-35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20270 components: - pos: 8.5,-35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20271 components: - pos: 7.5,-35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20272 components: - pos: 6.5,-35.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20273 components: - pos: 6.5,-36.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20274 components: - pos: 6.5,-37.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20275 components: - pos: 5.5,-37.5 @@ -65620,85 +52693,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20276 components: - pos: 8.5,-46.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20277 components: - pos: 8.5,-45.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20278 components: - pos: 8.5,-44.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20279 components: - pos: 9.5,-44.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20280 components: - pos: 10.5,-44.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20281 components: - pos: 11.5,-44.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20282 components: - pos: 11.5,-43.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20283 components: - pos: 11.5,-42.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20284 components: - pos: 11.5,-41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20285 components: - pos: 12.5,-41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20286 components: - pos: 13.5,-41.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20287 components: - pos: 13.5,-40.5 @@ -65706,8 +52755,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20474 components: - pos: 18.5,-27.5 @@ -65715,15 +52762,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20580 components: - pos: 12.5,-34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 20581 components: - pos: 13.5,-34.5 @@ -65731,8 +52774,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20899 components: - pos: 10.5,-56.5 @@ -65740,8 +52781,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21757 components: - pos: -19.5,-63.5 @@ -65749,8 +52788,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21758 components: - pos: -19.5,-62.5 @@ -65758,15 +52795,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21759 components: - pos: -19.5,-61.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21760 components: - pos: -20.5,-61.5 @@ -65774,8 +52807,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21761 components: - pos: -21.5,-61.5 @@ -65783,8 +52814,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21762 components: - pos: -22.5,-61.5 @@ -65792,8 +52821,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21763 components: - pos: -23.5,-61.5 @@ -65801,8 +52828,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21764 components: - pos: -24.5,-61.5 @@ -65810,8 +52835,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21765 components: - pos: -25.5,-61.5 @@ -65819,8 +52842,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21766 components: - pos: -26.5,-61.5 @@ -65828,8 +52849,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21767 components: - pos: -27.5,-61.5 @@ -65837,8 +52856,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21768 components: - pos: -28.5,-61.5 @@ -65846,8 +52863,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21769 components: - pos: -29.5,-61.5 @@ -65855,8 +52870,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21770 components: - pos: -30.5,-61.5 @@ -65864,8 +52877,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21771 components: - pos: -31.5,-61.5 @@ -65873,8 +52884,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21772 components: - pos: -32.5,-61.5 @@ -65882,8 +52891,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21773 components: - pos: -33.5,-61.5 @@ -65891,8 +52898,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21774 components: - pos: -33.5,-60.5 @@ -65900,8 +52905,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21775 components: - pos: -34.5,-60.5 @@ -65909,8 +52912,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21776 components: - pos: -35.5,-60.5 @@ -65918,8 +52919,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21777 components: - pos: -36.5,-60.5 @@ -65927,8 +52926,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21778 components: - pos: -0.5,-65.5 @@ -65936,29 +52933,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21779 components: - pos: 0.5,-65.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21780 components: - pos: 1.5,-65.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21781 components: - pos: 1.5,-64.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 21782 components: - pos: 1.5,-63.5 @@ -65966,8 +52955,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21783 components: - pos: 1.5,-62.5 @@ -65975,8 +52962,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21784 components: - pos: 2.5,-62.5 @@ -65984,8 +52969,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21785 components: - pos: 3.5,-62.5 @@ -65993,8 +52976,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21786 components: - pos: 4.5,-62.5 @@ -66002,8 +52983,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21787 components: - pos: 5.5,-62.5 @@ -66011,8 +52990,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21788 components: - pos: 6.5,-62.5 @@ -66020,8 +52997,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21789 components: - pos: 6.5,-61.5 @@ -66029,8 +53004,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21790 components: - pos: 6.5,-60.5 @@ -66038,8 +53011,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21791 components: - pos: 6.5,-59.5 @@ -66047,8 +53018,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21792 components: - pos: 6.5,-58.5 @@ -66056,8 +53025,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22433 components: - pos: 39.5,-58.5 @@ -66065,8 +53032,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22434 components: - pos: 38.5,-58.5 @@ -66074,8 +53039,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22435 components: - pos: 38.5,-57.5 @@ -66083,8 +53046,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22436 components: - pos: 38.5,-56.5 @@ -66092,8 +53053,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22437 components: - pos: 38.5,-55.5 @@ -66101,8 +53060,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22438 components: - pos: 38.5,-54.5 @@ -66110,8 +53067,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22439 components: - pos: 38.5,-53.5 @@ -66119,8 +53074,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22440 components: - pos: 38.5,-52.5 @@ -66128,8 +53081,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22441 components: - pos: 38.5,-51.5 @@ -66137,8 +53088,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22442 components: - pos: 38.5,-50.5 @@ -66146,8 +53095,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22443 components: - pos: 38.5,-49.5 @@ -66155,8 +53102,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22444 components: - pos: 38.5,-48.5 @@ -66164,85 +53109,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23313 components: - pos: 50.5,10.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23314 components: - pos: 50.5,11.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23315 components: - pos: 50.5,12.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23316 components: - pos: 50.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23317 components: - pos: 50.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23318 components: - pos: 50.5,15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23319 components: - pos: 50.5,16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23320 components: - pos: 50.5,17.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23321 components: - pos: 50.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23322 components: - pos: 49.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23323 components: - pos: 48.5,18.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23324 components: - pos: 47.5,18.5 @@ -66250,8 +53171,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23614 components: - pos: 72.5,12.5 @@ -66259,8 +53178,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23615 components: - pos: 71.5,12.5 @@ -66268,8 +53185,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23616 components: - pos: 70.5,12.5 @@ -66277,8 +53192,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23617 components: - pos: 69.5,12.5 @@ -66286,8 +53199,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23618 components: - pos: 68.5,12.5 @@ -66295,8 +53206,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23619 components: - pos: 67.5,12.5 @@ -66304,8 +53213,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23620 components: - pos: 66.5,12.5 @@ -66313,8 +53220,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23621 components: - pos: 65.5,12.5 @@ -66322,8 +53227,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23622 components: - pos: 64.5,12.5 @@ -66331,8 +53234,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23623 components: - pos: 72.5,28.5 @@ -66340,8 +53241,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23624 components: - pos: 71.5,28.5 @@ -66349,8 +53248,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23625 components: - pos: 70.5,28.5 @@ -66358,8 +53255,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23626 components: - pos: 69.5,28.5 @@ -66367,8 +53262,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23627 components: - pos: 68.5,28.5 @@ -66376,8 +53269,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23628 components: - pos: 67.5,28.5 @@ -66385,8 +53276,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23629 components: - pos: 66.5,28.5 @@ -66394,8 +53283,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23630 components: - pos: 65.5,28.5 @@ -66403,8 +53290,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23631 components: - pos: 64.5,28.5 @@ -66412,8 +53297,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23741 components: - pos: 62.5,14.5 @@ -66421,8 +53304,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23742 components: - pos: 63.5,14.5 @@ -66430,8 +53311,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23743 components: - pos: 64.5,14.5 @@ -66439,8 +53318,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23744 components: - pos: 65.5,14.5 @@ -66448,8 +53325,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23745 components: - pos: 66.5,14.5 @@ -66457,8 +53332,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23746 components: - pos: 67.5,14.5 @@ -66466,8 +53339,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23747 components: - pos: 68.5,14.5 @@ -66475,8 +53346,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23748 components: - pos: 69.5,14.5 @@ -66484,8 +53353,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23749 components: - pos: 70.5,14.5 @@ -66493,8 +53360,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23750 components: - pos: 71.5,14.5 @@ -66502,8 +53367,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23751 components: - pos: 72.5,14.5 @@ -66511,8 +53374,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23752 components: - pos: 73.5,14.5 @@ -66520,8 +53381,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23753 components: - pos: 74.5,14.5 @@ -66529,8 +53388,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23754 components: - pos: 74.5,15.5 @@ -66538,8 +53395,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23755 components: - pos: 74.5,16.5 @@ -66547,8 +53402,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23756 components: - pos: 74.5,17.5 @@ -66556,8 +53409,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23757 components: - pos: 74.5,18.5 @@ -66565,8 +53416,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23758 components: - pos: 74.5,19.5 @@ -66574,8 +53423,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23759 components: - pos: 74.5,20.5 @@ -66583,8 +53430,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23760 components: - pos: 74.5,21.5 @@ -66592,8 +53437,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23761 components: - pos: 74.5,22.5 @@ -66601,8 +53444,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23762 components: - pos: 74.5,23.5 @@ -66610,8 +53451,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23763 components: - pos: 74.5,24.5 @@ -66619,8 +53458,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23764 components: - pos: 74.5,25.5 @@ -66628,8 +53465,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23765 components: - pos: 74.5,26.5 @@ -66637,8 +53472,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23766 components: - pos: 73.5,26.5 @@ -66646,8 +53479,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23767 components: - pos: 72.5,26.5 @@ -66655,8 +53486,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23768 components: - pos: 71.5,26.5 @@ -66664,8 +53493,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23769 components: - pos: 70.5,26.5 @@ -66673,8 +53500,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23770 components: - pos: 69.5,26.5 @@ -66682,8 +53507,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23771 components: - pos: 68.5,26.5 @@ -66691,8 +53514,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23772 components: - pos: 67.5,26.5 @@ -66700,8 +53521,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23773 components: - pos: 66.5,26.5 @@ -66709,8 +53528,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23774 components: - pos: 65.5,26.5 @@ -66718,8 +53535,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23775 components: - pos: 64.5,26.5 @@ -66727,8 +53542,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23776 components: - pos: 63.5,26.5 @@ -66736,8 +53549,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23777 components: - pos: 62.5,26.5 @@ -66745,8 +53556,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23778 components: - pos: 62.5,25.5 @@ -66754,8 +53563,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23779 components: - pos: 62.5,24.5 @@ -66763,8 +53570,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23780 components: - pos: 62.5,23.5 @@ -66772,8 +53577,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23781 components: - pos: 62.5,22.5 @@ -66781,8 +53584,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23782 components: - pos: 62.5,21.5 @@ -66790,8 +53591,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23783 components: - pos: 62.5,20.5 @@ -66799,8 +53598,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23784 components: - pos: 62.5,19.5 @@ -66808,8 +53605,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23785 components: - pos: 62.5,18.5 @@ -66817,8 +53612,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23786 components: - pos: 62.5,17.5 @@ -66826,8 +53619,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23787 components: - pos: 62.5,16.5 @@ -66835,8 +53626,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23788 components: - pos: 62.5,15.5 @@ -66844,8 +53633,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23789 components: - pos: 61.5,16.5 @@ -66853,8 +53640,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23790 components: - pos: 61.5,24.5 @@ -66862,8 +53647,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23791 components: - pos: 67.5,27.5 @@ -66871,8 +53654,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23792 components: - pos: 69.5,27.5 @@ -66880,8 +53661,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23793 components: - pos: 69.5,13.5 @@ -66889,8 +53668,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23794 components: - pos: 67.5,13.5 @@ -66898,8 +53675,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23795 components: - pos: 75.5,20.5 @@ -66907,29 +53682,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23897 components: - pos: 58.5,30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23898 components: - pos: 57.5,30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23899 components: - pos: 58.5,29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23900 components: - pos: 59.5,29.5 @@ -66937,8 +53704,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23901 components: - pos: 60.5,29.5 @@ -66946,8 +53711,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23902 components: - pos: 61.5,29.5 @@ -66955,8 +53718,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23903 components: - pos: 62.5,29.5 @@ -66964,8 +53725,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23904 components: - pos: 63.5,29.5 @@ -66973,8 +53732,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23905 components: - pos: 64.5,29.5 @@ -66982,8 +53739,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23906 components: - pos: 60.5,16.5 @@ -66991,8 +53746,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23907 components: - pos: 59.5,16.5 @@ -67000,85 +53753,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23908 components: - pos: 58.5,16.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23909 components: - pos: 58.5,15.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23910 components: - pos: 58.5,14.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23911 components: - pos: 58.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23912 components: - pos: 57.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23913 components: - pos: 56.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23914 components: - pos: 55.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23915 components: - pos: 54.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23916 components: - pos: 53.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23917 components: - pos: 52.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23918 components: - pos: 51.5,13.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 23979 components: - pos: 76.5,20.5 @@ -67086,8 +53815,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23980 components: - pos: 76.5,21.5 @@ -67095,8 +53822,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23981 components: - pos: 76.5,19.5 @@ -67104,8 +53829,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23982 components: - pos: 77.5,20.5 @@ -67113,8 +53836,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23983 components: - pos: 78.5,20.5 @@ -67122,8 +53843,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23984 components: - pos: 78.5,19.5 @@ -67131,8 +53850,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23985 components: - pos: 78.5,21.5 @@ -67140,8 +53857,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23986 components: - pos: 78.5,22.5 @@ -67149,8 +53864,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23987 components: - pos: 78.5,23.5 @@ -67158,8 +53871,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23988 components: - pos: 78.5,24.5 @@ -67167,8 +53878,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23989 components: - pos: 78.5,25.5 @@ -67176,8 +53885,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23990 components: - pos: 78.5,26.5 @@ -67185,8 +53892,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23991 components: - pos: 78.5,27.5 @@ -67194,8 +53899,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23992 components: - pos: 78.5,28.5 @@ -67203,8 +53906,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23993 components: - pos: 78.5,29.5 @@ -67212,8 +53913,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23994 components: - pos: 76.5,29.5 @@ -67221,8 +53920,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23995 components: - pos: 76.5,28.5 @@ -67230,8 +53927,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23996 components: - pos: 76.5,27.5 @@ -67239,8 +53934,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23997 components: - pos: 76.5,26.5 @@ -67248,8 +53941,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23998 components: - pos: 76.5,25.5 @@ -67257,8 +53948,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23999 components: - pos: 76.5,24.5 @@ -67266,8 +53955,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24000 components: - pos: 76.5,23.5 @@ -67275,8 +53962,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24001 components: - pos: 76.5,22.5 @@ -67284,8 +53969,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24002 components: - pos: 76.5,18.5 @@ -67293,8 +53976,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24003 components: - pos: 78.5,18.5 @@ -67302,8 +53983,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24004 components: - pos: 78.5,17.5 @@ -67311,8 +53990,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24005 components: - pos: 78.5,16.5 @@ -67320,8 +53997,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24006 components: - pos: 78.5,15.5 @@ -67329,8 +54004,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24007 components: - pos: 78.5,14.5 @@ -67338,8 +54011,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24008 components: - pos: 78.5,13.5 @@ -67347,8 +54018,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24009 components: - pos: 78.5,12.5 @@ -67356,8 +54025,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24010 components: - pos: 78.5,11.5 @@ -67365,8 +54032,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24011 components: - pos: 76.5,11.5 @@ -67374,8 +54039,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24012 components: - pos: 76.5,12.5 @@ -67383,8 +54046,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24013 components: - pos: 76.5,13.5 @@ -67392,8 +54053,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24014 components: - pos: 76.5,14.5 @@ -67401,8 +54060,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24015 components: - pos: 76.5,15.5 @@ -67410,8 +54067,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24016 components: - pos: 76.5,16.5 @@ -67419,8 +54074,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24017 components: - pos: 76.5,17.5 @@ -67428,8 +54081,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24018 components: - pos: 72.5,11.5 @@ -67437,8 +54088,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24022 components: - pos: 72.5,29.5 @@ -67446,8 +54095,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24023 components: - pos: 72.5,30.5 @@ -67455,8 +54102,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24024 components: - pos: 73.5,30.5 @@ -67464,8 +54109,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24025 components: - pos: 74.5,30.5 @@ -67473,8 +54116,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24604 components: - pos: -48.5,-57.5 @@ -67482,8 +54123,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24605 components: - pos: -44.5,-57.5 @@ -67491,8 +54130,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24606 components: - pos: -44.5,-56.5 @@ -67500,36 +54137,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24725 components: - pos: -26.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 24726 components: - pos: -26.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 24727 components: - pos: -27.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 24728 components: - pos: -28.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 24729 components: - pos: -29.5,7.5 @@ -67537,29 +54164,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24730 components: - pos: -30.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 24731 components: - pos: -31.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 24732 components: - pos: -32.5,7.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 24733 components: - pos: -32.5,8.5 @@ -67567,22 +54186,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24734 components: - pos: -25.5,8.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 24735 components: - pos: -25.5,9.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 24736 components: - pos: -25.5,10.5 @@ -67590,8 +54203,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25953 components: - pos: 108.5,2.5 @@ -67599,29 +54210,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25954 components: - pos: 108.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 25955 components: - pos: 108.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 25956 components: - pos: 108.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 25957 components: - pos: 108.5,-1.5 @@ -67629,71 +54232,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25958 components: - pos: 107.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 25959 components: - pos: 106.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 25960 components: - pos: 105.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 25961 components: - pos: 104.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 25962 components: - pos: 103.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 25963 components: - pos: 102.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 25964 components: - pos: 101.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 25965 components: - pos: 100.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 25966 components: - pos: 100.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 25967 components: - pos: 100.5,-1.5 @@ -67701,22 +54284,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25968 components: - pos: 103.5,1.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 25969 components: - pos: 103.5,2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 25970 components: - pos: 103.5,3.5 @@ -67724,43 +54301,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25971 components: - pos: 104.5,3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 25972 components: - pos: 104.5,4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 25973 components: - pos: 104.5,5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 25974 components: - pos: 104.5,6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 25975 components: - pos: 105.5,6.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 25976 components: - pos: 105.5,7.5 @@ -67768,15 +54333,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25977 components: - pos: 103.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 25978 components: - pos: 103.5,-1.5 @@ -67784,64 +54345,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25979 components: - pos: 103.5,-2.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 25980 components: - pos: 103.5,-3.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 25981 components: - pos: 103.5,-4.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 25982 components: - pos: 103.5,-5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 25983 components: - pos: 105.5,-5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 25984 components: - pos: 104.5,-5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 25985 components: - pos: 106.5,-5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 25986 components: - pos: 107.5,-5.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 25987 components: - pos: 107.5,-6.5 @@ -67849,8 +54392,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26136 components: - pos: 92.5,-1.5 @@ -67858,141 +54399,101 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26137 components: - pos: 92.5,-0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26138 components: - pos: 92.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26139 components: - pos: 93.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26140 components: - pos: 94.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26141 components: - pos: 95.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26142 components: - pos: 96.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26143 components: - pos: 97.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26144 components: - pos: 98.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26145 components: - pos: 99.5,0.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26566 components: - pos: 7.5,-34.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26567 components: - pos: 7.5,-33.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26568 components: - pos: 7.5,-32.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26569 components: - pos: 7.5,-31.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26570 components: - pos: 7.5,-30.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26571 components: - pos: 7.5,-29.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26572 components: - pos: 7.5,-28.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26573 components: - pos: 7.5,-27.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26574 components: - pos: 7.5,-26.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26575 components: - pos: 8.5,-26.5 parent: 5350 type: Transform - - fixtures: {} - type: Fixtures - uid: 26576 components: - pos: 8.5,-27.5 @@ -68000,8 +54501,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - proto: CableMVStack entities: - uid: 1548 @@ -78742,6 +65241,13 @@ entities: - pos: -26.519468,-33.432796 parent: 5350 type: Transform +- proto: ClothingHeadBandGold + entities: + - uid: 24777 + components: + - pos: 42.602013,37.613434 + parent: 5350 + type: Transform - proto: ClothingHeadFishCap entities: - uid: 22991 @@ -136150,13 +122656,6 @@ entities: - pos: 29.558147,-58.540123 parent: 5350 type: Transform -- proto: ClothingHeadBandGold - entities: - - uid: 24777 - components: - - pos: 42.602013,37.613434 - parent: 5350 - type: Transform - proto: Hemostat entities: - uid: 22265 @@ -154189,7 +140688,7 @@ entities: - pos: 9.5,-47.5 parent: 5350 type: Transform - - SecondsUntilStateChange: -24216.78 + - SecondsUntilStateChange: -24455.395 state: Closing type: Door - inputs: @@ -154204,7 +140703,7 @@ entities: - pos: 10.5,-47.5 parent: 5350 type: Transform - - SecondsUntilStateChange: -24216.78 + - SecondsUntilStateChange: -24455.395 state: Closing type: Door - inputs: @@ -154219,7 +140718,7 @@ entities: - pos: 11.5,-47.5 parent: 5350 type: Transform - - SecondsUntilStateChange: -24216.78 + - SecondsUntilStateChange: -24455.395 state: Closing type: Door - inputs: @@ -154234,7 +140733,7 @@ entities: - pos: 13.5,-47.5 parent: 5350 type: Transform - - SecondsUntilStateChange: -24216.78 + - SecondsUntilStateChange: -24455.395 state: Closing type: Door - inputs: @@ -154249,7 +140748,7 @@ entities: - pos: 14.5,-47.5 parent: 5350 type: Transform - - SecondsUntilStateChange: -24216.78 + - SecondsUntilStateChange: -24455.395 state: Closing type: Door - inputs: @@ -154264,7 +140763,7 @@ entities: - pos: 15.5,-47.5 parent: 5350 type: Transform - - SecondsUntilStateChange: -24216.78 + - SecondsUntilStateChange: -24455.395 state: Closing type: Door - inputs: @@ -158516,6 +145015,13 @@ entities: - pos: -30.5,-9.5 parent: 5350 type: Transform +- proto: SpawnMobSmile + entities: + - uid: 26607 + components: + - pos: 12.5,-29.5 + parent: 5350 + type: Transform - proto: SpawnMobWalter entities: - uid: 10392 @@ -162531,6 +149037,11 @@ entities: - pos: 108.5,-0.5 parent: 5350 type: Transform + - uid: 26605 + components: + - pos: 26.5,0.5 + parent: 5350 + type: Transform - proto: TableCarpet entities: - uid: 1022 @@ -165800,6 +152311,17 @@ entities: - pos: 2.5,-44.5 parent: 5350 type: Transform +- proto: VendingMachineCondiments + entities: + - uid: 26606 + components: + - flags: SessionSpecific + type: MetaData + - pos: 26.5,0.5 + parent: 5350 + type: Transform + - nextEmpEject: 93.5618203 + type: VendingMachine - proto: VendingMachineDetDrobe entities: - uid: 9978 @@ -184720,7 +171242,66 @@ entities: - pos: 112.5,-11.5 parent: 5350 type: Transform -- proto: WindoorArmoryLocked +- proto: WindoorBarLocked + entities: + - uid: 2380 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,-7.5 + parent: 5350 + type: Transform +- proto: WindoorCargoLocked + entities: + - uid: 3927 + components: + - rot: 3.141592653589793 rad + pos: -40.5,1.5 + parent: 5350 + type: Transform + - uid: 22394 + components: + - pos: -32.5,1.5 + parent: 5350 + type: Transform + - uid: 24371 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,4.5 + parent: 5350 + type: Transform + - uid: 24372 + components: + - pos: -42.5,2.5 + parent: 5350 + type: Transform +- proto: WindoorChapelLocked + entities: + - uid: 21809 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-70.5 + parent: 5350 + type: Transform +- proto: WindoorKitchenHydroponicsLocked + entities: + - uid: 2340 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-20.5 + parent: 5350 + type: Transform + - uid: 2341 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-19.5 + parent: 5350 + type: Transform + - uid: 2354 + components: + - pos: 28.5,-14.5 + parent: 5350 + type: Transform +- proto: WindoorSecureArmoryLocked entities: - uid: 6484 components: @@ -184740,15 +171321,14 @@ entities: pos: -0.5,31.5 parent: 5350 type: Transform -- proto: WindoorBarLocked +- proto: WindoorSecureAtmosphericsLocked entities: - - uid: 2380 + - uid: 8893 components: - - rot: 1.5707963267948966 rad - pos: 25.5,-7.5 + - pos: 46.5,-4.5 parent: 5350 type: Transform -- proto: WindoorBrigLocked +- proto: WindoorSecureBrigLocked entities: - uid: 8129 components: @@ -184765,39 +171345,21 @@ entities: - pos: -6.5,47.5 parent: 5350 type: Transform -- proto: WindoorCargoLocked +- proto: WindoorSecureCargoLocked entities: - - uid: 3927 - components: - - rot: 3.141592653589793 rad - pos: -40.5,1.5 - parent: 5350 - type: Transform - - uid: 22394 - components: - - pos: -32.5,1.5 - parent: 5350 - type: Transform - - uid: 24371 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,4.5 - parent: 5350 - type: Transform - - uid: 24372 + - uid: 3490 components: - - pos: -42.5,2.5 + - rot: -1.5707963267948966 rad + pos: -29.5,6.5 parent: 5350 type: Transform -- proto: WindoorChapelLocked - entities: - - uid: 21809 + - uid: 3491 components: - - rot: 1.5707963267948966 rad - pos: -30.5,-70.5 + - rot: -1.5707963267948966 rad + pos: -29.5,7.5 parent: 5350 type: Transform -- proto: WindoorChemistryLocked +- proto: WindoorSecureChemistryLocked entities: - uid: 14290 components: @@ -184816,7 +171378,7 @@ entities: pos: -18.5,-28.5 parent: 5350 type: Transform -- proto: WindoorCommandLocked +- proto: WindoorSecureCommandLocked entities: - uid: 1013 components: @@ -184890,20 +171452,15 @@ entities: pos: 101.5,9.5 parent: 5350 type: Transform -- proto: WindoorEngineeringLocked +- proto: WindoorSecureEngineeringLocked entities: - - uid: 8893 - components: - - pos: 46.5,-4.5 - parent: 5350 - type: Transform - uid: 8894 components: - rot: 1.5707963267948966 rad pos: 48.5,-1.5 parent: 5350 type: Transform -- proto: WindoorHeadOfPersonnelLocked +- proto: WindoorSecureHeadOfPersonnelLocked entities: - uid: 987 components: @@ -184911,26 +171468,7 @@ entities: pos: -12.5,-4.5 parent: 5350 type: Transform -- proto: WindoorKitchenHydroponicsLocked - entities: - - uid: 2340 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-20.5 - parent: 5350 - type: Transform - - uid: 2341 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-19.5 - parent: 5350 - type: Transform - - uid: 2354 - components: - - pos: 28.5,-14.5 - parent: 5350 - type: Transform -- proto: WindoorMedicalLocked +- proto: WindoorSecureMedicalLocked entities: - uid: 14365 components: @@ -184964,7 +171502,7 @@ entities: pos: -15.5,-49.5 parent: 5350 type: Transform -- proto: WindoorScienceLocked +- proto: WindoorSecureScienceLocked entities: - uid: 9788 components: @@ -184990,21 +171528,7 @@ entities: pos: 23.5,-31.5 parent: 5350 type: Transform -- proto: WindoorSecureCargoLocked - entities: - - uid: 3490 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,6.5 - parent: 5350 - type: Transform - - uid: 3491 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,7.5 - parent: 5350 - type: Transform -- proto: WindoorSecurityLocked +- proto: WindoorSecureSecurityLocked entities: - uid: 8057 components: From 2ece4e454eca98d1a64cc12e25a41ed289b7eedd Mon Sep 17 00:00:00 2001 From: Emisse <99158783+Emisse@users.noreply.github.com> Date: Wed, 21 Jun 2023 13:51:58 -0600 Subject: [PATCH 403/474] fland update (#17536) --- Resources/Maps/fland.yml | 28105 +++++++------------------------------ 1 file changed, 4727 insertions(+), 23378 deletions(-) diff --git a/Resources/Maps/fland.yml b/Resources/Maps/fland.yml index b11be3a774..9d40b471e0 100644 --- a/Resources/Maps/fland.yml +++ b/Resources/Maps/fland.yml @@ -59,6 +59,8 @@ entities: - type: Broadphase - type: OccluderTree - type: LoadedMap + - type: GridTree + - type: MovedGrids - uid: 13329 components: - type: MetaData @@ -488,22 +490,22 @@ entities: 1598: 38,13 3591: 58,-30 4105: 30,50 - 5816: 91,1 - 5819: 93,1 - 7744: 122,-6 - 8552: 92,32 + 5810: 91,1 + 5813: 93,1 + 7738: 122,-6 + 8546: 92,32 - node: color: '#FFFFFFFF' id: Arrows decals: 3043: -31,-42 3592: 56,-29 - 4567: 28,-51 - 5483: 86,-22 - 5484: 69,-27 - 6002: 87,32 - 8668: 69,7 - 8669: 68,7 + 4561: 28,-51 + 5477: 86,-22 + 5478: 69,-27 + 5996: 87,32 + 8662: 69,7 + 8663: 68,7 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -511,19 +513,19 @@ entities: decals: 3593: 56,-31 3594: 58,-31 - 7745: 125,-4 - 7746: 125,-8 - 8553: 99,30 - 8554: 99,32 + 7739: 125,-4 + 7740: 125,-8 + 8547: 99,30 + 8548: 99,32 - node: color: '#FFFFFFFF' id: Basalt1 decals: 791: -42,87 - 6304: 108.406746,39.976562 - 7316: 47.063145,58.374302 - 7604: 82.29597,-59.361774 - 7606: 80.7525,-55.28365 + 6298: 108.406746,39.976562 + 7310: 47.063145,58.374302 + 7598: 82.29597,-59.361774 + 7600: 80.7525,-55.28365 - node: color: '#FFFFFFFF' id: Basalt2 @@ -537,14 +539,14 @@ entities: 789: -45,82 793: -34,76 2842: -25,-68 - 7607: 81.49956,-55.84615 + 7601: 81.49956,-55.84615 - node: color: '#FFFFFFFF' id: Basalt5 decals: 785: -43,72 2843: -23,-62 - 7315: 43.219395,51.358677 + 7309: 43.219395,51.358677 - node: color: '#FFFFFFFF' id: Basalt6 @@ -559,13 +561,13 @@ entities: 787: -47,76 788: -42,76 795: -43,64 - 6305: 105.60987,39.351562 + 6299: 105.60987,39.351562 - node: color: '#FFFFFFFF' id: Basalt8 decals: 794: -30,77 - 7605: 72.434494,-58.080524 + 7599: 72.434494,-58.080524 - node: color: '#FFFFFFFF' id: Basalt9 @@ -575,7 +577,7 @@ entities: color: '#DE3A3A96' id: Bot decals: - 5188: 111,-23 + 5182: 111,-23 - node: color: '#EFB34196' id: Bot @@ -598,15 +600,15 @@ entities: decals: 1957: 43,3 1958: 46,3 - 4877: 110,-18 - 4878: 109,-18 - 4879: 108,-18 - 4880: 107,-18 - 4881: 110,-16 - 4882: 109,-16 - 4883: 108,-16 - 4884: 107,-16 - 4885: 106,-16 + 4871: 110,-18 + 4872: 109,-18 + 4873: 108,-18 + 4874: 107,-18 + 4875: 110,-16 + 4876: 109,-16 + 4877: 108,-16 + 4878: 107,-16 + 4879: 106,-16 - node: color: '#FFFFFFFF' id: Bot @@ -800,169 +802,169 @@ entities: 3849: 21,41 4097: 30,48 4151: 10,50 - 4374: 7,70 - 4375: 7,72 - 4478: 30,40 - 4479: 30,41 - 4480: 27,40 - 4481: 27,41 - 4563: 30,-52 - 4564: 29,-52 - 4565: 28,-52 - 4566: 27,-52 - 4717: 45,-40 - 4718: 45,-39 - 4719: 45,-38 - 4775: 32,-27 - 4776: 37,-22 - 4777: 36,-22 - 4778: 34,-22 - 4779: 35,-22 - 4780: 33,-22 - 4781: 37,-20 - 4798: 29,-23 - 4799: 27,-23 - 4815: 55,-44 - 4942: 62,-21 - 4943: 62,-20 - 4944: 62,-19 - 4995: 73,-22 - 4996: 73,-21 - 4997: 73,-20 - 4998: 73,-19 - 4999: 72,-19 - 5000: 72,-20 - 5001: 72,-21 - 5002: 72,-22 - 5003: 71,-22 - 5004: 71,-21 - 5005: 71,-20 - 5006: 71,-19 - 5007: 70,-19 - 5008: 70,-20 - 5009: 70,-21 - 5010: 70,-22 - 5098: 76,-34 - 5099: 75,-34 - 5100: 74,-34 - 5101: 76,-32 - 5102: 77,-32 - 5103: 78,-32 - 5184: 74,-27 - 5185: 73,-27 - 5186: 72,-27 - 5187: 77,-23 - 5275: 86,-13 - 5276: 86,-12 - 5277: 86,-11 - 5278: 84,-16 - 5279: 81,-17 - 5334: 87,-8 - 5335: 86,-8 - 5336: 85,-8 - 5337: 82,-1 - 5338: 81,-1 - 5339: 79,-1 - 5340: 78,-1 - 5443: 82,-3 - 5444: 81,-3 - 5445: 79,-3 - 5446: 78,-3 - 5447: 77,-7 - 5456: 75,-21 - 5457: 75,-20 - 5458: 75,-19 - 5481: 85,-20 - 5482: 83,-20 - 5485: 64,-22 - 5813: 90,1 - 5817: 92,1 - 5818: 94,1 - 5830: 85,5 - 5831: 84,5 - 5832: 83,5 - 5855: 94,-23 - 5856: 93,-23 - 5857: 92,-23 - 5858: 91,-23 - 5997: 90,36 - 6000: 100,32 - 6001: 100,30 - 6007: 121,-16 - 6008: 120,-16 - 6197: 89,18 - 6198: 89,19 - 6199: 89,20 - 6200: 69,6 - 6201: 68,6 - 6202: 72,6 - 6203: 73,6 - 6718: 65,42 - 6719: 64,42 - 6720: 63,42 - 6721: 62,42 - 6722: 61,42 - 6723: 60,42 - 6724: 59,42 - 6725: 57,42 - 6727: 63,53 - 6728: 64,53 - 6729: 61,53 - 6887: 11,12 - 6888: 11,13 - 6915: -45,-4 - 6916: -45,-3 - 6917: -47,-4 - 7018: -31,1 - 7089: 37,-50 - 7090: 36,-49 - 7091: 38,-49 - 7092: 37,-48 - 7141: 29,-5 - 7142: 30,-5 - 7177: 38,-8 - 7178: 38,-6 - 7282: 105,28 - 7283: 105,29 - 7284: 105,31 - 7285: 105,32 - 7286: 107,32 - 7287: 107,31 - 7528: 35,38 - 7529: 34,38 - 7530: 30,36 - 7531: 29,36 - 7532: 28,36 - 7533: 27,36 - 7721: 70,26 - 7722: 70,27 - 7743: 121,-6 - 7747: 123,-8 - 8026: 101,-39 - 8027: 100,-39 - 8028: 99,-39 - 8029: 79,-27 - 8030: 80,-27 - 8031: 81,-27 - 8032: 82,-27 - 8040: 5,47 - 8043: 21,7 - 8050: 50,-19 - 8108: 95,42 - 8109: 95,43 - 8110: 95,44 - 8225: 76,-4 + 4368: 7,70 + 4369: 7,72 + 4472: 30,40 + 4473: 30,41 + 4474: 27,40 + 4475: 27,41 + 4557: 30,-52 + 4558: 29,-52 + 4559: 28,-52 + 4560: 27,-52 + 4711: 45,-40 + 4712: 45,-39 + 4713: 45,-38 + 4769: 32,-27 + 4770: 37,-22 + 4771: 36,-22 + 4772: 34,-22 + 4773: 35,-22 + 4774: 33,-22 + 4775: 37,-20 + 4792: 29,-23 + 4793: 27,-23 + 4809: 55,-44 + 4936: 62,-21 + 4937: 62,-20 + 4938: 62,-19 + 4989: 73,-22 + 4990: 73,-21 + 4991: 73,-20 + 4992: 73,-19 + 4993: 72,-19 + 4994: 72,-20 + 4995: 72,-21 + 4996: 72,-22 + 4997: 71,-22 + 4998: 71,-21 + 4999: 71,-20 + 5000: 71,-19 + 5001: 70,-19 + 5002: 70,-20 + 5003: 70,-21 + 5004: 70,-22 + 5092: 76,-34 + 5093: 75,-34 + 5094: 74,-34 + 5095: 76,-32 + 5096: 77,-32 + 5097: 78,-32 + 5178: 74,-27 + 5179: 73,-27 + 5180: 72,-27 + 5181: 77,-23 + 5269: 86,-13 + 5270: 86,-12 + 5271: 86,-11 + 5272: 84,-16 + 5273: 81,-17 + 5328: 87,-8 + 5329: 86,-8 + 5330: 85,-8 + 5331: 82,-1 + 5332: 81,-1 + 5333: 79,-1 + 5334: 78,-1 + 5437: 82,-3 + 5438: 81,-3 + 5439: 79,-3 + 5440: 78,-3 + 5441: 77,-7 + 5450: 75,-21 + 5451: 75,-20 + 5452: 75,-19 + 5475: 85,-20 + 5476: 83,-20 + 5479: 64,-22 + 5807: 90,1 + 5811: 92,1 + 5812: 94,1 + 5824: 85,5 + 5825: 84,5 + 5826: 83,5 + 5849: 94,-23 + 5850: 93,-23 + 5851: 92,-23 + 5852: 91,-23 + 5991: 90,36 + 5994: 100,32 + 5995: 100,30 + 6001: 121,-16 + 6002: 120,-16 + 6191: 89,18 + 6192: 89,19 + 6193: 89,20 + 6194: 69,6 + 6195: 68,6 + 6196: 72,6 + 6197: 73,6 + 6712: 65,42 + 6713: 64,42 + 6714: 63,42 + 6715: 62,42 + 6716: 61,42 + 6717: 60,42 + 6718: 59,42 + 6719: 57,42 + 6721: 63,53 + 6722: 64,53 + 6723: 61,53 + 6881: 11,12 + 6882: 11,13 + 6909: -45,-4 + 6910: -45,-3 + 6911: -47,-4 + 7012: -31,1 + 7083: 37,-50 + 7084: 36,-49 + 7085: 38,-49 + 7086: 37,-48 + 7135: 29,-5 + 7136: 30,-5 + 7171: 38,-8 + 7172: 38,-6 + 7276: 105,28 + 7277: 105,29 + 7278: 105,31 + 7279: 105,32 + 7280: 107,32 + 7281: 107,31 + 7522: 35,38 + 7523: 34,38 + 7524: 30,36 + 7525: 29,36 + 7526: 28,36 + 7527: 27,36 + 7715: 70,26 + 7716: 70,27 + 7737: 121,-6 + 7741: 123,-8 + 8020: 101,-39 + 8021: 100,-39 + 8022: 99,-39 + 8023: 79,-27 + 8024: 80,-27 + 8025: 81,-27 + 8026: 82,-27 + 8034: 5,47 + 8037: 21,7 + 8044: 50,-19 + 8102: 95,42 + 8103: 95,43 + 8104: 95,44 + 8219: 76,-4 - node: cleanable: True color: '#FFFFFFFF' id: Bot decals: - 6895: 21,30 + 6889: 21,30 - node: color: '#DE3A3A96' id: BotGreyscale decals: - 6284: 66,32 + 6278: 66,32 - node: color: '#FFFFFFFF' id: BotGreyscale @@ -981,44 +983,44 @@ entities: 3766: 2,38 3767: 2,37 4016: 8,37 - 5235: 120,-26 - 5236: 119,-25 - 5237: 120,-24 - 5238: 121,-25 + 5229: 120,-26 + 5230: 119,-25 + 5231: 120,-24 + 5232: 121,-25 - node: color: '#FFFFFFFF' id: BotLeft decals: - 7085: 38,-48 - 7086: 36,-50 + 7079: 38,-48 + 7080: 36,-50 - node: color: '#FFFFFFFF' id: BotLeftGreyscale decals: - 5231: 121,-24 - 5232: 119,-26 - 6283: 64,31 + 5225: 121,-24 + 5226: 119,-26 + 6277: 64,31 - node: color: '#FFFFFFFF' id: BotRight decals: - 7087: 38,-50 - 7088: 36,-48 - 8546: 94,29 - 8547: 96,29 - 8548: 98,29 - 8549: 98,32 - 8550: 96,32 - 8551: 94,32 + 7081: 38,-50 + 7082: 36,-48 + 8540: 94,29 + 8541: 96,29 + 8542: 98,29 + 8543: 98,32 + 8544: 96,32 + 8545: 94,32 - node: color: '#FFFFFFFF' id: BotRightGreyscale decals: 4017: 8,36 - 5233: 119,-24 - 5234: 121,-26 - 6282: 64,29 - 8731: 5,39 + 5227: 119,-24 + 5228: 121,-26 + 6276: 64,29 + 8725: 5,39 - node: color: '#FFFFFFFF' id: Box @@ -1034,23 +1036,23 @@ entities: 3856: 24,38 3857: 21,38 4106: 28,49 - 4720: 44,-35 - 4721: 42,-35 - 4722: 44,-39 - 4723: 42,-39 - 5814: 90,2 - 5815: 93,2 - 5820: 93,-17 - 7248: 107,14 - 7249: 106,14 - 7250: 106,16 - 7251: 107,16 + 4714: 44,-35 + 4715: 42,-35 + 4716: 44,-39 + 4717: 42,-39 + 5808: 90,2 + 5809: 93,2 + 5814: 93,-17 + 7242: 107,14 + 7243: 106,14 + 7244: 106,16 + 7245: 107,16 - node: color: '#FFFFFFFF' id: BoxGreyscale decals: - 5796: 20,18 - 5797: 18,18 + 5790: 20,18 + 5791: 18,18 - node: color: '#FFFFFFFF' id: BrickTileDarkBox @@ -1073,7 +1075,7 @@ entities: id: BrickTileDarkCornerSe decals: 759: -24,27 - 6489: 78,44 + 6483: 78,44 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw @@ -1083,12 +1085,12 @@ entities: color: '#FFFFFFFF' id: BrickTileDarkEndN decals: - 6726: 62,56 + 6720: 62,56 - node: color: '#334E6DC8' id: BrickTileDarkInnerNe decals: - 5766: 48,-7 + 5760: 48,-7 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNe @@ -1099,19 +1101,19 @@ entities: color: '#334E6DC8' id: BrickTileDarkInnerNw decals: - 5765: 49,-7 + 5759: 49,-7 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: 1084: -10,63 1119: -8,68 - 8730: 30,-25 + 8724: 30,-25 - node: color: '#334E6DC8' id: BrickTileDarkInnerSe decals: - 5764: 48,-6 + 5758: 48,-6 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe @@ -1122,7 +1124,7 @@ entities: color: '#334E6DC8' id: BrickTileDarkInnerSw decals: - 5763: 49,-6 + 5757: 49,-6 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw @@ -1156,12 +1158,12 @@ entities: 1804: 22,-3 1805: 22,-2 1806: 22,-1 - 6486: 78,47 - 6487: 78,46 - 6488: 78,45 - 8581: 73,13 - 8582: 73,14 - 8604: 73,15 + 6480: 78,47 + 6481: 78,46 + 6482: 78,45 + 8575: 73,13 + 8576: 73,14 + 8598: 73,15 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN @@ -1173,9 +1175,9 @@ entities: 1130: -9,68 1131: -10,68 1132: -11,68 - 8727: 29,-25 - 8728: 28,-25 - 8729: 27,-25 + 8721: 29,-25 + 8722: 28,-25 + 8723: 27,-25 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS @@ -1193,8 +1195,8 @@ entities: 1129: -11,75 1807: 17,-3 1808: 16,-3 - 6490: 77,44 - 6491: 76,44 + 6484: 77,44 + 6485: 76,44 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW @@ -1213,36 +1215,36 @@ entities: 1124: -8,72 1125: -8,73 1126: -8,74 - 8722: 30,-20 - 8723: 30,-21 - 8724: 30,-22 - 8725: 30,-23 - 8726: 30,-24 + 8716: 30,-20 + 8717: 30,-21 + 8718: 30,-22 + 8719: 30,-23 + 8720: 30,-24 - node: color: '#52B4E996' id: BrickTileSteelBox decals: - 8046: 15,-18 + 8040: 15,-18 - node: color: '#D381C996' id: BrickTileSteelBox decals: - 8047: 17,-18 + 8041: 17,-18 - node: color: '#DE3A3A96' id: BrickTileSteelBox decals: - 8045: 16,-18 + 8039: 16,-18 - node: color: '#EFB34196' id: BrickTileSteelBox decals: - 8051: 18,-18 + 8045: 18,-18 - node: color: '#334E6DC8' id: BrickTileSteelCornerNe decals: - 5760: 48,-7 + 5754: 48,-7 - node: color: '#9FED5896' id: BrickTileSteelCornerNe @@ -1253,7 +1255,7 @@ entities: color: '#D381C996' id: BrickTileSteelCornerNe decals: - 4691: 45,-33 + 4685: 45,-33 - node: color: '#DE3A3A96' id: BrickTileSteelCornerNe @@ -1263,12 +1265,12 @@ entities: 1507: 34,3 1508: 39,3 1552: 31,14 - 5781: 21,19 + 5775: 21,19 - node: color: '#334E6DC8' id: BrickTileSteelCornerNw decals: - 5759: 49,-7 + 5753: 49,-7 - node: color: '#9FED5896' id: BrickTileSteelCornerNw @@ -1278,7 +1280,7 @@ entities: color: '#D381C996' id: BrickTileSteelCornerNw decals: - 4695: 41,-33 + 4689: 41,-33 - node: color: '#DE3A3A96' id: BrickTileSteelCornerNw @@ -1288,17 +1290,17 @@ entities: 1511: 30,3 1512: 27,3 1553: 27,14 - 5782: 17,19 + 5776: 17,19 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNw decals: - 8639: 66,12 + 8633: 66,12 - node: color: '#334E6DC8' id: BrickTileSteelCornerSe decals: - 5762: 48,-6 + 5756: 48,-6 - node: color: '#9FED5896' id: BrickTileSteelCornerSe @@ -1309,8 +1311,8 @@ entities: color: '#D381C996' id: BrickTileSteelCornerSe decals: - 4806: 30,-27 - 4807: 29,-28 + 4800: 30,-27 + 4801: 29,-28 - node: color: '#DE3A3A96' id: BrickTileSteelCornerSe @@ -1320,18 +1322,18 @@ entities: 1515: 31,1 1516: 28,1 1555: 31,9 - 5783: 21,17 + 5777: 21,17 - node: color: '#334E6DC8' id: BrickTileSteelCornerSw decals: - 5761: 49,-6 + 5755: 49,-6 - node: color: '#D381C996' id: BrickTileSteelCornerSw decals: - 4698: 41,-36 - 4809: 27,-28 + 4692: 41,-36 + 4803: 27,-28 - node: color: '#DE3A3A96' id: BrickTileSteelCornerSw @@ -1341,18 +1343,18 @@ entities: 1519: 33,1 1520: 36,1 1554: 27,9 - 5784: 17,17 + 5778: 17,17 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSw decals: - 8634: 66,7 + 8628: 66,7 - node: color: '#D381C996' id: BrickTileSteelInnerNe decals: 3753: 50,-21 - 7084: 34,-52 + 7078: 34,-52 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNe @@ -1363,7 +1365,7 @@ entities: id: BrickTileSteelInnerNw decals: 3752: 56,-21 - 7083: 40,-52 + 7077: 40,-52 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNw @@ -1379,26 +1381,26 @@ entities: id: BrickTileSteelInnerSe decals: 3751: 50,-15 - 4808: 29,-27 - 7082: 34,-46 + 4802: 29,-27 + 7076: 34,-46 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSe decals: 940: -38,58 - 7538: 57,38 + 7532: 57,38 - node: color: '#D381C996' id: BrickTileSteelInnerSw decals: 3750: 56,-15 - 7081: 40,-46 + 7075: 40,-46 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSw decals: 939: -32,58 - 7537: 61,38 + 7531: 61,38 - node: color: '#52B4E996' id: BrickTileSteelLineE @@ -1421,18 +1423,18 @@ entities: 3732: 50,-17 3733: 50,-16 3734: 50,-20 - 4690: 45,-34 - 4800: 30,-20 - 4801: 30,-21 - 4802: 30,-22 - 4803: 30,-24 - 4804: 30,-25 - 4805: 30,-26 - 7044: 34,-51 - 7045: 34,-50 - 7046: 34,-49 - 7047: 34,-48 - 7048: 34,-47 + 4684: 45,-34 + 4794: 30,-20 + 4795: 30,-21 + 4796: 30,-22 + 4797: 30,-24 + 4798: 30,-25 + 4799: 30,-26 + 7038: 34,-51 + 7039: 34,-50 + 7040: 34,-49 + 7041: 34,-48 + 7042: 34,-47 - node: color: '#DE3A3A96' id: BrickTileSteelLineE @@ -1462,9 +1464,9 @@ entities: color: '#0000004D' id: BrickTileSteelLineN decals: - 5164: 56,8 - 5165: 55,8 - 5166: 54,8 + 5158: 56,8 + 5159: 55,8 + 5160: 54,8 - node: color: '#9FED5896' id: BrickTileSteelLineN @@ -1480,14 +1482,14 @@ entities: 3737: 53,-21 3738: 54,-21 3739: 55,-21 - 4692: 44,-33 - 4693: 43,-33 - 4694: 42,-33 - 7071: 39,-52 - 7072: 38,-52 - 7073: 37,-52 - 7074: 36,-52 - 7075: 35,-52 + 4686: 44,-33 + 4687: 43,-33 + 4688: 42,-33 + 7065: 39,-52 + 7066: 38,-52 + 7067: 37,-52 + 7068: 36,-52 + 7069: 35,-52 - node: color: '#DE3A3A96' id: BrickTileSteelLineN @@ -1495,9 +1497,9 @@ entities: 1521: 38,3 1532: 37,3 1556: 30,14 - 5789: 20,19 - 5790: 19,19 - 5791: 18,19 + 5783: 20,19 + 5784: 19,19 + 5785: 18,19 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN @@ -1507,16 +1509,16 @@ entities: 936: -35,52 937: -36,52 938: -37,52 - 6012: 56,7 - 6013: 55,7 - 6014: 54,7 - 8640: 67,12 - 8641: 68,12 - 8642: 69,12 - 8643: 70,12 - 8644: 71,12 - 8645: 72,12 - 8646: 73,12 + 6006: 56,7 + 6007: 55,7 + 6008: 54,7 + 8634: 67,12 + 8635: 68,12 + 8636: 69,12 + 8637: 70,12 + 8638: 71,12 + 8639: 72,12 + 8640: 73,12 - node: color: '#D381C996' id: BrickTileSteelLineS @@ -1526,14 +1528,14 @@ entities: 3742: 53,-15 3743: 52,-15 3744: 51,-15 - 4699: 42,-36 - 4700: 44,-36 - 4810: 28,-28 - 7076: 39,-46 - 7077: 38,-46 - 7078: 37,-46 - 7079: 36,-46 - 7080: 35,-46 + 4693: 42,-36 + 4694: 44,-36 + 4804: 28,-28 + 7070: 39,-46 + 7071: 38,-46 + 7072: 37,-46 + 7073: 36,-46 + 7074: 35,-46 - node: color: '#DE3A3A96' id: BrickTileSteelLineS @@ -1542,9 +1544,9 @@ entities: 1531: 37,1 1557: 29,9 1558: 28,9 - 5786: 20,17 - 5787: 19,17 - 5788: 18,17 + 5780: 20,17 + 5781: 19,17 + 5782: 18,17 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS @@ -1554,19 +1556,19 @@ entities: 950: -35,58 951: -34,58 952: -33,58 - 6009: 56,3 - 6010: 55,3 - 6011: 54,3 - 7534: 60,38 - 7535: 59,38 - 7536: 58,38 - 8627: 73,7 - 8628: 72,7 - 8629: 71,7 - 8630: 70,7 - 8631: 69,7 - 8632: 68,7 - 8633: 67,7 + 6003: 56,3 + 6004: 55,3 + 6005: 54,3 + 7528: 60,38 + 7529: 59,38 + 7530: 58,38 + 8621: 73,7 + 8622: 72,7 + 8623: 71,7 + 8624: 70,7 + 8625: 69,7 + 8626: 68,7 + 8627: 67,7 - node: color: '#52B4E996' id: BrickTileSteelLineW @@ -1591,15 +1593,15 @@ entities: 3747: 56,-18 3748: 56,-17 3749: 56,-16 - 4696: 41,-34 - 4697: 41,-35 - 4811: 27,-27 - 4812: 27,-25 - 7049: 40,-51 - 7050: 40,-50 - 7051: 40,-49 - 7052: 40,-48 - 7053: 40,-47 + 4690: 41,-34 + 4691: 41,-35 + 4805: 27,-27 + 4806: 27,-25 + 7043: 40,-51 + 7044: 40,-50 + 7045: 40,-49 + 7046: 40,-48 + 7047: 40,-47 - node: color: '#DE3A3A96' id: BrickTileSteelLineW @@ -1611,7 +1613,7 @@ entities: 1559: 27,10 1560: 27,12 1561: 27,13 - 5785: 17,18 + 5779: 17,18 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW @@ -1621,10 +1623,10 @@ entities: 955: -32,55 956: -32,54 957: -32,53 - 8635: 66,8 - 8636: 66,9 - 8637: 66,10 - 8638: 66,11 + 8629: 66,8 + 8630: 66,9 + 8631: 66,10 + 8632: 66,11 - node: color: '#79150096' id: BrickTileWhiteBox @@ -1643,14 +1645,14 @@ entities: 4035: 7,45 4082: 24,50 4117: 15,51 - 4236: 0,64 - 4307: 19,64 - 4341: 8,68 + 4230: 0,64 + 4301: 19,64 + 4335: 8,68 - node: color: '#9FED5896' id: BrickTileWhiteCornerNe decals: - 4498: 36,46 + 4492: 36,46 - node: color: '#A4610696' id: BrickTileWhiteCornerNe @@ -1664,7 +1666,7 @@ entities: 3345: 44,-14 3386: 53,-23 3566: 58,-33 - 7030: 39,-47 + 7024: 39,-47 - node: color: '#DE3A3A44' id: BrickTileWhiteCornerNe @@ -1685,19 +1687,19 @@ entities: 3504: 43,-21 4186: 24,55 4196: 27,55 - 5047: 73,-9 + 5041: 73,-9 - node: color: '#EFB34196' id: BrickTileWhiteCornerNe decals: 3020: -34,-40 3021: -30,-44 - 7782: 104,-16 + 7776: 104,-16 - node: color: '#EFD54196' id: BrickTileWhiteCornerNe decals: - 5680: 69,-9 + 5674: 69,-9 - node: color: '#FF669896' id: BrickTileWhiteCornerNe @@ -1717,16 +1719,16 @@ entities: 4081: 22,50 4118: 9,51 4204: 6,56 - 4235: -2,64 - 4292: 3,63 - 4306: 17,64 - 4342: 4,68 - 4343: 7,68 + 4229: -2,64 + 4286: 3,63 + 4300: 17,64 + 4336: 4,68 + 4337: 7,68 - node: color: '#9FED5896' id: BrickTileWhiteCornerNw decals: - 4497: 32,46 + 4491: 32,46 - node: color: '#A4610696' id: BrickTileWhiteCornerNw @@ -1741,7 +1743,7 @@ entities: 3344: 40,-14 3385: 50,-23 3644: 55,-28 - 7031: 35,-47 + 7025: 35,-47 - node: color: '#DE3A3A44' id: BrickTileWhiteCornerNw @@ -1763,18 +1765,18 @@ entities: 3503: 41,-21 4185: 21,55 4197: 26,55 - 5048: 71,-9 + 5042: 71,-9 - node: color: '#EFB34196' id: BrickTileWhiteCornerNw decals: 3019: -37,-40 - 7783: 103,-16 + 7777: 103,-16 - node: color: '#EFD54196' id: BrickTileWhiteCornerNw decals: - 5678: 63,-9 + 5672: 63,-9 - node: color: '#FF669896' id: BrickTileWhiteCornerNw @@ -1785,8 +1787,8 @@ entities: id: BrickTileWhiteCornerSe decals: 360: -10,-2 - 7154: 30,-11 - 8067: 98,-55 + 7148: 30,-11 + 8061: 98,-55 - node: color: '#52B4E996' id: BrickTileWhiteCornerSe @@ -1795,13 +1797,13 @@ entities: 4036: 7,43 4116: 14,47 4215: 7,52 - 4238: 0,60 - 4344: 8,65 + 4232: 0,60 + 4338: 8,65 - node: color: '#9FED5896' id: BrickTileWhiteCornerSe decals: - 4500: 36,42 + 4494: 36,42 - node: color: '#A4610696' id: BrickTileWhiteCornerSe @@ -1817,7 +1819,7 @@ entities: 3565: 58,-34 3567: 58,-31 3665: 39,-40 - 7029: 39,-51 + 7023: 39,-51 - node: color: '#DE3A3A44' id: BrickTileWhiteCornerSe @@ -1837,18 +1839,18 @@ entities: 2571: 13,-13 4187: 24,53 4200: 27,53 - 5049: 73,-11 + 5043: 73,-11 - node: color: '#EFB34196' id: BrickTileWhiteCornerSe decals: 3022: -30,-45 - 7784: 104,-19 + 7778: 104,-19 - node: color: '#EFD54196' id: BrickTileWhiteCornerSe decals: - 5679: 69,-13 + 5673: 69,-13 - node: color: '#FF669896' id: BrickTileWhiteCornerSe @@ -1859,7 +1861,7 @@ entities: id: BrickTileWhiteCornerSw decals: 363: -12,-2 - 8068: 96,-55 + 8062: 96,-55 - node: color: '#52B4E996' id: BrickTileWhiteCornerSw @@ -1868,13 +1870,13 @@ entities: 3930: 10,43 4119: 9,47 4216: 6,52 - 4240: -2,60 - 4346: 4,66 + 4234: -2,60 + 4340: 4,66 - node: color: '#9FED5896' id: BrickTileWhiteCornerSw decals: - 4499: 32,42 + 4493: 32,42 - node: color: '#A4610696' id: BrickTileWhiteCornerSw @@ -1889,7 +1891,7 @@ entities: 3582: 56,-42 3645: 55,-29 3666: 37,-40 - 7032: 35,-51 + 7026: 35,-51 - node: color: '#DE3A3A44' id: BrickTileWhiteCornerSw @@ -1910,18 +1912,18 @@ entities: 3505: 41,-24 4188: 21,53 4199: 26,53 - 5046: 71,-11 + 5040: 71,-11 - node: color: '#EFB34196' id: BrickTileWhiteCornerSw decals: 3023: -37,-45 - 7785: 103,-19 + 7779: 103,-19 - node: color: '#EFD54196' id: BrickTileWhiteCornerSw decals: - 5681: 63,-13 + 5675: 63,-13 - node: color: '#FF669896' id: BrickTileWhiteCornerSw @@ -1931,12 +1933,12 @@ entities: color: '#334E6DC8' id: BrickTileWhiteEndS decals: - 7160: 27,-13 + 7154: 27,-13 - node: color: '#52B4E996' id: BrickTileWhiteEndS decals: - 4345: 5,65 + 4339: 5,65 - node: color: '#52B4E996' id: BrickTileWhiteInnerNe @@ -1947,7 +1949,7 @@ entities: color: '#9FED580F' id: BrickTileWhiteInnerNe decals: - 6236: 64,28 + 6230: 64,28 - node: color: '#D381C996' id: BrickTileWhiteInnerNe @@ -1965,19 +1967,19 @@ entities: color: '#FF81C996' id: BrickTileWhiteInnerNe decals: - 7069: 35,-51 + 7063: 35,-51 - node: color: '#334E6DC8' id: BrickTileWhiteInnerNw decals: - 6226: 64,31 + 6220: 64,31 - node: color: '#52B4E996' id: BrickTileWhiteInnerNw decals: 3952: 17,45 - 4305: 17,63 - 4353: 7,67 + 4299: 17,63 + 4347: 7,67 - node: color: '#A4610696' id: BrickTileWhiteInnerNw @@ -2001,24 +2003,24 @@ entities: color: '#FF81C996' id: BrickTileWhiteInnerNw decals: - 7068: 39,-51 + 7062: 39,-51 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSe decals: - 7153: 29,-11 - 7161: 27,-12 + 7147: 29,-11 + 7155: 27,-12 - node: color: '#52B4E996' id: BrickTileWhiteInnerSe decals: 4214: 7,53 - 4352: 5,66 + 4346: 5,66 - node: color: '#9FED580F' id: BrickTileWhiteInnerSe decals: - 6237: 64,32 + 6231: 64,32 - node: color: '#D381C996' id: BrickTileWhiteInnerSe @@ -2031,28 +2033,28 @@ entities: color: '#FF81C996' id: BrickTileWhiteInnerSe decals: - 7067: 35,-47 + 7061: 35,-47 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerSe decals: - 8654: 66,12 + 8648: 66,12 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSw decals: - 7158: 29,-12 + 7152: 29,-12 - node: color: '#52B4E996' id: BrickTileWhiteInnerSw decals: - 4310: 17,61 - 4347: 5,66 + 4304: 17,61 + 4341: 5,66 - node: color: '#79150096' id: BrickTileWhiteInnerSw decals: - 6221: 64,29 + 6215: 64,29 - node: color: '#D381C996' id: BrickTileWhiteInnerSw @@ -2069,16 +2071,16 @@ entities: color: '#FF81C996' id: BrickTileWhiteInnerSw decals: - 7066: 39,-47 + 7060: 39,-47 - node: color: '#0000004D' id: BrickTileWhiteLineE decals: - 5874: 102,-21 - 5875: 102,-20 - 5876: 95,-22 - 5877: 95,-21 - 5878: 95,-20 + 5868: 102,-21 + 5869: 102,-20 + 5870: 95,-22 + 5871: 95,-21 + 5872: 95,-20 - node: color: '#334E6DC8' id: BrickTileWhiteLineE @@ -2089,20 +2091,20 @@ entities: 3967: 19,57 3968: 19,59 3969: 19,60 - 7150: 29,-14 - 7151: 29,-13 - 7152: 29,-12 - 7155: 30,-10 - 8061: 98,-52 - 8062: 98,-53 - 8063: 98,-54 - 8120: 58,53 - 8121: 58,54 - 8122: 58,55 - 8123: 58,56 - 8124: 58,58 - 8125: 58,59 - 8126: 58,60 + 7144: 29,-14 + 7145: 29,-13 + 7146: 29,-12 + 7149: 30,-10 + 8055: 98,-52 + 8056: 98,-53 + 8057: 98,-54 + 8114: 58,53 + 8115: 58,54 + 8116: 58,55 + 8117: 58,56 + 8118: 58,58 + 8119: 58,59 + 8120: 58,60 - node: color: '#52B4E996' id: BrickTileWhiteLineE @@ -2124,25 +2126,25 @@ entities: 4079: 24,48 4080: 24,49 4155: 15,50 - 4237: 0,62 - 4308: 19,63 - 4309: 19,61 - 4349: 8,66 - 4350: 8,67 + 4231: 0,62 + 4302: 19,63 + 4303: 19,61 + 4343: 8,66 + 4344: 8,67 - node: color: '#9FED580F' id: BrickTileWhiteLineE decals: - 6232: 64,29 - 6233: 64,31 - 6238: 64,30 + 6226: 64,29 + 6227: 64,31 + 6232: 64,30 - node: color: '#9FED5896' id: BrickTileWhiteLineE decals: - 4504: 36,43 - 4505: 36,44 - 4506: 36,45 + 4498: 36,43 + 4499: 36,44 + 4500: 36,45 - node: color: '#A4610696' id: BrickTileWhiteLineE @@ -2151,7 +2153,7 @@ entities: 2532: 21,-31 2534: 21,-27 2535: 21,-26 - 8049: 50,-19 + 8043: 50,-19 - node: color: '#D381C996' id: BrickTileWhiteLineE @@ -2190,15 +2192,15 @@ entities: 3664: 39,-38 4139: 9,49 4140: 9,50 - 7039: 39,-50 - 7040: 39,-49 - 7041: 39,-48 + 7033: 39,-50 + 7034: 39,-49 + 7035: 39,-48 - node: color: '#D4D4D453' id: BrickTileWhiteLineE decals: - 6480: 79,44 - 6481: 79,45 + 6474: 79,44 + 6475: 79,45 - node: color: '#DE3A3A96' id: BrickTileWhiteLineE @@ -2243,14 +2245,14 @@ entities: 3510: 43,-22 4193: 24,54 4198: 27,54 - 5050: 73,-10 - 6271: 56,26 - 6272: 56,27 - 6273: 56,29 - 6274: 56,30 - 6275: 56,31 - 6276: 56,33 - 6277: 56,34 + 5044: 73,-10 + 6265: 56,26 + 6266: 56,27 + 6267: 56,29 + 6268: 56,30 + 6269: 56,31 + 6270: 56,33 + 6271: 56,34 - node: color: '#EFB34196' id: BrickTileWhiteLineE @@ -2258,13 +2260,13 @@ entities: 3033: -34,-43 3034: -34,-42 3035: -34,-41 - 7786: 104,-18 + 7780: 104,-18 - node: color: '#EFD54196' id: BrickTileWhiteLineE decals: - 5691: 69,-12 - 5692: 69,-11 + 5685: 69,-12 + 5686: 69,-11 - node: color: '#FF669896' id: BrickTileWhiteLineE @@ -2276,24 +2278,24 @@ entities: color: '#FF81C996' id: BrickTileWhiteLineE decals: - 7054: 35,-50 - 7055: 35,-49 - 7056: 35,-48 + 7048: 35,-50 + 7049: 35,-49 + 7050: 35,-48 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineE decals: - 8655: 66,11 - 8656: 66,10 - 8657: 66,9 - 8658: 66,8 + 8649: 66,11 + 8650: 66,10 + 8651: 66,9 + 8652: 66,8 - node: color: '#00000076' id: BrickTileWhiteLineN decals: - 5468: 73,-4 - 5469: 72,-4 - 5470: 71,-4 + 5462: 73,-4 + 5463: 72,-4 + 5464: 71,-4 - node: color: '#334E6DC8' id: BrickTileWhiteLineN @@ -2301,8 +2303,8 @@ entities: 2101: -12,-4 2102: -10,-4 2103: -9,-4 - 6224: 62,31 - 6225: 63,31 + 6218: 62,31 + 6219: 63,31 - node: color: '#52B4E996' id: BrickTileWhiteLineN @@ -2331,34 +2333,34 @@ entities: 4207: 9,56 4208: 10,56 4209: 11,56 - 4226: 15,59 - 4227: 14,59 - 4228: 13,59 - 4241: -1,64 - 4293: 4,63 - 4294: 5,63 - 4295: 6,63 - 4296: 8,63 - 4297: 9,63 - 4298: 10,63 - 4299: 11,63 - 4300: 12,63 - 4301: 13,63 - 4302: 15,63 - 4303: 16,63 - 4304: 18,64 - 4354: 6,67 + 4223: 15,59 + 4224: 14,59 + 4225: 13,59 + 4235: -1,64 + 4287: 4,63 + 4288: 5,63 + 4289: 6,63 + 4290: 8,63 + 4291: 9,63 + 4292: 10,63 + 4293: 11,63 + 4294: 12,63 + 4295: 13,63 + 4296: 15,63 + 4297: 16,63 + 4298: 18,64 + 4348: 6,67 - node: color: '#9FED580F' id: BrickTileWhiteLineN decals: - 6230: 66,28 - 6231: 65,28 + 6224: 66,28 + 6225: 65,28 - node: color: '#9FED5896' id: BrickTileWhiteLineN decals: - 4507: 34,46 + 4501: 34,46 - node: color: '#A4610696' id: BrickTileWhiteLineN @@ -2369,7 +2371,7 @@ entities: 2522: 16,-30 2523: 17,-30 2537: 19,-25 - 8042: 21,7 + 8036: 21,7 - node: color: '#D381C996' id: BrickTileWhiteLineN @@ -2399,9 +2401,9 @@ entities: 4136: 12,48 4137: 11,48 4138: 10,48 - 7033: 37,-47 - 7034: 36,-47 - 7035: 38,-47 + 7027: 37,-47 + 7028: 36,-47 + 7029: 38,-47 - node: color: '#D4D4D496' id: BrickTileWhiteLineN @@ -2409,9 +2411,9 @@ entities: 537: -18,-4 538: -19,-4 1919: 50,7 - 5149: 54,2 - 5150: 55,2 - 5151: 56,2 + 5143: 54,2 + 5144: 55,2 + 5145: 56,2 - node: color: '#DE3A3A96' id: BrickTileWhiteLineN @@ -2442,7 +2444,7 @@ entities: 1983: 20,15 4191: 23,55 4192: 22,55 - 5051: 72,-9 + 5045: 72,-9 - node: color: '#EFB34196' id: BrickTileWhiteLineN @@ -2455,11 +2457,11 @@ entities: color: '#EFD54196' id: BrickTileWhiteLineN decals: - 5686: 64,-9 - 5687: 65,-9 - 5688: 66,-9 - 5689: 67,-9 - 5690: 68,-9 + 5680: 64,-9 + 5681: 65,-9 + 5682: 66,-9 + 5683: 67,-9 + 5684: 68,-9 - node: color: '#FF669896' id: BrickTileWhiteLineN @@ -2471,27 +2473,27 @@ entities: color: '#FF81C996' id: BrickTileWhiteLineN decals: - 7060: 38,-51 - 7061: 37,-51 - 7062: 36,-51 + 7054: 38,-51 + 7055: 37,-51 + 7056: 36,-51 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineN decals: - 8659: 67,7 - 8660: 68,7 - 8661: 69,7 - 8662: 70,7 - 8663: 71,7 - 8664: 72,7 - 8665: 73,7 + 8653: 67,7 + 8654: 68,7 + 8655: 69,7 + 8656: 70,7 + 8657: 71,7 + 8658: 72,7 + 8659: 73,7 - node: color: '#00000079' id: BrickTileWhiteLineS decals: - 5155: 56,2 - 5156: 55,2 - 5157: 54,2 + 5149: 56,2 + 5150: 55,2 + 5151: 54,2 - node: color: '#221F226C' id: BrickTileWhiteLineS @@ -2502,8 +2504,8 @@ entities: id: BrickTileWhiteLineS decals: 364: -11,-2 - 7159: 28,-12 - 8069: 97,-55 + 7153: 28,-12 + 8063: 97,-55 - node: color: '#52B4E996' id: BrickTileWhiteLineS @@ -2529,24 +2531,24 @@ entities: 4211: 10,53 4212: 9,53 4213: 8,53 - 4223: 13,57 - 4224: 14,57 - 4225: 15,57 - 4239: -1,60 - 4311: 16,61 - 4312: 15,61 - 4313: 14,61 - 4314: 13,61 - 4315: 12,61 - 4316: 11,61 - 4317: 10,61 - 4318: 8,61 - 4319: 7,61 - 4320: 6,61 - 4321: 5,61 - 4322: 4,61 - 4355: 6,66 - 8041: 15,-17 + 4220: 13,57 + 4221: 14,57 + 4222: 15,57 + 4233: -1,60 + 4305: 16,61 + 4306: 15,61 + 4307: 14,61 + 4308: 13,61 + 4309: 12,61 + 4310: 11,61 + 4311: 10,61 + 4312: 8,61 + 4313: 7,61 + 4314: 6,61 + 4315: 5,61 + 4316: 4,61 + 4349: 6,66 + 8035: 15,-17 - node: color: '#6F6F73D0' id: BrickTileWhiteLineS @@ -2557,24 +2559,24 @@ entities: color: '#79150096' id: BrickTileWhiteLineS decals: - 6219: 62,29 - 6220: 63,29 + 6213: 62,29 + 6214: 63,29 - node: color: '#9FED580F' id: BrickTileWhiteLineS decals: - 6234: 65,32 - 6235: 66,32 + 6228: 65,32 + 6229: 66,32 - node: color: '#9FED5896' id: BrickTileWhiteLineS decals: - 4501: 35,42 - 4502: 34,42 - 4503: 33,42 - 7733: 123,-8 - 7734: 124,-8 - 7735: 125,-8 + 4495: 35,42 + 4496: 34,42 + 4497: 33,42 + 7727: 123,-8 + 7728: 124,-8 + 7729: 125,-8 - node: color: '#A4610696' id: BrickTileWhiteLineS @@ -2615,25 +2617,25 @@ entities: 4144: 12,51 4145: 11,51 4146: 10,51 - 5054: 56,-13 - 5055: 55,-13 - 5056: 54,-13 - 5057: 52,-13 - 5058: 53,-13 - 7036: 38,-51 - 7037: 37,-51 - 7038: 36,-51 - 8048: 17,-17 + 5048: 56,-13 + 5049: 55,-13 + 5050: 54,-13 + 5051: 52,-13 + 5052: 53,-13 + 7030: 38,-51 + 7031: 37,-51 + 7032: 36,-51 + 8042: 17,-17 - node: color: '#D4D4D496' id: BrickTileWhiteLineS decals: - 5161: 56,8 - 5162: 55,8 - 5163: 54,8 - 5465: 73,-4 - 5466: 72,-4 - 5467: 71,-4 + 5155: 56,8 + 5156: 55,8 + 5157: 54,8 + 5459: 73,-4 + 5460: 72,-4 + 5461: 71,-4 - node: color: '#DE3A3A96' id: BrickTileWhiteLineS @@ -2668,7 +2670,7 @@ entities: 3506: 42,-24 4189: 22,53 4190: 23,53 - 8044: 16,-17 + 8038: 16,-17 - node: color: '#EFB34196' id: BrickTileWhiteLineS @@ -2679,32 +2681,32 @@ entities: 3027: -33,-45 3028: -32,-45 3029: -31,-45 - 8052: 18,-17 + 8046: 18,-17 - node: color: '#EFD54196' id: BrickTileWhiteLineS decals: - 5674: 58,-13 - 5675: 59,-13 - 5676: 61,-13 - 5677: 60,-13 - 5682: 67,-13 - 5683: 66,-13 - 5684: 65,-13 - 5685: 64,-13 + 5668: 58,-13 + 5669: 59,-13 + 5670: 61,-13 + 5671: 60,-13 + 5676: 67,-13 + 5677: 66,-13 + 5678: 65,-13 + 5679: 64,-13 - node: color: '#EFDF4141' id: BrickTileWhiteLineS decals: - 5821: 91,5 - 5822: 90,5 - 5823: 89,5 - 5824: 88,5 - 5825: 87,5 - 5826: 86,5 - 5827: 83,5 - 5828: 84,5 - 5829: 85,5 + 5815: 91,5 + 5816: 90,5 + 5817: 89,5 + 5818: 88,5 + 5819: 87,5 + 5820: 86,5 + 5821: 83,5 + 5822: 84,5 + 5823: 85,5 - node: color: '#FF669896' id: BrickTileWhiteLineS @@ -2716,43 +2718,43 @@ entities: color: '#FF81C996' id: BrickTileWhiteLineS decals: - 7063: 36,-47 - 7064: 37,-47 - 7065: 38,-47 + 7057: 36,-47 + 7058: 37,-47 + 7059: 38,-47 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineS decals: - 8647: 73,12 - 8648: 72,12 - 8649: 71,12 - 8650: 70,12 - 8651: 69,12 - 8652: 67,12 - 8653: 68,12 + 8641: 73,12 + 8642: 72,12 + 8643: 71,12 + 8644: 70,12 + 8645: 69,12 + 8646: 67,12 + 8647: 68,12 - node: color: '#0000006F' id: BrickTileWhiteLineW decals: - 6484: 79,44 - 6485: 79,45 + 6478: 79,44 + 6479: 79,45 - node: color: '#334E6DC8' id: BrickTileWhiteLineW decals: 365: -12,-1 366: -12,1 - 6227: 64,32 - 6228: 64,33 - 6229: 64,34 - 7156: 29,-14 - 7157: 29,-13 - 7162: 27,-12 - 7163: 27,-11 - 7164: 27,-10 - 8064: 96,-54 - 8065: 96,-53 - 8066: 96,-52 + 6221: 64,32 + 6222: 64,33 + 6223: 64,34 + 7150: 29,-14 + 7151: 29,-13 + 7156: 27,-12 + 7157: 27,-11 + 7158: 27,-10 + 8058: 96,-54 + 8059: 96,-53 + 8060: 96,-52 - node: color: '#52B4E996' id: BrickTileWhiteLineW @@ -2781,21 +2783,21 @@ entities: 4077: 22,49 4124: 9,50 4217: 6,53 - 4323: 3,62 - 4327: 2,62 - 4351: 4,67 + 4317: 3,62 + 4321: 2,62 + 4345: 4,67 - node: color: '#79150096' id: BrickTileWhiteLineW decals: - 6222: 64,28 - 6223: 64,26 - 6243: 64,27 + 6216: 64,28 + 6217: 64,26 + 6237: 64,27 - node: color: '#9FED5896' id: BrickTileWhiteLineW decals: - 4508: 32,44 + 4502: 32,44 - node: color: '#A4610696' id: BrickTileWhiteLineW @@ -2839,18 +2841,18 @@ entities: 3673: 37,-30 4141: 15,49 4154: 15,50 - 7042: 35,-49 - 7043: 35,-48 - 7070: 35,-50 + 7036: 35,-49 + 7037: 35,-48 + 7064: 35,-50 - node: color: '#D4D4D496' id: BrickTileWhiteLineW decals: - 5864: 95,-22 - 5865: 95,-21 - 5866: 95,-20 - 5867: 102,-21 - 5868: 102,-20 + 5858: 95,-22 + 5859: 95,-21 + 5860: 95,-20 + 5861: 102,-21 + 5862: 102,-20 - node: color: '#DE3A3A96' id: BrickTileWhiteLineW @@ -2896,7 +2898,7 @@ entities: decals: 3017: -37,-44 3018: -37,-42 - 7787: 103,-18 + 7781: 103,-18 - node: color: '#FF669896' id: BrickTileWhiteLineW @@ -2908,42 +2910,42 @@ entities: color: '#FF81C996' id: BrickTileWhiteLineW decals: - 7057: 39,-50 - 7058: 39,-49 - 7059: 39,-48 + 7051: 39,-50 + 7052: 39,-49 + 7053: 39,-48 - node: color: '#FFFFFFFF' id: Busha1 decals: - 6548: 84.838936,41.97285 + 6542: 84.838936,41.97285 - node: color: '#FFFFFFFF' id: Bushb1 decals: - 4535: 29.053492,-53.972366 + 4529: 29.053492,-53.972366 - node: color: '#FFFFFFFF' id: Bushb2 decals: 3067: -28.924486,-23.036465 - 4340: 4,65 + 4334: 4,65 - node: color: '#FFFFFFFF' id: Bushb3 decals: 1393: 18.050806,-1.001214 - 4533: 32.02224,-52.08174 - 6301: 106.39112,38.835938 + 4527: 32.02224,-52.08174 + 6295: 106.39112,38.835938 - node: color: '#FFFFFFFF' id: Bushc2 decals: - 7685: 90.679,-52.116093 + 7679: 90.679,-52.116093 - node: color: '#FFFFFFFF' id: Bushc3 decals: - 4534: 31.475367,-45.941116 + 4528: 31.475367,-45.941116 - node: color: '#FFFFFFFF' id: Bushd3 @@ -2953,19 +2955,19 @@ entities: color: '#FFFFFFFF' id: Bushe1 decals: - 4544: 29.506617,-53.878616 - 6609: 67.95875,55.00042 + 4538: 29.506617,-53.878616 + 6603: 67.95875,55.00042 - node: color: '#FFFFFFFF' id: Bushe2 decals: - 6610: 68.72437,54.93792 + 6604: 68.72437,54.93792 - node: color: '#FFFFFFFF' id: Bushe3 decals: - 6560: 87.13581,41.97285 - 6611: 68.33375,54.96917 + 6554: 87.13581,41.97285 + 6605: 68.33375,54.96917 - node: color: '#FFFFFFFF' id: Bushe4 @@ -2982,26 +2984,26 @@ entities: id: Bushg1 decals: 901: -33.131474,56.992973 - 6615: 66.95875,54.90667 + 6609: 66.95875,54.90667 - node: color: '#FFFFFFFF' id: Bushg2 decals: 283: -4.471508,41.21996 3530: 43.178425,-19.108522 - 6607: 70.97437,52.15418 - 6616: 69.24,55.016045 + 6601: 70.97437,52.15418 + 6610: 69.24,55.016045 - node: color: '#FFFFFFFF' id: Bushg3 decals: - 6608: 68.115,52.06043 + 6602: 68.115,52.06043 - node: color: '#FFFFFFFF' id: Bushh1 decals: 896: -35.725224,54.66485 - 6593: 69.069954,42.01216 + 6587: 69.069954,42.01216 - node: color: '#FFFFFFFF' id: Bushh2 @@ -3013,8 +3015,8 @@ entities: decals: 898: -33.975224,55.03985 1933: 48.9472,7.053311 - 6559: 93.088936,42.0666 - 6592: 66.913704,41.94966 + 6553: 93.088936,42.0666 + 6586: 66.913704,41.94966 - node: color: '#FFFFFFFF' id: Bushi1 @@ -3026,13 +3028,13 @@ entities: 1932: 51.119076,1.8814359 3078: -27.971361,-8.963896 3920: 10.478245,35.019424 - 4542: 30.990992,-45.92549 - 4543: 30.006617,-53.89424 - 4546: 26.194336,-45.04562 - 6553: 90.838936,42.019726 - 6594: 67.89808,42.01216 - 6604: 69.59937,49.044804 - 7682: 92.882126,-52.881718 + 4536: 30.990992,-45.92549 + 4537: 30.006617,-53.89424 + 4540: 26.194336,-45.04562 + 6547: 90.838936,42.019726 + 6588: 67.89808,42.01216 + 6598: 69.59937,49.044804 + 7676: 92.882126,-52.881718 - node: color: '#FFFFFFFF' id: Bushi2 @@ -3040,7 +3042,7 @@ entities: 269: -5.018383,15.046175 723: -35.04179,33.03312 905: -33.67835,56.8836 - 7683: 89.304,-54.866093 + 7677: 89.304,-54.866093 - node: color: '#FFFFFFFF' id: Bushi3 @@ -3049,9 +3051,9 @@ entities: 729: -31.026165,36.90812 900: -34.693974,53.0711 3529: 51.020737,-24.440681 - 6554: 86.79206,41.925976 - 6605: 68.06812,48.99793 - 7684: 88.179,-53.100468 + 6548: 86.79206,41.925976 + 6599: 68.06812,48.99793 + 7678: 88.179,-53.100468 - node: color: '#FFFFFFFF' id: Bushi4 @@ -3061,30 +3063,30 @@ entities: 906: -33.943974,52.97735 1391: -28.738531,41.86413 3528: 50.958237,-25.487556 - 4541: 29.490992,-45.92549 - 6555: 85.29206,41.832226 - 7681: 91.929,-54.787968 + 4535: 29.490992,-45.92549 + 6549: 85.29206,41.832226 + 7675: 91.929,-54.787968 - node: color: '#FFFFFFFF' id: Bushj1 decals: 734: -31.19804,36.97062 3921: 15.946995,42.09755 - 6308: 106.67237,38.054688 + 6302: 106.67237,38.054688 - node: color: '#FFFFFFFF' id: Bushj2 decals: 773: -9.114742,47.055725 774: -8.915163,47.04446 - 6306: 108.062996,38.773438 - 6614: 67.16187,52.016045 + 6300: 108.062996,38.773438 + 6608: 67.16187,52.016045 - node: color: '#FFFFFFFF' id: Bushj3 decals: - 6307: 106.281746,40.070312 - 6613: 69.95875,52.03167 + 6301: 106.281746,40.070312 + 6607: 69.95875,52.03167 - node: color: '#FFFFFFFF' id: Bushk1 @@ -3096,7 +3098,7 @@ entities: decals: 902: -36.8971,54.35235 1931: 50.056576,1.9439359 - 6612: 70.83375,55.016045 + 6606: 70.83375,55.016045 - node: color: '#FFFFFFFF' id: Bushk3 @@ -3126,114 +3128,114 @@ entities: id: Bushm2 decals: 1999: 17.487259,11.980481 - 5181: 56.978905,5.4696355 - 6558: 90.963936,41.97285 + 5175: 56.978905,5.4696355 + 6552: 90.963936,41.97285 - node: color: '#FFFFFFFF' id: Bushn1 decals: - 6556: 92.088936,42.050976 - 6557: 85.91706,42.019726 - 6606: 68.94312,49.02918 + 6550: 92.088936,42.050976 + 6551: 85.91706,42.019726 + 6600: 68.94312,49.02918 - node: color: '#334E6DC8' id: CheckerNESW decals: - 6099: 58,5 - 6100: 58,6 - 6101: 59,6 - 6102: 59,5 - 6103: 60,5 - 6104: 60,6 - 8111: 59,49 - 8112: 60,49 - 8113: 61,49 - 8114: 61,50 - 8115: 60,50 - 8116: 59,50 - 8117: 59,51 - 8118: 60,51 - 8119: 61,51 + 6093: 58,5 + 6094: 58,6 + 6095: 59,6 + 6096: 59,5 + 6097: 60,5 + 6098: 60,6 + 8105: 59,49 + 8106: 60,49 + 8107: 61,49 + 8108: 61,50 + 8109: 60,50 + 8110: 59,50 + 8111: 59,51 + 8112: 60,51 + 8113: 61,51 - node: color: '#52B4E947' id: CheckerNESW decals: - 4415: 23,57 - 4416: 22,57 - 4417: 21,57 - 4418: 21,58 - 4419: 22,58 - 4420: 23,58 - 4421: 23,59 - 4422: 22,59 - 4423: 21,59 - 4424: 22,60 - 4425: 23,60 + 4409: 23,57 + 4410: 22,57 + 4411: 21,57 + 4412: 21,58 + 4413: 22,58 + 4414: 23,58 + 4415: 23,59 + 4416: 22,59 + 4417: 21,59 + 4418: 22,60 + 4419: 23,60 - node: color: '#52B4E94A' id: CheckerNESW decals: - 4360: 5,70 - 4361: 4,70 - 4362: 4,71 - 4363: 5,71 - 4364: 5,72 - 4365: 4,72 - 4366: 6,72 - 4367: 6,71 - 4368: 6,70 - 4369: 7,70 - 4370: 7,71 - 4371: 7,72 - 6111: 60,14 - 6112: 60,15 - 6113: 61,15 - 6114: 61,14 - 6115: 62,14 - 6116: 62,15 - 6117: 62,16 - 6118: 61,16 - 6119: 60,16 - 6120: 60,17 - 6121: 61,17 - 6122: 62,17 - 6123: 62,18 - 6124: 61,18 - 6125: 60,18 - 6126: 61,19 - 6127: 62,19 - 6128: 64,18 - 6129: 65,18 - 6130: 66,18 - 6131: 66,19 - 6132: 67,18 - 6133: 68,18 - 6134: 68,19 - 6135: -33,25 - 6136: -33,26 - 6137: -33,27 - 6138: -34,27 - 6139: -34,26 - 6140: -34,25 - 6141: -35,25 - 6142: -35,26 - 6143: -35,27 - 6144: -36,27 - 6145: -36,26 - 6146: -36,25 - 6147: -37,25 - 6148: -37,26 - 6149: -37,27 - 6150: -38,27 - 6151: -38,26 - 6152: -38,25 - 6153: -34,23 - 6154: -34,22 - 6155: -34,21 - 6156: -33,21 - 6157: -33,22 - 6158: -33,23 - 6159: -34,24 + 4354: 5,70 + 4355: 4,70 + 4356: 4,71 + 4357: 5,71 + 4358: 5,72 + 4359: 4,72 + 4360: 6,72 + 4361: 6,71 + 4362: 6,70 + 4363: 7,70 + 4364: 7,71 + 4365: 7,72 + 6105: 60,14 + 6106: 60,15 + 6107: 61,15 + 6108: 61,14 + 6109: 62,14 + 6110: 62,15 + 6111: 62,16 + 6112: 61,16 + 6113: 60,16 + 6114: 60,17 + 6115: 61,17 + 6116: 62,17 + 6117: 62,18 + 6118: 61,18 + 6119: 60,18 + 6120: 61,19 + 6121: 62,19 + 6122: 64,18 + 6123: 65,18 + 6124: 66,18 + 6125: 66,19 + 6126: 67,18 + 6127: 68,18 + 6128: 68,19 + 6129: -33,25 + 6130: -33,26 + 6131: -33,27 + 6132: -34,27 + 6133: -34,26 + 6134: -34,25 + 6135: -35,25 + 6136: -35,26 + 6137: -35,27 + 6138: -36,27 + 6139: -36,26 + 6140: -36,25 + 6141: -37,25 + 6142: -37,26 + 6143: -37,27 + 6144: -38,27 + 6145: -38,26 + 6146: -38,25 + 6147: -34,23 + 6148: -34,22 + 6149: -34,21 + 6150: -33,21 + 6151: -33,22 + 6152: -33,23 + 6153: -34,24 - node: color: '#52B4E996' id: CheckerNESW @@ -3283,8 +3285,8 @@ entities: 68: -19,26 69: -18,26 70: -17,26 - 5668: 61,1 - 5669: 59,2 + 5662: 61,1 + 5663: 59,2 - node: color: '#7915009E' id: CheckerNESW @@ -3325,28 +3327,28 @@ entities: color: '#9FED584D' id: CheckerNESW decals: - 8497: 96,19 - 8498: 96,20 - 8499: 96,21 - 8500: 97,21 - 8501: 97,20 - 8502: 97,19 - 8503: 97,18 - 8504: 96,18 - 8505: 98,18 - 8506: 98,19 - 8507: 98,20 - 8508: 98,21 - 8509: 99,21 - 8510: 99,20 - 8511: 99,19 - 8512: 99,18 - 8513: 100,18 - 8514: 100,19 - 8515: 100,20 - 8516: 100,21 - 8517: 95,19 - 8518: 95,20 + 8491: 96,19 + 8492: 96,20 + 8493: 96,21 + 8494: 97,21 + 8495: 97,20 + 8496: 97,19 + 8497: 97,18 + 8498: 96,18 + 8499: 98,18 + 8500: 98,19 + 8501: 98,20 + 8502: 98,21 + 8503: 99,21 + 8504: 99,20 + 8505: 99,19 + 8506: 99,18 + 8507: 100,18 + 8508: 100,19 + 8509: 100,20 + 8510: 100,21 + 8511: 95,19 + 8512: 95,20 - node: color: '#9FED5896' id: CheckerNESW @@ -3380,31 +3382,31 @@ entities: 3794: 24,37 3795: 25,37 3796: 25,36 - 4259: 0,57 - 4260: 0,58 - 4261: -1,58 - 4262: -1,57 - 4263: -2,57 - 4264: -2,58 - 4265: -2,59 - 4450: 30,45 - 4451: 30,46 - 4452: 29,46 - 4453: 29,45 - 4454: 28,45 - 4455: 28,46 - 4456: 27,46 - 4457: 27,45 - 4458: 28,40 - 4459: 28,41 - 4460: 28,42 - 4461: 29,42 - 4462: 29,41 - 4463: 29,40 - 4464: 30,43 - 4465: 29,43 - 4466: 28,43 - 4467: 27,43 + 4253: 0,57 + 4254: 0,58 + 4255: -1,58 + 4256: -1,57 + 4257: -2,57 + 4258: -2,58 + 4259: -2,59 + 4444: 30,45 + 4445: 30,46 + 4446: 29,46 + 4447: 29,45 + 4448: 28,45 + 4449: 28,46 + 4450: 27,46 + 4451: 27,45 + 4452: 28,40 + 4453: 28,41 + 4454: 28,42 + 4455: 29,42 + 4456: 29,41 + 4457: 29,40 + 4458: 30,43 + 4459: 29,43 + 4460: 28,43 + 4461: 27,43 - node: color: '#A4610696' id: CheckerNESW @@ -3427,83 +3429,83 @@ entities: color: '#C3922553' id: CheckerNESW decals: - 5392: 78,-7 - 5393: 79,-7 - 5394: 80,-7 - 5395: 81,-7 - 5396: 82,-7 - 5397: 83,-7 - 5398: 83,-6 - 5399: 82,-6 - 5400: 81,-6 - 5401: 80,-6 - 5402: 79,-6 - 5403: 78,-6 - 5404: 77,-6 - 5405: 77,-7 - 5406: 76,-6 - 5407: 76,-5 - 5408: 76,-4 - 5409: 76,-3 - 5410: 77,-3 - 5411: 77,-4 - 5412: 77,-5 - 5413: 78,-5 - 5414: 78,-4 - 5415: 79,-4 - 5416: 79,-5 - 5417: 80,-5 - 5418: 80,-4 - 5419: 81,-4 - 5420: 81,-5 - 5421: 82,-5 - 5422: 82,-4 - 5423: 83,-5 - 5424: 83,-4 - 5425: 83,-3 - 5426: 83,-1 - 5427: 83,0 - 5428: 83,1 - 5429: 82,1 - 5430: 82,0 - 5431: 81,0 - 5432: 81,1 - 5433: 80,1 - 5434: 80,0 - 5435: 79,0 - 5436: 79,1 - 5437: 78,1 - 5438: 78,0 - 5439: 77,0 - 5440: 76,0 - 5441: 76,-1 - 5442: 77,-1 + 5386: 78,-7 + 5387: 79,-7 + 5388: 80,-7 + 5389: 81,-7 + 5390: 82,-7 + 5391: 83,-7 + 5392: 83,-6 + 5393: 82,-6 + 5394: 81,-6 + 5395: 80,-6 + 5396: 79,-6 + 5397: 78,-6 + 5398: 77,-6 + 5399: 77,-7 + 5400: 76,-6 + 5401: 76,-5 + 5402: 76,-4 + 5403: 76,-3 + 5404: 77,-3 + 5405: 77,-4 + 5406: 77,-5 + 5407: 78,-5 + 5408: 78,-4 + 5409: 79,-4 + 5410: 79,-5 + 5411: 80,-5 + 5412: 80,-4 + 5413: 81,-4 + 5414: 81,-5 + 5415: 82,-5 + 5416: 82,-4 + 5417: 83,-5 + 5418: 83,-4 + 5419: 83,-3 + 5420: 83,-1 + 5421: 83,0 + 5422: 83,1 + 5423: 82,1 + 5424: 82,0 + 5425: 81,0 + 5426: 81,1 + 5427: 80,1 + 5428: 80,0 + 5429: 79,0 + 5430: 79,1 + 5431: 78,1 + 5432: 78,0 + 5433: 77,0 + 5434: 76,0 + 5435: 76,-1 + 5436: 77,-1 - node: color: '#D381C996' id: CheckerNESW decals: - 4737: 35,-36 - 4738: 35,-35 - 4739: 35,-34 - 4740: 34,-34 - 4741: 34,-35 - 4742: 34,-36 + 4731: 35,-36 + 4732: 35,-35 + 4733: 35,-34 + 4734: 34,-34 + 4735: 34,-35 + 4736: 34,-36 - node: color: '#D4D4D40F' id: CheckerNESW decals: - 4983: 65,-18 - 4984: 64,-18 - 4985: 63,-18 - 4986: 63,-17 - 4987: 64,-17 - 4988: 65,-17 - 4989: 65,-16 - 4990: 64,-16 - 4991: 63,-16 - 4992: 63,-15 - 4993: 64,-15 - 4994: 65,-15 + 4977: 65,-18 + 4978: 64,-18 + 4979: 63,-18 + 4980: 63,-17 + 4981: 64,-17 + 4982: 65,-17 + 4983: 65,-16 + 4984: 64,-16 + 4985: 63,-16 + 4986: 63,-15 + 4987: 64,-15 + 4988: 65,-15 - node: color: '#D4D4D412' id: CheckerNESW @@ -3558,32 +3560,32 @@ entities: 452: -16,42 453: -15,42 454: -15,42 - 5514: 76,-15 - 5515: 77,-15 - 5516: 78,-15 - 5517: 78,-14 - 5518: 77,-14 - 5519: 76,-14 - 5520: 75,-14 - 5521: 75,-15 - 5522: 74,-15 - 5523: 74,-14 - 5524: 73,-14 - 5525: 73,-15 - 5526: 72,-15 - 5527: 72,-14 - 5528: 78,-13 - 5529: 78,-12 - 5530: 78,-11 - 5531: 78,-10 - 5532: 77,-10 - 5533: 76,-10 - 5534: 76,-11 - 5535: 77,-11 - 5536: 77,-12 - 5537: 76,-12 - 5538: 76,-13 - 5539: 77,-13 + 5508: 76,-15 + 5509: 77,-15 + 5510: 78,-15 + 5511: 78,-14 + 5512: 77,-14 + 5513: 76,-14 + 5514: 75,-14 + 5515: 75,-15 + 5516: 74,-15 + 5517: 74,-14 + 5518: 73,-14 + 5519: 73,-15 + 5520: 72,-15 + 5521: 72,-14 + 5522: 78,-13 + 5523: 78,-12 + 5524: 78,-11 + 5525: 78,-10 + 5526: 77,-10 + 5527: 76,-10 + 5528: 76,-11 + 5529: 77,-11 + 5530: 77,-12 + 5531: 76,-12 + 5532: 76,-13 + 5533: 77,-13 - node: color: '#D4D4D42B' id: CheckerNESW @@ -3661,38 +3663,38 @@ entities: color: '#EFCF4179' id: CheckerNESW decals: - 6902: -9,-30 - 6903: -10,-29 - 6904: -11,-29 - 6905: -12,-30 - 6906: -11,-28 - 6907: -8,-28 + 6896: -9,-30 + 6897: -10,-29 + 6898: -11,-29 + 6899: -12,-30 + 6900: -11,-28 + 6901: -8,-28 - node: color: '#EFD54169' id: CheckerNESW decals: - 5239: 82,-13 - 5240: 83,-13 - 5241: 84,-13 - 5242: 85,-13 - 5243: 85,-12 - 5244: 84,-12 - 5245: 83,-12 - 5246: 82,-12 - 5247: 82,-11 - 5248: 83,-11 - 5249: 84,-11 - 5250: 85,-11 + 5233: 82,-13 + 5234: 83,-13 + 5235: 84,-13 + 5236: 85,-13 + 5237: 85,-12 + 5238: 84,-12 + 5239: 83,-12 + 5240: 82,-12 + 5241: 82,-11 + 5242: 83,-11 + 5243: 84,-11 + 5244: 85,-11 - node: color: '#EFD8416C' id: CheckerNESW decals: - 5849: 97,-13 - 5850: 98,-13 - 5851: 98,-12 - 5852: 97,-12 - 5853: 97,-11 - 5854: 98,-11 + 5843: 97,-13 + 5844: 98,-13 + 5845: 98,-12 + 5846: 97,-12 + 5847: 97,-11 + 5848: 98,-11 - node: color: '#FFCF7C57' id: CheckerNESW @@ -3746,15 +3748,15 @@ entities: color: '#FFFFFF3B' id: CheckerNESW decals: - 4376: 17,66 - 4377: 17,67 - 4378: 17,68 - 4379: 18,68 - 4380: 18,67 - 4381: 18,66 - 4382: 19,66 - 4383: 19,67 - 4384: 19,68 + 4370: 17,66 + 4371: 17,67 + 4372: 17,68 + 4373: 18,68 + 4374: 18,67 + 4375: 18,66 + 4376: 19,66 + 4377: 19,67 + 4378: 19,68 - node: color: '#FFFFFFBD' id: CheckerNESW @@ -3814,76 +3816,76 @@ entities: color: '#334E6DC8' id: CheckerNWSE decals: - 4404: 21,57 - 4405: 21,58 - 4406: 21,59 - 4407: 22,57 - 4408: 22,58 - 4409: 22,59 - 4410: 22,60 - 4411: 23,57 - 4412: 23,58 - 4413: 23,59 - 4414: 23,60 + 4398: 21,57 + 4399: 21,58 + 4400: 21,59 + 4401: 22,57 + 4402: 22,58 + 4403: 22,59 + 4404: 22,60 + 4405: 23,57 + 4406: 23,58 + 4407: 23,59 + 4408: 23,60 - node: color: '#52B4E996' id: CheckerNWSE decals: - 4442: 27,45 - 4443: 27,46 - 4444: 28,46 - 4445: 28,45 - 4446: 29,45 - 4447: 30,45 - 4448: 30,46 - 4449: 29,46 - 4468: 29,40 - 4469: 28,40 - 4470: 28,41 - 4471: 29,41 - 4472: 29,42 - 4473: 29,43 - 4474: 30,43 - 4475: 28,43 - 4476: 28,42 - 4477: 27,43 - 8555: 67,9 - 8556: 68,11 - 8557: 68,10 - 8558: 68,9 - 8559: 69,9 - 8560: 69,10 - 8561: 69,11 - 8562: 70,11 - 8563: 70,10 - 8564: 70,9 - 8565: 71,9 - 8566: 71,10 - 8567: 71,11 - 8568: 72,11 - 8569: 72,10 - 8570: 72,9 - 8571: 73,9 - 8572: 73,10 - 8573: 73,11 - 8574: 67,8 - 8575: 68,8 - 8576: 69,8 - 8577: 70,8 - 8578: 71,8 - 8579: 72,8 - 8580: 73,8 - 8583: 67,11 - 8584: 67,10 - 8734: 15,55 - 8735: 14,55 - 8736: 13,55 - 8737: 13,54 - 8738: 14,54 - 8739: 15,54 - 8740: 15,53 - 8741: 14,53 - 8742: 13,53 + 4436: 27,45 + 4437: 27,46 + 4438: 28,46 + 4439: 28,45 + 4440: 29,45 + 4441: 30,45 + 4442: 30,46 + 4443: 29,46 + 4462: 29,40 + 4463: 28,40 + 4464: 28,41 + 4465: 29,41 + 4466: 29,42 + 4467: 29,43 + 4468: 30,43 + 4469: 28,43 + 4470: 28,42 + 4471: 27,43 + 8549: 67,9 + 8550: 68,11 + 8551: 68,10 + 8552: 68,9 + 8553: 69,9 + 8554: 69,10 + 8555: 69,11 + 8556: 70,11 + 8557: 70,10 + 8558: 70,9 + 8559: 71,9 + 8560: 71,10 + 8561: 71,11 + 8562: 72,11 + 8563: 72,10 + 8564: 72,9 + 8565: 73,9 + 8566: 73,10 + 8567: 73,11 + 8568: 67,8 + 8569: 68,8 + 8570: 69,8 + 8571: 70,8 + 8572: 71,8 + 8573: 72,8 + 8574: 73,8 + 8577: 67,11 + 8578: 67,10 + 8728: 15,55 + 8729: 14,55 + 8730: 13,55 + 8731: 13,54 + 8732: 14,54 + 8733: 15,54 + 8734: 15,53 + 8735: 14,53 + 8736: 13,53 - node: color: '#79150096' id: CheckerNWSE @@ -3927,20 +3929,20 @@ entities: 2067: 11,-1 2068: 11,-2 2069: 11,-3 - 5251: 85,-13 - 5252: 84,-13 - 5253: 83,-13 - 5254: 82,-13 - 5255: 82,-12 - 5256: 83,-12 - 5257: 84,-12 - 5258: 85,-12 - 5259: 85,-11 - 5260: 84,-11 - 5261: 83,-11 - 5262: 82,-11 - 5670: 61,2 - 5671: 59,1 + 5245: 85,-13 + 5246: 84,-13 + 5247: 83,-13 + 5248: 82,-13 + 5249: 82,-12 + 5250: 83,-12 + 5251: 84,-12 + 5252: 85,-12 + 5253: 85,-11 + 5254: 84,-11 + 5255: 83,-11 + 5256: 82,-11 + 5664: 61,2 + 5665: 59,1 - node: color: '#9FED5837' id: CheckerNWSE @@ -3965,20 +3967,20 @@ entities: color: '#9FED5896' id: CheckerNWSE decals: - 4483: 33,48 - 4484: 32,48 - 4485: 32,49 - 4486: 33,49 - 4487: 33,50 - 4488: 32,50 - 4489: 35,48 - 4490: 35,49 - 4491: 35,50 - 4492: 36,50 - 4493: 36,49 - 4494: 36,48 - 4495: 35,47 - 4496: 33,47 + 4477: 33,48 + 4478: 32,48 + 4479: 32,49 + 4480: 33,49 + 4481: 33,50 + 4482: 32,50 + 4483: 35,48 + 4484: 35,49 + 4485: 35,50 + 4486: 36,50 + 4487: 36,49 + 4488: 36,48 + 4489: 35,47 + 4490: 33,47 - node: color: '#A4610641' id: CheckerNWSE @@ -4005,7 +4007,7 @@ entities: 2820: -18,-21 2821: -20,-21 2822: -20,-20 - 8224: 76,-4 + 8218: 76,-4 - node: color: '#D381C996' id: CheckerNWSE @@ -4081,22 +4083,22 @@ entities: 4182: 4,49 4183: 3,49 4184: 2,49 - 4628: 30,-59 - 4629: 29,-59 - 4630: 28,-59 - 4631: 27,-59 - 4632: 26,-59 - 4633: 25,-59 - 4634: 24,-59 - 4635: 30,-55 - 4636: 29,-55 - 8008: 122,4 - 8009: 121,4 - 8010: 121,5 - 8011: 122,5 - 8012: 122,6 - 8013: 121,6 - 8014: 121,7 + 4622: 30,-59 + 4623: 29,-59 + 4624: 28,-59 + 4625: 27,-59 + 4626: 26,-59 + 4627: 25,-59 + 4628: 24,-59 + 4629: 30,-55 + 4630: 29,-55 + 8002: 122,4 + 8003: 121,4 + 8004: 121,5 + 8005: 122,5 + 8006: 122,6 + 8007: 121,6 + 8008: 121,7 - node: color: '#D4D4D428' id: CheckerNWSE @@ -4117,28 +4119,28 @@ entities: color: '#D4D4D45A' id: CheckerNWSE decals: - 7547: 40,58 - 7548: 39,59 - 7549: 38,59 - 7550: 38,60 - 7551: 40,60 - 7552: 40,61 - 7553: 37,61 - 7554: 36,60 - 7555: 36,59 - 7556: 37,58 - 7557: 35,58 - 7558: 35,59 - 7559: 35,60 - 7560: 36,58 - 7561: 37,59 - 7562: 37,60 - 7563: 38,61 - 7564: 39,61 - 7565: 39,60 - 7566: 40,59 - 7567: 39,58 - 7568: 38,58 + 7541: 40,58 + 7542: 39,59 + 7543: 38,59 + 7544: 38,60 + 7545: 40,60 + 7546: 40,61 + 7547: 37,61 + 7548: 36,60 + 7549: 36,59 + 7550: 37,58 + 7551: 35,58 + 7552: 35,59 + 7553: 35,60 + 7554: 36,58 + 7555: 37,59 + 7556: 37,60 + 7557: 38,61 + 7558: 39,61 + 7559: 39,60 + 7560: 40,59 + 7561: 39,58 + 7562: 38,58 - node: color: '#D4D4D496' id: CheckerNWSE @@ -4173,79 +4175,79 @@ entities: color: '#EFC54144' id: CheckerNWSE decals: - 6105: 60,5 - 6106: 60,6 - 6107: 59,6 - 6108: 59,5 - 6109: 58,5 - 6110: 58,6 + 6099: 60,5 + 6100: 60,6 + 6101: 59,6 + 6102: 59,5 + 6103: 58,5 + 6104: 58,6 - node: color: '#EFCF414A' id: CheckerNWSE decals: - 5341: 78,-7 - 5342: 79,-7 - 5343: 80,-7 - 5344: 81,-7 - 5345: 82,-7 - 5346: 83,-7 - 5347: 83,-6 - 5348: 82,-6 - 5349: 81,-6 - 5350: 79,-6 - 5351: 80,-6 - 5352: 78,-6 - 5353: 77,-6 - 5354: 77,-7 - 5355: 76,-6 - 5356: 76,-5 - 5357: 76,-3 - 5358: 76,-4 - 5359: 77,-3 - 5360: 77,-4 - 5361: 77,-5 - 5362: 78,-5 - 5363: 79,-5 - 5364: 78,-4 - 5365: 79,-4 - 5366: 80,-4 - 5367: 80,-5 - 5368: 81,-5 - 5369: 81,-4 - 5370: 82,-5 - 5371: 82,-4 - 5372: 83,-5 - 5373: 83,-4 - 5374: 83,-3 - 5375: 77,-1 - 5376: 76,-1 - 5377: 76,0 - 5378: 77,0 - 5379: 78,0 - 5380: 78,1 - 5381: 79,1 - 5382: 79,0 - 5383: 80,0 - 5384: 80,1 - 5385: 81,1 - 5386: 81,0 - 5387: 82,0 - 5388: 82,1 - 5389: 83,1 - 5390: 83,0 - 5391: 83,-1 + 5335: 78,-7 + 5336: 79,-7 + 5337: 80,-7 + 5338: 81,-7 + 5339: 82,-7 + 5340: 83,-7 + 5341: 83,-6 + 5342: 82,-6 + 5343: 81,-6 + 5344: 79,-6 + 5345: 80,-6 + 5346: 78,-6 + 5347: 77,-6 + 5348: 77,-7 + 5349: 76,-6 + 5350: 76,-5 + 5351: 76,-3 + 5352: 76,-4 + 5353: 77,-3 + 5354: 77,-4 + 5355: 77,-5 + 5356: 78,-5 + 5357: 79,-5 + 5358: 78,-4 + 5359: 79,-4 + 5360: 80,-4 + 5361: 80,-5 + 5362: 81,-5 + 5363: 81,-4 + 5364: 82,-5 + 5365: 82,-4 + 5366: 83,-5 + 5367: 83,-4 + 5368: 83,-3 + 5369: 77,-1 + 5370: 76,-1 + 5371: 76,0 + 5372: 77,0 + 5373: 78,0 + 5374: 78,1 + 5375: 79,1 + 5376: 79,0 + 5377: 80,0 + 5378: 80,1 + 5379: 81,1 + 5380: 81,0 + 5381: 82,0 + 5382: 82,1 + 5383: 83,1 + 5384: 83,0 + 5385: 83,-1 - node: color: '#EFD84160' id: CheckerNWSE decals: - 7317: 27,36 - 7318: 27,37 - 7319: 28,37 - 7320: 28,36 - 7321: 29,36 - 7322: 29,37 - 7323: 30,37 - 7324: 30,36 + 7311: 27,36 + 7312: 27,37 + 7313: 28,37 + 7314: 28,36 + 7315: 29,36 + 7316: 29,37 + 7317: 30,37 + 7318: 30,36 - node: color: '#FF669896' id: CheckerNWSE @@ -4260,7 +4262,7 @@ entities: color: '#FFEB41A1' id: CheckerNWSE decals: - 8519: 19,38 + 8513: 19,38 - node: color: '#EFB341C3' id: Delivery @@ -4270,7 +4272,7 @@ entities: color: '#EFB341FF' id: Delivery decals: - 4886: 106,-18 + 4880: 106,-18 - node: color: '#FFFFFFFF' id: Delivery @@ -4367,289 +4369,289 @@ entities: 4103: 29,48 4104: 28,48 4115: 15,47 - 4359: 6,65 - 4385: 15,65 - 4441: 21,60 - 4482: 30,42 - 4623: 23,-48 - 4702: 45,-36 - 4782: 36,-20 - 4783: 35,-20 - 4784: 34,-20 - 4785: 32,-20 - 4850: -6,68 - 5142: 66,-19 - 5143: 71,-17 - 5144: 82,-17 - 5145: 76,-7 - 5182: 40,-5 - 5183: 75,-24 - 5665: 60,-6 - 5996: 85,33 - 5998: 93,36 - 5999: 97,36 - 6196: 76,12 - 6285: 68,31 - 6286: 75,35 - 6294: 103,40 - 6499: 81,47 - 6500: 81,49 - 6696: 57,48 - 6697: 58,57 - 6698: 74,57 - 6717: 58,42 - 6963: -33,2 - 6964: -33,3 - 6965: -33,4 - 6966: -31,8 - 6967: -32,9 - 6968: -28,4 - 7179: 38,-7 - 7180: 35,-7 - 7288: 107,28 - 7708: 54,43 - 7925: 100,-16 - 7926: 101,-16 - 7927: 88,-11 - 8003: 98,3 - 8004: 97,3 - 8006: 120,-4 - 8007: 120,-2 - 8034: 22,-23 - 8254: 22,7 - 8721: -11,8 + 4353: 6,65 + 4379: 15,65 + 4435: 21,60 + 4476: 30,42 + 4617: 23,-48 + 4696: 45,-36 + 4776: 36,-20 + 4777: 35,-20 + 4778: 34,-20 + 4779: 32,-20 + 4844: -6,68 + 5136: 66,-19 + 5137: 71,-17 + 5138: 82,-17 + 5139: 76,-7 + 5176: 40,-5 + 5177: 75,-24 + 5659: 60,-6 + 5990: 85,33 + 5992: 93,36 + 5993: 97,36 + 6190: 76,12 + 6279: 68,31 + 6280: 75,35 + 6288: 103,40 + 6493: 81,47 + 6494: 81,49 + 6690: 57,48 + 6691: 58,57 + 6692: 74,57 + 6711: 58,42 + 6957: -33,2 + 6958: -33,3 + 6959: -33,4 + 6960: -31,8 + 6961: -32,9 + 6962: -28,4 + 7173: 38,-7 + 7174: 35,-7 + 7282: 107,28 + 7702: 54,43 + 7919: 100,-16 + 7920: 101,-16 + 7921: 88,-11 + 7997: 98,3 + 7998: 97,3 + 8000: 120,-4 + 8001: 120,-2 + 8028: 22,-23 + 8248: 22,7 + 8715: -11,8 - node: cleanable: True color: '#FFFFFFFF' id: Dirt decals: - 8255: 45,47 - 8256: 43,47 - 8257: 39,48 - 8258: 39,51 - 8259: 52,47 - 8260: 53,48 - 8261: 53,49 - 8262: 56,54 - 8263: 56,55 - 8264: 54,58 - 8265: 51,64 - 8266: 56,62 - 8267: 55,64 - 8268: 49,65 - 8269: 44,63 - 8270: 38,63 - 8271: 38,66 - 8272: 37,66 - 8273: 35,63 - 8274: 34,62 - 8275: 35,65 - 8276: 34,65 - 8277: 33,67 - 8278: 30,63 - 8279: 26,67 - 8280: 27,67 - 8281: 29,67 - 8282: 31,62 - 8283: 29,63 - 8284: 23,67 - 8285: 23,68 - 8286: 24,69 - 8287: 10,69 - 8288: -2,68 - 8289: -2,67 - 8290: 1,75 - 8291: 2,75 - 8292: 6,75 - 8293: -5,75 - 8294: -4,73 - 8295: -26,64 - 8296: -27,66 - 8297: -25,68 - 8298: -32,65 - 8299: -35,62 - 8300: -35,61 - 8301: -35,69 - 8302: -36,68 - 8303: -27,71 - 8304: -24,73 - 8305: -41,63 - 8306: -39,61 - 8307: -25,22 - 8308: -24,23 - 8309: -29,11 - 8310: -29,10 - 8311: -28,12 - 8312: -24,12 - 8313: -30,13 - 8314: -29,13 - 8315: -33,12 - 8316: -37,12 - 8317: -36,15 - 8318: -35,15 - 8319: -32,17 - 8320: -30,15 - 8321: -27,16 - 8322: -29,19 - 8323: -36,7 - 8324: -36,6 - 8325: -35,4 - 8326: -35,1 - 8327: -38,3 - 8328: -39,3 - 8329: -35,-1 - 8330: -42,0 - 8331: -45,0 - 8332: -47,2 - 8333: -46,-2 - 8334: -46,-3 - 8335: -45,-4 - 8336: -26,-2 - 8337: -22,-3 - 8338: -22,-2 - 8339: -24,-1 - 8340: -26,4 - 8341: -21,6 - 8342: -20,7 - 8343: -16,6 - 8344: -15,3 - 8345: -18,3 - 8346: -17,3 - 8347: -19,4 - 8348: -12,4 - 8349: 8,9 - 8350: 8,8 - 8351: 10,10 - 8352: 8,13 - 8353: 13,16 - 8354: 13,19 - 8355: 13,21 - 8356: 13,22 - 8357: 8,23 - 8358: 10,27 - 8359: 9,28 - 8360: 12,26 - 8361: 15,26 - 8362: 16,30 - 8363: 21,29 - 8364: 36,28 - 8365: 35,28 - 8366: 35,30 - 8367: 33,30 - 8368: 60,21 - 8369: 59,23 - 8370: 65,22 - 8371: 66,23 - 8372: 68,22 - 8373: 73,25 - 8374: 73,26 - 8375: 73,27 - 8376: 75,25 - 8377: 74,23 - 8378: 74,27 - 8379: 73,29 - 8380: 77,29 - 8381: 90,25 - 8382: 93,25 - 8383: 94,25 - 8384: 96,24 - 8385: 100,23 - 8386: 101,25 - 8387: 101,27 - 8388: 103,29 - 8389: 103,31 - 8390: 103,32 - 8391: 106,29 - 8392: 105,30 - 8393: 105,31 - 8394: 107,31 - 8395: 109,30 - 8396: 110,30 - 8397: 110,32 - 8398: 110,34 - 8399: 107,34 - 8400: 106,34 - 8401: 104,36 - 8402: 110,36 - 8403: 113,30 - 8404: 112,30 - 8405: 108,20 - 8406: 109,20 - 8407: 113,20 - 8408: 112,18 - 8409: 112,15 - 8410: 113,7 - 8411: 118,3 - 8412: 117,5 - 8413: 117,7 - 8414: 118,7 - 8415: 120,-3 - 8416: 118,-5 - 8417: 118,-6 - 8418: 118,-13 - 8419: 125,-7 - 8420: 125,-5 - 8421: 123,-3 - 8422: 123,-4 - 8423: 124,-5 - 8424: 125,-2 - 8425: 121,0 - 8426: 125,3 - 8427: 126,2 - 8428: 126,1 - 8429: 126,0 - 8430: 125,1 - 8431: 122,3 - 8432: 122,2 - 8433: 127,-5 - 8434: 117,-18 - 8435: 117,-16 - 8436: 116,-17 - 8437: 120,-20 - 8438: 114,-18 - 8439: 113,-18 - 8440: 112,-16 - 8441: 99,4 - 8442: 98,5 - 8443: 97,5 - 8444: 96,6 - 8445: 94,6 - 8446: 94,7 - 8447: 93,7 - 8448: 102,5 - 8449: 103,6 - 8450: 106,6 - 8451: 104,4 - 8452: 109,4 - 8453: 109,4 - 8454: 109,5 - 8455: 111,6 - 8456: 110,4 - 8457: 108,4 - 8458: 108,5 - 8459: 107,5 - 8460: 111,4 - 8461: 107,4 - 8462: 106,4 - 8463: 107,6 - 8464: 104,5 - 8494: 67,-5 - 8495: 65,-5 - 8496: 68,-6 + 8249: 45,47 + 8250: 43,47 + 8251: 39,48 + 8252: 39,51 + 8253: 52,47 + 8254: 53,48 + 8255: 53,49 + 8256: 56,54 + 8257: 56,55 + 8258: 54,58 + 8259: 51,64 + 8260: 56,62 + 8261: 55,64 + 8262: 49,65 + 8263: 44,63 + 8264: 38,63 + 8265: 38,66 + 8266: 37,66 + 8267: 35,63 + 8268: 34,62 + 8269: 35,65 + 8270: 34,65 + 8271: 33,67 + 8272: 30,63 + 8273: 26,67 + 8274: 27,67 + 8275: 29,67 + 8276: 31,62 + 8277: 29,63 + 8278: 23,67 + 8279: 23,68 + 8280: 24,69 + 8281: 10,69 + 8282: -2,68 + 8283: -2,67 + 8284: 1,75 + 8285: 2,75 + 8286: 6,75 + 8287: -5,75 + 8288: -4,73 + 8289: -26,64 + 8290: -27,66 + 8291: -25,68 + 8292: -32,65 + 8293: -35,62 + 8294: -35,61 + 8295: -35,69 + 8296: -36,68 + 8297: -27,71 + 8298: -24,73 + 8299: -41,63 + 8300: -39,61 + 8301: -25,22 + 8302: -24,23 + 8303: -29,11 + 8304: -29,10 + 8305: -28,12 + 8306: -24,12 + 8307: -30,13 + 8308: -29,13 + 8309: -33,12 + 8310: -37,12 + 8311: -36,15 + 8312: -35,15 + 8313: -32,17 + 8314: -30,15 + 8315: -27,16 + 8316: -29,19 + 8317: -36,7 + 8318: -36,6 + 8319: -35,4 + 8320: -35,1 + 8321: -38,3 + 8322: -39,3 + 8323: -35,-1 + 8324: -42,0 + 8325: -45,0 + 8326: -47,2 + 8327: -46,-2 + 8328: -46,-3 + 8329: -45,-4 + 8330: -26,-2 + 8331: -22,-3 + 8332: -22,-2 + 8333: -24,-1 + 8334: -26,4 + 8335: -21,6 + 8336: -20,7 + 8337: -16,6 + 8338: -15,3 + 8339: -18,3 + 8340: -17,3 + 8341: -19,4 + 8342: -12,4 + 8343: 8,9 + 8344: 8,8 + 8345: 10,10 + 8346: 8,13 + 8347: 13,16 + 8348: 13,19 + 8349: 13,21 + 8350: 13,22 + 8351: 8,23 + 8352: 10,27 + 8353: 9,28 + 8354: 12,26 + 8355: 15,26 + 8356: 16,30 + 8357: 21,29 + 8358: 36,28 + 8359: 35,28 + 8360: 35,30 + 8361: 33,30 + 8362: 60,21 + 8363: 59,23 + 8364: 65,22 + 8365: 66,23 + 8366: 68,22 + 8367: 73,25 + 8368: 73,26 + 8369: 73,27 + 8370: 75,25 + 8371: 74,23 + 8372: 74,27 + 8373: 73,29 + 8374: 77,29 + 8375: 90,25 + 8376: 93,25 + 8377: 94,25 + 8378: 96,24 + 8379: 100,23 + 8380: 101,25 + 8381: 101,27 + 8382: 103,29 + 8383: 103,31 + 8384: 103,32 + 8385: 106,29 + 8386: 105,30 + 8387: 105,31 + 8388: 107,31 + 8389: 109,30 + 8390: 110,30 + 8391: 110,32 + 8392: 110,34 + 8393: 107,34 + 8394: 106,34 + 8395: 104,36 + 8396: 110,36 + 8397: 113,30 + 8398: 112,30 + 8399: 108,20 + 8400: 109,20 + 8401: 113,20 + 8402: 112,18 + 8403: 112,15 + 8404: 113,7 + 8405: 118,3 + 8406: 117,5 + 8407: 117,7 + 8408: 118,7 + 8409: 120,-3 + 8410: 118,-5 + 8411: 118,-6 + 8412: 118,-13 + 8413: 125,-7 + 8414: 125,-5 + 8415: 123,-3 + 8416: 123,-4 + 8417: 124,-5 + 8418: 125,-2 + 8419: 121,0 + 8420: 125,3 + 8421: 126,2 + 8422: 126,1 + 8423: 126,0 + 8424: 125,1 + 8425: 122,3 + 8426: 122,2 + 8427: 127,-5 + 8428: 117,-18 + 8429: 117,-16 + 8430: 116,-17 + 8431: 120,-20 + 8432: 114,-18 + 8433: 113,-18 + 8434: 112,-16 + 8435: 99,4 + 8436: 98,5 + 8437: 97,5 + 8438: 96,6 + 8439: 94,6 + 8440: 94,7 + 8441: 93,7 + 8442: 102,5 + 8443: 103,6 + 8444: 106,6 + 8445: 104,4 + 8446: 109,4 + 8447: 109,4 + 8448: 109,5 + 8449: 111,6 + 8450: 110,4 + 8451: 108,4 + 8452: 108,5 + 8453: 107,5 + 8454: 111,4 + 8455: 107,4 + 8456: 106,4 + 8457: 107,6 + 8458: 104,5 + 8488: 67,-5 + 8489: 65,-5 + 8490: 68,-6 - node: color: '#FFFFFFFF' id: DirtHeavy decals: - 6875: -38,62 - 6876: -37,64 - 7569: 55,53 - 7570: 55,53 - 7571: 55,53 - 7572: 55,54 - 7573: 54,55 - 7574: 54,60 - 7575: 54,60 - 7576: 54,60 + 6869: -38,62 + 6870: -37,64 + 7563: 55,53 + 7564: 55,53 + 7565: 55,53 + 7566: 55,54 + 7567: 54,55 + 7568: 54,60 + 7569: 54,60 + 7570: 54,60 - node: cleanable: True color: '#FFFFFFFF' @@ -4700,168 +4702,168 @@ entities: 2943: -39,-60 2944: -38,-60 3700: 56,-23 - 4568: 27,-50 - 4569: 28,-51 - 4570: 31,-49 - 4588: 29,-52 - 4591: 23,-42 - 4592: 23,-43 - 4593: 25,-44 - 4594: 29,-42 - 4595: 31,-44 - 4596: 32,-42 - 4597: 37,-42 - 4598: 39,-42 - 4599: 39,-44 - 4600: 34,-44 - 4601: 25,-47 - 4602: 23,-47 - 4603: 23,-51 - 4654: 27,-59 - 4655: 24,-56 - 4656: 25,-57 - 4743: 52,-46 - 4744: 51,-46 - 4745: 56,-46 - 4746: 57,-50 - 4757: 33,-43 - 5700: 67,-9 - 5701: 68,-13 - 5702: 66,-12 - 5729: 79,-17 - 5930: 96,-23 - 5931: 97,-22 - 5932: 99,-21 - 5933: 106,-20 - 5934: 111,-21 - 5966: 98,-22 - 6204: 63,22 - 6209: 93,-21 - 6880: -25,64 - 6881: -24,64 - 6882: -25,64 - 6883: -25,70 - 6889: 10,9 - 6890: 8,11 - 6891: 10,15 - 6892: 11,10 - 6896: 12,27 - 6897: 12,27 - 6898: 12,26 - 6908: -10,-29 - 6909: -8,-28 - 6918: -39,2 - 6919: -38,2 - 6920: -38,2 - 6921: -43,2 - 6969: -33,3 - 6970: -32,2 - 6971: -32,1 - 6972: -31,0 - 6973: -31,5 - 6974: -31,6 - 6975: -29,5 - 6976: -33,9 - 6977: -32,9 - 7019: -35,6 - 7020: -36,8 - 7113: 50,-55 - 7114: 48,-54 - 7115: 47,-53 - 7116: 47,-51 - 7181: 126,-2 - 7182: 124,0 - 7183: 124,0 - 7184: 123,1 - 7185: 121,1 - 7186: 121,1 - 7187: 121,3 - 7188: 121,4 - 7204: 77,7 - 7205: 78,9 - 7219: 100,12 - 7220: 100,12 - 7221: 100,12 - 7222: 101,13 - 7223: 101,15 - 7224: 101,15 - 7225: 101,15 - 7226: 103,15 - 7244: 100,14 - 7245: 100,16 - 7246: 100,16 - 7247: 100,16 - 7252: 110,15 - 7253: 110,15 - 7254: 109,14 - 7255: 109,15 - 7256: 108,15 - 7274: 113,18 - 7275: 112,19 - 7539: 50,47 - 7540: 44,47 - 7546: 39,52 - 7709: 75,3 - 7710: 74,4 - 7711: 68,4 - 7712: 67,-4 - 7713: 68,-5 - 7714: 68,-5 - 7728: 111,19 - 7729: 110,19 - 7748: 123,-8 - 7749: 121,-6 - 7750: 123,-4 - 7751: 124,-6 - 7752: 124,-3 - 7753: 125,-2 - 7754: 124,-2 - 7820: 109,-20 - 7821: 115,-20 - 7822: 114,-20 - 7843: 88,-13 - 7844: 89,-12 - 7845: 90,-3 - 7846: 91,-9 - 8070: -25,21 - 8071: -25,21 - 8072: -25,19 - 8073: -25,13 - 8074: -27,13 - 8075: -32,12 - 8076: -34,13 - 8077: -37,13 - 8227: 118,-13 - 8228: 118,-12 - 8229: 118,-9 - 8230: 118,-4 - 8231: 118,-2 - 8232: 118,1 - 8471: 103,5 - 8472: 110,5 + 4562: 27,-50 + 4563: 28,-51 + 4564: 31,-49 + 4582: 29,-52 + 4585: 23,-42 + 4586: 23,-43 + 4587: 25,-44 + 4588: 29,-42 + 4589: 31,-44 + 4590: 32,-42 + 4591: 37,-42 + 4592: 39,-42 + 4593: 39,-44 + 4594: 34,-44 + 4595: 25,-47 + 4596: 23,-47 + 4597: 23,-51 + 4648: 27,-59 + 4649: 24,-56 + 4650: 25,-57 + 4737: 52,-46 + 4738: 51,-46 + 4739: 56,-46 + 4740: 57,-50 + 4751: 33,-43 + 5694: 67,-9 + 5695: 68,-13 + 5696: 66,-12 + 5723: 79,-17 + 5924: 96,-23 + 5925: 97,-22 + 5926: 99,-21 + 5927: 106,-20 + 5928: 111,-21 + 5960: 98,-22 + 6198: 63,22 + 6203: 93,-21 + 6874: -25,64 + 6875: -24,64 + 6876: -25,64 + 6877: -25,70 + 6883: 10,9 + 6884: 8,11 + 6885: 10,15 + 6886: 11,10 + 6890: 12,27 + 6891: 12,27 + 6892: 12,26 + 6902: -10,-29 + 6903: -8,-28 + 6912: -39,2 + 6913: -38,2 + 6914: -38,2 + 6915: -43,2 + 6963: -33,3 + 6964: -32,2 + 6965: -32,1 + 6966: -31,0 + 6967: -31,5 + 6968: -31,6 + 6969: -29,5 + 6970: -33,9 + 6971: -32,9 + 7013: -35,6 + 7014: -36,8 + 7107: 50,-55 + 7108: 48,-54 + 7109: 47,-53 + 7110: 47,-51 + 7175: 126,-2 + 7176: 124,0 + 7177: 124,0 + 7178: 123,1 + 7179: 121,1 + 7180: 121,1 + 7181: 121,3 + 7182: 121,4 + 7198: 77,7 + 7199: 78,9 + 7213: 100,12 + 7214: 100,12 + 7215: 100,12 + 7216: 101,13 + 7217: 101,15 + 7218: 101,15 + 7219: 101,15 + 7220: 103,15 + 7238: 100,14 + 7239: 100,16 + 7240: 100,16 + 7241: 100,16 + 7246: 110,15 + 7247: 110,15 + 7248: 109,14 + 7249: 109,15 + 7250: 108,15 + 7268: 113,18 + 7269: 112,19 + 7533: 50,47 + 7534: 44,47 + 7540: 39,52 + 7703: 75,3 + 7704: 74,4 + 7705: 68,4 + 7706: 67,-4 + 7707: 68,-5 + 7708: 68,-5 + 7722: 111,19 + 7723: 110,19 + 7742: 123,-8 + 7743: 121,-6 + 7744: 123,-4 + 7745: 124,-6 + 7746: 124,-3 + 7747: 125,-2 + 7748: 124,-2 + 7814: 109,-20 + 7815: 115,-20 + 7816: 114,-20 + 7837: 88,-13 + 7838: 89,-12 + 7839: 90,-3 + 7840: 91,-9 + 8064: -25,21 + 8065: -25,21 + 8066: -25,19 + 8067: -25,13 + 8068: -27,13 + 8069: -32,12 + 8070: -34,13 + 8071: -37,13 + 8221: 118,-13 + 8222: 118,-12 + 8223: 118,-9 + 8224: 118,-4 + 8225: 118,-2 + 8226: 118,1 + 8465: 103,5 + 8466: 110,5 - node: color: '#FFFFFFFF' id: DirtLight decals: - 6877: -39,61 - 6878: -41,62 - 6879: -41,64 - 7586: 53,53 - 7587: 56,53 - 7588: 53,56 - 7589: 53,58 - 7590: 54,61 - 7591: 55,61 - 7592: 56,60 - 7593: 55,59 - 7594: 56,58 - 7595: 55,58 - 7596: 54,57 - 7597: 53,61 - 7598: 53,61 - 7599: 52,62 - 7600: 53,64 - 7601: 55,63 + 6871: -39,61 + 6872: -41,62 + 6873: -41,64 + 7580: 53,53 + 7581: 56,53 + 7582: 53,56 + 7583: 53,58 + 7584: 54,61 + 7585: 55,61 + 7586: 56,60 + 7587: 55,59 + 7588: 56,58 + 7589: 55,58 + 7590: 54,57 + 7591: 53,61 + 7592: 53,61 + 7593: 52,62 + 7594: 53,64 + 7595: 55,63 - node: cleanable: True color: '#FFFFFFFF' @@ -5078,427 +5080,427 @@ entities: 3701: 56,-24 3702: 55,-24 3703: 55,-25 - 4579: 31,-48 - 4580: 32,-49 - 4581: 30,-48 - 4582: 30,-51 - 4583: 29,-50 - 4584: 28,-49 - 4585: 28,-48 - 4586: 27,-52 - 4587: 28,-52 - 4589: 27,-47 - 4590: 29,-47 - 4611: 34,-44 - 4612: 33,-44 - 4613: 37,-42 - 4614: 39,-44 - 4615: 40,-42 - 4616: 30,-42 - 4617: 29,-44 - 4618: 28,-44 - 4619: 25,-45 - 4620: 25,-46 - 4621: 25,-48 - 4622: 25,-52 - 4665: 29,-59 - 4666: 28,-58 - 4667: 27,-57 - 4668: 26,-58 - 4669: 25,-59 - 4670: 24,-58 - 4671: 23,-57 - 4672: 26,-56 - 4673: 29,-57 - 4674: 28,-56 - 4675: 30,-59 - 4676: 24,-55 - 4750: 52,-48 - 4751: 48,-48 - 4752: 48,-46 - 4753: 47,-46 - 4754: 46,-48 - 4755: 46,-47 - 4756: 46,-47 - 4758: 38,-40 - 4759: 37,-39 - 4760: 39,-37 - 4761: 39,-35 - 4762: 48,-36 - 4763: 43,-38 - 4764: 41,-39 - 4765: 39,-39 - 4766: 38,-39 - 5280: 81,-14 - 5281: 83,-12 - 5282: 83,-13 - 5287: 85,-11 - 5288: 84,-11 - 5289: 82,-11 - 5290: 83,-11 - 5291: 81,-14 - 5292: 81,-13 - 5293: 81,-16 - 5294: 80,-14 - 5710: 67,-10 - 5711: 68,-9 - 5712: 66,-9 - 5713: 66,-10 - 5714: 65,-11 - 5715: 64,-12 - 5716: 65,-13 - 5717: 69,-12 - 5718: 69,-11 - 5719: 64,-11 - 5720: 63,-10 - 5721: 71,-10 - 5722: 71,-11 - 5723: 69,-15 - 5724: 68,-17 - 5725: 71,-16 - 5726: 72,-15 - 5727: 76,-17 - 5728: 77,-17 - 5732: 78,-16 - 5733: 79,-15 - 5734: 79,-14 - 5735: 77,-15 - 5736: 79,-12 - 5737: 78,-13 - 5738: 78,-9 - 5739: 75,-13 - 5740: 75,-15 - 5741: 61,-10 - 5742: 60,-12 - 5743: 58,-11 - 5744: 51,-12 - 5745: 50,-12 - 5746: 45,-11 - 5747: 44,-12 - 5748: 56,0 - 5749: 53,-1 - 5750: 54,-1 - 5751: 54,0 - 5752: 52,-2 - 5753: 55,-3 - 5754: 47,-1 - 5777: 53,5 - 5778: 53,6 - 5779: 51,5 - 5780: 50,6 - 5799: -4,31 - 5800: -5,32 - 5801: -8,31 - 5802: -10,32 - 5803: -11,29 - 5804: -10,28 - 5805: -10,30 - 5948: 96,-21 - 5949: 97,-21 - 5950: 97,-24 - 5951: 96,-24 - 5952: 98,-23 - 5953: 98,-20 - 5954: 100,-20 - 5955: 101,-21 - 5956: 104,-20 - 5957: 105,-21 - 5958: 107,-21 - 5959: 108,-20 - 5960: 109,-20 - 5961: 111,-20 - 5962: 112,-20 - 5963: 114,-21 - 5964: 115,-21 - 5965: 114,-20 - 6205: 68,23 - 6206: 58,23 - 6212: 92,-21 - 6213: 93,-22 - 6214: 94,-21 - 6215: 94,-20 - 6216: 92,-20 - 6217: 91,-22 - 6218: 103,-20 - 6893: 10,9 - 6899: 13,27 - 6900: 9,28 - 6901: 18,30 - 6912: -9,-30 - 6913: -11,-28 - 6914: -10,-28 - 6922: -40,3 - 6923: -40,3 - 6978: -32,9 - 6979: -32,7 - 6980: -31,7 - 6981: -30,6 - 6982: -32,6 - 6983: -32,4 - 6991: -28,4 - 6992: -29,6 - 6993: -30,5 - 6994: -30,3 - 6995: -31,3 - 6996: -31,2 - 6997: -30,1 - 6998: -29,0 - 6999: -33,0 - 7000: -31,-1 - 7001: -32,-1 - 7002: -33,2 - 7003: -33,4 - 7004: -32,4 - 7005: -33,5 - 7006: -29,3 - 7007: -28,3 - 7008: -28,2 - 7009: -30,7 - 7010: -31,8 - 7011: -33,8 - 7024: -35,0 - 7025: -35,10 - 7026: -35,10 - 7027: -35,10 - 7028: -36,9 - 7125: 47,-55 - 7126: 46,-54 - 7127: 46,-53 - 7128: 46,-52 - 7129: 48,-51 - 7130: 48,-50 - 7131: 49,-54 - 7132: 51,-54 - 7133: 46,-54 - 7134: 45,-55 - 7135: 45,-55 - 7136: 44,-55 - 7198: 125,-4 - 7199: 125,-2 - 7200: 125,1 - 7201: 123,3 - 7202: 122,4 - 7203: 121,6 - 7208: 79,7 - 7209: 76,6 - 7210: 77,6 - 7211: 76,8 - 7212: 76,8 - 7213: 76,8 - 7214: 76,8 - 7215: 79,7 - 7216: 77,10 - 7217: 77,10 - 7218: 79,10 - 7230: 101,16 - 7231: 101,16 - 7232: 101,14 - 7233: 101,13 - 7234: 104,15 - 7235: 104,16 - 7236: 104,16 - 7237: 101,12 - 7238: 101,12 - 7239: 100,13 - 7240: 100,13 - 7241: 100,14 - 7242: 102,15 - 7243: 103,16 - 7262: 109,16 - 7263: 110,16 - 7264: 106,15 - 7265: 106,16 - 7266: 107,16 - 7267: 107,16 - 7268: 107,16 - 7269: 117,21 - 7278: 114,19 - 7279: 112,18 - 7280: 113,20 - 7281: 113,20 - 7541: 40,48 - 7542: 40,48 - 7543: 40,48 - 7730: 109,18 - 7731: 109,19 - 7732: 110,20 - 7764: 125,-8 - 7765: 126,-8 - 7766: 126,-6 - 7767: 125,-6 - 7768: 122,-5 - 7769: 124,-4 - 7770: 125,-4 - 7771: 126,-3 - 7772: 126,-2 - 7773: 122,-2 - 7774: 122,-3 + 4573: 31,-48 + 4574: 32,-49 + 4575: 30,-48 + 4576: 30,-51 + 4577: 29,-50 + 4578: 28,-49 + 4579: 28,-48 + 4580: 27,-52 + 4581: 28,-52 + 4583: 27,-47 + 4584: 29,-47 + 4605: 34,-44 + 4606: 33,-44 + 4607: 37,-42 + 4608: 39,-44 + 4609: 40,-42 + 4610: 30,-42 + 4611: 29,-44 + 4612: 28,-44 + 4613: 25,-45 + 4614: 25,-46 + 4615: 25,-48 + 4616: 25,-52 + 4659: 29,-59 + 4660: 28,-58 + 4661: 27,-57 + 4662: 26,-58 + 4663: 25,-59 + 4664: 24,-58 + 4665: 23,-57 + 4666: 26,-56 + 4667: 29,-57 + 4668: 28,-56 + 4669: 30,-59 + 4670: 24,-55 + 4744: 52,-48 + 4745: 48,-48 + 4746: 48,-46 + 4747: 47,-46 + 4748: 46,-48 + 4749: 46,-47 + 4750: 46,-47 + 4752: 38,-40 + 4753: 37,-39 + 4754: 39,-37 + 4755: 39,-35 + 4756: 48,-36 + 4757: 43,-38 + 4758: 41,-39 + 4759: 39,-39 + 4760: 38,-39 + 5274: 81,-14 + 5275: 83,-12 + 5276: 83,-13 + 5281: 85,-11 + 5282: 84,-11 + 5283: 82,-11 + 5284: 83,-11 + 5285: 81,-14 + 5286: 81,-13 + 5287: 81,-16 + 5288: 80,-14 + 5704: 67,-10 + 5705: 68,-9 + 5706: 66,-9 + 5707: 66,-10 + 5708: 65,-11 + 5709: 64,-12 + 5710: 65,-13 + 5711: 69,-12 + 5712: 69,-11 + 5713: 64,-11 + 5714: 63,-10 + 5715: 71,-10 + 5716: 71,-11 + 5717: 69,-15 + 5718: 68,-17 + 5719: 71,-16 + 5720: 72,-15 + 5721: 76,-17 + 5722: 77,-17 + 5726: 78,-16 + 5727: 79,-15 + 5728: 79,-14 + 5729: 77,-15 + 5730: 79,-12 + 5731: 78,-13 + 5732: 78,-9 + 5733: 75,-13 + 5734: 75,-15 + 5735: 61,-10 + 5736: 60,-12 + 5737: 58,-11 + 5738: 51,-12 + 5739: 50,-12 + 5740: 45,-11 + 5741: 44,-12 + 5742: 56,0 + 5743: 53,-1 + 5744: 54,-1 + 5745: 54,0 + 5746: 52,-2 + 5747: 55,-3 + 5748: 47,-1 + 5771: 53,5 + 5772: 53,6 + 5773: 51,5 + 5774: 50,6 + 5793: -4,31 + 5794: -5,32 + 5795: -8,31 + 5796: -10,32 + 5797: -11,29 + 5798: -10,28 + 5799: -10,30 + 5942: 96,-21 + 5943: 97,-21 + 5944: 97,-24 + 5945: 96,-24 + 5946: 98,-23 + 5947: 98,-20 + 5948: 100,-20 + 5949: 101,-21 + 5950: 104,-20 + 5951: 105,-21 + 5952: 107,-21 + 5953: 108,-20 + 5954: 109,-20 + 5955: 111,-20 + 5956: 112,-20 + 5957: 114,-21 + 5958: 115,-21 + 5959: 114,-20 + 6199: 68,23 + 6200: 58,23 + 6206: 92,-21 + 6207: 93,-22 + 6208: 94,-21 + 6209: 94,-20 + 6210: 92,-20 + 6211: 91,-22 + 6212: 103,-20 + 6887: 10,9 + 6893: 13,27 + 6894: 9,28 + 6895: 18,30 + 6906: -9,-30 + 6907: -11,-28 + 6908: -10,-28 + 6916: -40,3 + 6917: -40,3 + 6972: -32,9 + 6973: -32,7 + 6974: -31,7 + 6975: -30,6 + 6976: -32,6 + 6977: -32,4 + 6985: -28,4 + 6986: -29,6 + 6987: -30,5 + 6988: -30,3 + 6989: -31,3 + 6990: -31,2 + 6991: -30,1 + 6992: -29,0 + 6993: -33,0 + 6994: -31,-1 + 6995: -32,-1 + 6996: -33,2 + 6997: -33,4 + 6998: -32,4 + 6999: -33,5 + 7000: -29,3 + 7001: -28,3 + 7002: -28,2 + 7003: -30,7 + 7004: -31,8 + 7005: -33,8 + 7018: -35,0 + 7019: -35,10 + 7020: -35,10 + 7021: -35,10 + 7022: -36,9 + 7119: 47,-55 + 7120: 46,-54 + 7121: 46,-53 + 7122: 46,-52 + 7123: 48,-51 + 7124: 48,-50 + 7125: 49,-54 + 7126: 51,-54 + 7127: 46,-54 + 7128: 45,-55 + 7129: 45,-55 + 7130: 44,-55 + 7192: 125,-4 + 7193: 125,-2 + 7194: 125,1 + 7195: 123,3 + 7196: 122,4 + 7197: 121,6 + 7202: 79,7 + 7203: 76,6 + 7204: 77,6 + 7205: 76,8 + 7206: 76,8 + 7207: 76,8 + 7208: 76,8 + 7209: 79,7 + 7210: 77,10 + 7211: 77,10 + 7212: 79,10 + 7224: 101,16 + 7225: 101,16 + 7226: 101,14 + 7227: 101,13 + 7228: 104,15 + 7229: 104,16 + 7230: 104,16 + 7231: 101,12 + 7232: 101,12 + 7233: 100,13 + 7234: 100,13 + 7235: 100,14 + 7236: 102,15 + 7237: 103,16 + 7256: 109,16 + 7257: 110,16 + 7258: 106,15 + 7259: 106,16 + 7260: 107,16 + 7261: 107,16 + 7262: 107,16 + 7263: 117,21 + 7272: 114,19 + 7273: 112,18 + 7274: 113,20 + 7275: 113,20 + 7535: 40,48 + 7536: 40,48 + 7537: 40,48 + 7724: 109,18 + 7725: 109,19 + 7726: 110,20 + 7758: 125,-8 + 7759: 126,-8 + 7760: 126,-6 + 7761: 125,-6 + 7762: 122,-5 + 7763: 124,-4 + 7764: 125,-4 + 7765: 126,-3 + 7766: 126,-2 + 7767: 122,-2 + 7768: 122,-3 + 7769: 126,-5 + 7770: 126,-5 + 7771: 125,-6 + 7772: 126,-6 + 7773: 126,-7 + 7774: 126,-8 7775: 126,-5 - 7776: 126,-5 - 7777: 125,-6 - 7778: 126,-6 - 7779: 126,-7 - 7780: 126,-8 - 7781: 126,-5 - 7812: 103,-19 - 7813: 103,-19 - 7814: 104,-20 - 7823: 113,-20 - 7824: 112,-20 - 7825: 115,-21 - 7826: 104,-21 - 7827: 99,-21 - 7828: 103,-21 - 7829: 103,-17 - 7830: 101,-17 - 7831: 101,-17 - 7832: 101,-18 - 7833: 100,-17 - 7834: 99,-17 - 7835: 97,-15 - 7836: 98,-16 - 7838: 97,-17 - 7839: 97,-18 - 7840: 98,-14 - 7841: 97,-13 - 7842: 97,-13 - 7852: 89,-13 - 7853: 90,-13 - 7854: 88,-12 - 7855: 90,-11 - 7856: 89,-10 - 7857: 88,-11 - 7858: 91,-12 - 7859: 91,-11 - 7860: 92,-11 - 7861: 93,-12 - 7862: 94,-12 - 7863: 93,-13 - 7864: 90,-10 - 7865: 91,-8 - 7866: 89,-8 - 7867: 89,-5 - 7868: 91,-6 - 7869: 89,-6 - 7870: 91,-5 - 7871: 91,-3 - 7872: 91,-2 - 7873: 90,-1 - 7874: 89,-2 - 7875: 89,-3 - 7876: 90,-2 - 7877: 98,-11 - 7878: 93,-9 - 7879: 93,-9 - 7880: 93,-7 - 7881: 93,-8 - 7882: 95,-9 - 7883: 94,-3 - 7884: 93,-3 - 7885: 93,-3 - 7886: 87,-7 - 7887: 86,-7 - 7889: 86,-5 - 7890: 85,-6 - 7891: 86,-4 - 7892: 85,-7 - 7893: 83,-7 - 7894: 83,-6 - 7895: 82,-7 - 7896: 78,-7 - 7897: 77,-6 - 7898: 76,-7 - 7899: 76,-6 - 7900: 76,-4 - 7901: 83,-3 - 7902: 82,-4 - 7903: 81,-4 - 7904: 80,-4 - 7905: 79,-5 - 7906: 77,-1 - 7907: 77,0 - 7908: 80,0 - 7909: 82,0 - 7910: 83,-1 - 7911: 86,-2 - 7912: 86,-1 - 7913: 85,-1 - 7914: 79,-9 - 7915: 78,-9 - 7916: 79,-10 - 7917: 78,-12 - 7918: 78,-12 - 7919: 74,-16 - 7920: 72,-14 - 7921: 91,5 - 7922: 90,5 - 7923: 89,5 - 7924: 88,6 - 8093: -24,22 - 8094: -25,20 - 8095: -25,16 - 8096: -23,12 - 8097: -25,14 - 8098: -26,12 - 8099: -28,13 - 8100: -30,13 - 8101: -30,12 - 8102: -31,12 - 8103: -33,12 - 8104: -33,13 - 8105: -36,13 - 8106: -38,12 - 8107: -39,12 - 8238: 118,-11 - 8239: 118,-10 - 8240: 118,-7 - 8241: 118,-5 - 8242: 118,-3 - 8243: 118,-1 - 8244: 118,0 - 8245: 118,2 - 8246: 117,4 - 8247: 116,4 - 8248: 115,4 - 8249: 113,4 - 8250: 113,6 - 8251: 117,-16 - 8252: 117,-16 - 8253: 119,-20 - 8473: 110,6 - 8474: 109,6 - 8475: 105,5 - 8476: 104,6 - 8477: 105,4 - 8478: 103,4 - 8479: 100,5 - 8480: 100,6 - 8481: 101,6 - 8482: 101,5 - 8483: 99,5 - 8484: 99,6 - 8485: 98,4 - 8486: 97,4 - 8487: 96,5 - 8488: 96,5 - 8489: 95,6 - 8490: 93,6 - 8491: 95,7 - 8492: 94,8 - 8493: 102,9 + 7806: 103,-19 + 7807: 103,-19 + 7808: 104,-20 + 7817: 113,-20 + 7818: 112,-20 + 7819: 115,-21 + 7820: 104,-21 + 7821: 99,-21 + 7822: 103,-21 + 7823: 103,-17 + 7824: 101,-17 + 7825: 101,-17 + 7826: 101,-18 + 7827: 100,-17 + 7828: 99,-17 + 7829: 97,-15 + 7830: 98,-16 + 7832: 97,-17 + 7833: 97,-18 + 7834: 98,-14 + 7835: 97,-13 + 7836: 97,-13 + 7846: 89,-13 + 7847: 90,-13 + 7848: 88,-12 + 7849: 90,-11 + 7850: 89,-10 + 7851: 88,-11 + 7852: 91,-12 + 7853: 91,-11 + 7854: 92,-11 + 7855: 93,-12 + 7856: 94,-12 + 7857: 93,-13 + 7858: 90,-10 + 7859: 91,-8 + 7860: 89,-8 + 7861: 89,-5 + 7862: 91,-6 + 7863: 89,-6 + 7864: 91,-5 + 7865: 91,-3 + 7866: 91,-2 + 7867: 90,-1 + 7868: 89,-2 + 7869: 89,-3 + 7870: 90,-2 + 7871: 98,-11 + 7872: 93,-9 + 7873: 93,-9 + 7874: 93,-7 + 7875: 93,-8 + 7876: 95,-9 + 7877: 94,-3 + 7878: 93,-3 + 7879: 93,-3 + 7880: 87,-7 + 7881: 86,-7 + 7883: 86,-5 + 7884: 85,-6 + 7885: 86,-4 + 7886: 85,-7 + 7887: 83,-7 + 7888: 83,-6 + 7889: 82,-7 + 7890: 78,-7 + 7891: 77,-6 + 7892: 76,-7 + 7893: 76,-6 + 7894: 76,-4 + 7895: 83,-3 + 7896: 82,-4 + 7897: 81,-4 + 7898: 80,-4 + 7899: 79,-5 + 7900: 77,-1 + 7901: 77,0 + 7902: 80,0 + 7903: 82,0 + 7904: 83,-1 + 7905: 86,-2 + 7906: 86,-1 + 7907: 85,-1 + 7908: 79,-9 + 7909: 78,-9 + 7910: 79,-10 + 7911: 78,-12 + 7912: 78,-12 + 7913: 74,-16 + 7914: 72,-14 + 7915: 91,5 + 7916: 90,5 + 7917: 89,5 + 7918: 88,6 + 8087: -24,22 + 8088: -25,20 + 8089: -25,16 + 8090: -23,12 + 8091: -25,14 + 8092: -26,12 + 8093: -28,13 + 8094: -30,13 + 8095: -30,12 + 8096: -31,12 + 8097: -33,12 + 8098: -33,13 + 8099: -36,13 + 8100: -38,12 + 8101: -39,12 + 8232: 118,-11 + 8233: 118,-10 + 8234: 118,-7 + 8235: 118,-5 + 8236: 118,-3 + 8237: 118,-1 + 8238: 118,0 + 8239: 118,2 + 8240: 117,4 + 8241: 116,4 + 8242: 115,4 + 8243: 113,4 + 8244: 113,6 + 8245: 117,-16 + 8246: 117,-16 + 8247: 119,-20 + 8467: 110,6 + 8468: 109,6 + 8469: 105,5 + 8470: 104,6 + 8471: 105,4 + 8472: 103,4 + 8473: 100,5 + 8474: 100,6 + 8475: 101,6 + 8476: 101,5 + 8477: 99,5 + 8478: 99,6 + 8479: 98,4 + 8480: 97,4 + 8481: 96,5 + 8482: 96,5 + 8483: 95,6 + 8484: 93,6 + 8485: 95,7 + 8486: 94,8 + 8487: 102,9 - node: color: '#FFFFFFFF' id: DirtMedium decals: - 7577: 53,60 - 7578: 53,60 - 7579: 54,61 - 7580: 54,59 - 7581: 55,59 - 7582: 55,56 - 7583: 54,56 - 7584: 54,54 - 7585: 56,53 + 7571: 53,60 + 7572: 53,60 + 7573: 54,61 + 7574: 54,59 + 7575: 55,59 + 7576: 55,56 + 7577: 54,56 + 7578: 54,54 + 7579: 56,53 - node: cleanable: True color: '#FFFFFFFF' @@ -5561,172 +5563,172 @@ entities: 2953: -38,-48 2954: -37,-47 2986: -44,-58 - 4571: 29,-51 - 4572: 27,-51 - 4573: 28,-50 - 4574: 27,-49 - 4575: 31,-50 - 4576: 30,-50 - 4577: 30,-49 - 4578: 32,-48 - 4604: 23,-52 - 4605: 23,-50 - 4606: 25,-48 - 4607: 23,-46 - 4608: 23,-44 - 4609: 32,-42 - 4610: 32,-44 - 4657: 25,-56 - 4658: 23,-56 - 4659: 24,-57 - 4660: 25,-58 - 4661: 26,-57 - 4662: 26,-59 - 4663: 27,-58 - 4664: 28,-59 - 4747: 56,-48 - 4748: 55,-49 - 4749: 53,-46 - 5283: 85,-12 - 5284: 85,-13 - 5285: 84,-14 - 5286: 82,-12 - 5699: 67,-8 - 5703: 67,-13 - 5704: 67,-12 - 5705: 66,-13 - 5706: 65,-12 - 5707: 66,-11 - 5708: 69,-13 - 5709: 68,-12 - 5730: 78,-17 - 5731: 79,-16 - 5798: -4,32 - 5935: 112,-21 - 5936: 111,-20 - 5937: 110,-21 - 5938: 109,-21 - 5939: 115,-20 - 5940: 106,-21 - 5941: 105,-20 - 5942: 107,-20 - 5943: 100,-21 - 5944: 99,-20 - 5945: 98,-21 - 5946: 97,-23 - 5947: 96,-22 - 6207: 59,20 - 6208: 91,-21 - 6210: 93,-20 - 6211: 92,-22 - 6884: -25,71 - 6885: -36,70 - 6886: -36,69 - 6894: 8,11 - 6910: -11,-29 - 6911: -12,-30 - 6984: -32,3 - 6985: -31,1 - 6986: -30,0 - 6987: -32,0 - 6988: -31,-1 - 6989: -29,4 - 6990: -28,5 - 7021: -35,9 - 7022: -36,3 - 7023: -36,3 - 7117: 47,-52 - 7118: 47,-54 - 7119: 48,-55 - 7120: 49,-55 - 7121: 49,-54 - 7122: 50,-54 - 7123: 46,-51 - 7124: 47,-50 - 7189: 122,5 - 7190: 121,2 - 7191: 121,0 - 7192: 122,0 - 7193: 124,2 - 7194: 123,2 - 7195: 125,0 - 7196: 126,-3 - 7197: 122,-5 - 7206: 77,8 - 7207: 78,10 - 7227: 101,14 - 7228: 100,15 - 7229: 102,16 - 7257: 107,15 - 7258: 108,16 - 7259: 108,14 - 7260: 110,14 - 7261: 111,15 - 7276: 114,18 - 7277: 113,19 - 7544: 39,50 - 7545: 39,50 - 7715: 68,-6 - 7716: 66,-5 - 7717: 68,-5 - 7718: 67,-4 - 7719: 74,4 - 7725: 110,18 - 7726: 110,18 - 7727: 111,19 - 7755: 124,-8 - 7756: 124,-7 - 7757: 125,-8 - 7758: 123,-7 - 7759: 122,-6 - 7760: 123,-5 - 7761: 124,-5 - 7762: 125,-3 - 7763: 123,-2 - 7815: 100,-20 - 7816: 93,-20 - 7817: 92,-21 - 7818: 107,-20 - 7819: 108,-20 - 7837: 98,-17 - 7847: 91,-10 - 7848: 90,-8 - 7849: 90,-6 - 7850: 89,-4 - 7851: 89,-11 - 7888: 85,-5 - 8078: -31,12 - 8079: -33,12 - 8080: -31,13 - 8081: -30,12 - 8082: -33,13 - 8083: -36,13 - 8084: -36,12 - 8085: -38,13 - 8086: -26,13 - 8087: -28,13 - 8088: -25,12 - 8089: -25,17 - 8090: -25,18 - 8091: -24,19 - 8092: -25,22 - 8233: 118,-1 - 8234: 118,2 - 8235: 118,4 - 8236: 113,4 - 8237: 118,-8 - 8465: 108,6 - 8466: 101,4 - 8467: 102,4 - 8468: 97,6 - 8469: 98,6 - 8470: 105,6 + 4565: 29,-51 + 4566: 27,-51 + 4567: 28,-50 + 4568: 27,-49 + 4569: 31,-50 + 4570: 30,-50 + 4571: 30,-49 + 4572: 32,-48 + 4598: 23,-52 + 4599: 23,-50 + 4600: 25,-48 + 4601: 23,-46 + 4602: 23,-44 + 4603: 32,-42 + 4604: 32,-44 + 4651: 25,-56 + 4652: 23,-56 + 4653: 24,-57 + 4654: 25,-58 + 4655: 26,-57 + 4656: 26,-59 + 4657: 27,-58 + 4658: 28,-59 + 4741: 56,-48 + 4742: 55,-49 + 4743: 53,-46 + 5277: 85,-12 + 5278: 85,-13 + 5279: 84,-14 + 5280: 82,-12 + 5693: 67,-8 + 5697: 67,-13 + 5698: 67,-12 + 5699: 66,-13 + 5700: 65,-12 + 5701: 66,-11 + 5702: 69,-13 + 5703: 68,-12 + 5724: 78,-17 + 5725: 79,-16 + 5792: -4,32 + 5929: 112,-21 + 5930: 111,-20 + 5931: 110,-21 + 5932: 109,-21 + 5933: 115,-20 + 5934: 106,-21 + 5935: 105,-20 + 5936: 107,-20 + 5937: 100,-21 + 5938: 99,-20 + 5939: 98,-21 + 5940: 97,-23 + 5941: 96,-22 + 6201: 59,20 + 6202: 91,-21 + 6204: 93,-20 + 6205: 92,-22 + 6878: -25,71 + 6879: -36,70 + 6880: -36,69 + 6888: 8,11 + 6904: -11,-29 + 6905: -12,-30 + 6978: -32,3 + 6979: -31,1 + 6980: -30,0 + 6981: -32,0 + 6982: -31,-1 + 6983: -29,4 + 6984: -28,5 + 7015: -35,9 + 7016: -36,3 + 7017: -36,3 + 7111: 47,-52 + 7112: 47,-54 + 7113: 48,-55 + 7114: 49,-55 + 7115: 49,-54 + 7116: 50,-54 + 7117: 46,-51 + 7118: 47,-50 + 7183: 122,5 + 7184: 121,2 + 7185: 121,0 + 7186: 122,0 + 7187: 124,2 + 7188: 123,2 + 7189: 125,0 + 7190: 126,-3 + 7191: 122,-5 + 7200: 77,8 + 7201: 78,10 + 7221: 101,14 + 7222: 100,15 + 7223: 102,16 + 7251: 107,15 + 7252: 108,16 + 7253: 108,14 + 7254: 110,14 + 7255: 111,15 + 7270: 114,18 + 7271: 113,19 + 7538: 39,50 + 7539: 39,50 + 7709: 68,-6 + 7710: 66,-5 + 7711: 68,-5 + 7712: 67,-4 + 7713: 74,4 + 7719: 110,18 + 7720: 110,18 + 7721: 111,19 + 7749: 124,-8 + 7750: 124,-7 + 7751: 125,-8 + 7752: 123,-7 + 7753: 122,-6 + 7754: 123,-5 + 7755: 124,-5 + 7756: 125,-3 + 7757: 123,-2 + 7809: 100,-20 + 7810: 93,-20 + 7811: 92,-21 + 7812: 107,-20 + 7813: 108,-20 + 7831: 98,-17 + 7841: 91,-10 + 7842: 90,-8 + 7843: 90,-6 + 7844: 89,-4 + 7845: 89,-11 + 7882: 85,-5 + 8072: -31,12 + 8073: -33,12 + 8074: -31,13 + 8075: -30,12 + 8076: -33,13 + 8077: -36,13 + 8078: -36,12 + 8079: -38,13 + 8080: -26,13 + 8081: -28,13 + 8082: -25,12 + 8083: -25,17 + 8084: -25,18 + 8085: -24,19 + 8086: -25,22 + 8227: 118,-1 + 8228: 118,2 + 8229: 118,4 + 8230: 113,4 + 8231: 118,-8 + 8459: 108,6 + 8460: 101,4 + 8461: 102,4 + 8462: 97,6 + 8463: 98,6 + 8464: 105,6 - node: cleanable: True color: '#FFFFFFFF' id: Donk decals: - 7720: 77.00151,6.9934244 + 7714: 77.00151,6.9934244 - node: color: '#FFFFFFFF' id: Flowersbr1 @@ -5738,11 +5740,11 @@ entities: 2586: 6.0005627,-8.114843 2587: 2.0630627,-8.146093 2590: 9.969313,-8.192968 - 5180: 56.978905,5.0165105 - 6590: 67.319954,42.01216 - 6603: 67.06812,54.977844 - 7675: 92.725876,-53.725468 - 7676: 88.632126,-52.553593 + 5174: 56.978905,5.0165105 + 6584: 67.319954,42.01216 + 6597: 67.06812,54.977844 + 7669: 92.725876,-53.725468 + 7670: 88.632126,-52.553593 - node: color: '#FFFFFFFF' id: Flowersbr2 @@ -5752,8 +5754,8 @@ entities: 886: -33.3346,56.305473 2588: 2.8755627,-8.161718 3527: 51,-25 - 6601: 70.94312,54.96222 - 7677: 88.8665,-53.397343 + 6595: 70.94312,54.96222 + 7671: 88.8665,-53.397343 - node: color: '#FFFFFFFF' id: Flowersbr3 @@ -5763,10 +5765,10 @@ entities: 1926: 50.00304,1.8612943 1929: 43.092525,3.9081693 2589: 9.109938,-8.114843 - 6550: 86.276436,42.050976 - 6551: 92.745186,41.97285 - 6589: 68.55433,41.902786 - 6602: 69.89625,54.915344 + 6544: 86.276436,42.050976 + 6545: 92.745186,41.97285 + 6583: 68.55433,41.902786 + 6596: 69.89625,54.915344 - node: color: '#FFFFFFFF' id: Flowerspv1 @@ -5776,20 +5778,20 @@ entities: 891: -33.49085,53.60235 1927: 50.893665,1.8300443 3523: 43,-19 - 4536: 30.053492,-54.01924 - 4540: 29.006617,-45.972366 - 5179: 57.02578,5.9383855 - 6599: 69.9275,51.96222 - 7678: 92.8665,-52.553593 + 4530: 30.053492,-54.01924 + 4534: 29.006617,-45.972366 + 5173: 57.02578,5.9383855 + 6593: 69.9275,51.96222 + 7672: 92.8665,-52.553593 - node: color: '#FFFFFFFF' id: Flowerspv2 decals: 892: -36.8971,53.180473 3526: 51,-24 - 4539: 30.428492,-45.878616 - 6600: 67.08375,51.99347 - 7680: 88.507126,-54.662968 + 4533: 30.428492,-45.878616 + 6594: 67.08375,51.99347 + 7674: 88.507126,-54.662968 - node: color: '#FFFFFFFF' id: Flowerspv3 @@ -5800,11 +5802,11 @@ entities: 1998: 17.143509,11.996106 3524: 41,-19 3525: 51,-26 - 4537: 31.92849,-52.191116 - 4538: 31.99099,-45.95674 - 6549: 85.682686,42.03535 - 6598: 69.00562,51.915344 - 7679: 93.038376,-54.491093 + 4531: 31.92849,-52.191116 + 4532: 31.99099,-45.95674 + 6543: 85.682686,42.03535 + 6592: 69.00562,51.915344 + 7673: 93.038376,-54.491093 - node: color: '#FFFFFFFF' id: Flowersy1 @@ -5816,8 +5818,8 @@ entities: 890: -36.631474,56.35235 1928: 49.049915,6.9550443 3077: -27.065111,-9.073271 - 4339: 4,65 - 7674: 91.288376,-54.787968 + 4333: 4,65 + 7668: 91.288376,-54.787968 - node: color: '#FFFFFFFF' id: Flowersy2 @@ -5828,9 +5830,9 @@ entities: 3069: -27.471361,-23.098965 3914: 16.540745,41.988174 3918: 10.93137,34.956924 - 4545: 26.89746,-45.123745 - 6597: 67.52125,48.977844 - 7671: 93.382126,-53.584843 + 4539: 26.89746,-45.123745 + 6591: 67.52125,48.977844 + 7665: 93.382126,-53.584843 - node: color: '#FFFFFFFF' id: Flowersy3 @@ -5839,10 +5841,10 @@ entities: 282: -5.643383,41.110584 3915: 15.290745,41.925674 3919: 10.040745,34.956924 - 6300: 105.48487,38.054688 - 6552: 91.745186,42.019726 - 6595: 70.49,48.93097 - 7672: 91.569626,-52.912968 + 6294: 105.48487,38.054688 + 6546: 91.745186,42.019726 + 6589: 70.49,48.93097 + 7666: 91.569626,-52.912968 - node: color: '#FFFFFFFF' id: Flowersy4 @@ -5853,207 +5855,207 @@ entities: 3076: -29.002611,-9.026396 3916: 9.946995,41.956924 3917: 15.02512,34.988174 - 6299: 109.125496,38.898438 - 6591: 67.851204,41.94966 - 6596: 69.02125,48.96222 - 7673: 90.679,-54.631718 + 6293: 109.125496,38.898438 + 6585: 67.851204,41.94966 + 6590: 69.02125,48.96222 + 7667: 90.679,-54.631718 - node: color: '#00000028' id: FullTileOverlayGreyscale decals: - 6946: -32,0 - 6947: -31,0 - 6948: -30,0 - 6949: -29,0 - 6950: -29,1 - 6951: -29,2 - 6952: -29,3 - 6953: -29,4 - 6954: -29,5 - 6955: -29,6 - 6956: -30,6 - 6957: -31,6 - 6958: -32,6 - 6959: -32,4 - 6960: -32,3 - 6961: -32,2 - 6962: -32,1 + 6940: -32,0 + 6941: -31,0 + 6942: -30,0 + 6943: -29,0 + 6944: -29,1 + 6945: -29,2 + 6946: -29,3 + 6947: -29,4 + 6948: -29,5 + 6949: -29,6 + 6950: -30,6 + 6951: -31,6 + 6952: -32,6 + 6953: -32,4 + 6954: -32,3 + 6955: -32,2 + 6956: -32,1 - node: color: '#00000053' id: FullTileOverlayGreyscale decals: - 6924: -28,-1 - 6925: -29,-1 - 6926: -30,-1 - 6927: -31,-1 - 6928: -32,-1 - 6929: -33,0 - 6930: -33,2 - 6931: -33,3 - 6932: -33,4 - 6933: -33,5 - 6934: -33,9 - 6935: -32,9 - 6936: -31,8 - 6937: -32,7 - 6938: -31,7 - 6939: -30,7 - 6940: -29,7 - 6941: -28,1 - 6942: -28,2 - 6943: -28,3 - 6944: -28,4 - 6945: -28,5 + 6918: -28,-1 + 6919: -29,-1 + 6920: -30,-1 + 6921: -31,-1 + 6922: -32,-1 + 6923: -33,0 + 6924: -33,2 + 6925: -33,3 + 6926: -33,4 + 6927: -33,5 + 6928: -33,9 + 6929: -32,9 + 6930: -31,8 + 6931: -32,7 + 6932: -31,7 + 6933: -30,7 + 6934: -29,7 + 6935: -28,1 + 6936: -28,2 + 6937: -28,3 + 6938: -28,4 + 6939: -28,5 - node: color: '#0000005A' id: FullTileOverlayGreyscale decals: - 6244: 59,26 - 6245: 59,27 - 6246: 59,28 - 6247: 58,28 - 6248: 59,29 - 6249: 59,30 - 6250: 60,30 - 6251: 59,31 - 6252: 59,32 - 6253: 59,33 - 6254: 59,34 - 6255: 58,32 + 6238: 59,26 + 6239: 59,27 + 6240: 59,28 + 6241: 58,28 + 6242: 59,29 + 6243: 59,30 + 6244: 60,30 + 6245: 59,31 + 6246: 59,32 + 6247: 59,33 + 6248: 59,34 + 6249: 58,32 - node: color: '#334E6D31' id: FullTileOverlayGreyscale decals: - 6390: 104,46 - 6391: 104,47 - 6392: 104,48 - 6393: 104,49 - 6394: 104,50 - 6395: 104,51 - 6396: 104,52 - 6397: 105,52 - 6398: 105,51 - 6399: 105,50 - 6400: 105,49 - 6401: 105,48 - 6402: 105,47 - 6403: 105,46 - 6404: 106,46 - 6405: 106,47 - 6406: 106,48 - 6407: 106,49 - 6408: 106,50 - 6409: 106,51 - 6410: 106,52 - 6411: 110,46 - 6412: 110,47 - 6413: 110,48 - 6414: 109,49 - 6415: 108,49 - 6416: 107,49 - 6417: 103,49 - 6418: 110,50 - 6419: 110,51 - 6420: 110,52 - 6421: 110,49 - 6422: 111,49 - 6423: 112,49 - 6424: 112,50 - 6425: 113,50 - 6426: 114,50 - 6427: 115,50 - 6428: 116,50 - 6429: 116,49 - 6430: 116,48 - 6431: 115,48 - 6432: 114,48 - 6433: 113,48 - 6434: 112,48 + 6384: 104,46 + 6385: 104,47 + 6386: 104,48 + 6387: 104,49 + 6388: 104,50 + 6389: 104,51 + 6390: 104,52 + 6391: 105,52 + 6392: 105,51 + 6393: 105,50 + 6394: 105,49 + 6395: 105,48 + 6396: 105,47 + 6397: 105,46 + 6398: 106,46 + 6399: 106,47 + 6400: 106,48 + 6401: 106,49 + 6402: 106,50 + 6403: 106,51 + 6404: 106,52 + 6405: 110,46 + 6406: 110,47 + 6407: 110,48 + 6408: 109,49 + 6409: 108,49 + 6410: 107,49 + 6411: 103,49 + 6412: 110,50 + 6413: 110,51 + 6414: 110,52 + 6415: 110,49 + 6416: 111,49 + 6417: 112,49 + 6418: 112,50 + 6419: 113,50 + 6420: 114,50 + 6421: 115,50 + 6422: 116,50 + 6423: 116,49 + 6424: 116,48 + 6425: 115,48 + 6426: 114,48 + 6427: 113,48 + 6428: 112,48 - node: color: '#334E6D41' id: FullTileOverlayGreyscale decals: - 6709: 55,42 - 6710: 54,42 - 6711: 54,43 - 6712: 55,43 + 6703: 55,42 + 6704: 54,42 + 6705: 54,43 + 6706: 55,43 - node: color: '#334E6D53' id: FullTileOverlayGreyscale decals: - 6531: 89,42 - 6532: 89,41 - 6533: 89,43 - 6534: 89,44 - 6535: 89,45 + 6525: 89,42 + 6526: 89,41 + 6527: 89,43 + 6528: 89,44 + 6529: 89,45 - node: color: '#334E6D5D' id: FullTileOverlayGreyscale decals: - 6647: 69,44 - 6648: 68,44 - 6649: 67,44 - 6650: 71,42 - 6651: 71,43 - 6652: 74,42 - 6653: 74,43 - 6654: 74,46 - 6655: 74,47 - 6656: 74,48 - 6657: 74,49 - 6658: 74,50 - 6659: 74,51 - 6660: 74,52 - 6661: 74,53 - 6662: 74,54 - 6663: 74,56 - 6664: 71,57 - 6665: 70,57 - 6666: 69,57 - 6667: 68,57 - 6668: 67,57 - 6669: 67,58 - 6670: 67,59 - 6671: 67,60 - 6672: 68,60 - 6673: 72,60 - 6674: 73,60 - 6675: 73,59 - 6676: 76,56 - 6677: 77,56 - 6678: 78,56 - 6679: 79,56 - 6680: 80,56 - 6681: 82,56 - 6682: 81,56 - 6683: 93,56 - 6684: 90,56 - 6685: 89,56 - 6686: 88,56 - 6687: 87,56 - 6688: 86,56 - 6689: 85,56 - 6690: 84,56 - 6691: 83,56 + 6641: 69,44 + 6642: 68,44 + 6643: 67,44 + 6644: 71,42 + 6645: 71,43 + 6646: 74,42 + 6647: 74,43 + 6648: 74,46 + 6649: 74,47 + 6650: 74,48 + 6651: 74,49 + 6652: 74,50 + 6653: 74,51 + 6654: 74,52 + 6655: 74,53 + 6656: 74,54 + 6657: 74,56 + 6658: 71,57 + 6659: 70,57 + 6660: 69,57 + 6661: 68,57 + 6662: 67,57 + 6663: 67,58 + 6664: 67,59 + 6665: 67,60 + 6666: 68,60 + 6667: 72,60 + 6668: 73,60 + 6669: 73,59 + 6670: 76,56 + 6671: 77,56 + 6672: 78,56 + 6673: 79,56 + 6674: 80,56 + 6675: 82,56 + 6676: 81,56 + 6677: 93,56 + 6678: 90,56 + 6679: 89,56 + 6680: 88,56 + 6681: 87,56 + 6682: 86,56 + 6683: 85,56 + 6684: 84,56 + 6685: 83,56 - node: color: '#334E6DC8' id: FullTileOverlayGreyscale decals: - 4426: 24,57 - 4427: 24,58 - 4428: 24,59 - 4429: 24,60 - 4430: 25,60 - 4431: 25,59 - 4432: 25,57 - 4433: 26,57 - 4434: 26,58 - 4435: 26,59 - 4436: 26,60 - 4437: 25,58 - 7165: 28,-13 - 7166: 28,-14 - 7167: 27,-14 + 4420: 24,57 + 4421: 24,58 + 4422: 24,59 + 4423: 24,60 + 4424: 25,60 + 4425: 25,59 + 4426: 25,57 + 4427: 26,57 + 4428: 26,58 + 4429: 26,59 + 4430: 26,60 + 4431: 25,58 + 7159: 28,-13 + 7160: 28,-14 + 7161: 27,-14 - node: color: '#52B4E944' id: FullTileOverlayGreyscale @@ -6077,15 +6079,15 @@ entities: 4070: 22,51 4071: 21,50 4072: 21,48 - 4247: 1,61 - 4248: 1,63 + 4241: 1,61 + 4242: 1,63 - node: color: '#52B4E95A' id: FullTileOverlayGreyscale decals: - 4232: -3,61 - 4233: -3,62 - 4234: -3,63 + 4226: -3,61 + 4227: -3,62 + 4228: -3,63 - node: color: '#52B4E996' id: FullTileOverlayGreyscale @@ -6099,16 +6101,16 @@ entities: 4032: 2,45 4033: 2,44 4034: 2,43 - 7608: 64,-53 - 7609: 65,-53 + 7602: 64,-53 + 7603: 65,-53 - node: color: '#79150028' id: FullTileOverlayGreyscale decals: - 6239: 66,27 - 6240: 65,27 - 6241: 65,26 - 6242: 66,26 + 6233: 66,27 + 6234: 65,27 + 6235: 65,26 + 6236: 66,26 - node: color: '#79150096' id: FullTileOverlayGreyscale @@ -6147,11 +6149,11 @@ entities: 4048: 25,43 4049: 25,44 4050: 25,45 - 4513: 34,44 - 4514: 34,45 - 4515: 35,44 - 4516: 33,44 - 4517: 34,43 + 4507: 34,44 + 4508: 34,45 + 4509: 35,44 + 4510: 33,44 + 4511: 34,43 - node: color: '#D381C996' id: FullTileOverlayGreyscale @@ -6164,26 +6166,26 @@ entities: 3305: 46,-19 3367: 48,-24 3368: 48,-23 - 4704: 43,-37 + 4698: 43,-37 - node: color: '#D4D4D406' id: FullTileOverlayGreyscale decals: - 6256: 60,26 - 6257: 60,27 - 6258: 60,28 - 6259: 60,29 - 6260: 58,26 - 6261: 58,27 - 6262: 58,29 - 6263: 58,30 - 6264: 58,31 - 6265: 60,31 - 6266: 60,32 - 6267: 60,33 - 6268: 60,34 - 6269: 58,33 - 6270: 58,34 + 6250: 60,26 + 6251: 60,27 + 6252: 60,28 + 6253: 60,29 + 6254: 58,26 + 6255: 58,27 + 6256: 58,29 + 6257: 58,30 + 6258: 58,31 + 6259: 60,31 + 6260: 60,32 + 6261: 60,33 + 6262: 60,34 + 6263: 58,33 + 6264: 58,34 - node: color: '#D4D4D409' id: FullTileOverlayGreyscale @@ -6196,187 +6198,187 @@ entities: 1029: -20,65 1030: -19,64 1031: -19,65 - 6309: 96,39 - 6310: 96,40 - 6311: 96,41 - 6312: 96,42 - 6313: 96,43 - 6314: 96,44 - 6315: 96,45 - 6316: 96,46 - 6317: 96,47 - 6318: 96,48 - 6319: 96,49 - 6320: 97,49 - 6321: 96,50 - 6322: 96,51 - 6323: 96,52 - 6324: 96,53 - 6325: 96,54 - 6326: 96,55 - 6327: 95,55 - 6328: 101,49 - 6329: 100,49 - 6330: 101,39 - 6331: 100,39 - 6332: 99,39 - 6333: 98,39 - 6334: 97,39 - 6335: 85,39 - 6336: 86,39 - 6337: 87,39 - 6338: 88,39 - 6339: 89,39 - 6340: 90,39 - 6341: 91,39 - 6342: 92,39 - 6343: 93,39 - 6344: 94,39 - 6345: 95,39 - 6346: 83,39 - 6347: 82,39 - 6348: 81,39 - 6349: 82,38 - 6350: 82,37 - 6351: 82,36 - 6352: 82,35 - 6353: 82,34 - 6354: 82,33 - 6355: 82,32 - 6356: 82,31 - 6357: 82,30 - 6358: 82,29 - 6359: 82,28 - 6360: 82,27 + 6303: 96,39 + 6304: 96,40 + 6305: 96,41 + 6306: 96,42 + 6307: 96,43 + 6308: 96,44 + 6309: 96,45 + 6310: 96,46 + 6311: 96,47 + 6312: 96,48 + 6313: 96,49 + 6314: 97,49 + 6315: 96,50 + 6316: 96,51 + 6317: 96,52 + 6318: 96,53 + 6319: 96,54 + 6320: 96,55 + 6321: 95,55 + 6322: 101,49 + 6323: 100,49 + 6324: 101,39 + 6325: 100,39 + 6326: 99,39 + 6327: 98,39 + 6328: 97,39 + 6329: 85,39 + 6330: 86,39 + 6331: 87,39 + 6332: 88,39 + 6333: 89,39 + 6334: 90,39 + 6335: 91,39 + 6336: 92,39 + 6337: 93,39 + 6338: 94,39 + 6339: 95,39 + 6340: 83,39 + 6341: 82,39 + 6342: 81,39 + 6343: 82,38 + 6344: 82,37 + 6345: 82,36 + 6346: 82,35 + 6347: 82,34 + 6348: 82,33 + 6349: 82,32 + 6350: 82,31 + 6351: 82,30 + 6352: 82,29 + 6353: 82,28 + 6354: 82,27 - node: color: '#D4D4D40B' id: FullTileOverlayGreyscale decals: - 6361: 79,39 - 6362: 78,39 - 6363: 76,39 - 6364: 77,39 - 6365: 75,39 - 6366: 74,39 - 6367: 73,39 - 6368: 72,39 - 6369: 71,39 - 6370: 70,39 - 6371: 69,39 - 6372: 68,39 - 6373: 67,39 - 6374: 66,39 - 6375: 65,39 - 6376: 64,39 - 6377: 63,39 - 6378: 62,39 - 6379: 61,39 - 6380: 60,39 - 6381: 59,39 - 6382: 58,39 - 6383: 57,39 - 6384: 56,39 - 6385: 55,39 - 6386: 55,38 - 6387: 55,37 - 6388: 55,36 + 6355: 79,39 + 6356: 78,39 + 6357: 76,39 + 6358: 77,39 + 6359: 75,39 + 6360: 74,39 + 6361: 73,39 + 6362: 72,39 + 6363: 71,39 + 6364: 70,39 + 6365: 69,39 + 6366: 68,39 + 6367: 67,39 + 6368: 66,39 + 6369: 65,39 + 6370: 64,39 + 6371: 63,39 + 6372: 62,39 + 6373: 61,39 + 6374: 60,39 + 6375: 59,39 + 6376: 58,39 + 6377: 57,39 + 6378: 56,39 + 6379: 55,39 + 6380: 55,38 + 6381: 55,37 + 6382: 55,36 - node: color: '#D4D4D40C' id: FullTileOverlayGreyscale decals: - 6782: 73,42 - 6783: 72,42 - 6784: 72,43 - 6785: 73,43 - 6786: 74,45 - 6787: 73,45 - 6788: 72,45 - 6789: 71,45 - 6790: 70,45 - 6791: 69,45 - 6792: 68,45 - 6793: 67,45 - 6794: 67,46 - 6795: 68,46 - 6796: 69,46 - 6797: 70,46 - 6798: 71,46 - 6799: 72,46 - 6800: 73,46 - 6801: 73,47 - 6802: 72,47 - 6803: 72,48 - 6804: 73,48 - 6805: 73,49 - 6806: 72,49 - 6807: 73,50 - 6808: 72,50 - 6809: 72,51 - 6810: 73,51 - 6811: 73,52 - 6812: 72,52 - 6813: 72,53 - 6814: 73,53 - 6815: 73,54 - 6816: 72,54 - 6817: 72,55 - 6818: 73,55 - 6819: 74,55 - 6820: 73,56 - 6821: 72,56 - 6822: 71,56 - 6823: 70,56 - 6824: 69,56 - 6825: 68,56 - 6826: 67,56 - 6827: 72,57 - 6828: 73,57 - 6829: 73,58 - 6830: 72,58 - 6831: 72,59 - 6832: 71,59 - 6833: 70,59 - 6834: 69,59 - 6835: 68,59 - 6836: 68,58 - 6837: 69,58 - 6838: 70,58 - 6839: 71,58 - 6840: 71,60 - 6841: 70,60 - 6842: 69,60 - 6843: 76,55 - 6844: 77,55 - 6845: 78,55 - 6846: 79,55 - 6847: 80,55 - 6848: 81,55 - 6849: 82,55 - 6850: 83,55 - 6851: 84,55 - 6852: 86,55 - 6853: 85,55 - 6854: 87,55 - 6855: 88,55 - 6856: 89,55 - 6857: 90,55 - 6858: 91,55 - 6859: 91,56 - 6860: 92,55 - 6861: 93,55 - 6862: 91,58 - 6863: 91,59 - 6864: 91,60 - 6865: 91,61 - 6866: 91,62 - 6867: 91,63 - 6868: 91,64 - 6869: 91,65 - 6870: 91,66 - 6871: 91,67 - 6872: 91,68 - 6873: 91,69 - 6874: 91,70 + 6776: 73,42 + 6777: 72,42 + 6778: 72,43 + 6779: 73,43 + 6780: 74,45 + 6781: 73,45 + 6782: 72,45 + 6783: 71,45 + 6784: 70,45 + 6785: 69,45 + 6786: 68,45 + 6787: 67,45 + 6788: 67,46 + 6789: 68,46 + 6790: 69,46 + 6791: 70,46 + 6792: 71,46 + 6793: 72,46 + 6794: 73,46 + 6795: 73,47 + 6796: 72,47 + 6797: 72,48 + 6798: 73,48 + 6799: 73,49 + 6800: 72,49 + 6801: 73,50 + 6802: 72,50 + 6803: 72,51 + 6804: 73,51 + 6805: 73,52 + 6806: 72,52 + 6807: 72,53 + 6808: 73,53 + 6809: 73,54 + 6810: 72,54 + 6811: 72,55 + 6812: 73,55 + 6813: 74,55 + 6814: 73,56 + 6815: 72,56 + 6816: 71,56 + 6817: 70,56 + 6818: 69,56 + 6819: 68,56 + 6820: 67,56 + 6821: 72,57 + 6822: 73,57 + 6823: 73,58 + 6824: 72,58 + 6825: 72,59 + 6826: 71,59 + 6827: 70,59 + 6828: 69,59 + 6829: 68,59 + 6830: 68,58 + 6831: 69,58 + 6832: 70,58 + 6833: 71,58 + 6834: 71,60 + 6835: 70,60 + 6836: 69,60 + 6837: 76,55 + 6838: 77,55 + 6839: 78,55 + 6840: 79,55 + 6841: 80,55 + 6842: 81,55 + 6843: 82,55 + 6844: 83,55 + 6845: 84,55 + 6846: 86,55 + 6847: 85,55 + 6848: 87,55 + 6849: 88,55 + 6850: 89,55 + 6851: 90,55 + 6852: 91,55 + 6853: 91,56 + 6854: 92,55 + 6855: 93,55 + 6856: 91,58 + 6857: 91,59 + 6858: 91,60 + 6859: 91,61 + 6860: 91,62 + 6861: 91,63 + 6862: 91,64 + 6863: 91,65 + 6864: 91,66 + 6865: 91,67 + 6866: 91,68 + 6867: 91,69 + 6868: 91,70 - node: color: '#D4D4D428' id: FullTileOverlayGreyscale @@ -6410,10 +6412,10 @@ entities: color: '#DE3A3A2E' id: FullTileOverlayGreyscale decals: - 5173: 53,5 - 5174: 53,6 - 5175: 53,7 - 5176: 52,5 + 5167: 53,5 + 5168: 53,6 + 5169: 53,7 + 5170: 52,5 - node: color: '#DE3A3A44' id: FullTileOverlayGreyscale @@ -6505,8 +6507,8 @@ entities: 490: -13,-10 491: -15,-8 3359: 42,-19 - 5044: 70,-10 - 5045: 72,-12 + 5038: 70,-10 + 5039: 72,-12 - node: color: '#EFB34137' id: FullTileOverlayGreyscale @@ -6597,52 +6599,52 @@ entities: color: '#EFB34147' id: FullTileOverlayGreyscale decals: - 7928: 93,5 - 7929: 93,6 - 7930: 94,6 - 7931: 94,5 - 7932: 95,5 - 7933: 95,6 - 7934: 96,5 - 7935: 97,5 - 7936: 98,5 - 7937: 98,6 - 7938: 97,6 - 7939: 97,4 - 7940: 98,4 - 7941: 111,4 - 7942: 110,6 - 7943: 110,5 - 7944: 110,4 - 7945: 109,4 - 7946: 109,5 - 7947: 109,6 - 7948: 108,6 - 7949: 108,5 - 7950: 108,4 - 7951: 107,5 - 7952: 107,6 - 7953: 106,6 - 7954: 106,4 - 7955: 105,4 - 7956: 105,5 - 7957: 105,6 - 7958: 104,6 - 7959: 104,4 - 7960: 104,5 - 7961: 103,4 - 7962: 103,5 - 7963: 103,6 - 7964: 102,5 - 7965: 102,4 - 7966: 101,4 - 7967: 101,5 - 7968: 101,6 - 7969: 100,6 - 7970: 100,5 - 7971: 99,5 - 7972: 99,6 - 7989: 96,6 + 7922: 93,5 + 7923: 93,6 + 7924: 94,6 + 7925: 94,5 + 7926: 95,5 + 7927: 95,6 + 7928: 96,5 + 7929: 97,5 + 7930: 98,5 + 7931: 98,6 + 7932: 97,6 + 7933: 97,4 + 7934: 98,4 + 7935: 111,4 + 7936: 110,6 + 7937: 110,5 + 7938: 110,4 + 7939: 109,4 + 7940: 109,5 + 7941: 109,6 + 7942: 108,6 + 7943: 108,5 + 7944: 108,4 + 7945: 107,5 + 7946: 107,6 + 7947: 106,6 + 7948: 106,4 + 7949: 105,4 + 7950: 105,5 + 7951: 105,6 + 7952: 104,6 + 7953: 104,4 + 7954: 104,5 + 7955: 103,4 + 7956: 103,5 + 7957: 103,6 + 7958: 102,5 + 7959: 102,4 + 7960: 101,4 + 7961: 101,5 + 7962: 101,6 + 7963: 100,6 + 7964: 100,5 + 7965: 99,5 + 7966: 99,6 + 7983: 96,6 - node: color: '#EFB34196' id: FullTileOverlayGreyscale @@ -6675,127 +6677,127 @@ entities: color: '#EFC84196' id: FullTileOverlayGreyscale decals: - 5486: 72,-17 - 5487: 73,-17 - 5488: 79,-17 - 5489: 78,-17 - 5490: 77,-17 - 5491: 76,-17 - 5492: 75,-17 + 5480: 72,-17 + 5481: 73,-17 + 5482: 79,-17 + 5483: 78,-17 + 5484: 77,-17 + 5485: 76,-17 + 5486: 75,-17 - node: color: '#EFCC4103' id: FullTileOverlayGreyscale decals: - 5879: 98,-24 - 5880: 97,-24 - 5881: 96,-24 - 5882: 96,-23 - 5883: 97,-23 - 5884: 98,-23 - 5885: 97,-22 - 5886: 96,-22 - 5887: 96,-21 - 5888: 97,-21 - 5889: 98,-21 - 5890: 98,-20 - 5891: 99,-20 - 5892: 99,-21 - 5893: 100,-21 - 5894: 100,-20 - 5895: 101,-20 - 5896: 101,-21 - 5897: 103,-21 - 5898: 103,-20 - 5899: 103,-19 - 5900: 103,-18 - 5901: 103,-17 - 5902: 103,-16 - 5903: 104,-16 - 5904: 104,-17 - 5905: 104,-18 - 5906: 104,-19 - 5907: 104,-20 - 5908: 104,-21 - 5909: 105,-21 - 5910: 105,-20 - 5911: 106,-20 - 5912: 106,-21 - 5913: 107,-21 - 5914: 107,-20 - 5915: 108,-20 - 5916: 108,-21 - 5917: 109,-21 - 5918: 109,-20 - 5919: 110,-21 - 5920: 111,-21 - 5921: 111,-20 - 5922: 112,-21 - 5923: 112,-20 - 5924: 113,-20 - 5925: 114,-21 - 5926: 114,-20 - 5927: 115,-20 - 5928: 115,-21 - 5929: 116,-21 + 5873: 98,-24 + 5874: 97,-24 + 5875: 96,-24 + 5876: 96,-23 + 5877: 97,-23 + 5878: 98,-23 + 5879: 97,-22 + 5880: 96,-22 + 5881: 96,-21 + 5882: 97,-21 + 5883: 98,-21 + 5884: 98,-20 + 5885: 99,-20 + 5886: 99,-21 + 5887: 100,-21 + 5888: 100,-20 + 5889: 101,-20 + 5890: 101,-21 + 5891: 103,-21 + 5892: 103,-20 + 5893: 103,-19 + 5894: 103,-18 + 5895: 103,-17 + 5896: 103,-16 + 5897: 104,-16 + 5898: 104,-17 + 5899: 104,-18 + 5900: 104,-19 + 5901: 104,-20 + 5902: 104,-21 + 5903: 105,-21 + 5904: 105,-20 + 5905: 106,-20 + 5906: 106,-21 + 5907: 107,-21 + 5908: 107,-20 + 5909: 108,-20 + 5910: 108,-21 + 5911: 109,-21 + 5912: 109,-20 + 5913: 110,-21 + 5914: 111,-21 + 5915: 111,-20 + 5916: 112,-21 + 5917: 112,-20 + 5918: 113,-20 + 5919: 114,-21 + 5920: 114,-20 + 5921: 115,-20 + 5922: 115,-21 + 5923: 116,-21 - node: color: '#EFD24150' id: FullTileOverlayGreyscale decals: - 7168: 37,-8 + 7162: 37,-8 - node: color: '#EFD54196' id: FullTileOverlayGreyscale decals: - 5697: 67,-8 + 5691: 67,-8 - node: color: '#FFFFFFFF' id: Grassa1 decals: 3064: -26.080736,-23.02084 - 7667: 91.97723,-53.959843 + 7661: 91.97723,-53.959843 - node: color: '#FFFFFFFF' id: Grassa2 decals: - 6584: 70.913704,51.96634 + 6578: 70.913704,51.96634 - node: color: '#FFFFFFFF' id: Grassa3 decals: 3074: -28.471361,-9.010771 - 6545: 91.41956,41.97285 - 6585: 70.42933,55.02884 + 6539: 91.41956,41.97285 + 6579: 70.42933,55.02884 - node: color: '#FFFFFFFF' id: Grassa4 decals: - 6298: 108.531746,39.054688 - 7666: 91.13348,-53.819218 + 6292: 108.531746,39.054688 + 7660: 91.13348,-53.819218 - node: color: '#FFFFFFFF' id: Grassa5 decals: - 6547: 87.04456,42.019726 - 6583: 67.038704,52.013214 + 6541: 87.04456,42.019726 + 6577: 67.038704,52.013214 - node: color: '#FFFFFFFF' id: Grassb1 decals: 279: -4.002758,42.048084 - 6586: 69.319954,55.02884 - 6587: 69.413704,49.06009 - 6588: 68.89808,41.996536 - 7664: 92.7116,-54.897343 - 7668: 90.9616,-52.897343 + 6580: 69.319954,55.02884 + 6581: 69.413704,49.06009 + 6582: 68.89808,41.996536 + 7658: 92.7116,-54.897343 + 7662: 90.9616,-52.897343 - node: color: '#FFFFFFFF' id: Grassb2 decals: 280: -6.002758,41.079334 - 6296: 104.969246,37.914062 - 6580: 67.21058,48.99759 - 6581: 67.507454,54.96634 - 7663: 93.75848,-54.912968 + 6290: 104.969246,37.914062 + 6574: 67.21058,48.99759 + 6575: 67.507454,54.96634 + 7657: 93.75848,-54.912968 - node: color: '#FFFFFFFF' id: Grassb3 @@ -6804,18 +6806,18 @@ entities: 894: -36.61585,55.1961 1389: -27.879156,42.02038 3066: -27.846361,-23.005215 - 6579: 70.99183,49.013214 - 6582: 67.944954,51.99759 - 7662: 92.88348,-54.03338 - 7669: 92.2116,-52.928593 + 6573: 70.99183,49.013214 + 6576: 67.944954,51.99759 + 7656: 92.88348,-54.03338 + 7663: 92.2116,-52.928593 - node: color: '#FFFFFFFF' id: Grassb4 decals: - 4532: 29.944117,-45.92549 - 6295: 109.062996,37.992188 - 6297: 105.35987,39.976562 - 7670: 93.554,-52.787968 + 4526: 29.944117,-45.92549 + 6289: 109.062996,37.992188 + 6291: 105.35987,39.976562 + 7664: 93.554,-52.787968 - node: color: '#FFFFFFFF' id: Grassb5 @@ -6825,8 +6827,8 @@ entities: 1390: -29.019781,42.20788 3065: -26.955736,-22.92709 3075: -26.205736,-8.885771 - 6546: 92.88831,42.175976 - 7665: 92.1491,-52.225468 + 6540: 92.88831,42.175976 + 7659: 92.1491,-52.225468 - node: color: '#FFFFFFFF' id: Grassd1 @@ -6836,9 +6838,9 @@ entities: 875: -33.850224,56.0086 878: -34.475224,56.867973 879: -33.74085,53.680473 - 4529: 30.819117,-45.941116 - 4530: 29.053492,-53.92549 - 6544: 92.91956,42.050976 + 4523: 30.819117,-45.941116 + 4524: 29.053492,-53.92549 + 6538: 92.91956,42.050976 - node: color: '#FFFFFFFF' id: Grassd2 @@ -6848,9 +6850,9 @@ entities: 876: -33.30335,55.461723 881: -36.818974,56.60235 2585: 9.984938,-8.052343 - 6574: 66.944954,55.12259 - 6575: 68.49183,52.044464 - 6578: 68.944954,49.044464 + 6568: 66.944954,55.12259 + 6569: 68.49183,52.044464 + 6572: 68.944954,49.044464 - node: color: '#FFFFFFFF' id: Grassd3 @@ -6861,12 +6863,12 @@ entities: 2584: 2.0474377,-8.067968 3063: -26.065111,-22.98959 3073: -25.908861,-8.963896 - 4528: 32.02224,-45.941116 - 6542: 85.35046,41.84785 - 6543: 85.05358,42.082226 - 6567: 70.851204,52.01326 - 6576: 70.89808,55.02884 - 6577: 70.944954,49.013214 + 4522: 32.02224,-45.941116 + 6536: 85.35046,41.84785 + 6537: 85.05358,42.082226 + 6561: 70.851204,52.01326 + 6570: 70.89808,55.02884 + 6571: 70.944954,49.013214 - node: color: '#FFFFFFFF' id: Grasse1 @@ -6886,8 +6888,8 @@ entities: 3520: 51,-26 3910: 11,35 3911: 15,42 - 6563: 67.069954,42.172634 - 6564: 67.163704,48.988827 + 6557: 67.069954,42.172634 + 6558: 67.163704,48.988827 - node: color: '#FFFFFFFF' id: Grasse2 @@ -6917,59 +6919,59 @@ entities: 3907: 15,35 3908: 16,42 3909: 10,42 - 4338: 4,65 - 4527: 29.194117,-45.909866 - 4531: 30.022242,-53.89424 - 5178: 57,6 - 6538: 91.05358,42.0666 - 6539: 92.24108,42.019726 - 6540: 87.08483,42.019726 - 6562: 67.96058,41.90701 - 6569: 69.64808,52.013214 - 6570: 67.351204,52.06009 - 6571: 68.02308,55.06009 - 6572: 68.757454,55.044464 - 7643: 94.5241,-54.674004 - 7644: 94.0241,-54.767754 - 7645: 94.28973,-53.62713 - 7646: 94.03973,-52.50213 - 7647: 92.75848,-53.15838 - 7648: 92.61785,-54.892754 - 7649: 92.2116,-54.955254 - 7650: 91.36785,-53.56463 - 7651: 90.97723,-52.12713 - 7652: 89.24285,-52.15838 - 7653: 88.32098,-52.455254 - 7654: 87.93035,-54.12713 - 7655: 88.41473,-54.78338 - 7656: 88.80535,-55.00213 - 7657: 90.57098,-55.12713 - 7658: 91.13348,-54.799004 - 7659: 92.00848,-53.111504 - 7660: 93.19598,-52.799004 - 7661: 93.44598,-52.40838 - 7686: 94.9915,-52.100468 - 7687: 94.96025,-52.866093 - 7688: 95.02275,-53.491093 - 7689: 94.944626,-54.381718 - 7690: 94.913376,-54.959843 - 7691: 94.14775,-51.944218 - 7692: 93.288376,-51.959843 - 7693: 92.257126,-52.022343 - 7694: 91.52275,-51.928593 - 7695: 89.913376,-51.897343 - 7696: 88.8665,-51.959843 - 7697: 88.100876,-51.959843 - 7698: 88.054,-53.178593 - 7699: 87.882126,-53.756718 - 7700: 87.929,-55.053593 - 7701: 89.632126,-55.006718 - 7702: 90.77275,-54.975468 - 7703: 91.444626,-55.037968 - 7704: 93.77275,-55.069218 - 7705: 93.163376,-55.131718 - 7706: 91.64775,-51.850468 - 7707: 92.8665,-51.741093 + 4332: 4,65 + 4521: 29.194117,-45.909866 + 4525: 30.022242,-53.89424 + 5172: 57,6 + 6532: 91.05358,42.0666 + 6533: 92.24108,42.019726 + 6534: 87.08483,42.019726 + 6556: 67.96058,41.90701 + 6563: 69.64808,52.013214 + 6564: 67.351204,52.06009 + 6565: 68.02308,55.06009 + 6566: 68.757454,55.044464 + 7637: 94.5241,-54.674004 + 7638: 94.0241,-54.767754 + 7639: 94.28973,-53.62713 + 7640: 94.03973,-52.50213 + 7641: 92.75848,-53.15838 + 7642: 92.61785,-54.892754 + 7643: 92.2116,-54.955254 + 7644: 91.36785,-53.56463 + 7645: 90.97723,-52.12713 + 7646: 89.24285,-52.15838 + 7647: 88.32098,-52.455254 + 7648: 87.93035,-54.12713 + 7649: 88.41473,-54.78338 + 7650: 88.80535,-55.00213 + 7651: 90.57098,-55.12713 + 7652: 91.13348,-54.799004 + 7653: 92.00848,-53.111504 + 7654: 93.19598,-52.799004 + 7655: 93.44598,-52.40838 + 7680: 94.9915,-52.100468 + 7681: 94.96025,-52.866093 + 7682: 95.02275,-53.491093 + 7683: 94.944626,-54.381718 + 7684: 94.913376,-54.959843 + 7685: 94.14775,-51.944218 + 7686: 93.288376,-51.959843 + 7687: 92.257126,-52.022343 + 7688: 91.52275,-51.928593 + 7689: 89.913376,-51.897343 + 7690: 88.8665,-51.959843 + 7691: 88.100876,-51.959843 + 7692: 88.054,-53.178593 + 7693: 87.882126,-53.756718 + 7694: 87.929,-55.053593 + 7695: 89.632126,-55.006718 + 7696: 90.77275,-54.975468 + 7697: 91.444626,-55.037968 + 7698: 93.77275,-55.069218 + 7699: 93.163376,-55.131718 + 7700: 91.64775,-51.850468 + 7701: 92.8665,-51.741093 - node: color: '#FFFFFFFF' id: Grasse3 @@ -6987,58 +6989,58 @@ entities: 3522: 51,-24 3912: 17,42 3913: 10,35 - 4526: 32.006615,-52.11299 - 5177: 57,5 - 6541: 86.14733,41.894726 - 6561: 68.913704,42.078884 - 6565: 68.069954,49.00445 - 6566: 70.02308,48.9732 - 6568: 70.11683,51.950714 - 6573: 69.757454,55.075714 - 7619: 90.53973,-54.34588 - 7620: 88.78973,-53.767754 - 7621: 90.8991,-52.955254 - 7622: 90.88348,-53.549004 - 7623: 93.2741,-53.40838 - 7624: 92.68035,-52.68963 - 7625: 93.78973,-54.00213 - 7626: 92.80535,-54.330254 - 7627: 91.60223,-54.09588 - 7628: 91.5241,-53.50213 - 7629: 92.5866,-53.267754 - 7630: 93.22723,-53.392754 - 7631: 93.53973,-54.080254 - 7632: 91.0866,-54.549004 - 7633: 90.13348,-54.97088 - 7634: 89.07098,-54.455254 - 7635: 87.91473,-53.642754 - 7636: 88.16473,-52.34588 - 7637: 90.2116,-52.03338 - 7638: 92.00848,-52.25213 - 7639: 93.66473,-52.486504 - 7640: 94.03973,-52.25213 - 7641: 94.18035,-53.580254 - 7642: 93.2116,-54.392754 + 4520: 32.006615,-52.11299 + 5171: 57,5 + 6535: 86.14733,41.894726 + 6555: 68.913704,42.078884 + 6559: 68.069954,49.00445 + 6560: 70.02308,48.9732 + 6562: 70.11683,51.950714 + 6567: 69.757454,55.075714 + 7613: 90.53973,-54.34588 + 7614: 88.78973,-53.767754 + 7615: 90.8991,-52.955254 + 7616: 90.88348,-53.549004 + 7617: 93.2741,-53.40838 + 7618: 92.68035,-52.68963 + 7619: 93.78973,-54.00213 + 7620: 92.80535,-54.330254 + 7621: 91.60223,-54.09588 + 7622: 91.5241,-53.50213 + 7623: 92.5866,-53.267754 + 7624: 93.22723,-53.392754 + 7625: 93.53973,-54.080254 + 7626: 91.0866,-54.549004 + 7627: 90.13348,-54.97088 + 7628: 89.07098,-54.455254 + 7629: 87.91473,-53.642754 + 7630: 88.16473,-52.34588 + 7631: 90.2116,-52.03338 + 7632: 92.00848,-52.25213 + 7633: 93.66473,-52.486504 + 7634: 94.03973,-52.25213 + 7635: 94.18035,-53.580254 + 7636: 93.2116,-54.392754 - node: color: '#0000007C' id: HalfTileOverlayGreyscale decals: - 5459: 73,-4 - 5460: 72,-4 - 5461: 71,-4 + 5453: 73,-4 + 5454: 72,-4 + 5455: 71,-4 - node: color: '#334E6D41' id: HalfTileOverlayGreyscale decals: - 6713: 55,41 - 6714: 54,41 + 6707: 55,41 + 6708: 54,41 - node: color: '#52B4E944' id: HalfTileOverlayGreyscale decals: - 6627: 70,51 - 6628: 69,51 - 6629: 68,51 + 6621: 70,51 + 6622: 69,51 + 6623: 68,51 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale @@ -7048,20 +7050,20 @@ entities: 2696: 18,-11 2697: 17,-11 2698: 16,-11 - 8217: 7,50 - 8218: 6,50 - 8219: 5,50 - 8220: 4,50 - 8221: 3,50 - 8222: 2,50 + 8211: 7,50 + 8212: 6,50 + 8213: 5,50 + 8214: 4,50 + 8215: 3,50 + 8216: 2,50 - node: color: '#79150096' id: HalfTileOverlayGreyscale decals: - 5666: 60,2 - 6641: 68,54 - 6642: 69,54 - 6643: 70,54 + 5660: 60,2 + 6635: 68,54 + 6636: 69,54 + 6637: 70,54 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale @@ -7083,22 +7085,22 @@ entities: 2224: 6,-14 2225: 5,-14 2226: 4,-14 - 6694: 82,57 - 6695: 83,57 + 6688: 82,57 + 6689: 83,57 - node: color: '#D381C92E' id: HalfTileOverlayGreyscale decals: - 6692: 76,57 - 6693: 77,57 + 6686: 76,57 + 6687: 77,57 - node: color: '#D381C94D' id: HalfTileOverlayGreyscale decals: - 7101: 50,-54 - 7102: 49,-54 - 7103: 45,-54 - 7104: 44,-54 + 7095: 50,-54 + 7096: 49,-54 + 7097: 45,-54 + 7098: 44,-54 - node: color: '#D4D4D409' id: HalfTileOverlayGreyscale @@ -7124,23 +7126,23 @@ entities: 710: -32,32 711: -30,32 739: -31,32 - 5990: 91,36 - 5991: 92,36 - 5992: 96,36 - 5993: 97,36 - 5994: 98,36 + 5984: 91,36 + 5985: 92,36 + 5986: 96,36 + 5987: 97,36 + 5988: 98,36 - node: color: '#D4D4D415' id: HalfTileOverlayGreyscale decals: - 5263: 85,-14 - 5264: 84,-14 - 5265: 83,-14 - 5266: 82,-14 - 7299: 48,36 - 7300: 49,36 - 7301: 50,36 - 7302: 51,36 + 5257: 85,-14 + 5258: 84,-14 + 5259: 83,-14 + 5260: 82,-14 + 7293: 48,36 + 7294: 49,36 + 7295: 50,36 + 7296: 51,36 - node: color: '#D4D4D428' id: HalfTileOverlayGreyscale @@ -7183,9 +7185,9 @@ entities: color: '#D4D4D45D' id: HalfTileOverlayGreyscale decals: - 5146: 56,2 - 5147: 55,2 - 5148: 54,2 + 5140: 56,2 + 5141: 55,2 + 5142: 54,2 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale @@ -7209,21 +7211,21 @@ entities: 1158: 3,29 1159: 5,29 1160: 4,29 - 7739: 125,-2 - 7740: 123,-2 + 7733: 125,-2 + 7734: 123,-2 - node: color: '#EFD5411F' id: HalfTileOverlayGreyscale decals: - 6624: 70,48 - 6625: 69,48 - 6626: 68,48 + 6618: 70,48 + 6619: 69,48 + 6620: 68,48 - node: color: '#EFD84147' id: HalfTileOverlayGreyscale decals: - 5841: 100,-16 - 5842: 99,-16 + 5835: 100,-16 + 5836: 99,-16 - node: color: '#FFCF7C25' id: HalfTileOverlayGreyscale @@ -7247,9 +7249,9 @@ entities: color: '#52B4E944' id: HalfTileOverlayGreyscale180 decals: - 6630: 70,50 - 6631: 69,50 - 6632: 68,50 + 6624: 70,50 + 6625: 69,50 + 6626: 68,50 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 @@ -7259,23 +7261,23 @@ entities: 2701: 18,-14 2702: 17,-14 2703: 16,-14 - 8213: 6,47 - 8214: 7,47 - 8215: 4,47 - 8216: 2,47 + 8207: 6,47 + 8208: 7,47 + 8209: 4,47 + 8210: 2,47 - node: color: '#79150096' id: HalfTileOverlayGreyscale180 decals: - 5667: 60,1 - 6644: 70,53 - 6645: 69,53 - 6646: 68,53 + 5661: 60,1 + 6638: 70,53 + 6639: 69,53 + 6640: 68,53 - node: color: '#9FED5860' id: HalfTileOverlayGreyscale180 decals: - 7271: 113,18 + 7265: 113,18 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale180 @@ -7298,17 +7300,17 @@ entities: color: '#A4610696' id: HalfTileOverlayGreyscale180 decals: - 8035: 5,47 + 8029: 5,47 - node: color: '#D381C94D' id: HalfTileOverlayGreyscale180 decals: - 7105: 50,-55 - 7106: 49,-55 - 7107: 48,-55 - 7108: 47,-55 - 7109: 45,-55 - 7110: 44,-55 + 7099: 50,-55 + 7100: 49,-55 + 7101: 48,-55 + 7102: 47,-55 + 7103: 45,-55 + 7104: 44,-55 - node: color: '#D4D4D409' id: HalfTileOverlayGreyscale180 @@ -7334,19 +7336,19 @@ entities: 696: -34,38 697: -35,38 698: -36,38 - 5985: 96,35 - 5986: 97,35 - 5987: 98,35 - 5988: 92,35 - 5989: 91,35 + 5979: 96,35 + 5980: 97,35 + 5981: 98,35 + 5982: 92,35 + 5983: 91,35 - node: color: '#D4D4D415' id: HalfTileOverlayGreyscale180 decals: - 7295: 51,40 - 7296: 50,40 - 7297: 49,40 - 7298: 48,40 + 7289: 51,40 + 7290: 50,40 + 7291: 49,40 + 7292: 48,40 - node: color: '#D4D4D428' id: HalfTileOverlayGreyscale180 @@ -7386,31 +7388,31 @@ entities: 2680: 17,-10 2681: 16,-10 2682: 15,-10 - 8036: 6,47 - 8037: 7,47 - 8038: 4,47 - 8039: 2,47 + 8030: 6,47 + 8031: 7,47 + 8032: 4,47 + 8033: 2,47 - node: color: '#D4D4D434' id: HalfTileOverlayGreyscale180 decals: - 5462: 73,-4 - 5463: 72,-4 - 5464: 71,-4 + 5456: 73,-4 + 5457: 72,-4 + 5458: 71,-4 - node: color: '#D4D4D43E' id: HalfTileOverlayGreyscale180 decals: - 5152: 56,2 - 5153: 55,2 - 5154: 54,2 + 5146: 56,2 + 5147: 55,2 + 5148: 54,2 - node: color: '#D4D4D447' id: HalfTileOverlayGreyscale180 decals: - 5158: 54,8 - 5159: 55,8 - 5160: 56,8 + 5152: 54,8 + 5153: 55,8 + 5154: 56,8 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale180 @@ -7434,35 +7436,35 @@ entities: color: '#EFCF414A' id: HalfTileOverlayGreyscale180 decals: - 5331: 87,-8 - 5332: 86,-8 - 5333: 85,-8 + 5325: 87,-8 + 5326: 86,-8 + 5327: 85,-8 - node: color: '#EFD24150' id: HalfTileOverlayGreyscale180 decals: - 7169: 37,-7 - 7170: 36,-9 + 7163: 37,-7 + 7164: 36,-9 - node: color: '#EFD5411F' id: HalfTileOverlayGreyscale180 decals: - 6621: 70,47 - 6622: 69,47 - 6623: 68,47 + 6615: 70,47 + 6616: 69,47 + 6617: 68,47 - node: color: '#EFD84147' id: HalfTileOverlayGreyscale180 decals: - 5838: 100,-18 - 5839: 99,-18 - 5840: 98,-18 + 5832: 100,-18 + 5833: 99,-18 + 5834: 98,-18 - node: color: '#00000057' id: HalfTileOverlayGreyscale270 decals: - 6482: 79,44 - 6483: 79,45 + 6476: 79,44 + 6477: 79,45 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale270 @@ -7482,13 +7484,13 @@ entities: color: '#646464A1' id: HalfTileOverlayGreyscale270 decals: - 4769: 35,-26 - 4770: 35,-27 + 4763: 35,-26 + 4764: 35,-27 - node: color: '#9FED5860' id: HalfTileOverlayGreyscale270 decals: - 7270: 112,19 + 7264: 112,19 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale270 @@ -7500,9 +7502,9 @@ entities: color: '#D381C94D' id: HalfTileOverlayGreyscale270 decals: - 7098: 46,-53 - 7099: 46,-52 - 7100: 46,-51 + 7092: 46,-53 + 7093: 46,-52 + 7094: 46,-51 - node: color: '#D4D4D409' id: HalfTileOverlayGreyscale270 @@ -7517,22 +7519,22 @@ entities: color: '#D4D4D40B' id: HalfTileOverlayGreyscale270 decals: - 6389: 102,39 + 6383: 102,39 - node: color: '#D4D4D40F' id: HalfTileOverlayGreyscale270 decals: - 5995: 85,32 + 5989: 85,32 - node: color: '#D4D4D415' id: HalfTileOverlayGreyscale270 decals: - 5270: 86,-13 - 5271: 86,-12 - 5272: 86,-11 - 7292: 52,37 - 7293: 52,38 - 7294: 52,39 + 5264: 86,-13 + 5265: 86,-12 + 5266: 86,-11 + 7286: 52,37 + 7287: 52,38 + 7288: 52,39 - node: color: '#D4D4D428' id: HalfTileOverlayGreyscale270 @@ -7556,16 +7558,16 @@ entities: 2332: 15,-25 2333: 15,-24 2334: 15,-23 - 8033: 15,-22 + 8027: 15,-22 - node: color: '#D4D4D45A' id: HalfTileOverlayGreyscale270 decals: - 5859: 95,-22 - 5860: 95,-21 - 5861: 95,-20 - 5862: 102,-21 - 5863: 102,-20 + 5853: 95,-22 + 5854: 95,-21 + 5855: 95,-20 + 5856: 102,-21 + 5857: 102,-20 - node: color: '#DE3A3A44' id: HalfTileOverlayGreyscale270 @@ -7589,24 +7591,24 @@ entities: 1157: 3,27 1172: 7,25 1173: 7,26 - 7741: 122,-3 - 7742: 122,-5 + 7735: 122,-3 + 7736: 122,-5 - node: color: '#EFD84147' id: HalfTileOverlayGreyscale270 decals: - 5843: 97,-17 - 5844: 97,-16 - 5845: 97,-15 + 5837: 97,-17 + 5838: 97,-16 + 5839: 97,-15 - node: color: '#0000004D' id: HalfTileOverlayGreyscale90 decals: - 5869: 95,-22 - 5870: 95,-21 - 5871: 95,-20 - 5872: 102,-21 - 5873: 102,-20 + 5863: 95,-22 + 5864: 95,-21 + 5865: 95,-20 + 5866: 102,-21 + 5867: 102,-20 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale90 @@ -7617,24 +7619,24 @@ entities: color: '#646464A1' id: HalfTileOverlayGreyscale90 decals: - 4771: 33,-26 - 4772: 33,-27 + 4765: 33,-26 + 4766: 33,-27 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale90 decals: - 7723: 110,18 - 7724: 110,20 + 7717: 110,18 + 7718: 110,20 - node: color: '#D381C94D' id: HalfTileOverlayGreyscale90 decals: - 7097: 48,-51 + 7091: 48,-51 - node: color: '#D381C996' id: HalfTileOverlayGreyscale90 decals: - 7273: 114,19 + 7267: 114,19 - node: color: '#D4D4D409' id: HalfTileOverlayGreyscale90 @@ -7649,12 +7651,12 @@ entities: color: '#D4D4D415' id: HalfTileOverlayGreyscale90 decals: - 5267: 81,-13 - 5268: 81,-12 - 5269: 81,-11 - 7289: 47,37 - 7290: 47,38 - 7291: 47,39 + 5261: 81,-13 + 5262: 81,-12 + 5263: 81,-11 + 7283: 47,37 + 7284: 47,38 + 7285: 47,39 - node: color: '#D4D4D428' id: HalfTileOverlayGreyscale90 @@ -7683,8 +7685,8 @@ entities: color: '#D4D4D453' id: HalfTileOverlayGreyscale90 decals: - 6478: 79,44 - 6479: 79,45 + 6472: 79,44 + 6473: 79,45 - node: color: '#DE3A3A44' id: HalfTileOverlayGreyscale90 @@ -7707,12 +7709,12 @@ entities: 1167: 6,24 1168: 6,27 1169: 6,28 - 7738: 126,-3 + 7732: 126,-3 - node: color: '#EFD84147' id: HalfTileOverlayGreyscale90 decals: - 5846: 98,-15 + 5840: 98,-15 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -7720,7 +7722,7 @@ entities: decals: 2272: 7,-14 2455: 5,-31 - 6716: 65,41 + 6710: 65,41 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' @@ -7733,11 +7735,11 @@ entities: 2465: 15,-25 2466: 15,-24 2467: 15,-23 - 5011: 69,-22 - 5012: 69,-21 - 5013: 69,-20 - 5014: 69,-19 - 6715: 56,42 + 5005: 69,-22 + 5006: 69,-21 + 5007: 69,-20 + 5008: 69,-19 + 6709: 56,42 - node: color: '#FFFFFFFF' id: LoadingArea @@ -7755,90 +7757,90 @@ entities: color: '#52B4E93B' id: MiniTileCheckerBOverlay decals: - 8605: 65,19 - 8606: 67,19 + 8599: 65,19 + 8600: 67,19 - node: color: '#52B4E963' id: MiniTileCheckerBOverlay decals: - 8607: 73,12 - 8608: 72,12 - 8609: 71,12 - 8610: 70,12 - 8611: 69,12 - 8612: 68,12 - 8613: 67,12 - 8614: 66,12 - 8615: 66,11 - 8616: 66,10 - 8617: 66,9 - 8618: 66,8 - 8619: 66,7 - 8620: 67,7 - 8621: 68,7 - 8622: 69,7 - 8623: 70,7 - 8624: 71,7 - 8625: 72,7 - 8626: 73,7 + 8601: 73,12 + 8602: 72,12 + 8603: 71,12 + 8604: 70,12 + 8605: 69,12 + 8606: 68,12 + 8607: 67,12 + 8608: 66,12 + 8609: 66,11 + 8610: 66,10 + 8611: 66,9 + 8612: 66,8 + 8613: 66,7 + 8614: 67,7 + 8615: 68,7 + 8616: 69,7 + 8617: 70,7 + 8618: 71,7 + 8619: 72,7 + 8620: 73,7 - node: color: '#FFFFFFFF' id: MiniTileDarkLineE decals: - 8666: 73,7 - 8667: 73,12 + 8660: 73,7 + 8661: 73,12 - node: color: '#D381C996' id: MiniTileWhiteInnerSe decals: - 4689: 56,-34 + 4683: 56,-34 - node: color: '#FFFFFFFF' id: North decals: - 8128: 53.9764,59.069416 + 8122: 53.9764,59.069416 - node: color: '#000000A4' id: QuarterTileOverlayGreyscale decals: - 4964: 63,-22 - 4965: 63,-21 - 4966: 63,-20 - 4967: 63,-19 - 4968: 64,-19 - 4969: 65,-19 - 4970: 67,-19 - 4971: 68,-19 - 4972: 69,-19 + 4958: 63,-22 + 4959: 63,-21 + 4960: 63,-20 + 4961: 63,-19 + 4962: 64,-19 + 4963: 65,-19 + 4964: 67,-19 + 4965: 68,-19 + 4966: 69,-19 - node: color: '#334E6D44' id: QuarterTileOverlayGreyscale decals: - 7512: 76,56 - 7513: 77,56 - 7514: 78,56 - 7515: 79,56 - 7516: 80,56 - 7517: 81,56 - 7518: 82,56 - 7519: 83,56 - 7520: 84,56 - 7521: 85,56 - 7522: 86,56 - 7523: 87,56 - 7524: 88,56 - 7525: 89,56 - 7526: 90,56 + 7506: 76,56 + 7507: 77,56 + 7508: 78,56 + 7509: 79,56 + 7510: 80,56 + 7511: 81,56 + 7512: 82,56 + 7513: 83,56 + 7514: 84,56 + 7515: 85,56 + 7516: 86,56 + 7517: 87,56 + 7518: 88,56 + 7519: 89,56 + 7520: 90,56 - node: color: '#334E6D76' id: QuarterTileOverlayGreyscale decals: - 7405: 66,40 - 7406: 67,40 - 7407: 68,40 - 7408: 69,40 - 7409: 70,40 - 7410: 71,40 + 7399: 66,40 + 7400: 67,40 + 7401: 68,40 + 7402: 69,40 + 7403: 70,40 + 7404: 71,40 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale @@ -7858,25 +7860,25 @@ entities: 2110: -13,-5 2111: -14,-5 2112: -15,-5 - 5582: 53,-10 - 5583: 52,-10 - 5584: 51,-10 - 5596: 48,-10 - 7137: 27,-5 + 5576: 53,-10 + 5577: 52,-10 + 5578: 51,-10 + 5590: 48,-10 + 7131: 27,-5 - node: color: '#52B4E941' id: QuarterTileOverlayGreyscale decals: - 5104: 11,34 - 5105: 10,34 - 5106: 9,34 - 5107: 8,34 - 5108: 7,34 - 5109: 6,34 - 5110: 5,34 - 5111: 4,34 - 5112: 3,34 - 5113: 2,34 + 5098: 11,34 + 5099: 10,34 + 5100: 9,34 + 5101: 8,34 + 5102: 7,34 + 5103: 6,34 + 5104: 5,34 + 5105: 4,34 + 5106: 3,34 + 5107: 2,34 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale @@ -7892,23 +7894,23 @@ entities: 3119: -24,-23 3120: -24,-24 3121: -24,-25 - 4386: 13,65 - 4387: 14,65 - 4388: 12,65 - 4389: 15,66 - 4390: 15,67 - 8670: -35,-23 - 8671: -36,-24 - 8672: -36,-25 - 8673: -37,-25 - 8674: -38,-25 - 8675: -39,-25 - 8676: -40,-25 - 8698: -36,-9 - 8699: -36,-8 - 8700: -39,-7 - 8701: -39,-6 - 8702: -39,-5 + 4380: 13,65 + 4381: 14,65 + 4382: 12,65 + 4383: 15,66 + 4384: 15,67 + 8664: -35,-23 + 8665: -36,-24 + 8666: -36,-25 + 8667: -37,-25 + 8668: -38,-25 + 8669: -39,-25 + 8670: -40,-25 + 8692: -36,-9 + 8693: -36,-8 + 8694: -39,-7 + 8695: -39,-6 + 8696: -39,-5 - node: color: '#79150096' id: QuarterTileOverlayGreyscale @@ -7946,15 +7948,15 @@ entities: 2744: 23,-14 2745: 23,-15 2746: 23,-16 - 4518: 11,-15 - 4519: 11,-16 - 4520: 11,-17 - 4521: 11,-18 + 4512: 11,-15 + 4513: 11,-16 + 4514: 11,-17 + 4515: 11,-18 - node: color: '#D381C94D' id: QuarterTileOverlayGreyscale decals: - 7111: 46,-54 + 7105: 46,-54 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale @@ -7962,24 +7964,24 @@ entities: 3381: 52,-26 3382: 52,-25 3383: 52,-24 - 4549: 27,-49 - 4550: 27,-48 - 4551: 27,-47 - 4552: 28,-47 - 4553: 29,-47 - 4554: 30,-47 - 4555: 31,-47 - 4556: 32,-47 - 4644: 30,-56 - 4645: 29,-56 - 4646: 28,-56 - 4647: 27,-56 - 4648: 26,-56 - 4649: 25,-56 - 4650: 24,-56 - 4651: 23,-56 - 4652: 23,-57 - 4653: 23,-58 + 4543: 27,-49 + 4544: 27,-48 + 4545: 27,-47 + 4546: 28,-47 + 4547: 29,-47 + 4548: 30,-47 + 4549: 31,-47 + 4550: 32,-47 + 4638: 30,-56 + 4639: 29,-56 + 4640: 28,-56 + 4641: 27,-56 + 4642: 26,-56 + 4643: 25,-56 + 4644: 24,-56 + 4645: 23,-56 + 4646: 23,-57 + 4647: 23,-58 - node: color: '#D4D4D409' id: QuarterTileOverlayGreyscale @@ -7997,7 +7999,7 @@ entities: color: '#D4D4D415' id: QuarterTileOverlayGreyscale decals: - 5273: 86,-14 + 5267: 86,-14 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale @@ -8094,113 +8096,113 @@ entities: 2752: 22,-21 3247: -20,-5 3248: -24,-5 - 4400: 15,68 - 4401: 14,68 - 4402: 13,68 - 4403: 12,68 - 4816: -6,50 - 4817: -6,51 - 4818: -6,52 - 4819: -6,53 - 4820: -6,54 - 4821: -6,55 - 4822: -6,56 - 4823: -6,57 - 4824: -6,58 - 4825: -6,59 - 4826: -6,60 - 4827: -6,61 - 4828: -6,62 - 4829: -6,63 - 4830: -6,64 - 4831: -6,65 - 4832: -6,66 - 5619: 54,0 - 5620: 54,-1 - 5621: 53,-1 - 5622: 52,-1 - 5623: 51,-1 - 5624: 50,-1 - 5625: 49,-1 - 5626: 48,-1 - 5627: 47,-1 - 5628: 46,-1 - 5629: 45,-1 - 5630: 44,-1 - 5631: 43,-1 - 5632: 42,-1 - 5633: 41,-1 - 7329: 26,34 - 7330: 28,34 - 7331: 27,34 - 7332: 29,34 - 7333: 30,34 - 7334: 31,34 - 7335: 32,34 - 7336: 33,34 - 7337: 34,34 - 7338: 35,34 - 7389: 54,40 - 7390: 54,39 - 7391: 54,38 - 7392: 54,37 - 7393: 54,36 - 7394: 55,40 - 7395: 56,40 - 7396: 57,40 - 7397: 58,40 - 7398: 59,40 - 7399: 60,40 - 7400: 61,40 - 7401: 62,40 - 7402: 63,40 - 7403: 64,40 - 7404: 65,40 - 7423: 54,18 - 7424: 54,17 - 7425: 54,16 - 7426: 54,15 - 7427: 54,14 - 7428: 54,13 - 7429: 54,12 - 7430: 54,11 - 7431: 54,10 - 7468: 81,27 - 7469: 81,28 - 7470: 81,29 - 7471: 81,30 - 7472: 81,31 - 7473: 81,32 - 7474: 81,33 - 7475: 81,34 - 7476: 81,35 - 7477: 81,36 - 7478: 81,37 - 7496: 90,16 - 7497: 89,16 - 7498: 89,15 - 7499: 89,14 - 7500: 89,13 - 7501: 89,12 - 8585: 58,12 - 8586: 59,12 - 8587: 60,12 - 8588: 61,12 - 8589: 62,12 - 8590: 63,12 - 8591: 64,12 - 8592: 65,12 - 8593: 65,13 - 8594: 65,14 - 8595: 65,15 - 8596: 66,15 - 8597: 67,15 - 8598: 68,15 - 8599: 69,15 - 8600: 70,15 - 8601: 71,15 - 8602: 72,15 - 8603: 73,15 + 4394: 15,68 + 4395: 14,68 + 4396: 13,68 + 4397: 12,68 + 4810: -6,50 + 4811: -6,51 + 4812: -6,52 + 4813: -6,53 + 4814: -6,54 + 4815: -6,55 + 4816: -6,56 + 4817: -6,57 + 4818: -6,58 + 4819: -6,59 + 4820: -6,60 + 4821: -6,61 + 4822: -6,62 + 4823: -6,63 + 4824: -6,64 + 4825: -6,65 + 4826: -6,66 + 5613: 54,0 + 5614: 54,-1 + 5615: 53,-1 + 5616: 52,-1 + 5617: 51,-1 + 5618: 50,-1 + 5619: 49,-1 + 5620: 48,-1 + 5621: 47,-1 + 5622: 46,-1 + 5623: 45,-1 + 5624: 44,-1 + 5625: 43,-1 + 5626: 42,-1 + 5627: 41,-1 + 7323: 26,34 + 7324: 28,34 + 7325: 27,34 + 7326: 29,34 + 7327: 30,34 + 7328: 31,34 + 7329: 32,34 + 7330: 33,34 + 7331: 34,34 + 7332: 35,34 + 7383: 54,40 + 7384: 54,39 + 7385: 54,38 + 7386: 54,37 + 7387: 54,36 + 7388: 55,40 + 7389: 56,40 + 7390: 57,40 + 7391: 58,40 + 7392: 59,40 + 7393: 60,40 + 7394: 61,40 + 7395: 62,40 + 7396: 63,40 + 7397: 64,40 + 7398: 65,40 + 7417: 54,18 + 7418: 54,17 + 7419: 54,16 + 7420: 54,15 + 7421: 54,14 + 7422: 54,13 + 7423: 54,12 + 7424: 54,11 + 7425: 54,10 + 7462: 81,27 + 7463: 81,28 + 7464: 81,29 + 7465: 81,30 + 7466: 81,31 + 7467: 81,32 + 7468: 81,33 + 7469: 81,34 + 7470: 81,35 + 7471: 81,36 + 7472: 81,37 + 7490: 90,16 + 7491: 89,16 + 7492: 89,15 + 7493: 89,14 + 7494: 89,13 + 7495: 89,12 + 8579: 58,12 + 8580: 59,12 + 8581: 60,12 + 8582: 61,12 + 8583: 62,12 + 8584: 63,12 + 8585: 64,12 + 8586: 65,12 + 8587: 65,13 + 8588: 65,14 + 8589: 65,15 + 8590: 66,15 + 8591: 67,15 + 8592: 68,15 + 8593: 69,15 + 8594: 70,15 + 8595: 71,15 + 8596: 72,15 + 8597: 73,15 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale @@ -8241,12 +8243,12 @@ entities: color: '#DE3A3A47' id: QuarterTileOverlayGreyscale decals: - 7417: 54,24 - 7418: 54,23 - 7419: 54,22 - 7420: 54,20 - 7421: 54,21 - 7422: 54,19 + 7411: 54,24 + 7412: 54,23 + 7413: 54,22 + 7414: 54,20 + 7415: 54,21 + 7416: 54,19 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale @@ -8259,101 +8261,101 @@ entities: 1010: -15,72 1011: -15,73 1015: -15,74 - 7790: 91,-20 - 7791: 92,-20 - 7792: 93,-20 - 7793: 94,-20 - 7794: 98,-20 - 7795: 99,-20 - 7796: 100,-20 - 7797: 101,-20 - 7798: 105,-20 - 7799: 106,-20 - 7800: 107,-20 - 7801: 108,-20 - 7802: 109,-20 - 7803: 111,-20 - 7804: 112,-20 - 7805: 113,-20 - 7806: 114,-20 - 7807: 115,-20 + 7784: 91,-20 + 7785: 92,-20 + 7786: 93,-20 + 7787: 94,-20 + 7788: 98,-20 + 7789: 99,-20 + 7790: 100,-20 + 7791: 101,-20 + 7792: 105,-20 + 7793: 106,-20 + 7794: 107,-20 + 7795: 108,-20 + 7796: 109,-20 + 7797: 111,-20 + 7798: 112,-20 + 7799: 113,-20 + 7800: 114,-20 + 7801: 115,-20 - node: color: '#EFC84196' id: QuarterTileOverlayGreyscale decals: - 5471: 83,-22 - 5472: 83,-20 - 5473: 83,-19 - 5474: 84,-19 - 5475: 85,-19 - 5476: 86,-19 - 5477: 87,-19 - 5493: 71,-15 - 5494: 71,-14 - 5495: 71,-13 - 5496: 72,-13 - 5497: 73,-13 - 5498: 74,-13 - 5499: 75,-13 - 5500: 75,-12 - 5501: 75,-11 - 5502: 75,-10 - 5503: 75,-9 - 5504: 76,-9 - 5505: 77,-9 - 5513: 78,-9 + 5465: 83,-22 + 5466: 83,-20 + 5467: 83,-19 + 5468: 84,-19 + 5469: 85,-19 + 5470: 86,-19 + 5471: 87,-19 + 5487: 71,-15 + 5488: 71,-14 + 5489: 71,-13 + 5490: 72,-13 + 5491: 73,-13 + 5492: 74,-13 + 5493: 75,-13 + 5494: 75,-12 + 5495: 75,-11 + 5496: 75,-10 + 5497: 75,-9 + 5498: 76,-9 + 5499: 77,-9 + 5507: 78,-9 - node: color: '#EFCF414A' id: QuarterTileOverlayGreyscale decals: - 5328: 93,-3 - 5329: 93,-4 - 5330: 93,-5 + 5322: 93,-3 + 5323: 93,-4 + 5324: 93,-5 - node: color: '#EFD24150' id: QuarterTileOverlayGreyscale decals: - 7172: 35,-7 - 7173: 35,-6 + 7166: 35,-7 + 7167: 35,-6 - node: color: '#EFD5415D' id: QuarterTileOverlayGreyscale decals: - 5448: 67,-24 - 5449: 67,-25 - 5450: 67,-26 - 5451: 67,-27 + 5442: 67,-24 + 5443: 67,-25 + 5444: 67,-26 + 5445: 67,-27 - node: color: '#EFD84144' id: QuarterTileOverlayGreyscale decals: - 7325: 22,34 - 7326: 23,34 - 7327: 24,34 - 7328: 25,34 + 7319: 22,34 + 7320: 23,34 + 7321: 24,34 + 7322: 25,34 - node: color: '#000000A4' id: QuarterTileOverlayGreyscale180 decals: - 4973: 69,-19 - 4974: 69,-20 - 4975: 69,-21 - 4976: 69,-22 - 4977: 68,-22 - 4978: 67,-22 - 4979: 66,-22 - 4980: 65,-22 - 4981: 64,-22 - 4982: 63,-22 + 4967: 69,-19 + 4968: 69,-20 + 4969: 69,-21 + 4970: 69,-22 + 4971: 68,-22 + 4972: 67,-22 + 4973: 66,-22 + 4974: 65,-22 + 4975: 64,-22 + 4976: 63,-22 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale180 decals: - 5591: 44,-3 - 5592: 45,-3 - 5593: 46,-3 - 5594: 49,-3 - 8060: 98,-51 + 5585: 44,-3 + 5586: 45,-3 + 5587: 46,-3 + 5588: 49,-3 + 8054: 98,-51 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 @@ -8369,19 +8371,19 @@ entities: 3101: -28,-7 3102: -27,-7 3103: -26,-7 - 4391: 14,68 - 4392: 13,68 - 4393: 12,68 - 7614: 66,-55 - 7615: 66,-54 - 7616: 66,-53 - 7617: 66,-52 - 7618: 66,-51 - 8693: -35,-9 - 8694: -36,-9 - 8695: -37,-7 - 8696: -38,-7 - 8697: -39,-7 + 4385: 14,68 + 4386: 13,68 + 4387: 12,68 + 7608: 66,-55 + 7609: 66,-54 + 7610: 66,-53 + 7611: 66,-52 + 7612: 66,-51 + 8687: -35,-9 + 8688: -36,-9 + 8689: -37,-7 + 8690: -38,-7 + 8691: -39,-7 - node: color: '#79150096' id: QuarterTileOverlayGreyscale180 @@ -8428,17 +8430,17 @@ entities: 3476: 27,-18 3497: 25,-21 3498: 25,-20 - 4637: 30,-58 - 4638: 29,-58 - 4639: 28,-58 - 4640: 27,-58 - 4641: 26,-58 - 4642: 25,-58 - 4643: 24,-58 - 4709: 41,-40 - 4710: 42,-40 - 4711: 43,-40 - 4712: 44,-40 + 4631: 30,-58 + 4632: 29,-58 + 4633: 28,-58 + 4634: 27,-58 + 4635: 26,-58 + 4636: 25,-58 + 4637: 24,-58 + 4703: 41,-40 + 4704: 42,-40 + 4705: 43,-40 + 4706: 44,-40 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale180 @@ -8505,93 +8507,93 @@ entities: 3496: 25,-22 3499: 25,-19 3500: 25,-18 - 4394: 14,65 - 4395: 13,65 - 4396: 12,65 - 4397: 15,66 - 4398: 15,67 - 4399: 15,68 - 4851: -17,-7 - 4852: -18,-7 - 4853: -19,-7 - 4854: -20,-7 - 4855: -18,-12 - 4856: -18,-11 - 4857: -18,-10 - 5130: 20,32 - 5131: 19,32 - 5132: 18,32 - 5133: 17,32 - 5134: 16,32 - 5135: 15,32 - 5565: 26,-3 - 5566: 27,-3 - 5567: 28,-3 - 5568: 29,-3 - 5569: 30,-3 - 5570: 25,-3 - 5572: 25,-7 - 5573: 31,-3 - 5574: 32,-3 - 5575: 33,-3 - 5576: 34,-3 - 5577: 35,-3 - 5578: 36,-3 - 5579: 37,-3 - 5580: 38,-3 - 5581: 39,-3 - 5638: 61,-12 - 5639: 60,-12 - 5640: 59,-12 - 5641: 58,-12 - 5642: 56,-12 - 5643: 55,-12 - 5644: 54,-12 - 5645: 53,-12 - 5646: 52,-12 - 5647: 51,-12 - 5648: 50,-12 - 5649: 49,-12 - 5650: 44,-12 - 5651: 43,-12 - 5652: 45,-12 - 5653: 46,-12 - 5654: 48,-12 - 5655: 47,-12 - 7366: 37,32 - 7367: 38,32 - 7368: 40,32 - 7369: 39,32 - 7370: 41,32 - 7371: 42,32 - 7372: 43,32 - 7373: 44,32 - 7374: 45,32 - 7375: 46,32 - 7376: 47,32 - 7377: 48,32 - 7378: 49,32 - 7379: 50,32 - 7380: 51,32 - 7381: 52,32 - 7444: 56,36 - 7445: 56,37 - 7446: 56,38 - 7447: 57,38 - 7448: 58,38 - 7449: 59,38 - 7450: 60,38 - 7451: 61,38 - 7452: 62,38 - 7453: 63,38 - 7454: 64,38 - 7455: 65,38 - 7456: 66,38 - 7457: 67,38 - 7458: 68,38 - 7459: 69,38 - 7464: 78,38 - 7465: 79,38 + 4388: 14,65 + 4389: 13,65 + 4390: 12,65 + 4391: 15,66 + 4392: 15,67 + 4393: 15,68 + 4845: -17,-7 + 4846: -18,-7 + 4847: -19,-7 + 4848: -20,-7 + 4849: -18,-12 + 4850: -18,-11 + 4851: -18,-10 + 5124: 20,32 + 5125: 19,32 + 5126: 18,32 + 5127: 17,32 + 5128: 16,32 + 5129: 15,32 + 5559: 26,-3 + 5560: 27,-3 + 5561: 28,-3 + 5562: 29,-3 + 5563: 30,-3 + 5564: 25,-3 + 5566: 25,-7 + 5567: 31,-3 + 5568: 32,-3 + 5569: 33,-3 + 5570: 34,-3 + 5571: 35,-3 + 5572: 36,-3 + 5573: 37,-3 + 5574: 38,-3 + 5575: 39,-3 + 5632: 61,-12 + 5633: 60,-12 + 5634: 59,-12 + 5635: 58,-12 + 5636: 56,-12 + 5637: 55,-12 + 5638: 54,-12 + 5639: 53,-12 + 5640: 52,-12 + 5641: 51,-12 + 5642: 50,-12 + 5643: 49,-12 + 5644: 44,-12 + 5645: 43,-12 + 5646: 45,-12 + 5647: 46,-12 + 5648: 48,-12 + 5649: 47,-12 + 7360: 37,32 + 7361: 38,32 + 7362: 40,32 + 7363: 39,32 + 7364: 41,32 + 7365: 42,32 + 7366: 43,32 + 7367: 44,32 + 7368: 45,32 + 7369: 46,32 + 7370: 47,32 + 7371: 48,32 + 7372: 49,32 + 7373: 50,32 + 7374: 51,32 + 7375: 52,32 + 7438: 56,36 + 7439: 56,37 + 7440: 56,38 + 7441: 57,38 + 7442: 58,38 + 7443: 59,38 + 7444: 60,38 + 7445: 61,38 + 7446: 62,38 + 7447: 63,38 + 7448: 64,38 + 7449: 65,38 + 7450: 66,38 + 7451: 67,38 + 7452: 68,38 + 7453: 69,38 + 7458: 78,38 + 7459: 79,38 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale180 @@ -8617,7 +8619,7 @@ entities: color: '#DE3A3A6F' id: QuarterTileOverlayGreyscale180 decals: - 7339: 22,32 + 7333: 22,32 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale180 @@ -8631,18 +8633,18 @@ entities: color: '#EFB34147' id: QuarterTileOverlayGreyscale180 decals: - 7991: 97,4 - 7992: 98,4 - 7993: 101,4 - 7994: 102,4 - 7995: 103,4 - 7996: 104,4 - 7997: 105,4 - 7998: 106,4 - 7999: 108,4 - 8000: 109,4 - 8001: 110,4 - 8002: 111,4 + 7985: 97,4 + 7986: 98,4 + 7987: 101,4 + 7988: 102,4 + 7989: 103,4 + 7990: 104,4 + 7991: 105,4 + 7992: 106,4 + 7993: 108,4 + 7994: 109,4 + 7995: 110,4 + 7996: 111,4 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale180 @@ -8671,35 +8673,35 @@ entities: 3057: -39,-31 3058: -39,-30 3059: -39,-29 - 7810: 98,-24 - 7811: 98,-23 + 7804: 98,-24 + 7805: 98,-23 - node: color: '#EFC84196' id: QuarterTileOverlayGreyscale180 decals: - 5506: 79,-16 - 5507: 79,-15 + 5500: 79,-16 + 5501: 79,-15 - node: color: '#EFCF414A' id: QuarterTileOverlayGreyscale180 decals: - 5313: 95,-9 - 5314: 96,-9 - 5315: 97,-9 - 5316: 98,-9 - 5317: 98,-8 - 5318: 98,-7 + 5307: 95,-9 + 5308: 96,-9 + 5309: 97,-9 + 5310: 98,-9 + 5311: 98,-8 + 5312: 98,-7 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale270 decals: - 5588: 51,-3 - 5589: 52,-3 - 5590: 53,-3 - 5595: 48,-3 - 8057: 96,-49 - 8058: 96,-48 - 8059: 96,-51 + 5582: 51,-3 + 5583: 52,-3 + 5584: 53,-3 + 5589: 48,-3 + 8051: 96,-49 + 8052: 96,-48 + 8053: 96,-51 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 @@ -8737,12 +8739,12 @@ entities: color: '#D381C996' id: QuarterTileOverlayGreyscale270 decals: - 4557: 27,-51 - 4558: 28,-51 - 4559: 29,-51 - 4560: 30,-51 - 4561: 31,-51 - 4562: 32,-51 + 4551: 27,-51 + 4552: 28,-51 + 4553: 29,-51 + 4554: 30,-51 + 4555: 31,-51 + 4556: 32,-51 - node: color: '#D4D4D412' id: QuarterTileOverlayGreyscale270 @@ -8825,45 +8827,45 @@ entities: 3270: -4,-7 3271: -3,-7 3272: -2,-7 - 4767: 23,-23 - 4768: 23,-24 - 4858: -20,-12 - 4859: -20,-11 - 4860: -20,-10 - 4861: -20,-9 - 5120: 2,32 - 5121: 3,32 - 5122: 4,32 - 5123: 5,32 - 5124: 6,32 - 5125: 7,32 - 5126: 8,32 - 5127: 9,32 - 5128: 10,32 - 5129: 11,32 - 5598: 41,-3 - 5599: 41,-4 - 5600: 41,-5 - 5601: 41,-6 - 5602: 41,-7 - 5603: 41,-8 - 5604: 41,-9 - 5605: 41,-11 - 5606: 41,-10 - 5607: 41,-12 - 7382: 54,26 - 7383: 54,27 - 7384: 54,28 - 7385: 54,29 - 7386: 54,30 - 7387: 54,31 - 7388: 54,32 - 7460: 71,38 - 7461: 72,38 - 7462: 73,38 - 7463: 74,38 - 7466: 76,38 - 7467: 75,38 + 4761: 23,-23 + 4762: 23,-24 + 4852: -20,-12 + 4853: -20,-11 + 4854: -20,-10 + 4855: -20,-9 + 5114: 2,32 + 5115: 3,32 + 5116: 4,32 + 5117: 5,32 + 5118: 6,32 + 5119: 7,32 + 5120: 8,32 + 5121: 9,32 + 5122: 10,32 + 5123: 11,32 + 5592: 41,-3 + 5593: 41,-4 + 5594: 41,-5 + 5595: 41,-6 + 5596: 41,-7 + 5597: 41,-8 + 5598: 41,-9 + 5599: 41,-11 + 5600: 41,-10 + 5601: 41,-12 + 7376: 54,26 + 7377: 54,27 + 7378: 54,28 + 7379: 54,29 + 7380: 54,30 + 7381: 54,31 + 7382: 54,32 + 7454: 71,38 + 7455: 72,38 + 7456: 73,38 + 7457: 74,38 + 7460: 76,38 + 7461: 75,38 - node: color: '#D4D4D42B' id: QuarterTileOverlayGreyscale270 @@ -8908,31 +8910,31 @@ entities: 3157: -32,-7 3158: -33,-9 3159: -34,-9 - 8682: -36,-24 - 8683: -36,-23 - 8684: -35,-9 - 8685: -36,-9 - 8686: -36,-8 - 8687: -36,-7 - 8688: -37,-7 - 8689: -38,-7 - 8690: -39,-7 - 8691: -39,-6 - 8692: -39,-5 + 8676: -36,-24 + 8677: -36,-23 + 8678: -35,-9 + 8679: -36,-9 + 8680: -36,-8 + 8681: -36,-7 + 8682: -37,-7 + 8683: -38,-7 + 8684: -39,-7 + 8685: -39,-6 + 8686: -39,-5 - node: color: '#DE3A3A6F' id: QuarterTileOverlayGreyscale270 decals: - 7340: 26,32 - 7341: 27,32 - 7342: 28,32 - 7343: 29,32 - 7344: 30,32 - 7345: 31,32 - 7346: 32,32 - 7347: 33,32 - 7348: 34,32 - 7349: 35,32 + 7334: 26,32 + 7335: 27,32 + 7336: 28,32 + 7337: 29,32 + 7338: 30,32 + 7339: 31,32 + 7340: 32,32 + 7341: 33,32 + 7342: 34,32 + 7343: 35,32 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 @@ -8951,114 +8953,114 @@ entities: color: '#EFB34196' id: QuarterTileOverlayGreyscale270 decals: - 7808: 96,-24 - 7809: 96,-23 + 7802: 96,-24 + 7803: 96,-23 - node: color: '#EFC54131' id: QuarterTileOverlayGreyscale270 decals: - 4887: 95,-13 - 4888: 94,-13 - 4889: 93,-13 - 4890: 92,-13 - 4891: 91,-13 - 4892: 90,-13 - 4893: 89,-13 - 4894: 88,-13 - 4895: 88,-12 - 4896: 88,-11 - 4898: 89,-10 - 4899: 89,-9 - 4900: 89,-8 - 4901: 89,-7 - 4902: 89,-6 - 4903: 89,-5 - 4904: 89,-4 - 4905: 89,-3 - 4906: 89,-2 - 4907: 89,-1 - 4908: 89,0 - 4909: 89,1 - 4910: 89,2 - 4911: 89,3 + 4881: 95,-13 + 4882: 94,-13 + 4883: 93,-13 + 4884: 92,-13 + 4885: 91,-13 + 4886: 90,-13 + 4887: 89,-13 + 4888: 88,-13 + 4889: 88,-12 + 4890: 88,-11 + 4892: 89,-10 + 4893: 89,-9 + 4894: 89,-8 + 4895: 89,-7 + 4896: 89,-6 + 4897: 89,-5 + 4898: 89,-4 + 4899: 89,-3 + 4900: 89,-2 + 4901: 89,-1 + 4902: 89,0 + 4903: 89,1 + 4904: 89,2 + 4905: 89,3 - node: color: '#EFC54173' id: QuarterTileOverlayGreyscale270 decals: - 4945: 63,-22 - 4946: 63,-21 - 4947: 63,-20 - 4948: 63,-19 - 4949: 64,-22 - 4950: 65,-22 - 4951: 66,-22 - 4952: 67,-22 - 4953: 68,-22 - 4954: 69,-22 + 4939: 63,-22 + 4940: 63,-21 + 4941: 63,-20 + 4942: 63,-19 + 4943: 64,-22 + 4944: 65,-22 + 4945: 66,-22 + 4946: 67,-22 + 4947: 68,-22 + 4948: 69,-22 - node: color: '#EFCF414A' id: QuarterTileOverlayGreyscale270 decals: - 5325: 93,-9 - 5326: 93,-8 - 5327: 93,-7 + 5319: 93,-9 + 5320: 93,-8 + 5321: 93,-7 - node: color: '#EFD24150' id: QuarterTileOverlayGreyscale270 decals: - 7171: 37,-9 + 7165: 37,-9 - node: color: '#334E6D44' id: QuarterTileOverlayGreyscale90 decals: - 7502: 74,46 - 7503: 74,47 - 7504: 74,48 - 7505: 74,49 - 7506: 74,50 - 7507: 74,51 - 7508: 74,52 - 7509: 74,53 - 7510: 74,54 - 7511: 74,56 - 7527: 93,56 + 7496: 74,46 + 7497: 74,47 + 7498: 74,48 + 7499: 74,49 + 7500: 74,50 + 7501: 74,51 + 7502: 74,52 + 7503: 74,53 + 7504: 74,54 + 7505: 74,56 + 7521: 93,56 - node: color: '#334E6D76' id: QuarterTileOverlayGreyscale90 decals: - 7350: 52,34 - 7351: 51,34 - 7352: 50,34 - 7353: 49,34 - 7354: 48,34 - 7355: 47,34 - 7411: 74,40 - 7412: 75,40 - 7413: 76,40 - 7414: 77,40 - 7415: 78,40 - 7416: 79,40 + 7344: 52,34 + 7345: 51,34 + 7346: 50,34 + 7347: 49,34 + 7348: 48,34 + 7349: 47,34 + 7405: 74,40 + 7406: 75,40 + 7407: 76,40 + 7408: 77,40 + 7409: 78,40 + 7410: 79,40 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale90 decals: - 5585: 46,-10 - 5586: 45,-10 - 5587: 44,-10 - 5597: 49,-10 - 7138: 29,-5 - 7139: 30,-5 - 7140: 30,-6 + 5579: 46,-10 + 5580: 45,-10 + 5581: 44,-10 + 5591: 49,-10 + 7132: 29,-5 + 7133: 30,-5 + 7134: 30,-6 - node: color: '#52B4E941' id: QuarterTileOverlayGreyscale90 decals: - 5114: 15,34 - 5115: 16,34 - 5116: 17,34 - 5117: 18,34 - 5118: 19,34 - 5119: 20,34 + 5108: 15,34 + 5109: 16,34 + 5110: 17,34 + 5111: 18,34 + 5112: 19,34 + 5113: 20,34 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 @@ -9110,23 +9112,23 @@ entities: color: '#A4610696' id: QuarterTileOverlayGreyscale90 decals: - 4522: 13,-18 - 4523: 13,-17 - 4524: 13,-16 - 4525: 13,-15 + 4516: 13,-18 + 4517: 13,-17 + 4518: 13,-16 + 4519: 13,-15 - node: color: '#D381C94D' id: QuarterTileOverlayGreyscale90 decals: - 7112: 48,-54 + 7106: 48,-54 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale90 decals: - 4705: 41,-38 - 4706: 42,-38 - 4707: 43,-38 - 4708: 44,-38 + 4699: 41,-38 + 4700: 42,-38 + 4701: 43,-38 + 4702: 44,-38 - node: color: '#D4D4D409' id: QuarterTileOverlayGreyscale90 @@ -9156,7 +9158,7 @@ entities: color: '#D4D4D415' id: QuarterTileOverlayGreyscale90 decals: - 5274: 81,-14 + 5268: 81,-14 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale90 @@ -9294,83 +9296,83 @@ entities: 3491: 25,-11 3492: 25,-10 3493: 25,-9 - 4833: -4,66 - 4834: -4,65 - 4835: -4,64 - 4836: -4,63 - 4837: -4,62 - 4838: -4,61 - 4839: -4,60 - 4840: -4,59 - 4841: -4,58 - 4842: -4,57 - 4843: -4,56 - 4844: -4,55 - 4845: -4,54 - 4846: -4,53 - 4847: -4,52 - 4848: -4,51 - 4849: -4,50 - 5540: 72,-16 - 5541: 73,-16 - 5542: 74,-16 - 5543: 75,-16 - 5544: 76,-16 - 5545: 77,-16 - 5546: 78,-16 - 5547: 71,-16 - 5571: 25,-5 - 5608: 56,-9 - 5609: 56,-10 - 5610: 56,-8 - 5611: 56,-7 - 5612: 56,-6 - 5613: 56,-5 - 5614: 56,-4 - 5615: 56,-3 - 5616: 56,-2 - 5617: 56,-1 - 5618: 56,0 - 5656: 5,-5 - 7356: 46,34 - 7357: 45,34 - 7358: 44,34 - 7359: 43,34 - 7360: 42,34 - 7361: 41,34 - 7362: 39,34 - 7363: 40,34 - 7364: 38,34 - 7365: 37,34 - 7432: 56,13 - 7433: 56,14 - 7434: 56,15 - 7435: 56,16 - 7436: 56,17 - 7437: 56,18 - 7438: 56,19 - 7439: 56,20 - 7440: 56,21 - 7441: 56,22 - 7442: 56,23 - 7443: 56,24 - 7479: 83,37 - 7480: 83,36 - 7481: 83,35 - 7482: 83,34 - 7483: 83,33 - 7484: 83,32 - 7485: 83,31 - 7486: 83,30 - 7487: 83,29 - 7488: 83,28 - 7489: 83,27 - 7490: 93,16 - 7491: 94,16 - 7492: 94,15 - 7493: 94,14 - 7494: 94,13 - 7495: 94,12 + 4827: -4,66 + 4828: -4,65 + 4829: -4,64 + 4830: -4,63 + 4831: -4,62 + 4832: -4,61 + 4833: -4,60 + 4834: -4,59 + 4835: -4,58 + 4836: -4,57 + 4837: -4,56 + 4838: -4,55 + 4839: -4,54 + 4840: -4,53 + 4841: -4,52 + 4842: -4,51 + 4843: -4,50 + 5534: 72,-16 + 5535: 73,-16 + 5536: 74,-16 + 5537: 75,-16 + 5538: 76,-16 + 5539: 77,-16 + 5540: 78,-16 + 5541: 71,-16 + 5565: 25,-5 + 5602: 56,-9 + 5603: 56,-10 + 5604: 56,-8 + 5605: 56,-7 + 5606: 56,-6 + 5607: 56,-5 + 5608: 56,-4 + 5609: 56,-3 + 5610: 56,-2 + 5611: 56,-1 + 5612: 56,0 + 5650: 5,-5 + 7350: 46,34 + 7351: 45,34 + 7352: 44,34 + 7353: 43,34 + 7354: 42,34 + 7355: 41,34 + 7356: 39,34 + 7357: 40,34 + 7358: 38,34 + 7359: 37,34 + 7426: 56,13 + 7427: 56,14 + 7428: 56,15 + 7429: 56,16 + 7430: 56,17 + 7431: 56,18 + 7432: 56,19 + 7433: 56,20 + 7434: 56,21 + 7435: 56,22 + 7436: 56,23 + 7437: 56,24 + 7473: 83,37 + 7474: 83,36 + 7475: 83,35 + 7476: 83,34 + 7477: 83,33 + 7478: 83,32 + 7479: 83,31 + 7480: 83,30 + 7481: 83,29 + 7482: 83,28 + 7483: 83,27 + 7484: 93,16 + 7485: 94,16 + 7486: 94,15 + 7487: 94,14 + 7488: 94,13 + 7489: 94,12 - node: color: '#D4D4D42B' id: QuarterTileOverlayGreyscale90 @@ -9399,51 +9401,51 @@ entities: 3123: -36,-23 3160: -33,-9 3161: -33,-8 - 8677: -40,-25 - 8678: -39,-25 - 8679: -38,-25 - 8680: -37,-25 - 8681: -35,-23 + 8671: -40,-25 + 8672: -39,-25 + 8673: -38,-25 + 8674: -37,-25 + 8675: -35,-23 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale90 decals: 1992: 16,11 - 5551: 26,-1 - 5552: 27,-1 - 5553: 28,-1 - 5554: 29,-1 - 5555: 30,-1 - 5556: 31,-1 - 5557: 32,-1 - 5558: 33,-1 - 5559: 34,-1 - 5560: 35,-1 - 5561: 36,-1 - 5562: 37,-1 - 5563: 38,-1 - 5564: 39,-1 + 5545: 26,-1 + 5546: 27,-1 + 5547: 28,-1 + 5548: 29,-1 + 5549: 30,-1 + 5550: 31,-1 + 5551: 32,-1 + 5552: 33,-1 + 5553: 34,-1 + 5554: 35,-1 + 5555: 36,-1 + 5556: 37,-1 + 5557: 38,-1 + 5558: 39,-1 - node: color: '#EFB34147' id: QuarterTileOverlayGreyscale90 decals: - 7973: 110,6 - 7974: 108,6 - 7975: 109,6 - 7976: 107,6 - 7977: 106,6 - 7978: 105,6 - 7979: 104,6 - 7980: 103,6 - 7981: 101,6 - 7982: 100,6 - 7983: 99,6 - 7984: 98,6 - 7985: 97,6 - 7986: 95,6 - 7987: 94,6 - 7988: 93,6 - 7990: 96,6 + 7967: 110,6 + 7968: 108,6 + 7969: 109,6 + 7970: 107,6 + 7971: 106,6 + 7972: 105,6 + 7973: 104,6 + 7974: 103,6 + 7975: 101,6 + 7976: 100,6 + 7977: 99,6 + 7978: 98,6 + 7979: 97,6 + 7980: 95,6 + 7981: 94,6 + 7982: 93,6 + 7984: 96,6 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale90 @@ -9472,84 +9474,84 @@ entities: color: '#EFC54131' id: QuarterTileOverlayGreyscale90 decals: - 4897: 88,-11 - 4912: 89,3 - 4913: 90,3 - 4914: 91,3 - 4915: 92,3 - 4916: 93,3 - 4917: 95,3 - 4918: 94,3 - 4919: 95,2 - 4920: 95,1 - 4921: 95,0 - 4922: 95,-1 - 4923: 95,-13 - 4924: 95,-12 - 4925: 95,-11 + 4891: 88,-11 + 4906: 89,3 + 4907: 90,3 + 4908: 91,3 + 4909: 92,3 + 4910: 93,3 + 4911: 95,3 + 4912: 94,3 + 4913: 95,2 + 4914: 95,1 + 4915: 95,0 + 4916: 95,-1 + 4917: 95,-13 + 4918: 95,-12 + 4919: 95,-11 - node: color: '#EFC54173' id: QuarterTileOverlayGreyscale90 decals: - 4955: 69,-22 - 4956: 69,-21 - 4957: 69,-20 - 4958: 69,-19 - 4959: 68,-19 - 4960: 67,-19 - 4961: 65,-19 - 4962: 64,-19 - 4963: 63,-19 + 4949: 69,-22 + 4950: 69,-21 + 4951: 69,-20 + 4952: 69,-19 + 4953: 68,-19 + 4954: 67,-19 + 4955: 65,-19 + 4956: 64,-19 + 4957: 63,-19 - node: color: '#EFC84196' id: QuarterTileOverlayGreyscale90 decals: - 5478: 89,-19 - 5479: 89,-20 - 5480: 89,-22 - 5508: 79,-13 - 5509: 79,-12 - 5510: 79,-11 - 5511: 79,-10 - 5512: 79,-9 + 5472: 89,-19 + 5473: 89,-20 + 5474: 89,-22 + 5502: 79,-13 + 5503: 79,-12 + 5504: 79,-11 + 5505: 79,-10 + 5506: 79,-9 - node: color: '#EFCC4157' id: QuarterTileOverlayGreyscale90 decals: - 5634: 58,-10 - 5635: 59,-10 - 5636: 60,-10 - 5637: 61,-10 + 5628: 58,-10 + 5629: 59,-10 + 5630: 60,-10 + 5631: 61,-10 - node: color: '#EFCF414A' id: QuarterTileOverlayGreyscale90 decals: - 5319: 95,-3 - 5320: 96,-3 - 5321: 97,-3 - 5322: 98,-3 - 5323: 98,-4 - 5324: 98,-5 + 5313: 95,-3 + 5314: 96,-3 + 5315: 97,-3 + 5316: 98,-3 + 5317: 98,-4 + 5318: 98,-5 - node: color: '#EFD24150' id: QuarterTileOverlayGreyscale90 decals: - 7174: 38,-8 - 7175: 38,-7 - 7176: 38,-6 + 7168: 38,-8 + 7169: 38,-7 + 7170: 38,-6 - node: color: '#EFD5415D' id: QuarterTileOverlayGreyscale90 decals: - 5452: 69,-24 - 5453: 70,-24 - 5454: 70,-25 - 5455: 70,-27 + 5446: 69,-24 + 5447: 70,-24 + 5448: 70,-25 + 5449: 70,-27 - node: color: '#EFD84147' id: QuarterTileOverlayGreyscale90 decals: - 5847: 98,-16 + 5841: 98,-16 - node: color: '#FFFFFFFF' id: Remains @@ -9584,14 +9586,14 @@ entities: 2839: -22,-65 2840: -28,-64 2841: -20,-74 - 4547: 21.046192,-46.154995 - 4548: 21.05676,-58.794876 - 6302: 107.57862,38.070312 - 6303: 105.219246,39.335938 - 7313: 49.031895,55.718052 - 7314: 45.156895,49.624302 - 7602: 81.67046,-59.001415 - 7603: 73.65289,-53.955524 + 4541: 21.046192,-46.154995 + 4542: 21.05676,-58.794876 + 6296: 107.57862,38.070312 + 6297: 105.219246,39.335938 + 7307: 49.031895,55.718052 + 7308: 45.156895,49.624302 + 7596: 81.67046,-59.001415 + 7597: 73.65289,-53.955524 - node: color: '#FFFFFFFF' id: Rock07 @@ -9645,33 +9647,33 @@ entities: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale decals: - 5755: 49,-7 + 5749: 49,-7 - node: color: '#52B4E944' id: ThreeQuarterTileOverlayGreyscale decals: - 6633: 67,51 + 6627: 67,51 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale decals: 2690: 15,-11 - 7610: 65,-54 + 7604: 65,-54 - node: color: '#646464A1' id: ThreeQuarterTileOverlayGreyscale decals: - 4774: 32,-26 + 4768: 32,-26 - node: color: '#79150096' id: ThreeQuarterTileOverlayGreyscale decals: - 6640: 67,54 + 6634: 67,54 - node: color: '#D381C94D' id: ThreeQuarterTileOverlayGreyscale decals: - 7093: 43,-54 + 7087: 43,-54 - node: color: '#D4D4D409' id: ThreeQuarterTileOverlayGreyscale @@ -9681,8 +9683,8 @@ entities: color: '#D4D4D40F' id: ThreeQuarterTileOverlayGreyscale decals: - 5983: 90,36 - 5984: 95,36 + 5977: 90,36 + 5978: 95,36 - node: color: '#D4D4D428' id: ThreeQuarterTileOverlayGreyscale @@ -9707,34 +9709,34 @@ entities: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale decals: - 7736: 122,-2 + 7730: 122,-2 - node: color: '#EFD5411F' id: ThreeQuarterTileOverlayGreyscale decals: - 6617: 67,48 + 6611: 67,48 - node: color: '#EFD84147' id: ThreeQuarterTileOverlayGreyscale decals: - 5833: 97,-14 + 5827: 97,-14 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale180 decals: - 5756: 48,-6 + 5750: 48,-6 - node: color: '#52B4E944' id: ThreeQuarterTileOverlayGreyscale180 decals: - 6634: 71,50 + 6628: 71,50 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 decals: 2691: 21,-14 3891: 11,38 - 7611: 64,-52 + 7605: 64,-52 - node: color: '#79150096' id: ThreeQuarterTileOverlayGreyscale180 @@ -9745,12 +9747,12 @@ entities: 1007: -18,71 1008: -18,72 1009: -18,73 - 6638: 71,53 + 6632: 71,53 - node: color: '#9FED5860' id: ThreeQuarterTileOverlayGreyscale180 decals: - 7272: 114,18 + 7266: 114,18 - node: color: '#D4D4D409' id: ThreeQuarterTileOverlayGreyscale180 @@ -9769,8 +9771,8 @@ entities: color: '#D4D4D40F' id: ThreeQuarterTileOverlayGreyscale180 decals: - 5981: 99,35 - 5982: 93,35 + 5975: 99,35 + 5976: 93,35 - node: color: '#DE3A3A44' id: ThreeQuarterTileOverlayGreyscale180 @@ -9794,33 +9796,33 @@ entities: color: '#EFD5411F' id: ThreeQuarterTileOverlayGreyscale180 decals: - 6618: 71,47 + 6612: 71,47 - node: color: '#EFD84147' id: ThreeQuarterTileOverlayGreyscale180 decals: - 5837: 101,-18 + 5831: 101,-18 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale270 decals: - 5757: 49,-6 + 5751: 49,-6 - node: color: '#52B4E944' id: ThreeQuarterTileOverlayGreyscale270 decals: - 6635: 67,50 + 6629: 67,50 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 decals: 2692: 15,-14 - 7612: 65,-52 + 7606: 65,-52 - node: color: '#646464A1' id: ThreeQuarterTileOverlayGreyscale270 decals: - 4773: 32,-27 + 4767: 32,-27 - node: color: '#79150096' id: ThreeQuarterTileOverlayGreyscale270 @@ -9831,12 +9833,12 @@ entities: 1001: -16,71 1002: -16,72 1003: -16,73 - 6639: 67,53 + 6633: 67,53 - node: color: '#D381C94D' id: ThreeQuarterTileOverlayGreyscale270 decals: - 7096: 43,-55 + 7090: 43,-55 - node: color: '#D4D4D409' id: ThreeQuarterTileOverlayGreyscale270 @@ -9855,8 +9857,8 @@ entities: color: '#D4D4D40F' id: ThreeQuarterTileOverlayGreyscale270 decals: - 5979: 95,35 - 5980: 90,35 + 5973: 95,35 + 5974: 90,35 - node: color: '#DE3A3A44' id: ThreeQuarterTileOverlayGreyscale270 @@ -9876,39 +9878,39 @@ entities: color: '#EFD5411F' id: ThreeQuarterTileOverlayGreyscale270 decals: - 6620: 67,47 + 6614: 67,47 - node: color: '#EFD84147' id: ThreeQuarterTileOverlayGreyscale270 decals: - 5835: 97,-18 + 5829: 97,-18 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale90 decals: - 5758: 48,-7 + 5752: 48,-7 - node: color: '#52B4E944' id: ThreeQuarterTileOverlayGreyscale90 decals: - 6636: 71,51 + 6630: 71,51 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale90 decals: 2693: 21,-11 - 7613: 64,-54 + 7607: 64,-54 - node: color: '#79150096' id: ThreeQuarterTileOverlayGreyscale90 decals: - 6637: 71,54 + 6631: 71,54 - node: color: '#D381C94D' id: ThreeQuarterTileOverlayGreyscale90 decals: - 7094: 48,-50 - 7095: 51,-54 + 7088: 48,-50 + 7089: 51,-54 - node: color: '#D4D4D409' id: ThreeQuarterTileOverlayGreyscale90 @@ -9918,8 +9920,8 @@ entities: color: '#D4D4D40F' id: ThreeQuarterTileOverlayGreyscale90 decals: - 5977: 93,36 - 5978: 99,36 + 5971: 93,36 + 5972: 99,36 - node: color: '#DE3A3A44' id: ThreeQuarterTileOverlayGreyscale90 @@ -9939,31 +9941,31 @@ entities: id: ThreeQuarterTileOverlayGreyscale90 decals: 1161: 6,29 - 7737: 126,-2 + 7731: 126,-2 - node: color: '#EFD5411F' id: ThreeQuarterTileOverlayGreyscale90 decals: - 6619: 71,48 + 6613: 71,48 - node: color: '#EFD84147' id: ThreeQuarterTileOverlayGreyscale90 decals: - 5834: 98,-14 - 5836: 101,-16 + 5828: 98,-14 + 5830: 101,-16 - node: color: '#DE3A3A96' id: Tunnel decals: - 8129: 32.99294,56.744785 + 8123: 32.99294,56.744785 - node: color: '#DE3A3A96' id: WarnBox decals: - 5975: 90,29 - 5976: 100,31 - 6519: 89,49 - 6520: 89,49 + 5969: 90,29 + 5970: 100,31 + 6513: 89,49 + 6514: 89,49 - node: color: '#FFFFFFFF' id: WarnBox @@ -9981,14 +9983,14 @@ entities: color: '#FFFFFFFF' id: WarnBoxGreyscale decals: - 6293: 112,39 + 6287: 112,39 - node: color: '#52B4E996' id: WarnCornerGreyscaleNE decals: 3886: 12,41 3887: 12,41 - 4357: 5,68 + 4351: 5,68 - node: color: '#D381C996' id: WarnCornerGreyscaleNE @@ -10031,8 +10033,8 @@ entities: color: '#52B4E996' id: WarnCornerGreyscaleSW decals: - 4324: 3,61 - 4348: 7,65 + 4318: 3,61 + 4342: 7,65 - node: color: '#A4610696' id: WarnCornerGreyscaleSW @@ -10053,7 +10055,7 @@ entities: color: '#EFC541FF' id: WarnCornerNE decals: - 5023: 69,-15 + 5017: 69,-15 - node: color: '#FFFFFFFF' id: WarnCornerNE @@ -10061,29 +10063,29 @@ entities: 1822: 43,25 1876: 47,7 3540: 55,-35 - 5221: 122,-23 - 6006: 121,-17 - 8022: 107,-36 + 5215: 122,-23 + 6000: 121,-17 + 8016: 107,-36 - node: color: '#EFC541FF' id: WarnCornerNW decals: - 5022: 67,-15 + 5016: 67,-15 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: 1821: 41,25 1875: 45,7 - 4734: 28,-34 - 5220: 118,-23 - 6005: 120,-17 - 8020: 105,-36 + 4728: 28,-34 + 5214: 118,-23 + 5999: 120,-17 + 8014: 105,-36 - node: color: '#EFC541FF' id: WarnCornerSE decals: - 5021: 69,-17 + 5015: 69,-17 - node: color: '#FFFFFFFF' id: WarnCornerSE @@ -10092,11 +10094,11 @@ entities: 1874: 47,5 3635: 61,-41 3852: 22,40 - 4789: 29,-21 - 5061: 66,-8 - 5222: 122,-27 - 6004: 121,-18 - 8021: 107,-38 + 4783: 29,-21 + 5055: 66,-8 + 5216: 122,-27 + 5998: 121,-18 + 8015: 107,-38 - node: cleanable: True color: '#FFFFFFFF' @@ -10107,7 +10109,7 @@ entities: color: '#EFC541FF' id: WarnCornerSW decals: - 5024: 67,-17 + 5018: 67,-17 - node: color: '#FFFFFFFF' id: WarnCornerSW @@ -10117,17 +10119,17 @@ entities: 3531: 48,-22 3604: 57,-41 4101: 27,50 - 4735: 28,-36 - 4788: 27,-21 - 5062: 68,-8 - 5215: 118,-27 - 6003: 120,-18 - 8019: 105,-38 + 4729: 28,-36 + 4782: 27,-21 + 5056: 68,-8 + 5209: 118,-27 + 5997: 120,-18 + 8013: 105,-38 - node: color: '#52B4E996' id: WarnCornerSmallGreyscaleNE decals: - 4358: 5,67 + 4352: 5,67 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleNE @@ -10142,7 +10144,7 @@ entities: color: '#52B4E996' id: WarnCornerSmallGreyscaleSW decals: - 4356: 7,66 + 4350: 7,66 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleSW @@ -10153,28 +10155,28 @@ entities: color: '#EFC541FF' id: WarnCornerSmallNE decals: - 5027: 68,-15 - 5028: 69,-16 + 5021: 68,-15 + 5022: 69,-16 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: 3232: -32,-25 - 4868: 91,-16 - 5197: 113,-24 - 5230: 118,-27 - 5312: 93,-8 - 5550: 77,-9 - 5776: 93,-11 - 5811: 86,-2 - 6458: 120,46 - 6472: 125,52 - 8708: -39,-25 + 4862: 91,-16 + 5191: 113,-24 + 5224: 118,-27 + 5306: 93,-8 + 5544: 77,-9 + 5770: 93,-11 + 5805: 86,-2 + 6452: 120,46 + 6466: 125,52 + 8702: -39,-25 - node: color: '#EFC541FF' id: WarnCornerSmallNW decals: - 5026: 68,-15 + 5020: 68,-15 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW @@ -10185,16 +10187,16 @@ entities: 3226: -41,-42 3231: -30,-25 3535: 54,-32 - 4627: 23,-52 - 4867: 95,-16 - 5219: 118,-25 - 5229: 122,-27 - 5311: 98,-8 - 5775: 95,-11 - 6457: 126,46 - 6471: 120,52 - 8545: 99,32 - 8707: -37,-25 + 4621: 23,-52 + 4861: 95,-16 + 5213: 118,-25 + 5223: 122,-27 + 5305: 98,-8 + 5769: 95,-11 + 6451: 126,46 + 6465: 120,52 + 8539: 99,32 + 8701: -37,-25 - node: cleanable: True color: '#FFFFFFFF' @@ -10205,8 +10207,8 @@ entities: color: '#EFC541FF' id: WarnCornerSmallSE decals: - 5029: 69,-16 - 5030: 68,-17 + 5023: 69,-16 + 5024: 68,-17 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE @@ -10216,14 +10218,14 @@ entities: 3259: -35,-27 3260: -30,-27 3261: -18,-27 - 4790: 28,-21 - 5217: 118,-23 - 5310: 93,-4 - 5774: 93,-1 - 5812: 86,3 - 6456: 120,52 - 6473: 125,46 - 8710: -39,-7 + 4784: 28,-21 + 5211: 118,-23 + 5304: 93,-4 + 5768: 93,-1 + 5806: 86,3 + 6450: 120,52 + 6467: 125,46 + 8704: -39,-7 - node: cleanable: True color: '#FFFFFFFF' @@ -10234,7 +10236,7 @@ entities: color: '#EFC541FF' id: WarnCornerSmallSW decals: - 5031: 68,-17 + 5025: 68,-17 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW @@ -10247,15 +10249,15 @@ entities: 3256: -16,-27 3257: -28,-27 3258: -33,-27 - 4626: 23,-49 - 4791: 28,-21 - 5216: 122,-23 - 5218: 118,-25 - 5309: 98,-4 - 5773: 95,-1 - 6455: 126,52 - 6474: 120,46 - 8709: -37,-7 + 4620: 23,-49 + 4785: 28,-21 + 5210: 122,-23 + 5212: 118,-25 + 5303: 98,-4 + 5767: 95,-1 + 6449: 126,52 + 6468: 120,46 + 8703: -37,-7 - node: cleanable: True color: '#FFFFFFFF' @@ -10266,12 +10268,12 @@ entities: color: '#EFB341FF' id: WarnEndE decals: - 4869: 110,-17 + 4863: 110,-17 - node: color: '#FFFFFFFF' id: WarnEndE decals: - 5673: 61,-8 + 5667: 61,-8 - node: color: '#FFFFFFFF' id: WarnEndGreyscaleN @@ -10294,12 +10296,12 @@ entities: color: '#EFB341FF' id: WarnEndW decals: - 4870: 106,-17 + 4864: 106,-17 - node: color: '#FFFFFFFF' id: WarnEndW decals: - 5672: 59,-8 + 5666: 59,-8 - node: color: '#FFFFFFFF' id: WarnFull @@ -10315,8 +10317,8 @@ entities: color: '#52B4E996' id: WarnFullGreyscale decals: - 8732: 16,54 - 8733: 16,58 + 8726: 16,54 + 8727: 16,58 - node: color: '#9FED5896' id: WarnFullGreyscale @@ -10346,9 +10348,9 @@ entities: 591: -37,41 3512: 43,-25 3513: 42,-20 - 5793: 20,18 - 5794: 19,18 - 5795: 18,18 + 5787: 20,18 + 5788: 19,18 + 5789: 18,18 - node: color: '#9FED5896' id: WarnLineE @@ -10431,123 +10433,123 @@ entities: 4113: 8,48 4114: 8,49 4203: 25,54 - 4254: 1,61 - 4255: 1,63 - 4256: -3,61 - 4257: -3,62 - 4258: -3,63 - 4272: -24,54 - 4273: -24,55 - 4274: -15,54 - 4275: -15,55 - 4276: -7,54 - 4277: -7,55 - 4334: 12,61 - 4335: 12,62 - 4336: 12,63 - 4373: 5,69 - 4683: 46,-48 - 4684: 46,-47 - 4685: 46,-46 - 4686: 33,-44 - 4687: 33,-43 - 4688: 33,-42 - 4713: 44,-40 - 4714: 44,-39 - 4715: 44,-38 - 4787: 29,-20 - 4795: 28,-22 - 4796: 28,-23 - 4797: 28,-24 - 4863: 91,-15 - 4933: 94,-2 - 4934: 94,-10 - 4939: 96,-13 - 4940: 96,-12 - 4941: 96,-11 - 5017: 68,-14 - 5018: 68,-18 - 5020: 70,-16 - 5038: 62,-12 - 5039: 62,-11 - 5040: 62,-10 - 5041: 57,-12 - 5042: 57,-11 - 5043: 57,-10 - 5076: 76,-18 - 5077: 76,-22 - 5078: 71,-26 - 5079: 68,-23 - 5080: 82,-21 - 5090: 88,-7 - 5091: 88,-5 - 5092: 84,-6 - 5093: 86,-3 - 5094: 84,0 - 5095: 83,-2 - 5096: 77,-2 - 5097: 75,0 - 5196: 113,-23 - 5209: 118,-26 - 5210: 118,-25 - 5211: 118,-24 - 5212: 122,-26 - 5213: 122,-25 - 5214: 122,-24 - 5302: 93,-7 - 5303: 93,-6 - 5304: 93,-5 - 5807: 86,-1 - 5808: 86,0 - 5809: 86,1 - 5810: 86,2 - 5971: 84,32 - 5972: 91,32 - 5973: 94,35 - 5974: 100,35 - 6018: 90,-32 - 6019: 90,-31 - 6020: 90,-30 - 6027: 57,28 - 6028: 57,32 - 6029: 53,32 - 6030: 53,33 - 6031: 53,34 - 6049: 36,32 - 6050: 36,33 - 6051: 36,34 - 6052: 21,32 - 6053: 21,33 - 6054: 21,34 - 6055: 57,10 - 6056: 57,12 - 6062: 75,13 - 6063: 75,14 - 6064: 75,15 - 6065: 88,13 - 6066: 88,14 - 6067: 88,15 - 6090: 80,38 - 6091: 80,39 - 6092: 80,40 - 6093: 84,38 - 6094: 84,39 - 6095: 84,40 - 6445: 120,47 - 6446: 120,48 - 6447: 120,49 - 6448: 120,50 - 6449: 120,51 - 6461: 125,53 - 6462: 125,45 - 6475: 111,42 - 6476: 111,43 - 6477: 111,44 - 6708: 75,55 - 8005: 111,4 - 8520: 19,38 - 8543: 92,30 - 8544: 92,31 + 4248: 1,61 + 4249: 1,63 + 4250: -3,61 + 4251: -3,62 + 4252: -3,63 + 4266: -24,54 + 4267: -24,55 + 4268: -15,54 + 4269: -15,55 + 4270: -7,54 + 4271: -7,55 + 4328: 12,61 + 4329: 12,62 + 4330: 12,63 + 4367: 5,69 + 4677: 46,-48 + 4678: 46,-47 + 4679: 46,-46 + 4680: 33,-44 + 4681: 33,-43 + 4682: 33,-42 + 4707: 44,-40 + 4708: 44,-39 + 4709: 44,-38 + 4781: 29,-20 + 4789: 28,-22 + 4790: 28,-23 + 4791: 28,-24 + 4857: 91,-15 + 4927: 94,-2 + 4928: 94,-10 + 4933: 96,-13 + 4934: 96,-12 + 4935: 96,-11 + 5011: 68,-14 + 5012: 68,-18 + 5014: 70,-16 + 5032: 62,-12 + 5033: 62,-11 + 5034: 62,-10 + 5035: 57,-12 + 5036: 57,-11 + 5037: 57,-10 + 5070: 76,-18 + 5071: 76,-22 + 5072: 71,-26 + 5073: 68,-23 + 5074: 82,-21 + 5084: 88,-7 + 5085: 88,-5 + 5086: 84,-6 + 5087: 86,-3 + 5088: 84,0 + 5089: 83,-2 + 5090: 77,-2 + 5091: 75,0 + 5190: 113,-23 + 5203: 118,-26 + 5204: 118,-25 + 5205: 118,-24 + 5206: 122,-26 + 5207: 122,-25 + 5208: 122,-24 + 5296: 93,-7 + 5297: 93,-6 + 5298: 93,-5 + 5801: 86,-1 + 5802: 86,0 + 5803: 86,1 + 5804: 86,2 + 5965: 84,32 + 5966: 91,32 + 5967: 94,35 + 5968: 100,35 + 6012: 90,-32 + 6013: 90,-31 + 6014: 90,-30 + 6021: 57,28 + 6022: 57,32 + 6023: 53,32 + 6024: 53,33 + 6025: 53,34 + 6043: 36,32 + 6044: 36,33 + 6045: 36,34 + 6046: 21,32 + 6047: 21,33 + 6048: 21,34 + 6049: 57,10 + 6050: 57,12 + 6056: 75,13 + 6057: 75,14 + 6058: 75,15 + 6059: 88,13 + 6060: 88,14 + 6061: 88,15 + 6084: 80,38 + 6085: 80,39 + 6086: 80,40 + 6087: 84,38 + 6088: 84,39 + 6089: 84,40 + 6439: 120,47 + 6440: 120,48 + 6441: 120,49 + 6442: 120,50 + 6443: 120,51 + 6455: 125,53 + 6456: 125,45 + 6469: 111,42 + 6470: 111,43 + 6471: 111,44 + 6702: 75,55 + 7999: 111,4 + 8514: 19,38 + 8537: 92,30 + 8538: 92,31 - node: cleanable: True color: '#FFFFFFFF' @@ -10557,9 +10559,9 @@ entities: 2502: 9,-36 2503: 9,-35 2504: 9,-34 - 7015: -32,1 - 7016: -32,2 - 7017: -32,3 + 7009: -32,1 + 7010: -32,2 + 7011: -32,3 - node: color: '#52B4E996' id: WarnLineGreyscaleE @@ -10568,9 +10570,9 @@ entities: 3987: 19,54 4130: 15,48 4131: 15,49 - 4245: 0,61 - 4246: 0,63 - 4328: 19,62 + 4239: 0,61 + 4240: 0,63 + 4322: 19,62 - node: color: '#D381C996' id: WarnLineGreyscaleE @@ -10578,8 +10580,8 @@ entities: 3439: 53,-24 3557: 49,-34 3678: 39,-39 - 4701: 45,-35 - 4814: 30,-23 + 4695: 45,-35 + 4808: 30,-23 - node: color: '#DE3A3A96' id: WarnLineGreyscaleE @@ -10598,10 +10600,10 @@ entities: 2045: 23,3 2046: 23,29 2047: 23,30 - 5698: 69,-10 - 5792: 21,18 - 6278: 56,28 - 6279: 56,32 + 5692: 69,-10 + 5786: 21,18 + 6272: 56,28 + 6273: 56,32 - node: color: '#EFE841D6' id: WarnLineGreyscaleE @@ -10618,8 +10620,8 @@ entities: 4002: 4,38 4003: 4,39 4011: 4,41 - 5848: 101,-17 - 7789: 104,-17 + 5842: 101,-17 + 7783: 104,-17 - node: color: '#334E6DC8' id: WarnLineGreyscaleN @@ -10638,16 +10640,16 @@ entities: 3990: 23,45 3991: 22,45 4054: 24,45 - 4329: 14,63 - 4330: 7,63 + 4323: 14,63 + 4324: 7,63 - node: color: '#9FED5896' id: WarnLineGreyscaleN decals: - 4511: 35,46 - 4512: 33,46 - 8533: 92,32 - 8534: 93,32 + 4505: 35,46 + 4506: 33,46 + 8527: 92,32 + 8528: 93,32 - node: color: '#A4610696' id: WarnLineGreyscaleN @@ -10656,8 +10658,8 @@ entities: 2542: 19,-30 2543: 18,-30 2549: 20,-25 - 8527: 93,29 - 8528: 94,29 + 8521: 93,29 + 8522: 94,29 - node: color: '#D381C996' id: WarnLineGreyscaleN @@ -10669,14 +10671,14 @@ entities: 3435: 45,-26 3437: 38,-26 3438: 52,-23 - 8529: 95,29 - 8530: 96,29 + 8523: 95,29 + 8524: 96,29 - node: color: '#D4D4D496' id: WarnLineGreyscaleN decals: - 8535: 94,32 - 8536: 95,32 + 8529: 94,32 + 8530: 95,32 - node: color: '#DE3A3A96' id: WarnLineGreyscaleN @@ -10700,8 +10702,8 @@ entities: 2579: 12,-10 3502: 42,-21 3511: 43,-26 - 8531: 97,29 - 8532: 98,29 + 8525: 97,29 + 8526: 98,29 - node: color: '#EFB34196' id: WarnLineGreyscaleN @@ -10721,16 +10723,16 @@ entities: 4008: 8,40 4009: 6,40 4010: 5,40 - 8053: 18,-17 - 8054: 17,-17 - 8055: 16,-17 - 8056: 15,-17 + 8047: 18,-17 + 8048: 17,-17 + 8049: 16,-17 + 8050: 15,-17 - node: color: '#334E6DC8' id: WarnLineGreyscaleS decals: - 8525: 97,32 - 8526: 98,32 + 8519: 97,32 + 8520: 98,32 - node: color: '#52B4E996' id: WarnLineGreyscaleS @@ -10741,10 +10743,10 @@ entities: 3931: 11,43 3932: 12,43 3933: 14,43 - 4337: 9,61 - 8223: 3,47 - 8523: 95,32 - 8524: 96,32 + 4331: 9,61 + 8217: 3,47 + 8517: 95,32 + 8518: 96,32 - node: color: '#A4610696' id: WarnLineGreyscaleS @@ -10763,7 +10765,7 @@ entities: 3354: 45,-18 3559: 48,-36 3674: 38,-40 - 4703: 43,-36 + 4697: 43,-36 - node: color: '#DE3A3A96' id: WarnLineGreyscaleS @@ -10786,18 +10788,18 @@ entities: 2578: 12,-13 3358: 42,-18 3533: 55,-27 - 5052: 72,-11 + 5046: 72,-11 - node: color: '#EFB34196' id: WarnLineGreyscaleS decals: - 8521: 93,32 - 8522: 94,32 + 8515: 93,32 + 8516: 94,32 - node: color: '#EFD54196' id: WarnLineGreyscaleS decals: - 5696: 68,-13 + 5690: 68,-13 - node: color: '#EFE841D6' id: WarnLineGreyscaleS @@ -10829,17 +10831,17 @@ entities: 4133: 9,49 4218: 6,54 4219: 6,55 - 4242: -2,61 - 4243: -2,62 - 4244: -2,63 - 4325: 2,61 - 4326: 2,63 + 4236: -2,61 + 4237: -2,62 + 4238: -2,63 + 4319: 2,61 + 4320: 2,63 - node: color: '#9FED5896' id: WarnLineGreyscaleW decals: - 4509: 32,43 - 4510: 32,45 + 4503: 32,43 + 4504: 32,45 - node: color: '#D381C996' id: WarnLineGreyscaleW @@ -10849,7 +10851,7 @@ entities: 3675: 37,-39 3676: 37,-35 3677: 37,-31 - 4813: 27,-26 + 4807: 27,-26 - node: color: '#DE3A3A96' id: WarnLineGreyscaleW @@ -10873,9 +10875,9 @@ entities: 2049: 25,30 4194: 21,54 4201: 26,54 - 5053: 71,-10 - 6280: 58,32 - 6281: 58,28 + 5047: 71,-10 + 6274: 58,32 + 6275: 58,28 - node: color: '#EFB34196' id: WarnLineGreyscaleW @@ -10885,9 +10887,9 @@ entities: color: '#EFD54196' id: WarnLineGreyscaleW decals: - 5693: 63,-12 - 5694: 63,-11 - 5695: 63,-10 + 5687: 63,-12 + 5688: 63,-11 + 5689: 63,-10 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleW @@ -10900,7 +10902,7 @@ entities: 3997: 7,37 3998: 7,38 3999: 7,39 - 7788: 103,-17 + 7782: 103,-17 - node: color: '#9FED5896' id: WarnLineN @@ -10911,9 +10913,9 @@ entities: color: '#EFB341FF' id: WarnLineN decals: - 4874: 108,-17 - 4875: 109,-17 - 4876: 107,-17 + 4868: 108,-17 + 4869: 109,-17 + 4870: 107,-17 - node: color: '#FFFFFFFF' id: WarnLineN @@ -11026,93 +11028,93 @@ entities: 4098: 30,50 4099: 29,50 4100: 28,50 - 4278: -9,53 - 4279: -10,53 - 4280: -12,57 - 4281: -14,57 - 4289: -4,49 - 4290: -5,49 - 4291: -6,49 - 4716: 43,-37 - 4724: 33,-36 - 4725: 32,-36 - 4726: 31,-36 - 4727: 30,-36 - 4728: 29,-36 - 4926: 95,4 - 4927: 94,4 - 4928: 93,4 - 5059: 64,-8 - 5060: 65,-8 - 5063: 63,-8 - 5064: 70,-28 - 5065: 69,-28 - 5066: 68,-28 - 5067: 67,-28 - 5136: 56,1 - 5137: 55,1 - 5138: 54,1 - 5167: 56,9 - 5168: 55,9 - 5169: 54,9 - 5189: 116,-26 - 5190: 115,-26 - 5191: 114,-26 - 5192: 113,-26 - 5198: 121,-27 - 5199: 120,-27 - 5200: 119,-27 - 5201: 119,-23 - 5202: 120,-23 - 5203: 121,-23 - 5305: 97,-4 - 5306: 96,-4 - 5307: 95,-4 - 5308: 94,-4 - 5772: 94,-1 - 6021: 56,25 - 6022: 55,25 - 6023: 54,25 - 6037: 56,35 - 6038: 55,35 - 6039: 54,35 - 6071: 92,17 - 6072: 91,17 - 6073: 81,17 - 6074: 82,17 - 6075: 83,17 - 6084: 83,26 - 6085: 82,26 - 6086: 81,26 - 6440: 125,52 - 6441: 124,52 - 6442: 123,52 - 6443: 122,52 - 6444: 121,52 - 6463: 127,46 - 6464: 126,46 - 6465: 119,46 - 6466: 118,46 - 6521: 91,46 - 6522: 90,46 - 6523: 89,46 - 6524: 88,46 - 6525: 87,46 - 6536: 89,41 - 6699: 73,41 - 6700: 72,41 - 6701: 72,44 - 6702: 73,44 - 7308: 51,44 - 7309: 52,44 - 7310: 49,44 - 7311: 48,44 - 7312: 47,44 - 8015: 109,-38 - 8016: 110,-38 - 8023: 106,-38 - 8703: -38,-7 - 8704: -40,-10 + 4272: -9,53 + 4273: -10,53 + 4274: -12,57 + 4275: -14,57 + 4283: -4,49 + 4284: -5,49 + 4285: -6,49 + 4710: 43,-37 + 4718: 33,-36 + 4719: 32,-36 + 4720: 31,-36 + 4721: 30,-36 + 4722: 29,-36 + 4920: 95,4 + 4921: 94,4 + 4922: 93,4 + 5053: 64,-8 + 5054: 65,-8 + 5057: 63,-8 + 5058: 70,-28 + 5059: 69,-28 + 5060: 68,-28 + 5061: 67,-28 + 5130: 56,1 + 5131: 55,1 + 5132: 54,1 + 5161: 56,9 + 5162: 55,9 + 5163: 54,9 + 5183: 116,-26 + 5184: 115,-26 + 5185: 114,-26 + 5186: 113,-26 + 5192: 121,-27 + 5193: 120,-27 + 5194: 119,-27 + 5195: 119,-23 + 5196: 120,-23 + 5197: 121,-23 + 5299: 97,-4 + 5300: 96,-4 + 5301: 95,-4 + 5302: 94,-4 + 5766: 94,-1 + 6015: 56,25 + 6016: 55,25 + 6017: 54,25 + 6031: 56,35 + 6032: 55,35 + 6033: 54,35 + 6065: 92,17 + 6066: 91,17 + 6067: 81,17 + 6068: 82,17 + 6069: 83,17 + 6078: 83,26 + 6079: 82,26 + 6080: 81,26 + 6434: 125,52 + 6435: 124,52 + 6436: 123,52 + 6437: 122,52 + 6438: 121,52 + 6457: 127,46 + 6458: 126,46 + 6459: 119,46 + 6460: 118,46 + 6515: 91,46 + 6516: 90,46 + 6517: 89,46 + 6518: 88,46 + 6519: 87,46 + 6530: 89,41 + 6693: 73,41 + 6694: 72,41 + 6695: 72,44 + 6696: 73,44 + 7302: 51,44 + 7303: 52,44 + 7304: 49,44 + 7305: 48,44 + 7306: 47,44 + 8009: 109,-38 + 8010: 110,-38 + 8017: 106,-38 + 8697: -38,-7 + 8698: -40,-10 - node: cleanable: True color: '#FFFFFFFF' @@ -11131,7 +11133,7 @@ entities: color: '#EFC541FF' id: WarnLineS decals: - 5025: 67,-16 + 5019: 67,-16 - node: color: '#FFFFFFFF' id: WarnLineS @@ -11209,114 +11211,114 @@ entities: 4109: 8,48 4110: 8,49 4202: 25,54 - 4249: 1,61 - 4250: 1,63 - 4251: -3,61 - 4252: -3,62 - 4253: -3,63 - 4266: -7,54 - 4267: -7,55 - 4268: -15,54 - 4269: -15,55 - 4270: -24,54 - 4271: -24,55 - 4331: 12,61 - 4332: 12,62 - 4333: 12,63 - 4372: 5,69 - 4624: 23,-51 - 4625: 23,-50 - 4677: 33,-44 - 4678: 33,-43 - 4679: 33,-42 - 4680: 46,-48 - 4681: 46,-47 - 4682: 46,-46 - 4736: 28,-35 - 4786: 27,-20 - 4792: 28,-22 - 4793: 28,-23 - 4794: 28,-24 - 4862: 95,-15 - 4932: 94,-2 - 4935: 94,-10 - 4936: 96,-13 - 4937: 96,-12 - 4938: 96,-11 - 5015: 68,-18 - 5016: 68,-14 - 5019: 70,-16 - 5032: 62,-12 - 5033: 62,-11 - 5034: 62,-10 - 5035: 57,-12 - 5036: 57,-11 - 5037: 57,-10 - 5072: 68,-23 - 5073: 71,-26 - 5074: 76,-22 - 5075: 76,-18 - 5081: 82,-21 - 5082: 84,-6 - 5083: 77,-2 - 5084: 75,0 - 5085: 83,-2 - 5086: 84,0 - 5087: 86,-3 - 5088: 88,-5 - 5089: 88,-7 - 5204: 122,-26 - 5205: 122,-25 - 5206: 122,-24 - 5207: 118,-26 - 5208: 118,-24 - 5295: 98,-7 - 5296: 98,-6 - 5297: 98,-5 - 5967: 100,35 - 5968: 94,35 - 5969: 91,32 - 5970: 84,32 - 6015: 90,-32 - 6016: 90,-31 - 6017: 90,-30 - 6032: 57,28 - 6033: 57,32 - 6034: 53,32 - 6035: 53,33 - 6036: 53,34 - 6043: 21,32 - 6044: 21,33 - 6045: 21,34 - 6046: 36,32 - 6047: 36,33 - 6048: 36,34 - 6057: 57,10 - 6058: 57,12 - 6059: 75,13 - 6060: 75,14 - 6061: 75,15 - 6068: 88,13 - 6069: 88,14 - 6070: 88,15 - 6087: 80,38 - 6088: 80,39 - 6089: 80,40 - 6096: 84,38 - 6097: 84,39 - 6098: 84,40 - 6435: 126,47 - 6436: 126,49 - 6437: 126,48 - 6438: 126,50 - 6439: 126,51 - 6459: 120,45 - 6460: 120,53 - 6707: 75,55 - 8025: 105,-37 - 8540: 99,30 - 8541: 99,31 - 8542: 99,33 + 4243: 1,61 + 4244: 1,63 + 4245: -3,61 + 4246: -3,62 + 4247: -3,63 + 4260: -7,54 + 4261: -7,55 + 4262: -15,54 + 4263: -15,55 + 4264: -24,54 + 4265: -24,55 + 4325: 12,61 + 4326: 12,62 + 4327: 12,63 + 4366: 5,69 + 4618: 23,-51 + 4619: 23,-50 + 4671: 33,-44 + 4672: 33,-43 + 4673: 33,-42 + 4674: 46,-48 + 4675: 46,-47 + 4676: 46,-46 + 4730: 28,-35 + 4780: 27,-20 + 4786: 28,-22 + 4787: 28,-23 + 4788: 28,-24 + 4856: 95,-15 + 4926: 94,-2 + 4929: 94,-10 + 4930: 96,-13 + 4931: 96,-12 + 4932: 96,-11 + 5009: 68,-18 + 5010: 68,-14 + 5013: 70,-16 + 5026: 62,-12 + 5027: 62,-11 + 5028: 62,-10 + 5029: 57,-12 + 5030: 57,-11 + 5031: 57,-10 + 5066: 68,-23 + 5067: 71,-26 + 5068: 76,-22 + 5069: 76,-18 + 5075: 82,-21 + 5076: 84,-6 + 5077: 77,-2 + 5078: 75,0 + 5079: 83,-2 + 5080: 84,0 + 5081: 86,-3 + 5082: 88,-5 + 5083: 88,-7 + 5198: 122,-26 + 5199: 122,-25 + 5200: 122,-24 + 5201: 118,-26 + 5202: 118,-24 + 5289: 98,-7 + 5290: 98,-6 + 5291: 98,-5 + 5961: 100,35 + 5962: 94,35 + 5963: 91,32 + 5964: 84,32 + 6009: 90,-32 + 6010: 90,-31 + 6011: 90,-30 + 6026: 57,28 + 6027: 57,32 + 6028: 53,32 + 6029: 53,33 + 6030: 53,34 + 6037: 21,32 + 6038: 21,33 + 6039: 21,34 + 6040: 36,32 + 6041: 36,33 + 6042: 36,34 + 6051: 57,10 + 6052: 57,12 + 6053: 75,13 + 6054: 75,14 + 6055: 75,15 + 6062: 88,13 + 6063: 88,14 + 6064: 88,15 + 6081: 80,38 + 6082: 80,39 + 6083: 80,40 + 6090: 84,38 + 6091: 84,39 + 6092: 84,40 + 6429: 126,47 + 6430: 126,49 + 6431: 126,48 + 6432: 126,50 + 6433: 126,51 + 6453: 120,45 + 6454: 120,53 + 6701: 75,55 + 8019: 105,-37 + 8534: 99,30 + 8535: 99,31 + 8536: 99,33 - node: cleanable: True color: '#FFFFFFFF' @@ -11326,9 +11328,9 @@ entities: 2507: 6,-34 2508: 6,-33 2509: 6,-32 - 7012: -29,1 - 7013: -29,2 - 7014: -29,3 + 7006: -29,1 + 7007: -29,2 + 7008: -29,3 - node: color: '#9FED5896' id: WarnLineW @@ -11342,9 +11344,9 @@ entities: color: '#EFB341FF' id: WarnLineW decals: - 4871: 107,-17 - 4872: 108,-17 - 4873: 109,-17 + 4865: 107,-17 + 4866: 108,-17 + 4867: 109,-17 - node: color: '#FFFFFFFF' id: WarnLineW @@ -11439,97 +11441,97 @@ entities: 4090: 24,46 4091: 23,46 4092: 22,46 - 4282: -10,53 - 4283: -9,53 - 4284: -12,57 - 4285: -14,57 - 4286: -6,49 - 4287: -5,49 - 4288: -4,49 - 4729: 33,-34 - 4730: 32,-34 - 4731: 31,-34 - 4732: 30,-34 - 4733: 29,-34 - 4864: 94,-16 - 4865: 93,-16 - 4866: 92,-16 - 4929: 95,4 - 4930: 94,4 - 4931: 93,4 - 5068: 70,-28 - 5069: 69,-28 - 5070: 68,-28 - 5071: 67,-28 - 5139: 56,1 - 5140: 55,1 - 5141: 54,1 - 5170: 56,9 - 5171: 55,9 - 5172: 54,9 - 5193: 116,-24 - 5194: 115,-24 - 5195: 114,-24 - 5223: 121,-27 - 5224: 120,-27 - 5225: 119,-27 - 5226: 119,-23 - 5227: 120,-23 - 5228: 121,-23 - 5298: 97,-8 - 5299: 96,-8 - 5300: 95,-8 - 5301: 94,-8 - 5548: 79,-9 - 5549: 78,-9 - 5771: 94,-11 - 5806: 87,-2 - 6024: 56,25 - 6025: 55,25 - 6026: 54,25 - 6040: 56,35 - 6041: 55,35 - 6042: 54,35 - 6076: 92,17 - 6077: 91,17 - 6078: 83,17 - 6079: 82,17 - 6080: 81,17 - 6081: 82,26 - 6082: 83,26 - 6083: 81,26 - 6450: 125,46 - 6451: 124,46 - 6452: 123,46 - 6453: 122,46 - 6454: 121,46 - 6467: 126,52 - 6468: 127,52 - 6469: 118,52 - 6470: 119,52 - 6526: 91,51 - 6527: 90,51 - 6528: 89,51 - 6529: 88,51 - 6530: 87,51 - 6537: 89,42 - 6703: 73,44 - 6704: 72,44 - 6705: 73,41 - 6706: 72,41 - 7303: 47,42 - 7304: 48,42 - 7305: 49,42 - 7306: 51,42 - 7307: 52,42 - 8017: 109,-36 - 8018: 110,-36 - 8024: 106,-36 - 8537: 96,32 - 8538: 97,32 - 8539: 98,32 - 8705: -40,-22 - 8706: -38,-25 + 4276: -10,53 + 4277: -9,53 + 4278: -12,57 + 4279: -14,57 + 4280: -6,49 + 4281: -5,49 + 4282: -4,49 + 4723: 33,-34 + 4724: 32,-34 + 4725: 31,-34 + 4726: 30,-34 + 4727: 29,-34 + 4858: 94,-16 + 4859: 93,-16 + 4860: 92,-16 + 4923: 95,4 + 4924: 94,4 + 4925: 93,4 + 5062: 70,-28 + 5063: 69,-28 + 5064: 68,-28 + 5065: 67,-28 + 5133: 56,1 + 5134: 55,1 + 5135: 54,1 + 5164: 56,9 + 5165: 55,9 + 5166: 54,9 + 5187: 116,-24 + 5188: 115,-24 + 5189: 114,-24 + 5217: 121,-27 + 5218: 120,-27 + 5219: 119,-27 + 5220: 119,-23 + 5221: 120,-23 + 5222: 121,-23 + 5292: 97,-8 + 5293: 96,-8 + 5294: 95,-8 + 5295: 94,-8 + 5542: 79,-9 + 5543: 78,-9 + 5765: 94,-11 + 5800: 87,-2 + 6018: 56,25 + 6019: 55,25 + 6020: 54,25 + 6034: 56,35 + 6035: 55,35 + 6036: 54,35 + 6070: 92,17 + 6071: 91,17 + 6072: 83,17 + 6073: 82,17 + 6074: 81,17 + 6075: 82,26 + 6076: 83,26 + 6077: 81,26 + 6444: 125,46 + 6445: 124,46 + 6446: 123,46 + 6447: 122,46 + 6448: 121,46 + 6461: 126,52 + 6462: 127,52 + 6463: 118,52 + 6464: 119,52 + 6520: 91,51 + 6521: 90,51 + 6522: 89,51 + 6523: 88,51 + 6524: 87,51 + 6531: 89,42 + 6697: 73,44 + 6698: 72,44 + 6699: 73,41 + 6700: 72,41 + 7297: 47,42 + 7298: 48,42 + 7299: 49,42 + 7300: 51,42 + 7301: 52,42 + 8011: 109,-36 + 8012: 110,-36 + 8018: 106,-36 + 8531: 96,32 + 8532: 97,32 + 8533: 98,32 + 8699: -40,-22 + 8700: -38,-25 - node: cleanable: True color: '#FFFFFFFF' @@ -11544,16 +11546,16 @@ entities: id: WoodTrimThinCornerNe decals: 415: 0,1 - 5768: 49,-6 + 5762: 49,-6 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: 414: -2,1 2021: 39,24 - 5767: 48,-6 - 7143: 27,-7 - 8716: -14,8 + 5761: 48,-6 + 7137: 27,-7 + 8710: -14,8 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe @@ -11561,16 +11563,16 @@ entities: 412: 0,-2 570: -27,47 969: -23,62 - 5769: 49,-7 + 5763: 49,-7 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: 413: -2,-2 967: -25,62 - 5770: 48,-7 - 6496: 79,46 - 7144: 27,-9 + 5764: 48,-7 + 6490: 79,46 + 7138: 27,-9 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNe @@ -11579,10 +11581,10 @@ entities: 158: -20,9 560: -25,38 979: -29,52 - 6172: 78,12 - 6509: 80,46 - 6758: 59,54 - 6778: 58,44 + 6166: 78,12 + 6503: 80,46 + 6752: 59,54 + 6772: 58,44 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNw @@ -11591,21 +11593,21 @@ entities: 159: -17,9 168: -13,28 978: -25,52 - 6171: 86,12 - 6757: 65,54 - 6779: 64,44 - 8720: -11,8 + 6165: 86,12 + 6751: 65,54 + 6773: 64,44 + 8714: -11,8 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSe decals: 160: -20,13 161: -21,22 - 6173: 78,16 - 6731: 60,54 - 6760: 60,60 - 6761: 59,60 - 6780: 58,48 + 6167: 78,16 + 6725: 60,54 + 6754: 60,60 + 6755: 59,60 + 6774: 58,48 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSw @@ -11614,11 +11616,11 @@ entities: 163: -11,22 170: -13,30 980: -25,58 - 6170: 86,16 - 6498: 80,46 - 6759: 65,60 - 6781: 64,48 - 8719: -11,10 + 6164: 86,16 + 6492: 80,46 + 6753: 65,60 + 6775: 64,48 + 8713: -11,10 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE @@ -11653,28 +11655,28 @@ entities: 989: -29,55 990: -29,56 991: -29,57 - 6174: 78,13 - 6175: 78,14 - 6176: 78,15 - 6193: 87,13 - 6194: 87,14 - 6195: 87,15 - 6504: 81,50 - 6508: 80,47 - 6510: 83,46 - 6511: 83,45 - 6512: 83,44 - 6513: 83,43 - 6514: 83,42 - 6730: 60,53 - 6752: 59,55 - 6753: 59,56 - 6754: 59,57 - 6755: 59,58 - 6756: 59,59 - 6765: 58,45 - 6766: 58,47 - 6767: 58,46 + 6168: 78,13 + 6169: 78,14 + 6170: 78,15 + 6187: 87,13 + 6188: 87,14 + 6189: 87,15 + 6498: 81,50 + 6502: 80,47 + 6504: 83,46 + 6505: 83,45 + 6506: 83,44 + 6507: 83,43 + 6508: 83,42 + 6724: 60,53 + 6746: 59,55 + 6747: 59,56 + 6748: 59,57 + 6749: 59,58 + 6750: 59,59 + 6759: 58,45 + 6760: 58,47 + 6761: 58,46 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN @@ -11701,37 +11703,37 @@ entities: 984: -26,52 985: -27,52 986: -28,52 - 5661: 47,-5 - 5662: 48,-5 - 5663: 49,-5 - 5664: 50,-5 - 6177: 79,12 - 6178: 80,12 - 6179: 81,12 - 6180: 82,12 - 6181: 83,12 - 6182: 85,12 - 6183: 84,12 - 6184: 81,25 - 6185: 82,25 - 6186: 83,25 - 6505: 83,46 - 6506: 82,46 - 6507: 81,46 - 6742: 64,54 - 6743: 63,54 - 6744: 62,54 - 6745: 61,54 - 6746: 60,54 - 6773: 63,44 - 6774: 62,44 - 6775: 61,44 - 6776: 60,44 - 6777: 59,44 - 7147: 29,-7 - 7148: 28,-7 - 8717: -13,8 - 8718: -12,8 + 5655: 47,-5 + 5656: 48,-5 + 5657: 49,-5 + 5658: 50,-5 + 6171: 79,12 + 6172: 80,12 + 6173: 81,12 + 6174: 82,12 + 6175: 83,12 + 6176: 85,12 + 6177: 84,12 + 6178: 81,25 + 6179: 82,25 + 6180: 83,25 + 6499: 83,46 + 6500: 82,46 + 6501: 81,46 + 6736: 64,54 + 6737: 63,54 + 6738: 62,54 + 6739: 61,54 + 6740: 60,54 + 6767: 63,44 + 6768: 62,44 + 6769: 61,44 + 6770: 60,44 + 6771: 59,44 + 7141: 29,-7 + 7142: 28,-7 + 8711: -13,8 + 8712: -12,8 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS @@ -11770,54 +11772,54 @@ entities: 2022: 39,26 2023: 38,26 2024: 37,26 - 4438: 27,64 - 4439: 26,64 - 4440: 25,64 - 5657: 47,-8 - 5658: 48,-8 - 5659: 49,-8 - 5660: 50,-8 - 6163: 85,16 - 6164: 84,16 - 6165: 82,16 - 6166: 83,16 - 6167: 81,16 - 6168: 80,16 - 6169: 79,16 - 6187: 83,18 - 6188: 82,18 - 6189: 81,18 - 6287: 79,34 - 6288: 78,34 - 6289: 77,34 - 6290: 76,34 - 6291: 75,34 - 6292: 74,34 - 6515: 82,42 - 6516: 81,42 - 6517: 80,42 - 6518: 83,42 - 6732: 61,54 - 6733: 62,54 - 6734: 63,54 - 6735: 64,54 - 6736: 65,54 - 6737: 64,60 - 6738: 63,60 - 6739: 62,60 - 6740: 61,60 - 6741: 60,60 - 6768: 59,48 - 6769: 60,48 - 6770: 61,48 - 6771: 62,48 - 6772: 63,48 - 7145: 28,-9 - 7146: 29,-9 - 8711: -15,10 - 8712: -14,10 - 8713: -13,10 - 8714: -12,10 + 4432: 27,64 + 4433: 26,64 + 4434: 25,64 + 5651: 47,-8 + 5652: 48,-8 + 5653: 49,-8 + 5654: 50,-8 + 6157: 85,16 + 6158: 84,16 + 6159: 82,16 + 6160: 83,16 + 6161: 81,16 + 6162: 80,16 + 6163: 79,16 + 6181: 83,18 + 6182: 82,18 + 6183: 81,18 + 6281: 79,34 + 6282: 78,34 + 6283: 77,34 + 6284: 76,34 + 6285: 75,34 + 6286: 74,34 + 6509: 82,42 + 6510: 81,42 + 6511: 80,42 + 6512: 83,42 + 6726: 61,54 + 6727: 62,54 + 6728: 63,54 + 6729: 64,54 + 6730: 65,54 + 6731: 64,60 + 6732: 63,60 + 6733: 62,60 + 6734: 61,60 + 6735: 60,60 + 6762: 59,48 + 6763: 60,48 + 6764: 61,48 + 6765: 62,48 + 6766: 63,48 + 7139: 28,-9 + 7140: 29,-9 + 8705: -15,10 + 8706: -14,10 + 8707: -13,10 + 8708: -12,10 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW @@ -11843,130 +11845,130 @@ entities: 975: -25,55 976: -25,56 977: -25,57 - 6160: 86,13 - 6161: 86,14 - 6162: 86,15 - 6190: 76,13 - 6191: 76,14 - 6192: 76,15 - 6492: 80,42 - 6493: 80,43 - 6494: 80,44 - 6495: 80,45 - 6497: 79,47 - 6501: 79,49 - 6502: 79,50 - 6503: 79,51 - 6747: 65,55 - 6748: 65,56 - 6749: 65,57 - 6750: 65,58 - 6751: 65,59 - 6762: 64,45 - 6763: 64,46 - 6764: 64,47 - 7149: 27,-8 - 8715: -11,9 + 6154: 86,13 + 6155: 86,14 + 6156: 86,15 + 6184: 76,13 + 6185: 76,14 + 6186: 76,15 + 6486: 80,42 + 6487: 80,43 + 6488: 80,44 + 6489: 80,45 + 6491: 79,47 + 6495: 79,49 + 6496: 79,50 + 6497: 79,51 + 6741: 65,55 + 6742: 65,56 + 6743: 65,57 + 6744: 65,58 + 6745: 65,59 + 6756: 64,45 + 6757: 64,46 + 6758: 64,47 + 7143: 27,-8 + 8709: -11,9 - node: cleanable: True color: '#FFFFFFFF' id: arrow decals: - 8226: 118.01247,-7.299263 + 8220: 118.01247,-7.299263 - node: color: '#FFFFFFFF' id: food decals: - 8127: 50.950474,63.02254 + 8121: 50.950474,63.02254 - node: cleanable: True color: '#79150009' id: splatter decals: - 8187: 47.07256,55.29809 - 8188: 46.994434,55.626217 - 8189: 47.056934,55.251217 - 8190: 47.213184,55.01684 - 8191: 47.38506,54.907467 - 8192: 47.54131,54.844967 - 8193: 47.650684,53.188717 - 8194: 47.38506,53.251217 - 8195: 47.150684,53.54809 - 8196: 47.32256,53.76684 - 8197: 47.38506,53.782467 - 8198: 47.400684,53.782467 - 8199: 47.119434,53.64184 - 8200: 47.19756,53.407467 - 8201: 47.26006,53.344967 - 8202: 46.463184,53.719967 - 8203: 46.01006,54.094967 - 8204: 46.19756,53.688717 - 8205: 46.463184,53.61059 - 8206: 47.056934,52.844967 - 8207: 47.400684,52.501217 - 8208: 48.35381,52.438717 - 8209: 48.47881,52.23559 - 8210: 47.713184,52.07934 - 8211: 46.69756,52.313717 - 8212: 45.9139,54.080795 + 8181: 47.07256,55.29809 + 8182: 46.994434,55.626217 + 8183: 47.056934,55.251217 + 8184: 47.213184,55.01684 + 8185: 47.38506,54.907467 + 8186: 47.54131,54.844967 + 8187: 47.650684,53.188717 + 8188: 47.38506,53.251217 + 8189: 47.150684,53.54809 + 8190: 47.32256,53.76684 + 8191: 47.38506,53.782467 + 8192: 47.400684,53.782467 + 8193: 47.119434,53.64184 + 8194: 47.19756,53.407467 + 8195: 47.26006,53.344967 + 8196: 46.463184,53.719967 + 8197: 46.01006,54.094967 + 8198: 46.19756,53.688717 + 8199: 46.463184,53.61059 + 8200: 47.056934,52.844967 + 8201: 47.400684,52.501217 + 8202: 48.35381,52.438717 + 8203: 48.47881,52.23559 + 8204: 47.713184,52.07934 + 8205: 46.69756,52.313717 + 8206: 45.9139,54.080795 - node: cleanable: True color: '#79150012' id: splatter decals: - 8130: 44.91631,53.157467 - 8131: 44.91631,53.157467 - 8132: 44.66631,53.70434 - 8133: 44.66631,53.70434 - 8134: 44.369434,53.501217 - 8135: 44.79131,53.157467 - 8136: 44.994434,53.157467 - 8137: 45.01006,53.26684 - 8138: 44.76006,52.657467 - 8139: 45.213184,53.594967 - 8140: 45.244434,53.57934 - 8141: 45.19756,53.39184 - 8142: 45.213184,53.17309 - 8143: 45.213184,53.07934 - 8144: 45.19756,52.907467 - 8145: 45.19756,52.844967 - 8146: 47.10381,55.79809 - 8147: 47.32256,55.51684 - 8148: 47.588184,55.313717 - 8149: 47.69756,55.251217 - 8150: 47.69756,55.14184 - 8151: 47.47881,54.969967 - 8152: 47.19756,55.126217 - 8153: 47.181934,55.219967 - 8154: 47.47881,55.407467 - 8155: 47.150684,55.563717 - 8156: 47.181934,55.39184 - 8157: 47.494434,53.813717 - 8158: 47.463184,54.01684 - 8159: 44.63506,55.48559 - 8160: 44.85381,54.79809 - 8161: 45.32256,53.719967 - 8162: 47.44756,52.813717 - 8163: 46.54131,53.251217 - 8164: 46.244434,53.188717 - 8165: 46.588184,55.70434 - 8166: 43.44756,53.657467 - 8167: 42.85381,53.782467 - 8168: 42.713184,53.95434 - 8169: 42.556934,54.251217 - 8170: 42.775684,53.67309 - 8171: 42.963184,53.407467 - 8172: 43.338184,52.73559 - 8173: 43.51006,52.54809 - 8174: 43.838184,52.32934 - 8175: 44.150684,52.282467 - 8176: 46.994434,55.79809 - 8177: 46.29131,55.344967 - 8178: 45.838184,55.04809 - 8179: 45.29131,54.29809 - 8180: 45.10381,53.61059 - 8181: 44.463184,51.907467 - 8182: 44.51006,51.876217 + 8124: 44.91631,53.157467 + 8125: 44.91631,53.157467 + 8126: 44.66631,53.70434 + 8127: 44.66631,53.70434 + 8128: 44.369434,53.501217 + 8129: 44.79131,53.157467 + 8130: 44.994434,53.157467 + 8131: 45.01006,53.26684 + 8132: 44.76006,52.657467 + 8133: 45.213184,53.594967 + 8134: 45.244434,53.57934 + 8135: 45.19756,53.39184 + 8136: 45.213184,53.17309 + 8137: 45.213184,53.07934 + 8138: 45.19756,52.907467 + 8139: 45.19756,52.844967 + 8140: 47.10381,55.79809 + 8141: 47.32256,55.51684 + 8142: 47.588184,55.313717 + 8143: 47.69756,55.251217 + 8144: 47.69756,55.14184 + 8145: 47.47881,54.969967 + 8146: 47.19756,55.126217 + 8147: 47.181934,55.219967 + 8148: 47.47881,55.407467 + 8149: 47.150684,55.563717 + 8150: 47.181934,55.39184 + 8151: 47.494434,53.813717 + 8152: 47.463184,54.01684 + 8153: 44.63506,55.48559 + 8154: 44.85381,54.79809 + 8155: 45.32256,53.719967 + 8156: 47.44756,52.813717 + 8157: 46.54131,53.251217 + 8158: 46.244434,53.188717 + 8159: 46.588184,55.70434 + 8160: 43.44756,53.657467 + 8161: 42.85381,53.782467 + 8162: 42.713184,53.95434 + 8163: 42.556934,54.251217 + 8164: 42.775684,53.67309 + 8165: 42.963184,53.407467 + 8166: 43.338184,52.73559 + 8167: 43.51006,52.54809 + 8168: 43.838184,52.32934 + 8169: 44.150684,52.282467 + 8170: 46.994434,55.79809 + 8171: 46.29131,55.344967 + 8172: 45.838184,55.04809 + 8173: 45.29131,54.29809 + 8174: 45.10381,53.61059 + 8175: 44.463184,51.907467 + 8176: 44.51006,51.876217 - node: color: '#79150015' id: splatter @@ -12041,10 +12043,10 @@ entities: color: '#DE3A3A0C' id: splatter decals: - 8183: 45.088184,53.376217 - 8184: 47.306934,55.42309 - 8185: 47.306934,55.42309 - 8186: 47.494434,55.001217 + 8177: 45.088184,53.376217 + 8178: 47.306934,55.42309 + 8179: 47.306934,55.42309 + 8180: 47.494434,55.001217 type: DecalGrid - version: 2 data: @@ -15825,6 +15827,7 @@ entities: - type: RadiationGridResistance - nextUpdate: 0 type: SpreaderGrid + - type: GridPathfinding - proto: AcousticGuitarInstrument entities: - uid: 13351 @@ -29909,253 +29912,181 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 675 components: - pos: -20.5,22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 676 components: - pos: -20.5,21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 677 components: - pos: -20.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 678 components: - pos: -20.5,19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 679 components: - pos: -20.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 680 components: - pos: -20.5,17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 681 components: - pos: -20.5,16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 682 components: - pos: -20.5,15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 683 components: - pos: -19.5,15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 684 components: - pos: -18.5,15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 685 components: - pos: -17.5,15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 686 components: - pos: -16.5,15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 687 components: - pos: -15.5,15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 688 components: - pos: -14.5,15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 689 components: - pos: -13.5,15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 690 components: - pos: -12.5,15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 691 components: - pos: -11.5,15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 692 components: - pos: -19.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 693 components: - pos: -18.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 694 components: - pos: -17.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 695 components: - pos: -16.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 696 components: - pos: -15.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 697 components: - pos: -14.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 698 components: - pos: -13.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 699 components: - pos: -12.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 700 components: - pos: -11.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 701 components: - pos: -19.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 702 components: - pos: -18.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 703 components: - pos: -17.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 704 components: - pos: -16.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 705 components: - pos: -15.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 706 components: - pos: -14.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 707 components: - pos: -13.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 708 components: - pos: -12.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 709 components: - pos: -11.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 710 components: - pos: -11.5,11.5 @@ -30163,176 +30094,126 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 711 components: - pos: -11.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 712 components: - pos: -11.5,9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 713 components: - pos: -12.5,9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 714 components: - pos: -13.5,9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 715 components: - pos: -14.5,9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 716 components: - pos: -15.5,9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 717 components: - pos: -16.5,9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 718 components: - pos: -17.5,9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 719 components: - pos: -18.5,9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 720 components: - pos: -18.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 721 components: - pos: -18.5,11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 722 components: - pos: -18.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 723 components: - pos: -10.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 724 components: - pos: -9.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 725 components: - pos: -8.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 726 components: - pos: -7.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 727 components: - pos: -6.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 728 components: - pos: -5.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 729 components: - pos: -4.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 730 components: - pos: -3.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 731 components: - pos: -6.5,13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 732 components: - pos: -6.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 733 components: - pos: -6.5,11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 734 components: - pos: -6.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 735 components: - pos: -10.5,23.5 @@ -30340,162 +30221,116 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 736 components: - pos: -10.5,24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 737 components: - pos: -10.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 738 components: - pos: -10.5,26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 739 components: - pos: -9.5,24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 740 components: - pos: -8.5,24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 741 components: - pos: -7.5,24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 742 components: - pos: -6.5,24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 743 components: - pos: -5.5,24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 744 components: - pos: -6.5,23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 745 components: - pos: -6.5,22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 746 components: - pos: -6.5,21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 747 components: - pos: -6.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 748 components: - pos: -6.5,19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 749 components: - pos: -6.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 750 components: - pos: -5.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 751 components: - pos: -7.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 752 components: - pos: -7.5,21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 753 components: - pos: -5.5,21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 754 components: - pos: -4.5,21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 755 components: - pos: -4.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 756 components: - pos: -8.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 757 components: - pos: -8.5,21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 758 components: - pos: -4.5,30.5 @@ -30503,43 +30338,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 759 components: - pos: -4.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 760 components: - pos: -4.5,28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 761 components: - pos: -4.5,27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 762 components: - pos: -4.5,26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 763 components: - pos: -5.5,27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 764 components: - pos: -6.5,30.5 @@ -30547,71 +30370,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 765 components: - pos: -6.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 766 components: - pos: -6.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 767 components: - pos: -5.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 768 components: - pos: -7.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 769 components: - pos: -8.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 770 components: - pos: -9.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 771 components: - pos: -9.5,30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 772 components: - pos: -9.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 773 components: - pos: -9.5,28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 774 components: - pos: -14.5,27.5 @@ -30619,99 +30422,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 775 components: - pos: -14.5,26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 776 components: - pos: -15.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 777 components: - pos: -15.5,24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 778 components: - pos: -16.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 779 components: - pos: -17.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 780 components: - pos: -18.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 781 components: - pos: -14.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 782 components: - pos: -15.5,28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 783 components: - pos: -15.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 784 components: - pos: -14.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 785 components: - pos: -13.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 786 components: - pos: -12.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 787 components: - pos: -16.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 788 components: - pos: -4.5,33.5 @@ -30719,337 +30494,241 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 789 components: - pos: -4.5,34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 790 components: - pos: -4.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 791 components: - pos: -4.5,36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 792 components: - pos: -4.5,37.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 793 components: - pos: -4.5,38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 794 components: - pos: -4.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 795 components: - pos: -4.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 796 components: - pos: -5.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 797 components: - pos: -6.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 798 components: - pos: -7.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 799 components: - pos: -8.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 800 components: - pos: -9.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 801 components: - pos: -10.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 802 components: - pos: -11.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 803 components: - pos: -11.5,36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 804 components: - pos: -11.5,37.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 805 components: - pos: -11.5,38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 806 components: - pos: -11.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 807 components: - pos: -11.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 808 components: - pos: -11.5,41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 809 components: - pos: -10.5,41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 810 components: - pos: -9.5,41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 811 components: - pos: -8.5,41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 812 components: - pos: -10.5,38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 813 components: - pos: -9.5,38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 814 components: - pos: -8.5,38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 815 components: - pos: -7.5,38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 816 components: - pos: -6.5,38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 817 components: - pos: -5.5,38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 818 components: - pos: -12.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 819 components: - pos: -13.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 820 components: - pos: -14.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 821 components: - pos: -15.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 822 components: - pos: -15.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 823 components: - pos: -15.5,41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 824 components: - pos: -15.5,38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 825 components: - pos: -15.5,37.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 826 components: - pos: -15.5,36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 827 components: - pos: -15.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 828 components: - pos: -15.5,34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 829 components: - pos: -15.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 830 components: - pos: -15.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 831 components: - pos: -14.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 832 components: - pos: -13.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 833 components: - pos: -5.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 834 components: - pos: -4.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 859 components: - pos: -14.5,28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1508 components: - pos: 4.5,14.5 @@ -31057,50 +30736,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1509 components: - pos: 4.5,13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1510 components: - pos: 4.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1511 components: - pos: 4.5,11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1512 components: - pos: 4.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1513 components: - pos: 4.5,9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1514 components: - pos: 4.5,8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1913 components: - pos: -2.5,7.5 @@ -31108,407 +30773,291 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1914 components: - pos: -2.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1915 components: - pos: -2.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1916 components: - pos: -3.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1917 components: - pos: -4.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1918 components: - pos: -5.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1919 components: - pos: -5.5,4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1920 components: - pos: -5.5,3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1921 components: - pos: -5.5,2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1922 components: - pos: -5.5,1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1923 components: - pos: -5.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1924 components: - pos: -5.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1925 components: - pos: -5.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1926 components: - pos: -5.5,-2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1927 components: - pos: -5.5,-3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1928 components: - pos: -5.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1929 components: - pos: -5.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1930 components: - pos: -4.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1931 components: - pos: -3.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1932 components: - pos: -2.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1933 components: - pos: -1.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1934 components: - pos: -0.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1935 components: - pos: 0.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1936 components: - pos: 1.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1937 components: - pos: 2.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1938 components: - pos: 3.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1939 components: - pos: 4.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1940 components: - pos: 4.5,-3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1941 components: - pos: 4.5,-2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1942 components: - pos: 4.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1943 components: - pos: 4.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1944 components: - pos: 4.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1945 components: - pos: 4.5,1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1946 components: - pos: 4.5,2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1947 components: - pos: 4.5,3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1948 components: - pos: 4.5,4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1949 components: - pos: 4.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1950 components: - pos: 3.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1951 components: - pos: 2.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1952 components: - pos: 1.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1953 components: - pos: 0.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1954 components: - pos: -0.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1955 components: - pos: -1.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1956 components: - pos: -4.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1957 components: - pos: -3.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1958 components: - pos: -2.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1959 components: - pos: -1.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1960 components: - pos: -0.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1961 components: - pos: 0.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1962 components: - pos: 1.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1963 components: - pos: 2.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1964 components: - pos: 3.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1965 components: - pos: -0.5,-3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1966 components: - pos: -0.5,-2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1967 components: - pos: -0.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1968 components: - pos: -0.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1969 components: - pos: -0.5,1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1970 components: - pos: -0.5,2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2009 components: - pos: -12.5,1.5 @@ -31516,64 +31065,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2010 components: - pos: -11.5,1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2011 components: - pos: -10.5,1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2012 components: - pos: -10.5,2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2013 components: - pos: -10.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2014 components: - pos: -10.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2015 components: - pos: -10.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2016 components: - pos: -9.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2017 components: - pos: -8.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2018 components: - pos: -7.5,0.5 @@ -31581,8 +31112,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2019 components: - pos: -7.5,-0.5 @@ -31590,8 +31119,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2020 components: - pos: -7.5,1.5 @@ -31599,8 +31126,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2021 components: - pos: -10.5,-2.5 @@ -31608,8 +31133,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2022 components: - pos: -9.5,-2.5 @@ -31617,8 +31140,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2023 components: - pos: -11.5,-2.5 @@ -31626,8 +31147,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2024 components: - pos: -15.5,1.5 @@ -31635,78 +31154,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2025 components: - pos: -15.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2026 components: - pos: -15.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2027 components: - pos: -15.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2028 components: - pos: -15.5,-2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2029 components: - pos: -14.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2030 components: - pos: -16.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2031 components: - pos: -17.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2032 components: - pos: -18.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2033 components: - pos: -17.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2034 components: - pos: -18.5,-2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2218 components: - pos: -8.5,-11.5 @@ -31714,141 +31211,101 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2219 components: - pos: -8.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2220 components: - pos: -8.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2221 components: - pos: -7.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2222 components: - pos: -9.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2223 components: - pos: -10.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2224 components: - pos: -11.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2225 components: - pos: -12.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2226 components: - pos: -13.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2227 components: - pos: -14.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2228 components: - pos: -14.5,-8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2229 components: - pos: -14.5,-7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2230 components: - pos: -14.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2231 components: - pos: -14.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2232 components: - pos: -13.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2233 components: - pos: -12.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2234 components: - pos: -11.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2235 components: - pos: -10.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2236 components: - pos: -9.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2237 components: - pos: -8.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2277 components: - pos: -16.5,-9.5 @@ -31856,43 +31313,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2278 components: - pos: -17.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2279 components: - pos: -18.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2280 components: - pos: -18.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2281 components: - pos: -18.5,-11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2282 components: - pos: -18.5,-12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2283 components: - pos: -18.5,-13.5 @@ -31900,29 +31345,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2284 components: - pos: -18.5,-8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2308 components: - pos: -18.5,-3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2309 components: - pos: -18.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2932 components: - pos: -37.5,-9.5 @@ -31930,8 +31367,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2933 components: - pos: -37.5,-22.5 @@ -31939,8 +31374,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3064 components: - pos: -37.5,-21.5 @@ -31948,8 +31381,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3065 components: - pos: -37.5,-23.5 @@ -31957,8 +31388,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4193 components: - pos: -32.5,28.5 @@ -31966,113 +31395,81 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4194 components: - pos: -32.5,27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4195 components: - pos: -32.5,26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4196 components: - pos: -32.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4197 components: - pos: -33.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4198 components: - pos: -33.5,24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4199 components: - pos: -33.5,23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4200 components: - pos: -33.5,22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4201 components: - pos: -34.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4202 components: - pos: -35.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4203 components: - pos: -36.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4204 components: - pos: -37.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4205 components: - pos: -37.5,24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4206 components: - pos: -35.5,24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4207 components: - pos: -36.5,26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4208 components: - pos: -36.5,27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4209 components: - pos: -26.5,36.5 @@ -32080,498 +31477,356 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4210 components: - pos: -27.5,36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4211 components: - pos: -27.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4212 components: - pos: -28.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4213 components: - pos: -29.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4214 components: - pos: -30.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4215 components: - pos: -31.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4216 components: - pos: -32.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4217 components: - pos: -33.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4218 components: - pos: -34.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4219 components: - pos: -35.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4220 components: - pos: -36.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4221 components: - pos: -37.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4222 components: - pos: -37.5,34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4223 components: - pos: -37.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4224 components: - pos: -37.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4225 components: - pos: -37.5,36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4226 components: - pos: -37.5,37.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4227 components: - pos: -37.5,38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4228 components: - pos: -37.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4229 components: - pos: -37.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4230 components: - pos: -38.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4231 components: - pos: -39.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4232 components: - pos: -40.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4233 components: - pos: -38.5,34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4234 components: - pos: -39.5,34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4235 components: - pos: -40.5,34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4236 components: - pos: -38.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4237 components: - pos: -39.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4238 components: - pos: -40.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4239 components: - pos: -37.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4240 components: - pos: -36.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4241 components: - pos: -35.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4242 components: - pos: -34.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4243 components: - pos: -33.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4244 components: - pos: -32.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4245 components: - pos: -31.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4246 components: - pos: -30.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4247 components: - pos: -29.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4248 components: - pos: -28.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4249 components: - pos: -28.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4250 components: - pos: -28.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4251 components: - pos: -28.5,34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4252 components: - pos: -28.5,36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4253 components: - pos: -28.5,37.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4254 components: - pos: -28.5,38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4255 components: - pos: -28.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4256 components: - pos: -28.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4257 components: - pos: -29.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4258 components: - pos: -30.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4259 components: - pos: -31.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4260 components: - pos: -32.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4261 components: - pos: -33.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4262 components: - pos: -34.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4263 components: - pos: -35.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4264 components: - pos: -36.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4265 components: - pos: -27.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4266 components: - pos: -26.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4267 components: - pos: -25.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4268 components: - pos: -24.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4269 components: - pos: -23.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4270 components: - pos: -24.5,30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4271 components: - pos: -24.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4272 components: - pos: -24.5,28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4273 components: - pos: -25.5,28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4274 components: - pos: -26.5,28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4275 components: - pos: -27.5,28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4276 components: - pos: -28.5,28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4277 components: - pos: -28.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4278 components: - pos: -28.5,30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4279 components: - pos: -31.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4280 components: - pos: -30.5,25.5 @@ -32579,8 +31834,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4281 components: - pos: -29.5,25.5 @@ -32588,8 +31841,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4282 components: - pos: -28.5,25.5 @@ -32597,8 +31848,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4283 components: - pos: -27.5,25.5 @@ -32606,8 +31855,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4284 components: - pos: -27.5,24.5 @@ -32615,8 +31862,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4285 components: - pos: -27.5,23.5 @@ -32624,8 +31869,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4286 components: - pos: -29.5,24.5 @@ -32633,8 +31876,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4287 components: - pos: -29.5,23.5 @@ -32642,8 +31883,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4288 components: - pos: -29.5,22.5 @@ -32651,8 +31890,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4289 components: - pos: -30.5,26.5 @@ -32660,8 +31897,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4477 components: - pos: -26.5,41.5 @@ -32669,64 +31904,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4478 components: - pos: -25.5,41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4479 components: - pos: -24.5,41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4480 components: - pos: -23.5,41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4481 components: - pos: -22.5,41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4482 components: - pos: -24.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4483 components: - pos: -24.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4484 components: - pos: -24.5,38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4485 components: - pos: -22.5,42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4486 components: - pos: -22.5,43.5 @@ -32734,8 +31951,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4487 components: - pos: -21.5,43.5 @@ -32743,36 +31958,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4491 components: - pos: -23.5,38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4492 components: - pos: -22.5,38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4493 components: - pos: -21.5,38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4494 components: - pos: -20.5,38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4495 components: - pos: -19.5,38.5 @@ -32780,8 +31985,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4496 components: - pos: -19.5,39.5 @@ -32789,8 +31992,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4497 components: - pos: -19.5,40.5 @@ -32798,8 +31999,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4498 components: - pos: -19.5,41.5 @@ -32807,15 +32006,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4499 components: - pos: -19.5,42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4500 components: - pos: -19.5,37.5 @@ -32823,8 +32018,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4501 components: - pos: -19.5,36.5 @@ -32832,8 +32025,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4502 components: - pos: -19.5,35.5 @@ -32841,8 +32032,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4503 components: - pos: -19.5,34.5 @@ -32850,8 +32039,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4504 components: - pos: -20.5,34.5 @@ -32859,8 +32046,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4505 components: - pos: -21.5,34.5 @@ -32868,8 +32053,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4506 components: - pos: -22.5,34.5 @@ -32877,8 +32060,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4507 components: - pos: -23.5,34.5 @@ -32886,8 +32067,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4649 components: - pos: -36.5,51.5 @@ -32895,99 +32074,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4650 components: - pos: -36.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4651 components: - pos: -36.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4652 components: - pos: -36.5,48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4653 components: - pos: -36.5,47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4654 components: - pos: -36.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4655 components: - pos: -36.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4656 components: - pos: -36.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4657 components: - pos: -36.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4658 components: - pos: -36.5,42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4659 components: - pos: -37.5,42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4660 components: - pos: -38.5,42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4661 components: - pos: -39.5,42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4662 components: - pos: -40.5,42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5761 components: - pos: -18.5,56.5 @@ -32995,218 +32146,156 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5762 components: - pos: -18.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5763 components: - pos: -18.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5764 components: - pos: -19.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5765 components: - pos: -20.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5766 components: - pos: -21.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5767 components: - pos: -21.5,53.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5768 components: - pos: -21.5,52.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5769 components: - pos: -21.5,51.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5770 components: - pos: -21.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5771 components: - pos: -21.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5772 components: - pos: -20.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5773 components: - pos: -19.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5774 components: - pos: -18.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5775 components: - pos: -17.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5776 components: - pos: -16.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5777 components: - pos: -15.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5778 components: - pos: -14.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5779 components: - pos: -13.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5780 components: - pos: -17.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5781 components: - pos: -16.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5782 components: - pos: -15.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5783 components: - pos: -15.5,53.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5784 components: - pos: -15.5,52.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5785 components: - pos: -15.5,51.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5786 components: - pos: -15.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5787 components: - pos: -14.5,51.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5788 components: - pos: -13.5,51.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5789 components: - pos: -21.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5790 components: - pos: -21.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5791 components: - pos: -21.5,57.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5792 components: - pos: -22.5,63.5 @@ -33214,43 +32303,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5793 components: - pos: -22.5,62.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5794 components: - pos: -22.5,61.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5795 components: - pos: -22.5,60.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5796 components: - pos: -23.5,61.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5797 components: - pos: -24.5,61.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5798 components: - pos: -26.5,59.5 @@ -33258,78 +32335,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5799 components: - pos: -26.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5800 components: - pos: -26.5,57.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5801 components: - pos: -26.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5802 components: - pos: -26.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5803 components: - pos: -26.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5804 components: - pos: -26.5,53.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5805 components: - pos: -27.5,53.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5806 components: - pos: -27.5,57.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5807 components: - pos: -25.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5808 components: - pos: -24.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5809 components: - pos: -11.5,53.5 @@ -33337,176 +32392,126 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5810 components: - pos: -11.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5811 components: - pos: -11.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5812 components: - pos: -12.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5813 components: - pos: -13.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5814 components: - pos: -10.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5815 components: - pos: -9.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5816 components: - pos: -8.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5817 components: - pos: -7.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5818 components: - pos: -6.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5819 components: - pos: -8.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5820 components: - pos: -8.5,53.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5821 components: - pos: -8.5,52.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5822 components: - pos: -8.5,51.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5823 components: - pos: -8.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5824 components: - pos: -8.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5825 components: - pos: -8.5,48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5826 components: - pos: -5.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5827 components: - pos: -4.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5828 components: - pos: -4.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5829 components: - pos: -4.5,57.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5830 components: - pos: -4.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5831 components: - pos: -4.5,53.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5832 components: - pos: -4.5,52.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5833 components: - pos: -4.5,51.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5834 components: - pos: -14.5,67.5 @@ -33514,239 +32519,171 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5835 components: - pos: -14.5,66.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5836 components: - pos: -15.5,66.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5837 components: - pos: -16.5,66.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5838 components: - pos: -16.5,65.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5839 components: - pos: -17.5,65.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5840 components: - pos: -18.5,65.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5841 components: - pos: -19.5,65.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5842 components: - pos: -20.5,65.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5843 components: - pos: -15.5,65.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5844 components: - pos: -15.5,64.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5845 components: - pos: -15.5,63.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5846 components: - pos: -14.5,63.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5847 components: - pos: -13.5,63.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5848 components: - pos: -12.5,63.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5849 components: - pos: -11.5,63.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5850 components: - pos: -10.5,63.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5851 components: - pos: -9.5,63.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5852 components: - pos: -9.5,64.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5853 components: - pos: -9.5,65.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5854 components: - pos: -9.5,66.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5855 components: - pos: -8.5,66.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5856 components: - pos: -15.5,62.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5857 components: - pos: -15.5,61.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5858 components: - pos: -15.5,60.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5859 components: - pos: -15.5,59.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5860 components: - pos: -9.5,62.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5861 components: - pos: -9.5,61.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5862 components: - pos: -9.5,60.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5863 components: - pos: -9.5,59.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5864 components: - pos: -10.5,59.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5865 components: - pos: -10.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5866 components: - pos: -14.5,59.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5867 components: - pos: -14.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5868 components: - pos: -12.5,71.5 @@ -33754,92 +32691,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5869 components: - pos: -11.5,71.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5870 components: - pos: -10.5,71.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5871 components: - pos: -9.5,71.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5872 components: - pos: -9.5,70.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5873 components: - pos: -9.5,69.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5874 components: - pos: -9.5,68.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5875 components: - pos: -9.5,72.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5876 components: - pos: -9.5,73.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5877 components: - pos: -9.5,74.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5878 components: - pos: -9.5,75.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5879 components: - pos: -10.5,69.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5880 components: - pos: -11.5,69.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5881 components: - pos: -20.5,74.5 @@ -33847,204 +32758,146 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5882 components: - pos: -20.5,73.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5883 components: - pos: -20.5,72.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5884 components: - pos: -20.5,71.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5885 components: - pos: -20.5,70.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5886 components: - pos: -20.5,69.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5887 components: - pos: -20.5,68.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5888 components: - pos: -19.5,72.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5889 components: - pos: -18.5,72.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5890 components: - pos: -17.5,72.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5891 components: - pos: -16.5,72.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5892 components: - pos: -16.5,71.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5893 components: - pos: -16.5,70.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5894 components: - pos: -16.5,69.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5895 components: - pos: -16.5,73.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5896 components: - pos: -16.5,74.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5897 components: - pos: -16.5,75.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5898 components: - pos: -16.5,76.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5899 components: - pos: -15.5,75.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5900 components: - pos: -14.5,75.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5902 components: - pos: -13.5,75.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5903 components: - pos: -17.5,76.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5904 components: - pos: -18.5,76.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5905 components: - pos: -19.5,76.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5906 components: - pos: -20.5,76.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5907 components: - pos: -21.5,76.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5908 components: - pos: -21.5,75.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5909 components: - pos: -21.5,72.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5910 components: - pos: -22.5,72.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5911 components: - pos: -23.5,72.5 @@ -34052,8 +32905,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5912 components: - pos: -24.5,72.5 @@ -34061,8 +32912,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5913 components: - pos: -25.5,72.5 @@ -34070,8 +32919,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5914 components: - pos: -25.5,73.5 @@ -34079,8 +32926,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5915 components: - pos: -25.5,71.5 @@ -34088,8 +32933,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5916 components: - pos: -25.5,70.5 @@ -34097,8 +32940,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5917 components: - pos: -25.5,69.5 @@ -34106,8 +32947,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5918 components: - pos: -25.5,68.5 @@ -34115,8 +32954,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5919 components: - pos: -25.5,67.5 @@ -34124,15 +32961,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5920 components: - pos: -27.5,59.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5921 components: - pos: -27.5,60.5 @@ -34140,8 +32973,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5922 components: - pos: -27.5,61.5 @@ -34149,8 +32980,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5923 components: - pos: -27.5,62.5 @@ -34158,8 +32987,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5924 components: - pos: -27.5,63.5 @@ -34167,8 +32994,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5925 components: - pos: -27.5,64.5 @@ -34176,22 +33001,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5926 components: - pos: -21.5,65.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5927 components: - pos: -22.5,65.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5928 components: - pos: -23.5,65.5 @@ -34199,8 +33018,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5929 components: - pos: -24.5,65.5 @@ -34208,8 +33025,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5930 components: - pos: -34.5,59.5 @@ -34217,218 +33032,156 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5931 components: - pos: -34.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5932 components: - pos: -35.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5933 components: - pos: -36.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5934 components: - pos: -37.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5935 components: - pos: -37.5,57.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5936 components: - pos: -37.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5937 components: - pos: -37.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5938 components: - pos: -37.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5939 components: - pos: -37.5,53.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5940 components: - pos: -33.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5941 components: - pos: -32.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5942 components: - pos: -31.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5943 components: - pos: -31.5,57.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5944 components: - pos: -31.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5945 components: - pos: -31.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5946 components: - pos: -31.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5947 components: - pos: -31.5,53.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5948 components: - pos: -31.5,52.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5949 components: - pos: -31.5,51.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5950 components: - pos: -31.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5951 components: - pos: -32.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5952 components: - pos: -32.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5953 components: - pos: -32.5,48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5954 components: - pos: -32.5,47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5955 components: - pos: -32.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5956 components: - pos: -32.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5957 components: - pos: -32.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5958 components: - pos: -32.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5959 components: - pos: -31.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5960 components: - pos: -33.5,59.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5961 components: - pos: -33.5,60.5 @@ -34436,8 +33189,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5962 components: - pos: -33.5,61.5 @@ -34445,8 +33196,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5963 components: - pos: -33.5,62.5 @@ -34454,8 +33203,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5964 components: - pos: -33.5,63.5 @@ -34463,8 +33210,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5965 components: - pos: -33.5,64.5 @@ -34472,8 +33217,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5966 components: - pos: -33.5,65.5 @@ -34481,8 +33224,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5967 components: - pos: -34.5,65.5 @@ -34490,8 +33231,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5968 components: - pos: -34.5,66.5 @@ -34499,8 +33238,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5969 components: - pos: -34.5,67.5 @@ -34508,8 +33245,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5970 components: - pos: -35.5,67.5 @@ -34517,8 +33252,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5971 components: - pos: -36.5,67.5 @@ -34526,8 +33259,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5972 components: - pos: -37.5,67.5 @@ -34535,8 +33266,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5973 components: - pos: -38.5,67.5 @@ -34544,8 +33273,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5974 components: - pos: -32.5,65.5 @@ -34553,8 +33280,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5975 components: - pos: -31.5,65.5 @@ -34562,8 +33287,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5976 components: - pos: -30.5,65.5 @@ -34571,8 +33294,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5977 components: - pos: -29.5,65.5 @@ -34580,8 +33301,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5978 components: - pos: -26.5,73.5 @@ -34589,8 +33308,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5979 components: - pos: -27.5,73.5 @@ -34598,8 +33315,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5980 components: - pos: -28.5,73.5 @@ -34607,15 +33322,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5981 components: - pos: -29.5,73.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 5982 components: - pos: -30.5,73.5 @@ -34623,8 +33334,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5983 components: - pos: -30.5,72.5 @@ -34632,8 +33341,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5984 components: - pos: -30.5,74.5 @@ -34641,8 +33348,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5985 components: - pos: -30.5,66.5 @@ -34650,8 +33355,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5986 components: - pos: -30.5,67.5 @@ -34659,155 +33362,111 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5987 components: - pos: -30.5,68.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6178 components: - pos: -24.5,42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6179 components: - pos: -24.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6180 components: - pos: -24.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6181 components: - pos: -24.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6182 components: - pos: -25.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6183 components: - pos: -26.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6184 components: - pos: -27.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6185 components: - pos: -27.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6186 components: - pos: -27.5,47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6187 components: - pos: -27.5,48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6188 components: - pos: -27.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6189 components: - pos: -26.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6190 components: - pos: -23.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6191 components: - pos: -22.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6192 components: - pos: -21.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6193 components: - pos: -20.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6194 components: - pos: -19.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6195 components: - pos: -19.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6196 components: - pos: -19.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6197 components: - pos: -11.5,42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6198 components: - pos: -11.5,43.5 @@ -34815,43 +33474,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6199 components: - pos: -11.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6200 components: - pos: -11.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6201 components: - pos: -12.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6202 components: - pos: -13.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6203 components: - pos: -8.5,42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6204 components: - pos: -8.5,43.5 @@ -34859,99 +33506,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6205 components: - pos: -8.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6206 components: - pos: -8.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6207 components: - pos: -9.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6208 components: - pos: -10.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6209 components: - pos: -7.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6210 components: - pos: -14.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6211 components: - pos: -18.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6212 components: - pos: -4.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6213 components: - pos: -4.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6214 components: - pos: -4.5,48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6215 components: - pos: -4.5,47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6216 components: - pos: -4.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6217 components: - pos: -4.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6384 components: - pos: -30.5,64.5 @@ -34959,8 +33578,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6385 components: - pos: -30.5,63.5 @@ -34968,8 +33585,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6386 components: - pos: -30.5,62.5 @@ -34977,8 +33592,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6387 components: - pos: -30.5,61.5 @@ -34986,22 +33599,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6773 components: - pos: -7.5,69.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6774 components: - pos: -8.5,69.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6775 components: - pos: -6.5,69.5 @@ -35009,36 +33616,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6776 components: - pos: -5.5,69.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6777 components: - pos: -4.5,69.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6778 components: - pos: -4.5,70.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6779 components: - pos: -4.5,71.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6780 components: - pos: -4.5,72.5 @@ -35046,8 +33643,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6781 components: - pos: -4.5,73.5 @@ -35055,8 +33650,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6782 components: - pos: -4.5,74.5 @@ -35064,8 +33657,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6783 components: - pos: -4.5,75.5 @@ -35073,15 +33664,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6784 components: - pos: -4.5,68.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6825 components: - pos: 6.5,31.5 @@ -35089,365 +33676,261 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6826 components: - pos: 6.5,30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6827 components: - pos: 6.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6828 components: - pos: 6.5,28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6829 components: - pos: 6.5,27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6830 components: - pos: 6.5,26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6831 components: - pos: 6.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6832 components: - pos: 6.5,24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6833 components: - pos: 6.5,23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6834 components: - pos: 6.5,22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6835 components: - pos: 6.5,21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6836 components: - pos: 5.5,22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6837 components: - pos: 4.5,22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6838 components: - pos: 3.5,22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6839 components: - pos: 2.5,22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6840 components: - pos: 1.5,22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6841 components: - pos: 0.5,22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6842 components: - pos: -0.5,22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6843 components: - pos: 3.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6844 components: - pos: 2.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6845 components: - pos: 1.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6846 components: - pos: 0.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6847 components: - pos: -0.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6848 components: - pos: -0.5,11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6849 components: - pos: -0.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6850 components: - pos: -0.5,9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6851 components: - pos: -0.5,8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6852 components: - pos: -0.5,13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6853 components: - pos: -0.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6854 components: - pos: -0.5,15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6855 components: - pos: -0.5,16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6856 components: - pos: -0.5,17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6857 components: - pos: -0.5,21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6858 components: - pos: -0.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6859 components: - pos: -0.5,23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6860 components: - pos: -0.5,24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6861 components: - pos: -0.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6862 components: - pos: -0.5,26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6863 components: - pos: -0.5,27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6864 components: - pos: -0.5,28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6865 components: - pos: -0.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6866 components: - pos: -0.5,30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6867 components: - pos: 5.5,28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6868 components: - pos: 4.5,28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6869 components: - pos: 3.5,28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6870 components: - pos: 2.5,28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6871 components: - pos: 1.5,28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6872 components: - pos: 0.5,28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6873 components: - pos: 5.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6874 components: - pos: 4.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6875 components: - pos: 3.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6876 components: - pos: -3.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6877 components: - pos: -2.5,35.5 @@ -35455,113 +33938,81 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6878 components: - pos: -1.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6879 components: - pos: -0.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6880 components: - pos: -0.5,34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6881 components: - pos: -0.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6882 components: - pos: -0.5,36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6883 components: - pos: -0.5,37.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6884 components: - pos: -0.5,38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6885 components: - pos: -0.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6886 components: - pos: -0.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6887 components: - pos: -0.5,41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6888 components: - pos: -0.5,42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6889 components: - pos: -0.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6890 components: - pos: -0.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6891 components: - pos: -0.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6892 components: - pos: -1.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8687 components: - pos: 36.5,23.5 @@ -35569,120 +34020,86 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8688 components: - pos: 36.5,22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8689 components: - pos: 36.5,21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8690 components: - pos: 36.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8691 components: - pos: 36.5,19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8692 components: - pos: 36.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8693 components: - pos: 37.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8694 components: - pos: 38.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8695 components: - pos: 38.5,19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8696 components: - pos: 38.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8697 components: - pos: 38.5,21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8698 components: - pos: 38.5,22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8699 components: - pos: 38.5,23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8700 components: - pos: 38.5,24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8701 components: - pos: 38.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8702 components: - pos: 35.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8703 components: - pos: 34.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8704 components: - pos: 34.5,19.5 @@ -35690,8 +34107,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8705 components: - pos: 34.5,17.5 @@ -35699,8 +34114,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8706 components: - pos: 26.5,20.5 @@ -35708,106 +34121,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8707 components: - pos: 27.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8708 components: - pos: 28.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8709 components: - pos: 29.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8710 components: - pos: 30.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8711 components: - pos: 31.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8712 components: - pos: 32.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8713 components: - pos: 32.5,19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8714 components: - pos: 32.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8715 components: - pos: 32.5,17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8716 components: - pos: 31.5,17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8717 components: - pos: 30.5,17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8718 components: - pos: 29.5,17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8719 components: - pos: 28.5,17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8720 components: - pos: 27.5,17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8721 components: - pos: 26.5,17.5 @@ -35815,15 +34198,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8722 components: - pos: 26.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8723 components: - pos: 26.5,19.5 @@ -35831,15 +34210,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8724 components: - pos: 27.5,16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8725 components: - pos: 27.5,15.5 @@ -35847,15 +34222,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8726 components: - pos: 27.5,21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8727 components: - pos: 26.5,21.5 @@ -35863,8 +34234,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8728 components: - pos: 26.5,22.5 @@ -35872,29 +34241,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8729 components: - pos: 27.5,22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8730 components: - pos: 27.5,23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8731 components: - pos: 27.5,24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8732 components: - pos: 26.5,24.5 @@ -35902,15 +34263,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8733 components: - pos: 26.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8734 components: - pos: 26.5,26.5 @@ -35918,141 +34275,101 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8735 components: - pos: 27.5,26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8736 components: - pos: 28.5,26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8737 components: - pos: 29.5,26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8738 components: - pos: 30.5,26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8739 components: - pos: 31.5,26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8740 components: - pos: 32.5,26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8741 components: - pos: 32.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8742 components: - pos: 33.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8743 components: - pos: 32.5,24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8744 components: - pos: 32.5,23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8745 components: - pos: 32.5,22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8746 components: - pos: 32.5,21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8747 components: - pos: 30.5,21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8748 components: - pos: 30.5,22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8749 components: - pos: 30.5,23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8750 components: - pos: 30.5,27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8751 components: - pos: 30.5,28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8752 components: - pos: 30.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8753 components: - pos: 31.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8754 components: - pos: 32.5,29.5 @@ -36060,8 +34377,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8755 components: - pos: 33.5,29.5 @@ -36069,8 +34384,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8756 components: - pos: 34.5,29.5 @@ -36078,8 +34391,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8757 components: - pos: 35.5,29.5 @@ -36087,8 +34398,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8758 components: - pos: 36.5,29.5 @@ -36096,8 +34405,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8759 components: - pos: 37.5,29.5 @@ -36105,43 +34412,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8760 components: - pos: 38.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8761 components: - pos: 27.5,27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8762 components: - pos: 27.5,28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8763 components: - pos: 27.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8764 components: - pos: 28.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8765 components: - pos: 19.5,27.5 @@ -36149,71 +34444,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8766 components: - pos: 19.5,26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8767 components: - pos: 19.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8768 components: - pos: 20.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8769 components: - pos: 21.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8770 components: - pos: 22.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8771 components: - pos: 23.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8772 components: - pos: 24.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8773 components: - pos: 24.5,26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8774 components: - pos: 24.5,27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8775 components: - pos: 24.5,28.5 @@ -36221,8 +34496,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8776 components: - pos: 24.5,29.5 @@ -36230,8 +34503,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8777 components: - pos: 24.5,30.5 @@ -36239,8 +34510,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8778 components: - pos: 24.5,31.5 @@ -36248,50 +34517,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8779 components: - pos: 18.5,26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8780 components: - pos: 17.5,26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8781 components: - pos: 18.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8782 components: - pos: 18.5,24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8783 components: - pos: 18.5,23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8784 components: - pos: 18.5,22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8785 components: - pos: 19.5,22.5 @@ -36299,8 +34554,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8786 components: - pos: 19.5,23.5 @@ -36308,8 +34561,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8787 components: - pos: 19.5,21.5 @@ -36317,71 +34568,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8788 components: - pos: 17.5,22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8789 components: - pos: 16.5,22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8790 components: - pos: 20.5,22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8791 components: - pos: 21.5,22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8792 components: - pos: 24.5,24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8793 components: - pos: 24.5,23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8794 components: - pos: 24.5,22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8795 components: - pos: 23.5,22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8796 components: - pos: 22.5,22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8797 components: - pos: 21.5,16.5 @@ -36389,155 +34620,111 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8798 components: - pos: 21.5,15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8799 components: - pos: 21.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8800 components: - pos: 21.5,13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8801 components: - pos: 21.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8802 components: - pos: 21.5,11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8803 components: - pos: 21.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8804 components: - pos: 20.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8805 components: - pos: 19.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8806 components: - pos: 18.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8807 components: - pos: 17.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8808 components: - pos: 16.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8809 components: - pos: 15.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8810 components: - pos: 15.5,11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8811 components: - pos: 15.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8812 components: - pos: 15.5,13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8813 components: - pos: 15.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8814 components: - pos: 16.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8815 components: - pos: 17.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8816 components: - pos: 18.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8817 components: - pos: 19.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8818 components: - pos: 20.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8819 components: - pos: 22.5,12.5 @@ -36545,78 +34732,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8820 components: - pos: 21.5,17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8821 components: - pos: 21.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8822 components: - pos: 20.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8823 components: - pos: 19.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8824 components: - pos: 18.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8825 components: - pos: 22.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8826 components: - pos: 23.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8827 components: - pos: 24.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8828 components: - pos: 24.5,17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8829 components: - pos: 24.5,16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8830 components: - pos: 24.5,15.5 @@ -36624,50 +34789,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8831 components: - pos: 24.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8832 components: - pos: 24.5,13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8833 components: - pos: 24.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8834 components: - pos: 24.5,11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8835 components: - pos: 24.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8836 components: - pos: 24.5,9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8837 components: - pos: 32.5,8.5 @@ -36675,162 +34826,116 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8838 components: - pos: 32.5,7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8839 components: - pos: 32.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8840 components: - pos: 31.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8841 components: - pos: 30.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8842 components: - pos: 29.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8843 components: - pos: 28.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8844 components: - pos: 27.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8845 components: - pos: 26.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8846 components: - pos: 25.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8847 components: - pos: 24.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8848 components: - pos: 23.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8849 components: - pos: 22.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8850 components: - pos: 21.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8851 components: - pos: 20.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8852 components: - pos: 19.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8853 components: - pos: 19.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8854 components: - pos: 19.5,4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8855 components: - pos: 19.5,3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8856 components: - pos: 19.5,2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8857 components: - pos: 20.5,2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8858 components: - pos: 21.5,2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8859 components: - pos: 24.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8860 components: - pos: 24.5,4.5 @@ -36838,8 +34943,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8861 components: - pos: 24.5,3.5 @@ -36847,8 +34950,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8862 components: - pos: 24.5,2.5 @@ -36856,8 +34957,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8863 components: - pos: 24.5,1.5 @@ -36865,8 +34964,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8864 components: - pos: 24.5,0.5 @@ -36874,15 +34971,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8865 components: - pos: 27.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8866 components: - pos: 27.5,4.5 @@ -36890,29 +34983,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8867 components: - pos: 27.5,3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8868 components: - pos: 27.5,2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8869 components: - pos: 27.5,1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8870 components: - pos: 27.5,0.5 @@ -36920,8 +35005,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8871 components: - pos: 28.5,0.5 @@ -36929,15 +35012,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8872 components: - pos: 30.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8873 components: - pos: 30.5,4.5 @@ -36945,29 +35024,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8874 components: - pos: 30.5,3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8875 components: - pos: 30.5,2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8876 components: - pos: 30.5,1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8877 components: - pos: 30.5,0.5 @@ -36975,8 +35046,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8878 components: - pos: 31.5,0.5 @@ -36984,22 +35053,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8879 components: - pos: 33.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8880 components: - pos: 33.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8881 components: - pos: 33.5,4.5 @@ -37007,29 +35070,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8882 components: - pos: 33.5,3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8883 components: - pos: 33.5,2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8884 components: - pos: 33.5,1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8885 components: - pos: 33.5,0.5 @@ -37037,8 +35092,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8886 components: - pos: 34.5,0.5 @@ -37046,71 +35099,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8887 components: - pos: 34.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8888 components: - pos: 35.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8889 components: - pos: 36.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8890 components: - pos: 37.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8891 components: - pos: 37.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8892 components: - pos: 37.5,4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8893 components: - pos: 37.5,3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8894 components: - pos: 37.5,2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8895 components: - pos: 37.5,1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8896 components: - pos: 37.5,0.5 @@ -37118,8 +35151,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8897 components: - pos: 36.5,0.5 @@ -37127,8 +35158,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8898 components: - pos: 38.5,0.5 @@ -37136,8 +35165,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8899 components: - pos: 39.5,0.5 @@ -37145,8 +35172,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8900 components: - pos: 38.5,4.5 @@ -37154,8 +35179,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8901 components: - pos: 39.5,4.5 @@ -37163,8 +35186,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8902 components: - pos: 36.5,4.5 @@ -37172,8 +35193,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8903 components: - pos: 30.5,15.5 @@ -37181,57 +35200,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8904 components: - pos: 30.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8905 components: - pos: 30.5,13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8906 components: - pos: 30.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8907 components: - pos: 30.5,11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8908 components: - pos: 29.5,11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8909 components: - pos: 29.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8910 components: - pos: 29.5,9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8911 components: - pos: 29.5,8.5 @@ -37239,15 +35242,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8912 components: - pos: 28.5,8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8913 components: - pos: 27.5,8.5 @@ -37255,15 +35254,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8914 components: - pos: 27.5,9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8915 components: - pos: 26.5,9.5 @@ -37271,8 +35266,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8916 components: - pos: 26.5,10.5 @@ -37280,29 +35273,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8917 components: - pos: 29.5,13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8918 components: - pos: 28.5,13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8919 components: - pos: 27.5,13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8920 components: - pos: 26.5,13.5 @@ -37310,8 +35295,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8921 components: - pos: 26.5,14.5 @@ -37319,15 +35302,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8922 components: - pos: 31.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8923 components: - pos: 32.5,12.5 @@ -37335,8 +35314,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8924 components: - pos: 32.5,11.5 @@ -37344,8 +35321,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8926 components: - pos: 34.5,8.5 @@ -37353,50 +35328,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8927 components: - pos: 34.5,9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8928 components: - pos: 34.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8929 components: - pos: 34.5,11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8930 components: - pos: 34.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8931 components: - pos: 34.5,13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8932 components: - pos: 34.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8933 components: - pos: 34.5,15.5 @@ -37404,8 +35365,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8934 components: - pos: 36.5,8.5 @@ -37413,36 +35372,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8935 components: - pos: 36.5,9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8936 components: - pos: 35.5,9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8937 components: - pos: 35.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8938 components: - pos: 36.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8939 components: - pos: 37.5,12.5 @@ -37450,15 +35399,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8940 components: - pos: 37.5,13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8941 components: - pos: 44.5,6.5 @@ -37466,8 +35411,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8942 components: - pos: 37.5,14.5 @@ -37475,36 +35418,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8943 components: - pos: 38.5,13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8944 components: - pos: 43.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8945 components: - pos: 42.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8946 components: - pos: 41.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8947 components: - pos: 40.5,6.5 @@ -37512,22 +35445,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8948 components: - pos: 40.5,7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8949 components: - pos: 39.5,7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8950 components: - pos: 39.5,8.5 @@ -37535,197 +35462,141 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8951 components: - pos: 42.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8952 components: - pos: 42.5,4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8953 components: - pos: 42.5,3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8954 components: - pos: 42.5,2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8955 components: - pos: 42.5,1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8956 components: - pos: 43.5,2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8957 components: - pos: 44.5,2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8958 components: - pos: 45.5,2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8959 components: - pos: 46.5,2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8960 components: - pos: 47.5,2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8961 components: - pos: 42.5,7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8962 components: - pos: 42.5,8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8963 components: - pos: 42.5,9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8964 components: - pos: 42.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8965 components: - pos: 43.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8966 components: - pos: 44.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8967 components: - pos: 45.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8968 components: - pos: 47.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8969 components: - pos: 48.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8970 components: - pos: 49.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8971 components: - pos: 50.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8972 components: - pos: 50.5,9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8973 components: - pos: 50.5,8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8974 components: - pos: 50.5,7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8975 components: - pos: 50.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8976 components: - pos: 50.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8977 components: - pos: 49.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8978 components: - pos: 48.5,6.5 @@ -37733,15 +35604,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8979 components: - pos: 51.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8980 components: - pos: 52.5,6.5 @@ -37749,162 +35616,116 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8981 components: - pos: 50.5,4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8982 components: - pos: 50.5,3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8983 components: - pos: 50.5,11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8984 components: - pos: 50.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8985 components: - pos: 50.5,13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8986 components: - pos: 50.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8987 components: - pos: 50.5,15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8988 components: - pos: 47.5,11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8989 components: - pos: 47.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8990 components: - pos: 47.5,13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8991 components: - pos: 47.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8992 components: - pos: 47.5,15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8993 components: - pos: 45.5,11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8994 components: - pos: 45.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8995 components: - pos: 45.5,13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8996 components: - pos: 45.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8997 components: - pos: 45.5,15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8998 components: - pos: 42.5,11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 8999 components: - pos: 42.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9000 components: - pos: 42.5,13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9001 components: - pos: 42.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9002 components: - pos: 42.5,15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9003 components: - pos: 43.5,16.5 @@ -37912,309 +35733,221 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9004 components: - pos: 43.5,17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9005 components: - pos: 43.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9006 components: - pos: 43.5,19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9007 components: - pos: 43.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9008 components: - pos: 43.5,21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9009 components: - pos: 43.5,22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9010 components: - pos: 43.5,23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9011 components: - pos: 43.5,24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9012 components: - pos: 43.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9013 components: - pos: 44.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9014 components: - pos: 45.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9015 components: - pos: 46.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9016 components: - pos: 46.5,26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9017 components: - pos: 46.5,27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9018 components: - pos: 46.5,28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9019 components: - pos: 47.5,27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9020 components: - pos: 48.5,27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9021 components: - pos: 49.5,27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9022 components: - pos: 45.5,28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9023 components: - pos: 44.5,28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9024 components: - pos: 43.5,28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9025 components: - pos: 42.5,28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9026 components: - pos: 47.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9027 components: - pos: 48.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9028 components: - pos: 49.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9029 components: - pos: 49.5,24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9030 components: - pos: 49.5,23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9031 components: - pos: 49.5,22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9032 components: - pos: 49.5,21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9033 components: - pos: 49.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9034 components: - pos: 49.5,19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9035 components: - pos: 49.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9036 components: - pos: 49.5,17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9037 components: - pos: 48.5,17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9038 components: - pos: 47.5,17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9039 components: - pos: 46.5,17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9040 components: - pos: 45.5,17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9041 components: - pos: 44.5,17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9042 components: - pos: 46.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9043 components: - pos: 46.5,19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9044 components: - pos: 46.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9045 components: - pos: 46.5,21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9046 components: - pos: 46.5,22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10794 components: - pos: 12.5,0.5 @@ -38222,71 +35955,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10795 components: - pos: 11.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10796 components: - pos: 10.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10797 components: - pos: 9.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10798 components: - pos: 8.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10799 components: - pos: 8.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10800 components: - pos: 8.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10801 components: - pos: 13.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10802 components: - pos: 13.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10803 components: - pos: 13.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10804 components: - pos: 12.5,2.5 @@ -38294,148 +36007,106 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10805 components: - pos: 13.5,2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10806 components: - pos: 13.5,3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10807 components: - pos: 13.5,4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10808 components: - pos: 11.5,2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10809 components: - pos: 11.5,2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10810 components: - pos: 10.5,2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10811 components: - pos: 9.5,2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10812 components: - pos: 8.5,2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10813 components: - pos: 8.5,3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10814 components: - pos: 8.5,4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10815 components: - pos: 7.5,3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10816 components: - pos: 7.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10817 components: - pos: 14.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10818 components: - pos: 15.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10819 components: - pos: 16.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10820 components: - pos: 14.5,3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10821 components: - pos: 15.5,3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10822 components: - pos: 16.5,3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10921 components: - pos: 5.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10922 components: - pos: 6.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10923 components: - pos: 7.5,10.5 @@ -38443,8 +36114,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10924 components: - pos: 8.5,10.5 @@ -38452,8 +36121,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10925 components: - pos: 9.5,10.5 @@ -38461,8 +36128,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10926 components: - pos: 9.5,11.5 @@ -38470,8 +36135,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10927 components: - pos: 9.5,12.5 @@ -38479,8 +36142,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10928 components: - pos: 9.5,13.5 @@ -38488,8 +36149,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10929 components: - pos: 9.5,14.5 @@ -38497,8 +36156,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10930 components: - pos: 9.5,15.5 @@ -38506,8 +36163,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10931 components: - pos: 9.5,16.5 @@ -38515,8 +36170,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10932 components: - pos: 10.5,16.5 @@ -38524,8 +36177,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10933 components: - pos: 11.5,16.5 @@ -38533,8 +36184,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10934 components: - pos: 12.5,16.5 @@ -38542,8 +36191,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10935 components: - pos: 4.5,15.5 @@ -38551,8 +36198,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10936 components: - pos: 5.5,15.5 @@ -38560,8 +36205,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10937 components: - pos: 6.5,15.5 @@ -38569,8 +36212,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10938 components: - pos: 7.5,15.5 @@ -38578,8 +36219,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10939 components: - pos: 8.5,15.5 @@ -38587,8 +36226,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10940 components: - pos: 5.5,16.5 @@ -38596,8 +36233,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10941 components: - pos: 5.5,17.5 @@ -38605,8 +36240,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10942 components: - pos: 5.5,18.5 @@ -38614,8 +36247,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10943 components: - pos: 9.5,9.5 @@ -38623,15 +36254,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10944 components: - pos: 7.5,22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10945 components: - pos: 8.5,22.5 @@ -38639,8 +36266,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10946 components: - pos: 9.5,22.5 @@ -38648,8 +36273,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10947 components: - pos: 10.5,22.5 @@ -38657,8 +36280,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10948 components: - pos: 11.5,22.5 @@ -38666,8 +36287,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10949 components: - pos: 12.5,22.5 @@ -38675,8 +36294,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10950 components: - pos: 12.5,23.5 @@ -38684,15 +36301,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10951 components: - pos: 7.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10952 components: - pos: 8.5,29.5 @@ -38700,8 +36313,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10953 components: - pos: 9.5,29.5 @@ -38709,8 +36320,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10954 components: - pos: 10.5,29.5 @@ -38718,8 +36327,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10955 components: - pos: 9.5,30.5 @@ -38727,22 +36334,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10956 components: - pos: 18.5,27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10957 components: - pos: 18.5,28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10958 components: - pos: 18.5,29.5 @@ -38750,8 +36351,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10959 components: - pos: 19.5,29.5 @@ -38759,8 +36358,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10960 components: - pos: 19.5,30.5 @@ -38768,8 +36365,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10961 components: - pos: 17.5,29.5 @@ -38777,8 +36372,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10962 components: - pos: 16.5,29.5 @@ -38786,8 +36379,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10963 components: - pos: 15.5,29.5 @@ -38795,8 +36386,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10964 components: - pos: 14.5,29.5 @@ -38804,8 +36393,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10965 components: - pos: 14.5,28.5 @@ -38813,8 +36400,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10966 components: - pos: 14.5,27.5 @@ -38822,8 +36407,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11156 components: - pos: -6.5,-24.5 @@ -38831,43 +36414,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11157 components: - pos: -5.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11158 components: - pos: -4.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11159 components: - pos: -4.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11160 components: - pos: -4.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11161 components: - pos: -4.5,-27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11162 components: - pos: -4.5,-28.5 @@ -38875,8 +36446,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11163 components: - pos: -3.5,-28.5 @@ -38884,8 +36453,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11164 components: - pos: -5.5,-28.5 @@ -38893,8 +36460,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11165 components: - pos: -2.5,-23.5 @@ -38902,92 +36467,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11166 components: - pos: -1.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11167 components: - pos: -0.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11168 components: - pos: 0.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11169 components: - pos: 0.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11170 components: - pos: 0.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11171 components: - pos: 0.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11172 components: - pos: 0.5,-27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11173 components: - pos: 1.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11174 components: - pos: 2.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11175 components: - pos: 1.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11176 components: - pos: 2.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11177 components: - pos: -0.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11178 components: - pos: -3.5,-21.5 @@ -38995,78 +36534,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11179 components: - pos: -2.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11180 components: - pos: -1.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11181 components: - pos: -0.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11182 components: - pos: 0.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11183 components: - pos: 1.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11184 components: - pos: 2.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11185 components: - pos: 3.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11186 components: - pos: -1.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11187 components: - pos: -1.5,-19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11188 components: - pos: -1.5,-18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11189 components: - pos: -4.5,-21.5 @@ -39074,8 +36591,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11190 components: - pos: -4.5,-20.5 @@ -39083,8 +36598,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11191 components: - pos: -5.5,-20.5 @@ -39092,8 +36605,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11192 components: - pos: -6.5,-20.5 @@ -39101,8 +36612,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11193 components: - pos: -7.5,-20.5 @@ -39110,8 +36619,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11194 components: - pos: -8.5,-20.5 @@ -39119,8 +36626,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11195 components: - pos: -4.5,-15.5 @@ -39128,141 +36633,101 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11196 components: - pos: -3.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11197 components: - pos: -2.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11198 components: - pos: -1.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11199 components: - pos: -0.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11200 components: - pos: -2.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11201 components: - pos: -2.5,-14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11202 components: - pos: -2.5,-13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11203 components: - pos: -2.5,-12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11204 components: - pos: -2.5,-11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11205 components: - pos: -2.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11206 components: - pos: -2.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11207 components: - pos: -3.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11208 components: - pos: -3.5,-8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11209 components: - pos: -1.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11210 components: - pos: -0.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11211 components: - pos: 0.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11212 components: - pos: -1.5,-12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11213 components: - pos: -0.5,-12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11214 components: - pos: 0.5,-12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11215 components: - pos: -4.5,-15.5 @@ -39270,8 +36735,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11216 components: - pos: -5.5,-15.5 @@ -39279,8 +36742,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11217 components: - pos: -5.5,-16.5 @@ -39288,8 +36749,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11218 components: - pos: -5.5,-17.5 @@ -39297,8 +36756,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11219 components: - pos: -5.5,-14.5 @@ -39306,8 +36763,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11220 components: - pos: -5.5,-13.5 @@ -39315,8 +36770,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11221 components: - pos: -5.5,-12.5 @@ -39324,8 +36777,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11222 components: - pos: -5.5,-11.5 @@ -39333,8 +36784,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11223 components: - pos: -5.5,-10.5 @@ -39342,8 +36791,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11224 components: - pos: -5.5,-9.5 @@ -39351,8 +36798,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11225 components: - pos: -5.5,-8.5 @@ -39360,8 +36805,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11286 components: - pos: 9.5,-19.5 @@ -39369,232 +36812,166 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11287 components: - pos: 9.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11288 components: - pos: 9.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11289 components: - pos: 9.5,-22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11290 components: - pos: 9.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11291 components: - pos: 9.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11292 components: - pos: 9.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11293 components: - pos: 9.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11294 components: - pos: 9.5,-27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11295 components: - pos: 9.5,-28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11296 components: - pos: 9.5,-29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11297 components: - pos: 9.5,-30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11298 components: - pos: 9.5,-31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11299 components: - pos: 9.5,-32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11300 components: - pos: 9.5,-33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11301 components: - pos: 9.5,-34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11302 components: - pos: 9.5,-35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11303 components: - pos: 9.5,-36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11304 components: - pos: 9.5,-37.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11305 components: - pos: 8.5,-37.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11306 components: - pos: 7.5,-37.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11307 components: - pos: 6.5,-37.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11308 components: - pos: 5.5,-37.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11309 components: - pos: 4.5,-37.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11310 components: - pos: 3.5,-37.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11311 components: - pos: 2.5,-37.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11312 components: - pos: 8.5,-35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11313 components: - pos: 7.5,-35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11314 components: - pos: 6.5,-35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11315 components: - pos: 5.5,-35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11316 components: - pos: 4.5,-35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11317 components: - pos: 3.5,-35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11318 components: - pos: 2.5,-35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11319 components: - pos: 2.5,-34.5 @@ -39602,8 +36979,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11320 components: - pos: 2.5,-33.5 @@ -39611,8 +36986,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11321 components: - pos: 3.5,-33.5 @@ -39620,8 +36993,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11322 components: - pos: 2.5,-38.5 @@ -39629,8 +37000,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11323 components: - pos: 2.5,-39.5 @@ -39638,8 +37007,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11324 components: - pos: 3.5,-39.5 @@ -39647,15 +37014,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11325 components: - pos: 7.5,-38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11326 components: - pos: 7.5,-39.5 @@ -39663,8 +37026,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11327 components: - pos: 6.5,-39.5 @@ -39672,8 +37033,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11328 components: - pos: 8.5,-39.5 @@ -39681,8 +37040,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11329 components: - pos: 9.5,-39.5 @@ -39690,15 +37047,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11330 components: - pos: 10.5,-36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11331 components: - pos: 11.5,-36.5 @@ -39706,8 +37059,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11332 components: - pos: 11.5,-37.5 @@ -39715,8 +37066,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11333 components: - pos: 11.5,-35.5 @@ -39724,8 +37073,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11334 components: - pos: 11.5,-31.5 @@ -39733,15 +37080,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11335 components: - pos: 8.5,-27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11336 components: - pos: 11.5,-30.5 @@ -39749,8 +37092,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11337 components: - pos: 11.5,-32.5 @@ -39758,162 +37099,116 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11338 components: - pos: 10.5,-31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11339 components: - pos: 7.5,-27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11340 components: - pos: 6.5,-27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11341 components: - pos: 8.5,-31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11342 components: - pos: 7.5,-31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11343 components: - pos: 6.5,-31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11344 components: - pos: 10.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11345 components: - pos: 11.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11346 components: - pos: 12.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11347 components: - pos: 13.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11348 components: - pos: 14.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11349 components: - pos: 15.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11350 components: - pos: 10.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11351 components: - pos: 11.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11352 components: - pos: 12.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11353 components: - pos: 13.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11354 components: - pos: 14.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11355 components: - pos: 15.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11356 components: - pos: 8.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11357 components: - pos: 7.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11358 components: - pos: 8.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11359 components: - pos: 7.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11360 components: - pos: 10.5,-13.5 @@ -39921,106 +37216,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11361 components: - pos: 9.5,-13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11362 components: - pos: 8.5,-13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11363 components: - pos: 7.5,-13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11364 components: - pos: 8.5,-14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11365 components: - pos: 8.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11366 components: - pos: 8.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11367 components: - pos: 8.5,-17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11368 components: - pos: 7.5,-17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11369 components: - pos: 6.5,-17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11370 components: - pos: 5.5,-17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11371 components: - pos: 4.5,-17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11372 components: - pos: 3.5,-17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11373 components: - pos: 3.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11374 components: - pos: 3.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11375 components: - pos: 3.5,-14.5 @@ -40028,106 +37293,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11376 components: - pos: 3.5,-13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11377 components: - pos: 3.5,-12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11378 components: - pos: 3.5,-11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11379 components: - pos: 3.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11380 components: - pos: 3.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11381 components: - pos: 8.5,-12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11382 components: - pos: 8.5,-11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11383 components: - pos: 8.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11384 components: - pos: 8.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11385 components: - pos: 7.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11386 components: - pos: 6.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11387 components: - pos: 5.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11388 components: - pos: 4.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11389 components: - pos: 6.5,-13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11390 components: - pos: 6.5,-14.5 @@ -40135,8 +37370,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11391 components: - pos: 9.5,-14.5 @@ -40144,8 +37377,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11392 components: - pos: 14.5,-13.5 @@ -40153,57 +37384,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11393 components: - pos: 15.5,-13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11394 components: - pos: 16.5,-13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11395 components: - pos: 17.5,-13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11396 components: - pos: 18.5,-13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11397 components: - pos: 19.5,-13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11398 components: - pos: 20.5,-13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11399 components: - pos: 21.5,-13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11400 components: - pos: 22.5,-13.5 @@ -40211,8 +37426,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11401 components: - pos: 22.5,-14.5 @@ -40220,22 +37433,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11402 components: - pos: 21.5,-12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11403 components: - pos: 21.5,-11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11404 components: - pos: 22.5,-11.5 @@ -40243,22 +37450,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11405 components: - pos: 21.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11406 components: - pos: 21.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11407 components: - pos: 22.5,-9.5 @@ -40266,50 +37467,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11408 components: - pos: 20.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11409 components: - pos: 19.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11410 components: - pos: 18.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11411 components: - pos: 17.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11412 components: - pos: 16.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11413 components: - pos: 15.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11414 components: - pos: 14.5,-9.5 @@ -40317,50 +37504,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11415 components: - pos: 20.5,-11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11416 components: - pos: 19.5,-11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11417 components: - pos: 18.5,-11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11418 components: - pos: 17.5,-11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11419 components: - pos: 16.5,-11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11420 components: - pos: 15.5,-11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11421 components: - pos: 14.5,-11.5 @@ -40368,15 +37541,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11422 components: - pos: 9.5,-11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11423 components: - pos: 10.5,-11.5 @@ -40384,15 +37553,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11424 components: - pos: 9.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11425 components: - pos: 10.5,-9.5 @@ -40400,64 +37565,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11426 components: - pos: 15.5,-14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11427 components: - pos: 15.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11428 components: - pos: 14.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11429 components: - pos: 13.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11430 components: - pos: 12.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11431 components: - pos: 12.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11432 components: - pos: 12.5,-18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11433 components: - pos: 12.5,-17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11434 components: - pos: 16.5,-28.5 @@ -40465,36 +37612,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11435 components: - pos: 16.5,-29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11436 components: - pos: 16.5,-30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11437 components: - pos: 16.5,-31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11438 components: - pos: 16.5,-32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11439 components: - pos: 16.5,-33.5 @@ -40502,8 +37639,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11440 components: - pos: 16.5,-34.5 @@ -40511,8 +37646,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11441 components: - pos: 16.5,-35.5 @@ -40520,43 +37653,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11442 components: - pos: 15.5,-30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11443 components: - pos: 14.5,-30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11444 components: - pos: 13.5,-30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11445 components: - pos: 13.5,-31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11446 components: - pos: 13.5,-32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11447 components: - pos: 13.5,-33.5 @@ -40564,8 +37685,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11448 components: - pos: 15.5,-35.5 @@ -40573,8 +37692,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11449 components: - pos: 15.5,-34.5 @@ -40582,8 +37699,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11450 components: - pos: 17.5,-35.5 @@ -40591,8 +37706,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11451 components: - pos: 17.5,-36.5 @@ -40600,8 +37713,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11452 components: - pos: 18.5,-35.5 @@ -40609,8 +37720,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11453 components: - pos: 18.5,-34.5 @@ -40618,43 +37727,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11454 components: - pos: 17.5,-31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11455 components: - pos: 18.5,-31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11456 components: - pos: 19.5,-31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11457 components: - pos: 20.5,-31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11458 components: - pos: 20.5,-32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11459 components: - pos: 20.5,-33.5 @@ -40662,64 +37759,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11460 components: - pos: 20.5,-30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11461 components: - pos: 20.5,-29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11462 components: - pos: 20.5,-28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11463 components: - pos: 20.5,-27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11464 components: - pos: 20.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11465 components: - pos: 20.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11466 components: - pos: 20.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11467 components: - pos: 20.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11468 components: - pos: 20.5,-22.5 @@ -40727,8 +37806,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11469 components: - pos: 20.5,-21.5 @@ -40736,8 +37813,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11470 components: - pos: 19.5,-21.5 @@ -40745,8 +37820,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11471 components: - pos: 19.5,-20.5 @@ -40754,239 +37827,171 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11892 components: - pos: 24.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11893 components: - pos: 24.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11894 components: - pos: 24.5,-2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11895 components: - pos: 16.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11896 components: - pos: 16.5,-2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11897 components: - pos: 16.5,-3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11898 components: - pos: 16.5,-8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11899 components: - pos: 16.5,-7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11900 components: - pos: 16.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11901 components: - pos: 16.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11902 components: - pos: 15.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11903 components: - pos: 14.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11904 components: - pos: 13.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11905 components: - pos: 12.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11906 components: - pos: 17.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11907 components: - pos: 18.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11908 components: - pos: 19.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11909 components: - pos: 20.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11910 components: - pos: 21.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11911 components: - pos: 22.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11912 components: - pos: 23.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11913 components: - pos: 24.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11914 components: - pos: 8.5,-8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11915 components: - pos: 8.5,-7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11916 components: - pos: 8.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11917 components: - pos: 8.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11918 components: - pos: 9.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11919 components: - pos: 10.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11920 components: - pos: -3.5,-7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11921 components: - pos: -2.5,-7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11922 components: - pos: -0.5,-7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11924 components: - pos: 0.5,-7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11925 components: - pos: -1.5,-7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12005 components: - pos: -18.5,-14.5 @@ -40994,8 +37999,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12006 components: - pos: -18.5,-15.5 @@ -41003,8 +38006,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12007 components: - pos: -18.5,-16.5 @@ -41012,8 +38013,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12008 components: - pos: -19.5,-16.5 @@ -41021,134 +38020,96 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12009 components: - pos: -20.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12010 components: - pos: -21.5,-18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12011 components: - pos: -21.5,-19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12012 components: - pos: -20.5,-19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12013 components: - pos: -19.5,-19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12014 components: - pos: -21.5,-14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12015 components: - pos: -21.5,-13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12016 components: - pos: -21.5,-12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12017 components: - pos: -21.5,-11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12018 components: - pos: -21.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12019 components: - pos: -21.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12020 components: - pos: -21.5,-8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12021 components: - pos: -21.5,-7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12022 components: - pos: -21.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12023 components: - pos: -20.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12024 components: - pos: -19.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12025 components: - pos: -18.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12026 components: - pos: -18.5,-7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12100 components: - pos: -13.5,-17.5 @@ -41156,8 +38117,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12101 components: - pos: -13.5,-18.5 @@ -41165,8 +38124,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12102 components: - pos: -13.5,-19.5 @@ -41174,8 +38131,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12103 components: - pos: -13.5,-20.5 @@ -41183,8 +38138,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12104 components: - pos: -14.5,-20.5 @@ -41192,8 +38145,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12105 components: - pos: -15.5,-20.5 @@ -41201,8 +38152,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12106 components: - pos: -16.5,-20.5 @@ -41210,36 +38159,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12107 components: - pos: -17.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12108 components: - pos: -18.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12109 components: - pos: -19.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12110 components: - pos: -19.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12111 components: - pos: -20.5,-21.5 @@ -41247,22 +38186,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12112 components: - pos: -18.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12113 components: - pos: -18.5,-22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12114 components: - pos: -18.5,-23.5 @@ -41270,8 +38203,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12115 components: - pos: -12.5,-20.5 @@ -41279,8 +38210,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12116 components: - pos: -12.5,-21.5 @@ -41288,8 +38217,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12117 components: - pos: -12.5,-22.5 @@ -41297,8 +38224,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12118 components: - pos: -11.5,-22.5 @@ -41306,8 +38231,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12119 components: - pos: -10.5,-22.5 @@ -41315,8 +38238,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12120 components: - pos: -9.5,-22.5 @@ -41324,8 +38245,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12121 components: - pos: -9.5,-23.5 @@ -41333,8 +38252,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12122 components: - pos: -9.5,-24.5 @@ -41342,8 +38259,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12123 components: - pos: -9.5,-25.5 @@ -41351,8 +38266,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12124 components: - pos: -10.5,-25.5 @@ -41360,8 +38273,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12125 components: - pos: -11.5,-25.5 @@ -41369,8 +38280,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12126 components: - pos: -9.5,-21.5 @@ -41378,8 +38287,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12922 components: - pos: -41.5,-48.5 @@ -41387,141 +38294,101 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12923 components: - pos: -41.5,-49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12924 components: - pos: -41.5,-50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12925 components: - pos: -41.5,-51.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12926 components: - pos: -41.5,-52.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12927 components: - pos: -40.5,-52.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12928 components: - pos: -39.5,-52.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12929 components: - pos: -39.5,-53.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12930 components: - pos: -39.5,-54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12931 components: - pos: -39.5,-55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12932 components: - pos: -39.5,-56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12933 components: - pos: -39.5,-57.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12934 components: - pos: -39.5,-58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12935 components: - pos: -39.5,-59.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12936 components: - pos: -39.5,-60.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12937 components: - pos: -38.5,-60.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12938 components: - pos: -37.5,-60.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12939 components: - pos: -36.5,-60.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12940 components: - pos: -35.5,-60.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12941 components: - pos: -34.5,-60.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12942 components: - pos: -33.5,-60.5 @@ -41529,15 +38396,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12943 components: - pos: -32.5,-60.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12944 components: - pos: -31.5,-60.5 @@ -41545,8 +38408,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12945 components: - pos: -30.5,-60.5 @@ -41554,8 +38415,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12946 components: - pos: -29.5,-60.5 @@ -41563,15 +38422,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12947 components: - pos: -37.5,-61.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12948 components: - pos: -37.5,-62.5 @@ -41579,8 +38434,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12949 components: - pos: -37.5,-63.5 @@ -41588,15 +38441,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12950 components: - pos: -32.5,-61.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12951 components: - pos: -32.5,-62.5 @@ -41604,8 +38453,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12952 components: - pos: -32.5,-63.5 @@ -41613,50 +38460,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12953 components: - pos: -40.5,-58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12954 components: - pos: -41.5,-58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12955 components: - pos: -42.5,-58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12956 components: - pos: -43.5,-58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12957 components: - pos: -44.5,-58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12958 components: - pos: -45.5,-58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12959 components: - pos: -45.5,-59.5 @@ -41664,8 +38497,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12960 components: - pos: -45.5,-60.5 @@ -41673,8 +38504,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12961 components: - pos: -45.5,-61.5 @@ -41682,22 +38511,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12962 components: - pos: -40.5,-55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12963 components: - pos: -41.5,-55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12964 components: - pos: -42.5,-55.5 @@ -41705,8 +38528,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12965 components: - pos: -43.5,-55.5 @@ -41714,8 +38535,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12966 components: - pos: -44.5,-55.5 @@ -41723,36 +38542,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12967 components: - pos: -40.5,-50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12968 components: - pos: -38.5,-50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12969 components: - pos: -39.5,-50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12970 components: - pos: -42.5,-50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12971 components: - pos: -37.5,-38.5 @@ -41760,57 +38569,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12972 components: - pos: -38.5,-38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12973 components: - pos: -39.5,-38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12974 components: - pos: -39.5,-39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12975 components: - pos: -39.5,-40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12976 components: - pos: -39.5,-41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12977 components: - pos: -39.5,-42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12978 components: - pos: -39.5,-43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12979 components: - pos: -39.5,-44.5 @@ -41818,57 +38611,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12980 components: - pos: -39.5,-45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12981 components: - pos: -39.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12982 components: - pos: -38.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12983 components: - pos: -37.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12984 components: - pos: -36.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12985 components: - pos: -35.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12986 components: - pos: -34.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12987 components: - pos: -33.5,-46.5 @@ -41876,22 +38653,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12988 components: - pos: -32.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12989 components: - pos: -32.5,-47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12990 components: - pos: -31.5,-47.5 @@ -41899,8 +38670,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12991 components: - pos: -30.5,-47.5 @@ -41908,8 +38677,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12992 components: - pos: -29.5,-47.5 @@ -41917,204 +38684,146 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12993 components: - pos: -38.5,-40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12994 components: - pos: -37.5,-40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12995 components: - pos: -36.5,-40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12996 components: - pos: -35.5,-40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12997 components: - pos: -34.5,-40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12998 components: - pos: -33.5,-40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12999 components: - pos: -34.5,-41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13000 components: - pos: -34.5,-42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13001 components: - pos: -34.5,-43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13002 components: - pos: -33.5,-43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13003 components: - pos: -32.5,-43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13004 components: - pos: -31.5,-43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13005 components: - pos: -30.5,-43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13006 components: - pos: -30.5,-42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13007 components: - pos: -30.5,-41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13008 components: - pos: -30.5,-40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13009 components: - pos: -35.5,-43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13010 components: - pos: -39.5,-37.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13011 components: - pos: -39.5,-36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13012 components: - pos: -39.5,-35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13013 components: - pos: -39.5,-34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13014 components: - pos: -39.5,-33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13015 components: - pos: -39.5,-32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13016 components: - pos: -39.5,-31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13017 components: - pos: -39.5,-30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13018 components: - pos: -39.5,-29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13019 components: - pos: -39.5,-28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13020 components: - pos: -40.5,-32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13021 components: - pos: -41.5,-32.5 @@ -42122,8 +38831,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13022 components: - pos: -42.5,-32.5 @@ -42131,15 +38838,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13023 components: - pos: -40.5,-39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13024 components: - pos: -41.5,-39.5 @@ -42147,8 +38850,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13025 components: - pos: -42.5,-39.5 @@ -42156,22 +38857,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13249 components: - pos: -37.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13253 components: - pos: -37.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13254 components: - pos: -37.5,-7.5 @@ -42179,8 +38874,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13255 components: - pos: -37.5,-8.5 @@ -42188,204 +38881,146 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13302 components: - pos: 23.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13303 components: - pos: 22.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13304 components: - pos: 21.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13305 components: - pos: 20.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13306 components: - pos: 19.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13307 components: - pos: 18.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13401 components: - pos: -38.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13406 components: - pos: -37.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13407 components: - pos: -36.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13408 components: - pos: -35.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13409 components: - pos: -34.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13410 components: - pos: -33.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13411 components: - pos: -32.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13412 components: - pos: -31.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13413 components: - pos: -30.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13414 components: - pos: -29.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13415 components: - pos: -28.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13416 components: - pos: -27.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13417 components: - pos: -26.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13418 components: - pos: -25.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13419 components: - pos: -24.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13420 components: - pos: -24.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13422 components: - pos: -23.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13423 components: - pos: -22.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13424 components: - pos: -21.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13425 components: - pos: -21.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13426 components: - pos: -21.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13427 components: - pos: -21.5,-22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13428 components: - pos: -30.5,-21.5 @@ -42393,8 +39028,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13429 components: - pos: -30.5,-22.5 @@ -42402,8 +39035,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13430 components: - pos: -30.5,-23.5 @@ -42411,22 +39042,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13431 components: - pos: -30.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13432 components: - pos: -21.5,-17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13433 components: - pos: -30.5,-9.5 @@ -42434,8 +39059,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13434 components: - pos: -30.5,-8.5 @@ -42443,8 +39066,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13435 components: - pos: -30.5,-7.5 @@ -42452,92 +39073,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13436 components: - pos: -30.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13437 components: - pos: -30.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13441 components: - pos: -38.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13442 components: - pos: -38.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13443 components: - pos: -37.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13444 components: - pos: -36.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13445 components: - pos: -35.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13446 components: - pos: -34.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13447 components: - pos: -33.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13448 components: - pos: -32.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13449 components: - pos: -31.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13450 components: - pos: -36.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13451 components: - pos: -36.5,-3.5 @@ -42545,57 +39140,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13452 components: - pos: -29.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13453 components: - pos: -28.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13454 components: - pos: -27.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13455 components: - pos: -26.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13456 components: - pos: -25.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13457 components: - pos: -24.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13458 components: - pos: -23.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13528 components: - pos: -29.5,-23.5 @@ -42603,22 +39182,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13619 components: - pos: -22.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13620 components: - pos: -22.5,-27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13621 components: - pos: -22.5,-28.5 @@ -42626,8 +39199,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13622 components: - pos: -22.5,-29.5 @@ -42635,8 +39206,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13623 components: - pos: -22.5,-30.5 @@ -42644,64 +39213,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13624 components: - pos: -20.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13625 components: - pos: -19.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13626 components: - pos: -18.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13627 components: - pos: -17.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13628 components: - pos: -16.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13629 components: - pos: -15.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13630 components: - pos: -14.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13631 components: - pos: -16.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13632 components: - pos: -16.5,-27.5 @@ -42709,8 +39260,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13633 components: - pos: -16.5,-28.5 @@ -42718,8 +39267,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13634 components: - pos: -16.5,-29.5 @@ -42727,15 +39274,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13635 components: - pos: -28.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13636 components: - pos: -28.5,-27.5 @@ -42743,8 +39286,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13637 components: - pos: -28.5,-28.5 @@ -42752,8 +39293,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13638 components: - pos: -28.5,-29.5 @@ -42761,15 +39300,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13639 components: - pos: -33.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13640 components: - pos: -33.5,-27.5 @@ -42777,8 +39312,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13641 components: - pos: -33.5,-28.5 @@ -42786,8 +39319,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13642 components: - pos: -33.5,-29.5 @@ -42795,15 +39326,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13648 components: - pos: -35.5,-3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13649 components: - pos: -35.5,-2.5 @@ -42811,8 +39338,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13650 components: - pos: -35.5,-1.5 @@ -42820,8 +39345,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13651 components: - pos: -35.5,-0.5 @@ -42829,8 +39352,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13652 components: - pos: -35.5,0.5 @@ -42838,8 +39359,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13653 components: - pos: -35.5,1.5 @@ -42847,8 +39366,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13654 components: - pos: -36.5,1.5 @@ -42856,8 +39373,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13655 components: - pos: -37.5,1.5 @@ -42865,8 +39380,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13656 components: - pos: -38.5,1.5 @@ -42874,8 +39387,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13657 components: - pos: -39.5,1.5 @@ -42883,8 +39394,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13658 components: - pos: -40.5,1.5 @@ -42892,8 +39401,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13659 components: - pos: -41.5,1.5 @@ -42901,8 +39408,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13660 components: - pos: -42.5,1.5 @@ -42910,8 +39415,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13661 components: - pos: -43.5,1.5 @@ -42919,8 +39422,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13662 components: - pos: -44.5,1.5 @@ -42928,8 +39429,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13663 components: - pos: -45.5,1.5 @@ -42937,8 +39436,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13664 components: - pos: -46.5,1.5 @@ -42946,8 +39443,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13665 components: - pos: -41.5,0.5 @@ -42955,8 +39450,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13666 components: - pos: -41.5,-0.5 @@ -42964,29 +39457,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13667 components: - pos: -41.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13668 components: - pos: -41.5,-2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13669 components: - pos: -41.5,-3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13670 components: - pos: -45.5,0.5 @@ -42994,29 +39479,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13671 components: - pos: -45.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13672 components: - pos: -45.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13673 components: - pos: -45.5,-2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13674 components: - pos: -47.5,1.5 @@ -43024,8 +39501,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13675 components: - pos: -47.5,2.5 @@ -43033,8 +39508,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13676 components: - pos: -47.5,0.5 @@ -43042,8 +39515,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14923 components: - pos: 26.5,-26.5 @@ -43051,22 +39522,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14924 components: - pos: 26.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14925 components: - pos: 25.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14926 components: - pos: 24.5,-25.5 @@ -43074,15 +39539,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14927 components: - pos: 24.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14928 components: - pos: 24.5,-27.5 @@ -43090,8 +39551,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14929 components: - pos: 24.5,-28.5 @@ -43099,43 +39558,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14930 components: - pos: 24.5,-29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14931 components: - pos: 24.5,-30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14932 components: - pos: 24.5,-31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14933 components: - pos: 24.5,-32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14934 components: - pos: 24.5,-33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14935 components: - pos: 24.5,-34.5 @@ -43143,8 +39590,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14936 components: - pos: 24.5,-35.5 @@ -43152,15 +39597,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14937 components: - pos: 24.5,-36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14938 components: - pos: 24.5,-37.5 @@ -43168,8 +39609,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14939 components: - pos: 24.5,-38.5 @@ -43177,8 +39616,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14940 components: - pos: 25.5,-38.5 @@ -43186,8 +39623,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14941 components: - pos: 26.5,-38.5 @@ -43195,8 +39630,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14942 components: - pos: 23.5,-37.5 @@ -43204,8 +39637,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14943 components: - pos: 22.5,-37.5 @@ -43213,8 +39644,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14944 components: - pos: 22.5,-38.5 @@ -43222,15 +39651,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14945 components: - pos: 23.5,-35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14946 components: - pos: 22.5,-35.5 @@ -43238,8 +39663,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14947 components: - pos: 22.5,-34.5 @@ -43247,204 +39670,146 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14948 components: - pos: 27.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14949 components: - pos: 28.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14950 components: - pos: 29.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14951 components: - pos: 29.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14952 components: - pos: 29.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14953 components: - pos: 29.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14954 components: - pos: 29.5,-22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14955 components: - pos: 29.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14956 components: - pos: 29.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14957 components: - pos: 29.5,-19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14958 components: - pos: 28.5,-19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14959 components: - pos: 21.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14960 components: - pos: 22.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14961 components: - pos: 23.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14962 components: - pos: 24.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14963 components: - pos: 24.5,-22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14964 components: - pos: 24.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14965 components: - pos: 24.5,-19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14966 components: - pos: 24.5,-18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14967 components: - pos: 24.5,-17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14968 components: - pos: 24.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14969 components: - pos: 24.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14970 components: - pos: 24.5,-14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14971 components: - pos: 24.5,-13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14972 components: - pos: 24.5,-12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14973 components: - pos: 24.5,-11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14974 components: - pos: 24.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14975 components: - pos: 24.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14976 components: - pos: 34.5,-18.5 @@ -43452,64 +39817,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14977 components: - pos: 34.5,-19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14978 components: - pos: 34.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14979 components: - pos: 34.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14980 components: - pos: 34.5,-22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14981 components: - pos: 34.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14982 components: - pos: 34.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14983 components: - pos: 34.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14984 components: - pos: 33.5,-19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14985 components: - pos: 33.5,-18.5 @@ -43517,29 +39864,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14986 components: - pos: 35.5,-19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14987 components: - pos: 36.5,-19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14988 components: - pos: 37.5,-19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14989 components: - pos: 37.5,-18.5 @@ -43547,29 +39886,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14990 components: - pos: 37.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14991 components: - pos: 37.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14992 components: - pos: 37.5,-22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14993 components: - pos: 39.5,-14.5 @@ -43577,127 +39908,91 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14994 components: - pos: 39.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14995 components: - pos: 39.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14996 components: - pos: 38.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14997 components: - pos: 37.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14998 components: - pos: 36.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14999 components: - pos: 35.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15000 components: - pos: 34.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15001 components: - pos: 33.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15002 components: - pos: 32.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15003 components: - pos: 31.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15004 components: - pos: 30.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15005 components: - pos: 29.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15006 components: - pos: 28.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15007 components: - pos: 27.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15008 components: - pos: 32.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15009 components: - pos: 32.5,-14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15010 components: - pos: 32.5,-13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15011 components: - pos: 32.5,-12.5 @@ -43705,29 +40000,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15012 components: - pos: 37.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15013 components: - pos: 37.5,-14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15014 components: - pos: 37.5,-13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15015 components: - pos: 37.5,-12.5 @@ -43735,8 +40022,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15016 components: - pos: 37.5,-11.5 @@ -43744,106 +40029,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15022 components: - pos: 40.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15023 components: - pos: 41.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15024 components: - pos: 42.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15025 components: - pos: 43.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15026 components: - pos: 44.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15027 components: - pos: 45.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15028 components: - pos: 46.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15029 components: - pos: 47.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15030 components: - pos: 42.5,-14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15031 components: - pos: 42.5,-13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15032 components: - pos: 41.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15033 components: - pos: 41.5,-17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15034 components: - pos: 46.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15035 components: - pos: 46.5,-17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15036 components: - pos: 49.5,-20.5 @@ -43851,71 +40106,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15037 components: - pos: 50.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15038 components: - pos: 51.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15039 components: - pos: 52.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15040 components: - pos: 52.5,-19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15041 components: - pos: 52.5,-18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15042 components: - pos: 52.5,-17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15043 components: - pos: 52.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15044 components: - pos: 52.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15045 components: - pos: 52.5,-14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15046 components: - pos: 52.5,-13.5 @@ -43923,22 +40158,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15047 components: - pos: 51.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15048 components: - pos: 50.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15049 components: - pos: 49.5,-16.5 @@ -43946,22 +40175,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15050 components: - pos: 53.5,-14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15051 components: - pos: 54.5,-14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15052 components: - pos: 54.5,-13.5 @@ -43969,8 +40192,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15053 components: - pos: 55.5,-13.5 @@ -43978,106 +40199,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15054 components: - pos: 53.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15055 components: - pos: 54.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15056 components: - pos: 55.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15057 components: - pos: 56.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15058 components: - pos: 55.5,-17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15059 components: - pos: 55.5,-18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15060 components: - pos: 55.5,-19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15061 components: - pos: 52.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15062 components: - pos: 52.5,-22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15063 components: - pos: 52.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15064 components: - pos: 53.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15065 components: - pos: 54.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15066 components: - pos: 55.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15067 components: - pos: 56.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15068 components: - pos: 49.5,-24.5 @@ -44085,162 +40276,116 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15069 components: - pos: 49.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15070 components: - pos: 49.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15071 components: - pos: 50.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15072 components: - pos: 51.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15073 components: - pos: 52.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15074 components: - pos: 48.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15075 components: - pos: 47.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15076 components: - pos: 46.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15077 components: - pos: 45.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15078 components: - pos: 44.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15079 components: - pos: 43.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15080 components: - pos: 42.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15081 components: - pos: 41.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15082 components: - pos: 40.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15083 components: - pos: 39.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15084 components: - pos: 38.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15085 components: - pos: 43.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15086 components: - pos: 43.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15087 components: - pos: 43.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15088 components: - pos: 43.5,-22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15089 components: - pos: 43.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15090 components: - pos: 43.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15091 components: - pos: 43.5,-19.5 @@ -44248,22 +40393,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15092 components: - pos: 42.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15093 components: - pos: 41.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15094 components: - pos: 41.5,-19.5 @@ -44271,8 +40410,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15095 components: - pos: 44.5,-22.5 @@ -44280,22 +40417,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15096 components: - pos: 42.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15097 components: - pos: 41.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15098 components: - pos: 41.5,-24.5 @@ -44303,64 +40434,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15099 components: - pos: 47.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15100 components: - pos: 47.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15101 components: - pos: 47.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15102 components: - pos: 47.5,-22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15103 components: - pos: 47.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15104 components: - pos: 46.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15105 components: - pos: 45.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15106 components: - pos: 45.5,-22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15107 components: - pos: 40.5,-34.5 @@ -44368,43 +40481,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15108 components: - pos: 41.5,-34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15109 components: - pos: 42.5,-34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15110 components: - pos: 43.5,-34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15111 components: - pos: 41.5,-33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15112 components: - pos: 41.5,-32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15113 components: - pos: 41.5,-31.5 @@ -44412,8 +40513,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15114 components: - pos: 41.5,-30.5 @@ -44421,36 +40520,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15115 components: - pos: 42.5,-32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15116 components: - pos: 43.5,-32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15117 components: - pos: 44.5,-32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15118 components: - pos: 45.5,-32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15119 components: - pos: 45.5,-31.5 @@ -44458,8 +40547,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15120 components: - pos: 45.5,-30.5 @@ -44467,22 +40554,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15121 components: - pos: 44.5,-34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15122 components: - pos: 44.5,-35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15123 components: - pos: 44.5,-36.5 @@ -44490,50 +40571,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15124 components: - pos: 44.5,-37.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15125 components: - pos: 44.5,-38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15126 components: - pos: 44.5,-39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15127 components: - pos: 43.5,-39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15128 components: - pos: 42.5,-39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15129 components: - pos: 41.5,-39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15130 components: - pos: 35.5,-32.5 @@ -44541,204 +40608,146 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15131 components: - pos: 35.5,-33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15132 components: - pos: 35.5,-34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15133 components: - pos: 35.5,-35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15134 components: - pos: 34.5,-34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15135 components: - pos: 33.5,-34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15136 components: - pos: 32.5,-34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15137 components: - pos: 31.5,-34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15138 components: - pos: 30.5,-34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15139 components: - pos: 29.5,-34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15140 components: - pos: 36.5,-34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15141 components: - pos: 37.5,-34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15142 components: - pos: 38.5,-34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15143 components: - pos: 38.5,-35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15144 components: - pos: 38.5,-36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15145 components: - pos: 38.5,-37.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15146 components: - pos: 38.5,-38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15147 components: - pos: 38.5,-39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15148 components: - pos: 37.5,-38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15149 components: - pos: 36.5,-38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15150 components: - pos: 35.5,-38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15151 components: - pos: 34.5,-38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15152 components: - pos: 33.5,-38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15153 components: - pos: 32.5,-38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15154 components: - pos: 31.5,-38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15155 components: - pos: 31.5,-39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15156 components: - pos: 30.5,-39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15157 components: - pos: 29.5,-39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15158 components: - pos: 29.5,-38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15159 components: - pos: 33.5,-31.5 @@ -44746,99 +40755,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15160 components: - pos: 32.5,-31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15161 components: - pos: 31.5,-31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15162 components: - pos: 31.5,-30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15163 components: - pos: 31.5,-29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15164 components: - pos: 31.5,-28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15165 components: - pos: 34.5,-31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15166 components: - pos: 34.5,-30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15167 components: - pos: 34.5,-29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15168 components: - pos: 38.5,-33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15169 components: - pos: 38.5,-32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15170 components: - pos: 38.5,-31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15171 components: - pos: 38.5,-30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15172 components: - pos: 38.5,-29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15173 components: - pos: 46.5,-40.5 @@ -44846,106 +40827,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15174 components: - pos: 47.5,-40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15175 components: - pos: 48.5,-40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15176 components: - pos: 49.5,-40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15177 components: - pos: 49.5,-41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15178 components: - pos: 49.5,-42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15179 components: - pos: 49.5,-43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15180 components: - pos: 50.5,-42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15181 components: - pos: 51.5,-42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15182 components: - pos: 52.5,-42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15183 components: - pos: 49.5,-39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15184 components: - pos: 49.5,-38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15185 components: - pos: 50.5,-38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15186 components: - pos: 51.5,-38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15187 components: - pos: 52.5,-38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15188 components: - pos: 53.5,-28.5 @@ -44953,442 +40904,316 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15189 components: - pos: 53.5,-29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15190 components: - pos: 53.5,-30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15191 components: - pos: 53.5,-31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15192 components: - pos: 53.5,-32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15193 components: - pos: 53.5,-33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15194 components: - pos: 53.5,-34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15195 components: - pos: 53.5,-35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15196 components: - pos: 54.5,-30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15197 components: - pos: 55.5,-30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15198 components: - pos: 56.5,-30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15199 components: - pos: 57.5,-30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15200 components: - pos: 58.5,-30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15201 components: - pos: 58.5,-29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15202 components: - pos: 58.5,-28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15203 components: - pos: 58.5,-27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15204 components: - pos: 58.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15205 components: - pos: 59.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15206 components: - pos: 60.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15207 components: - pos: 61.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15208 components: - pos: 61.5,-27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15209 components: - pos: 61.5,-28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15210 components: - pos: 61.5,-29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15211 components: - pos: 61.5,-30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15212 components: - pos: 56.5,-31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15213 components: - pos: 56.5,-32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15214 components: - pos: 56.5,-33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15215 components: - pos: 56.5,-34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15216 components: - pos: 56.5,-35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15217 components: - pos: 56.5,-36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15218 components: - pos: 56.5,-37.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15219 components: - pos: 56.5,-38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15220 components: - pos: 56.5,-39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15221 components: - pos: 56.5,-40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15222 components: - pos: 56.5,-41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15223 components: - pos: 57.5,-41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15224 components: - pos: 58.5,-41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15225 components: - pos: 59.5,-41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15226 components: - pos: 60.5,-41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15227 components: - pos: 61.5,-41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15228 components: - pos: 62.5,-41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15229 components: - pos: 62.5,-40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15230 components: - pos: 62.5,-39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15231 components: - pos: 62.5,-38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15232 components: - pos: 62.5,-37.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15233 components: - pos: 62.5,-36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15234 components: - pos: 62.5,-35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15235 components: - pos: 57.5,-27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15278 components: - pos: 25.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15279 components: - pos: 26.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15280 components: - pos: 27.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15281 components: - pos: 28.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15282 components: - pos: 29.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15283 components: - pos: 30.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15284 components: - pos: 31.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15285 components: - pos: 32.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15286 components: - pos: 33.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15287 components: - pos: 34.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15288 components: - pos: 35.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15289 components: - pos: 36.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15290 components: - pos: 37.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15291 components: - pos: 38.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15292 components: - pos: 39.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15293 components: - pos: 33.5,-12.5 @@ -45396,8 +41221,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15294 components: - pos: 33.5,-11.5 @@ -45405,8 +41228,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15295 components: - pos: 33.5,-10.5 @@ -45414,8 +41235,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15296 components: - pos: 33.5,-9.5 @@ -45423,8 +41242,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15297 components: - pos: 33.5,-8.5 @@ -45432,8 +41249,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15298 components: - pos: 33.5,-7.5 @@ -45441,8 +41256,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15299 components: - pos: 33.5,-6.5 @@ -45450,8 +41263,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15300 components: - pos: 33.5,-5.5 @@ -45459,8 +41270,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16129 components: - pos: 64.5,61.5 @@ -45468,22 +41277,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17679 components: - pos: 10.5,65.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17680 components: - pos: 10.5,66.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17792 components: - pos: 21.5,52.5 @@ -45491,8 +41294,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17798 components: - pos: 9.5,39.5 @@ -45500,99 +41301,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17799 components: - pos: 10.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17800 components: - pos: 11.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17801 components: - pos: 12.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17802 components: - pos: 12.5,38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17803 components: - pos: 12.5,37.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17804 components: - pos: 12.5,36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17805 components: - pos: 13.5,36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17806 components: - pos: 12.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17807 components: - pos: 13.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17808 components: - pos: 14.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17809 components: - pos: 15.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17810 components: - pos: 16.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17811 components: - pos: 17.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17812 components: - pos: 23.5,42.5 @@ -45600,92 +41373,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17813 components: - pos: 23.5,41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17814 components: - pos: 23.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17815 components: - pos: 23.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17816 components: - pos: 23.5,38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17817 components: - pos: 23.5,37.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17818 components: - pos: 23.5,36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17819 components: - pos: 22.5,36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17820 components: - pos: 21.5,36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17821 components: - pos: 20.5,36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17822 components: - pos: 19.5,36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17823 components: - pos: 18.5,36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17824 components: - pos: 17.5,36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17825 components: - pos: 16.5,36.5 @@ -45693,22 +41440,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17826 components: - pos: 17.5,37.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17827 components: - pos: 17.5,38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17828 components: - pos: 16.5,38.5 @@ -45716,8 +41457,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17829 components: - pos: 18.5,35.5 @@ -45725,8 +41464,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17830 components: - pos: 20.5,35.5 @@ -45734,8 +41471,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17831 components: - pos: 22.5,35.5 @@ -45743,15 +41478,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17832 components: - pos: 24.5,36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17833 components: - pos: 24.5,35.5 @@ -45759,29 +41490,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17834 components: - pos: 22.5,41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17835 components: - pos: 21.5,41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17836 components: - pos: 20.5,41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17837 components: - pos: 20.5,42.5 @@ -45789,22 +41512,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17838 components: - pos: 24.5,41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17839 components: - pos: 25.5,41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17840 components: - pos: 25.5,42.5 @@ -45812,15 +41529,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17841 components: - pos: 22.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17842 components: - pos: 4.5,42.5 @@ -45828,99 +41541,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17843 components: - pos: 4.5,41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17844 components: - pos: 4.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17845 components: - pos: 4.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17846 components: - pos: 4.5,38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17847 components: - pos: 4.5,37.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17848 components: - pos: 4.5,36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17849 components: - pos: 5.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17850 components: - pos: 6.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17851 components: - pos: 7.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17852 components: - pos: 7.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17853 components: - pos: 7.5,37.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17854 components: - pos: 7.5,38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17855 components: - pos: 3.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17856 components: - pos: 3.5,51.5 @@ -45928,148 +41613,106 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17857 components: - pos: 3.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17858 components: - pos: 3.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17859 components: - pos: 3.5,48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17860 components: - pos: 3.5,47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17861 components: - pos: 3.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17862 components: - pos: 3.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17863 components: - pos: 3.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17864 components: - pos: 4.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17865 components: - pos: 5.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17866 components: - pos: 6.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17867 components: - pos: 7.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17868 components: - pos: 2.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17869 components: - pos: 1.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17870 components: - pos: 0.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17871 components: - pos: -0.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17872 components: - pos: -1.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17873 components: - pos: -0.5,48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17874 components: - pos: 4.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17875 components: - pos: 5.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17876 components: - pos: 6.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17877 components: - pos: 13.5,52.5 @@ -46077,43 +41720,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17878 components: - pos: 13.5,51.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17879 components: - pos: 13.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17880 components: - pos: 13.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17881 components: - pos: 13.5,48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17882 components: - pos: 13.5,47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17883 components: - pos: 13.5,46.5 @@ -46121,8 +41752,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17884 components: - pos: 12.5,46.5 @@ -46130,8 +41759,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17885 components: - pos: 11.5,46.5 @@ -46139,50 +41766,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17886 components: - pos: 11.5,47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17887 components: - pos: 10.5,47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17888 components: - pos: 9.5,47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17890 components: - pos: 9.5,48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17891 components: - pos: 9.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17892 components: - pos: 9.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17893 components: - pos: 8.5,50.5 @@ -46190,120 +41803,86 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17894 components: - pos: 10.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17895 components: - pos: 11.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17896 components: - pos: 12.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17898 components: - pos: 22.5,51.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17899 components: - pos: 22.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17900 components: - pos: 22.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17901 components: - pos: 22.5,48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17902 components: - pos: 22.5,47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17903 components: - pos: 23.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17904 components: - pos: 24.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17905 components: - pos: 25.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17906 components: - pos: 26.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17907 components: - pos: 27.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17908 components: - pos: 28.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17909 components: - pos: 29.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17910 components: - pos: 25.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17911 components: - pos: 31.5,44.5 @@ -46311,162 +41890,116 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17912 components: - pos: 32.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17913 components: - pos: 33.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17914 components: - pos: 34.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17915 components: - pos: 35.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17916 components: - pos: 33.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17917 components: - pos: 33.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17918 components: - pos: 33.5,47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17919 components: - pos: 33.5,48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17920 components: - pos: 35.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17921 components: - pos: 35.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17922 components: - pos: 35.5,47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17923 components: - pos: 35.5,48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17924 components: - pos: 31.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17925 components: - pos: 30.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17926 components: - pos: 29.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17927 components: - pos: 29.5,42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17928 components: - pos: 29.5,41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17929 components: - pos: 29.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17930 components: - pos: 31.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17931 components: - pos: 30.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17932 components: - pos: 29.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17933 components: - pos: 28.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17934 components: - pos: 21.5,46.5 @@ -46474,267 +42007,191 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17936 components: - pos: 21.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17937 components: - pos: 21.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17938 components: - pos: 22.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17939 components: - pos: 23.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17940 components: - pos: 19.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17941 components: - pos: 18.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17942 components: - pos: 17.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17943 components: - pos: 16.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17944 components: - pos: 15.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17945 components: - pos: 14.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17946 components: - pos: 13.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17947 components: - pos: 12.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17948 components: - pos: 20.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17949 components: - pos: 18.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17950 components: - pos: 18.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17951 components: - pos: 18.5,47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17952 components: - pos: 18.5,48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17953 components: - pos: 18.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17954 components: - pos: 18.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17955 components: - pos: 18.5,51.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17956 components: - pos: 18.5,52.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17957 components: - pos: 18.5,53.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17958 components: - pos: 18.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17959 components: - pos: 18.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17960 components: - pos: 19.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17961 components: - pos: 20.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17962 components: - pos: 21.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17963 components: - pos: 22.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17964 components: - pos: 23.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17965 components: - pos: 24.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17966 components: - pos: 25.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17967 components: - pos: 26.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17968 components: - pos: 27.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17969 components: - pos: 17.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17970 components: - pos: 16.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17971 components: - pos: 15.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17972 components: - pos: 14.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17973 components: - pos: 24.5,61.5 @@ -46742,57 +42199,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17974 components: - pos: 24.5,60.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17975 components: - pos: 24.5,59.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17976 components: - pos: 24.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17977 components: - pos: 23.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17978 components: - pos: 22.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17979 components: - pos: 21.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17980 components: - pos: 20.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17981 components: - pos: 20.5,57.5 @@ -46800,8 +42241,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17982 components: - pos: 20.5,59.5 @@ -46809,8 +42248,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17983 components: - pos: 20.5,60.5 @@ -46818,169 +42255,121 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17984 components: - pos: 22.5,59.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17985 components: - pos: 22.5,60.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17986 components: - pos: 22.5,61.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17987 components: - pos: 22.5,62.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17988 components: - pos: 22.5,63.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17989 components: - pos: 25.5,60.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17990 components: - pos: 25.5,61.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17991 components: - pos: 25.5,62.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17992 components: - pos: 25.5,63.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17993 components: - pos: 25.5,64.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17994 components: - pos: 26.5,63.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17995 components: - pos: 25.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17996 components: - pos: 19.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17997 components: - pos: 18.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17998 components: - pos: 17.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17999 components: - pos: 16.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18000 components: - pos: 15.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18001 components: - pos: 14.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18002 components: - pos: 18.5,59.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18003 components: - pos: 18.5,60.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18004 components: - pos: 18.5,61.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18005 components: - pos: 18.5,62.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18006 components: - pos: 18.5,63.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18007 components: - pos: 6.5,57.5 @@ -46988,78 +42377,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18008 components: - pos: 6.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18009 components: - pos: 6.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18010 components: - pos: 6.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18011 components: - pos: 6.5,53.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18012 components: - pos: 7.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18013 components: - pos: 8.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18014 components: - pos: 9.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18015 components: - pos: 10.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18016 components: - pos: 11.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18017 components: - pos: 9.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18018 components: - pos: 9.5,57.5 @@ -47067,71 +42434,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18019 components: - pos: 9.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18020 components: - pos: 9.5,59.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18021 components: - pos: 5.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18022 components: - pos: 4.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18023 components: - pos: 3.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18024 components: - pos: 3.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18025 components: - pos: 3.5,57.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18026 components: - pos: 3.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18027 components: - pos: 3.5,59.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18028 components: - pos: 8.5,57.5 @@ -47139,8 +42486,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18029 components: - pos: 7.5,57.5 @@ -47148,8 +42493,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18030 components: - pos: 10.5,57.5 @@ -47157,8 +42500,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18031 components: - pos: 3.5,64.5 @@ -47166,421 +42507,301 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18032 components: - pos: 3.5,63.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18033 components: - pos: 3.5,62.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18034 components: - pos: 4.5,62.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18035 components: - pos: 5.5,62.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18036 components: - pos: 6.5,62.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18037 components: - pos: 7.5,62.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18038 components: - pos: 8.5,62.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18039 components: - pos: 9.5,62.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18040 components: - pos: 10.5,62.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18041 components: - pos: 11.5,62.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18042 components: - pos: 12.5,62.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18043 components: - pos: 13.5,62.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18044 components: - pos: 14.5,62.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18045 components: - pos: 15.5,62.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18046 components: - pos: 14.5,63.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18047 components: - pos: 14.5,64.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18048 components: - pos: 14.5,65.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18049 components: - pos: 14.5,66.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18050 components: - pos: 14.5,67.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18051 components: - pos: 15.5,67.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18052 components: - pos: 16.5,67.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18053 components: - pos: 17.5,67.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18054 components: - pos: 18.5,67.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18055 components: - pos: 13.5,67.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18056 components: - pos: 12.5,67.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18057 components: - pos: 12.5,65.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18058 components: - pos: 12.5,66.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18059 components: - pos: 11.5,65.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18060 components: - pos: 7.5,63.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18061 components: - pos: 7.5,64.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18062 components: - pos: 7.5,65.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18063 components: - pos: 7.5,66.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18064 components: - pos: 7.5,67.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18065 components: - pos: 7.5,68.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18066 components: - pos: 6.5,66.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18067 components: - pos: 5.5,66.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18068 components: - pos: 5.5,67.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18069 components: - pos: 5.5,67.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18070 components: - pos: 5.5,68.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18071 components: - pos: 5.5,69.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18072 components: - pos: 5.5,70.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18073 components: - pos: 5.5,71.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18074 components: - pos: 6.5,71.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18075 components: - pos: 2.5,63.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18076 components: - pos: 1.5,63.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18077 components: - pos: 0.5,63.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18078 components: - pos: -0.5,63.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18079 components: - pos: -1.5,63.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18080 components: - pos: -2.5,63.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18081 components: - pos: -3.5,63.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18082 components: - pos: -4.5,63.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18083 components: - pos: -4.5,64.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18084 components: - pos: -4.5,65.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18085 components: - pos: -4.5,62.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18086 components: - pos: -4.5,61.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18087 components: - pos: -4.5,60.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18088 components: - pos: -0.5,62.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18089 components: - pos: -0.5,61.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18090 components: - pos: -0.5,60.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18091 components: - pos: -0.5,59.5 @@ -47588,29 +42809,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18092 components: - pos: -0.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18093 components: - pos: -0.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18094 components: - pos: -0.5,51.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18095 components: - pos: -0.5,52.5 @@ -47618,8 +42831,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18096 components: - pos: -0.5,53.5 @@ -47627,8 +42838,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18097 components: - pos: -0.5,54.5 @@ -47636,8 +42845,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18098 components: - pos: -0.5,55.5 @@ -47645,8 +42852,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18099 components: - pos: 0.5,52.5 @@ -47654,8 +42859,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18606 components: - pos: 22.5,52.5 @@ -47663,8 +42866,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19284 components: - pos: 28.5,-45.5 @@ -47672,85 +42873,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19285 components: - pos: 28.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19286 components: - pos: 28.5,-47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19287 components: - pos: 28.5,-48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19288 components: - pos: 28.5,-49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19289 components: - pos: 28.5,-50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19290 components: - pos: 29.5,-48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19291 components: - pos: 30.5,-48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19292 components: - pos: 31.5,-48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19293 components: - pos: 32.5,-48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19294 components: - pos: 32.5,-47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19295 components: - pos: 32.5,-49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19296 components: - pos: 26.5,-54.5 @@ -47758,43 +42935,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19297 components: - pos: 26.5,-55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19298 components: - pos: 26.5,-56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19299 components: - pos: 26.5,-57.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19300 components: - pos: 26.5,-58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19301 components: - pos: 27.5,-58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19302 components: - pos: 27.5,-59.5 @@ -47802,8 +42967,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19303 components: - pos: 27.5,-60.5 @@ -47811,15 +42974,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19304 components: - pos: 25.5,-58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19305 components: - pos: 25.5,-59.5 @@ -47827,8 +42986,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19306 components: - pos: 25.5,-60.5 @@ -47836,71 +42993,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19307 components: - pos: 25.5,-56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19308 components: - pos: 24.5,-56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19309 components: - pos: 23.5,-56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19310 components: - pos: 27.5,-56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19311 components: - pos: 28.5,-56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19312 components: - pos: 29.5,-56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19313 components: - pos: 30.5,-56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19314 components: - pos: 30.5,-55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19315 components: - pos: 30.5,-54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19319 components: - pos: 26.5,-40.5 @@ -47908,15 +43045,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19320 components: - pos: 26.5,-41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19321 components: - pos: 26.5,-42.5 @@ -47924,8 +43057,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19322 components: - pos: 25.5,-42.5 @@ -47933,8 +43064,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19323 components: - pos: 24.5,-42.5 @@ -47942,8 +43071,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19324 components: - pos: 24.5,-43.5 @@ -47951,8 +43078,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19325 components: - pos: 24.5,-44.5 @@ -47960,8 +43085,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19326 components: - pos: 24.5,-45.5 @@ -47969,8 +43092,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19327 components: - pos: 24.5,-46.5 @@ -47978,8 +43099,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19328 components: - pos: 24.5,-47.5 @@ -47987,8 +43106,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19329 components: - pos: 24.5,-48.5 @@ -47996,8 +43113,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19330 components: - pos: 24.5,-49.5 @@ -48005,8 +43120,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19331 components: - pos: 24.5,-50.5 @@ -48014,8 +43127,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19332 components: - pos: 24.5,-51.5 @@ -48023,8 +43134,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19333 components: - pos: 24.5,-52.5 @@ -48032,8 +43141,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19334 components: - pos: 24.5,-53.5 @@ -48041,15 +43148,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19335 components: - pos: 23.5,-50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19336 components: - pos: 22.5,-50.5 @@ -48057,8 +43160,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19337 components: - pos: 21.5,-50.5 @@ -48066,8 +43167,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19338 components: - pos: 27.5,-42.5 @@ -48075,8 +43174,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19339 components: - pos: 28.5,-42.5 @@ -48084,8 +43181,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19340 components: - pos: 29.5,-42.5 @@ -48093,8 +43188,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19341 components: - pos: 30.5,-42.5 @@ -48102,8 +43195,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19342 components: - pos: 31.5,-42.5 @@ -48111,8 +43202,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19343 components: - pos: 32.5,-42.5 @@ -48120,15 +43209,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19344 components: - pos: 33.5,-42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19345 components: - pos: 34.5,-42.5 @@ -48136,8 +43221,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19346 components: - pos: 35.5,-42.5 @@ -48145,8 +43228,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19347 components: - pos: 36.5,-42.5 @@ -48154,8 +43235,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19348 components: - pos: 37.5,-42.5 @@ -48163,8 +43242,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19349 components: - pos: 38.5,-42.5 @@ -48172,8 +43249,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19350 components: - pos: 39.5,-42.5 @@ -48181,8 +43256,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19351 components: - pos: 40.5,-42.5 @@ -48190,8 +43263,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19352 components: - pos: 41.5,-42.5 @@ -48199,8 +43270,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19353 components: - pos: 42.5,-42.5 @@ -48208,8 +43277,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19354 components: - pos: 43.5,-42.5 @@ -48217,8 +43284,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19355 components: - pos: 43.5,-43.5 @@ -48226,8 +43291,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19356 components: - pos: 43.5,-44.5 @@ -48235,8 +43298,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19357 components: - pos: 43.5,-45.5 @@ -48244,8 +43305,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19358 components: - pos: 43.5,-46.5 @@ -48253,8 +43312,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19362 components: - pos: 44.5,-46.5 @@ -48262,8 +43319,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19363 components: - pos: 45.5,-46.5 @@ -48271,8 +43326,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19364 components: - pos: 45.5,-46.5 @@ -48280,8 +43333,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19859 components: - pos: 51.5,-44.5 @@ -48289,15 +43340,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19860 components: - pos: 51.5,-45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19861 components: - pos: 51.5,-46.5 @@ -48305,8 +43352,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19862 components: - pos: 51.5,-47.5 @@ -48314,8 +43359,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19863 components: - pos: 51.5,-48.5 @@ -48323,8 +43366,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19864 components: - pos: 51.5,-49.5 @@ -48332,8 +43373,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19865 components: - pos: 51.5,-50.5 @@ -48341,8 +43380,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19866 components: - pos: 52.5,-46.5 @@ -48350,8 +43387,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19867 components: - pos: 53.5,-46.5 @@ -48359,8 +43394,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19868 components: - pos: 54.5,-46.5 @@ -48368,8 +43401,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19869 components: - pos: 55.5,-46.5 @@ -48377,8 +43408,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19870 components: - pos: 56.5,-46.5 @@ -48386,8 +43415,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19871 components: - pos: 57.5,-46.5 @@ -48395,22 +43422,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19872 components: - pos: 56.5,-45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19873 components: - pos: 56.5,-44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19874 components: - pos: 56.5,-43.5 @@ -48418,8 +43439,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19875 components: - pos: 50.5,-46.5 @@ -48427,8 +43446,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19876 components: - pos: 49.5,-46.5 @@ -48436,8 +43453,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19877 components: - pos: 48.5,-46.5 @@ -48445,8 +43460,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19878 components: - pos: 47.5,-46.5 @@ -48454,15 +43467,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19879 components: - pos: 47.5,-47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19880 components: - pos: 47.5,-48.5 @@ -48470,134 +43479,96 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19881 components: - pos: 47.5,-49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19882 components: - pos: 47.5,-50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19883 components: - pos: 47.5,-51.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19884 components: - pos: 47.5,-52.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19885 components: - pos: 47.5,-53.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19886 components: - pos: 47.5,-54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19887 components: - pos: 46.5,-53.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19888 components: - pos: 45.5,-53.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19889 components: - pos: 44.5,-53.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19890 components: - pos: 49.5,-53.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19891 components: - pos: 50.5,-53.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19892 components: - pos: 51.5,-53.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19893 components: - pos: 48.5,-53.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19894 components: - pos: 46.5,-50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19895 components: - pos: 45.5,-50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19896 components: - pos: 44.5,-50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19897 components: - pos: 43.5,-50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19898 components: - pos: 42.5,-50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19899 components: - pos: 38.5,-43.5 @@ -48605,155 +43576,111 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19900 components: - pos: 38.5,-44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19901 components: - pos: 38.5,-45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19902 components: - pos: 38.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19903 components: - pos: 38.5,-47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19904 components: - pos: 38.5,-48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19905 components: - pos: 38.5,-49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19906 components: - pos: 38.5,-50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19907 components: - pos: 37.5,-50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19908 components: - pos: 36.5,-50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19909 components: - pos: 35.5,-50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19910 components: - pos: 35.5,-49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19911 components: - pos: 35.5,-48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19912 components: - pos: 35.5,-47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19913 components: - pos: 35.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19914 components: - pos: 39.5,-50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19915 components: - pos: 40.5,-50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19916 components: - pos: 40.5,-49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19917 components: - pos: 40.5,-48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19918 components: - pos: 40.5,-47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19919 components: - pos: 40.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19920 components: - pos: 43.5,-49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 22904 components: - pos: 109.5,-21.5 @@ -48761,8 +43688,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23760 components: - pos: 86.5,-20.5 @@ -48770,8 +43695,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23964 components: - pos: 112.5,-24.5 @@ -48779,71 +43702,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23965 components: - pos: 113.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23966 components: - pos: 114.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23967 components: - pos: 115.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23968 components: - pos: 116.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23969 components: - pos: 117.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23970 components: - pos: 118.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23971 components: - pos: 119.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23972 components: - pos: 120.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23973 components: - pos: 121.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23974 components: - pos: 117.5,-25.5 @@ -48851,8 +43754,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23975 components: - pos: 117.5,-26.5 @@ -48860,8 +43761,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23976 components: - pos: 117.5,-23.5 @@ -48869,8 +43768,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23977 components: - pos: 117.5,-22.5 @@ -48878,36 +43775,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23978 components: - pos: 113.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23979 components: - pos: 113.5,-22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23980 components: - pos: 112.5,-22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23981 components: - pos: 111.5,-22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23982 components: - pos: 111.5,-23.5 @@ -48915,36 +43802,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23983 components: - pos: 115.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23984 components: - pos: 115.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23985 components: - pos: 120.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23986 components: - pos: 120.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24371 components: - pos: 96.5,-24.5 @@ -48952,8 +43829,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24380 components: - pos: 98.5,-24.5 @@ -48961,8 +43836,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24452 components: - pos: 78.5,-32.5 @@ -48970,15 +43843,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24453 components: - pos: 78.5,-33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24454 components: - pos: 78.5,-34.5 @@ -48986,8 +43855,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24455 components: - pos: 78.5,-35.5 @@ -48995,8 +43862,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24456 components: - pos: 79.5,-35.5 @@ -49004,8 +43869,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24457 components: - pos: 79.5,-36.5 @@ -49013,8 +43876,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24458 components: - pos: 79.5,-37.5 @@ -49022,8 +43883,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24459 components: - pos: 79.5,-38.5 @@ -49031,8 +43890,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24460 components: - pos: 79.5,-39.5 @@ -49040,29 +43897,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24461 components: - pos: 79.5,-40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24462 components: - pos: 79.5,-41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24463 components: - pos: 78.5,-41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24464 components: - pos: 77.5,-41.5 @@ -49070,29 +43919,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24465 components: - pos: 76.5,-41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24466 components: - pos: 75.5,-41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24467 components: - pos: 74.5,-41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24468 components: - pos: 73.5,-41.5 @@ -49100,29 +43941,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24469 components: - pos: 72.5,-41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24470 components: - pos: 71.5,-41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24471 components: - pos: 71.5,-40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24472 components: - pos: 71.5,-39.5 @@ -49130,8 +43963,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24473 components: - pos: 71.5,-38.5 @@ -49139,8 +43970,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24474 components: - pos: 71.5,-37.5 @@ -49148,8 +43977,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24475 components: - pos: 71.5,-36.5 @@ -49157,8 +43984,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24476 components: - pos: 71.5,-35.5 @@ -49166,8 +43991,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24477 components: - pos: 71.5,-34.5 @@ -49175,8 +43998,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24478 components: - pos: 71.5,-33.5 @@ -49184,50 +44005,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24479 components: - pos: 72.5,-33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24480 components: - pos: 73.5,-33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24481 components: - pos: 74.5,-33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24482 components: - pos: 75.5,-33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24483 components: - pos: 76.5,-33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24484 components: - pos: 77.5,-33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24485 components: - pos: 70.5,-36.5 @@ -49235,8 +44042,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24486 components: - pos: 69.5,-36.5 @@ -49244,8 +44049,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24487 components: - pos: 68.5,-36.5 @@ -49253,8 +44056,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24488 components: - pos: 71.5,-32.5 @@ -49262,8 +44063,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24489 components: - pos: 71.5,-31.5 @@ -49271,8 +44070,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24490 components: - pos: 71.5,-30.5 @@ -49280,8 +44077,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24491 components: - pos: 71.5,-29.5 @@ -49289,8 +44084,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24492 components: - pos: 71.5,-28.5 @@ -49298,8 +44091,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24493 components: - pos: 70.5,-30.5 @@ -49307,8 +44098,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24494 components: - pos: 69.5,-30.5 @@ -49316,8 +44105,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24495 components: - pos: 68.5,-30.5 @@ -49325,8 +44112,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24496 components: - pos: 80.5,-38.5 @@ -49334,8 +44119,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24497 components: - pos: 81.5,-38.5 @@ -49343,8 +44126,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24498 components: - pos: 82.5,-38.5 @@ -49352,8 +44133,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24499 components: - pos: 83.5,-38.5 @@ -49361,36 +44140,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24500 components: - pos: 83.5,-39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24501 components: - pos: 83.5,-40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24502 components: - pos: 83.5,-41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24503 components: - pos: 83.5,-42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24504 components: - pos: 84.5,-42.5 @@ -49398,8 +44167,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24505 components: - pos: 85.5,-42.5 @@ -49407,8 +44174,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24506 components: - pos: 86.5,-42.5 @@ -49416,8 +44181,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24507 components: - pos: 87.5,-42.5 @@ -49425,8 +44188,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24508 components: - pos: 88.5,-42.5 @@ -49434,8 +44195,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24509 components: - pos: 89.5,-42.5 @@ -49443,8 +44202,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24510 components: - pos: 90.5,-42.5 @@ -49452,29 +44209,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24511 components: - pos: 91.5,-42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24512 components: - pos: 92.5,-42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24513 components: - pos: 92.5,-41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24514 components: - pos: 92.5,-40.5 @@ -49482,29 +44231,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24515 components: - pos: 92.5,-39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24516 components: - pos: 92.5,-38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24517 components: - pos: 92.5,-37.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24518 components: - pos: 92.5,-36.5 @@ -49512,29 +44253,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24519 components: - pos: 92.5,-35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24520 components: - pos: 92.5,-34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24521 components: - pos: 92.5,-33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24522 components: - pos: 92.5,-32.5 @@ -49542,8 +44275,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24523 components: - pos: 92.5,-31.5 @@ -49551,8 +44282,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24524 components: - pos: 92.5,-30.5 @@ -49560,8 +44289,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24525 components: - pos: 92.5,-29.5 @@ -49569,8 +44296,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24526 components: - pos: 92.5,-28.5 @@ -49578,8 +44303,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24527 components: - pos: 91.5,-28.5 @@ -49587,8 +44310,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24528 components: - pos: 93.5,-28.5 @@ -49596,15 +44317,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24529 components: - pos: 91.5,-34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24530 components: - pos: 90.5,-34.5 @@ -49612,8 +44329,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24531 components: - pos: 90.5,-33.5 @@ -49621,8 +44336,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24532 components: - pos: 90.5,-35.5 @@ -49630,15 +44343,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24533 components: - pos: 91.5,-38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24534 components: - pos: 90.5,-38.5 @@ -49646,8 +44355,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24535 components: - pos: 90.5,-37.5 @@ -49655,8 +44362,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24536 components: - pos: 90.5,-39.5 @@ -49664,8 +44369,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24537 components: - pos: 80.5,-39.5 @@ -49673,8 +44376,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24538 components: - pos: 78.5,-39.5 @@ -49682,15 +44383,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24539 components: - pos: 75.5,-40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24540 components: - pos: 75.5,-39.5 @@ -49698,8 +44395,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24541 components: - pos: 76.5,-39.5 @@ -49707,8 +44402,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24542 components: - pos: 74.5,-39.5 @@ -49716,8 +44409,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24543 components: - pos: 72.5,-39.5 @@ -49725,8 +44416,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24544 components: - pos: 70.5,-39.5 @@ -49734,8 +44423,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24545 components: - pos: 78.5,-25.5 @@ -49743,43 +44430,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24546 components: - pos: 77.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24547 components: - pos: 76.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24548 components: - pos: 75.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24549 components: - pos: 74.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24550 components: - pos: 73.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24551 components: - pos: 72.5,-25.5 @@ -49787,15 +44462,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24552 components: - pos: 71.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24553 components: - pos: 70.5,-25.5 @@ -49803,43 +44474,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24554 components: - pos: 69.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24555 components: - pos: 68.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24556 components: - pos: 68.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24557 components: - pos: 68.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24558 components: - pos: 68.5,-22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24559 components: - pos: 67.5,-22.5 @@ -49847,8 +44506,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24560 components: - pos: 69.5,-22.5 @@ -49856,29 +44513,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24561 components: - pos: 76.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24562 components: - pos: 76.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24563 components: - pos: 76.5,-22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24564 components: - pos: 80.5,-17.5 @@ -49886,99 +44535,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24565 components: - pos: 80.5,-18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24566 components: - pos: 80.5,-19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24567 components: - pos: 80.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24568 components: - pos: 80.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24569 components: - pos: 80.5,-22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24570 components: - pos: 80.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24571 components: - pos: 80.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24572 components: - pos: 79.5,-19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24573 components: - pos: 78.5,-19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24574 components: - pos: 77.5,-19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24575 components: - pos: 76.5,-19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24576 components: - pos: 81.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24577 components: - pos: 82.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24578 components: - pos: 83.5,-20.5 @@ -49986,8 +44607,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24579 components: - pos: 84.5,-20.5 @@ -49995,8 +44614,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24580 components: - pos: 85.5,-20.5 @@ -50004,8 +44621,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24582 components: - pos: 87.5,-20.5 @@ -50013,8 +44628,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24583 components: - pos: 88.5,-20.5 @@ -50022,8 +44635,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24584 components: - pos: 89.5,-20.5 @@ -50031,15 +44642,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24585 components: - pos: 86.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24586 components: - pos: 91.5,-30.5 @@ -50047,15 +44654,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24587 components: - pos: 90.5,-30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24588 components: - pos: 89.5,-30.5 @@ -50063,8 +44666,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24589 components: - pos: 88.5,-30.5 @@ -50072,8 +44673,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24590 components: - pos: 87.5,-30.5 @@ -50081,8 +44680,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24591 components: - pos: 86.5,-30.5 @@ -50090,8 +44687,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24592 components: - pos: 85.5,-30.5 @@ -50099,8 +44694,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24593 components: - pos: 84.5,-30.5 @@ -50108,8 +44701,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24594 components: - pos: 84.5,-29.5 @@ -50117,8 +44708,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24595 components: - pos: 98.5,-28.5 @@ -50126,8 +44715,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24596 components: - pos: 83.5,-28.5 @@ -50135,8 +44722,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24597 components: - pos: 83.5,-27.5 @@ -50144,8 +44729,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24598 components: - pos: 83.5,-26.5 @@ -50153,8 +44736,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24599 components: - pos: 83.5,-25.5 @@ -50162,8 +44743,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24600 components: - pos: 83.5,-24.5 @@ -50171,8 +44750,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24601 components: - pos: 89.5,-29.5 @@ -50180,8 +44757,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24602 components: - pos: 89.5,-28.5 @@ -50189,8 +44764,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24603 components: - pos: 89.5,-27.5 @@ -50198,8 +44771,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24604 components: - pos: 89.5,-26.5 @@ -50207,8 +44778,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24605 components: - pos: 89.5,-25.5 @@ -50216,8 +44785,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24606 components: - pos: 89.5,-24.5 @@ -50225,8 +44792,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24607 components: - pos: 83.5,-29.5 @@ -50234,8 +44799,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24608 components: - pos: 82.5,-29.5 @@ -50243,8 +44806,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24609 components: - pos: 81.5,-29.5 @@ -50252,8 +44813,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24610 components: - pos: 80.5,-29.5 @@ -50261,8 +44820,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24611 components: - pos: 79.5,-29.5 @@ -50270,8 +44827,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24612 components: - pos: 78.5,-29.5 @@ -50279,8 +44834,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24613 components: - pos: 77.5,-29.5 @@ -50288,8 +44841,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24614 components: - pos: 76.5,-29.5 @@ -50297,8 +44848,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24615 components: - pos: 75.5,-29.5 @@ -50306,8 +44855,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24616 components: - pos: 74.5,-29.5 @@ -50315,8 +44862,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24617 components: - pos: 73.5,-29.5 @@ -50324,8 +44869,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24618 components: - pos: 72.5,-29.5 @@ -50333,8 +44876,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24619 components: - pos: 70.5,-33.5 @@ -50342,8 +44883,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24620 components: - pos: 69.5,-33.5 @@ -50351,8 +44890,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24621 components: - pos: 68.5,-33.5 @@ -50360,8 +44897,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24622 components: - pos: 67.5,-33.5 @@ -50369,8 +44904,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24623 components: - pos: 66.5,-33.5 @@ -50378,15 +44911,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24624 components: - pos: 65.5,-33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24625 components: - pos: 64.5,-33.5 @@ -50394,8 +44923,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24626 components: - pos: 63.5,-33.5 @@ -50403,8 +44930,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24627 components: - pos: 89.5,-34.5 @@ -50412,8 +44937,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24628 components: - pos: 88.5,-34.5 @@ -50421,8 +44944,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24629 components: - pos: 87.5,-34.5 @@ -50430,8 +44951,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24630 components: - pos: 86.5,-34.5 @@ -50439,8 +44958,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24631 components: - pos: 85.5,-34.5 @@ -50448,8 +44965,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24632 components: - pos: 84.5,-34.5 @@ -50457,8 +44972,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24633 components: - pos: 84.5,-35.5 @@ -50466,8 +44979,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24634 components: - pos: 84.5,-36.5 @@ -50475,8 +44986,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24635 components: - pos: 99.5,-32.5 @@ -50484,15 +44993,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24636 components: - pos: 99.5,-33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24637 components: - pos: 99.5,-34.5 @@ -50500,8 +45005,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24638 components: - pos: 99.5,-35.5 @@ -50509,8 +45012,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24639 components: - pos: 99.5,-36.5 @@ -50518,8 +45019,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24640 components: - pos: 99.5,-37.5 @@ -50527,8 +45026,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24641 components: - pos: 99.5,-38.5 @@ -50536,8 +45033,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24642 components: - pos: 100.5,-36.5 @@ -50545,8 +45040,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24643 components: - pos: 101.5,-36.5 @@ -50554,8 +45047,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24644 components: - pos: 102.5,-36.5 @@ -50563,8 +45054,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24645 components: - pos: 103.5,-36.5 @@ -50572,8 +45061,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24646 components: - pos: 104.5,-36.5 @@ -50581,8 +45068,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24647 components: - pos: 105.5,-36.5 @@ -50590,8 +45075,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24648 components: - pos: 106.5,-36.5 @@ -50599,8 +45082,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24649 components: - pos: 106.5,-35.5 @@ -50608,8 +45089,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24650 components: - pos: 106.5,-34.5 @@ -50617,8 +45096,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24651 components: - pos: 105.5,-34.5 @@ -50626,8 +45103,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24652 components: - pos: 107.5,-34.5 @@ -50635,8 +45110,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24653 components: - pos: 106.5,-37.5 @@ -50644,8 +45117,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24654 components: - pos: 106.5,-38.5 @@ -50653,8 +45124,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24655 components: - pos: 105.5,-38.5 @@ -50662,8 +45131,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24656 components: - pos: 107.5,-38.5 @@ -50671,8 +45138,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24657 components: - pos: 104.5,-37.5 @@ -50680,8 +45145,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24658 components: - pos: 104.5,-35.5 @@ -50689,8 +45152,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24659 components: - pos: 102.5,-35.5 @@ -50698,8 +45159,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24660 components: - pos: 102.5,-34.5 @@ -50707,22 +45166,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24661 components: - pos: 102.5,-33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24662 components: - pos: 103.5,-33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24663 components: - pos: 104.5,-33.5 @@ -50730,8 +45183,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24664 components: - pos: 102.5,-37.5 @@ -50739,8 +45190,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24665 components: - pos: 102.5,-38.5 @@ -50748,8 +45197,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24666 components: - pos: 102.5,-39.5 @@ -50757,8 +45204,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24667 components: - pos: 103.5,-39.5 @@ -50766,8 +45211,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24668 components: - pos: 104.5,-39.5 @@ -50775,8 +45218,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24669 components: - pos: 98.5,-38.5 @@ -50784,8 +45225,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24670 components: - pos: 97.5,-38.5 @@ -50793,8 +45232,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24671 components: - pos: 97.5,-39.5 @@ -50802,15 +45239,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24672 components: - pos: 97.5,-40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24673 components: - pos: 97.5,-41.5 @@ -50818,8 +45251,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24674 components: - pos: 97.5,-42.5 @@ -50827,8 +45258,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24675 components: - pos: 98.5,-42.5 @@ -50836,8 +45265,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24676 components: - pos: 99.5,-42.5 @@ -50845,8 +45272,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24677 components: - pos: 100.5,-42.5 @@ -50854,8 +45279,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24678 components: - pos: 101.5,-42.5 @@ -50863,8 +45286,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24679 components: - pos: 102.5,-42.5 @@ -50872,8 +45293,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24680 components: - pos: 98.5,-34.5 @@ -50881,8 +45300,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24681 components: - pos: 97.5,-34.5 @@ -50890,8 +45307,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24682 components: - pos: 96.5,-18.5 @@ -50899,8 +45314,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24683 components: - pos: 96.5,-19.5 @@ -50908,50 +45321,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24684 components: - pos: 96.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24685 components: - pos: 96.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24686 components: - pos: 97.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24687 components: - pos: 97.5,-22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24688 components: - pos: 97.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24689 components: - pos: 97.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24690 components: - pos: 97.5,-25.5 @@ -50959,8 +45358,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24691 components: - pos: 97.5,-26.5 @@ -50968,8 +45365,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24692 components: - pos: 97.5,-27.5 @@ -50977,8 +45372,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24693 components: - pos: 96.5,-28.5 @@ -50986,57 +45379,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24694 components: - pos: 97.5,-28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24695 components: - pos: 95.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24696 components: - pos: 94.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24697 components: - pos: 93.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24698 components: - pos: 92.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24699 components: - pos: 91.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24700 components: - pos: 93.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24701 components: - pos: 97.5,-19.5 @@ -51044,64 +45421,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24702 components: - pos: 98.5,-19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24703 components: - pos: 99.5,-19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24704 components: - pos: 100.5,-19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24705 components: - pos: 101.5,-19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24706 components: - pos: 102.5,-19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24707 components: - pos: 103.5,-19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24708 components: - pos: 104.5,-19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24709 components: - pos: 104.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24710 components: - pos: 104.5,-21.5 @@ -51109,64 +45468,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24711 components: - pos: 105.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24712 components: - pos: 106.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24713 components: - pos: 107.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24714 components: - pos: 108.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24715 components: - pos: 109.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24716 components: - pos: 110.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24717 components: - pos: 111.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24718 components: - pos: 112.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24719 components: - pos: 113.5,-20.5 @@ -51174,85 +45515,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24720 components: - pos: 114.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24721 components: - pos: 115.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24722 components: - pos: 104.5,-18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24723 components: - pos: 104.5,-17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24724 components: - pos: 104.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24725 components: - pos: 105.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24726 components: - pos: 106.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24727 components: - pos: 107.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24728 components: - pos: 108.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24729 components: - pos: 109.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24730 components: - pos: 110.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24731 components: - pos: 109.5,-22.5 @@ -51260,8 +45577,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24732 components: - pos: 109.5,-23.5 @@ -51269,8 +45584,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24733 components: - pos: 106.5,-21.5 @@ -51278,8 +45591,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24734 components: - pos: 105.5,-21.5 @@ -51287,8 +45598,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24735 components: - pos: 103.5,-21.5 @@ -51296,8 +45605,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24736 components: - pos: 108.5,-22.5 @@ -51305,8 +45612,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24758 components: - pos: 66.5,-17.5 @@ -51314,141 +45619,101 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24759 components: - pos: 66.5,-18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24760 components: - pos: 66.5,-19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24761 components: - pos: 66.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24762 components: - pos: 67.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24763 components: - pos: 68.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24764 components: - pos: 69.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24765 components: - pos: 70.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24766 components: - pos: 71.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24767 components: - pos: 72.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24768 components: - pos: 65.5,-19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24769 components: - pos: 64.5,-19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24770 components: - pos: 64.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24771 components: - pos: 64.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24772 components: - pos: 64.5,-18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24773 components: - pos: 64.5,-17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24774 components: - pos: 64.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24775 components: - pos: 64.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24776 components: - pos: 64.5,-14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24777 components: - pos: 63.5,-14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24778 components: - pos: 63.5,-13.5 @@ -51456,8 +45721,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24779 components: - pos: 67.5,-17.5 @@ -51465,15 +45728,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24780 components: - pos: 68.5,-17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24781 components: - pos: 69.5,-17.5 @@ -51481,15 +45740,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24782 components: - pos: 64.5,-22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24783 components: - pos: 64.5,-23.5 @@ -51497,8 +45752,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24784 components: - pos: 64.5,-24.5 @@ -51506,8 +45759,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24785 components: - pos: 63.5,-23.5 @@ -51515,8 +45766,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24786 components: - pos: 62.5,-23.5 @@ -51524,8 +45773,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24787 components: - pos: 61.5,-23.5 @@ -51533,8 +45780,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24788 components: - pos: 60.5,-23.5 @@ -51542,8 +45787,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24789 components: - pos: 59.5,-23.5 @@ -51551,8 +45794,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24790 components: - pos: 59.5,-22.5 @@ -51560,8 +45801,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24791 components: - pos: 59.5,-21.5 @@ -51569,8 +45808,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24792 components: - pos: 59.5,-20.5 @@ -51578,8 +45815,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24793 components: - pos: 59.5,-19.5 @@ -51587,8 +45822,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24794 components: - pos: 59.5,-18.5 @@ -51596,8 +45829,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24795 components: - pos: 59.5,-17.5 @@ -51605,8 +45836,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24796 components: - pos: 59.5,-16.5 @@ -51614,8 +45843,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24797 components: - pos: 59.5,-15.5 @@ -51623,8 +45850,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24798 components: - pos: 59.5,-14.5 @@ -51632,8 +45857,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24799 components: - pos: 65.5,-24.5 @@ -51641,8 +45864,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24800 components: - pos: 65.5,-25.5 @@ -51650,8 +45871,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24801 components: - pos: 65.5,-26.5 @@ -51659,8 +45878,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24802 components: - pos: 65.5,-27.5 @@ -51668,8 +45885,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24803 components: - pos: 65.5,-28.5 @@ -51677,8 +45892,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24804 components: - pos: 65.5,-29.5 @@ -51686,8 +45899,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24805 components: - pos: 62.5,-6.5 @@ -51695,92 +45906,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24806 components: - pos: 62.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24807 components: - pos: 61.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24808 components: - pos: 60.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24809 components: - pos: 60.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24810 components: - pos: 60.5,-3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24811 components: - pos: 60.5,-2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24812 components: - pos: 60.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24813 components: - pos: 60.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24814 components: - pos: 60.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24815 components: - pos: 60.5,1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24816 components: - pos: 60.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24817 components: - pos: 60.5,-7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24818 components: - pos: 69.5,-7.5 @@ -51788,148 +45973,106 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24819 components: - pos: 69.5,-8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24820 components: - pos: 69.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24821 components: - pos: 69.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24822 components: - pos: 69.5,-11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24823 components: - pos: 68.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24824 components: - pos: 67.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24825 components: - pos: 66.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24826 components: - pos: 65.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24827 components: - pos: 64.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24828 components: - pos: 63.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24829 components: - pos: 62.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24830 components: - pos: 61.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24831 components: - pos: 60.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24832 components: - pos: 59.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24833 components: - pos: 58.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24834 components: - pos: 67.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24835 components: - pos: 67.5,-8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24836 components: - pos: 67.5,-7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24837 components: - pos: 67.5,-11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24838 components: - pos: 64.5,-11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24839 components: - pos: 72.5,-7.5 @@ -51937,176 +46080,126 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24840 components: - pos: 72.5,-8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24841 components: - pos: 72.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24842 components: - pos: 72.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24843 components: - pos: 72.5,-11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24844 components: - pos: 72.5,-12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24845 components: - pos: 72.5,-13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24846 components: - pos: 72.5,-14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24847 components: - pos: 72.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24848 components: - pos: 72.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24849 components: - pos: 73.5,-14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24850 components: - pos: 74.5,-14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24851 components: - pos: 75.5,-14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24852 components: - pos: 76.5,-14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24853 components: - pos: 77.5,-14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24854 components: - pos: 78.5,-14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24855 components: - pos: 81.5,-14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24856 components: - pos: 77.5,-13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24857 components: - pos: 77.5,-12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24858 components: - pos: 77.5,-11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24859 components: - pos: 77.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24860 components: - pos: 77.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24861 components: - pos: 77.5,-8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24862 components: - pos: 76.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24863 components: - pos: 75.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24925 components: - pos: 53.5,-5.5 @@ -52114,540 +46207,386 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24926 components: - pos: 52.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24927 components: - pos: 51.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24928 components: - pos: 50.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24929 components: - pos: 49.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24930 components: - pos: 48.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24931 components: - pos: 47.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24932 components: - pos: 46.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24933 components: - pos: 45.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24934 components: - pos: 47.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24935 components: - pos: 50.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24936 components: - pos: 54.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24937 components: - pos: 55.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24938 components: - pos: 55.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24939 components: - pos: 55.5,-3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24940 components: - pos: 55.5,-2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24941 components: - pos: 55.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24942 components: - pos: 54.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24943 components: - pos: 53.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24944 components: - pos: 52.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24945 components: - pos: 51.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24946 components: - pos: 50.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24947 components: - pos: 49.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24948 components: - pos: 48.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24949 components: - pos: 47.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24950 components: - pos: 46.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24951 components: - pos: 45.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24952 components: - pos: 44.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24953 components: - pos: 43.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24954 components: - pos: 42.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24955 components: - pos: 42.5,-2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24956 components: - pos: 42.5,-3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24957 components: - pos: 42.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24958 components: - pos: 42.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24959 components: - pos: 42.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24960 components: - pos: 42.5,-7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24961 components: - pos: 42.5,-8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24962 components: - pos: 42.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24963 components: - pos: 42.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24964 components: - pos: 43.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24965 components: - pos: 44.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24966 components: - pos: 45.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24967 components: - pos: 46.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24968 components: - pos: 47.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24969 components: - pos: 48.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24970 components: - pos: 49.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24971 components: - pos: 50.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24972 components: - pos: 51.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24973 components: - pos: 52.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24974 components: - pos: 53.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24975 components: - pos: 54.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24976 components: - pos: 55.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24977 components: - pos: 55.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24978 components: - pos: 55.5,-8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24979 components: - pos: 55.5,-7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24980 components: - pos: 55.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24994 components: - pos: 28.5,-11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24995 components: - pos: 28.5,-12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24996 components: - pos: 28.5,-13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24997 components: - pos: 28.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24998 components: - pos: 28.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24999 components: - pos: 28.5,-8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25000 components: - pos: 28.5,-7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25001 components: - pos: 28.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25002 components: - pos: 28.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25010 components: - pos: 55.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25011 components: - pos: 55.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25012 components: - pos: 55.5,1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25013 components: - pos: 55.5,2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25014 components: - pos: 55.5,3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25015 components: - pos: 55.5,4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25016 components: - pos: 55.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25017 components: - pos: 55.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25018 components: - pos: 55.5,7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25019 components: - pos: 55.5,8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25039 components: - pos: 97.5,-33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25040 components: - pos: 97.5,-32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25041 components: - pos: 97.5,-31.5 @@ -52655,8 +46594,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25042 components: - pos: 98.5,-31.5 @@ -52664,8 +46601,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25043 components: - pos: 99.5,-31.5 @@ -52673,8 +46608,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25044 components: - pos: 100.5,-31.5 @@ -52682,8 +46615,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25045 components: - pos: 101.5,-31.5 @@ -52691,8 +46622,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25626 components: - pos: 83.5,-9.5 @@ -52700,43 +46629,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25627 components: - pos: 83.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25628 components: - pos: 83.5,-11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25629 components: - pos: 83.5,-12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25630 components: - pos: 83.5,-13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25631 components: - pos: 82.5,-13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25632 components: - pos: 88.5,-14.5 @@ -52744,43 +46661,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25633 components: - pos: 84.5,-13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25634 components: - pos: 85.5,-13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25635 components: - pos: 85.5,-14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25636 components: - pos: 85.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25637 components: - pos: 84.5,-11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25638 components: - pos: 80.5,-14.5 @@ -52788,22 +46693,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25639 components: - pos: 81.5,-13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25640 components: - pos: 81.5,-12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25641 components: - pos: 80.5,-12.5 @@ -52811,15 +46710,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25642 components: - pos: 93.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25643 components: - pos: 87.5,-12.5 @@ -52827,8 +46722,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25644 components: - pos: 87.5,-11.5 @@ -52836,8 +46729,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25645 components: - pos: 75.5,-1.5 @@ -52845,8 +46736,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25646 components: - pos: 74.5,-1.5 @@ -52854,64 +46743,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25647 components: - pos: 73.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25648 components: - pos: 72.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25649 components: - pos: 72.5,-2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25650 components: - pos: 72.5,-3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25651 components: - pos: 72.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25652 components: - pos: 72.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25653 components: - pos: 72.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25654 components: - pos: 72.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25655 components: - pos: 80.5,2.5 @@ -52919,197 +46790,141 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25656 components: - pos: 80.5,1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25657 components: - pos: 80.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25658 components: - pos: 79.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25659 components: - pos: 78.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25660 components: - pos: 77.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25661 components: - pos: 77.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25662 components: - pos: 77.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25663 components: - pos: 77.5,-2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25664 components: - pos: 77.5,-3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25665 components: - pos: 77.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25666 components: - pos: 77.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25667 components: - pos: 81.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25668 components: - pos: 82.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25669 components: - pos: 83.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25670 components: - pos: 83.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25671 components: - pos: 83.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25672 components: - pos: 83.5,-2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25673 components: - pos: 83.5,-3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25674 components: - pos: 83.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25675 components: - pos: 83.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25676 components: - pos: 83.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25677 components: - pos: 83.5,-7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25678 components: - pos: 82.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25679 components: - pos: 80.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25680 components: - pos: 81.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25681 components: - pos: 79.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25682 components: - pos: 78.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25683 components: - pos: 85.5,4.5 @@ -53117,92 +46932,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25684 components: - pos: 85.5,3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25685 components: - pos: 86.5,3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25686 components: - pos: 86.5,2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25687 components: - pos: 86.5,1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25688 components: - pos: 86.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25689 components: - pos: 86.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25690 components: - pos: 86.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25691 components: - pos: 86.5,-2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25692 components: - pos: 86.5,-3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25693 components: - pos: 86.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25694 components: - pos: 86.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25695 components: - pos: 86.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25696 components: - pos: 88.5,-2.5 @@ -53210,78 +46999,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25697 components: - pos: 89.5,-2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25698 components: - pos: 90.5,-2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25699 components: - pos: 90.5,-3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25700 components: - pos: 90.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25701 components: - pos: 90.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25702 components: - pos: 90.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25703 components: - pos: 90.5,-7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25704 components: - pos: 90.5,-8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25705 components: - pos: 90.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25706 components: - pos: 90.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25707 components: - pos: 90.5,0.5 @@ -53289,29 +47056,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25708 components: - pos: 90.5,1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25709 components: - pos: 90.5,2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25710 components: - pos: 90.5,3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25711 components: - pos: 91.5,0.5 @@ -53319,8 +47078,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25712 components: - pos: 92.5,0.5 @@ -53328,8 +47085,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25713 components: - pos: 93.5,0.5 @@ -53337,8 +47092,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25714 components: - pos: 94.5,0.5 @@ -53346,22 +47099,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25715 components: - pos: 95.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25716 components: - pos: 96.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25717 components: - pos: 97.5,0.5 @@ -53369,8 +47116,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25718 components: - pos: 98.5,0.5 @@ -53378,8 +47123,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25719 components: - pos: 88.5,4.5 @@ -53387,22 +47130,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25720 components: - pos: 88.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25721 components: - pos: 88.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25722 components: - pos: 88.5,7.5 @@ -53410,43 +47147,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25723 components: - pos: 87.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25724 components: - pos: 86.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25725 components: - pos: 85.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25726 components: - pos: 84.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25727 components: - pos: 89.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25728 components: - pos: 96.5,-1.5 @@ -53454,22 +47179,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25729 components: - pos: 96.5,-2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25730 components: - pos: 96.5,-3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25731 components: - pos: 96.5,-4.5 @@ -53477,8 +47196,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25732 components: - pos: 96.5,-5.5 @@ -53486,8 +47203,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25733 components: - pos: 96.5,-6.5 @@ -53495,22 +47210,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25734 components: - pos: 96.5,-7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25735 components: - pos: 96.5,-8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25736 components: - pos: 97.5,-5.5 @@ -53518,15 +47227,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25737 components: - pos: 98.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25738 components: - pos: 99.5,-5.5 @@ -53534,8 +47239,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25739 components: - pos: 99.5,-4.5 @@ -53543,8 +47246,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25740 components: - pos: 99.5,-3.5 @@ -53552,8 +47253,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25741 components: - pos: 99.5,-6.5 @@ -53561,8 +47260,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25742 components: - pos: 99.5,-7.5 @@ -53570,36 +47267,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25743 components: - pos: 95.5,-8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25744 components: - pos: 94.5,-8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25745 components: - pos: 95.5,-3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25746 components: - pos: 94.5,-3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25747 components: - pos: 92.5,-9.5 @@ -53607,92 +47294,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25748 components: - pos: 92.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25749 components: - pos: 92.5,-11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25750 components: - pos: 92.5,-12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25751 components: - pos: 92.5,-13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25752 components: - pos: 92.5,-14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25753 components: - pos: 92.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25754 components: - pos: 92.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25755 components: - pos: 91.5,-12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25756 components: - pos: 90.5,-12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25757 components: - pos: 89.5,-12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25758 components: - pos: 88.5,-12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25759 components: - pos: 88.5,-13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25760 components: - pos: 88.5,-15.5 @@ -53700,8 +47361,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25761 components: - pos: 88.5,-16.5 @@ -53709,106 +47368,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25762 components: - pos: 93.5,-11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25763 components: - pos: 94.5,-11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25764 components: - pos: 95.5,-11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25765 components: - pos: 96.5,-11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25766 components: - pos: 97.5,-11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25767 components: - pos: 98.5,-11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25768 components: - pos: 98.5,-12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25769 components: - pos: 98.5,-13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25770 components: - pos: 98.5,-14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25771 components: - pos: 98.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25772 components: - pos: 98.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25773 components: - pos: 99.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25774 components: - pos: 100.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25775 components: - pos: 111.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25776 components: - pos: 112.5,-16.5 @@ -53816,8 +47445,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25777 components: - pos: 113.5,-16.5 @@ -53825,8 +47452,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25778 components: - pos: 113.5,-15.5 @@ -53834,8 +47459,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25844 components: - pos: 23.5,-44.5 @@ -53843,8 +47466,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25845 components: - pos: 22.5,-44.5 @@ -53852,8 +47473,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25846 components: - pos: 22.5,-45.5 @@ -53861,8 +47480,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25847 components: - pos: 21.5,-49.5 @@ -53870,8 +47487,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25848 components: - pos: 21.5,-48.5 @@ -53879,8 +47494,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25849 components: - pos: 22.5,-52.5 @@ -53888,15 +47501,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25850 components: - pos: 23.5,-52.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25851 components: - pos: 24.5,-60.5 @@ -53904,8 +47513,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25852 components: - pos: 24.5,-59.5 @@ -53913,8 +47520,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25853 components: - pos: 24.5,-61.5 @@ -53922,8 +47527,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25854 components: - pos: 28.5,-60.5 @@ -53931,8 +47534,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25855 components: - pos: 28.5,-59.5 @@ -53940,8 +47541,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25856 components: - pos: 28.5,-61.5 @@ -53949,29 +47548,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25857 components: - pos: 28.5,-58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25858 components: - pos: 29.5,-58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25859 components: - pos: 30.5,-58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25860 components: - pos: 30.5,-59.5 @@ -53979,15 +47570,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25861 components: - pos: 23.5,-57.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25862 components: - pos: 22.5,-57.5 @@ -53995,15 +47582,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25863 components: - pos: 23.5,-55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25864 components: - pos: 22.5,-55.5 @@ -54011,8 +47594,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25865 components: - pos: 47.5,-55.5 @@ -54020,8 +47601,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26798 components: - pos: 100.5,-44.5 @@ -54029,15 +47608,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26799 components: - pos: 100.5,-45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 26800 components: - pos: 100.5,-46.5 @@ -54045,15 +47620,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26801 components: - pos: 101.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 26802 components: - pos: 103.5,-46.5 @@ -54061,8 +47632,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26803 components: - pos: 102.5,-46.5 @@ -54070,8 +47639,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26804 components: - pos: 104.5,-46.5 @@ -54079,8 +47646,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26805 components: - pos: 105.5,-46.5 @@ -54088,8 +47653,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26806 components: - pos: 106.5,-46.5 @@ -54097,8 +47660,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26807 components: - pos: 107.5,-46.5 @@ -54106,8 +47667,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26808 components: - pos: 103.5,-47.5 @@ -54115,8 +47674,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26809 components: - pos: 103.5,-48.5 @@ -54124,8 +47681,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26810 components: - pos: 103.5,-49.5 @@ -54133,8 +47688,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26811 components: - pos: 103.5,-50.5 @@ -54142,8 +47695,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26812 components: - pos: 103.5,-51.5 @@ -54151,8 +47702,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26813 components: - pos: 103.5,-52.5 @@ -54160,8 +47709,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26814 components: - pos: 103.5,-53.5 @@ -54169,8 +47716,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26815 components: - pos: 103.5,-54.5 @@ -54178,8 +47723,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26816 components: - pos: 102.5,-54.5 @@ -54187,8 +47730,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26817 components: - pos: 102.5,-55.5 @@ -54196,8 +47737,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26818 components: - pos: 102.5,-56.5 @@ -54205,8 +47744,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26819 components: - pos: 102.5,-57.5 @@ -54214,8 +47751,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26820 components: - pos: 102.5,-53.5 @@ -54223,15 +47758,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26821 components: - pos: 101.5,-53.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 26822 components: - pos: 99.5,-46.5 @@ -54239,8 +47770,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26823 components: - pos: 98.5,-46.5 @@ -54248,8 +47777,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26824 components: - pos: 97.5,-46.5 @@ -54257,8 +47784,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26825 components: - pos: 96.5,-46.5 @@ -54266,15 +47791,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26826 components: - pos: 95.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 26827 components: - pos: 94.5,-46.5 @@ -54282,8 +47803,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26828 components: - pos: 93.5,-46.5 @@ -54291,29 +47810,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26829 components: - pos: 92.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 26830 components: - pos: 91.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 26831 components: - pos: 90.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 26832 components: - pos: 89.5,-46.5 @@ -54321,8 +47832,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26833 components: - pos: 88.5,-46.5 @@ -54330,15 +47839,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26834 components: - pos: 87.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 26835 components: - pos: 86.5,-46.5 @@ -54346,50 +47851,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26836 components: - pos: 85.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 26837 components: - pos: 84.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 26838 components: - pos: 83.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 26839 components: - pos: 82.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 26840 components: - pos: 81.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 26841 components: - pos: 80.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 26842 components: - pos: 79.5,-46.5 @@ -54397,29 +47888,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26843 components: - pos: 78.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 26844 components: - pos: 77.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 26845 components: - pos: 76.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 26846 components: - pos: 75.5,-46.5 @@ -54427,57 +47910,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26847 components: - pos: 74.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 26848 components: - pos: 73.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 26849 components: - pos: 72.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 26850 components: - pos: 71.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 26851 components: - pos: 70.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 26852 components: - pos: 69.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 26853 components: - pos: 68.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 26854 components: - pos: 67.5,-46.5 @@ -54485,8 +47952,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26855 components: - pos: 66.5,-46.5 @@ -54494,15 +47959,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26881 components: - pos: 119.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 26882 components: - pos: 118.5,-19.5 @@ -54510,8 +47971,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26883 components: - pos: 118.5,-18.5 @@ -54519,8 +47978,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26884 components: - pos: 118.5,-17.5 @@ -54528,8 +47985,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26885 components: - pos: 118.5,-16.5 @@ -54537,8 +47992,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26886 components: - pos: 118.5,-15.5 @@ -54546,8 +47999,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26887 components: - pos: 118.5,-14.5 @@ -54555,8 +48006,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27430 components: - pos: 121.5,-4.5 @@ -54564,22 +48013,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27431 components: - pos: 121.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27432 components: - pos: 122.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27433 components: - pos: 123.5,-5.5 @@ -54587,57 +48030,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27434 components: - pos: 124.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27435 components: - pos: 124.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27436 components: - pos: 124.5,-7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27437 components: - pos: 124.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27438 components: - pos: 124.5,-3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27439 components: - pos: 125.5,-3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27440 components: - pos: 126.5,-3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27441 components: - pos: 127.5,-3.5 @@ -54645,29 +48072,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27442 components: - pos: 124.5,-2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27443 components: - pos: 124.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27444 components: - pos: 125.5,-7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27445 components: - pos: 123.5,4.5 @@ -54675,29 +48094,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27446 components: - pos: 122.5,4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27447 components: - pos: 122.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27448 components: - pos: 122.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27449 components: - pos: 123.5,6.5 @@ -54705,8 +48116,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27450 components: - pos: 125.5,6.5 @@ -54714,8 +48123,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27451 components: - pos: 125.5,6.5 @@ -54723,8 +48130,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27452 components: - pos: 124.5,6.5 @@ -54732,50 +48137,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27453 components: - pos: 123.5,2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27454 components: - pos: 123.5,3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27455 components: - pos: 124.5,1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27456 components: - pos: 123.5,1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27457 components: - pos: 125.5,1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27458 components: - pos: 126.5,1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27459 components: - pos: 122.5,1.5 @@ -54783,15 +48174,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27460 components: - pos: 121.5,1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27461 components: - pos: 115.5,13.5 @@ -54799,36 +48186,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27462 components: - pos: 115.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27463 components: - pos: 115.5,11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27464 components: - pos: 116.5,11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27465 components: - pos: 117.5,11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27466 components: - pos: 118.5,11.5 @@ -54836,8 +48213,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27467 components: - pos: 119.5,11.5 @@ -54845,8 +48220,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27468 components: - pos: 120.5,11.5 @@ -54854,8 +48227,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27469 components: - pos: 121.5,11.5 @@ -54863,50 +48234,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27470 components: - pos: 114.5,11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27471 components: - pos: 113.5,11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27472 components: - pos: 112.5,11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27473 components: - pos: 111.5,11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27474 components: - pos: 113.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27475 components: - pos: 113.5,9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27476 components: - pos: 113.5,8.5 @@ -54914,8 +48271,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27477 components: - pos: 112.5,8.5 @@ -54923,8 +48278,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27478 components: - pos: 111.5,8.5 @@ -54932,8 +48285,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27479 components: - pos: 110.5,8.5 @@ -54941,8 +48292,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27480 components: - pos: 109.5,8.5 @@ -54950,8 +48299,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27481 components: - pos: 108.5,8.5 @@ -54959,8 +48306,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27482 components: - pos: 107.5,8.5 @@ -54968,8 +48313,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27483 components: - pos: 107.5,9.5 @@ -54977,8 +48320,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27484 components: - pos: 107.5,10.5 @@ -54986,8 +48327,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27485 components: - pos: 107.5,11.5 @@ -54995,8 +48334,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27486 components: - pos: 114.5,8.5 @@ -55004,8 +48341,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27487 components: - pos: 114.5,7.5 @@ -55013,8 +48348,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27488 components: - pos: 114.5,6.5 @@ -55022,8 +48355,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27489 components: - pos: 115.5,6.5 @@ -55031,8 +48362,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27490 components: - pos: 116.5,6.5 @@ -55040,8 +48369,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27491 components: - pos: 117.5,6.5 @@ -55049,15 +48376,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27492 components: - pos: 120.5,1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27493 components: - pos: 119.5,1.5 @@ -55065,8 +48388,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27494 components: - pos: 119.5,2.5 @@ -55074,8 +48395,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27495 components: - pos: 119.5,3.5 @@ -55083,8 +48402,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27496 components: - pos: 119.5,4.5 @@ -55092,8 +48409,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27497 components: - pos: 119.5,0.5 @@ -55101,8 +48416,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27498 components: - pos: 119.5,-0.5 @@ -55110,8 +48423,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27499 components: - pos: 119.5,-1.5 @@ -55119,8 +48430,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27500 components: - pos: 119.5,-2.5 @@ -55128,15 +48437,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27501 components: - pos: 121.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27502 components: - pos: 121.5,-7.5 @@ -55144,8 +48449,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27503 components: - pos: 120.5,-7.5 @@ -55153,8 +48456,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27504 components: - pos: 119.5,-7.5 @@ -55162,8 +48463,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27505 components: - pos: 119.5,-6.5 @@ -55171,8 +48470,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27506 components: - pos: 119.5,-5.5 @@ -55180,8 +48477,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27507 components: - pos: 118.5,-5.5 @@ -55189,8 +48484,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27508 components: - pos: 119.5,-8.5 @@ -55198,8 +48491,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27509 components: - pos: 117.5,-5.5 @@ -55207,8 +48498,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27510 components: - pos: 117.5,-4.5 @@ -55216,8 +48505,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27511 components: - pos: 117.5,-3.5 @@ -55225,8 +48512,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27512 components: - pos: 117.5,-6.5 @@ -55234,8 +48519,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27513 components: - pos: 117.5,-7.5 @@ -55243,8 +48526,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27514 components: - pos: 119.5,-9.5 @@ -55252,8 +48533,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27515 components: - pos: 119.5,-10.5 @@ -55261,8 +48540,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27516 components: - pos: 119.5,-11.5 @@ -55270,8 +48547,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27517 components: - pos: 119.5,-12.5 @@ -55279,8 +48554,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27518 components: - pos: 119.5,-13.5 @@ -55288,8 +48561,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27520 components: - pos: 118.5,-13.5 @@ -55297,8 +48568,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27555 components: - pos: 91.5,31.5 @@ -55306,162 +48575,116 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27556 components: - pos: 91.5,30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27557 components: - pos: 91.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27558 components: - pos: 92.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27559 components: - pos: 93.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27560 components: - pos: 94.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27561 components: - pos: 95.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27562 components: - pos: 96.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27563 components: - pos: 97.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27564 components: - pos: 98.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27565 components: - pos: 99.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27566 components: - pos: 99.5,30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27567 components: - pos: 99.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27568 components: - pos: 99.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27569 components: - pos: 98.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27570 components: - pos: 97.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27571 components: - pos: 96.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27572 components: - pos: 95.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27573 components: - pos: 94.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27574 components: - pos: 93.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27575 components: - pos: 92.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27576 components: - pos: 92.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27577 components: - pos: 93.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27578 components: - pos: 93.5,34.5 @@ -55469,15 +48692,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27579 components: - pos: 97.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27580 components: - pos: 97.5,34.5 @@ -55485,8 +48704,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27581 components: - pos: 96.5,34.5 @@ -55494,8 +48711,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27582 components: - pos: 98.5,34.5 @@ -55503,8 +48718,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27610 components: - pos: 85.5,34.5 @@ -55512,113 +48725,81 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27611 components: - pos: 86.5,34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27612 components: - pos: 87.5,34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27613 components: - pos: 87.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27614 components: - pos: 87.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27615 components: - pos: 87.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27616 components: - pos: 87.5,30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27617 components: - pos: 87.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27618 components: - pos: 87.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27619 components: - pos: 88.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27620 components: - pos: 89.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27621 components: - pos: 90.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27622 components: - pos: 91.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27623 components: - pos: 92.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27624 components: - pos: 92.5,36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27625 components: - pos: 93.5,36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27626 components: - pos: 94.5,36.5 @@ -55626,36 +48807,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27627 components: - pos: 96.5,36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27628 components: - pos: 95.5,36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27629 components: - pos: 97.5,36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27630 components: - pos: 98.5,36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28051 components: - pos: 120.5,-16.5 @@ -55663,15 +48834,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28199 components: - pos: 67.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28200 components: - pos: 67.5,-5.5 @@ -55679,8 +48846,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28201 components: - pos: 66.5,-5.5 @@ -55688,8 +48853,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28202 components: - pos: 65.5,-5.5 @@ -55697,8 +48860,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28203 components: - pos: 64.5,-5.5 @@ -55706,8 +48867,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28204 components: - pos: 64.5,-4.5 @@ -55715,8 +48874,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28205 components: - pos: 64.5,-3.5 @@ -55724,8 +48881,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28206 components: - pos: 64.5,-2.5 @@ -55733,8 +48888,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28207 components: - pos: 64.5,-1.5 @@ -55742,8 +48895,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28208 components: - pos: 64.5,-0.5 @@ -55751,8 +48902,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28209 components: - pos: 65.5,-0.5 @@ -55760,8 +48909,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28210 components: - pos: 66.5,-0.5 @@ -55769,8 +48916,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28211 components: - pos: 67.5,-0.5 @@ -55778,8 +48923,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28212 components: - pos: 64.5,0.5 @@ -55787,8 +48930,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28213 components: - pos: 64.5,1.5 @@ -55796,8 +48937,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28447 components: - pos: 69.5,17.5 @@ -55805,288 +48944,206 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28448 components: - pos: 69.5,16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28449 components: - pos: 69.5,15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28450 components: - pos: 69.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28451 components: - pos: 69.5,13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28452 components: - pos: 69.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28453 components: - pos: 69.5,11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28454 components: - pos: 69.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28455 components: - pos: 69.5,9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28456 components: - pos: 69.5,8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28457 components: - pos: 69.5,7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28458 components: - pos: 69.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28459 components: - pos: 68.5,11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28460 components: - pos: 67.5,11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28461 components: - pos: 66.5,11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28462 components: - pos: 65.5,11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28463 components: - pos: 64.5,11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28464 components: - pos: 63.5,11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28465 components: - pos: 62.5,11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28466 components: - pos: 61.5,11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28467 components: - pos: 60.5,11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28468 components: - pos: 59.5,11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28469 components: - pos: 59.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28470 components: - pos: 59.5,9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28471 components: - pos: 59.5,8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28472 components: - pos: 59.5,7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28473 components: - pos: 59.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28474 components: - pos: 59.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28475 components: - pos: 68.5,7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28476 components: - pos: 67.5,7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28477 components: - pos: 66.5,7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28478 components: - pos: 65.5,7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28479 components: - pos: 64.5,7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28480 components: - pos: 63.5,7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28481 components: - pos: 62.5,7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28482 components: - pos: 64.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28483 components: - pos: 64.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28484 components: - pos: 68.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28485 components: - pos: 67.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28486 components: - pos: 66.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28487 components: - pos: 65.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28488 components: - pos: 60.5,19.5 @@ -56094,92 +49151,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28489 components: - pos: 61.5,19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28490 components: - pos: 61.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28491 components: - pos: 61.5,17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28492 components: - pos: 61.5,16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28493 components: - pos: 61.5,15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28494 components: - pos: 61.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28495 components: - pos: 62.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28496 components: - pos: 63.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28497 components: - pos: 64.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28498 components: - pos: 65.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28499 components: - pos: 66.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28500 components: - pos: 61.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28501 components: - pos: 61.5,21.5 @@ -56187,8 +49218,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28502 components: - pos: 61.5,22.5 @@ -56196,8 +49225,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28503 components: - pos: 61.5,23.5 @@ -56205,8 +49232,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28504 components: - pos: 61.5,24.5 @@ -56214,8 +49239,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28505 components: - pos: 60.5,24.5 @@ -56223,8 +49246,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28506 components: - pos: 59.5,24.5 @@ -56232,8 +49253,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28507 components: - pos: 58.5,24.5 @@ -56241,120 +49260,86 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28508 components: - pos: 57.5,24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28509 components: - pos: 56.5,24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28510 components: - pos: 55.5,24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28511 components: - pos: 55.5,23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28512 components: - pos: 55.5,22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28513 components: - pos: 55.5,21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28514 components: - pos: 55.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28515 components: - pos: 55.5,19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28516 components: - pos: 55.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28517 components: - pos: 55.5,17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28518 components: - pos: 55.5,16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28519 components: - pos: 55.5,15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28520 components: - pos: 55.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28521 components: - pos: 55.5,13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28522 components: - pos: 55.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28523 components: - pos: 55.5,11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28524 components: - pos: 62.5,24.5 @@ -56362,8 +49347,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28525 components: - pos: 63.5,24.5 @@ -56371,8 +49354,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28526 components: - pos: 64.5,24.5 @@ -56380,8 +49361,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28527 components: - pos: 65.5,24.5 @@ -56389,8 +49368,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28528 components: - pos: 66.5,24.5 @@ -56398,8 +49375,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28529 components: - pos: 67.5,24.5 @@ -56407,8 +49382,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28530 components: - pos: 60.5,35.5 @@ -56416,155 +49389,111 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28531 components: - pos: 60.5,34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28532 components: - pos: 60.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28533 components: - pos: 60.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28534 components: - pos: 60.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28535 components: - pos: 60.5,30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28536 components: - pos: 60.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28537 components: - pos: 60.5,28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28538 components: - pos: 60.5,27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28539 components: - pos: 60.5,26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28540 components: - pos: 59.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28541 components: - pos: 58.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28542 components: - pos: 57.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28543 components: - pos: 56.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28544 components: - pos: 55.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28545 components: - pos: 55.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28546 components: - pos: 55.5,30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28547 components: - pos: 55.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28548 components: - pos: 55.5,28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28549 components: - pos: 55.5,27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28550 components: - pos: 55.5,26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28551 components: - pos: 55.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28552 components: - pos: 67.5,30.5 @@ -56572,246 +49501,176 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28553 components: - pos: 66.5,30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28554 components: - pos: 65.5,30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28555 components: - pos: 64.5,30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28556 components: - pos: 63.5,30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28557 components: - pos: 64.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28558 components: - pos: 64.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28559 components: - pos: 64.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28560 components: - pos: 64.5,34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28561 components: - pos: 64.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28562 components: - pos: 64.5,36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28563 components: - pos: 65.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28564 components: - pos: 66.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28565 components: - pos: 67.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28566 components: - pos: 68.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28567 components: - pos: 69.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28568 components: - pos: 70.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28569 components: - pos: 71.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28570 components: - pos: 72.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28571 components: - pos: 70.5,34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28572 components: - pos: 70.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28573 components: - pos: 70.5,36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28574 components: - pos: 69.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28575 components: - pos: 69.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28576 components: - pos: 69.5,30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28577 components: - pos: 69.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28578 components: - pos: 69.5,28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28579 components: - pos: 69.5,27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28580 components: - pos: 69.5,26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28581 components: - pos: 68.5,28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28582 components: - pos: 67.5,28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28583 components: - pos: 66.5,28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28584 components: - pos: 65.5,28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28585 components: - pos: 64.5,28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28586 components: - pos: 64.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28587 components: - pos: 76.5,36.5 @@ -56819,99 +49678,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28588 components: - pos: 76.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28589 components: - pos: 76.5,34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28590 components: - pos: 76.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28591 components: - pos: 76.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28592 components: - pos: 76.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28593 components: - pos: 77.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28594 components: - pos: 78.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28595 components: - pos: 79.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28596 components: - pos: 77.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28597 components: - pos: 78.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28598 components: - pos: 79.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28599 components: - pos: 77.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28600 components: - pos: 77.5,30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28601 components: - pos: 77.5,29.5 @@ -56919,8 +49750,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28602 components: - pos: 76.5,29.5 @@ -56928,8 +49757,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28603 components: - pos: 75.5,29.5 @@ -56937,8 +49764,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28604 components: - pos: 74.5,29.5 @@ -56946,8 +49771,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28605 components: - pos: 73.5,29.5 @@ -56955,8 +49778,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28606 components: - pos: 74.5,28.5 @@ -56964,8 +49785,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28607 components: - pos: 74.5,27.5 @@ -56973,8 +49792,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28608 components: - pos: 74.5,26.5 @@ -56982,8 +49799,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28609 components: - pos: 74.5,25.5 @@ -56991,8 +49806,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28610 components: - pos: 74.5,24.5 @@ -57000,8 +49813,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28611 components: - pos: 74.5,23.5 @@ -57009,8 +49820,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28612 components: - pos: 74.5,22.5 @@ -57018,8 +49827,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28613 components: - pos: 73.5,22.5 @@ -57027,8 +49834,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28614 components: - pos: 72.5,22.5 @@ -57036,8 +49841,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28615 components: - pos: 80.5,23.5 @@ -57045,330 +49848,236 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28616 components: - pos: 81.5,23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28617 components: - pos: 82.5,23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28618 components: - pos: 82.5,24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28619 components: - pos: 82.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28620 components: - pos: 82.5,26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28621 components: - pos: 82.5,27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28622 components: - pos: 82.5,28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28623 components: - pos: 82.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28624 components: - pos: 82.5,30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28625 components: - pos: 82.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28626 components: - pos: 82.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28627 components: - pos: 82.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28628 components: - pos: 82.5,34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28629 components: - pos: 82.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28630 components: - pos: 82.5,36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28631 components: - pos: 82.5,37.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28632 components: - pos: 82.5,38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28633 components: - pos: 82.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28634 components: - pos: 82.5,22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28635 components: - pos: 82.5,21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28636 components: - pos: 82.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28637 components: - pos: 82.5,19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28638 components: - pos: 82.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28639 components: - pos: 81.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28640 components: - pos: 80.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28641 components: - pos: 79.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28642 components: - pos: 78.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28643 components: - pos: 83.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28644 components: - pos: 84.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28645 components: - pos: 85.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28646 components: - pos: 86.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28647 components: - pos: 83.5,21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28648 components: - pos: 84.5,21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28649 components: - pos: 85.5,21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28650 components: - pos: 86.5,21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28651 components: - pos: 81.5,21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28652 components: - pos: 80.5,21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28653 components: - pos: 79.5,21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28654 components: - pos: 78.5,21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28656 components: - pos: 80.5,24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28657 components: - pos: 79.5,24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28658 components: - pos: 78.5,24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28659 components: - pos: 83.5,24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28660 components: - pos: 84.5,24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28661 components: - pos: 85.5,24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28662 components: - pos: 86.5,24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28704 components: - pos: 86.5,17.5 @@ -57376,225 +50085,161 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28705 components: - pos: 86.5,16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28706 components: - pos: 86.5,15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28707 components: - pos: 86.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28708 components: - pos: 86.5,13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28709 components: - pos: 86.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28710 components: - pos: 85.5,13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28711 components: - pos: 84.5,13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28712 components: - pos: 83.5,13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28713 components: - pos: 82.5,13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28714 components: - pos: 81.5,13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28715 components: - pos: 80.5,13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28716 components: - pos: 79.5,13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28717 components: - pos: 78.5,13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28718 components: - pos: 77.5,13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28719 components: - pos: 76.5,13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28720 components: - pos: 76.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28721 components: - pos: 70.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28722 components: - pos: 71.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28723 components: - pos: 72.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28724 components: - pos: 73.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28725 components: - pos: 73.5,13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28726 components: - pos: 73.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28727 components: - pos: 73.5,11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28728 components: - pos: 73.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28729 components: - pos: 73.5,9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28730 components: - pos: 73.5,8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28731 components: - pos: 73.5,7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28732 components: - pos: 73.5,15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28733 components: - pos: 73.5,16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28734 components: - pos: 74.5,16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28735 components: - pos: 74.5,17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28736 components: - pos: 74.5,18.5 @@ -57602,8 +50247,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28737 components: - pos: 74.5,19.5 @@ -57611,78 +50254,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28738 components: - pos: 72.5,16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28739 components: - pos: 72.5,17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28740 components: - pos: 72.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28741 components: - pos: 85.5,15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28742 components: - pos: 84.5,15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28743 components: - pos: 83.5,15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28744 components: - pos: 82.5,15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28745 components: - pos: 81.5,15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28746 components: - pos: 80.5,15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28747 components: - pos: 79.5,15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28748 components: - pos: 92.5,24.5 @@ -57690,204 +50311,146 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28749 components: - pos: 92.5,23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28750 components: - pos: 92.5,22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28751 components: - pos: 92.5,21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28752 components: - pos: 92.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28753 components: - pos: 92.5,19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28754 components: - pos: 92.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28755 components: - pos: 92.5,17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28756 components: - pos: 92.5,16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28757 components: - pos: 92.5,15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28758 components: - pos: 92.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28759 components: - pos: 92.5,13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28760 components: - pos: 92.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28761 components: - pos: 93.5,13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28762 components: - pos: 94.5,13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28763 components: - pos: 91.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28764 components: - pos: 90.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28765 components: - pos: 93.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28766 components: - pos: 91.5,22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28767 components: - pos: 90.5,22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28768 components: - pos: 94.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28769 components: - pos: 95.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28770 components: - pos: 96.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28771 components: - pos: 97.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28772 components: - pos: 98.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28773 components: - pos: 99.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28774 components: - pos: 100.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28775 components: - pos: 94.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28776 components: - pos: 95.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28777 components: - pos: 96.5,14.5 @@ -57895,8 +50458,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28778 components: - pos: 97.5,14.5 @@ -57904,8 +50465,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28779 components: - pos: 98.5,14.5 @@ -57913,8 +50472,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28780 components: - pos: 98.5,13.5 @@ -57922,8 +50479,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28781 components: - pos: 98.5,12.5 @@ -57931,8 +50486,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28782 components: - pos: 98.5,11.5 @@ -57940,8 +50493,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28783 components: - pos: 98.5,10.5 @@ -57949,8 +50500,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28784 components: - pos: 99.5,10.5 @@ -57958,8 +50507,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28785 components: - pos: 97.5,10.5 @@ -57967,148 +50514,106 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28934 components: - pos: 13.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28935 components: - pos: 13.5,34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28936 components: - pos: 13.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28937 components: - pos: 12.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28938 components: - pos: 11.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28939 components: - pos: 10.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28940 components: - pos: 9.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28941 components: - pos: 8.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28942 components: - pos: 7.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28943 components: - pos: 6.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28944 components: - pos: 5.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28945 components: - pos: 4.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28946 components: - pos: 3.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28947 components: - pos: 14.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28948 components: - pos: 15.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28949 components: - pos: 16.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28950 components: - pos: 17.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28951 components: - pos: 18.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28952 components: - pos: 19.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28953 components: - pos: 20.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29041 components: - pos: 92.5,25.5 @@ -58116,8 +50621,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29042 components: - pos: 92.5,26.5 @@ -58125,8 +50628,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29043 components: - pos: 91.5,26.5 @@ -58134,8 +50635,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29044 components: - pos: 90.5,26.5 @@ -58143,8 +50642,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29045 components: - pos: 90.5,27.5 @@ -58152,8 +50649,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29046 components: - pos: 89.5,27.5 @@ -58161,8 +50656,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29047 components: - pos: 88.5,27.5 @@ -58170,8 +50663,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29048 components: - pos: 87.5,27.5 @@ -58179,8 +50670,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29049 components: - pos: 86.5,27.5 @@ -58188,8 +50677,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29050 components: - pos: 93.5,26.5 @@ -58197,8 +50684,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29051 components: - pos: 94.5,26.5 @@ -58206,8 +50691,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29052 components: - pos: 95.5,26.5 @@ -58215,8 +50698,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29053 components: - pos: 96.5,26.5 @@ -58224,8 +50705,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29054 components: - pos: 97.5,26.5 @@ -58233,8 +50712,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29055 components: - pos: 98.5,26.5 @@ -58242,8 +50719,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29056 components: - pos: 99.5,26.5 @@ -58251,8 +50726,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29057 components: - pos: 100.5,26.5 @@ -58260,8 +50733,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29058 components: - pos: 101.5,26.5 @@ -58269,8 +50740,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29059 components: - pos: 102.5,26.5 @@ -58278,15 +50747,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29060 components: - pos: 101.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29061 components: - pos: 102.5,20.5 @@ -58294,8 +50759,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29062 components: - pos: 102.5,21.5 @@ -58303,8 +50766,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29063 components: - pos: 102.5,22.5 @@ -58312,8 +50773,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29064 components: - pos: 102.5,23.5 @@ -58321,8 +50780,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29065 components: - pos: 102.5,24.5 @@ -58330,8 +50787,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29066 components: - pos: 102.5,25.5 @@ -58339,8 +50794,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29067 components: - pos: 103.5,19.5 @@ -58348,8 +50801,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29068 components: - pos: 102.5,19.5 @@ -58357,8 +50808,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29069 components: - pos: 104.5,19.5 @@ -58366,8 +50815,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29070 components: - pos: 105.5,19.5 @@ -58375,8 +50822,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29071 components: - pos: 106.5,19.5 @@ -58384,8 +50829,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29072 components: - pos: 107.5,19.5 @@ -58393,8 +50836,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29073 components: - pos: 108.5,19.5 @@ -58402,239 +50843,171 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29087 components: - pos: 24.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29088 components: - pos: 24.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29089 components: - pos: 25.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29090 components: - pos: 26.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29091 components: - pos: 27.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29092 components: - pos: 28.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29093 components: - pos: 29.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29094 components: - pos: 30.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29095 components: - pos: 31.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29096 components: - pos: 32.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29097 components: - pos: 33.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29098 components: - pos: 34.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29099 components: - pos: 34.5,34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29100 components: - pos: 34.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29101 components: - pos: 34.5,36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29102 components: - pos: 23.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29103 components: - pos: 54.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29104 components: - pos: 53.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29105 components: - pos: 52.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29106 components: - pos: 51.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29107 components: - pos: 50.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29108 components: - pos: 49.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29109 components: - pos: 48.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29110 components: - pos: 47.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29111 components: - pos: 46.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29112 components: - pos: 45.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29113 components: - pos: 44.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29114 components: - pos: 43.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29115 components: - pos: 42.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29116 components: - pos: 41.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29117 components: - pos: 40.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29118 components: - pos: 39.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29119 components: - pos: 38.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29960 components: - pos: 125.5,49.5 @@ -58642,204 +51015,146 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29961 components: - pos: 126.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29962 components: - pos: 126.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29963 components: - pos: 126.5,51.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29964 components: - pos: 126.5,52.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29965 components: - pos: 125.5,52.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29966 components: - pos: 124.5,52.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29967 components: - pos: 123.5,52.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29968 components: - pos: 122.5,52.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29969 components: - pos: 121.5,52.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29970 components: - pos: 120.5,52.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29971 components: - pos: 119.5,52.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29972 components: - pos: 126.5,48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29973 components: - pos: 126.5,47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29974 components: - pos: 126.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29975 components: - pos: 125.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29976 components: - pos: 124.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29977 components: - pos: 123.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29978 components: - pos: 122.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29979 components: - pos: 121.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29980 components: - pos: 120.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29981 components: - pos: 119.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29982 components: - pos: 119.5,47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29983 components: - pos: 119.5,48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29984 components: - pos: 119.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29985 components: - pos: 119.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29986 components: - pos: 119.5,51.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29987 components: - pos: 120.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29988 components: - pos: 121.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29989 components: - pos: 122.5,49.5 @@ -58847,71 +51162,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29990 components: - pos: 123.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29991 components: - pos: 124.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29992 components: - pos: 118.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29993 components: - pos: 117.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29994 components: - pos: 116.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29995 components: - pos: 115.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29996 components: - pos: 114.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29997 components: - pos: 113.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29998 components: - pos: 112.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29999 components: - pos: 94.5,49.5 @@ -58919,211 +51214,151 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30000 components: - pos: 95.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30001 components: - pos: 96.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30002 components: - pos: 96.5,48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30003 components: - pos: 96.5,47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30004 components: - pos: 96.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30005 components: - pos: 96.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30006 components: - pos: 96.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30007 components: - pos: 96.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30008 components: - pos: 96.5,42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30009 components: - pos: 96.5,41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30010 components: - pos: 96.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30011 components: - pos: 96.5,51.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30012 components: - pos: 96.5,52.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30013 components: - pos: 96.5,53.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30014 components: - pos: 96.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30015 components: - pos: 96.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30016 components: - pos: 96.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30017 components: - pos: 97.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30018 components: - pos: 98.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30019 components: - pos: 99.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30020 components: - pos: 100.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30021 components: - pos: 101.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30022 components: - pos: 102.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30023 components: - pos: 101.5,48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30024 components: - pos: 101.5,47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30025 components: - pos: 101.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30026 components: - pos: 101.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30027 components: - pos: 101.5,51.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30028 components: - pos: 101.5,52.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30029 components: - pos: 104.5,57.5 @@ -59131,78 +51366,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30030 components: - pos: 104.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30031 components: - pos: 104.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30032 components: - pos: 103.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30033 components: - pos: 102.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30034 components: - pos: 101.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30035 components: - pos: 100.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30036 components: - pos: 105.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30037 components: - pos: 106.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30038 components: - pos: 107.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30039 components: - pos: 108.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30040 components: - pos: 104.5,45.5 @@ -59210,358 +51423,256 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30041 components: - pos: 104.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30042 components: - pos: 104.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30043 components: - pos: 103.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30044 components: - pos: 102.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30045 components: - pos: 101.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30046 components: - pos: 100.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30047 components: - pos: 105.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30048 components: - pos: 106.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30049 components: - pos: 107.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30050 components: - pos: 108.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30051 components: - pos: 109.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30052 components: - pos: 110.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30053 components: - pos: 111.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30054 components: - pos: 112.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30055 components: - pos: 104.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30056 components: - pos: 104.5,47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30057 components: - pos: 104.5,48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30058 components: - pos: 104.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30059 components: - pos: 105.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30060 components: - pos: 106.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30061 components: - pos: 107.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30062 components: - pos: 108.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30063 components: - pos: 109.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30064 components: - pos: 110.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30065 components: - pos: 108.5,48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30066 components: - pos: 108.5,47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30067 components: - pos: 108.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30068 components: - pos: 108.5,51.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30069 components: - pos: 127.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30084 components: - pos: 96.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30085 components: - pos: 96.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30086 components: - pos: 95.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30087 components: - pos: 94.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30088 components: - pos: 93.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30089 components: - pos: 92.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30090 components: - pos: 91.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30091 components: - pos: 90.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30092 components: - pos: 89.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30093 components: - pos: 88.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30094 components: - pos: 87.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30095 components: - pos: 86.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30096 components: - pos: 85.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30097 components: - pos: 97.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30098 components: - pos: 98.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30099 components: - pos: 99.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30100 components: - pos: 100.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30101 components: - pos: 101.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30102 components: - pos: 102.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30103 components: - pos: 102.5,38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30104 components: - pos: 102.5,37.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30105 components: - pos: 102.5,36.5 @@ -59569,8 +51680,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30106 components: - pos: 102.5,35.5 @@ -59578,8 +51687,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30107 components: - pos: 102.5,34.5 @@ -59587,8 +51694,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30108 components: - pos: 103.5,35.5 @@ -59596,8 +51701,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30109 components: - pos: 104.5,35.5 @@ -59605,8 +51708,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30110 components: - pos: 105.5,35.5 @@ -59614,8 +51715,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30111 components: - pos: 106.5,35.5 @@ -59623,8 +51722,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30112 components: - pos: 107.5,35.5 @@ -59632,8 +51729,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30113 components: - pos: 108.5,35.5 @@ -59641,8 +51736,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30114 components: - pos: 109.5,35.5 @@ -59650,8 +51743,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30115 components: - pos: 110.5,35.5 @@ -59659,8 +51750,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30116 components: - pos: 111.5,35.5 @@ -59668,8 +51757,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30117 components: - pos: 112.5,35.5 @@ -59677,8 +51764,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30118 components: - pos: 112.5,36.5 @@ -59686,8 +51771,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30119 components: - pos: 112.5,37.5 @@ -59695,8 +51778,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30120 components: - pos: 112.5,38.5 @@ -59704,15 +51785,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30121 components: - pos: 112.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30122 components: - pos: 109.5,34.5 @@ -59720,8 +51797,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30123 components: - pos: 109.5,33.5 @@ -59729,8 +51804,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30124 components: - pos: 109.5,32.5 @@ -59738,8 +51811,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30125 components: - pos: 109.5,31.5 @@ -59747,8 +51818,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30126 components: - pos: 110.5,31.5 @@ -59756,15 +51825,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30127 components: - pos: 111.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30128 components: - pos: 112.5,31.5 @@ -59772,8 +51837,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30129 components: - pos: 113.5,31.5 @@ -59781,8 +51844,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30130 components: - pos: 114.5,31.5 @@ -59790,8 +51851,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30131 components: - pos: 115.5,31.5 @@ -59799,8 +51858,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30132 components: - pos: 116.5,31.5 @@ -59808,8 +51865,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30133 components: - pos: 109.5,30.5 @@ -59817,15 +51872,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30134 components: - pos: 108.5,30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30135 components: - pos: 107.5,30.5 @@ -59833,8 +51884,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30136 components: - pos: 106.5,30.5 @@ -59842,8 +51891,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30137 components: - pos: 105.5,30.5 @@ -59851,15 +51898,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30138 components: - pos: 104.5,30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30139 components: - pos: 103.5,30.5 @@ -59867,8 +51910,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30140 components: - pos: 102.5,30.5 @@ -59876,8 +51917,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30141 components: - pos: 102.5,31.5 @@ -59885,8 +51924,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30142 components: - pos: 102.5,32.5 @@ -59894,8 +51931,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30143 components: - pos: 102.5,33.5 @@ -59903,8 +51938,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30473 components: - pos: 82.5,48.5 @@ -59912,99 +51945,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30474 components: - pos: 82.5,47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30475 components: - pos: 82.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30476 components: - pos: 82.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30477 components: - pos: 82.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30478 components: - pos: 82.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30479 components: - pos: 82.5,42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30480 components: - pos: 81.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30481 components: - pos: 80.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30482 components: - pos: 79.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30483 components: - pos: 78.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30484 components: - pos: 77.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30485 components: - pos: 77.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30486 components: - pos: 77.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30487 components: - pos: 79.5,48.5 @@ -60012,99 +52017,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30488 components: - pos: 79.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30489 components: - pos: 79.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30490 components: - pos: 78.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30491 components: - pos: 77.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30492 components: - pos: 80.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30493 components: - pos: 81.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30494 components: - pos: 82.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30495 components: - pos: 83.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30496 components: - pos: 82.5,51.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30497 components: - pos: 82.5,52.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30498 components: - pos: 82.5,53.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30499 components: - pos: 79.5,51.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30500 components: - pos: 79.5,52.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30501 components: - pos: 79.5,53.5 @@ -60112,8 +52089,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30502 components: - pos: 78.5,53.5 @@ -60121,8 +52096,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30503 components: - pos: 85.5,57.5 @@ -60130,85 +52103,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30504 components: - pos: 85.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30505 components: - pos: 84.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30506 components: - pos: 83.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30507 components: - pos: 82.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30508 components: - pos: 81.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30509 components: - pos: 80.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30510 components: - pos: 79.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30511 components: - pos: 78.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30512 components: - pos: 77.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30513 components: - pos: 76.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30514 components: - pos: 76.5,57.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30515 components: - pos: 76.5,58.5 @@ -60216,8 +52165,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30516 components: - pos: 77.5,58.5 @@ -60225,15 +52172,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30517 components: - pos: 79.5,57.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30518 components: - pos: 79.5,58.5 @@ -60241,8 +52184,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30519 components: - pos: 80.5,58.5 @@ -60250,15 +52191,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30520 components: - pos: 82.5,57.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30521 components: - pos: 75.5,56.5 @@ -60266,8 +52203,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30522 components: - pos: 82.5,58.5 @@ -60275,8 +52210,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30523 components: - pos: 83.5,58.5 @@ -60284,15 +52217,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30524 components: - pos: 86.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30525 components: - pos: 86.5,57.5 @@ -60300,8 +52229,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30526 components: - pos: 87.5,57.5 @@ -60309,8 +52236,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30527 components: - pos: 88.5,57.5 @@ -60318,50 +52243,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30528 components: - pos: 87.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30529 components: - pos: 88.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30530 components: - pos: 89.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30531 components: - pos: 90.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30532 components: - pos: 91.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30533 components: - pos: 92.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30534 components: - pos: 92.5,57.5 @@ -60369,8 +52280,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30535 components: - pos: 90.5,57.5 @@ -60378,15 +52287,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30536 components: - pos: 95.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30537 components: - pos: 94.5,56.5 @@ -60394,8 +52299,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30538 components: - pos: 96.5,57.5 @@ -60403,8 +52306,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30539 components: - pos: 92.5,48.5 @@ -60412,78 +52313,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30540 components: - pos: 91.5,48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30541 components: - pos: 90.5,48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30542 components: - pos: 89.5,48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30543 components: - pos: 89.5,47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30544 components: - pos: 89.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30545 components: - pos: 89.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30546 components: - pos: 89.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30547 components: - pos: 89.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30548 components: - pos: 89.5,42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30549 components: - pos: 89.5,41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30550 components: - pos: 88.5,42.5 @@ -60491,8 +52370,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30551 components: - pos: 90.5,42.5 @@ -60500,50 +52377,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30552 components: - pos: 89.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30553 components: - pos: 89.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30554 components: - pos: 89.5,51.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30555 components: - pos: 89.5,52.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30556 components: - pos: 89.5,53.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30557 components: - pos: 89.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30558 components: - pos: 90.5,41.5 @@ -60551,8 +52414,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30559 components: - pos: 88.5,41.5 @@ -60560,22 +52421,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30560 components: - pos: 90.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30561 components: - pos: 91.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30562 components: - pos: 92.5,46.5 @@ -60583,8 +52438,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30563 components: - pos: 92.5,45.5 @@ -60592,8 +52445,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30564 components: - pos: 91.5,45.5 @@ -60601,8 +52452,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30565 components: - pos: 92.5,47.5 @@ -60610,22 +52459,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30566 components: - pos: 88.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30567 components: - pos: 87.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30568 components: - pos: 86.5,46.5 @@ -60633,8 +52476,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30569 components: - pos: 86.5,47.5 @@ -60642,8 +52483,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30570 components: - pos: 86.5,45.5 @@ -60651,8 +52490,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30571 components: - pos: 87.5,45.5 @@ -60660,22 +52497,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30572 components: - pos: 88.5,51.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30573 components: - pos: 87.5,51.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30574 components: - pos: 86.5,51.5 @@ -60683,8 +52514,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30575 components: - pos: 86.5,50.5 @@ -60692,8 +52521,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30576 components: - pos: 86.5,52.5 @@ -60701,8 +52528,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30577 components: - pos: 87.5,52.5 @@ -60710,22 +52535,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30578 components: - pos: 90.5,51.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30579 components: - pos: 91.5,51.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30580 components: - pos: 91.5,52.5 @@ -60733,8 +52552,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30581 components: - pos: 92.5,52.5 @@ -60742,8 +52559,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30582 components: - pos: 92.5,51.5 @@ -60751,8 +52566,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30583 components: - pos: 92.5,50.5 @@ -60760,15 +52573,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30865 components: - pos: 57.5,48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30875 components: - pos: 57.5,49.5 @@ -60776,155 +52585,111 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30886 components: - pos: 57.5,47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30887 components: - pos: 57.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30888 components: - pos: 57.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30889 components: - pos: 58.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30890 components: - pos: 59.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30891 components: - pos: 60.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30892 components: - pos: 61.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30893 components: - pos: 62.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30894 components: - pos: 63.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30895 components: - pos: 64.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30896 components: - pos: 60.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30897 components: - pos: 60.5,47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30898 components: - pos: 60.5,48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30899 components: - pos: 60.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30900 components: - pos: 60.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30901 components: - pos: 60.5,51.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30902 components: - pos: 61.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30903 components: - pos: 62.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30904 components: - pos: 63.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30905 components: - pos: 64.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30906 components: - pos: 58.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30907 components: - pos: 58.5,43.5 @@ -60932,197 +52697,141 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30908 components: - pos: 58.5,42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30909 components: - pos: 59.5,42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30910 components: - pos: 60.5,42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30911 components: - pos: 61.5,42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30912 components: - pos: 62.5,42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30913 components: - pos: 63.5,42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30914 components: - pos: 64.5,42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30915 components: - pos: 65.5,42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30916 components: - pos: 65.5,41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30917 components: - pos: 65.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30918 components: - pos: 65.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30919 components: - pos: 65.5,38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30920 components: - pos: 64.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30921 components: - pos: 63.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30922 components: - pos: 62.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30923 components: - pos: 61.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30924 components: - pos: 60.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30925 components: - pos: 59.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30926 components: - pos: 58.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30927 components: - pos: 57.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30928 components: - pos: 56.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30929 components: - pos: 55.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30930 components: - pos: 55.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30931 components: - pos: 55.5,41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30932 components: - pos: 55.5,42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30933 components: - pos: 56.5,42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30934 components: - pos: 57.5,42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30945 components: - pos: 51.5,41.5 @@ -61130,141 +52839,101 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30946 components: - pos: 51.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30947 components: - pos: 51.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30948 components: - pos: 51.5,38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30949 components: - pos: 51.5,37.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30950 components: - pos: 51.5,36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30951 components: - pos: 50.5,37.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30952 components: - pos: 49.5,37.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30953 components: - pos: 48.5,37.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30954 components: - pos: 50.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30955 components: - pos: 49.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30956 components: - pos: 48.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30957 components: - pos: 51.5,42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30958 components: - pos: 51.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30959 components: - pos: 50.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30960 components: - pos: 49.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30961 components: - pos: 48.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30962 components: - pos: 50.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30963 components: - pos: 50.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30964 components: - pos: 50.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30965 components: - pos: 50.5,46.5 @@ -61272,8 +52941,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30966 components: - pos: 51.5,46.5 @@ -61281,8 +52948,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30967 components: - pos: 52.5,46.5 @@ -61290,8 +52955,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30968 components: - pos: 53.5,46.5 @@ -61299,8 +52962,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30969 components: - pos: 54.5,46.5 @@ -61308,8 +52969,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30970 components: - pos: 55.5,46.5 @@ -61317,8 +52976,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30971 components: - pos: 55.5,47.5 @@ -61326,8 +52983,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30972 components: - pos: 55.5,48.5 @@ -61335,8 +52990,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30973 components: - pos: 55.5,49.5 @@ -61344,8 +52997,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30974 components: - pos: 55.5,50.5 @@ -61353,8 +53004,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30975 components: - pos: 66.5,55.5 @@ -61362,197 +53011,141 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30976 components: - pos: 65.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30977 components: - pos: 65.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30978 components: - pos: 64.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30979 components: - pos: 63.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30980 components: - pos: 62.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30981 components: - pos: 61.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30982 components: - pos: 60.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30983 components: - pos: 59.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30984 components: - pos: 58.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30985 components: - pos: 59.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30986 components: - pos: 59.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30987 components: - pos: 59.5,57.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30988 components: - pos: 59.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30989 components: - pos: 59.5,59.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30990 components: - pos: 59.5,60.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30991 components: - pos: 60.5,60.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30992 components: - pos: 61.5,60.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30993 components: - pos: 62.5,60.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30994 components: - pos: 63.5,60.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30995 components: - pos: 64.5,60.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30996 components: - pos: 65.5,60.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30997 components: - pos: 65.5,59.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30998 components: - pos: 65.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30999 components: - pos: 65.5,57.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31000 components: - pos: 65.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31001 components: - pos: 62.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31002 components: - pos: 62.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31004 components: - pos: 60.5,61.5 @@ -61560,8 +53153,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31005 components: - pos: 61.5,61.5 @@ -61569,8 +53160,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31006 components: - pos: 62.5,61.5 @@ -61578,8 +53167,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31007 components: - pos: 63.5,61.5 @@ -61587,8 +53174,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31008 components: - pos: 66.5,58.5 @@ -61596,8 +53181,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31009 components: - pos: 74.5,58.5 @@ -61605,71 +53188,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31010 components: - pos: 73.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31011 components: - pos: 72.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31012 components: - pos: 71.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31013 components: - pos: 70.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31014 components: - pos: 69.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31015 components: - pos: 68.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31016 components: - pos: 68.5,59.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31017 components: - pos: 68.5,60.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31018 components: - pos: 67.5,60.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31019 components: - pos: 67.5,61.5 @@ -61677,22 +53240,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31020 components: - pos: 70.5,59.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31021 components: - pos: 70.5,60.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31022 components: - pos: 70.5,61.5 @@ -61700,8 +53257,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31023 components: - pos: 69.5,61.5 @@ -61709,8 +53264,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31024 components: - pos: 71.5,61.5 @@ -61718,22 +53271,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31025 components: - pos: 73.5,59.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31026 components: - pos: 73.5,60.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31027 components: - pos: 73.5,61.5 @@ -61741,8 +53288,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31028 components: - pos: 74.5,61.5 @@ -61750,8 +53295,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31029 components: - pos: 74.5,60.5 @@ -61759,8 +53302,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31030 components: - pos: 75.5,48.5 @@ -61768,183 +53309,131 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31031 components: - pos: 74.5,48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31032 components: - pos: 73.5,48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31033 components: - pos: 72.5,48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31034 components: - pos: 72.5,47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31035 components: - pos: 72.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31036 components: - pos: 72.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31037 components: - pos: 72.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31038 components: - pos: 72.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31039 components: - pos: 72.5,42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31040 components: - pos: 72.5,41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31041 components: - pos: 72.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31042 components: - pos: 72.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31043 components: - pos: 71.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31044 components: - pos: 70.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31045 components: - pos: 69.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31046 components: - pos: 68.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31047 components: - pos: 67.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31048 components: - pos: 73.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31049 components: - pos: 74.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31050 components: - pos: 75.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31051 components: - pos: 76.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31052 components: - pos: 77.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31053 components: - pos: 78.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31054 components: - pos: 79.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31055 components: - pos: 68.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31056 components: - pos: 68.5,41.5 @@ -61952,8 +53441,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31057 components: - pos: 67.5,41.5 @@ -61961,8 +53448,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31058 components: - pos: 69.5,41.5 @@ -61970,253 +53455,181 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31059 components: - pos: 71.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31060 components: - pos: 70.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31061 components: - pos: 69.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31062 components: - pos: 68.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31063 components: - pos: 67.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31064 components: - pos: 72.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31065 components: - pos: 72.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31066 components: - pos: 71.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31067 components: - pos: 70.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31068 components: - pos: 69.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31069 components: - pos: 68.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31070 components: - pos: 72.5,51.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31071 components: - pos: 72.5,52.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31072 components: - pos: 72.5,53.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31073 components: - pos: 71.5,53.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31074 components: - pos: 70.5,53.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31075 components: - pos: 69.5,53.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31076 components: - pos: 68.5,53.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31077 components: - pos: 72.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31078 components: - pos: 72.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31079 components: - pos: 72.5,57.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31370 components: - pos: 91.5,57.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31371 components: - pos: 91.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31372 components: - pos: 91.5,59.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31373 components: - pos: 91.5,60.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31374 components: - pos: 91.5,61.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31375 components: - pos: 91.5,62.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31376 components: - pos: 91.5,63.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31377 components: - pos: 91.5,64.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31378 components: - pos: 91.5,65.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31379 components: - pos: 91.5,66.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31380 components: - pos: 91.5,67.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31381 components: - pos: 91.5,68.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31382 components: - pos: 91.5,69.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31383 components: - pos: 91.5,70.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31384 components: - pos: 91.5,71.5 @@ -62224,8 +53637,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31385 components: - pos: 91.5,72.5 @@ -62233,8 +53644,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31386 components: - pos: 91.5,73.5 @@ -62242,8 +53651,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31387 components: - pos: 90.5,73.5 @@ -62251,8 +53658,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31388 components: - pos: 90.5,74.5 @@ -62260,8 +53665,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31389 components: - pos: 92.5,73.5 @@ -62269,8 +53672,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31390 components: - pos: 92.5,74.5 @@ -62278,8 +53679,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31391 components: - pos: 92.5,71.5 @@ -62287,8 +53686,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31392 components: - pos: 90.5,71.5 @@ -62296,15 +53693,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31393 components: - pos: 90.5,68.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31394 components: - pos: 89.5,68.5 @@ -62312,8 +53705,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31395 components: - pos: 89.5,69.5 @@ -62321,8 +53712,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31396 components: - pos: 89.5,67.5 @@ -62330,15 +53719,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31397 components: - pos: 90.5,62.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31398 components: - pos: 89.5,62.5 @@ -62346,8 +53731,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31399 components: - pos: 89.5,63.5 @@ -62355,8 +53738,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31400 components: - pos: 89.5,61.5 @@ -62364,15 +53745,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31401 components: - pos: 92.5,64.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31402 components: - pos: 93.5,64.5 @@ -62380,8 +53757,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31403 components: - pos: 93.5,63.5 @@ -62389,15 +53764,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31404 components: - pos: 92.5,61.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31405 components: - pos: 93.5,61.5 @@ -62405,8 +53776,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31406 components: - pos: 94.5,61.5 @@ -62414,8 +53783,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31407 components: - pos: 94.5,62.5 @@ -62423,15 +53790,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31408 components: - pos: 92.5,66.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31409 components: - pos: 93.5,66.5 @@ -62439,8 +53802,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31410 components: - pos: 94.5,66.5 @@ -62448,8 +53809,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31411 components: - pos: 94.5,65.5 @@ -62457,22 +53816,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31412 components: - pos: 92.5,69.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31413 components: - pos: 93.5,69.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31414 components: - pos: 94.5,69.5 @@ -62480,8 +53833,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31415 components: - pos: 94.5,68.5 @@ -62489,8 +53840,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31416 components: - pos: 94.5,70.5 @@ -62498,8 +53847,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31983 components: - pos: -35.5,11.5 @@ -62507,29 +53854,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31984 components: - pos: -35.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31985 components: - pos: -35.5,9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31986 components: - pos: -34.5,9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31987 components: - pos: -34.5,8.5 @@ -62537,8 +53876,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31988 components: - pos: -34.5,7.5 @@ -62546,22 +53883,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31989 components: - pos: -34.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31990 components: - pos: -34.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31991 components: - pos: -34.5,4.5 @@ -62569,8 +53900,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31992 components: - pos: -34.5,3.5 @@ -62578,8 +53907,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31993 components: - pos: -33.5,3.5 @@ -62587,99 +53914,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31994 components: - pos: -32.5,3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31995 components: - pos: -31.5,3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31996 components: - pos: -30.5,3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31997 components: - pos: -29.5,3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31998 components: - pos: -29.5,4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31999 components: - pos: -29.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32000 components: - pos: -29.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32001 components: - pos: -29.5,7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32002 components: - pos: -29.5,2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32003 components: - pos: -29.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32004 components: - pos: -29.5,1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32005 components: - pos: -30.5,7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32006 components: - pos: -31.5,7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32007 components: - pos: -31.5,8.5 @@ -62687,15 +53986,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32008 components: - pos: -35.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32009 components: - pos: -36.5,12.5 @@ -62703,29 +53998,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32010 components: - pos: -37.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32011 components: - pos: -38.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32012 components: - pos: -38.5,13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32013 components: - pos: -38.5,14.5 @@ -62733,8 +54020,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32014 components: - pos: -38.5,15.5 @@ -62742,8 +54027,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32015 components: - pos: -34.5,12.5 @@ -62751,8 +54034,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32016 components: - pos: -33.5,12.5 @@ -62760,36 +54041,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32017 components: - pos: -32.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32018 components: - pos: -31.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32019 components: - pos: -30.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32020 components: - pos: -29.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32021 components: - pos: -28.5,12.5 @@ -62797,8 +54068,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32022 components: - pos: -27.5,12.5 @@ -62806,8 +54075,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32023 components: - pos: -26.5,12.5 @@ -62815,22 +54082,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32024 components: - pos: -25.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32025 components: - pos: -24.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32026 components: - pos: -24.5,11.5 @@ -62838,50 +54099,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32027 components: - pos: -24.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32028 components: - pos: -24.5,9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32029 components: - pos: -24.5,8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32030 components: - pos: -16.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32031 components: - pos: -17.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32032 components: - pos: -17.5,1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32033 components: - pos: -17.5,2.5 @@ -62889,8 +54136,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32034 components: - pos: -17.5,3.5 @@ -62898,8 +54143,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32035 components: - pos: -17.5,4.5 @@ -62907,8 +54150,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32036 components: - pos: -17.5,5.5 @@ -62916,8 +54157,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32037 components: - pos: -18.5,5.5 @@ -62925,8 +54164,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32038 components: - pos: -19.5,5.5 @@ -62934,8 +54171,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32039 components: - pos: -20.5,5.5 @@ -62943,8 +54178,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32040 components: - pos: -21.5,5.5 @@ -62952,8 +54185,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32041 components: - pos: -21.5,4.5 @@ -62961,8 +54192,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32042 components: - pos: -21.5,3.5 @@ -62970,8 +54199,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32043 components: - pos: -21.5,2.5 @@ -62979,8 +54206,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32044 components: - pos: -16.5,4.5 @@ -62988,8 +54213,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32045 components: - pos: -15.5,4.5 @@ -62997,8 +54220,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32046 components: - pos: -14.5,4.5 @@ -63006,8 +54227,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32047 components: - pos: -13.5,4.5 @@ -63015,8 +54234,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32048 components: - pos: -12.5,4.5 @@ -63024,8 +54241,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32049 components: - pos: -11.5,4.5 @@ -63033,8 +54248,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32050 components: - pos: -22.5,5.5 @@ -63042,8 +54255,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32051 components: - pos: -23.5,5.5 @@ -63051,8 +54262,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32052 components: - pos: -24.5,5.5 @@ -63060,8 +54269,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32053 components: - pos: -25.5,5.5 @@ -63069,8 +54276,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32054 components: - pos: -25.5,4.5 @@ -63078,8 +54283,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32055 components: - pos: -25.5,3.5 @@ -63087,8 +54290,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32056 components: - pos: -25.5,2.5 @@ -63096,8 +54297,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32057 components: - pos: -25.5,1.5 @@ -63105,8 +54304,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32058 components: - pos: -25.5,0.5 @@ -63114,15 +54311,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32059 components: - pos: -25.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32060 components: - pos: -24.5,-0.5 @@ -63130,8 +54323,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32061 components: - pos: -23.5,-0.5 @@ -63139,8 +54330,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32062 components: - pos: -22.5,-0.5 @@ -63148,8 +54337,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32063 components: - pos: -22.5,-1.5 @@ -63157,8 +54344,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32064 components: - pos: -21.5,6.5 @@ -63166,8 +54351,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32065 components: - pos: -21.5,7.5 @@ -63175,22 +54358,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32066 components: - pos: -24.5,13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32067 components: - pos: -24.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32068 components: - pos: -24.5,15.5 @@ -63198,57 +54375,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32069 components: - pos: -24.5,16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32070 components: - pos: -24.5,17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32071 components: - pos: -24.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32072 components: - pos: -24.5,19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32073 components: - pos: -24.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32074 components: - pos: -24.5,21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32075 components: - pos: -24.5,22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32194 components: - pos: -19.5,33.5 @@ -63256,8 +54417,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32195 components: - pos: -19.5,32.5 @@ -63265,8 +54424,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32196 components: - pos: -19.5,31.5 @@ -63274,8 +54431,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32197 components: - pos: -19.5,30.5 @@ -63283,22 +54438,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32348 components: - pos: 29.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32349 components: - pos: 30.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32354 components: - pos: 31.5,-10.5 @@ -63306,8 +54455,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32404 components: - pos: 34.5,-7.5 @@ -63315,36 +54462,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32405 components: - pos: 35.5,-7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32406 components: - pos: 36.5,-7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32407 components: - pos: 37.5,-7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32408 components: - pos: 37.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32522 components: - pos: 99.5,14.5 @@ -63352,8 +54489,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32523 components: - pos: 100.5,14.5 @@ -63361,22 +54496,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32524 components: - pos: 101.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32525 components: - pos: 102.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32575 components: - pos: 103.5,23.5 @@ -63384,43 +54513,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32576 components: - pos: 104.5,23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32577 components: - pos: 105.5,23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32578 components: - pos: 106.5,23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32579 components: - pos: 107.5,23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32580 components: - pos: 108.5,23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32581 components: - pos: 109.5,23.5 @@ -63428,36 +54545,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32582 components: - pos: 110.5,23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32583 components: - pos: 111.5,23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32584 components: - pos: 111.5,24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32585 components: - pos: 111.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32586 components: - pos: 111.5,26.5 @@ -63465,22 +54572,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32587 components: - pos: 110.5,26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32588 components: - pos: 110.5,27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32804 components: - pos: 96.5,4.5 @@ -63488,85 +54589,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32805 components: - pos: 96.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32806 components: - pos: 96.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32807 components: - pos: 97.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32808 components: - pos: 98.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32809 components: - pos: 99.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32810 components: - pos: 100.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32811 components: - pos: 101.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32812 components: - pos: 102.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32813 components: - pos: 103.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32814 components: - pos: 104.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32815 components: - pos: 105.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32816 components: - pos: 106.5,5.5 @@ -63574,43 +54651,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32817 components: - pos: 107.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32818 components: - pos: 108.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32819 components: - pos: 109.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32820 components: - pos: 110.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 33699 components: - pos: 2.5,64.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 33700 components: - pos: 2.5,65.5 @@ -63618,8 +54683,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33701 components: - pos: 2.5,66.5 @@ -63627,8 +54690,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33702 components: - pos: 2.5,67.5 @@ -63636,8 +54697,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33703 components: - pos: 2.5,68.5 @@ -63645,8 +54704,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33704 components: - pos: 2.5,69.5 @@ -63654,8 +54711,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33705 components: - pos: 1.5,69.5 @@ -63663,8 +54718,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33706 components: - pos: 0.5,69.5 @@ -63672,8 +54725,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33707 components: - pos: -0.5,69.5 @@ -63681,8 +54732,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33708 components: - pos: -1.5,69.5 @@ -63690,8 +54739,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33709 components: - pos: 2.5,70.5 @@ -63699,8 +54746,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33710 components: - pos: 2.5,71.5 @@ -63708,8 +54753,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33711 components: - pos: 2.5,72.5 @@ -63717,8 +54760,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33712 components: - pos: 2.5,73.5 @@ -63726,8 +54767,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33713 components: - pos: 2.5,74.5 @@ -63735,8 +54774,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33714 components: - pos: 3.5,74.5 @@ -63744,8 +54781,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33715 components: - pos: 4.5,74.5 @@ -63753,8 +54788,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33716 components: - pos: 5.5,74.5 @@ -63762,8 +54795,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33717 components: - pos: 6.5,74.5 @@ -63771,8 +54802,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33718 components: - pos: 7.5,74.5 @@ -63780,8 +54809,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33719 components: - pos: 8.5,74.5 @@ -63789,8 +54816,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33720 components: - pos: 9.5,74.5 @@ -63798,8 +54823,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33721 components: - pos: 9.5,73.5 @@ -63807,8 +54830,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33722 components: - pos: 9.5,72.5 @@ -63816,8 +54837,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33723 components: - pos: 9.5,71.5 @@ -63825,8 +54844,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33724 components: - pos: 9.5,70.5 @@ -63834,29 +54851,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33725 components: - pos: 8.5,71.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 33726 components: - pos: 7.5,71.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 33727 components: - pos: 6.5,71.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 33728 components: - pos: 10.5,70.5 @@ -63864,8 +54873,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33729 components: - pos: 11.5,70.5 @@ -63873,8 +54880,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33730 components: - pos: 12.5,70.5 @@ -63882,8 +54887,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33731 components: - pos: 13.5,70.5 @@ -63891,8 +54894,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33732 components: - pos: 14.5,70.5 @@ -63900,8 +54901,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33733 components: - pos: 15.5,70.5 @@ -63909,8 +54908,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33734 components: - pos: 16.5,70.5 @@ -63918,8 +54915,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33735 components: - pos: 17.5,70.5 @@ -63927,8 +54922,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33736 components: - pos: 18.5,70.5 @@ -63936,8 +54929,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33737 components: - pos: 19.5,70.5 @@ -63945,8 +54936,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33738 components: - pos: 20.5,70.5 @@ -63954,8 +54943,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33739 components: - pos: 21.5,70.5 @@ -63963,8 +54950,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33740 components: - pos: 22.5,70.5 @@ -63972,8 +54957,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33741 components: - pos: 22.5,69.5 @@ -63981,8 +54964,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33742 components: - pos: 22.5,68.5 @@ -63990,8 +54971,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33743 components: - pos: 22.5,67.5 @@ -63999,8 +54978,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33744 components: - pos: 22.5,66.5 @@ -64008,8 +54985,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33747 components: - pos: 31.5,56.5 @@ -64017,8 +54992,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33748 components: - pos: 32.5,56.5 @@ -64026,8 +54999,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33749 components: - pos: 32.5,57.5 @@ -64035,8 +55006,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33750 components: - pos: 32.5,58.5 @@ -64044,8 +55013,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33751 components: - pos: 32.5,59.5 @@ -64053,8 +55020,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33752 components: - pos: 32.5,60.5 @@ -64062,15 +55027,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33753 components: - pos: 32.5,61.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 33754 components: - pos: 32.5,62.5 @@ -64078,8 +55039,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33755 components: - pos: 32.5,63.5 @@ -64087,8 +55046,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33756 components: - pos: 32.5,64.5 @@ -64096,8 +55053,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33757 components: - pos: 32.5,65.5 @@ -64105,8 +55060,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33758 components: - pos: 32.5,66.5 @@ -64114,8 +55067,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33759 components: - pos: 31.5,66.5 @@ -64123,8 +55074,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33760 components: - pos: 30.5,66.5 @@ -64132,8 +55081,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33761 components: - pos: 29.5,66.5 @@ -64141,8 +55088,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33762 components: - pos: 28.5,66.5 @@ -64150,8 +55095,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33763 components: - pos: 27.5,66.5 @@ -64159,8 +55102,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33764 components: - pos: 26.5,66.5 @@ -64168,8 +55109,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33765 components: - pos: 32.5,55.5 @@ -64177,8 +55116,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33766 components: - pos: 32.5,54.5 @@ -64186,8 +55123,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33767 components: - pos: 33.5,54.5 @@ -64195,8 +55130,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33768 components: - pos: 34.5,54.5 @@ -64204,8 +55137,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33769 components: - pos: 35.5,54.5 @@ -64213,8 +55144,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33770 components: - pos: 36.5,54.5 @@ -64222,8 +55151,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33771 components: - pos: 37.5,54.5 @@ -64231,8 +55158,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33772 components: - pos: 38.5,54.5 @@ -64240,8 +55165,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33773 components: - pos: 38.5,53.5 @@ -64249,8 +55172,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33774 components: - pos: 38.5,52.5 @@ -64258,8 +55179,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33775 components: - pos: 38.5,51.5 @@ -64267,8 +55186,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33776 components: - pos: 38.5,50.5 @@ -64276,8 +55193,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33777 components: - pos: 38.5,49.5 @@ -64285,8 +55200,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33778 components: - pos: 38.5,48.5 @@ -64294,8 +55207,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33779 components: - pos: 38.5,47.5 @@ -64303,8 +55214,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33780 components: - pos: 38.5,46.5 @@ -64312,8 +55221,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33781 components: - pos: 39.5,46.5 @@ -64321,8 +55228,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33782 components: - pos: 40.5,46.5 @@ -64330,8 +55235,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33783 components: - pos: 41.5,46.5 @@ -64339,8 +55242,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33784 components: - pos: 42.5,46.5 @@ -64348,8 +55249,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33785 components: - pos: 43.5,46.5 @@ -64357,8 +55256,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33786 components: - pos: 44.5,46.5 @@ -64366,8 +55263,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33787 components: - pos: 45.5,46.5 @@ -64375,8 +55270,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33788 components: - pos: 46.5,46.5 @@ -64384,8 +55277,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33789 components: - pos: 47.5,46.5 @@ -64393,8 +55284,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33790 components: - pos: 31.5,62.5 @@ -64402,8 +55291,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33791 components: - pos: 30.5,62.5 @@ -64411,8 +55298,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33792 components: - pos: 29.5,62.5 @@ -64420,8 +55305,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33793 components: - pos: 29.5,61.5 @@ -64429,8 +55312,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33794 components: - pos: 29.5,60.5 @@ -64438,15 +55319,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33795 components: - pos: 29.5,59.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 33796 components: - pos: 29.5,58.5 @@ -64454,8 +55331,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33885 components: - pos: 39.5,54.5 @@ -64463,8 +55338,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33886 components: - pos: 40.5,54.5 @@ -64472,8 +55345,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33887 components: - pos: 41.5,54.5 @@ -64481,8 +55352,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33916 components: - pos: 42.5,45.5 @@ -64490,36 +55359,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33917 components: - pos: 42.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 33918 components: - pos: 42.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 33919 components: - pos: 42.5,42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 33920 components: - pos: 42.5,41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34028 components: - pos: 54.5,65.5 @@ -64527,8 +55386,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34029 components: - pos: 55.5,65.5 @@ -64536,8 +55393,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34030 components: - pos: 55.5,66.5 @@ -64545,8 +55400,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34031 components: - pos: 55.5,67.5 @@ -64554,8 +55407,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34032 components: - pos: 56.5,67.5 @@ -64563,8 +55414,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34033 components: - pos: 57.5,67.5 @@ -64572,8 +55421,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34034 components: - pos: 57.5,68.5 @@ -64581,8 +55428,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34035 components: - pos: 54.5,64.5 @@ -64590,15 +55435,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34036 components: - pos: 53.5,64.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34037 components: - pos: 52.5,64.5 @@ -64606,8 +55447,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34038 components: - pos: 52.5,65.5 @@ -64615,8 +55454,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34039 components: - pos: 52.5,66.5 @@ -64624,8 +55461,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34040 components: - pos: 52.5,67.5 @@ -64633,8 +55468,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34041 components: - pos: 52.5,68.5 @@ -64642,8 +55475,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34042 components: - pos: 52.5,69.5 @@ -64651,8 +55482,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34043 components: - pos: 52.5,70.5 @@ -64660,8 +55489,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34044 components: - pos: 54.5,63.5 @@ -64669,15 +55496,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34045 components: - pos: 55.5,63.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34046 components: - pos: 55.5,62.5 @@ -64685,15 +55508,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34047 components: - pos: 55.5,61.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34048 components: - pos: 55.5,60.5 @@ -64701,22 +55520,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34049 components: - pos: 55.5,59.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34050 components: - pos: 55.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34051 components: - pos: 55.5,57.5 @@ -64724,15 +55537,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34052 components: - pos: 55.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34053 components: - pos: 55.5,55.5 @@ -64740,8 +55549,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34119 components: - pos: 33.5,64.5 @@ -64749,8 +55556,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34120 components: - pos: 34.5,64.5 @@ -64758,8 +55563,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34121 components: - pos: 35.5,64.5 @@ -64767,15 +55570,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34122 components: - pos: 36.5,64.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34123 components: - pos: 37.5,64.5 @@ -64783,57 +55582,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34124 components: - pos: 38.5,64.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34125 components: - pos: 37.5,63.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34126 components: - pos: 37.5,62.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34127 components: - pos: 37.5,61.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34128 components: - pos: 37.5,60.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34129 components: - pos: 37.5,59.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34130 components: - pos: 38.5,59.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34131 components: - pos: 52.5,63.5 @@ -64841,57 +55624,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34132 components: - pos: 51.5,63.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34133 components: - pos: 50.5,63.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34134 components: - pos: 49.5,63.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34135 components: - pos: 48.5,63.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34136 components: - pos: 47.5,63.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34137 components: - pos: 46.5,63.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34138 components: - pos: 45.5,63.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34139 components: - pos: 44.5,63.5 @@ -64899,15 +55666,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34140 components: - pos: 44.5,62.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34141 components: - pos: 44.5,61.5 @@ -64915,50 +55678,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34142 components: - pos: 43.5,63.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34143 components: - pos: 42.5,63.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34144 components: - pos: 41.5,63.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34145 components: - pos: 47.5,64.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34146 components: - pos: 39.5,59.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34147 components: - pos: 39.5,64.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34495 components: - pos: 60.5,-47.5 @@ -64966,8 +55715,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34496 components: - pos: 60.5,-46.5 @@ -64975,8 +55722,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34497 components: - pos: 59.5,-46.5 @@ -64984,15 +55729,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34498 components: - pos: 58.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34499 components: - pos: 60.5,-48.5 @@ -65000,8 +55741,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34500 components: - pos: 61.5,-48.5 @@ -65009,8 +55748,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34501 components: - pos: 63.5,-48.5 @@ -65018,15 +55755,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34502 components: - pos: 62.5,-48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34503 components: - pos: 64.5,-48.5 @@ -65034,8 +55767,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34504 components: - pos: 65.5,-48.5 @@ -65043,15 +55774,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34505 components: - pos: 65.5,-49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34506 components: - pos: 65.5,-50.5 @@ -65059,36 +55786,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34507 components: - pos: 65.5,-51.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34508 components: - pos: 65.5,-52.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34509 components: - pos: 65.5,-53.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34510 components: - pos: 64.5,-53.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34511 components: - pos: 60.5,-49.5 @@ -65096,8 +55813,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34512 components: - pos: 60.5,-50.5 @@ -65105,8 +55820,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34513 components: - pos: 60.5,-52.5 @@ -65114,8 +55827,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34514 components: - pos: 60.5,-53.5 @@ -65123,8 +55834,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34515 components: - pos: 60.5,-51.5 @@ -65132,64 +55841,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34516 components: - pos: 59.5,-53.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34517 components: - pos: 57.5,-53.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34518 components: - pos: 58.5,-53.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34519 components: - pos: 57.5,-54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34520 components: - pos: 57.5,-55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34521 components: - pos: 57.5,-56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34522 components: - pos: 57.5,-57.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34523 components: - pos: 57.5,-58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34524 components: - pos: 57.5,-59.5 @@ -65197,8 +55888,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34525 components: - pos: 56.5,-59.5 @@ -65206,8 +55895,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34526 components: - pos: 58.5,-59.5 @@ -65215,22 +55902,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34622 components: - pos: -34.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34623 components: - pos: -34.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34656 components: - pos: 128.5,-3.5 @@ -65238,8 +55919,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34657 components: - pos: 129.5,-3.5 @@ -65247,22 +55926,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 35382 components: - pos: 34.5,37.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 35383 components: - pos: 33.5,37.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 35384 components: - pos: 32.5,37.5 @@ -65270,8 +55943,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 35385 components: - pos: 32.5,38.5 @@ -65279,8 +55950,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 35386 components: - pos: 32.5,39.5 @@ -65288,36 +55957,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 35387 components: - pos: 31.5,37.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 35388 components: - pos: 30.5,37.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 35389 components: - pos: 29.5,37.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 35390 components: - pos: 28.5,37.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - proto: CableApcStack entities: - uid: 12137 @@ -65456,8 +56115,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2347 components: - pos: -21.5,2.5 @@ -65465,8 +56122,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2348 components: - pos: -21.5,3.5 @@ -65474,8 +56129,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2349 components: - pos: -21.5,4.5 @@ -65483,8 +56136,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2350 components: - pos: -21.5,5.5 @@ -65492,8 +56143,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2351 components: - pos: -21.5,6.5 @@ -65501,8 +56150,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2416 components: - pos: -21.5,7.5 @@ -65510,8 +56157,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2417 components: - pos: -21.5,8.5 @@ -65519,8 +56164,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2418 components: - pos: -21.5,9.5 @@ -65528,8 +56171,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2419 components: - pos: -21.5,10.5 @@ -65537,8 +56178,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2420 components: - pos: -21.5,11.5 @@ -65546,8 +56185,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2421 components: - pos: -21.5,12.5 @@ -65555,15 +56192,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2422 components: - pos: -22.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2423 components: - pos: -23.5,12.5 @@ -65571,29 +56204,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2424 components: - pos: -24.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2425 components: - pos: -24.5,13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2426 components: - pos: -24.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2427 components: - pos: -24.5,15.5 @@ -65601,43 +56226,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2428 components: - pos: -24.5,16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2429 components: - pos: -24.5,17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2430 components: - pos: -24.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2431 components: - pos: -24.5,19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2432 components: - pos: -23.5,19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2433 components: - pos: -23.5,20.5 @@ -65645,22 +56258,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2434 components: - pos: -23.5,21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2435 components: - pos: -23.5,22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2436 components: - pos: -23.5,23.5 @@ -65668,8 +56275,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2437 components: - pos: -23.5,24.5 @@ -65677,8 +56282,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2438 components: - pos: -22.5,24.5 @@ -65686,8 +56289,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2439 components: - pos: -21.5,24.5 @@ -65695,8 +56296,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2440 components: - pos: -21.5,25.5 @@ -65704,8 +56303,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2441 components: - pos: -21.5,26.5 @@ -65713,8 +56310,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2442 components: - pos: -21.5,27.5 @@ -65722,8 +56317,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2443 components: - pos: -21.5,28.5 @@ -65731,8 +56324,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2444 components: - pos: -20.5,28.5 @@ -65740,8 +56331,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2445 components: - pos: -19.5,28.5 @@ -65749,8 +56338,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2446 components: - pos: -19.5,29.5 @@ -65758,8 +56345,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2447 components: - pos: -19.5,30.5 @@ -65767,8 +56352,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2448 components: - pos: -19.5,31.5 @@ -65776,8 +56359,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2449 components: - pos: -19.5,32.5 @@ -65785,8 +56366,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2450 components: - pos: -19.5,33.5 @@ -65794,8 +56373,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2451 components: - pos: -19.5,34.5 @@ -65803,8 +56380,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2452 components: - pos: -20.5,34.5 @@ -65812,8 +56387,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2453 components: - pos: -21.5,34.5 @@ -65821,8 +56394,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2454 components: - pos: -22.5,34.5 @@ -65830,8 +56401,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2455 components: - pos: -23.5,34.5 @@ -65839,8 +56408,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2456 components: - pos: -23.5,35.5 @@ -65848,8 +56415,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2496 components: - pos: -20.5,5.5 @@ -65857,8 +56422,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2497 components: - pos: -19.5,5.5 @@ -65866,8 +56429,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2498 components: - pos: -18.5,5.5 @@ -65875,8 +56436,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2499 components: - pos: -17.5,5.5 @@ -65884,8 +56443,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2500 components: - pos: -16.5,5.5 @@ -65893,8 +56450,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2501 components: - pos: -15.5,5.5 @@ -65902,8 +56457,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2502 components: - pos: -14.5,5.5 @@ -65911,8 +56464,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2503 components: - pos: -13.5,5.5 @@ -65920,8 +56471,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2504 components: - pos: -12.5,5.5 @@ -65929,8 +56478,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2505 components: - pos: -11.5,5.5 @@ -65938,8 +56485,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2506 components: - pos: -10.5,5.5 @@ -65947,8 +56492,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2507 components: - pos: -9.5,5.5 @@ -65956,127 +56499,91 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2508 components: - pos: -8.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2509 components: - pos: -7.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2510 components: - pos: -6.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2511 components: - pos: -5.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2512 components: - pos: -5.5,4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2513 components: - pos: -5.5,3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2514 components: - pos: -5.5,2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2515 components: - pos: -5.5,1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2516 components: - pos: -5.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2517 components: - pos: -5.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2518 components: - pos: -5.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2519 components: - pos: -5.5,-2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2520 components: - pos: -5.5,-3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2521 components: - pos: -5.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2522 components: - pos: -5.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2523 components: - pos: -5.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2524 components: - pos: -5.5,-7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2525 components: - pos: -5.5,-8.5 @@ -66084,8 +56591,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2526 components: - pos: -5.5,-9.5 @@ -66093,8 +56598,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2527 components: - pos: -5.5,-10.5 @@ -66102,8 +56605,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2528 components: - pos: -5.5,-11.5 @@ -66111,8 +56612,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2529 components: - pos: -5.5,-12.5 @@ -66120,8 +56619,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2530 components: - pos: -6.5,-12.5 @@ -66129,8 +56626,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2531 components: - pos: -7.5,-12.5 @@ -66138,8 +56633,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2532 components: - pos: -8.5,-12.5 @@ -66147,8 +56640,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2533 components: - pos: -9.5,-12.5 @@ -66156,8 +56647,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2534 components: - pos: -10.5,-12.5 @@ -66165,8 +56654,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2535 components: - pos: -11.5,-12.5 @@ -66174,8 +56661,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2536 components: - pos: -12.5,-12.5 @@ -66183,8 +56668,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2537 components: - pos: -12.5,-13.5 @@ -66192,8 +56675,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2538 components: - pos: -12.5,-14.5 @@ -66201,8 +56682,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2539 components: - pos: -12.5,-15.5 @@ -66210,8 +56689,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2540 components: - pos: -12.5,-16.5 @@ -66219,15 +56696,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3144 components: - pos: -73.5,1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 3217 components: - pos: -72.5,1.5 @@ -66235,8 +56708,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3218 components: - pos: -71.5,1.5 @@ -66244,8 +56715,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3219 components: - pos: -70.5,1.5 @@ -66253,8 +56722,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3220 components: - pos: -69.5,-0.5 @@ -66262,8 +56729,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3221 components: - pos: -69.5,-1.5 @@ -66271,8 +56736,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3222 components: - pos: -69.5,-2.5 @@ -66280,8 +56743,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3223 components: - pos: -69.5,-3.5 @@ -66289,8 +56750,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3224 components: - pos: -69.5,-4.5 @@ -66298,8 +56757,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3225 components: - pos: -69.5,-5.5 @@ -66307,8 +56764,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3226 components: - pos: -69.5,-6.5 @@ -66316,8 +56771,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3227 components: - pos: -69.5,-7.5 @@ -66325,8 +56778,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3228 components: - pos: -69.5,-8.5 @@ -66334,8 +56785,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3229 components: - pos: -67.5,-8.5 @@ -66343,8 +56792,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3230 components: - pos: -67.5,-7.5 @@ -66352,8 +56799,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3231 components: - pos: -67.5,-6.5 @@ -66361,8 +56806,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3232 components: - pos: -67.5,-5.5 @@ -66370,8 +56813,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3233 components: - pos: -67.5,-4.5 @@ -66379,8 +56820,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3234 components: - pos: -67.5,-3.5 @@ -66388,8 +56827,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3235 components: - pos: -67.5,-2.5 @@ -66397,8 +56834,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3236 components: - pos: -67.5,-1.5 @@ -66406,8 +56841,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3237 components: - pos: -67.5,-0.5 @@ -66415,8 +56848,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3238 components: - pos: -65.5,-8.5 @@ -66424,8 +56855,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3239 components: - pos: -65.5,-7.5 @@ -66433,8 +56862,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3240 components: - pos: -65.5,-6.5 @@ -66442,8 +56869,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3241 components: - pos: -65.5,-5.5 @@ -66451,8 +56876,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3242 components: - pos: -65.5,-4.5 @@ -66460,8 +56883,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3243 components: - pos: -65.5,-3.5 @@ -66469,8 +56890,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3244 components: - pos: -65.5,-2.5 @@ -66478,8 +56897,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3245 components: - pos: -65.5,-1.5 @@ -66487,8 +56904,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3246 components: - pos: -65.5,-0.5 @@ -66496,8 +56911,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3247 components: - pos: -63.5,-8.5 @@ -66505,8 +56918,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3248 components: - pos: -63.5,-7.5 @@ -66514,8 +56925,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3249 components: - pos: -63.5,-6.5 @@ -66523,8 +56932,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3250 components: - pos: -63.5,-5.5 @@ -66532,8 +56939,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3251 components: - pos: -63.5,-4.5 @@ -66541,8 +56946,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3252 components: - pos: -63.5,-3.5 @@ -66550,8 +56953,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3253 components: - pos: -63.5,-2.5 @@ -66559,8 +56960,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3254 components: - pos: -63.5,-1.5 @@ -66568,8 +56967,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3255 components: - pos: -63.5,-0.5 @@ -66577,8 +56974,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3257 components: - pos: -61.5,-8.5 @@ -66586,8 +56981,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3258 components: - pos: -61.5,-7.5 @@ -66595,8 +56988,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3259 components: - pos: -61.5,-6.5 @@ -66604,8 +56995,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3260 components: - pos: -61.5,-5.5 @@ -66613,8 +57002,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3261 components: - pos: -61.5,-4.5 @@ -66622,8 +57009,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3262 components: - pos: -61.5,-3.5 @@ -66631,8 +57016,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3263 components: - pos: -61.5,-2.5 @@ -66640,8 +57023,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3264 components: - pos: -61.5,-1.5 @@ -66649,8 +57030,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3265 components: - pos: -61.5,-0.5 @@ -66658,8 +57037,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3266 components: - pos: -59.5,-8.5 @@ -66667,8 +57044,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3267 components: - pos: -59.5,-7.5 @@ -66676,8 +57051,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3268 components: - pos: -59.5,-6.5 @@ -66685,8 +57058,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3269 components: - pos: -59.5,-5.5 @@ -66694,8 +57065,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3270 components: - pos: -59.5,-4.5 @@ -66703,8 +57072,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3271 components: - pos: -59.5,-3.5 @@ -66712,8 +57079,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3272 components: - pos: -59.5,-2.5 @@ -66721,8 +57086,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3273 components: - pos: -59.5,-1.5 @@ -66730,8 +57093,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3274 components: - pos: -59.5,-0.5 @@ -66739,8 +57100,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3275 components: - pos: -57.5,-8.5 @@ -66748,8 +57107,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3276 components: - pos: -57.5,-7.5 @@ -66757,8 +57114,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3277 components: - pos: -57.5,-6.5 @@ -66766,8 +57121,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3278 components: - pos: -57.5,-5.5 @@ -66775,8 +57128,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3279 components: - pos: -57.5,-4.5 @@ -66784,8 +57135,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3280 components: - pos: -57.5,-3.5 @@ -66793,8 +57142,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3281 components: - pos: -57.5,-2.5 @@ -66802,8 +57149,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3282 components: - pos: -57.5,-1.5 @@ -66811,8 +57156,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3283 components: - pos: -57.5,-0.5 @@ -66820,8 +57163,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3284 components: - pos: -55.5,-8.5 @@ -66829,8 +57170,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3285 components: - pos: -55.5,-7.5 @@ -66838,8 +57177,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3286 components: - pos: -55.5,-6.5 @@ -66847,8 +57184,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3287 components: - pos: -55.5,-5.5 @@ -66856,8 +57191,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3288 components: - pos: -55.5,-4.5 @@ -66865,8 +57198,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3289 components: - pos: -55.5,-3.5 @@ -66874,8 +57205,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3290 components: - pos: -55.5,-2.5 @@ -66883,8 +57212,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3291 components: - pos: -55.5,-1.5 @@ -66892,8 +57219,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3292 components: - pos: -55.5,-0.5 @@ -66901,8 +57226,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3293 components: - pos: -55.5,3.5 @@ -66910,8 +57233,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3294 components: - pos: -55.5,4.5 @@ -66919,8 +57240,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3295 components: - pos: -55.5,5.5 @@ -66928,8 +57247,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3296 components: - pos: -55.5,6.5 @@ -66937,8 +57254,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3297 components: - pos: -55.5,7.5 @@ -66946,8 +57261,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3298 components: - pos: -55.5,8.5 @@ -66955,8 +57268,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3299 components: - pos: -55.5,9.5 @@ -66964,8 +57275,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3300 components: - pos: -55.5,10.5 @@ -66973,8 +57282,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3301 components: - pos: -55.5,11.5 @@ -66982,8 +57289,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3302 components: - pos: -57.5,11.5 @@ -66991,8 +57296,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3303 components: - pos: -57.5,10.5 @@ -67000,8 +57303,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3304 components: - pos: -57.5,9.5 @@ -67009,8 +57310,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3305 components: - pos: -57.5,8.5 @@ -67018,8 +57317,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3306 components: - pos: -57.5,7.5 @@ -67027,8 +57324,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3307 components: - pos: -57.5,6.5 @@ -67036,8 +57331,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3308 components: - pos: -57.5,5.5 @@ -67045,8 +57338,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3309 components: - pos: -57.5,4.5 @@ -67054,8 +57345,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3310 components: - pos: -57.5,3.5 @@ -67063,8 +57352,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3311 components: - pos: -59.5,3.5 @@ -67072,8 +57359,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3312 components: - pos: -59.5,4.5 @@ -67081,8 +57366,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3313 components: - pos: -59.5,5.5 @@ -67090,8 +57373,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3314 components: - pos: -59.5,6.5 @@ -67099,8 +57380,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3315 components: - pos: -59.5,7.5 @@ -67108,8 +57387,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3316 components: - pos: -59.5,8.5 @@ -67117,8 +57394,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3317 components: - pos: -59.5,9.5 @@ -67126,8 +57401,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3318 components: - pos: -59.5,10.5 @@ -67135,8 +57408,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3319 components: - pos: -59.5,11.5 @@ -67144,8 +57415,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3320 components: - pos: -61.5,11.5 @@ -67153,8 +57422,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3321 components: - pos: -61.5,10.5 @@ -67162,8 +57429,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3322 components: - pos: -61.5,9.5 @@ -67171,8 +57436,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3323 components: - pos: -61.5,8.5 @@ -67180,8 +57443,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3324 components: - pos: -61.5,7.5 @@ -67189,8 +57450,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3325 components: - pos: -61.5,6.5 @@ -67198,8 +57457,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3326 components: - pos: -61.5,5.5 @@ -67207,8 +57464,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3327 components: - pos: -61.5,4.5 @@ -67216,8 +57471,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3328 components: - pos: -61.5,3.5 @@ -67225,8 +57478,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3329 components: - pos: -63.5,3.5 @@ -67234,8 +57485,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3330 components: - pos: -63.5,4.5 @@ -67243,8 +57492,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3331 components: - pos: -63.5,5.5 @@ -67252,8 +57499,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3332 components: - pos: -63.5,6.5 @@ -67261,8 +57506,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3333 components: - pos: -63.5,7.5 @@ -67270,8 +57513,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3334 components: - pos: -63.5,8.5 @@ -67279,8 +57520,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3335 components: - pos: -63.5,9.5 @@ -67288,8 +57527,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3336 components: - pos: -63.5,10.5 @@ -67297,8 +57534,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3337 components: - pos: -63.5,11.5 @@ -67306,8 +57541,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3338 components: - pos: -65.5,11.5 @@ -67315,8 +57548,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3339 components: - pos: -65.5,10.5 @@ -67324,8 +57555,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3340 components: - pos: -65.5,9.5 @@ -67333,8 +57562,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3341 components: - pos: -65.5,8.5 @@ -67342,8 +57569,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3342 components: - pos: -65.5,7.5 @@ -67351,8 +57576,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3343 components: - pos: -65.5,6.5 @@ -67360,8 +57583,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3344 components: - pos: -65.5,5.5 @@ -67369,8 +57590,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3345 components: - pos: -65.5,4.5 @@ -67378,8 +57597,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3346 components: - pos: -65.5,3.5 @@ -67387,8 +57604,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3347 components: - pos: -67.5,3.5 @@ -67396,8 +57611,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3348 components: - pos: -67.5,4.5 @@ -67405,8 +57618,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3349 components: - pos: -67.5,5.5 @@ -67414,8 +57625,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3350 components: - pos: -67.5,6.5 @@ -67423,8 +57632,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3351 components: - pos: -67.5,7.5 @@ -67432,8 +57639,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3352 components: - pos: -67.5,8.5 @@ -67441,8 +57646,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3353 components: - pos: -67.5,9.5 @@ -67450,8 +57653,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3354 components: - pos: -67.5,10.5 @@ -67459,8 +57660,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3355 components: - pos: -67.5,11.5 @@ -67468,8 +57667,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3356 components: - pos: -69.5,11.5 @@ -67477,8 +57674,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3357 components: - pos: -69.5,10.5 @@ -67486,8 +57681,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3358 components: - pos: -69.5,9.5 @@ -67495,8 +57688,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3359 components: - pos: -69.5,8.5 @@ -67504,8 +57695,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3360 components: - pos: -69.5,7.5 @@ -67513,8 +57702,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3361 components: - pos: -69.5,6.5 @@ -67522,8 +57709,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3362 components: - pos: -69.5,5.5 @@ -67531,8 +57716,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3363 components: - pos: -69.5,4.5 @@ -67540,8 +57723,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3364 components: - pos: -69.5,3.5 @@ -67549,8 +57730,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3602 components: - pos: -68.5,-0.5 @@ -67558,8 +57737,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3603 components: - pos: -68.5,0.5 @@ -67567,8 +57744,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3604 components: - pos: -68.5,2.5 @@ -67576,8 +57751,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3605 components: - pos: -68.5,3.5 @@ -67585,8 +57758,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3606 components: - pos: -64.5,2.5 @@ -67594,8 +57765,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3607 components: - pos: -64.5,3.5 @@ -67603,8 +57772,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3608 components: - pos: -64.5,0.5 @@ -67612,8 +57779,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3609 components: - pos: -64.5,-0.5 @@ -67621,8 +57786,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3610 components: - pos: -60.5,-0.5 @@ -67630,8 +57793,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3611 components: - pos: -60.5,0.5 @@ -67639,8 +57800,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3612 components: - pos: -60.5,2.5 @@ -67648,8 +57807,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3613 components: - pos: -60.5,3.5 @@ -67657,8 +57814,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3614 components: - pos: -56.5,3.5 @@ -67666,8 +57821,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3615 components: - pos: -56.5,2.5 @@ -67675,8 +57828,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3616 components: - pos: -56.5,0.5 @@ -67684,8 +57835,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3617 components: - pos: -56.5,-0.5 @@ -67693,8 +57842,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3618 components: - pos: -53.5,1.5 @@ -67702,8 +57849,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3619 components: - pos: -52.5,1.5 @@ -67711,8 +57856,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3620 components: - pos: -51.5,1.5 @@ -67720,8 +57863,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3621 components: - pos: -50.5,1.5 @@ -67729,8 +57870,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3622 components: - pos: -49.5,1.5 @@ -67738,8 +57877,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3623 components: - pos: -48.5,1.5 @@ -67747,8 +57884,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3624 components: - pos: -47.5,1.5 @@ -67756,8 +57891,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3625 components: - pos: -46.5,1.5 @@ -67765,8 +57898,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3626 components: - pos: -46.5,2.5 @@ -67774,8 +57905,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3627 components: - pos: -45.5,2.5 @@ -67783,8 +57912,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3628 components: - pos: -44.5,2.5 @@ -67792,8 +57919,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3629 components: - pos: -44.5,1.5 @@ -67801,8 +57926,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3630 components: - pos: -43.5,1.5 @@ -67810,8 +57933,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3631 components: - pos: -42.5,1.5 @@ -67819,8 +57940,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4158 components: - pos: -23.5,25.5 @@ -67828,8 +57947,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4159 components: - pos: -24.5,25.5 @@ -67837,8 +57954,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4160 components: - pos: -25.5,25.5 @@ -67846,8 +57961,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4161 components: - pos: -26.5,25.5 @@ -67855,8 +57968,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4162 components: - pos: -27.5,25.5 @@ -67864,8 +57975,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4163 components: - pos: -27.5,24.5 @@ -67873,8 +57982,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4164 components: - pos: -27.5,23.5 @@ -67882,8 +57989,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4165 components: - pos: -27.5,22.5 @@ -67891,15 +57996,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4727 components: - pos: -27.5,21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6389 components: - pos: -19.5,35.5 @@ -67907,8 +58008,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6390 components: - pos: -19.5,36.5 @@ -67916,8 +58015,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6391 components: - pos: -19.5,37.5 @@ -67925,8 +58022,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6392 components: - pos: -19.5,38.5 @@ -67934,8 +58029,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6393 components: - pos: -19.5,39.5 @@ -67943,8 +58036,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6394 components: - pos: -19.5,40.5 @@ -67952,8 +58043,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6395 components: - pos: -19.5,41.5 @@ -67961,232 +58050,166 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6396 components: - pos: -19.5,42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6397 components: - pos: -19.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6398 components: - pos: -19.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6399 components: - pos: -19.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6400 components: - pos: -19.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6401 components: - pos: -20.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6402 components: - pos: -21.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6403 components: - pos: -22.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6404 components: - pos: -23.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6405 components: - pos: -24.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6406 components: - pos: -25.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6407 components: - pos: -26.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6408 components: - pos: -27.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6409 components: - pos: -28.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6410 components: - pos: -29.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6411 components: - pos: -30.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6412 components: - pos: -31.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6413 components: - pos: -31.5,47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6414 components: - pos: -31.5,48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6415 components: - pos: -31.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6416 components: - pos: -31.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6417 components: - pos: -31.5,51.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6418 components: - pos: -31.5,52.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6419 components: - pos: -31.5,53.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6420 components: - pos: -31.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6421 components: - pos: -31.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6422 components: - pos: -31.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6423 components: - pos: -31.5,57.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6424 components: - pos: -31.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6425 components: - pos: -32.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6426 components: - pos: -33.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6427 components: - pos: -33.5,59.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6428 components: - pos: -33.5,60.5 @@ -68194,8 +58217,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6429 components: - pos: -33.5,61.5 @@ -68203,8 +58224,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6430 components: - pos: -33.5,62.5 @@ -68212,8 +58231,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6431 components: - pos: -33.5,63.5 @@ -68221,8 +58238,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6432 components: - pos: -33.5,64.5 @@ -68230,8 +58245,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6433 components: - pos: -32.5,64.5 @@ -68239,8 +58252,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6434 components: - pos: -31.5,64.5 @@ -68248,8 +58259,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6435 components: - pos: -30.5,64.5 @@ -68257,8 +58266,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6436 components: - pos: -30.5,63.5 @@ -68266,8 +58273,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6437 components: - pos: -30.5,62.5 @@ -68275,8 +58280,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6438 components: - pos: -30.5,61.5 @@ -68284,8 +58287,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6439 components: - pos: -30.5,60.5 @@ -68293,8 +58294,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6440 components: - pos: -30.5,65.5 @@ -68302,8 +58301,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6441 components: - pos: -29.5,65.5 @@ -68311,8 +58308,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6442 components: - pos: -28.5,65.5 @@ -68320,8 +58315,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6443 components: - pos: -27.5,65.5 @@ -68329,8 +58322,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6444 components: - pos: -26.5,65.5 @@ -68338,8 +58329,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6445 components: - pos: -25.5,65.5 @@ -68347,8 +58336,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6446 components: - pos: -24.5,65.5 @@ -68356,8 +58343,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6447 components: - pos: -23.5,65.5 @@ -68365,134 +58350,96 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6448 components: - pos: -22.5,65.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6449 components: - pos: -21.5,65.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6450 components: - pos: -20.5,65.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6451 components: - pos: -19.5,65.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6452 components: - pos: -18.5,65.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6453 components: - pos: -17.5,65.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6454 components: - pos: -16.5,65.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6455 components: - pos: -15.5,65.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6456 components: - pos: -14.5,65.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6457 components: - pos: -13.5,65.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6458 components: - pos: -12.5,65.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6459 components: - pos: -12.5,64.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6460 components: - pos: -12.5,63.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6461 components: - pos: -12.5,62.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6462 components: - pos: -12.5,61.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6463 components: - pos: -12.5,60.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6464 components: - pos: -12.5,59.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6465 components: - pos: -12.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6466 components: - pos: -12.5,57.5 @@ -68500,239 +58447,171 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6467 components: - pos: -12.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6468 components: - pos: -12.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6469 components: - pos: -11.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6470 components: - pos: -10.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6471 components: - pos: -9.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6472 components: - pos: -8.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6473 components: - pos: -7.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6474 components: - pos: -6.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6475 components: - pos: -5.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6476 components: - pos: -4.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6477 components: - pos: -4.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6478 components: - pos: -4.5,53.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6479 components: - pos: -4.5,52.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6480 components: - pos: -4.5,51.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6481 components: - pos: -4.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6482 components: - pos: -4.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6483 components: - pos: -4.5,48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6484 components: - pos: -4.5,47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6485 components: - pos: -4.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6486 components: - pos: -5.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6487 components: - pos: -6.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6488 components: - pos: -7.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6489 components: - pos: -8.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6490 components: - pos: -9.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6491 components: - pos: -10.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6492 components: - pos: -11.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6493 components: - pos: -12.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6494 components: - pos: -13.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6495 components: - pos: -14.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6496 components: - pos: -15.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6497 components: - pos: -16.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6498 components: - pos: -17.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6499 components: - pos: -18.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6679 components: - pos: -41.5,1.5 @@ -68740,8 +58619,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6680 components: - pos: -40.5,1.5 @@ -68749,8 +58626,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6681 components: - pos: -39.5,1.5 @@ -68758,8 +58633,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6682 components: - pos: -38.5,1.5 @@ -68767,8 +58640,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6683 components: - pos: -37.5,1.5 @@ -68776,8 +58647,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6684 components: - pos: -36.5,1.5 @@ -68785,8 +58654,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6685 components: - pos: -35.5,1.5 @@ -68794,8 +58661,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6686 components: - pos: -35.5,0.5 @@ -68803,8 +58668,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6687 components: - pos: -35.5,-0.5 @@ -68812,8 +58675,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6688 components: - pos: -35.5,-1.5 @@ -68821,8 +58682,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6689 components: - pos: -36.5,-1.5 @@ -68830,8 +58689,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6690 components: - pos: -37.5,-1.5 @@ -68839,8 +58696,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6691 components: - pos: -38.5,-1.5 @@ -68848,8 +58703,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6692 components: - pos: -39.5,-1.5 @@ -68857,8 +58710,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6693 components: - pos: -35.5,-2.5 @@ -68866,232 +58717,166 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6694 components: - pos: -35.5,-3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6695 components: - pos: -35.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6696 components: - pos: -35.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6697 components: - pos: -34.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6698 components: - pos: -33.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6699 components: - pos: -32.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6700 components: - pos: -31.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6701 components: - pos: -30.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6702 components: - pos: -29.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6703 components: - pos: -28.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6704 components: - pos: -27.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6705 components: - pos: -26.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6706 components: - pos: -25.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6707 components: - pos: -24.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6708 components: - pos: -23.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6709 components: - pos: -22.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6710 components: - pos: -21.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6711 components: - pos: -20.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6712 components: - pos: -19.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6713 components: - pos: -18.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6714 components: - pos: -17.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6715 components: - pos: -16.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6716 components: - pos: -15.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6717 components: - pos: -14.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6718 components: - pos: -13.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6719 components: - pos: -12.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6720 components: - pos: -11.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6721 components: - pos: -10.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6722 components: - pos: -9.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6723 components: - pos: -8.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6724 components: - pos: -7.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6725 components: - pos: -6.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6726 components: - pos: -13.5,-12.5 @@ -69099,8 +58884,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6727 components: - pos: -14.5,-12.5 @@ -69108,8 +58891,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6728 components: - pos: -15.5,-12.5 @@ -69117,8 +58898,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6729 components: - pos: -15.5,-13.5 @@ -69126,8 +58905,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6730 components: - pos: -16.5,-13.5 @@ -69135,8 +58912,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6731 components: - pos: -17.5,-13.5 @@ -69144,8 +58919,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6732 components: - pos: -18.5,-13.5 @@ -69153,8 +58926,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6733 components: - pos: -18.5,-14.5 @@ -69162,8 +58933,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6734 components: - pos: -18.5,-15.5 @@ -69171,8 +58940,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6735 components: - pos: -18.5,-16.5 @@ -69180,8 +58947,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6736 components: - pos: -19.5,-16.5 @@ -69189,148 +58954,106 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6737 components: - pos: -20.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6738 components: - pos: -21.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6739 components: - pos: -22.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6740 components: - pos: -22.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6741 components: - pos: -22.5,-14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6742 components: - pos: -22.5,-13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6743 components: - pos: -22.5,-12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6744 components: - pos: -22.5,-11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6745 components: - pos: -22.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6746 components: - pos: -22.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6747 components: - pos: -22.5,-8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6748 components: - pos: -22.5,-7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6749 components: - pos: -22.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6750 components: - pos: -17.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6751 components: - pos: -17.5,-3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6752 components: - pos: -17.5,-2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6753 components: - pos: -17.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6754 components: - pos: -17.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6755 components: - pos: -17.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6756 components: - pos: -17.5,1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6757 components: - pos: -17.5,2.5 @@ -69338,8 +59061,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6758 components: - pos: -17.5,3.5 @@ -69347,8 +59068,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6759 components: - pos: -17.5,4.5 @@ -69356,134 +59075,96 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7610 components: - pos: -5.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7611 components: - pos: -4.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7612 components: - pos: -1.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7613 components: - pos: -0.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7614 components: - pos: -2.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7615 components: - pos: -3.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7616 components: - pos: 0.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7617 components: - pos: 0.5,7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7618 components: - pos: 0.5,8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7619 components: - pos: 0.5,9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7620 components: - pos: 0.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7621 components: - pos: 0.5,11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7622 components: - pos: 0.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7623 components: - pos: 0.5,13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7624 components: - pos: 0.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7625 components: - pos: 0.5,15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7626 components: - pos: 1.5,15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7627 components: - pos: 2.5,15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7628 components: - pos: 3.5,15.5 @@ -69491,8 +59172,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7629 components: - pos: 4.5,15.5 @@ -69500,8 +59179,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7630 components: - pos: 5.5,15.5 @@ -69509,8 +59186,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7631 components: - pos: 5.5,16.5 @@ -69518,8 +59193,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7632 components: - pos: 5.5,17.5 @@ -69527,8 +59200,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7633 components: - pos: 5.5,18.5 @@ -69536,8 +59207,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7634 components: - pos: 5.5,19.5 @@ -69545,8 +59214,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7635 components: - pos: 4.5,19.5 @@ -69554,295 +59221,211 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7637 components: - pos: 0.5,16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7638 components: - pos: 0.5,17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7639 components: - pos: 0.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7640 components: - pos: 0.5,19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7641 components: - pos: 0.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7642 components: - pos: 0.5,21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7643 components: - pos: 0.5,22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7644 components: - pos: 0.5,23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7645 components: - pos: 0.5,24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7646 components: - pos: 0.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7647 components: - pos: 0.5,26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7648 components: - pos: 0.5,27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7649 components: - pos: 0.5,28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7650 components: - pos: 0.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7651 components: - pos: 0.5,30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7652 components: - pos: 0.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7653 components: - pos: 0.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7654 components: - pos: 1.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7655 components: - pos: 2.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7656 components: - pos: 3.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7657 components: - pos: 4.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7658 components: - pos: 5.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7659 components: - pos: 6.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7660 components: - pos: 7.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7661 components: - pos: 8.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7662 components: - pos: 9.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7663 components: - pos: 10.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7664 components: - pos: 11.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7665 components: - pos: 12.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7666 components: - pos: 13.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7667 components: - pos: 14.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7668 components: - pos: 15.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7669 components: - pos: 16.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7670 components: - pos: 17.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7671 components: - pos: 18.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7672 components: - pos: 19.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7673 components: - pos: 20.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7674 components: - pos: 21.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7675 components: - pos: 22.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7676 components: - pos: 23.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7677 components: - pos: 24.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7678 components: - pos: 24.5,31.5 @@ -69850,8 +59433,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7679 components: - pos: 24.5,30.5 @@ -69859,8 +59440,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7680 components: - pos: 24.5,29.5 @@ -69868,8 +59447,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7681 components: - pos: 24.5,28.5 @@ -69877,169 +59454,121 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7682 components: - pos: 24.5,27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7683 components: - pos: 24.5,26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7684 components: - pos: 24.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7685 components: - pos: 25.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7686 components: - pos: 26.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7687 components: - pos: 27.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7688 components: - pos: 28.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7689 components: - pos: 29.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7690 components: - pos: 30.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7691 components: - pos: 31.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7692 components: - pos: 32.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7693 components: - pos: 33.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7694 components: - pos: 34.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7695 components: - pos: 35.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7696 components: - pos: 24.5,24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7697 components: - pos: 24.5,23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7698 components: - pos: 24.5,22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7699 components: - pos: 24.5,21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7700 components: - pos: 24.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7701 components: - pos: 24.5,19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7702 components: - pos: 24.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7703 components: - pos: 24.5,17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7704 components: - pos: 24.5,16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7705 components: - pos: 24.5,15.5 @@ -70047,78 +59576,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7706 components: - pos: 24.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7707 components: - pos: 24.5,13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7708 components: - pos: 24.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7709 components: - pos: 24.5,11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7710 components: - pos: 24.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7711 components: - pos: 24.5,9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7712 components: - pos: 24.5,8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7713 components: - pos: 24.5,7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7714 components: - pos: 24.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7715 components: - pos: 24.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7716 components: - pos: 24.5,4.5 @@ -70126,8 +59633,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7717 components: - pos: 24.5,3.5 @@ -70135,8 +59640,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7718 components: - pos: 24.5,2.5 @@ -70144,8 +59647,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7719 components: - pos: 24.5,1.5 @@ -70153,8 +59654,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7720 components: - pos: 24.5,0.5 @@ -70162,260 +59661,186 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7721 components: - pos: 24.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7722 components: - pos: -4.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7723 components: - pos: -3.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7724 components: - pos: -2.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7725 components: - pos: -1.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7726 components: - pos: -0.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7727 components: - pos: 0.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7728 components: - pos: 1.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7729 components: - pos: 2.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7730 components: - pos: 3.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7731 components: - pos: 4.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7732 components: - pos: 5.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7733 components: - pos: 6.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7734 components: - pos: 7.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7735 components: - pos: 8.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7736 components: - pos: 9.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7737 components: - pos: 10.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7738 components: - pos: 11.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7739 components: - pos: 12.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7740 components: - pos: 13.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7741 components: - pos: 14.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7742 components: - pos: 15.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7743 components: - pos: 16.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7744 components: - pos: 17.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7745 components: - pos: 18.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7746 components: - pos: 19.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7747 components: - pos: 20.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7748 components: - pos: 21.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7749 components: - pos: 22.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7752 components: - pos: 23.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7753 components: - pos: 23.5,-3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7754 components: - pos: 23.5,-2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7755 components: - pos: 23.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7756 components: - pos: 23.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7757 components: - pos: 23.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7758 components: - pos: 23.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7806 components: - pos: 6.5,15.5 @@ -70423,8 +59848,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7807 components: - pos: 7.5,15.5 @@ -70432,8 +59855,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7808 components: - pos: 8.5,15.5 @@ -70441,8 +59862,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7809 components: - pos: 9.5,15.5 @@ -70450,8 +59869,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7810 components: - pos: 9.5,16.5 @@ -70459,8 +59876,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7811 components: - pos: 10.5,16.5 @@ -70468,8 +59883,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7812 components: - pos: 11.5,16.5 @@ -70477,8 +59890,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7813 components: - pos: 12.5,16.5 @@ -70486,8 +59897,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7814 components: - pos: 12.5,17.5 @@ -70495,8 +59904,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7815 components: - pos: 12.5,18.5 @@ -70504,8 +59911,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7816 components: - pos: 12.5,19.5 @@ -70513,8 +59918,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7817 components: - pos: 12.5,20.5 @@ -70522,8 +59925,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7818 components: - pos: 12.5,21.5 @@ -70531,8 +59932,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7819 components: - pos: 12.5,22.5 @@ -70540,8 +59939,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7820 components: - pos: 12.5,23.5 @@ -70549,15 +59946,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7821 components: - pos: 12.5,24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7822 components: - pos: 12.5,25.5 @@ -70565,8 +59958,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7823 components: - pos: 13.5,25.5 @@ -70574,8 +59965,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7824 components: - pos: 14.5,25.5 @@ -70583,8 +59972,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7825 components: - pos: 14.5,26.5 @@ -70592,8 +59979,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7826 components: - pos: 14.5,27.5 @@ -70601,8 +59986,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7827 components: - pos: 14.5,28.5 @@ -70610,8 +59993,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7828 components: - pos: 14.5,29.5 @@ -70619,8 +60000,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7829 components: - pos: 15.5,29.5 @@ -70628,8 +60007,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7830 components: - pos: 16.5,29.5 @@ -70637,8 +60014,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7831 components: - pos: 17.5,29.5 @@ -70646,8 +60021,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7832 components: - pos: 18.5,29.5 @@ -70655,85 +60028,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7833 components: - pos: 18.5,28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7834 components: - pos: 18.5,27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7835 components: - pos: 18.5,26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7836 components: - pos: 18.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7837 components: - pos: 19.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7838 components: - pos: 19.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7839 components: - pos: 20.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7840 components: - pos: 21.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7841 components: - pos: 22.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7842 components: - pos: 23.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7843 components: - pos: 9.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7844 components: - pos: 9.5,30.5 @@ -70741,8 +60090,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7845 components: - pos: 9.5,29.5 @@ -70750,8 +60097,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7846 components: - pos: 10.5,29.5 @@ -70759,8 +60104,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7847 components: - pos: 11.5,29.5 @@ -70768,8 +60111,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7848 components: - pos: 12.5,29.5 @@ -70777,8 +60118,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7849 components: - pos: 13.5,29.5 @@ -70786,8 +60125,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9144 components: - pos: 52.5,20.5 @@ -70795,8 +60132,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9145 components: - pos: 52.5,21.5 @@ -70804,8 +60139,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9146 components: - pos: 52.5,22.5 @@ -70813,8 +60146,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9147 components: - pos: 52.5,23.5 @@ -70822,8 +60153,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9148 components: - pos: 52.5,24.5 @@ -70831,736 +60160,526 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9149 components: - pos: 53.5,22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9150 components: - pos: 54.5,22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9151 components: - pos: 54.5,23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9152 components: - pos: 54.5,24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9153 components: - pos: 54.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9154 components: - pos: 54.5,26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9155 components: - pos: 54.5,27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9156 components: - pos: 54.5,28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9157 components: - pos: 54.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9158 components: - pos: 54.5,30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9159 components: - pos: 54.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9160 components: - pos: 54.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9161 components: - pos: 53.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9162 components: - pos: 52.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9163 components: - pos: 51.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9164 components: - pos: 50.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9165 components: - pos: 49.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9166 components: - pos: 48.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9167 components: - pos: 47.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9168 components: - pos: 46.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9169 components: - pos: 45.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9170 components: - pos: 44.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9171 components: - pos: 43.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9172 components: - pos: 42.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9173 components: - pos: 41.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9174 components: - pos: 40.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9175 components: - pos: 39.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9176 components: - pos: 38.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9177 components: - pos: 37.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9178 components: - pos: 36.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9179 components: - pos: 35.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9180 components: - pos: 34.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9181 components: - pos: 33.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9182 components: - pos: 32.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9183 components: - pos: 31.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9184 components: - pos: 30.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9185 components: - pos: 29.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9186 components: - pos: 28.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9187 components: - pos: 27.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9188 components: - pos: 26.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9189 components: - pos: 25.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9190 components: - pos: 54.5,21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9191 components: - pos: 54.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9192 components: - pos: 54.5,19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9193 components: - pos: 54.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9194 components: - pos: 54.5,17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9195 components: - pos: 54.5,16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9196 components: - pos: 54.5,15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9197 components: - pos: 54.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9198 components: - pos: 54.5,13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9199 components: - pos: 54.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9200 components: - pos: 54.5,11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9201 components: - pos: 54.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9202 components: - pos: 54.5,9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9203 components: - pos: 54.5,8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9204 components: - pos: 54.5,7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9205 components: - pos: 54.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9206 components: - pos: 54.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9207 components: - pos: 54.5,4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9208 components: - pos: 54.5,3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9209 components: - pos: 54.5,2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9210 components: - pos: 54.5,1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9211 components: - pos: 54.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9212 components: - pos: 54.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9213 components: - pos: 53.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9214 components: - pos: 52.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9215 components: - pos: 51.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9216 components: - pos: 50.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9217 components: - pos: 49.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9218 components: - pos: 48.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9219 components: - pos: 47.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9220 components: - pos: 46.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9221 components: - pos: 45.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9222 components: - pos: 44.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9223 components: - pos: 43.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9224 components: - pos: 42.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9225 components: - pos: 41.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9226 components: - pos: 40.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9227 components: - pos: 39.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9228 components: - pos: 38.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9229 components: - pos: 37.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9230 components: - pos: 36.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9231 components: - pos: 35.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9232 components: - pos: 34.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9233 components: - pos: 33.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9234 components: - pos: 32.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9235 components: - pos: 31.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9236 components: - pos: 30.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9237 components: - pos: 29.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9238 components: - pos: 28.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9239 components: - pos: 27.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9240 components: - pos: 26.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9241 components: - pos: 25.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9478 components: - pos: 16.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9479 components: - pos: 16.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9480 components: - pos: 16.5,-3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9481 components: - pos: 16.5,-2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9482 components: - pos: 16.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9483 components: - pos: 16.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9484 components: - pos: 16.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9485 components: - pos: 16.5,1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9486 components: - pos: 16.5,2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9487 components: - pos: 16.5,3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9488 components: - pos: 16.5,4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9489 components: - pos: 16.5,5.5 @@ -71568,8 +60687,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9490 components: - pos: 16.5,6.5 @@ -71577,8 +60694,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9491 components: - pos: 17.5,6.5 @@ -71586,50 +60701,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9492 components: - pos: 18.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9493 components: - pos: 19.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9494 components: - pos: 20.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9495 components: - pos: 21.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9496 components: - pos: 22.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9497 components: - pos: 23.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9498 components: - pos: 16.5,7.5 @@ -71637,8 +60738,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9499 components: - pos: 15.5,7.5 @@ -71646,8 +60745,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9500 components: - pos: 14.5,7.5 @@ -71655,8 +60752,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9501 components: - pos: 13.5,7.5 @@ -71664,8 +60759,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9502 components: - pos: 12.5,7.5 @@ -71673,8 +60766,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9503 components: - pos: 11.5,7.5 @@ -71682,8 +60773,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9504 components: - pos: 10.5,7.5 @@ -71691,8 +60780,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9505 components: - pos: 9.5,7.5 @@ -71700,8 +60787,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9506 components: - pos: 9.5,8.5 @@ -71709,8 +60794,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9507 components: - pos: 9.5,9.5 @@ -71718,8 +60801,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9508 components: - pos: 9.5,10.5 @@ -71727,8 +60808,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9509 components: - pos: 9.5,11.5 @@ -71736,8 +60815,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9510 components: - pos: 9.5,12.5 @@ -71745,8 +60822,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9511 components: - pos: 9.5,13.5 @@ -71754,8 +60829,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9512 components: - pos: 9.5,14.5 @@ -71763,22 +60836,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9670 components: - pos: 22.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9671 components: - pos: 23.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9795 components: - pos: 27.5,-38.5 @@ -71786,8 +60853,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9796 components: - pos: 26.5,-38.5 @@ -71795,8 +60860,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9797 components: - pos: 25.5,-38.5 @@ -71804,8 +60867,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9798 components: - pos: 24.5,-38.5 @@ -71813,141 +60874,101 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9799 components: - pos: 24.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9800 components: - pos: 24.5,-7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9801 components: - pos: 24.5,-8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9802 components: - pos: 24.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9803 components: - pos: 24.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9804 components: - pos: 24.5,-11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9805 components: - pos: 24.5,-12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9806 components: - pos: 24.5,-13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9807 components: - pos: 24.5,-14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9808 components: - pos: 24.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9809 components: - pos: 24.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9810 components: - pos: 24.5,-17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9811 components: - pos: 24.5,-18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9812 components: - pos: 24.5,-19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9813 components: - pos: 24.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9814 components: - pos: 24.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9815 components: - pos: 24.5,-22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9816 components: - pos: 24.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9817 components: - pos: 24.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9818 components: - pos: 24.5,-25.5 @@ -71955,15 +60976,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9819 components: - pos: 24.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9820 components: - pos: 24.5,-27.5 @@ -71971,8 +60988,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9821 components: - pos: 24.5,-28.5 @@ -71980,43 +60995,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9822 components: - pos: 24.5,-29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9823 components: - pos: 24.5,-30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9824 components: - pos: 24.5,-31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9825 components: - pos: 24.5,-32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9826 components: - pos: 24.5,-33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9827 components: - pos: 24.5,-34.5 @@ -72024,8 +61027,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9828 components: - pos: 24.5,-35.5 @@ -72033,15 +61034,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9829 components: - pos: 24.5,-36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9830 components: - pos: 24.5,-37.5 @@ -72049,15 +61046,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9835 components: - pos: 21.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9836 components: - pos: 20.5,-21.5 @@ -72065,8 +61058,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9837 components: - pos: 19.5,-21.5 @@ -72074,8 +61065,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9838 components: - pos: 19.5,-20.5 @@ -72083,8 +61072,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9839 components: - pos: 19.5,-19.5 @@ -72092,8 +61079,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9840 components: - pos: -5.5,-13.5 @@ -72101,8 +61086,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9841 components: - pos: -5.5,-14.5 @@ -72110,8 +61093,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9842 components: - pos: -5.5,-15.5 @@ -72119,8 +61100,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9843 components: - pos: -5.5,-16.5 @@ -72128,8 +61107,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9844 components: - pos: -5.5,-17.5 @@ -72137,8 +61114,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9845 components: - pos: -5.5,-18.5 @@ -72146,8 +61121,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9846 components: - pos: -5.5,-19.5 @@ -72155,8 +61128,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9847 components: - pos: -5.5,-20.5 @@ -72164,8 +61135,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9848 components: - pos: -4.5,-20.5 @@ -72173,162 +61142,116 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9849 components: - pos: -3.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9850 components: - pos: -2.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9851 components: - pos: -1.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9852 components: - pos: -0.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9853 components: - pos: 0.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9854 components: - pos: 1.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9855 components: - pos: 2.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9856 components: - pos: 3.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9857 components: - pos: 4.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9858 components: - pos: 5.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9859 components: - pos: 6.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9860 components: - pos: 7.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9861 components: - pos: 8.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9862 components: - pos: 9.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9863 components: - pos: 10.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9864 components: - pos: 11.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9865 components: - pos: 12.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9866 components: - pos: 13.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9867 components: - pos: 14.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9868 components: - pos: 15.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9870 components: - pos: 17.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10291 components: - pos: 23.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10292 components: - pos: 22.5,12.5 @@ -72336,22 +61259,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11012 components: - pos: 16.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11148 components: - pos: 16.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11149 components: - pos: 18.5,-21.5 @@ -72359,323 +61276,231 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12154 components: - pos: -13.5,-14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12847 components: - pos: -22.5,-17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12848 components: - pos: -22.5,-18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12849 components: - pos: -22.5,-19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12850 components: - pos: -22.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12851 components: - pos: -22.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12852 components: - pos: -22.5,-22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12853 components: - pos: -22.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12854 components: - pos: -22.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12855 components: - pos: -22.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12856 components: - pos: -23.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12857 components: - pos: -24.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12858 components: - pos: -25.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12859 components: - pos: -26.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12860 components: - pos: -27.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12861 components: - pos: -28.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12862 components: - pos: -29.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12863 components: - pos: -30.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12864 components: - pos: -31.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12865 components: - pos: -32.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12866 components: - pos: -33.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12867 components: - pos: -34.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12868 components: - pos: -35.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12869 components: - pos: -36.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12870 components: - pos: -37.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12871 components: - pos: -38.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12872 components: - pos: -39.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12873 components: - pos: -39.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12874 components: - pos: -39.5,-27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12875 components: - pos: -39.5,-28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12876 components: - pos: -39.5,-29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12877 components: - pos: -39.5,-30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12878 components: - pos: -39.5,-31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12879 components: - pos: -39.5,-32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12880 components: - pos: -39.5,-33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12881 components: - pos: -39.5,-34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12882 components: - pos: -39.5,-35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12883 components: - pos: -39.5,-36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12884 components: - pos: -39.5,-37.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12885 components: - pos: -39.5,-38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12886 components: - pos: -39.5,-39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12887 components: - pos: -39.5,-40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12888 components: - pos: -39.5,-41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12889 components: - pos: -39.5,-42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12890 components: - pos: -39.5,-43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12891 components: - pos: -39.5,-44.5 @@ -72683,36 +61508,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12892 components: - pos: -39.5,-45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12893 components: - pos: -39.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12894 components: - pos: -39.5,-47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12895 components: - pos: -40.5,-47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12896 components: - pos: -41.5,-47.5 @@ -72720,8 +61535,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12897 components: - pos: -42.5,-47.5 @@ -72729,8 +61542,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12898 components: - pos: -43.5,-47.5 @@ -72738,8 +61549,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12899 components: - pos: -43.5,-46.5 @@ -72747,8 +61556,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16199 components: - pos: 9.5,72.5 @@ -72756,8 +61563,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16200 components: - pos: 9.5,70.5 @@ -72765,8 +61570,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16201 components: - pos: 10.5,70.5 @@ -72774,8 +61577,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16202 components: - pos: 9.5,71.5 @@ -72783,43 +61584,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16203 components: - pos: -4.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 16204 components: - pos: -4.5,57.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 16205 components: - pos: -4.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 16206 components: - pos: -4.5,59.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 16207 components: - pos: -2.5,69.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 16208 components: - pos: -1.5,69.5 @@ -72827,8 +61616,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16209 components: - pos: -0.5,69.5 @@ -72836,8 +61623,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16210 components: - pos: 1.5,69.5 @@ -72845,8 +61630,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16211 components: - pos: 0.5,69.5 @@ -72854,8 +61637,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16212 components: - pos: 2.5,69.5 @@ -72863,8 +61644,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16213 components: - pos: 2.5,70.5 @@ -72872,8 +61651,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16214 components: - pos: 2.5,71.5 @@ -72881,8 +61658,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16215 components: - pos: 3.5,74.5 @@ -72890,8 +61665,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16216 components: - pos: 5.5,74.5 @@ -72899,8 +61672,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16217 components: - pos: 4.5,74.5 @@ -72908,8 +61679,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16219 components: - pos: 6.5,74.5 @@ -72917,22 +61686,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16220 components: - pos: -4.5,61.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 16221 components: - pos: -4.5,62.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 16222 components: - pos: 7.5,74.5 @@ -72940,8 +61703,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16223 components: - pos: 8.5,74.5 @@ -72949,22 +61710,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16224 components: - pos: -4.5,63.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 16225 components: - pos: -4.5,64.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 16226 components: - pos: 9.5,74.5 @@ -72972,8 +61727,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16227 components: - pos: 9.5,73.5 @@ -72981,50 +61734,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16228 components: - pos: -4.5,68.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 16229 components: - pos: -4.5,69.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 16230 components: - pos: -3.5,69.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 16231 components: - pos: -4.5,65.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 16232 components: - pos: -4.5,66.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 16233 components: - pos: -4.5,67.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 16234 components: - pos: 2.5,72.5 @@ -73032,8 +61771,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16235 components: - pos: 2.5,73.5 @@ -73041,15 +61778,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16236 components: - pos: -4.5,60.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 16237 components: - pos: 2.5,74.5 @@ -73057,29 +61790,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17164 components: - pos: -3.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17165 components: - pos: -2.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17166 components: - pos: -1.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17167 components: - pos: -0.5,55.5 @@ -73087,8 +61812,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17171 components: - pos: 0.5,52.5 @@ -73096,8 +61819,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17172 components: - pos: 1.5,52.5 @@ -73105,8 +61826,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17173 components: - pos: 2.5,52.5 @@ -73114,8 +61833,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17174 components: - pos: 3.5,52.5 @@ -73123,8 +61840,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17175 components: - pos: 4.5,52.5 @@ -73132,8 +61847,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17631 components: - pos: -0.5,54.5 @@ -73141,8 +61854,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17632 components: - pos: -0.5,53.5 @@ -73150,8 +61861,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17633 components: - pos: -0.5,52.5 @@ -73159,8 +61868,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18971 components: - pos: 29.5,54.5 @@ -73168,8 +61875,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18972 components: - pos: 30.5,54.5 @@ -73177,8 +61882,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18973 components: - pos: 31.5,54.5 @@ -73186,8 +61889,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18974 components: - pos: 32.5,54.5 @@ -73195,8 +61896,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18975 components: - pos: 33.5,54.5 @@ -73204,8 +61903,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18976 components: - pos: 34.5,54.5 @@ -73213,8 +61910,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18977 components: - pos: 35.5,54.5 @@ -73222,8 +61917,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18978 components: - pos: 36.5,54.5 @@ -73231,8 +61924,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18979 components: - pos: 37.5,54.5 @@ -73240,8 +61931,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18980 components: - pos: 38.5,54.5 @@ -73249,8 +61938,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18981 components: - pos: 38.5,53.5 @@ -73258,8 +61945,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18982 components: - pos: 38.5,52.5 @@ -73267,8 +61952,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18983 components: - pos: 38.5,51.5 @@ -73276,8 +61959,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18984 components: - pos: 38.5,50.5 @@ -73285,8 +61966,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18985 components: - pos: 38.5,49.5 @@ -73294,8 +61973,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18986 components: - pos: 38.5,48.5 @@ -73303,8 +61980,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18987 components: - pos: 38.5,47.5 @@ -73312,8 +61987,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18988 components: - pos: 38.5,46.5 @@ -73321,8 +61994,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18989 components: - pos: 38.5,45.5 @@ -73330,8 +62001,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18990 components: - pos: 38.5,44.5 @@ -73339,8 +62008,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18991 components: - pos: 38.5,43.5 @@ -73348,8 +62015,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18992 components: - pos: 38.5,42.5 @@ -73357,8 +62022,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18993 components: - pos: 38.5,41.5 @@ -73366,8 +62029,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18994 components: - pos: 38.5,40.5 @@ -73375,8 +62036,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18995 components: - pos: 37.5,40.5 @@ -73384,8 +62043,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18996 components: - pos: 36.5,40.5 @@ -73393,8 +62050,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18997 components: - pos: 35.5,40.5 @@ -73402,8 +62057,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18998 components: - pos: 34.5,40.5 @@ -73411,8 +62064,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18999 components: - pos: 33.5,40.5 @@ -73420,8 +62071,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19000 components: - pos: 32.5,40.5 @@ -73429,8 +62078,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19001 components: - pos: 32.5,39.5 @@ -73438,8 +62085,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19002 components: - pos: 32.5,38.5 @@ -73447,8 +62092,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19003 components: - pos: 32.5,37.5 @@ -73456,57 +62099,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19004 components: - pos: 33.5,37.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19005 components: - pos: 34.5,37.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19006 components: - pos: 34.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19007 components: - pos: 34.5,34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19008 components: - pos: 34.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19009 components: - pos: 34.5,36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19593 components: - pos: 65.5,-30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19594 components: - pos: 65.5,-29.5 @@ -73514,8 +62141,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19595 components: - pos: 65.5,-28.5 @@ -73523,8 +62148,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19596 components: - pos: 65.5,-27.5 @@ -73532,8 +62155,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19597 components: - pos: 65.5,-26.5 @@ -73541,8 +62162,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19598 components: - pos: 65.5,-25.5 @@ -73550,8 +62169,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19599 components: - pos: 64.5,-25.5 @@ -73559,8 +62176,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19622 components: - pos: 51.5,-51.5 @@ -73568,8 +62183,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19623 components: - pos: 51.5,-50.5 @@ -73577,8 +62190,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19624 components: - pos: 51.5,-49.5 @@ -73586,8 +62197,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19625 components: - pos: 51.5,-48.5 @@ -73595,8 +62204,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19626 components: - pos: 51.5,-47.5 @@ -73604,8 +62211,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19627 components: - pos: 51.5,-46.5 @@ -73613,8 +62218,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19628 components: - pos: 50.5,-46.5 @@ -73622,8 +62225,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19629 components: - pos: 49.5,-46.5 @@ -73631,8 +62232,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19630 components: - pos: 48.5,-46.5 @@ -73640,8 +62239,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19631 components: - pos: 47.5,-46.5 @@ -73649,15 +62246,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19632 components: - pos: 46.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19633 components: - pos: 45.5,-46.5 @@ -73665,8 +62258,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19634 components: - pos: 44.5,-46.5 @@ -73674,8 +62265,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19635 components: - pos: 43.5,-46.5 @@ -73683,8 +62272,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19636 components: - pos: 43.5,-45.5 @@ -73692,8 +62279,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19637 components: - pos: 43.5,-44.5 @@ -73701,8 +62286,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19638 components: - pos: 43.5,-43.5 @@ -73710,8 +62293,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19639 components: - pos: 43.5,-42.5 @@ -73719,8 +62300,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19640 components: - pos: 42.5,-42.5 @@ -73728,8 +62307,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19641 components: - pos: 41.5,-42.5 @@ -73737,8 +62314,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19642 components: - pos: 40.5,-42.5 @@ -73746,8 +62321,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19643 components: - pos: 39.5,-42.5 @@ -73755,8 +62328,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19644 components: - pos: 38.5,-42.5 @@ -73764,8 +62335,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19645 components: - pos: 37.5,-42.5 @@ -73773,8 +62342,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19646 components: - pos: 36.5,-42.5 @@ -73782,8 +62349,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19647 components: - pos: 35.5,-42.5 @@ -73791,8 +62356,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19648 components: - pos: 34.5,-42.5 @@ -73800,15 +62363,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19649 components: - pos: 33.5,-42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19650 components: - pos: 32.5,-42.5 @@ -73816,8 +62375,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19651 components: - pos: 31.5,-42.5 @@ -73825,8 +62382,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19652 components: - pos: 30.5,-42.5 @@ -73834,8 +62389,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19653 components: - pos: 29.5,-42.5 @@ -73843,8 +62396,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19654 components: - pos: 28.5,-42.5 @@ -73852,8 +62403,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19655 components: - pos: 27.5,-42.5 @@ -73861,8 +62410,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19656 components: - pos: 26.5,-42.5 @@ -73870,8 +62417,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19657 components: - pos: 25.5,-42.5 @@ -73879,8 +62424,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19658 components: - pos: 24.5,-42.5 @@ -73888,8 +62431,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19659 components: - pos: 24.5,-41.5 @@ -73897,8 +62438,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19660 components: - pos: 24.5,-40.5 @@ -73906,15 +62445,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19661 components: - pos: 24.5,-39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19662 components: - pos: 52.5,-46.5 @@ -73922,8 +62457,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19663 components: - pos: 53.5,-46.5 @@ -73931,8 +62464,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19664 components: - pos: 54.5,-46.5 @@ -73940,8 +62471,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19665 components: - pos: 55.5,-46.5 @@ -73949,8 +62478,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19666 components: - pos: 56.5,-46.5 @@ -73958,8 +62485,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19667 components: - pos: 57.5,-46.5 @@ -73967,15 +62492,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19668 components: - pos: 58.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19669 components: - pos: 59.5,-46.5 @@ -73983,8 +62504,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19670 components: - pos: 60.5,-46.5 @@ -73992,8 +62511,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19671 components: - pos: 61.5,-46.5 @@ -74001,8 +62518,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19672 components: - pos: 62.5,-46.5 @@ -74010,8 +62525,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19673 components: - pos: 63.5,-46.5 @@ -74019,8 +62532,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19674 components: - pos: 64.5,-46.5 @@ -74028,8 +62539,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19675 components: - pos: 64.5,-45.5 @@ -74037,8 +62546,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19676 components: - pos: 64.5,-44.5 @@ -74046,8 +62553,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19677 components: - pos: 64.5,-43.5 @@ -74055,8 +62560,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19678 components: - pos: 64.5,-42.5 @@ -74064,8 +62567,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19679 components: - pos: 64.5,-41.5 @@ -74073,8 +62574,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19680 components: - pos: 64.5,-40.5 @@ -74082,15 +62581,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19681 components: - pos: 64.5,-39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19682 components: - pos: 64.5,-38.5 @@ -74098,8 +62593,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19683 components: - pos: 64.5,-37.5 @@ -74107,8 +62600,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19684 components: - pos: 64.5,-36.5 @@ -74116,8 +62607,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19685 components: - pos: 64.5,-35.5 @@ -74125,8 +62614,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19686 components: - pos: 64.5,-34.5 @@ -74134,8 +62621,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19687 components: - pos: 64.5,-33.5 @@ -74143,8 +62628,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19693 components: - pos: 64.5,-32.5 @@ -74152,8 +62635,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19694 components: - pos: 64.5,-31.5 @@ -74161,8 +62642,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19695 components: - pos: 65.5,-31.5 @@ -74170,8 +62649,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19696 components: - pos: 64.5,-24.5 @@ -74179,8 +62656,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19697 components: - pos: 64.5,-23.5 @@ -74188,8 +62663,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19698 components: - pos: 63.5,-23.5 @@ -74197,8 +62670,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19699 components: - pos: 62.5,-23.5 @@ -74206,8 +62677,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19700 components: - pos: 61.5,-23.5 @@ -74215,8 +62684,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19701 components: - pos: 60.5,-23.5 @@ -74224,8 +62691,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19702 components: - pos: 59.5,-23.5 @@ -74233,8 +62698,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19703 components: - pos: 59.5,-22.5 @@ -74242,8 +62705,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19704 components: - pos: 59.5,-21.5 @@ -74251,8 +62712,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19705 components: - pos: 59.5,-20.5 @@ -74260,8 +62719,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19706 components: - pos: 59.5,-19.5 @@ -74269,8 +62726,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19707 components: - pos: 59.5,-18.5 @@ -74278,8 +62733,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19708 components: - pos: 59.5,-17.5 @@ -74287,8 +62740,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19709 components: - pos: 59.5,-16.5 @@ -74296,8 +62747,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19710 components: - pos: 59.5,-15.5 @@ -74305,8 +62754,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19711 components: - pos: 59.5,-14.5 @@ -74314,211 +62761,151 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19712 components: - pos: 59.5,-13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19713 components: - pos: 59.5,-12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19714 components: - pos: 59.5,-11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19715 components: - pos: 59.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19716 components: - pos: 58.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19717 components: - pos: 57.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19718 components: - pos: 56.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19719 components: - pos: 55.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19720 components: - pos: 54.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19721 components: - pos: 53.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19722 components: - pos: 52.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19723 components: - pos: 51.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19724 components: - pos: 50.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19725 components: - pos: 49.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19726 components: - pos: 48.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19727 components: - pos: 47.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19728 components: - pos: 46.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19729 components: - pos: 45.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19730 components: - pos: 44.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19731 components: - pos: 43.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19732 components: - pos: 43.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19733 components: - pos: 43.5,-8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19734 components: - pos: 43.5,-7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19735 components: - pos: 43.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19736 components: - pos: 43.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19737 components: - pos: 43.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19738 components: - pos: 43.5,-3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19739 components: - pos: 43.5,-2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19740 components: - pos: 43.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 20242 components: - pos: 88.5,2.5 @@ -74526,8 +62913,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20333 components: - pos: 87.5,1.5 @@ -74535,8 +62920,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20334 components: - pos: 87.5,0.5 @@ -74544,15 +62927,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20478 components: - pos: 42.5,-12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 20783 components: - pos: 11.5,70.5 @@ -74560,8 +62939,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20784 components: - pos: 12.5,70.5 @@ -74569,8 +62946,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20785 components: - pos: 13.5,70.5 @@ -74578,8 +62953,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20786 components: - pos: 14.5,70.5 @@ -74587,8 +62960,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20787 components: - pos: 15.5,70.5 @@ -74596,8 +62967,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20788 components: - pos: 16.5,70.5 @@ -74605,8 +62974,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20789 components: - pos: 17.5,70.5 @@ -74614,8 +62981,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20790 components: - pos: 18.5,70.5 @@ -74623,8 +62988,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20791 components: - pos: 19.5,70.5 @@ -74632,8 +62995,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20792 components: - pos: 20.5,70.5 @@ -74641,8 +63002,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20793 components: - pos: 21.5,70.5 @@ -74650,8 +63009,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20794 components: - pos: 22.5,70.5 @@ -74659,8 +63016,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20795 components: - pos: 22.5,69.5 @@ -74668,8 +63023,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20796 components: - pos: 22.5,68.5 @@ -74677,8 +63030,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20797 components: - pos: 22.5,67.5 @@ -74686,8 +63037,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20798 components: - pos: 22.5,66.5 @@ -74695,8 +63044,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20799 components: - pos: 23.5,66.5 @@ -74704,8 +63051,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20800 components: - pos: 24.5,66.5 @@ -74713,8 +63058,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20801 components: - pos: 25.5,66.5 @@ -74722,8 +63065,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20802 components: - pos: 26.5,66.5 @@ -74731,8 +63072,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20803 components: - pos: 27.5,66.5 @@ -74740,8 +63079,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20808 components: - pos: 32.5,66.5 @@ -74749,8 +63086,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20809 components: - pos: 32.5,65.5 @@ -74758,8 +63093,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20810 components: - pos: 32.5,64.5 @@ -74767,8 +63100,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20811 components: - pos: 32.5,63.5 @@ -74776,8 +63107,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20812 components: - pos: 32.5,62.5 @@ -74785,15 +63114,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20813 components: - pos: 32.5,61.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 20814 components: - pos: 32.5,60.5 @@ -74801,8 +63126,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20815 components: - pos: 32.5,59.5 @@ -74810,8 +63133,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20816 components: - pos: 32.5,58.5 @@ -74819,8 +63140,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20817 components: - pos: 32.5,57.5 @@ -74828,8 +63147,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20818 components: - pos: 32.5,56.5 @@ -74837,8 +63154,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20819 components: - pos: 32.5,55.5 @@ -74846,8 +63161,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21255 components: - pos: 74.5,28.5 @@ -74855,8 +63168,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21662 components: - pos: 132.5,16.5 @@ -74864,8 +63175,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21664 components: - pos: 120.5,16.5 @@ -74873,8 +63182,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21665 components: - pos: 120.5,17.5 @@ -74882,8 +63189,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21666 components: - pos: 120.5,18.5 @@ -74891,8 +63196,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21667 components: - pos: 120.5,19.5 @@ -74900,8 +63203,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21668 components: - pos: 120.5,20.5 @@ -74909,8 +63210,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21669 components: - pos: 120.5,21.5 @@ -74918,8 +63217,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21670 components: - pos: 120.5,22.5 @@ -74927,8 +63224,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21671 components: - pos: 122.5,16.5 @@ -74936,8 +63231,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21672 components: - pos: 122.5,17.5 @@ -74945,8 +63238,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21673 components: - pos: 122.5,18.5 @@ -74954,8 +63245,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21674 components: - pos: 122.5,19.5 @@ -74963,8 +63252,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21675 components: - pos: 122.5,20.5 @@ -74972,8 +63259,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21676 components: - pos: 122.5,21.5 @@ -74981,8 +63266,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21677 components: - pos: 122.5,22.5 @@ -74990,8 +63273,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21678 components: - pos: 124.5,22.5 @@ -74999,8 +63280,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21679 components: - pos: 124.5,21.5 @@ -75008,8 +63287,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21680 components: - pos: 124.5,20.5 @@ -75017,8 +63294,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21681 components: - pos: 124.5,19.5 @@ -75026,8 +63301,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21682 components: - pos: 124.5,18.5 @@ -75035,8 +63308,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21683 components: - pos: 124.5,17.5 @@ -75044,8 +63315,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21684 components: - pos: 124.5,16.5 @@ -75053,8 +63322,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21685 components: - pos: 126.5,16.5 @@ -75062,8 +63329,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21686 components: - pos: 126.5,17.5 @@ -75071,8 +63336,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21687 components: - pos: 126.5,18.5 @@ -75080,8 +63343,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21688 components: - pos: 126.5,19.5 @@ -75089,8 +63350,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21689 components: - pos: 126.5,20.5 @@ -75098,8 +63357,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21690 components: - pos: 126.5,21.5 @@ -75107,8 +63364,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21691 components: - pos: 126.5,22.5 @@ -75116,8 +63371,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21692 components: - pos: 128.5,22.5 @@ -75125,8 +63378,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21693 components: - pos: 128.5,21.5 @@ -75134,8 +63385,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21694 components: - pos: 128.5,20.5 @@ -75143,8 +63392,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21695 components: - pos: 128.5,19.5 @@ -75152,8 +63399,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21696 components: - pos: 128.5,18.5 @@ -75161,8 +63406,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21697 components: - pos: 128.5,17.5 @@ -75170,8 +63413,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21698 components: - pos: 128.5,16.5 @@ -75179,8 +63420,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21699 components: - pos: 130.5,16.5 @@ -75188,8 +63427,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21700 components: - pos: 130.5,17.5 @@ -75197,8 +63434,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21701 components: - pos: 130.5,18.5 @@ -75206,8 +63441,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21702 components: - pos: 130.5,19.5 @@ -75215,8 +63448,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21703 components: - pos: 130.5,20.5 @@ -75224,8 +63455,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21704 components: - pos: 130.5,21.5 @@ -75233,8 +63462,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21705 components: - pos: 130.5,22.5 @@ -75242,8 +63469,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21706 components: - pos: 129.5,22.5 @@ -75251,8 +63476,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21707 components: - pos: 129.5,23.5 @@ -75260,8 +63483,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21708 components: - pos: 125.5,22.5 @@ -75269,8 +63490,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21709 components: - pos: 125.5,23.5 @@ -75278,8 +63497,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21710 components: - pos: 121.5,22.5 @@ -75287,8 +63504,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21711 components: - pos: 121.5,23.5 @@ -75296,8 +63511,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21712 components: - pos: 132.5,17.5 @@ -75305,8 +63518,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21713 components: - pos: 132.5,18.5 @@ -75314,8 +63525,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21714 components: - pos: 132.5,19.5 @@ -75323,8 +63532,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21715 components: - pos: 132.5,20.5 @@ -75332,8 +63539,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21716 components: - pos: 132.5,21.5 @@ -75341,8 +63546,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21717 components: - pos: 132.5,22.5 @@ -75350,8 +63553,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21718 components: - pos: 134.5,16.5 @@ -75359,8 +63560,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21719 components: - pos: 134.5,17.5 @@ -75368,8 +63567,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21720 components: - pos: 134.5,18.5 @@ -75377,8 +63574,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21721 components: - pos: 134.5,19.5 @@ -75386,8 +63581,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21722 components: - pos: 134.5,20.5 @@ -75395,8 +63588,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21723 components: - pos: 134.5,21.5 @@ -75404,8 +63595,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21724 components: - pos: 134.5,22.5 @@ -75413,8 +63602,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21725 components: - pos: 133.5,22.5 @@ -75422,8 +63609,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21726 components: - pos: 133.5,23.5 @@ -75431,8 +63616,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21728 components: - pos: 134.5,35.5 @@ -75440,8 +63623,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21729 components: - pos: 134.5,34.5 @@ -75449,8 +63630,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21730 components: - pos: 134.5,33.5 @@ -75458,8 +63637,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21731 components: - pos: 134.5,32.5 @@ -75467,8 +63644,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21732 components: - pos: 134.5,31.5 @@ -75476,8 +63651,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21733 components: - pos: 134.5,30.5 @@ -75485,8 +63658,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21734 components: - pos: 134.5,29.5 @@ -75494,8 +63665,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21735 components: - pos: 134.5,28.5 @@ -75503,8 +63672,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21736 components: - pos: 132.5,35.5 @@ -75512,8 +63679,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21737 components: - pos: 132.5,34.5 @@ -75521,8 +63686,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21738 components: - pos: 132.5,33.5 @@ -75530,8 +63693,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21739 components: - pos: 132.5,32.5 @@ -75539,8 +63700,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21740 components: - pos: 132.5,31.5 @@ -75548,8 +63707,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21741 components: - pos: 132.5,30.5 @@ -75557,8 +63714,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21742 components: - pos: 132.5,29.5 @@ -75566,8 +63721,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21743 components: - pos: 132.5,28.5 @@ -75575,8 +63728,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21744 components: - pos: 130.5,28.5 @@ -75584,8 +63735,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21745 components: - pos: 130.5,29.5 @@ -75593,8 +63742,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21746 components: - pos: 130.5,30.5 @@ -75602,8 +63749,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21747 components: - pos: 130.5,31.5 @@ -75611,8 +63756,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21748 components: - pos: 130.5,32.5 @@ -75620,8 +63763,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21749 components: - pos: 130.5,33.5 @@ -75629,8 +63770,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21750 components: - pos: 130.5,34.5 @@ -75638,8 +63777,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21751 components: - pos: 130.5,35.5 @@ -75647,8 +63784,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21752 components: - pos: 128.5,35.5 @@ -75656,8 +63791,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21753 components: - pos: 128.5,34.5 @@ -75665,8 +63798,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21754 components: - pos: 128.5,33.5 @@ -75674,8 +63805,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21755 components: - pos: 128.5,32.5 @@ -75683,8 +63812,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21756 components: - pos: 128.5,31.5 @@ -75692,8 +63819,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21757 components: - pos: 128.5,30.5 @@ -75701,8 +63826,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21758 components: - pos: 128.5,29.5 @@ -75710,8 +63833,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21759 components: - pos: 128.5,28.5 @@ -75719,8 +63840,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21760 components: - pos: 126.5,28.5 @@ -75728,8 +63847,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21761 components: - pos: 126.5,29.5 @@ -75737,8 +63854,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21762 components: - pos: 126.5,30.5 @@ -75746,8 +63861,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21763 components: - pos: 126.5,31.5 @@ -75755,8 +63868,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21764 components: - pos: 126.5,32.5 @@ -75764,8 +63875,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21765 components: - pos: 126.5,33.5 @@ -75773,8 +63882,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21766 components: - pos: 126.5,34.5 @@ -75782,8 +63889,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21767 components: - pos: 126.5,35.5 @@ -75791,8 +63896,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21768 components: - pos: 124.5,35.5 @@ -75800,8 +63903,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21769 components: - pos: 124.5,34.5 @@ -75809,8 +63910,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21770 components: - pos: 124.5,33.5 @@ -75818,8 +63917,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21771 components: - pos: 124.5,32.5 @@ -75827,8 +63924,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21772 components: - pos: 124.5,31.5 @@ -75836,8 +63931,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21773 components: - pos: 124.5,30.5 @@ -75845,8 +63938,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21774 components: - pos: 124.5,29.5 @@ -75854,8 +63945,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21775 components: - pos: 124.5,28.5 @@ -75863,8 +63952,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21776 components: - pos: 122.5,28.5 @@ -75872,8 +63959,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21777 components: - pos: 122.5,29.5 @@ -75881,8 +63966,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21778 components: - pos: 122.5,30.5 @@ -75890,8 +63973,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21779 components: - pos: 122.5,31.5 @@ -75899,8 +63980,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21780 components: - pos: 122.5,32.5 @@ -75908,8 +63987,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21781 components: - pos: 122.5,33.5 @@ -75917,8 +63994,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21782 components: - pos: 122.5,34.5 @@ -75926,8 +64001,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21783 components: - pos: 122.5,35.5 @@ -75935,8 +64008,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21784 components: - pos: 120.5,35.5 @@ -75944,8 +64015,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21785 components: - pos: 120.5,34.5 @@ -75953,8 +64022,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21786 components: - pos: 120.5,33.5 @@ -75962,8 +64029,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21787 components: - pos: 120.5,32.5 @@ -75971,8 +64036,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21788 components: - pos: 120.5,31.5 @@ -75980,8 +64043,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21789 components: - pos: 120.5,30.5 @@ -75989,8 +64050,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21790 components: - pos: 120.5,29.5 @@ -75998,8 +64057,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21791 components: - pos: 120.5,28.5 @@ -76007,8 +64064,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21792 components: - pos: 121.5,28.5 @@ -76016,8 +64071,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21793 components: - pos: 121.5,27.5 @@ -76025,8 +64078,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21794 components: - pos: 125.5,28.5 @@ -76034,8 +64085,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21795 components: - pos: 125.5,27.5 @@ -76043,8 +64092,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21796 components: - pos: 129.5,28.5 @@ -76052,8 +64099,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21797 components: - pos: 129.5,27.5 @@ -76061,8 +64106,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21798 components: - pos: 133.5,28.5 @@ -76070,8 +64113,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21799 components: - pos: 133.5,27.5 @@ -76079,8 +64120,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21800 components: - pos: 121.5,26.5 @@ -76088,8 +64127,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21801 components: - pos: 121.5,24.5 @@ -76097,8 +64134,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21802 components: - pos: 125.5,24.5 @@ -76106,8 +64141,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21803 components: - pos: 125.5,26.5 @@ -76115,8 +64148,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21804 components: - pos: 129.5,26.5 @@ -76124,8 +64155,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21805 components: - pos: 129.5,24.5 @@ -76133,8 +64162,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21806 components: - pos: 133.5,24.5 @@ -76142,8 +64169,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21807 components: - pos: 133.5,26.5 @@ -76151,8 +64176,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21808 components: - pos: 136.5,25.5 @@ -76160,8 +64183,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21809 components: - pos: 135.5,25.5 @@ -76169,15 +64190,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21810 components: - pos: 137.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 22041 components: - pos: 96.5,-67.5 @@ -76185,8 +64202,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22042 components: - pos: 97.5,-67.5 @@ -76194,8 +64209,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22043 components: - pos: 98.5,-67.5 @@ -76203,8 +64216,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22044 components: - pos: 99.5,-67.5 @@ -76212,8 +64223,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22045 components: - pos: 100.5,-67.5 @@ -76221,8 +64230,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22046 components: - pos: 101.5,-67.5 @@ -76230,8 +64237,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22047 components: - pos: 102.5,-67.5 @@ -76239,8 +64244,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22048 components: - pos: 103.5,-67.5 @@ -76248,8 +64251,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22049 components: - pos: 104.5,-67.5 @@ -76257,8 +64258,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22050 components: - pos: 104.5,-68.5 @@ -76266,8 +64265,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22051 components: - pos: 105.5,-68.5 @@ -76275,8 +64272,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22052 components: - pos: 104.5,-69.5 @@ -76284,8 +64279,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22053 components: - pos: 103.5,-69.5 @@ -76293,8 +64286,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22054 components: - pos: 102.5,-69.5 @@ -76302,8 +64293,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22055 components: - pos: 101.5,-69.5 @@ -76311,8 +64300,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22056 components: - pos: 100.5,-69.5 @@ -76320,8 +64307,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22057 components: - pos: 99.5,-69.5 @@ -76329,8 +64314,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22058 components: - pos: 98.5,-69.5 @@ -76338,8 +64321,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22059 components: - pos: 97.5,-69.5 @@ -76347,8 +64328,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22060 components: - pos: 96.5,-69.5 @@ -76356,8 +64335,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22061 components: - pos: 96.5,-71.5 @@ -76365,8 +64342,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22062 components: - pos: 97.5,-71.5 @@ -76374,8 +64349,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22063 components: - pos: 98.5,-71.5 @@ -76383,8 +64356,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22064 components: - pos: 99.5,-71.5 @@ -76392,8 +64363,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22065 components: - pos: 100.5,-71.5 @@ -76401,8 +64370,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22066 components: - pos: 101.5,-71.5 @@ -76410,8 +64377,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22067 components: - pos: 102.5,-71.5 @@ -76419,8 +64384,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22068 components: - pos: 103.5,-71.5 @@ -76428,8 +64391,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22069 components: - pos: 104.5,-71.5 @@ -76437,8 +64398,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22070 components: - pos: 96.5,-73.5 @@ -76446,8 +64405,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22071 components: - pos: 97.5,-73.5 @@ -76455,8 +64412,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22072 components: - pos: 98.5,-73.5 @@ -76464,8 +64419,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22073 components: - pos: 99.5,-73.5 @@ -76473,8 +64426,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22074 components: - pos: 100.5,-73.5 @@ -76482,8 +64433,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22075 components: - pos: 101.5,-73.5 @@ -76491,8 +64440,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22076 components: - pos: 102.5,-73.5 @@ -76500,8 +64447,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22077 components: - pos: 103.5,-73.5 @@ -76509,8 +64454,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22078 components: - pos: 104.5,-73.5 @@ -76518,8 +64461,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22079 components: - pos: 96.5,-75.5 @@ -76527,8 +64468,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22080 components: - pos: 97.5,-75.5 @@ -76536,8 +64475,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22081 components: - pos: 98.5,-75.5 @@ -76545,8 +64482,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22082 components: - pos: 99.5,-75.5 @@ -76554,8 +64489,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22083 components: - pos: 100.5,-75.5 @@ -76563,8 +64496,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22084 components: - pos: 101.5,-75.5 @@ -76572,8 +64503,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22085 components: - pos: 102.5,-75.5 @@ -76581,8 +64510,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22086 components: - pos: 103.5,-75.5 @@ -76590,8 +64517,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22087 components: - pos: 104.5,-75.5 @@ -76599,8 +64524,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22088 components: - pos: 96.5,-77.5 @@ -76608,8 +64531,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22089 components: - pos: 97.5,-77.5 @@ -76617,8 +64538,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22090 components: - pos: 98.5,-77.5 @@ -76626,8 +64545,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22091 components: - pos: 99.5,-77.5 @@ -76635,8 +64552,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22092 components: - pos: 100.5,-77.5 @@ -76644,8 +64559,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22093 components: - pos: 101.5,-77.5 @@ -76653,8 +64566,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22094 components: - pos: 102.5,-77.5 @@ -76662,8 +64573,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22095 components: - pos: 103.5,-77.5 @@ -76671,8 +64580,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22096 components: - pos: 104.5,-77.5 @@ -76680,8 +64587,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22097 components: - pos: 104.5,-76.5 @@ -76689,8 +64594,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22098 components: - pos: 105.5,-76.5 @@ -76698,8 +64601,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22099 components: - pos: 104.5,-72.5 @@ -76707,8 +64608,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22100 components: - pos: 105.5,-72.5 @@ -76716,8 +64615,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22101 components: - pos: 116.5,-73.5 @@ -76725,8 +64622,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22102 components: - pos: 115.5,-73.5 @@ -76734,8 +64629,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22103 components: - pos: 114.5,-73.5 @@ -76743,8 +64636,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22104 components: - pos: 113.5,-73.5 @@ -76752,8 +64643,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22105 components: - pos: 112.5,-73.5 @@ -76761,8 +64650,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22106 components: - pos: 111.5,-73.5 @@ -76770,8 +64657,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22107 components: - pos: 110.5,-73.5 @@ -76779,8 +64664,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22108 components: - pos: 109.5,-73.5 @@ -76788,8 +64671,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22109 components: - pos: 108.5,-73.5 @@ -76797,8 +64678,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22110 components: - pos: 108.5,-71.5 @@ -76806,8 +64685,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22111 components: - pos: 109.5,-71.5 @@ -76815,8 +64692,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22112 components: - pos: 110.5,-71.5 @@ -76824,8 +64699,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22113 components: - pos: 111.5,-71.5 @@ -76833,8 +64706,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22114 components: - pos: 112.5,-71.5 @@ -76842,8 +64713,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22115 components: - pos: 113.5,-71.5 @@ -76851,8 +64720,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22116 components: - pos: 114.5,-71.5 @@ -76860,8 +64727,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22117 components: - pos: 115.5,-71.5 @@ -76869,8 +64734,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22118 components: - pos: 116.5,-71.5 @@ -76878,8 +64741,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22119 components: - pos: 116.5,-69.5 @@ -76887,8 +64748,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22120 components: - pos: 115.5,-69.5 @@ -76896,8 +64755,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22121 components: - pos: 114.5,-69.5 @@ -76905,8 +64762,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22122 components: - pos: 113.5,-69.5 @@ -76914,8 +64769,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22123 components: - pos: 112.5,-69.5 @@ -76923,8 +64776,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22124 components: - pos: 111.5,-69.5 @@ -76932,8 +64783,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22125 components: - pos: 110.5,-69.5 @@ -76941,8 +64790,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22126 components: - pos: 109.5,-69.5 @@ -76950,8 +64797,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22127 components: - pos: 108.5,-69.5 @@ -76959,8 +64804,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22128 components: - pos: 108.5,-67.5 @@ -76968,8 +64811,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22129 components: - pos: 109.5,-67.5 @@ -76977,8 +64818,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22130 components: - pos: 110.5,-67.5 @@ -76986,8 +64825,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22131 components: - pos: 111.5,-67.5 @@ -76995,8 +64832,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22132 components: - pos: 112.5,-67.5 @@ -77004,8 +64839,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22133 components: - pos: 113.5,-67.5 @@ -77013,8 +64846,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22134 components: - pos: 114.5,-67.5 @@ -77022,8 +64853,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22135 components: - pos: 115.5,-67.5 @@ -77031,8 +64860,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22136 components: - pos: 116.5,-67.5 @@ -77040,8 +64867,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22137 components: - pos: 116.5,-75.5 @@ -77049,8 +64874,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22138 components: - pos: 115.5,-75.5 @@ -77058,8 +64881,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22139 components: - pos: 114.5,-75.5 @@ -77067,8 +64888,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22140 components: - pos: 113.5,-75.5 @@ -77076,8 +64895,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22141 components: - pos: 112.5,-75.5 @@ -77085,8 +64902,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22142 components: - pos: 111.5,-75.5 @@ -77094,8 +64909,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22143 components: - pos: 110.5,-75.5 @@ -77103,8 +64916,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22144 components: - pos: 109.5,-75.5 @@ -77112,8 +64923,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22145 components: - pos: 108.5,-75.5 @@ -77121,8 +64930,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22146 components: - pos: 108.5,-77.5 @@ -77130,8 +64937,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22147 components: - pos: 109.5,-77.5 @@ -77139,8 +64944,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22148 components: - pos: 110.5,-77.5 @@ -77148,8 +64951,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22149 components: - pos: 111.5,-77.5 @@ -77157,8 +64958,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22150 components: - pos: 112.5,-77.5 @@ -77166,8 +64965,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22151 components: - pos: 113.5,-77.5 @@ -77175,8 +64972,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22152 components: - pos: 114.5,-77.5 @@ -77184,8 +64979,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22153 components: - pos: 115.5,-77.5 @@ -77193,8 +64986,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22154 components: - pos: 116.5,-77.5 @@ -77202,8 +64993,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22155 components: - pos: 108.5,-76.5 @@ -77211,8 +65000,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22156 components: - pos: 107.5,-76.5 @@ -77220,8 +65007,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22157 components: - pos: 108.5,-72.5 @@ -77229,8 +65014,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22158 components: - pos: 107.5,-72.5 @@ -77238,8 +65021,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22159 components: - pos: 108.5,-68.5 @@ -77247,8 +65028,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22160 components: - pos: 107.5,-68.5 @@ -77256,8 +65035,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22161 components: - pos: 106.5,-79.5 @@ -77265,8 +65042,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22162 components: - pos: 106.5,-78.5 @@ -77274,15 +65049,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22163 components: - pos: 106.5,-80.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 22165 components: - pos: 106.5,-67.5 @@ -77290,8 +65061,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22166 components: - pos: 106.5,-66.5 @@ -77299,8 +65068,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22167 components: - pos: 106.5,-65.5 @@ -77308,8 +65075,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22168 components: - pos: 106.5,-64.5 @@ -77317,8 +65082,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22169 components: - pos: 106.5,-63.5 @@ -77326,8 +65089,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22170 components: - pos: 106.5,-62.5 @@ -77335,8 +65096,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22171 components: - pos: 106.5,-61.5 @@ -77344,8 +65103,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22172 components: - pos: 106.5,-60.5 @@ -77353,8 +65110,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22173 components: - pos: 105.5,-60.5 @@ -77362,8 +65117,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22174 components: - pos: 104.5,-60.5 @@ -77371,8 +65124,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22175 components: - pos: 103.5,-60.5 @@ -77380,8 +65131,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22176 components: - pos: 102.5,-60.5 @@ -77389,8 +65138,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22177 components: - pos: 102.5,-59.5 @@ -77398,8 +65145,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22178 components: - pos: 102.5,-58.5 @@ -77407,8 +65152,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22179 components: - pos: 102.5,-57.5 @@ -77416,8 +65159,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22180 components: - pos: 102.5,-56.5 @@ -77425,8 +65166,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22181 components: - pos: 102.5,-55.5 @@ -77434,8 +65173,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22191 components: - pos: 102.5,-54.5 @@ -77443,8 +65180,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22192 components: - pos: 103.5,-54.5 @@ -77452,8 +65187,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22193 components: - pos: 104.5,-54.5 @@ -77461,8 +65194,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22194 components: - pos: 104.5,-53.5 @@ -77470,8 +65201,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22195 components: - pos: 104.5,-52.5 @@ -77479,8 +65208,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22196 components: - pos: 103.5,-52.5 @@ -77488,8 +65215,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22197 components: - pos: 103.5,-51.5 @@ -77497,8 +65222,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22198 components: - pos: 103.5,-50.5 @@ -77506,8 +65229,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22207 components: - pos: 114.5,32.5 @@ -77515,8 +65236,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22208 components: - pos: 113.5,32.5 @@ -77524,8 +65243,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22209 components: - pos: 112.5,32.5 @@ -77533,8 +65250,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22210 components: - pos: 112.5,31.5 @@ -77542,15 +65257,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22211 components: - pos: 111.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 22212 components: - pos: 110.5,31.5 @@ -77558,8 +65269,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22213 components: - pos: 114.5,31.5 @@ -77567,8 +65276,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22214 components: - pos: 115.5,31.5 @@ -77576,8 +65283,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22215 components: - pos: 116.5,31.5 @@ -77585,8 +65290,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22216 components: - pos: 117.5,31.5 @@ -77594,8 +65297,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22217 components: - pos: 118.5,31.5 @@ -77603,8 +65304,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22218 components: - pos: 118.5,30.5 @@ -77612,8 +65311,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22219 components: - pos: 118.5,29.5 @@ -77621,8 +65318,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22220 components: - pos: 118.5,28.5 @@ -77630,8 +65325,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22221 components: - pos: 118.5,27.5 @@ -77639,8 +65332,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22222 components: - pos: 118.5,26.5 @@ -77648,8 +65339,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22223 components: - pos: 118.5,25.5 @@ -77657,8 +65346,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22224 components: - pos: 119.5,25.5 @@ -77666,8 +65353,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22225 components: - pos: 120.5,25.5 @@ -77675,92 +65360,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22688 components: - pos: 60.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 22689 components: - pos: 61.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 22690 components: - pos: 62.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 22691 components: - pos: 63.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 22692 components: - pos: 64.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 22693 components: - pos: 65.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 22694 components: - pos: 66.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 22695 components: - pos: 67.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 22696 components: - pos: 67.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 22697 components: - pos: 67.5,-8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 22698 components: - pos: 67.5,-7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 22699 components: - pos: 67.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 22700 components: - pos: 67.5,-5.5 @@ -77768,8 +65427,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22701 components: - pos: 66.5,-5.5 @@ -77777,8 +65434,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22702 components: - pos: 65.5,-5.5 @@ -77786,8 +65441,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22703 components: - pos: 64.5,-5.5 @@ -77795,8 +65448,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22704 components: - pos: 64.5,-4.5 @@ -77804,8 +65455,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22705 components: - pos: 64.5,-3.5 @@ -77813,8 +65462,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22706 components: - pos: 64.5,-2.5 @@ -77822,8 +65469,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22707 components: - pos: 64.5,-1.5 @@ -77831,8 +65476,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22708 components: - pos: 64.5,-0.5 @@ -77840,8 +65483,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22709 components: - pos: 65.5,-0.5 @@ -77849,8 +65490,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22710 components: - pos: 66.5,-0.5 @@ -77858,8 +65497,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22711 components: - pos: 67.5,-0.5 @@ -77867,8 +65504,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22712 components: - pos: 68.5,-0.5 @@ -77876,8 +65511,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22714 components: - pos: 88.5,-0.5 @@ -77885,8 +65518,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22724 components: - pos: 88.5,0.5 @@ -77894,57 +65525,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22730 components: - pos: 89.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 22732 components: - pos: 84.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 22733 components: - pos: 83.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 22737 components: - pos: 82.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 22738 components: - pos: 81.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 22747 components: - pos: 82.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 22775 components: - pos: 90.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 22776 components: - pos: 90.5,0.5 @@ -77952,29 +65567,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22777 components: - pos: 90.5,1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 22778 components: - pos: 90.5,2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 22814 components: - pos: 90.5,3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 22827 components: - pos: 97.5,-0.5 @@ -77982,29 +65589,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22843 components: - pos: 90.5,4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 22844 components: - pos: 90.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 22845 components: - pos: 90.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 22846 components: - pos: 90.5,7.5 @@ -78012,8 +65611,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22847 components: - pos: 89.5,7.5 @@ -78021,8 +65618,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22848 components: - pos: 88.5,7.5 @@ -78030,8 +65625,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22849 components: - pos: 87.5,7.5 @@ -78039,8 +65632,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22850 components: - pos: 86.5,7.5 @@ -78048,8 +65639,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22851 components: - pos: 85.5,7.5 @@ -78057,8 +65646,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22852 components: - pos: 84.5,7.5 @@ -78066,8 +65653,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22860 components: - pos: 64.5,0.5 @@ -78075,8 +65660,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22861 components: - pos: 64.5,1.5 @@ -78084,8 +65667,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22862 components: - pos: 64.5,2.5 @@ -78093,8 +65674,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22863 components: - pos: 65.5,2.5 @@ -78102,8 +65681,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22864 components: - pos: 66.5,2.5 @@ -78111,8 +65688,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22865 components: - pos: 67.5,2.5 @@ -78120,8 +65695,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22866 components: - pos: 68.5,2.5 @@ -78129,8 +65702,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22867 components: - pos: 68.5,3.5 @@ -78138,8 +65709,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22868 components: - pos: 69.5,3.5 @@ -78147,8 +65716,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22869 components: - pos: 70.5,3.5 @@ -78156,8 +65723,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22870 components: - pos: 71.5,3.5 @@ -78165,8 +65730,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22871 components: - pos: 72.5,3.5 @@ -78174,8 +65737,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22872 components: - pos: 73.5,3.5 @@ -78183,8 +65744,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22873 components: - pos: 74.5,3.5 @@ -78192,15 +65751,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22874 components: - pos: 75.5,3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 22875 components: - pos: 75.5,4.5 @@ -78208,8 +65763,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22876 components: - pos: 76.5,4.5 @@ -78217,8 +65770,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22877 components: - pos: 77.5,4.5 @@ -78226,22 +65777,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22878 components: - pos: 83.5,2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 22879 components: - pos: 83.5,1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 22880 components: - pos: 83.5,3.5 @@ -78249,8 +65794,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22881 components: - pos: 82.5,3.5 @@ -78258,8 +65801,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22882 components: - pos: 81.5,3.5 @@ -78267,8 +65808,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22883 components: - pos: 81.5,4.5 @@ -78276,8 +65815,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22884 components: - pos: 80.5,4.5 @@ -78285,8 +65822,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22885 components: - pos: 79.5,4.5 @@ -78294,8 +65829,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22886 components: - pos: 78.5,4.5 @@ -78303,127 +65836,91 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22887 components: - pos: 64.5,3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 22888 components: - pos: 64.5,4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 22889 components: - pos: 64.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 22890 components: - pos: 64.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 22891 components: - pos: 64.5,7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 22892 components: - pos: 64.5,8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 22893 components: - pos: 64.5,9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 22894 components: - pos: 64.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 22895 components: - pos: 63.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 22896 components: - pos: 62.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 22897 components: - pos: 61.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 22898 components: - pos: 60.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 22899 components: - pos: 59.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 22900 components: - pos: 58.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 22901 components: - pos: 57.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 22902 components: - pos: 56.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 22903 components: - pos: 55.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23016 components: - pos: 96.5,-0.5 @@ -78431,8 +65928,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23040 components: - pos: 106.5,2.5 @@ -78440,8 +65935,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23080 components: - pos: 107.5,2.5 @@ -78449,8 +65942,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23081 components: - pos: 108.5,2.5 @@ -78458,8 +65949,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23082 components: - pos: 109.5,2.5 @@ -78467,8 +65956,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23083 components: - pos: 116.5,-4.5 @@ -78476,8 +65963,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23084 components: - pos: 116.5,-5.5 @@ -78485,8 +65970,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23085 components: - pos: 116.5,-6.5 @@ -78494,8 +65977,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23086 components: - pos: 107.5,-13.5 @@ -78503,8 +65984,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23087 components: - pos: 108.5,-13.5 @@ -78512,8 +65991,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23088 components: - pos: 109.5,-13.5 @@ -78521,8 +65998,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23089 components: - pos: 110.5,-13.5 @@ -78530,8 +66005,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23090 components: - pos: 111.5,-13.5 @@ -78539,8 +66012,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23091 components: - pos: 112.5,-13.5 @@ -78548,8 +66019,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23092 components: - pos: 113.5,-13.5 @@ -78557,8 +66026,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23093 components: - pos: 114.5,-13.5 @@ -78566,8 +66033,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23094 components: - pos: 115.5,-13.5 @@ -78575,8 +66040,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23095 components: - pos: 116.5,-13.5 @@ -78584,8 +66047,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23096 components: - pos: 116.5,-12.5 @@ -78593,8 +66054,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23097 components: - pos: 116.5,-11.5 @@ -78602,8 +66061,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23098 components: - pos: 116.5,-10.5 @@ -78611,8 +66068,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23099 components: - pos: 116.5,-9.5 @@ -78620,8 +66075,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23100 components: - pos: 116.5,-8.5 @@ -78629,8 +66082,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23101 components: - pos: 116.5,-7.5 @@ -78638,8 +66089,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23102 components: - pos: 116.5,-3.5 @@ -78647,8 +66096,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23103 components: - pos: 116.5,-2.5 @@ -78656,8 +66103,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23104 components: - pos: 116.5,-1.5 @@ -78665,8 +66110,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23105 components: - pos: 116.5,-0.5 @@ -78674,8 +66117,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23106 components: - pos: 116.5,0.5 @@ -78683,8 +66124,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23107 components: - pos: 116.5,1.5 @@ -78692,8 +66131,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23108 components: - pos: 116.5,2.5 @@ -78701,8 +66138,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23109 components: - pos: 115.5,2.5 @@ -78710,8 +66145,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23110 components: - pos: 114.5,2.5 @@ -78719,8 +66152,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23111 components: - pos: 113.5,2.5 @@ -78728,8 +66159,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23112 components: - pos: 112.5,2.5 @@ -78737,8 +66166,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23113 components: - pos: 111.5,2.5 @@ -78746,8 +66173,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23114 components: - pos: 110.5,2.5 @@ -78755,8 +66180,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23115 components: - pos: 105.5,2.5 @@ -78764,8 +66187,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23116 components: - pos: 104.5,2.5 @@ -78773,8 +66194,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23117 components: - pos: 103.5,2.5 @@ -78782,8 +66201,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23118 components: - pos: 102.5,2.5 @@ -78791,8 +66208,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23119 components: - pos: 101.5,2.5 @@ -78800,8 +66215,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23120 components: - pos: 100.5,2.5 @@ -78809,8 +66222,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23121 components: - pos: 100.5,1.5 @@ -78818,8 +66229,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23123 components: - pos: 100.5,0.5 @@ -78827,8 +66236,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23132 components: - pos: 113.5,-26.5 @@ -78836,8 +66243,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23133 components: - pos: 114.5,-26.5 @@ -78845,211 +66250,151 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23134 components: - pos: 113.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23135 components: - pos: 113.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23136 components: - pos: 113.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23137 components: - pos: 113.5,-22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23138 components: - pos: 112.5,-22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23139 components: - pos: 111.5,-22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23140 components: - pos: 111.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23141 components: - pos: 111.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23142 components: - pos: 110.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23143 components: - pos: 109.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23144 components: - pos: 108.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23145 components: - pos: 107.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23146 components: - pos: 106.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23147 components: - pos: 105.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23148 components: - pos: 104.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23149 components: - pos: 103.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23150 components: - pos: 102.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23151 components: - pos: 101.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23152 components: - pos: 100.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23153 components: - pos: 99.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23154 components: - pos: 98.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23155 components: - pos: 97.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23156 components: - pos: 96.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23157 components: - pos: 95.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23158 components: - pos: 94.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23159 components: - pos: 93.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23160 components: - pos: 92.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23161 components: - pos: 91.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23162 components: - pos: 90.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23163 components: - pos: 89.5,-20.5 @@ -79057,8 +66402,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23164 components: - pos: 88.5,-20.5 @@ -79066,8 +66409,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23165 components: - pos: 87.5,-20.5 @@ -79075,8 +66416,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23166 components: - pos: 86.5,-20.5 @@ -79084,8 +66423,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23167 components: - pos: 85.5,-20.5 @@ -79093,8 +66430,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23168 components: - pos: 84.5,-20.5 @@ -79102,8 +66437,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23169 components: - pos: 83.5,-20.5 @@ -79111,267 +66444,191 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23170 components: - pos: 82.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23171 components: - pos: 81.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23172 components: - pos: 80.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23173 components: - pos: 79.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23174 components: - pos: 78.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23175 components: - pos: 77.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23176 components: - pos: 76.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23177 components: - pos: 76.5,-19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23178 components: - pos: 76.5,-18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23179 components: - pos: 76.5,-17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23180 components: - pos: 76.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23181 components: - pos: 76.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23182 components: - pos: 76.5,-14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23183 components: - pos: 76.5,-13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23184 components: - pos: 76.5,-12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23185 components: - pos: 76.5,-11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23186 components: - pos: 76.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23187 components: - pos: 76.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23188 components: - pos: 77.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23189 components: - pos: 78.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23190 components: - pos: 79.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23191 components: - pos: 79.5,-8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23192 components: - pos: 79.5,-7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23193 components: - pos: 79.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23194 components: - pos: 79.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23195 components: - pos: 79.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23196 components: - pos: 78.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23197 components: - pos: 77.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23198 components: - pos: 77.5,-3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23199 components: - pos: 77.5,-2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23200 components: - pos: 77.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23201 components: - pos: 77.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23202 components: - pos: 77.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23203 components: - pos: 78.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23204 components: - pos: 79.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23205 components: - pos: 80.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23206 components: - pos: 112.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23207 components: - pos: 113.5,-20.5 @@ -79379,36 +66636,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23208 components: - pos: 114.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23209 components: - pos: 115.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23210 components: - pos: 116.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23211 components: - pos: 117.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23212 components: - pos: 118.5,-20.5 @@ -79416,8 +66663,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23216 components: - pos: 118.5,-19.5 @@ -79425,8 +66670,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23217 components: - pos: 118.5,-17.5 @@ -79434,8 +66677,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23218 components: - pos: 118.5,-14.5 @@ -79443,8 +66684,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23219 components: - pos: 118.5,-13.5 @@ -79452,8 +66691,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23220 components: - pos: 119.5,-13.5 @@ -79461,8 +66698,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23221 components: - pos: 119.5,-12.5 @@ -79470,8 +66705,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23222 components: - pos: 119.5,-11.5 @@ -79479,8 +66712,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23223 components: - pos: 119.5,-10.5 @@ -79488,8 +66719,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23224 components: - pos: 119.5,-9.5 @@ -79497,8 +66726,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23225 components: - pos: 119.5,-8.5 @@ -79506,8 +66733,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23226 components: - pos: 119.5,-7.5 @@ -79515,8 +66740,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23227 components: - pos: 119.5,-6.5 @@ -79524,8 +66747,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23228 components: - pos: 119.5,-5.5 @@ -79533,8 +66754,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23229 components: - pos: 119.5,-4.5 @@ -79542,8 +66761,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23230 components: - pos: 119.5,-3.5 @@ -79551,8 +66768,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23231 components: - pos: 119.5,-2.5 @@ -79560,8 +66775,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23232 components: - pos: 119.5,-1.5 @@ -79569,8 +66782,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23233 components: - pos: 119.5,-0.5 @@ -79578,8 +66789,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23234 components: - pos: 119.5,0.5 @@ -79587,8 +66796,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23235 components: - pos: 119.5,1.5 @@ -79596,8 +66803,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23236 components: - pos: 119.5,2.5 @@ -79605,8 +66810,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23237 components: - pos: 119.5,3.5 @@ -79614,8 +66817,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23238 components: - pos: 119.5,4.5 @@ -79623,8 +66824,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23239 components: - pos: 119.5,5.5 @@ -79632,8 +66831,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23240 components: - pos: 119.5,6.5 @@ -79641,8 +66838,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23241 components: - pos: 81.5,5.5 @@ -79650,8 +66845,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23242 components: - pos: 81.5,6.5 @@ -79659,8 +66852,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23243 components: - pos: 81.5,7.5 @@ -79668,8 +66859,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23244 components: - pos: 81.5,8.5 @@ -79677,8 +66866,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23245 components: - pos: 81.5,9.5 @@ -79686,8 +66873,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23246 components: - pos: 81.5,10.5 @@ -79695,8 +66880,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23247 components: - pos: 82.5,10.5 @@ -79704,8 +66887,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23248 components: - pos: 83.5,10.5 @@ -79713,8 +66894,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23249 components: - pos: 84.5,10.5 @@ -79722,8 +66901,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23250 components: - pos: 85.5,10.5 @@ -79731,8 +66908,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23251 components: - pos: 86.5,10.5 @@ -79740,8 +66915,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23252 components: - pos: 87.5,10.5 @@ -79749,8 +66922,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23253 components: - pos: 88.5,10.5 @@ -79758,8 +66929,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23254 components: - pos: 89.5,10.5 @@ -79767,8 +66936,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23255 components: - pos: 90.5,10.5 @@ -79776,8 +66943,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23256 components: - pos: 91.5,10.5 @@ -79785,8 +66950,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23257 components: - pos: 92.5,10.5 @@ -79794,8 +66957,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23258 components: - pos: 93.5,10.5 @@ -79803,8 +66964,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23259 components: - pos: 118.5,6.5 @@ -79812,8 +66971,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23260 components: - pos: 117.5,6.5 @@ -79821,8 +66978,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23261 components: - pos: 116.5,6.5 @@ -79830,22 +66985,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23262 components: - pos: 96.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23263 components: - pos: 95.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23264 components: - pos: 97.5,1.5 @@ -79853,8 +67002,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23265 components: - pos: 94.5,0.5 @@ -79862,8 +67009,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23275 components: - pos: 93.5,0.5 @@ -79871,8 +67016,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23281 components: - pos: 96.5,1.5 @@ -79880,8 +67023,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23282 components: - pos: 100.5,-0.5 @@ -79889,8 +67030,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23283 components: - pos: 98.5,-0.5 @@ -79898,8 +67037,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23286 components: - pos: 99.5,-0.5 @@ -79907,8 +67044,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23300 components: - pos: 92.5,0.5 @@ -79916,8 +67051,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23301 components: - pos: 91.5,0.5 @@ -79925,8 +67058,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23418 components: - pos: 96.5,-6.5 @@ -79934,15 +67065,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23419 components: - pos: 96.5,-7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23420 components: - pos: 96.5,-4.5 @@ -79950,232 +67077,166 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23421 components: - pos: 96.5,-3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23422 components: - pos: 95.5,-7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23423 components: - pos: 94.5,-7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23424 components: - pos: 94.5,-8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23425 components: - pos: 94.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23426 components: - pos: 94.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23427 components: - pos: 93.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23428 components: - pos: 92.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23429 components: - pos: 91.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23430 components: - pos: 95.5,-3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23431 components: - pos: 94.5,-3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23432 components: - pos: 93.5,-3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23433 components: - pos: 93.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23434 components: - pos: 93.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23435 components: - pos: 93.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23436 components: - pos: 93.5,-7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23437 components: - pos: 91.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23438 components: - pos: 91.5,-8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23439 components: - pos: 91.5,-7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23440 components: - pos: 91.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23441 components: - pos: 90.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23442 components: - pos: 89.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23443 components: - pos: 88.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23444 components: - pos: 87.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23445 components: - pos: 86.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23446 components: - pos: 86.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23447 components: - pos: 85.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23448 components: - pos: 84.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23449 components: - pos: 83.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23450 components: - pos: 82.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23451 components: - pos: 81.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23452 components: - pos: 80.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23467 components: - pos: 87.5,-0.5 @@ -80183,8 +67244,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23468 components: - pos: 87.5,2.5 @@ -80192,8 +67251,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23469 components: - pos: 88.5,1.5 @@ -80201,22 +67258,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24218 components: - pos: 42.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24219 components: - pos: 42.5,-11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24229 components: - pos: 37.5,-12.5 @@ -80224,78 +67275,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24230 components: - pos: 42.5,-13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24231 components: - pos: 37.5,-14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24232 components: - pos: 37.5,-13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24233 components: - pos: 40.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24234 components: - pos: 38.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24235 components: - pos: 37.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24236 components: - pos: 39.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24237 components: - pos: 42.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24238 components: - pos: 41.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24239 components: - pos: 42.5,-14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24240 components: - pos: 37.5,-11.5 @@ -80303,8 +67332,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24247 components: - pos: 101.5,-43.5 @@ -80312,8 +67339,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24248 components: - pos: 101.5,-42.5 @@ -80321,8 +67346,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24249 components: - pos: 100.5,-42.5 @@ -80330,8 +67353,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24250 components: - pos: 99.5,-42.5 @@ -80339,8 +67360,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24251 components: - pos: 98.5,-42.5 @@ -80348,8 +67367,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24252 components: - pos: 97.5,-42.5 @@ -80357,8 +67374,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24253 components: - pos: 97.5,-41.5 @@ -80366,15 +67381,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24254 components: - pos: 97.5,-40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24255 components: - pos: 97.5,-39.5 @@ -80382,8 +67393,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24256 components: - pos: 97.5,-38.5 @@ -80391,8 +67400,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24257 components: - pos: 97.5,-37.5 @@ -80400,8 +67407,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24259 components: - pos: 97.5,-35.5 @@ -80409,8 +67414,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24260 components: - pos: 97.5,-34.5 @@ -80418,22 +67421,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24261 components: - pos: 97.5,-33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24262 components: - pos: 97.5,-32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24263 components: - pos: 97.5,-31.5 @@ -80441,8 +67438,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24264 components: - pos: 96.5,-31.5 @@ -80450,8 +67445,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24265 components: - pos: 95.5,-31.5 @@ -80459,8 +67452,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24266 components: - pos: 94.5,-31.5 @@ -80468,8 +67459,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24267 components: - pos: 93.5,-31.5 @@ -80477,8 +67466,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24268 components: - pos: 92.5,-31.5 @@ -80486,8 +67473,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24269 components: - pos: 91.5,-31.5 @@ -80495,15 +67480,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24270 components: - pos: 90.5,-31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24271 components: - pos: 89.5,-31.5 @@ -80511,8 +67492,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24272 components: - pos: 88.5,-31.5 @@ -80520,8 +67499,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24273 components: - pos: 87.5,-31.5 @@ -80529,8 +67506,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24274 components: - pos: 86.5,-31.5 @@ -80538,8 +67513,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24275 components: - pos: 85.5,-31.5 @@ -80547,8 +67520,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24276 components: - pos: 84.5,-31.5 @@ -80556,8 +67527,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24277 components: - pos: 83.5,-31.5 @@ -80565,8 +67534,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24278 components: - pos: 82.5,-31.5 @@ -80574,8 +67541,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24279 components: - pos: 81.5,-31.5 @@ -80583,8 +67548,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24280 components: - pos: 80.5,-31.5 @@ -80592,64 +67555,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24281 components: - pos: 79.5,-31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24282 components: - pos: 78.5,-31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24283 components: - pos: 77.5,-31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24284 components: - pos: 76.5,-31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24285 components: - pos: 75.5,-31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24286 components: - pos: 74.5,-31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24287 components: - pos: 73.5,-31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24288 components: - pos: 72.5,-31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24289 components: - pos: 71.5,-31.5 @@ -80657,8 +67602,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24290 components: - pos: 70.5,-31.5 @@ -80666,8 +67609,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24291 components: - pos: 69.5,-31.5 @@ -80675,8 +67616,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24292 components: - pos: 69.5,-32.5 @@ -80684,8 +67623,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24293 components: - pos: 69.5,-33.5 @@ -80693,8 +67630,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24294 components: - pos: 69.5,-34.5 @@ -80702,8 +67637,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24295 components: - pos: 69.5,-35.5 @@ -80711,8 +67644,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24296 components: - pos: 69.5,-36.5 @@ -80720,8 +67651,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24297 components: - pos: 68.5,-36.5 @@ -80729,8 +67658,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24298 components: - pos: 67.5,-36.5 @@ -80738,15 +67665,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24299 components: - pos: 66.5,-36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24300 components: - pos: 65.5,-36.5 @@ -80754,8 +67677,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24301 components: - pos: 68.5,-31.5 @@ -80763,8 +67684,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24302 components: - pos: 68.5,-30.5 @@ -80772,8 +67691,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24303 components: - pos: 68.5,-29.5 @@ -80781,8 +67698,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24304 components: - pos: 68.5,-28.5 @@ -80790,183 +67705,131 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24305 components: - pos: 68.5,-27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24306 components: - pos: 68.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24307 components: - pos: 68.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24308 components: - pos: 68.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24309 components: - pos: 68.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24310 components: - pos: 68.5,-22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24311 components: - pos: 68.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24312 components: - pos: 68.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24313 components: - pos: 68.5,-19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24314 components: - pos: 68.5,-18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24315 components: - pos: 68.5,-17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24316 components: - pos: 68.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24317 components: - pos: 68.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24318 components: - pos: 68.5,-14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24319 components: - pos: 68.5,-13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24320 components: - pos: 68.5,-12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24321 components: - pos: 68.5,-11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24322 components: - pos: 68.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24323 components: - pos: 69.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24324 components: - pos: 70.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24325 components: - pos: 71.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24326 components: - pos: 72.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24327 components: - pos: 73.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24328 components: - pos: 74.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24329 components: - pos: 75.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24344 components: - pos: 97.5,-36.5 @@ -80974,57 +67837,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25046 components: - pos: 36.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25047 components: - pos: 35.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25048 components: - pos: 34.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25049 components: - pos: 33.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25050 components: - pos: 32.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25051 components: - pos: 32.5,-14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25052 components: - pos: 32.5,-13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25053 components: - pos: 32.5,-12.5 @@ -81032,8 +67879,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25054 components: - pos: 33.5,-12.5 @@ -81041,8 +67886,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25055 components: - pos: 33.5,-11.5 @@ -81050,8 +67893,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25056 components: - pos: 33.5,-10.5 @@ -81059,8 +67900,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25057 components: - pos: 33.5,-9.5 @@ -81068,8 +67907,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25058 components: - pos: 33.5,-8.5 @@ -81077,8 +67914,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25059 components: - pos: 33.5,-7.5 @@ -81086,8 +67921,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25060 components: - pos: 33.5,-6.5 @@ -81095,8 +67928,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25061 components: - pos: 33.5,-5.5 @@ -81104,127 +67935,91 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25062 components: - pos: 33.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25063 components: - pos: 33.5,-3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25064 components: - pos: 33.5,-2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25065 components: - pos: 33.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25066 components: - pos: 31.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25067 components: - pos: 30.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25068 components: - pos: 29.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25069 components: - pos: 28.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25070 components: - pos: 27.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25071 components: - pos: 26.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25072 components: - pos: 25.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25073 components: - pos: 90.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25074 components: - pos: 89.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25075 components: - pos: 88.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25076 components: - pos: 88.5,-11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25077 components: - pos: 88.5,-12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25078 components: - pos: 88.5,-13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25079 components: - pos: 88.5,-14.5 @@ -81232,8 +68027,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25080 components: - pos: 88.5,-15.5 @@ -81241,8 +68034,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25081 components: - pos: 88.5,-16.5 @@ -81250,15 +68041,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25082 components: - pos: 88.5,-17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25083 components: - pos: 88.5,-18.5 @@ -81266,8 +68053,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25084 components: - pos: 88.5,-19.5 @@ -81275,8 +68060,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25153 components: - pos: 103.5,-49.5 @@ -81284,8 +68067,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25154 components: - pos: 103.5,-48.5 @@ -81293,8 +68074,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25155 components: - pos: 103.5,-47.5 @@ -81302,8 +68081,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25156 components: - pos: 103.5,-46.5 @@ -81311,8 +68088,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25157 components: - pos: 102.5,-46.5 @@ -81320,15 +68095,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25158 components: - pos: 101.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25159 components: - pos: 100.5,-46.5 @@ -81336,8 +68107,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25160 components: - pos: 99.5,-46.5 @@ -81345,8 +68114,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25161 components: - pos: 98.5,-46.5 @@ -81354,8 +68121,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25162 components: - pos: 97.5,-46.5 @@ -81363,8 +68128,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25163 components: - pos: 97.5,-45.5 @@ -81372,8 +68135,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25164 components: - pos: 97.5,-44.5 @@ -81381,8 +68142,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25165 components: - pos: 97.5,-43.5 @@ -81390,8 +68149,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25166 components: - pos: 96.5,-46.5 @@ -81399,15 +68156,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25167 components: - pos: 95.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25168 components: - pos: 94.5,-46.5 @@ -81415,8 +68168,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25169 components: - pos: 93.5,-46.5 @@ -81424,29 +68175,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25170 components: - pos: 92.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25171 components: - pos: 91.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25172 components: - pos: 90.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25173 components: - pos: 89.5,-46.5 @@ -81454,8 +68197,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25174 components: - pos: 88.5,-46.5 @@ -81463,15 +68204,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25175 components: - pos: 87.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25176 components: - pos: 86.5,-46.5 @@ -81479,50 +68216,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25177 components: - pos: 85.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25178 components: - pos: 84.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25179 components: - pos: 83.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25180 components: - pos: 82.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25181 components: - pos: 81.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25182 components: - pos: 80.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25183 components: - pos: 79.5,-46.5 @@ -81530,29 +68253,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25184 components: - pos: 78.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25185 components: - pos: 77.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25186 components: - pos: 76.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25187 components: - pos: 75.5,-46.5 @@ -81560,57 +68275,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25188 components: - pos: 74.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25189 components: - pos: 73.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25190 components: - pos: 72.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25191 components: - pos: 71.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25192 components: - pos: 70.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25193 components: - pos: 69.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25194 components: - pos: 68.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25195 components: - pos: 67.5,-46.5 @@ -81618,8 +68317,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25196 components: - pos: 66.5,-46.5 @@ -81627,8 +68324,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25197 components: - pos: 65.5,-46.5 @@ -81636,8 +68331,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25203 components: - pos: -28.5,25.5 @@ -81645,8 +68338,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25204 components: - pos: -29.5,25.5 @@ -81654,8 +68345,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25205 components: - pos: -30.5,25.5 @@ -81663,8 +68352,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25206 components: - pos: -30.5,26.5 @@ -81672,8 +68359,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25207 components: - pos: -30.5,27.5 @@ -81681,8 +68366,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25208 components: - pos: -30.5,28.5 @@ -81690,204 +68373,146 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25209 components: - pos: -30.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25210 components: - pos: -30.5,30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25211 components: - pos: -30.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25212 components: - pos: -29.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25213 components: - pos: -28.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25214 components: - pos: -28.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25215 components: - pos: -28.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25216 components: - pos: -28.5,34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25217 components: - pos: -28.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25218 components: - pos: -28.5,36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25219 components: - pos: -28.5,37.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25220 components: - pos: -28.5,38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25221 components: - pos: -28.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25222 components: - pos: -28.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25223 components: - pos: -29.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25224 components: - pos: -30.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25225 components: - pos: -31.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25226 components: - pos: -32.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25227 components: - pos: -32.5,41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25228 components: - pos: -32.5,42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25229 components: - pos: -32.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25230 components: - pos: -32.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25231 components: - pos: -32.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25232 components: - pos: -32.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25546 components: - pos: 86.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25547 components: - pos: 85.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25548 components: - pos: 87.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25549 components: - pos: 87.5,3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 26228 components: - pos: 87.5,-11.5 @@ -81895,78 +68520,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26229 components: - pos: 86.5,-11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 26678 components: - pos: 91.5,1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 26679 components: - pos: 92.5,1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 26680 components: - pos: 93.5,1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 26681 components: - pos: 94.5,1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 26723 components: - pos: 82.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 26724 components: - pos: 82.5,-7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 26725 components: - pos: 82.5,-8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 26726 components: - pos: 83.5,-8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 26924 components: - pos: 82.5,11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 26985 components: - pos: 115.5,6.5 @@ -81974,8 +68577,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26986 components: - pos: 114.5,6.5 @@ -81983,8 +68584,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26987 components: - pos: 114.5,7.5 @@ -81992,8 +68591,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26988 components: - pos: 114.5,8.5 @@ -82001,8 +68598,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26989 components: - pos: 113.5,8.5 @@ -82010,8 +68605,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26990 components: - pos: 112.5,8.5 @@ -82019,8 +68612,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26991 components: - pos: 111.5,8.5 @@ -82028,8 +68619,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26992 components: - pos: 110.5,8.5 @@ -82037,8 +68626,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26993 components: - pos: 109.5,8.5 @@ -82046,8 +68633,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26994 components: - pos: 108.5,8.5 @@ -82055,8 +68640,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26995 components: - pos: 107.5,8.5 @@ -82064,8 +68647,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26996 components: - pos: 106.5,8.5 @@ -82073,8 +68654,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26997 components: - pos: 105.5,8.5 @@ -82082,8 +68661,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26998 components: - pos: 104.5,8.5 @@ -82091,8 +68668,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26999 components: - pos: 103.5,8.5 @@ -82100,8 +68675,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27000 components: - pos: 102.5,8.5 @@ -82109,8 +68682,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27001 components: - pos: 101.5,8.5 @@ -82118,8 +68689,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27002 components: - pos: 100.5,8.5 @@ -82127,8 +68696,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27003 components: - pos: 100.5,9.5 @@ -82136,8 +68703,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27004 components: - pos: 100.5,10.5 @@ -82145,8 +68710,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27005 components: - pos: 99.5,10.5 @@ -82154,8 +68717,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27006 components: - pos: 98.5,10.5 @@ -82163,8 +68724,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27007 components: - pos: 97.5,10.5 @@ -82172,8 +68731,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27008 components: - pos: 96.5,10.5 @@ -82181,8 +68738,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27009 components: - pos: 95.5,10.5 @@ -82190,8 +68745,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27010 components: - pos: 94.5,10.5 @@ -82199,8 +68752,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27149 components: - pos: 102.5,26.5 @@ -82208,8 +68759,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27150 components: - pos: 101.5,26.5 @@ -82217,8 +68766,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27151 components: - pos: 100.5,26.5 @@ -82226,8 +68773,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27152 components: - pos: 99.5,26.5 @@ -82235,8 +68780,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27153 components: - pos: 98.5,26.5 @@ -82244,8 +68787,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27154 components: - pos: 97.5,26.5 @@ -82253,8 +68794,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27155 components: - pos: 96.5,26.5 @@ -82262,8 +68801,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27156 components: - pos: 95.5,26.5 @@ -82271,8 +68808,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27157 components: - pos: 94.5,26.5 @@ -82280,8 +68815,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27158 components: - pos: 93.5,26.5 @@ -82289,8 +68822,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27159 components: - pos: 92.5,26.5 @@ -82298,8 +68829,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27160 components: - pos: 91.5,26.5 @@ -82307,8 +68836,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27161 components: - pos: 90.5,26.5 @@ -82316,8 +68843,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27162 components: - pos: 90.5,27.5 @@ -82325,8 +68850,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27163 components: - pos: 89.5,27.5 @@ -82334,8 +68857,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27164 components: - pos: 88.5,27.5 @@ -82343,8 +68864,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27165 components: - pos: 87.5,27.5 @@ -82352,8 +68871,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27166 components: - pos: 86.5,27.5 @@ -82361,8 +68878,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27167 components: - pos: 85.5,27.5 @@ -82370,64 +68885,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27168 components: - pos: 84.5,27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27169 components: - pos: 83.5,27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27170 components: - pos: 82.5,27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27171 components: - pos: 82.5,28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27172 components: - pos: 82.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27173 components: - pos: 81.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27174 components: - pos: 80.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27175 components: - pos: 79.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27176 components: - pos: 78.5,29.5 @@ -82435,8 +68932,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27177 components: - pos: 77.5,29.5 @@ -82444,8 +68939,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27178 components: - pos: 76.5,29.5 @@ -82453,8 +68946,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27179 components: - pos: 75.5,29.5 @@ -82462,8 +68953,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27180 components: - pos: 74.5,29.5 @@ -82471,8 +68960,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27182 components: - pos: 74.5,27.5 @@ -82480,8 +68967,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27183 components: - pos: 74.5,26.5 @@ -82489,8 +68974,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27184 components: - pos: 74.5,25.5 @@ -82498,8 +68981,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27185 components: - pos: 74.5,24.5 @@ -82507,8 +68988,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27186 components: - pos: 73.5,24.5 @@ -82516,8 +68995,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27187 components: - pos: 72.5,24.5 @@ -82525,8 +69002,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27188 components: - pos: 71.5,24.5 @@ -82534,8 +69009,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27189 components: - pos: 70.5,24.5 @@ -82543,8 +69016,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27190 components: - pos: 69.5,24.5 @@ -82552,8 +69023,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27191 components: - pos: 68.5,24.5 @@ -82561,8 +69030,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27192 components: - pos: 67.5,24.5 @@ -82570,8 +69037,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27193 components: - pos: 66.5,24.5 @@ -82579,8 +69044,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27194 components: - pos: 65.5,24.5 @@ -82588,8 +69051,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27195 components: - pos: 64.5,24.5 @@ -82597,8 +69058,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27196 components: - pos: 63.5,24.5 @@ -82606,8 +69065,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27197 components: - pos: 62.5,24.5 @@ -82615,8 +69072,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27198 components: - pos: 61.5,24.5 @@ -82624,8 +69079,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27199 components: - pos: 60.5,24.5 @@ -82633,8 +69086,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27200 components: - pos: 59.5,24.5 @@ -82642,8 +69093,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27201 components: - pos: 58.5,24.5 @@ -82651,29 +69100,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27202 components: - pos: 57.5,24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27203 components: - pos: 56.5,24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27204 components: - pos: 55.5,24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27205 components: - pos: 102.5,27.5 @@ -82681,8 +69122,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27206 components: - pos: 102.5,28.5 @@ -82690,8 +69129,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27207 components: - pos: 102.5,29.5 @@ -82699,8 +69136,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27208 components: - pos: 102.5,30.5 @@ -82708,8 +69143,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27209 components: - pos: 102.5,31.5 @@ -82717,8 +69150,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27210 components: - pos: 102.5,32.5 @@ -82726,8 +69157,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27211 components: - pos: 102.5,33.5 @@ -82735,8 +69164,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27212 components: - pos: 102.5,34.5 @@ -82744,8 +69171,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27213 components: - pos: 102.5,35.5 @@ -82753,8 +69178,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27214 components: - pos: 109.5,31.5 @@ -82762,8 +69185,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27215 components: - pos: 109.5,32.5 @@ -82771,8 +69192,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27216 components: - pos: 109.5,33.5 @@ -82780,8 +69199,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27217 components: - pos: 109.5,35.5 @@ -82789,8 +69206,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27218 components: - pos: 109.5,34.5 @@ -82798,8 +69213,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27219 components: - pos: 108.5,35.5 @@ -82807,8 +69220,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27220 components: - pos: 107.5,35.5 @@ -82816,8 +69227,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27221 components: - pos: 106.5,35.5 @@ -82825,8 +69234,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27222 components: - pos: 105.5,35.5 @@ -82834,8 +69241,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27223 components: - pos: 104.5,35.5 @@ -82843,8 +69248,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27224 components: - pos: 103.5,35.5 @@ -82852,36 +69255,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27225 components: - pos: 90.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27226 components: - pos: 90.5,30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27227 components: - pos: 90.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27228 components: - pos: 89.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27229 components: - pos: 90.5,31.5 @@ -82889,176 +69282,126 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27230 components: - pos: 88.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27231 components: - pos: 87.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27232 components: - pos: 86.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27233 components: - pos: 85.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27234 components: - pos: 84.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27235 components: - pos: 83.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27236 components: - pos: 82.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27237 components: - pos: 82.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27238 components: - pos: 82.5,30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27239 components: - pos: 88.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27240 components: - pos: 88.5,34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27241 components: - pos: 88.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27242 components: - pos: 89.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27243 components: - pos: 90.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27244 components: - pos: 91.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27245 components: - pos: 92.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27246 components: - pos: 93.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27247 components: - pos: 94.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27248 components: - pos: 95.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27249 components: - pos: 96.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27250 components: - pos: 97.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27251 components: - pos: 98.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27252 components: - pos: 99.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27253 components: - pos: 100.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27254 components: - pos: 101.5,35.5 @@ -83066,8 +69409,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27278 components: - pos: 102.5,25.5 @@ -83075,8 +69416,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27279 components: - pos: 102.5,24.5 @@ -83084,8 +69423,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27280 components: - pos: 102.5,23.5 @@ -83093,8 +69430,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27281 components: - pos: 102.5,22.5 @@ -83102,8 +69437,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27282 components: - pos: 102.5,21.5 @@ -83111,8 +69444,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27283 components: - pos: 102.5,20.5 @@ -83120,8 +69451,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27284 components: - pos: 102.5,19.5 @@ -83129,8 +69458,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27285 components: - pos: 103.5,19.5 @@ -83138,8 +69465,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27286 components: - pos: 104.5,19.5 @@ -83147,8 +69472,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27287 components: - pos: 105.5,19.5 @@ -83156,8 +69479,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27288 components: - pos: 106.5,19.5 @@ -83165,8 +69486,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27289 components: - pos: 107.5,19.5 @@ -83174,8 +69493,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27290 components: - pos: 108.5,19.5 @@ -83183,57 +69500,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27291 components: - pos: 109.5,19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27292 components: - pos: 110.5,19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27293 components: - pos: 111.5,19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27294 components: - pos: 112.5,19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27295 components: - pos: 113.5,19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27296 components: - pos: 113.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27297 components: - pos: 113.5,17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27298 components: - pos: 113.5,16.5 @@ -83241,8 +69542,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27299 components: - pos: 113.5,15.5 @@ -83250,8 +69549,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27300 components: - pos: 113.5,14.5 @@ -83259,43 +69556,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27301 components: - pos: 113.5,13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27302 components: - pos: 113.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27303 components: - pos: 113.5,11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27304 components: - pos: 113.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27305 components: - pos: 113.5,9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27306 components: - pos: 98.5,11.5 @@ -83303,8 +69588,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27307 components: - pos: 98.5,12.5 @@ -83312,8 +69595,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27308 components: - pos: 98.5,13.5 @@ -83321,8 +69602,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27309 components: - pos: 98.5,14.5 @@ -83330,8 +69609,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27310 components: - pos: 97.5,14.5 @@ -83339,8 +69616,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27311 components: - pos: 96.5,14.5 @@ -83348,337 +69623,241 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27312 components: - pos: 95.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27313 components: - pos: 94.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27314 components: - pos: 93.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27315 components: - pos: 92.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27316 components: - pos: 91.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27317 components: - pos: 90.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27318 components: - pos: 89.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27319 components: - pos: 88.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27320 components: - pos: 87.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27321 components: - pos: 86.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27322 components: - pos: 85.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27323 components: - pos: 84.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27324 components: - pos: 83.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27325 components: - pos: 82.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27326 components: - pos: 81.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27327 components: - pos: 80.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27328 components: - pos: 79.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27329 components: - pos: 78.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27330 components: - pos: 77.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27331 components: - pos: 76.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27332 components: - pos: 75.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27333 components: - pos: 74.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27334 components: - pos: 73.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27335 components: - pos: 72.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27336 components: - pos: 71.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27337 components: - pos: 70.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27338 components: - pos: 69.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27339 components: - pos: 68.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27340 components: - pos: 67.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27341 components: - pos: 66.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27342 components: - pos: 65.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27343 components: - pos: 64.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27344 components: - pos: 64.5,13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27345 components: - pos: 64.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27346 components: - pos: 64.5,11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27347 components: - pos: 82.5,15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27348 components: - pos: 82.5,16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27349 components: - pos: 82.5,17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27350 components: - pos: 82.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27351 components: - pos: 82.5,19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27352 components: - pos: 82.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27353 components: - pos: 82.5,21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27354 components: - pos: 82.5,22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27355 components: - pos: 82.5,23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27356 components: - pos: 82.5,24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27357 components: - pos: 82.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27358 components: - pos: 82.5,26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27370 components: - pos: 107.5,9.5 @@ -83686,8 +69865,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27371 components: - pos: 107.5,10.5 @@ -83695,8 +69872,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27372 components: - pos: 107.5,11.5 @@ -83704,8 +69879,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27373 components: - pos: 107.5,12.5 @@ -83713,8 +69886,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27519 components: - pos: 118.5,-15.5 @@ -83722,8 +69893,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27521 components: - pos: 118.5,-16.5 @@ -83731,8 +69900,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27522 components: - pos: 118.5,-18.5 @@ -83740,106 +69907,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27526 components: - pos: 91.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27527 components: - pos: 92.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27528 components: - pos: 93.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27529 components: - pos: 94.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27530 components: - pos: 95.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27531 components: - pos: 96.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27532 components: - pos: 97.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27533 components: - pos: 98.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27534 components: - pos: 99.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27535 components: - pos: 99.5,30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27536 components: - pos: 99.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27537 components: - pos: 100.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27583 components: - pos: 87.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27584 components: - pos: 87.5,36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27585 components: - pos: 87.5,37.5 @@ -83847,8 +69984,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27586 components: - pos: 94.5,36.5 @@ -83856,8 +69991,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27587 components: - pos: 88.5,31.5 @@ -83865,8 +69998,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27588 components: - pos: 86.5,31.5 @@ -83874,15 +70005,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27589 components: - pos: 88.5,30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27590 components: - pos: 89.5,30.5 @@ -83890,8 +70017,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28276 components: - pos: 71.5,22.5 @@ -83899,8 +70024,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28277 components: - pos: 72.5,22.5 @@ -83908,8 +70031,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28278 components: - pos: 73.5,22.5 @@ -83917,8 +70038,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28279 components: - pos: 74.5,22.5 @@ -83926,8 +70045,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28280 components: - pos: 74.5,23.5 @@ -83935,29 +70052,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28281 components: - pos: 74.5,15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28282 components: - pos: 74.5,16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28283 components: - pos: 74.5,17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28284 components: - pos: 74.5,18.5 @@ -83965,8 +70074,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28285 components: - pos: 74.5,19.5 @@ -83974,15 +70081,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28286 components: - pos: 74.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28287 components: - pos: 74.5,21.5 @@ -83990,15 +70093,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29374 components: - pos: 82.5,13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29880 components: - pos: 110.5,35.5 @@ -84006,8 +70105,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29881 components: - pos: 111.5,35.5 @@ -84015,8 +70112,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29882 components: - pos: 112.5,35.5 @@ -84024,8 +70119,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29883 components: - pos: 112.5,36.5 @@ -84033,8 +70126,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29884 components: - pos: 112.5,37.5 @@ -84042,8 +70133,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29885 components: - pos: 112.5,38.5 @@ -84051,15 +70140,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29886 components: - pos: 112.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29887 components: - pos: 112.5,40.5 @@ -84067,8 +70152,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29888 components: - pos: 112.5,41.5 @@ -84076,148 +70159,106 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29889 components: - pos: 112.5,42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29890 components: - pos: 113.5,42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29893 components: - pos: 113.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30226 components: - pos: 113.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30227 components: - pos: 112.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30228 components: - pos: 111.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30229 components: - pos: 110.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30255 components: - pos: 54.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30256 components: - pos: 54.5,34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30257 components: - pos: 54.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30258 components: - pos: 54.5,36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30259 components: - pos: 54.5,37.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30260 components: - pos: 54.5,38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30261 components: - pos: 54.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30262 components: - pos: 54.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30263 components: - pos: 54.5,41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30264 components: - pos: 54.5,42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30265 components: - pos: 54.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30266 components: - pos: 55.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30267 components: - pos: 55.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30268 components: - pos: 55.5,45.5 @@ -84225,8 +70266,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30269 components: - pos: 55.5,46.5 @@ -84234,8 +70273,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30270 components: - pos: 55.5,47.5 @@ -84243,8 +70280,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30271 components: - pos: 55.5,48.5 @@ -84252,8 +70287,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30272 components: - pos: 55.5,49.5 @@ -84261,8 +70294,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30273 components: - pos: 55.5,50.5 @@ -84270,8 +70301,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30274 components: - pos: 56.5,50.5 @@ -84279,8 +70308,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30275 components: - pos: 57.5,50.5 @@ -84288,8 +70315,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30276 components: - pos: 57.5,51.5 @@ -84297,8 +70322,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30277 components: - pos: 54.5,46.5 @@ -84306,8 +70329,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30278 components: - pos: 53.5,46.5 @@ -84315,8 +70336,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30279 components: - pos: 52.5,46.5 @@ -84324,8 +70343,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30280 components: - pos: 51.5,46.5 @@ -84333,8 +70350,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30281 components: - pos: 50.5,46.5 @@ -84342,8 +70357,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30282 components: - pos: 49.5,46.5 @@ -84351,8 +70364,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30283 components: - pos: 48.5,46.5 @@ -84360,8 +70371,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30284 components: - pos: 47.5,46.5 @@ -84369,8 +70378,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30285 components: - pos: 46.5,46.5 @@ -84378,8 +70385,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30286 components: - pos: 45.5,46.5 @@ -84387,8 +70392,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30287 components: - pos: 44.5,46.5 @@ -84396,8 +70399,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30288 components: - pos: 43.5,46.5 @@ -84405,8 +70406,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30289 components: - pos: 42.5,46.5 @@ -84414,8 +70413,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30290 components: - pos: 41.5,46.5 @@ -84423,8 +70420,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30291 components: - pos: 40.5,46.5 @@ -84432,8 +70427,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30292 components: - pos: 39.5,46.5 @@ -84441,344 +70434,246 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30321 components: - pos: 82.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30322 components: - pos: 82.5,34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30323 components: - pos: 82.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30324 components: - pos: 82.5,36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30325 components: - pos: 82.5,37.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30326 components: - pos: 82.5,38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30327 components: - pos: 83.5,38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30328 components: - pos: 84.5,38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30329 components: - pos: 85.5,38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30330 components: - pos: 86.5,38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30331 components: - pos: 87.5,38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30332 components: - pos: 88.5,38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30333 components: - pos: 89.5,38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30334 components: - pos: 89.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30335 components: - pos: 89.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30336 components: - pos: 89.5,41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30337 components: - pos: 89.5,42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30338 components: - pos: 89.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30339 components: - pos: 89.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30340 components: - pos: 89.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30341 components: - pos: 89.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30342 components: - pos: 89.5,47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30343 components: - pos: 89.5,48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30344 components: - pos: 89.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30345 components: - pos: 90.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30346 components: - pos: 91.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30347 components: - pos: 89.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30348 components: - pos: 89.5,51.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30349 components: - pos: 89.5,52.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30350 components: - pos: 89.5,53.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30351 components: - pos: 89.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30352 components: - pos: 89.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30353 components: - pos: 88.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30354 components: - pos: 87.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30355 components: - pos: 86.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30356 components: - pos: 85.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30357 components: - pos: 84.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30358 components: - pos: 83.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30359 components: - pos: 82.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30360 components: - pos: 81.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30361 components: - pos: 80.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30362 components: - pos: 79.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30363 components: - pos: 78.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30364 components: - pos: 77.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30365 components: - pos: 76.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30366 components: - pos: 75.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30367 components: - pos: 74.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30368 components: - pos: 73.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30369 components: - pos: 55.5,51.5 @@ -84786,29 +70681,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30370 components: - pos: 55.5,52.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30371 components: - pos: 55.5,53.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30372 components: - pos: 55.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30373 components: - pos: 55.5,55.5 @@ -84816,15 +70703,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30374 components: - pos: 55.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30375 components: - pos: 56.5,56.5 @@ -84832,211 +70715,151 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30376 components: - pos: 57.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30377 components: - pos: 58.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30378 components: - pos: 59.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30379 components: - pos: 60.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30380 components: - pos: 61.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30381 components: - pos: 62.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30382 components: - pos: 63.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30383 components: - pos: 64.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30384 components: - pos: 65.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30385 components: - pos: 66.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30386 components: - pos: 67.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30387 components: - pos: 68.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30388 components: - pos: 69.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30389 components: - pos: 70.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30390 components: - pos: 71.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30391 components: - pos: 72.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30392 components: - pos: 73.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31428 components: - pos: 73.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31429 components: - pos: 73.5,53.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31430 components: - pos: 73.5,52.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31431 components: - pos: 73.5,51.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31432 components: - pos: 73.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31433 components: - pos: 73.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31434 components: - pos: 73.5,48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31435 components: - pos: 73.5,47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31436 components: - pos: 72.5,47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31437 components: - pos: 71.5,47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31439 components: - pos: 70.5,47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31440 components: - pos: 70.5,48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31907 components: - pos: -34.5,-2.5 @@ -85044,8 +70867,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31908 components: - pos: -33.5,-2.5 @@ -85053,8 +70874,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31909 components: - pos: -32.5,-2.5 @@ -85062,8 +70881,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31910 components: - pos: -31.5,-2.5 @@ -85071,8 +70888,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31911 components: - pos: -30.5,-2.5 @@ -85080,8 +70895,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31912 components: - pos: -29.5,-2.5 @@ -85089,8 +70902,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31913 components: - pos: -28.5,-2.5 @@ -85098,8 +70909,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31914 components: - pos: -27.5,-2.5 @@ -85107,8 +70916,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31915 components: - pos: -26.5,-2.5 @@ -85116,8 +70923,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31916 components: - pos: -25.5,-2.5 @@ -85125,8 +70930,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31917 components: - pos: -24.5,-2.5 @@ -85134,8 +70937,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31918 components: - pos: -23.5,-2.5 @@ -85143,8 +70944,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31919 components: - pos: -22.5,-2.5 @@ -85152,22 +70951,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31920 components: - pos: -22.5,-3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31921 components: - pos: -22.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31922 components: - pos: -24.5,-1.5 @@ -85175,8 +70968,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31923 components: - pos: -24.5,-0.5 @@ -85184,8 +70975,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31924 components: - pos: -24.5,0.5 @@ -85193,8 +70982,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31925 components: - pos: -24.5,1.5 @@ -85202,8 +70989,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31926 components: - pos: -24.5,2.5 @@ -85211,8 +70996,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31927 components: - pos: -24.5,3.5 @@ -85220,8 +71003,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31928 components: - pos: -24.5,4.5 @@ -85229,8 +71010,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31929 components: - pos: -24.5,5.5 @@ -85238,8 +71017,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31930 components: - pos: -23.5,5.5 @@ -85247,8 +71024,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31931 components: - pos: -22.5,5.5 @@ -85256,8 +71031,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32077 components: - pos: -34.5,1.5 @@ -85265,8 +71038,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32078 components: - pos: -34.5,2.5 @@ -85274,8 +71045,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32079 components: - pos: -34.5,3.5 @@ -85283,8 +71052,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32080 components: - pos: -34.5,4.5 @@ -85292,22 +71059,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32081 components: - pos: -34.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32082 components: - pos: -34.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32083 components: - pos: -34.5,7.5 @@ -85315,8 +71076,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32084 components: - pos: -34.5,8.5 @@ -85324,22 +71083,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32085 components: - pos: -34.5,9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32086 components: - pos: -34.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32087 components: - pos: -34.5,11.5 @@ -85347,8 +71100,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32088 components: - pos: -34.5,12.5 @@ -85356,8 +71107,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32089 components: - pos: -33.5,12.5 @@ -85365,36 +71114,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32090 components: - pos: -32.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32091 components: - pos: -31.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32092 components: - pos: -30.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32093 components: - pos: -29.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32094 components: - pos: -28.5,12.5 @@ -85402,8 +71141,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32095 components: - pos: -27.5,12.5 @@ -85411,8 +71148,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32096 components: - pos: -26.5,12.5 @@ -85420,22 +71155,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32097 components: - pos: -25.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32258 components: - pos: -31.5,62.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32821 components: - pos: 28.5,66.5 @@ -85443,8 +71172,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32822 components: - pos: 29.5,66.5 @@ -85452,8 +71179,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32823 components: - pos: 30.5,66.5 @@ -85461,8 +71186,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32824 components: - pos: 31.5,66.5 @@ -85470,8 +71193,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32971 components: - pos: 50.5,75.5 @@ -85479,8 +71200,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32972 components: - pos: 49.5,75.5 @@ -85488,8 +71207,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32973 components: - pos: 48.5,75.5 @@ -85497,8 +71214,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32974 components: - pos: 47.5,75.5 @@ -85506,8 +71221,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32975 components: - pos: 46.5,75.5 @@ -85515,8 +71228,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32976 components: - pos: 45.5,75.5 @@ -85524,8 +71235,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32977 components: - pos: 44.5,75.5 @@ -85533,8 +71242,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32978 components: - pos: 43.5,75.5 @@ -85542,8 +71249,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32979 components: - pos: 42.5,75.5 @@ -85551,8 +71256,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32980 components: - pos: 42.5,77.5 @@ -85560,8 +71263,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32981 components: - pos: 43.5,77.5 @@ -85569,8 +71270,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32982 components: - pos: 44.5,77.5 @@ -85578,8 +71277,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32983 components: - pos: 45.5,77.5 @@ -85587,8 +71284,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32984 components: - pos: 46.5,77.5 @@ -85596,8 +71291,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32985 components: - pos: 47.5,77.5 @@ -85605,8 +71298,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32986 components: - pos: 48.5,77.5 @@ -85614,8 +71305,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32987 components: - pos: 49.5,77.5 @@ -85623,8 +71312,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32988 components: - pos: 50.5,77.5 @@ -85632,8 +71319,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32989 components: - pos: 50.5,79.5 @@ -85641,8 +71326,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32990 components: - pos: 49.5,79.5 @@ -85650,8 +71333,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32991 components: - pos: 48.5,79.5 @@ -85659,8 +71340,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32992 components: - pos: 47.5,79.5 @@ -85668,8 +71347,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32993 components: - pos: 46.5,79.5 @@ -85677,8 +71354,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32994 components: - pos: 45.5,79.5 @@ -85686,8 +71361,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32995 components: - pos: 44.5,79.5 @@ -85695,8 +71368,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32996 components: - pos: 43.5,79.5 @@ -85704,8 +71375,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32997 components: - pos: 42.5,79.5 @@ -85713,8 +71382,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32998 components: - pos: 42.5,81.5 @@ -85722,8 +71389,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32999 components: - pos: 43.5,81.5 @@ -85731,8 +71396,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33000 components: - pos: 44.5,81.5 @@ -85740,8 +71403,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33001 components: - pos: 45.5,81.5 @@ -85749,8 +71410,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33002 components: - pos: 46.5,81.5 @@ -85758,8 +71417,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33003 components: - pos: 47.5,81.5 @@ -85767,8 +71424,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33004 components: - pos: 48.5,81.5 @@ -85776,8 +71431,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33005 components: - pos: 49.5,81.5 @@ -85785,8 +71438,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33006 components: - pos: 50.5,81.5 @@ -85794,8 +71445,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33007 components: - pos: 50.5,83.5 @@ -85803,8 +71452,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33008 components: - pos: 49.5,83.5 @@ -85812,8 +71459,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33009 components: - pos: 48.5,83.5 @@ -85821,8 +71466,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33010 components: - pos: 47.5,83.5 @@ -85830,8 +71473,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33011 components: - pos: 46.5,83.5 @@ -85839,8 +71480,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33012 components: - pos: 45.5,83.5 @@ -85848,8 +71487,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33013 components: - pos: 44.5,83.5 @@ -85857,8 +71494,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33014 components: - pos: 43.5,83.5 @@ -85866,8 +71501,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33015 components: - pos: 42.5,83.5 @@ -85875,8 +71508,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33016 components: - pos: 42.5,85.5 @@ -85884,8 +71515,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33017 components: - pos: 43.5,85.5 @@ -85893,8 +71522,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33018 components: - pos: 44.5,85.5 @@ -85902,8 +71529,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33019 components: - pos: 45.5,85.5 @@ -85911,8 +71536,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33020 components: - pos: 46.5,85.5 @@ -85920,8 +71543,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33021 components: - pos: 47.5,85.5 @@ -85929,8 +71550,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33022 components: - pos: 48.5,85.5 @@ -85938,8 +71557,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33023 components: - pos: 49.5,85.5 @@ -85947,8 +71564,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33024 components: - pos: 50.5,85.5 @@ -85956,8 +71571,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33025 components: - pos: 54.5,85.5 @@ -85965,8 +71578,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33026 components: - pos: 55.5,85.5 @@ -85974,8 +71585,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33027 components: - pos: 56.5,85.5 @@ -85983,8 +71592,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33028 components: - pos: 57.5,85.5 @@ -85992,8 +71599,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33029 components: - pos: 58.5,85.5 @@ -86001,8 +71606,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33030 components: - pos: 59.5,85.5 @@ -86010,8 +71613,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33031 components: - pos: 60.5,85.5 @@ -86019,8 +71620,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33032 components: - pos: 61.5,85.5 @@ -86028,8 +71627,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33033 components: - pos: 62.5,85.5 @@ -86037,8 +71634,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33034 components: - pos: 62.5,83.5 @@ -86046,8 +71641,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33035 components: - pos: 61.5,83.5 @@ -86055,8 +71648,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33036 components: - pos: 60.5,83.5 @@ -86064,8 +71655,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33037 components: - pos: 59.5,83.5 @@ -86073,8 +71662,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33038 components: - pos: 58.5,83.5 @@ -86082,8 +71669,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33039 components: - pos: 57.5,83.5 @@ -86091,8 +71676,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33040 components: - pos: 56.5,83.5 @@ -86100,8 +71683,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33041 components: - pos: 55.5,83.5 @@ -86109,8 +71690,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33042 components: - pos: 54.5,83.5 @@ -86118,8 +71697,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33043 components: - pos: 54.5,81.5 @@ -86127,8 +71704,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33044 components: - pos: 55.5,81.5 @@ -86136,8 +71711,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33045 components: - pos: 56.5,81.5 @@ -86145,8 +71718,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33046 components: - pos: 57.5,81.5 @@ -86154,8 +71725,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33047 components: - pos: 58.5,81.5 @@ -86163,8 +71732,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33048 components: - pos: 59.5,81.5 @@ -86172,8 +71739,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33049 components: - pos: 60.5,81.5 @@ -86181,8 +71746,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33050 components: - pos: 61.5,81.5 @@ -86190,8 +71753,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33051 components: - pos: 62.5,81.5 @@ -86199,8 +71760,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33052 components: - pos: 62.5,79.5 @@ -86208,8 +71767,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33053 components: - pos: 61.5,79.5 @@ -86217,8 +71774,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33054 components: - pos: 60.5,79.5 @@ -86226,8 +71781,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33055 components: - pos: 59.5,79.5 @@ -86235,8 +71788,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33056 components: - pos: 58.5,79.5 @@ -86244,8 +71795,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33057 components: - pos: 57.5,79.5 @@ -86253,8 +71802,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33058 components: - pos: 56.5,79.5 @@ -86262,8 +71809,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33059 components: - pos: 55.5,79.5 @@ -86271,8 +71816,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33060 components: - pos: 54.5,79.5 @@ -86280,8 +71823,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33061 components: - pos: 62.5,77.5 @@ -86289,8 +71830,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33062 components: - pos: 61.5,77.5 @@ -86298,8 +71837,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33063 components: - pos: 60.5,77.5 @@ -86307,8 +71844,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33064 components: - pos: 59.5,77.5 @@ -86316,8 +71851,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33065 components: - pos: 58.5,77.5 @@ -86325,8 +71858,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33066 components: - pos: 57.5,77.5 @@ -86334,8 +71865,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33067 components: - pos: 56.5,77.5 @@ -86343,8 +71872,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33068 components: - pos: 55.5,77.5 @@ -86352,8 +71879,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33069 components: - pos: 54.5,77.5 @@ -86361,8 +71886,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33070 components: - pos: 62.5,75.5 @@ -86370,8 +71893,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33071 components: - pos: 61.5,75.5 @@ -86379,8 +71900,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33072 components: - pos: 60.5,75.5 @@ -86388,8 +71907,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33073 components: - pos: 59.5,75.5 @@ -86397,8 +71914,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33074 components: - pos: 58.5,75.5 @@ -86406,8 +71921,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33075 components: - pos: 57.5,75.5 @@ -86415,8 +71928,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33076 components: - pos: 56.5,75.5 @@ -86424,8 +71935,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33077 components: - pos: 55.5,75.5 @@ -86433,8 +71942,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33078 components: - pos: 54.5,75.5 @@ -86442,8 +71949,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33079 components: - pos: 54.5,76.5 @@ -86451,8 +71956,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33080 components: - pos: 53.5,76.5 @@ -86460,8 +71963,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33081 components: - pos: 51.5,76.5 @@ -86469,8 +71970,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33082 components: - pos: 50.5,76.5 @@ -86478,8 +71977,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33083 components: - pos: 50.5,80.5 @@ -86487,8 +71984,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33084 components: - pos: 51.5,80.5 @@ -86496,8 +71991,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33085 components: - pos: 53.5,80.5 @@ -86505,8 +71998,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33086 components: - pos: 54.5,80.5 @@ -86514,8 +72005,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33087 components: - pos: 54.5,84.5 @@ -86523,8 +72012,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33088 components: - pos: 53.5,84.5 @@ -86532,8 +72019,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33089 components: - pos: 50.5,84.5 @@ -86541,8 +72026,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33090 components: - pos: 51.5,84.5 @@ -86550,8 +72033,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33091 components: - pos: 52.5,87.5 @@ -86559,15 +72040,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33092 components: - pos: 52.5,88.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 33093 components: - pos: 52.5,86.5 @@ -86575,8 +72052,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33203 components: - pos: 52.5,74.5 @@ -86584,8 +72059,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33204 components: - pos: 52.5,73.5 @@ -86593,8 +72066,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33205 components: - pos: 52.5,72.5 @@ -86602,8 +72073,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33206 components: - pos: 52.5,71.5 @@ -86611,8 +72080,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33207 components: - pos: 52.5,70.5 @@ -86620,8 +72087,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33208 components: - pos: 52.5,69.5 @@ -86629,8 +72094,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33209 components: - pos: 52.5,68.5 @@ -86638,8 +72101,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33210 components: - pos: 51.5,68.5 @@ -86647,8 +72108,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33211 components: - pos: 51.5,67.5 @@ -86656,8 +72115,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33212 components: - pos: 51.5,66.5 @@ -86665,8 +72122,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33213 components: - pos: 52.5,66.5 @@ -86674,8 +72129,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33214 components: - pos: 52.5,65.5 @@ -86683,8 +72136,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33215 components: - pos: 52.5,64.5 @@ -86692,8 +72143,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33216 components: - pos: 55.5,57.5 @@ -86701,22 +72150,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33217 components: - pos: 55.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 33218 components: - pos: 55.5,59.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 33219 components: - pos: 55.5,60.5 @@ -86724,15 +72167,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33220 components: - pos: 55.5,61.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 33221 components: - pos: 55.5,62.5 @@ -86740,15 +72179,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33222 components: - pos: 55.5,63.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 33223 components: - pos: 54.5,63.5 @@ -86756,15 +72191,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33224 components: - pos: 53.5,63.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 33225 components: - pos: 52.5,63.5 @@ -86772,8 +72203,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 35304 components: - pos: 98.5,1.5 @@ -86781,8 +72210,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 35315 components: - pos: 106.5,-13.5 @@ -86790,8 +72217,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 35316 components: - pos: 105.5,-13.5 @@ -86799,8 +72224,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 35317 components: - pos: 104.5,-13.5 @@ -86808,8 +72231,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 35318 components: - pos: 103.5,-13.5 @@ -86817,8 +72238,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 35319 components: - pos: 102.5,-13.5 @@ -86826,8 +72245,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 35320 components: - pos: 101.5,-13.5 @@ -86835,8 +72252,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 35321 components: - pos: 100.5,-13.5 @@ -86844,8 +72259,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 35322 components: - pos: 100.5,-12.5 @@ -86853,8 +72266,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 35323 components: - pos: 100.5,-11.5 @@ -86862,8 +72273,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 35324 components: - pos: 100.5,-10.5 @@ -86871,8 +72280,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 35325 components: - pos: 100.5,-9.5 @@ -86880,8 +72287,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 35326 components: - pos: 100.5,-8.5 @@ -86889,8 +72294,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 35327 components: - pos: 100.5,-7.5 @@ -86898,8 +72301,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 35328 components: - pos: 100.5,-6.5 @@ -86907,8 +72308,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 35329 components: - pos: 100.5,-5.5 @@ -86916,8 +72315,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 35330 components: - pos: 100.5,-4.5 @@ -86925,8 +72322,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 35331 components: - pos: 100.5,-3.5 @@ -86934,8 +72329,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 35332 components: - pos: 100.5,-2.5 @@ -86943,8 +72336,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 35333 components: - pos: 100.5,-1.5 @@ -86952,8 +72343,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - proto: CableHVStack entities: - uid: 26657 @@ -86975,15 +72364,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 670 components: - pos: -14.5,26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 835 components: - pos: -20.5,23.5 @@ -86991,43 +72376,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 836 components: - pos: -20.5,22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 837 components: - pos: -20.5,21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 838 components: - pos: -20.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 839 components: - pos: -21.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 840 components: - pos: -22.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 841 components: - pos: -23.5,20.5 @@ -87035,8 +72408,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 842 components: - pos: -11.5,11.5 @@ -87044,57 +72415,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 843 components: - pos: -11.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 844 components: - pos: -11.5,9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 845 components: - pos: -12.5,9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 846 components: - pos: -13.5,9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 847 components: - pos: -14.5,9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 848 components: - pos: -14.5,8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 849 components: - pos: -14.5,7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 850 components: - pos: -14.5,6.5 @@ -87102,8 +72457,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 851 components: - pos: -10.5,23.5 @@ -87111,127 +72464,91 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 852 components: - pos: -10.5,24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 853 components: - pos: -10.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 854 components: - pos: -11.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 855 components: - pos: -12.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 856 components: - pos: -13.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 857 components: - pos: -14.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 858 components: - pos: -15.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 861 components: - pos: -10.5,26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 862 components: - pos: -9.5,26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 863 components: - pos: -8.5,26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 864 components: - pos: -8.5,27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 865 components: - pos: -8.5,28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 866 components: - pos: -8.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 867 components: - pos: -8.5,30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 868 components: - pos: -8.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 869 components: - pos: -7.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 870 components: - pos: -6.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 871 components: - pos: -6.5,30.5 @@ -87239,22 +72556,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 872 components: - pos: -5.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 873 components: - pos: -4.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 874 components: - pos: -4.5,30.5 @@ -87262,15 +72573,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 875 components: - pos: -4.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 876 components: - pos: -4.5,33.5 @@ -87278,78 +72585,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 877 components: - pos: -8.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 878 components: - pos: -9.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 879 components: - pos: -10.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 880 components: - pos: -11.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 881 components: - pos: -12.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 882 components: - pos: -13.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 883 components: - pos: -14.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 884 components: - pos: -15.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 885 components: - pos: -16.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 886 components: - pos: -17.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 887 components: - pos: -18.5,32.5 @@ -87357,8 +72642,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 888 components: - pos: -19.5,32.5 @@ -87366,8 +72649,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1898 components: - pos: -14.5,5.5 @@ -87375,8 +72656,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1899 components: - pos: -13.5,5.5 @@ -87384,8 +72663,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1900 components: - pos: -12.5,5.5 @@ -87393,8 +72670,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1901 components: - pos: -11.5,5.5 @@ -87402,8 +72677,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1902 components: - pos: -10.5,5.5 @@ -87411,8 +72684,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1903 components: - pos: -9.5,5.5 @@ -87420,64 +72691,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1904 components: - pos: -8.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1905 components: - pos: -7.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1906 components: - pos: -6.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1907 components: - pos: -5.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1908 components: - pos: -4.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1909 components: - pos: -3.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1910 components: - pos: -2.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1911 components: - pos: -2.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1912 components: - pos: -2.5,7.5 @@ -87485,8 +72738,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1992 components: - pos: -15.5,1.5 @@ -87494,36 +72745,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1993 components: - pos: -15.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1994 components: - pos: -16.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1995 components: - pos: -17.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1996 components: - pos: -17.5,1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 1997 components: - pos: -17.5,2.5 @@ -87531,8 +72772,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1998 components: - pos: -17.5,3.5 @@ -87540,8 +72779,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1999 components: - pos: -17.5,4.5 @@ -87549,8 +72786,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2000 components: - pos: -17.5,5.5 @@ -87558,8 +72793,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2001 components: - pos: -16.5,5.5 @@ -87567,8 +72800,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2002 components: - pos: -15.5,5.5 @@ -87576,8 +72807,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2003 components: - pos: -12.5,1.5 @@ -87585,36 +72814,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2004 components: - pos: -11.5,1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2005 components: - pos: -10.5,1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2006 components: - pos: -10.5,2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2007 components: - pos: -10.5,3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2008 components: - pos: -10.5,4.5 @@ -87622,8 +72841,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2338 components: - pos: -21.5,1.5 @@ -87631,8 +72848,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2339 components: - pos: -21.5,2.5 @@ -87640,8 +72855,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2340 components: - pos: -21.5,3.5 @@ -87649,8 +72862,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2341 components: - pos: -21.5,4.5 @@ -87658,8 +72869,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2342 components: - pos: -21.5,5.5 @@ -87667,8 +72876,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2343 components: - pos: -20.5,5.5 @@ -87676,8 +72883,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2344 components: - pos: -19.5,5.5 @@ -87685,8 +72890,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2345 components: - pos: -18.5,5.5 @@ -87694,8 +72897,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2380 components: - pos: -23.5,35.5 @@ -87703,8 +72904,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2381 components: - pos: -23.5,34.5 @@ -87712,8 +72911,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2382 components: - pos: -22.5,34.5 @@ -87721,8 +72918,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2383 components: - pos: -21.5,34.5 @@ -87730,8 +72925,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2384 components: - pos: -20.5,34.5 @@ -87739,8 +72932,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2385 components: - pos: -19.5,34.5 @@ -87748,8 +72939,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2386 components: - pos: -19.5,33.5 @@ -87757,22 +72946,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2387 components: - pos: -23.5,21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2388 components: - pos: -23.5,22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2389 components: - pos: -23.5,23.5 @@ -87780,8 +72963,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2390 components: - pos: -23.5,24.5 @@ -87789,8 +72970,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2391 components: - pos: -22.5,24.5 @@ -87798,8 +72977,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2392 components: - pos: -21.5,24.5 @@ -87807,8 +72984,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2393 components: - pos: -21.5,25.5 @@ -87816,8 +72991,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2394 components: - pos: -21.5,26.5 @@ -87825,8 +72998,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2395 components: - pos: -21.5,27.5 @@ -87834,8 +73005,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2396 components: - pos: -21.5,28.5 @@ -87843,8 +73012,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2397 components: - pos: -20.5,28.5 @@ -87852,8 +73019,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2398 components: - pos: -19.5,28.5 @@ -87861,8 +73026,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2399 components: - pos: -19.5,29.5 @@ -87870,8 +73033,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2400 components: - pos: -19.5,30.5 @@ -87879,8 +73040,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2401 components: - pos: -19.5,31.5 @@ -87888,36 +73047,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2402 components: - pos: -16.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2403 components: - pos: -18.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2404 components: - pos: -17.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2405 components: - pos: -18.5,24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2406 components: - pos: -18.5,23.5 @@ -87925,71 +73074,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2407 components: - pos: -18.5,22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2408 components: - pos: -19.5,22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2409 components: - pos: -16.5,26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2410 components: - pos: -16.5,27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2411 components: - pos: -16.5,28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2412 components: - pos: -16.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2413 components: - pos: -16.5,30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2414 components: - pos: -17.5,30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2415 components: - pos: -18.5,30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2473 components: - pos: -12.5,-16.5 @@ -87997,8 +73126,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2474 components: - pos: -12.5,-15.5 @@ -88006,8 +73133,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2475 components: - pos: -12.5,-14.5 @@ -88015,8 +73140,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2476 components: - pos: -12.5,-13.5 @@ -88024,8 +73147,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2477 components: - pos: -12.5,-12.5 @@ -88033,8 +73154,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2478 components: - pos: -11.5,-12.5 @@ -88042,8 +73161,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2479 components: - pos: -10.5,-12.5 @@ -88051,8 +73168,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2480 components: - pos: -9.5,-12.5 @@ -88060,8 +73175,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2481 components: - pos: -8.5,-12.5 @@ -88069,8 +73182,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2482 components: - pos: -8.5,-11.5 @@ -88078,8 +73189,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2483 components: - pos: -13.5,-12.5 @@ -88087,8 +73196,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2484 components: - pos: -14.5,-12.5 @@ -88096,8 +73203,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2485 components: - pos: -15.5,-12.5 @@ -88105,8 +73210,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2486 components: - pos: -15.5,-13.5 @@ -88114,8 +73217,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2487 components: - pos: -16.5,-13.5 @@ -88123,8 +73224,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2488 components: - pos: -17.5,-13.5 @@ -88132,8 +73231,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2489 components: - pos: -18.5,-13.5 @@ -88141,43 +73238,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2490 components: - pos: -18.5,-12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2491 components: - pos: -18.5,-11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2492 components: - pos: -18.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2493 components: - pos: -18.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2494 components: - pos: -17.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 2495 components: - pos: -16.5,-9.5 @@ -88185,8 +73270,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4166 components: - pos: -27.5,22.5 @@ -88194,8 +73277,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4167 components: - pos: -27.5,23.5 @@ -88203,8 +73284,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4168 components: - pos: -27.5,24.5 @@ -88212,8 +73291,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4169 components: - pos: -27.5,25.5 @@ -88221,8 +73298,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4170 components: - pos: -28.5,25.5 @@ -88230,8 +73305,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4171 components: - pos: -29.5,25.5 @@ -88239,8 +73312,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4172 components: - pos: -30.5,25.5 @@ -88248,36 +73319,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4173 components: - pos: -31.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4174 components: - pos: -32.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4175 components: - pos: -32.5,26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4176 components: - pos: -32.5,27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4177 components: - pos: -32.5,28.5 @@ -88285,8 +73346,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4178 components: - pos: -30.5,26.5 @@ -88294,8 +73353,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4179 components: - pos: -30.5,27.5 @@ -88303,8 +73360,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4180 components: - pos: -30.5,28.5 @@ -88312,78 +73367,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4181 components: - pos: -30.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4182 components: - pos: -30.5,30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4183 components: - pos: -29.5,30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4184 components: - pos: -27.5,30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4185 components: - pos: -28.5,30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4186 components: - pos: -27.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4187 components: - pos: -27.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4189 components: - pos: -27.5,34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4190 components: - pos: -27.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4191 components: - pos: -27.5,36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4192 components: - pos: -26.5,36.5 @@ -88391,43 +73424,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4387 components: - pos: -27.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4471 components: - pos: -27.5,37.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4472 components: - pos: -27.5,38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4473 components: - pos: -27.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4474 components: - pos: -27.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4475 components: - pos: -27.5,41.5 @@ -88435,8 +73456,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4476 components: - pos: -26.5,41.5 @@ -88444,8 +73463,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4488 components: - pos: -26.5,38.5 @@ -88453,8 +73470,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4489 components: - pos: -26.5,39.5 @@ -88462,8 +73477,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4490 components: - pos: -26.5,40.5 @@ -88471,78 +73484,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4619 components: - pos: -28.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4620 components: - pos: -29.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4621 components: - pos: -30.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4622 components: - pos: -31.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4623 components: - pos: -32.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4624 components: - pos: -33.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4625 components: - pos: -34.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4626 components: - pos: -35.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4627 components: - pos: -36.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4628 components: - pos: -36.5,41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4629 components: - pos: -35.5,41.5 @@ -88550,8 +73541,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4630 components: - pos: -37.5,41.5 @@ -88559,71 +73548,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4631 components: - pos: -36.5,42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4632 components: - pos: -36.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4633 components: - pos: -36.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4634 components: - pos: -36.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4635 components: - pos: -36.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4636 components: - pos: -36.5,47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4637 components: - pos: -36.5,48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4638 components: - pos: -36.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4639 components: - pos: -36.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4640 components: - pos: -36.5,51.5 @@ -88631,15 +73600,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4641 components: - pos: -35.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4642 components: - pos: -34.5,43.5 @@ -88647,8 +73612,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4643 components: - pos: -34.5,42.5 @@ -88656,8 +73619,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4644 components: - pos: -34.5,44.5 @@ -88665,22 +73626,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4645 components: - pos: -35.5,48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4646 components: - pos: -34.5,48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 4647 components: - pos: -34.5,49.5 @@ -88688,8 +73643,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4648 components: - pos: -34.5,47.5 @@ -88697,8 +73650,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6069 components: - pos: -30.5,60.5 @@ -88706,8 +73657,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6070 components: - pos: -30.5,61.5 @@ -88715,8 +73664,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6071 components: - pos: -30.5,62.5 @@ -88724,8 +73671,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6072 components: - pos: -30.5,63.5 @@ -88733,8 +73678,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6073 components: - pos: -30.5,64.5 @@ -88742,8 +73685,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6074 components: - pos: -31.5,64.5 @@ -88751,8 +73692,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6075 components: - pos: -32.5,64.5 @@ -88760,8 +73699,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6076 components: - pos: -33.5,64.5 @@ -88769,8 +73706,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6077 components: - pos: -33.5,63.5 @@ -88778,8 +73713,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6078 components: - pos: -33.5,62.5 @@ -88787,8 +73720,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6079 components: - pos: -33.5,61.5 @@ -88796,8 +73727,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6080 components: - pos: -33.5,60.5 @@ -88805,15 +73734,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6081 components: - pos: -33.5,59.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6082 components: - pos: -34.5,59.5 @@ -88821,8 +73746,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6083 components: - pos: -29.5,64.5 @@ -88830,8 +73753,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6084 components: - pos: -28.5,64.5 @@ -88839,8 +73760,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6085 components: - pos: -27.5,64.5 @@ -88848,8 +73767,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6086 components: - pos: -27.5,63.5 @@ -88857,8 +73774,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6087 components: - pos: -27.5,62.5 @@ -88866,8 +73781,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6088 components: - pos: -27.5,61.5 @@ -88875,8 +73788,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6089 components: - pos: -27.5,60.5 @@ -88884,15 +73795,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6090 components: - pos: -27.5,59.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6091 components: - pos: -26.5,59.5 @@ -88900,92 +73807,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6092 components: - pos: -26.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6093 components: - pos: -25.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6094 components: - pos: -24.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6095 components: - pos: -24.5,57.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6096 components: - pos: -24.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6097 components: - pos: -24.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6098 components: - pos: -23.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6099 components: - pos: -22.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6100 components: - pos: -21.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6101 components: - pos: -20.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6102 components: - pos: -19.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6103 components: - pos: -18.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6104 components: - pos: -18.5,56.5 @@ -88993,57 +73874,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6105 components: - pos: -22.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6106 components: - pos: -22.5,57.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6107 components: - pos: -22.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6108 components: - pos: -22.5,59.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6109 components: - pos: -22.5,60.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6110 components: - pos: -22.5,61.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6111 components: - pos: -22.5,62.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6112 components: - pos: -22.5,63.5 @@ -89051,64 +73916,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6113 components: - pos: -17.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6114 components: - pos: -16.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6115 components: - pos: -15.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6116 components: - pos: -14.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6117 components: - pos: -13.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6118 components: - pos: -12.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6119 components: - pos: -11.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6120 components: - pos: -11.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6121 components: - pos: -11.5,53.5 @@ -89116,92 +73963,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6122 components: - pos: -13.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6123 components: - pos: -13.5,57.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6124 components: - pos: -13.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6125 components: - pos: -13.5,59.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6126 components: - pos: -13.5,60.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6127 components: - pos: -13.5,61.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6128 components: - pos: -13.5,62.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6129 components: - pos: -13.5,63.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6130 components: - pos: -13.5,64.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6131 components: - pos: -13.5,65.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6132 components: - pos: -13.5,66.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6133 components: - pos: -14.5,66.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6134 components: - pos: -14.5,67.5 @@ -89209,71 +74030,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6135 components: - pos: -14.5,65.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6136 components: - pos: -15.5,65.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6137 components: - pos: -16.5,65.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6138 components: - pos: -17.5,65.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6139 components: - pos: -18.5,65.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6140 components: - pos: -19.5,65.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6141 components: - pos: -20.5,65.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6142 components: - pos: -21.5,65.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6143 components: - pos: -22.5,65.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6144 components: - pos: -23.5,65.5 @@ -89281,8 +74082,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6145 components: - pos: -24.5,65.5 @@ -89290,8 +74089,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6146 components: - pos: -25.5,65.5 @@ -89299,8 +74096,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6147 components: - pos: -26.5,65.5 @@ -89308,8 +74103,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6148 components: - pos: -27.5,65.5 @@ -89317,8 +74110,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6149 components: - pos: -25.5,66.5 @@ -89326,8 +74117,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6150 components: - pos: -25.5,67.5 @@ -89335,8 +74124,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6151 components: - pos: -25.5,68.5 @@ -89344,8 +74131,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6152 components: - pos: -25.5,69.5 @@ -89353,8 +74138,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6153 components: - pos: -25.5,70.5 @@ -89362,8 +74145,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6154 components: - pos: -25.5,71.5 @@ -89371,8 +74152,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6155 components: - pos: -25.5,72.5 @@ -89380,8 +74159,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6156 components: - pos: -24.5,72.5 @@ -89389,8 +74166,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6157 components: - pos: -23.5,72.5 @@ -89398,36 +74173,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6158 components: - pos: -22.5,72.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6159 components: - pos: -21.5,72.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6160 components: - pos: -20.5,72.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6161 components: - pos: -20.5,73.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6162 components: - pos: -20.5,74.5 @@ -89435,64 +74200,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6163 components: - pos: -19.5,72.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6164 components: - pos: -18.5,72.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6165 components: - pos: -17.5,72.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6166 components: - pos: -16.5,72.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6167 components: - pos: -15.5,72.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6168 components: - pos: -14.5,72.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6169 components: - pos: -13.5,72.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6170 components: - pos: -12.5,72.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6171 components: - pos: -12.5,71.5 @@ -89500,50 +74247,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6172 components: - pos: -16.5,66.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6173 components: - pos: -16.5,67.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6174 components: - pos: -16.5,68.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6175 components: - pos: -16.5,69.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6176 components: - pos: -16.5,70.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 6177 components: - pos: -16.5,71.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7750 components: - pos: 5.5,19.5 @@ -89551,8 +74284,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7751 components: - pos: 4.5,19.5 @@ -89560,8 +74291,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7759 components: - pos: 5.5,18.5 @@ -89569,8 +74298,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7760 components: - pos: 5.5,17.5 @@ -89578,8 +74305,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7761 components: - pos: 5.5,16.5 @@ -89587,8 +74312,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7762 components: - pos: 5.5,15.5 @@ -89596,8 +74319,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7763 components: - pos: 4.5,15.5 @@ -89605,8 +74326,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7764 components: - pos: 3.5,15.5 @@ -89614,8 +74333,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7765 components: - pos: 4.5,14.5 @@ -89623,176 +74340,126 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7766 components: - pos: 2.5,15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7767 components: - pos: 1.5,15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7768 components: - pos: 0.5,15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7769 components: - pos: 0.5,16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7770 components: - pos: 0.5,17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7771 components: - pos: 0.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7772 components: - pos: 0.5,19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7773 components: - pos: 0.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7774 components: - pos: 0.5,21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7775 components: - pos: 0.5,22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7776 components: - pos: 0.5,23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7777 components: - pos: 1.5,23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7778 components: - pos: 2.5,23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7779 components: - pos: 3.5,23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7780 components: - pos: 4.5,23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7781 components: - pos: 4.5,24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7782 components: - pos: 4.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7783 components: - pos: 4.5,26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7784 components: - pos: 4.5,27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7785 components: - pos: 4.5,28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7786 components: - pos: 4.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7787 components: - pos: 5.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7788 components: - pos: 6.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7789 components: - pos: 6.5,30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7790 components: - pos: 6.5,31.5 @@ -89800,8 +74467,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7850 components: - pos: 6.5,15.5 @@ -89809,8 +74474,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7851 components: - pos: 7.5,15.5 @@ -89818,8 +74481,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7852 components: - pos: 8.5,15.5 @@ -89827,8 +74488,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7853 components: - pos: 9.5,15.5 @@ -89836,8 +74495,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7854 components: - pos: 9.5,16.5 @@ -89845,8 +74502,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7855 components: - pos: 10.5,16.5 @@ -89854,8 +74509,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7856 components: - pos: 11.5,16.5 @@ -89863,8 +74516,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7857 components: - pos: 12.5,16.5 @@ -89872,8 +74523,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7858 components: - pos: 12.5,17.5 @@ -89881,8 +74530,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7859 components: - pos: 12.5,18.5 @@ -89890,8 +74537,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7860 components: - pos: 12.5,19.5 @@ -89899,8 +74544,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7861 components: - pos: 12.5,20.5 @@ -89908,8 +74551,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7862 components: - pos: 12.5,21.5 @@ -89917,8 +74558,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7863 components: - pos: 12.5,22.5 @@ -89926,8 +74565,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7864 components: - pos: 12.5,23.5 @@ -89935,15 +74572,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7865 components: - pos: 12.5,24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 7866 components: - pos: 12.5,25.5 @@ -89951,8 +74584,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7867 components: - pos: 13.5,25.5 @@ -89960,8 +74591,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7868 components: - pos: 14.5,25.5 @@ -89969,8 +74598,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7869 components: - pos: 14.5,26.5 @@ -89978,8 +74605,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7870 components: - pos: 14.5,27.5 @@ -89987,8 +74612,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7871 components: - pos: 14.5,28.5 @@ -89996,8 +74619,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7872 components: - pos: 14.5,29.5 @@ -90005,8 +74626,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7873 components: - pos: 13.5,29.5 @@ -90014,8 +74633,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7874 components: - pos: 12.5,29.5 @@ -90023,8 +74640,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7875 components: - pos: 11.5,29.5 @@ -90032,8 +74647,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7876 components: - pos: 10.5,29.5 @@ -90041,8 +74654,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7877 components: - pos: 9.5,29.5 @@ -90050,8 +74661,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7878 components: - pos: 8.5,29.5 @@ -90059,113 +74668,81 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7879 components: - pos: 7.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9047 components: - pos: 35.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9048 components: - pos: 34.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9049 components: - pos: 33.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9050 components: - pos: 32.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9051 components: - pos: 31.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9052 components: - pos: 30.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9053 components: - pos: 29.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9054 components: - pos: 28.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9055 components: - pos: 27.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9056 components: - pos: 27.5,24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9057 components: - pos: 27.5,23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9058 components: - pos: 27.5,22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9059 components: - pos: 27.5,21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9060 components: - pos: 27.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9061 components: - pos: 26.5,20.5 @@ -90173,57 +74750,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9062 components: - pos: 28.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9063 components: - pos: 29.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9064 components: - pos: 30.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9065 components: - pos: 30.5,19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9066 components: - pos: 30.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9067 components: - pos: 30.5,17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9068 components: - pos: 30.5,16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9069 components: - pos: 30.5,15.5 @@ -90231,78 +74792,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9070 components: - pos: 31.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9071 components: - pos: 32.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9072 components: - pos: 33.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9073 components: - pos: 34.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9074 components: - pos: 35.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9075 components: - pos: 36.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9076 components: - pos: 36.5,19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9077 components: - pos: 36.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9078 components: - pos: 36.5,21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9079 components: - pos: 36.5,22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9080 components: - pos: 36.5,23.5 @@ -90310,92 +74849,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9081 components: - pos: 30.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9082 components: - pos: 30.5,13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9083 components: - pos: 30.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9084 components: - pos: 30.5,11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9085 components: - pos: 30.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9086 components: - pos: 30.5,9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9087 components: - pos: 30.5,8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9088 components: - pos: 30.5,7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9089 components: - pos: 30.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9090 components: - pos: 31.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9091 components: - pos: 32.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9092 components: - pos: 32.5,7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9093 components: - pos: 32.5,8.5 @@ -90403,57 +74916,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9094 components: - pos: 33.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9095 components: - pos: 34.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9096 components: - pos: 35.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9097 components: - pos: 36.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9098 components: - pos: 37.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9099 components: - pos: 38.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9100 components: - pos: 39.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9101 components: - pos: 40.5,6.5 @@ -90461,29 +74958,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9102 components: - pos: 41.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9103 components: - pos: 42.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9104 components: - pos: 43.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9105 components: - pos: 44.5,6.5 @@ -90491,92 +74980,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9106 components: - pos: 42.5,7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9107 components: - pos: 42.5,8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9108 components: - pos: 42.5,9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9109 components: - pos: 42.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9110 components: - pos: 42.5,11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9111 components: - pos: 42.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9112 components: - pos: 42.5,13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9113 components: - pos: 42.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9114 components: - pos: 42.5,15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9115 components: - pos: 42.5,16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9116 components: - pos: 42.5,17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9117 components: - pos: 43.5,17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9118 components: - pos: 43.5,16.5 @@ -90584,8 +75047,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9119 components: - pos: 34.5,15.5 @@ -90593,50 +75054,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9120 components: - pos: 34.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9121 components: - pos: 34.5,13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9122 components: - pos: 34.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9123 components: - pos: 34.5,11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9124 components: - pos: 34.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9125 components: - pos: 34.5,9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9126 components: - pos: 34.5,8.5 @@ -90644,15 +75091,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9127 components: - pos: 34.5,7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9128 components: - pos: 21.5,16.5 @@ -90660,64 +75103,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9129 components: - pos: 21.5,17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9130 components: - pos: 21.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9131 components: - pos: 22.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9132 components: - pos: 23.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9133 components: - pos: 24.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9134 components: - pos: 24.5,19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9135 components: - pos: 24.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9136 components: - pos: 25.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9137 components: - pos: 19.5,27.5 @@ -90725,22 +75150,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9138 components: - pos: 18.5,27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9139 components: - pos: 18.5,28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 9140 components: - pos: 18.5,29.5 @@ -90748,8 +75167,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9141 components: - pos: 17.5,29.5 @@ -90757,8 +75174,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9142 components: - pos: 16.5,29.5 @@ -90766,8 +75181,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9143 components: - pos: 15.5,29.5 @@ -90775,8 +75188,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9869 components: - pos: 18.5,-21.5 @@ -90784,8 +75195,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9995 components: - pos: -7.5,-12.5 @@ -90793,8 +75202,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9996 components: - pos: -6.5,-12.5 @@ -90802,8 +75209,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9997 components: - pos: -5.5,-12.5 @@ -90811,8 +75216,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9998 components: - pos: -5.5,-13.5 @@ -90820,8 +75223,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9999 components: - pos: -5.5,-14.5 @@ -90829,8 +75230,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10000 components: - pos: -5.5,-15.5 @@ -90838,8 +75237,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10001 components: - pos: -5.5,-16.5 @@ -90847,8 +75244,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10002 components: - pos: -5.5,-17.5 @@ -90856,8 +75251,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10003 components: - pos: -5.5,-18.5 @@ -90865,8 +75258,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10004 components: - pos: -5.5,-19.5 @@ -90874,8 +75265,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10005 components: - pos: -5.5,-20.5 @@ -90883,8 +75272,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10006 components: - pos: -4.5,-15.5 @@ -90892,8 +75279,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10007 components: - pos: -4.5,-20.5 @@ -90901,15 +75286,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10008 components: - pos: -3.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10009 components: - pos: -3.5,-21.5 @@ -90917,8 +75298,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10010 components: - pos: -7.5,-24.5 @@ -90926,8 +75305,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10011 components: - pos: -8.5,-24.5 @@ -90935,8 +75312,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10012 components: - pos: -9.5,-24.5 @@ -90944,8 +75319,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10013 components: - pos: -9.5,-23.5 @@ -90953,8 +75326,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10014 components: - pos: -9.5,-22.5 @@ -90962,8 +75333,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10015 components: - pos: -9.5,-21.5 @@ -90971,8 +75340,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10016 components: - pos: -9.5,-20.5 @@ -90980,8 +75347,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10017 components: - pos: -8.5,-20.5 @@ -90989,8 +75354,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10018 components: - pos: -7.5,-20.5 @@ -90998,8 +75361,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10019 components: - pos: -6.5,-20.5 @@ -91007,8 +75368,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10020 components: - pos: -6.5,-24.5 @@ -91016,36 +75375,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10021 components: - pos: -5.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10022 components: - pos: -4.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10023 components: - pos: -4.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10024 components: - pos: -3.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10025 components: - pos: -2.5,-23.5 @@ -91053,22 +75402,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10026 components: - pos: -1.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10027 components: - pos: -0.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10028 components: - pos: -0.5,-22.5 @@ -91076,8 +75419,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10029 components: - pos: 0.5,-22.5 @@ -91085,8 +75426,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10030 components: - pos: 1.5,-22.5 @@ -91094,8 +75433,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10031 components: - pos: 2.5,-22.5 @@ -91103,50 +75440,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10032 components: - pos: -0.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10033 components: - pos: -1.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10034 components: - pos: -2.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10035 components: - pos: -4.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10036 components: - pos: -4.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10037 components: - pos: -4.5,-27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10038 components: - pos: -4.5,-28.5 @@ -91154,8 +75477,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10039 components: - pos: -5.5,-28.5 @@ -91163,8 +75484,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10040 components: - pos: -3.5,-28.5 @@ -91172,36 +75491,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10041 components: - pos: -0.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10042 components: - pos: -0.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10043 components: - pos: -0.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10044 components: - pos: -0.5,-27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10045 components: - pos: -0.5,-28.5 @@ -91209,8 +75518,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10046 components: - pos: -1.5,-28.5 @@ -91218,8 +75525,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10047 components: - pos: 0.5,-28.5 @@ -91227,43 +75532,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10048 components: - pos: 0.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10049 components: - pos: 1.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10050 components: - pos: 2.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10051 components: - pos: 3.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10052 components: - pos: 4.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10053 components: - pos: 4.5,-24.5 @@ -91271,8 +75564,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10054 components: - pos: 4.5,-26.5 @@ -91280,8 +75571,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10055 components: - pos: -2.5,-24.5 @@ -91289,15 +75578,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10056 components: - pos: -2.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10057 components: - pos: -2.5,-26.5 @@ -91305,8 +75590,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10286 components: - pos: 37.5,23.5 @@ -91314,15 +75597,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10287 components: - pos: 38.5,23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10288 components: - pos: 39.5,23.5 @@ -91330,8 +75609,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10289 components: - pos: 22.5,17.5 @@ -91339,8 +75616,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10290 components: - pos: 22.5,19.5 @@ -91348,8 +75623,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10823 components: - pos: 9.5,14.5 @@ -91357,8 +75630,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10824 components: - pos: 9.5,13.5 @@ -91366,8 +75637,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10825 components: - pos: 9.5,12.5 @@ -91375,8 +75644,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10826 components: - pos: 9.5,11.5 @@ -91384,8 +75651,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10827 components: - pos: 9.5,10.5 @@ -91393,8 +75658,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10828 components: - pos: 9.5,9.5 @@ -91402,8 +75665,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10829 components: - pos: 9.5,8.5 @@ -91411,8 +75672,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10830 components: - pos: 9.5,7.5 @@ -91420,8 +75679,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10831 components: - pos: 10.5,7.5 @@ -91429,8 +75686,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10832 components: - pos: 11.5,7.5 @@ -91438,8 +75693,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10833 components: - pos: 12.5,7.5 @@ -91447,8 +75700,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10834 components: - pos: 13.5,7.5 @@ -91456,8 +75707,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10835 components: - pos: 14.5,7.5 @@ -91465,8 +75714,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10836 components: - pos: 15.5,7.5 @@ -91474,8 +75721,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10837 components: - pos: 16.5,7.5 @@ -91483,8 +75728,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10838 components: - pos: 16.5,6.5 @@ -91492,8 +75735,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10839 components: - pos: 16.5,5.5 @@ -91501,50 +75742,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10840 components: - pos: 16.5,4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10841 components: - pos: 16.5,3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10842 components: - pos: 15.5,3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10843 components: - pos: 14.5,3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10844 components: - pos: 13.5,3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10845 components: - pos: 12.5,3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10846 components: - pos: 12.5,2.5 @@ -91552,64 +75779,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10847 components: - pos: 16.5,2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10848 components: - pos: 16.5,1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10849 components: - pos: 16.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10850 components: - pos: 16.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10851 components: - pos: 15.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10852 components: - pos: 14.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10853 components: - pos: 13.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10854 components: - pos: 12.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 10855 components: - pos: 12.5,0.5 @@ -91617,8 +75826,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11229 components: - pos: 19.5,-19.5 @@ -91626,8 +75833,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11230 components: - pos: 19.5,-20.5 @@ -91635,71 +75840,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11232 components: - pos: 16.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11233 components: - pos: 17.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11234 components: - pos: 15.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11235 components: - pos: 14.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11236 components: - pos: 13.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11237 components: - pos: 12.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11238 components: - pos: 11.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11239 components: - pos: 10.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11240 components: - pos: 9.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11241 components: - pos: 9.5,-19.5 @@ -91707,78 +75892,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11242 components: - pos: 12.5,-19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11243 components: - pos: 12.5,-18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11244 components: - pos: 12.5,-17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11245 components: - pos: 12.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11246 components: - pos: 12.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11247 components: - pos: 13.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11248 components: - pos: 14.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11249 components: - pos: 15.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11250 components: - pos: 15.5,-14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11251 components: - pos: 15.5,-13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11252 components: - pos: 14.5,-13.5 @@ -91786,64 +75949,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11253 components: - pos: 11.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11254 components: - pos: 10.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11255 components: - pos: 9.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11256 components: - pos: 8.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11257 components: - pos: 8.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11258 components: - pos: 8.5,-14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11259 components: - pos: 8.5,-13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11260 components: - pos: 9.5,-13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11261 components: - pos: 10.5,-13.5 @@ -91851,8 +75996,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11262 components: - pos: 16.5,-28.5 @@ -91860,85 +76003,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11263 components: - pos: 16.5,-29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11264 components: - pos: 17.5,-29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11265 components: - pos: 18.5,-29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11266 components: - pos: 19.5,-29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11267 components: - pos: 19.5,-28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11268 components: - pos: 19.5,-27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11269 components: - pos: 19.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11270 components: - pos: 20.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11271 components: - pos: 20.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11272 components: - pos: 20.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11273 components: - pos: 20.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11274 components: - pos: 20.5,-22.5 @@ -91946,8 +76065,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11275 components: - pos: 20.5,-21.5 @@ -91955,8 +76072,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11276 components: - pos: 19.5,-21.5 @@ -91964,71 +76079,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11277 components: - pos: 18.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11278 components: - pos: 17.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11279 components: - pos: 16.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11280 components: - pos: 15.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11281 components: - pos: 15.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11282 components: - pos: 15.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11283 components: - pos: 15.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11284 components: - pos: 15.5,-22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11285 components: - pos: 15.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11553 components: - pos: 48.5,6.5 @@ -92036,92 +76131,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11554 components: - pos: 49.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11555 components: - pos: 50.5,6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11556 components: - pos: 50.5,7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11557 components: - pos: 50.5,8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11558 components: - pos: 50.5,9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11559 components: - pos: 49.5,9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11560 components: - pos: 48.5,9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11561 components: - pos: 47.5,9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11562 components: - pos: 46.5,9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11563 components: - pos: 45.5,9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11564 components: - pos: 44.5,9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11565 components: - pos: 43.5,9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11856 components: - pos: 96.5,-1.5 @@ -92129,43 +76198,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11857 components: - pos: 96.5,-2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11858 components: - pos: 95.5,-2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11863 components: - pos: 94.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11864 components: - pos: 94.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 11865 components: - pos: 94.5,-2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12093 components: - pos: -12.5,-16.5 @@ -92173,15 +76230,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12094 components: - pos: -13.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12095 components: - pos: -13.5,-17.5 @@ -92189,8 +76242,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12096 components: - pos: -13.5,-18.5 @@ -92198,8 +76249,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12097 components: - pos: -13.5,-19.5 @@ -92207,8 +76256,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12098 components: - pos: -13.5,-20.5 @@ -92216,8 +76263,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12903 components: - pos: -43.5,-46.5 @@ -92225,8 +76270,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12904 components: - pos: -43.5,-47.5 @@ -92234,8 +76277,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12905 components: - pos: -42.5,-47.5 @@ -92243,8 +76284,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12906 components: - pos: -41.5,-47.5 @@ -92252,22 +76291,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12907 components: - pos: -40.5,-47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12908 components: - pos: -40.5,-48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12909 components: - pos: -41.5,-48.5 @@ -92275,8 +76308,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12910 components: - pos: -40.5,-46.5 @@ -92284,78 +76315,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12911 components: - pos: -40.5,-45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12912 components: - pos: -40.5,-44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12913 components: - pos: -40.5,-43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12914 components: - pos: -40.5,-42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12915 components: - pos: -40.5,-41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12916 components: - pos: -40.5,-40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12917 components: - pos: -40.5,-39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12918 components: - pos: -40.5,-38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12919 components: - pos: -39.5,-38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12920 components: - pos: -38.5,-38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 12921 components: - pos: -37.5,-38.5 @@ -92363,15 +76372,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13400 components: - pos: -24.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13479 components: - pos: -36.5,-3.5 @@ -92379,15 +76384,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13480 components: - pos: -35.5,-3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13481 components: - pos: -35.5,-2.5 @@ -92395,8 +76396,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13482 components: - pos: -35.5,-1.5 @@ -92404,8 +76403,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13483 components: - pos: -36.5,-1.5 @@ -92413,8 +76410,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13484 components: - pos: -37.5,-1.5 @@ -92422,8 +76417,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13485 components: - pos: -38.5,-1.5 @@ -92431,8 +76424,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13486 components: - pos: -39.5,-1.5 @@ -92440,288 +76431,206 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13487 components: - pos: -35.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13488 components: - pos: -34.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13489 components: - pos: -33.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13490 components: - pos: -32.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13491 components: - pos: -31.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13492 components: - pos: -30.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13493 components: - pos: -29.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13494 components: - pos: -28.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13495 components: - pos: -27.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13496 components: - pos: -26.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13497 components: - pos: -25.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13498 components: - pos: -24.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13499 components: - pos: -23.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13500 components: - pos: -22.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13501 components: - pos: -22.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13502 components: - pos: -22.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13503 components: - pos: -22.5,-7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13504 components: - pos: -22.5,-8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13505 components: - pos: -22.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13506 components: - pos: -22.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13507 components: - pos: -22.5,-11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13508 components: - pos: -22.5,-12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13509 components: - pos: -22.5,-13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13510 components: - pos: -22.5,-14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13511 components: - pos: -22.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13512 components: - pos: -22.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13513 components: - pos: -22.5,-17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13514 components: - pos: -22.5,-18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13515 components: - pos: -22.5,-19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13516 components: - pos: -22.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13517 components: - pos: -22.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13518 components: - pos: -22.5,-22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13519 components: - pos: -22.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13520 components: - pos: -25.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13521 components: - pos: -26.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13522 components: - pos: -23.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13523 components: - pos: -23.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13524 components: - pos: -27.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13525 components: - pos: -28.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13526 components: - pos: -29.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 13527 components: - pos: -29.5,-23.5 @@ -92729,8 +76638,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14618 components: - pos: 27.5,-38.5 @@ -92738,8 +76645,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14619 components: - pos: 26.5,-38.5 @@ -92747,8 +76652,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14620 components: - pos: 25.5,-38.5 @@ -92756,8 +76659,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14621 components: - pos: 24.5,-38.5 @@ -92765,8 +76666,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14622 components: - pos: 24.5,-37.5 @@ -92774,15 +76673,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14623 components: - pos: 24.5,-36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14624 components: - pos: 24.5,-35.5 @@ -92790,8 +76685,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14625 components: - pos: 24.5,-34.5 @@ -92799,43 +76692,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14626 components: - pos: 24.5,-33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14627 components: - pos: 24.5,-32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14628 components: - pos: 24.5,-31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14629 components: - pos: 24.5,-30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14630 components: - pos: 24.5,-29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14631 components: - pos: 24.5,-28.5 @@ -92843,8 +76724,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14632 components: - pos: 24.5,-27.5 @@ -92852,15 +76731,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14633 components: - pos: 24.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14634 components: - pos: 24.5,-25.5 @@ -92868,113 +76743,81 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14635 components: - pos: 25.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14636 components: - pos: 26.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14637 components: - pos: 27.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14638 components: - pos: 28.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14639 components: - pos: 29.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14640 components: - pos: 30.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14641 components: - pos: 30.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14642 components: - pos: 30.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14643 components: - pos: 30.5,-22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14644 components: - pos: 31.5,-22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14645 components: - pos: 32.5,-22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14646 components: - pos: 33.5,-22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14647 components: - pos: 34.5,-22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14648 components: - pos: 34.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14649 components: - pos: 34.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14650 components: - pos: 34.5,-18.5 @@ -92982,169 +76825,121 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14651 components: - pos: 34.5,-19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14652 components: - pos: 35.5,-22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14653 components: - pos: 36.5,-22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14654 components: - pos: 37.5,-22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14655 components: - pos: 38.5,-22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14656 components: - pos: 38.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14657 components: - pos: 38.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14658 components: - pos: 38.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14659 components: - pos: 38.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14660 components: - pos: 38.5,-27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14661 components: - pos: 38.5,-28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14662 components: - pos: 38.5,-29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14663 components: - pos: 38.5,-30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14664 components: - pos: 38.5,-31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14665 components: - pos: 38.5,-32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14666 components: - pos: 38.5,-33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14667 components: - pos: 38.5,-34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14668 components: - pos: 38.5,-35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14669 components: - pos: 38.5,-36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14670 components: - pos: 38.5,-37.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14671 components: - pos: 38.5,-38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14672 components: - pos: 38.5,-39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14673 components: - pos: 38.5,-40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14674 components: - pos: 38.5,-41.5 @@ -93152,8 +76947,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14675 components: - pos: 38.5,-42.5 @@ -93161,8 +76954,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14676 components: - pos: 37.5,-42.5 @@ -93170,8 +76961,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14677 components: - pos: 36.5,-42.5 @@ -93179,8 +76968,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14678 components: - pos: 35.5,-42.5 @@ -93188,8 +76975,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14679 components: - pos: 34.5,-42.5 @@ -93197,15 +76982,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14680 components: - pos: 33.5,-42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14681 components: - pos: 32.5,-42.5 @@ -93213,8 +76994,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14682 components: - pos: 31.5,-42.5 @@ -93222,8 +77001,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14683 components: - pos: 30.5,-42.5 @@ -93231,8 +77008,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14684 components: - pos: 29.5,-42.5 @@ -93240,8 +77015,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14685 components: - pos: 28.5,-42.5 @@ -93249,8 +77022,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14686 components: - pos: 27.5,-42.5 @@ -93258,8 +77029,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14687 components: - pos: 26.5,-42.5 @@ -93267,8 +77036,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14688 components: - pos: 25.5,-42.5 @@ -93276,8 +77043,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14689 components: - pos: 24.5,-42.5 @@ -93285,8 +77050,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14690 components: - pos: 24.5,-41.5 @@ -93294,8 +77057,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14691 components: - pos: 24.5,-40.5 @@ -93303,22 +77064,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14692 components: - pos: 24.5,-39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14693 components: - pos: 39.5,-34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14694 components: - pos: 40.5,-34.5 @@ -93326,36 +77081,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14695 components: - pos: 37.5,-34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14696 components: - pos: 36.5,-34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14697 components: - pos: 35.5,-34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14698 components: - pos: 35.5,-33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14699 components: - pos: 35.5,-32.5 @@ -93363,22 +77108,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14700 components: - pos: 35.5,-31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14701 components: - pos: 34.5,-31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14702 components: - pos: 33.5,-31.5 @@ -93386,29 +77125,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14703 components: - pos: 35.5,-30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14704 components: - pos: 36.5,-30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14705 components: - pos: 37.5,-30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14706 components: - pos: 46.5,-40.5 @@ -93416,141 +77147,101 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14707 components: - pos: 47.5,-40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14708 components: - pos: 48.5,-40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14709 components: - pos: 48.5,-39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14710 components: - pos: 48.5,-38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14711 components: - pos: 48.5,-37.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14712 components: - pos: 48.5,-36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14713 components: - pos: 48.5,-35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14714 components: - pos: 48.5,-34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14715 components: - pos: 48.5,-33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14716 components: - pos: 48.5,-32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14717 components: - pos: 48.5,-31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14718 components: - pos: 48.5,-30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14719 components: - pos: 48.5,-29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14720 components: - pos: 48.5,-28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14721 components: - pos: 48.5,-27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14722 components: - pos: 48.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14723 components: - pos: 47.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14732 components: - pos: 49.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14733 components: - pos: 49.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14734 components: - pos: 49.5,-24.5 @@ -93558,43 +77249,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14735 components: - pos: 50.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14736 components: - pos: 51.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14737 components: - pos: 52.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14738 components: - pos: 53.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14739 components: - pos: 53.5,-27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14740 components: - pos: 53.5,-28.5 @@ -93602,50 +77281,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14741 components: - pos: 52.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14742 components: - pos: 52.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14743 components: - pos: 52.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14744 components: - pos: 52.5,-22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14745 components: - pos: 52.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14746 components: - pos: 52.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14747 components: - pos: 39.5,-14.5 @@ -93653,22 +77318,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14748 components: - pos: 51.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14749 components: - pos: 50.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14750 components: - pos: 49.5,-20.5 @@ -93676,141 +77335,101 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14751 components: - pos: 39.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14752 components: - pos: 39.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14759 components: - pos: 40.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14760 components: - pos: 41.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14761 components: - pos: 42.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14762 components: - pos: 43.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14763 components: - pos: 44.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14764 components: - pos: 45.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14765 components: - pos: 46.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14766 components: - pos: 47.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14767 components: - pos: 47.5,-17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14768 components: - pos: 47.5,-18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14769 components: - pos: 47.5,-19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14770 components: - pos: 47.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14771 components: - pos: 47.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14772 components: - pos: 47.5,-22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14773 components: - pos: 47.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14774 components: - pos: 47.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14775 components: - pos: 47.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 14922 components: - pos: 26.5,-26.5 @@ -93818,36 +77437,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15017 components: - pos: 34.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15018 components: - pos: 35.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 15019 components: - pos: 36.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 16340 components: - pos: 66.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 17510 components: - pos: 21.5,52.5 @@ -93855,8 +77464,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17511 components: - pos: 22.5,52.5 @@ -93864,8 +77471,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17673 components: - pos: 4.5,52.5 @@ -93873,8 +77478,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18100 components: - pos: 3.5,52.5 @@ -93882,8 +77485,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18101 components: - pos: 3.5,51.5 @@ -93891,8 +77492,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18102 components: - pos: 2.5,52.5 @@ -93900,8 +77499,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18103 components: - pos: 1.5,52.5 @@ -93909,8 +77506,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18104 components: - pos: 0.5,52.5 @@ -93918,8 +77513,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18105 components: - pos: -0.5,52.5 @@ -93927,141 +77520,101 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18106 components: - pos: -0.5,51.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18107 components: - pos: -0.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18108 components: - pos: -0.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18109 components: - pos: 0.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18110 components: - pos: 1.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18111 components: - pos: 2.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18112 components: - pos: 3.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18113 components: - pos: 4.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18114 components: - pos: 5.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18115 components: - pos: 6.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18116 components: - pos: 7.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18117 components: - pos: 8.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18118 components: - pos: 9.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18119 components: - pos: 10.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18120 components: - pos: 11.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18121 components: - pos: 12.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18122 components: - pos: 13.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18123 components: - pos: 13.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18124 components: - pos: 13.5,51.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18125 components: - pos: 13.5,52.5 @@ -94069,57 +77622,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18126 components: - pos: 3.5,48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18127 components: - pos: 3.5,47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18128 components: - pos: 3.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18129 components: - pos: 3.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18130 components: - pos: 3.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18131 components: - pos: 3.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18132 components: - pos: 3.5,42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18133 components: - pos: 4.5,42.5 @@ -94127,113 +77664,81 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18134 components: - pos: 3.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18135 components: - pos: 14.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18136 components: - pos: 15.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18137 components: - pos: 16.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18138 components: - pos: 17.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18139 components: - pos: 18.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18140 components: - pos: 18.5,48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18141 components: - pos: 18.5,47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18142 components: - pos: 18.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18143 components: - pos: 18.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18144 components: - pos: 18.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18145 components: - pos: 19.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18146 components: - pos: 20.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18147 components: - pos: 21.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18148 components: - pos: 21.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18149 components: - pos: 21.5,46.5 @@ -94241,22 +77746,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18150 components: - pos: 22.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18151 components: - pos: 23.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18152 components: - pos: 23.5,42.5 @@ -94264,71 +77763,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18153 components: - pos: 23.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18154 components: - pos: 24.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18155 components: - pos: 25.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18156 components: - pos: 26.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18157 components: - pos: 27.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18158 components: - pos: 28.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18159 components: - pos: 29.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18160 components: - pos: 30.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18161 components: - pos: 31.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18162 components: - pos: 31.5,44.5 @@ -94336,148 +77815,106 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18163 components: - pos: 23.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18164 components: - pos: 23.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18165 components: - pos: 23.5,47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18166 components: - pos: 23.5,48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18167 components: - pos: 23.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18168 components: - pos: 23.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18169 components: - pos: 23.5,51.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18172 components: - pos: 17.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18173 components: - pos: 16.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18174 components: - pos: 15.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18175 components: - pos: 14.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18176 components: - pos: 13.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18177 components: - pos: 12.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18178 components: - pos: 11.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18179 components: - pos: 11.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18180 components: - pos: 11.5,42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18181 components: - pos: 11.5,41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18182 components: - pos: 11.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18183 components: - pos: 11.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18184 components: - pos: 10.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18185 components: - pos: 9.5,39.5 @@ -94485,8 +77922,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18186 components: - pos: 6.5,57.5 @@ -94494,176 +77929,126 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18187 components: - pos: 6.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18188 components: - pos: 7.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18189 components: - pos: 8.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18190 components: - pos: 9.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18191 components: - pos: 9.5,59.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18192 components: - pos: 9.5,60.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18193 components: - pos: 9.5,61.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18194 components: - pos: 9.5,62.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18195 components: - pos: 10.5,62.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18196 components: - pos: 11.5,62.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18197 components: - pos: 12.5,62.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18198 components: - pos: 13.5,62.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18199 components: - pos: 14.5,62.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18200 components: - pos: 14.5,63.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18201 components: - pos: 14.5,64.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18202 components: - pos: 14.5,65.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18203 components: - pos: 14.5,66.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18204 components: - pos: 14.5,67.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18205 components: - pos: 15.5,67.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18206 components: - pos: 16.5,67.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18207 components: - pos: 17.5,67.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18208 components: - pos: 18.5,67.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18209 components: - pos: 18.5,68.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18210 components: - pos: 18.5,69.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18211 components: - pos: 18.5,70.5 @@ -94671,8 +78056,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18212 components: - pos: 19.5,70.5 @@ -94680,8 +78063,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18213 components: - pos: 20.5,70.5 @@ -94689,8 +78070,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18214 components: - pos: 21.5,70.5 @@ -94698,8 +78077,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18215 components: - pos: 22.5,70.5 @@ -94707,8 +78084,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18224 components: - pos: 29.5,54.5 @@ -94716,8 +78091,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18225 components: - pos: 30.5,54.5 @@ -94725,8 +78098,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18226 components: - pos: 31.5,54.5 @@ -94734,8 +78105,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18227 components: - pos: 32.5,54.5 @@ -94743,8 +78112,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18228 components: - pos: 32.5,55.5 @@ -94752,8 +78119,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18229 components: - pos: 32.5,56.5 @@ -94761,8 +78126,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18230 components: - pos: 32.5,57.5 @@ -94770,8 +78133,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18231 components: - pos: 32.5,58.5 @@ -94779,8 +78140,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18232 components: - pos: 32.5,59.5 @@ -94788,8 +78147,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18233 components: - pos: 32.5,60.5 @@ -94797,15 +78154,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18234 components: - pos: 32.5,61.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18235 components: - pos: 32.5,62.5 @@ -94813,8 +78166,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18236 components: - pos: 32.5,63.5 @@ -94822,8 +78173,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18237 components: - pos: 32.5,64.5 @@ -94831,8 +78180,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18238 components: - pos: 32.5,65.5 @@ -94840,8 +78187,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18239 components: - pos: 32.5,66.5 @@ -94849,120 +78194,86 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18245 components: - pos: 15.5,62.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18246 components: - pos: 16.5,62.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18247 components: - pos: 17.5,62.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18248 components: - pos: 18.5,62.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18249 components: - pos: 18.5,61.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18250 components: - pos: 18.5,60.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18251 components: - pos: 18.5,59.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18252 components: - pos: 18.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18253 components: - pos: 19.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18254 components: - pos: 20.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18255 components: - pos: 21.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18256 components: - pos: 22.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18257 components: - pos: 23.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18258 components: - pos: 24.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18259 components: - pos: 24.5,59.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18260 components: - pos: 24.5,60.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18261 components: - pos: 24.5,61.5 @@ -94970,57 +78281,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18262 components: - pos: 8.5,62.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18263 components: - pos: 7.5,62.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18264 components: - pos: 6.5,62.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18265 components: - pos: 5.5,62.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18266 components: - pos: 4.5,62.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18267 components: - pos: 3.5,62.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18268 components: - pos: 3.5,63.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18269 components: - pos: 3.5,64.5 @@ -95028,8 +78323,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18591 components: - pos: 24.5,52.5 @@ -95037,8 +78330,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18595 components: - pos: 23.5,52.5 @@ -95046,15 +78337,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18675 components: - pos: 24.5,53.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18676 components: - pos: 25.5,53.5 @@ -95062,22 +78349,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18677 components: - pos: 22.5,53.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18678 components: - pos: 21.5,53.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18679 components: - pos: 20.5,53.5 @@ -95085,22 +78366,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18680 components: - pos: 21.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18681 components: - pos: 21.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 18682 components: - pos: 20.5,55.5 @@ -95108,8 +78383,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19260 components: - pos: 26.5,-54.5 @@ -95117,36 +78390,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19261 components: - pos: 26.5,-55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19262 components: - pos: 25.5,-55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19263 components: - pos: 24.5,-55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19264 components: - pos: 24.5,-54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19265 components: - pos: 24.5,-53.5 @@ -95154,8 +78417,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19266 components: - pos: 24.5,-52.5 @@ -95163,8 +78424,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19267 components: - pos: 24.5,-51.5 @@ -95172,8 +78431,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19268 components: - pos: 24.5,-50.5 @@ -95181,8 +78438,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19269 components: - pos: 24.5,-49.5 @@ -95190,8 +78445,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19270 components: - pos: 24.5,-48.5 @@ -95199,8 +78452,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19271 components: - pos: 24.5,-47.5 @@ -95208,8 +78459,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19272 components: - pos: 24.5,-46.5 @@ -95217,8 +78466,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19273 components: - pos: 24.5,-45.5 @@ -95226,8 +78473,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19274 components: - pos: 24.5,-44.5 @@ -95235,8 +78480,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19275 components: - pos: 24.5,-43.5 @@ -95244,57 +78487,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19276 components: - pos: 25.5,-49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19277 components: - pos: 26.5,-49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19278 components: - pos: 27.5,-49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19279 components: - pos: 28.5,-49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19280 components: - pos: 28.5,-48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19281 components: - pos: 28.5,-47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19282 components: - pos: 28.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19283 components: - pos: 28.5,-45.5 @@ -95302,8 +78529,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19317 components: - pos: 26.5,-39.5 @@ -95311,8 +78536,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19318 components: - pos: 26.5,-40.5 @@ -95320,8 +78543,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19549 components: - pos: 51.5,-51.5 @@ -95329,8 +78550,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19550 components: - pos: 51.5,-50.5 @@ -95338,8 +78557,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19551 components: - pos: 51.5,-49.5 @@ -95347,8 +78564,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19552 components: - pos: 51.5,-48.5 @@ -95356,8 +78571,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19553 components: - pos: 51.5,-47.5 @@ -95365,8 +78578,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19554 components: - pos: 51.5,-46.5 @@ -95374,8 +78585,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19555 components: - pos: 52.5,-46.5 @@ -95383,8 +78592,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19556 components: - pos: 53.5,-46.5 @@ -95392,8 +78599,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19557 components: - pos: 54.5,-46.5 @@ -95401,8 +78606,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19558 components: - pos: 55.5,-46.5 @@ -95410,8 +78613,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19559 components: - pos: 56.5,-46.5 @@ -95419,22 +78620,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19560 components: - pos: 56.5,-45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19561 components: - pos: 56.5,-44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19562 components: - pos: 56.5,-43.5 @@ -95442,162 +78637,116 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19563 components: - pos: 56.5,-42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19564 components: - pos: 56.5,-41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19565 components: - pos: 56.5,-40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19566 components: - pos: 56.5,-39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19567 components: - pos: 56.5,-38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19568 components: - pos: 56.5,-37.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19569 components: - pos: 56.5,-36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19570 components: - pos: 56.5,-35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19571 components: - pos: 56.5,-34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19572 components: - pos: 56.5,-33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19573 components: - pos: 55.5,-33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19574 components: - pos: 54.5,-33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19575 components: - pos: 53.5,-33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19576 components: - pos: 52.5,-33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19577 components: - pos: 51.5,-33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19578 components: - pos: 50.5,-33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19579 components: - pos: 49.5,-33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19580 components: - pos: 53.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19581 components: - pos: 54.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19582 components: - pos: 55.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19583 components: - pos: 56.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19584 components: - pos: 57.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19585 components: - pos: 58.5,-23.5 @@ -95605,8 +78754,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19586 components: - pos: 59.5,-23.5 @@ -95614,8 +78761,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19587 components: - pos: 60.5,-23.5 @@ -95623,8 +78768,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19588 components: - pos: 61.5,-23.5 @@ -95632,8 +78775,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19589 components: - pos: 62.5,-23.5 @@ -95641,8 +78782,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19590 components: - pos: 63.5,-23.5 @@ -95650,8 +78789,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19591 components: - pos: 64.5,-23.5 @@ -95659,8 +78796,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19592 components: - pos: 64.5,-24.5 @@ -95668,8 +78803,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19601 components: - pos: 64.5,-33.5 @@ -95677,8 +78810,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19602 components: - pos: 64.5,-34.5 @@ -95686,8 +78817,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19603 components: - pos: 64.5,-35.5 @@ -95695,8 +78824,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19604 components: - pos: 64.5,-36.5 @@ -95704,8 +78831,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19605 components: - pos: 64.5,-37.5 @@ -95713,8 +78838,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19606 components: - pos: 64.5,-38.5 @@ -95722,15 +78845,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19607 components: - pos: 64.5,-39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19608 components: - pos: 64.5,-40.5 @@ -95738,8 +78857,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19609 components: - pos: 64.5,-41.5 @@ -95747,8 +78864,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19610 components: - pos: 64.5,-42.5 @@ -95756,8 +78871,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19611 components: - pos: 64.5,-43.5 @@ -95765,8 +78878,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19612 components: - pos: 64.5,-44.5 @@ -95774,8 +78885,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19613 components: - pos: 64.5,-45.5 @@ -95783,8 +78892,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19614 components: - pos: 64.5,-46.5 @@ -95792,8 +78899,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19615 components: - pos: 63.5,-46.5 @@ -95801,8 +78906,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19616 components: - pos: 62.5,-46.5 @@ -95810,8 +78913,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19617 components: - pos: 61.5,-46.5 @@ -95819,8 +78920,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19618 components: - pos: 60.5,-46.5 @@ -95828,8 +78927,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19619 components: - pos: 59.5,-46.5 @@ -95837,15 +78934,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19620 components: - pos: 58.5,-46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19621 components: - pos: 57.5,-46.5 @@ -95853,15 +78946,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19857 components: - pos: 51.5,-45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 19858 components: - pos: 51.5,-44.5 @@ -95869,8 +78958,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20136 components: - pos: 64.5,-25.5 @@ -95878,8 +78965,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20137 components: - pos: 65.5,-25.5 @@ -95887,8 +78972,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20138 components: - pos: 65.5,-26.5 @@ -95896,8 +78979,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20139 components: - pos: 65.5,-27.5 @@ -95905,8 +78986,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20140 components: - pos: 65.5,-28.5 @@ -95914,8 +78993,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20141 components: - pos: 65.5,-29.5 @@ -95923,15 +79000,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20142 components: - pos: 65.5,-30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 20143 components: - pos: 65.5,-31.5 @@ -95939,8 +79012,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20144 components: - pos: 64.5,-31.5 @@ -95948,8 +79019,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20145 components: - pos: 64.5,-32.5 @@ -95957,8 +79026,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22913 components: - pos: 101.5,-9.5 @@ -95966,8 +79033,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22916 components: - pos: 101.5,-1.5 @@ -95975,8 +79040,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22917 components: - pos: 101.5,-0.5 @@ -95984,8 +79047,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22918 components: - pos: 102.5,-0.5 @@ -95993,8 +79054,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22920 components: - pos: 103.5,0.5 @@ -96002,8 +79061,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22921 components: - pos: 103.5,1.5 @@ -96011,8 +79068,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22922 components: - pos: 104.5,1.5 @@ -96020,8 +79075,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22923 components: - pos: 112.5,1.5 @@ -96029,8 +79082,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22924 components: - pos: 113.5,1.5 @@ -96038,8 +79089,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22925 components: - pos: 113.5,0.5 @@ -96047,8 +79096,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22927 components: - pos: 114.5,-0.5 @@ -96056,8 +79103,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22928 components: - pos: 115.5,-0.5 @@ -96065,8 +79110,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22929 components: - pos: 115.5,-1.5 @@ -96074,8 +79117,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22930 components: - pos: 101.5,-10.5 @@ -96083,8 +79124,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22931 components: - pos: 102.5,-10.5 @@ -96092,8 +79131,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22933 components: - pos: 103.5,-11.5 @@ -96101,8 +79138,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22934 components: - pos: 103.5,-12.5 @@ -96110,8 +79145,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22935 components: - pos: 104.5,-12.5 @@ -96119,8 +79152,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22936 components: - pos: 104.5,-13.5 @@ -96128,8 +79159,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22937 components: - pos: 112.5,-12.5 @@ -96137,8 +79166,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22938 components: - pos: 113.5,-12.5 @@ -96146,8 +79173,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22939 components: - pos: 113.5,-11.5 @@ -96155,8 +79180,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22941 components: - pos: 114.5,-10.5 @@ -96164,8 +79187,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22942 components: - pos: 115.5,-10.5 @@ -96173,8 +79194,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22943 components: - pos: 115.5,-9.5 @@ -96182,8 +79201,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22944 components: - pos: 100.5,-1.5 @@ -96191,8 +79208,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22945 components: - pos: 100.5,-2.5 @@ -96200,8 +79215,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22946 components: - pos: 100.5,-3.5 @@ -96209,8 +79222,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22947 components: - pos: 100.5,-4.5 @@ -96218,8 +79229,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22948 components: - pos: 100.5,-5.5 @@ -96227,8 +79236,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22949 components: - pos: 100.5,-6.5 @@ -96236,8 +79243,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22950 components: - pos: 100.5,-7.5 @@ -96245,8 +79250,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22951 components: - pos: 100.5,-8.5 @@ -96254,8 +79257,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22952 components: - pos: 100.5,-9.5 @@ -96263,8 +79264,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22953 components: - pos: 105.5,-13.5 @@ -96272,8 +79271,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22954 components: - pos: 106.5,-13.5 @@ -96281,8 +79278,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22955 components: - pos: 107.5,-13.5 @@ -96290,8 +79285,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22956 components: - pos: 108.5,-13.5 @@ -96299,8 +79292,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22957 components: - pos: 109.5,-13.5 @@ -96308,8 +79299,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22958 components: - pos: 110.5,-13.5 @@ -96317,8 +79306,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22959 components: - pos: 111.5,-13.5 @@ -96326,8 +79313,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22960 components: - pos: 112.5,-13.5 @@ -96335,8 +79320,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22962 components: - pos: 116.5,-9.5 @@ -96344,8 +79327,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22963 components: - pos: 116.5,-8.5 @@ -96353,8 +79334,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22964 components: - pos: 116.5,-7.5 @@ -96362,8 +79341,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22965 components: - pos: 116.5,-6.5 @@ -96371,8 +79348,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22966 components: - pos: 116.5,-5.5 @@ -96380,8 +79355,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22967 components: - pos: 116.5,-4.5 @@ -96389,8 +79362,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22968 components: - pos: 116.5,-3.5 @@ -96398,8 +79369,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22969 components: - pos: 116.5,-2.5 @@ -96407,8 +79376,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22970 components: - pos: 116.5,-1.5 @@ -96416,8 +79383,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22971 components: - pos: 112.5,2.5 @@ -96425,8 +79390,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22972 components: - pos: 111.5,2.5 @@ -96434,8 +79397,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22973 components: - pos: 110.5,2.5 @@ -96443,8 +79404,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22974 components: - pos: 109.5,2.5 @@ -96452,8 +79411,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22975 components: - pos: 108.5,2.5 @@ -96461,8 +79418,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22976 components: - pos: 107.5,2.5 @@ -96470,8 +79425,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22977 components: - pos: 106.5,2.5 @@ -96479,8 +79432,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22978 components: - pos: 105.5,2.5 @@ -96488,8 +79439,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22979 components: - pos: 104.5,2.5 @@ -96497,15 +79446,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23959 components: - pos: 114.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23960 components: - pos: 114.5,-26.5 @@ -96513,22 +79458,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23961 components: - pos: 114.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23962 components: - pos: 113.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 23963 components: - pos: 112.5,-24.5 @@ -96536,8 +79475,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24151 components: - pos: 68.5,-0.5 @@ -96545,8 +79482,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24152 components: - pos: 67.5,-0.5 @@ -96554,8 +79489,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24153 components: - pos: 66.5,-0.5 @@ -96563,8 +79496,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24154 components: - pos: 65.5,-0.5 @@ -96572,8 +79503,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24155 components: - pos: 64.5,-0.5 @@ -96581,8 +79510,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24156 components: - pos: 64.5,-1.5 @@ -96590,8 +79517,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24157 components: - pos: 64.5,-2.5 @@ -96599,8 +79524,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24158 components: - pos: 64.5,-3.5 @@ -96608,8 +79531,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24159 components: - pos: 64.5,-4.5 @@ -96617,8 +79538,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24160 components: - pos: 64.5,-5.5 @@ -96626,8 +79545,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24161 components: - pos: 65.5,-5.5 @@ -96635,8 +79552,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24162 components: - pos: 66.5,-5.5 @@ -96644,8 +79559,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24163 components: - pos: 67.5,-5.5 @@ -96653,43 +79566,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24164 components: - pos: 67.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24165 components: - pos: 67.5,-7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24166 components: - pos: 67.5,-8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24167 components: - pos: 68.5,-8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24168 components: - pos: 69.5,-8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24169 components: - pos: 69.5,-7.5 @@ -96697,43 +79598,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24170 components: - pos: 69.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24171 components: - pos: 70.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24172 components: - pos: 71.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24173 components: - pos: 72.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24174 components: - pos: 72.5,-8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24175 components: - pos: 72.5,-7.5 @@ -96741,8 +79630,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24176 components: - pos: 70.5,-8.5 @@ -96750,8 +79637,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24177 components: - pos: 70.5,-10.5 @@ -96759,15 +79644,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24178 components: - pos: 73.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24179 components: - pos: 74.5,-9.5 @@ -96775,8 +79656,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24180 components: - pos: 74.5,-8.5 @@ -96784,8 +79663,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24181 components: - pos: 74.5,-10.5 @@ -96793,71 +79670,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24182 components: - pos: 67.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24183 components: - pos: 66.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24184 components: - pos: 65.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24185 components: - pos: 64.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24186 components: - pos: 63.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24187 components: - pos: 62.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24188 components: - pos: 61.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24189 components: - pos: 60.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24190 components: - pos: 60.5,-8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24191 components: - pos: 61.5,-8.5 @@ -96865,8 +79722,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24192 components: - pos: 59.5,-8.5 @@ -96874,22 +79729,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24193 components: - pos: 60.5,-7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24194 components: - pos: 60.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24195 components: - pos: 61.5,-6.5 @@ -96897,8 +79746,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24196 components: - pos: 62.5,-6.5 @@ -96906,8 +79753,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24197 components: - pos: 59.5,-6.5 @@ -96915,29 +79760,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24198 components: - pos: 67.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24199 components: - pos: 67.5,-11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24200 components: - pos: 67.5,-12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24201 components: - pos: 67.5,-13.5 @@ -96945,8 +79782,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24202 components: - pos: 69.5,-13.5 @@ -96954,29 +79789,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24203 components: - pos: 69.5,-12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24204 components: - pos: 69.5,-11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24205 components: - pos: 69.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24209 components: - pos: 66.5,-17.5 @@ -96984,64 +79811,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24210 components: - pos: 66.5,-18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24211 components: - pos: 67.5,-18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24212 components: - pos: 68.5,-18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24213 components: - pos: 68.5,-17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24214 components: - pos: 68.5,-16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24215 components: - pos: 68.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24216 components: - pos: 68.5,-14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24217 components: - pos: 68.5,-13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24220 components: - pos: 31.5,-10.5 @@ -97049,36 +79858,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24221 components: - pos: 38.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24222 components: - pos: 37.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24223 components: - pos: 37.5,-14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24224 components: - pos: 37.5,-13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24225 components: - pos: 37.5,-12.5 @@ -97086,8 +79885,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24226 components: - pos: 37.5,-11.5 @@ -97095,15 +79892,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24258 components: - pos: 96.5,-38.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24330 components: - pos: 101.5,-43.5 @@ -97111,8 +79904,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24331 components: - pos: 101.5,-42.5 @@ -97120,8 +79911,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24332 components: - pos: 100.5,-42.5 @@ -97129,8 +79918,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24333 components: - pos: 102.5,-42.5 @@ -97138,8 +79925,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24334 components: - pos: 99.5,-42.5 @@ -97147,8 +79932,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24335 components: - pos: 98.5,-42.5 @@ -97156,8 +79939,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24336 components: - pos: 97.5,-42.5 @@ -97165,8 +79946,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24337 components: - pos: 97.5,-41.5 @@ -97174,43 +79953,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24338 components: - pos: 97.5,-40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24339 components: - pos: 96.5,-35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24340 components: - pos: 96.5,-36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24341 components: - pos: 96.5,-37.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24342 components: - pos: 96.5,-39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24343 components: - pos: 97.5,-39.5 @@ -97218,22 +79985,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24345 components: - pos: 97.5,-33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24346 components: - pos: 97.5,-32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24347 components: - pos: 97.5,-31.5 @@ -97241,8 +80002,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24348 components: - pos: 96.5,-30.5 @@ -97250,8 +80009,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24349 components: - pos: 96.5,-29.5 @@ -97259,8 +80016,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24350 components: - pos: 95.5,-30.5 @@ -97268,8 +80023,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24351 components: - pos: 94.5,-30.5 @@ -97277,8 +80030,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24352 components: - pos: 93.5,-30.5 @@ -97286,8 +80037,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24353 components: - pos: 92.5,-30.5 @@ -97295,8 +80044,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24354 components: - pos: 91.5,-30.5 @@ -97304,15 +80051,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24355 components: - pos: 90.5,-30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24356 components: - pos: 89.5,-30.5 @@ -97320,8 +80063,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24357 components: - pos: 88.5,-30.5 @@ -97329,8 +80070,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24358 components: - pos: 87.5,-30.5 @@ -97338,8 +80077,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24359 components: - pos: 86.5,-30.5 @@ -97347,8 +80084,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24360 components: - pos: 84.5,-31.5 @@ -97356,8 +80091,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24361 components: - pos: 83.5,-31.5 @@ -97365,8 +80098,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24362 components: - pos: 82.5,-31.5 @@ -97374,8 +80105,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24363 components: - pos: 81.5,-31.5 @@ -97383,8 +80112,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24364 components: - pos: 80.5,-31.5 @@ -97392,50 +80119,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24365 components: - pos: 79.5,-31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24366 components: - pos: 78.5,-31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24367 components: - pos: 77.5,-31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24368 components: - pos: 76.5,-31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24369 components: - pos: 69.5,-27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24370 components: - pos: 68.5,-27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24372 components: - pos: 71.5,-28.5 @@ -97443,8 +80156,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24373 components: - pos: 72.5,-29.5 @@ -97452,8 +80163,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24374 components: - pos: 73.5,-30.5 @@ -97461,8 +80170,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24375 components: - pos: 74.5,-30.5 @@ -97470,8 +80177,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24376 components: - pos: 75.5,-30.5 @@ -97479,8 +80184,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24377 components: - pos: 76.5,-30.5 @@ -97488,15 +80191,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24378 components: - pos: 70.5,-27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24379 components: - pos: 70.5,-28.5 @@ -97504,43 +80203,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24381 components: - pos: 67.5,-27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24382 components: - pos: 67.5,-26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24383 components: - pos: 67.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24384 components: - pos: 68.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24385 components: - pos: 69.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24386 components: - pos: 70.5,-25.5 @@ -97548,15 +80235,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24387 components: - pos: 71.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24388 components: - pos: 72.5,-25.5 @@ -97564,43 +80247,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24389 components: - pos: 73.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24390 components: - pos: 74.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24391 components: - pos: 75.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24392 components: - pos: 76.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24393 components: - pos: 77.5,-25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24394 components: - pos: 78.5,-25.5 @@ -97608,92 +80279,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24395 components: - pos: 76.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24396 components: - pos: 76.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24397 components: - pos: 76.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24398 components: - pos: 76.5,-22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24399 components: - pos: 76.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24400 components: - pos: 76.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24401 components: - pos: 76.5,-19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24402 components: - pos: 76.5,-18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24403 components: - pos: 77.5,-18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24404 components: - pos: 78.5,-18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24405 components: - pos: 79.5,-18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24406 components: - pos: 80.5,-18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24407 components: - pos: 80.5,-17.5 @@ -97701,8 +80346,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24411 components: - pos: 78.5,-32.5 @@ -97710,15 +80353,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24412 components: - pos: 98.5,-33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24413 components: - pos: 96.5,-18.5 @@ -97726,15 +80365,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24414 components: - pos: 99.5,-33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24415 components: - pos: 99.5,-32.5 @@ -97742,8 +80377,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24416 components: - pos: 96.5,-19.5 @@ -97751,50 +80384,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24417 components: - pos: 96.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24418 components: - pos: 96.5,-21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24419 components: - pos: 96.5,-22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24420 components: - pos: 96.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24421 components: - pos: 97.5,-23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24422 components: - pos: 97.5,-24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24423 components: - pos: 97.5,-25.5 @@ -97802,8 +80421,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24424 components: - pos: 97.5,-26.5 @@ -97811,8 +80428,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24425 components: - pos: 97.5,-27.5 @@ -97820,15 +80435,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24426 components: - pos: 97.5,-28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24427 components: - pos: 97.5,-29.5 @@ -97836,8 +80447,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24428 components: - pos: 96.5,-31.5 @@ -97845,8 +80454,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24429 components: - pos: 85.5,-30.5 @@ -97854,8 +80461,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24430 components: - pos: 84.5,-30.5 @@ -97863,64 +80468,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24431 components: - pos: 96.5,-34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24432 components: - pos: 96.5,-33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24433 components: - pos: 95.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24434 components: - pos: 94.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24435 components: - pos: 93.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24436 components: - pos: 92.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24437 components: - pos: 91.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24438 components: - pos: 90.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24439 components: - pos: 89.5,-20.5 @@ -97928,15 +80515,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24440 components: - pos: 89.5,-19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24441 components: - pos: 88.5,-19.5 @@ -97944,43 +80527,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24442 components: - pos: 87.5,-19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24443 components: - pos: 86.5,-19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24444 components: - pos: 85.5,-19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24445 components: - pos: 84.5,-19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24446 components: - pos: 83.5,-19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24447 components: - pos: 83.5,-20.5 @@ -97988,162 +80559,116 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24448 components: - pos: 82.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24449 components: - pos: 81.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24450 components: - pos: 80.5,-20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24451 components: - pos: 80.5,-19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24894 components: - pos: 60.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24895 components: - pos: 59.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24896 components: - pos: 58.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24897 components: - pos: 57.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24898 components: - pos: 56.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24899 components: - pos: 55.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24900 components: - pos: 54.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24901 components: - pos: 53.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24902 components: - pos: 52.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24903 components: - pos: 51.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24904 components: - pos: 50.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24905 components: - pos: 50.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24906 components: - pos: 50.5,-8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24907 components: - pos: 50.5,-7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24908 components: - pos: 50.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24909 components: - pos: 50.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24910 components: - pos: 51.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24911 components: - pos: 52.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24912 components: - pos: 53.5,-5.5 @@ -98151,15 +80676,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24913 components: - pos: 51.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24914 components: - pos: 51.5,-3.5 @@ -98167,8 +80688,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24915 components: - pos: 51.5,-8.5 @@ -98176,8 +80695,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24916 components: - pos: 49.5,-8.5 @@ -98185,8 +80702,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24917 components: - pos: 48.5,-8.5 @@ -98194,15 +80709,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24918 components: - pos: 47.5,-8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24919 components: - pos: 46.5,-8.5 @@ -98210,15 +80721,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24920 components: - pos: 50.5,-3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24921 components: - pos: 49.5,-3.5 @@ -98226,8 +80733,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24922 components: - pos: 48.5,-3.5 @@ -98235,15 +80740,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24923 components: - pos: 47.5,-3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24924 components: - pos: 46.5,-3.5 @@ -98251,85 +80752,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24982 components: - pos: 33.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24983 components: - pos: 32.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24984 components: - pos: 31.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24985 components: - pos: 30.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24986 components: - pos: 29.5,-15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24987 components: - pos: 29.5,-14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24988 components: - pos: 29.5,-13.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24989 components: - pos: 29.5,-12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24990 components: - pos: 29.5,-11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24991 components: - pos: 30.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 24993 components: - pos: 29.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25201 components: - pos: 73.5,-29.5 @@ -98337,8 +80814,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25202 components: - pos: 71.5,-29.5 @@ -98346,29 +80821,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25560 components: - pos: 87.5,3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25561 components: - pos: 86.5,3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25562 components: - pos: 85.5,3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25563 components: - pos: 85.5,4.5 @@ -98376,71 +80843,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25564 components: - pos: 85.5,2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25565 components: - pos: 85.5,1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25566 components: - pos: 85.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25567 components: - pos: 84.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25568 components: - pos: 83.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25569 components: - pos: 82.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25570 components: - pos: 81.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25571 components: - pos: 80.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25572 components: - pos: 80.5,1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25573 components: - pos: 80.5,2.5 @@ -98448,71 +80895,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25574 components: - pos: 79.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25575 components: - pos: 78.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25576 components: - pos: 77.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25577 components: - pos: 76.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25578 components: - pos: 75.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25579 components: - pos: 74.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25580 components: - pos: 73.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25581 components: - pos: 73.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25582 components: - pos: 73.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25583 components: - pos: 74.5,-1.5 @@ -98520,8 +80947,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25584 components: - pos: 75.5,-1.5 @@ -98529,78 +80954,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25585 components: - pos: 83.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25586 components: - pos: 83.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25587 components: - pos: 83.5,-2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25588 components: - pos: 83.5,-3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25589 components: - pos: 83.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25590 components: - pos: 83.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25591 components: - pos: 84.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25592 components: - pos: 85.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25593 components: - pos: 86.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25594 components: - pos: 87.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25595 components: - pos: 88.5,-5.5 @@ -98608,36 +81011,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25596 components: - pos: 89.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25597 components: - pos: 89.5,-4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25598 components: - pos: 89.5,-3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25599 components: - pos: 89.5,-2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25600 components: - pos: 88.5,-2.5 @@ -98645,29 +81038,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25601 components: - pos: 90.5,-2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25602 components: - pos: 90.5,-1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25603 components: - pos: 90.5,-0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25604 components: - pos: 90.5,0.5 @@ -98675,57 +81060,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25605 components: - pos: 90.5,1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25606 components: - pos: 90.5,2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25607 components: - pos: 90.5,3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25608 components: - pos: 90.5,4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25609 components: - pos: 90.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25610 components: - pos: 89.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25611 components: - pos: 88.5,5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25612 components: - pos: 88.5,4.5 @@ -98733,64 +81102,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25613 components: - pos: 89.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25614 components: - pos: 89.5,-7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25615 components: - pos: 89.5,-8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25616 components: - pos: 89.5,-9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25617 components: - pos: 89.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25618 components: - pos: 90.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25619 components: - pos: 91.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25620 components: - pos: 92.5,-10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25621 components: - pos: 92.5,-9.5 @@ -98798,29 +81149,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25622 components: - pos: 83.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25623 components: - pos: 83.5,-7.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25624 components: - pos: 83.5,-8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25625 components: - pos: 83.5,-9.5 @@ -98828,8 +81171,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25980 components: - pos: 101.5,0.5 @@ -98837,8 +81178,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25981 components: - pos: 100.5,0.5 @@ -98846,8 +81185,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25982 components: - pos: 99.5,0.5 @@ -98855,8 +81192,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25983 components: - pos: 98.5,0.5 @@ -98864,15 +81199,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25986 components: - pos: 95.5,0.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 25987 components: - pos: 94.5,0.5 @@ -98880,8 +81211,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25988 components: - pos: 93.5,0.5 @@ -98889,8 +81218,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25989 components: - pos: 92.5,0.5 @@ -98898,8 +81225,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25990 components: - pos: 91.5,0.5 @@ -98907,8 +81232,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26789 components: - pos: 97.5,-43.5 @@ -98916,8 +81239,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26790 components: - pos: 97.5,-44.5 @@ -98925,8 +81246,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26791 components: - pos: 97.5,-45.5 @@ -98934,8 +81253,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26792 components: - pos: 97.5,-46.5 @@ -98943,8 +81260,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26793 components: - pos: 98.5,-46.5 @@ -98952,8 +81267,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26794 components: - pos: 99.5,-46.5 @@ -98961,8 +81274,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26795 components: - pos: 100.5,-46.5 @@ -98970,15 +81281,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26796 components: - pos: 100.5,-45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 26797 components: - pos: 100.5,-44.5 @@ -98986,8 +81293,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27378 components: - pos: 107.5,12.5 @@ -98995,8 +81300,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27379 components: - pos: 107.5,11.5 @@ -99004,8 +81307,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27380 components: - pos: 107.5,10.5 @@ -99013,8 +81314,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27381 components: - pos: 107.5,9.5 @@ -99022,8 +81321,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27382 components: - pos: 107.5,8.5 @@ -99031,8 +81328,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27383 components: - pos: 108.5,8.5 @@ -99040,8 +81335,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27384 components: - pos: 109.5,8.5 @@ -99049,8 +81342,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27385 components: - pos: 110.5,8.5 @@ -99058,8 +81349,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27386 components: - pos: 111.5,8.5 @@ -99067,8 +81356,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27387 components: - pos: 112.5,8.5 @@ -99076,8 +81363,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27388 components: - pos: 113.5,8.5 @@ -99085,50 +81370,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27389 components: - pos: 113.5,9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27390 components: - pos: 113.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27391 components: - pos: 113.5,11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27392 components: - pos: 114.5,11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27393 components: - pos: 115.5,11.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27394 components: - pos: 115.5,12.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27395 components: - pos: 115.5,13.5 @@ -99136,8 +81407,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27396 components: - pos: 114.5,8.5 @@ -99145,8 +81414,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27397 components: - pos: 114.5,7.5 @@ -99154,8 +81421,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27398 components: - pos: 114.5,6.5 @@ -99163,8 +81428,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27399 components: - pos: 115.5,6.5 @@ -99172,8 +81435,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27400 components: - pos: 116.5,6.5 @@ -99181,8 +81442,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27401 components: - pos: 117.5,6.5 @@ -99190,8 +81449,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27402 components: - pos: 118.5,6.5 @@ -99199,8 +81456,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27403 components: - pos: 119.5,6.5 @@ -99208,8 +81463,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27404 components: - pos: 119.5,5.5 @@ -99217,8 +81470,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27405 components: - pos: 119.5,4.5 @@ -99226,8 +81477,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27406 components: - pos: 119.5,3.5 @@ -99235,8 +81484,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27407 components: - pos: 119.5,2.5 @@ -99244,8 +81491,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27408 components: - pos: 119.5,1.5 @@ -99253,8 +81498,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27409 components: - pos: 119.5,0.5 @@ -99262,8 +81505,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27410 components: - pos: 119.5,-0.5 @@ -99271,8 +81512,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27411 components: - pos: 119.5,-1.5 @@ -99280,22 +81519,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27412 components: - pos: 120.5,1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27413 components: - pos: 121.5,1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27414 components: - pos: 122.5,1.5 @@ -99303,29 +81536,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27415 components: - pos: 123.5,1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27416 components: - pos: 123.5,2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27417 components: - pos: 123.5,3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27418 components: - pos: 123.5,4.5 @@ -99333,8 +81558,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27419 components: - pos: 119.5,-2.5 @@ -99342,8 +81565,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27420 components: - pos: 119.5,-3.5 @@ -99351,8 +81572,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27421 components: - pos: 119.5,-4.5 @@ -99360,8 +81579,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27422 components: - pos: 119.5,-5.5 @@ -99369,8 +81586,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27423 components: - pos: 119.5,-6.5 @@ -99378,8 +81593,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27424 components: - pos: 119.5,-7.5 @@ -99387,8 +81600,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27425 components: - pos: 120.5,-7.5 @@ -99396,8 +81607,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27426 components: - pos: 121.5,-7.5 @@ -99405,22 +81614,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27427 components: - pos: 121.5,-6.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27428 components: - pos: 121.5,-5.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27429 components: - pos: 121.5,-4.5 @@ -99428,8 +81631,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27541 components: - pos: 91.5,31.5 @@ -99437,99 +81638,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27542 components: - pos: 91.5,30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27543 components: - pos: 91.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27544 components: - pos: 92.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27545 components: - pos: 93.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27546 components: - pos: 94.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27547 components: - pos: 95.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27548 components: - pos: 96.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27549 components: - pos: 97.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27550 components: - pos: 98.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27551 components: - pos: 99.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27552 components: - pos: 99.5,30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27553 components: - pos: 99.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27554 components: - pos: 100.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27592 components: - pos: 89.5,29.5 @@ -99537,15 +81710,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27593 components: - pos: 90.5,30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27594 components: - pos: 89.5,30.5 @@ -99553,57 +81722,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 27602 components: - pos: 88.5,30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27603 components: - pos: 87.5,30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27604 components: - pos: 87.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27605 components: - pos: 87.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27606 components: - pos: 87.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27607 components: - pos: 87.5,34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27608 components: - pos: 86.5,34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 27609 components: - pos: 85.5,34.5 @@ -99611,8 +81764,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28349 components: - pos: 80.5,23.5 @@ -99620,85 +81771,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28350 components: - pos: 81.5,23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28351 components: - pos: 82.5,23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28352 components: - pos: 82.5,24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28353 components: - pos: 82.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28354 components: - pos: 82.5,26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28355 components: - pos: 82.5,27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28356 components: - pos: 82.5,28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28357 components: - pos: 82.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28358 components: - pos: 81.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28359 components: - pos: 80.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28360 components: - pos: 79.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28361 components: - pos: 78.5,29.5 @@ -99706,8 +81833,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28362 components: - pos: 77.5,29.5 @@ -99715,8 +81840,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28363 components: - pos: 76.5,29.5 @@ -99724,8 +81847,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28364 components: - pos: 75.5,29.5 @@ -99733,8 +81854,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28365 components: - pos: 74.5,29.5 @@ -99742,8 +81861,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28366 components: - pos: 74.5,28.5 @@ -99751,8 +81868,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28367 components: - pos: 74.5,27.5 @@ -99760,8 +81875,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28368 components: - pos: 74.5,26.5 @@ -99769,8 +81882,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28369 components: - pos: 74.5,25.5 @@ -99778,8 +81889,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28370 components: - pos: 74.5,24.5 @@ -99787,8 +81896,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28371 components: - pos: 74.5,23.5 @@ -99796,8 +81903,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28372 components: - pos: 74.5,22.5 @@ -99805,8 +81910,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28373 components: - pos: 73.5,22.5 @@ -99814,8 +81917,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28374 components: - pos: 72.5,22.5 @@ -99823,8 +81924,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28375 components: - pos: 71.5,22.5 @@ -99832,57 +81931,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28376 components: - pos: 77.5,30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28377 components: - pos: 77.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28378 components: - pos: 77.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28379 components: - pos: 77.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28380 components: - pos: 77.5,34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28381 components: - pos: 77.5,35.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28382 components: - pos: 77.5,36.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28383 components: - pos: 76.5,36.5 @@ -99890,8 +81973,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28384 components: - pos: 73.5,24.5 @@ -99899,8 +81980,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28385 components: - pos: 72.5,24.5 @@ -99908,8 +81987,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28386 components: - pos: 71.5,24.5 @@ -99917,8 +81994,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28387 components: - pos: 70.5,24.5 @@ -99926,8 +82001,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28388 components: - pos: 69.5,24.5 @@ -99935,8 +82008,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28389 components: - pos: 68.5,24.5 @@ -99944,71 +82015,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28390 components: - pos: 69.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28391 components: - pos: 69.5,26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28392 components: - pos: 69.5,27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28393 components: - pos: 69.5,28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28394 components: - pos: 68.5,28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28395 components: - pos: 67.5,28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28396 components: - pos: 66.5,28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28397 components: - pos: 66.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28398 components: - pos: 66.5,30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28399 components: - pos: 67.5,30.5 @@ -100016,8 +82067,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28400 components: - pos: 67.5,24.5 @@ -100025,8 +82074,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28401 components: - pos: 66.5,24.5 @@ -100034,8 +82081,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28402 components: - pos: 65.5,24.5 @@ -100043,8 +82088,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28403 components: - pos: 64.5,24.5 @@ -100052,8 +82095,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28404 components: - pos: 63.5,24.5 @@ -100061,8 +82102,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28405 components: - pos: 62.5,24.5 @@ -100070,8 +82109,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28406 components: - pos: 61.5,24.5 @@ -100079,8 +82116,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28407 components: - pos: 60.5,24.5 @@ -100088,8 +82123,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28408 components: - pos: 59.5,24.5 @@ -100097,8 +82130,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28409 components: - pos: 58.5,24.5 @@ -100106,134 +82137,96 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28410 components: - pos: 57.5,24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28411 components: - pos: 56.5,24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28412 components: - pos: 55.5,24.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28413 components: - pos: 55.5,25.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28414 components: - pos: 55.5,26.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28415 components: - pos: 55.5,27.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28416 components: - pos: 55.5,28.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28417 components: - pos: 55.5,29.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28418 components: - pos: 55.5,30.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28419 components: - pos: 55.5,31.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28420 components: - pos: 55.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28421 components: - pos: 56.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28422 components: - pos: 57.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28423 components: - pos: 58.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28424 components: - pos: 59.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28425 components: - pos: 60.5,32.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28426 components: - pos: 60.5,33.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28427 components: - pos: 60.5,34.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28428 components: - pos: 60.5,35.5 @@ -100241,8 +82234,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28429 components: - pos: 60.5,19.5 @@ -100250,22 +82241,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28430 components: - pos: 61.5,19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28431 components: - pos: 61.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28432 components: - pos: 61.5,21.5 @@ -100273,8 +82258,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28433 components: - pos: 61.5,22.5 @@ -100282,8 +82265,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28434 components: - pos: 61.5,23.5 @@ -100291,8 +82272,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28435 components: - pos: 69.5,17.5 @@ -100300,57 +82279,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28436 components: - pos: 69.5,16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28437 components: - pos: 70.5,16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28438 components: - pos: 71.5,16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28439 components: - pos: 72.5,16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28440 components: - pos: 73.5,16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28441 components: - pos: 74.5,16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28442 components: - pos: 74.5,17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28443 components: - pos: 74.5,18.5 @@ -100358,8 +82321,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28444 components: - pos: 74.5,19.5 @@ -100367,15 +82328,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28445 components: - pos: 74.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28446 components: - pos: 74.5,21.5 @@ -100383,8 +82340,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28664 components: - pos: 106.5,8.5 @@ -100392,8 +82347,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28665 components: - pos: 105.5,8.5 @@ -100401,8 +82354,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28666 components: - pos: 104.5,8.5 @@ -100410,8 +82361,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28667 components: - pos: 103.5,8.5 @@ -100419,8 +82368,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28668 components: - pos: 102.5,8.5 @@ -100428,8 +82375,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28669 components: - pos: 101.5,8.5 @@ -100437,8 +82382,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28670 components: - pos: 100.5,8.5 @@ -100446,8 +82389,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28671 components: - pos: 100.5,9.5 @@ -100455,8 +82396,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28672 components: - pos: 100.5,10.5 @@ -100464,8 +82403,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28673 components: - pos: 99.5,10.5 @@ -100473,8 +82410,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28674 components: - pos: 98.5,10.5 @@ -100482,8 +82417,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28675 components: - pos: 98.5,11.5 @@ -100491,8 +82424,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28676 components: - pos: 98.5,12.5 @@ -100500,8 +82431,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28677 components: - pos: 98.5,13.5 @@ -100509,8 +82438,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28678 components: - pos: 98.5,14.5 @@ -100518,8 +82445,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28679 components: - pos: 97.5,14.5 @@ -100527,8 +82452,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28680 components: - pos: 96.5,14.5 @@ -100536,92 +82459,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28681 components: - pos: 95.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28682 components: - pos: 94.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28683 components: - pos: 93.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28684 components: - pos: 92.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28685 components: - pos: 91.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28686 components: - pos: 90.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28687 components: - pos: 89.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28688 components: - pos: 88.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28689 components: - pos: 87.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28690 components: - pos: 86.5,14.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28691 components: - pos: 86.5,15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28692 components: - pos: 86.5,16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28693 components: - pos: 86.5,17.5 @@ -100629,71 +82526,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28694 components: - pos: 92.5,15.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28695 components: - pos: 92.5,16.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28696 components: - pos: 92.5,17.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28697 components: - pos: 92.5,18.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28698 components: - pos: 92.5,19.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28699 components: - pos: 92.5,20.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28700 components: - pos: 92.5,21.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28701 components: - pos: 92.5,22.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28702 components: - pos: 92.5,23.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 28703 components: - pos: 92.5,24.5 @@ -100701,92 +82578,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29891 components: - pos: 113.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29892 components: - pos: 113.5,42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29895 components: - pos: 112.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29896 components: - pos: 111.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29897 components: - pos: 110.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29898 components: - pos: 109.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29899 components: - pos: 108.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29900 components: - pos: 107.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29901 components: - pos: 106.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29902 components: - pos: 105.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29903 components: - pos: 104.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29904 components: - pos: 104.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29905 components: - pos: 104.5,45.5 @@ -100794,134 +82645,96 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29906 components: - pos: 103.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29907 components: - pos: 102.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29908 components: - pos: 101.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29909 components: - pos: 101.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29910 components: - pos: 101.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29911 components: - pos: 101.5,47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29912 components: - pos: 101.5,48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29913 components: - pos: 101.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29914 components: - pos: 101.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29915 components: - pos: 101.5,51.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29916 components: - pos: 101.5,52.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29917 components: - pos: 101.5,53.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29918 components: - pos: 101.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29919 components: - pos: 101.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29920 components: - pos: 102.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29921 components: - pos: 103.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29922 components: - pos: 104.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29923 components: - pos: 104.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29924 components: - pos: 104.5,57.5 @@ -100929,50 +82742,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29925 components: - pos: 100.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29926 components: - pos: 99.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29927 components: - pos: 98.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29928 components: - pos: 97.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29929 components: - pos: 96.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29930 components: - pos: 95.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29931 components: - pos: 94.5,49.5 @@ -100980,148 +82779,106 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29932 components: - pos: 102.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29933 components: - pos: 103.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29934 components: - pos: 104.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29935 components: - pos: 105.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29936 components: - pos: 106.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29937 components: - pos: 107.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29938 components: - pos: 108.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29939 components: - pos: 109.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29940 components: - pos: 110.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29941 components: - pos: 111.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29942 components: - pos: 112.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29943 components: - pos: 113.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29944 components: - pos: 114.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29945 components: - pos: 115.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29946 components: - pos: 116.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29947 components: - pos: 117.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29948 components: - pos: 118.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29949 components: - pos: 119.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29950 components: - pos: 120.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29951 components: - pos: 121.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29952 components: - pos: 122.5,49.5 @@ -101129,22 +82886,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 29953 components: - pos: 123.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29954 components: - pos: 124.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 29955 components: - pos: 125.5,49.5 @@ -101152,22 +82903,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30397 components: - pos: 91.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30398 components: - pos: 91.5,48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30399 components: - pos: 92.5,48.5 @@ -101175,99 +82920,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30400 components: - pos: 90.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30401 components: - pos: 89.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30402 components: - pos: 89.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30403 components: - pos: 89.5,51.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30404 components: - pos: 89.5,52.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30405 components: - pos: 89.5,53.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30406 components: - pos: 89.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30407 components: - pos: 89.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30408 components: - pos: 89.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30409 components: - pos: 88.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30410 components: - pos: 87.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30411 components: - pos: 86.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30412 components: - pos: 85.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30413 components: - pos: 85.5,57.5 @@ -101275,71 +82992,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30414 components: - pos: 85.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30415 components: - pos: 84.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30416 components: - pos: 83.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30417 components: - pos: 82.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30418 components: - pos: 81.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30419 components: - pos: 80.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30420 components: - pos: 79.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30421 components: - pos: 78.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30422 components: - pos: 78.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30423 components: - pos: 78.5,53.5 @@ -101347,8 +83044,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30424 components: - pos: 79.5,53.5 @@ -101356,36 +83051,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30425 components: - pos: 79.5,52.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30426 components: - pos: 79.5,51.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30427 components: - pos: 79.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30428 components: - pos: 79.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30429 components: - pos: 79.5,48.5 @@ -101393,36 +83078,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30430 components: - pos: 80.5,48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30431 components: - pos: 80.5,47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30432 components: - pos: 81.5,47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30433 components: - pos: 82.5,47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30434 components: - pos: 82.5,48.5 @@ -101430,260 +83105,186 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30435 components: - pos: 89.5,48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30436 components: - pos: 89.5,47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30437 components: - pos: 89.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30438 components: - pos: 89.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30439 components: - pos: 89.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30440 components: - pos: 89.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30441 components: - pos: 89.5,42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30442 components: - pos: 89.5,41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30443 components: - pos: 89.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30444 components: - pos: 88.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30445 components: - pos: 87.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30446 components: - pos: 86.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30447 components: - pos: 85.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30448 components: - pos: 84.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30449 components: - pos: 83.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30450 components: - pos: 82.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30451 components: - pos: 81.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30452 components: - pos: 80.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30453 components: - pos: 79.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30454 components: - pos: 78.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30455 components: - pos: 77.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30456 components: - pos: 76.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30457 components: - pos: 75.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30458 components: - pos: 74.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30460 components: - pos: 73.5,41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30461 components: - pos: 73.5,42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30462 components: - pos: 73.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30463 components: - pos: 73.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30465 components: - pos: 74.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30466 components: - pos: 75.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30467 components: - pos: 76.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30468 components: - pos: 77.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30469 components: - pos: 78.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30470 components: - pos: 79.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30471 components: - pos: 80.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30472 components: - pos: 80.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30584 components: - pos: 74.5,41.5 @@ -101691,15 +83292,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30585 components: - pos: 72.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30586 components: - pos: 74.5,44.5 @@ -101707,8 +83304,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30587 components: - pos: 71.5,44.5 @@ -101716,15 +83311,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30588 components: - pos: 72.5,41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30589 components: - pos: 71.5,41.5 @@ -101732,8 +83323,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30790 components: - pos: 57.5,51.5 @@ -101741,8 +83330,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30791 components: - pos: 57.5,50.5 @@ -101750,8 +83337,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30792 components: - pos: 57.5,49.5 @@ -101759,162 +83344,116 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30793 components: - pos: 57.5,48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30794 components: - pos: 57.5,47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30795 components: - pos: 57.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30796 components: - pos: 58.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30797 components: - pos: 59.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30798 components: - pos: 60.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30799 components: - pos: 61.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30800 components: - pos: 62.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30801 components: - pos: 63.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30802 components: - pos: 64.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30803 components: - pos: 65.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30804 components: - pos: 65.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30805 components: - pos: 67.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30806 components: - pos: 68.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30807 components: - pos: 69.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30808 components: - pos: 70.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30809 components: - pos: 71.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30810 components: - pos: 72.5,46.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30811 components: - pos: 72.5,47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30812 components: - pos: 73.5,47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30813 components: - pos: 74.5,47.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30814 components: - pos: 74.5,48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30815 components: - pos: 75.5,48.5 @@ -101922,85 +83461,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30816 components: - pos: 73.5,48.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30817 components: - pos: 73.5,49.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30818 components: - pos: 73.5,50.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30819 components: - pos: 73.5,51.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30820 components: - pos: 73.5,52.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30821 components: - pos: 73.5,53.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30822 components: - pos: 73.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30823 components: - pos: 73.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30824 components: - pos: 73.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30825 components: - pos: 73.5,57.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30826 components: - pos: 73.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30827 components: - pos: 74.5,58.5 @@ -102008,71 +83523,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30828 components: - pos: 72.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30829 components: - pos: 71.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30830 components: - pos: 70.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30831 components: - pos: 69.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30832 components: - pos: 68.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30833 components: - pos: 67.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30834 components: - pos: 66.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30835 components: - pos: 65.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30836 components: - pos: 65.5,55.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30837 components: - pos: 66.5,55.5 @@ -102080,64 +83575,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30838 components: - pos: 64.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30839 components: - pos: 63.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30840 components: - pos: 62.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30841 components: - pos: 61.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30842 components: - pos: 60.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30843 components: - pos: 59.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30844 components: - pos: 58.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30845 components: - pos: 57.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30846 components: - pos: 56.5,56.5 @@ -102145,15 +83622,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30847 components: - pos: 55.5,56.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30848 components: - pos: 55.5,55.5 @@ -102161,29 +83634,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30849 components: - pos: 55.5,54.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30850 components: - pos: 55.5,53.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30851 components: - pos: 55.5,52.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30852 components: - pos: 55.5,51.5 @@ -102191,8 +83656,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30853 components: - pos: 55.5,50.5 @@ -102200,8 +83663,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30854 components: - pos: 56.5,50.5 @@ -102209,8 +83670,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30855 components: - pos: 55.5,49.5 @@ -102218,8 +83677,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30856 components: - pos: 55.5,48.5 @@ -102227,8 +83684,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30857 components: - pos: 55.5,47.5 @@ -102236,8 +83691,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30858 components: - pos: 55.5,46.5 @@ -102245,8 +83698,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30859 components: - pos: 55.5,45.5 @@ -102254,43 +83705,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30860 components: - pos: 55.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30861 components: - pos: 55.5,43.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30862 components: - pos: 55.5,42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30863 components: - pos: 56.5,42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30864 components: - pos: 57.5,42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30866 components: - pos: 58.5,43.5 @@ -102298,8 +83737,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30867 components: - pos: 58.5,43.5 @@ -102307,22 +83744,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30868 components: - pos: 58.5,44.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30869 components: - pos: 58.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30870 components: - pos: 57.5,41.5 @@ -102330,8 +83761,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30871 components: - pos: 58.5,41.5 @@ -102339,8 +83768,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30872 components: - pos: 59.5,41.5 @@ -102348,8 +83775,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30873 components: - pos: 59.5,43.5 @@ -102357,8 +83782,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30874 components: - pos: 60.5,43.5 @@ -102366,36 +83789,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30876 components: - pos: 60.5,42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30877 components: - pos: 61.5,42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30878 components: - pos: 59.5,42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30879 components: - pos: 63.5,42.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30880 components: - pos: 64.5,43.5 @@ -102403,8 +83816,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30881 components: - pos: 63.5,43.5 @@ -102412,8 +83823,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30882 components: - pos: 62.5,43.5 @@ -102421,8 +83830,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30883 components: - pos: 63.5,41.5 @@ -102430,8 +83837,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30884 components: - pos: 62.5,41.5 @@ -102439,8 +83844,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30885 components: - pos: 61.5,41.5 @@ -102448,8 +83851,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30936 components: - pos: 51.5,41.5 @@ -102457,71 +83858,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 30937 components: - pos: 51.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30938 components: - pos: 51.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30939 components: - pos: 52.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30940 components: - pos: 53.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30941 components: - pos: 54.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30942 components: - pos: 55.5,39.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30943 components: - pos: 55.5,40.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 30944 components: - pos: 55.5,41.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31130 components: - pos: 67.5,45.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31970 components: - pos: -35.5,-0.5 @@ -102529,8 +83910,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31971 components: - pos: -35.5,0.5 @@ -102538,8 +83917,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31972 components: - pos: -35.5,1.5 @@ -102547,8 +83924,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31973 components: - pos: -35.5,2.5 @@ -102556,15 +83931,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31974 components: - pos: -35.5,3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31975 components: - pos: -35.5,4.5 @@ -102572,8 +83943,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31976 components: - pos: -35.5,5.5 @@ -102581,8 +83950,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31977 components: - pos: -35.5,6.5 @@ -102590,8 +83957,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31978 components: - pos: -35.5,7.5 @@ -102599,29 +83964,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 31979 components: - pos: -35.5,8.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31980 components: - pos: -35.5,9.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31981 components: - pos: -35.5,10.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 31982 components: - pos: -35.5,11.5 @@ -102629,36 +83986,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32799 components: - pos: 95.5,1.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32800 components: - pos: 95.5,2.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32801 components: - pos: 95.5,3.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32802 components: - pos: 95.5,4.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 32803 components: - pos: 96.5,4.5 @@ -102666,8 +84013,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32825 components: - pos: 31.5,66.5 @@ -102675,8 +84020,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32826 components: - pos: 30.5,66.5 @@ -102684,8 +84027,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32827 components: - pos: 29.5,66.5 @@ -102693,8 +84034,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32828 components: - pos: 28.5,66.5 @@ -102702,8 +84041,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32829 components: - pos: 27.5,66.5 @@ -102711,8 +84048,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32830 components: - pos: 26.5,66.5 @@ -102720,8 +84055,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32831 components: - pos: 25.5,66.5 @@ -102729,8 +84062,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32832 components: - pos: 24.5,66.5 @@ -102738,8 +84069,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32833 components: - pos: 23.5,66.5 @@ -102747,8 +84076,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32834 components: - pos: 22.5,66.5 @@ -102756,8 +84083,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32835 components: - pos: 22.5,67.5 @@ -102765,8 +84090,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32836 components: - pos: 22.5,68.5 @@ -102774,8 +84097,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 32837 components: - pos: 22.5,69.5 @@ -102783,8 +84104,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 33746 components: - pos: 31.5,56.5 @@ -102792,8 +84111,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34018 components: - pos: 55.5,57.5 @@ -102801,22 +84118,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34019 components: - pos: 55.5,58.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34020 components: - pos: 55.5,59.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34021 components: - pos: 55.5,60.5 @@ -102824,15 +84135,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34022 components: - pos: 55.5,61.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34023 components: - pos: 55.5,62.5 @@ -102840,15 +84147,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34024 components: - pos: 55.5,63.5 parent: 13329 type: Transform - - fixtures: {} - type: Fixtures - uid: 34025 components: - pos: 54.5,63.5 @@ -102856,8 +84159,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34026 components: - pos: 54.5,64.5 @@ -102865,8 +84166,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 34027 components: - pos: 54.5,65.5 @@ -102874,8 +84173,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 35305 components: - pos: 98.5,1.5 @@ -102883,8 +84180,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 35391 components: - pos: 102.5,-11.5 @@ -102892,8 +84187,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 35392 components: - pos: 114.5,-11.5 @@ -102901,8 +84194,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 35393 components: - pos: 114.5,0.5 @@ -102910,8 +84201,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 35394 components: - pos: 102.5,0.5 @@ -102919,8 +84208,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 35395 components: - pos: 102.5,1.5 @@ -102928,8 +84215,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 35396 components: - pos: 114.5,1.5 @@ -102937,8 +84222,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 35397 components: - pos: 115.5,0.5 @@ -102946,8 +84229,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 35398 components: - pos: 115.5,-11.5 @@ -102955,8 +84236,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 35399 components: - pos: 114.5,-12.5 @@ -102964,8 +84243,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 35400 components: - pos: 102.5,-12.5 @@ -102973,8 +84250,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 35401 components: - pos: 101.5,-11.5 @@ -102982,8 +84257,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - proto: CableMVStack entities: - uid: 26655 @@ -119216,6 +100489,28 @@ entities: - pos: 29.491692,-22.491154 parent: 13329 type: Transform +- proto: ClothingHeadBandRed + entities: + - uid: 34062 + components: + - pos: 33.403896,58.463535 + parent: 13329 + type: Transform + - uid: 34078 + components: + - pos: 33.435146,58.088535 + parent: 13329 + type: Transform + - uid: 35252 + components: + - pos: 33.685146,57.94791 + parent: 13329 + type: Transform + - uid: 35253 + components: + - pos: 33.685146,58.276035 + parent: 13329 + type: Transform - proto: ClothingHeadFishCap entities: - uid: 34238 @@ -140145,6 +121440,29 @@ entities: - pos: 58.657917,-17.2381 parent: 13329 type: Transform +- proto: ForkPlastic + entities: + - uid: 15468 + components: + - pos: -12.641854,22.481508 + parent: 13329 + type: Transform + - nextSound: 101.5948546 + type: EmitSoundOnCollide + - uid: 16625 + components: + - pos: -12.641854,22.481508 + parent: 13329 + type: Transform + - nextSound: 101.8160562 + type: EmitSoundOnCollide + - uid: 16626 + components: + - pos: -12.641854,22.481508 + parent: 13329 + type: Transform + - nextSound: 102.0502686 + type: EmitSoundOnCollide - proto: GalaxythistleSeeds entities: - uid: 1788 @@ -188739,28 +170057,6 @@ entities: - pos: 37.581806,-4.4282417 parent: 13329 type: Transform -- proto: ClothingHeadBandRed - entities: - - uid: 34062 - components: - - pos: 33.403896,58.463535 - parent: 13329 - type: Transform - - uid: 34078 - components: - - pos: 33.435146,58.088535 - parent: 13329 - type: Transform - - uid: 35252 - components: - - pos: 33.685146,57.94791 - parent: 13329 - type: Transform - - uid: 35253 - components: - - pos: 33.685146,58.276035 - parent: 13329 - type: Transform - proto: HighSecArmoryLocked entities: - uid: 8647 @@ -189520,6 +170816,29 @@ entities: - pos: 40.5,58.5 parent: 13329 type: Transform +- proto: KnifePlastic + entities: + - uid: 16627 + components: + - pos: -12.360604,22.497133 + parent: 13329 + type: Transform + - nextSound: 104.6166449 + type: EmitSoundOnCollide + - uid: 16628 + components: + - pos: -12.360604,22.497133 + parent: 13329 + type: Transform + - nextSound: 104.8818856 + type: EmitSoundOnCollide + - uid: 16629 + components: + - pos: -12.360604,22.497133 + parent: 13329 + type: Transform + - nextSound: 105.1831611 + type: EmitSoundOnCollide - proto: Lamp entities: - uid: 6569 @@ -195455,7 +176774,7 @@ entities: - pos: 98.5,-8.5 parent: 13329 type: Transform -- proto: ParticleAcceleratorEmitterCenterUnfinished +- proto: ParticleAcceleratorEmitterForeUnfinished entities: - uid: 22805 components: @@ -195463,18 +176782,18 @@ entities: pos: 95.5,-8.5 parent: 13329 type: Transform -- proto: ParticleAcceleratorEmitterLeftUnfinished +- proto: ParticleAcceleratorEmitterPortUnfinished entities: - - uid: 22804 + - uid: 22807 components: - - pos: 96.5,-8.5 + - pos: 97.5,-8.5 parent: 13329 type: Transform -- proto: ParticleAcceleratorEmitterRightUnfinished +- proto: ParticleAcceleratorEmitterStarboardUnfinished entities: - - uid: 22807 + - uid: 22804 components: - - pos: 97.5,-8.5 + - pos: 96.5,-8.5 parent: 13329 type: Transform - proto: ParticleAcceleratorEndCapUnfinished @@ -217095,6 +198414,13 @@ entities: - pos: -17.5,52.5 parent: 13329 type: Transform +- proto: SpawnMobSmile + entities: + - uid: 16630 + components: + - pos: 43.5,-26.5 + parent: 13329 + type: Transform - proto: SpawnMobWalter entities: - uid: 18494 @@ -221265,6 +202591,11 @@ entities: - pos: -16.5,-24.5 parent: 13329 type: Transform + - uid: 14806 + components: + - pos: -11.5,22.5 + parent: 13329 + type: Transform - uid: 15311 components: - pos: 39.5,-19.5 @@ -221285,6 +202616,11 @@ entities: - pos: 55.5,-22.5 parent: 13329 type: Transform + - uid: 15354 + components: + - pos: -12.5,22.5 + parent: 13329 + type: Transform - uid: 15399 components: - pos: 55.5,-35.5 @@ -226711,6 +208047,17 @@ entities: - pos: 40.5,-8.5 parent: 13329 type: Transform +- proto: VendingMachineCondiments + entities: + - uid: 14805 + components: + - flags: SessionSpecific + type: MetaData + - pos: -11.5,22.5 + parent: 13329 + type: Transform + - nextEmpEject: 84.8595034 + type: VendingMachine - proto: VendingMachineDetDrobe entities: - uid: 4532 @@ -251355,7 +232702,88 @@ entities: - pos: 58.5,43.5 parent: 13329 type: Transform -- proto: WindoorArmoryLocked +- proto: WindoorBarKitchenLocked + entities: + - uid: 1220 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,25.5 + parent: 13329 + type: Transform + - uid: 1221 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,25.5 + parent: 13329 + type: Transform +- proto: WindoorCargoLocked + entities: + - uid: 2060 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-15.5 + parent: 13329 + type: Transform + - uid: 11490 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-14.5 + parent: 13329 + type: Transform + - uid: 11491 + components: + - pos: 4.5,-14.5 + parent: 13329 + type: Transform + - uid: 11510 + components: + - pos: 13.5,-28.5 + parent: 13329 + type: Transform + - uid: 11851 + components: + - pos: 20.5,-15.5 + parent: 13329 + type: Transform +- proto: WindoorHydroponicsLocked + entities: + - uid: 1309 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,34.5 + parent: 13329 + type: Transform + - uid: 1310 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,35.5 + parent: 13329 + type: Transform +- proto: WindoorKitchenHydroponicsLocked + entities: + - uid: 1222 + components: + - pos: -9.5,27.5 + parent: 13329 + type: Transform + - uid: 1223 + components: + - rot: 3.141592653589793 rad + pos: -9.5,27.5 + parent: 13329 + type: Transform + - uid: 1224 + components: + - pos: -9.5,33.5 + parent: 13329 + type: Transform + - uid: 1225 + components: + - rot: 3.141592653589793 rad + pos: -9.5,33.5 + parent: 13329 + type: Transform +- proto: WindoorSecureArmoryLocked entities: - uid: 8649 components: @@ -251435,21 +232863,15 @@ entities: - pos: 18.5,11.5 parent: 13329 type: Transform -- proto: WindoorBarKitchenLocked +- proto: WindoorSecureAtmosphericsLocked entities: - - uid: 1220 + - uid: 14804 components: - - rot: -1.5707963267948966 rad - pos: -12.5,25.5 - parent: 13329 - type: Transform - - uid: 1221 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,25.5 + - rot: 3.141592653589793 rad + pos: 64.5,-13.5 parent: 13329 type: Transform -- proto: WindoorBrigLocked +- proto: WindoorSecureBrigLocked entities: - uid: 9455 components: @@ -251470,36 +232892,29 @@ entities: pos: 65.5,26.5 parent: 13329 type: Transform -- proto: WindoorCargoLocked +- proto: WindoorSecureCargoLocked entities: - - uid: 2060 - components: - - rot: 3.141592653589793 rad - pos: 7.5,-15.5 - parent: 13329 - type: Transform - - uid: 11490 + - uid: 11831 components: - rot: 3.141592653589793 rad - pos: 5.5,-14.5 - parent: 13329 - type: Transform - - uid: 11491 - components: - - pos: 4.5,-14.5 + pos: 18.5,-9.5 parent: 13329 type: Transform - - uid: 11510 + - uid: 11839 components: - - pos: 13.5,-28.5 + - rot: 1.5707963267948966 rad + pos: 22.5,-10.5 parent: 13329 type: Transform - - uid: 11851 +- proto: WindoorSecureChapelLocked + entities: + - uid: 6646 components: - - pos: 20.5,-15.5 + - rot: 1.5707963267948966 rad + pos: -12.5,69.5 parent: 13329 type: Transform -- proto: WindoorChemistryLocked +- proto: WindoorSecureChemistryLocked entities: - uid: 13323 components: @@ -251518,7 +232933,7 @@ entities: - pos: 21.5,42.5 parent: 13329 type: Transform -- proto: WindoorCommandLocked +- proto: WindoorSecureCommandLocked entities: - uid: 1974 components: @@ -251580,7 +232995,7 @@ entities: pos: 29.5,-12.5 parent: 13329 type: Transform -- proto: WindoorEngineeringLocked +- proto: WindoorSecureEngineeringLocked entities: - uid: 11007 components: @@ -251588,12 +233003,6 @@ entities: pos: 19.5,-20.5 parent: 13329 type: Transform - - uid: 25979 - components: - - rot: 3.141592653589793 rad - pos: 64.5,-13.5 - parent: 13329 - type: Transform - uid: 26700 components: - rot: 1.5707963267948966 rad @@ -251606,7 +233015,7 @@ entities: pos: 91.5,-14.5 parent: 13329 type: Transform -- proto: WindoorHeadOfPersonnelLocked +- proto: WindoorSecureHeadOfPersonnelLocked entities: - uid: 31548 components: @@ -251631,45 +233040,7 @@ entities: - pos: 60.5,49.5 parent: 13329 type: Transform -- proto: WindoorHydroponicsLocked - entities: - - uid: 1309 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,34.5 - parent: 13329 - type: Transform - - uid: 1310 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,35.5 - parent: 13329 - type: Transform -- proto: WindoorKitchenHydroponicsLocked - entities: - - uid: 1222 - components: - - pos: -9.5,27.5 - parent: 13329 - type: Transform - - uid: 1223 - components: - - rot: 3.141592653589793 rad - pos: -9.5,27.5 - parent: 13329 - type: Transform - - uid: 1224 - components: - - pos: -9.5,33.5 - parent: 13329 - type: Transform - - uid: 1225 - components: - - rot: 3.141592653589793 rad - pos: -9.5,33.5 - parent: 13329 - type: Transform -- proto: WindoorMedicalLocked +- proto: WindoorSecureMedicalLocked entities: - uid: 13336 components: @@ -251695,7 +233066,7 @@ entities: pos: 4.5,68.5 parent: 13329 type: Transform -- proto: WindoorScienceLocked +- proto: WindoorSecureScienceLocked entities: - uid: 13997 components: @@ -251761,29 +233132,7 @@ entities: pos: 37.5,-24.5 parent: 13329 type: Transform -- proto: WindoorSecureCargoLocked - entities: - - uid: 11831 - components: - - rot: 3.141592653589793 rad - pos: 18.5,-9.5 - parent: 13329 - type: Transform - - uid: 11839 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-10.5 - parent: 13329 - type: Transform -- proto: WindoorSecureChapelLocked - entities: - - uid: 6646 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,69.5 - parent: 13329 - type: Transform -- proto: WindoorSecurityLocked +- proto: WindoorSecureSecurityLocked entities: - uid: 2197 components: From 881902b228db8d7234924165d0f5f9ad7e2674e8 Mon Sep 17 00:00:00 2001 From: Emisse <99158783+Emisse@users.noreply.github.com> Date: Wed, 21 Jun 2023 13:52:06 -0600 Subject: [PATCH 404/474] bagel update (#17537) --- Resources/Maps/bagel.yml | 330 +++++++++++++++++++-------------------- 1 file changed, 165 insertions(+), 165 deletions(-) diff --git a/Resources/Maps/bagel.yml b/Resources/Maps/bagel.yml index be10565f7a..84a93558aa 100644 --- a/Resources/Maps/bagel.yml +++ b/Resources/Maps/bagel.yml @@ -8807,8 +8807,7 @@ entities: type: SpreaderGrid - type: RadiationGridResistance - type: GasTileOverlay - - nextUpdate: 0 - type: GridPathfinding + - type: GridPathfinding - uid: 943 components: - type: MetaData @@ -9067,8 +9066,7 @@ entities: type: GridAtmosphere - type: GasTileOverlay - type: RadiationGridResistance - - nextUpdate: 0 - type: GridPathfinding + - type: GridPathfinding - proto: AcousticGuitarInstrument entities: - uid: 2133 @@ -134594,13 +134592,6 @@ entities: pos: 9.5,-71.5 parent: 60 type: Transform -- proto: SpawnMobAdultSlimesBlue - entities: - - uid: 19885 - components: - - pos: -50.5,13.5 - parent: 60 - type: Transform - proto: SpawnMobAlexander entities: - uid: 23769 @@ -134734,6 +134725,13 @@ entities: - pos: -10.5,19.5 parent: 60 type: Transform +- proto: SpawnMobSmile + entities: + - uid: 5906 + components: + - pos: -50.5,13.5 + parent: 60 + type: Transform - proto: SpawnMobWalter entities: - uid: 3670 @@ -157794,7 +157792,118 @@ entities: pos: -118.5,4.5 parent: 60 type: Transform -- proto: WindoorArmoryLocked +- proto: WindoorBarLocked + entities: + - uid: 2235 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-29.5 + parent: 60 + type: Transform +- proto: WindoorCargoLocked + entities: + - uid: 5225 + components: + - rot: 3.141592653589793 rad + pos: 45.5,4.5 + parent: 60 + type: Transform + - uid: 6147 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,6.5 + parent: 60 + type: Transform + - uid: 13262 + components: + - pos: 45.5,4.5 + parent: 60 + type: Transform +- proto: WindoorHydroponicsLocked + entities: + - uid: 2450 + components: + - pos: 30.5,-25.5 + parent: 60 + type: Transform + - uid: 2452 + components: + - pos: 32.5,-25.5 + parent: 60 + type: Transform + - uid: 2453 + components: + - pos: 31.5,-25.5 + parent: 60 + type: Transform + - uid: 5815 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-29.5 + parent: 60 + type: Transform +- proto: WindoorSecure + entities: + - uid: 3269 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-46.5 + parent: 60 + type: Transform + - uid: 3911 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-41.5 + parent: 60 + type: Transform + - uid: 4191 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-20.5 + parent: 60 + type: Transform + - uid: 6181 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,-31.5 + parent: 60 + type: Transform + - uid: 7291 + components: + - rot: 3.141592653589793 rad + pos: -47.5,-33.5 + parent: 60 + type: Transform + - uid: 8083 + components: + - pos: -11.5,-44.5 + parent: 60 + type: Transform + - uid: 8109 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-2.5 + parent: 7536 + type: Transform + - uid: 8111 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-2.5 + parent: 7536 + type: Transform + - uid: 11002 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,-46.5 + parent: 60 + type: Transform + - uid: 19883 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-15.5 + parent: 60 + type: Transform +- proto: WindoorSecureArmoryLocked entities: - uid: 1466 components: @@ -157825,41 +157934,65 @@ entities: - pos: -24.5,2.5 parent: 60 type: Transform -- proto: WindoorBarLocked +- proto: WindoorSecureAtmosphericsLocked entities: - - uid: 2235 + - uid: 13949 components: - rot: 3.141592653589793 rad - pos: 12.5,-29.5 + pos: -16.5,26.5 parent: 60 type: Transform -- proto: WindoorBrigLocked + - uid: 13959 + components: + - pos: -17.5,27.5 + parent: 60 + type: Transform + - uid: 19416 + components: + - rot: 3.141592653589793 rad + pos: -15.5,26.5 + parent: 60 + type: Transform +- proto: WindoorSecureBrigLocked entities: - uid: 4198 components: - pos: -43.5,-18.5 parent: 60 type: Transform -- proto: WindoorCargoLocked +- proto: WindoorSecureCargoLocked entities: - - uid: 5225 + - uid: 2179 components: - - rot: 3.141592653589793 rad - pos: 45.5,4.5 + - pos: 41.5,4.5 parent: 60 type: Transform - - uid: 6147 + - uid: 7702 components: - - rot: -1.5707963267948966 rad - pos: 43.5,6.5 + - pos: 50.5,19.5 parent: 60 type: Transform - - uid: 13262 + - uid: 13104 components: - - pos: 45.5,4.5 + - rot: 1.5707963267948966 rad + pos: 42.5,8.5 + parent: 60 + type: Transform + - uid: 13105 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,9.5 parent: 60 type: Transform -- proto: WindoorChemistryLocked +- proto: WindoorSecureChapelLocked + entities: + - uid: 14513 + components: + - rot: 3.141592653589793 rad + pos: -20.5,16.5 + parent: 60 + type: Transform +- proto: WindoorSecureChemistryLocked entities: - uid: 2684 components: @@ -157883,7 +158016,7 @@ entities: pos: 42.5,-27.5 parent: 60 type: Transform -- proto: WindoorCommandLocked +- proto: WindoorSecureCommandLocked entities: - uid: 7443 components: @@ -157925,31 +158058,14 @@ entities: pos: -106.5,26.5 parent: 60 type: Transform -- proto: WindoorEngineeringLocked +- proto: WindoorSecureEngineeringLocked entities: - - uid: 5906 - components: - - pos: -17.5,27.5 - parent: 60 - type: Transform - uid: 13804 components: - pos: -3.5,17.5 parent: 60 type: Transform - - uid: 13949 - components: - - rot: 3.141592653589793 rad - pos: -16.5,26.5 - parent: 60 - type: Transform - - uid: 13959 - components: - - rot: 3.141592653589793 rad - pos: -15.5,26.5 - parent: 60 - type: Transform -- proto: WindoorHeadOfPersonnelLocked +- proto: WindoorSecureHeadOfPersonnelLocked entities: - uid: 1340 components: @@ -157962,30 +158078,7 @@ entities: pos: 4.5,-38.5 parent: 60 type: Transform -- proto: WindoorHydroponicsLocked - entities: - - uid: 2450 - components: - - pos: 30.5,-25.5 - parent: 60 - type: Transform - - uid: 2452 - components: - - pos: 32.5,-25.5 - parent: 60 - type: Transform - - uid: 2453 - components: - - pos: 31.5,-25.5 - parent: 60 - type: Transform - - uid: 5815 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-29.5 - parent: 60 - type: Transform -- proto: WindoorMedicalLocked +- proto: WindoorSecureMedicalLocked entities: - uid: 3005 components: @@ -158004,7 +158097,7 @@ entities: pos: 46.5,-17.5 parent: 60 type: Transform -- proto: WindoorScienceLocked +- proto: WindoorSecureScienceLocked entities: - uid: 3689 components: @@ -158030,100 +158123,7 @@ entities: - pos: -45.5,15.5 parent: 60 type: Transform -- proto: WindoorSecure - entities: - - uid: 3269 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-46.5 - parent: 60 - type: Transform - - uid: 3911 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-41.5 - parent: 60 - type: Transform - - uid: 4191 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-20.5 - parent: 60 - type: Transform - - uid: 6181 - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-31.5 - parent: 60 - type: Transform - - uid: 7291 - components: - - rot: 3.141592653589793 rad - pos: -47.5,-33.5 - parent: 60 - type: Transform - - uid: 8083 - components: - - pos: -11.5,-44.5 - parent: 60 - type: Transform - - uid: 8109 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-2.5 - parent: 7536 - type: Transform - - uid: 8111 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-2.5 - parent: 7536 - type: Transform - - uid: 11002 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-46.5 - parent: 60 - type: Transform - - uid: 19883 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-15.5 - parent: 60 - type: Transform -- proto: WindoorSecureCargoLocked - entities: - - uid: 2179 - components: - - pos: 41.5,4.5 - parent: 60 - type: Transform - - uid: 7702 - components: - - pos: 50.5,19.5 - parent: 60 - type: Transform - - uid: 13104 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,8.5 - parent: 60 - type: Transform - - uid: 13105 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,9.5 - parent: 60 - type: Transform -- proto: WindoorSecureChapelLocked - entities: - - uid: 14513 - components: - - rot: 3.141592653589793 rad - pos: -20.5,16.5 - parent: 60 - type: Transform -- proto: WindoorSecurityLocked +- proto: WindoorSecureSecurityLocked entities: - uid: 72 components: From 96c414a1f7fb431921ccc34c8b059ace1e478957 Mon Sep 17 00:00:00 2001 From: Emisse <99158783+Emisse@users.noreply.github.com> Date: Wed, 21 Jun 2023 13:52:52 -0600 Subject: [PATCH 405/474] Omega (#17539) * omega update * omega update --- Resources/Maps/omega.yml | 6116 +------------------------------------- 1 file changed, 123 insertions(+), 5993 deletions(-) diff --git a/Resources/Maps/omega.yml b/Resources/Maps/omega.yml index e52625f867..79d3284d17 100644 --- a/Resources/Maps/omega.yml +++ b/Resources/Maps/omega.yml @@ -42,6 +42,8 @@ entities: - type: Broadphase - type: OccluderTree - type: LoadedMap + - type: GridTree + - type: MovedGrids - uid: 4812 components: - type: MetaData @@ -126,7 +128,7 @@ entities: tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAARQAAAkUAAAJfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAEUAAAFFAAACXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABFAAACRQAAAl8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAARQAAAUUAAAJfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEUAAABFAAACXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABFAAADRQAAAl8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAARQAAA0UAAANfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAApAAAARQAAA0UAAAFFAAACRQAAAikAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,-2: ind: 1,-2 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAADsAAAA7AAAAOwAAADsAAAA7AAAARQAAAUUAAAJFAAABXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAAA7AAAAOwAAADsAAAA7AAAAOwAAAEUAAAJFAAACRQAAA18AAABfAAAAFwAAAV8AAABfAAAAXwAAAF4AAABfAAAAOwAAADsAAAA7AAAAOwAAADsAAABFAAAARQAAAEUAAAFfAAAAFwAAABcAAABfAAAAUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAAFFAAAAXwAAAEUAAAMXAAABXwAAAEUAAAJFAAADXwAAAEUAAAJSAAABUgAAAVIAAAJFAAADRQAAA0UAAAJFAAAARQAAA18AAABFAAAAFwAAAl8AAABFAAADRQAAA18AAABFAAACUgAAA1IAAAJSAAAARQAAAUUAAAFFAAABRQAAA0UAAAFFAAABRQAAAhcAAAMXAAACRQAAA0UAAAJFAAABRQAAAUUAAANFAAACRQAAAEUAAANFAAADRQAAAkUAAAJFAAACXwAAABcAAAMXAAADXwAAAEUAAAJFAAAAXwAAAEUAAABFAAACRQAAAUUAAAFFAAACRQAAA0UAAANFAAABRQAAAV8AAAAXAAABXwAAAF8AAABQAAAAXwAAAF8AAABFAAABRQAAAxcAAAMXAAADFwAAABcAAAEXAAACFwAAAxcAAAFfAAAAXwAAABcAAAIXAAAAFwAAAhcAAABFAAABRQAAAUUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAQAAAAXAAACFwAAAxcAAAIXAAAARQAAAEUAAAJFAAAAXAAAAFwAAABcAAADXAAAA1wAAAFcAAAAXwAAAAQAAAEEAAAAUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAADXAAAAlwAAANcAAADXAAAAF8AAAAEAAAABAAAAV8AAABfAAAAXAAAAFwAAAFcAAACXwAAAAQAAAFfAAAAXAAAAFwAAABcAAACXAAAAFwAAAJfAAAABAAAAAQAAAFfAAAAXAAAA1wAAAFcAAACXAAAA18AAAAEAAABXwAAAF8AAABcAAAAXAAAAVwAAAFfAAAAXwAAAAQAAAIAAAAAXwAAAF8AAABcAAABXAAAAVwAAAFfAAAABAAAAAQAAAJfAAAAXwAAAF8AAABfAAAAXwAAAAUAAAAEAAACAAAAAA== + tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAADsAAAA7AAAAOwAAADsAAAA7AAAARQAAAUUAAAJFAAABXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAAA7AAAAOwAAADsAAAA7AAAAOwAAAEUAAAJFAAACRQAAA18AAABfAAAAFwAAAV8AAABfAAAAXwAAAF4AAABfAAAAOwAAADsAAAA7AAAAOwAAADsAAABFAAAARQAAAEUAAAFfAAAAFwAAABcAAABfAAAAUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAAFFAAAAXwAAAEUAAAMXAAABXwAAAEUAAAJFAAADXwAAAEUAAAJSAAABUgAAAVIAAAJFAAADRQAAA0UAAAJFAAAARQAAA18AAABFAAAAFwAAAl8AAABFAAADRQAAA18AAABFAAACUgAAA1IAAAJSAAAARQAAAUUAAAFFAAABRQAAA0UAAAFFAAABRQAAAhcAAAMXAAACRQAAA0UAAAJFAAABRQAAAUUAAANFAAACRQAAAEUAAANFAAADRQAAAkUAAAJFAAACXwAAABcAAAMXAAADXwAAAEUAAAJFAAAAXwAAAEUAAABFAAACRQAAAUUAAAFFAAACRQAAA0UAAANFAAABRQAAAV8AAAAXAAABXwAAAF8AAABQAAAAXwAAAF8AAABFAAABRQAAAxcAAAMXAAADFwAAABcAAAEXAAACFwAAAxcAAAFfAAAAXwAAABcAAAIXAAAAFwAAAhcAAABFAAABRQAAAUUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAQAAAAXAAACFwAAAxcAAAIXAAAARQAAAEUAAAJFAAAAXAAAAFwAAABcAAADXAAAA1wAAAFcAAAAXwAAAAQAAAEEAAAAUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAADXAAAAlwAAANcAAADXAAAAF8AAAAEAAAABAAAAV8AAABfAAAAXAAAAFwAAAFcAAACXwAAAAQAAAFfAAAAXAAAAFwAAABcAAACXAAAAFwAAAJfAAAABAAAAAQAAAFfAAAAUAAAAFwAAAFcAAACXAAAA18AAAAEAAABXwAAAF8AAABcAAAAXAAAAVwAAAFfAAAAXwAAAAQAAAIAAAAAXwAAAF8AAABcAAABXAAAAVwAAAFfAAAABAAAAAQAAAJfAAAAXwAAAF8AAABfAAAAXwAAAAUAAAAEAAACAAAAAA== 2,-2: ind: 2,-2 tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAQAAAEAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAF8AAABfAAAAXwAAAAQAAAEEAAABBAAAAQQAAAIEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAUAAAAF8AAABfAAAAXwAAAAQAAAIEAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAhcAAAIXAAAAFwAAAV8AAAAEAAAABAAAAgQAAAEEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAJFAAAARQAAAEUAAAFfAAAABAAAAgQAAAAEAAACBAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAADRQAAAUUAAABFAAACXwAAAAQAAAIEAAACBAAAAgQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAUUAAANFAAADRQAAAF8AAAAEAAACBAAAAQQAAAIEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAMXAAACFwAAABcAAANfAAAABAAAAAQAAAEEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAABFwAAABcAAAMXAAADXwAAAAQAAAAEAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAEAAABBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAAQAAAAEAAABBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAgQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAEEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== @@ -4025,6 +4027,7 @@ entities: - type: GasTileOverlay - nextUpdate: 0 type: SpreaderGrid + - type: GridPathfinding - proto: AcousticGuitarInstrument entities: - uid: 1755 @@ -5258,6 +5261,18 @@ entities: - pos: -13.5,18.5 parent: 4812 type: Transform +- proto: AirlockDetectiveLocked + entities: + - uid: 5358 + components: + - pos: 19.5,-13.5 + parent: 4812 + type: Transform + - uid: 5359 + components: + - pos: 17.5,-17.5 + parent: 4812 + type: Transform - proto: AirlockEngineeringGlassLocked entities: - uid: 9565 @@ -6360,18 +6375,6 @@ entities: - pos: -30.5,25.5 parent: 4812 type: Transform -- proto: AirlockSecurityLocked - entities: - - uid: 5358 - components: - - pos: 17.5,-17.5 - parent: 4812 - type: Transform - - uid: 5359 - components: - - pos: 19.5,-13.5 - parent: 4812 - type: Transform - proto: AirlockServiceLocked entities: - uid: 6675 @@ -10511,8 +10514,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1125 components: - pos: -8.5,-2.5 @@ -10520,8 +10521,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1126 components: - pos: -8.5,-3.5 @@ -10529,8 +10528,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1127 components: - pos: -9.5,-3.5 @@ -10538,8 +10535,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1128 components: - pos: -10.5,-3.5 @@ -10547,288 +10542,206 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1129 components: - pos: -10.5,-4.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1130 components: - pos: -10.5,-5.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1131 components: - pos: -10.5,-6.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1132 components: - pos: -10.5,-7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1133 components: - pos: -10.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1134 components: - pos: -10.5,-9.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1135 components: - pos: -11.5,-6.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1136 components: - pos: -12.5,-6.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1137 components: - pos: -13.5,-6.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1138 components: - pos: -14.5,-6.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1139 components: - pos: -15.5,-6.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1140 components: - pos: -16.5,-6.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1141 components: - pos: -17.5,-6.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1142 components: - pos: -17.5,-7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1143 components: - pos: -17.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1144 components: - pos: -17.5,-9.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1145 components: - pos: -11.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1146 components: - pos: -12.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1147 components: - pos: -13.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1148 components: - pos: -14.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1149 components: - pos: -15.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1150 components: - pos: -16.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1151 components: - pos: -9.5,-6.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1152 components: - pos: -8.5,-6.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1153 components: - pos: -7.5,-6.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1154 components: - pos: -8.5,-1.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1155 components: - pos: -8.5,-0.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1156 components: - pos: -8.5,0.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1157 components: - pos: -8.5,1.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1158 components: - pos: -8.5,2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1159 components: - pos: -8.5,3.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1160 components: - pos: -8.5,4.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1161 components: - pos: -8.5,5.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1162 components: - pos: -8.5,6.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1163 components: - pos: -8.5,7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1164 components: - pos: -8.5,8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1165 components: - pos: -7.5,-0.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1166 components: - pos: -9.5,-0.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1167 components: - pos: -9.5,4.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1168 components: - pos: -9.5,8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1169 components: - pos: -11.5,-3.5 @@ -10836,8 +10749,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1170 components: - pos: -12.5,-3.5 @@ -10845,8 +10756,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1171 components: - pos: -12.5,-2.5 @@ -10854,8 +10763,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1172 components: - pos: -12.5,-1.5 @@ -10863,8 +10770,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1173 components: - pos: -12.5,1.5 @@ -10872,8 +10777,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1174 components: - pos: -12.5,2.5 @@ -10881,8 +10784,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1175 components: - pos: -12.5,3.5 @@ -10890,8 +10791,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1176 components: - pos: -12.5,4.5 @@ -10899,8 +10798,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1177 components: - pos: -13.5,-3.5 @@ -10908,8 +10805,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1178 components: - pos: -14.5,-3.5 @@ -10917,8 +10812,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1179 components: - pos: -15.5,-3.5 @@ -10926,8 +10819,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1180 components: - pos: -16.5,-3.5 @@ -10935,8 +10826,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1181 components: - pos: -17.5,-3.5 @@ -10944,8 +10833,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1182 components: - pos: -18.5,-3.5 @@ -10953,8 +10840,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1183 components: - pos: -19.5,-3.5 @@ -10962,15 +10847,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1184 components: - pos: -20.5,-3.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1185 components: - pos: -20.5,-4.5 @@ -10978,8 +10859,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1186 components: - pos: -21.5,-4.5 @@ -10987,43 +10866,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1187 components: - pos: -21.5,-5.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1188 components: - pos: -21.5,-6.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1189 components: - pos: -21.5,-7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1190 components: - pos: -21.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1191 components: - pos: -22.5,-7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1192 components: - pos: -7.5,-3.5 @@ -11031,169 +10898,121 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1193 components: - pos: -6.5,-3.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1194 components: - pos: -5.5,-3.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1195 components: - pos: -4.5,-3.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1196 components: - pos: -4.5,-4.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1197 components: - pos: -4.5,-5.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1198 components: - pos: -4.5,-6.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1199 components: - pos: -4.5,-7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1200 components: - pos: -3.5,-7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1201 components: - pos: -2.5,-7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1202 components: - pos: -2.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1203 components: - pos: -4.5,-2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1204 components: - pos: -4.5,-1.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1205 components: - pos: -4.5,-0.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1206 components: - pos: -4.5,0.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1207 components: - pos: -4.5,1.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1208 components: - pos: -4.5,2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1209 components: - pos: -4.5,3.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1210 components: - pos: -4.5,4.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1211 components: - pos: -4.5,5.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1212 components: - pos: -4.5,6.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1213 components: - pos: -4.5,7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1214 components: - pos: -4.5,8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1215 components: - pos: -4.5,9.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1216 components: - pos: -12.5,14.5 @@ -11201,29 +11020,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1217 components: - pos: -12.5,15.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1218 components: - pos: -12.5,16.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1219 components: - pos: -12.5,17.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1220 components: - pos: -12.5,14.5 @@ -11231,8 +11042,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1221 components: - pos: -12.5,13.5 @@ -11240,8 +11049,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1222 components: - pos: -12.5,12.5 @@ -11249,8 +11056,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1223 components: - pos: -12.5,11.5 @@ -11258,8 +11063,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1224 components: - pos: -12.5,10.5 @@ -11267,8 +11070,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1225 components: - pos: -13.5,10.5 @@ -11276,8 +11077,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1226 components: - pos: -14.5,10.5 @@ -11285,71 +11084,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1227 components: - pos: -15.5,10.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1228 components: - pos: -17.5,10.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1229 components: - pos: -18.5,10.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1230 components: - pos: -16.5,10.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1231 components: - pos: -19.5,10.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1232 components: - pos: -20.5,10.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1233 components: - pos: -18.5,9.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1234 components: - pos: -18.5,8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1235 components: - pos: -18.5,7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1236 components: - pos: -12.5,5.5 @@ -11357,8 +11136,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1237 components: - pos: -12.5,6.5 @@ -11366,8 +11143,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1238 components: - pos: -12.5,7.5 @@ -11375,8 +11150,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1239 components: - pos: -12.5,8.5 @@ -11384,8 +11157,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1240 components: - pos: -12.5,9.5 @@ -11393,8 +11164,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1241 components: - pos: -14.5,2.5 @@ -11402,8 +11171,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1242 components: - pos: -15.5,2.5 @@ -11411,197 +11178,141 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1243 components: - pos: -16.5,2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1244 components: - pos: -17.5,2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1245 components: - pos: -18.5,2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1246 components: - pos: -19.5,2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1247 components: - pos: -20.5,2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1248 components: - pos: -21.5,2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1249 components: - pos: -22.5,2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1250 components: - pos: -18.5,3.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1251 components: - pos: -18.5,4.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1257 components: - pos: -18.5,1.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1258 components: - pos: -18.5,0.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1259 components: - pos: -18.5,-0.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1260 components: - pos: -21.5,10.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1261 components: - pos: -22.5,10.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1262 components: - pos: -22.5,11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1263 components: - pos: -22.5,12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1264 components: - pos: -22.5,13.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1265 components: - pos: -22.5,14.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1266 components: - pos: -22.5,15.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1267 components: - pos: -22.5,16.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1268 components: - pos: -21.5,16.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1269 components: - pos: -20.5,16.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1270 components: - pos: -18.5,16.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1271 components: - pos: -19.5,16.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1272 components: - pos: -17.5,16.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1273 components: - pos: -17.5,15.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1274 components: - pos: -17.5,14.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1275 components: - pos: -11.5,13.5 @@ -11609,8 +11320,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1276 components: - pos: -10.5,13.5 @@ -11618,8 +11327,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1277 components: - pos: -9.5,13.5 @@ -11627,8 +11334,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1278 components: - pos: -8.5,13.5 @@ -11636,8 +11341,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1279 components: - pos: -7.5,13.5 @@ -11645,8 +11348,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1280 components: - pos: -6.5,13.5 @@ -11654,50 +11355,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1281 components: - pos: -5.5,13.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1282 components: - pos: -4.5,13.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1283 components: - pos: -3.5,13.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1284 components: - pos: -2.5,13.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1285 components: - pos: -1.5,13.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1286 components: - pos: -2.5,14.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1287 components: - pos: 7.5,-8.5 @@ -11705,8 +11392,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1288 components: - pos: 7.5,-9.5 @@ -11714,8 +11399,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1289 components: - pos: 6.5,-9.5 @@ -11723,8 +11406,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1290 components: - pos: 5.5,-9.5 @@ -11732,8 +11413,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1291 components: - pos: 4.5,-9.5 @@ -11741,8 +11420,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1292 components: - pos: 3.5,-9.5 @@ -11750,8 +11427,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1293 components: - pos: 3.5,-8.5 @@ -11759,8 +11434,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1294 components: - pos: 2.5,-8.5 @@ -11768,120 +11441,86 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1295 components: - pos: 7.5,-7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1296 components: - pos: 7.5,-6.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1297 components: - pos: 6.5,-6.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1298 components: - pos: 5.5,-6.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1299 components: - pos: 4.5,-6.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1300 components: - pos: 4.5,-5.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1301 components: - pos: 4.5,-4.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1302 components: - pos: 4.5,-3.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1303 components: - pos: 4.5,-2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1304 components: - pos: 4.5,-1.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1305 components: - pos: 4.5,-0.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1306 components: - pos: 4.5,0.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1307 components: - pos: 5.5,-1.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1308 components: - pos: 6.5,-1.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1309 components: - pos: 7.5,-1.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1310 components: - pos: 8.5,-1.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1311 components: - pos: 9.5,-1.5 @@ -11889,85 +11528,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1312 components: - pos: 1.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1313 components: - pos: 0.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1314 components: - pos: 0.5,-7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1315 components: - pos: 0.5,-6.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1316 components: - pos: 0.5,-5.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1317 components: - pos: 0.5,-4.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1318 components: - pos: 0.5,-3.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1319 components: - pos: 0.5,-2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1320 components: - pos: 0.5,-1.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1321 components: - pos: 0.5,-0.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1322 components: - pos: 0.5,0.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1323 components: - pos: 8.5,-9.5 @@ -11975,8 +11590,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1324 components: - pos: 9.5,-9.5 @@ -11984,8 +11597,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1325 components: - pos: 9.5,-8.5 @@ -11993,8 +11604,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1326 components: - pos: 9.5,-7.5 @@ -12002,8 +11611,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1327 components: - pos: 9.5,-6.5 @@ -12011,8 +11618,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1328 components: - pos: 9.5,-5.5 @@ -12020,8 +11625,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1329 components: - pos: 9.5,-4.5 @@ -12029,8 +11632,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1330 components: - pos: 9.5,-3.5 @@ -12038,8 +11639,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1331 components: - pos: 9.5,-2.5 @@ -12047,204 +11646,146 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1332 components: - pos: 8.5,-10.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1333 components: - pos: 8.5,-11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1334 components: - pos: 7.5,-11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1335 components: - pos: 6.5,-11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1336 components: - pos: 5.5,-11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1337 components: - pos: 4.5,-11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1338 components: - pos: 3.5,-11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1339 components: - pos: 2.5,-11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1340 components: - pos: 1.5,-11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1341 components: - pos: 0.5,-11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1342 components: - pos: -0.5,-11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1343 components: - pos: -1.5,-11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1344 components: - pos: -2.5,-11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1345 components: - pos: -3.5,-11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1346 components: - pos: 9.5,-11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1347 components: - pos: 10.5,-11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1348 components: - pos: 11.5,-11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1349 components: - pos: 11.5,-10.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1350 components: - pos: 11.5,-9.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1351 components: - pos: 11.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1352 components: - pos: 11.5,-7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1353 components: - pos: 11.5,-6.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1354 components: - pos: 11.5,-5.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1355 components: - pos: 11.5,-4.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1356 components: - pos: 11.5,-3.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1357 components: - pos: 11.5,-2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1358 components: - pos: 11.5,-1.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1359 components: - pos: 11.5,-0.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1360 components: - pos: 6.5,3.5 @@ -12252,8 +11793,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1361 components: - pos: 7.5,3.5 @@ -12261,8 +11800,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1362 components: - pos: 8.5,3.5 @@ -12270,22 +11807,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1363 components: - pos: 11.5,3.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1364 components: - pos: 10.5,3.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1365 components: - pos: 9.5,3.5 @@ -12293,8 +11824,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1366 components: - pos: 9.5,2.5 @@ -12302,8 +11831,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1367 components: - pos: 6.5,5.5 @@ -12311,15 +11838,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1368 components: - pos: 6.5,4.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1369 components: - pos: 9.5,-0.5 @@ -12327,99 +11850,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1370 components: - pos: 11.5,4.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1371 components: - pos: 11.5,5.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1372 components: - pos: 11.5,6.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1373 components: - pos: 11.5,7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1374 components: - pos: 11.5,8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1375 components: - pos: 11.5,9.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1376 components: - pos: 11.5,10.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1377 components: - pos: 11.5,11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1378 components: - pos: 11.5,12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1379 components: - pos: 11.5,13.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1380 components: - pos: 11.5,14.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1381 components: - pos: 11.5,15.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1382 components: - pos: 11.5,16.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1383 components: - pos: 9.5,4.5 @@ -12427,8 +11922,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1384 components: - pos: 9.5,5.5 @@ -12436,8 +11929,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1385 components: - pos: 9.5,6.5 @@ -12445,8 +11936,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1386 components: - pos: 9.5,7.5 @@ -12454,8 +11943,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1387 components: - pos: 9.5,8.5 @@ -12463,8 +11950,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1388 components: - pos: 9.5,9.5 @@ -12472,8 +11957,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1389 components: - pos: 9.5,10.5 @@ -12481,8 +11964,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1390 components: - pos: 9.5,11.5 @@ -12490,8 +11971,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1391 components: - pos: 8.5,11.5 @@ -12499,8 +11978,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1392 components: - pos: 7.5,11.5 @@ -12508,8 +11985,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1393 components: - pos: 6.5,11.5 @@ -12517,8 +11992,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1394 components: - pos: 5.5,11.5 @@ -12526,8 +11999,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1395 components: - pos: 4.5,11.5 @@ -12535,8 +12006,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1396 components: - pos: 3.5,11.5 @@ -12544,8 +12013,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1397 components: - pos: 3.5,12.5 @@ -12553,8 +12020,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1398 components: - pos: 3.5,13.5 @@ -12562,8 +12027,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1399 components: - pos: 3.5,14.5 @@ -12571,8 +12034,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1400 components: - pos: 2.5,14.5 @@ -12580,8 +12041,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1401 components: - pos: 1.5,14.5 @@ -12589,211 +12048,151 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1402 components: - pos: 11.5,17.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1403 components: - pos: 11.5,18.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1404 components: - pos: 11.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1405 components: - pos: 10.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1406 components: - pos: 9.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1407 components: - pos: 8.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1408 components: - pos: 7.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1409 components: - pos: 6.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1410 components: - pos: 6.5,18.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1411 components: - pos: 6.5,17.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1412 components: - pos: 6.5,16.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1413 components: - pos: 6.5,15.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1414 components: - pos: 6.5,14.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1415 components: - pos: 7.5,14.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1416 components: - pos: 8.5,14.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1417 components: - pos: 7.5,17.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1418 components: - pos: 8.5,17.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1419 components: - pos: 6.5,6.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1420 components: - pos: 6.5,7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1421 components: - pos: 6.5,8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1422 components: - pos: 6.5,9.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1423 components: - pos: 5.5,7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1424 components: - pos: 4.5,7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1425 components: - pos: 3.5,7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1426 components: - pos: 2.5,7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1427 components: - pos: 2.5,8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1428 components: - pos: 2.5,9.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1429 components: - pos: 2.5,6.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1430 components: - pos: 2.5,5.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1431 components: - pos: 6.5,2.5 @@ -12801,8 +12200,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1432 components: - pos: 5.5,2.5 @@ -12810,8 +12207,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1433 components: - pos: 4.5,2.5 @@ -12819,197 +12214,141 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1434 components: - pos: 3.5,2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1435 components: - pos: 2.5,2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1436 components: - pos: 1.5,2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1437 components: - pos: 0.5,2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1438 components: - pos: 0.5,3.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1439 components: - pos: 0.5,4.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1440 components: - pos: 0.5,5.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1441 components: - pos: 0.5,6.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1442 components: - pos: 0.5,7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1443 components: - pos: 0.5,8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1444 components: - pos: 0.5,9.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1445 components: - pos: -0.5,9.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1446 components: - pos: -0.5,10.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1447 components: - pos: -0.5,4.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1448 components: - pos: -0.5,-1.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1449 components: - pos: -3.5,1.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1450 components: - pos: -3.5,7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1451 components: - pos: -5.5,9.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1452 components: - pos: -5.5,10.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1523 components: - pos: -22.5,3.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1524 components: - pos: -22.5,4.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1525 components: - pos: -22.5,5.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1526 components: - pos: -22.5,1.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1527 components: - pos: -22.5,0.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1528 components: - pos: -22.5,-0.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1529 components: - pos: -22.5,-1.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1530 components: - pos: -23.5,1.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2244 components: - pos: -6.5,31.5 @@ -13017,365 +12356,261 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2245 components: - pos: -5.5,31.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2246 components: - pos: -4.5,31.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2247 components: - pos: -3.5,31.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2248 components: - pos: -2.5,31.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2249 components: - pos: -2.5,30.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2250 components: - pos: -2.5,29.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2251 components: - pos: -2.5,28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2252 components: - pos: -3.5,28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2253 components: - pos: -4.5,28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2254 components: - pos: -5.5,28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2255 components: - pos: -1.5,28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2256 components: - pos: -0.5,28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2257 components: - pos: 0.5,28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2258 components: - pos: 1.5,28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2259 components: - pos: -7.5,31.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2260 components: - pos: -8.5,31.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2261 components: - pos: -7.5,30.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2262 components: - pos: -7.5,29.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2263 components: - pos: -7.5,28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2264 components: - pos: -7.5,27.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2265 components: - pos: -7.5,26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2266 components: - pos: -7.5,25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2267 components: - pos: -7.5,24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2268 components: - pos: -7.5,23.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2269 components: - pos: -7.5,22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2270 components: - pos: -7.5,32.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2271 components: - pos: -7.5,33.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2272 components: - pos: -7.5,34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2273 components: - pos: -2.5,32.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2274 components: - pos: -2.5,33.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2275 components: - pos: -2.5,34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2276 components: - pos: -3.5,34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2277 components: - pos: -5.5,34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2278 components: - pos: -4.5,34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2279 components: - pos: -1.5,34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2280 components: - pos: -0.5,34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2281 components: - pos: 0.5,34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2282 components: - pos: 1.5,34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2283 components: - pos: 2.5,34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2284 components: - pos: -1.5,32.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2285 components: - pos: -0.5,32.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2286 components: - pos: 0.5,32.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2287 components: - pos: 1.5,32.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2288 components: - pos: 2.5,32.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2289 components: - pos: 3.5,32.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2290 components: - pos: 4.5,32.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2291 components: - pos: 5.5,32.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2292 components: - pos: 6.5,32.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2293 components: - pos: 2.5,31.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2294 components: - pos: 2.5,30.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2295 components: - pos: 2.5,29.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2296 components: - pos: 9.5,27.5 @@ -13383,225 +12618,161 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2297 components: - pos: 9.5,26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2298 components: - pos: 9.5,25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2299 components: - pos: 9.5,24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2300 components: - pos: 9.5,23.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2301 components: - pos: 9.5,22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2302 components: - pos: 9.5,21.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2303 components: - pos: 8.5,22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2304 components: - pos: 6.5,22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2305 components: - pos: 5.5,22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2306 components: - pos: 7.5,22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2307 components: - pos: 10.5,22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2308 components: - pos: 8.5,25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2309 components: - pos: 7.5,25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2310 components: - pos: 6.5,25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2311 components: - pos: 6.5,26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2312 components: - pos: 6.5,27.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2313 components: - pos: 6.5,28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2314 components: - pos: 6.5,29.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2315 components: - pos: 7.5,28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2316 components: - pos: 8.5,28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2317 components: - pos: 9.5,28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2318 components: - pos: 10.5,28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2319 components: - pos: 10.5,29.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2320 components: - pos: 10.5,30.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2321 components: - pos: 5.5,25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2322 components: - pos: 4.5,25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2323 components: - pos: 3.5,25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2324 components: - pos: 3.5,24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2325 components: - pos: 3.5,23.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2326 components: - pos: 3.5,22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2327 components: - pos: 3.5,21.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2328 components: - pos: 0.5,21.5 @@ -13609,267 +12780,191 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2329 components: - pos: 0.5,20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2330 components: - pos: 0.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2331 components: - pos: -0.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2332 components: - pos: -1.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2333 components: - pos: -2.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2334 components: - pos: -3.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2335 components: - pos: -4.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2336 components: - pos: -5.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2337 components: - pos: -6.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2338 components: - pos: -7.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2339 components: - pos: -8.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2340 components: - pos: -9.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2341 components: - pos: -10.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2342 components: - pos: -11.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2343 components: - pos: -12.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2344 components: - pos: -13.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2345 components: - pos: -14.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2346 components: - pos: -15.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2347 components: - pos: -16.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2348 components: - pos: 1.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2349 components: - pos: 2.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2350 components: - pos: 3.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2351 components: - pos: 4.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2352 components: - pos: 0.5,22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2353 components: - pos: 0.5,23.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2354 components: - pos: 0.5,24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2355 components: - pos: 0.5,25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2356 components: - pos: -0.5,25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2357 components: - pos: -1.5,25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2358 components: - pos: -2.5,25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2359 components: - pos: -3.5,25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2360 components: - pos: -4.5,25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2361 components: - pos: -0.5,23.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2362 components: - pos: -1.5,23.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2363 components: - pos: -2.5,23.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2364 components: - pos: -3.5,23.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2365 components: - pos: -4.5,23.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2367 components: - pos: -14.5,25.5 @@ -13877,134 +12972,96 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2368 components: - pos: -14.5,24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2369 components: - pos: -14.5,23.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2370 components: - pos: -14.5,22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2371 components: - pos: -15.5,24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2372 components: - pos: -13.5,24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2373 components: - pos: -12.5,24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2374 components: - pos: -11.5,24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2375 components: - pos: -11.5,25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2376 components: - pos: -11.5,26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2377 components: - pos: -11.5,27.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2378 components: - pos: -11.5,28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2379 components: - pos: -12.5,28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2380 components: - pos: -13.5,28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2381 components: - pos: -14.5,28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2382 components: - pos: -15.5,28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2383 components: - pos: -11.5,23.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2384 components: - pos: -11.5,22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2395 components: - pos: -10.5,23.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2652 components: - pos: -11.5,-57.5 @@ -14012,36 +13069,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2815 components: - pos: 16.5,35.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2816 components: - pos: 16.5,34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2823 components: - pos: 19.5,35.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2826 components: - pos: 16.5,33.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2827 components: - pos: 21.5,25.5 @@ -14049,8 +13096,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2833 components: - pos: 11.5,32.5 @@ -14058,22 +13103,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2846 components: - pos: 18.5,35.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2847 components: - pos: 16.5,30.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2848 components: - pos: 22.5,25.5 @@ -14081,36 +13120,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2865 components: - pos: 16.5,32.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2867 components: - pos: 20.5,27.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2868 components: - pos: 20.5,25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2869 components: - pos: 16.5,31.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3038 components: - pos: 22.5,27.5 @@ -14118,8 +13147,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3039 components: - pos: 21.5,27.5 @@ -14127,8 +13154,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3136 components: - pos: 17.5,22.5 @@ -14136,274 +13161,196 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3137 components: - pos: 17.5,23.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3138 components: - pos: 17.5,24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3139 components: - pos: 17.5,25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3140 components: - pos: 17.5,26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3141 components: - pos: 18.5,26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3142 components: - pos: 19.5,26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3143 components: - pos: 20.5,26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3146 components: - pos: 18.5,24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3147 components: - pos: 19.5,24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3148 components: - pos: 20.5,24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3151 components: - pos: 16.5,26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3152 components: - pos: 15.5,26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3153 components: - pos: 15.5,27.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3154 components: - pos: 15.5,28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3155 components: - pos: 15.5,29.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3156 components: - pos: 16.5,29.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3157 components: - pos: 17.5,21.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3158 components: - pos: 17.5,20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3159 components: - pos: 17.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3160 components: - pos: 17.5,18.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3161 components: - pos: 17.5,17.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3162 components: - pos: 16.5,20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3163 components: - pos: 15.5,20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3164 components: - pos: 18.5,20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3165 components: - pos: 19.5,20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3166 components: - pos: 16.5,18.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3167 components: - pos: 15.5,18.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3168 components: - pos: 19.5,18.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3169 components: - pos: 18.5,18.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3170 components: - pos: 19.5,17.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3171 components: - pos: 19.5,16.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3172 components: - pos: 19.5,15.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3173 components: - pos: 19.5,14.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3174 components: - pos: 20.5,14.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3175 components: - pos: 21.5,14.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3176 components: - pos: 22.5,14.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3177 components: - pos: 23.5,14.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3178 components: - pos: 24.5,14.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3179 components: - pos: 25.5,14.5 @@ -14411,8 +13358,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3180 components: - pos: 26.5,14.5 @@ -14420,8 +13365,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3181 components: - pos: 27.5,14.5 @@ -14429,50 +13372,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3182 components: - pos: 18.5,14.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3183 components: - pos: 17.5,14.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3184 components: - pos: 16.5,14.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3185 components: - pos: 15.5,14.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3186 components: - pos: 14.5,14.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3192 components: - pos: 17.5,35.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3195 components: - pos: 12.5,32.5 @@ -14480,8 +13409,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3196 components: - pos: 12.5,31.5 @@ -14489,8 +13416,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3197 components: - pos: 12.5,30.5 @@ -14498,8 +13423,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3198 components: - pos: 12.5,29.5 @@ -14507,8 +13430,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3199 components: - pos: 12.5,28.5 @@ -14516,8 +13437,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3200 components: - pos: 12.5,27.5 @@ -14525,8 +13444,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3201 components: - pos: 12.5,26.5 @@ -14534,8 +13451,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3202 components: - pos: 12.5,25.5 @@ -14543,8 +13458,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3203 components: - pos: 12.5,24.5 @@ -14552,8 +13465,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3204 components: - pos: 12.5,23.5 @@ -14561,8 +13472,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3205 components: - pos: 12.5,22.5 @@ -14570,8 +13479,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3897 components: - pos: 11.5,51.5 @@ -14579,106 +13486,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3898 components: - pos: 11.5,50.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3899 components: - pos: 10.5,50.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3900 components: - pos: 10.5,49.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3901 components: - pos: 10.5,48.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3902 components: - pos: 10.5,47.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3903 components: - pos: 10.5,46.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3904 components: - pos: 10.5,45.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3905 components: - pos: 10.5,44.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3906 components: - pos: 10.5,43.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3907 components: - pos: 11.5,45.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3908 components: - pos: 12.5,45.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3909 components: - pos: 13.5,45.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3910 components: - pos: 14.5,45.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3911 components: - pos: 15.5,45.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3912 components: - pos: 15.5,46.5 @@ -14686,43 +13563,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3913 components: - pos: 9.5,45.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3914 components: - pos: 8.5,45.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3915 components: - pos: 7.5,45.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3916 components: - pos: 6.5,45.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3917 components: - pos: 5.5,45.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3918 components: - pos: 4.5,45.5 @@ -14730,8 +13595,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3919 components: - pos: 3.5,45.5 @@ -14739,183 +13602,131 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3920 components: - pos: 6.5,46.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3921 components: - pos: 6.5,47.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3922 components: - pos: 9.5,50.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3923 components: - pos: 8.5,50.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3924 components: - pos: 8.5,51.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3925 components: - pos: 8.5,52.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3926 components: - pos: 8.5,53.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3927 components: - pos: 8.5,54.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3928 components: - pos: 8.5,55.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3929 components: - pos: 12.5,50.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3930 components: - pos: 12.5,51.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3931 components: - pos: 12.5,52.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3932 components: - pos: 12.5,53.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3933 components: - pos: 12.5,54.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3934 components: - pos: 12.5,55.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3935 components: - pos: 11.5,53.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3936 components: - pos: 10.5,53.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3937 components: - pos: 9.5,53.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3938 components: - pos: 10.5,52.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3939 components: - pos: 11.5,55.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3940 components: - pos: 10.5,55.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3941 components: - pos: 9.5,55.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3942 components: - pos: 13.5,53.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3943 components: - pos: 7.5,53.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4010 components: - pos: -9.5,-23.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4257 components: - pos: 22.5,-1.5 @@ -14923,106 +13734,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4258 components: - pos: 22.5,-2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4259 components: - pos: 21.5,-2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4260 components: - pos: 20.5,-2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4261 components: - pos: 19.5,-2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4262 components: - pos: 18.5,-2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4263 components: - pos: 17.5,-2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4264 components: - pos: 16.5,-2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4265 components: - pos: 15.5,-2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4266 components: - pos: 14.5,-2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4267 components: - pos: 12.5,7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4268 components: - pos: 13.5,7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4269 components: - pos: 14.5,7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4270 components: - pos: 15.5,7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4271 components: - pos: 16.5,7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4272 components: - pos: 22.5,-0.5 @@ -15030,8 +13811,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4273 components: - pos: 21.5,-0.5 @@ -15039,8 +13818,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4274 components: - pos: 20.5,-0.5 @@ -15048,8 +13825,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4275 components: - pos: 19.5,-0.5 @@ -15057,8 +13832,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4276 components: - pos: 18.5,-0.5 @@ -15066,8 +13839,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4277 components: - pos: 17.5,-0.5 @@ -15075,8 +13846,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4278 components: - pos: 16.5,-0.5 @@ -15084,8 +13853,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4279 components: - pos: 15.5,-0.5 @@ -15093,8 +13860,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4280 components: - pos: 15.5,0.5 @@ -15102,8 +13867,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4281 components: - pos: 15.5,1.5 @@ -15111,8 +13874,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4282 components: - pos: 15.5,2.5 @@ -15120,8 +13881,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4283 components: - pos: 15.5,3.5 @@ -15129,8 +13888,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4284 components: - pos: 15.5,4.5 @@ -15138,8 +13895,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4285 components: - pos: 16.5,4.5 @@ -15147,8 +13902,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4286 components: - pos: 17.5,4.5 @@ -15156,8 +13909,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4287 components: - pos: 18.5,4.5 @@ -15165,8 +13916,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4288 components: - pos: 18.5,5.5 @@ -15174,8 +13923,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4289 components: - pos: 18.5,6.5 @@ -15183,8 +13930,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4290 components: - pos: 18.5,7.5 @@ -15192,8 +13937,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4291 components: - pos: 18.5,8.5 @@ -15201,8 +13944,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4292 components: - pos: 18.5,9.5 @@ -15210,8 +13951,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4293 components: - pos: 18.5,10.5 @@ -15219,8 +13958,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4294 components: - pos: 17.5,10.5 @@ -15228,8 +13965,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4295 components: - pos: 16.5,10.5 @@ -15237,8 +13972,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4296 components: - pos: 15.5,10.5 @@ -15246,8 +13979,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4297 components: - pos: 14.5,10.5 @@ -15255,8 +13986,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4298 components: - pos: 19.5,10.5 @@ -15264,8 +13993,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4299 components: - pos: 20.5,10.5 @@ -15273,120 +14000,86 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4300 components: - pos: 23.5,-2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4301 components: - pos: 24.5,-2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4302 components: - pos: 25.5,-2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4303 components: - pos: 26.5,-2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4304 components: - pos: 27.5,-2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4305 components: - pos: 28.5,-2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4306 components: - pos: 29.5,-2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4307 components: - pos: 30.5,-2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4308 components: - pos: 30.5,-1.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4309 components: - pos: 30.5,-0.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4310 components: - pos: 30.5,0.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4311 components: - pos: 30.5,1.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4312 components: - pos: 30.5,2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4313 components: - pos: 30.5,3.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4314 components: - pos: 30.5,4.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4315 components: - pos: 31.5,2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4316 components: - pos: 32.5,2.5 @@ -15394,8 +14087,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4317 components: - pos: 33.5,2.5 @@ -15403,15 +14094,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4318 components: - pos: 31.5,0.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4319 components: - pos: 32.5,0.5 @@ -15419,8 +14106,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4320 components: - pos: 33.5,0.5 @@ -15428,64 +14113,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4321 components: - pos: 30.5,-3.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4322 components: - pos: 30.5,-4.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4323 components: - pos: 30.5,-5.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4324 components: - pos: 30.5,-6.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4325 components: - pos: 30.5,-7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4326 components: - pos: 30.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4327 components: - pos: 30.5,-9.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4328 components: - pos: 31.5,-7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4329 components: - pos: 32.5,-7.5 @@ -15493,8 +14160,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4330 components: - pos: 33.5,-7.5 @@ -15502,15 +14167,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4331 components: - pos: 31.5,-5.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4332 components: - pos: 32.5,-5.5 @@ -15518,8 +14179,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4333 components: - pos: 33.5,-5.5 @@ -15527,169 +14186,121 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4334 components: - pos: 29.5,-7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4335 components: - pos: 28.5,-7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4336 components: - pos: 27.5,-7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4337 components: - pos: 26.5,-7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4338 components: - pos: 25.5,-7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4339 components: - pos: 24.5,-7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4340 components: - pos: 24.5,-6.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4341 components: - pos: 24.5,-5.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4342 components: - pos: 24.5,-4.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4343 components: - pos: 24.5,-3.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4344 components: - pos: 24.5,-1.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4345 components: - pos: 24.5,-0.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4346 components: - pos: 24.5,0.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4347 components: - pos: 24.5,1.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4348 components: - pos: 24.5,2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4349 components: - pos: 24.5,3.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4350 components: - pos: 24.5,4.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4351 components: - pos: 23.5,4.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4352 components: - pos: 22.5,4.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4353 components: - pos: 22.5,5.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4354 components: - pos: 22.5,6.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4355 components: - pos: 22.5,7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4356 components: - pos: 22.5,8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4357 components: - pos: 19.5,4.5 @@ -15697,22 +14308,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4358 components: - pos: 23.5,-7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4359 components: - pos: 22.5,-7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4360 components: - pos: 21.5,-7.5 @@ -15720,8 +14325,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4361 components: - pos: 20.5,-7.5 @@ -15729,8 +14332,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4362 components: - pos: 19.5,-7.5 @@ -15738,8 +14339,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4363 components: - pos: 18.5,-7.5 @@ -15747,8 +14346,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4364 components: - pos: 17.5,-7.5 @@ -15756,8 +14353,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4365 components: - pos: 16.5,-7.5 @@ -15765,8 +14360,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4366 components: - pos: 15.5,-7.5 @@ -15774,8 +14367,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4367 components: - pos: 15.5,-6.5 @@ -15783,22 +14374,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4368 components: - pos: 15.5,-5.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4369 components: - pos: 14.5,-7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4660 components: - pos: -13.5,-50.5 @@ -15806,8 +14391,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4689 components: - pos: -11.5,-56.5 @@ -15815,22 +14398,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4690 components: - pos: -11.5,-55.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4724 components: - pos: -11.5,-54.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4863 components: - pos: -18.5,-28.5 @@ -15838,36 +14415,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4864 components: - pos: -13.5,-27.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4866 components: - pos: -17.5,-28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4867 components: - pos: -16.5,-27.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4868 components: - pos: -15.5,-27.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4869 components: - pos: -23.5,-25.5 @@ -15875,15 +14442,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4894 components: - pos: -14.5,-27.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4895 components: - pos: -27.5,-25.5 @@ -15891,71 +14454,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4896 components: - pos: -26.5,-25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4897 components: - pos: -25.5,-27.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4899 components: - pos: -25.5,-28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4900 components: - pos: -25.5,-24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4901 components: - pos: -25.5,-23.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4902 components: - pos: -25.5,-25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4903 components: - pos: -25.5,-26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4904 components: - pos: -25.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4905 components: - pos: -26.5,-23.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4906 components: - pos: -23.5,-22.5 @@ -15963,50 +14506,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4907 components: - pos: -24.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4908 components: - pos: -21.5,-27.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4909 components: - pos: -18.5,-20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4910 components: - pos: -20.5,-27.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4911 components: - pos: -22.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4912 components: - pos: -18.5,-21.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4913 components: - pos: -18.5,-19.5 @@ -16014,113 +14543,81 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4930 components: - pos: -20.5,-12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4946 components: - pos: -9.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4947 components: - pos: -17.5,-27.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4948 components: - pos: -13.5,-26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4949 components: - pos: -16.5,-26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5008 components: - pos: -22.5,-26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5009 components: - pos: -22.5,-27.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5017 components: - pos: -22.5,-25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5029 components: - pos: -15.5,-20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5030 components: - pos: -19.5,-14.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5031 components: - pos: -15.5,-17.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5034 components: - pos: -15.5,-15.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5035 components: - pos: -22.5,-12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5036 components: - pos: -19.5,-16.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5037 components: - pos: -15.5,-21.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5038 components: - pos: -17.5,-15.5 @@ -16128,8 +14625,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5041 components: - pos: -11.5,-58.5 @@ -16137,43 +14632,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5044 components: - pos: -19.5,-20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5052 components: - pos: -19.5,-18.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5056 components: - pos: -18.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5057 components: - pos: -21.5,-12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5058 components: - pos: -20.5,-23.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5229 components: - pos: -12.5,-50.5 @@ -16181,22 +14664,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5232 components: - pos: -11.5,-50.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5233 components: - pos: -10.5,-50.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5234 components: - pos: -9.5,-50.5 @@ -16204,8 +14681,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5235 components: - pos: -8.5,-50.5 @@ -16213,8 +14688,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5236 components: - pos: -8.5,-43.5 @@ -16222,8 +14695,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5237 components: - pos: -9.5,-43.5 @@ -16231,22 +14702,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5238 components: - pos: -10.5,-43.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5239 components: - pos: -11.5,-43.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5240 components: - pos: -12.5,-43.5 @@ -16254,8 +14719,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5241 components: - pos: -13.5,-43.5 @@ -16263,218 +14726,156 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5242 components: - pos: -11.5,-53.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5243 components: - pos: -11.5,-52.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5244 components: - pos: -11.5,-51.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5245 components: - pos: -11.5,-49.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5246 components: - pos: -11.5,-48.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5247 components: - pos: -11.5,-47.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5248 components: - pos: -11.5,-46.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5249 components: - pos: -11.5,-45.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5250 components: - pos: -11.5,-44.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5251 components: - pos: -11.5,-42.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5252 components: - pos: -11.5,-41.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5253 components: - pos: -11.5,-40.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5254 components: - pos: -11.5,-39.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5255 components: - pos: -11.5,-38.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5256 components: - pos: -11.5,-37.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5257 components: - pos: -11.5,-36.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5258 components: - pos: -11.5,-35.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5259 components: - pos: -11.5,-34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5260 components: - pos: -10.5,-34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5261 components: - pos: -9.5,-34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5262 components: - pos: -8.5,-34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5263 components: - pos: -7.5,-34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5264 components: - pos: -6.5,-34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5265 components: - pos: -5.5,-34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5266 components: - pos: -4.5,-34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5267 components: - pos: -3.5,-34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5268 components: - pos: -2.5,-34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5269 components: - pos: -1.5,-34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5270 components: - pos: -0.5,-34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5271 components: - pos: 0.5,-34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5272 components: - pos: -8.5,-33.5 @@ -16482,15 +14883,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5364 components: - pos: -14.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6022 components: - pos: 6.5,-19.5 @@ -16498,64 +14895,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6023 components: - pos: 6.5,-18.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6024 components: - pos: 6.5,-17.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6025 components: - pos: 6.5,-16.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6026 components: - pos: 6.5,-15.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6027 components: - pos: 5.5,-15.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6028 components: - pos: 4.5,-15.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6029 components: - pos: 5.5,-18.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6030 components: - pos: 4.5,-18.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6031 components: - pos: 13.5,-16.5 @@ -16563,218 +14942,156 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6032 components: - pos: 6.5,-21.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6033 components: - pos: 5.5,-21.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6034 components: - pos: 5.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6035 components: - pos: 5.5,-23.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6036 components: - pos: 5.5,-24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6037 components: - pos: 5.5,-25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6038 components: - pos: 5.5,-26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6039 components: - pos: 5.5,-27.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6040 components: - pos: 4.5,-27.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6041 components: - pos: 4.5,-24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6042 components: - pos: 4.5,-21.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6043 components: - pos: 7.5,-21.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6044 components: - pos: 8.5,-21.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6045 components: - pos: 9.5,-21.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6046 components: - pos: 10.5,-21.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6047 components: - pos: 11.5,-21.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6048 components: - pos: 12.5,-21.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6049 components: - pos: 13.5,-21.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6050 components: - pos: 14.5,-21.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6052 components: - pos: 13.5,-19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6053 components: - pos: 13.5,-18.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6054 components: - pos: 13.5,-17.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6055 components: - pos: 10.5,-20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6056 components: - pos: 10.5,-19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6057 components: - pos: 10.5,-18.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6058 components: - pos: 10.5,-17.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6059 components: - pos: 10.5,-16.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6060 components: - pos: 10.5,-15.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6061 components: - pos: 10.5,-14.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6062 components: - pos: 11.5,-15.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6063 components: - pos: 12.5,-15.5 @@ -16782,99 +15099,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6066 components: - pos: 9.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6067 components: - pos: 9.5,-23.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6068 components: - pos: 9.5,-24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6069 components: - pos: 9.5,-25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6070 components: - pos: 9.5,-26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6071 components: - pos: 9.5,-27.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6072 components: - pos: 9.5,-28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6073 components: - pos: 10.5,-25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6074 components: - pos: 11.5,-25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6075 components: - pos: 12.5,-25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6076 components: - pos: 13.5,-25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6077 components: - pos: 14.5,-25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6078 components: - pos: 15.5,-25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6079 components: - pos: 28.5,-21.5 @@ -16882,148 +15171,106 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6080 components: - pos: 28.5,-20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6081 components: - pos: 28.5,-19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6082 components: - pos: 26.5,-19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6083 components: - pos: 27.5,-19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6084 components: - pos: 26.5,-18.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6085 components: - pos: 25.5,-18.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6086 components: - pos: 28.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6087 components: - pos: 27.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6088 components: - pos: 26.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6089 components: - pos: 25.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6090 components: - pos: 24.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6091 components: - pos: 23.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6092 components: - pos: 22.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6093 components: - pos: 21.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6094 components: - pos: 21.5,-21.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6095 components: - pos: 20.5,-21.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6096 components: - pos: 19.5,-21.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6097 components: - pos: 18.5,-21.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6098 components: - pos: 17.5,-21.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6099 components: - pos: 16.5,-21.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6100 components: - pos: 10.5,-35.5 @@ -17031,15 +15278,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6101 components: - pos: 16.5,-19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6102 components: - pos: 16.5,-18.5 @@ -17047,8 +15290,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6103 components: - pos: 16.5,-17.5 @@ -17056,106 +15297,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6104 components: - pos: 17.5,-17.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6105 components: - pos: 18.5,-17.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6106 components: - pos: 19.5,-17.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6107 components: - pos: 19.5,-16.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6108 components: - pos: 19.5,-15.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6109 components: - pos: 19.5,-14.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6110 components: - pos: 19.5,-13.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6111 components: - pos: 19.5,-12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6112 components: - pos: 18.5,-12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6113 components: - pos: 18.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6114 components: - pos: 18.5,-23.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6115 components: - pos: 18.5,-24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6116 components: - pos: 18.5,-25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6117 components: - pos: 18.5,-26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6119 components: - pos: 18.5,-28.5 @@ -17163,8 +15374,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6120 components: - pos: 18.5,-29.5 @@ -17172,8 +15381,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6121 components: - pos: 18.5,-30.5 @@ -17181,8 +15388,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6122 components: - pos: 18.5,-31.5 @@ -17190,8 +15395,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6123 components: - pos: 18.5,-32.5 @@ -17199,8 +15402,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6124 components: - pos: 18.5,-33.5 @@ -17208,8 +15409,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6125 components: - pos: 17.5,-33.5 @@ -17217,8 +15416,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6126 components: - pos: 16.5,-33.5 @@ -17226,8 +15423,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6127 components: - pos: 15.5,-33.5 @@ -17235,8 +15430,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6128 components: - pos: 15.5,-32.5 @@ -17244,8 +15437,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6129 components: - pos: 15.5,-31.5 @@ -17253,239 +15444,171 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6130 components: - pos: 15.5,-24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6131 components: - pos: 12.5,-24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6132 components: - pos: 15.5,-26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6133 components: - pos: 15.5,-27.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6134 components: - pos: 12.5,-26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6135 components: - pos: 12.5,-27.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6136 components: - pos: 28.5,-23.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6137 components: - pos: 28.5,-24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6138 components: - pos: 28.5,-25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6139 components: - pos: 28.5,-26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6140 components: - pos: 28.5,-27.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6141 components: - pos: 28.5,-28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6142 components: - pos: 28.5,-29.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6143 components: - pos: 27.5,-29.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6144 components: - pos: 26.5,-29.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6145 components: - pos: 25.5,-29.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6146 components: - pos: 24.5,-29.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6147 components: - pos: 23.5,-29.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6148 components: - pos: 22.5,-29.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6150 components: - pos: 30.5,-25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6151 components: - pos: 31.5,-25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6152 components: - pos: 32.5,-25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6153 components: - pos: 33.5,-25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6154 components: - pos: 34.5,-25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6155 components: - pos: 33.5,-26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6156 components: - pos: 33.5,-27.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6157 components: - pos: 33.5,-24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6158 components: - pos: 27.5,-25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6159 components: - pos: 26.5,-25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6160 components: - pos: 25.5,-25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6161 components: - pos: 24.5,-25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6162 components: - pos: 23.5,-25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6163 components: - pos: 22.5,-25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6164 components: - pos: 16.5,-16.5 @@ -17493,29 +15616,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6551 components: - pos: -23.5,-12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6552 components: - pos: -19.5,-17.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6555 components: - pos: -19.5,-15.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6557 components: - pos: -15.5,-14.5 @@ -17523,57 +15638,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6610 components: - pos: -15.5,-16.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6611 components: - pos: -15.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6616 components: - pos: -17.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6626 components: - pos: -15.5,-18.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6627 components: - pos: -16.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6630 components: - pos: -18.5,-15.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6681 components: - pos: -18.5,-23.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6845 components: - pos: -17.5,-31.5 @@ -17581,225 +15680,161 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6846 components: - pos: -17.5,-32.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6847 components: - pos: -17.5,-33.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6848 components: - pos: -17.5,-34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6849 components: - pos: -17.5,-35.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6850 components: - pos: -17.5,-36.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6851 components: - pos: -16.5,-34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6852 components: - pos: -15.5,-34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6853 components: - pos: -14.5,-34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6854 components: - pos: -14.5,-33.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6855 components: - pos: -18.5,-34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6856 components: - pos: -19.5,-34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6857 components: - pos: -19.5,-35.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6858 components: - pos: -19.5,-36.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6859 components: - pos: -19.5,-37.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6860 components: - pos: -19.5,-39.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6861 components: - pos: -19.5,-38.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6862 components: - pos: -20.5,-36.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6863 components: - pos: -21.5,-36.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6864 components: - pos: -22.5,-36.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6865 components: - pos: -23.5,-36.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6866 components: - pos: -24.5,-36.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6867 components: - pos: -25.5,-36.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6868 components: - pos: -26.5,-36.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6869 components: - pos: -26.5,-35.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6870 components: - pos: -26.5,-34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6871 components: - pos: -26.5,-33.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6872 components: - pos: -26.5,-32.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6873 components: - pos: -21.5,-35.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6874 components: - pos: -21.5,-34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6875 components: - pos: -21.5,-33.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6876 components: - pos: -21.5,-32.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6877 components: - pos: -17.5,-30.5 @@ -17807,8 +15842,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6878 components: - pos: -16.5,-30.5 @@ -17816,8 +15849,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6879 components: - pos: -15.5,-30.5 @@ -17825,8 +15856,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6880 components: - pos: -14.5,-30.5 @@ -17834,8 +15863,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6881 components: - pos: -13.5,-30.5 @@ -17843,8 +15870,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6882 components: - pos: -12.5,-30.5 @@ -17852,8 +15877,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6883 components: - pos: -11.5,-30.5 @@ -17861,8 +15884,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6884 components: - pos: -10.5,-30.5 @@ -17870,8 +15891,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6886 components: - pos: -10.5,-31.5 @@ -17879,8 +15898,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6887 components: - pos: -10.5,-32.5 @@ -17888,8 +15905,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6888 components: - pos: -18.5,-30.5 @@ -17897,8 +15912,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6889 components: - pos: -19.5,-30.5 @@ -17906,8 +15919,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6890 components: - pos: -20.5,-30.5 @@ -17915,8 +15926,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6891 components: - pos: -21.5,-30.5 @@ -17924,8 +15933,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6892 components: - pos: -22.5,-30.5 @@ -17933,8 +15940,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6893 components: - pos: -23.5,-30.5 @@ -17942,8 +15947,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6894 components: - pos: -24.5,-30.5 @@ -17951,8 +15954,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7091 components: - pos: -24.5,-10.5 @@ -17960,267 +15961,191 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7092 components: - pos: -24.5,-11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7093 components: - pos: -24.5,-12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7094 components: - pos: -24.5,-13.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7095 components: - pos: -24.5,-14.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7096 components: - pos: -24.5,-15.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7097 components: - pos: -24.5,-16.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7098 components: - pos: -25.5,-16.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7099 components: - pos: -26.5,-16.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7100 components: - pos: -27.5,-16.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7101 components: - pos: -28.5,-16.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7102 components: - pos: -29.5,-16.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7103 components: - pos: -30.5,-16.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7104 components: - pos: -31.5,-16.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7105 components: - pos: -32.5,-16.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7106 components: - pos: -32.5,-17.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7107 components: - pos: -32.5,-18.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7108 components: - pos: -32.5,-19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7109 components: - pos: -31.5,-19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7110 components: - pos: -31.5,-20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7111 components: - pos: -31.5,-21.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7112 components: - pos: -31.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7113 components: - pos: -28.5,-17.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7114 components: - pos: -28.5,-18.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7115 components: - pos: -28.5,-19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7116 components: - pos: -28.5,-20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7117 components: - pos: -25.5,-17.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7118 components: - pos: -25.5,-18.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7119 components: - pos: -25.5,-19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7120 components: - pos: -25.5,-20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7121 components: - pos: -24.5,-19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7122 components: - pos: -23.5,-19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7123 components: - pos: -23.5,-16.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7124 components: - pos: -31.5,-15.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7182 components: - pos: -10.5,-25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7232 components: - pos: -19.5,-23.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7242 components: - pos: -9.5,-25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7243 components: - pos: -9.5,-24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7390 components: - pos: -11.5,-25.5 @@ -18228,50 +16153,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7420 components: - pos: -11.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7421 components: - pos: -11.5,-21.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7422 components: - pos: -11.5,-20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7423 components: - pos: -10.5,-21.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7424 components: - pos: -9.5,-21.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7425 components: - pos: -8.5,-21.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7489 components: - pos: -1.5,-20.5 @@ -18279,631 +16190,451 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7490 components: - pos: -1.5,-21.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7491 components: - pos: -1.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7492 components: - pos: -2.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7493 components: - pos: -3.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7494 components: - pos: -4.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7495 components: - pos: -5.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7496 components: - pos: -5.5,-21.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7497 components: - pos: -5.5,-20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7498 components: - pos: -5.5,-19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7499 components: - pos: -5.5,-18.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7500 components: - pos: -5.5,-17.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7501 components: - pos: -5.5,-16.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7502 components: - pos: -5.5,-15.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7503 components: - pos: -1.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7504 components: - pos: 0.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7505 components: - pos: 0.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7506 components: - pos: -0.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7507 components: - pos: 0.5,-21.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7508 components: - pos: 0.5,-20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7509 components: - pos: 0.5,-19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7510 components: - pos: 0.5,-18.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7511 components: - pos: 0.5,-17.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7512 components: - pos: 0.5,-16.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7513 components: - pos: 0.5,-15.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7514 components: - pos: -1.5,-19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7515 components: - pos: -1.5,-18.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7516 components: - pos: -1.5,-17.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7517 components: - pos: -2.5,-17.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7518 components: - pos: -2.5,-16.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7519 components: - pos: -2.5,-15.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7520 components: - pos: -5.5,-14.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7521 components: - pos: -5.5,-13.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7522 components: - pos: -4.5,-13.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7523 components: - pos: 0.5,-13.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7524 components: - pos: 0.5,-14.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7525 components: - pos: -0.5,-13.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7526 components: - pos: 0.5,-23.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7527 components: - pos: 0.5,-24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7528 components: - pos: 0.5,-25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7529 components: - pos: 0.5,-26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7530 components: - pos: 0.5,-27.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7531 components: - pos: 0.5,-28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7532 components: - pos: 0.5,-29.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7533 components: - pos: 0.5,-30.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7534 components: - pos: 0.5,-31.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7535 components: - pos: -5.5,-23.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7536 components: - pos: -5.5,-24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7537 components: - pos: -5.5,-25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7538 components: - pos: -5.5,-26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7539 components: - pos: -5.5,-27.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7540 components: - pos: -5.5,-28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7541 components: - pos: -5.5,-29.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7542 components: - pos: -5.5,-30.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7543 components: - pos: -5.5,-31.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7544 components: - pos: -4.5,-31.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7545 components: - pos: -4.5,-25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7546 components: - pos: -3.5,-25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7547 components: - pos: -2.5,-25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7548 components: - pos: -2.5,-26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7549 components: - pos: -2.5,-27.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7550 components: - pos: -2.5,-28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7551 components: - pos: -2.5,-29.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7552 components: - pos: -0.5,-31.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7553 components: - pos: -1.5,-31.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7554 components: - pos: -2.5,-31.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7555 components: - pos: -5.5,-12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7557 components: - pos: -7.5,-12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7558 components: - pos: -8.5,-12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7559 components: - pos: -9.5,-12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7560 components: - pos: -10.5,-12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7561 components: - pos: -11.5,-12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7562 components: - pos: -12.5,-12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7563 components: - pos: -13.5,-12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7564 components: - pos: -14.5,-12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7565 components: - pos: -15.5,-12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7566 components: - pos: -16.5,-12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7567 components: - pos: -17.5,-12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7568 components: - pos: -18.5,-12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7569 components: - pos: -19.5,-12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7605 components: - pos: -9.5,-20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7606 components: - pos: -9.5,-19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7607 components: - pos: -9.5,-18.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7608 components: - pos: -9.5,-17.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7609 components: - pos: -9.5,-16.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7610 components: - pos: -9.5,-15.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7611 components: - pos: -10.5,-17.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7612 components: - pos: -11.5,-17.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7613 components: - pos: -10.5,-15.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7614 components: - pos: -11.5,-15.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8061 components: - pos: -36.5,13.5 @@ -18911,505 +16642,361 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8062 components: - pos: -36.5,12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8063 components: - pos: -36.5,11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8064 components: - pos: -37.5,11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8065 components: - pos: -38.5,11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8066 components: - pos: -35.5,11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8067 components: - pos: -34.5,11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8068 components: - pos: -33.5,11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8069 components: - pos: -32.5,11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8070 components: - pos: -31.5,11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8071 components: - pos: -30.5,11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8072 components: - pos: -29.5,11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8073 components: - pos: -29.5,12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8074 components: - pos: -29.5,13.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8075 components: - pos: -29.5,14.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8076 components: - pos: -29.5,15.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8077 components: - pos: -29.5,16.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8078 components: - pos: -29.5,17.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8079 components: - pos: -29.5,18.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8080 components: - pos: -29.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8081 components: - pos: -28.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8082 components: - pos: -27.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8083 components: - pos: -26.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8084 components: - pos: -28.5,16.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8085 components: - pos: -27.5,16.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8086 components: - pos: -26.5,16.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8087 components: - pos: -28.5,13.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8088 components: - pos: -27.5,13.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8089 components: - pos: -26.5,13.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8090 components: - pos: -25.5,13.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8091 components: - pos: -28.5,11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8092 components: - pos: -27.5,11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8093 components: - pos: -26.5,11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8094 components: - pos: -25.5,11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8095 components: - pos: -34.5,12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8096 components: - pos: -34.5,13.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8097 components: - pos: -34.5,14.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8098 components: - pos: -34.5,15.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8099 components: - pos: -34.5,16.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8100 components: - pos: -34.5,17.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8101 components: - pos: -34.5,18.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8102 components: - pos: -34.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8103 components: - pos: -34.5,20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8104 components: - pos: -35.5,20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8105 components: - pos: -35.5,16.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8106 components: - pos: -30.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8107 components: - pos: -30.5,15.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8108 components: - pos: -29.5,20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8109 components: - pos: -29.5,21.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8110 components: - pos: -29.5,22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8111 components: - pos: -29.5,23.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8112 components: - pos: -29.5,24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8113 components: - pos: -28.5,24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8114 components: - pos: -27.5,24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8115 components: - pos: -26.5,24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8116 components: - pos: -26.5,23.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8117 components: - pos: -30.5,24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8118 components: - pos: -30.5,25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8119 components: - pos: -30.5,26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8120 components: - pos: -30.5,27.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8121 components: - pos: -30.5,28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8122 components: - pos: -30.5,29.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8123 components: - pos: -30.5,30.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8124 components: - pos: -30.5,31.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8125 components: - pos: -26.5,25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8126 components: - pos: -26.5,26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8127 components: - pos: -26.5,27.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8128 components: - pos: -26.5,28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8129 components: - pos: -26.5,29.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8130 components: - pos: -26.5,30.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8131 components: - pos: -26.5,31.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8132 components: - pos: -25.5,31.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8133 components: - pos: -24.5,31.5 @@ -19417,22 +17004,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8134 components: - pos: -27.5,31.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8135 components: - pos: -27.5,32.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8136 components: - pos: -27.5,33.5 @@ -19440,8 +17021,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8137 components: - pos: -28.5,33.5 @@ -19449,8 +17028,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8138 components: - pos: -29.5,33.5 @@ -19458,22 +17035,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8139 components: - pos: -31.5,31.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8140 components: - pos: -29.5,31.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8197 components: - pos: -19.5,21.5 @@ -19481,204 +17052,146 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8198 components: - pos: -19.5,20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8199 components: - pos: -20.5,20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8200 components: - pos: -21.5,20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8201 components: - pos: -22.5,20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8202 components: - pos: -23.5,20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8203 components: - pos: -22.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8204 components: - pos: -18.5,20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8205 components: - pos: -22.5,18.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8206 components: - pos: -19.5,22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8207 components: - pos: -19.5,23.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8208 components: - pos: -19.5,24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8209 components: - pos: -19.5,25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8210 components: - pos: -20.5,24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8211 components: - pos: -21.5,24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8212 components: - pos: -22.5,24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8213 components: - pos: -23.5,24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8214 components: - pos: -22.5,25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8215 components: - pos: -22.5,26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8216 components: - pos: -22.5,27.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8217 components: - pos: -22.5,28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8218 components: - pos: -22.5,23.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8219 components: - pos: -22.5,22.5 parent: 4812 - type: Transform - - fixtures: {} - type: Fixtures + type: Transform - uid: 8220 components: - pos: -21.5,27.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8221 components: - pos: -20.5,27.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8222 components: - pos: -19.5,27.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8223 components: - pos: -19.5,28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8224 components: - pos: -19.5,29.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8319 components: - pos: -17.5,20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8320 components: - pos: -17.5,21.5 @@ -19686,8 +17199,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8321 components: - pos: -17.5,22.5 @@ -19695,8 +17206,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8322 components: - pos: -17.5,23.5 @@ -19704,8 +17213,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8323 components: - pos: -17.5,24.5 @@ -19713,8 +17220,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8324 components: - pos: -17.5,25.5 @@ -19722,8 +17227,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8325 components: - pos: -17.5,26.5 @@ -19731,8 +17234,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8326 components: - pos: -17.5,27.5 @@ -19740,8 +17241,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8327 components: - pos: -17.5,28.5 @@ -19749,8 +17248,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8908 components: - pos: -33.5,-24.5 @@ -19758,8 +17255,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8909 components: - pos: -33.5,-25.5 @@ -19767,8 +17262,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8910 components: - pos: -32.5,-25.5 @@ -19776,8 +17269,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8911 components: - pos: -31.5,-25.5 @@ -19785,8 +17276,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8912 components: - pos: -30.5,-25.5 @@ -19794,8 +17283,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8913 components: - pos: -29.5,-25.5 @@ -19803,8 +17290,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8914 components: - pos: -29.5,-26.5 @@ -19812,22 +17297,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8915 components: - pos: -29.5,-27.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8916 components: - pos: -29.5,-28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8917 components: - pos: -29.5,-29.5 @@ -19835,8 +17314,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8918 components: - pos: -29.5,-30.5 @@ -19844,8 +17321,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8919 components: - pos: -29.5,-31.5 @@ -19853,8 +17328,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8920 components: - pos: -30.5,-31.5 @@ -19862,8 +17335,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8921 components: - pos: -30.5,-32.5 @@ -19871,8 +17342,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8922 components: - pos: -30.5,-33.5 @@ -19880,85 +17349,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8923 components: - pos: -30.5,-34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8924 components: - pos: -30.5,-35.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8925 components: - pos: -30.5,-36.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8926 components: - pos: -30.5,-37.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8927 components: - pos: -30.5,-38.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8928 components: - pos: -30.5,-39.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8929 components: - pos: -30.5,-40.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8930 components: - pos: -29.5,-39.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8931 components: - pos: -28.5,-39.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8932 components: - pos: -27.5,-39.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8933 components: - pos: -31.5,-36.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8934 components: - pos: -32.5,-36.5 @@ -19966,8 +17411,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8935 components: - pos: -33.5,-36.5 @@ -19975,8 +17418,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8936 components: - pos: -31.5,-33.5 @@ -19984,92 +17425,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8937 components: - pos: -32.5,-33.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8938 components: - pos: -33.5,-33.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8939 components: - pos: -34.5,-33.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8940 components: - pos: -35.5,-33.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8941 components: - pos: -36.5,-33.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8942 components: - pos: -36.5,-34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8943 components: - pos: -37.5,-34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8944 components: - pos: -38.5,-34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8945 components: - pos: -39.5,-34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8947 components: - pos: -36.5,-35.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8948 components: - pos: -36.5,-36.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8949 components: - pos: -36.5,-37.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8968 components: - pos: 13.5,-22.5 @@ -20077,8 +17492,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9050 components: - pos: -50.5,0.5 @@ -20086,8 +17499,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9090 components: - pos: 32.5,-29.5 @@ -20095,8 +17506,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9288 components: - pos: -38.5,6.5 @@ -20104,8 +17513,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9321 components: - pos: -38.5,5.5 @@ -20113,8 +17520,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9322 components: - pos: -38.5,4.5 @@ -20122,8 +17527,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9323 components: - pos: -38.5,3.5 @@ -20131,8 +17534,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9324 components: - pos: -38.5,2.5 @@ -20140,8 +17541,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9325 components: - pos: -38.5,1.5 @@ -20149,8 +17548,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9326 components: - pos: -38.5,0.5 @@ -20158,8 +17555,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9327 components: - pos: -39.5,0.5 @@ -20167,8 +17562,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9328 components: - pos: -40.5,0.5 @@ -20176,8 +17569,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9329 components: - pos: -41.5,0.5 @@ -20185,8 +17576,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9330 components: - pos: -42.5,0.5 @@ -20194,8 +17583,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9331 components: - pos: -43.5,0.5 @@ -20203,8 +17590,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9332 components: - pos: -44.5,0.5 @@ -20212,8 +17597,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9333 components: - pos: -45.5,0.5 @@ -20221,8 +17604,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9334 components: - pos: -46.5,0.5 @@ -20230,8 +17611,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9335 components: - pos: -47.5,0.5 @@ -20239,8 +17618,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9336 components: - pos: -48.5,0.5 @@ -20248,8 +17625,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9337 components: - pos: -49.5,0.5 @@ -20257,8 +17632,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9338 components: - pos: -51.5,0.5 @@ -20266,8 +17639,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9339 components: - pos: -52.5,0.5 @@ -20275,8 +17646,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9340 components: - pos: -53.5,0.5 @@ -20284,8 +17653,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9341 components: - pos: -54.5,0.5 @@ -20293,8 +17660,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9342 components: - pos: -54.5,1.5 @@ -20302,8 +17667,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9343 components: - pos: -54.5,2.5 @@ -20311,8 +17674,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9344 components: - pos: -54.5,3.5 @@ -20320,8 +17681,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9345 components: - pos: -54.5,4.5 @@ -20329,8 +17688,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9346 components: - pos: -54.5,5.5 @@ -20338,8 +17695,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9347 components: - pos: -54.5,6.5 @@ -20347,8 +17702,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9348 components: - pos: -54.5,7.5 @@ -20356,8 +17709,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9349 components: - pos: -54.5,8.5 @@ -20365,8 +17716,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9350 components: - pos: -54.5,9.5 @@ -20374,8 +17723,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9351 components: - pos: -54.5,10.5 @@ -20383,8 +17730,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9352 components: - pos: -54.5,11.5 @@ -20392,8 +17737,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9353 components: - pos: -54.5,12.5 @@ -20401,8 +17744,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9354 components: - pos: -53.5,12.5 @@ -20410,8 +17751,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9355 components: - pos: -52.5,12.5 @@ -20419,8 +17758,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9356 components: - pos: -51.5,12.5 @@ -20428,8 +17765,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9357 components: - pos: -50.5,12.5 @@ -20437,8 +17772,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9358 components: - pos: -49.5,12.5 @@ -20446,8 +17779,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9359 components: - pos: -48.5,13.5 @@ -20455,8 +17786,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9360 components: - pos: -48.5,12.5 @@ -20464,8 +17793,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9361 components: - pos: -48.5,11.5 @@ -20473,8 +17800,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9362 components: - pos: -48.5,10.5 @@ -20482,8 +17807,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9363 components: - pos: -48.5,9.5 @@ -20491,8 +17814,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9364 components: - pos: -48.5,8.5 @@ -20500,8 +17821,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9365 components: - pos: -48.5,7.5 @@ -20509,8 +17828,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9366 components: - pos: -48.5,6.5 @@ -20518,8 +17835,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9367 components: - pos: -48.5,5.5 @@ -20527,8 +17842,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9368 components: - pos: -48.5,4.5 @@ -20536,8 +17849,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9369 components: - pos: -48.5,3.5 @@ -20545,8 +17856,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9370 components: - pos: -48.5,2.5 @@ -20554,8 +17863,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9371 components: - pos: -48.5,1.5 @@ -20563,8 +17870,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9372 components: - pos: -48.5,-0.5 @@ -20572,8 +17877,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9373 components: - pos: -48.5,-1.5 @@ -20581,8 +17884,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9374 components: - pos: -48.5,-2.5 @@ -20590,8 +17891,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9375 components: - pos: -47.5,13.5 @@ -20599,8 +17898,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9376 components: - pos: -46.5,13.5 @@ -20608,8 +17905,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9377 components: - pos: -45.5,13.5 @@ -20617,8 +17912,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9378 components: - pos: -44.5,13.5 @@ -20626,8 +17919,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9379 components: - pos: -43.5,13.5 @@ -20635,8 +17926,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9380 components: - pos: -42.5,13.5 @@ -20644,8 +17933,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9381 components: - pos: -41.5,13.5 @@ -20653,8 +17940,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9382 components: - pos: -44.5,1.5 @@ -20662,8 +17947,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9383 components: - pos: -44.5,2.5 @@ -20671,8 +17954,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9384 components: - pos: -44.5,3.5 @@ -20680,8 +17961,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9385 components: - pos: -44.5,4.5 @@ -20689,8 +17968,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9386 components: - pos: -44.5,5.5 @@ -20698,8 +17975,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9387 components: - pos: -44.5,6.5 @@ -20707,8 +17982,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9388 components: - pos: -44.5,7.5 @@ -20716,8 +17989,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9389 components: - pos: -44.5,8.5 @@ -20725,8 +17996,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9390 components: - pos: -44.5,10.5 @@ -20734,8 +18003,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9391 components: - pos: -44.5,9.5 @@ -20743,8 +18010,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9392 components: - pos: -44.5,11.5 @@ -20752,99 +18017,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9393 components: - pos: -37.5,2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9394 components: - pos: -36.5,2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9395 components: - pos: -35.5,2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9396 components: - pos: -34.5,2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9397 components: - pos: -33.5,2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9398 components: - pos: -32.5,2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9399 components: - pos: -31.5,2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9400 components: - pos: -30.5,2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9401 components: - pos: -29.5,2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9402 components: - pos: -33.5,3.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9403 components: - pos: -33.5,4.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9404 components: - pos: -29.5,3.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9405 components: - pos: -29.5,4.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9406 components: - pos: -39.5,5.5 @@ -20852,8 +18089,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9407 components: - pos: -40.5,5.5 @@ -20861,8 +18096,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9408 components: - pos: -41.5,5.5 @@ -20870,8 +18103,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9409 components: - pos: -42.5,5.5 @@ -20879,8 +18110,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9410 components: - pos: -43.5,11.5 @@ -20888,8 +18117,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9411 components: - pos: -42.5,11.5 @@ -20897,8 +18124,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9458 components: - pos: -50.5,11.5 @@ -20906,8 +18131,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9459 components: - pos: -50.5,10.5 @@ -20915,8 +18138,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9460 components: - pos: -50.5,9.5 @@ -20924,8 +18145,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9461 components: - pos: -50.5,8.5 @@ -20933,8 +18152,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9462 components: - pos: -50.5,7.5 @@ -20942,8 +18159,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9463 components: - pos: -50.5,6.5 @@ -20951,8 +18166,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9464 components: - pos: -50.5,5.5 @@ -20960,8 +18173,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9465 components: - pos: -50.5,4.5 @@ -20969,8 +18180,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9466 components: - pos: -50.5,3.5 @@ -20978,8 +18187,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9467 components: - pos: -50.5,2.5 @@ -20987,8 +18194,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9468 components: - pos: -50.5,1.5 @@ -20996,8 +18201,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9512 components: - pos: -36.5,-1.5 @@ -21005,8 +18208,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9523 components: - pos: 17.5,-16.5 @@ -21014,8 +18215,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9525 components: - pos: -47.5,-1.5 @@ -21023,8 +18222,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9526 components: - pos: -47.5,-2.5 @@ -21032,8 +18229,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9527 components: - pos: -47.5,-3.5 @@ -21041,8 +18236,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9528 components: - pos: -47.5,-4.5 @@ -21050,8 +18243,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9529 components: - pos: -48.5,-4.5 @@ -21059,8 +18250,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9530 components: - pos: -49.5,-4.5 @@ -21068,15 +18257,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9540 components: - pos: -36.5,1.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9542 components: - pos: -36.5,0.5 @@ -21084,8 +18269,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9547 components: - pos: -36.5,-0.5 @@ -21093,36 +18276,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9559 components: - pos: -39.5,-0.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9560 components: - pos: -39.5,-1.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9561 components: - pos: -39.5,-2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9562 components: - pos: -39.5,-3.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9694 components: - pos: -36.5,-2.5 @@ -21130,8 +18303,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9695 components: - pos: -36.5,-3.5 @@ -21139,8 +18310,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9696 components: - pos: -36.5,-4.5 @@ -21148,8 +18317,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9697 components: - pos: -36.5,-5.5 @@ -21157,8 +18324,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9708 components: - pos: -42.5,14.5 @@ -21166,8 +18331,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9709 components: - pos: -42.5,15.5 @@ -21175,8 +18338,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9710 components: - pos: -42.5,16.5 @@ -21184,8 +18345,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9711 components: - pos: -42.5,17.5 @@ -21193,8 +18352,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9712 components: - pos: -43.5,15.5 @@ -21202,8 +18359,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9713 components: - pos: -44.5,15.5 @@ -21211,8 +18366,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9714 components: - pos: -45.5,15.5 @@ -21220,8 +18373,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9715 components: - pos: -46.5,15.5 @@ -21229,8 +18380,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9716 components: - pos: -46.5,16.5 @@ -21238,8 +18387,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9717 components: - pos: -46.5,17.5 @@ -21247,8 +18394,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9718 components: - pos: -46.5,18.5 @@ -21256,8 +18401,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10041 components: - pos: -41.5,-4.5 @@ -21265,99 +18408,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10042 components: - pos: -41.5,-5.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10043 components: - pos: -41.5,-6.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10044 components: - pos: -41.5,-7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10045 components: - pos: -41.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10046 components: - pos: -42.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10047 components: - pos: -43.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10048 components: - pos: -44.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10049 components: - pos: -44.5,-9.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10050 components: - pos: -44.5,-10.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10051 components: - pos: -44.5,-11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10052 components: - pos: -44.5,-12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10053 components: - pos: -44.5,-13.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10054 components: - pos: -44.5,-14.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10055 components: - pos: -44.5,-15.5 @@ -21365,8 +18480,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10056 components: - pos: -44.5,-16.5 @@ -21374,8 +18487,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10057 components: - pos: -44.5,-17.5 @@ -21383,8 +18494,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10058 components: - pos: -44.5,-18.5 @@ -21392,8 +18501,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10059 components: - pos: -45.5,-21.5 @@ -21401,8 +18508,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10060 components: - pos: -45.5,-20.5 @@ -21410,8 +18515,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10061 components: - pos: -43.5,-20.5 @@ -21419,8 +18522,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10062 components: - pos: -46.5,-20.5 @@ -21428,8 +18529,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10063 components: - pos: -47.5,-20.5 @@ -21437,148 +18536,106 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10064 components: - pos: -45.5,-12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10065 components: - pos: -46.5,-12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10066 components: - pos: -47.5,-12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10067 components: - pos: -48.5,-12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10068 components: - pos: -49.5,-12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10070 components: - pos: -51.5,-12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10071 components: - pos: -52.5,-12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10072 components: - pos: -53.5,-12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10073 components: - pos: -53.5,-11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10074 components: - pos: -53.5,-10.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10075 components: - pos: -53.5,-9.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10076 components: - pos: -53.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10077 components: - pos: -49.5,-11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10078 components: - pos: -49.5,-10.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10079 components: - pos: -49.5,-9.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10080 components: - pos: -49.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10081 components: - pos: -49.5,-7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10082 components: - pos: -40.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10083 components: - pos: -40.5,-9.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10084 components: - pos: -40.5,-10.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10085 components: - pos: -40.5,-11.5 @@ -21586,8 +18643,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10086 components: - pos: -40.5,-12.5 @@ -21595,8 +18650,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10087 components: - pos: -40.5,-13.5 @@ -21604,8 +18657,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10088 components: - pos: -40.5,-14.5 @@ -21613,8 +18664,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10089 components: - pos: -40.5,-15.5 @@ -21622,8 +18671,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10090 components: - pos: -40.5,-16.5 @@ -21631,8 +18678,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10091 components: - pos: -40.5,-17.5 @@ -21640,323 +18685,231 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10092 components: - pos: -39.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10093 components: - pos: -38.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10094 components: - pos: -37.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10095 components: - pos: -36.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10096 components: - pos: -35.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10097 components: - pos: -34.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10098 components: - pos: -33.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10099 components: - pos: -32.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10100 components: - pos: -31.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10101 components: - pos: -30.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10102 components: - pos: -29.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10103 components: - pos: -33.5,-7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10104 components: - pos: -33.5,-6.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10105 components: - pos: -33.5,-5.5 parent: 4812 - type: Transform - - fixtures: {} - type: Fixtures + type: Transform - uid: 10106 components: - pos: -33.5,-4.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10107 components: - pos: -33.5,-3.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10108 components: - pos: -33.5,-2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10109 components: - pos: -33.5,-1.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10110 components: - pos: -32.5,-6.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10111 components: - pos: -31.5,-6.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10112 components: - pos: -30.5,-6.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10113 components: - pos: -29.5,-6.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10114 components: - pos: -32.5,-2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10115 components: - pos: -31.5,-2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10116 components: - pos: -30.5,-2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10117 components: - pos: -29.5,-2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10118 components: - pos: -28.5,-2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10119 components: - pos: -27.5,-2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10120 components: - pos: -26.5,-2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10121 components: - pos: -25.5,-2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10122 components: - pos: -26.5,-1.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10123 components: - pos: -26.5,-0.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10124 components: - pos: -26.5,0.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10125 components: - pos: -26.5,1.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10126 components: - pos: -26.5,2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10127 components: - pos: -26.5,3.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10128 components: - pos: -26.5,4.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10129 components: - pos: -26.5,-3.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10130 components: - pos: -26.5,-4.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10131 components: - pos: -26.5,-5.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10132 components: - pos: -26.5,-6.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10133 components: - pos: -26.5,-7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10134 components: - pos: -26.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10135 components: - pos: -26.5,-9.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10136 components: - pos: -36.5,-9.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10137 components: - pos: -36.5,-10.5 @@ -21964,8 +18917,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10138 components: - pos: -36.5,-11.5 @@ -21973,8 +18924,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10139 components: - pos: -36.5,-12.5 @@ -21982,8 +18931,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10140 components: - pos: -36.5,-13.5 @@ -21991,8 +18938,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10141 components: - pos: -36.5,-14.5 @@ -22000,8 +18945,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10142 components: - pos: -36.5,-15.5 @@ -22009,8 +18952,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10143 components: - pos: -36.5,-16.5 @@ -22018,8 +18959,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10144 components: - pos: -36.5,-17.5 @@ -22027,8 +18966,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10145 components: - pos: -36.5,-18.5 @@ -22036,8 +18973,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10146 components: - pos: -35.5,-11.5 @@ -22045,8 +18980,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10147 components: - pos: -34.5,-11.5 @@ -22054,8 +18987,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10148 components: - pos: -33.5,-11.5 @@ -22063,8 +18994,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10149 components: - pos: -32.5,-11.5 @@ -22072,8 +19001,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10150 components: - pos: -31.5,-11.5 @@ -22081,8 +19008,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10151 components: - pos: -30.5,-11.5 @@ -22090,8 +19015,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10152 components: - pos: -29.5,-11.5 @@ -22099,8 +19022,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10190 components: - pos: -51.5,-21.5 @@ -22108,8 +19029,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10191 components: - pos: -51.5,-22.5 @@ -22117,8 +19036,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10192 components: - pos: -52.5,-22.5 @@ -22126,8 +19043,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10193 components: - pos: -53.5,-22.5 @@ -22135,8 +19050,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10194 components: - pos: -54.5,-22.5 @@ -22144,8 +19057,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10195 components: - pos: -55.5,-22.5 @@ -22153,8 +19064,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10196 components: - pos: -51.5,-23.5 @@ -22162,8 +19071,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10197 components: - pos: -51.5,-24.5 @@ -22171,8 +19078,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10198 components: - pos: -51.5,-25.5 @@ -22180,8 +19085,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10199 components: - pos: -50.5,-22.5 @@ -22189,8 +19092,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10200 components: - pos: -49.5,-22.5 @@ -22198,8 +19099,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10201 components: - pos: -48.5,-22.5 @@ -22207,8 +19106,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10202 components: - pos: -47.5,-22.5 @@ -22216,8 +19113,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10203 components: - pos: -46.5,-22.5 @@ -22225,8 +19120,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10204 components: - pos: -45.5,-22.5 @@ -22234,8 +19127,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10205 components: - pos: -34.5,-31.5 @@ -22243,8 +19134,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10206 components: - pos: -35.5,-31.5 @@ -22252,8 +19141,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10207 components: - pos: -36.5,-31.5 @@ -22261,8 +19148,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10208 components: - pos: -37.5,-31.5 @@ -22270,8 +19155,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10209 components: - pos: -38.5,-31.5 @@ -22279,8 +19162,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10210 components: - pos: -39.5,-31.5 @@ -22288,8 +19169,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10211 components: - pos: -40.5,-31.5 @@ -22297,8 +19176,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10212 components: - pos: -40.5,-30.5 @@ -22306,8 +19183,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10213 components: - pos: -40.5,-29.5 @@ -22315,8 +19190,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10214 components: - pos: -40.5,-28.5 @@ -22324,8 +19197,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10215 components: - pos: -40.5,-27.5 @@ -22333,8 +19204,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10216 components: - pos: -40.5,-26.5 @@ -22342,8 +19211,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10217 components: - pos: -40.5,-25.5 @@ -22351,8 +19218,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10218 components: - pos: -40.5,-24.5 @@ -22360,8 +19225,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10219 components: - pos: -40.5,-23.5 @@ -22369,8 +19232,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10220 components: - pos: -40.5,-22.5 @@ -22378,8 +19239,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10221 components: - pos: -40.5,-21.5 @@ -22387,8 +19246,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10222 components: - pos: -41.5,-20.5 @@ -22396,8 +19253,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10223 components: - pos: -42.5,-20.5 @@ -22405,8 +19260,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10508 components: - pos: -34.5,-25.5 @@ -22414,8 +19267,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10509 components: - pos: -34.5,-26.5 @@ -22423,22 +19274,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10510 components: - pos: -34.5,-27.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10511 components: - pos: -34.5,-28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10512 components: - pos: -35.5,-28.5 @@ -22446,57 +19291,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10513 components: - pos: -36.5,-28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10514 components: - pos: -37.5,-28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10515 components: - pos: -37.5,-27.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10516 components: - pos: -37.5,-26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10517 components: - pos: -37.5,-25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10518 components: - pos: -37.5,-24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10519 components: - pos: -37.5,-23.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10599 components: - pos: -44.5,-20.5 @@ -22504,8 +19333,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10615 components: - pos: -40.5,-20.5 @@ -22513,15 +19340,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10656 components: - pos: -54.5,-12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10657 components: - pos: -55.5,-12.5 @@ -22529,22 +19352,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10665 components: - pos: -48.5,-7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10882 components: - pos: -38.5,7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10883 components: - pos: -37.5,7.5 @@ -22552,8 +19369,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10884 components: - pos: -36.5,7.5 @@ -22561,8 +19376,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10885 components: - pos: -35.5,7.5 @@ -22570,8 +19383,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10886 components: - pos: -34.5,7.5 @@ -22579,8 +19390,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10887 components: - pos: -33.5,7.5 @@ -22588,8 +19397,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10888 components: - pos: -32.5,7.5 @@ -22597,8 +19404,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10889 components: - pos: -31.5,7.5 @@ -22606,8 +19411,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10890 components: - pos: -30.5,7.5 @@ -22615,57 +19418,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10891 components: - pos: -26.5,5.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10892 components: - pos: -26.5,6.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10893 components: - pos: -26.5,7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10894 components: - pos: -26.5,8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10895 components: - pos: -25.5,8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10896 components: - pos: -22.5,9.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10897 components: - pos: -22.5,8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 11168 components: - pos: 9.5,-35.5 @@ -22673,8 +19460,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11169 components: - pos: 9.5,-35.5 @@ -22682,8 +19467,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11170 components: - pos: 9.5,-36.5 @@ -22691,8 +19474,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11171 components: - pos: 9.5,-37.5 @@ -22700,8 +19481,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11172 components: - pos: 9.5,-38.5 @@ -22709,8 +19488,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11173 components: - pos: 9.5,-39.5 @@ -22718,8 +19495,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11174 components: - pos: 9.5,-40.5 @@ -22727,8 +19502,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11175 components: - pos: 9.5,-41.5 @@ -22736,8 +19509,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11176 components: - pos: 9.5,-42.5 @@ -22745,8 +19516,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11177 components: - pos: 10.5,-41.5 @@ -22754,8 +19523,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11178 components: - pos: 11.5,-41.5 @@ -22763,8 +19530,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11179 components: - pos: 12.5,-41.5 @@ -22772,15 +19537,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11180 components: - pos: 13.5,-41.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 11181 components: - pos: 8.5,-41.5 @@ -22788,8 +19549,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11182 components: - pos: 7.5,-41.5 @@ -22797,8 +19556,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11183 components: - pos: 6.5,-41.5 @@ -22806,22 +19563,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11184 components: - pos: 5.5,-41.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 11185 components: - pos: 10.5,-37.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 11186 components: - pos: 11.5,-37.5 @@ -22829,8 +19580,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11187 components: - pos: 12.5,-37.5 @@ -22838,8 +19587,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11188 components: - pos: 13.5,-37.5 @@ -22847,8 +19594,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11189 components: - pos: 8.5,-37.5 @@ -22856,8 +19601,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11190 components: - pos: 7.5,-37.5 @@ -22865,8 +19608,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11191 components: - pos: 6.5,-37.5 @@ -22874,15 +19615,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11192 components: - pos: 5.5,-37.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 11193 components: - pos: 9.5,-34.5 @@ -22890,8 +19627,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11194 components: - pos: 9.5,-33.5 @@ -22899,15 +19634,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11195 components: - pos: 9.5,-32.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 11196 components: - pos: 9.5,-31.5 @@ -22915,22 +19646,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11197 components: - pos: 8.5,-33.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 11198 components: - pos: 7.5,-33.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 11199 components: - pos: 6.5,-33.5 @@ -22938,15 +19663,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11200 components: - pos: 5.5,-33.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 11201 components: - pos: 10.5,-33.5 @@ -22954,8 +19675,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11202 components: - pos: 9.5,-30.5 @@ -22963,8 +19682,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11203 components: - pos: 8.5,-30.5 @@ -22972,8 +19689,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11204 components: - pos: 7.5,-30.5 @@ -22981,8 +19696,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11205 components: - pos: 6.5,-30.5 @@ -22990,8 +19703,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11206 components: - pos: 5.5,-30.5 @@ -22999,8 +19710,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11207 components: - pos: 4.5,-30.5 @@ -23008,8 +19717,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11208 components: - pos: 9.5,-30.5 @@ -23017,8 +19724,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11209 components: - pos: 10.5,-30.5 @@ -23026,8 +19731,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11210 components: - pos: 11.5,-30.5 @@ -23035,8 +19738,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11211 components: - pos: 12.5,-30.5 @@ -23044,8 +19745,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11212 components: - pos: 12.5,-31.5 @@ -23053,8 +19752,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11213 components: - pos: 12.5,-32.5 @@ -23062,8 +19759,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11214 components: - pos: 12.5,-33.5 @@ -23071,8 +19766,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11215 components: - pos: 14.5,-33.5 @@ -23080,8 +19773,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11274 components: - pos: 19.5,-33.5 @@ -23089,8 +19780,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11276 components: - pos: 19.5,-35.5 @@ -23098,8 +19787,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11277 components: - pos: 19.5,-36.5 @@ -23107,8 +19794,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11278 components: - pos: 19.5,-37.5 @@ -23116,15 +19801,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11279 components: - pos: 19.5,-38.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 11280 components: - pos: 20.5,-37.5 @@ -23132,8 +19813,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11281 components: - pos: 21.5,-37.5 @@ -23141,8 +19820,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11282 components: - pos: 18.5,-37.5 @@ -23150,8 +19827,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11283 components: - pos: 17.5,-37.5 @@ -23159,8 +19834,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11310 components: - pos: 33.5,-37.5 @@ -23168,22 +19841,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11311 components: - pos: 33.5,-28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 11312 components: - pos: 33.5,-29.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 11313 components: - pos: 33.5,-31.5 @@ -23191,8 +19858,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11314 components: - pos: 33.5,-32.5 @@ -23200,8 +19865,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11315 components: - pos: 33.5,-33.5 @@ -23209,8 +19872,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11316 components: - pos: 32.5,-33.5 @@ -23218,8 +19879,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11317 components: - pos: 31.5,-33.5 @@ -23227,8 +19886,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11318 components: - pos: 30.5,-33.5 @@ -23236,8 +19893,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11319 components: - pos: 29.5,-33.5 @@ -23245,8 +19900,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11320 components: - pos: 28.5,-33.5 @@ -23254,8 +19907,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11321 components: - pos: 27.5,-33.5 @@ -23263,8 +19914,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11322 components: - pos: 26.5,-33.5 @@ -23272,8 +19921,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11323 components: - pos: 25.5,-33.5 @@ -23281,8 +19928,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11324 components: - pos: 25.5,-34.5 @@ -23290,8 +19935,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11325 components: - pos: 24.5,-33.5 @@ -23299,8 +19942,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11441 components: - pos: 30.5,-37.5 @@ -23308,8 +19949,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11442 components: - pos: 30.5,-38.5 @@ -23317,8 +19956,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11443 components: - pos: 32.5,-38.5 @@ -23326,8 +19963,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11444 components: - pos: 31.5,-38.5 @@ -23335,8 +19970,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11445 components: - pos: 33.5,-38.5 @@ -23344,15 +19977,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11446 components: - pos: 34.5,-38.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 11447 components: - pos: 33.5,-36.5 @@ -23360,8 +19989,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11448 components: - pos: 34.5,-36.5 @@ -23369,8 +19996,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11449 components: - pos: 35.5,-36.5 @@ -23378,8 +20003,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11450 components: - pos: 36.5,-36.5 @@ -23387,8 +20010,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11451 components: - pos: 37.5,-36.5 @@ -23396,8 +20017,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11452 components: - pos: 32.5,-36.5 @@ -23405,8 +20024,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11453 components: - pos: 31.5,-36.5 @@ -23414,8 +20031,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11454 components: - pos: 31.5,-35.5 @@ -23423,8 +20038,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11455 components: - pos: 31.5,-34.5 @@ -23432,8 +20045,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11456 components: - pos: 33.5,-34.5 @@ -23441,36 +20052,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11457 components: - pos: 34.5,-34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 11458 components: - pos: 35.5,-34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 11459 components: - pos: 36.5,-34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 11460 components: - pos: 36.5,-33.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 11919 components: - pos: 13.5,-33.5 @@ -23478,8 +20079,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12048 components: - pos: -27.5,-23.5 @@ -23487,8 +20086,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12049 components: - pos: -28.5,-22.5 @@ -23496,8 +20093,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12050 components: - pos: -28.5,-24.5 @@ -23505,8 +20100,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12051 components: - pos: -28.5,-23.5 @@ -23514,8 +20107,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - proto: CableApcStack entities: - uid: 6196 @@ -23552,8 +20143,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 944 components: - pos: -14.5,8.5 @@ -23561,8 +20150,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 945 components: - pos: -14.5,9.5 @@ -23570,8 +20157,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 946 components: - pos: -14.5,10.5 @@ -23579,8 +20164,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 947 components: - pos: -14.5,11.5 @@ -23588,8 +20171,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 948 components: - pos: -14.5,12.5 @@ -23597,8 +20178,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 949 components: - pos: -14.5,13.5 @@ -23606,8 +20185,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 950 components: - pos: -13.5,13.5 @@ -23615,8 +20192,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 951 components: - pos: -12.5,13.5 @@ -23624,8 +20199,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 952 components: - pos: -11.5,13.5 @@ -23633,8 +20206,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 953 components: - pos: -10.5,13.5 @@ -23642,8 +20213,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 954 components: - pos: -9.5,13.5 @@ -23651,8 +20220,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 955 components: - pos: -8.5,13.5 @@ -23660,8 +20227,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 956 components: - pos: -7.5,13.5 @@ -23669,8 +20234,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 957 components: - pos: -6.5,13.5 @@ -23678,57 +20241,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 958 components: - pos: -5.5,13.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 959 components: - pos: -4.5,13.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 960 components: - pos: -3.5,13.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 961 components: - pos: -2.5,13.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 962 components: - pos: -1.5,13.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 964 components: - pos: -0.5,14.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 965 components: - pos: 0.5,14.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 966 components: - pos: 1.5,14.5 @@ -23736,8 +20283,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 967 components: - pos: 2.5,14.5 @@ -23745,8 +20290,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 968 components: - pos: 2.5,13.5 @@ -23754,8 +20297,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 969 components: - pos: 2.5,12.5 @@ -23763,8 +20304,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 970 components: - pos: 2.5,11.5 @@ -23772,218 +20311,156 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2080 components: - pos: 6.5,31.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2081 components: - pos: 6.5,32.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2082 components: - pos: 5.5,32.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2083 components: - pos: 4.5,32.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2084 components: - pos: 3.5,32.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2085 components: - pos: 3.5,31.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2086 components: - pos: 3.5,30.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2087 components: - pos: 3.5,29.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2088 components: - pos: 3.5,28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2089 components: - pos: 3.5,27.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2090 components: - pos: 3.5,26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2091 components: - pos: 3.5,25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2092 components: - pos: 3.5,24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2093 components: - pos: 3.5,23.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2094 components: - pos: 3.5,22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2095 components: - pos: 3.5,21.5 parent: 4812 - type: Transform - - fixtures: {} - type: Fixtures + type: Transform - uid: 2096 components: - pos: 3.5,20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2097 components: - pos: 3.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2098 components: - pos: 2.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2099 components: - pos: 1.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2100 components: - pos: 0.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2101 components: - pos: -0.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2102 components: - pos: -1.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2103 components: - pos: -1.5,18.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2104 components: - pos: -1.5,17.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2105 components: - pos: -1.5,16.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2106 components: - pos: -1.5,15.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2107 components: - pos: -1.5,14.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2108 components: - pos: 3.5,33.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2109 components: - pos: 3.5,34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2110 components: - pos: 3.5,35.5 @@ -23991,8 +20468,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2111 components: - pos: 4.5,35.5 @@ -24000,8 +20475,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2112 components: - pos: 4.5,34.5 @@ -24009,22 +20482,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2113 components: - pos: 2.5,34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2114 components: - pos: 1.5,34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2115 components: - pos: 1.5,35.5 @@ -24032,8 +20499,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2116 components: - pos: 1.5,36.5 @@ -24041,8 +20506,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2117 components: - pos: 0.5,36.5 @@ -24050,57 +20513,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2118 components: - pos: 0.5,35.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2119 components: - pos: -0.5,35.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2120 components: - pos: -1.5,35.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2121 components: - pos: -2.5,35.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2122 components: - pos: -3.5,35.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2123 components: - pos: -4.5,35.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2124 components: - pos: -5.5,35.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2125 components: - pos: -3.5,36.5 @@ -24108,8 +20555,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2126 components: - pos: -2.5,36.5 @@ -24117,8 +20562,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2127 components: - pos: -1.5,36.5 @@ -24126,8 +20569,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2128 components: - pos: -5.5,36.5 @@ -24135,8 +20576,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2129 components: - pos: -6.5,36.5 @@ -24144,8 +20583,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2130 components: - pos: -6.5,35.5 @@ -24153,8 +20590,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2131 components: - pos: 6.5,33.5 @@ -24162,29 +20597,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2132 components: - pos: -6.5,34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2133 components: - pos: -7.5,34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2134 components: - pos: -8.5,34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2135 components: - pos: -9.5,34.5 @@ -24192,8 +20619,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2136 components: - pos: -9.5,35.5 @@ -24201,8 +20626,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2137 components: - pos: -8.5,35.5 @@ -24210,22 +20633,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2138 components: - pos: -8.5,33.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2139 components: - pos: -8.5,32.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2140 components: - pos: -9.5,32.5 @@ -24233,8 +20650,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2839 components: - pos: 13.5,32.5 @@ -24242,8 +20657,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3047 components: - pos: 12.5,32.5 @@ -24251,8 +20664,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3048 components: - pos: 12.5,31.5 @@ -24260,8 +20671,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3049 components: - pos: 12.5,30.5 @@ -24269,8 +20678,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3050 components: - pos: 12.5,29.5 @@ -24278,8 +20685,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3051 components: - pos: 12.5,28.5 @@ -24287,8 +20692,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3052 components: - pos: 12.5,27.5 @@ -24296,8 +20699,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3053 components: - pos: 12.5,26.5 @@ -24305,8 +20706,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3054 components: - pos: 12.5,25.5 @@ -24314,8 +20713,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3055 components: - pos: 12.5,24.5 @@ -24323,8 +20720,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3056 components: - pos: 12.5,23.5 @@ -24332,8 +20727,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3057 components: - pos: 12.5,22.5 @@ -24341,8 +20734,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3058 components: - pos: 12.5,21.5 @@ -24350,78 +20741,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3059 components: - pos: 12.5,20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3060 components: - pos: 12.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3061 components: - pos: 4.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3062 components: - pos: 5.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3063 components: - pos: 6.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3064 components: - pos: 7.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3065 components: - pos: 8.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3066 components: - pos: 9.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3067 components: - pos: 10.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3068 components: - pos: 11.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3069 components: - pos: 3.5,11.5 @@ -24429,8 +20798,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3070 components: - pos: 4.5,11.5 @@ -24438,8 +20805,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3071 components: - pos: 5.5,11.5 @@ -24447,8 +20812,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3072 components: - pos: 6.5,11.5 @@ -24456,8 +20819,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3073 components: - pos: 7.5,11.5 @@ -24465,8 +20826,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3074 components: - pos: 8.5,11.5 @@ -24474,8 +20833,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3075 components: - pos: 9.5,11.5 @@ -24483,8 +20840,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3076 components: - pos: 9.5,10.5 @@ -24492,8 +20847,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3077 components: - pos: 9.5,9.5 @@ -24501,8 +20854,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3078 components: - pos: 9.5,8.5 @@ -24510,8 +20861,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3079 components: - pos: 9.5,7.5 @@ -24519,8 +20868,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3080 components: - pos: 9.5,6.5 @@ -24528,8 +20875,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3081 components: - pos: 9.5,5.5 @@ -24537,8 +20882,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3082 components: - pos: 9.5,4.5 @@ -24546,8 +20889,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3083 components: - pos: 9.5,3.5 @@ -24555,127 +20896,91 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3084 components: - pos: 10.5,3.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3085 components: - pos: 11.5,3.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3086 components: - pos: 11.5,4.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3087 components: - pos: 11.5,5.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3088 components: - pos: 11.5,6.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3089 components: - pos: 11.5,7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3090 components: - pos: 11.5,8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3091 components: - pos: 11.5,9.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3092 components: - pos: 11.5,10.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3093 components: - pos: 11.5,11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3094 components: - pos: 11.5,12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3095 components: - pos: 11.5,13.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3096 components: - pos: 11.5,14.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3097 components: - pos: 11.5,15.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3098 components: - pos: 11.5,16.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3099 components: - pos: 11.5,17.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3100 components: - pos: 11.5,18.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3789 components: - pos: 14.5,46.5 @@ -24683,15 +20988,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3790 components: - pos: 14.5,45.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3791 components: - pos: 14.5,44.5 @@ -24699,8 +21000,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3792 components: - pos: 14.5,47.5 @@ -24708,8 +21007,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3793 components: - pos: 13.5,47.5 @@ -24717,211 +21014,151 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3853 components: - pos: 13.5,45.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3854 components: - pos: 12.5,45.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3855 components: - pos: 11.5,45.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3856 components: - pos: 10.5,45.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3857 components: - pos: 10.5,46.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3858 components: - pos: 10.5,47.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3859 components: - pos: 10.5,48.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3860 components: - pos: 10.5,49.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3861 components: - pos: 10.5,50.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3862 components: - pos: 11.5,50.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3863 components: - pos: 12.5,50.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3864 components: - pos: 12.5,51.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3865 components: - pos: 12.5,52.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3866 components: - pos: 12.5,53.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3867 components: - pos: 12.5,54.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3868 components: - pos: 12.5,55.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3869 components: - pos: 9.5,50.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3870 components: - pos: 8.5,50.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3871 components: - pos: 8.5,51.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3872 components: - pos: 8.5,52.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3873 components: - pos: 8.5,53.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3874 components: - pos: 8.5,54.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3875 components: - pos: 8.5,55.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3876 components: - pos: 9.5,55.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3877 components: - pos: 11.5,55.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3878 components: - pos: 10.5,55.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3879 components: - pos: 10.5,56.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4235 components: - pos: 12.5,3.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4236 components: - pos: 13.5,3.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4237 components: - pos: 14.5,3.5 @@ -24929,8 +21166,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4238 components: - pos: 15.5,3.5 @@ -24938,8 +21173,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4239 components: - pos: 15.5,4.5 @@ -24947,8 +21180,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4240 components: - pos: 17.5,4.5 @@ -24956,8 +21187,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4241 components: - pos: 16.5,4.5 @@ -24965,8 +21194,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4242 components: - pos: 18.5,4.5 @@ -24974,29 +21201,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4243 components: - pos: 18.5,3.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4244 components: - pos: 18.5,2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4245 components: - pos: 17.5,2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5014 components: - pos: -26.5,-30.5 @@ -25004,8 +21223,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5914 components: - pos: 16.5,-30.5 @@ -25013,8 +21230,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5915 components: - pos: 15.5,-30.5 @@ -25022,8 +21237,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5916 components: - pos: 15.5,-31.5 @@ -25031,8 +21244,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5917 components: - pos: 15.5,-32.5 @@ -25040,8 +21251,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5918 components: - pos: 15.5,-33.5 @@ -25049,8 +21258,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5919 components: - pos: 16.5,-33.5 @@ -25058,8 +21265,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5920 components: - pos: 17.5,-33.5 @@ -25067,8 +21272,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5921 components: - pos: 18.5,-33.5 @@ -25076,8 +21279,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5922 components: - pos: 18.5,-32.5 @@ -25085,8 +21286,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5923 components: - pos: 18.5,-31.5 @@ -25094,8 +21293,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5924 components: - pos: 18.5,-30.5 @@ -25103,8 +21300,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5925 components: - pos: 18.5,-29.5 @@ -25112,8 +21307,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5926 components: - pos: 18.5,-28.5 @@ -25121,85 +21314,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5927 components: - pos: 18.5,-27.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5928 components: - pos: 18.5,-26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5929 components: - pos: 18.5,-25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5930 components: - pos: 18.5,-24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5931 components: - pos: 18.5,-23.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5932 components: - pos: 18.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5933 components: - pos: 18.5,-21.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5934 components: - pos: 18.5,-20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5935 components: - pos: 17.5,-20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5936 components: - pos: 16.5,-20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5937 components: - pos: 16.5,-19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5938 components: - pos: 16.5,-18.5 @@ -25207,8 +21376,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5939 components: - pos: 16.5,-17.5 @@ -25216,8 +21383,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5940 components: - pos: 16.5,-16.5 @@ -25225,8 +21390,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5941 components: - pos: 16.5,-15.5 @@ -25234,8 +21397,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5942 components: - pos: 16.5,-14.5 @@ -25243,8 +21404,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5943 components: - pos: 15.5,-14.5 @@ -25252,8 +21411,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5944 components: - pos: 14.5,-14.5 @@ -25261,8 +21418,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5945 components: - pos: 14.5,-14.5 @@ -25270,8 +21425,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5946 components: - pos: 13.5,-14.5 @@ -25279,8 +21432,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5947 components: - pos: 12.5,-14.5 @@ -25288,64 +21439,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5948 components: - pos: 12.5,-13.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5949 components: - pos: 12.5,-12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5950 components: - pos: 12.5,-11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5951 components: - pos: 11.5,-11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5952 components: - pos: 10.5,-11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5953 components: - pos: 9.5,-11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5954 components: - pos: 8.5,-11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5955 components: - pos: 8.5,-10.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5956 components: - pos: 8.5,-9.5 @@ -25353,8 +21486,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5957 components: - pos: 9.5,-9.5 @@ -25362,8 +21493,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5958 components: - pos: 9.5,-8.5 @@ -25371,8 +21500,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5959 components: - pos: 9.5,-7.5 @@ -25380,8 +21507,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5960 components: - pos: 9.5,-6.5 @@ -25389,8 +21514,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5961 components: - pos: 9.5,-5.5 @@ -25398,8 +21521,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5962 components: - pos: 9.5,-4.5 @@ -25407,8 +21528,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5963 components: - pos: 9.5,-3.5 @@ -25416,8 +21535,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5964 components: - pos: 9.5,-2.5 @@ -25425,8 +21542,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5965 components: - pos: 9.5,-1.5 @@ -25434,8 +21549,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5966 components: - pos: 9.5,-0.5 @@ -25443,8 +21556,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5967 components: - pos: 9.5,0.5 @@ -25452,8 +21563,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5968 components: - pos: 9.5,1.5 @@ -25461,8 +21570,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5969 components: - pos: 9.5,2.5 @@ -25470,8 +21577,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6020 components: - pos: 16.5,-31.5 @@ -25479,8 +21584,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6519 components: - pos: -25.5,-30.5 @@ -25488,8 +21591,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6918 components: - pos: -8.5,-30.5 @@ -25497,8 +21598,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6919 components: - pos: -8.5,-31.5 @@ -25506,8 +21605,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6920 components: - pos: -8.5,-32.5 @@ -25515,8 +21612,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6921 components: - pos: -10.5,-32.5 @@ -25524,8 +21619,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6922 components: - pos: -9.5,-32.5 @@ -25533,148 +21626,106 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6923 components: - pos: -10.5,-33.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6924 components: - pos: -10.5,-34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6925 components: - pos: -9.5,-34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6926 components: - pos: -8.5,-34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6927 components: - pos: -7.5,-34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6928 components: - pos: -6.5,-34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6929 components: - pos: -5.5,-34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6930 components: - pos: -4.5,-34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6931 components: - pos: -3.5,-34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6932 components: - pos: -2.5,-34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6933 components: - pos: -1.5,-34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6934 components: - pos: -0.5,-34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6935 components: - pos: 0.5,-34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6936 components: - pos: 1.5,-34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6937 components: - pos: 1.5,-33.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6938 components: - pos: 1.5,-32.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6939 components: - pos: 1.5,-31.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6940 components: - pos: 1.5,-30.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6941 components: - pos: 2.5,-30.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6942 components: - pos: 3.5,-30.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6943 components: - pos: 4.5,-30.5 @@ -25682,8 +21733,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6944 components: - pos: 5.5,-30.5 @@ -25691,8 +21740,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6945 components: - pos: 6.5,-30.5 @@ -25700,8 +21747,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6946 components: - pos: 7.5,-30.5 @@ -25709,8 +21754,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6947 components: - pos: 8.5,-30.5 @@ -25718,8 +21761,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6948 components: - pos: 9.5,-30.5 @@ -25727,8 +21768,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6949 components: - pos: 10.5,-30.5 @@ -25736,8 +21775,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6950 components: - pos: 11.5,-30.5 @@ -25745,8 +21782,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6951 components: - pos: 12.5,-30.5 @@ -25754,8 +21789,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6952 components: - pos: 12.5,-31.5 @@ -25763,8 +21796,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6953 components: - pos: 12.5,-32.5 @@ -25772,8 +21803,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6954 components: - pos: 12.5,-33.5 @@ -25781,8 +21810,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6955 components: - pos: 13.5,-33.5 @@ -25790,8 +21817,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6956 components: - pos: 14.5,-33.5 @@ -25799,183 +21824,131 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6957 components: - pos: 1.5,-29.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6958 components: - pos: 1.5,-28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6959 components: - pos: 1.5,-27.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6960 components: - pos: 1.5,-26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6961 components: - pos: 1.5,-25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6962 components: - pos: 1.5,-24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6963 components: - pos: 1.5,-23.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6964 components: - pos: 1.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6965 components: - pos: 1.5,-21.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6966 components: - pos: 1.5,-20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6967 components: - pos: 1.5,-19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6968 components: - pos: 1.5,-18.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6969 components: - pos: 1.5,-17.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6970 components: - pos: 1.5,-16.5 parent: 4812 - type: Transform - - fixtures: {} - type: Fixtures + type: Transform - uid: 6971 components: - pos: 1.5,-15.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6972 components: - pos: 1.5,-14.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6973 components: - pos: 1.5,-13.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6974 components: - pos: 1.5,-12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6975 components: - pos: 1.5,-11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6976 components: - pos: 2.5,-11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6977 components: - pos: 3.5,-11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6978 components: - pos: 4.5,-11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6979 components: - pos: 5.5,-11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6980 components: - pos: 6.5,-11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6981 components: - pos: 7.5,-11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7280 components: - pos: -27.5,-30.5 @@ -25983,8 +21956,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7282 components: - pos: -28.5,-30.5 @@ -25992,8 +21963,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7283 components: - pos: -29.5,-30.5 @@ -26001,8 +21970,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7958 components: - pos: -37.5,8.5 @@ -26010,8 +21977,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7959 components: - pos: -37.5,7.5 @@ -26019,8 +21984,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7960 components: - pos: -36.5,7.5 @@ -26028,8 +21991,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7961 components: - pos: -35.5,7.5 @@ -26037,8 +21998,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7962 components: - pos: -34.5,7.5 @@ -26046,8 +22005,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7963 components: - pos: -33.5,7.5 @@ -26055,8 +22012,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7964 components: - pos: -32.5,7.5 @@ -26064,8 +22019,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7965 components: - pos: -31.5,7.5 @@ -26073,8 +22026,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7966 components: - pos: -30.5,7.5 @@ -26082,8 +22033,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7967 components: - pos: -29.5,7.5 @@ -26091,8 +22040,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7968 components: - pos: -29.5,8.5 @@ -26100,8 +22047,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7969 components: - pos: -28.5,8.5 @@ -26109,183 +22054,131 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7970 components: - pos: -27.5,8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7971 components: - pos: -26.5,8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7972 components: - pos: -25.5,8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7973 components: - pos: -24.5,8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7974 components: - pos: -23.5,8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7975 components: - pos: -22.5,8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7976 components: - pos: -22.5,9.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7977 components: - pos: -22.5,10.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7978 components: - pos: -21.5,10.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7979 components: - pos: -20.5,10.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7980 components: - pos: -19.5,10.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7981 components: - pos: -18.5,10.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7982 components: - pos: -17.5,10.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7983 components: - pos: -16.5,10.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7984 components: - pos: -15.5,10.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8725 components: - pos: -45.5,-2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8738 components: - pos: -45.5,-3.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8739 components: - pos: -44.5,-3.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8740 components: - pos: -44.5,-2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8741 components: - pos: -45.5,-1.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8742 components: - pos: -44.5,-1.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8743 components: - pos: -43.5,-1.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8744 components: - pos: -42.5,-1.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8745 components: - pos: -42.5,-2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8746 components: - pos: -42.5,-3.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8747 components: - pos: -42.5,-4.5 @@ -26293,8 +22186,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8748 components: - pos: -44.5,-4.5 @@ -26302,176 +22193,126 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8749 components: - pos: -44.5,-5.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8750 components: - pos: -42.5,-5.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8755 components: - pos: -43.5,-2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9732 components: - pos: -42.5,-6.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9733 components: - pos: -42.5,-7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9734 components: - pos: -42.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9735 components: - pos: -41.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9736 components: - pos: -40.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9737 components: - pos: -39.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9738 components: - pos: -38.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9739 components: - pos: -37.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9740 components: - pos: -36.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9741 components: - pos: -35.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9742 components: - pos: -34.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9743 components: - pos: -33.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9744 components: - pos: -32.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9745 components: - pos: -31.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9746 components: - pos: -30.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9747 components: - pos: -29.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9748 components: - pos: -29.5,-7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9749 components: - pos: -29.5,-6.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9750 components: - pos: -29.5,-5.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9751 components: - pos: -38.5,7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9752 components: - pos: -39.5,7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9753 components: - pos: -39.5,5.5 @@ -26479,8 +22320,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9754 components: - pos: -38.5,5.5 @@ -26488,8 +22327,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9755 components: - pos: -39.5,6.5 @@ -26497,50 +22334,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9756 components: - pos: -37.5,5.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9757 components: - pos: -36.5,5.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9758 components: - pos: -36.5,4.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9759 components: - pos: -36.5,3.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9760 components: - pos: -36.5,2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9761 components: - pos: -36.5,1.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9762 components: - pos: -36.5,0.5 @@ -26548,8 +22371,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9763 components: - pos: -36.5,-0.5 @@ -26557,8 +22378,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9764 components: - pos: -36.5,-1.5 @@ -26566,8 +22385,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9765 components: - pos: -36.5,-2.5 @@ -26575,8 +22392,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9766 components: - pos: -36.5,-3.5 @@ -26584,8 +22399,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9767 components: - pos: -36.5,-4.5 @@ -26593,8 +22406,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9768 components: - pos: -36.5,-5.5 @@ -26602,8 +22413,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9769 components: - pos: -36.5,-6.5 @@ -26611,141 +22420,101 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9770 components: - pos: -36.5,-7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9771 components: - pos: -33.5,-7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9772 components: - pos: -33.5,-6.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9773 components: - pos: -33.5,-5.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9774 components: - pos: -33.5,-4.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9775 components: - pos: -33.5,-3.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9776 components: - pos: -33.5,-2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9777 components: - pos: -32.5,-2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9778 components: - pos: -31.5,-2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9779 components: - pos: -30.5,-2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9780 components: - pos: -29.5,-2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9781 components: - pos: -28.5,-2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9782 components: - pos: -27.5,-2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9783 components: - pos: -26.5,-2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9784 components: - pos: -25.5,-2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9785 components: - pos: -25.5,-3.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9786 components: - pos: -25.5,-4.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9787 components: - pos: -24.5,-4.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9788 components: - pos: -23.5,-4.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9789 components: - pos: -22.5,-4.5 @@ -26753,8 +22522,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9790 components: - pos: -21.5,-4.5 @@ -26762,8 +22529,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9791 components: - pos: -20.5,-4.5 @@ -26771,15 +22536,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9792 components: - pos: -20.5,-3.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9793 components: - pos: -19.5,-3.5 @@ -26787,8 +22548,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9794 components: - pos: -18.5,-3.5 @@ -26796,8 +22555,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9795 components: - pos: -17.5,-3.5 @@ -26805,8 +22562,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9796 components: - pos: -16.5,-3.5 @@ -26814,8 +22569,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9797 components: - pos: -15.5,-3.5 @@ -26823,8 +22576,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9798 components: - pos: -14.5,-3.5 @@ -26832,8 +22583,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9799 components: - pos: -13.5,-3.5 @@ -26841,8 +22590,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9800 components: - pos: -12.5,-3.5 @@ -26850,8 +22597,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9801 components: - pos: -12.5,-2.5 @@ -26859,8 +22604,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9802 components: - pos: -12.5,-1.5 @@ -26868,8 +22611,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9803 components: - pos: -12.5,-0.5 @@ -26877,8 +22618,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9804 components: - pos: -12.5,0.5 @@ -26886,8 +22625,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9805 components: - pos: -12.5,1.5 @@ -26895,8 +22632,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9806 components: - pos: -12.5,2.5 @@ -26904,8 +22639,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9807 components: - pos: -12.5,3.5 @@ -26913,8 +22646,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9808 components: - pos: -12.5,4.5 @@ -26922,8 +22653,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9809 components: - pos: -12.5,5.5 @@ -26931,8 +22660,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9810 components: - pos: -12.5,6.5 @@ -26940,8 +22667,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9811 components: - pos: -12.5,7.5 @@ -26949,8 +22674,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9812 components: - pos: -12.5,8.5 @@ -26958,8 +22681,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9813 components: - pos: -12.5,9.5 @@ -26967,8 +22688,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9814 components: - pos: -12.5,10.5 @@ -26976,8 +22695,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9815 components: - pos: -12.5,11.5 @@ -26985,8 +22702,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9816 components: - pos: -12.5,12.5 @@ -26994,78 +22709,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9913 components: - pos: -44.5,-6.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9914 components: - pos: -44.5,-7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9915 components: - pos: -44.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9916 components: - pos: -44.5,-9.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9917 components: - pos: -44.5,-10.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9918 components: - pos: -44.5,-11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9919 components: - pos: -44.5,-12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9920 components: - pos: -43.5,-12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9921 components: - pos: -42.5,-12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9922 components: - pos: -41.5,-12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9923 components: - pos: -40.5,-12.5 @@ -27073,15 +22766,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9924 components: - pos: -40.5,-10.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9925 components: - pos: -40.5,-11.5 @@ -27089,8 +22778,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9926 components: - pos: -40.5,-13.5 @@ -27098,8 +22785,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9927 components: - pos: -40.5,-14.5 @@ -27107,8 +22792,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9928 components: - pos: -40.5,-15.5 @@ -27116,8 +22799,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9929 components: - pos: -40.5,-16.5 @@ -27125,8 +22806,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9930 components: - pos: -40.5,-17.5 @@ -27134,15 +22813,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9931 components: - pos: -40.5,-18.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9960 components: - pos: -48.5,-19.5 @@ -27150,8 +22825,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9961 components: - pos: -48.5,-20.5 @@ -27159,8 +22832,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9962 components: - pos: -47.5,-20.5 @@ -27168,8 +22839,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9963 components: - pos: -46.5,-20.5 @@ -27177,8 +22846,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9964 components: - pos: -45.5,-20.5 @@ -27186,8 +22853,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9965 components: - pos: -44.5,-20.5 @@ -27195,8 +22860,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9966 components: - pos: -43.5,-20.5 @@ -27204,8 +22867,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9967 components: - pos: -42.5,-20.5 @@ -27213,8 +22874,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9974 components: - pos: -36.5,-19.5 @@ -27222,8 +22881,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9975 components: - pos: -36.5,-18.5 @@ -27231,8 +22888,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9976 components: - pos: -36.5,-17.5 @@ -27240,8 +22895,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9977 components: - pos: -36.5,-16.5 @@ -27249,8 +22902,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9978 components: - pos: -36.5,-15.5 @@ -27258,8 +22909,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9979 components: - pos: -36.5,-14.5 @@ -27267,8 +22916,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9980 components: - pos: -36.5,-13.5 @@ -27276,8 +22923,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9981 components: - pos: -36.5,-12.5 @@ -27285,8 +22930,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9982 components: - pos: -36.5,-11.5 @@ -27294,8 +22937,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9983 components: - pos: -36.5,-10.5 @@ -27303,15 +22944,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9984 components: - pos: -36.5,-9.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9995 components: - pos: -41.5,-20.5 @@ -27319,8 +22956,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9996 components: - pos: -40.5,-20.5 @@ -27328,8 +22963,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9997 components: - pos: -39.5,-20.5 @@ -27337,8 +22970,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9998 components: - pos: -38.5,-20.5 @@ -27346,8 +22977,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9999 components: - pos: -37.5,-20.5 @@ -27355,8 +22984,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10000 components: - pos: -36.5,-20.5 @@ -27364,8 +22991,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10159 components: - pos: -56.5,-22.5 @@ -27373,8 +22998,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10160 components: - pos: -55.5,-22.5 @@ -27382,8 +23005,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10161 components: - pos: -54.5,-22.5 @@ -27391,8 +23012,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10162 components: - pos: -53.5,-22.5 @@ -27400,8 +23019,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10163 components: - pos: -53.5,-23.5 @@ -27409,8 +23026,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10164 components: - pos: -53.5,-24.5 @@ -27418,8 +23033,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10168 components: - pos: -53.5,-25.5 @@ -27427,8 +23040,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10169 components: - pos: -52.5,-25.5 @@ -27436,8 +23047,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10170 components: - pos: -51.5,-25.5 @@ -27445,8 +23054,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10171 components: - pos: -51.5,-24.5 @@ -27454,8 +23061,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10172 components: - pos: -51.5,-23.5 @@ -27463,8 +23068,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10173 components: - pos: -51.5,-22.5 @@ -27472,8 +23075,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10174 components: - pos: -50.5,-22.5 @@ -27481,8 +23082,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10175 components: - pos: -49.5,-22.5 @@ -27490,8 +23089,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10176 components: - pos: -48.5,-22.5 @@ -27499,8 +23096,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10177 components: - pos: -47.5,-22.5 @@ -27508,8 +23103,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10178 components: - pos: -46.5,-22.5 @@ -27517,8 +23110,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10179 components: - pos: -45.5,-22.5 @@ -27526,8 +23117,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10180 components: - pos: -45.5,-21.5 @@ -27535,8 +23124,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10181 components: - pos: -50.5,-25.5 @@ -27544,8 +23131,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10225 components: - pos: -57.5,-22.5 @@ -27553,8 +23138,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10226 components: - pos: -59.5,-26.5 @@ -27562,8 +23145,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10227 components: - pos: -59.5,-25.5 @@ -27571,8 +23152,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10228 components: - pos: -59.5,-24.5 @@ -27580,8 +23159,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10229 components: - pos: -59.5,-23.5 @@ -27589,8 +23166,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10230 components: - pos: -59.5,-21.5 @@ -27598,8 +23173,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10231 components: - pos: -59.5,-20.5 @@ -27607,8 +23180,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10232 components: - pos: -59.5,-19.5 @@ -27616,8 +23187,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10233 components: - pos: -59.5,-18.5 @@ -27625,8 +23194,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10234 components: - pos: -61.5,-18.5 @@ -27634,8 +23201,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10235 components: - pos: -61.5,-19.5 @@ -27643,8 +23208,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10236 components: - pos: -61.5,-20.5 @@ -27652,8 +23215,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10237 components: - pos: -61.5,-21.5 @@ -27661,8 +23222,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10238 components: - pos: -61.5,-23.5 @@ -27670,8 +23229,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10239 components: - pos: -61.5,-24.5 @@ -27679,8 +23236,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10240 components: - pos: -61.5,-25.5 @@ -27688,8 +23243,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10241 components: - pos: -61.5,-26.5 @@ -27697,8 +23250,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10242 components: - pos: -63.5,-26.5 @@ -27706,8 +23257,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10243 components: - pos: -63.5,-25.5 @@ -27715,8 +23264,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10244 components: - pos: -63.5,-24.5 @@ -27724,8 +23271,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10245 components: - pos: -63.5,-23.5 @@ -27733,8 +23278,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10246 components: - pos: -65.5,-26.5 @@ -27742,8 +23285,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10247 components: - pos: -65.5,-25.5 @@ -27751,8 +23292,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10248 components: - pos: -65.5,-24.5 @@ -27760,8 +23299,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10249 components: - pos: -65.5,-23.5 @@ -27769,8 +23306,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10250 components: - pos: -69.5,-26.5 @@ -27778,8 +23313,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10251 components: - pos: -69.5,-25.5 @@ -27787,8 +23320,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10252 components: - pos: -69.5,-24.5 @@ -27796,8 +23327,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10253 components: - pos: -69.5,-23.5 @@ -27805,8 +23334,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10254 components: - pos: -67.5,-26.5 @@ -27814,8 +23341,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10255 components: - pos: -67.5,-25.5 @@ -27823,8 +23348,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10256 components: - pos: -67.5,-24.5 @@ -27832,8 +23355,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10257 components: - pos: -67.5,-23.5 @@ -27841,8 +23362,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10258 components: - pos: -69.5,-21.5 @@ -27850,8 +23369,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10259 components: - pos: -69.5,-20.5 @@ -27859,8 +23376,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10260 components: - pos: -69.5,-19.5 @@ -27868,8 +23383,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10261 components: - pos: -69.5,-18.5 @@ -27877,8 +23390,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10262 components: - pos: -67.5,-18.5 @@ -27886,8 +23397,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10263 components: - pos: -67.5,-19.5 @@ -27895,8 +23404,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10264 components: - pos: -67.5,-20.5 @@ -27904,8 +23411,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10265 components: - pos: -67.5,-21.5 @@ -27913,8 +23418,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10266 components: - pos: -65.5,-21.5 @@ -27922,8 +23425,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10267 components: - pos: -65.5,-20.5 @@ -27931,8 +23432,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10268 components: - pos: -65.5,-19.5 @@ -27940,8 +23439,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10269 components: - pos: -65.5,-18.5 @@ -27949,8 +23446,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10270 components: - pos: -63.5,-18.5 @@ -27958,8 +23453,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10271 components: - pos: -63.5,-19.5 @@ -27967,8 +23460,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10272 components: - pos: -63.5,-20.5 @@ -27976,8 +23467,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10273 components: - pos: -63.5,-21.5 @@ -27985,17 +23474,13 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10275 components: - pos: -71.5,-22.5 parent: 4812 type: Transform - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures + type: AmbientSound - uid: 10276 components: - pos: -70.5,-22.5 @@ -28003,8 +23488,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10529 components: - pos: -10.5,-31.5 @@ -28012,8 +23495,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10530 components: - pos: -10.5,-30.5 @@ -28021,8 +23502,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10531 components: - pos: -11.5,-30.5 @@ -28030,8 +23509,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10532 components: - pos: -12.5,-30.5 @@ -28039,8 +23516,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10533 components: - pos: -13.5,-30.5 @@ -28048,8 +23523,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10534 components: - pos: -14.5,-30.5 @@ -28057,8 +23530,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10535 components: - pos: -15.5,-30.5 @@ -28066,8 +23537,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10536 components: - pos: -16.5,-30.5 @@ -28075,8 +23544,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10537 components: - pos: -17.5,-30.5 @@ -28084,8 +23551,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10538 components: - pos: -18.5,-30.5 @@ -28093,8 +23558,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10539 components: - pos: -19.5,-30.5 @@ -28102,8 +23565,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10540 components: - pos: -20.5,-30.5 @@ -28111,8 +23572,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10541 components: - pos: -21.5,-30.5 @@ -28120,8 +23579,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10542 components: - pos: -22.5,-30.5 @@ -28129,8 +23586,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10543 components: - pos: -23.5,-30.5 @@ -28138,8 +23593,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10544 components: - pos: -24.5,-30.5 @@ -28147,8 +23600,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10550 components: - pos: -29.5,-29.5 @@ -28156,22 +23607,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10551 components: - pos: -29.5,-28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10552 components: - pos: -29.5,-27.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10553 components: - pos: -29.5,-26.5 @@ -28179,8 +23624,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10554 components: - pos: -29.5,-25.5 @@ -28188,8 +23631,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10555 components: - pos: -30.5,-25.5 @@ -28197,8 +23638,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10556 components: - pos: -31.5,-25.5 @@ -28206,8 +23645,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10557 components: - pos: -32.5,-25.5 @@ -28215,8 +23652,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10558 components: - pos: -33.5,-25.5 @@ -28224,8 +23659,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10559 components: - pos: -34.5,-25.5 @@ -28233,8 +23666,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10560 components: - pos: -34.5,-24.5 @@ -28242,8 +23673,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10561 components: - pos: -34.5,-23.5 @@ -28251,8 +23680,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10562 components: - pos: -34.5,-22.5 @@ -28260,8 +23687,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10563 components: - pos: -34.5,-21.5 @@ -28269,8 +23694,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10564 components: - pos: -34.5,-20.5 @@ -28278,8 +23701,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10565 components: - pos: -35.5,-20.5 @@ -28287,57 +23708,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10638 components: - pos: -45.5,-12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10639 components: - pos: -46.5,-12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10640 components: - pos: -47.5,-12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10641 components: - pos: -47.5,-11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10642 components: - pos: -48.5,-11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10643 components: - pos: -49.5,-11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10644 components: - pos: -50.5,-11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10645 components: - pos: -51.5,-11.5 @@ -28345,43 +23750,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10646 components: - pos: -52.5,-11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10647 components: - pos: -53.5,-11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10650 components: - pos: -53.5,-12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10651 components: - pos: -53.5,-13.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10662 components: - pos: -51.5,-12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10663 components: - pos: -51.5,-13.5 @@ -28389,22 +23782,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10669 components: - pos: -45.5,-6.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10670 components: - pos: -46.5,-6.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10671 components: - pos: -47.5,-6.5 @@ -28412,15 +23799,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10672 components: - pos: -48.5,-6.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 11394 components: - pos: 33.5,-39.5 @@ -28428,8 +23811,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11395 components: - pos: 32.5,-39.5 @@ -28437,8 +23818,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11396 components: - pos: 31.5,-39.5 @@ -28446,8 +23825,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11397 components: - pos: 33.5,-38.5 @@ -28455,8 +23832,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11398 components: - pos: 33.5,-37.5 @@ -28464,8 +23839,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11399 components: - pos: 33.5,-36.5 @@ -28473,8 +23846,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11400 components: - pos: 34.5,-36.5 @@ -28482,8 +23853,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11401 components: - pos: 35.5,-36.5 @@ -28491,8 +23860,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11402 components: - pos: 36.5,-36.5 @@ -28500,8 +23867,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11403 components: - pos: 37.5,-36.5 @@ -28509,8 +23874,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11404 components: - pos: 38.5,-36.5 @@ -28518,8 +23881,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11405 components: - pos: 31.5,-38.5 @@ -28527,8 +23888,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11406 components: - pos: 31.5,-37.5 @@ -28536,8 +23895,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11407 components: - pos: 31.5,-36.5 @@ -28545,8 +23902,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11408 components: - pos: 31.5,-35.5 @@ -28554,8 +23909,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11409 components: - pos: 31.5,-34.5 @@ -28563,8 +23916,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11410 components: - pos: 31.5,-33.5 @@ -28572,8 +23923,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11411 components: - pos: 30.5,-33.5 @@ -28581,8 +23930,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11412 components: - pos: 29.5,-33.5 @@ -28590,8 +23937,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11413 components: - pos: 28.5,-33.5 @@ -28599,8 +23944,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11414 components: - pos: 27.5,-33.5 @@ -28608,8 +23951,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11415 components: - pos: 26.5,-33.5 @@ -28617,8 +23958,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11416 components: - pos: 25.5,-33.5 @@ -28626,8 +23965,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11417 components: - pos: 24.5,-33.5 @@ -28635,8 +23972,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11418 components: - pos: 23.5,-33.5 @@ -28644,8 +23979,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11419 components: - pos: 22.5,-33.5 @@ -28653,8 +23986,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11420 components: - pos: 21.5,-33.5 @@ -28662,8 +23993,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11421 components: - pos: 20.5,-33.5 @@ -28671,8 +24000,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11422 components: - pos: 19.5,-33.5 @@ -28680,8 +24007,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11437 components: - pos: 30.5,-39.5 @@ -28689,8 +24014,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11477 components: - pos: 53.5,-36.5 @@ -28698,8 +24021,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11478 components: - pos: 52.5,-36.5 @@ -28707,8 +24028,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11479 components: - pos: 39.5,-36.5 @@ -28716,8 +24035,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11480 components: - pos: 40.5,-36.5 @@ -28725,8 +24042,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11481 components: - pos: 41.5,-35.5 @@ -28734,8 +24049,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11482 components: - pos: 41.5,-34.5 @@ -28743,8 +24056,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11483 components: - pos: 41.5,-33.5 @@ -28752,8 +24063,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11484 components: - pos: 41.5,-32.5 @@ -28761,8 +24070,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11485 components: - pos: 43.5,-35.5 @@ -28770,8 +24077,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11486 components: - pos: 43.5,-34.5 @@ -28779,8 +24084,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11487 components: - pos: 43.5,-33.5 @@ -28788,8 +24091,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11488 components: - pos: 43.5,-32.5 @@ -28797,8 +24098,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11489 components: - pos: 45.5,-34.5 @@ -28806,8 +24105,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11490 components: - pos: 45.5,-33.5 @@ -28815,8 +24112,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11491 components: - pos: 45.5,-32.5 @@ -28824,8 +24119,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11492 components: - pos: 45.5,-35.5 @@ -28833,8 +24126,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11493 components: - pos: 47.5,-35.5 @@ -28842,8 +24133,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11494 components: - pos: 47.5,-34.5 @@ -28851,8 +24140,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11495 components: - pos: 47.5,-33.5 @@ -28860,8 +24147,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11496 components: - pos: 47.5,-32.5 @@ -28869,8 +24154,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11497 components: - pos: 49.5,-35.5 @@ -28878,8 +24161,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11498 components: - pos: 49.5,-34.5 @@ -28887,8 +24168,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11499 components: - pos: 49.5,-33.5 @@ -28896,8 +24175,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11500 components: - pos: 49.5,-32.5 @@ -28905,8 +24182,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11501 components: - pos: 51.5,-35.5 @@ -28914,8 +24189,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11502 components: - pos: 51.5,-34.5 @@ -28923,8 +24196,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11503 components: - pos: 51.5,-33.5 @@ -28932,8 +24203,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11504 components: - pos: 51.5,-32.5 @@ -28941,8 +24210,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11505 components: - pos: 51.5,-40.5 @@ -28950,8 +24217,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11506 components: - pos: 51.5,-39.5 @@ -28959,8 +24224,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11507 components: - pos: 51.5,-38.5 @@ -28968,8 +24231,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11508 components: - pos: 51.5,-37.5 @@ -28977,8 +24238,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11509 components: - pos: 49.5,-40.5 @@ -28986,8 +24245,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11510 components: - pos: 49.5,-39.5 @@ -28995,8 +24252,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11511 components: - pos: 49.5,-38.5 @@ -29004,8 +24259,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11512 components: - pos: 49.5,-37.5 @@ -29013,8 +24266,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11513 components: - pos: 47.5,-40.5 @@ -29022,8 +24273,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11514 components: - pos: 47.5,-39.5 @@ -29031,8 +24280,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11515 components: - pos: 47.5,-38.5 @@ -29040,8 +24287,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11516 components: - pos: 47.5,-37.5 @@ -29049,8 +24294,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11517 components: - pos: 45.5,-40.5 @@ -29058,8 +24301,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11518 components: - pos: 45.5,-39.5 @@ -29067,8 +24308,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11519 components: - pos: 45.5,-38.5 @@ -29076,8 +24315,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11520 components: - pos: 45.5,-37.5 @@ -29085,8 +24322,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11521 components: - pos: 43.5,-40.5 @@ -29094,8 +24329,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11522 components: - pos: 43.5,-39.5 @@ -29103,8 +24336,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11523 components: - pos: 43.5,-38.5 @@ -29112,8 +24343,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11524 components: - pos: 43.5,-37.5 @@ -29121,8 +24350,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11525 components: - pos: 41.5,-40.5 @@ -29130,8 +24357,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11526 components: - pos: 41.5,-39.5 @@ -29139,8 +24364,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11527 components: - pos: 41.5,-38.5 @@ -29148,8 +24371,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11528 components: - pos: 41.5,-37.5 @@ -29157,8 +24378,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - proto: CableHVStack entities: - uid: 8587 @@ -29183,8 +24402,6 @@ entities: - pos: -15.5,-18.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 971 components: - pos: -14.5,7.5 @@ -29192,8 +24409,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 972 components: - pos: -14.5,8.5 @@ -29201,8 +24416,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 973 components: - pos: -14.5,9.5 @@ -29210,8 +24423,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 974 components: - pos: -14.5,10.5 @@ -29219,8 +24430,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 975 components: - pos: -14.5,11.5 @@ -29228,8 +24437,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 976 components: - pos: -14.5,12.5 @@ -29237,8 +24444,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 977 components: - pos: -14.5,13.5 @@ -29246,8 +24451,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 978 components: - pos: -13.5,13.5 @@ -29255,8 +24458,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 979 components: - pos: -12.5,13.5 @@ -29264,8 +24465,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 980 components: - pos: -12.5,14.5 @@ -29273,8 +24472,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 981 components: - pos: -8.5,-2.5 @@ -29282,8 +24479,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 982 components: - pos: -8.5,-3.5 @@ -29291,8 +24486,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 983 components: - pos: -9.5,-3.5 @@ -29300,8 +24493,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 984 components: - pos: -10.5,-3.5 @@ -29309,8 +24500,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 985 components: - pos: -12.5,-3.5 @@ -29318,8 +24507,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 986 components: - pos: -11.5,-3.5 @@ -29327,8 +24514,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 987 components: - pos: -12.5,-2.5 @@ -29336,8 +24521,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 988 components: - pos: -12.5,-1.5 @@ -29345,8 +24528,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 989 components: - pos: -12.5,-0.5 @@ -29354,8 +24535,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 990 components: - pos: -12.5,0.5 @@ -29363,8 +24542,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 991 components: - pos: -12.5,1.5 @@ -29372,8 +24549,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 992 components: - pos: -12.5,2.5 @@ -29381,8 +24556,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 993 components: - pos: -12.5,3.5 @@ -29390,8 +24563,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 994 components: - pos: -12.5,4.5 @@ -29399,8 +24570,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 995 components: - pos: -12.5,5.5 @@ -29408,8 +24577,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 996 components: - pos: -12.5,6.5 @@ -29417,8 +24584,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 997 components: - pos: -12.5,7.5 @@ -29426,8 +24591,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 998 components: - pos: -12.5,8.5 @@ -29435,8 +24598,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 999 components: - pos: -12.5,9.5 @@ -29444,8 +24605,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1000 components: - pos: -12.5,10.5 @@ -29453,8 +24612,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1001 components: - pos: -12.5,11.5 @@ -29462,8 +24619,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1002 components: - pos: -12.5,12.5 @@ -29471,8 +24626,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1003 components: - pos: 6.5,5.5 @@ -29480,15 +24633,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1004 components: - pos: 6.5,4.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1005 components: - pos: 7.5,4.5 @@ -29496,8 +24645,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1006 components: - pos: 8.5,4.5 @@ -29505,8 +24652,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1007 components: - pos: 9.5,4.5 @@ -29514,8 +24659,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1008 components: - pos: 9.5,5.5 @@ -29523,8 +24666,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1009 components: - pos: 9.5,6.5 @@ -29532,8 +24673,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1010 components: - pos: 9.5,7.5 @@ -29541,8 +24680,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1011 components: - pos: 9.5,8.5 @@ -29550,8 +24687,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1012 components: - pos: 9.5,9.5 @@ -29559,8 +24694,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1013 components: - pos: 9.5,10.5 @@ -29568,8 +24701,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1014 components: - pos: 9.5,11.5 @@ -29577,8 +24708,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1015 components: - pos: 8.5,11.5 @@ -29586,8 +24715,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1016 components: - pos: 7.5,11.5 @@ -29595,8 +24722,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1017 components: - pos: 6.5,11.5 @@ -29604,8 +24729,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1018 components: - pos: 5.5,11.5 @@ -29613,8 +24736,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1019 components: - pos: 4.5,11.5 @@ -29622,8 +24743,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1020 components: - pos: 3.5,11.5 @@ -29631,8 +24750,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1021 components: - pos: 2.5,11.5 @@ -29640,8 +24757,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1023 components: - pos: 7.5,-8.5 @@ -29649,8 +24764,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1024 components: - pos: 7.5,-9.5 @@ -29658,8 +24771,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1025 components: - pos: 8.5,-9.5 @@ -29667,8 +24778,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1026 components: - pos: 9.5,-9.5 @@ -29676,8 +24785,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1027 components: - pos: 9.5,-8.5 @@ -29685,8 +24792,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1028 components: - pos: 9.5,-7.5 @@ -29694,8 +24799,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1029 components: - pos: 9.5,-6.5 @@ -29703,8 +24806,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1030 components: - pos: 9.5,-5.5 @@ -29712,8 +24813,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1031 components: - pos: 9.5,-4.5 @@ -29721,8 +24820,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1032 components: - pos: 9.5,-3.5 @@ -29730,8 +24827,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1033 components: - pos: 9.5,-2.5 @@ -29739,8 +24834,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1034 components: - pos: 9.5,-1.5 @@ -29748,8 +24841,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1035 components: - pos: 9.5,-0.5 @@ -29757,8 +24848,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1036 components: - pos: 9.5,0.5 @@ -29766,8 +24855,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1037 components: - pos: 9.5,1.5 @@ -29775,8 +24862,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1038 components: - pos: 9.5,2.5 @@ -29784,8 +24869,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1039 components: - pos: 9.5,3.5 @@ -29793,127 +24876,91 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1858 components: - pos: 0.5,28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 1860 components: - pos: -6.5,30.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2141 components: - pos: 6.5,31.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2142 components: - pos: 6.5,32.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2143 components: - pos: 5.5,32.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2144 components: - pos: 4.5,32.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2145 components: - pos: 3.5,32.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2146 components: - pos: 2.5,32.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2147 components: - pos: 1.5,32.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2148 components: - pos: 0.5,32.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2149 components: - pos: -0.5,32.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2150 components: - pos: -1.5,32.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2151 components: - pos: -2.5,32.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2152 components: - pos: -3.5,32.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2153 components: - pos: -4.5,32.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2154 components: - pos: -5.5,32.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2155 components: - pos: -6.5,32.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2156 components: - pos: -6.5,31.5 @@ -29921,106 +24968,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2157 components: - pos: 2.5,31.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2158 components: - pos: 2.5,30.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2159 components: - pos: 2.5,29.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2160 components: - pos: 2.5,28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2161 components: - pos: 2.5,27.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2162 components: - pos: 2.5,26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2163 components: - pos: 2.5,25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2164 components: - pos: 2.5,24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2165 components: - pos: 2.5,23.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2166 components: - pos: 2.5,22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2167 components: - pos: 2.5,21.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2168 components: - pos: 2.5,20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2169 components: - pos: 1.5,20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2170 components: - pos: 0.5,20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2171 components: - pos: 0.5,21.5 @@ -30028,64 +25045,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2172 components: - pos: 3.5,25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2173 components: - pos: 4.5,25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2174 components: - pos: 5.5,25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2175 components: - pos: 6.5,25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2176 components: - pos: 7.5,25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2177 components: - pos: 8.5,25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2178 components: - pos: 9.5,25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2179 components: - pos: 9.5,26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2180 components: - pos: 9.5,27.5 @@ -30093,15 +25092,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2181 components: - pos: 8.5,24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2182 components: - pos: 8.5,23.5 @@ -30109,15 +25104,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2183 components: - pos: 6.5,24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2184 components: - pos: 6.5,23.5 @@ -30125,15 +25116,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2185 components: - pos: -2.5,31.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2186 components: - pos: 4.5,24.5 @@ -30141,8 +25128,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2187 components: - pos: 4.5,26.5 @@ -30150,36 +25135,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2188 components: - pos: -2.5,30.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2189 components: - pos: -2.5,29.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2190 components: - pos: -2.5,28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2191 components: - pos: -2.5,28.5 parent: 4812 - type: Transform - - fixtures: {} - type: Fixtures + type: Transform - uid: 2192 components: - pos: -2.5,27.5 @@ -30187,22 +25162,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2193 components: - pos: -3.5,28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2194 components: - pos: -4.5,28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2195 components: - pos: -4.5,27.5 @@ -30210,22 +25179,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2196 components: - pos: -1.5,28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2197 components: - pos: -0.5,28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2198 components: - pos: -0.5,27.5 @@ -30233,148 +25196,106 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2200 components: - pos: 0.5,29.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2203 components: - pos: -5.5,29.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2208 components: - pos: -5.5,30.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2385 components: - pos: -7.5,32.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2386 components: - pos: -8.5,32.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2387 components: - pos: -8.5,31.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2388 components: - pos: -8.5,30.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2389 components: - pos: -8.5,29.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2390 components: - pos: -8.5,28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2391 components: - pos: -8.5,27.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2392 components: - pos: -8.5,26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2393 components: - pos: -8.5,25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2394 components: - pos: -8.5,24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2396 components: - pos: -9.5,23.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2397 components: - pos: -10.5,23.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2398 components: - pos: -11.5,23.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2399 components: - pos: -12.5,23.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2400 components: - pos: -13.5,23.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2401 components: - pos: -14.5,23.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2402 components: - pos: -14.5,24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2403 components: - pos: -14.5,25.5 @@ -30382,50 +25303,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2404 components: - pos: -11.5,24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2405 components: - pos: -11.5,25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2406 components: - pos: -11.5,26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2407 components: - pos: -11.5,27.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2408 components: - pos: -11.5,28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2409 components: - pos: -11.5,29.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2410 components: - pos: -11.5,30.5 @@ -30433,8 +25340,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2411 components: - pos: -12.5,30.5 @@ -30442,8 +25347,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2412 components: - pos: -12.5,26.5 @@ -30451,8 +25354,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2413 components: - pos: -13.5,26.5 @@ -30460,8 +25361,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2414 components: - pos: -10.5,26.5 @@ -30469,8 +25368,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2415 components: - pos: -9.5,24.5 @@ -30478,8 +25375,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2416 components: - pos: -9.5,22.5 @@ -30487,43 +25382,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2453 components: - pos: -6.5,28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2457 components: - pos: -5.5,28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2632 components: - pos: 1.5,28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2633 components: - pos: 0.5,30.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2644 components: - pos: 1.5,30.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 2834 components: - pos: 11.5,32.5 @@ -30531,8 +25414,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2838 components: - pos: 13.5,32.5 @@ -30540,8 +25421,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3120 components: - pos: 12.5,32.5 @@ -30549,8 +25428,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3121 components: - pos: 12.5,31.5 @@ -30558,8 +25435,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3122 components: - pos: 12.5,30.5 @@ -30567,8 +25442,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3123 components: - pos: 12.5,29.5 @@ -30576,8 +25449,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3124 components: - pos: 12.5,28.5 @@ -30585,8 +25456,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3125 components: - pos: 12.5,27.5 @@ -30594,8 +25463,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3126 components: - pos: 12.5,26.5 @@ -30603,8 +25470,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3127 components: - pos: 12.5,25.5 @@ -30612,8 +25477,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3128 components: - pos: 12.5,24.5 @@ -30621,8 +25484,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3129 components: - pos: 13.5,24.5 @@ -30630,43 +25491,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3130 components: - pos: 14.5,24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3131 components: - pos: 15.5,24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3132 components: - pos: 16.5,24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3133 components: - pos: 17.5,24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3134 components: - pos: 17.5,23.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3135 components: - pos: 17.5,22.5 @@ -30674,15 +25523,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3265 components: - pos: -24.5,-25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3734 components: - pos: -23.5,-25.5 @@ -30690,15 +25535,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3735 components: - pos: -25.5,-25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3884 components: - pos: 13.5,47.5 @@ -30706,8 +25547,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3885 components: - pos: 13.5,46.5 @@ -30715,78 +25554,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3886 components: - pos: 13.5,45.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3887 components: - pos: 12.5,45.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3888 components: - pos: 11.5,45.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3889 components: - pos: 10.5,45.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3890 components: - pos: 10.5,46.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3891 components: - pos: 10.5,47.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3892 components: - pos: 10.5,48.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3893 components: - pos: 10.5,49.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3894 components: - pos: 10.5,50.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3895 components: - pos: 11.5,50.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 3896 components: - pos: 11.5,51.5 @@ -30794,50 +25611,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4012 components: - pos: -15.5,-17.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4247 components: - pos: 17.5,2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4248 components: - pos: 18.5,2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4249 components: - pos: 19.5,2.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4250 components: - pos: 19.5,1.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4251 components: - pos: 19.5,0.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4252 components: - pos: 19.5,-0.5 @@ -30845,8 +25648,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4253 components: - pos: 20.5,-0.5 @@ -30854,8 +25655,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4254 components: - pos: 21.5,-0.5 @@ -30863,8 +25662,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4255 components: - pos: 22.5,-0.5 @@ -30872,8 +25669,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4256 components: - pos: 22.5,-1.5 @@ -30881,43 +25676,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4806 components: - pos: -16.5,-24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4813 components: - pos: -16.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4870 components: - pos: -18.5,-20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4914 components: - pos: -17.5,-20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4915 components: - pos: -16.5,-20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4945 components: - pos: -18.5,-19.5 @@ -30925,22 +25708,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4956 components: - pos: -20.5,-26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4957 components: - pos: -22.5,-26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4959 components: - pos: -23.5,-25.5 @@ -30948,15 +25725,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4960 components: - pos: -18.5,-27.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4965 components: - pos: -18.5,-28.5 @@ -30964,36 +25737,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4967 components: - pos: -16.5,-25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4974 components: - pos: -21.5,-26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4975 components: - pos: -16.5,-23.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 4995 components: - pos: -15.5,-19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5972 components: - pos: 16.5,-30.5 @@ -31001,8 +25764,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5973 components: - pos: 15.5,-30.5 @@ -31010,8 +25771,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5974 components: - pos: 15.5,-31.5 @@ -31019,8 +25778,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5975 components: - pos: 15.5,-32.5 @@ -31028,8 +25785,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5976 components: - pos: 15.5,-33.5 @@ -31037,8 +25792,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5977 components: - pos: 16.5,-33.5 @@ -31046,8 +25799,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5978 components: - pos: 17.5,-33.5 @@ -31055,8 +25806,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5979 components: - pos: 18.5,-33.5 @@ -31064,8 +25813,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5980 components: - pos: 18.5,-32.5 @@ -31073,8 +25820,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5981 components: - pos: 18.5,-31.5 @@ -31082,8 +25827,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5982 components: - pos: 18.5,-30.5 @@ -31091,8 +25834,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5983 components: - pos: 18.5,-29.5 @@ -31100,8 +25841,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5984 components: - pos: 18.5,-28.5 @@ -31109,148 +25848,106 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5985 components: - pos: 18.5,-27.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5986 components: - pos: 18.5,-26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5987 components: - pos: 18.5,-25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5988 components: - pos: 18.5,-24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5989 components: - pos: 18.5,-23.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5990 components: - pos: 18.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5991 components: - pos: 18.5,-21.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5992 components: - pos: 18.5,-20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5993 components: - pos: 17.5,-20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5994 components: - pos: 16.5,-20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5995 components: - pos: 15.5,-20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5996 components: - pos: 14.5,-20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5997 components: - pos: 13.5,-20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5998 components: - pos: 12.5,-20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 5999 components: - pos: 11.5,-20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6000 components: - pos: 10.5,-20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6001 components: - pos: 9.5,-20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6002 components: - pos: 8.5,-20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6003 components: - pos: 7.5,-20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6004 components: - pos: 6.5,-20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6005 components: - pos: 6.5,-19.5 @@ -31258,92 +25955,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6006 components: - pos: 19.5,-20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6007 components: - pos: 20.5,-20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6008 components: - pos: 21.5,-20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6009 components: - pos: 22.5,-20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6010 components: - pos: 22.5,-21.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6011 components: - pos: 22.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6012 components: - pos: 23.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6013 components: - pos: 24.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6014 components: - pos: 25.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6015 components: - pos: 26.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6016 components: - pos: 27.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6017 components: - pos: 28.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6018 components: - pos: 28.5,-21.5 @@ -31351,29 +26022,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6051 components: - pos: 13.5,-21.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6065 components: - pos: 28.5,-23.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6640 components: - pos: -26.5,-25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6641 components: - pos: -27.5,-25.5 @@ -31381,43 +26044,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6660 components: - pos: -25.5,-23.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6661 components: - pos: -24.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6664 components: - pos: -20.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6666 components: - pos: -25.5,-24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6668 components: - pos: -17.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6780 components: - pos: -10.5,-30.5 @@ -31425,22 +26076,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6782 components: - pos: -19.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6787 components: - pos: -16.5,-21.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 6902 components: - pos: -8.5,-31.5 @@ -31448,8 +26093,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6903 components: - pos: -8.5,-32.5 @@ -31457,8 +26100,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6904 components: - pos: -8.5,-33.5 @@ -31466,8 +26107,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6905 components: - pos: -8.5,-30.5 @@ -31475,8 +26114,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6906 components: - pos: -9.5,-32.5 @@ -31484,8 +26121,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6907 components: - pos: -10.5,-32.5 @@ -31493,8 +26128,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6908 components: - pos: -11.5,-32.5 @@ -31502,8 +26135,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6909 components: - pos: -11.5,-31.5 @@ -31511,8 +26142,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6910 components: - pos: -11.5,-30.5 @@ -31520,8 +26149,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6911 components: - pos: -12.5,-30.5 @@ -31529,8 +26156,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6912 components: - pos: -13.5,-30.5 @@ -31538,8 +26163,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6913 components: - pos: -14.5,-30.5 @@ -31547,8 +26170,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6914 components: - pos: -15.5,-30.5 @@ -31556,8 +26177,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6915 components: - pos: -16.5,-30.5 @@ -31565,8 +26184,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6916 components: - pos: -17.5,-30.5 @@ -31574,8 +26191,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6917 components: - pos: -17.5,-31.5 @@ -31583,15 +26198,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7029 components: - pos: -22.5,-25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7062 components: - pos: -17.5,-15.5 @@ -31599,29 +26210,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7065 components: - pos: -15.5,-16.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7183 components: - pos: -15.5,-20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7237 components: - pos: -15.5,-15.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7238 components: - pos: -15.5,-14.5 @@ -31629,36 +26232,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7239 components: - pos: -16.5,-15.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7257 components: - pos: -12.5,-26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7261 components: - pos: -10.5,-29.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7263 components: - pos: -10.5,-25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7264 components: - pos: -18.5,-26.5 @@ -31666,15 +26259,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7265 components: - pos: -10.5,-26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7266 components: - pos: -11.5,-25.5 @@ -31682,8 +26271,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7270 components: - pos: -23.5,-22.5 @@ -31691,246 +26278,176 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7271 components: - pos: -25.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7274 components: - pos: -14.5,-26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7275 components: - pos: -15.5,-26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7277 components: - pos: -11.5,-26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7286 components: - pos: -22.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7338 components: - pos: -13.5,-26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7339 components: - pos: -16.5,-26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7341 components: - pos: -17.5,-26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7342 components: - pos: -10.5,-28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7345 components: - pos: -10.5,-27.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7348 components: - pos: -18.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7384 components: - pos: -19.5,-26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7387 components: - pos: -21.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7467 components: - pos: -8.5,-34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7468 components: - pos: -7.5,-34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7469 components: - pos: -6.5,-34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7470 components: - pos: -5.5,-34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7471 components: - pos: -5.5,-33.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7472 components: - pos: -5.5,-32.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7473 components: - pos: -5.5,-31.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7474 components: - pos: -5.5,-30.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7475 components: - pos: -5.5,-29.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7476 components: - pos: -5.5,-28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7477 components: - pos: -5.5,-27.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7478 components: - pos: -5.5,-26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7479 components: - pos: -5.5,-25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7480 components: - pos: -5.5,-24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7481 components: - pos: -5.5,-23.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7482 components: - pos: -5.5,-22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7483 components: - pos: -5.5,-21.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7484 components: - pos: -4.5,-21.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7485 components: - pos: -3.5,-21.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7486 components: - pos: -2.5,-21.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7487 components: - pos: -1.5,-21.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7488 components: - pos: -1.5,-20.5 @@ -31938,8 +26455,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7986 components: - pos: -36.5,13.5 @@ -31947,64 +26462,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7987 components: - pos: -36.5,12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7988 components: - pos: -36.5,11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7989 components: - pos: -35.5,11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7990 components: - pos: -34.5,11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7991 components: - pos: -33.5,11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7992 components: - pos: -32.5,11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7993 components: - pos: -31.5,11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7994 components: - pos: -31.5,10.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 7995 components: - pos: -31.5,9.5 @@ -32012,8 +26509,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7996 components: - pos: -31.5,8.5 @@ -32021,8 +26516,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7997 components: - pos: -31.5,7.5 @@ -32030,8 +26523,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7998 components: - pos: -32.5,7.5 @@ -32039,8 +26530,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7999 components: - pos: -33.5,7.5 @@ -32048,8 +26537,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8000 components: - pos: -34.5,7.5 @@ -32057,8 +26544,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8001 components: - pos: -35.5,7.5 @@ -32066,8 +26551,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8002 components: - pos: -36.5,7.5 @@ -32075,8 +26558,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8003 components: - pos: -37.5,7.5 @@ -32084,8 +26565,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8004 components: - pos: -37.5,8.5 @@ -32093,106 +26572,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8005 components: - pos: -30.5,11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8006 components: - pos: -29.5,11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8007 components: - pos: -29.5,12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8008 components: - pos: -29.5,13.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8009 components: - pos: -29.5,14.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8010 components: - pos: -29.5,15.5 parent: 4812 - type: Transform - - fixtures: {} - type: Fixtures + type: Transform - uid: 8011 components: - pos: -29.5,16.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8012 components: - pos: -29.5,17.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8013 components: - pos: -29.5,18.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8014 components: - pos: -29.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8015 components: - pos: -28.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8016 components: - pos: -27.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8017 components: - pos: -26.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8018 components: - pos: -25.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8019 components: - pos: -24.5,19.5 @@ -32200,8 +26649,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8020 components: - pos: -24.5,20.5 @@ -32209,36 +26656,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8021 components: - pos: -28.5,16.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8022 components: - pos: -27.5,16.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8023 components: - pos: -26.5,16.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8024 components: - pos: -25.5,16.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8025 components: - pos: -24.5,16.5 @@ -32246,8 +26683,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8026 components: - pos: -24.5,17.5 @@ -32255,8 +26690,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8027 components: - pos: -27.5,17.5 @@ -32264,8 +26697,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8028 components: - pos: -27.5,20.5 @@ -32273,22 +26704,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8029 components: - pos: -29.5,10.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8030 components: - pos: -28.5,10.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8031 components: - pos: -27.5,10.5 @@ -32296,22 +26721,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8032 components: - pos: -26.5,10.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8033 components: - pos: -25.5,10.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8034 components: - pos: -24.5,10.5 @@ -32319,8 +26738,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8035 components: - pos: -32.5,10.5 @@ -32328,8 +26745,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8036 components: - pos: -32.5,12.5 @@ -32337,22 +26752,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8037 components: - pos: -30.5,14.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8038 components: - pos: -31.5,14.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8039 components: - pos: -32.5,14.5 @@ -32360,15 +26769,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8040 components: - pos: -33.5,14.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8041 components: - pos: -33.5,13.5 @@ -32376,22 +26781,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8042 components: - pos: -34.5,14.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8043 components: - pos: -35.5,14.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8044 components: - pos: -35.5,13.5 @@ -32399,29 +26798,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8045 components: - pos: -35.5,15.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8046 components: - pos: -35.5,16.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8047 components: - pos: -35.5,17.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8048 components: - pos: -35.5,18.5 @@ -32429,29 +26820,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8049 components: - pos: -33.5,15.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8050 components: - pos: -33.5,16.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8051 components: - pos: -33.5,17.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8052 components: - pos: -33.5,18.5 @@ -32459,22 +26842,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8053 components: - pos: -33.5,19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8054 components: - pos: -33.5,20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8055 components: - pos: -32.5,19.5 @@ -32482,8 +26859,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8056 components: - pos: -32.5,20.5 @@ -32491,15 +26866,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8177 components: - pos: -23.5,20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8178 components: - pos: -23.5,21.5 @@ -32507,36 +26878,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8179 components: - pos: -22.5,20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8180 components: - pos: -21.5,20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8181 components: - pos: -20.5,20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8182 components: - pos: -19.5,20.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8183 components: - pos: -19.5,21.5 @@ -32544,8 +26905,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8184 components: - pos: -20.5,21.5 @@ -32553,8 +26912,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8185 components: - pos: -21.5,21.5 @@ -32562,36 +26919,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8186 components: - pos: -21.5,22.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8187 components: - pos: -21.5,23.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8188 components: - pos: -21.5,24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8189 components: - pos: -21.5,25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8190 components: - pos: -21.5,26.5 @@ -32599,29 +26946,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8191 components: - pos: -21.5,27.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8192 components: - pos: -21.5,28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8193 components: - pos: -22.5,28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8194 components: - pos: -22.5,29.5 @@ -32629,15 +26968,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8195 components: - pos: -22.5,26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8196 components: - pos: -23.5,26.5 @@ -32645,22 +26980,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8853 components: - pos: 13.5,-19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8858 components: - pos: 13.5,-18.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8878 components: - pos: -24.5,-10.5 @@ -32668,36 +26997,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8879 components: - pos: -24.5,-11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8880 components: - pos: -25.5,-11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8881 components: - pos: -26.5,-11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8882 components: - pos: -27.5,-11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8883 components: - pos: -28.5,-11.5 @@ -32705,8 +27024,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8884 components: - pos: -29.5,-11.5 @@ -32714,8 +27031,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8885 components: - pos: -30.5,-11.5 @@ -32723,8 +27038,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8886 components: - pos: -31.5,-11.5 @@ -32732,8 +27045,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8887 components: - pos: -32.5,-11.5 @@ -32741,8 +27052,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8888 components: - pos: -33.5,-11.5 @@ -32750,8 +27059,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8889 components: - pos: -34.5,-11.5 @@ -32759,8 +27066,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8890 components: - pos: -35.5,-11.5 @@ -32768,8 +27073,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8891 components: - pos: -36.5,-11.5 @@ -32777,8 +27080,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8892 components: - pos: -36.5,-12.5 @@ -32786,8 +27087,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8893 components: - pos: -36.5,-13.5 @@ -32795,8 +27094,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8894 components: - pos: -36.5,-14.5 @@ -32804,8 +27101,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8895 components: - pos: -36.5,-15.5 @@ -32813,8 +27108,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8897 components: - pos: -33.5,-24.5 @@ -32822,8 +27115,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8898 components: - pos: -34.5,-24.5 @@ -32831,8 +27122,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8899 components: - pos: -34.5,-23.5 @@ -32840,8 +27129,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8900 components: - pos: -34.5,-22.5 @@ -32849,8 +27136,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8901 components: - pos: -34.5,-21.5 @@ -32858,15 +27143,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8902 components: - pos: 13.5,-17.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8906 components: - pos: 13.5,-16.5 @@ -32874,8 +27155,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8967 components: - pos: 13.5,-22.5 @@ -32883,71 +27162,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8969 components: - pos: 28.5,-24.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8971 components: - pos: 28.5,-25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8972 components: - pos: 29.5,-25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8973 components: - pos: 30.5,-25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8974 components: - pos: 31.5,-25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8975 components: - pos: 32.5,-25.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 8976 components: - pos: 32.5,-26.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9014 components: - pos: 32.5,-27.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9074 components: - pos: 32.5,-28.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9089 components: - pos: 32.5,-29.5 @@ -32955,15 +27214,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9287 components: - pos: -38.5,7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9289 components: - pos: -38.5,6.5 @@ -32971,15 +27226,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9524 components: - pos: 16.5,-19.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 9580 components: - pos: 16.5,-18.5 @@ -32987,8 +27238,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9581 components: - pos: 16.5,-17.5 @@ -32996,8 +27245,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9582 components: - pos: 16.5,-16.5 @@ -33005,8 +27252,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9583 components: - pos: 17.5,-16.5 @@ -33014,8 +27259,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10001 components: - pos: -34.5,-20.5 @@ -33023,8 +27266,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10002 components: - pos: -35.5,-20.5 @@ -33032,8 +27273,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10003 components: - pos: -36.5,-20.5 @@ -33041,8 +27280,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10004 components: - pos: -37.5,-20.5 @@ -33050,8 +27287,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10005 components: - pos: -38.5,-20.5 @@ -33059,8 +27294,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10006 components: - pos: -39.5,-20.5 @@ -33068,8 +27301,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10007 components: - pos: -40.5,-20.5 @@ -33077,8 +27308,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10008 components: - pos: -41.5,-20.5 @@ -33086,8 +27315,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10009 components: - pos: -42.5,-20.5 @@ -33095,8 +27322,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10010 components: - pos: -43.5,-20.5 @@ -33104,8 +27329,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10011 components: - pos: -44.5,-20.5 @@ -33113,8 +27336,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10012 components: - pos: -45.5,-20.5 @@ -33122,8 +27343,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10013 components: - pos: -46.5,-20.5 @@ -33131,8 +27350,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10014 components: - pos: -47.5,-20.5 @@ -33140,8 +27357,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10015 components: - pos: -48.5,-20.5 @@ -33149,8 +27364,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10016 components: - pos: -48.5,-19.5 @@ -33158,8 +27371,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10017 components: - pos: -36.5,-19.5 @@ -33167,8 +27378,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10018 components: - pos: -36.5,-18.5 @@ -33176,8 +27385,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10019 components: - pos: -36.5,-17.5 @@ -33185,8 +27392,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10020 components: - pos: -36.5,-16.5 @@ -33194,8 +27399,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10022 components: - pos: -44.5,-19.5 @@ -33203,8 +27406,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10023 components: - pos: -44.5,-18.5 @@ -33212,8 +27413,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10024 components: - pos: -44.5,-17.5 @@ -33221,8 +27420,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10025 components: - pos: -44.5,-16.5 @@ -33230,8 +27427,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10026 components: - pos: -44.5,-15.5 @@ -33239,99 +27434,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10027 components: - pos: -44.5,-14.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10028 components: - pos: -44.5,-13.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10029 components: - pos: -44.5,-12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10030 components: - pos: -44.5,-11.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10031 components: - pos: -44.5,-10.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10032 components: - pos: -44.5,-9.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10033 components: - pos: -44.5,-8.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10034 components: - pos: -44.5,-7.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10035 components: - pos: -44.5,-6.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10036 components: - pos: -43.5,-6.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10037 components: - pos: -42.5,-6.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10038 components: - pos: -41.5,-6.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10039 components: - pos: -41.5,-5.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10040 components: - pos: -41.5,-4.5 @@ -33339,8 +27506,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10184 components: - pos: -50.5,-25.5 @@ -33348,8 +27513,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10185 components: - pos: -50.5,-24.5 @@ -33357,8 +27520,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10186 components: - pos: -51.5,-24.5 @@ -33366,8 +27527,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10187 components: - pos: -51.5,-23.5 @@ -33375,8 +27534,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10188 components: - pos: -51.5,-22.5 @@ -33384,8 +27541,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10189 components: - pos: -51.5,-21.5 @@ -33393,29 +27548,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10652 components: - pos: -53.5,-13.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10653 components: - pos: -53.5,-12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10654 components: - pos: -54.5,-12.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 10655 components: - pos: -55.5,-12.5 @@ -33423,8 +27570,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11151 components: - pos: 14.5,-33.5 @@ -33432,8 +27577,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11152 components: - pos: 13.5,-33.5 @@ -33441,8 +27584,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11153 components: - pos: 12.5,-33.5 @@ -33450,8 +27591,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11154 components: - pos: 12.5,-32.5 @@ -33459,8 +27598,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11155 components: - pos: 12.5,-31.5 @@ -33468,8 +27605,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11156 components: - pos: 12.5,-30.5 @@ -33477,8 +27612,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11157 components: - pos: 11.5,-30.5 @@ -33486,8 +27619,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11158 components: - pos: 10.5,-30.5 @@ -33495,8 +27626,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11159 components: - pos: 9.5,-30.5 @@ -33504,8 +27633,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11160 components: - pos: 8.5,-30.5 @@ -33513,43 +27640,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11161 components: - pos: 8.5,-31.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 11162 components: - pos: 8.5,-32.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 11163 components: - pos: 8.5,-33.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 11164 components: - pos: 8.5,-34.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 11165 components: - pos: 8.5,-35.5 parent: 4812 type: Transform - - fixtures: {} - type: Fixtures - uid: 11166 components: - pos: 9.5,-35.5 @@ -33557,8 +27672,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11167 components: - pos: 10.5,-35.5 @@ -33566,8 +27679,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11438 components: - pos: 30.5,-39.5 @@ -33575,8 +27686,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11439 components: - pos: 30.5,-38.5 @@ -33584,8 +27693,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11440 components: - pos: 30.5,-37.5 @@ -33593,8 +27700,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - proto: CableMVStack entities: - uid: 8586 @@ -76145,6 +70250,13 @@ entities: - pos: -23.5,-19.5 parent: 4812 type: Transform +- proto: SpawnMobSmile + entities: + - uid: 9586 + components: + - pos: 26.5,-24.5 + parent: 4812 + type: Transform - proto: SpawnMobWalter entities: - uid: 6647 @@ -78082,6 +72194,11 @@ entities: - pos: -37.5,10.5 parent: 4812 type: Transform + - uid: 9585 + components: + - pos: 0.5,-3.5 + parent: 4812 + type: Transform - uid: 10488 components: - pos: -37.5,-25.5 @@ -80188,6 +74305,17 @@ entities: - pos: -9.5,-46.5 parent: 4812 type: Transform +- proto: VendingMachineCondiments + entities: + - uid: 9584 + components: + - flags: SessionSpecific + type: MetaData + - pos: 0.5,-3.5 + parent: 4812 + type: Transform + - nextEmpEject: 118.2830236 + type: VendingMachine - proto: VendingMachineDetDrobe entities: - uid: 5361 @@ -89427,14 +83555,6 @@ entities: - pos: -38.5,-25.5 parent: 4812 type: Transform -- proto: WindoorArmoryLocked - entities: - - uid: 7804 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,15.5 - parent: 4812 - type: Transform - proto: WindoorBarLocked entities: - uid: 319 @@ -89451,34 +83571,49 @@ entities: pos: 14.5,20.5 parent: 4812 type: Transform -- proto: WindoorChemistryLocked +- proto: WindoorKitchenHydroponicsLocked entities: - - uid: 6582 + - uid: 934 components: - - pos: -9.5,-13.5 + - rot: -1.5707963267948966 rad + pos: -6.5,-6.5 parent: 4812 type: Transform - - uid: 6583 + - uid: 935 components: - - rot: 3.141592653589793 rad - pos: -11.5,-19.5 + - rot: -1.5707963267948966 rad + pos: -6.5,-5.5 parent: 4812 type: Transform -- proto: WindoorCommandLocked +- proto: WindoorSecure entities: - - uid: 3702 + - uid: 11101 components: - rot: -1.5707963267948966 rad - pos: 9.5,53.5 + pos: 6.5,-41.5 parent: 4812 type: Transform - - uid: 3703 + - uid: 11102 components: - rot: 1.5707963267948966 rad - pos: 11.5,53.5 + pos: 11.5,-41.5 + parent: 4812 + type: Transform + - uid: 11103 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-37.5 + parent: 4812 + type: Transform +- proto: WindoorSecureArmoryLocked + entities: + - uid: 7804 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,15.5 parent: 4812 type: Transform -- proto: WindoorEngineeringLocked +- proto: WindoorSecureAtmosphericsLocked entities: - uid: 7369 components: @@ -89491,34 +83626,62 @@ entities: pos: -30.5,0.5 parent: 4812 type: Transform - - uid: 8689 +- proto: WindoorSecureCargoLocked + entities: + - uid: 2855 components: - - pos: -30.5,-4.5 + - rot: 3.141592653589793 rad + pos: 15.5,16.5 + parent: 4812 + type: Transform + - uid: 4433 + components: + - pos: 28.5,-6.5 parent: 4812 type: Transform -- proto: WindoorHeadOfPersonnelLocked +- proto: WindoorSecureChemistryLocked entities: - - uid: 1926 + - uid: 6582 + components: + - pos: -9.5,-13.5 + parent: 4812 + type: Transform + - uid: 6583 components: - rot: 3.141592653589793 rad - pos: 9.5,23.5 + pos: -11.5,-19.5 parent: 4812 type: Transform -- proto: WindoorKitchenHydroponicsLocked +- proto: WindoorSecureCommandLocked entities: - - uid: 934 + - uid: 3702 components: - rot: -1.5707963267948966 rad - pos: -6.5,-6.5 + pos: 9.5,53.5 parent: 4812 type: Transform - - uid: 935 + - uid: 3703 components: - - rot: -1.5707963267948966 rad - pos: -6.5,-5.5 + - rot: 1.5707963267948966 rad + pos: 11.5,53.5 + parent: 4812 + type: Transform +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 8689 + components: + - pos: -30.5,-4.5 parent: 4812 type: Transform -- proto: WindoorMedicalLocked +- proto: WindoorSecureHeadOfPersonnelLocked + entities: + - uid: 1926 + components: + - rot: 3.141592653589793 rad + pos: 9.5,23.5 + parent: 4812 + type: Transform +- proto: WindoorSecureMedicalLocked entities: - uid: 8807 components: @@ -89544,7 +83707,15 @@ entities: pos: -13.5,-21.5 parent: 4812 type: Transform -- proto: WindoorScienceLocked +- proto: WindoorSecureSalvageLocked + entities: + - uid: 12248 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,15.5 + parent: 4812 + type: Transform +- proto: WindoorSecureScienceLocked entities: - uid: 5788 components: @@ -89563,48 +83734,7 @@ entities: - pos: 4.5,-13.5 parent: 4812 type: Transform -- proto: WindoorSecure - entities: - - uid: 11101 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-41.5 - parent: 4812 - type: Transform - - uid: 11102 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-41.5 - parent: 4812 - type: Transform - - uid: 11103 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-37.5 - parent: 4812 - type: Transform -- proto: WindoorSecureCargoLocked - entities: - - uid: 2855 - components: - - rot: 3.141592653589793 rad - pos: 15.5,16.5 - parent: 4812 - type: Transform - - uid: 4433 - components: - - pos: 28.5,-6.5 - parent: 4812 - type: Transform -- proto: WindoorSecureSalvageLocked - entities: - - uid: 12248 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,15.5 - parent: 4812 - type: Transform -- proto: WindoorSecurityLocked +- proto: WindoorSecureSecurityLocked entities: - uid: 4434 components: From 53bd13ffd50ad51ab38babb37cc1540883a46877 Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Wed, 21 Jun 2023 22:54:20 +0300 Subject: [PATCH 406/474] animals.yml pets.yml cleaning (#17533) * Update pets.yml * Update animals.yml * oopsie --- .../Prototypes/Entities/Mobs/NPCs/animals.yml | 46 ++----------------- .../Prototypes/Entities/Mobs/NPCs/pets.yml | 24 +--------- 2 files changed, 5 insertions(+), 65 deletions(-) diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index 2fb94c50d4..2cebd34b24 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -215,7 +215,7 @@ layers: - map: ["enum.DamageStateVisualLayers.Base"] state: duck-0 - sprite: Mobs/Animals/duck.rsi + sprite: Mobs/Animals/duck.rsi - type: Fixtures fixtures: fix1: @@ -266,12 +266,9 @@ description: An adorable white duck, it's fluffy and soft! components: - type: Sprite - drawdepth: Mobs layers: - map: ["enum.DamageStateVisualLayers.Base"] state: duck-1 - sprite: Mobs/Animals/duck.rsi - - type: Appearance - type: DamageStateVisuals states: Alive: @@ -288,12 +285,9 @@ description: An adorable brown duck, it's fluffy and soft! components: - type: Sprite - drawdepth: Mobs layers: - map: ["enum.DamageStateVisualLayers.Base"] state: duck-2 - sprite: Mobs/Animals/duck.rsi - - type: Appearance - type: DamageStateVisuals states: Alive: @@ -961,14 +955,11 @@ id: MobMouse1 components: - type: Sprite - drawdepth: SmallMobs layers: - map: ["enum.DamageStateVisualLayers.Base"] state: mouse-1 - sprite: Mobs/Animals/mouse.rsi - type: Clothing equippedPrefix: 1 - - type: Appearance - type: DamageStateVisuals states: Alive: @@ -977,22 +968,17 @@ Base: dead-1 Dead: Base: splat-1 - - type: Bloodstream - bloodMaxVolume: 50 - type: entity parent: MobMouse id: MobMouse2 components: - type: Sprite - drawdepth: SmallMobs layers: - map: ["enum.DamageStateVisualLayers.Base"] state: mouse-2 - sprite: Mobs/Animals/mouse.rsi - type: Clothing - equippedPrefix: 1 - - type: Appearance + equippedPrefix: 2 - type: DamageStateVisuals states: Alive: @@ -1001,8 +987,6 @@ Base: dead-2 Dead: Base: splat-2 - - type: Bloodstream - bloodMaxVolume: 50 - type: entity name: lizard #Weh @@ -1470,7 +1454,7 @@ - type: entity name: clown spider - parent: MobGiantSpider + parent: MobGiantSpiderAngry id: MobClownSpider description: Combines the two most terrifying things in existence, spiders and clowns. components: @@ -1480,13 +1464,6 @@ - map: ["enum.DamageStateVisualLayers.Base"] state: clown sprite: Mobs/Animals/clownspider.rsi - - type: Faction - factions: - - Xeno - - type: InputMover - - type: MobMover - - type: HTN - rootTask: SimpleHostileCompound - type: Butcherable spawned: - id: MaterialBananium1 @@ -1916,12 +1893,9 @@ description: Feline pet, very funny. components: - type: Sprite - drawdepth: Mobs - sprite: Mobs/Pets/cat.rsi layers: - map: ["enum.DamageStateVisualLayers.Base"] state: cat2 - - type: Appearance - type: DamageStateVisuals states: Alive: @@ -1930,9 +1904,6 @@ Base: cat2_dead Dead: Base: cat2_dead - - type: Grammar - attributes: - gender: epicene - type: entity name: space cat @@ -1941,12 +1912,9 @@ description: Feline pet, prepared for the worst. components: - type: Sprite - drawdepth: Mobs - sprite: Mobs/Pets/cat.rsi layers: - map: ["enum.DamageStateVisualLayers.Base"] state: spacecat - - type: Appearance - type: DamageStateVisuals states: Alive: @@ -1961,9 +1929,6 @@ interactFailureString: petting-failure-generic interactSuccessSound: path: /Audio/Animals/cat_meow.ogg - - type: Grammar - attributes: - gender: epicene - type: entity name: caracal cat @@ -1972,12 +1937,10 @@ description: Hilarious. components: - type: Sprite - drawdepth: Mobs sprite: Mobs/Pets/caracal.rsi layers: - map: ["enum.DamageStateVisualLayers.Base"] state: caracal_flop - - type: Appearance - type: DamageStateVisuals states: Alive: @@ -1986,9 +1949,6 @@ Base: caracal_dead Dead: Base: caracal_dead - - type: Grammar - attributes: - gender: epicene - type: entity name: sloth diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml b/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml index 7d3167bbaa..bd657cd408 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml @@ -36,17 +36,14 @@ - type: entity name: Old Ian - parent: MobCorgi + parent: MobCorgiIan id: MobCorgiIanOld description: Still the favorite pet corgi. Love his wheels. components: - type: Sprite - drawdepth: Mobs - sprite: Mobs/Pets/corgi.rsi layers: - map: ["enum.DamageStateVisualLayers.Base"] state: old_ian - - type: Appearance - type: DamageStateVisuals states: Alive: @@ -55,32 +52,22 @@ Base: old_ian_dead Dead: Base: old_ian_dead - - type: Grammar - attributes: - proper: true - gender: male - type: Butcherable spawned: - id: FoodMeatCorgi amount: 2 - id: SheetSteel1 - - type: Tag - tags: - - CannotSuicide - type: entity name: Lisa - parent: MobCorgi + parent: MobCorgiIan id: MobCorgiLisa description: Ian's favorite corgi. components: - type: Sprite - drawdepth: Mobs - sprite: Mobs/Pets/corgi.rsi layers: - map: ["enum.DamageStateVisualLayers.Base"] state: lisa - - type: Appearance - type: DamageStateVisuals states: Alive: @@ -93,13 +80,6 @@ attributes: proper: true gender: female - - type: Butcherable - spawned: - - id: FoodMeatCorgi - amount: 2 - - type: Tag - tags: - - CannotSuicide - type: entity name: Runtime From a20fa2a23368492bacbb39ff85d2a97ffe7c4c7a Mon Sep 17 00:00:00 2001 From: liltenhead <104418166+liltenhead@users.noreply.github.com> Date: Wed, 21 Jun 2023 13:35:20 -0700 Subject: [PATCH 407/474] modify medkit fill (#17527) --- .../Catalog/Fills/Items/firstaidkits.yml | 3 +++ .../Objects/Specific/Medical/healing.yml | 26 +++++++++++++++++++ 2 files changed, 29 insertions(+) diff --git a/Resources/Prototypes/Catalog/Fills/Items/firstaidkits.yml b/Resources/Prototypes/Catalog/Fills/Items/firstaidkits.yml index 1259874be7..c6d7785929 100644 --- a/Resources/Prototypes/Catalog/Fills/Items/firstaidkits.yml +++ b/Resources/Prototypes/Catalog/Fills/Items/firstaidkits.yml @@ -43,6 +43,8 @@ - id: SyringeTranexamicAcid - id: PillIron amount: 5 + - id: PillBicaridine + amount: 5 - type: entity id: MedkitToxinFilled @@ -111,6 +113,7 @@ - id: HandheldHealthAnalyzer - id: SyringeEphedrine - id: SyringeTranexamicAcid + - id: SyringeBicaridine - id: AntiPoisonMedipen - id: Bloodpack amount: 2 diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml index cd80727064..a14311850a 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml @@ -272,6 +272,19 @@ - ReagentId: Tricordrazine Quantity: 10 +- type: entity + name: bicaridine pill (10u) + parent: Pill + id: PillBicaridine + components: + - type: SolutionContainerManager + solutions: + food: + maxVol: 20 + reagents: + - ReagentId: Bicaridine + Quantity: 10 + - type: entity name: romerol pill parent: Pill @@ -338,6 +351,19 @@ - ReagentId: Spaceacillin Quantity: 15 +- type: entity + name: bicaridine syringe + parent: BaseSyringe + id: SyringeBicaridine + components: + - type: SolutionContainerManager + solutions: + injector: + maxVol: 15 + reagents: + - ReagentId: Bicaridine + Quantity: 15 + - type: entity name: ipecac syringe parent: BaseSyringe From 729eeeee6e075f42887693a08f0d5bcaedfc2056 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 21 Jun 2023 16:36:25 -0400 Subject: [PATCH 408/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index d6294bce86..6b09ceb260 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,10 +1,4 @@ Entries: -- author: ElectroJr - changes: - - {message: Fixed a bug that allowed slime corpses/brains to move around after death., - type: Fix} - id: 3564 - time: '2023-04-29T06:35:28.0000000+00:00' - author: metalgearsloth changes: - {message: Shuttle movement has been overhauled to use forces instead of setting @@ -2942,3 +2936,9 @@ Entries: - {message: Armor has been removed from jumpsuits., type: Tweak} id: 4063 time: '2023-06-21T14:30:31.0000000+00:00' +- author: liltenhead + changes: + - {message: Added Bicaridine pills to brute medkit., type: Add} + - {message: Added Bicaridine syringe to combat medkit., type: Add} + id: 4064 + time: '2023-06-21T20:35:21.0000000+00:00' From 966345a4e3bbe9b22a71355c27d658294df38efa Mon Sep 17 00:00:00 2001 From: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> Date: Wed, 21 Jun 2023 17:45:17 -0400 Subject: [PATCH 409/474] Add missing border colors on PDAs (#17541) --- .../Entities/Objects/Devices/pda.yml | 72 ++++++++++++++++++- 1 file changed, 70 insertions(+), 2 deletions(-) diff --git a/Resources/Prototypes/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/Entities/Objects/Devices/pda.yml index 7da719ed8a..f67e1da376 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/pda.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/pda.yml @@ -126,6 +126,9 @@ - type: Pda id: TechnicalAssistantIDCard state: pda-interntech + - type: PdaBorderColor + borderColor: "#717059" + accentVColor: "#949137" - type: Icon state: pda-interntech @@ -138,6 +141,9 @@ - type: Pda id: MedicalInternIDCard state: pda-internmed + - type: PdaBorderColor + borderColor: "#717059" + accentVColor: "#447987" - type: Icon state: pda-internmed - type: HealthAnalyzer @@ -157,6 +163,9 @@ - type: Pda id: SecurityCadetIDCard state: pda-interncadet + - type: PdaBorderColor + borderColor: "#717059" + accentVColor: "#A32D26" - type: Icon state: pda-interncadet @@ -169,6 +178,9 @@ - type: Pda id: ResearchAssistantIDCard state: pda-internsci + - type: PdaBorderColor + borderColor: "#717059" + accentVColor: "#8900c9" - type: Icon state: pda-internsci @@ -181,6 +193,9 @@ - type: Pda id: ServiceWorkerIDCard state: pda-internservice + - type: PdaBorderColor + borderColor: "#717059" + accentVColor: "#00cc35" - type: Icon state: pda-internservice @@ -207,6 +222,9 @@ - type: Pda id: BotanistIDCard state: pda-hydro + - type: PdaBorderColor + borderColor: "#44843c" + accentVColor: "#00cc35" - type: Icon state: pda-hydro @@ -270,6 +288,9 @@ whitelist: components: - IdCard + - type: PdaBorderColor + borderColor: "#d7d7d0" + accentHColor: "#333333" - type: Icon state: pda-mime @@ -296,6 +317,9 @@ - type: Pda id: QuartermasterIDCard state: pda-qm + - type: PdaBorderColor + borderColor: "#e39751" + accentVColor: "#a23e3e" - type: Icon state: pda-qm @@ -308,6 +332,8 @@ - type: Pda id: CargoIDCard state: pda-cargo + - type: PdaBorderColor + borderColor: "#e39751" - type: Icon state: pda-cargo @@ -320,6 +346,9 @@ - type: Pda id: SalvageIDCard state: pda-miner + - type: PdaBorderColor + borderColor: "#af9366" + accentVColor: "#8900c9" - type: Icon state: pda-miner @@ -332,6 +361,8 @@ - type: Pda id: BartenderIDCard state: pda-bartender + - type: PdaBorderColor + borderColor: "#333333" - type: Icon state: pda-bartender @@ -344,6 +375,8 @@ - type: Pda id: LibrarianIDCard state: pda-library + - type: PdaBorderColor + borderColor: "#858585" - type: Icon state: pda-library @@ -356,6 +389,8 @@ - type: Pda id: LawyerIDCard state: pda-lawyer + - type: PdaBorderColor + borderColor: "#6f6192" - type: Icon state: pda-lawyer @@ -408,6 +443,9 @@ whitelist: tags: - Write + - type: PdaBorderColor + borderColor: "#789876" + accentHColor: "#447987" - type: Icon state: pda-hop @@ -435,6 +473,9 @@ - type: Pda id: EngineeringIDCard state: pda-engineer + - type: PdaBorderColor + borderColor: "#949137" + accentVColor: "#A32D26" - type: Icon state: pda-engineer @@ -523,6 +564,10 @@ - type: Pda id: RDIDCard state: pda-rd + - type: PdaBorderColor + borderColor: "#d7d7d0" + accentHColor: "#447987" + accentVColor: "#8900c9" - type: Icon state: pda-rd @@ -535,6 +580,9 @@ - type: Pda id: ResearchIDCard state: pda-science + - type: PdaBorderColor + borderColor: "#d7d7d0" + accentVColor: "#8900c9" - type: Icon state: pda-science @@ -562,6 +610,9 @@ - type: Pda id: WardenIDCard state: pda-warden + - type: PdaBorderColor + borderColor: "#A32D26" + accentVColor: "#949137" - type: Icon state: pda-warden @@ -574,6 +625,8 @@ - type: Pda id: SecurityIDCard state: pda-security + - type: PdaBorderColor + borderColor: "#A32D26" - type: Icon state: pda-security @@ -592,7 +645,7 @@ tags: - Write - type: PdaBorderColor - borderColor: "#32CD32" + borderColor: "#00842e" - type: Icon state: pda-centcom @@ -605,6 +658,8 @@ - type: Pda id: MusicianIDCard state: pda-musician + - type: PdaBorderColor + borderColor: "#333333" - type: Instrument allowPercussion: false handheld: true @@ -620,6 +675,9 @@ - type: Pda id: AtmosIDCard state: pda-atmos + - type: PdaBorderColor + borderColor: "#949137" + accentVColor: "#447987" - type: Icon state: pda-atmos @@ -632,6 +690,8 @@ - type: Pda id: PassengerIDCard state: pda-clear + - type: PdaBorderColor + borderColor: "#288e4d" - type: Icon state: pda-clear @@ -644,6 +704,8 @@ - type: Pda id: SyndicateIDCard state: pda-syndi + - type: PdaBorderColor + borderColor: "#891417" - type: Icon state: pda-syndi @@ -659,6 +721,7 @@ - type: PdaBorderColor borderColor: "#A32D26" accentHColor: "#447987" + accentVColor: "#447987" - type: Icon state: pda-ert @@ -674,6 +737,7 @@ - type: PdaBorderColor borderColor: "#A32D26" accentHColor: "#447987" + accentVColor: "#447987" - type: entity parent: BasePDA @@ -699,6 +763,8 @@ - type: Pda id: ReporterIDCard state: pda-reporter + - type: PdaBorderColor + borderColor: "#3f3f74" - type: Icon state: pda-reporter @@ -711,6 +777,8 @@ - type: Pda id: ZookeeperIDCard state: pda-zookeeper + - type: PdaBorderColor + borderColor: "#ffe685" - type: Icon state: pda-zookeeper @@ -725,7 +793,7 @@ state: pda-boxer - type: PdaBorderColor borderColor: "#333333" - borderVColor: "#390504" + accentVColor: "#390504" - type: Icon state: pda-boxer From 6e829066a7ef604b3c664b031613a7000c05e0c1 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 21 Jun 2023 17:46:21 -0400 Subject: [PATCH 410/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 6b09ceb260..2b826c9bcf 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,10 +1,4 @@ Entries: -- author: metalgearsloth - changes: - - {message: Shuttle movement has been overhauled to use forces instead of setting - velocity directly., type: Tweak} - id: 3565 - time: '2023-04-29T08:17:32.0000000+00:00' - author: keronshb changes: - {message: The ability to temporarily speak Ratvarian has been added after drinking @@ -2942,3 +2936,8 @@ Entries: - {message: Added Bicaridine syringe to combat medkit., type: Add} id: 4064 time: '2023-06-21T20:35:21.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: Fixed many PDAs not having the correct colors in their UIs., type: Fix} + id: 4065 + time: '2023-06-21T21:45:17.0000000+00:00' From a23a7fee89e03e7601d765db3dd5b13e45626dee Mon Sep 17 00:00:00 2001 From: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> Date: Wed, 21 Jun 2023 20:59:57 -0400 Subject: [PATCH 411/474] Research console auto syncing (#17540) --- Content.Server/Research/Systems/ResearchSystem.Console.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Content.Server/Research/Systems/ResearchSystem.Console.cs b/Content.Server/Research/Systems/ResearchSystem.Console.cs index fce7303062..f057cc9fd6 100644 --- a/Content.Server/Research/Systems/ResearchSystem.Console.cs +++ b/Content.Server/Research/Systems/ResearchSystem.Console.cs @@ -1,5 +1,6 @@ using Content.Server.Power.EntitySystems; using Content.Server.Research.Components; +using Content.Server.UserInterface; using Content.Shared.Research.Components; namespace Content.Server.Research.Systems; @@ -9,6 +10,7 @@ public sealed partial class ResearchSystem private void InitializeConsole() { SubscribeLocalEvent(OnConsoleUnlock); + SubscribeLocalEvent(OnConsoleBeforeUiOpened); SubscribeLocalEvent(OnPointsChanged); SubscribeLocalEvent(OnConsoleRegistrationChanged); SubscribeLocalEvent(OnConsoleDatabaseModified); @@ -26,6 +28,11 @@ private void OnConsoleUnlock(EntityUid uid, ResearchConsoleComponent component, UpdateConsoleInterface(uid, component); } + private void OnConsoleBeforeUiOpened(EntityUid uid, ResearchConsoleComponent component, BeforeActivatableUIOpenEvent args) + { + SyncClientWithServer(uid); + } + private void UpdateConsoleInterface(EntityUid uid, ResearchConsoleComponent? component = null, ResearchClientComponent? clientComponent = null) { if (!Resolve(uid, ref component, ref clientComponent, false)) From 7a338265ad41c8f56d29d97a9124765b51bbee3f Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 21 Jun 2023 21:01:02 -0400 Subject: [PATCH 412/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 2b826c9bcf..cfae6162fd 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,13 +1,4 @@ Entries: -- author: keronshb - changes: - - {message: The ability to temporarily speak Ratvarian has been added after drinking - CogChamp, type: Add} - - {message: 'Adds CogChamp - a new drink based off of clock cult. Lets the user - temporarily speak in Ratvarian. Created by mixing Cognac, Welding Fuel, and - a Screwdriver Cocktail.', type: Add} - id: 3566 - time: '2023-04-29T08:34:19.0000000+00:00' - author: Potato1234_x changes: - {message: Nanotrasen has supplied kitchens across space with salt and pepper shakers., @@ -2941,3 +2932,9 @@ Entries: - {message: Fixed many PDAs not having the correct colors in their UIs., type: Fix} id: 4065 time: '2023-06-21T21:45:17.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: Fixed research console ui not updating when technology is unlocked on + another console., type: Fix} + id: 4066 + time: '2023-06-22T00:59:58.0000000+00:00' From 501bc4be049ce5112383c132ef836b64b42426b0 Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Thu, 22 Jun 2023 15:44:11 +1200 Subject: [PATCH 413/474] Try fix random TestGhostToAghost test failures (#17546) --- .../Tests/Minds/MindTests.EntityDeletion.cs | 50 ++++++------------- .../Tests/Minds/MindTests.Helpers.cs | 7 ++- 2 files changed, 20 insertions(+), 37 deletions(-) diff --git a/Content.IntegrationTests/Tests/Minds/MindTests.EntityDeletion.cs b/Content.IntegrationTests/Tests/Minds/MindTests.EntityDeletion.cs index e23ca32756..32e6d3d273 100644 --- a/Content.IntegrationTests/Tests/Minds/MindTests.EntityDeletion.cs +++ b/Content.IntegrationTests/Tests/Minds/MindTests.EntityDeletion.cs @@ -202,53 +202,31 @@ await server.WaitAssertion(() => [Test] public async Task TestGhostToAghost() { - // Client is needed to spawn session - await using var pairTracker = await PoolManager.GetServerClient(); + await using var pairTracker = await SetupPair(); var server = pairTracker.Pair.Server; - var entMan = server.ResolveDependency(); var playerMan = server.ResolveDependency(); var serverConsole = server.ResolveDependency(); - IPlayerSession player = playerMan.ServerSessions.Single(); - - EntityUid ghost = default!; - - await server.WaitAssertion(() => - { - Assert.That(player.AttachedEntity, Is.Not.EqualTo(null)); - entMan.DeleteEntity(player.AttachedEntity!.Value); - }); - - await PoolManager.RunTicksSync(pairTracker.Pair, 5); - - await server.WaitAssertion(() => - { - // Is player a ghost? - Assert.That(player.AttachedEntity, Is.Not.EqualTo(null)); - ghost = player.AttachedEntity!.Value; - Assert.That(entMan.HasComponent(ghost)); - }); + var player = playerMan.ServerSessions.Single(); - await PoolManager.RunTicksSync(pairTracker.Pair, 5); + var ghost = await BecomeGhost(pairTracker.Pair); - await server.WaitAssertion(() => - { - serverConsole.ExecuteCommand(player, "aghost"); - }); + // Player is a normal ghost (not admin ghost). + Assert.That(entMan.GetComponent(player.AttachedEntity!.Value).EntityPrototype?.ID, Is.Not.EqualTo("AdminObserver")); + // Try to become an admin ghost + await server.WaitAssertion(() => serverConsole.ExecuteCommand(player, "aghost")); await PoolManager.RunTicksSync(pairTracker.Pair, 5); - await server.WaitAssertion(() => - { - Assert.That(entMan.Deleted(ghost)); - Assert.That(player.AttachedEntity, Is.Not.EqualTo(ghost)); - Assert.That(entMan.HasComponent(player.AttachedEntity!.Value)); + Assert.That(entMan.Deleted(ghost), "old ghost was not deleted"); + Assert.That(player.AttachedEntity, Is.Not.EqualTo(ghost), "Player is still attached to the old ghost"); + Assert.That(entMan.HasComponent(player.AttachedEntity!.Value), "Player did not become a new ghost"); + Assert.That(entMan.GetComponent(player.AttachedEntity.Value).EntityPrototype?.ID, Is.EqualTo("AdminObserver")); - var mind = player.ContentData()?.Mind; - Assert.NotNull(mind); - Assert.Null(mind.VisitingEntity); - }); + var mind = player.ContentData()?.Mind; + Assert.NotNull(mind); + Assert.Null(mind.VisitingEntity); await pairTracker.CleanReturnAsync(); } diff --git a/Content.IntegrationTests/Tests/Minds/MindTests.Helpers.cs b/Content.IntegrationTests/Tests/Minds/MindTests.Helpers.cs index 51d451451a..b3b77451fe 100644 --- a/Content.IntegrationTests/Tests/Minds/MindTests.Helpers.cs +++ b/Content.IntegrationTests/Tests/Minds/MindTests.Helpers.cs @@ -18,8 +18,13 @@ namespace Content.IntegrationTests.Tests.Minds; public sealed partial class MindTests { /// - /// Gets a server-client pair and ensures that the client is attached to a simple mind test entity. + /// Gets a server-client pair and ensures that the client is attached to a simple mind test entity. /// + /// + /// Without this, it may be possible that a tests starts with the client attached to an entity that does not match + /// the player's mind's current entity, likely because some previous test directly changed the players attached + /// entity. + /// public async Task SetupPair() { var pairTracker = await PoolManager.GetServerClient(); From 4ed11ca73b5f78043fdf5d0d13bf54965775fc2d Mon Sep 17 00:00:00 2001 From: Nim <128169402+Nimfar11@users.noreply.github.com> Date: Thu, 22 Jun 2023 07:08:58 +0300 Subject: [PATCH 414/474] Energy Shield (#16996) * energy shield * description edits * shields protect * small correction * say no to asteroid bees * fix * BlockModifier * fix * tweak * tweak * ops * fix * Update RobustToolbox * Revert "Update RobustToolbox" This reverts commit 55be82fe537490367e0afaf86365b0e274e6597e. * formatting --- Content.Server/Item/ItemToggleSystem.cs | 92 +++++++++++++++ .../Weapons/Reflect/ReflectSystem.cs | 17 ++- Content.Shared/Item/ItemToggleComponent.cs | 34 ++++++ .../Locale/en-US/store/uplink-catalog.ftl | 3 + .../Prototypes/Catalog/uplink_catalog.yml | 11 ++ .../Entities/Objects/Shields/shields.yml | 105 ++++++++++++++++++ .../eshield-icon.png | Bin .../eshield-inhand-left.png | Bin .../eshield-inhand-right.png | Bin .../eshield-on.png | Bin .../inhand-left-shield.png} | Bin .../inhand-right-shield.png} | Bin .../Weapons/Melee/e_shield.rsi/meta.json | 33 ++++++ .../Weapons/Melee/shields.rsi/meta.json | 24 +--- 14 files changed, 295 insertions(+), 24 deletions(-) create mode 100644 Content.Server/Item/ItemToggleSystem.cs create mode 100644 Content.Shared/Item/ItemToggleComponent.cs rename Resources/Textures/Objects/Weapons/Melee/{shields.rsi => e_shield.rsi}/eshield-icon.png (100%) rename Resources/Textures/Objects/Weapons/Melee/{shields.rsi => e_shield.rsi}/eshield-inhand-left.png (100%) rename Resources/Textures/Objects/Weapons/Melee/{shields.rsi => e_shield.rsi}/eshield-inhand-right.png (100%) rename Resources/Textures/Objects/Weapons/Melee/{shields.rsi => e_shield.rsi}/eshield-on.png (100%) rename Resources/Textures/Objects/Weapons/Melee/{shields.rsi/eshield1-inhand-left-on.png => e_shield.rsi/inhand-left-shield.png} (100%) rename Resources/Textures/Objects/Weapons/Melee/{shields.rsi/eshield-inhand-right-on.png => e_shield.rsi/inhand-right-shield.png} (100%) create mode 100644 Resources/Textures/Objects/Weapons/Melee/e_shield.rsi/meta.json diff --git a/Content.Server/Item/ItemToggleSystem.cs b/Content.Server/Item/ItemToggleSystem.cs new file mode 100644 index 0000000000..5610582007 --- /dev/null +++ b/Content.Server/Item/ItemToggleSystem.cs @@ -0,0 +1,92 @@ +using Content.Server.CombatMode.Disarm; +using Content.Shared.Interaction; +using Content.Shared.Interaction.Events; +using Content.Shared.Item; +using Content.Shared.Toggleable; +using Content.Shared.Tools.Components; +using Robust.Shared.Player; + +namespace Content.Server.Weapons.Melee.ItemToggle; + +public sealed class ItemToggleSystem : EntitySystem +{ + [Dependency] private readonly SharedItemSystem _item = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnUseInHand); + SubscribeLocalEvent(OnInteractUsing); + SubscribeLocalEvent(TurnOff); + SubscribeLocalEvent(TurnOn); + } + + private void OnUseInHand(EntityUid uid, ItemToggleComponent comp, UseInHandEvent args) + { + if (args.Handled) + return; + + args.Handled = true; + + if (comp.Activated) + { + var ev = new ItemToggleDeactivatedEvent(); + RaiseLocalEvent(uid, ref ev); + } + else + { + var ev = new ItemToggleActivatedEvent(); + RaiseLocalEvent(uid, ref ev); + } + + UpdateAppearance(uid, comp); + } + + private void TurnOff(EntityUid uid, ItemToggleComponent comp, ref ItemToggleDeactivatedEvent args) + { + if (TryComp(uid, out ItemComponent? item)) + _item.SetSize(uid, comp.OffSize, item); + + if (TryComp(uid, out var malus)) + malus.Malus -= comp.ActivatedDisarmMalus; + + _audio.Play(comp.DeActivateSound, Filter.Pvs(uid, entityManager: EntityManager), uid, true, comp.DeActivateSound.Params); + + comp.Activated = false; + } + + private void TurnOn(EntityUid uid, ItemToggleComponent comp, ref ItemToggleActivatedEvent args) + { + if (TryComp(uid, out ItemComponent? item)) + _item.SetSize(uid, comp.OnSize, item); + + if (TryComp(uid, out var malus)) + malus.Malus += comp.ActivatedDisarmMalus; + + _audio.Play(comp.ActivateSound, Filter.Pvs(uid, entityManager: EntityManager), uid, true, comp.ActivateSound.Params); + + comp.Activated = true; + } + + private void UpdateAppearance(EntityUid uid, ItemToggleComponent component) + { + if (!TryComp(uid, out AppearanceComponent? appearanceComponent)) + return; + + _appearance.SetData(uid, ToggleableLightVisuals.Enabled, component.Activated, appearanceComponent); + } + + private void OnInteractUsing(EntityUid uid, ItemToggleComponent comp, InteractUsingEvent args) + { + if (args.Handled) + return; + + if (!TryComp(args.Used, out ToolComponent? tool) || !tool.Qualities.ContainsAny("Pulsing")) + return; + + args.Handled = true; + } +} diff --git a/Content.Server/Weapons/Reflect/ReflectSystem.cs b/Content.Server/Weapons/Reflect/ReflectSystem.cs index 3fe8dc8028..4045bf7b79 100644 --- a/Content.Server/Weapons/Reflect/ReflectSystem.cs +++ b/Content.Server/Weapons/Reflect/ReflectSystem.cs @@ -1,4 +1,5 @@ using Content.Server.Weapons.Melee.EnergySword; +using Content.Server.Weapons.Melee.ItemToggle; using Content.Shared.Weapons.Reflect; namespace Content.Server.Weapons.Reflect; @@ -10,6 +11,8 @@ public override void Initialize() base.Initialize(); SubscribeLocalEvent(EnableReflect); SubscribeLocalEvent(DisableReflect); + SubscribeLocalEvent(ShieldEnableReflect); + SubscribeLocalEvent(ShieldDisableReflect); } private void EnableReflect(EntityUid uid, ReflectComponent comp, ref EnergySwordActivatedEvent args) @@ -23,4 +26,16 @@ private void DisableReflect(EntityUid uid, ReflectComponent comp, ref EnergySwor comp.Enabled = false; Dirty(comp); } -} \ No newline at end of file + + private void ShieldEnableReflect(EntityUid uid, ReflectComponent comp, ref ItemToggleActivatedEvent args) + { + comp.Enabled = true; + Dirty(comp); + } + + private void ShieldDisableReflect(EntityUid uid, ReflectComponent comp, ref ItemToggleDeactivatedEvent args) + { + comp.Enabled = false; + Dirty(comp); + } +} diff --git a/Content.Shared/Item/ItemToggleComponent.cs b/Content.Shared/Item/ItemToggleComponent.cs new file mode 100644 index 0000000000..9bcee120cd --- /dev/null +++ b/Content.Shared/Item/ItemToggleComponent.cs @@ -0,0 +1,34 @@ +using Robust.Shared.Audio; +using Robust.Shared.GameStates; + +namespace Content.Server.Weapons.Melee.ItemToggle; + +[RegisterComponent, NetworkedComponent] +public sealed class ItemToggleComponent : Component +{ + public bool Activated = false; + + [DataField("activateSound")] + public SoundSpecifier ActivateSound { get; set; } = default!; + + [DataField("deActivateSound")] + public SoundSpecifier DeActivateSound { get; set; } = default!; + + [ViewVariables(VVAccess.ReadWrite)] + [DataField("activatedDisarmMalus")] + public float ActivatedDisarmMalus = 0.6f; + + [ViewVariables(VVAccess.ReadWrite)] + [DataField("offSize")] + public int OffSize = 1; + + [ViewVariables(VVAccess.ReadWrite)] + [DataField("onSize")] + public int OnSize = 9999; +} + +[ByRefEvent] +public readonly record struct ItemToggleActivatedEvent(); + +[ByRefEvent] +public readonly record struct ItemToggleDeactivatedEvent(); diff --git a/Resources/Locale/en-US/store/uplink-catalog.ftl b/Resources/Locale/en-US/store/uplink-catalog.ftl index db8ee3bb9b..4ac235a148 100644 --- a/Resources/Locale/en-US/store/uplink-catalog.ftl +++ b/Resources/Locale/en-US/store/uplink-catalog.ftl @@ -213,6 +213,9 @@ uplink-decoy-disk-desc = A piece of plastic with a lenticular printing, made to uplink-cigarettes-name = Syndicate Smokes Packet uplink-cigarettes-desc = Elite cigarettes for elite agents. Infused with medicine for when you need to do more than calm your nerves. +uplink-eshield-name = Energy Shield +uplink-eshield-desc = Exotic energy shield that reflects almost all laser beams, as well as a little protection from bullets and other physical attacks. + uplink-soap-name = Soap uplink-soap-desc = An untrustworthy bar of soap. Smells of fear. diff --git a/Resources/Prototypes/Catalog/uplink_catalog.yml b/Resources/Prototypes/Catalog/uplink_catalog.yml index ceea36350b..596de06ef9 100644 --- a/Resources/Prototypes/Catalog/uplink_catalog.yml +++ b/Resources/Prototypes/Catalog/uplink_catalog.yml @@ -839,6 +839,17 @@ categories: - UplinkMisc +- type: listing + id: UplinkEshield + name: uplink-eshield-name + description: uplink-eshield-desc + icon: { sprite: /Textures/Objects/Weapons/Melee/e_shield.rsi, state: eshield-on } + productEntity: EnergyShield + cost: + Telecrystal: 6 + categories: + - UplinkMisc + - type: listing id: UplinkSoapSyndie name: uplink-soap-name diff --git a/Resources/Prototypes/Entities/Objects/Shields/shields.yml b/Resources/Prototypes/Entities/Objects/Shields/shields.yml index 4f493f4832..1005558ea8 100644 --- a/Resources/Prototypes/Entities/Objects/Shields/shields.yml +++ b/Resources/Prototypes/Entities/Objects/Shields/shields.yml @@ -301,3 +301,108 @@ SheetGlass: min: 5 max: 5 + +- type: entity + name: energy shield + parent: BaseItem + id: EnergyShield + description: Exotic energy shield, when folded, can even fit in your pocket. + components: + - type: ItemToggle + activatedDisarmMalus: 0.6 + activateSound: + path: /Audio/Weapons/ebladeon.ogg + deActivateSound: + path: /Audio/Weapons/ebladeoff.ogg + offSize: 5 + - type: Sprite + sprite: Objects/Weapons/Melee/e_shield.rsi + layers: + - state: eshield-icon + - state: eshield-on + color: "#FFFFFF" + visible: false + shader: unshaded + map: [ "shield" ] + - type: Item + size: 5 + sprite: Objects/Weapons/Melee/e_shield.rsi + heldPrefix: eshield + - type: UseDelay + delay: 0.5 + - type: ToggleableLightVisuals + spriteLayer: shield + inhandVisuals: + left: + - state: inhand-left-shield + shader: unshaded + right: + - state: inhand-right-shield + shader: unshaded + - type: PointLight + netsync: false + enabled: false + radius: 1.5 + energy: 2 + color: blue + - type: Reflect + enabled: false + reflectProb: 0.95 + reflects: + - Energy + - type: Blocking + passiveBlockModifier: + coefficients: + Blunt: 1.0 + Slash: 0.9 + Piercing: 0.85 + Heat: 0.6 + activeBlockModifier: + coefficients: + Blunt: 1.2 + Slash: 0.85 + Piercing: 0.5 + Heat: 0.4 + flatReductions: + Heat: 1 + Piercing: 1 + - type: Appearance + - type: Damageable + damageContainer: Shield + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 180 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - trigger: + !type:DamageTrigger + damage: 150 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - !type:PlaySoundBehavior + sound: /Audio/Effects/metalbreak.ogg + - !type:SpawnEntitiesBehavior + spawn: + BrokenEnergyShield: + min: 1 + max: 1 + - type: StaticPrice + price: 350 + +- type: entity + name: broken energy shield + parent: BaseItem + id: BrokenEnergyShield + description: Something inside is burned out, it is no longer functional. + components: + - type: Sprite + sprite: Objects/Weapons/Melee/e_shield.rsi + state: eshield-icon + - type: Item + sprite: Objects/Weapons/Melee/e_shield.rsi + size: 5 + heldPrefix: eshield diff --git a/Resources/Textures/Objects/Weapons/Melee/shields.rsi/eshield-icon.png b/Resources/Textures/Objects/Weapons/Melee/e_shield.rsi/eshield-icon.png similarity index 100% rename from Resources/Textures/Objects/Weapons/Melee/shields.rsi/eshield-icon.png rename to Resources/Textures/Objects/Weapons/Melee/e_shield.rsi/eshield-icon.png diff --git a/Resources/Textures/Objects/Weapons/Melee/shields.rsi/eshield-inhand-left.png b/Resources/Textures/Objects/Weapons/Melee/e_shield.rsi/eshield-inhand-left.png similarity index 100% rename from Resources/Textures/Objects/Weapons/Melee/shields.rsi/eshield-inhand-left.png rename to Resources/Textures/Objects/Weapons/Melee/e_shield.rsi/eshield-inhand-left.png diff --git a/Resources/Textures/Objects/Weapons/Melee/shields.rsi/eshield-inhand-right.png b/Resources/Textures/Objects/Weapons/Melee/e_shield.rsi/eshield-inhand-right.png similarity index 100% rename from Resources/Textures/Objects/Weapons/Melee/shields.rsi/eshield-inhand-right.png rename to Resources/Textures/Objects/Weapons/Melee/e_shield.rsi/eshield-inhand-right.png diff --git a/Resources/Textures/Objects/Weapons/Melee/shields.rsi/eshield-on.png b/Resources/Textures/Objects/Weapons/Melee/e_shield.rsi/eshield-on.png similarity index 100% rename from Resources/Textures/Objects/Weapons/Melee/shields.rsi/eshield-on.png rename to Resources/Textures/Objects/Weapons/Melee/e_shield.rsi/eshield-on.png diff --git a/Resources/Textures/Objects/Weapons/Melee/shields.rsi/eshield1-inhand-left-on.png b/Resources/Textures/Objects/Weapons/Melee/e_shield.rsi/inhand-left-shield.png similarity index 100% rename from Resources/Textures/Objects/Weapons/Melee/shields.rsi/eshield1-inhand-left-on.png rename to Resources/Textures/Objects/Weapons/Melee/e_shield.rsi/inhand-left-shield.png diff --git a/Resources/Textures/Objects/Weapons/Melee/shields.rsi/eshield-inhand-right-on.png b/Resources/Textures/Objects/Weapons/Melee/e_shield.rsi/inhand-right-shield.png similarity index 100% rename from Resources/Textures/Objects/Weapons/Melee/shields.rsi/eshield-inhand-right-on.png rename to Resources/Textures/Objects/Weapons/Melee/e_shield.rsi/inhand-right-shield.png diff --git a/Resources/Textures/Objects/Weapons/Melee/e_shield.rsi/meta.json b/Resources/Textures/Objects/Weapons/Melee/e_shield.rsi/meta.json new file mode 100644 index 0000000000..bf499bb7d3 --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Melee/e_shield.rsi/meta.json @@ -0,0 +1,33 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Citadel station 13 at https://github.com/Citadel-Station-13/Citadel-Station-13/commit/84223c65f5caf667a84f3c0f49bc2a41cdc6c4e3", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "eshield-icon" + }, + { + "name": "eshield-inhand-right", + "directions": 4 + }, + { + "name": "eshield-inhand-left", + "directions": 4 + }, + { + "name": "eshield-on" + }, + { + "name": "inhand-right-shield", + "directions": 4 + }, + { + "name": "inhand-left-shield", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Weapons/Melee/shields.rsi/meta.json b/Resources/Textures/Objects/Weapons/Melee/shields.rsi/meta.json index d44aa92605..2d2663c158 100644 --- a/Resources/Textures/Objects/Weapons/Melee/shields.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Melee/shields.rsi/meta.json @@ -168,28 +168,6 @@ { "name": "teleriot-inhand-left-on", "directions": 4 - }, - { - "name": "eshield-icon" - }, - { - "name": "eshield-inhand-right", - "directions": 4 - }, - { - "name": "eshield-inhand-left", - "directions": 4 - }, - { - "name": "eshield-on" - }, - { - "name": "eshield-inhand-right-on", - "directions": 4 - }, - { - "name": "eshield1-inhand-left-on", - "directions": 4 } ] -} \ No newline at end of file +} From ad89184d70487c74edc316ce14dc9febca74e51a Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 22 Jun 2023 00:10:02 -0400 Subject: [PATCH 415/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index cfae6162fd..0b592f03ec 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,10 +1,4 @@ Entries: -- author: Potato1234_x - changes: - - {message: Nanotrasen has supplied kitchens across space with salt and pepper shakers., - type: Add} - id: 3567 - time: '2023-04-29T08:42:44.0000000+00:00' - author: pofitlo changes: - {message: Added new nuke music, type: Add} @@ -2938,3 +2932,8 @@ Entries: another console., type: Fix} id: 4066 time: '2023-06-22T00:59:58.0000000+00:00' +- author: Nimfar11 + changes: + - {message: Adds an Energy Shield to the Syndicate uplink for 6 TC., type: Add} + id: 4067 + time: '2023-06-22T04:08:59.0000000+00:00' From 7ab5127286726971239a78a4d60346e0958d4327 Mon Sep 17 00:00:00 2001 From: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> Date: Thu, 22 Jun 2023 07:49:33 -0400 Subject: [PATCH 416/474] Cargo Bounties (#17344) Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> --- .../CargoBountyConsoleBoundUserInterface.cs | 54 +++ Content.Client/Cargo/UI/BountyEntry.xaml | 27 ++ Content.Client/Cargo/UI/BountyEntry.xaml.cs | 54 +++ Content.Client/Cargo/UI/CargoBountyMenu.xaml | 36 ++ .../Cargo/UI/CargoBountyMenu.xaml.cs | 34 ++ Content.IntegrationTests/Tests/CargoTest.cs | 40 ++ .../Components/CargoBountyLabelComponent.cs | 20 + .../StationCargoBountyDatabaseComponent.cs | 47 +++ .../Cargo/Systems/CargoSystem.Bounty.cs | 341 ++++++++++++++++++ .../Cargo/Systems/CargoSystem.Shuttle.cs | 21 +- Content.Server/Cargo/Systems/CargoSystem.cs | 4 + Content.Shared/Cargo/CargoBountyData.cs | 31 ++ .../Components/CargoBountyConsoleComponent.cs | 57 +++ .../Cargo/Prototypes/CargoBountyPrototype.cs | 60 +++ Content.Shared/Cargo/SharedCargoSystem.cs | 1 + Resources/Locale/en-US/cargo/bounties.ftl | 41 +++ .../en-US/cargo/cargo-bounty-console.ftl | 18 + Resources/Locale/en-US/guidebook/guides.ftl | 1 + .../Prototypes/Catalog/Bounties/bounties.yml | 219 +++++++++++ .../Catalog/Fills/Lockers/heads.yml | 1 + .../Prototypes/Entities/Mobs/NPCs/animals.yml | 1 + .../Devices/Circuitboards/computer.yml | 15 + .../Prototypes/Entities/Objects/Fun/toys.yml | 3 + .../Entities/Objects/Misc/briefcases.yml | 3 + .../Entities/Objects/Misc/paper.yml | 13 + .../Entities/Objects/Tools/toolbox.yml | 3 +- .../Objects/Weapons/Melee/baseball_bat.yml | 3 + .../Prototypes/Entities/Stations/base.yml | 1 + .../Machines/Computers/computers.yml | 33 ++ Resources/Prototypes/Guidebook/cargo.yml | 9 +- Resources/Prototypes/tags.yml | 15 + .../Guidebook/{ => Cargo}/Cargo.xml | 2 +- .../Guidebook/Cargo/CargoBounties.xml | 29 ++ .../Machines/computers.rsi/bounty.png | Bin 0 -> 2362 bytes .../Machines/computers.rsi/meta.json | 38 ++ 35 files changed, 1269 insertions(+), 6 deletions(-) create mode 100644 Content.Client/Cargo/BUI/CargoBountyConsoleBoundUserInterface.cs create mode 100644 Content.Client/Cargo/UI/BountyEntry.xaml create mode 100644 Content.Client/Cargo/UI/BountyEntry.xaml.cs create mode 100644 Content.Client/Cargo/UI/CargoBountyMenu.xaml create mode 100644 Content.Client/Cargo/UI/CargoBountyMenu.xaml.cs create mode 100644 Content.Server/Cargo/Components/CargoBountyLabelComponent.cs create mode 100644 Content.Server/Cargo/Components/StationCargoBountyDatabaseComponent.cs create mode 100644 Content.Server/Cargo/Systems/CargoSystem.Bounty.cs create mode 100644 Content.Shared/Cargo/CargoBountyData.cs create mode 100644 Content.Shared/Cargo/Components/CargoBountyConsoleComponent.cs create mode 100644 Content.Shared/Cargo/Prototypes/CargoBountyPrototype.cs create mode 100644 Resources/Locale/en-US/cargo/bounties.ftl create mode 100644 Resources/Locale/en-US/cargo/cargo-bounty-console.ftl create mode 100644 Resources/Prototypes/Catalog/Bounties/bounties.yml rename Resources/ServerInfo/Guidebook/{ => Cargo}/Cargo.xml (92%) create mode 100644 Resources/ServerInfo/Guidebook/Cargo/CargoBounties.xml create mode 100644 Resources/Textures/Structures/Machines/computers.rsi/bounty.png diff --git a/Content.Client/Cargo/BUI/CargoBountyConsoleBoundUserInterface.cs b/Content.Client/Cargo/BUI/CargoBountyConsoleBoundUserInterface.cs new file mode 100644 index 0000000000..63587d9875 --- /dev/null +++ b/Content.Client/Cargo/BUI/CargoBountyConsoleBoundUserInterface.cs @@ -0,0 +1,54 @@ +using Content.Client.Cargo.UI; +using Content.Shared.Cargo.Components; +using JetBrains.Annotations; +using Robust.Client.GameObjects; + +namespace Content.Client.Cargo.BUI; + +[UsedImplicitly] +public sealed class CargoBountyConsoleBoundUserInterface : BoundUserInterface +{ + [ViewVariables] + private CargoBountyMenu? _menu; + + public CargoBountyConsoleBoundUserInterface(ClientUserInterfaceComponent owner, Enum uiKey) : base(owner, uiKey) + { + + } + + protected override void Open() + { + base.Open(); + + _menu = new(); + + _menu.OnClose += Close; + + _menu.OnLabelButtonPressed += id => + { + SendMessage(new BountyPrintLabelMessage(id)); + }; + + _menu.OpenCentered(); + } + + protected override void UpdateState(BoundUserInterfaceState message) + { + base.UpdateState(message); + + if (message is not CargoBountyConsoleState state) + return; + + _menu?.UpdateEntries(state.Bounties); + } + + protected override void Dispose(bool disposing) + { + base.Dispose(disposing); + + if (!disposing) + return; + + _menu?.Dispose(); + } +} diff --git a/Content.Client/Cargo/UI/BountyEntry.xaml b/Content.Client/Cargo/UI/BountyEntry.xaml new file mode 100644 index 0000000000..e570b03746 --- /dev/null +++ b/Content.Client/Cargo/UI/BountyEntry.xaml @@ -0,0 +1,27 @@ + + + + + + + + + + + + [ViewVariables(VVAccess.ReadWrite)] public bool IsLevelLocked = false; - [ViewVariables] public const float Delay = 30; - [ViewVariables] public float CurrentDelay = 0; [ViewVariables] public bool ActiveDelay; diff --git a/Content.Server/AlertLevel/AlertLevelSystem.cs b/Content.Server/AlertLevel/AlertLevelSystem.cs index a9ca6725ca..975235b937 100644 --- a/Content.Server/AlertLevel/AlertLevelSystem.cs +++ b/Content.Server/AlertLevel/AlertLevelSystem.cs @@ -1,8 +1,10 @@ using System.Linq; using Content.Server.Chat.Systems; using Content.Server.Station.Systems; +using Content.Shared.CCVar; using Content.Shared.PDA; using Robust.Shared.Audio; +using Robust.Shared.Configuration; using Robust.Shared.Prototypes; namespace Content.Server.AlertLevel; @@ -12,6 +14,7 @@ public sealed class AlertLevelSystem : EntitySystem [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly ChatSystem _chatSystem = default!; [Dependency] private readonly StationSystem _stationSystem = default!; + [Dependency] private readonly IConfigurationManager _cfg = default!; // Until stations are a prototype, this is how it's going to have to be. public const string DefaultAlertLevelSet = "stationAlerts"; @@ -138,7 +141,7 @@ public void SetLevel(EntityUid station, string level, bool playSound, bool annou return; } - component.CurrentDelay = AlertLevelComponent.Delay; + component.CurrentDelay = _cfg.GetCVar(CCVars.GameAlertLevelChangeDelay); component.ActiveDelay = true; } diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs index ac5b02b1ad..5318abce32 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -282,6 +282,12 @@ public static readonly CVarDef CVarDef.Create("game.round_start_fail_shutdown_count", 5, CVar.SERVERONLY | CVar.SERVER); #endif + /// + /// Delay between station alert level changes. + /// + public static readonly CVarDef GameAlertLevelChangeDelay = + CVarDef.Create("game.alert_level_change_delay", 30, CVar.SERVERONLY); + /* * Discord */ From 4d493ba674fa4de607a5e884a0a853bda87cadf2 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 24 Jun 2023 08:01:47 -0400 Subject: [PATCH 446/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index f10c4481da..bf1fd3a89f 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,10 +1,4 @@ Entries: -- author: deltanedas - changes: - - {message: 'Extra-bright lanterns can now be used by hitting people, like regular - flashes.', type: Tweak} - id: 3578 - time: '2023-04-29T13:38:40.0000000+00:00' - author: PixelTK changes: - {message: Nanotrasen has experimented with hiring some arachnid-like humanoids., @@ -2939,3 +2933,9 @@ Entries: - {message: The Cargo department is no longer supervised by the HoP., type: Tweak} id: 4077 time: '2023-06-24T05:32:15.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: 'Added Artifexium, a chemical that can activate artifacts when sprayed + on their surface. Get it by grinding artifact fragments.', type: Add} + id: 4078 + time: '2023-06-24T12:00:42.0000000+00:00' From f5bd24f990bae02123524f90143d6ea3e15060b0 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Sat, 24 Jun 2023 14:02:59 +0200 Subject: [PATCH 447/474] Clean up PDA event subscriptions. (#17434) Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> --- Content.Server/AlertLevel/AlertLevelSystem.cs | 6 --- Content.Server/PDA/PdaSystem.cs | 50 +++++++++++-------- 2 files changed, 28 insertions(+), 28 deletions(-) diff --git a/Content.Server/AlertLevel/AlertLevelSystem.cs b/Content.Server/AlertLevel/AlertLevelSystem.cs index 975235b937..121f6f4c1b 100644 --- a/Content.Server/AlertLevel/AlertLevelSystem.cs +++ b/Content.Server/AlertLevel/AlertLevelSystem.cs @@ -189,12 +189,6 @@ public void SetLevel(EntityUid station, string level, bool playSound, bool annou } RaiseLocalEvent(new AlertLevelChangedEvent(station, level)); - - var pdas = EntityQueryEnumerator(); - while (pdas.MoveNext(out var ent, out var comp)) - { - RaiseLocalEvent(ent,new AlertLevelChangedEvent(station, level)); - } } } diff --git a/Content.Server/PDA/PdaSystem.cs b/Content.Server/PDA/PdaSystem.cs index eaf7b96ecc..1fbdb5b0ff 100644 --- a/Content.Server/PDA/PdaSystem.cs +++ b/Content.Server/PDA/PdaSystem.cs @@ -33,8 +33,6 @@ public override void Initialize() base.Initialize(); SubscribeLocalEvent(OnLightToggle); - SubscribeLocalEvent(OnGridChanged); - SubscribeLocalEvent(OnAlertLevelChanged); // UI Events: SubscribeLocalEvent(OnUiMessage); @@ -43,6 +41,9 @@ public override void Initialize() SubscribeLocalEvent(OnUiMessage); SubscribeLocalEvent(OnUiMessage); SubscribeLocalEvent(OnUiMessage); + + SubscribeLocalEvent(OnStationRenamed); + SubscribeLocalEvent(OnAlertLevelChanged); } protected override void OnComponentInit(EntityUid uid, PdaComponent pda, ComponentInit args) @@ -80,10 +81,23 @@ public void SetOwner(EntityUid uid, PdaComponent pda, string ownerName) UpdatePdaUi(uid, pda); } - private void OnGridChanged(EntityUid uid, PdaComponent pda, GridModifiedEvent args) + private void OnStationRenamed(StationRenamedEvent ev) { - UpdateStationName(uid, pda); - UpdatePdaUi(uid, pda); + UpdateAllPdaUisOnStation(); + } + + private void OnAlertLevelChanged(AlertLevelChangedEvent args) + { + UpdateAllPdaUisOnStation(); + } + + private void UpdateAllPdaUisOnStation() + { + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var ent, out var comp)) + { + UpdatePdaUi(ent, comp); + } } /// @@ -91,16 +105,7 @@ private void OnGridChanged(EntityUid uid, PdaComponent pda, GridModifiedEvent ar /// public void UpdatePdaUi(EntityUid uid, PdaComponent pda) { - var ownerInfo = new PdaIdInfoText - { - ActualOwnerName = pda.OwnerName, - IdOwner = pda.ContainedId?.FullName, - JobTitle = pda.ContainedId?.JobTitle, - StationAlertLevel = pda.StationAlertLevel, - StationAlertColor = pda.StationAlertColor - }; - - if (!_ui.TryGetUi(uid, PdaUiKey.Key, out var ui)) + if (!_ui.TryGetUi(uid, PdaUiKey.Key, out _)) return; var address = GetDeviceNetAddress(uid); @@ -115,7 +120,14 @@ public void UpdatePdaUi(EntityUid uid, PdaComponent pda) var state = new PdaUpdateState( pda.FlashlightOn, pda.PenSlot.HasItem, - ownerInfo, + new PdaIdInfoText + { + ActualOwnerName = pda.OwnerName, + IdOwner = pda.ContainedId?.FullName, + JobTitle = pda.ContainedId?.JobTitle, + StationAlertLevel = pda.StationAlertLevel, + StationAlertColor = pda.StationAlertColor + }, pda.StationName, showUplink, hasInstrument, @@ -192,12 +204,6 @@ private void UpdateStationName(EntityUid uid, PdaComponent pda) pda.StationName = station is null ? null : Name(station.Value); } - private void OnAlertLevelChanged(EntityUid uid, PdaComponent pda, AlertLevelChangedEvent args) - { - UpdateAlertLevel(uid, pda); - UpdatePdaUi(uid, pda); - } - private void UpdateAlertLevel(EntityUid uid, PdaComponent pda) { var station = _station.GetOwningStation(uid); From 46e96239d36266fbba9e1e351cdff7c608a5a8e3 Mon Sep 17 00:00:00 2001 From: Nim <128169402+Nimfar11@users.noreply.github.com> Date: Sat, 24 Jun 2023 15:03:08 +0300 Subject: [PATCH 448/474] Seeds of fly agarics Amanita EMAG (#17598) --- .../Prototypes/Catalog/VendingMachines/Inventories/seeds.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/seeds.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/seeds.yml index 198af4db56..05b1d52d53 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/seeds.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/seeds.yml @@ -31,3 +31,5 @@ TowercapSeeds: 5 WheatSeeds: 5 WatermelonSeeds: 5 + emaggedInventory: + FlyAmanitaSeeds: 1 From 2b7a30403dd5d3bb6820da562e3cacdf1cf1ef0d Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 24 Jun 2023 08:04:12 -0400 Subject: [PATCH 449/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index bf1fd3a89f..71e187c362 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,10 +1,4 @@ Entries: -- author: PixelTK - changes: - - {message: Nanotrasen has experimented with hiring some arachnid-like humanoids., - type: Add} - id: 3579 - time: '2023-04-29T16:19:07.0000000+00:00' - author: Slava0135 changes: - {message: Powered electrified grilles now create sparks when touched., type: Add} @@ -2939,3 +2933,9 @@ Entries: on their surface. Get it by grinding artifact fragments.', type: Add} id: 4078 time: '2023-06-24T12:00:42.0000000+00:00' +- author: Nimfar11 + changes: + - {message: Adds Amanita fly agaric seeds to the Vendomat of seeds after EMAG., + type: Add} + id: 4079 + time: '2023-06-24T12:03:09.0000000+00:00' From 4ae80fb2767e655bbc9e8e029027d2a60be69821 Mon Sep 17 00:00:00 2001 From: HighTechPuddle <131694215+HighTechPuddle@users.noreply.github.com> Date: Sat, 24 Jun 2023 14:06:33 +0200 Subject: [PATCH 450/474] Issue#15607-Audio/Ambience (#17327) --- .../Audio/Ambience/Antag/attributions.yml | 12 +- .../Audio/Ambience/Objects/attributions.yml | 52 ++++++- .../Audio/Ambience/Temporary/attributions.yml | 4 + Resources/Audio/Ambience/attributions.yml | 137 ++++++++++-------- 4 files changed, 140 insertions(+), 65 deletions(-) create mode 100644 Resources/Audio/Ambience/Temporary/attributions.yml diff --git a/Resources/Audio/Ambience/Antag/attributions.yml b/Resources/Audio/Ambience/Antag/attributions.yml index b600fc30b4..6f76d64d85 100644 --- a/Resources/Audio/Ambience/Antag/attributions.yml +++ b/Resources/Audio/Ambience/Antag/attributions.yml @@ -1,12 +1,12 @@ -- files: ["nukeops_start.ogg"] - license: "CC-BY-NC-SA-3.0" - copyright: "Taken from TG station." - source: "https://github.com/tgstation/tgstation/commit/827967c9650c23af64280ad1491405fed8f644c5" +- files: ["nukeops_start.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from TG station" + source: "https://github.com/tgstation/tgstation/commit/827967c9650c23af64280ad1491405fed8f644c5#diff-6cc910b7cad9ac4333c8d0885fc844746066120b465d8d4ba8f7019169316574" - files: ["pirate_start.ogg"] license: "CC-BY-NC-SA-3.0" copyright: "Made by @MIXnikita#1474 (Discord) for SS14" - source: "https://github.com/SerbiaStrong-220/space-station-14/blob/master/Resources/Audio/Ambience/Antag/pirate_start.ogg" + source: "https://github.com/SerbiaStrong-220/space-station-14/commit/f33ce80db9d8ac962ec36eb5ae61afa8c0035d1a" - files: ["zombie_start.ogg"] license: "CC-BY-NC-SA-3.0" copyright: "Made by @MIXnikita#1474 (Discord) for SS14" - source: "https://github.com/SerbiaStrong-220/space-station-14/blob/master/Resources/Audio/Ambience/Antag/zombie_start.ogg" \ No newline at end of file + source: "https://github.com/SerbiaStrong-220/space-station-14/commit/f33ce80db9d8ac962ec36eb5ae61afa8c0035d1a" \ No newline at end of file diff --git a/Resources/Audio/Ambience/Objects/attributions.yml b/Resources/Audio/Ambience/Objects/attributions.yml index c084f551c7..e1dec23786 100644 --- a/Resources/Audio/Ambience/Objects/attributions.yml +++ b/Resources/Audio/Ambience/Objects/attributions.yml @@ -6,4 +6,54 @@ - files: ["crushing.ogg"] license: "CC-BY-4.0" copyright: "Created by juskiddink, converted Mono and .ogg by EmoGarbage" - source: "https://freesound.org/people/juskiddink/sounds/66956/" \ No newline at end of file + source: "https://freesound.org/people/juskiddink/sounds/66956/" + +- files: ["circular_saw.ogg"] + license: "CC0-1.0" + copyright: "Taken from source and clipped" + source: "https://freesound.org/people/derjuli/sounds/448133/" + +- files: ["gas_pump.ogg"] + license: "CC0-1.0" + copyright: "Taken from source" + source: "https://freesound.org/people/karinalarasart/sounds/441419/" + +- files: ["gas_hiss.ogg"] + license: "CC-BY-4.0" + copyright: "Taken from source" + source: "https://freesound.org/people/geodylabs/sounds/122803/" + +- files: ["gas_vent.ogg"] + license: "CC0-1.0" + copyright: "Taken from source" + source: "https://freesound.org/people/kyles/sounds/453642/" + +- files: ["flowing_water_open.ogg"] + license: "CC0-1.0" + copyright: "Taken from source" + source: "https://freesound.org/people/sterferny/sounds/382322/" + +- files: ["server_fans.ogg"] + license: "CC-BY-3.0" + copyright: "Taken from source" + source: "https://freesound.org/people/DeVern/sounds/610761/" + +- files: ["drain.ogg"] + license: "CC-BY-3.0" + copyright: "Taken from source" + source: "https://freesound.org/people/PhreaKsAccount/sounds/46266/" + +- files: ["portable_scrubber.ogg"] + license: "CC0-1.0" + copyright: "Taken from source" + source: "https://freesound.org/people/Beethovenboy/sounds/384335/" + +- files: ["alarm.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken and edited from source" + source: "https://github.com/Baystation12/Baystation12/commit/41c3cfd386b11aee101b3f89ab7fefe77a57a1ba#diff-07f56c449048fdb4cef954ea18c4111e53ccb92624a948f15879a74cdf5fc7fa" + +- files: ["reclaimer_ambience.ogg"] + license: "CC0-1.0" + copyright: "Taken from source" + source: "https://freesound.org/people/cmorris035/sounds/319152/" \ No newline at end of file diff --git a/Resources/Audio/Ambience/Temporary/attributions.yml b/Resources/Audio/Ambience/Temporary/attributions.yml new file mode 100644 index 0000000000..7560df72a8 --- /dev/null +++ b/Resources/Audio/Ambience/Temporary/attributions.yml @@ -0,0 +1,4 @@ +- files: ["flies.ogg"] + license: "CC0-1.0" + copyright: "Taken from source" + source: "https://freesound.org/people/telezon/sounds/321870/" \ No newline at end of file diff --git a/Resources/Audio/Ambience/attributions.yml b/Resources/Audio/Ambience/attributions.yml index b129339a71..7f72253ddf 100644 --- a/Resources/Audio/Ambience/attributions.yml +++ b/Resources/Audio/Ambience/attributions.yml @@ -3,63 +3,84 @@ copyright: "Created by Joao_Janz, edited and converted to Mono by EmoGarbage" source: "https://freesound.org/people/Joao_Janz/sounds/478472/" -- files: - - "ambiatmos.ogg" - - "ambiatmos2.ogg" - - "ambicave.ogg" - - "ambicha1.ogg" - - "ambicha2.ogg" - - "ambicha3.ogg" - - "ambicha4.ogg" - - "ambidanger.ogg" - - "ambidanger2.ogg" - - "ambigen1.ogg" - - "ambigen2.ogg" - - "ambigen3.ogg" - - "ambigen4.ogg" - - "ambigen5.ogg" - - "ambigen6.ogg" - - "ambigen7.ogg" - - "ambigen8.ogg" - - "ambigen9.ogg" - - "ambigen10.ogg" - - "ambigen11.ogg" - - "ambigen12.ogg" - - "ambigen13.ogg" - - "ambigen14.ogg" - - "ambigen15.ogg" - - "ambiholy.ogg" - - "ambiholy2.ogg" - - "ambiholy3.ogg" - - "ambilava1.ogg" - - "ambilava2.ogg" - - "ambilava3.ogg" - - "ambimaint1.ogg" - - "ambimaint2.ogg" - - "ambimaint3.ogg" - - "ambimaint4.ogg" - - "ambimaint5.ogg" - - "ambimine.ogg" - - "ambimo1.ogg" - - "ambimo2.ogg" - - "ambimystery.ogg" - - "ambinice.ogg" - - "ambiodd.ogg" - - "ambiruin.ogg" - - "ambiruin2.ogg" - - "ambiruin3.ogg" - - "ambiruin4.ogg" - - "ambiruin5.ogg" - - "ambiruin6.ogg" - - "ambiruin7.ogg" - - "ambisin1.ogg" - - "ambisin2.ogg" - - "ambisin3.ogg" - - "ambisin4.ogg" - - "ambitech.ogg" - - "ambitech2.ogg" - - "ambitech3.ogg" - - "maintambience.ogg" +- files: ["ambiatmos.ogg, + ambiatmos2.ogg, + ambicave.ogg, + ambicha1.ogg, + ambicha2.ogg, + ambicha3.ogg, + ambicha4.ogg, + ambidanger.ogg, + ambidanger2.ogg, + ambigen1.ogg, + ambigen2.ogg, + ambigen3.ogg, + ambigen4.ogg, + ambigen5.ogg, + ambigen6.ogg, + ambigen7.ogg, + ambigen8.ogg, + ambigen9.ogg, + ambigen10.ogg, + ambigen11.ogg, + ambigen12.ogg, + ambigen13.ogg, + ambigen14.ogg, + ambigen15.ogg, + ambiholy.ogg, + ambiholy2.ogg, + ambiholy3.ogg, + ambilava1.ogg, + ambilava2.ogg, + ambilava3.ogg, + ambimaint1.ogg, + ambimaint2.ogg, + ambimaint3.ogg, + ambimaint4.ogg, + ambimaint5.ogg, + ambimine.ogg, + ambimo1.ogg, + ambimo2.ogg, + ambimystery.ogg, + ambinice.ogg, + ambiodd.ogg, + ambireebe1.ogg, + ambireebe3.ogg, + ambiruin.ogg, + ambiruin2.ogg, + ambiruin3.ogg, + ambiruin4.ogg, + ambiruin5.ogg, + ambiruin6.ogg, + ambiruin7.ogg, + ambisin1.ogg, + ambisin2.ogg, + ambisin3.ogg, + ambisin4.ogg, + ambitech.ogg, + ambitech2.ogg, + ambitech3.ogg, + maintambience.ogg"] license: "CC-BY-SA-3.0" copyright: "Taken from tgstation" - source: "https://github.com/tgstation/tgstation/tree/ae9767664701396501af5dcef8e34c4b5add3d47/sound/ambience" \ No newline at end of file + source: "https://github.com/tgstation/tgstation/tree/ae9767664701396501af5dcef8e34c4b5add3d47/sound/ambience" + +- files: ["shipambience.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from /tg/station (see source), which took it from CEV Eris (commit https://github.com/discordia-space/CEV-Eris/blob/e4e40d38424afe88c8a81cf0e3857d8af4ef077f/sound/ambience/shipambience.ogg)" + source: "https://github.com/tgstation/tgstation/blob/66a625e6df15eaa97e599248a2281c74238ce26e/sound/ambience/shipambience.ogg" + +- files: ["starlight.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from BeeStation" + source: "https://github.com/BeeStation/BeeStation-Hornet/commit/5228e20df942bb45e9469358022e2451bb9c0efe" + +- files: ["constellations.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from BeeStation" + source: "https://github.com/BeeStation/BeeStation-Hornet/commit/bdf79fbf44f776b7380ceec62a9f112a002b4121" + +- files: ["drifting.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from BeeStation" + source: "https://github.com/BeeStation/BeeStation-Hornet/commit/cf8c667dcca196c0e81af37ed0c27b9bdee9c888" \ No newline at end of file From 694ba695b027588e1ab10be37318d9d62ae93a6d Mon Sep 17 00:00:00 2001 From: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> Date: Sat, 24 Jun 2023 08:08:47 -0400 Subject: [PATCH 451/474] fix galaxythistle bounty locale (#17594) --- Resources/Locale/en-US/cargo/bounties.ftl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Locale/en-US/cargo/bounties.ftl b/Resources/Locale/en-US/cargo/bounties.ftl index 9a744b1a5e..235ec45e2f 100644 --- a/Resources/Locale/en-US/cargo/bounties.ftl +++ b/Resources/Locale/en-US/cargo/bounties.ftl @@ -17,7 +17,7 @@ bounty-item-donut = Donut bounty-item-figurine = Action figure bounty-item-flesh-monster = Flesh monster bounty-item-flower = Flower -bounty-item-galaxythisle = Galaxythistle +bounty-item-galaxythistle = Galaxythistle bounty-item-handcuffs = Handcuffs bounty-item-instrument = Instrument bounty-item-knife = Knife From ecae0230f69e3c46693927825be967cd7d7a8e28 Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Sun, 25 Jun 2023 00:11:08 +1200 Subject: [PATCH 452/474] Remove TickerLobbyReadyEvent (#17522) --- .../GameTicking/Managers/ClientGameTicker.cs | 7 ------- Content.Server/GameTicking/GameTicker.Lobby.cs | 18 ------------------ .../GameTicking/GameTicker.Player.cs | 1 - .../GameTicking/GameTicker.Spawning.cs | 1 - Content.Shared/GameTicking/SharedGameTicker.cs | 14 -------------- 5 files changed, 41 deletions(-) diff --git a/Content.Client/GameTicking/Managers/ClientGameTicker.cs b/Content.Client/GameTicking/Managers/ClientGameTicker.cs index 33a20c945a..5c255cd193 100644 --- a/Content.Client/GameTicking/Managers/ClientGameTicker.cs +++ b/Content.Client/GameTicking/Managers/ClientGameTicker.cs @@ -49,7 +49,6 @@ public sealed class ClientGameTicker : SharedGameTicker public event Action? InfoBlobUpdated; public event Action? LobbyStatusUpdated; - public event Action? LobbyReadyUpdated; public event Action? LobbyLateJoinStatusUpdated; public event Action>>? LobbyJobsAvailableUpdated; @@ -62,7 +61,6 @@ public override void Initialize() SubscribeNetworkEvent(LobbyStatus); SubscribeNetworkEvent(LobbyInfo); SubscribeNetworkEvent(LobbyCountdown); - SubscribeNetworkEvent(LobbyReady); SubscribeNetworkEvent(RoundEnd); SubscribeNetworkEvent(msg => { @@ -124,11 +122,6 @@ private void LobbyCountdown(TickerLobbyCountdownEvent message) Paused = message.Paused; } - private void LobbyReady(TickerLobbyReadyEvent message) - { - LobbyReadyUpdated?.Invoke(); - } - private void RoundEnd(RoundEndMessageEvent message) { if (message.LobbySong != null) diff --git a/Content.Server/GameTicking/GameTicker.Lobby.cs b/Content.Server/GameTicking/GameTicker.Lobby.cs index 05fd59e97e..1050c7c568 100644 --- a/Content.Server/GameTicking/GameTicker.Lobby.cs +++ b/Content.Server/GameTicking/GameTicker.Lobby.cs @@ -78,22 +78,6 @@ private string GetInfoText() ("roundId", RoundId), ("playerCount", playerCount), ("readyCount", readyCount), ("mapName", stationNames.ToString()),("gmTitle", gmTitle),("desc", desc)); } - private TickerLobbyReadyEvent GetStatusSingle(ICommonSession player, PlayerGameStatus gameStatus) - { - return new (new Dictionary { { player.UserId, gameStatus } }); - } - - private TickerLobbyReadyEvent GetPlayerStatus() - { - var players = new Dictionary(); - foreach (var player in _playerGameStatuses.Keys) - { - _playerGameStatuses.TryGetValue(player, out var status); - players.Add(player, status); - } - return new TickerLobbyReadyEvent(players); - } - private TickerLobbyStatusEvent GetStatusMsg(IPlayerSession session) { _playerGameStatuses.TryGetValue(session.UserId, out var status); @@ -160,7 +144,6 @@ public void ToggleReadyAll(bool ready) if (!_playerManager.TryGetSessionById(playerUserId, out var playerSession)) continue; RaiseNetworkEvent(GetStatusMsg(playerSession), playerSession.ConnectedClient); - RaiseNetworkEvent(GetStatusSingle(playerSession, status)); } } @@ -180,7 +163,6 @@ public void ToggleReady(IPlayerSession player, bool ready) var status = ready ? PlayerGameStatus.ReadyToPlay : PlayerGameStatus.NotReadyToPlay; _playerGameStatuses[player.UserId] = ready ? PlayerGameStatus.ReadyToPlay : PlayerGameStatus.NotReadyToPlay; RaiseNetworkEvent(GetStatusMsg(player), player.ConnectedClient); - RaiseNetworkEvent(GetStatusSingle(player, status)); // update server info to reflect new ready count UpdateInfoText(); } diff --git a/Content.Server/GameTicking/GameTicker.Player.cs b/Content.Server/GameTicking/GameTicker.Player.cs index e6930780e2..c114cf418c 100644 --- a/Content.Server/GameTicking/GameTicker.Player.cs +++ b/Content.Server/GameTicking/GameTicker.Player.cs @@ -163,7 +163,6 @@ private void PlayerJoinLobby(IPlayerSession session) RaiseNetworkEvent(new TickerJoinLobbyEvent(), client); RaiseNetworkEvent(GetStatusMsg(session), client); RaiseNetworkEvent(GetInfoMsg(), client); - RaiseNetworkEvent(GetPlayerStatus(), client); RaiseLocalEvent(new PlayerJoinedLobbyEvent(session)); } diff --git a/Content.Server/GameTicking/GameTicker.Spawning.cs b/Content.Server/GameTicking/GameTicker.Spawning.cs index fd7fc6ce88..1e519eaa6f 100644 --- a/Content.Server/GameTicking/GameTicker.Spawning.cs +++ b/Content.Server/GameTicking/GameTicker.Spawning.cs @@ -271,7 +271,6 @@ public void JoinAsObserver(IPlayerSession player) PlayerJoinGame(player); SpawnObserver(player); - RaiseNetworkEvent(GetStatusSingle(player, PlayerGameStatus.JoinedGame)); } /// diff --git a/Content.Shared/GameTicking/SharedGameTicker.cs b/Content.Shared/GameTicking/SharedGameTicker.cs index 14e8b68e9f..15f51f49a5 100644 --- a/Content.Shared/GameTicking/SharedGameTicker.cs +++ b/Content.Shared/GameTicking/SharedGameTicker.cs @@ -116,20 +116,6 @@ public TickerLobbyCountdownEvent(TimeSpan startTime, bool paused) } } - [Serializable, NetSerializable] - public sealed class TickerLobbyReadyEvent : EntityEventArgs - { - /// - /// The Status of the Player in the lobby (ready, observer, ...) - /// - public Dictionary Status { get; } - - public TickerLobbyReadyEvent(Dictionary status) - { - Status = status; - } - } - [Serializable, NetSerializable] public sealed class TickerJobsAvailableEvent : EntityEventArgs { From de07c2b5994cf55437f829defdf35f7bd6f4443d Mon Sep 17 00:00:00 2001 From: LankLTE <135308300+LankLTE@users.noreply.github.com> Date: Sat, 24 Jun 2023 05:11:47 -0700 Subject: [PATCH 453/474] Adds Health Analyzer to Chem PDA (#17603) --- Resources/Prototypes/Entities/Objects/Devices/pda.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Resources/Prototypes/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/Entities/Objects/Devices/pda.yml index f67e1da376..74adce2198 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/pda.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/pda.yml @@ -554,6 +554,10 @@ accentVColor: "#B34200" - type: Icon state: pda-chemistry + - type: HealthAnalyzer + scanDelay: 1 + scanningEndSound: + path: "/Audio/Items/Medical/healthscanner.ogg" - type: entity parent: BasePDA From 084cb7b750bf1bc21d5130601033aff54a64b0a1 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 24 Jun 2023 08:12:51 -0400 Subject: [PATCH 454/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 71e187c362..ad98a93e48 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: Slava0135 - changes: - - {message: Powered electrified grilles now create sparks when touched., type: Add} - id: 3580 - time: '2023-04-29T20:05:10.0000000+00:00' - author: Interrobang01 changes: - {message: 'Nanotrasen has striken the defective recipe for Impedrezene from its @@ -2939,3 +2934,8 @@ Entries: type: Add} id: 4079 time: '2023-06-24T12:03:09.0000000+00:00' +- author: Lank + changes: + - {message: Chemist PDA's can now analyze patient health., type: Tweak} + id: 4080 + time: '2023-06-24T12:11:48.0000000+00:00' From fcb6516cee658584bd8dc472d64b76c0e5c13ef5 Mon Sep 17 00:00:00 2001 From: 0x6273 <0x40@keemail.me> Date: Sat, 24 Jun 2023 20:09:24 +0200 Subject: [PATCH 455/474] Hotplate overhaul (#17586) * Hotplate overhaul - Beakers are now placed on top of the hotplate instead of itemslot. - Hotplate LED now only lights up if it's heating something. - More comments/xmldoc. - Some other minor tweaks. * Actually remove the beaker slot --- .../ActiveSolutionHeaterComponent.cs | 1 - .../Components/SolutionHeaterComponent.cs | 47 +++++++-- .../EntitySystems/SolutionHeaterSystem.cs | 99 +++++++++++++++---- .../Chemistry/SharedSolutionHeater.cs | 9 ++ .../Entities/Structures/Machines/hotplate.yml | 24 ++--- 5 files changed, 141 insertions(+), 39 deletions(-) create mode 100644 Content.Shared/Chemistry/SharedSolutionHeater.cs diff --git a/Content.Server/Chemistry/Components/ActiveSolutionHeaterComponent.cs b/Content.Server/Chemistry/Components/ActiveSolutionHeaterComponent.cs index b94855ef39..e190c0ebd3 100644 --- a/Content.Server/Chemistry/Components/ActiveSolutionHeaterComponent.cs +++ b/Content.Server/Chemistry/Components/ActiveSolutionHeaterComponent.cs @@ -3,5 +3,4 @@ [RegisterComponent] public sealed class ActiveSolutionHeaterComponent : Component { - } diff --git a/Content.Server/Chemistry/Components/SolutionHeaterComponent.cs b/Content.Server/Chemistry/Components/SolutionHeaterComponent.cs index ddeb4ff055..2c5f5e5ab8 100644 --- a/Content.Server/Chemistry/Components/SolutionHeaterComponent.cs +++ b/Content.Server/Chemistry/Components/SolutionHeaterComponent.cs @@ -1,19 +1,50 @@ -namespace Content.Server.Chemistry.Components; +using Content.Shared.Whitelist; + +namespace Content.Server.Chemistry.Components; [RegisterComponent] public sealed class SolutionHeaterComponent : Component { - public readonly string BeakerSlotId = "beakerSlot"; - - [DataField("heatPerSecond")] - public float HeatPerSecond = 120; + /// + /// How much heat is added per second to the solution, with no upgrades. + /// + [DataField("baseHeatPerSecond")] + public float BaseHeatPerSecond = 120; + /// + /// How much heat is added per second to the solution, taking upgrades into account. + /// [ViewVariables(VVAccess.ReadWrite)] - public float HeatMultiplier = 1; + public float HeatPerSecond; - [DataField("machinePartHeatPerSecond")] - public string MachinePartHeatPerSecond = "Capacitor"; + /// + /// The machine part that affects the heat multiplier. + /// + [DataField("machinePartHeatMultiplier")] + public string MachinePartHeatMultiplier = "Capacitor"; + /// + /// How much each upgrade multiplies the heat by. + /// [DataField("partRatingHeatMultiplier")] public float PartRatingHeatMultiplier = 1.5f; + + /// + /// The entities that are placed on the heater. + /// + [DataField("placedEntities")] + public HashSet PlacedEntities = new(); + + /// + /// The max amount of entities that can be heated at the same time. + /// + [DataField("maxEntities")] + public uint MaxEntities = 1; + + /// + /// Whitelist for entities that can be placed on the heater. + /// + [DataField("whitelist")] + [ViewVariables(VVAccess.ReadWrite)] + public EntityWhitelist? Whitelist; } diff --git a/Content.Server/Chemistry/EntitySystems/SolutionHeaterSystem.cs b/Content.Server/Chemistry/EntitySystems/SolutionHeaterSystem.cs index 47f2d2d981..4e3db49e80 100644 --- a/Content.Server/Chemistry/EntitySystems/SolutionHeaterSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/SolutionHeaterSystem.cs @@ -1,14 +1,22 @@ -using Content.Server.Chemistry.Components; +using System.Linq; +using Content.Server.Chemistry.Components; using Content.Server.Chemistry.Components.SolutionManager; using Content.Server.Construction; using Content.Server.Power.Components; -using Content.Shared.Containers.ItemSlots; +using Content.Server.Power.EntitySystems; +using Content.Shared.Chemistry; +using Content.Shared.Placeable; +using Robust.Shared.Physics.Events; +using Robust.Shared.Physics.Systems; namespace Content.Server.Chemistry.EntitySystems; public sealed class SolutionHeaterSystem : EntitySystem { - [Dependency] private readonly ItemSlotsSystem _itemSlots = default!; + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SharedPhysicsSystem _physics = default!; + [Dependency] private readonly PlaceableSurfaceSystem _placeableSurface = default!; + [Dependency] private readonly PowerReceiverSystem _powerReceiver = default!; [Dependency] private readonly SolutionContainerSystem _solution = default!; /// @@ -17,48 +25,101 @@ public override void Initialize() SubscribeLocalEvent(OnPowerChanged); SubscribeLocalEvent(OnRefreshParts); SubscribeLocalEvent(OnUpgradeExamine); + SubscribeLocalEvent(OnStartCollide); + SubscribeLocalEvent(OnEndCollide); + } + + private void TurnOn(EntityUid uid) + { + _appearance.SetData(uid, SolutionHeaterVisuals.IsOn, true); + EnsureComp(uid); + } + + public bool TryTurnOn(EntityUid uid, SolutionHeaterComponent component) + { + if (component.PlacedEntities.Count <= 0 || !_powerReceiver.IsPowered(uid)) + return false; + + TurnOn(uid); + return true; + } + + public void TurnOff(EntityUid uid) + { + _appearance.SetData(uid, SolutionHeaterVisuals.IsOn, false); + RemComp(uid); } private void OnPowerChanged(EntityUid uid, SolutionHeaterComponent component, ref PowerChangedEvent args) { - if (args.Powered) + if (args.Powered && component.PlacedEntities.Count > 0) { - EnsureComp(uid); + TurnOn(uid); } else { - RemComp(uid); + TurnOff(uid); } } private void OnRefreshParts(EntityUid uid, SolutionHeaterComponent component, RefreshPartsEvent args) { - var heatRating = args.PartRatings[component.MachinePartHeatPerSecond] - 1; + var heatRating = args.PartRatings[component.MachinePartHeatMultiplier] - 1; - component.HeatMultiplier = MathF.Pow(component.PartRatingHeatMultiplier, heatRating); + component.HeatPerSecond = component.BaseHeatPerSecond * MathF.Pow(component.PartRatingHeatMultiplier, heatRating); } private void OnUpgradeExamine(EntityUid uid, SolutionHeaterComponent component, UpgradeExamineEvent args) { - args.AddPercentageUpgrade("solution-heater-upgrade-heat", component.HeatMultiplier); + args.AddPercentageUpgrade("solution-heater-upgrade-heat", component.HeatPerSecond / component.BaseHeatPerSecond); + } + + private void OnStartCollide(EntityUid uid, SolutionHeaterComponent component, ref StartCollideEvent args) + { + if (component.Whitelist is not null && !component.Whitelist.IsValid(args.OtherEntity)) + return; + + // Disallow sleeping so we can detect when entity is removed from the heater. + _physics.SetSleepingAllowed(args.OtherEntity, args.OtherBody, false); + + component.PlacedEntities.Add(args.OtherEntity); + + TryTurnOn(uid, component); + + if (component.PlacedEntities.Count >= component.MaxEntities) + _placeableSurface.SetPlaceable(uid, false); + } + + private void OnEndCollide(EntityUid uid, SolutionHeaterComponent component, ref EndCollideEvent args) + { + // Re-allow sleeping. + _physics.SetSleepingAllowed(args.OtherEntity, args.OtherBody, true); + + component.PlacedEntities.Remove(args.OtherEntity); + + if (component.PlacedEntities.Count == 0) // Last entity was removed + TurnOff(uid); + + _placeableSurface.SetPlaceable(uid, true); } public override void Update(float frameTime) { base.Update(frameTime); - foreach (var (_, heater) in EntityQuery()) + var query = EntityQueryEnumerator(); + while (query.MoveNext(out _, out _, out var heater)) { - if (_itemSlots.GetItemOrNull(heater.Owner, heater.BeakerSlotId) is not { } item) - continue; - - if (!TryComp(item, out var solution)) - continue; - - var energy = heater.HeatPerSecond * heater.HeatMultiplier * frameTime; - foreach (var s in solution.Solutions.Values) + foreach (var heatingEntity in heater.PlacedEntities.Take((int) heater.MaxEntities)) { - _solution.AddThermalEnergy(solution.Owner, s, energy); + if (!TryComp(heatingEntity, out var solution)) + continue; + + var energy = heater.HeatPerSecond * frameTime; + foreach (var s in solution.Solutions.Values) + { + _solution.AddThermalEnergy(heatingEntity, s, energy); + } } } } diff --git a/Content.Shared/Chemistry/SharedSolutionHeater.cs b/Content.Shared/Chemistry/SharedSolutionHeater.cs new file mode 100644 index 0000000000..32032a59f0 --- /dev/null +++ b/Content.Shared/Chemistry/SharedSolutionHeater.cs @@ -0,0 +1,9 @@ +using Robust.Shared.Serialization; + +namespace Content.Shared.Chemistry; + +[Serializable, NetSerializable] +public enum SolutionHeaterVisuals +{ + IsOn, +} diff --git a/Resources/Prototypes/Entities/Structures/Machines/hotplate.yml b/Resources/Prototypes/Entities/Structures/Machines/hotplate.yml index ab7e9e65b5..0c5fa3989a 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/hotplate.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/hotplate.yml @@ -15,7 +15,10 @@ mask: - TabletopMachineMask layer: - - TabletopMachineLayer + - Impassable + - MidImpassable + - LowImpassable + hard: false - type: Sprite sprite: Structures/Machines/hotplate.rsi drawdepth: SmallObjects @@ -23,16 +26,10 @@ layers: - state: icon - state: on - map: ["enum.PowerDeviceVisualLayers.Powered"] + map: ["enum.SolutionHeaterVisuals.IsOn"] shader: unshaded - type: ApcPowerReceiver powerLoad: 300 - - type: ItemSlots - slots: - beakerSlot: - whitelist: - components: - - FitsInDispenser - type: ItemMapper sprite: Structures/Machines/hotplate.rsi mapLayers: @@ -41,17 +38,22 @@ components: - FitsInDispenser - type: SolutionHeater + whitelist: + components: + - FitsInDispenser + - type: PlaceableSurface + placeCentered: true + positionOffset: 0, 0.25 - type: Machine board: HotplateMachineCircuitboard - type: Appearance - type: ContainerContainer containers: - beakerSlot: !type:ContainerSlot machine_board: !type:Container machine_parts: !type:Container - type: GenericVisualizer visuals: - enum.PowerDeviceVisuals.Powered: - enum.PowerDeviceVisualLayers.Powered: + enum.SolutionHeaterVisuals.IsOn: + enum.SolutionHeaterVisuals.IsOn: True: { visible: true } False: { visible: false } From aea3bf9372a3d9d8af92ec261f6444d6eea3957a Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 24 Jun 2023 14:10:28 -0400 Subject: [PATCH 456/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index ad98a93e48..e16aad0d09 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Interrobang01 - changes: - - {message: 'Nanotrasen has striken the defective recipe for Impedrezene from its - list. Impedrezene now causes sluggishness and massive brain damage, but the - recipe is changed to 1 water + 1 oxygen + 1 mercury + temp>370 = 1 impedrezene.', - type: Tweak} - id: 3581 - time: '2023-04-29T21:04:17.0000000+00:00' - author: DawBla changes: - {message: Nanotrasen now supplies the station with off-brand wirecutters. Cutting @@ -2939,3 +2931,9 @@ Entries: - {message: Chemist PDA's can now analyze patient health., type: Tweak} id: 4080 time: '2023-06-24T12:11:48.0000000+00:00' +- author: 25203 + changes: + - {message: 'Hotplates no longer use itemslots, which means you can see and interact + with the beaker while it''s being heated.', type: Tweak} + id: 4081 + time: '2023-06-24T18:09:24.0000000+00:00' From 4c15474619ca72def628bbb045c344363d06571c Mon Sep 17 00:00:00 2001 From: OctoRocket <88291550+OctoRocket@users.noreply.github.com> Date: Sat, 24 Jun 2023 14:56:31 -0500 Subject: [PATCH 457/474] [Sprite] Fix an error in the flannel sprite. (#17618) --- .../flannel.rsi/equipped-INNERCLOTHING.png | Bin 644 -> 652 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/flannel.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/flannel.rsi/equipped-INNERCLOTHING.png index 836f95e9aa8a310aa29e6da2d596087f391a68a7..80a966b0ce704137833b80ae26d4214dbf23fbb3 100644 GIT binary patch delta 614 zcmV-s0-61U1&jrdF@Hu$L_t(|ob8&wPQx$|#=oR7{}$8$7x{!h+g@LAu65Gkyz7**Fr0N>C(f9d$Y15toK@bE%5Cq{kNhoigtE^fm zg%_=n>oVyZk4;m@7TNUYDyslgt!Nz|N#7O+lMNMLC8$`)reEIQoUiA)96V7U{k|AO-oRFy zi>3-_zb|AJ`t(gPrasWkWN!sn&STLxMXG+^XF$@-U~@$r70@{^0H?kwM%M2zv;w$@ z{+ToAKA^@{0e{mp#r0%@X`15s^NZ@iTfdGW`lJNpy2Lb1k?Rsyw>P)~@Cx90wFXX4 zSSQb=Pr6%rxWB6a;PU*e^V+7^0sxk)HQR3i4*isBqA6aB+Dvg!>uiec{t=>2PC(73 z*kZX_C(R^`MSHbFJa{Fb(As&-%}F+K9#bGEz&6>jl7A3epOk>&OLv}|#<<|nCw&b9 zz~-ZSy_v?iIJCYX2!bF8f*=UOQNz{-_aWpjdGgQU$BXl--jIM@d%Qk=`Y71`5Vd(| zc)>!cit2%yfNHl30{}V^KdZot4d@?t$*aI+D*ylh07*qoM6N<$f=)~& Aa{vGU delta 606 zcmV-k0-^nk1%w5VF@HWuL_t(|ob8%DZo)tig`bT#327oKBn4R{t{7=~dOhGDLgz~s$y5#7; zrXEZakRNwp06;C`ZxyJM;MIduW27lkwWQ9)19dyRcMn_vhHwRN1#ks$1^lZDxTy9x zg$HA^O;-l`nmmOEn+a From 2b7cc01e7fed4f2172c2e5a9f54fc25dafb032fa Mon Sep 17 00:00:00 2001 From: Alekshhh <44923899+Alekshhh@users.noreply.github.com> Date: Sat, 24 Jun 2023 22:56:42 +0300 Subject: [PATCH 458/474] Capgun Ammo Recolor (#17617) * he's got a gun * gung * oops --- .../Weapons/Guns/Ammunition/Cartridges/toy.yml | 2 +- .../Guns/Ammunition/Boxes/magnum.rsi/cap.png | Bin 189 -> 177 bytes .../Casings/capgun_casing.rsi/base-spent.png | Bin 0 -> 153 bytes .../Casings/capgun_casing.rsi/base.png | Bin 0 -> 165 bytes .../Casings/capgun_casing.rsi/meta.json | 17 +++++++++++++++++ 5 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Casings/capgun_casing.rsi/base-spent.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Casings/capgun_casing.rsi/base.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Casings/capgun_casing.rsi/meta.json diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/toy.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/toy.yml index 0ac5d95e1a..6ec93e1778 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/toy.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/toy.yml @@ -10,7 +10,7 @@ - CartridgeCap - type: CartridgeAmmo - type: Sprite - sprite: Objects/Weapons/Guns/Ammunition/Casings/ammo_casing.rsi + sprite: Objects/Weapons/Guns/Ammunition/Casings/capgun_casing.rsi layers: - state: base map: ["enum.AmmoVisualLayers.Base"] diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/cap.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/cap.png index 20465f58e58d7aec5ae16844d854ba50bbb371d7..84ef47a1d6731a7aa29c2f74a1d563d518cec5de 100644 GIT binary patch delta 149 zcmdnXxRG&!N_~Z=i(^QHdvc0I!U2l|-;8^#5=>a!oDoFB6M>44&+pfBim6Td`f$}Z zPcx5~kLUkCzGJ4uil-c#WEei3wXGAI^fif_brLUQ>wy)_Y$hy={Pr=sA2cdfoV2)K rE3@I&+Kg2{nuOeYp@tuDW?*GZx^prw85kH?(j9#r85lP9bN@+X1@buyJR*x382Ao@Fyrz3 z6)8Z$AWs*^kO=o=3D(64B0Wuk23&3jH55c8&j0yuucO0zN}Az-aLrTu6M_MHM;kc3 zCbQ(d+r^a{$akWM!Svt?W{1<-;bQir8UPkfEb++BhYXDRPh2OvZN&;ol`CioQ(@-#qCpL)KPh lH(3KIrp1Z~f`K7Ro>Ou1>VpYDn;1M@{an^LB{VTG005FKEZP77 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Casings/capgun_casing.rsi/base.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Casings/capgun_casing.rsi/base.png new file mode 100644 index 0000000000000000000000000000000000000000..4f59568a181fa28e0d5d936d7adf188d24eae9e2 GIT binary patch literal 165 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJEKe85kO=qW6p4fb76-l=_gE#E zu(&zHh_*Nm5edUT=TA;<3twa;wvH!iQt^R5)qiwUsykA671$#rm9##Ff0vZ#+q$2b yTgO;j>88yj(}3N74PG@|6p-L;gcFPmx%E7Xul%l>18rsSboFyt=akUIzyJUlC^DA- literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Casings/capgun_casing.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Casings/capgun_casing.rsi/meta.json new file mode 100644 index 0000000000..af7e9d94a1 --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Casings/capgun_casing.rsi/meta.json @@ -0,0 +1,17 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/vgstation-coders/vgstation13/blob/0b3ab17dbad632ddf738b63900ef8df1926bba47/icons/obj/ammo.dmi, modified by Topy, recolored by Alekshhh", + "states": [ + { + "name": "base" + }, + { + "name": "base-spent" + } + ] +} From f108763c57b538f21c6a7a230869a09d2cfaea2d Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 24 Jun 2023 15:57:46 -0400 Subject: [PATCH 459/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index e16aad0d09..6286e078d0 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,10 +1,4 @@ Entries: -- author: DawBla - changes: - - {message: Nanotrasen now supplies the station with off-brand wirecutters. Cutting - cables and lattices takes slightly longer., type: Tweak} - id: 3582 - time: '2023-04-29T21:50:32.0000000+00:00' - author: ElectroJr changes: - {message: 'Eye damage now darkens the screen, rather than brightening it.', type: Fix} @@ -2937,3 +2931,8 @@ Entries: with the beaker while it''s being heated.', type: Tweak} id: 4081 time: '2023-06-24T18:09:24.0000000+00:00' +- author: Alekshhh + changes: + - {message: Changed cap gun ammo to look less like real bullets, type: Tweak} + id: 4082 + time: '2023-06-24T19:56:42.0000000+00:00' From 8ce03705449ef8c90d18f48a522bb45e21b4c214 Mon Sep 17 00:00:00 2001 From: Sailor <109166122+Equivocateur@users.noreply.github.com> Date: Sat, 24 Jun 2023 22:57:56 +0300 Subject: [PATCH 460/474] Commit trolling (#17607) --- Resources/Maps/origin.yml | 1800 ++++++++++++++++---------- Resources/Prototypes/Maps/origin.yml | 2 +- 2 files changed, 1091 insertions(+), 711 deletions(-) diff --git a/Resources/Maps/origin.yml b/Resources/Maps/origin.yml index d053f900e0..c6c08c378c 100644 --- a/Resources/Maps/origin.yml +++ b/Resources/Maps/origin.yml @@ -9,6 +9,7 @@ tilemap: 5: FloorAsteroidCoarseSandDug 10: FloorAsteroidSand 11: FloorAsteroidTile + 12: FloorBar 15: FloorBlueCircuit 16: FloorBoxing 18: FloorCarpetClown @@ -117,7 +118,7 @@ entities: tiles: RQAAA18AAABfAAAATwAAAE8AAABfAAAARgAAA0YAAAJGAAABRgAAA18AAABFAAAASwAAA0UAAANfAAAAXwAAABcAAAJfAAAAFwAAABcAAAAXAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAksAAABIAAAAXwAAAF8AAABFAAAAXwAAABcAAAIXAAACFwAAAl8AAABIAAAAXwAAAE8AAABPAAAAXwAAAEUAAANLAAACSAAAABcAAAJfAAAARQAAAV8AAAAXAAADFwAAABcAAABfAAAASAAAAF8AAABPAAAATwAAAF8AAABFAAABSwAAAkgAAABfAAAAXwAAAEUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0sAAABFAAADRQAAA0UAAANFAAACFwAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAUgAAABLAAAASwAAAUsAAAFLAAADRQAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAASwAAAUUAAAJFAAACRQAAAUUAAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAAJFAAABRQAAA0UAAAJfAAAAFwAAABcAAAIXAAAAXwAAAF8AAABFAAABXwAAABcAAAMXAAAAXwAAAEUAAABIAAAASAAAAEgAAABFAAADXwAAAEUAAAJLAAAARQAAAxcAAAAXAAACRQAAA18AAABPAAAATwAAABcAAANFAAABSAAAAEgAAABIAAAARQAAAl8AAABFAAABSwAAAUUAAAIXAAAAFwAAAUUAAAIXAAABXwAAAE8AAABfAAAACwAAAEgAAABIAAAASAAAAEUAAAEXAAACSAAAAEsAAAFFAAAAXwAAABcAAABFAAAAXwAAAF8AAABPAAAAXwAAAEUAAANFAAADRQAAAUUAAAFFAAABXwAAAEgAAABLAAACRQAAAl8AAAAXAAAAFwAAAl8AAABfAAAAXwAAAF8AAABFAAADRQAAAUUAAAJFAAABXwAAAF8AAABIAAAASwAAAkUAAAJfAAAAUQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAA0sAAABFAAACXwAAAEgAAABFAAABRQAAA0UAAAFFAAACRQAAARcAAABFAAACRQAAAEUAAABfAAAARQAAAUUAAABLAAADRQAAAl8AAABfAAAARQAAAUUAAANIAAAARQAAA0gAAAAXAAACSAAAAEgAAABFAAAAXwAAAF8AAABFAAACSwAAAUUAAAFfAAAAXwAAAA== -1,-2: ind: -1,-2 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJLAAABSAAAAEgAAABfAAAAAAAAAF8AAABfAAAASAAAAE8AAABfAAAATwAAAF8AAABfAAAATwAAAF8AAABFAAAASwAAAUUAAAFfAAAAXwAAAAAAAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAAXwAAAF8AAAAXAAABRQAAAksAAAJFAAADXwAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFLAAABRQAAA18AAABfAAAAXwAAAEUAAAJFAAAAFwAAA0UAAAFFAAADRQAAA0gAAABIAAAARQAAAUUAAAFKAAACSgAAA0oAAAFFAAACRQAAAhcAAABLAAAASwAAAxcAAAFLAAACSwAAAEsAAABLAAAASwAAA0sAAABLAAACSgAAAzoAAABKAAADSwAAAksAAAEXAAADRQAAAUUAAAMXAAABRQAAAUUAAANFAAACRQAAAUUAAAFFAAAARQAAAkoAAABKAAABSgAAAkUAAABFAAADFwAAAl8AAABfAAAAXwAAAF8AAAAXAAACXwAAABcAAAIXAAADXwAAAF8AAABFAAACSwAAAEUAAAJfAAAAXwAAAF8AAAAXAAAAXwAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAABfAAAARQAAAEsAAANFAAAAXwAAAAAAAAAAAAAAGwAAAl8AAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAXwAAABcAAAEXAAADFwAAAF8AAAAAAAAAAAAAABsAAANfAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAAF8AAABOAAAATgAAAE4AAAFfAAAAXwAAAF8AAAAbAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAV8AAABfAAAATgAAAU4AAABOAAADFwAAAl8AAABfAAAASAAAAEgAAAAxAAAAMQAAADEAAAAxAAAAXwAAAFAAAABQAAAAXwAAAE4AAAFOAAAATgAAA18AAABfAAAAXwAAAEgAAABfAAAAMQAAADEAAAAxAAAAMQAAAF8AAABfAAAATwAAAF8AAABOAAADTgAAA04AAAJfAAAAXwAAAF8AAABPAAAAXwAAADEAAAAxAAAAMQAAADEAAABfAAAATwAAAE8AAABfAAAATgAAAU4AAAJOAAAAXwAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE4AAABOAAAATgAAAV8AAABfAAAAUQAAAA== + tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJLAAABSAAAAEgAAABfAAAAAAAAAF8AAABfAAAASAAAAE8AAABfAAAATwAAAF8AAABfAAAATwAAAF8AAABFAAAASwAAAUUAAAFfAAAAXwAAAAAAAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAAXwAAAF8AAAAXAAABRQAAAksAAAJFAAADXwAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFLAAABRQAAA18AAABfAAAAXwAAAEUAAAJFAAAAFwAAA0UAAAFFAAADRQAAA0gAAABIAAAARQAAAUUAAAFKAAACSgAAA0oAAAFFAAACRQAAAhcAAABLAAAASwAAAxcAAAFLAAACSwAAAEsAAABLAAAASwAAA0sAAABLAAACSgAAAzoAAABKAAADSwAAAksAAAEXAAADRQAAAUUAAAMXAAABRQAAAUUAAANFAAACRQAAAUUAAAFFAAAARQAAAkoAAABKAAABSgAAAkUAAABFAAADFwAAAl8AAABfAAAAXwAAAF8AAAAXAAACXwAAABcAAAIXAAADXwAAAF8AAABFAAACSwAAAEUAAAJfAAAAXwAAAF8AAAAXAAAAXwAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAABfAAAARQAAAEsAAANFAAAAXwAAAF8AAABfAAAAGwAAAl8AAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAXwAAABcAAAEXAAADFwAAAF8AAABfAAAAXwAAABsAAANfAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAAF8AAABOAAAATgAAAE4AAAFfAAAAXwAAAF8AAAAbAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAV8AAABfAAAATgAAAU4AAABOAAADFwAAAl8AAABfAAAASAAAAEgAAAAxAAAAMQAAADEAAAAxAAAAXwAAAFAAAABQAAAAXwAAAE4AAAFOAAAATgAAA18AAABfAAAAXwAAAEgAAABfAAAAMQAAADEAAAAxAAAAMQAAAF8AAABfAAAATwAAAF8AAABOAAADTgAAA04AAAJfAAAAXwAAAF8AAABPAAAAXwAAADEAAAAxAAAAMQAAADEAAABfAAAATwAAAE8AAABfAAAATgAAAU4AAAJOAAAAXwAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE4AAABOAAAATgAAAV8AAABfAAAAUQAAAA== 0,-2: ind: 0,-2 tiles: AAAAAF8AAAABAAAAAQAAAAEAAAABAAAAAQAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXwAAAEoAAANFAAAARQAAAwAAAABfAAAAAQAAAAEAAAABAAAAAQAAAAEAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAMAAAAAXwAAAAEAAAABAAAAAQAAAAEAAAABAAAAXwAAAFEAAABfAAAAXwAAAE8AAABPAAAATwAAAEUAAAJFAAAAXwAAAF8AAABfAAAAXwAAABcAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAUUAAAFFAAADRQAAAEUAAAJFAAADRQAAAUUAAABFAAADRQAAAkUAAAIXAAACRQAAAEUAAANIAAAARQAAAUUAAANLAAACSwAAA0sAAAA6AAAASwAAAUsAAAI6AAAASwAAAEsAAAFLAAACFwAAAkUAAABFAAADSAAAAEgAAABFAAACRQAAA0UAAABFAAACRQAAAkUAAAFFAAADRQAAAUUAAANFAAAARQAAABcAAANFAAABSAAAAEgAAABFAAACRQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAMAAAAAAAAAAAAAAABfAAAATwAAAE8AAABfAAAAFwAAAxcAAAMXAAABFwAAAxcAAAEXAAAAXwAAAEUAAANFAAADAAAAAAAAAAAAAAAAXwAAAE8AAABfAAAAXwAAABcAAAEXAAADFwAAABcAAAMXAAAAFwAAAV8AAABFAAABRQAAAgAAAAAAAAAAAAAAAF8AAABPAAAAXwAAAF8AAAAXAAADLQAAAC0AAAAtAAAALQAAABcAAAEXAAACRQAAAUUAAAIAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAFwAAAxcAAAIXAAACFwAAARcAAAMXAAADXwAAAEUAAANFAAADAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAABcAAAIXAAACFwAAABcAAAEXAAACFwAAAl8AAAAXAAACFwAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAABfAAAAXwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAADXwAAAF8AAABfAAAAXwAAAF8AAABRAAACXwAAAE8AAABPAAAATwAAAE8AAABPAAAAXwAAAF8AAABFAAAARQAAAw== @@ -165,7 +166,7 @@ entities: tiles: XAAAAV0AAANdAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAFFAAACRQAAAUUAAABFAAABXwAAAFwAAAMXAAABXAAAAF8AAABfAAAAXwAAAE8AAABPAAAAXwAAAEUAAAJFAAADRQAAAUUAAAJFAAABRQAAAxcAAABPAAAATwAAAE8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABFAAADRQAAAkUAAABFAAACRQAAAkUAAAIXAAABXwAAAF8AAABfAAAAXwAAABcAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAABRQAAA0UAAAFFAAACRQAAAUUAAABFAAACFwAAAE0AAANNAAABTQAAAk0AAAFNAAABTQAAABcAAAFFAAACRQAAA0UAAAFFAAABRQAAA0UAAAJFAAAARQAAARcAAAJNAAACTQAAAU0AAAJNAAADTQAAAk0AAAEXAAABRQAAAUUAAAJFAAABRQAAA0UAAABFAAABRQAAA0UAAAAXAAABTQAAAk0AAABNAAABTQAAAE0AAABNAAADFwAAAikAAABFAAAARQAAA0UAAAFFAAABXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAFwAAARcAAAAXAAACFwAAAV8AAAApAAAARQAAAEUAAAJFAAADRQAAAl8AAABFAAADRQAAA0UAAANFAAAARQAAA0UAAANFAAACRQAAAkUAAAFfAAAAXwAAAF8AAAAXAAACFwAAAhcAAANfAAAARQAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAE8AAABFAAAAXwAAAAAAAABfAAAARQAAAEUAAANFAAAAXwAAAEUAAAJPAAAATwAAAE8AAABPAAAATwAAAE8AAABPAAAARQAAABcAAAIAAAAAXwAAAEUAAAJFAAABRQAAAF8AAABFAAACTwAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAEUAAANfAAAAAAAAAF8AAABFAAAARQAAAkUAAAFfAAAARQAAAkUAAAFFAAAARQAAAEUAAABFAAADRQAAAUUAAAFFAAAAXwAAAAAAAABfAAAARQAAAEUAAANFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAABRQAAAVAAAABPAAAATwAAAE8AAABfAAAAXwAAAFAAAABfAAAAXwAAAF8AAABPAAAATwAAAEgAAABIAAAARQAAAUUAAANfAAAAXwAAAF8AAABfAAAAUQAAAFEAAAJfAAAAXwAAAF8AAABfAAAAXwAAAA== 2,2: ind: 2,2 - tiles: XwAAAF8AAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFAAAABFAAAAXwAAAF8AAAAXAAADSAAAAF8AAABfAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABIAAAASAAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAJfAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEgAAABfAAAASAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABIAAAASAAAAEgAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAEgAAABIAAAASAAAAEgAAABRAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEgAAABFAAAASAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABIAAAATwAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABcAAADSAAAAFwAAANcAAABXwAAAF8AAABfAAAARQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXAAAA1wAAAJfAAAARQAAAV8AAABcAAADXwAAAFwAAANFAAACXAAAAl8AAABcAAAAXwAAAEUAAAJFAAAAXwAAAFwAAAFfAAAARQAAAVwAAABFAAACXwAAAF8AAABcAAABXAAAAl8AAABcAAACRQAAAEUAAANFAAADRQAAAV8AAABFAAADXwAAAFwAAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJfAAAAXwAAAFwAAANFAAABXwAAAEUAAANFAAADRQAAAkUAAANfAAAARQAAAEgAAABFAAACXwAAAF8AAABcAAAASAAAAEUAAAFFAAADXwAAAEUAAAFFAAACXwAAAA== + tiles: XwAAAF8AAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFAAAABFAAAAXwAAAF8AAAAXAAADSAAAAF8AAABfAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABIAAAASAAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAJfAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEgAAABfAAAASAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABIAAAASAAAAEgAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAEgAAABIAAAASAAAAEgAAABRAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEgAAABFAAAASAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABIAAAATwAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABcAAADSAAAAFwAAANcAAABDAAAAl8AAABfAAAARQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXAAAA1wAAAIMAAACRQAAAQwAAAJcAAADDAAAAFwAAANFAAACXAAAAl8AAABcAAAAXwAAAEUAAAJFAAAAXwAAAFwAAAEMAAADRQAAAQwAAABFAAACXwAAAF8AAABcAAABXAAAAl8AAABcAAACRQAAAEUAAANFAAADRQAAAV8AAABFAAADXwAAAF8AAAAMAAACXwAAAF8AAABfAAAAXwAAAEUAAAJfAAAADAAAA1wAAANFAAABXwAAAEUAAANFAAADRQAAAkUAAAMMAAAADAAAAAwAAAEMAAAAXwAAAAwAAANcAAAASAAAAEUAAAFFAAADXwAAAEUAAAFFAAACXwAAAA== 1,2: ind: 1,2 tiles: UAAAAEgAAABfAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAJfAAAAXwAAAFAAAABIAAAAXwAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAASAAAAF8AAABeAAAAAAAAAAAAAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEUAAAJFAAAARQAAA18AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAAAASAAAAFAAAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUAAAAEUAAABIAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAEUAAAJFAAACSAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABIAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAFwAAAV8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAAFfAAAAAAAAAAQAAAAEAAACBAAAAQQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAAAXwAAAAAAAAAEAAABBAAAAQQAAAAEAAACBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAFwAAAl8AAABfAAAABAAAAQQAAAAEAAACBAAAAgQAAAJfAAAAFwAAABcAAAIXAAADFwAAARcAAAFfAAAARQAAAUUAAABFAAADXwAAAAQAAAIEAAACBAAAAQQAAAEEAAACXwAAAFAAAABQAAAAUAAAAFAAAABQAAAAFwAAAkUAAABFAAAASAAAABcAAAEEAAAABAAAAAQAAAAEAAACBAAAAV8AAAAXAAACFwAAARcAAAIXAAABFwAAAl8AAABFAAADSAAAAEUAAAFfAAAABAAAAQQAAAAEAAACBAAAAgQAAAEEAAACAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAEUAAAJFAAADXwAAAA== @@ -198,7 +199,7 @@ entities: tiles: XwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAUUAAABFAAACRQAAAEUAAABfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAFwAAA18AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAA1AAAAAXAAADXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAANQAAAAFwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAADUAAAABcAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAFAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAABXwAAAF8AAABfAAAAXwAAAAAAAABeAAAAXgAAAE8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXgAAAAAAAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAATwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAEgAAABIAAAAXwAAAF8AAABPAAAAXwAAAAAAAABeAAAAAAAAAE8AAABfAAAAXwAAAF8AAABPAAAASAAAAF8AAABIAAAAXwAAAE8AAABPAAAAXwAAAF8AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAE8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAATwAAAF8AAABPAAAATwAAAE8AAABIAAAAXwAAAEgAAABfAAAATwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAE8AAABfAAAAXwAAAE8AAABPAAAASAAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABPAAAAXwAAAE8AAABfAAAAXwAAAEgAAABQAAAAUAAAAE8AAABfAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAFAAAABQAAAAUAAAAFAAAABQAAAAXwAAAF8AAABfAAAAXwAAAA== -2,-6: ind: -2,-6 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAABFAAADRQAAA0UAAABFAAADRQAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAABFAAACRQAAAkUAAABFAAACRQAAAEUAAAJFAAADXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABFAAABSAAAAEUAAAJFAAADRQAAAEUAAANIAAAARQAAAl8AAABeAAAAXwAAAAAAAAAAAAAAAAAAAF4AAABfAAAARQAAAEUAAABFAAABRQAAAUUAAAFFAAACRQAAAEUAAABfAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFYAAANWAAACVgAAAVYAAAJWAAABVgAAA1YAAAJWAAABXwAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABWAAADVgAAAlYAAABWAAADVgAAAVYAAAFWAAACVgAAA18AAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAVgAAA1YAAAFWAAACVgAAA1YAAAJWAAAAVgAAAVYAAAFfAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFYAAAJWAAADVgAAA1YAAAJWAAAAVgAAAVYAAABWAAAAXwAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABWAAADVgAAA18AAABFAAAAXwAAAF8AAAAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABfAAAAVgAAAFYAAANfAAAAFwAAAV8AAABeAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAADXwAAABcAAABfAAAAXgAAAF4AAABfAAAAXwAAACYAAAAmAAAAJgAAAFIAAABSAAABUgAAA1IAAANSAAAAUgAAA0UAAAJFAAABXwAAAF8AAABfAAAAXwAAAA== + tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAABFAAADRQAAA0UAAABFAAADRQAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAABFAAACRQAAAkUAAABFAAACRQAAAEUAAAJFAAADXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABFAAABSAAAAEUAAAJFAAADRQAAAEUAAANIAAAARQAAAl8AAABeAAAAXwAAAAAAAAAAAAAAAAAAAF4AAABfAAAARQAAAEUAAABFAAABRQAAAUUAAAFFAAACRQAAAEUAAABfAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFYAAANWAAACVgAAAVYAAAJWAAABVgAAA1YAAAJWAAABXwAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABWAAADVgAAAlYAAABWAAADVgAAAVYAAAFWAAACVgAAA18AAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAVgAAA1YAAAFWAAACVgAAA1YAAAJWAAAAVgAAAVYAAAFfAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFYAAAJWAAADVgAAA1YAAAJWAAAAVgAAAVYAAABWAAAAXwAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABWAAADVgAAA18AAABFAAAAXwAAAF8AAABfAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABfAAAAVgAAAFYAAANfAAAAFwAAAV8AAAA7AAAAOwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAADXwAAABcAAABfAAAAOwAAADsAAABfAAAAXwAAACYAAAAmAAAAJgAAAFIAAABSAAABUgAAA1IAAANSAAAAUgAAA0UAAAJFAAABXwAAAF8AAABfAAAAXwAAAA== 0,-6: ind: 0,-6 tiles: AAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAAQAAAAEAAAABAAAAgQAAAIEAAABBAAAAQQAAAIEAAAABAAAAl4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAEAAAABAAAAQQAAAEEAAAABAAAAQQAAAAEAAACBAAAAgQAAAJeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXQAAAF0AAAFdAAABAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAFwAAAl8AAAAAAAAAAAAAAF8AAABfAAAAXAAAAVwAAABcAAADXAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAABcAAAFfAAAAAAAAAAAAAABfAAAAXQAAAlwAAABKAAAASgAAAkoAAAIAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAAAXAAACXwAAAF8AAABfAAAAXwAAAF0AAAFcAAAASgAAAykAAAApAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAFEAAANPAAAATwAAAF8AAABdAAABXAAAAUoAAAMpAAAAKQAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABQAAAAXwAAAF8AAABfAAAAXQAAA1wAAANKAAAAKQAAACkAAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAUAAAAF8AAAAAAAAAXwAAAF0AAABcAAAASgAAA0oAAANKAAACXwAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAE8AAABfAAAAAAAAAF8AAABfAAAAXAAAAVwAAAJcAAABXAAAAQ== @@ -357,7 +358,7 @@ entities: tiles: SAAAAFEAAAFIAAAAXwAAAF8AAABfAAAAXAAAAzIAAAAyAAAASAAAAF8AAABfAAAAAAAAAAAAAABfAAAAFwAAAVEAAANIAAAAUQAAAl8AAABfAAAAXwAAAFwAAAFcAAACSAAAAFwAAABfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAEgAAABfAAAASAAAAF8AAAAAAAAAAAAAAAAAAABeAAAAUAAAAFAAAABfAAAATwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXgAAAEgAAABIAAAAXwAAAFAAAABQAAAAUAAAAE8AAABfAAAAUAAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABIAAAASAAAAF8AAABQAAAAUAAAAFAAAABPAAAAUQAAAlAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAASAAAAEUAAABfAAAAXwAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAE8AAABfAAAAXwAAAF8AAABIAAAAXwAAAFEAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAASAAAAEgAAABIAAAASAAAAF8AAABQAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABfAAAARQAAAUUAAAFPAAAAXwAAAEUAAANIAAAASAAAAEgAAABPAAAAXwAAAAQAAAFfAAAAXwAAAAQAAAIAAAAAXwAAAEUAAABPAAAATwAAAEgAAABIAAAASAAAAF8AAABFAAADTwAAAF8AAAAEAAACXwAAAF8AAAAEAAACXwAAAF8AAABfAAAAUAAAAF8AAABQAAAAXwAAAFAAAABfAAAAUAAAAF8AAABfAAAABAAAAQQAAAAEAAAABAAAAEUAAAFFAAADUAAAAFEAAANQAAAAUQAAAFAAAABRAAABUAAAAFEAAAFQAAAAUQAAAlEAAAIEAAABBAAAAAQAAAJFAAABXwAAAF8AAABFAAAAXwAAAF8AAABfAAAARQAAAF8AAABQAAAAXwAAAF8AAABIAAAABAAAAV8AAAAEAAAARQAAAEUAAAJQAAAAUQAAAVAAAABRAAAAUAAAAFEAAANQAAAAUQAAAVAAAABRAAACUQAAAAQAAAEEAAACBAAAAA== 2,3: ind: 2,3 - tiles: XwAAAF8AAABfAAAARQAAAEUAAAFFAAADXwAAAEgAAABcAAACRQAAAUUAAAJFAAAAXwAAAEUAAAJFAAACRQAAAwAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAANfAAAAXwAAAF8AAABFAAADRQAAAUUAAAAAAAAAAAAAAAAAAABfAAAARQAAAlwAAAJcAAADRQAAA18AAABcAAACXwAAAAAAAABfAAAAXwAAAF8AAABFAAADAAAAAAAAAAAAAAAAXwAAAF8AAABFAAACRQAAAVwAAABcAAADXAAAA18AAAAAAAAAAAAAAAAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: XwAAAF8AAABfAAAADAAAAAwAAAEMAAADDAAAA18AAABcAAACRQAAAUUAAAJFAAAAXwAAAEUAAAJFAAACRQAAAwAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAANfAAAAXwAAAF8AAABFAAADRQAAAUUAAAAAAAAAAAAAAAAAAABfAAAAXwAAAFwAAAJcAAADXwAAAF8AAABcAAACXwAAAAAAAABfAAAAXwAAAF8AAABFAAADAAAAAAAAAAAAAAAAXwAAAF8AAABFAAACRQAAAVwAAABcAAADXAAAA18AAAAAAAAAAAAAAAAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,3: ind: 3,3 tiles: RQAAAl8AAABfAAAAUAAAAF8AAABQAAAAXwAAAFAAAABfAAAAUAAAAF8AAABfAAAAXwAAAAQAAAIEAAACBAAAAUUAAAFfAAAATwAAAE8AAABPAAAATwAAAEgAAABIAAAAXwAAAEUAAAJPAAAAXwAAAF8AAABfAAAABAAAAgQAAAFFAAAAXwAAAF8AAABPAAAASAAAAE8AAABIAAAARQAAA08AAABPAAAARQAAAl8AAABfAAAAXwAAAF8AAAAEAAACXwAAAF8AAABPAAAAUQAAAEgAAABRAAAAXwAAAEUAAAJFAAAARQAAAk8AAABfAAAABAAAAQQAAAEEAAABBAAAAQAAAABfAAAAXwAAAFEAAAFIAAAASAAAAF8AAABfAAAARQAAAEUAAAFPAAAAXwAAAAQAAAIEAAACBAAAAgQAAAIAAAAAXwAAAF8AAABfAAAARQAAAkUAAAFIAAAARQAAAk8AAABfAAAAXwAAAF8AAAAEAAACBAAAAgQAAAEEAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAABAAAAgQAAAIEAAABBAAAAl4AAAAAAAAAXwAAAF8AAABFAAADXwAAABcAAAFfAAAARQAAAF8AAABfAAAAAAAAAAAAAAAEAAACBAAAAgQAAABeAAAAAAAAAF8AAABPAAAATwAAAEgAAAAXAAACXwAAAEgAAABFAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAFEAAAFFAAACFwAAAUgAAABfAAAAXwAAAF8AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXwAAAEgAAABFAAABRQAAAk8AAABRAAABRQAAA0gAAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABfAAAARQAAA1AAAABQAAAAUAAAAE8AAABfAAAAXwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXwAAAF8AAABQAAAAUAAAAFAAAABfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAA== @@ -6813,7 +6814,8 @@ entities: 11,-3: 0: 65535 11,-2: - 0: 65535 + 2: 1 + 0: 65534 11,-1: 0: 65535 12,4: @@ -7069,7 +7071,8 @@ entities: 3,-14: 0: 65535 3,-13: - 0: 65535 + 2: 1 + 0: 65534 4,-13: 0: 65535 5,-13: @@ -7181,7 +7184,8 @@ entities: -2,-20: 0: 65535 -2,-19: - 0: 65535 + 0: 64511 + 3: 1024 -1,-19: 0: 65535 -8,-20: @@ -7711,7 +7715,7 @@ entities: 11,-15: 0: 65535 12,-16: - 2: 65280 + 4: 65280 0: 242 12,-15: 0: 65535 @@ -7935,10 +7939,10 @@ entities: 0: 65535 -11,-10: 0: 53247 - 2: 12288 + 4: 12288 -11,-9: 0: 56524 - 2: 9011 + 4: 9011 -10,-12: 0: 65535 -10,-11: @@ -7977,20 +7981,20 @@ entities: 0: 65535 -13,-12: 0: 7967 - 3: 224 - 2: 57344 + 5: 224 + 4: 57344 -13,-11: 0: 65311 - 2: 224 + 4: 224 -13,-15: 0: 65523 -13,-14: 0: 7967 - 4: 224 - 5: 57344 + 6: 224 + 7: 57344 -13,-13: 0: 7967 - 2: 57568 + 4: 57568 -10,0: 0: 65535 -9,0: @@ -8083,10 +8087,10 @@ entities: 0: 65535 -12,-10: 0: 23967 - 2: 32768 + 4: 32768 -12,-9: 0: 54551 - 2: 2248 + 4: 2248 -12,-16: 0: 511 -11,-16: @@ -8175,7 +8179,7 @@ entities: 0: 65535 -10,5: 0: 57343 - 6: 8192 + 8: 8192 -10,6: 0: 65535 -10,7: @@ -8207,7 +8211,8 @@ entities: -14,-8: 0: 65535 -14,-7: - 0: 65535 + 0: 65527 + 3: 8 -13,-8: 0: 65535 -13,-7: @@ -8309,7 +8314,8 @@ entities: -14,-23: 0: 65392 -14,-22: - 0: 32767 + 0: 32703 + 3: 64 -14,-21: 0: 65535 -13,-23: @@ -8763,7 +8769,8 @@ entities: -6,15: 0: 65535 -5,14: - 0: 65535 + 3: 257 + 0: 65278 -5,15: 0: 65535 -4,14: @@ -9419,6 +9426,36 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14996 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 27.809448 + - 104.6165 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -9507,6 +9544,7 @@ entities: - type: GasTileOverlay - nextUpdate: 0 type: SpreaderGrid + - type: GridPathfinding - proto: AccordionInstrument entities: - uid: 3 @@ -10462,8 +10500,6 @@ entities: - 864 - 19221 - 19462 - - 14425 - - 14426 - 14812 - 14813 type: DeviceList @@ -11040,35 +11076,53 @@ entities: pos: -44.5,11.5 parent: 2 type: Transform + - links: + - 30718 + type: DeviceLinkSink - uid: 106 components: - pos: -51.5,12.5 parent: 2 type: Transform + - links: + - 30717 + type: DeviceLinkSink - uid: 107 components: - rot: 3.141592653589793 rad pos: -52.5,9.5 parent: 2 type: Transform + - links: + - 30716 + type: DeviceLinkSink - uid: 108 components: - rot: -1.5707963267948966 rad pos: -21.5,30.5 parent: 2 type: Transform + - links: + - 30719 + type: DeviceLinkSink - uid: 109 components: - rot: -1.5707963267948966 rad pos: -17.5,34.5 parent: 2 type: Transform + - links: + - 30721 + type: DeviceLinkSink - uid: 110 components: - rot: -1.5707963267948966 rad pos: -13.5,34.5 parent: 2 type: Transform + - links: + - 30722 + type: DeviceLinkSink - uid: 111 components: - rot: -1.5707963267948966 rad @@ -13714,18 +13768,6 @@ entities: - pos: 57.5,-27.5 parent: 2 type: Transform - - uid: 554 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-68.5 - parent: 2 - type: Transform - - uid: 555 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-68.5 - parent: 2 - type: Transform - uid: 556 components: - pos: -11.5,18.5 @@ -14234,6 +14276,11 @@ entities: - pos: 10.5,-83.5 parent: 2 type: Transform + - uid: 30713 + components: + - pos: -1.5,-24.5 + parent: 2 + type: Transform - proto: AirlockMaintMedLocked entities: - uid: 646 @@ -14956,6 +15003,9 @@ entities: - pos: -25.5,45.5 parent: 2 type: Transform + - links: + - 30734 + type: DeviceLinkSink - uid: 754 components: - name: theatre @@ -14970,6 +15020,9 @@ entities: - pos: -23.5,38.5 parent: 2 type: Transform + - links: + - 30735 + type: DeviceLinkSink - proto: AirlockVirologyGlass entities: - uid: 756 @@ -16470,12 +16523,6 @@ entities: pos: -46.5,63.5 parent: 2 type: Transform - - uid: 1026 - components: - - rot: 3.141592653589793 rad - pos: -46.5,62.5 - parent: 2 - type: Transform - uid: 1027 components: - rot: 3.141592653589793 rad @@ -17355,12 +17402,6 @@ entities: pos: -46.5,63.5 parent: 2 type: Transform - - uid: 1177 - components: - - rot: 3.141592653589793 rad - pos: -46.5,62.5 - parent: 2 - type: Transform - uid: 1178 components: - rot: 3.141592653589793 rad @@ -20093,11 +20134,6 @@ entities: - pos: 78.5,-69.5 parent: 2 type: Transform - - uid: 1682 - components: - - pos: 77.5,-67.5 - parent: 2 - type: Transform - uid: 1683 components: - pos: 77.5,-68.5 @@ -22116,7 +22152,7 @@ entities: - pos: 10.5,47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -224139.5 + - SecondsUntilStateChange: -228232.64 state: Closing type: Door - enabled: False @@ -22139,7 +22175,7 @@ entities: - pos: 10.5,49.5 parent: 2 type: Transform - - SecondsUntilStateChange: -224139.5 + - SecondsUntilStateChange: -228232.64 state: Closing type: Door - enabled: False @@ -22162,7 +22198,7 @@ entities: - pos: 10.5,48.5 parent: 2 type: Transform - - SecondsUntilStateChange: -224139.5 + - SecondsUntilStateChange: -228232.64 state: Closing type: Door - enabled: False @@ -22187,7 +22223,7 @@ entities: - pos: 18.5,-56.5 parent: 2 type: Transform - - SecondsUntilStateChange: -289568.94 + - SecondsUntilStateChange: -293662.06 state: Closing type: Door - enabled: False @@ -22210,7 +22246,7 @@ entities: - pos: 47.5,-51.5 parent: 2 type: Transform - - SecondsUntilStateChange: -158949.7 + - SecondsUntilStateChange: -163042.84 state: Closing type: Door - enabled: False @@ -22233,7 +22269,7 @@ entities: - pos: 47.5,-52.5 parent: 2 type: Transform - - SecondsUntilStateChange: -158949.7 + - SecondsUntilStateChange: -163042.84 state: Closing type: Door - enabled: False @@ -22256,7 +22292,7 @@ entities: - pos: 47.5,-53.5 parent: 2 type: Transform - - SecondsUntilStateChange: -158949.7 + - SecondsUntilStateChange: -163042.84 state: Closing type: Door - enabled: False @@ -22279,7 +22315,7 @@ entities: - pos: 47.5,-54.5 parent: 2 type: Transform - - SecondsUntilStateChange: -158949.7 + - SecondsUntilStateChange: -163042.84 state: Closing type: Door - enabled: False @@ -22302,7 +22338,7 @@ entities: - pos: 52.5,-58.5 parent: 2 type: Transform - - SecondsUntilStateChange: -158937.38 + - SecondsUntilStateChange: -163030.52 state: Closing type: Door - enabled: False @@ -22325,7 +22361,7 @@ entities: - pos: 50.5,-62.5 parent: 2 type: Transform - - SecondsUntilStateChange: -158939.9 + - SecondsUntilStateChange: -163033.05 state: Closing type: Door - enabled: False @@ -22349,7 +22385,7 @@ entities: pos: 55.5,-56.5 parent: 2 type: Transform - - SecondsUntilStateChange: -158888.19 + - SecondsUntilStateChange: -162981.33 state: Closing type: Door - enabled: False @@ -22373,7 +22409,7 @@ entities: pos: 54.5,-56.5 parent: 2 type: Transform - - SecondsUntilStateChange: -158888.19 + - SecondsUntilStateChange: -162981.33 state: Closing type: Door - enabled: False @@ -22396,7 +22432,7 @@ entities: - pos: -45.5,-34.5 parent: 2 type: Transform - - SecondsUntilStateChange: -414417.38 + - SecondsUntilStateChange: -418510.5 state: Closing type: Door - enabled: False @@ -22420,7 +22456,7 @@ entities: pos: -40.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -412767.72 + - SecondsUntilStateChange: -416860.84 state: Closing type: Door - enabled: False @@ -22444,7 +22480,7 @@ entities: pos: -39.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -412767.72 + - SecondsUntilStateChange: -416860.84 state: Closing type: Door - enabled: False @@ -22468,7 +22504,7 @@ entities: pos: -38.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -412767.72 + - SecondsUntilStateChange: -416860.84 state: Closing type: Door - enabled: False @@ -22492,7 +22528,7 @@ entities: pos: -37.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -412767.72 + - SecondsUntilStateChange: -416860.84 state: Closing type: Door - enabled: False @@ -22515,7 +22551,7 @@ entities: - pos: -49.5,19.5 parent: 2 type: Transform - - SecondsUntilStateChange: -292732.1 + - SecondsUntilStateChange: -296825.22 state: Closing type: Door - enabled: False @@ -22538,7 +22574,7 @@ entities: - pos: -49.5,23.5 parent: 2 type: Transform - - SecondsUntilStateChange: -292732.1 + - SecondsUntilStateChange: -296825.22 state: Closing type: Door - enabled: False @@ -22561,7 +22597,7 @@ entities: - pos: 51.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -254890.36 + - SecondsUntilStateChange: -258983.5 state: Closing type: Door - enabled: False @@ -22592,7 +22628,7 @@ entities: - pos: 54.5,45.5 parent: 2 type: Transform - - SecondsUntilStateChange: -254890.36 + - SecondsUntilStateChange: -258983.5 state: Closing type: Door - enabled: False @@ -22619,7 +22655,7 @@ entities: - pos: -52.5,34.5 parent: 2 type: Transform - - SecondsUntilStateChange: -86859.19 + - SecondsUntilStateChange: -90952.32 state: Closing type: Door - enabled: False @@ -22642,7 +22678,7 @@ entities: - pos: -52.5,30.5 parent: 2 type: Transform - - SecondsUntilStateChange: -86831.48 + - SecondsUntilStateChange: -90924.61 state: Closing type: Door - enabled: False @@ -22665,7 +22701,7 @@ entities: - pos: -53.5,23.5 parent: 2 type: Transform - - SecondsUntilStateChange: -86900.125 + - SecondsUntilStateChange: -90993.26 state: Closing type: Door - enabled: False @@ -22688,7 +22724,7 @@ entities: - pos: -53.5,19.5 parent: 2 type: Transform - - SecondsUntilStateChange: -86900.125 + - SecondsUntilStateChange: -90993.26 state: Closing type: Door - enabled: False @@ -22711,7 +22747,7 @@ entities: - pos: 53.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -253148.23 + - SecondsUntilStateChange: -257241.38 state: Closing type: Door - enabled: False @@ -22742,7 +22778,7 @@ entities: - pos: 55.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -255150.62 + - SecondsUntilStateChange: -259243.77 state: Closing type: Door - enabled: False @@ -22769,7 +22805,7 @@ entities: - pos: 50.5,47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -254890.36 + - SecondsUntilStateChange: -258983.5 state: Closing type: Door - enabled: False @@ -22792,7 +22828,7 @@ entities: - pos: 57.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -254890.36 + - SecondsUntilStateChange: -258983.5 state: Closing type: Door - enabled: False @@ -22815,7 +22851,7 @@ entities: - pos: 56.5,47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -254890.36 + - SecondsUntilStateChange: -258983.5 state: Closing type: Door - enabled: False @@ -22843,7 +22879,7 @@ entities: - pos: 53.5,48.5 parent: 2 type: Transform - - SecondsUntilStateChange: -253148.23 + - SecondsUntilStateChange: -257241.38 state: Closing type: Door - enabled: False @@ -22888,7 +22924,7 @@ entities: - pos: 58.5,47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -254890.36 + - SecondsUntilStateChange: -258983.5 state: Closing type: Door - enabled: False @@ -22911,7 +22947,7 @@ entities: - pos: 52.5,45.5 parent: 2 type: Transform - - SecondsUntilStateChange: -255386.02 + - SecondsUntilStateChange: -259479.16 state: Closing type: Door - enabled: False @@ -22938,7 +22974,7 @@ entities: - pos: 53.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -253148.23 + - SecondsUntilStateChange: -257241.38 state: Closing type: Door - enabled: False @@ -22965,7 +23001,7 @@ entities: - pos: 55.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -254890.36 + - SecondsUntilStateChange: -258983.5 state: Closing type: Door - enabled: False @@ -22992,7 +23028,7 @@ entities: - pos: 58.5,45.5 parent: 2 type: Transform - - SecondsUntilStateChange: -254890.36 + - SecondsUntilStateChange: -258983.5 state: Closing type: Door - enabled: False @@ -23015,7 +23051,7 @@ entities: - pos: 57.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -254890.36 + - SecondsUntilStateChange: -258983.5 state: Closing type: Door - enabled: False @@ -23051,7 +23087,7 @@ entities: - pos: 54.5,47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -254890.36 + - SecondsUntilStateChange: -258983.5 state: Closing type: Door - enabled: False @@ -23074,7 +23110,7 @@ entities: - pos: 52.5,47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -254890.36 + - SecondsUntilStateChange: -258983.5 state: Closing type: Door - enabled: False @@ -23097,7 +23133,7 @@ entities: - pos: 51.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -254890.36 + - SecondsUntilStateChange: -258983.5 state: Closing type: Door - enabled: False @@ -23124,7 +23160,7 @@ entities: - pos: 56.5,45.5 parent: 2 type: Transform - - SecondsUntilStateChange: -255244.72 + - SecondsUntilStateChange: -259337.86 state: Closing type: Door - enabled: False @@ -23151,7 +23187,7 @@ entities: - pos: 50.5,45.5 parent: 2 type: Transform - - SecondsUntilStateChange: -254890.36 + - SecondsUntilStateChange: -258983.5 state: Closing type: Door - enabled: False @@ -23178,7 +23214,7 @@ entities: - pos: -18.5,-96.5 parent: 2 type: Transform - - SecondsUntilStateChange: -201264.62 + - SecondsUntilStateChange: -205357.77 state: Closing type: Door - enabled: False @@ -23201,7 +23237,7 @@ entities: - pos: -18.5,-98.5 parent: 2 type: Transform - - SecondsUntilStateChange: -201264.62 + - SecondsUntilStateChange: -205357.77 state: Closing type: Door - enabled: False @@ -23224,7 +23260,7 @@ entities: - pos: -26.5,-96.5 parent: 2 type: Transform - - SecondsUntilStateChange: -201272.95 + - SecondsUntilStateChange: -205366.1 state: Closing type: Door - enabled: False @@ -23247,7 +23283,7 @@ entities: - pos: -26.5,-98.5 parent: 2 type: Transform - - SecondsUntilStateChange: -201272.95 + - SecondsUntilStateChange: -205366.1 state: Closing type: Door - enabled: False @@ -23270,7 +23306,7 @@ entities: - pos: 67.5,-39.5 parent: 2 type: Transform - - SecondsUntilStateChange: -157046.5 + - SecondsUntilStateChange: -161139.64 state: Closing type: Door - enabled: False @@ -23311,7 +23347,7 @@ entities: pos: 24.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -219127.53 + - SecondsUntilStateChange: -223220.67 state: Opening type: Door - enabled: True @@ -23335,7 +23371,7 @@ entities: pos: 23.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -219127.53 + - SecondsUntilStateChange: -223220.67 state: Opening type: Door - enabled: True @@ -23359,7 +23395,7 @@ entities: pos: 25.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -219127.53 + - SecondsUntilStateChange: -223220.67 state: Opening type: Door - enabled: True @@ -23383,7 +23419,7 @@ entities: pos: 26.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -219127.53 + - SecondsUntilStateChange: -223220.67 state: Opening type: Door - enabled: True @@ -23407,7 +23443,7 @@ entities: pos: 24.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -219127.53 + - SecondsUntilStateChange: -223220.67 state: Opening type: Door - enabled: True @@ -23431,7 +23467,7 @@ entities: pos: 23.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -219127.53 + - SecondsUntilStateChange: -223220.67 state: Opening type: Door - enabled: True @@ -23455,7 +23491,7 @@ entities: pos: 25.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -219127.53 + - SecondsUntilStateChange: -223220.67 state: Opening type: Door - enabled: True @@ -23479,7 +23515,7 @@ entities: pos: 26.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -219127.53 + - SecondsUntilStateChange: -223220.67 state: Opening type: Door - enabled: True @@ -23503,7 +23539,7 @@ entities: pos: 22.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -219127.53 + - SecondsUntilStateChange: -223220.67 state: Opening type: Door - enabled: True @@ -23527,7 +23563,7 @@ entities: pos: 22.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -219127.53 + - SecondsUntilStateChange: -223220.67 state: Opening type: Door - enabled: True @@ -23550,7 +23586,7 @@ entities: - pos: -8.5,-91.5 parent: 2 type: Transform - - SecondsUntilStateChange: -203021.61 + - SecondsUntilStateChange: -207114.75 state: Opening type: Door - enabled: True @@ -23577,7 +23613,7 @@ entities: - pos: -8.5,-92.5 parent: 2 type: Transform - - SecondsUntilStateChange: -203021.61 + - SecondsUntilStateChange: -207114.75 state: Opening type: Door - enabled: True @@ -23604,7 +23640,7 @@ entities: - pos: -8.5,-93.5 parent: 2 type: Transform - - SecondsUntilStateChange: -203021.61 + - SecondsUntilStateChange: -207114.75 state: Opening type: Door - enabled: True @@ -23631,7 +23667,7 @@ entities: - pos: -6.5,-91.5 parent: 2 type: Transform - - SecondsUntilStateChange: -203021.61 + - SecondsUntilStateChange: -207114.75 state: Opening type: Door - enabled: True @@ -23658,7 +23694,7 @@ entities: - pos: -6.5,-90.5 parent: 2 type: Transform - - SecondsUntilStateChange: -203021.61 + - SecondsUntilStateChange: -207114.75 state: Opening type: Door - enabled: True @@ -23685,7 +23721,7 @@ entities: - pos: -6.5,-92.5 parent: 2 type: Transform - - SecondsUntilStateChange: -203021.61 + - SecondsUntilStateChange: -207114.75 state: Opening type: Door - enabled: True @@ -23712,7 +23748,7 @@ entities: - pos: -6.5,-93.5 parent: 2 type: Transform - - SecondsUntilStateChange: -203021.61 + - SecondsUntilStateChange: -207114.75 state: Opening type: Door - enabled: True @@ -23739,7 +23775,7 @@ entities: - pos: -8.5,-90.5 parent: 2 type: Transform - - SecondsUntilStateChange: -203021.61 + - SecondsUntilStateChange: -207114.75 state: Opening type: Door - enabled: True @@ -23768,7 +23804,7 @@ entities: - pos: -11.5,-11.5 parent: 2 type: Transform - - SecondsUntilStateChange: -47972.086 + - SecondsUntilStateChange: -52065.223 state: Closing type: Door - enabled: False @@ -23793,7 +23829,7 @@ entities: - pos: -56.5,-11.5 parent: 2 type: Transform - - SecondsUntilStateChange: -330697.56 + - SecondsUntilStateChange: -334790.7 state: Opening type: Door - enabled: True @@ -23816,7 +23852,7 @@ entities: - pos: -56.5,-12.5 parent: 2 type: Transform - - SecondsUntilStateChange: -330697.56 + - SecondsUntilStateChange: -334790.7 state: Opening type: Door - enabled: True @@ -23839,7 +23875,7 @@ entities: - pos: -56.5,-13.5 parent: 2 type: Transform - - SecondsUntilStateChange: -330697.56 + - SecondsUntilStateChange: -334790.7 state: Opening type: Door - enabled: True @@ -23862,7 +23898,7 @@ entities: - pos: -56.5,-14.5 parent: 2 type: Transform - - SecondsUntilStateChange: -330697.56 + - SecondsUntilStateChange: -334790.7 state: Opening type: Door - enabled: True @@ -23885,7 +23921,7 @@ entities: - pos: -56.5,-15.5 parent: 2 type: Transform - - SecondsUntilStateChange: -330697.56 + - SecondsUntilStateChange: -334790.7 state: Opening type: Door - enabled: True @@ -23909,7 +23945,7 @@ entities: pos: -64.5,-22.5 parent: 2 type: Transform - - SecondsUntilStateChange: -99895.17 + - SecondsUntilStateChange: -103988.305 state: Opening type: Door - enabled: True @@ -23933,7 +23969,7 @@ entities: pos: -65.5,-22.5 parent: 2 type: Transform - - SecondsUntilStateChange: -99895.17 + - SecondsUntilStateChange: -103988.305 state: Opening type: Door - enabled: True @@ -23957,7 +23993,7 @@ entities: pos: -66.5,-22.5 parent: 2 type: Transform - - SecondsUntilStateChange: -99895.17 + - SecondsUntilStateChange: -103988.305 state: Opening type: Door - enabled: True @@ -23981,7 +24017,7 @@ entities: pos: -67.5,-22.5 parent: 2 type: Transform - - SecondsUntilStateChange: -99895.17 + - SecondsUntilStateChange: -103988.305 state: Opening type: Door - enabled: True @@ -24005,7 +24041,7 @@ entities: pos: -68.5,-22.5 parent: 2 type: Transform - - SecondsUntilStateChange: -99895.17 + - SecondsUntilStateChange: -103988.305 state: Opening type: Door - enabled: True @@ -45874,8 +45910,6 @@ entities: - pos: 39.5,47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6165 components: - pos: 43.5,45.5 @@ -45944,8 +45978,6 @@ entities: - pos: 38.5,44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6177 components: - pos: 38.5,43.5 @@ -45956,8 +45988,6 @@ entities: - pos: 38.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6179 components: - pos: 38.5,49.5 @@ -45975,6 +46005,8 @@ entities: - pos: 39.5,50.5 parent: 2 type: Transform + - enabled: True + type: AmbientSound - uid: 6182 components: - pos: 39.5,51.5 @@ -46012,13 +46044,13 @@ entities: - pos: 34.5,46.5 parent: 2 type: Transform + - enabled: True + type: AmbientSound - uid: 6189 components: - pos: 34.5,47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6190 components: - pos: 35.5,44.5 @@ -46369,8 +46401,6 @@ entities: - pos: 33.5,45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6256 components: - pos: 32.5,45.5 @@ -60980,6 +61010,30 @@ entities: - pos: 4.5,-23.5 parent: 2 type: Transform + - uid: 30729 + components: + - pos: 31.5,-16.5 + parent: 2 + type: Transform + - uid: 30731 + components: + - pos: 31.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 30732 + components: + - pos: 33.5,-16.5 + parent: 2 + type: Transform + - uid: 30733 + components: + - pos: 33.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound - proto: CableHVStack entities: - uid: 8839 @@ -75452,6 +75506,21 @@ entities: - pos: 71.5,-25.5 parent: 2 type: Transform + - uid: 30725 + components: + - pos: -1.5,-23.5 + parent: 2 + type: Transform + - uid: 30727 + components: + - pos: -1.5,-22.5 + parent: 2 + type: Transform + - uid: 30728 + components: + - pos: -1.5,-21.5 + parent: 2 + type: Transform - proto: Cautery entities: - uid: 11469 @@ -77749,6 +77818,11 @@ entities: pos: 2.5,-35.5 parent: 2 type: Transform + - uid: 30720 + components: + - pos: -23.5,30.5 + parent: 2 + type: Transform - proto: CheapLighter entities: - uid: 11872 @@ -77908,6 +77982,22 @@ entities: pos: 2.361197,23.616985 parent: 2 type: Transform +- proto: CigaretteSyndicate + entities: + - uid: 21039 + components: + - pos: -16.561203,-35.338726 + parent: 2 + type: Transform + - nextSound: 3468.0162655 + type: EmitSoundOnCollide + - uid: 25338 + components: + - pos: -16.623703,-35.4481 + parent: 2 + type: Transform + - nextSound: 3465.6331167 + type: EmitSoundOnCollide - proto: CigarGold entities: - uid: 11898 @@ -77928,6 +78018,15 @@ entities: - pos: 61.545517,-1.3427625 parent: 2 type: Transform +- proto: CigPackBlack + entities: + - uid: 20779 + components: + - pos: 37.5,46.5 + parent: 2 + type: Transform + - nextSound: 3375.5983482 + type: EmitSoundOnCollide - proto: CigPackBlue entities: - uid: 11901 @@ -79745,8 +79844,8 @@ entities: immutable: False temperature: 293.14957 moles: - - 8.402782 - - 31.610466 + - 2.418213 + - 9.097087 - 0 - 0 - 0 @@ -79765,6 +79864,24 @@ entities: - pos: 12.5,-51.5 parent: 2 type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage - uid: 11993 components: - pos: 6.5,-9.5 @@ -79798,8 +79915,8 @@ entities: immutable: False temperature: 293.14957 moles: - - 8.402782 - - 31.610466 + - 2.418213 + - 9.097087 - 0 - 0 - 0 @@ -79814,121 +79931,121 @@ entities: - uid: 11995 components: - pos: -19.5,58.5 - parent: 2 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 11996 - components: - - pos: 16.5,-72.5 - parent: 2 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 11997 - components: - - pos: -15.5,-12.5 - parent: 2 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 11998 - components: - - pos: -54.5,-66.5 - parent: 2 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 11999 - components: - - pos: -37.5,-67.5 - parent: 2 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 12000 - components: - - pos: -29.5,-57.5 + parent: 2 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.418213 + - 9.097087 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 11996 + components: + - pos: 16.5,-72.5 + parent: 2 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 8.402782 + - 31.610466 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 11997 + components: + - pos: -15.5,-12.5 + parent: 2 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 8.402782 + - 31.610466 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 11998 + components: + - pos: -54.5,-66.5 + parent: 2 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 8.402782 + - 31.610466 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 11999 + components: + - pos: -37.5,-67.5 + parent: 2 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 8.402782 + - 31.610466 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 12000 + components: + - pos: -29.5,-57.5 parent: 2 type: Transform - air: @@ -80555,8 +80672,8 @@ entities: immutable: False temperature: 293.14957 moles: - - 8.402782 - - 31.610466 + - 2.418213 + - 9.097087 - 0 - 0 - 0 @@ -80582,6 +80699,27 @@ entities: - pos: 30.440884,-27.760664 parent: 2 type: Transform +- proto: ClothingBackpackDuffelClown + entities: + - uid: 14425 + components: + - pos: 53.512966,60.63899 + parent: 2 + type: Transform + - containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 12131 + - 14426 + - 14974 + - 20497 + - 20508 + type: ContainerContainer + - nextSound: 2749.2522682 + type: EmitSoundOnCollide + - type: ItemCooldown - proto: ClothingBackpackDuffelMedical entities: - uid: 12032 @@ -80613,6 +80751,24 @@ entities: - pos: -3.4849787,-66.40156 parent: 2 type: Transform + - uid: 25283 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-35.5 + parent: 2 + type: Transform + - nextSound: 3450.966902 + type: EmitSoundOnCollide +- proto: ClothingBackpackDuffelSyndicate + entities: + - uid: 1026 + components: + - pos: -46.5,62.5 + parent: 2 + type: Transform + - nextSound: 1814.7485706 + type: EmitSoundOnCollide + - type: ItemCooldown - proto: ClothingBackpackMedical entities: - uid: 12037 @@ -80650,19 +80806,16 @@ entities: type: Transform - proto: ClothingBeltUtility entities: - - uid: 12042 - components: - - pos: 47.423275,49.588562 - parent: 2 - type: Transform - - uid: 12043 + - uid: 10243 components: - - pos: -34.379585,-20.389349 + - pos: -34.5,-20.5 parent: 2 type: Transform - - uid: 12044 + - nextSound: 3554.2416329 + type: EmitSoundOnCollide + - uid: 12042 components: - - pos: -46.524574,-30.537275 + - pos: 47.423275,49.588562 parent: 2 type: Transform - uid: 12045 @@ -80670,11 +80823,6 @@ entities: - pos: -3.42201,34.480587 parent: 2 type: Transform - - uid: 12046 - components: - - pos: -4.6075964,19.605381 - parent: 2 - type: Transform - proto: ClothingBeltUtilityFilled entities: - uid: 12047 @@ -80684,7 +80832,7 @@ entities: type: Transform - uid: 12048 components: - - pos: -23.834581,-24.4156 + - pos: -25.692995,-19.449156 parent: 2 type: Transform - uid: 12049 @@ -80809,14 +80957,11 @@ entities: entities: - uid: 12067 components: - - pos: -25.384478,-19.487955 - parent: 2 - type: Transform - - uid: 12068 - components: - - pos: -27.461733,-11.246322 + - pos: -24.5,-24.5 parent: 2 type: Transform + - nextSound: 1642.8410666 + type: EmitSoundOnCollide - uid: 12069 components: - pos: -28.54305,-20.538445 @@ -80829,9 +80974,11 @@ entities: type: Transform - uid: 12071 components: - - pos: -25.966612,-52.421177 + - pos: 30.5,46.5 parent: 2 type: Transform + - nextSound: 2118.7360955 + type: EmitSoundOnCollide - uid: 12072 components: - pos: 54.45896,60.637554 @@ -80842,6 +80989,13 @@ entities: - pos: 22.516106,51.47508 parent: 2 type: Transform + - uid: 12075 + components: + - pos: 70.39679,-66.38246 + parent: 2 + type: Transform + - nextSound: 3616.8091904 + type: EmitSoundOnCollide - proto: ClothingHandsGlovesColorYellowBudget entities: - uid: 12074 @@ -80850,16 +81004,15 @@ entities: pos: 71.23901,-43.34667 parent: 2 type: Transform - - uid: 12075 - components: - - pos: 30.46846,46.718662 - parent: 2 - type: Transform - - uid: 12076 +- proto: ClothingHandsGlovesCombat + entities: + - uid: 12486 components: - - pos: 70.37232,-66.37016 + - pos: -37.5,-32.5 parent: 2 type: Transform + - nextSound: 2266.8209735 + type: EmitSoundOnCollide - proto: ClothingHandsGlovesLatex entities: - uid: 12077 @@ -81227,9 +81380,12 @@ entities: entities: - uid: 12131 components: - - pos: 52.5169,59.485374 - parent: 2 + - flags: InContainer + type: MetaData + - parent: 14425 type: Transform + - canCollide: False + type: Physics - proto: ClothingMaskFox entities: - uid: 12132 @@ -81691,6 +81847,18 @@ entities: type: Transform - nextSound: 52.6901865 type: EmitSoundOnCollide +- proto: ClothingShoesClown + entities: + - uid: 14974 + components: + - flags: InContainer + type: MetaData + - parent: 14425 + type: Transform + - nextSound: 2767.7356958 + type: EmitSoundOnCollide + - canCollide: False + type: Physics - proto: ClothingShoesColorWhite entities: - uid: 12195 @@ -81719,6 +81887,30 @@ entities: - pos: 15.423054,34.567764 parent: 2 type: Transform +- proto: ClothingShoesSwat + entities: + - uid: 24074 + components: + - flags: InContainer + type: MetaData + - parent: 20785 + type: Transform + - nextSound: 251.3720924 + type: EmitSoundOnCollide + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 24416 + components: + - flags: InContainer + type: MetaData + - parent: 20785 + type: Transform + - nextSound: 250.1046279 + type: EmitSoundOnCollide + - canCollide: False + type: Physics + - type: InsideEntityStorage - proto: ClothingUnderSocksBee entities: - uid: 12199 @@ -81726,6 +81918,17 @@ entities: - pos: 62.522377,-58.450882 parent: 2 type: Transform +- proto: ClothingUniformJumpskirtCentcomFormalDress + entities: + - uid: 1682 + components: + - pos: 77.5,-67.5 + parent: 2 + type: Transform + - nextUpdate: 3658.476252 + type: SuitSensor + - nextSound: 3658.676252 + type: EmitSoundOnCollide - proto: ClothingUniformJumpskirtJanimaidmini entities: - uid: 12200 @@ -81737,6 +81940,44 @@ entities: type: SuitSensor - nextSound: 265.3189424 type: EmitSoundOnCollide +- proto: ClothingUniformJumpskirtOfLife + entities: + - uid: 12203 + components: + - pos: 62.5,53.5 + parent: 2 + type: Transform + - nextUpdate: 1145.1007402 + type: SuitSensor + - nextSound: 1145.3007402 + type: EmitSoundOnCollide +- proto: ClothingUniformJumpskirtOperative + entities: + - uid: 23934 + components: + - flags: InContainer + type: MetaData + - parent: 20785 + type: Transform + - nextSound: 258.0213778 + type: EmitSoundOnCollide + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitClown + entities: + - uid: 14426 + components: + - flags: InContainer + type: MetaData + - parent: 14425 + type: Transform + - nextUpdate: 2763.8195671 + type: SuitSensor + - nextSound: 2764.0195671 + type: EmitSoundOnCollide + - canCollide: False + type: Physics - proto: ClothingUniformJumpsuitCossack entities: - uid: 12201 @@ -81751,13 +81992,6 @@ entities: - pos: -15.484091,-96.41976 parent: 2 type: Transform -- proto: ClothingUniformJumpsuitJesterAlt - entities: - - uid: 12203 - components: - - pos: 62.426746,53.491627 - parent: 2 - type: Transform - proto: ClothingUniformJumpsuitMonasticRobeDark entities: - uid: 12204 @@ -81817,13 +82051,19 @@ entities: - pos: -33.11785,8.55969 parent: 2 type: Transform -- proto: ClothingUniformJumpsuitPsychologist +- proto: ClothingUniformJumpsuitOperative entities: - - uid: 12215 + - uid: 23913 components: - - pos: -14.569605,-39.387264 - parent: 2 + - flags: InContainer + type: MetaData + - parent: 20785 type: Transform + - nextSound: 260.7703208 + type: EmitSoundOnCollide + - canCollide: False + type: Physics + - type: InsideEntityStorage - proto: ClothingUniformJumpsuitReporter entities: - uid: 12216 @@ -81838,6 +82078,20 @@ entities: - pos: -3.4738498,52.42943 parent: 2 type: Transform +- proto: CluwneHorn + entities: + - uid: 20497 + components: + - flags: InContainer + type: MetaData + - parent: 14425 + type: Transform + - nextAttack: 2789.4522867 + type: MeleeWeapon + - nextSound: 2789.6522867 + type: EmitSoundOnCollide + - canCollide: False + type: Physics - proto: ComfyChair entities: - uid: 12218 @@ -84506,6 +84760,13 @@ entities: pos: 3.5,-35.5 parent: 2 type: Transform +- proto: CrateAirlockKit + entities: + - uid: 12487 + components: + - pos: 44.5,-7.5 + parent: 2 + type: Transform - proto: CrateArtifactContainer entities: - uid: 12470 @@ -84763,36 +85024,6 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12486 - components: - - pos: -36.5,-63.5 - parent: 2 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: CrateEngineeringGear - entities: - - uid: 12487 - components: - - pos: 44.5,-7.5 - parent: 2 - type: Transform - proto: CrateFilledSpawner entities: - uid: 12488 @@ -85233,6 +85464,11 @@ entities: - pos: -56.5,-62.5 parent: 2 type: Transform + - uid: 30724 + components: + - pos: -18.5,-81.5 + parent: 2 + type: Transform - proto: d10Dice entities: - uid: 12526 @@ -94217,6 +94453,17 @@ entities: - pos: -9.380106,-35.52635 parent: 2 type: Transform +- proto: DrinkWhiskeyBottleFull + entities: + - uid: 12215 + components: + - pos: -14.464556,-39.286304 + parent: 2 + type: Transform + - nextAttack: 1699.2110034 + type: MeleeWeapon + - nextSound: 1699.4110034 + type: EmitSoundOnCollide - proto: DrinkWhiskeyGlass entities: - uid: 14096 @@ -97246,16 +97493,6 @@ entities: - pos: -49.5,-6.5 parent: 2 type: Transform - - uid: 14425 - components: - - pos: -41.5,-69.5 - parent: 2 - type: Transform - - uid: 14426 - components: - - pos: -42.5,-69.5 - parent: 2 - type: Transform - uid: 14427 components: - pos: -51.5,-63.5 @@ -99706,6 +99943,17 @@ entities: type: Transform - fixtures: {} type: Fixtures +- proto: FloorTileItemBar + entities: + - uid: 30730 + components: + - pos: 37.575134,45.699768 + parent: 2 + type: Transform + - count: 30 + type: Stack + - nextSound: 1223.3695554 + type: EmitSoundOnCollide - proto: FloorTileItemFreezer entities: - uid: 14888 @@ -100028,6 +100276,15 @@ entities: - pos: -23.359459,-71.33451 parent: 2 type: Transform +- proto: FoodMealFriesCarrot + entities: + - uid: 21416 + components: + - pos: -21.429913,47.709663 + parent: 2 + type: Transform + - nextSound: 2838.6900813 + type: EmitSoundOnCollide - proto: FoodMealPotatoYaki entities: - uid: 14937 @@ -100279,11 +100536,6 @@ entities: - pos: -35.42214,-48.770245 parent: 2 type: Transform - - uid: 14974 - components: - - pos: -37.231743,-32.468967 - parent: 2 - type: Transform - uid: 14975 components: - pos: 4.481148,-75.45175 @@ -123801,8 +124053,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17957 components: - rot: -1.5707963267948966 rad @@ -125391,8 +125641,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18164 components: - rot: -1.5707963267948966 rad @@ -125435,8 +125683,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18169 components: - rot: -1.5707963267948966 rad @@ -125587,8 +125833,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18187 components: - rot: 1.5707963267948966 rad @@ -125605,8 +125849,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18189 components: - rot: 1.5707963267948966 rad @@ -125623,8 +125865,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18191 components: - rot: 1.5707963267948966 rad @@ -142242,11 +142482,6 @@ entities: - pos: -15.367192,-23.36869 parent: 2 type: Transform - - uid: 20497 - components: - - pos: -16.022211,23.522974 - parent: 2 - type: Transform - proto: HandheldHealthAnalyzer entities: - uid: 20498 @@ -142304,15 +142539,6 @@ entities: - pos: 0.93736494,-5.096624 parent: 2 type: Transform -- proto: HappyHonkCluwne - entities: - - uid: 20508 - components: - - pos: -21.391912,47.73093 - parent: 2 - type: Transform - - nextSound: 713.0907404 - type: EmitSoundOnCollide - proto: HappyHonkNukie entities: - uid: 20509 @@ -142422,7 +142648,7 @@ entities: - pos: 60.5,21.5 parent: 2 type: Transform - - SecondsUntilStateChange: -492088.1 + - SecondsUntilStateChange: -496181.22 state: Opening type: Door - uid: 20526 @@ -142453,7 +142679,7 @@ entities: - pos: 3.5,-62.5 parent: 2 type: Transform - - SecondsUntilStateChange: -566649.7 + - SecondsUntilStateChange: -570742.8 state: Closing type: Door - uid: 20531 @@ -144788,29 +145014,6 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20779 - components: - - pos: -14.5,23.5 - parent: 2 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - proto: LockerSecurityFilled entities: - uid: 20780 @@ -144874,6 +145077,11 @@ entities: - pos: -1.5,21.5 parent: 2 type: Transform + - uid: 22535 + components: + - pos: -14.5,23.5 + parent: 2 + type: Transform - proto: LockerSyndicatePersonal entities: - uid: 20785 @@ -144886,8 +145094,8 @@ entities: immutable: False temperature: 293.14957 moles: - - 8.402782 - - 31.610466 + - 2.418213 + - 9.097087 - 0 - 0 - 0 @@ -144899,6 +145107,20 @@ entities: - 0 - 0 type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 23913 + - 23934 + - 24074 + - 24416 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer - proto: LockerWallMedicalDoctorFilled entities: - uid: 20786 @@ -145027,6 +145249,17 @@ entities: - 0 - 0 type: EntityStorage +- proto: Machete + entities: + - uid: 30336 + components: + - pos: -18.481012,-81.49154 + parent: 2 + type: Transform + - nextAttack: 597.4700483 + type: MeleeWeapon + - nextSound: 597.6700483 + type: EmitSoundOnCollide - proto: MachineAnomalyGenerator entities: - uid: 20792 @@ -146323,7 +146556,7 @@ entities: type: Transform - uid: 20967 components: - - pos: -24.521326,-24.45921 + - pos: -25.14612,-19.37103 parent: 2 type: Transform - uid: 20968 @@ -146746,13 +146979,6 @@ entities: - pos: 13.5,-9.5 parent: 2 type: Transform -- proto: PaintingMoony - entities: - - uid: 21039 - components: - - pos: -15.5,-36.5 - parent: 2 - type: Transform - proto: PaintingNightHawks entities: - uid: 21040 @@ -148208,6 +148434,15 @@ entities: type: Transform - proto: PlushieHampter entities: + - uid: 12043 + components: + - pos: -46.5,-30.5 + parent: 2 + type: Transform + - nextAttack: 3570.0761203 + type: MeleeWeapon + - nextSound: 3570.2761203 + type: EmitSoundOnCollide - uid: 21283 components: - pos: 2.519814,7.511129 @@ -148219,6 +148454,15 @@ entities: type: EmitSoundOnCollide - proto: PlushieLizard entities: + - uid: 12044 + components: + - pos: -4.5732803,19.574839 + parent: 2 + type: Transform + - nextAttack: 3720.7294155 + type: MeleeWeapon + - nextSound: 3720.9294155 + type: EmitSoundOnCollide - uid: 21284 components: - pos: -69.52961,-42.46661 @@ -148276,6 +148520,22 @@ entities: - pos: -44.508965,16.421295 parent: 2 type: Transform + - uid: 24954 + components: + - desc: It eerily feels... cute? + name: Cult shark plushie + type: MetaData + - pos: -17.592062,-82.49987 + parent: 2 + type: Transform + - nextSound: 3794.5622334 + type: EmitSoundOnCollide + - nextAttack: 3794.3622334 + type: MeleeWeapon + - radius: 2 + energy: 0.4 + color: '#FC7CC7FF' + type: PointLight - proto: PlushieSlime entities: - uid: 21293 @@ -148312,17 +148572,6 @@ entities: - pos: -68.482735,-42.46661 parent: 2 type: Transform -- proto: PlushieXeno - entities: - - uid: 21299 - components: - - pos: -25.59123,-6.437059 - parent: 2 - type: Transform - - nextAttack: 366.3786955 - type: MeleeWeapon - - nextSound: 366.5786955 - type: EmitSoundOnCollide - proto: PortableFlasher entities: - uid: 21300 @@ -148730,6 +148979,11 @@ entities: - pos: -44.5,-74.5 parent: 2 type: Transform + - uid: 24955 + components: + - pos: 30.5,48.5 + parent: 2 + type: Transform - proto: PosterContrabandTheGriffin entities: - uid: 21366 @@ -148975,6 +149229,18 @@ entities: - pos: 40.5,49.5 parent: 2 type: Transform + - uid: 24953 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-36.5 + parent: 2 + type: Transform + - uid: 24962 + components: + - rot: 3.141592653589793 rad + pos: -47.5,9.5 + parent: 2 + type: Transform - proto: PosterLegitObey entities: - uid: 21404 @@ -149050,13 +149316,6 @@ entities: - pos: -17.5,27.5 parent: 2 type: Transform -- proto: PosterLegitTheOwl - entities: - - uid: 21416 - components: - - pos: 30.5,48.5 - parent: 2 - type: Transform - proto: PosterLegitWalk entities: - uid: 21417 @@ -156759,11 +157018,6 @@ entities: - pos: 41.5,-65.5 parent: 2 type: Transform - - uid: 22535 - components: - - pos: -47.5,9.5 - parent: 2 - type: Transform - uid: 22536 components: - pos: -44.5,12.5 @@ -160499,6 +160753,11 @@ entities: pos: -45.5,45.5 parent: 2 type: Transform + - uid: 30714 + components: + - pos: -48.5,-74.5 + parent: 2 + type: Transform - proto: ResearchAndDevelopmentServer entities: - uid: 23230 @@ -160582,14 +160841,6 @@ entities: type: Transform - proto: Saw entities: - - uid: 10243 - components: - - rot: 1.5707963267948966 rad - pos: -14.461851,-35.4618 - parent: 2 - type: Transform - - nextSound: 460.6274884 - type: EmitSoundOnCollide - uid: 23242 components: - pos: 0.4741887,-64.29508 @@ -160970,7 +161221,7 @@ entities: type: Occluder - canCollide: False type: Physics - - SecondsUntilStateChange: -102172.33 + - SecondsUntilStateChange: -106265.46 state: Closing type: Door - airBlocked: False @@ -160994,7 +161245,7 @@ entities: type: Occluder - canCollide: False type: Physics - - SecondsUntilStateChange: -102172.33 + - SecondsUntilStateChange: -106265.46 state: Closing type: Door - airBlocked: False @@ -161016,7 +161267,7 @@ entities: pos: 15.5,13.5 parent: 2 type: Transform - - SecondsUntilStateChange: -83227.414 + - SecondsUntilStateChange: -87320.55 state: Opening type: Door - canCollide: True @@ -161045,7 +161296,7 @@ entities: - pos: -32.5,32.5 parent: 2 type: Transform - - SecondsUntilStateChange: -112785.805 + - SecondsUntilStateChange: -116878.94 state: Opening type: Door - canCollide: True @@ -161068,7 +161319,7 @@ entities: - pos: 37.5,-0.5 parent: 2 type: Transform - - SecondsUntilStateChange: -20875.664 + - SecondsUntilStateChange: -24968.799 state: Opening type: Door - canCollide: True @@ -161106,7 +161357,7 @@ entities: pos: 15.5,11.5 parent: 2 type: Transform - - SecondsUntilStateChange: -83227.414 + - SecondsUntilStateChange: -87320.55 state: Opening type: Door - canCollide: True @@ -161130,7 +161381,7 @@ entities: pos: 15.5,10.5 parent: 2 type: Transform - - SecondsUntilStateChange: -83227.414 + - SecondsUntilStateChange: -87320.55 state: Opening type: Door - canCollide: True @@ -161154,7 +161405,7 @@ entities: pos: -2.5,-5.5 parent: 2 type: Transform - - SecondsUntilStateChange: -62896.58 + - SecondsUntilStateChange: -66989.71 state: Opening type: Door - canCollide: True @@ -161177,7 +161428,7 @@ entities: - pos: -0.5,-2.5 parent: 2 type: Transform - - SecondsUntilStateChange: -62896.58 + - SecondsUntilStateChange: -66989.71 state: Opening type: Door - canCollide: True @@ -161200,7 +161451,7 @@ entities: - pos: 18.5,15.5 parent: 2 type: Transform - - SecondsUntilStateChange: -83227.414 + - SecondsUntilStateChange: -87320.55 state: Opening type: Door - canCollide: True @@ -161223,7 +161474,7 @@ entities: - pos: 17.5,15.5 parent: 2 type: Transform - - SecondsUntilStateChange: -83227.414 + - SecondsUntilStateChange: -87320.55 state: Opening type: Door - canCollide: True @@ -161261,7 +161512,7 @@ entities: pos: 48.5,6.5 parent: 2 type: Transform - - SecondsUntilStateChange: -18421.492 + - SecondsUntilStateChange: -22514.627 state: Opening type: Door - canCollide: True @@ -161285,7 +161536,7 @@ entities: pos: 35.5,4.5 parent: 2 type: Transform - - SecondsUntilStateChange: -82314.69 + - SecondsUntilStateChange: -86407.82 state: Opening type: Door - canCollide: True @@ -161309,7 +161560,7 @@ entities: pos: 15.5,12.5 parent: 2 type: Transform - - SecondsUntilStateChange: -83227.414 + - SecondsUntilStateChange: -87320.55 state: Opening type: Door - canCollide: True @@ -161332,7 +161583,7 @@ entities: - pos: 61.5,-56.5 parent: 2 type: Transform - - SecondsUntilStateChange: -112700.07 + - SecondsUntilStateChange: -116793.2 state: Opening type: Door - canCollide: True @@ -161356,7 +161607,7 @@ entities: pos: 15.5,14.5 parent: 2 type: Transform - - SecondsUntilStateChange: -83227.414 + - SecondsUntilStateChange: -87320.55 state: Opening type: Door - canCollide: True @@ -161379,7 +161630,7 @@ entities: - pos: 45.5,9.5 parent: 2 type: Transform - - SecondsUntilStateChange: -18421.492 + - SecondsUntilStateChange: -22514.627 state: Opening type: Door - canCollide: True @@ -161402,7 +161653,7 @@ entities: - pos: 43.5,7.5 parent: 2 type: Transform - - SecondsUntilStateChange: -18421.492 + - SecondsUntilStateChange: -22514.627 state: Opening type: Door - canCollide: True @@ -161425,7 +161676,7 @@ entities: - pos: 62.5,-56.5 parent: 2 type: Transform - - SecondsUntilStateChange: -112700.07 + - SecondsUntilStateChange: -116793.2 state: Opening type: Door - canCollide: True @@ -161448,7 +161699,7 @@ entities: - pos: 63.5,-56.5 parent: 2 type: Transform - - SecondsUntilStateChange: -112700.07 + - SecondsUntilStateChange: -116793.2 state: Opening type: Door - canCollide: True @@ -161471,7 +161722,7 @@ entities: - pos: 22.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -107791.48 + - SecondsUntilStateChange: -111884.61 state: Opening type: Door - canCollide: True @@ -161494,7 +161745,7 @@ entities: - pos: -30.5,27.5 parent: 2 type: Transform - - SecondsUntilStateChange: -112785.805 + - SecondsUntilStateChange: -116878.94 state: Opening type: Door - canCollide: True @@ -161517,7 +161768,7 @@ entities: - pos: 29.5,9.5 parent: 2 type: Transform - - SecondsUntilStateChange: -82314.69 + - SecondsUntilStateChange: -86407.82 state: Opening type: Door - canCollide: True @@ -161540,7 +161791,7 @@ entities: - pos: 34.5,9.5 parent: 2 type: Transform - - SecondsUntilStateChange: -82314.69 + - SecondsUntilStateChange: -86407.82 state: Opening type: Door - canCollide: True @@ -161563,7 +161814,7 @@ entities: - pos: -31.5,27.5 parent: 2 type: Transform - - SecondsUntilStateChange: -112785.805 + - SecondsUntilStateChange: -116878.94 state: Opening type: Door - canCollide: True @@ -161587,7 +161838,7 @@ entities: pos: 35.5,7.5 parent: 2 type: Transform - - SecondsUntilStateChange: -82314.69 + - SecondsUntilStateChange: -86407.82 state: Opening type: Door - canCollide: True @@ -161610,7 +161861,7 @@ entities: - pos: -33.5,27.5 parent: 2 type: Transform - - SecondsUntilStateChange: -112785.805 + - SecondsUntilStateChange: -116878.94 state: Opening type: Door - canCollide: True @@ -161633,7 +161884,7 @@ entities: - pos: -49.5,13.5 parent: 2 type: Transform - - SecondsUntilStateChange: -72964.625 + - SecondsUntilStateChange: -77057.76 state: Opening type: Door - canCollide: True @@ -161656,7 +161907,7 @@ entities: - pos: -48.5,13.5 parent: 2 type: Transform - - SecondsUntilStateChange: -72964.625 + - SecondsUntilStateChange: -77057.76 state: Opening type: Door - canCollide: True @@ -161679,7 +161930,7 @@ entities: - pos: -31.5,32.5 parent: 2 type: Transform - - SecondsUntilStateChange: -112785.805 + - SecondsUntilStateChange: -116878.94 state: Opening type: Door - canCollide: True @@ -161702,7 +161953,7 @@ entities: - pos: 32.5,9.5 parent: 2 type: Transform - - SecondsUntilStateChange: -82314.69 + - SecondsUntilStateChange: -86407.82 state: Opening type: Door - canCollide: True @@ -161725,7 +161976,7 @@ entities: - pos: 39.5,-0.5 parent: 2 type: Transform - - SecondsUntilStateChange: -20875.664 + - SecondsUntilStateChange: -24968.799 state: Opening type: Door - canCollide: True @@ -161748,7 +161999,7 @@ entities: - pos: -33.5,32.5 parent: 2 type: Transform - - SecondsUntilStateChange: -112785.805 + - SecondsUntilStateChange: -116878.94 state: Opening type: Door - canCollide: True @@ -161771,7 +162022,7 @@ entities: - pos: -46.5,13.5 parent: 2 type: Transform - - SecondsUntilStateChange: -72964.625 + - SecondsUntilStateChange: -77057.76 state: Opening type: Door - canCollide: True @@ -161794,7 +162045,7 @@ entities: - pos: -47.5,13.5 parent: 2 type: Transform - - SecondsUntilStateChange: -72964.625 + - SecondsUntilStateChange: -77057.76 state: Opening type: Door - canCollide: True @@ -161817,7 +162068,7 @@ entities: - pos: 43.5,5.5 parent: 2 type: Transform - - SecondsUntilStateChange: -18421.492 + - SecondsUntilStateChange: -22514.627 state: Opening type: Door - canCollide: True @@ -161840,7 +162091,7 @@ entities: - pos: 59.5,-54.5 parent: 2 type: Transform - - SecondsUntilStateChange: -112700.07 + - SecondsUntilStateChange: -116793.2 state: Opening type: Door - canCollide: True @@ -161863,7 +162114,7 @@ entities: - pos: 65.5,-54.5 parent: 2 type: Transform - - SecondsUntilStateChange: -112700.07 + - SecondsUntilStateChange: -116793.2 state: Opening type: Door - canCollide: True @@ -161887,7 +162138,7 @@ entities: pos: 66.5,-51.5 parent: 2 type: Transform - - SecondsUntilStateChange: -112700.07 + - SecondsUntilStateChange: -116793.2 state: Opening type: Door - canCollide: True @@ -161911,7 +162162,7 @@ entities: pos: 66.5,-52.5 parent: 2 type: Transform - - SecondsUntilStateChange: -112700.07 + - SecondsUntilStateChange: -116793.2 state: Opening type: Door - canCollide: True @@ -161935,7 +162186,7 @@ entities: pos: 58.5,-51.5 parent: 2 type: Transform - - SecondsUntilStateChange: -112700.07 + - SecondsUntilStateChange: -116793.2 state: Opening type: Door - canCollide: True @@ -161959,7 +162210,7 @@ entities: pos: 58.5,-52.5 parent: 2 type: Transform - - SecondsUntilStateChange: -112700.07 + - SecondsUntilStateChange: -116793.2 state: Opening type: Door - canCollide: True @@ -161982,7 +162233,7 @@ entities: - pos: 61.5,-50.5 parent: 2 type: Transform - - SecondsUntilStateChange: -112700.07 + - SecondsUntilStateChange: -116793.2 state: Opening type: Door - canCollide: True @@ -162005,7 +162256,7 @@ entities: - pos: 63.5,-50.5 parent: 2 type: Transform - - SecondsUntilStateChange: -112700.07 + - SecondsUntilStateChange: -116793.2 state: Opening type: Door - canCollide: True @@ -162028,7 +162279,7 @@ entities: - pos: -20.5,-58.5 parent: 2 type: Transform - - SecondsUntilStateChange: -112640.875 + - SecondsUntilStateChange: -116734.01 state: Opening type: Door - canCollide: True @@ -162051,7 +162302,7 @@ entities: - pos: -18.5,-58.5 parent: 2 type: Transform - - SecondsUntilStateChange: -112640.875 + - SecondsUntilStateChange: -116734.01 state: Opening type: Door - canCollide: True @@ -162074,7 +162325,7 @@ entities: - pos: -37.5,-14.5 parent: 2 type: Transform - - SecondsUntilStateChange: -62853.727 + - SecondsUntilStateChange: -66946.86 state: Opening type: Door - canCollide: True @@ -162098,7 +162349,7 @@ entities: pos: -33.5,-15.5 parent: 2 type: Transform - - SecondsUntilStateChange: -62853.727 + - SecondsUntilStateChange: -66946.86 state: Opening type: Door - canCollide: True @@ -162122,7 +162373,7 @@ entities: pos: -33.5,-17.5 parent: 2 type: Transform - - SecondsUntilStateChange: -62853.727 + - SecondsUntilStateChange: -66946.86 state: Opening type: Door - canCollide: True @@ -162145,7 +162396,7 @@ entities: - pos: 0.5,-2.5 parent: 2 type: Transform - - SecondsUntilStateChange: -62896.58 + - SecondsUntilStateChange: -66989.71 state: Opening type: Door - canCollide: True @@ -162168,7 +162419,7 @@ entities: - pos: 1.5,-2.5 parent: 2 type: Transform - - SecondsUntilStateChange: -62896.58 + - SecondsUntilStateChange: -66989.71 state: Opening type: Door - canCollide: True @@ -162192,7 +162443,7 @@ entities: pos: 7.5,9.5 parent: 2 type: Transform - - SecondsUntilStateChange: -52049.656 + - SecondsUntilStateChange: -56142.793 state: Opening type: Door - canCollide: True @@ -162216,7 +162467,7 @@ entities: pos: 7.5,8.5 parent: 2 type: Transform - - SecondsUntilStateChange: -52049.656 + - SecondsUntilStateChange: -56142.793 state: Opening type: Door - canCollide: True @@ -162240,7 +162491,7 @@ entities: pos: 7.5,7.5 parent: 2 type: Transform - - SecondsUntilStateChange: -52049.656 + - SecondsUntilStateChange: -56142.793 state: Opening type: Door - canCollide: True @@ -162263,7 +162514,7 @@ entities: - pos: 2.5,4.5 parent: 2 type: Transform - - SecondsUntilStateChange: -52049.656 + - SecondsUntilStateChange: -56142.793 state: Opening type: Door - canCollide: True @@ -162300,7 +162551,7 @@ entities: - pos: 0.5,4.5 parent: 2 type: Transform - - SecondsUntilStateChange: -52049.656 + - SecondsUntilStateChange: -56142.793 state: Opening type: Door - canCollide: True @@ -162323,7 +162574,7 @@ entities: - pos: 5.5,11.5 parent: 2 type: Transform - - SecondsUntilStateChange: -52049.656 + - SecondsUntilStateChange: -56142.793 state: Opening type: Door - canCollide: True @@ -162346,7 +162597,7 @@ entities: - pos: 4.5,11.5 parent: 2 type: Transform - - SecondsUntilStateChange: -52049.656 + - SecondsUntilStateChange: -56142.793 state: Opening type: Door - canCollide: True @@ -162369,7 +162620,7 @@ entities: - pos: 23.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -107791.48 + - SecondsUntilStateChange: -111884.61 state: Opening type: Door - canCollide: True @@ -162392,7 +162643,7 @@ entities: - pos: 24.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -107791.48 + - SecondsUntilStateChange: -111884.61 state: Opening type: Door - canCollide: True @@ -162415,7 +162666,7 @@ entities: - pos: 25.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -107791.48 + - SecondsUntilStateChange: -111884.61 state: Opening type: Door - canCollide: True @@ -162438,7 +162689,7 @@ entities: - pos: 26.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -107791.48 + - SecondsUntilStateChange: -111884.61 state: Opening type: Door - canCollide: True @@ -162461,7 +162712,7 @@ entities: - pos: 27.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -107791.48 + - SecondsUntilStateChange: -111884.61 state: Opening type: Door - canCollide: True @@ -162484,7 +162735,7 @@ entities: - pos: 28.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -107791.48 + - SecondsUntilStateChange: -111884.61 state: Opening type: Door - canCollide: True @@ -162508,7 +162759,7 @@ entities: pos: -2.5,-4.5 parent: 2 type: Transform - - SecondsUntilStateChange: -62896.58 + - SecondsUntilStateChange: -66989.71 state: Opening type: Door - canCollide: True @@ -162532,7 +162783,7 @@ entities: pos: 1.5,-46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -18291.248 + - SecondsUntilStateChange: -22384.383 state: Opening type: Door - canCollide: True @@ -162555,7 +162806,7 @@ entities: - pos: 34.5,18.5 parent: 2 type: Transform - - SecondsUntilStateChange: -80810.28 + - SecondsUntilStateChange: -84903.414 state: Opening type: Door - canCollide: True @@ -162578,7 +162829,7 @@ entities: - pos: 35.5,18.5 parent: 2 type: Transform - - SecondsUntilStateChange: -80810.28 + - SecondsUntilStateChange: -84903.414 state: Opening type: Door - canCollide: True @@ -162601,7 +162852,7 @@ entities: - pos: 36.5,18.5 parent: 2 type: Transform - - SecondsUntilStateChange: -80810.28 + - SecondsUntilStateChange: -84903.414 state: Opening type: Door - canCollide: True @@ -162639,7 +162890,7 @@ entities: pos: 48.5,7.5 parent: 2 type: Transform - - SecondsUntilStateChange: -18421.492 + - SecondsUntilStateChange: -22514.627 state: Opening type: Door - canCollide: True @@ -162662,7 +162913,7 @@ entities: - pos: 46.5,9.5 parent: 2 type: Transform - - SecondsUntilStateChange: -18421.492 + - SecondsUntilStateChange: -22514.627 state: Opening type: Door - canCollide: True @@ -162686,7 +162937,7 @@ entities: pos: 35.5,-1.5 parent: 2 type: Transform - - SecondsUntilStateChange: -20875.664 + - SecondsUntilStateChange: -24968.799 state: Opening type: Door - canCollide: True @@ -162710,7 +162961,7 @@ entities: pos: 35.5,-2.5 parent: 2 type: Transform - - SecondsUntilStateChange: -20875.664 + - SecondsUntilStateChange: -24968.799 state: Opening type: Door - canCollide: True @@ -162734,7 +162985,7 @@ entities: pos: 35.5,-4.5 parent: 2 type: Transform - - SecondsUntilStateChange: -20875.664 + - SecondsUntilStateChange: -24968.799 state: Opening type: Door - canCollide: True @@ -162758,7 +163009,7 @@ entities: pos: 35.5,-5.5 parent: 2 type: Transform - - SecondsUntilStateChange: -20875.664 + - SecondsUntilStateChange: -24968.799 state: Opening type: Door - canCollide: True @@ -162781,7 +163032,7 @@ entities: - pos: 41.5,-0.5 parent: 2 type: Transform - - SecondsUntilStateChange: -20871.164 + - SecondsUntilStateChange: -24964.299 state: Opening type: Door - canCollide: True @@ -162804,7 +163055,7 @@ entities: - pos: 42.5,-0.5 parent: 2 type: Transform - - SecondsUntilStateChange: -20871.164 + - SecondsUntilStateChange: -24964.299 state: Opening type: Door - canCollide: True @@ -162827,7 +163078,7 @@ entities: - pos: 43.5,-0.5 parent: 2 type: Transform - - SecondsUntilStateChange: -20871.164 + - SecondsUntilStateChange: -24964.299 state: Opening type: Door - canCollide: True @@ -162850,7 +163101,7 @@ entities: - pos: 46.5,3.5 parent: 2 type: Transform - - SecondsUntilStateChange: -18421.492 + - SecondsUntilStateChange: -22514.627 state: Opening type: Door - canCollide: True @@ -162874,7 +163125,7 @@ entities: pos: 1.5,-47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -18291.248 + - SecondsUntilStateChange: -22384.383 state: Opening type: Door - canCollide: True @@ -162898,7 +163149,7 @@ entities: pos: 1.5,-48.5 parent: 2 type: Transform - - SecondsUntilStateChange: -18291.248 + - SecondsUntilStateChange: -22384.383 state: Opening type: Door - canCollide: True @@ -162921,7 +163172,7 @@ entities: - pos: 3.5,-44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -18291.248 + - SecondsUntilStateChange: -22384.383 state: Opening type: Door - canCollide: True @@ -162944,7 +163195,7 @@ entities: - pos: 4.5,-44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -18291.248 + - SecondsUntilStateChange: -22384.383 state: Opening type: Door - canCollide: True @@ -162967,7 +163218,7 @@ entities: - pos: 5.5,-44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -18291.248 + - SecondsUntilStateChange: -22384.383 state: Opening type: Door - canCollide: True @@ -162990,7 +163241,7 @@ entities: - pos: 3.5,-51.5 parent: 2 type: Transform - - SecondsUntilStateChange: -18291.248 + - SecondsUntilStateChange: -22384.383 state: Opening type: Door - canCollide: True @@ -163308,6 +163559,108 @@ entities: - pos: -3.5,60.5 parent: 2 type: Transform +- proto: SignalButton + entities: + - uid: 30716 + components: + - pos: -51.5,8.5 + parent: 2 + type: Transform + - linkedPorts: + 107: + - Pressed: DoorBolt + registeredSinks: + Pressed: + - 107 + type: DeviceLinkSource + - uid: 30717 + components: + - pos: -52.5,13.5 + parent: 2 + type: Transform + - linkedPorts: + 106: + - Pressed: DoorBolt + registeredSinks: + Pressed: + - 106 + type: DeviceLinkSource + - uid: 30718 + components: + - rot: 3.141592653589793 rad + pos: -43.5,9.5 + parent: 2 + type: Transform + - linkedPorts: + 105: + - Pressed: DoorBolt + registeredSinks: + Pressed: + - 105 + type: DeviceLinkSource + - uid: 30719 + components: + - rot: 3.141592653589793 rad + pos: -24.5,29.5 + parent: 2 + type: Transform + - linkedPorts: + 108: + - Pressed: DoorBolt + registeredSinks: + Pressed: + - 108 + type: DeviceLinkSource + - uid: 30721 + components: + - rot: 3.141592653589793 rad + pos: -21.5,32.5 + parent: 2 + type: Transform + - linkedPorts: + 109: + - Pressed: DoorBolt + registeredSinks: + Pressed: + - 109 + type: DeviceLinkSource + - uid: 30722 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,33.5 + parent: 2 + type: Transform + - linkedPorts: + 110: + - Pressed: DoorBolt + registeredSinks: + Pressed: + - 110 + type: DeviceLinkSource + - uid: 30734 + components: + - pos: -27.5,46.5 + parent: 2 + type: Transform + - linkedPorts: + 753: + - Pressed: DoorBolt + registeredSinks: + Pressed: + - 753 + type: DeviceLinkSource + - uid: 30735 + components: + - pos: -19.5,39.5 + parent: 2 + type: Transform + - linkedPorts: + 755: + - Pressed: DoorBolt + registeredSinks: + Pressed: + - 755 + type: DeviceLinkSource - proto: SignalSwitch entities: - uid: 23410 @@ -164151,6 +164504,7 @@ entities: - port: Close uid: 2086 type: SignalTransmitter + - type: ItemCooldown - uid: 23447 components: - pos: 5.5,49.5 @@ -165888,6 +166242,11 @@ entities: type: Transform - proto: SignRedSix entities: + - uid: 12076 + components: + - pos: 42.5,17.5 + parent: 2 + type: Transform - uid: 23653 components: - pos: 60.5,20.5 @@ -167415,11 +167774,6 @@ entities: - pos: 17.5,11.5 parent: 2 type: Transform - - uid: 23913 - components: - - pos: -42.5,-75.5 - parent: 2 - type: Transform - proto: SpawnPointBotanist entities: - uid: 23914 @@ -167545,11 +167899,6 @@ entities: - pos: -21.5,38.5 parent: 2 type: Transform - - uid: 23934 - components: - - pos: 2.5,-10.5 - parent: 2 - type: Transform - proto: SpawnPointDetective entities: - uid: 23935 @@ -168379,11 +168728,6 @@ entities: type: Transform - nextAttack: 360.2704274 type: MeleeWeapon - - uid: 24074 - components: - - pos: -16.522211,23.632349 - parent: 2 - type: Transform - proto: SubstationBasic entities: - uid: 24075 @@ -169396,6 +169740,11 @@ entities: type: Transform - proto: Table entities: + - uid: 12068 + components: + - pos: -25.5,-52.5 + parent: 2 + type: Transform - uid: 24201 components: - rot: 3.141592653589793 rad @@ -170513,11 +170862,6 @@ entities: - pos: -26.5,-52.5 parent: 2 type: Transform - - uid: 24416 - components: - - pos: -25.5,-52.5 - parent: 2 - type: Transform - uid: 24417 components: - pos: -24.5,-52.5 @@ -171605,6 +171949,26 @@ entities: pos: -16.5,61.5 parent: 2 type: Transform + - uid: 30709 + components: + - pos: 37.5,45.5 + parent: 2 + type: Transform + - uid: 30710 + components: + - pos: 38.5,45.5 + parent: 2 + type: Transform + - uid: 30711 + components: + - pos: 38.5,46.5 + parent: 2 + type: Transform + - uid: 30712 + components: + - pos: 37.5,46.5 + parent: 2 + type: Transform - proto: TableCounterMetal entities: - uid: 24621 @@ -172577,6 +172941,11 @@ entities: type: Transform - proto: TableWood entities: + - uid: 1177 + components: + - pos: -27.5,46.5 + parent: 2 + type: Transform - uid: 24798 components: - rot: 3.141592653589793 rad @@ -173421,24 +173790,6 @@ entities: - pos: 65.5,-1.5 parent: 2 type: Transform - - uid: 24953 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,46.5 - parent: 2 - type: Transform - - uid: 24954 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,45.5 - parent: 2 - type: Transform - - uid: 24955 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,45.5 - parent: 2 - type: Transform - uid: 24956 components: - rot: 1.5707963267948966 rad @@ -173475,12 +173826,6 @@ entities: pos: 40.5,43.5 parent: 2 type: Transform - - uid: 24962 - components: - - rot: 3.141592653589793 rad - pos: 38.5,46.5 - parent: 2 - type: Transform - uid: 24963 components: - rot: 3.141592653589793 rad @@ -174093,6 +174438,16 @@ entities: - pos: 54.5,-35.5 parent: 2 type: Transform +- proto: ToySword + entities: + - uid: 20508 + components: + - flags: InContainer + type: MetaData + - parent: 14425 + type: Transform + - nextAttack: 2853.5688918 + type: MeleeWeapon - proto: TrashBananaPeel entities: - uid: 25036 @@ -176461,12 +176816,6 @@ entities: pos: -0.5,-19.5 parent: 2 type: Transform - - uid: 25283 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-21.5 - parent: 2 - type: Transform - uid: 25284 components: - rot: -1.5707963267948966 rad @@ -176767,12 +177116,6 @@ entities: pos: -2.5,-24.5 parent: 2 type: Transform - - uid: 25338 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-24.5 - parent: 2 - type: Transform - uid: 25339 components: - rot: -1.5707963267948966 rad @@ -189784,8 +190127,33 @@ entities: - pos: 69.5,-26.5 parent: 2 type: Transform + - uid: 30715 + components: + - pos: -0.5,-23.5 + parent: 2 + type: Transform + - uid: 30723 + components: + - pos: -0.5,-22.5 + parent: 2 + type: Transform + - uid: 30726 + components: + - pos: -17.5,-83.5 + parent: 2 + type: Transform - proto: WallSolid entities: + - uid: 554 + components: + - pos: -42.5,-69.5 + parent: 2 + type: Transform + - uid: 555 + components: + - pos: -41.5,-69.5 + parent: 2 + type: Transform - uid: 24777 components: - rot: 3.141592653589793 rad @@ -202898,7 +203266,121 @@ entities: pos: 26.5,0.5 parent: 2 type: Transform -- proto: WindoorArmoryLocked +- proto: WindoorBarLocked + entities: + - uid: 30158 + components: + - pos: 18.5,15.5 + parent: 2 + type: Transform + - uid: 30159 + components: + - pos: 17.5,15.5 + parent: 2 + type: Transform + - uid: 30160 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,14.5 + parent: 2 + type: Transform + - uid: 30161 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-75.5 + parent: 2 + type: Transform + - uid: 30162 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,-75.5 + parent: 2 + type: Transform +- proto: WindoorSecure + entities: + - uid: 30181 + components: + - pos: 17.5,-53.5 + parent: 2 + type: Transform + - uid: 30182 + components: + - pos: -13.5,-9.5 + parent: 2 + type: Transform + - uid: 30183 + components: + - pos: 28.5,-38.5 + parent: 2 + type: Transform + - uid: 30184 + components: + - pos: 59.5,22.5 + parent: 2 + type: Transform + - uid: 30185 + components: + - pos: 56.5,22.5 + parent: 2 + type: Transform + - uid: 30186 + components: + - pos: 53.5,22.5 + parent: 2 + type: Transform + - uid: 30187 + components: + - pos: 50.5,22.5 + parent: 2 + type: Transform + - uid: 30188 + components: + - pos: 47.5,22.5 + parent: 2 + type: Transform + - uid: 30189 + components: + - rot: -1.5707963267948966 rad + pos: 60.5,18.5 + parent: 2 + type: Transform + - uid: 30190 + components: + - rot: -1.5707963267948966 rad + pos: 60.5,15.5 + parent: 2 + type: Transform + - uid: 30191 + components: + - rot: 1.5707963267948966 rad + pos: 59.5,-34.5 + parent: 2 + type: Transform + - uid: 30192 + components: + - rot: 1.5707963267948966 rad + pos: 59.5,-33.5 + parent: 2 + type: Transform + - uid: 30193 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-83.5 + parent: 2 + type: Transform + - uid: 30194 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,14.5 + parent: 2 + type: Transform + - uid: 30195 + components: + - rot: 3.141592653589793 rad + pos: 71.5,-47.5 + parent: 2 + type: Transform +- proto: WindoorSecureArmoryLocked entities: - uid: 30150 components: @@ -202948,37 +203430,15 @@ entities: pos: 29.5,30.5 parent: 2 type: Transform -- proto: WindoorBarLocked +- proto: WindoorSecureCargoLocked entities: - - uid: 30158 - components: - - pos: 18.5,15.5 - parent: 2 - type: Transform - - uid: 30159 - components: - - pos: 17.5,15.5 - parent: 2 - type: Transform - - uid: 30160 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,14.5 - parent: 2 - type: Transform - - uid: 30161 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-75.5 - parent: 2 - type: Transform - - uid: 30162 + - uid: 30196 components: - rot: -1.5707963267948966 rad - pos: -44.5,-75.5 + pos: -26.5,22.5 parent: 2 type: Transform -- proto: WindoorChemistryLocked +- proto: WindoorSecureChemistryLocked entities: - uid: 30163 components: @@ -202998,7 +203458,7 @@ entities: pos: 3.5,-51.5 parent: 2 type: Transform -- proto: WindoorEngineeringLocked +- proto: WindoorSecureEngineeringLocked entities: - uid: 30166 components: @@ -203012,7 +203472,7 @@ entities: pos: -21.5,-34.5 parent: 2 type: Transform -- proto: WindoorHeadOfPersonnelLocked +- proto: WindoorSecureHeadOfPersonnelLocked entities: - uid: 30168 components: @@ -203020,7 +203480,7 @@ entities: pos: 28.5,-38.5 parent: 2 type: Transform -- proto: WindoorMedicalLocked +- proto: WindoorSecureMedicalLocked entities: - uid: 30169 components: @@ -203081,7 +203541,7 @@ entities: - pos: 3.5,-51.5 parent: 2 type: Transform -- proto: WindoorScienceLocked +- proto: WindoorSecureScienceLocked entities: - uid: 30179 components: @@ -203095,99 +203555,7 @@ entities: pos: 43.5,-40.5 parent: 2 type: Transform -- proto: WindoorSecure - entities: - - uid: 30181 - components: - - pos: 17.5,-53.5 - parent: 2 - type: Transform - - uid: 30182 - components: - - pos: -13.5,-9.5 - parent: 2 - type: Transform - - uid: 30183 - components: - - pos: 28.5,-38.5 - parent: 2 - type: Transform - - uid: 30184 - components: - - pos: 59.5,22.5 - parent: 2 - type: Transform - - uid: 30185 - components: - - pos: 56.5,22.5 - parent: 2 - type: Transform - - uid: 30186 - components: - - pos: 53.5,22.5 - parent: 2 - type: Transform - - uid: 30187 - components: - - pos: 50.5,22.5 - parent: 2 - type: Transform - - uid: 30188 - components: - - pos: 47.5,22.5 - parent: 2 - type: Transform - - uid: 30189 - components: - - rot: -1.5707963267948966 rad - pos: 60.5,18.5 - parent: 2 - type: Transform - - uid: 30190 - components: - - rot: -1.5707963267948966 rad - pos: 60.5,15.5 - parent: 2 - type: Transform - - uid: 30191 - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-34.5 - parent: 2 - type: Transform - - uid: 30192 - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-33.5 - parent: 2 - type: Transform - - uid: 30193 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-83.5 - parent: 2 - type: Transform - - uid: 30194 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,14.5 - parent: 2 - type: Transform - - uid: 30195 - components: - - rot: 3.141592653589793 rad - pos: 71.5,-47.5 - parent: 2 - type: Transform -- proto: WindoorSecureCargoLocked - entities: - - uid: 30196 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,22.5 - parent: 2 - type: Transform -- proto: WindoorSecurityLocked +- proto: WindoorSecureSecurityLocked entities: - uid: 30197 components: @@ -203992,12 +204360,6 @@ entities: pos: -28.5,-47.5 parent: 2 type: Transform - - uid: 30336 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-74.5 - parent: 2 - type: Transform - uid: 30337 components: - pos: -38.5,-63.5 @@ -204283,6 +204645,18 @@ entities: type: Transform - proto: WindowReinforcedDirectional entities: + - uid: 12046 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-24.5 + parent: 2 + type: Transform + - uid: 21299 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-24.5 + parent: 2 + type: Transform - uid: 30389 components: - rot: -1.5707963267948966 rad @@ -205833,6 +206207,12 @@ entities: pos: 42.5,7.5 parent: 2 type: Transform + - uid: 30708 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-24.5 + parent: 2 + type: Transform - proto: Wirecutter entities: - uid: 30657 diff --git a/Resources/Prototypes/Maps/origin.yml b/Resources/Prototypes/Maps/origin.yml index 71040f34d3..9ca2a7d83e 100644 --- a/Resources/Prototypes/Maps/origin.yml +++ b/Resources/Prototypes/Maps/origin.yml @@ -20,7 +20,7 @@ availableJobs: CargoTechnician: [ 5, 5 ] Passenger: [ -1, -1 ] - Bartender: [ 3, 3 ] + Bartender: [ 2, 2 ] Botanist: [ 3, 3 ] Chef: [ 3, 3 ] Clown: [ 1, 1 ] From eec74aa54bf620e2f77191216d1dccc6de295c43 Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Sat, 24 Jun 2023 19:58:25 +0000 Subject: [PATCH 461/474] saltern 4.13 (#17606) Co-authored-by: deltanedas <@deltanedas:kde.org> --- Resources/Maps/saltern.yml | 291 ++++++++++++++++++++++++++----------- 1 file changed, 208 insertions(+), 83 deletions(-) diff --git a/Resources/Maps/saltern.yml b/Resources/Maps/saltern.yml index 9e247f06e8..339d01e8e7 100644 --- a/Resources/Maps/saltern.yml +++ b/Resources/Maps/saltern.yml @@ -109,7 +109,7 @@ entities: tiles: AAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAA0UAAANFAAABRQAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAJFAAACRQAAAkUAAANfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAADRQAAAkUAAAFFAAAARQAAAV8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAA0UAAABFAAAARQAAAUUAAAJFAAACRQAAAwAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF8AAABFAAAARQAAAUUAAAJFAAADRQAAAUUAAANFAAAARQAAAEUAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAARQAAAUUAAANFAAAARQAAAEUAAANFAAABRQAAAUUAAAJFAAACAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXwAAAEUAAANFAAABRQAAAUUAAABFAAABRQAAA0UAAANfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAABFAAACRQAAA0UAAAJFAAACXwAAAF8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAABRQAAAEUAAANFAAACRQAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABRQAAAUUAAAJFAAACRQAAA0UAAANfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAANFAAABRQAAAkUAAAJFAAACXwAAAF8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAANfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABfAAAAXAAAAVwAAAJcAAABXAAAAlwAAABfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXwAAAFwAAANcAAABXAAAAFwAAAFcAAACXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABcAAACXAAAAFwAAANcAAABXAAAAFwAAAJfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABcAAADXAAAAVwAAAJcAAABXAAAAlwAAABfAAAAXwAAAA== -3,-1: ind: -3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAA0UAAAFfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAABFAAABXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAABRQAAAV8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAEUAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABfAAAARQAAAEUAAANFAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAEUAAABFAAABRQAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAEUAAANFAAABRQAAAUUAAANfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABFAAACRQAAAUUAAAJFAAADXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAARQAAA0UAAAFFAAACRQAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABFAAADRQAAAUUAAANfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABeAAAAXgAAAF8AAABFAAAARQAAAUUAAAFFAAACXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAABFAAACRQAAAl8AAABfAAAAXwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAA0UAAAFfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAABFAAABXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAABRQAAAV8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAEUAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAARQAAAEUAAANFAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABfAAAAXwAAAEUAAABFAAABRQAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAEUAAANFAAABRQAAAUUAAANfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABFAAACRQAAAUUAAAJFAAADXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAARQAAA0UAAAFFAAACRQAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABFAAADRQAAAUUAAANfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABeAAAAXgAAAF8AAABFAAAARQAAAUUAAAFFAAACXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAABFAAACRQAAAl8AAABfAAAAXwAAAA== 3,-1: ind: 3,-1 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAE8AAABPAAAATwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABfAAAAAAAAAAAAAABPAAAATwAAAE8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXwAAAAAAAAAAAAAATwAAAE8AAABPAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF8AAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAABfAAAATwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAF8AAABFAAADRQAAAEUAAABFAAACXwAAAF4AAABeAAAAFwAAAEUAAAAXAAADXwAAAF4AAABeAAAAXwAAAF8AAABfAAAARQAAAEUAAAFFAAABRQAAAV8AAABeAAAAXgAAAA== @@ -849,8 +849,8 @@ entities: 11,4: 0: 65535 11,5: - 0: 43695 - 3: 21840 + 0: 61167 + 3: 4368 12,4: 0: 65535 12,5: @@ -1289,12 +1289,14 @@ entities: 617: 20,17 655: 20,17 671: -12,-21 + 672: 20,27 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Arrows decals: 656: 22,17 + 673: 22,27 - node: color: '#FFFFFFFF' id: Bot @@ -2356,6 +2358,13 @@ entities: id: WarnCornerSmallSW decals: 625: -38,-9 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 674: 20,26 + 675: 21,26 + 676: 22,26 - node: color: '#FFFFFFFF' id: WarnLineS @@ -3451,16 +3460,16 @@ entities: type: Transform - proto: AirlockExternalGlassShuttleArrivals entities: - - uid: 7964 + - uid: 7080 components: - rot: -1.5707963267948966 rad - pos: -41.5,-11.5 + pos: -44.5,-11.5 parent: 31 type: Transform - - uid: 8020 + - uid: 7081 components: - rot: -1.5707963267948966 rad - pos: -41.5,-9.5 + pos: -44.5,-9.5 parent: 31 type: Transform - proto: AirlockExternalGlassShuttleEmergencyLocked @@ -4685,6 +4694,16 @@ entities: type: Transform - proto: AtmosDeviceFanTiny entities: + - uid: 4216 + components: + - pos: -44.5,-11.5 + parent: 31 + type: Transform + - uid: 4222 + components: + - pos: -44.5,-9.5 + parent: 31 + type: Transform - uid: 5157 components: - pos: -14.5,-4.5 @@ -4720,11 +4739,6 @@ entities: - pos: 22.5,28.5 parent: 31 type: Transform - - uid: 7635 - components: - - pos: -41.5,-9.5 - parent: 31 - type: Transform - uid: 7943 components: - pos: 20.5,28.5 @@ -4735,11 +4749,6 @@ entities: - pos: -35.5,-20.5 parent: 31 type: Transform - - uid: 8997 - components: - - pos: -41.5,-11.5 - parent: 31 - type: Transform - uid: 9923 components: - pos: -12.5,-2.5 @@ -25208,6 +25217,14 @@ entities: - port: ArtifactAnalyzerReceiver uid: 8320 type: SignalTransmitter +- proto: ComputerCargoBounty + entities: + - uid: 7126 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,11.5 + parent: 31 + type: Transform - proto: ComputerCargoOrders entities: - uid: 4309 @@ -42748,11 +42765,35 @@ entities: pos: 10.5,-14.5 parent: 31 type: Transform + - uid: 4203 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-8.5 + parent: 31 + type: Transform - uid: 4223 components: - pos: -2.5,9.5 parent: 31 type: Transform + - uid: 4236 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-10.5 + parent: 31 + type: Transform + - uid: 4240 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-10.5 + parent: 31 + type: Transform + - uid: 4241 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-8.5 + parent: 31 + type: Transform - uid: 4376 components: - pos: 41.5,-26.5 @@ -42898,6 +42939,18 @@ entities: - pos: 31.5,-25.5 parent: 31 type: Transform + - uid: 4684 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-8.5 + parent: 31 + type: Transform + - uid: 4686 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-12.5 + parent: 31 + type: Transform - uid: 4702 components: - rot: -1.5707963267948966 rad @@ -43046,6 +43099,18 @@ entities: - pos: -43.5,9.5 parent: 31 type: Transform + - uid: 5314 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-12.5 + parent: 31 + type: Transform + - uid: 5882 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-12.5 + parent: 31 + type: Transform - uid: 5898 components: - pos: -41.5,7.5 @@ -47165,6 +47230,14 @@ entities: - pos: 35.5,7.5 parent: 31 type: Transform +- proto: PosterContrabandBountyHunters + entities: + - uid: 7127 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,13.5 + parent: 31 + type: Transform - proto: PosterContrabandFreeDrone entities: - uid: 2411 @@ -49443,6 +49516,22 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver + - uid: 4237 + components: + - pos: -41.5,-11.5 + parent: 31 + type: Transform + - uid: 4238 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-9.5 + parent: 31 + type: Transform + - uid: 4239 + components: + - pos: 34.5,37.5 + parent: 31 + type: Transform - uid: 4295 components: - rot: -1.5707963267948966 rad @@ -49581,21 +49670,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 5978 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-9.5 - parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5983 - components: - - pos: -39.5,-11.5 - parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 7063 components: - pos: 31.5,-9.5 @@ -49787,11 +49861,6 @@ entities: pos: -22.5,-23.5 parent: 31 type: Transform - - uid: 9940 - components: - - pos: 34.5,37.5 - parent: 31 - type: Transform - proto: Protolathe entities: - uid: 1042 @@ -51372,6 +51441,12 @@ entities: - pos: 40.5,18.5 parent: 31 type: Transform + - uid: 6474 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-10.5 + parent: 31 + type: Transform - uid: 6480 components: - rot: 1.5707963267948966 rad @@ -51398,6 +51473,24 @@ entities: - pos: 46.5,18.5 parent: 31 type: Transform + - uid: 6493 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-10.5 + parent: 31 + type: Transform + - uid: 6494 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-12.5 + parent: 31 + type: Transform + - uid: 6495 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-12.5 + parent: 31 + type: Transform - uid: 6497 components: - pos: 44.5,18.5 @@ -51455,6 +51548,30 @@ entities: - pos: 45.5,18.5 parent: 31 type: Transform + - uid: 6641 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-12.5 + parent: 31 + type: Transform + - uid: 6809 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-8.5 + parent: 31 + type: Transform + - uid: 6810 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-8.5 + parent: 31 + type: Transform + - uid: 6811 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-8.5 + parent: 31 + type: Transform - uid: 6828 components: - rot: 1.5707963267948966 rad @@ -53538,10 +53655,10 @@ entities: type: Transform - proto: SignSecurearea entities: - - uid: 8844 + - uid: 6812 components: - - rot: 1.5707963267948966 rad - pos: -41.5,-10.5 + - rot: 3.141592653589793 rad + pos: -44.5,-10.5 parent: 31 type: Transform - uid: 9395 @@ -61192,6 +61309,18 @@ entities: pos: -3.5,11.5 parent: 31 type: Transform + - uid: 5978 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-12.5 + parent: 31 + type: Transform + - uid: 5983 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-8.5 + parent: 31 + type: Transform - uid: 5988 components: - rot: 1.5707963267948966 rad @@ -61253,6 +61382,12 @@ entities: - pos: 57.5,-2.5 parent: 31 type: Transform + - uid: 6326 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-10.5 + parent: 31 + type: Transform - uid: 6388 components: - pos: 50.5,6.5 @@ -62189,11 +62324,6 @@ entities: - pos: -15.5,6.5 parent: 31 type: Transform - - uid: 8798 - components: - - pos: -41.5,-12.5 - parent: 31 - type: Transform - uid: 8806 components: - pos: -38.5,20.5 @@ -62204,11 +62334,6 @@ entities: - pos: 8.5,-12.5 parent: 31 type: Transform - - uid: 8908 - components: - - pos: -41.5,-8.5 - parent: 31 - type: Transform - uid: 8909 components: - pos: 7.5,-12.5 @@ -65443,22 +65568,46 @@ entities: pos: 30.5,5.5 parent: 31 type: Transform -- proto: WindoorArmoryLocked +- proto: WindoorBarLocked + entities: + - uid: 9335 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-4.5 + parent: 31 + type: Transform +- proto: WindoorKitchenHydroponicsLocked + entities: + - uid: 3878 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,0.5 + parent: 31 + type: Transform +- proto: WindoorSecure + entities: + - uid: 7556 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-13.5 + parent: 31 + type: Transform +- proto: WindoorSecureArmoryLocked entities: - uid: 5151 components: - pos: -12.5,18.5 parent: 31 type: Transform -- proto: WindoorBarLocked +- proto: WindoorSecureCargoLocked entities: - - uid: 9335 + - uid: 2100 components: - rot: 3.141592653589793 rad - pos: -7.5,-4.5 + pos: 15.5,8.5 parent: 31 type: Transform -- proto: WindoorChemistryLocked +- proto: WindoorSecureChemistryLocked entities: - uid: 9226 components: @@ -65472,7 +65621,7 @@ entities: pos: 13.5,-0.5 parent: 31 type: Transform -- proto: WindoorCommandLocked +- proto: WindoorSecureCommandLocked entities: - uid: 5058 components: @@ -65528,7 +65677,7 @@ entities: pos: -5.5,28.5 parent: 31 type: Transform -- proto: WindoorEngineeringLocked +- proto: WindoorSecureEngineeringLocked entities: - uid: 4483 components: @@ -65546,15 +65695,7 @@ entities: pos: 30.5,5.5 parent: 31 type: Transform -- proto: WindoorKitchenHydroponicsLocked - entities: - - uid: 3878 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,0.5 - parent: 31 - type: Transform -- proto: WindoorScienceLocked +- proto: WindoorSecureScienceLocked entities: - uid: 5057 components: @@ -65567,23 +65708,7 @@ entities: - pos: -8.5,-22.5 parent: 31 type: Transform -- proto: WindoorSecure - entities: - - uid: 7556 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-13.5 - parent: 31 - type: Transform -- proto: WindoorSecureCargoLocked - entities: - - uid: 2100 - components: - - rot: 3.141592653589793 rad - pos: 15.5,8.5 - parent: 31 - type: Transform -- proto: WindoorSecurityLocked +- proto: WindoorSecureSecurityLocked entities: - uid: 4890 components: From a88c16f3e91b2962eef63a9b8eec6102cd27694f Mon Sep 17 00:00:00 2001 From: Scribbles0 <91828755+Scribbles0@users.noreply.github.com> Date: Sat, 24 Jun 2023 12:58:39 -0700 Subject: [PATCH 462/474] bounty computer + minor deletions/fixes (#17597) --- Resources/Maps/barratry.yml | 8995 +++-------------------------------- 1 file changed, 645 insertions(+), 8350 deletions(-) diff --git a/Resources/Maps/barratry.yml b/Resources/Maps/barratry.yml index f305497b48..df0c9f1579 100644 --- a/Resources/Maps/barratry.yml +++ b/Resources/Maps/barratry.yml @@ -52,40 +52,40 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAABAAAAgQAAAIEAAACBAAAAF8AAAAEAAAABAAAAgQAAAEEAAABXwAAAAsAAABfAAAACwAAAF8AAAALAAAAXwAAAAQAAAIEAAACBAAAAl8AAAALAAAABAAAAQQAAAAEAAAABAAAAF8AAAALAAAACwAAAF8AAAALAAAACwAAAF8AAAAEAAABBAAAAgQAAAELAAAAXwAAAAQAAAAEAAAABAAAAQQAAAAEAAACXwAAAAsAAAALAAAAXwAAAAsAAABfAAAACwAAAF8AAAALAAAACwAAAAsAAAALAAAABAAAAQQAAAIEAAABXwAAAAsAAABfAAAACwAAAF8AAAALAAAAXwAAAAsAAAALAAAACwAAAAQAAAIEAAACCwAAAAsAAAALAAAACwAAAF8AAABfAAAACwAAAAsAAAALAAAAXwAAAF8AAAAEAAABBAAAAgQAAAIEAAAABAAAAAQAAAILAAAAXwAAAAsAAAALAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAABAAAAgQAAAEEAAACBAAAAAQAAAIEAAACBAAAAAsAAAALAAAAXwAAAE8AAABfAAAAGgAAAhoAAAEaAAABXwAAAAQAAAAEAAAABAAAAgQAAAEEAAAABAAAAAQAAAAEAAAAXwAAAAQAAAJPAAAAXwAAABoAAAEaAAACGgAAAl8AAAAEAAACBAAAAAQAAAIEAAABBAAAAAQAAAEEAAABBAAAAQsAAAAEAAAAXwAAAF8AAABfAAAAGgAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAEAAABXwAAAAQAAAILAAAABAAAAVwAAAFfAAAAUgAAAFIAAAJSAAACUgAAA1IAAABSAAAAXwAAAEUAAAJFAAABRQAAAUUAAAEEAAABBAAAAAQAAABcAAAAXwAAAFIAAABSAAABUgAAAVIAAABSAAADUgAAA18AAABFAAADRQAAAUUAAABFAAADRQAAAAQAAABFAAACXAAAAl8AAABSAAABUgAAAVIAAAJSAAACUgAAAlIAAANfAAAARQAAAUUAAAAPAAAADwAAAA8AAABFAAAARQAAAFwAAAFcAAACRQAAA0UAAAFFAAADRQAAAEUAAAJFAAADRQAAA0UAAAFFAAACDwAAAA8AAAAPAAAARQAAAkUAAABcAAAAXwAAAEUAAANFAAACRQAAAUUAAABFAAACRQAAA0UAAAJFAAADRQAAA0UAAAJFAAACRQAAAkUAAAJFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAJFAAACRQAAAQ8AAABfAAAAXwAAAFwAAANfAAAAXwAAAA== + tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAABAAAAQQAAAIEAAABBAAAAF8AAAAEAAACBAAAAQQAAAIEAAABXwAAAAsAAABfAAAACwAAAF8AAAALAAAAXwAAAAQAAAEEAAACBAAAAF8AAAALAAAABAAAAAQAAAIEAAACBAAAAV8AAAALAAAACwAAAF8AAAALAAAACwAAAF8AAAAEAAAABAAAAQQAAAELAAAAXwAAAAQAAAEEAAACBAAAAgQAAAIEAAACXwAAAAsAAAALAAAAXwAAAAsAAABfAAAACwAAAF8AAAALAAAACwAAAAsAAAALAAAABAAAAAQAAAEEAAAAXwAAAAsAAABfAAAACwAAAF8AAAALAAAAXwAAAAsAAAALAAAACwAAAAQAAAIEAAAACwAAAAsAAAALAAAACwAAAF8AAABfAAAACwAAAAsAAAALAAAAXwAAAF8AAAAEAAABBAAAAAQAAAAEAAAABAAAAAQAAAELAAAAXwAAAAsAAAALAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAABAAAAQQAAAIEAAACBAAAAAQAAAIEAAAABAAAAgsAAAALAAAAXwAAAE8AAABfAAAAGgAAAxoAAAMaAAABXwAAAAQAAAAEAAABBAAAAgQAAAAEAAABBAAAAQQAAAAEAAABXwAAAAQAAAJPAAAAXwAAABoAAAMaAAACGgAAA18AAAAEAAACBAAAAgQAAAEEAAABBAAAAgQAAAAEAAABBAAAAQsAAAAEAAACXwAAAF8AAABfAAAAGgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAEAAABXwAAAAQAAAILAAAABAAAAFwAAAFfAAAAUgAAA1IAAANSAAABUgAAAlIAAANSAAABXwAAAEUAAANFAAACRQAAA0UAAAAEAAAABAAAAAQAAAFcAAACXwAAAFIAAABSAAABUgAAAFIAAAJSAAACUgAAAl8AAABFAAABRQAAAUUAAABFAAABRQAAAgQAAAFFAAACXAAAAl8AAABSAAADUgAAAFIAAABSAAABUgAAA1IAAAJfAAAARQAAAEUAAAEPAAAADwAAAA8AAABFAAAARQAAAVwAAANcAAAARQAAAEUAAAFFAAABRQAAAUUAAAJFAAABRQAAAUUAAABFAAABDwAAAA8AAAAPAAAARQAAAEUAAABcAAACXwAAAEUAAAJFAAAARQAAAkUAAANFAAADRQAAAEUAAAFFAAACRQAAAEUAAAFFAAACRQAAAEUAAANFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAAFFAAADRQAAAg8AAABfAAAAXwAAAFwAAABfAAAAXwAAAA== -1,0: ind: -1,0 - tiles: XwAAAF8AAAAeAAACFwAAAxcAAABfAAAARQAAAEUAAAFFAAACRQAAAg8AAABfAAAAXAAAAlwAAANcAAACXwAAAF8AAABfAAAAHgAAAycAAAAXAAAAFwAAAUUAAAFFAAABRQAAAEUAAAAPAAAAXwAAAFwAAABcAAABXAAAAl8AAABfAAAAXwAAAB4AAAIXAAACFwAAAl8AAABFAAAARQAAAUUAAAJFAAADRQAAAl8AAABcAAADXAAAAFwAAAFfAAAARQAAAF8AAABfAAAAFwAAAV8AAABfAAAAXwAAAF8AAABFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAAARQAAAUUAAAJFAAACRQAAA0UAAAFFAAADRQAAA0UAAABFAAABRQAAAEUAAABFAAADRQAAAkUAAABFAAAARQAAAEUAAAJFAAADRQAAAEUAAABFAAAARQAAAkUAAANFAAACRQAAAUUAAAJFAAAARQAAA0UAAAJFAAACRQAAAkUAAAJFAAADRQAAAEUAAABFAAAARQAAAEUAAAFFAAABRQAAAUUAAAJFAAAARQAAAkUAAABFAAADRQAAAl8AAABfAAAARQAAAkUAAAJFAAADXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAF8AAABfAAAAXwAAAEUAAAFFAAABXwAAAF8AAABFAAAARQAAAEUAAAFfAAAARQAAAV8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAAJFAAACXwAAAEUAAAFFAAACRQAAAkUAAABfAAAARQAAA0UAAAFfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAAARQAAAF8AAABFAAABRQAAAEUAAAFFAAADXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABFAAAARQAAAEUAAAFfAAAAXwAAAEUAAAJFAAADXwAAAEUAAANFAAADXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFfAAAARQAAA0UAAAJfAAAAXwAAAEUAAAJFAAADXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAEUAAAJfAAAARQAAAUUAAAFFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAkUAAABFAAADXwAAAF8AAABFAAADXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAABcAAAMXAAABXwAAAE8AAABFAAADRQAAAkUAAAJfAAAAXwAAAF8AAABFAAADXwAAAF8AAABPAAAAXwAAAF8AAAAXAAAAFwAAAg== + tiles: XwAAAF8AAAAeAAADFwAAAhcAAANfAAAARQAAAUUAAAJFAAACRQAAAA8AAABfAAAAXAAAAlwAAABcAAAAXwAAAF8AAABfAAAAHgAAAScAAAAXAAAAFwAAAkUAAABFAAACRQAAAkUAAAMPAAAAXwAAAFwAAAJcAAAAXAAAA18AAABfAAAAXwAAAB4AAAMXAAABFwAAA18AAABFAAADRQAAAEUAAAJFAAABRQAAAF8AAABcAAADXAAAAFwAAABfAAAARQAAAF8AAABfAAAAFwAAAF8AAABfAAAAXwAAAF8AAABFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAAARQAAAUUAAANFAAACRQAAAkUAAABFAAABRQAAAEUAAAFFAAACRQAAAUUAAANFAAADRQAAA0UAAAFFAAABRQAAAkUAAAFFAAACRQAAAUUAAAFFAAADRQAAAEUAAANFAAABRQAAAUUAAAFFAAACRQAAAkUAAAJFAAACRQAAAkUAAAFFAAACRQAAAUUAAAJFAAADRQAAA0UAAANFAAABRQAAAUUAAANFAAACRQAAAEUAAANFAAACRQAAA18AAABfAAAARQAAAEUAAANFAAABXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAl8AAABfAAAAXwAAAEUAAANFAAACXwAAAF8AAABFAAAARQAAAkUAAAJfAAAARQAAAl8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAANFAAADXwAAAEUAAABFAAABRQAAA0UAAABfAAAARQAAAUUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAACRQAAAl8AAABFAAABRQAAAkUAAAFFAAABXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABFAAADRQAAAEUAAAFfAAAAXwAAAEUAAAFFAAADXwAAAEUAAANFAAACXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJfAAAARQAAAUUAAANfAAAAXwAAAEUAAAFFAAACXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAEUAAABfAAAARQAAAEUAAAJFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAA0UAAANFAAABXwAAAF8AAABFAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAABcAAAMXAAACXwAAAE8AAABFAAABRQAAAEUAAANfAAAAXwAAAF8AAABFAAACXwAAAF8AAABPAAAAXwAAAF8AAAAXAAABFwAAAw== 0,-1: ind: 0,-1 - tiles: OwAAAF8AAABfAAAABAAAAAQAAAEEAAAABAAAADwAAAA8AAAAPAAAADwAAAA8AAAAAAAAAAAAAABeAAAAXgAAADsAAAA7AAAAOwAAAF8AAAAEAAAABAAAAjwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAAAAAAAXgAAAAAAAABfAAAAOwAAADsAAABfAAAABAAAAQQAAAE8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAABAAAAV4AAAAAAAAAXwAAADsAAABfAAAAXwAAAF8AAABfAAAAXwAAADwAAAA8AAAAPAAAADwAAAA8AAAABAAAAl8AAABfAAAAXwAAAAsAAABfAAAACwAAAF8AAAALAAAACwAAAF8AAAAEAAACPAAAADwAAAA8AAAAPAAAAF8AAABfAAAARQAAAV8AAAALAAAACwAAAF8AAABfAAAACwAAAAsAAABfAAAABAAAAAQAAAEEAAACBAAAAAQAAABfAAAARQAAA18AAABFAAACCwAAAF8AAAALAAAACwAAAAsAAABfAAAAXwAAAAQAAAAEAAABBAAAAQQAAAIEAAAAXwAAAF8AAABFAAABRQAAAwsAAAALAAAACwAAAF8AAAALAAAACwAAAF8AAAAEAAAABAAAAgQAAAFfAAAAXwAAAF8AAABFAAACRQAAAF8AAABfAAAAXwAAAF8AAABfAAAABAAAAF8AAABfAAAABAAAAAQAAAEEAAAAXwAAAF8AAABfAAAARQAAAV8AAABFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAEAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANfAAAATwAAAF8AAABfAAAAXwAAAAQAAAEEAAABBAAAAAQAAAFfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAAQAAAFfAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAADXwAAAF8AAABfAAAAXwAAAF8AAAAXAAACFwAAA18AAABfAAAAXwAAAFwAAANcAAACXAAAA1wAAANFAAADRQAAAUUAAAAyAAAAMgAAADIAAAAXAAADFwAAARcAAAFfAAAAXwAAAF8AAABcAAABXAAAAlwAAAFfAAAARQAAAEUAAABFAAACMgAAADIAAAAyAAAAXwAAABcAAAIXAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAACRQAAAzIAAAAyAAAAMgAAAA== + tiles: OwAAAF8AAABfAAAABAAAAAQAAAEEAAACBAAAAjwAAAA8AAAAPAAAADwAAAA8AAAAAAAAAAAAAABeAAAAXgAAADsAAAA7AAAAOwAAAF8AAAAEAAABBAAAAjwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAAAAAAAXgAAAAAAAABfAAAAOwAAADsAAABfAAAABAAAAgQAAAI8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAABAAAAV4AAAAAAAAAXwAAADsAAABfAAAAXwAAAF8AAABfAAAAXwAAADwAAAA8AAAAPAAAADwAAAA8AAAABAAAAF8AAABfAAAAXwAAAAsAAABfAAAACwAAAF8AAAALAAAACwAAAF8AAAAEAAABPAAAADwAAAA8AAAAPAAAAF8AAABfAAAARQAAA18AAAALAAAACwAAAF8AAABfAAAACwAAAAsAAABfAAAABAAAAAQAAAAEAAACBAAAAgQAAABfAAAARQAAAl8AAABFAAADCwAAAF8AAAALAAAACwAAAAsAAABfAAAAXwAAAAQAAAIEAAACBAAAAAQAAAIEAAABXwAAAF8AAABFAAACRQAAAQsAAAALAAAACwAAAF8AAAALAAAACwAAAF8AAAAEAAACBAAAAAQAAAJfAAAAXwAAAF8AAABFAAAARQAAA18AAABfAAAAXwAAAF8AAABfAAAABAAAAF8AAABfAAAABAAAAgQAAAAEAAABXwAAAF8AAABfAAAARQAAAF8AAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAEAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABfAAAATwAAAF8AAABfAAAAXwAAAAQAAAIEAAAABAAAAAQAAAJfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAAQAAAJfAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAADXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAFwAAAV8AAABfAAAAXwAAAFwAAAFcAAAAXAAAAlwAAANFAAACRQAAAEUAAAMyAAAAMgAAADIAAAAXAAAAFwAAAhcAAAJfAAAAXwAAAF8AAABcAAACXAAAAFwAAANfAAAARQAAAUUAAANFAAACMgAAADIAAAAyAAAAXwAAABcAAAEXAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAADRQAAAjIAAAAyAAAAMgAAAA== 0,0: ind: 0,0 - tiles: DwAAAD4AAAA+AAAAXwAAAF8AAABfAAAAXwAAAFwAAABcAAADXAAAAkUAAAJFAAADXwAAADIAAAAyAAAAMgAAAA8AAAA+AAAAPgAAAF8AAABfAAAAXwAAAF8AAABcAAABXAAAAV8AAABFAAABRQAAAF8AAAAyAAAAMgAAADIAAAAPAAAAPgAAAD4AAABfAAAAXwAAAF8AAABfAAAAXAAAAFwAAAJfAAAARQAAAEUAAANfAAAAMgAAADIAAAAyAAAARQAAAkUAAABFAAAAXwAAAEUAAANFAAADXwAAAF8AAABfAAAAXwAAAEUAAAFFAAACXwAAADIAAAAyAAAAMgAAAEUAAAFFAAADRQAAAEUAAAFFAAADRQAAAkUAAAFFAAABRQAAA0UAAAFFAAADRQAAA18AAABfAAAAXwAAAF8AAABFAAADRQAAAUUAAAJFAAAARQAAAEUAAAFFAAACRQAAAF8AAABfAAAARQAAAkUAAABFAAABRQAAA0UAAAFFAAACRQAAAEUAAABFAAACRQAAAUUAAANFAAAARQAAAV8AAABfAAAAXwAAAF8AAABFAAABRQAAAUUAAANFAAABRQAAAUUAAANFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAV8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAATwAAAE8AAABfAAAARQAAAUUAAAJfAAAAXwAAAE8AAABPAAAATwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAEUAAAJFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAAAXAAADFwAAAhcAAAAXAAAAFwAAARcAAAJfAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAATwAAAE8AAABfAAAAFwAAARcAAAEXAAABFwAAARcAAAAXAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAIXAAACFwAAAhcAAAAXAAACFwAAAl8AAABfAAAATwAAAF8AAAAXAAAAFwAAAxcAAAAXAAAAFwAAAV8AAABSAAADUgAAA1IAAABSAAABUgAAAlIAAABfAAAAXwAAAF8AAABfAAAAFwAAAxcAAAIXAAADFwAAAxcAAAFfAAAAUgAAAlIAAAEnAAAAJwAAAFIAAAFSAAAAXwAAAF8AAABPAAAAXwAAAA== + tiles: DwAAAD4AAAA+AAAAXwAAAF8AAABfAAAAXwAAAFwAAANcAAACXAAAA0UAAANFAAACXwAAADIAAAAyAAAAMgAAAA8AAAA+AAAAPgAAAF8AAABfAAAAXwAAAF8AAABcAAABXAAAAF8AAABFAAACRQAAAl8AAAAyAAAAMgAAADIAAAAPAAAAPgAAAD4AAABfAAAAXwAAAF8AAABfAAAAXAAAAFwAAABfAAAARQAAAkUAAABfAAAAMgAAADIAAAAyAAAARQAAA0UAAANFAAABXwAAAEUAAABFAAACXwAAAF8AAABfAAAAXwAAAEUAAAFFAAAAXwAAADIAAAAyAAAAMgAAAEUAAABFAAABRQAAAEUAAABFAAAARQAAAkUAAABFAAACRQAAA0UAAAJFAAABRQAAA18AAABfAAAAXwAAAF8AAABFAAACRQAAAEUAAAJFAAAARQAAAEUAAANFAAACRQAAAl8AAABfAAAARQAAAEUAAAFFAAABRQAAAEUAAAJFAAABRQAAAkUAAAJFAAAARQAAAEUAAANFAAAARQAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAAJFAAABRQAAAEUAAAJFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAA18AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAATwAAAE8AAABfAAAARQAAAUUAAAJfAAAAXwAAAE8AAABPAAAATwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAEUAAABFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAAAXAAADFwAAAxcAAAIXAAAAFwAAAxcAAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAATwAAAE8AAABfAAAAFwAAAxcAAAEXAAACFwAAAhcAAAAXAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAAXAAADFwAAARcAAAAXAAABFwAAAl8AAABfAAAATwAAAF8AAAAXAAACFwAAABcAAAEXAAAAFwAAAF8AAABSAAAAUgAAAVIAAAJSAAACUgAAAFIAAANfAAAAXwAAAF8AAABfAAAAFwAAAxcAAAMXAAABFwAAAhcAAANfAAAAUgAAAFIAAAMnAAAAJwAAAFIAAABSAAADXwAAAF8AAABPAAAAXwAAAA== -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAABAAAAQQAAAEEAAABBAAAAQAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAEEAAAAXwAAAAQAAAIEAAABAAAAAAQAAAIEAAACXgAAAF4AAABeAAAAXgAAAAQAAAAEAAACBAAAAgQAAAIEAAACXwAAAF8AAAAEAAABBAAAAAQAAAEEAAAABAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAABAAAAAQAAAEEAAAABAAAAQAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAIEAAABXwAAAAQAAAIEAAABAAAAAAQAAAAEAAAAXgAAAF4AAABeAAAAXgAAAAQAAAAEAAAABAAAAQQAAAEEAAACXwAAAF8AAAAEAAAABAAAAAQAAAAEAAABBAAAAQ== 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAAQAAAIEAAABBAAAAQQAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAAABAAAAAQAAAAEAAACBAAAAgQAAAEAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAAAAAAAABAAAAl8AAABfAAAABAAAAQQAAAAEAAAABAAAAQQAAAIEAAAABAAAAQAAAABeAAAAAAAAAAAAAABeAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAAQAAAIEAAABBAAAAAQAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAACBAAAAQQAAAIEAAAABAAAAAQAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAAAAAAAABAAAAV8AAABfAAAABAAAAgQAAAIEAAACBAAAAAQAAAAEAAAABAAAAQAAAABeAAAAAAAAAAAAAABeAAAAAAAAAA== -2,-1: ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAIwAAACMAAABfAAAAXwAAAAsAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAIwAAAF8AAAAjAAAAXwAAAAsAAABfAAAAXwAAAF8AAAAgAAAAIAAAAyAAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAjAAAAXwAAAF8AAAALAAAACwAAAF8AAABfAAAAIAAAACAAAAAgAAADXwAAAF8AAABfAAAAXwAAAF8AAAACAAAAXwAAAAIAAABfAAAACwAAAF8AAABFAAADXwAAACAAAAEgAAAAIAAAAV8AAABfAAAAXwAAAF8AAABfAAAAAgAAAAIAAABfAAAAXwAAAF8AAAALAAAARQAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJfAAAAXwAAAF8AAAACAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFfAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABFAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABPAAAAXwAAAF8AAABPAAAARQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJfAAAATwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAACXAAAAVwAAAJfAAAAXwAAAE8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAA1wAAAFcAAACXAAAAV8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAFwAAAJcAAABXAAAAlwAAAJfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAAAXAAAAFwAAABcAAACXwAAAF8AAABfAAAAXwAAAD0AAAA9AAAAPQAAAD0AAABfAAAATwAAAF8AAABfAAAAXAAAAVwAAANcAAAAXwAAAF8AAABfAAAAXwAAAF8AAAA9AAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAIwAAACMAAABfAAAAXwAAAAsAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAIwAAAF8AAAAjAAAAXwAAAAsAAABfAAAAXwAAAF8AAAAgAAAAIAAAAiAAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAjAAAAXwAAAF8AAAALAAAACwAAAF8AAABfAAAAIAAAAiAAAAIgAAAAXwAAAF8AAABfAAAAXwAAAF8AAAACAAAAXwAAAAIAAABfAAAACwAAAF8AAABFAAABXwAAACAAAAEgAAACIAAAAF8AAABfAAAAXwAAAF8AAABfAAAAAgAAAAIAAABfAAAAXwAAAF8AAAALAAAARQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFfAAAAXwAAAF8AAAACAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFfAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABFAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABPAAAAXwAAAF8AAABPAAAARQAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABfAAAATwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAAAXAAAAFwAAABfAAAAXwAAAE8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAAVwAAABcAAABXAAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAFwAAANcAAAAXAAAAFwAAAFfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAACXAAAAlwAAABcAAABXwAAAF8AAABfAAAAXwAAAD0AAAA9AAAAPQAAAD0AAABfAAAATwAAAF8AAABfAAAAXAAAAlwAAAFcAAABXwAAAF8AAABfAAAAXwAAAF8AAAA9AAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== -2,0: ind: -2,0 - tiles: RQAAA18AAABfAAAAXwAAAF8AAABfAAAAPQAAAD0AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABPAAAAXwAAAEUAAANfAAAATwAAAF8AAABfAAAAPQAAAD0AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABFAAACXwAAAF8AAABfAAAAXwAAAD0AAABfAAAAPQAAAD0AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA18AAABfAAAAXwAAAF8AAAA9AAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAADRQAAAUUAAAFFAAAAXwAAAEUAAAFFAAACRQAAAkUAAAJfAAAAXwAAAEUAAANfAAAAXwAAAEUAAANFAAACRQAAAEUAAAFFAAABRQAAAkUAAAJFAAADRQAAAUUAAAJFAAADRQAAAEUAAAJFAAADRQAAAkUAAANFAAADRQAAAEUAAAJFAAABRQAAA0UAAAJFAAABRQAAAUUAAABFAAACRQAAAkUAAABFAAADRQAAA0UAAABFAAACRQAAAl8AAABFAAAARQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAA18AAABfAAAARQAAA18AAABfAAAAXwAAAF8AAAAyAAAAMgAAADIAAABcAAACXAAAAlwAAAJcAAADXAAAAlwAAAJcAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABMgAAADIAAABfAAAAXAAAA1wAAAJcAAAAXAAAAVwAAAJcAAADXAAAAV8AAABfAAAAXwAAAF8AAABFAAAAXwAAADIAAAAyAAAAXwAAAFwAAAFcAAAAXAAAAVwAAANcAAACXAAAA1wAAAFfAAAAXwAAAF8AAABfAAAARQAAAkUAAAJfAAAAXwAAAF8AAABcAAAAXAAAAVwAAANcAAACXAAAAlwAAAFcAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAAVwAAABcAAABXAAAA1wAAAFcAAADXAAAAV8AAABfAAAATwAAAF8AAABFAAAAXwAAAE8AAABPAAAAXwAAAFwAAABcAAADXAAAA1wAAABcAAAAXAAAAlwAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAAFfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAAVwAAAJcAAACXAAAAlwAAAJcAAACXAAAAV8AAABfAAAATwAAAF8AAABfAAAAXwAAAA== + tiles: RQAAA18AAABfAAAAXwAAAF8AAABfAAAAPQAAAD0AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABPAAAAXwAAAEUAAABfAAAATwAAAF8AAABfAAAAPQAAAD0AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABFAAAAXwAAAF8AAABfAAAAXwAAAD0AAABfAAAAPQAAAD0AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAF8AAABfAAAAXwAAAF8AAAA9AAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAADRQAAAkUAAANFAAABXwAAAEUAAAJFAAABRQAAAEUAAABfAAAAXwAAAEUAAAJfAAAAXwAAAEUAAANFAAABRQAAAUUAAAJFAAACRQAAAkUAAABFAAAARQAAAkUAAANFAAAARQAAAUUAAAFFAAABRQAAA0UAAANFAAADRQAAAEUAAAFFAAACRQAAAEUAAAJFAAAARQAAAUUAAANFAAACRQAAAkUAAAJFAAACRQAAAkUAAANFAAAARQAAAV8AAABFAAAARQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAAV8AAABfAAAARQAAAl8AAABfAAAAXwAAAF8AAAAyAAAAMgAAADIAAABcAAADXAAAAVwAAAJcAAACXAAAA1wAAAJcAAABXwAAAF8AAABfAAAAXwAAAF8AAABFAAABMgAAADIAAABfAAAAXAAAAlwAAAFcAAAAXAAAAFwAAANcAAAAXAAAAV8AAABfAAAAXwAAAF8AAABFAAAAXwAAADIAAAAyAAAAXwAAAFwAAAJcAAABXAAAAFwAAAFcAAACXAAAAFwAAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAAFfAAAAXwAAAF8AAABcAAADXAAAAVwAAAFcAAACXAAAAlwAAAFcAAACXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAAlwAAAJcAAABXAAAA1wAAAJcAAAAXAAAAV8AAABfAAAATwAAAF8AAABFAAABXwAAAE8AAABPAAAAXwAAAFwAAAFcAAABXAAAAFwAAANcAAAAXAAAAFwAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAAJfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAA1wAAAJcAAACXAAAAlwAAAFcAAACXAAAAl8AAABfAAAATwAAAF8AAABfAAAAXwAAAA== 1,-1: ind: 1,-1 - tiles: XgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABeAAAARQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF8AAABfAAAAOwAAADsAAAA7AAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAADsAAAA7AAAAOwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXwAAAF8AAABfAAAAOwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAAAAAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAADIAAAAyAAAAXwAAAE0AAAFNAAACTQAAA18AAABfAAAAXwAAAF8AAABcAAAAXAAAA18AAABeAAAAXwAAAAAAAAAyAAAAMgAAAE0AAAFNAAACTQAAAk0AAAFfAAAAXwAAAE8AAABfAAAAXwAAAF4AAABcAAABXwAAAF8AAAAAAAAAMgAAADIAAABfAAAATQAAAU0AAABNAAACXwAAAF8AAABfAAAAXwAAAFwAAAFcAAADXAAAAl8AAABfAAAAXgAAAA== + tiles: XgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABeAAAARQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF8AAABfAAAAOwAAADsAAAA7AAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAADsAAAA7AAAAOwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXwAAAF8AAABfAAAAOwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAAAAAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAADIAAAAyAAAAXwAAAE0AAAJNAAAATQAAA18AAABfAAAAXwAAAF8AAABcAAADXAAAAl8AAABeAAAAXwAAAAAAAAAyAAAAMgAAAE0AAABNAAABTQAAAU0AAAJfAAAAXwAAAE8AAABfAAAAXwAAAF4AAABcAAABXwAAAF8AAAAAAAAAMgAAADIAAABfAAAATQAAA00AAANNAAAAXwAAAF8AAABfAAAAXwAAAFwAAABcAAAAXAAAA18AAABfAAAAXgAAAA== 1,0: ind: 1,0 - tiles: MgAAADIAAABfAAAAGAAAARgAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAADIAAAAyAAAAXwAAABgAAAAYAAADXwAAAF8AAABPAAAAXwAAAF8AAAAXAAAATwAAAE8AAABfAAAAXwAAAF4AAAAyAAAAMgAAAF8AAAAYAAAAGAAAA18AAABfAAAAXwAAAF8AAAAXAAACFwAAAl8AAABPAAAAXwAAAF8AAABeAAAAMgAAADIAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAE8AAABfAAAAXgAAAF8AAABfAAAAXwAAAEUAAAJFAAABRQAAAkUAAAFFAAABXwAAAF8AAAAXAAACXwAAAF8AAABfAAAAXwAAAF4AAABFAAAARQAAAkUAAAJFAAACRQAAAkUAAAJFAAAARQAAA0UAAAJFAAAARQAAA0UAAAFFAAABXwAAAF4AAABeAAAARQAAAkUAAANFAAABRQAAAUUAAAJFAAACRQAAAUUAAAJFAAACRQAAA0UAAAJFAAACRQAAA18AAABeAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAEUAAAJFAAAARQAAAUUAAABfAAAAXwAAAF8AAAACAAAAAgAAAF8AAAACAAAAXwAAAF8AAABPAAAATwAAAF8AAABFAAADRQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAAACAAAAAgAAAF8AAABPAAAAXwAAAF8AAABfAAAARQAAAkUAAAFFAAADRQAAAV8AAABfAAAAXwAAAAIAAAACAAAAXwAAAAIAAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAADRQAAAUUAAABfAAAAXwAAAF8AAABfAAAAAgAAAAIAAAACAAAAXwAAAF8AAAApAAAAKQAAAF8AAABFAAADRQAAAEUAAAJFAAADXwAAAF8AAABfAAAAAgAAAF8AAAACAAAAXwAAAF8AAAApAAAAKQAAACkAAAApAAAARQAAAkUAAABFAAACRQAAAV8AAABeAAAAXgAAAAIAAABfAAAAAgAAAAIAAABfAAAAKQAAACkAAAApAAAAKQAAACkAAABFAAADRQAAAEUAAAFfAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAApAAAAKQAAACkAAAApAAAARQAAAUUAAANFAAADXwAAAF4AAABeAAAAEgAAABIAAABfAAAAEgAAABIAAABfAAAAKQAAACkAAAApAAAARQAAAUUAAABFAAAARQAAAF8AAABfAAAAXwAAAA== + tiles: MgAAADIAAABfAAAAGAAAABgAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAADIAAAAyAAAAXwAAABgAAAEYAAADXwAAAF8AAABPAAAAXwAAAF8AAAAXAAAATwAAAE8AAABfAAAAXwAAAF4AAAAyAAAAMgAAAF8AAAAYAAABGAAAAl8AAABfAAAAXwAAAF8AAAAXAAAAFwAAAl8AAABPAAAAXwAAAF8AAABeAAAAMgAAADIAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAE8AAABfAAAAXgAAAF8AAABfAAAAXwAAAEUAAANFAAABRQAAA0UAAAFFAAADXwAAAF8AAAAXAAABXwAAAF8AAABfAAAAXwAAAF4AAABFAAAARQAAAEUAAANFAAADRQAAA0UAAAFFAAADRQAAAkUAAAJFAAABRQAAAEUAAABFAAACXwAAAF4AAABeAAAARQAAAkUAAAJFAAAARQAAAkUAAABFAAABRQAAA0UAAAJFAAAARQAAAEUAAAJFAAACRQAAAV8AAABeAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAEUAAABFAAACRQAAAUUAAAJfAAAAXwAAAF8AAAACAAAAAgAAAF8AAAACAAAAXwAAAF8AAABPAAAATwAAAF8AAABFAAABRQAAAEUAAANFAAADXwAAAF8AAABfAAAAXwAAAF8AAAACAAAAAgAAAF8AAABPAAAAXwAAAF8AAABfAAAARQAAAEUAAANFAAAARQAAA18AAABfAAAAXwAAAAIAAAACAAAAXwAAAAIAAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAADRQAAA0UAAABfAAAAXwAAAF8AAABfAAAAAgAAAAIAAAACAAAAXwAAAF8AAAApAAAAKQAAAF8AAABFAAADRQAAAUUAAAJFAAADXwAAAF8AAABfAAAAAgAAAF8AAAACAAAAXwAAAF8AAAApAAAAKQAAACkAAAApAAAARQAAAEUAAAJFAAAARQAAAF8AAABeAAAAXgAAAAIAAABfAAAAAgAAAAIAAABfAAAAKQAAACkAAAApAAAAKQAAACkAAABFAAABRQAAA0UAAAFfAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAApAAAAKQAAACkAAAApAAAARQAAAUUAAANFAAAAXwAAAF4AAABeAAAAEgAAABIAAABfAAAAEgAAABIAAABfAAAAKQAAACkAAAApAAAARQAAAkUAAAFFAAAARQAAA18AAABfAAAAXwAAAA== 1,-2: ind: 1,-2 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAA== 1,1: ind: 1,1 - tiles: EgAAAF8AAAASAAAAXwAAAF8AAABfAAAAKQAAACkAAAApAAAARQAAAEUAAAFFAAACRQAAAV8AAABfAAAAXwAAAF8AAAASAAAAXwAAABIAAAASAAAAXwAAACkAAAApAAAAXwAAAEUAAAFFAAADRQAAAEUAAANfAAAAXwAAAF8AAABfAAAAEgAAAF8AAABfAAAAEgAAAF8AAAApAAAAXwAAAF8AAABFAAABRQAAAUUAAANFAAADXwAAAF8AAABfAAAAEgAAAF8AAAASAAAAEgAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAFFAAAARQAAAF8AAABfAAAAXwAAAF8AAAASAAAAXwAAABIAAAASAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAABRQAAAUUAAAJfAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAEgAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAA0UAAANFAAAAXwAAAF4AAAAAAAAAXwAAABIAAABfAAAAXwAAABIAAABfAAAAXwAAAE8AAABfAAAAXwAAABcAAAFfAAAAXwAAAF8AAABeAAAAAAAAAF8AAAASAAAAXwAAABIAAABfAAAAXwAAAE8AAABfAAAAXwAAABcAAAAXAAAAFwAAARcAAABfAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAAAXAAABFwAAABcAAAMXAAACXwAAAF4AAAAAAAAAXwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAhcAAAAXAAACFwAAAl8AAABeAAAAAAAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAEXAAAAFwAAAxcAAAFfAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAAAXAAADFwAAARcAAAEXAAADXwAAAF4AAAAAAAAAXAAAAV8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAFwAAABcAAAAXAAADFwAAA18AAABeAAAAAAAAAFwAAAJfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAABcAAABXwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXAAAAF8AAABfAAAATwAAAF8AAABfAAAATwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAA== + tiles: EgAAAF8AAAASAAAAXwAAAF8AAABfAAAAKQAAACkAAAApAAAARQAAA0UAAANFAAABRQAAAF8AAABfAAAAXwAAAF8AAAASAAAAXwAAABIAAAASAAAAXwAAACkAAAApAAAAXwAAAEUAAAFFAAAARQAAAkUAAABfAAAAXwAAAF8AAABfAAAAEgAAAF8AAABfAAAAEgAAAF8AAAApAAAAXwAAAF8AAABFAAAARQAAAUUAAABFAAABXwAAAF8AAABfAAAAEgAAAF8AAAASAAAAEgAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAAJFAAADRQAAAl8AAABfAAAAXwAAAF8AAAASAAAAXwAAABIAAAASAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAAARQAAAEUAAAFfAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAEgAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAEUAAANFAAAAXwAAAF4AAAAAAAAAXwAAABIAAABfAAAAXwAAABIAAABfAAAAXwAAAE8AAABfAAAAXwAAABcAAANfAAAAXwAAAF8AAABeAAAAAAAAAF8AAAASAAAAXwAAABIAAABfAAAAXwAAAE8AAABfAAAAXwAAABcAAAMXAAADFwAAARcAAANfAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAAAXAAACFwAAARcAAAIXAAADXwAAAF4AAAAAAAAAXwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAABcAAAEXAAABFwAAA18AAABeAAAAAAAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAEXAAADFwAAAxcAAABfAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAAAXAAAAFwAAARcAAAIXAAABXwAAAF4AAAAAAAAAXAAAAV8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAFwAAAxcAAAEXAAABFwAAAV8AAABeAAAAAAAAAFwAAAJfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAABcAAACXwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXAAAAF8AAABfAAAATwAAAF8AAABfAAAATwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAA== 2,0: ind: 2,0 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== @@ -94,118 +94,118 @@ entities: tiles: XwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,1: ind: 0,1 - tiles: FwAAAhcAAAEXAAACFwAAAhcAAANfAAAAUgAAA1IAAABSAAACUgAAAFIAAAJSAAACXwAAAF8AAABPAAAAXwAAABcAAAAXAAACFwAAAhcAAAMXAAABXwAAAFIAAANSAAAAUgAAAVIAAABSAAABUgAAAl8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAACXwAAAF8AAABfAAAAXwAAAF8AAABSAAACUgAAAFIAAANfAAAAXwAAAF8AAABfAAAAXwAAAFIAAANSAAABUgAAAlIAAAJSAAABUgAAA1IAAANSAAAAUgAAAVIAAAFSAAABXwAAAE8AAABfAAAAXwAAAF8AAABSAAACUgAAAScAAABSAAAAXwAAAFIAAABSAAACXwAAAFIAAAFSAAADUgAAAl8AAABPAAAAXwAAAF8AAABfAAAAXwAAAFIAAABSAAADUgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAUgAAAF8AAABSAAACJwAAAFIAAAJfAAAAUgAAAFIAAAFSAAAAUgAAAlIAAAJfAAAAXwAAAF8AAABPAAAAXwAAAFIAAABSAAADUgAAA1IAAAJSAAADXwAAAFIAAAFSAAADUgAAAFIAAAJSAAABXwAAAF8AAABfAAAATwAAAF8AAABSAAABXwAAAFIAAAAnAAAAUgAAAVIAAAFSAAADUgAAAVIAAABSAAADUgAAAikAAAApAAAAXwAAAF8AAABfAAAAUgAAAFIAAABSAAAAUgAAAFIAAANSAAACUgAAAFIAAAJSAAACUgAAAFIAAAEpAAAAKQAAAF8AAABfAAAAXwAAAFIAAANSAAAAUgAAAicAAABSAAABXwAAAFIAAAFSAAACUgAAAFIAAANSAAADKQAAACkAAABfAAAAXwAAAF8AAABSAAACXwAAAFIAAAAnAAAAUgAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAADUgAAAlIAAABSAAABUgAAAFIAAAFSAAADUgAAA1IAAAFSAAAAUgAAA1wAAABcAAABXAAAAlIAAAJSAAAAUgAAAScAAABSAAAAUgAAAVIAAABSAAADUgAAAFIAAAFSAAACUgAAAlIAAANfAAAAXAAAAVwAAANSAAABUgAAAFIAAABSAAAAUgAAAFIAAAFfAAAAUgAAAlIAAANSAAADUgAAAlIAAANSAAAAXwAAAFwAAABcAAABUgAAA18AAABSAAABJwAAAFIAAAFSAAACXwAAAFIAAANSAAACUgAAA1IAAANSAAABUgAAA18AAABcAAABXAAAAw== + tiles: FwAAAhcAAAAXAAABFwAAARcAAAJfAAAAUgAAA1IAAAJSAAABUgAAA1IAAAJSAAABXwAAAF8AAABPAAAAXwAAABcAAAIXAAAAFwAAARcAAAEXAAADXwAAAFIAAAFSAAABUgAAAlIAAANSAAADUgAAA18AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAADXwAAAF8AAABfAAAAXwAAAF8AAABSAAABUgAAAlIAAAFfAAAAXwAAAF8AAABfAAAAXwAAAFIAAANSAAAAUgAAA1IAAAFSAAADUgAAAVIAAAFSAAADUgAAAVIAAABSAAABXwAAAE8AAABfAAAAXwAAAF8AAABSAAABUgAAACcAAABSAAACXwAAAFIAAABSAAAAXwAAAFIAAABSAAADUgAAA18AAABPAAAAXwAAAF8AAABfAAAAXwAAAFIAAAFSAAACUgAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAUgAAAl8AAABSAAABJwAAAFIAAANfAAAAUgAAAlIAAABSAAADUgAAA1IAAAFfAAAAXwAAAF8AAABPAAAAXwAAAFIAAANSAAABUgAAAVIAAABSAAACXwAAAFIAAABSAAACUgAAAFIAAANSAAADXwAAAF8AAABfAAAATwAAAF8AAABSAAAAXwAAAFIAAAMnAAAAUgAAAlIAAANSAAABUgAAAlIAAAFSAAABUgAAAikAAAApAAAAXwAAAF8AAABfAAAAUgAAAFIAAAFSAAADUgAAAVIAAABSAAABUgAAA1IAAANSAAABUgAAAVIAAAEpAAAAKQAAAF8AAABfAAAAXwAAAFIAAAJSAAACUgAAAScAAABSAAAAXwAAAFIAAAJSAAACUgAAAFIAAAFSAAADKQAAACkAAABfAAAAXwAAAF8AAABSAAACXwAAAFIAAAMnAAAAUgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAAAUgAAAFIAAANSAAADUgAAA1IAAAFSAAABUgAAA1IAAANSAAAAUgAAAFwAAABcAAABXAAAAVIAAAJSAAAAUgAAAScAAABSAAACUgAAAFIAAABSAAAAUgAAAVIAAANSAAAAUgAAAFIAAABfAAAAXAAAAVwAAAFSAAACUgAAA1IAAANSAAADUgAAAlIAAANfAAAAUgAAAVIAAAFSAAAAUgAAAFIAAANSAAADXwAAAFwAAABcAAACUgAAAF8AAABSAAABJwAAAFIAAANSAAABXwAAAFIAAABSAAAAUgAAAlIAAANSAAAAUgAAA18AAABcAAADXAAAAA== -1,1: ind: -1,1 - tiles: XwAAAF8AAABFAAABRQAAAkUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAAAXAAADFwAAAV8AAABfAAAARQAAA0UAAANFAAACXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAE8AAABfAAAAFwAAAxcAAABfAAAAXwAAAF8AAABFAAACRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAA0UAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAABUgAAAFIAAANSAAACUgAAAF8AAABfAAAARQAAAUUAAAFFAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAAUgAAAF8AAABWAAACVgAAAFIAAABfAAAAXwAAAEUAAAJFAAABRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABWAAADVgAAAFYAAANSAAABFwAAAl8AAABFAAACRQAAA0UAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFYAAAJWAAAAUgAAAxcAAAJfAAAARQAAAEUAAABFAAADXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABWAAADVgAAAlYAAAFFAAAAXwAAAEUAAAJFAAACXwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABWAAAAXwAAAFYAAABWAAADRQAAAF8AAABFAAACRQAAAkUAAANfAAAAXwAAAE8AAABPAAAAXwAAAF8AAABSAAABVgAAAFYAAABWAAAAVgAAAUUAAANfAAAARQAAAkUAAABFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAAVYAAAFWAAADVgAAAVYAAAFFAAACRQAAAUUAAAJFAAAARQAAA0kAAAFJAAADSQAAAUkAAAJJAAADXwAAAFIAAABSAAACUgAAAVIAAAJSAAADRQAAAF8AAABFAAABRQAAA0UAAAJJAAABSQAAAUkAAANJAAABSQAAAl8AAABfAAAAXwAAAF8AAABfAAAAUgAAAEUAAAFfAAAARQAAA0UAAANFAAACSQAAA0kAAAFJAAABSQAAAEkAAAJfAAAAUgAAAVIAAAJSAAABUgAAAlIAAANfAAAAXwAAAEUAAAFFAAADRQAAA0kAAAFJAAABSQAAAkkAAABJAAABXwAAAFIAAAJSAAABUgAAA1IAAANSAAAARQAAAEUAAAJFAAAARQAAAkUAAANFAAACRQAAAUUAAAFFAAADRQAAA1IAAABSAAAAUgAAACcAAAAnAAAAUgAAAQ== + tiles: XwAAAF8AAABFAAACRQAAAEUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAAAXAAADFwAAAl8AAABfAAAARQAAAUUAAAJFAAACXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAE8AAABfAAAAFwAAARcAAANfAAAAXwAAAF8AAABFAAADRQAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAAAUgAAA1IAAANSAAAAUgAAAl8AAABfAAAARQAAAkUAAANFAAACXwAAAF8AAABfAAAATwAAAE8AAABfAAAAUgAAAV8AAABWAAABVgAAA1IAAANfAAAAXwAAAEUAAAFFAAACRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABWAAAAVgAAA1YAAANSAAACFwAAAV8AAABFAAADRQAAA0UAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFYAAAFWAAADUgAAARcAAAJfAAAARQAAAEUAAABFAAADXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABWAAADVgAAAVYAAABFAAACXwAAAEUAAABFAAACXwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABWAAAAXwAAAFYAAAJWAAACRQAAAF8AAABFAAACRQAAAUUAAAJfAAAAXwAAAE8AAABPAAAAXwAAAF8AAABSAAABVgAAA1YAAAJWAAADVgAAAEUAAABfAAAARQAAA0UAAANFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAAVYAAABWAAAAVgAAA1YAAANFAAAARQAAAUUAAAJFAAACRQAAAkkAAAJJAAACSQAAAEkAAAFJAAAAXwAAAFIAAAFSAAADUgAAAlIAAANSAAABRQAAAF8AAABFAAAARQAAAkUAAABJAAABSQAAA0kAAABJAAAASQAAAV8AAABfAAAAXwAAAF8AAABfAAAAUgAAAkUAAANfAAAARQAAAkUAAAFFAAABSQAAA0kAAANJAAACSQAAAEkAAAFfAAAAUgAAA1IAAAJSAAADUgAAAFIAAANfAAAAXwAAAEUAAAJFAAADRQAAA0kAAABJAAADSQAAAkkAAAJJAAACXwAAAFIAAAFSAAACUgAAAlIAAAJSAAABRQAAAEUAAAFFAAADRQAAAUUAAABFAAACRQAAAUUAAABFAAAARQAAAFIAAAFSAAABUgAAAycAAAAnAAAAUgAAAg== 0,2: ind: 0,2 - tiles: UgAAA18AAABSAAADUgAAAlIAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAABXAAAA1IAAAFSAAADUgAAACcAAABSAAAAUgAAAVIAAAInAAAAJwAAACcAAAAnAAAAJwAAAFIAAAFfAAAAXwAAAF8AAABSAAACXwAAAFIAAAJSAAADUgAAAl8AAABSAAADUgAAAlIAAAFSAAABUgAAA1IAAABSAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAAl8AAABfAAAAUgAAAlUAAAFVAAAAVQAAAlUAAANVAAACUgAAAF8AAABfAAAAXwAAAB4AAANfAAAAXwAAAFIAAAFfAAAAXwAAAFIAAABVAAACVQAAAlUAAAJVAAACVQAAAlIAAABfAAAAXwAAAF8AAABfAAAAHgAAAlIAAAMnAAAAUgAAAV8AAABSAAABVQAAA1UAAAJVAAACVQAAA1UAAANSAAADXwAAAE8AAABfAAAAXwAAAF8AAABSAAACXwAAAFIAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAFfAAAAXwAAACcAAABSAAACXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAAAeAAABHgAAA1IAAANSAAABXwAAAF8AAABfAAAATwAAAE8AAABFAAADRQAAA0UAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAADQAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAADQAAAA0AAAANAAAADQAAABfAAAATwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAAA0AAAANAAAADQAAAA0AAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAFwAAANcAAACXAAAA1wAAAJfAAAATwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABcAAAAXAAAAlwAAABcAAAAXwAAAF8AAABPAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: UgAAA18AAABSAAADUgAAAFIAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAABXAAAAFIAAAFSAAABUgAAAScAAABSAAABUgAAAFIAAAInAAAAJwAAACcAAAAnAAAAJwAAAFIAAANfAAAAXwAAAF8AAABSAAABXwAAAFIAAAFSAAAAUgAAAF8AAABSAAADUgAAA1IAAAJSAAABUgAAA1IAAABSAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAAF8AAABfAAAAUgAAAFUAAABVAAACVQAAAFUAAAFVAAACUgAAA18AAABfAAAAXwAAAB4AAANfAAAAXwAAAFIAAABfAAAAXwAAAFIAAANVAAAAVQAAA1UAAAJVAAADVQAAAlIAAANfAAAAXwAAAF8AAABfAAAAHgAAA1IAAAInAAAAUgAAAF8AAABSAAACVQAAA1UAAAJVAAACVQAAAlUAAAFSAAACXwAAAE8AAABfAAAAXwAAAF8AAABSAAAAXwAAAFIAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAABfAAAAXwAAACcAAABSAAADXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAAAeAAABHgAAAVIAAAFSAAAAXwAAAF8AAABfAAAATwAAAE8AAABFAAABRQAAA0UAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAADQAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAADQAAAA0AAAANAAAADQAAABfAAAATwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAAA0AAAANAAAADQAAAA0AAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAFwAAAFcAAAAXAAAAFwAAANfAAAATwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABcAAACXAAAAVwAAABcAAAAXwAAAF8AAABPAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== -1,2: ind: -1,2 - tiles: RQAAAEUAAAFFAAABRQAAAEUAAABFAAABRQAAA0UAAAFFAAAARQAAA18AAABSAAAAUgAAACcAAAAnAAAAUgAAA0UAAAFFAAACRQAAAEUAAABFAAADRQAAAkUAAAFFAAADRQAAA0UAAABSAAACUgAAAVIAAABSAAABUgAAAlIAAAJFAAACXwAAAF8AAABfAAAAXwAAAEUAAAJFAAACRQAAAkUAAABFAAADXwAAAFIAAANSAAACUgAAAFIAAAJSAAADRQAAAF8AAAApAAAAKQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFfAAAAKQAAACkAAAApAAAAXwAAAE8AAABfAAAATwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAB4AAABFAAABXwAAACkAAAApAAAAKQAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAAAeAAABRQAAAF8AAAApAAAAKQAAACkAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJfAAAAKQAAACkAAAApAAAAXwAAABcAAAIXAAAAFwAAAxcAAAIXAAADXwAAAF8AAABfAAAAXwAAAB4AAAFFAAACXwAAACkAAAApAAAAKQAAAF8AAAAXAAADFwAAAhcAAAEXAAAAFwAAA18AAABPAAAAXwAAAF8AAABfAAAARQAAA18AAAApAAAAKQAAACkAAABfAAAAFwAAABcAAAEXAAABFwAAAxcAAABfAAAAXwAAAE8AAABfAAAAXwAAAEUAAAJfAAAAKQAAACkAAAApAAAAXwAAABcAAAIXAAABFwAAABcAAAIXAAADXwAAAF8AAABfAAAAXwAAAE8AAABFAAACXwAAACkAAAApAAAAKQAAAF8AAAAXAAACFwAAAhcAAAEXAAAAFwAAAl8AAABfAAAAXwAAAF8AAABfAAAARQAAAF8AAAApAAAAKQAAACkAAABfAAAAFwAAAhcAAAMXAAACFwAAAxcAAAJfAAAATwAAAF8AAABfAAAAXwAAAEUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACXwAAAE8AAABPAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAE8AAABPAAAARQAAAUUAAABFAAADRQAAAUUAAABFAAACXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: RQAAA0UAAAFFAAAARQAAAkUAAABFAAADRQAAAEUAAAJFAAACRQAAAV8AAABSAAACUgAAAScAAAAnAAAAUgAAA0UAAABFAAABRQAAAEUAAAJFAAAARQAAAkUAAANFAAACRQAAAUUAAAFSAAAAUgAAAFIAAABSAAAAUgAAA1IAAANFAAACXwAAAF8AAABfAAAAXwAAAEUAAABFAAADRQAAAUUAAANFAAACXwAAAFIAAAFSAAABUgAAAFIAAAFSAAABRQAAAl8AAAApAAAAKQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABfAAAAKQAAACkAAAApAAAAXwAAAE8AAABfAAAATwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAB4AAANFAAAAXwAAACkAAAApAAAAKQAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAAAeAAADRQAAA18AAAApAAAAKQAAACkAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFfAAAAKQAAACkAAAApAAAAXwAAABcAAAMXAAAAFwAAAhcAAAAXAAAAXwAAAF8AAABfAAAAXwAAAB4AAANFAAAAXwAAACkAAAApAAAAKQAAAF8AAAAXAAAAFwAAARcAAAIXAAABFwAAAV8AAABPAAAAXwAAAF8AAABfAAAARQAAAV8AAAApAAAAKQAAACkAAABfAAAAFwAAAxcAAAMXAAAAFwAAAhcAAANfAAAAXwAAAE8AAABfAAAAXwAAAEUAAAJfAAAAKQAAACkAAAApAAAAXwAAABcAAAAXAAADFwAAARcAAAIXAAABXwAAAF8AAABfAAAAXwAAAE8AAABFAAADXwAAACkAAAApAAAAKQAAAF8AAAAXAAACFwAAAhcAAAEXAAACFwAAAl8AAABfAAAAXwAAAF8AAABfAAAARQAAA18AAAApAAAAKQAAACkAAABfAAAAFwAAARcAAAAXAAACFwAAARcAAAJfAAAATwAAAF8AAABfAAAAXwAAAEUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAAXwAAAE8AAABPAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAE8AAABPAAAARQAAAUUAAABFAAABRQAAAkUAAAJFAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== 1,2: ind: 1,2 - tiles: XAAAAF8AAABPAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAATwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAATwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXAAAAl8AAABcAAADXwAAAFwAAANcAAACXAAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFwAAABcAAADXAAAAFwAAAFfAAAAXAAAA18AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXAAAAiIAAAA3AAAAXAAAAlwAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXAAAAVwAAAEiAAAAIgAAAF8AAABcAAAAXAAAAV8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXAAAAjcAAABfAAAAXAAAA1wAAAJfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABcAAACXAAAAl8AAABcAAADXAAAAl8AAABcAAACXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXAAAA18AAABcAAAAXwAAAF8AAABcAAADXAAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAATwAAAF8AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAATwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: XAAAAV8AAABPAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAATwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAATwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXAAAAl8AAABcAAADXwAAAFwAAABcAAADXAAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFwAAANcAAADXAAAAVwAAANfAAAAXAAAAV8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXAAAAyIAAAI3AAAAXAAAAFwAAAFfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXAAAAVwAAAAiAAADIgAAAl8AAABcAAACXAAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXAAAATcAAABfAAAAXAAAA1wAAANfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABcAAACXAAAA18AAABcAAABXAAAAF8AAABcAAACXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXAAAAl8AAABcAAAAXwAAAF8AAABcAAADXAAAAl8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAATwAAAF8AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAATwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -2,2: ind: -2,2 - tiles: RQAAAEUAAAFFAAADRQAAA0UAAAFFAAACRQAAA08AAABFAAAARQAAAUUAAAJFAAAARQAAA0UAAANFAAAARQAAAkUAAANFAAAARQAAAUUAAAJFAAACRQAAAEUAAANFAAACRQAAAUUAAANFAAADRQAAAUUAAANFAAACRQAAA0UAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAA18AAABFAAAAKQAAACkAAAApAAAAXwAAAEUAAANFAAADFwAAAhcAAAJfAAAAFwAAAxcAAAFfAAAAXwAAAF8AAABfAAAARQAAAEUAAANFAAAARQAAAEUAAAJFAAADRQAAAhcAAAEXAAABXwAAABcAAAAXAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAANfAAAARQAAAUUAAAIXAAAAFwAAAxcAAAMXAAACFwAAA18AAABfAAAAXwAAAF8AAAAXAAAAFwAAARcAAAIXAAABXwAAAEUAAAFFAAABFwAAARcAAAJfAAAAFwAAARcAAAJfAAAAXwAAAF8AAABfAAAAFwAAABcAAAMXAAADFwAAAl8AAABFAAAARQAAAxcAAAIXAAABXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAABcAAAIXAAACFwAAARcAAAJfAAAARQAAAkUAAAIXAAAAFwAAAF8AAABfAAAAXAAAA18AAABPAAAAXwAAAF8AAAAXAAAAFwAAAhcAAAEXAAACXwAAAEUAAAFFAAADXwAAAF8AAABfAAAAXAAAAl8AAABfAAAAXwAAAF8AAABfAAAAFwAAARcAAAEXAAACFwAAA18AAABFAAABRQAAAkUAAAJfAAAAXwAAAFwAAABcAAAAXwAAAF8AAABfAAAAXwAAABcAAAMXAAAAFwAAAxcAAANfAAAARQAAA0UAAAJFAAADXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAABcAAABfAAAAXwAAAEUAAAJFAAAARQAAA18AAAAmAAAAJgAAACYAAABfAAAAXwAAAF8AAABfAAAAXAAAAVwAAABcAAAAXAAAA18AAABFAAACRQAAA0UAAABfAAAAJgAAACYAAAAmAAAAXwAAAF8AAABfAAAAXwAAAFwAAAFcAAACXAAAAVwAAAJFAAADRQAAAkUAAANFAAACRQAAAiYAAAAmAAAAJgAAAF8AAABfAAAAXwAAAF8AAABcAAACXAAAAFwAAAFcAAACXwAAAEUAAABFAAABRQAAAl8AAAAmAAAAJgAAACYAAABfAAAATwAAAF8AAABfAAAAXAAAA1wAAAFcAAADXAAAAF8AAABFAAACRQAAAA== + tiles: RQAAAEUAAABFAAABRQAAAkUAAABFAAACRQAAAk8AAABFAAACRQAAAUUAAAJFAAADRQAAAEUAAAJFAAAARQAAAkUAAAFFAAACRQAAAEUAAABFAAACRQAAAEUAAANFAAAARQAAAUUAAANFAAADRQAAA0UAAAJFAAAARQAAAkUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAA18AAABFAAADKQAAACkAAAApAAAAXwAAAEUAAABFAAACFwAAARcAAAFfAAAAFwAAAhcAAAJfAAAAXwAAAF8AAABfAAAARQAAA0UAAAJFAAADRQAAA0UAAAJFAAADRQAAABcAAAAXAAACXwAAABcAAAEXAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAJfAAAARQAAA0UAAAMXAAABFwAAARcAAAMXAAACFwAAAl8AAABfAAAAXwAAAF8AAAAXAAACFwAAAxcAAAEXAAADXwAAAEUAAANFAAACFwAAARcAAAJfAAAAFwAAABcAAAJfAAAAXwAAAF8AAABfAAAAFwAAAxcAAAAXAAACFwAAAl8AAABFAAAARQAAAxcAAAMXAAADXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAABcAAAEXAAABFwAAAxcAAAFfAAAARQAAAUUAAAMXAAACFwAAAF8AAABfAAAAXAAAAV8AAABPAAAAXwAAAF8AAAAXAAAAFwAAAhcAAAIXAAACXwAAAEUAAAJFAAABXwAAAF8AAABfAAAAXAAAAl8AAABfAAAAXwAAAF8AAABfAAAAFwAAAhcAAAIXAAABFwAAAl8AAABFAAABRQAAAUUAAAJfAAAAXwAAAFwAAANcAAADXwAAAF8AAABfAAAAXwAAABcAAAEXAAABFwAAARcAAANfAAAARQAAAUUAAAFFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAABcAAAJfAAAAXwAAAEUAAANFAAADRQAAAl8AAAAmAAAAJgAAACYAAABfAAAAXwAAAF8AAABfAAAAXAAAA1wAAAJcAAACXAAAA18AAABFAAABRQAAA0UAAAJfAAAAJgAAACYAAAAmAAAAXwAAAF8AAABfAAAAXwAAAFwAAAJcAAAAXAAAAVwAAAJFAAADRQAAAEUAAABFAAACRQAAAyYAAAAmAAAAJgAAAF8AAABfAAAAXwAAAF8AAABcAAADXAAAA1wAAANcAAACXwAAAEUAAAJFAAAARQAAAV8AAAAmAAAAJgAAACYAAABfAAAATwAAAF8AAABfAAAAXAAAAVwAAAJcAAABXAAAAF8AAABFAAABRQAAAQ== -2,1: ind: -2,1 - tiles: XwAAAE8AAABfAAAAXAAAAlwAAAFcAAACXAAAAVwAAANcAAACXAAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAFwAAANcAAADXAAAAVwAAANcAAADXAAAAlwAAAJfAAAATwAAAF8AAABfAAAAXwAAAF8AAAApAAAAKQAAAF8AAABcAAADXAAAAFwAAAFcAAADXAAAA1wAAANcAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAKQAAACkAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAACkAAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAATwAAAE8AAABfAAAATwAAAF8AAABPAAAATwAAAF8AAABPAAAATwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAFwAAAxcAAABcAAAAXAAAAl8AAAAjAAAAIwAAACMAAAAjAAAAIwAAACMAAABfAAAAXwAAAE8AAABfAAAAFwAAARcAAAEXAAAAXAAAAlwAAAJcAAAAXwAAACMAAAAjAAAAIwAAACMAAAAjAAAAXwAAAE8AAABfAAAAXwAAAEUAAABFAAACFwAAA1wAAANcAAADXAAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABFAAADRQAAABcAAAFcAAACXAAAAlwAAAJfAAAAXwAAAEUAAAJFAAAAXwAAAEUAAAJfAAAATwAAAE8AAABfAAAARQAAAEUAAAEXAAACXAAAAlwAAABcAAADXwAAAF8AAABFAAACXwAAAEUAAABFAAADXwAAAF8AAABPAAAAXwAAAEUAAABFAAAAFwAAAlwAAAJcAAABXwAAAF8AAABFAAACRQAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABFAAADRQAAAhcAAABcAAABXAAAAF8AAABfAAAAXwAAAEUAAANFAAACRQAAA18AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAEUAAAFFAAACRQAAA0UAAABPAAAATwAAAE8AAABPAAAARQAAAEUAAAJPAAAATwAAAEUAAAJFAAABRQAAAw== + tiles: XwAAAE8AAABfAAAAXAAAA1wAAANcAAADXAAAA1wAAAJcAAADXAAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAFwAAANcAAADXAAAAlwAAAFcAAABXAAAAFwAAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAAApAAAAKQAAAF8AAABcAAAAXAAAA1wAAAJcAAACXAAAA1wAAAJcAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAKQAAACkAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAACkAAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAATwAAAE8AAABfAAAATwAAAF8AAABPAAAATwAAAF8AAABPAAAATwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAADFwAAAhcAAAFcAAADXAAAAl8AAAAjAAAAIwAAACMAAAAjAAAAIwAAACMAAABfAAAAXwAAAE8AAABfAAAAFwAAARcAAAIXAAADXAAAAVwAAABcAAADXwAAACMAAAAjAAAAIwAAACMAAAAjAAAAXwAAAE8AAABfAAAAXwAAAEUAAABFAAABFwAAAFwAAABcAAADXAAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABFAAACRQAAABcAAAFcAAACXAAAAVwAAAJfAAAAXwAAAEUAAABFAAABXwAAAEUAAANfAAAATwAAAE8AAABfAAAARQAAAkUAAAEXAAADXAAAAFwAAANcAAABXwAAAF8AAABFAAABXwAAAEUAAAFFAAACXwAAAF8AAABPAAAAXwAAAEUAAABFAAAAFwAAAlwAAAFcAAACXwAAAF8AAABFAAACRQAAA18AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABFAAACRQAAABcAAANcAAADXAAAA18AAABfAAAAXwAAAEUAAAJFAAADRQAAA18AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAEUAAAJFAAAARQAAA0UAAABPAAAATwAAAE8AAABPAAAARQAAAUUAAAFPAAAATwAAAEUAAABFAAADRQAAAw== -2,-2: ind: -2,-2 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAA== -3,0: ind: -3,0 - tiles: XwAAAEkAAABJAAABSQAAAEkAAANfAAAARQAAAkUAAAFFAAAARgAAAkYAAAFGAAAARQAAA0UAAANFAAAARQAAA18AAABJAAAASQAAAkkAAAJJAAAARQAAAEUAAANFAAACRQAAAkYAAANGAAABRgAAA0UAAAJFAAACRQAAAkUAAANfAAAASQAAAEkAAABJAAADSQAAAV8AAABFAAABRQAAAV8AAABFAAAARQAAAkUAAAJfAAAARQAAAUUAAANFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAFFAAABRQAAAUUAAABFAAADRQAAA0UAAABFAAAARQAAAUUAAAFFAAAARQAAAkUAAAJFAAAARQAAA0UAAABFAAADRQAAA0UAAANFAAADRQAAAkUAAAJFAAACRQAAAUUAAANFAAADRQAAAkUAAABFAAACRQAAA0UAAANFAAABRQAAAEUAAAFFAAAARQAAAUUAAAFFAAACRQAAAkUAAANFAAADRQAAAUUAAAFFAAADRQAAAEUAAAFFAAADRQAAAkUAAAJFAAACRQAAAUUAAAJFAAAARQAAAEUAAANFAAADRQAAA0gAAABIAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJfAAAAXwAAAEUAAAFFAAADRQAAAkUAAAJFAAAARQAAAF8AAABcAAAAXAAAAF8AAABfAAAAXwAAAEUAAAJfAAAARQAAAl8AAABFAAACRQAAAUUAAAFfAAAAXwAAAF8AAABfAAAAXAAAAFwAAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAANfAAAARQAAAUUAAAFFAAAAXwAAAF8AAABfAAAAXwAAAFwAAABcAAAAXwAAAF8AAABfAAAARQAAAUUAAAJfAAAAXwAAAEUAAAFFAAACXwAAAF8AAABfAAAATwAAAF8AAABcAAAAXAAAAF8AAABPAAAAXwAAAEUAAAFfAAAARQAAAV8AAABFAAADXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXAAAAFwAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABPAAAAXwAAAEUAAAFFAAADXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAARQAAAUUAAAJFAAADKQAAACkAAAApAAAAKQAAAA== + tiles: XwAAAEkAAAJJAAAASQAAA0kAAAFfAAAARQAAAkUAAAJFAAACRgAAAEYAAANGAAADRQAAA0UAAAFFAAACRQAAA18AAABJAAABSQAAAEkAAABJAAAARQAAAkUAAAJFAAABRQAAA0YAAANGAAAARgAAAkUAAABFAAABRQAAAEUAAABfAAAASQAAAkkAAANJAAACSQAAAF8AAABFAAAARQAAAF8AAABFAAAARQAAAEUAAAFfAAAARQAAA0UAAAFFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAAFFAAACRQAAAUUAAAJFAAADRQAAAkUAAAFFAAADRQAAA0UAAAJFAAAARQAAAEUAAANFAAABRQAAAEUAAAJFAAADRQAAA0UAAAFFAAABRQAAAEUAAAFFAAABRQAAAEUAAAFFAAAARQAAAEUAAAFFAAADRQAAA0UAAABFAAADRQAAAEUAAABFAAADRQAAAkUAAAJFAAACRQAAAUUAAANFAAACRQAAAEUAAABFAAAARQAAA0UAAABFAAADRQAAAEUAAAJFAAACRQAAA0UAAAJFAAACRQAAAEUAAABFAAABRQAAAUgAAABIAAAAXwAAAF8AAABfAAAAXwAAAEUAAABfAAAAXwAAAEUAAANFAAABRQAAAEUAAAJFAAADRQAAAl8AAABcAAAAXAAAA18AAABfAAAAXwAAAEUAAANfAAAARQAAA18AAABFAAABRQAAAUUAAAJfAAAAXwAAAF8AAABfAAAAXAAAAlwAAAFfAAAAXwAAAF8AAABfAAAARQAAA0UAAANfAAAARQAAA0UAAANFAAAAXwAAAF8AAABfAAAAXwAAAFwAAAFcAAADXwAAAF8AAABfAAAARQAAAEUAAAJfAAAAXwAAAEUAAAFFAAACXwAAAF8AAABfAAAATwAAAF8AAABcAAABXAAAAl8AAABPAAAAXwAAAEUAAAFfAAAARQAAAV8AAABFAAABXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXAAAAVwAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAFfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABPAAAAXwAAAEUAAANFAAABXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAUUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAARQAAAkUAAAJFAAABKQAAACkAAAApAAAAKQAAAA== -3,1: ind: -3,1 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAADKQAAACkAAAApAAAAKQAAAE8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAEUAAABFAAAARQAAASkAAAApAAAAKQAAACkAAABPAAAAXwAAAF8AAABPAAAAXwAAAF8AAABPAAAAXwAAAF8AAABFAAACRQAAA0UAAAApAAAAKQAAACkAAAApAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAJFAAACKQAAACkAAAApAAAAKQAAAE8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAJFAAAARQAAACkAAAApAAAAKQAAACkAAABfAAAATwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAEUAAAJFAAABRQAAAkUAAAEpAAAAKQAAACkAAAApAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAANFAAAAXwAAAF8AAAApAAAAXwAAAF4AAABfAAAAXwAAAE8AAABfAAAANQAAADUAAAA1AAAAXwAAAEUAAANFAAACRQAAAhcAAANfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAADUAAAA1AAAANQAAAF8AAABFAAADRQAAAUUAAAMXAAAAFwAAAhcAAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAAA1AAAANQAAADUAAABfAAAARQAAAEUAAAFFAAADFwAAAhcAAAEXAAADFwAAA18AAABfAAAATwAAAF8AAABfAAAAEgAAABIAAAASAAAAXwAAAEUAAANFAAADRQAAAxcAAAAXAAABFwAAAxcAAABFAAACXwAAAE8AAABfAAAAXwAAABIAAAASAAAAEgAAAF8AAABFAAADRQAAAkUAAAIXAAADFwAAARcAAAMXAAADRQAAAF8AAABfAAAAXwAAAF8AAAASAAAAEgAAABIAAABfAAAARQAAAEUAAABFAAABFwAAAhcAAAAXAAABFwAAAkUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAABRQAAARcAAAEXAAABXwAAAF8AAABfAAAAXwAAAF8AAABFAAABRQAAAkUAAAJFAAACRQAAA18AAABFAAABRQAAAkUAAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAFFAAABRQAAAUUAAANFAAABRQAAAEUAAABFAAABRQAAAUUAAAFFAAADRQAAAk8AAABPAAAATwAAAA== + tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAABKQAAACkAAAApAAAAKQAAAE8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAEUAAAFFAAAARQAAACkAAAApAAAAKQAAACkAAABPAAAAXwAAAF8AAABPAAAAXwAAAF8AAABPAAAAXwAAAF8AAABFAAABRQAAAkUAAAMpAAAAKQAAACkAAAApAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAACKQAAACkAAAApAAAAKQAAAE8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAABFAAABRQAAASkAAAApAAAAKQAAACkAAABfAAAATwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAEUAAABFAAADRQAAA0UAAAIpAAAAKQAAACkAAAApAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAJFAAABXwAAAF8AAAApAAAAXwAAAF4AAABfAAAAXwAAAE8AAABfAAAANQAAADUAAAA1AAAAXwAAAEUAAANFAAADRQAAAxcAAAJfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAADUAAAA1AAAANQAAAF8AAABFAAAARQAAAkUAAAAXAAAAFwAAARcAAAFfAAAAXgAAAF8AAABfAAAAXwAAAF8AAAA1AAAANQAAADUAAABfAAAARQAAAEUAAABFAAACFwAAAxcAAAIXAAACFwAAAl8AAABfAAAATwAAAF8AAABfAAAAEgAAABIAAAASAAAAXwAAAEUAAAJFAAADRQAAARcAAAAXAAADFwAAABcAAABFAAABXwAAAE8AAABfAAAAXwAAABIAAAASAAAAEgAAAF8AAABFAAABRQAAA0UAAAAXAAABFwAAARcAAAMXAAADRQAAAF8AAABfAAAAXwAAAF8AAAASAAAAEgAAABIAAABfAAAARQAAAUUAAAFFAAADFwAAAxcAAAEXAAABFwAAA0UAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAhcAAAEXAAADXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAEUAAAJFAAACRQAAAV8AAABFAAADRQAAAUUAAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAAFFAAABRQAAAkUAAAFFAAACRQAAAUUAAANFAAAARQAAAUUAAAFFAAABRQAAA08AAABPAAAATwAAAA== -3,2: ind: -3,2 - tiles: RQAAAUUAAAFFAAADRQAAAkUAAAFFAAABRQAAA0UAAABFAAADRQAAAEUAAABFAAABRQAAA0UAAABPAAAARQAAAEUAAAFFAAAARQAAA0UAAANFAAAARQAAAUUAAAFFAAAARQAAAkUAAAFFAAADRQAAA0UAAAJFAAABRQAAA0UAAABFAAABRQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAABXwAAAFwAAAJfAAAAXwAAAF8AAABfAAAARQAAA0UAAAJfAAAAXAAAAFwAAAJcAAAAXAAAA1wAAABcAAADXAAAAVwAAABcAAADXAAAARcAAAIXAAACFwAAAUUAAAFFAAAAXwAAAFwAAABcAAABXAAAAl8AAABcAAABXAAAAlwAAANcAAABXAAAAlwAAAIXAAADFwAAAxcAAANFAAACRQAAA18AAABcAAACXwAAAFwAAANcAAADXwAAAFwAAAJcAAAAXAAAAFwAAANcAAACFwAAAxcAAAMXAAABRQAAAkUAAAFfAAAAXAAAAFwAAANfAAAAXwAAAFwAAANcAAADXAAAAVwAAANcAAAAXAAAABcAAAAXAAACFwAAAEUAAABFAAABXwAAAFwAAAJcAAADXAAAAV8AAABfAAAAXAAAAVwAAAJcAAABXAAAAVwAAAJcAAAAXwAAABcAAAJFAAADRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAFwAAAF8AAABcAAAAXAAAAFwAAABcAAADXAAAABcAAAAXAAABRQAAA0UAAAJfAAAALwAAAC8AAAAvAAAALwAAABcAAAFfAAAAXwAAAEUAAANFAAADRQAAAV8AAABfAAAAXwAAAEUAAAJFAAACFwAAAxcAAAIXAAABFwAAAxcAAAAXAAACXwAAAEUAAAFFAAACRQAAA0UAAANFAAADRQAAAEUAAABFAAADRQAAARcAAAAXAAADLwAAAC8AAAAvAAAAFwAAARcAAABFAAACRQAAAUUAAAFFAAAARQAAAEUAAAJFAAABRQAAAUUAAAEXAAAAFwAAAC8AAAAvAAAALwAAABcAAAEXAAABRQAAAkUAAAFFAAABRQAAAkUAAABFAAABRQAAA0UAAAFFAAACXwAAABcAAAIvAAAALwAAAC8AAAAXAAAAFwAAAEUAAABFAAADRQAAAEUAAAJFAAACRQAAA0UAAANFAAABRQAAAxcAAAMXAAADFwAAAxcAAAIXAAAAFwAAARcAAABFAAABRQAAAEUAAABFAAAARQAAAUUAAAFFAAADRQAAAkUAAANfAAAAFwAAABcAAAMXAAADFwAAAhcAAAFfAAAARQAAAEUAAANFAAABRQAAAEUAAABFAAADRQAAAg== + tiles: RQAAAEUAAAJFAAACRQAAAkUAAAJFAAACRQAAAkUAAAJFAAAARQAAAUUAAANFAAACRQAAA0UAAAJPAAAARQAAA0UAAAJFAAABRQAAAUUAAAJFAAACRQAAAUUAAABFAAACRQAAAUUAAANFAAABRQAAAUUAAABFAAABRQAAAkUAAANFAAABRQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAACXwAAAFwAAANfAAAAXwAAAF8AAABfAAAARQAAAUUAAABfAAAAXAAAAVwAAABcAAADXAAAA1wAAAFcAAAAXAAAA1wAAAFcAAADXAAAARcAAAIXAAACFwAAAkUAAANFAAACXwAAAFwAAAFcAAACXAAAAF8AAABcAAAAXAAAAVwAAAFcAAACXAAAA1wAAAIXAAACFwAAABcAAAFFAAADRQAAAV8AAABcAAAAXwAAAFwAAABcAAAAXwAAAFwAAANcAAABXAAAA1wAAABcAAABFwAAARcAAAMXAAACRQAAA0UAAABfAAAAXAAAA1wAAAJfAAAAXwAAAFwAAABcAAAAXAAAAFwAAANcAAADXAAAARcAAAIXAAAAFwAAAkUAAAJFAAACXwAAAFwAAABcAAAAXAAAAF8AAABfAAAAXAAAAVwAAANcAAAAXAAAAlwAAAJcAAADXwAAABcAAAFFAAADRQAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAA18AAABcAAAAXAAAAlwAAAJcAAAAXAAAAhcAAAIXAAACRQAAAUUAAAJfAAAALwAAAC8AAAAvAAAALwAAABcAAANfAAAAXwAAAEUAAABFAAADRQAAAV8AAABfAAAAXwAAAEUAAANFAAACFwAAABcAAAEXAAABFwAAAxcAAAMXAAABXwAAAEUAAABFAAABRQAAAUUAAAJFAAADRQAAAUUAAANFAAABRQAAAxcAAAEXAAACLwAAAC8AAAAvAAAAFwAAABcAAAJFAAADRQAAAkUAAANFAAABRQAAAEUAAAFFAAAARQAAA0UAAAMXAAADFwAAAS8AAAAvAAAALwAAABcAAAMXAAAARQAAAEUAAAJFAAADRQAAAkUAAANFAAAARQAAAkUAAANFAAACXwAAABcAAAAvAAAALwAAAC8AAAAXAAADFwAAAkUAAABFAAABRQAAAEUAAABFAAADRQAAAEUAAANFAAABRQAAAhcAAAAXAAADFwAAARcAAAIXAAABFwAAAhcAAAFFAAACRQAAAEUAAAFFAAABRQAAAUUAAANFAAACRQAAAkUAAAFfAAAAFwAAABcAAAAXAAACFwAAAhcAAAJfAAAARQAAA0UAAAJFAAADRQAAAkUAAAJFAAACRQAAAA== -3,-1: ind: -3,-1 - tiles: XgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABFAAAARQAAAUUAAAJFAAACTwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAARQAAAkUAAAJFAAABRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABRQAAA18AAABfAAAAXwAAAEUAAAJFAAACRQAAAEUAAAFfAAAAXwAAAE0AAANNAAAATQAAA18AAABFAAADRQAAA0UAAAJFAAAARQAAAEUAAABFAAAARQAAA0UAAAFFAAAAXwAAAF8AAABNAAAATQAAAE0AAAJfAAAARQAAAEUAAABFAAAARQAAAkUAAAFFAAACRQAAAkUAAABFAAACRQAAA18AAABfAAAAXwAAAE0AAAFfAAAAXwAAAEUAAAJFAAABRQAAAUUAAANFAAABRQAAAkUAAAJFAAACRQAAAEUAAABfAAAAXAAAAlwAAAJcAAACXAAAA18AAABFAAAARQAAAkUAAAFFAAADRQAAAEUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAFwAAAJcAAABXAAAAlwAAABfAAAARQAAA0UAAABFAAABRQAAAUUAAAJFAAACXwAAAFwAAAFcAAAAXAAAAF8AAABcAAADXAAAAVwAAABcAAAAXAAAAkUAAAFFAAABRQAAAkUAAAFFAAACRQAAAVwAAAFcAAACXAAAAFwAAAJfAAAAXAAAAlwAAABcAAAAXAAAAV8AAABFAAAARQAAAUUAAANFAAADRQAAAkUAAAFfAAAAXAAAA1wAAAJcAAADXwAAAF8AAABfAAAASQAAA18AAABfAAAARQAAAUUAAANfAAAAXwAAAEYAAANfAAAAXwAAAF8AAABfAAAAXAAAAw== + tiles: XgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAACRQAAAkUAAABFAAABRQAAAEUAAABFAAAARQAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAUUAAABFAAAARQAAAUUAAANFAAACRQAAA0UAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAANFAAABRQAAAkUAAAFFAAACRQAAA0UAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAACRQAAAUUAAABFAAACRQAAAUUAAANFAAABRQAAAF8AAABFAAABRQAAAkUAAABFAAACTwAAAF8AAABFAAACRQAAA0UAAABFAAADRQAAAUUAAAJFAAADRQAAAUUAAAJfAAAARQAAA0UAAANFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAF8AAABfAAAAXwAAAEUAAAFFAAABRQAAAUUAAAJfAAAAXwAAAE0AAABNAAADTQAAA18AAABFAAABRQAAAEUAAABFAAADRQAAAUUAAAJFAAAARQAAA0UAAAFFAAAAXwAAAF8AAABNAAACTQAAA00AAANfAAAARQAAA0UAAAFFAAAARQAAAkUAAANFAAABRQAAAkUAAAJFAAACRQAAAl8AAABfAAAAXwAAAE0AAANfAAAAXwAAAEUAAAJFAAACRQAAAUUAAAFFAAADRQAAAkUAAAJFAAABRQAAAkUAAABfAAAAXAAAAlwAAABcAAABXAAAA18AAABFAAAARQAAAEUAAABFAAADRQAAAUUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAFwAAAJcAAABXAAAAlwAAANfAAAARQAAAkUAAAJFAAADRQAAAkUAAABFAAADXwAAAFwAAAFcAAACXAAAAV8AAABcAAABXAAAAFwAAAJcAAAAXAAAAEUAAAFFAAABRQAAAkUAAAFFAAACRQAAAlwAAAFcAAABXAAAA1wAAAJfAAAAXAAAAVwAAANcAAAAXAAAAV8AAABFAAADRQAAAkUAAANFAAABRQAAA0UAAAJfAAAAXAAAAlwAAAJcAAADXwAAAF8AAABfAAAASQAAA18AAABfAAAARQAAAUUAAAJfAAAAXwAAAEYAAANfAAAAXwAAAF8AAABfAAAAXAAAAQ== -4,-1: ind: -4,-1 - tiles: XwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXgAAAAAAAABeAAAAXgAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAANFAAAARQAAAF8AAABPAAAAXwAAAE8AAABfAAAAXwAAAE8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAA0UAAANfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAAJFAAAARQAAAl8AAABcAAACXwAAAFwAAAFfAAAAXAAAAl8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAACRQAAAUUAAANcAAADXwAAAF8AAABcAAACXAAAA18AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAA0UAAAFFAAADXwAAAFwAAAJfAAAAXwAAAFwAAABfAAAAXwAAAE8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAANFAAAARQAAA18AAABfAAAAXAAAAFwAAAJfAAAAXAAAA18AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAADRQAAA0UAAABfAAAAXwAAAF8AAABfAAAAXAAAAl8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAUUAAAFFAAACXwAAAFwAAAFfAAAAXwAAAFwAAAFfAAAAXwAAAE8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAANFAAADRQAAA18AAABfAAAAXAAAAl8AAABcAAABXAAAAl8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAABRQAAAUUAAABfAAAAXAAAA18AAABcAAADXAAAAF8AAABfAAAAXwAAAA== + tiles: XwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXgAAAAAAAABeAAAAXgAAAF8AAABfAAAAXwAAAEUAAAJFAAABRQAAAEUAAAJFAAABRQAAAUUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAkUAAAFFAAABRQAAAEUAAANFAAADRQAAAV8AAABPAAAAXwAAAE8AAABfAAAAXwAAAE8AAABfAAAARQAAA0UAAAFFAAACRQAAAkUAAABFAAADRQAAAEUAAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAANFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAAFFAAACRQAAAV8AAABcAAAAXwAAAFwAAABfAAAAXAAAA18AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAACRQAAA0UAAAFcAAADXwAAAF8AAABcAAADXAAAAl8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAEUAAABFAAACXwAAAFwAAAJfAAAAXwAAAFwAAAFfAAAAXwAAAE8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAAJFAAADRQAAAV8AAABfAAAAXAAAAlwAAANfAAAAXAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAAARQAAAEUAAAFfAAAAXwAAAF8AAABfAAAAXAAAAV8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAUUAAAFFAAACXwAAAFwAAAJfAAAAXwAAAFwAAABfAAAAXwAAAE8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAANFAAADRQAAAF8AAABfAAAAXAAAA18AAABcAAADXAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAAARQAAAkUAAAFfAAAAXAAAAF8AAABcAAABXAAAAF8AAABfAAAAXwAAAA== -4,0: ind: -4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAF8AAABFAAACRQAAAkUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAkUAAAJFAAACXwAAAF8AAABPAAAAXwAAAF8AAABPAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAABFAAABRQAAAl8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAA0UAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAEUAAAFFAAAARQAAAkUAAAJFAAACRQAAAUUAAANFAAACRQAAA18AAABfAAAAXwAAAF8AAABFAAACRQAAAUUAAANfAAAARQAAAUUAAABFAAAARQAAA0UAAANFAAACRQAAAUUAAABFAAABRQAAAV8AAABFAAAARQAAA0UAAAJFAAACXwAAAF8AAABFAAADRQAAAkUAAABFAAAARQAAAEUAAABFAAABRQAAAkUAAAJFAAADRQAAAkUAAANFAAACRQAAAV8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAACXwAAAEgAAABIAAAASAAAAEUAAABFAAAASAAAAEgAAABfAAAATwAAAE8AAABfAAAAXwAAAEUAAAJFAAACRQAAA18AAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAEUAAANfAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAEUAAAE7AAAAOwAAADsAAABfAAAARQAAAEUAAABFAAADXwAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABFAAABOwAAADsAAAA7AAAAXwAAAEUAAABFAAAARQAAA18AAABfAAAAXwAAAF8AAABfAAAAXAAAAFwAAABcAAAARQAAAjsAAAA7AAAAOwAAAF8AAABFAAAARQAAAkUAAABcAAADXAAAAlwAAANcAAADXwAAAFwAAABcAAAAXAAAAEUAAAM7AAAAOwAAADsAAABfAAAARQAAAEUAAABFAAADXAAAAFwAAAFcAAABXAAAAF8AAABfAAAAXwAAAF8AAABFAAADOwAAADsAAAA7AAAAXwAAAEUAAAFFAAABRQAAAlwAAAFcAAABXAAAAlwAAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAAFcAAABXAAAA1wAAANcAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAF8AAABFAAACRQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAEUAAABFAAACXwAAAF8AAABPAAAAXwAAAF8AAABPAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAANFAAACRQAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAUUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAkUAAABFAAABRQAAA0UAAABFAAADRQAAAkUAAANFAAADRQAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAA0UAAAFfAAAARQAAA0UAAAJFAAABRQAAAUUAAAJFAAACRQAAAkUAAABFAAABRQAAA18AAABFAAADRQAAAUUAAABFAAADXwAAAF8AAABFAAADRQAAAUUAAABFAAAARQAAA0UAAAFFAAABRQAAA0UAAABFAAABRQAAA0UAAANFAAACRQAAA18AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAANFAAAAXwAAAEgAAABIAAAASAAAAEUAAAFFAAACSAAAAEgAAABfAAAATwAAAE8AAABfAAAAXwAAAEUAAAJFAAAARQAAA18AAABcAAABXAAAA1wAAAFcAAACXAAAA1wAAANcAAADXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAUUAAANfAAAAXAAAAlwAAABcAAADXAAAAVwAAANcAAADXAAAA0UAAAA7AAAAOwAAADsAAABfAAAARQAAAUUAAAFFAAACXwAAAFwAAANcAAABXAAAA1wAAAFcAAACXAAAAVwAAAFFAAABOwAAADsAAAA7AAAAXwAAAEUAAABFAAADRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXAAAAVwAAANcAAABRQAAATsAAAA7AAAAOwAAAF8AAABFAAADRQAAA0UAAAJcAAADXAAAAlwAAANcAAABXwAAAFwAAANcAAACXAAAAkUAAAM7AAAAOwAAADsAAABfAAAARQAAAEUAAAFFAAAAXAAAAVwAAAJcAAAAXAAAAl8AAABfAAAAXwAAAF8AAABFAAAAOwAAADsAAAA7AAAAXwAAAEUAAAFFAAACRQAAAVwAAAJcAAACXAAAAlwAAANfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAA0UAAAFcAAABXAAAAFwAAABcAAABXwAAAF8AAABfAAAAXwAAAA== -4,1: ind: -4,1 - tiles: TwAAAF8AAABPAAAATwAAAF8AAABFAAACRQAAAEUAAAFcAAAAXAAAAFwAAAJcAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAARQAAAkUAAANFAAABXwAAABcAAAEXAAACFwAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAADRQAAAl8AAAAXAAACFwAAARcAAABfAAAATwAAAF8AAABPAAAARQAAA18AAABPAAAAXwAAAF8AAABFAAABRQAAAUUAAAFfAAAAFwAAABcAAAMXAAAAXwAAAF8AAABfAAAAXwAAAEUAAABfAAAATwAAAF8AAABfAAAARQAAAUUAAANFAAABFwAAARcAAAEXAAADFwAAAl8AAABfAAAAXwAAAF8AAABFAAAAXwAAAF8AAABPAAAAXwAAAF8AAABFAAACRQAAAxcAAAAXAAADFwAAABcAAABfAAAAXwAAAF8AAABfAAAARQAAAV8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFfAAAAXwAAAE8AAABfAAAAXwAAAEUAAAFFAAABXwAAAEUAAAJfAAAAHgAAAx4AAAEeAAABHgAAAl8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAARQAAAUUAAABFAAADXwAAAB4AAAEeAAACHgAAAB4AAANfAAAARQAAAl8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABfAAAARQAAAl8AAAAeAAABHgAAAx4AAAEeAAABXwAAAEUAAANfAAAATwAAAF8AAABfAAAARQAAA0UAAAJFAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAeAAACXwAAAF8AAABFAAACXwAAAE8AAABfAAAAXwAAAEUAAANFAAAARQAAA18AAABFAAACRQAAAkUAAAJFAAADRQAAA0UAAABFAAACRQAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAUUAAABfAAAARQAAA0UAAAFFAAABRQAAA0UAAAFFAAACRQAAAV8AAABfAAAATwAAAF8AAABfAAAARQAAA0UAAABFAAAAXwAAAEUAAABFAAAARQAAA0UAAANFAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAADRQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABRQAAAF8AAABFAAADRQAAAUUAAABFAAAARQAAAEUAAABFAAADRQAAA0UAAANFAAADRQAAAEUAAANFAAADRQAAAQ== + tiles: TwAAAF8AAABPAAAATwAAAF8AAABFAAADRQAAA0UAAAJcAAABXAAAA1wAAAFcAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAARQAAAkUAAAFFAAACXwAAABcAAAMXAAADFwAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAAARQAAA18AAAAXAAADFwAAAhcAAANfAAAATwAAAF8AAABPAAAARQAAAF8AAABPAAAAXwAAAF8AAABFAAABRQAAA0UAAABfAAAAFwAAABcAAAIXAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJfAAAATwAAAF8AAABfAAAARQAAAUUAAAFFAAABFwAAARcAAAIXAAAAFwAAAF8AAABfAAAAXwAAAF8AAABFAAAAXwAAAF8AAABPAAAAXwAAAF8AAABFAAAARQAAARcAAAMXAAABFwAAARcAAANfAAAAXwAAAF8AAABfAAAARQAAAV8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJfAAAAXwAAAE8AAABfAAAAXwAAAEUAAAFFAAAAXwAAAEUAAAJfAAAAHgAAAB4AAAEeAAACHgAAA18AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAARQAAAEUAAANFAAACXwAAAB4AAAAeAAADHgAAAR4AAAJfAAAARQAAA18AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAAJfAAAARQAAAF8AAAAeAAABHgAAAB4AAAIeAAADXwAAAEUAAANfAAAATwAAAF8AAABfAAAARQAAA0UAAAJFAAACXwAAAF8AAABfAAAAXwAAAF8AAAAeAAABXwAAAF8AAABFAAACXwAAAE8AAABfAAAAXwAAAEUAAAJFAAABRQAAAF8AAABFAAAARQAAAUUAAAJFAAAARQAAAUUAAAFFAAACRQAAAl8AAABfAAAAXwAAAF8AAABFAAAARQAAAkUAAAJfAAAARQAAAUUAAABFAAADRQAAA0UAAANFAAADRQAAA18AAABfAAAATwAAAF8AAABfAAAARQAAA0UAAABFAAAAXwAAAEUAAANFAAABRQAAA0UAAANFAAABRQAAAUUAAABFAAACXwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABRQAAAF8AAABFAAACRQAAA0UAAAFFAAADRQAAAUUAAANFAAAARQAAA0UAAANFAAADRQAAAUUAAANFAAADRQAAAg== -4,2: ind: -4,2 - tiles: RQAAA0UAAAJFAAABRQAAAUUAAAJFAAADRQAAAkUAAANFAAACRQAAAkUAAAJFAAABRQAAA0UAAAFFAAACRQAAAkUAAANfAAAARQAAAEUAAABFAAACRQAAAEUAAAJFAAABRQAAAkUAAAJFAAAARQAAAEUAAAFFAAADRQAAAEUAAAFFAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAABRQAAAV8AAABfAAAAXwAAAF8AAAAvAAAALwAAAF8AAABFAAADXwAAAF8AAABfAAAATwAAAF8AAABFAAAARQAAAEUAAAJFAAACXwAAABcAAAAXAAADLwAAAC8AAABfAAAARQAAAl8AAABPAAAATwAAAF8AAABfAAAARQAAAkUAAABFAAAARQAAAV8AAAAXAAAAFwAAAC8AAAAvAAAARQAAA0UAAAFfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAUUAAAFfAAAAFwAAAxcAAAIvAAAALwAAAF8AAABFAAADXwAAAD0AAABFAAADPQAAAF8AAABFAAADRQAAAkUAAABfAAAAXwAAAF8AAAAXAAADFwAAABcAAANfAAAARQAAAD0AAABfAAAAPQAAAD0AAABfAAAARQAAAkUAAANFAAAAXwAAAE8AAABfAAAAPQAAAF8AAABfAAAAXwAAAEUAAAFFAAABPQAAAD0AAABFAAABXwAAAEUAAAJFAAACRQAAAl8AAABfAAAAXwAAAD0AAAA9AAAAPQAAAF8AAABFAAAAPQAAAEUAAAE9AAAAPQAAAF8AAABFAAADRQAAAkUAAANfAAAATwAAAF8AAAA9AAAAPQAAAD0AAABfAAAARQAAAD0AAABFAAABRQAAAT0AAABfAAAARQAAAUUAAAFFAAADXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJfAAAAPQAAAF8AAABfAAAAXwAAAEUAAAFFAAACRQAAAF8AAABfAAAATwAAAE8AAABPAAAAXwAAAEUAAAJFAAABRQAAAD0AAABFAAAAXwAAAEUAAABFAAACRQAAA0UAAANfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABFAAAARQAAAz0AAABFAAAAPQAAAD0AAABfAAAARQAAAkUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAAARQAAAkUAAAFfAAAAXwAAAF8AAABfAAAARQAAA0UAAAFFAAAAXwAAAE8AAABPAAAAXwAAAF8AAABFAAADRQAAA0UAAANFAAABRQAAA18AAABFAAADRQAAAUUAAAFFAAABRQAAAA== + tiles: RQAAA0UAAABFAAACRQAAA0UAAAFFAAACRQAAAEUAAABFAAAARQAAA0UAAAJFAAABRQAAAUUAAABFAAABRQAAAEUAAABfAAAARQAAAEUAAANFAAADRQAAAEUAAANFAAADRQAAAkUAAAFFAAADRQAAA0UAAANFAAACRQAAAEUAAAFFAAADXwAAAF8AAABfAAAAXwAAAEUAAANFAAABRQAAAl8AAABfAAAAXwAAAF8AAAAvAAAALwAAAF8AAABFAAACXwAAAF8AAABfAAAATwAAAF8AAABFAAABRQAAAkUAAANFAAACXwAAABcAAAMXAAADLwAAAC8AAABfAAAARQAAAV8AAABPAAAATwAAAF8AAABfAAAARQAAA0UAAAJFAAADRQAAAl8AAAAXAAAAFwAAAi8AAAAvAAAARQAAAEUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAADRQAAAEUAAABfAAAAFwAAAhcAAAMvAAAALwAAAF8AAABFAAADXwAAAD0AAABFAAACPQAAAF8AAABFAAAARQAAA0UAAAJfAAAAXwAAAF8AAAAXAAABFwAAARcAAAFfAAAARQAAAj0AAABfAAAAPQAAAD0AAABfAAAARQAAAEUAAAJFAAACXwAAAE8AAABfAAAAPQAAAF8AAABfAAAAXwAAAEUAAAJFAAACPQAAAD0AAABFAAAAXwAAAEUAAAJFAAABRQAAAV8AAABfAAAAXwAAAD0AAAA9AAAAPQAAAF8AAABFAAADPQAAAEUAAAI9AAAAPQAAAF8AAABFAAAARQAAAkUAAABfAAAATwAAAF8AAAA9AAAAPQAAAD0AAABfAAAARQAAAT0AAABFAAABRQAAAT0AAABfAAAARQAAAEUAAABFAAACXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJfAAAAPQAAAF8AAABfAAAAXwAAAEUAAAFFAAACRQAAAl8AAABfAAAATwAAAE8AAABPAAAAXwAAAEUAAAFFAAADRQAAAT0AAABFAAAAXwAAAEUAAABFAAADRQAAA0UAAAJfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABFAAAARQAAAD0AAABFAAADPQAAAD0AAABfAAAARQAAAUUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAADRQAAA0UAAAFfAAAAXwAAAF8AAABfAAAARQAAA0UAAANFAAADXwAAAE8AAABPAAAAXwAAAF8AAABFAAABRQAAAUUAAAFFAAADRQAAAV8AAABFAAABRQAAAUUAAABFAAADRQAAAA== -5,-1: ind: -5,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABeAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXgAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABFAAABRQAAAUUAAANFAAACRQAAAUUAAAFFAAABRQAAA0UAAAJFAAACRQAAA0UAAAFeAAAAXwAAAF8AAABfAAAARQAAAkUAAABFAAAARQAAA0UAAABFAAAARQAAAkUAAABFAAABRQAAA0UAAAFFAAADXgAAAF8AAABfAAAAXwAAAEUAAAFFAAADRQAAAkUAAAFFAAADRQAAAkUAAAFFAAABRQAAA0UAAAFFAAAARQAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -5,0: ind: -5,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAAAAAAXgAAAAAAAABeAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF8AAABFAAACRQAAA0UAAABFAAABRQAAAkUAAAJFAAACRQAAAEUAAANFAAAARQAAA0UAAABeAAAAAAAAAF4AAABfAAAARQAAAUUAAAFFAAADRQAAAkUAAAFFAAACRQAAAEUAAANFAAABRQAAA0UAAAFFAAACXgAAAAAAAABeAAAAXwAAAEUAAANFAAAARQAAAkUAAABFAAABRQAAAUUAAANFAAAARQAAAkUAAABfAAAAXwAAAF4AAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAFwAAARcAAAAXAAAAFwAAAV8AAABfAAAATwAAAF8AAABPAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAXwAAABcAAAIXAAABFwAAARcAAABfAAAAXwAAAE8AAABfAAAAXwAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXgAAAF8AAAAXAAADFwAAAhcAAAIXAAACXwAAAF8AAABfAAAAXwAAAEUAAAIAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABfAAAAFwAAAhcAAAEXAAADFwAAAF8AAABPAAAAXwAAAF8AAABFAAABAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAXwAAABcAAAAXAAADFwAAABcAAAAXAAAAXwAAAF8AAABfAAAARQAAAQAAAABeAAAAAAAAAF4AAABeAAAAXgAAAF8AAAAXAAADFwAAARcAAAEXAAAAXwAAAF8AAABPAAAAXwAAAEUAAAEAAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABFAAABAAAAAAAAAAAAAAAAXgAAAF8AAABFAAADRQAAAEUAAAJFAAABRQAAAEUAAAJFAAADXwAAAF8AAABfAAAAXwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAAAAAAXgAAAAAAAABeAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF8AAABFAAACRQAAAUUAAABFAAAARQAAA0UAAABFAAAARQAAA0UAAABFAAABRQAAAEUAAANeAAAAAAAAAF4AAABfAAAARQAAA0UAAAFFAAAARQAAAUUAAAFFAAABRQAAAUUAAAJFAAACRQAAAEUAAABFAAACXgAAAAAAAABeAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAADRQAAA0UAAABFAAADRQAAAkUAAABfAAAAXwAAAF4AAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAFwAAAhcAAAAXAAADFwAAAl8AAABfAAAATwAAAF8AAABPAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAXwAAABcAAAAXAAABFwAAAhcAAANfAAAAXwAAAE8AAABfAAAAXwAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXgAAAF8AAAAXAAABFwAAABcAAAAXAAAAXwAAAF8AAABfAAAAXwAAAEUAAAIAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABfAAAAFwAAAxcAAAEXAAABFwAAAF8AAABPAAAAXwAAAF8AAABFAAADAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAXwAAABcAAAAXAAABFwAAABcAAAEXAAACXwAAAF8AAABfAAAARQAAAAAAAABeAAAAAAAAAF4AAABeAAAAXgAAAF8AAAAXAAAAFwAAAhcAAAEXAAAAXwAAAF8AAABPAAAAXwAAAEUAAAMAAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABFAAABAAAAAAAAAAAAAAAAXgAAAF8AAABFAAABRQAAAUUAAAFFAAABRQAAA0UAAAJFAAADXwAAAF8AAABfAAAAXwAAAA== -2,3: ind: -2,3 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXAAAA1wAAABcAAABXAAAAl8AAABFAAAARQAAAU8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAADTwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAV8AAABfAAAAXwAAAF8AAABFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAFfAAAAXwAAAEUAAAJfAAAAXwAAAEUAAANfAAAAXwAAADsAAAA7AAAAOwAAADsAAABfAAAAFwAAABcAAAAXAAACTwAAAF8AAABfAAAARQAAA18AAABfAAAAXwAAAF8AAAA7AAAAFwAAAhcAAAIXAAADOwAAABcAAAI6AAAAOgAAAF8AAABfAAAARQAAAl8AAABfAAAARQAAAl8AAABfAAAAOwAAABcAAAE6AAAAFwAAA18AAAAXAAABOgAAADoAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA8AAAAXAAACOgAAABcAAANfAAAAFwAAAToAAAA6AAAAXwAAAF8AAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAFwAAAxcAAAMXAAAAXwAAABcAAAA6AAAAOgAAAF8AAABfAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAF8AAABeAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAARQAAAUUAAAFFAAABFwAAAToAAAA6AAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAEUAAAFFAAACRQAAAxcAAAI6AAAAOgAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABFAAADRQAAA0UAAANfAAAAFwAAABcAAAFeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAF4AAABfAAAARQAAAEUAAAJFAAAARQAAAUUAAAJFAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXwAAAF8AAABFAAACRQAAA0UAAAJFAAADRQAAAw== + tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXAAAA1wAAABcAAABXAAAA18AAABFAAADRQAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAANfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAADTwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAV8AAABfAAAAXwAAAF8AAABFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAJfAAAAXwAAAEUAAAFfAAAAXwAAAEUAAABfAAAAXwAAADsAAAA7AAAAOwAAADsAAABfAAAAFwAAAxcAAAIXAAACTwAAAF8AAABfAAAARQAAAV8AAABfAAAAXwAAAF8AAAA7AAAAFwAAAhcAAAMXAAACOwAAABcAAAA6AAAAOgAAAF8AAABfAAAARQAAAF8AAABfAAAARQAAAF8AAABfAAAAOwAAABcAAAA6AAAAFwAAA18AAAAXAAACOgAAADoAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA8AAAAXAAACOgAAABcAAAFfAAAAFwAAAzoAAAA6AAAAXwAAAF8AAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAFwAAAhcAAAAXAAAAXwAAABcAAAA6AAAAOgAAAF8AAABfAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAl8AAABeAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAARQAAA0UAAAFFAAACFwAAAjoAAAA6AAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAEUAAABFAAAARQAAARcAAAA6AAAAOgAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABFAAADRQAAAkUAAABfAAAAFwAAAhcAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAF4AAABfAAAARQAAA0UAAANFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXwAAAF8AAABFAAABRQAAAUUAAANFAAAARQAAAw== -1,3: ind: -1,3 - tiles: RQAAA0UAAABFAAAARQAAAkUAAAFFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFfAAAATwAAAE8AAABPAAAATwAAAF8AAABfAAAATwAAAF8AAABeAAAAXgAAAF4AAABfAAAAEgAAABIAAABFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAABeAAAAXwAAABIAAAASAAAARQAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF8AAAASAAAAEgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAF4AAABfAAAAEgAAABIAAAAXAAADFwAAAV8AAABFAAADRQAAAEUAAAJFAAABRQAAA0UAAAFfAAAAXwAAAF4AAABeAAAAXwAAABIAAAASAAAAOgAAABcAAAFfAAAARQAAAEUAAANFAAABRQAAAkUAAABFAAADRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAADoAAAAXAAABRQAAAkUAAAFFAAACRQAAAkUAAABFAAACRQAAAEUAAAFfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAA6AAAAFwAAAl8AAABFAAACRQAAAUUAAANFAAACRQAAA0UAAANFAAAAXwAAAF8AAABfAAAAXwAAAAAAAABeAAAAOgAAABcAAABfAAAARQAAAkUAAAJFAAADRQAAAkUAAABFAAACXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAABcAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAl8AAABcAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAA6AAAAFwAAAUUAAANFAAADRQAAA18AAAAXAAABFwAAABcAAANcAAACXAAAA18AAABeAAAAAAAAAF4AAAAAAAAAOgAAABcAAABFAAADRQAAAUUAAANfAAAAFwAAAhcAAAIXAAACXAAAAFwAAABfAAAAXgAAAF4AAABeAAAAAAAAABcAAABfAAAARQAAAUUAAANFAAACXwAAABcAAAAXAAACFwAAAlwAAAJcAAADXwAAAF4AAAAAAAAAXgAAAAAAAABFAAACRQAAAUUAAAJFAAABRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAAAAAAAARQAAA0UAAANFAAACRQAAA18AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAA== + tiles: RQAAAUUAAAJFAAACRQAAAUUAAANFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABfAAAATwAAAE8AAABPAAAATwAAAF8AAABfAAAATwAAAF8AAABeAAAAXgAAAF4AAABfAAAAEgAAABIAAABFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAABeAAAAXwAAABIAAAASAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF8AAAASAAAAEgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAF4AAABfAAAAEgAAABIAAAAXAAACFwAAAF8AAABFAAABRQAAAEUAAANFAAACRQAAAUUAAANfAAAAXwAAAF4AAABeAAAAXwAAABIAAAASAAAAOgAAABcAAABfAAAARQAAAkUAAANFAAADRQAAA0UAAANFAAACRQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAADoAAAAXAAAARQAAAEUAAAFFAAAARQAAAkUAAABFAAAARQAAAUUAAANfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAA6AAAAFwAAAV8AAABFAAABRQAAA0UAAAFFAAACRQAAAkUAAAJFAAABXwAAAF8AAABfAAAAXwAAAAAAAABeAAAAOgAAABcAAAFfAAAARQAAA0UAAANFAAACRQAAAEUAAABFAAACXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAABcAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAF8AAABcAAABXwAAAF4AAAAAAAAAAAAAAAAAAAA6AAAAFwAAAUUAAAFFAAAARQAAAV8AAAAXAAACFwAAARcAAAFcAAACXAAAAl8AAABeAAAAAAAAAF4AAAAAAAAAOgAAABcAAAJFAAACRQAAAUUAAAJfAAAAFwAAAhcAAAEXAAAAXAAAAVwAAABfAAAAXgAAAF4AAABeAAAAAAAAABcAAAFfAAAARQAAAEUAAANFAAAAXwAAABcAAAAXAAACFwAAA1wAAABcAAAAXwAAAF4AAAAAAAAAXgAAAAAAAABFAAABRQAAAEUAAANFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAAAAAAAARQAAAEUAAABFAAABRQAAAl8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAA== 0,3: ind: 0,3 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAABIAAABfAAAAXwAAAFwAAABcAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAASAAAAXwAAAFwAAAJcAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAAFfAAAAXAAAAFwAAAJcAAACEgAAAF8AAABcAAABXwAAAFwAAANfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAADXwAAAFwAAAFcAAACXAAAAhIAAABfAAAAXAAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAl8AAABcAAADXAAAA1wAAAESAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAABIAAABfAAAAXwAAAFwAAAJcAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAASAAAAXwAAAFwAAABcAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAAJfAAAAXAAAA1wAAAJcAAABEgAAAF8AAABcAAABXwAAAFwAAANfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAAAXwAAAFwAAAJcAAABXAAAAhIAAABfAAAAXAAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAl8AAABcAAACXAAAAlwAAAMSAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,3: ind: 1,3 - tiles: XwAAAFwAAABcAAACXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABcAAACXAAAAV8AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAACXAAAAVwAAAJfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAFwAAAFcAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAANcAAADXAAAAl8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: XwAAAFwAAAJcAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABcAAAAXAAAAF8AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAACXAAAA1wAAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAFwAAAFcAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAANcAAABXAAAAV8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,4: ind: -1,4 - tiles: RQAAA0UAAABFAAADRQAAA18AAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAEUAAAFFAAABRQAAAV8AAABfAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABFAAADRQAAAF8AAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: RQAAA0UAAANFAAACRQAAAF8AAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAEUAAABFAAAARQAAA18AAABfAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABFAAACRQAAAl8AAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -2,4: ind: -2,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF8AAABFAAACRQAAAEUAAABFAAADRQAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABfAAAAXwAAAEUAAABFAAADRQAAAkUAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABfAAAARQAAA0UAAANFAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF8AAABFAAACRQAAAUUAAAFFAAACRQAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABfAAAAXwAAAEUAAAJFAAADRQAAAkUAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABfAAAARQAAAkUAAAFFAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -3,3: ind: -3,3 - tiles: RQAAAUUAAANfAAAAXwAAAF8AAABfAAAAXwAAABcAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAAAXwAAAE8AAABfAAAARQAAAEUAAABFAAAARQAAAF8AAABFAAABXwAAAEUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAACRQAAAEUAAAJfAAAAXwAAAEUAAAJFAAADXwAAAF8AAABfAAAAXwAAAEUAAABfAAAATwAAAF8AAABFAAAARQAAAkUAAANFAAAAXwAAAF8AAABfAAAARQAAAkUAAAJfAAAAXwAAAF8AAABFAAADXwAAAE8AAABfAAAARQAAAUUAAAFFAAACRQAAA18AAABFAAAARQAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABFAAABXwAAAE8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAAAXAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAxcAAANfAAAAXgAAAF4AAABfAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAAXAAAAXwAAAF8AAABeAAAAXgAAAF4AAABfAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAADFwAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAAAAAAAAAAAAAF4AAABeAAAAFwAAABcAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABfAAAAXgAAAF4AAABeAAAAXgAAABcAAAEXAAAAXwAAAEUAAAFFAAABRQAAAUUAAAJfAAAAXwAAAF4AAABeAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAXAAACFwAAAV8AAABFAAACRQAAAEUAAAFFAAADXwAAAF8AAABeAAAAXgAAAF8AAABeAAAAXgAAAAAAAABeAAAAFwAAAF8AAABfAAAARQAAAEUAAAJFAAADRQAAAl8AAABfAAAAXgAAAF4AAABfAAAAAAAAAF4AAAAAAAAAAAAAAA== + tiles: RQAAAUUAAAFfAAAAXwAAAF8AAABfAAAAXwAAABcAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAADXwAAAE8AAABfAAAARQAAA0UAAAFFAAABRQAAA18AAABFAAABXwAAAEUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAACRQAAA0UAAAJfAAAAXwAAAEUAAANFAAABXwAAAF8AAABfAAAAXwAAAEUAAAFfAAAATwAAAF8AAABFAAADRQAAAkUAAABFAAACXwAAAF8AAABfAAAARQAAAEUAAAJfAAAAXwAAAF8AAABFAAABXwAAAE8AAABfAAAARQAAAUUAAABFAAADRQAAAF8AAABFAAACRQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABFAAADXwAAAE8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAAAXAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAABcAAANfAAAAXgAAAF4AAABfAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAMXAAACXwAAAF8AAABeAAAAXgAAAF4AAABfAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAADFwAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAAAAAAAAAAAAAF4AAABeAAAAFwAAAxcAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABfAAAAXgAAAF4AAABeAAAAXgAAABcAAAMXAAACXwAAAEUAAANFAAACRQAAA0UAAAJfAAAAXwAAAF4AAABeAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAXAAAAFwAAAF8AAABFAAADRQAAAEUAAAJFAAABXwAAAF8AAABeAAAAXgAAAF8AAABeAAAAXgAAAAAAAABeAAAAFwAAA18AAABfAAAARQAAA0UAAAFFAAABRQAAAF8AAABfAAAAXgAAAF4AAABfAAAAAAAAAF4AAAAAAAAAAAAAAA== -4,3: ind: -4,3 - tiles: TwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABPAAAAXwAAAF8AAABFAAAARQAAA0UAAAJFAAADRQAAAF8AAABfAAAATwAAAF8AAABPAAAAXwAAAF8AAABPAAAAXwAAAF8AAABFAAADRQAAA0UAAABFAAABRQAAAUUAAABfAAAATwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAACRQAAAUUAAABFAAABXwAAAE8AAABfAAAAXwAAAE8AAABfAAAAXwAAAE8AAABfAAAAXwAAAEUAAABFAAABRQAAAUUAAAFFAAADRQAAA0UAAAFFAAADRQAAAEUAAABFAAADRQAAA0UAAABFAAAARQAAA0UAAABfAAAARQAAAUUAAAFFAAAARQAAAEUAAAJfAAAARQAAA0UAAAFFAAACRQAAAkUAAANFAAACRQAAA0UAAAJfAAAAXwAAAEUAAANFAAAARQAAAkUAAABFAAABRQAAA0UAAANFAAADRQAAAUUAAAJFAAADRQAAA0UAAABFAAACRQAAAUUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAA0UAAANFAAADRQAAA0UAAAJFAAADRQAAAl8AAABfAAAAFwAAAV8AAAAXAAAAFwAAAhcAAAEXAAABRQAAAkUAAANFAAACRQAAAUUAAABFAAAARQAAAUUAAAJfAAAAFwAAARcAAABfAAAAFwAAAxcAAAMXAAACXwAAAEUAAAJFAAAARQAAAUUAAANFAAACRQAAA0UAAAFFAAAAXwAAABcAAAEXAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABfAAAARQAAA18AAAAXAAAAFwAAAxcAAANFAAABRQAAAEUAAAJFAAADRQAAAkUAAABFAAAARQAAAEUAAANFAAABRQAAAUUAAAJfAAAAFwAAAV8AAABfAAAARQAAAEUAAAFFAAAARQAAAUUAAABFAAAARQAAAkUAAAJFAAADRQAAAkUAAABFAAADFwAAAxcAAAAAAAAAXwAAAF8AAABfAAAAXAAAAF8AAABfAAAAXwAAAFwAAABfAAAAXwAAAEUAAAFFAAADRQAAAl8AAAAXAAAAAAAAAF8AAABcAAACXAAAAVwAAAFcAAADXwAAAFwAAAFcAAADXAAAAV8AAABFAAAARQAAAkUAAABfAAAAXwAAAA== + tiles: TwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABPAAAAXwAAAF8AAABFAAADRQAAA0UAAANFAAAARQAAAl8AAABfAAAATwAAAF8AAABPAAAAXwAAAF8AAABPAAAAXwAAAF8AAABFAAADRQAAAEUAAAJFAAABRQAAAkUAAABfAAAATwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAAARQAAA0UAAABFAAAAXwAAAE8AAABfAAAAXwAAAE8AAABfAAAAXwAAAE8AAABfAAAAXwAAAEUAAABFAAACRQAAAUUAAAJFAAAARQAAA0UAAAJFAAACRQAAA0UAAABFAAAARQAAAEUAAANFAAAARQAAAkUAAANfAAAARQAAAUUAAABFAAACRQAAA0UAAAFfAAAARQAAAEUAAAJFAAAARQAAAkUAAANFAAADRQAAAkUAAAJfAAAAXwAAAEUAAAFFAAABRQAAAEUAAANFAAADRQAAAUUAAANFAAABRQAAAEUAAAJFAAAARQAAAkUAAAJFAAAARQAAAkUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAANFAAAARQAAAkUAAANFAAABRQAAAF8AAABfAAAAFwAAAV8AAAAXAAABFwAAAxcAAAAXAAABRQAAA0UAAABFAAADRQAAAkUAAAFFAAADRQAAA0UAAAJfAAAAFwAAARcAAAFfAAAAFwAAARcAAAEXAAACXwAAAEUAAAJFAAABRQAAAkUAAAJFAAADRQAAA0UAAAFFAAADXwAAABcAAAAXAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFfAAAARQAAAF8AAAAXAAAAFwAAARcAAAJFAAAARQAAAkUAAABFAAACRQAAA0UAAAFFAAACRQAAA0UAAAJFAAACRQAAAEUAAANfAAAAFwAAAl8AAABfAAAARQAAAkUAAABFAAACRQAAAEUAAANFAAADRQAAAkUAAAJFAAADRQAAAUUAAANFAAACFwAAARcAAAEAAAAAXwAAAF8AAABfAAAAXAAAA18AAABfAAAAXwAAAFwAAANfAAAAXwAAAEUAAANFAAADRQAAAV8AAAAXAAADAAAAAF8AAABcAAADXAAAAlwAAAJcAAACXwAAAFwAAANcAAABXAAAAl8AAABFAAACRQAAAUUAAAFfAAAAXwAAAA== -4,-2: ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAA== -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -5,2: ind: -5,2 - tiles: RQAAA0UAAANFAAADRQAAAF8AAABFAAACRQAAAF8AAABfAAAARQAAA18AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAJFAAADRQAAAkUAAAFfAAAARQAAAUUAAANFAAADRQAAAEUAAABFAAAARQAAAUUAAABFAAADRQAAA0UAAAFfAAAAXwAAAF8AAABfAAAATwAAAEUAAANFAAADRQAAA0UAAAJFAAACRQAAA0UAAAJFAAABRQAAAkUAAAJFAAABXwAAAF8AAABfAAAAXwAAAE8AAABFAAAARQAAAkUAAAFFAAAARQAAAUUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAPQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAAl8AAABfAAAAXwAAAE8AAABfAAAAXwAAAD0AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAAVwAAAJcAAADXAAAA18AAABPAAAAXwAAAF8AAAA9AAAATwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAFwAAAJcAAAAXAAAA1wAAAJfAAAAXwAAAF8AAABfAAAARQAAAU8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXAAAA1wAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAFwAAABcAAACXAAAAV8AAABPAAAATwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAABcAAABXAAAAlwAAANfAAAAXwAAAE8AAABfAAAAPQAAAE8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABcAAAAXAAAA1wAAANfAAAAXwAAAF8AAABPAAAAXwAAAEUAAAJPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAADIAAABfAAAAMgAAAF8AAAAyAAAAXwAAAEUAAABfAAAARQAAAQ== + tiles: RQAAAUUAAAJFAAACRQAAAV8AAABFAAACRQAAA18AAABfAAAARQAAA18AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAANFAAACRQAAAEUAAAJfAAAARQAAAkUAAAFFAAACRQAAAkUAAABFAAABRQAAAkUAAANFAAADRQAAAEUAAANfAAAAXwAAAF8AAABfAAAATwAAAEUAAABFAAADRQAAAEUAAANFAAAARQAAAEUAAAJFAAADRQAAAUUAAANFAAACXwAAAF8AAABfAAAAXwAAAE8AAABFAAAARQAAA0UAAAJFAAACRQAAAkUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAPQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAA18AAABfAAAAXwAAAE8AAABfAAAAXwAAAD0AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAAVwAAANcAAADXAAAAF8AAABPAAAAXwAAAF8AAAA9AAAATwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAFwAAANcAAADXAAAAVwAAABfAAAAXwAAAF8AAABfAAAARQAAAk8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXAAAAlwAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAFwAAANcAAACXAAAAV8AAABPAAAATwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAAFcAAADXAAAA1wAAANfAAAAXwAAAE8AAABfAAAAPQAAAE8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABcAAACXAAAA1wAAAFfAAAAXwAAAF8AAABPAAAAXwAAAEUAAANPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAADIAAABfAAAAMgAAAF8AAAAyAAAAXwAAAEUAAANfAAAARQAAAg== -5,3: ind: -5,3 - tiles: XgAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAAAyAAAAMgAAAF8AAABfAAAAXwAAAF8AAABFAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAAAyAAAAXwAAAF8AAAAyAAAAXwAAAEUAAAJFAAADXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAV8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAACXwAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABPAAAAXwAAAEUAAAFfAAAARQAAA0UAAAFfAAAAXwAAAE8AAABfAAAARQAAA0UAAANeAAAAXwAAABcAAAFfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAABXgAAAF8AAAAXAAADFwAAARcAAANfAAAAXwAAAF8AAABfAAAARQAAAkUAAABfAAAAXwAAAF8AAABFAAAARQAAAV4AAABfAAAAFwAAABcAAAEXAAACXwAAAF8AAABfAAAARQAAAkUAAABfAAAAXwAAAE8AAABfAAAARQAAAkUAAAFeAAAAXwAAABcAAAMXAAADFwAAAV8AAABfAAAAXwAAAF8AAABFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAA== + tiles: XgAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAAAyAAAAMgAAAF8AAABfAAAAXwAAAF8AAABFAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAAAyAAAAXwAAAF8AAAAyAAAAXwAAAEUAAANFAAADXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAV8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAABXwAAAEUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABPAAAAXwAAAEUAAAFfAAAARQAAAkUAAANfAAAAXwAAAE8AAABfAAAARQAAA0UAAABeAAAAXwAAABcAAANfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAADXgAAAF8AAAAXAAACFwAAABcAAAFfAAAAXwAAAF8AAABfAAAARQAAA0UAAABfAAAAXwAAAF8AAABFAAADRQAAAV4AAABfAAAAFwAAAxcAAAMXAAAAXwAAAF8AAABfAAAARQAAAEUAAAJfAAAAXwAAAE8AAABfAAAARQAAAkUAAAFeAAAAXwAAABcAAAEXAAAAFwAAAV8AAABfAAAAXwAAAF8AAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAA== -3,4: ind: -3,4 - tiles: RQAAA0UAAABFAAACRQAAAEUAAAJFAAABRQAAAl8AAABfAAAAXgAAAF4AAABfAAAAAAAAAF4AAAAAAAAAAAAAAEUAAANFAAACRQAAAEUAAANFAAABRQAAAEUAAANfAAAAXwAAAF4AAABeAAAAXwAAAAAAAABeAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABfAAAAXwAAAF8AAABeAAAAXgAAAF8AAABeAAAAXgAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABfAAAAAAAAAF4AAAAAAAAAAAAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF4AAABeAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: RQAAAUUAAABFAAACRQAAA0UAAABFAAADRQAAAF8AAABfAAAAXgAAAF4AAABfAAAAAAAAAF4AAAAAAAAAAAAAAEUAAAJFAAAARQAAAEUAAABFAAADRQAAAkUAAABfAAAAXwAAAF4AAABeAAAAXwAAAAAAAABeAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJfAAAAXwAAAF8AAABeAAAAXgAAAF8AAABeAAAAXgAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABfAAAAAAAAAF4AAAAAAAAAAAAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF4AAABeAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -4,4: ind: -4,4 - tiles: AAAAAF8AAABcAAADXAAAAFwAAAJcAAAAXwAAAFwAAAJcAAABXAAAAF8AAABFAAAARQAAAEUAAABFAAADRQAAAV4AAABfAAAAXAAAA1wAAABcAAAAXAAAAF8AAABcAAABXAAAA1wAAAJfAAAARQAAAkUAAABFAAABRQAAAkUAAAEAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAA== + tiles: AAAAAF8AAABcAAABXAAAAFwAAANcAAADXwAAAFwAAAFcAAAAXAAAAV8AAABFAAADRQAAAkUAAANFAAABRQAAAV4AAABfAAAAXAAAAFwAAANcAAAAXAAAAF8AAABcAAAAXAAAAlwAAAFfAAAARQAAAUUAAAJFAAAARQAAAkUAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAA== -4,5: ind: -4,5 - tiles: AAAAAAQAAAEEAAABBAAAAgQAAAAEAAAABAAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAABAAAAAQAAAAEAAABBAAAAQQAAAEEAAACBAAAAgQAAAJfAAAAXwAAAF8AAABfAAAARQAAAl8AAABFAAACXwAAAAQAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACXwAAAEUAAAFfAAAAXwAAAF8AAAAEAAACXwAAACkAAABFAAAAXwAAAEUAAAFFAAADRQAAAUUAAAFfAAAARQAAAkUAAAFFAAADXwAAAEUAAAJfAAAABAAAAV8AAAApAAAARQAAAF8AAABFAAABRQAAA18AAABfAAAARQAAA18AAABfAAAAXwAAAEUAAAJfAAAAXwAAAAQAAAFfAAAAKQAAAF8AAABFAAAAXwAAAF8AAABFAAABXwAAAF8AAABfAAAAXwAAAEUAAAJfAAAARQAAA18AAAAEAAABXwAAAF8AAABFAAAARQAAAkUAAABfAAAARQAAAz0AAABfAAAAPQAAAF8AAABfAAAAXwAAAEUAAAJfAAAABAAAAAAAAABfAAAARQAAAF8AAABFAAADXwAAAEUAAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAAJFAAADXwAAAAQAAAJeAAAAXwAAAEUAAABFAAABXwAAAF8AAABfAAAAXwAAAF8AAABFAAABXwAAAF8AAABfAAAARQAAAV8AAAAEAAAAAAAAAF8AAABFAAADXwAAAEUAAAFFAAACRQAAAUUAAANFAAADXwAAAEUAAANFAAAARQAAAl8AAABfAAAABAAAAgAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFfAAAARQAAA18AAABFAAABXwAAAAQAAAIAAAAABAAAAgQAAAIEAAAABAAAAgQAAAEEAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAEAAAABAAAAgQAAAIEAAAABAAAAQQAAAAEAAABBAAAAAQAAAIEAAAABAAAAQQAAAEEAAACAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAgQAAAEEAAAABAAAAAQAAAAEAAACBAAAAAQAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAgQAAAEEAAACBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAQAAAAEAAACBAAAAQQAAAAEAAABBAAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAABAAAAAQAAAAEAAABBAAAAQQAAAAEAAAABAAAAQQAAAJfAAAAXwAAAF8AAABfAAAARQAAAV8AAABFAAAAXwAAAAQAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACXwAAAEUAAAFfAAAAXwAAAF8AAAAEAAABXwAAACkAAABFAAAAXwAAAEUAAABFAAAARQAAAEUAAABfAAAARQAAAkUAAABFAAABXwAAAEUAAABfAAAABAAAAF8AAAApAAAARQAAAV8AAABFAAACRQAAAl8AAABfAAAARQAAAl8AAABfAAAAXwAAAEUAAANfAAAAXwAAAAQAAAFfAAAAKQAAAF8AAABFAAACXwAAAF8AAABFAAABXwAAAF8AAABfAAAAXwAAAEUAAANfAAAARQAAAF8AAAAEAAABXwAAAF8AAABFAAAARQAAA0UAAAJfAAAARQAAAT0AAABfAAAAPQAAAF8AAABfAAAAXwAAAEUAAAJfAAAABAAAAQAAAABfAAAARQAAAF8AAABFAAACXwAAAEUAAAJfAAAAXwAAAF8AAABfAAAARQAAAEUAAAJFAAACXwAAAAQAAAJeAAAAXwAAAEUAAABFAAABXwAAAF8AAABfAAAAXwAAAF8AAABFAAACXwAAAF8AAABfAAAARQAAAl8AAAAEAAAAAAAAAF8AAABFAAADXwAAAEUAAANFAAAARQAAAkUAAAFFAAADXwAAAEUAAAFFAAACRQAAAV8AAABfAAAABAAAAQAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFfAAAARQAAAF8AAABFAAACXwAAAAQAAAAAAAAABAAAAAQAAAIEAAAABAAAAgQAAAAEAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAEAAACBAAAAAQAAAIEAAABBAAAAQQAAAEEAAACBAAAAQQAAAIEAAAABAAAAQQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAACBAAAAgQAAAEEAAAABAAAAQQAAAEEAAAABAAAAgQAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAgQAAAIEAAABBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -3,5: ind: -3,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -5,5: ind: -5,5 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -5,1: ind: -5,1 - tiles: XgAAAF4AAABeAAAAXgAAAF8AAABFAAAARQAAAkUAAAFFAAADRQAAAEUAAABFAAADXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAAJFAAADRQAAAUUAAAJFAAAARQAAAV8AAABfAAAATwAAAF8AAABPAAAATwAAAF8AAABPAAAAXwAAAEUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABFAAABRQAAAV8AAABFAAAARQAAAUUAAAJFAAAARQAAAUUAAAFFAAAARQAAAE8AAABfAAAAXwAAAE8AAABfAAAARQAAA0UAAANfAAAARQAAA0UAAAFFAAADRQAAAUUAAAFFAAADRQAAAkUAAAFfAAAAXwAAAE8AAABfAAAAXwAAAEUAAAFFAAAARQAAAEUAAANFAAABXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAF8AAABPAAAATwAAAF8AAABFAAADRQAAA18AAABFAAACRQAAAEUAAAJFAAADRQAAAEUAAAFFAAACRQAAAkUAAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAABfAAAARQAAAUUAAAFFAAABRQAAAEUAAAFFAAADRQAAAkUAAAFFAAACRQAAAl8AAABFAAAARQAAA0UAAAJFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAAJFAAAARQAAAUUAAAJFAAABRQAAAl8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAAFFAAAAXwAAAEUAAANFAAADRQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAADRQAAAEUAAAJFAAADXwAAAF8AAABfAAAAXwAAAEUAAAJFAAADXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAkUAAAFFAAACXwAAAF8AAABPAAAATwAAAF8AAABFAAABRQAAAl8AAABfAAAAXwAAAE8AAABfAAAARQAAAkUAAAFFAAACRQAAAEUAAAJPAAAATwAAAE8AAABfAAAARQAAAEUAAABfAAAAXwAAAF8AAABPAAAAXwAAAEUAAAJFAAAAXwAAAEUAAAFFAAABTwAAAE8AAABPAAAAXwAAAEUAAANFAAAAXwAAAF8AAABfAAAATwAAAF8AAABFAAACRQAAA18AAABFAAAARQAAA08AAABPAAAATwAAAF8AAABFAAADRQAAAV8AAABfAAAAXwAAAE8AAABfAAAARQAAAEUAAAJfAAAARQAAAg== + tiles: XgAAAF4AAABeAAAAXgAAAF8AAABFAAADRQAAAEUAAABFAAACRQAAAEUAAAJFAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAAFFAAADRQAAAEUAAANFAAAARQAAAF8AAABfAAAATwAAAF8AAABPAAAATwAAAF8AAABPAAAAXwAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABFAAAARQAAA18AAABFAAABRQAAAkUAAAFFAAABRQAAA0UAAAFFAAADRQAAAU8AAABfAAAAXwAAAE8AAABfAAAARQAAA0UAAAJfAAAARQAAAEUAAABFAAACRQAAAUUAAAJFAAABRQAAA0UAAAJfAAAAXwAAAE8AAABfAAAAXwAAAEUAAAJFAAABRQAAAEUAAABFAAABXwAAAF8AAABfAAAAXwAAAF8AAABFAAABRQAAAV8AAABPAAAATwAAAF8AAABFAAABRQAAAl8AAABFAAADRQAAAEUAAAFFAAADRQAAAkUAAAFFAAAARQAAAEUAAAFfAAAAXwAAAF8AAABfAAAARQAAA0UAAABfAAAARQAAAUUAAANFAAABRQAAAkUAAAJFAAABRQAAAEUAAANFAAADRQAAAF8AAABFAAACRQAAAUUAAANFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAFFAAADRQAAAkUAAABFAAADRQAAA18AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAANFAAABRQAAAUUAAABFAAABXwAAAEUAAAJFAAADRQAAAUUAAANfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAACRQAAAEUAAANFAAABXwAAAF8AAABfAAAAXwAAAEUAAANFAAACXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAA0UAAABFAAABXwAAAF8AAABPAAAATwAAAF8AAABFAAABRQAAAl8AAABfAAAAXwAAAE8AAABfAAAARQAAAkUAAAJFAAAARQAAAkUAAANPAAAATwAAAE8AAABfAAAARQAAAkUAAABfAAAAXwAAAF8AAABPAAAAXwAAAEUAAANFAAACXwAAAEUAAAJFAAAATwAAAE8AAABPAAAAXwAAAEUAAAJFAAADXwAAAF8AAABfAAAATwAAAF8AAABFAAAARQAAAV8AAABFAAAARQAAA08AAABPAAAATwAAAF8AAABFAAACRQAAAl8AAABfAAAAXwAAAE8AAABfAAAARQAAAUUAAANfAAAARQAAAA== -6,1: ind: -6,1 - tiles: AAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAATwAAAE8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAE8AAABPAAAATwAAAF8AAABPAAAAXwAAAF8AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF8AAABeAAAAXgAAAF4AAABfAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABPAAAAXwAAAEUAAANFAAAARQAAAV4AAAAAAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF8AAABFAAABRQAAAEUAAAFFAAAARQAAAkUAAAMAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABfAAAARQAAAl8AAABfAAAAXwAAAF8AAABFAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAEUAAANfAAAAXwAAAF8AAABfAAAARQAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF8AAABFAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFeAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABfAAAARQAAAEUAAAJFAAABRQAAAUUAAAJFAAACXgAAAF4AAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXwAAAF4AAABeAAAAXgAAAF8AAABPAAAATwAAAF8AAABFAAACRQAAAEUAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABPAAAATwAAAE8AAABfAAAARQAAAkUAAAJFAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAABRQAAAA== + tiles: AAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAATwAAAE8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAE8AAABPAAAATwAAAF8AAABPAAAAXwAAAF8AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF8AAABeAAAAXgAAAF4AAABfAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABPAAAAXwAAAEUAAAFFAAAARQAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF8AAABFAAABRQAAAUUAAANFAAAARQAAAkUAAAMAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABfAAAARQAAAl8AAABfAAAAXwAAAF8AAABFAAACAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAEUAAANfAAAAXwAAAF8AAABfAAAARQAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF8AAABFAAABXwAAAF8AAABfAAAAXwAAAEUAAAFeAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABfAAAARQAAA0UAAAFFAAABRQAAAUUAAAJFAAABXgAAAF4AAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXwAAAF4AAABeAAAAXgAAAF8AAABPAAAATwAAAF8AAABFAAABRQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABPAAAATwAAAE8AAABfAAAARQAAAUUAAAJFAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAAARQAAAA== -6,2: ind: -6,2 - tiles: XgAAAF4AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAABRQAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF4AAABfAAAAXwAAAF8AAABFAAADRQAAAkUAAAMAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAATwAAAF8AAABfAAAATwAAAAAAAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXgAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABPAAAATwAAAE8AAABfAAAAAAAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAAAAAABeAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAAAAAAAAXgAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAAAAAABeAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAAAAAAAAXgAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAAAAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAAAAAABeAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAAAAAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: XgAAAF4AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAAARQAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF4AAABfAAAAXwAAAF8AAABFAAADRQAAA0UAAAEAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAATwAAAF8AAABfAAAATwAAAAAAAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXgAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABPAAAATwAAAE8AAABfAAAAAAAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAAAAAABeAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAAAAAAAAXgAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAAAAAABeAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAAAAAAAAXgAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAAAAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAAAAAABeAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAAAAAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== -7,1: ind: -7,1 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABfAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== @@ -8856,14 +8856,11 @@ entities: -1,-1: 0: 65535 -1,0: - 0: 65531 - 1: 4 + 0: 65535 -4,-3: - 0: 61439 - 2: 4096 + 0: 65535 -4,-2: - 2: 1 - 0: 65534 + 0: 65535 -4,-1: 0: 65535 -4,-4: @@ -8873,22 +8870,17 @@ entities: -3,-3: 0: 65535 -3,-2: - 0: 32767 - 2: 32768 + 0: 65535 -3,-1: - 0: 65527 - 2: 8 + 0: 65535 -2,-4: 0: 65535 -2,-3: 0: 65535 -2,-2: - 0: 56319 - 2: 8192 - 1: 1024 + 0: 65535 -2,-1: - 0: 65533 - 2: 2 + 0: 65535 -1,-4: 0: 65535 -1,-3: @@ -8896,8 +8888,7 @@ entities: -1,-2: 0: 65535 -4,0: - 2: 1093 - 0: 64442 + 0: 65535 -4,1: 0: 65535 -3,0: @@ -8915,38 +8906,33 @@ entities: 0,-3: 0: 65535 0,-2: - 0: 8191 - 2: 57344 + 0: 65535 0,-1: 0: 65535 1,-4: 0: 63359 - 3: 2176 + 1: 2176 1,-3: - 0: 57343 - 2: 8192 + 0: 65535 1,-2: 0: 65535 1,-1: 0: 65535 2,-4: - 3: 65520 + 1: 65520 0: 15 2,-3: 0: 65535 2,-2: 0: 65535 2,-1: - 0: 65279 - 2: 256 + 0: 65535 3,-4: - 0: 62224 - 3: 1100 + 0: 63324 3,-3: 0: 65535 3,-2: - 0: 24575 - 2: 40960 + 0: 65535 3,-1: 0: 65535 0,0: @@ -8954,8 +8940,7 @@ entities: 0,1: 0: 65535 1,0: - 0: 65493 - 2: 42 + 0: 65535 1,1: 0: 65535 2,0: @@ -8969,17 +8954,13 @@ entities: -3,-5: 0: 63504 -2,-5: - 0: 65520 - 3: 5 + 0: 65525 -1,-5: - 0: 64768 - 3: 68 + 0: 64836 0,-5: - 0: 65520 - 3: 4 + 0: 65524 1,-5: - 0: 62208 - 3: 2218 + 0: 64426 -5,-3: 0: 65535 -5,-2: @@ -8987,8 +8968,7 @@ entities: -5,-1: 0: 65535 -5,0: - 0: 65523 - 2: 12 + 0: 65535 -5,1: 0: 65535 4,-4: @@ -9002,8 +8982,7 @@ entities: 5,-4: 0: 4351 5,-3: - 0: 49055 - 2: 16384 + 0: 65439 5,-2: 0: 65535 5,-1: @@ -9011,24 +8990,19 @@ entities: 6,-3: 0: 65295 6,-2: - 0: 49151 - 2: 16384 + 0: 65535 6,-1: - 0: 61439 - 2: 4096 + 0: 65535 7,-2: - 0: 30581 - 2: 2 + 0: 30583 7,-1: 0: 63359 4,0: - 0: 65407 - 2: 128 + 0: 65535 4,1: 0: 65535 5,0: - 0: 63471 - 2: 2064 + 0: 65535 5,1: 0: 65535 6,0: @@ -9052,21 +9026,17 @@ entities: -3,3: 0: 65535 -2,2: - 0: 30591 - 2: 34944 + 0: 65535 -2,3: 0: 65535 -1,2: 0: 65535 -1,3: - 0: 16383 - 2: 49152 + 0: 65535 0,2: - 0: 65271 - 2: 264 + 0: 65535 0,3: - 0: 36863 - 2: 28672 + 0: 65535 1,2: 0: 65535 1,3: @@ -9076,8 +9046,7 @@ entities: 2,3: 0: 65535 3,2: - 0: 65531 - 2: 4 + 0: 65535 3,3: 0: 65535 -8,-3: @@ -9087,15 +9056,13 @@ entities: -7,-3: 0: 65535 -7,-2: - 0: 65407 - 2: 128 + 0: 65535 -7,-1: 0: 65535 -6,-3: 0: 65535 -6,-2: - 0: 65519 - 2: 16 + 0: 65535 -6,-1: 0: 65535 -7,0: @@ -9121,11 +9088,9 @@ entities: 4,3: 0: 65535 5,2: - 0: 57343 - 2: 8192 + 0: 65535 5,3: - 0: 65501 - 2: 34 + 0: 65535 6,3: 0: 65535 7,3: @@ -9169,8 +9134,7 @@ entities: 5,6: 0: 65535 5,7: - 0: 64511 - 2: 1024 + 0: 65535 6,4: 0: 65535 6,5: @@ -9194,11 +9158,9 @@ entities: 8,4: 0: 4369 0,4: - 2: 8199 - 0: 57336 + 0: 65535 0,5: - 0: 65533 - 2: 2 + 0: 65535 0,6: 0: 65535 0,7: @@ -9206,11 +9168,9 @@ entities: 1,4: 0: 65535 1,5: - 0: 65523 - 2: 12 + 0: 65535 1,6: - 0: 62463 - 2: 3072 + 0: 65535 1,7: 0: 65535 2,4: @@ -9218,23 +9178,19 @@ entities: 2,5: 0: 65535 2,6: - 0: 64767 - 2: 768 + 0: 65535 2,7: 0: 65535 3,4: 0: 65535 3,5: - 0: 30719 - 2: 34816 + 0: 65535 3,6: - 0: 65527 - 2: 8 + 0: 65535 3,7: 0: 65535 -4,4: - 0: 61439 - 2: 4096 + 0: 65535 -4,5: 0: 65535 -4,6: @@ -9246,8 +9202,7 @@ entities: -3,5: 0: 65535 -3,6: - 0: 65523 - 2: 12 + 0: 65535 -3,7: 0: 65535 -2,4: @@ -9259,8 +9214,7 @@ entities: -2,7: 0: 65535 -1,4: - 0: 40951 - 2: 24584 + 0: 65535 -1,5: 0: 65535 -1,6: @@ -9278,11 +9232,9 @@ entities: 1,8: 0: 65535 1,9: - 0: 16383 - 2: 49152 + 0: 65535 1,10: - 0: 48127 - 2: 17408 + 0: 65535 1,11: 0: 65535 2,8: @@ -9292,8 +9244,7 @@ entities: 2,10: 0: 65535 3,8: - 0: 65531 - 2: 4 + 0: 65535 3,9: 0: 65535 3,10: @@ -9323,8 +9274,7 @@ entities: 5,9: 0: 65535 5,10: - 0: 32767 - 2: 32768 + 0: 65535 6,8: 0: 30039 6,9: @@ -9336,20 +9286,17 @@ entities: -5,8: 0: 65535 -5,4: - 0: 16383 - 2: 49152 + 0: 65535 -5,-4: 0: 65535 -4,-5: 0: 62704 -6,7: - 0: 65527 - 2: 8 + 0: 65535 -5,7: 0: 65535 -5,6: - 0: 65467 - 2: 68 + 0: 65535 -5,-5: 0: 36736 -8,1: @@ -9363,20 +9310,17 @@ entities: -7,3: 0: 65535 -6,2: - 0: 30591 - 2: 34944 + 0: 65535 -6,3: 0: 65535 -8,8: - 0: 32767 - 2: 32768 + 0: 65535 -7,8: 0: 65535 -8,4: 0: 65535 -8,5: - 0: 65527 - 2: 8 + 0: 65535 -8,6: 0: 65535 -8,7: @@ -9406,8 +9350,7 @@ entities: -9,1: 0: 65535 -9,2: - 0: 56799 - 2: 8736 + 0: 65535 -9,3: 0: 65535 -10,4: @@ -9437,8 +9380,7 @@ entities: -6,-4: 0: 65534 -8,0: - 0: 64443 - 2: 1092 + 0: 65535 -4,9: 0: 65535 -4,10: @@ -9456,8 +9398,7 @@ entities: -12,1: 0: 65535 -11,0: - 0: 65263 - 2: 272 + 0: 65535 -11,1: 0: 65535 -10,0: @@ -9475,18 +9416,13 @@ entities: -11,-3: 0: 65535 -11,-2: - 0: 65519 - 2: 16 + 0: 65535 -11,-1: 0: 65535 -11,-4: - 0: 62448 - 2: 3072 - 3: 15 + 0: 65535 -10,-4: - 0: 65264 - 2: 256 - 3: 3 + 0: 65523 -10,-3: 0: 65535 -10,-2: @@ -9514,23 +9450,19 @@ entities: -12,2: 0: 65535 -12,3: - 0: 16383 - 2: 49152 + 0: 65535 -11,2: 0: 65535 -11,3: - 0: 61439 - 2: 4096 + 0: 65535 -12,4: 0: 65535 -12,5: 0: 65535 -12,6: - 0: 48127 - 2: 17408 + 0: 65535 -12,7: - 0: 65531 - 2: 4 + 0: 65535 -11,4: 0: 65535 -11,5: @@ -9556,13 +9488,11 @@ entities: -15,-1: 0: 65535 -14,-3: - 0: 65311 - 2: 224 + 0: 65535 -14,-2: 0: 65535 -14,-1: - 0: 57343 - 2: 8192 + 0: 65535 -16,0: 0: 61463 -16,1: @@ -9576,14 +9506,11 @@ entities: -15,3: 0: 65535 -14,0: - 0: 61951 - 2: 1536 - 1: 2048 + 0: 65535 -14,1: 0: 65535 -14,2: - 0: 61951 - 2: 3584 + 0: 65535 -14,3: 0: 65535 -13,2: @@ -9617,8 +9544,7 @@ entities: -15,8: 0: 65535 -14,8: - 0: 45055 - 2: 20480 + 0: 65535 -13,8: 0: 65535 -20,-3: @@ -9630,8 +9556,7 @@ entities: -19,-3: 0: 65535 -19,-2: - 0: 61423 - 4: 4096 + 0: 65519 -19,-1: 0: 65535 -18,-3: @@ -9643,8 +9568,7 @@ entities: -17,-3: 0: 65535 -17,-2: - 0: 65295 - 3: 112 + 0: 65407 -17,-1: 0: 65535 -20,0: @@ -9652,8 +9576,7 @@ entities: -20,1: 0: 56799 -19,0: - 4: 1 - 0: 65278 + 0: 65279 -19,1: 0: 65535 -18,0: @@ -9661,27 +9584,23 @@ entities: -18,1: 0: 65535 -17,0: - 0: 61695 - 3: 1792 + 0: 63487 -17,1: 0: 65535 2,11: 0: 65535 3,11: - 0: 65279 - 2: 256 + 0: 65535 -4,11: 0: 65535 -3,9: - 0: 16371 - 2: 49164 + 0: 65535 -3,10: 0: 65535 -3,11: 0: 65535 -2,9: - 0: 40959 - 2: 24576 + 0: 65535 -2,10: 0: 65535 -2,11: @@ -9697,23 +9616,19 @@ entities: -5,11: 0: 65535 -7,13: - 0: 65471 - 2: 64 + 0: 65535 -7,14: 0: 8191 -6,12: - 0: 62461 - 2: 3074 + 0: 65535 -6,13: - 0: 65407 - 2: 128 + 0: 65535 -6,14: 0: 65535 -6,15: 0: 65535 -5,12: - 0: 65279 - 2: 256 + 0: 65535 -5,13: 0: 65535 -5,14: @@ -9729,15 +9644,13 @@ entities: -4,15: 0: 65535 -3,12: - 0: 63351 - 2: 2184 + 0: 65535 -3,13: 0: 65535 -3,14: 0: 65535 -3,15: - 0: 65471 - 2: 64 + 0: 65535 -2,12: 0: 63487 -2,13: @@ -9761,14 +9674,11 @@ entities: 1,12: 0: 65535 1,13: - 0: 37375 - 3: 2048 + 0: 39423 2,12: - 0: 63487 - 2: 2048 + 0: 65535 2,13: - 2: 1 - 0: 61950 + 0: 61951 3,12: 0: 65535 3,13: @@ -9792,16 +9702,13 @@ entities: -5,17: 0: 3919 -8,9: - 0: 63487 - 2: 2048 + 0: 65535 -8,10: 0: 65535 -8,11: - 0: 61435 - 2: 4100 + 0: 65535 -7,9: - 0: 64447 - 2: 1088 + 0: 65535 -7,10: 0: 65535 -7,11: @@ -9827,20 +9734,17 @@ entities: -9,9: 0: 65535 -9,10: - 0: 65023 - 5: 512 + 0: 65535 -9,11: 0: 65535 -13,9: - 0: 65023 - 2: 512 + 0: 65535 -13,10: 0: 65535 -13,11: 0: 65535 -8,12: - 0: 65487 - 2: 48 + 0: 65535 -8,13: 0: 65535 -8,14: @@ -9860,15 +9764,13 @@ entities: -11,12: 0: 65535 -11,13: - 0: 65521 - 2: 14 + 0: 65535 -11,14: 0: 65535 -10,12: 0: 65535 -10,13: - 2: 1537 - 0: 63998 + 0: 65535 -10,14: 0: 65535 -9,12: @@ -9886,13 +9788,11 @@ entities: -15,11: 0: 65535 -14,9: - 2: 1 - 0: 65534 + 0: 65535 -14,10: 0: 65535 -14,11: - 0: 65533 - 2: 2 + 0: 65535 -12,15: 0: 65535 -11,15: @@ -9900,46 +9800,37 @@ entities: -10,15: 0: 65535 -16,12: - 0: 65521 - 2: 14 + 0: 65535 -16,13: - 0: 53247 - 2: 12288 + 0: 65535 -16,14: 0: 65535 -16,15: - 0: 49151 - 2: 16384 + 0: 65535 -15,12: - 0: 32767 - 2: 32768 + 0: 65535 -15,13: 0: 65535 -15,14: - 0: 64511 - 2: 1024 + 0: 65535 -15,15: 0: 65535 -14,12: - 0: 49151 - 2: 16384 + 0: 65535 -14,13: - 0: 65391 - 2: 144 + 0: 65535 -14,14: 0: 65535 -14,15: 0: 65535 -13,12: - 0: 57343 - 2: 8192 + 0: 65535 -13,13: 0: 65535 -13,14: 0: 65535 -13,15: - 0: 63487 - 2: 2048 + 0: 65535 -20,13: 0: 65535 -20,14: @@ -9949,20 +9840,17 @@ entities: -19,13: 0: 65535 -19,14: - 2: 1 - 0: 65534 + 0: 65535 -19,15: 0: 255 -18,13: 0: 65535 -18,14: - 0: 65529 - 2: 6 + 0: 65535 -18,15: 0: 52479 -17,13: - 0: 16383 - 2: 49152 + 0: 65535 -17,14: 0: 65535 -17,15: @@ -9990,8 +9878,7 @@ entities: -13,16: 0: 65535 -13,17: - 0: 30711 - 2: 8 + 0: 30719 -13,18: 0: 32631 -12,16: @@ -10019,11 +9906,9 @@ entities: -16,5: 0: 65535 -16,6: - 0: 48895 - 2: 16640 + 0: 65535 -16,7: - 0: 65467 - 2: 68 + 0: 65535 -16,8: 0: 65535 -16,9: @@ -10037,16 +9922,13 @@ entities: -20,2: 0: 44719 -19,2: - 0: 65255 - 2: 8 + 0: 65263 -19,3: 0: 65534 -18,2: - 0: 65531 - 2: 4 + 0: 65535 -18,3: - 0: 32767 - 2: 32768 + 0: 65535 -17,2: 0: 65535 -17,3: @@ -10056,8 +9938,7 @@ entities: -19,12: 0: 65535 -18,12: - 0: 65471 - 2: 64 + 0: 65535 -23,12: 0: 52478 -23,13: @@ -10068,7 +9949,7 @@ entities: 0: 4095 -21,12: 0: 63743 - 3: 1792 + 1: 1792 -20,8: 0: 65535 -20,9: @@ -10084,8 +9965,7 @@ entities: -19,10: 0: 65535 -19,11: - 0: 57343 - 2: 8192 + 0: 65535 -18,8: 0: 65535 -18,9: @@ -10097,11 +9977,9 @@ entities: -17,8: 0: 65535 -17,9: - 0: 57343 - 2: 8192 + 0: 65535 -17,10: - 0: 65533 - 2: 2 + 0: 65535 -17,11: 0: 65535 -20,4: @@ -10111,8 +9989,7 @@ entities: -20,6: 0: 65535 -20,7: - 0: 65519 - 2: 16 + 0: 65535 -19,4: 0: 65535 -19,5: @@ -10124,11 +10001,9 @@ entities: -18,4: 0: 65535 -18,5: - 0: 36863 - 2: 28672 + 0: 65535 -18,6: - 0: 65471 - 2: 64 + 0: 65535 -18,7: 0: 65535 -17,4: @@ -10136,29 +10011,27 @@ entities: -17,5: 0: 65535 -17,6: - 0: 61439 - 2: 4096 + 0: 65535 -17,7: - 2: 4369 - 0: 61166 + 0: 65535 -24,8: 0: 65535 -24,9: 0: 44719 -23,8: 0: 8191 - 6: 57344 + 2: 57344 -23,9: 0: 7967 - 7: 224 - 3: 57344 + 3: 224 + 1: 57344 -23,10: 0: 7967 - 3: 224 - 8: 57344 + 1: 224 + 4: 57344 -23,11: 0: 65311 - 3: 224 + 1: 224 -22,8: 0: 65535 -22,9: @@ -10202,16 +10075,13 @@ entities: -22,7: 0: 65535 -21,4: - 0: 57343 - 2: 8192 + 0: 65535 -21,5: - 0: 65533 - 2: 2 + 0: 65535 -21,6: 0: 65535 -21,7: - 0: 65343 - 2: 192 + 0: 65535 -28,8: 0: 65359 -28,9: @@ -10257,28 +10127,21 @@ entities: -12,-4: 0: 65535 -16,-4: - 0: 24336 - 3: 41185 + 0: 65521 -13,-4: - 0: 61422 - 3: 4113 + 0: 65535 -19,-4: - 0: 65520 - 3: 15 + 0: 65535 -18,-4: - 0: 65296 - 3: 225 + 0: 65521 -17,-4: - 0: 65520 - 3: 15 + 0: 65535 -13,-5: - 0: 60928 - 3: 4352 + 0: 65280 -12,-5: 0: 65280 -11,16: - 0: 65531 - 2: 4 + 0: 65535 -10,16: 0: 65535 -16,19: @@ -10302,20 +10165,15 @@ entities: -15,22: 0: 65535 -14,20: - 0: 65533 - 2: 2 + 0: 65535 -14,21: - 2: 1 - 0: 65534 + 0: 65535 -14,22: - 0: 65279 - 2: 256 + 0: 65535 -13,20: - 0: 57343 - 2: 8192 + 0: 65535 -13,21: - 0: 65533 - 2: 2 + 0: 65535 -13,22: 0: 32767 0,14: @@ -10381,14 +10239,11 @@ entities: -6,-5: 0: 19968 -15,-4: - 0: 9984 - 3: 53488 + 0: 63472 -14,-4: - 0: 12032 - 3: 32904 + 0: 44936 -20,-4: - 0: 51200 - 3: 13440 + 0: 64640 -24,10: 0: 43658 -24,11: @@ -10414,8 +10269,7 @@ entities: 8,-1: 0: 4369 2,-5: - 0: 12288 - 3: 36863 + 0: 49151 5,12: 0: 8754 5,13: @@ -10435,25 +10289,25 @@ entities: -9,17: 0: 12835 -2,-6: - 3: 63984 + 0: 63984 -1,-6: - 3: 62672 + 0: 62672 0,-6: - 3: 61904 + 0: 61904 1,-6: - 3: 63984 + 0: 63984 2,-6: - 3: 63696 + 0: 63696 3,-6: - 3: 21616 + 0: 21616 3,-5: - 3: 17909 + 0: 17909 -14,-5: - 3: 34816 + 0: 34816 -11,-5: - 3: 61440 + 0: 61440 -10,-5: - 3: 4096 + 0: 4096 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -10473,69 +10327,9 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 20.078886 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 18.472576 - - 69.49208 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - 0 - 0 - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 10.091824 - - 37.964485 - - 0 - 0 - 0 - 0 @@ -10598,6 +10392,7 @@ entities: type: BecomesStation - nextUpdate: 0 type: SpreaderGrid + - type: GridPathfinding - uid: 5005 components: - type: MetaData @@ -10607,6 +10402,8 @@ entities: - type: Broadphase - type: OccluderTree - type: LoadedMap + - type: GridTree + - type: MovedGrids - uid: 5016 components: - type: MetaData @@ -10757,6 +10554,7 @@ entities: type: GridAtmosphere - type: GasTileOverlay - type: RadiationGridResistance + - type: GridPathfinding - uid: 15661 components: - name: Urist McSlime @@ -14696,11 +14494,6 @@ entities: - pos: 14.5,39.5 parent: 1 type: Transform - - uid: 15917 - components: - - pos: 13.5,38.5 - parent: 1 - type: Transform - uid: 15918 components: - pos: 17.5,35.5 @@ -14711,16 +14504,6 @@ entities: - pos: 17.5,34.5 parent: 1 type: Transform - - uid: 15924 - components: - - pos: 24.5,39.5 - parent: 1 - type: Transform - - uid: 15925 - components: - - pos: 24.5,40.5 - parent: 1 - type: Transform - proto: BarSign entities: - uid: 5279 @@ -16277,6 +16060,20 @@ entities: - pos: -53.308907,-5.477154 parent: 1 type: Transform + - uid: 8997 + components: + - pos: -32.463276,-5.5537453 + parent: 1 + type: Transform + - nextSound: 217.9900297 + type: EmitSoundOnCollide + - uid: 9001 + components: + - pos: -32.69765,-5.3818703 + parent: 1 + type: Transform + - nextSound: 217.5561145 + type: EmitSoundOnCollide - uid: 12031 components: - pos: -31.49165,-1.6362362 @@ -16473,316 +16270,226 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 389 components: - pos: -5.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 390 components: - pos: -6.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 391 components: - pos: -7.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 392 components: - pos: -7.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 393 components: - pos: -7.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 394 components: - pos: -8.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 395 components: - pos: -9.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 396 components: - pos: -10.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 397 components: - pos: -11.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 398 components: - pos: -12.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 399 components: - pos: -7.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 400 components: - pos: -7.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 401 components: - pos: -9.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 402 components: - pos: -10.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 403 components: - pos: -11.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 404 components: - pos: -12.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 405 components: - pos: -8.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 406 components: - pos: -12.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 407 components: - pos: -12.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 408 components: - pos: -12.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 409 components: - pos: -12.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 410 components: - pos: -12.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 411 components: - pos: -12.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 412 components: - pos: -11.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 416 components: - pos: -9.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 417 components: - pos: -9.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 418 components: - pos: -4.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 419 components: - pos: -4.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 420 components: - pos: -4.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 421 components: - pos: -4.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 422 components: - pos: -3.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 423 components: - pos: -2.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 424 components: - pos: -1.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 425 components: - pos: -0.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 426 components: - pos: 0.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 427 components: - pos: 1.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 428 components: - pos: -2.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 429 components: - pos: -2.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 430 components: - pos: -2.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 431 components: - pos: 1.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 432 components: - pos: 1.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 433 components: - pos: 1.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 434 components: - pos: -1.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 435 components: - pos: -1.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 436 components: - pos: -1.5,-4.5 @@ -16790,36 +16497,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 437 components: - pos: 2.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 438 components: - pos: 2.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 439 components: - pos: 3.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 440 components: - pos: 4.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 441 components: - pos: 1.5,-9.5 @@ -16827,15 +16524,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 442 components: - pos: 1.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 443 components: - pos: 1.5,-11.5 @@ -16843,50 +16536,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 444 components: - pos: 1.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 445 components: - pos: 1.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 446 components: - pos: 1.5,-14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 447 components: - pos: 0.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 448 components: - pos: -0.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 449 components: - pos: -1.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 450 components: - pos: -2.5,-10.5 @@ -16894,57 +16573,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 451 components: - pos: -2.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 452 components: - pos: -3.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 453 components: - pos: -4.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 454 components: - pos: -4.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 455 components: - pos: -5.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 456 components: - pos: -6.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 457 components: - pos: -7.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 458 components: - pos: -8.5,-12.5 @@ -16952,8 +16615,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 459 components: - pos: -5.5,-13.5 @@ -16961,15 +16622,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 460 components: - pos: -5.5,-14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 461 components: - pos: -5.5,-15.5 @@ -16977,8 +16634,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 464 components: - pos: 16.5,-10.5 @@ -16986,8 +16641,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 588 components: - pos: 18.5,-10.5 @@ -16995,8 +16648,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 932 components: - pos: 26.5,0.5 @@ -17004,22 +16655,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 933 components: - pos: 26.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 934 components: - pos: 26.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 935 components: - pos: 27.5,2.5 @@ -17027,15 +16672,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 936 components: - pos: 28.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 940 components: - pos: 29.5,2.5 @@ -17043,8 +16684,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 941 components: - pos: 30.5,3.5 @@ -17052,8 +16691,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 942 components: - pos: 30.5,2.5 @@ -17061,8 +16698,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 943 components: - pos: 30.5,1.5 @@ -17070,50 +16705,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 984 components: - pos: 26.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 986 components: - pos: 26.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1016 components: - pos: 27.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1017 components: - pos: 26.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1021 components: - pos: 26.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1022 components: - pos: 26.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1031 components: - pos: 29.5,24.5 @@ -17121,15 +16742,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1032 components: - pos: 28.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1418 components: - pos: -24.5,-12.5 @@ -17137,8 +16754,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1422 components: - pos: 24.5,37.5 @@ -17146,8 +16761,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1423 components: - pos: 21.5,36.5 @@ -17155,8 +16768,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1425 components: - pos: 24.5,38.5 @@ -17164,8 +16775,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1439 components: - pos: 20.5,36.5 @@ -17173,8 +16782,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1440 components: - pos: 24.5,39.5 @@ -17182,57 +16789,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1516 components: - pos: -13.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1517 components: - pos: -14.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1518 components: - pos: -15.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1519 components: - pos: -16.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1523 components: - pos: -16.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1524 components: - pos: -16.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1525 components: - pos: -16.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1526 components: - pos: -16.5,-6.5 @@ -17240,15 +16831,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1655 components: - pos: 16.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1658 components: - pos: 15.5,-6.5 @@ -17256,29 +16843,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1659 components: - pos: 15.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1660 components: - pos: 15.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1662 components: - pos: 15.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1665 components: - pos: 17.5,-10.5 @@ -17286,8 +16865,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1683 components: - pos: 12.5,0.5 @@ -17295,246 +16872,176 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1684 components: - pos: 11.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1685 components: - pos: 10.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1686 components: - pos: 9.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1687 components: - pos: 8.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1688 components: - pos: 8.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1689 components: - pos: 10.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1690 components: - pos: 10.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1691 components: - pos: 10.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1692 components: - pos: 9.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1693 components: - pos: 8.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1694 components: - pos: 7.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1695 components: - pos: 11.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1696 components: - pos: 12.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1697 components: - pos: 13.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1698 components: - pos: 14.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1699 components: - pos: 15.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1700 components: - pos: 16.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1701 components: - pos: 17.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1702 components: - pos: 15.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1703 components: - pos: 15.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1704 components: - pos: 15.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1705 components: - pos: 15.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1706 components: - pos: 15.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1707 components: - pos: 15.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1708 components: - pos: 17.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1709 components: - pos: 18.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1710 components: - pos: 19.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1711 components: - pos: 20.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1712 components: - pos: 20.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1713 components: - pos: 20.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1714 components: - pos: 20.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1715 components: - pos: 21.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1716 components: - pos: 20.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1717 components: - pos: 10.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1718 components: - pos: 10.5,-4.5 @@ -17542,8 +17049,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1719 components: - pos: 10.5,-5.5 @@ -17551,15 +17056,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1720 components: - pos: 11.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1721 components: - pos: 12.5,-5.5 @@ -17567,8 +17068,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1722 components: - pos: 13.5,-5.5 @@ -17576,8 +17075,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1723 components: - pos: 14.5,-5.5 @@ -17585,8 +17082,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1724 components: - pos: 15.5,-5.5 @@ -17594,8 +17089,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1725 components: - pos: 15.5,-8.5 @@ -17603,8 +17096,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1726 components: - pos: 17.5,-5.5 @@ -17612,8 +17103,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1727 components: - pos: 18.5,-5.5 @@ -17621,8 +17110,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1728 components: - pos: 19.5,-5.5 @@ -17630,8 +17117,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1729 components: - pos: 20.5,-5.5 @@ -17639,8 +17124,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1730 components: - pos: 21.5,-5.5 @@ -17648,8 +17131,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1731 components: - pos: 22.5,-5.5 @@ -17657,15 +17138,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1732 components: - pos: 23.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1733 components: - pos: 24.5,-5.5 @@ -17673,8 +17150,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1734 components: - pos: 25.5,-5.5 @@ -17682,8 +17157,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1735 components: - pos: 26.5,-5.5 @@ -17691,8 +17164,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1736 components: - pos: 27.5,-5.5 @@ -17700,8 +17171,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1737 components: - pos: 28.5,-5.5 @@ -17709,8 +17178,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1738 components: - pos: 28.5,-6.5 @@ -17718,8 +17185,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1739 components: - pos: 28.5,-7.5 @@ -17727,8 +17192,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1740 components: - pos: 28.5,-8.5 @@ -17736,85 +17199,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1769 components: - pos: -61.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1847 components: - pos: 10.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1848 components: - pos: 10.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1849 components: - pos: 10.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1850 components: - pos: 10.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1851 components: - pos: 9.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1852 components: - pos: 8.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1853 components: - pos: 7.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1854 components: - pos: 6.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1855 components: - pos: 5.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1860 components: - pos: -9.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1861 components: - pos: -10.5,-12.5 @@ -17822,15 +17261,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1862 components: - pos: -11.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1863 components: - pos: -12.5,-12.5 @@ -17838,22 +17273,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1864 components: - pos: -13.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1865 components: - pos: -14.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1866 components: - pos: -15.5,-12.5 @@ -17861,148 +17290,106 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1867 components: - pos: -16.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1877 components: - pos: -17.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1878 components: - pos: -17.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2082 components: - pos: 1.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2083 components: - pos: 2.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2084 components: - pos: 3.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2085 components: - pos: 4.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2086 components: - pos: 5.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2087 components: - pos: 6.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2088 components: - pos: 7.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2089 components: - pos: 8.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2090 components: - pos: 9.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2091 components: - pos: 10.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2092 components: - pos: 11.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2093 components: - pos: 12.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2094 components: - pos: 4.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2095 components: - pos: 4.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2096 components: - pos: 4.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2097 components: - pos: 4.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2098 components: - pos: 4.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2099 components: - pos: 4.5,35.5 @@ -18010,106 +17397,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2100 components: - pos: 5.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2101 components: - pos: 6.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2105 components: - pos: 7.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2106 components: - pos: 8.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2107 components: - pos: 9.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2108 components: - pos: 8.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2109 components: - pos: 8.5,35.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2110 components: - pos: 8.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2111 components: - pos: 8.5,37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2112 components: - pos: 11.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2113 components: - pos: 11.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2114 components: - pos: 11.5,35.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2115 components: - pos: 11.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2116 components: - pos: 11.5,37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2117 components: - pos: 4.5,36.5 @@ -18117,22 +17474,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2119 components: - pos: 4.5,37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2120 components: - pos: 4.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2121 components: - pos: 3.5,38.5 @@ -18140,15 +17491,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2122 components: - pos: 2.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2123 components: - pos: 1.5,38.5 @@ -18156,8 +17503,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2124 components: - pos: 0.5,38.5 @@ -18165,8 +17510,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2125 components: - pos: 1.5,21.5 @@ -18174,428 +17517,306 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2126 components: - pos: 2.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2127 components: - pos: 3.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2128 components: - pos: 3.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2129 components: - pos: 3.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2130 components: - pos: 3.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2131 components: - pos: 3.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2132 components: - pos: 3.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2133 components: - pos: 3.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2134 components: - pos: 2.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2135 components: - pos: 4.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2138 components: - pos: 5.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2139 components: - pos: 6.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2140 components: - pos: 7.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2141 components: - pos: 8.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2142 components: - pos: 9.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2143 components: - pos: 9.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2144 components: - pos: 9.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2145 components: - pos: 9.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2146 components: - pos: 7.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2147 components: - pos: 7.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2148 components: - pos: 7.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2149 components: - pos: 3.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2150 components: - pos: 3.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2151 components: - pos: 3.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2152 components: - pos: 3.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2153 components: - pos: 3.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2154 components: - pos: 3.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2155 components: - pos: 2.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2156 components: - pos: 1.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2157 components: - pos: 0.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2158 components: - pos: -0.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2159 components: - pos: 4.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2160 components: - pos: 5.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2161 components: - pos: 6.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2162 components: - pos: 7.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2163 components: - pos: 8.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2164 components: - pos: 9.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2165 components: - pos: 10.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2166 components: - pos: 10.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2173 components: - pos: 10.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2174 components: - pos: 10.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2175 components: - pos: 10.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2176 components: - pos: 10.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2177 components: - pos: 10.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2178 components: - pos: 10.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2179 components: - pos: 9.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2180 components: - pos: 8.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2181 components: - pos: 7.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2185 components: - pos: 9.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2186 components: - pos: 8.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2187 components: - pos: 7.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2220 components: - pos: 12.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2221 components: - pos: 13.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2222 components: - pos: 14.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2223 components: - pos: 15.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2224 components: - pos: 15.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2225 components: - pos: 15.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2226 components: - pos: 15.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2227 components: - pos: 15.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2228 components: - pos: 16.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2229 components: - pos: 17.5,32.5 @@ -18603,15 +17824,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2230 components: - pos: 18.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2231 components: - pos: 19.5,32.5 @@ -18619,22 +17836,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2232 components: - pos: 19.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2233 components: - pos: 19.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2234 components: - pos: 19.5,29.5 @@ -18642,15 +17853,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2241 components: - pos: 11.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2242 components: - pos: 12.5,15.5 @@ -18658,8 +17865,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2243 components: - pos: 13.5,15.5 @@ -18667,8 +17872,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2244 components: - pos: 13.5,16.5 @@ -18676,15 +17879,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2245 components: - pos: 13.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2246 components: - pos: 13.5,18.5 @@ -18692,85 +17891,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2247 components: - pos: 6.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2248 components: - pos: 6.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2269 components: - pos: 1.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2270 components: - pos: 0.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2271 components: - pos: -0.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2272 components: - pos: -1.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2273 components: - pos: -2.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2274 components: - pos: -2.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2275 components: - pos: -2.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2276 components: - pos: -2.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2277 components: - pos: -2.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2278 components: - pos: -2.5,24.5 @@ -18778,141 +17953,101 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2279 components: - pos: -2.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2280 components: - pos: -2.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2281 components: - pos: 0.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2282 components: - pos: 0.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2283 components: - pos: 0.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2284 components: - pos: 0.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2288 components: - pos: 0.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2289 components: - pos: -0.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2290 components: - pos: -1.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2291 components: - pos: -2.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2292 components: - pos: -3.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2293 components: - pos: -3.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2294 components: - pos: -3.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2295 components: - pos: -3.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2296 components: - pos: -3.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2297 components: - pos: -0.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2298 components: - pos: -0.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2299 components: - pos: -0.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2300 components: - pos: -0.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2399 components: - pos: 16.5,36.5 @@ -18920,8 +18055,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2519 components: - pos: 22.5,10.5 @@ -18929,8 +18062,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2520 components: - pos: 22.5,9.5 @@ -18938,106 +18069,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2521 components: - pos: 22.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2522 components: - pos: 22.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2523 components: - pos: 22.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2524 components: - pos: 21.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2525 components: - pos: 20.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2526 components: - pos: 19.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2527 components: - pos: 18.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2528 components: - pos: 17.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2529 components: - pos: 16.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2530 components: - pos: 15.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2531 components: - pos: 14.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2532 components: - pos: 13.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2533 components: - pos: 22.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2534 components: - pos: 22.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2535 components: - pos: 22.5,3.5 @@ -19045,8 +18146,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2536 components: - pos: 17.5,7.5 @@ -19054,15 +18153,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2537 components: - pos: 17.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2538 components: - pos: 17.5,9.5 @@ -19070,22 +18165,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2539 components: - pos: 17.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2540 components: - pos: 17.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2541 components: - pos: 17.5,12.5 @@ -19093,8 +18182,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2542 components: - pos: 22.5,11.5 @@ -19102,8 +18189,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2543 components: - pos: 22.5,12.5 @@ -19111,8 +18196,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2544 components: - pos: 22.5,13.5 @@ -19120,8 +18203,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2545 components: - pos: 22.5,14.5 @@ -19129,8 +18210,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2546 components: - pos: 22.5,15.5 @@ -19138,8 +18217,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2547 components: - pos: 22.5,16.5 @@ -19147,8 +18224,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2548 components: - pos: 22.5,17.5 @@ -19156,8 +18231,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2549 components: - pos: 22.5,18.5 @@ -19165,8 +18238,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2550 components: - pos: 22.5,19.5 @@ -19174,8 +18245,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2551 components: - pos: 22.5,20.5 @@ -19183,8 +18252,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2552 components: - pos: 22.5,21.5 @@ -19192,8 +18259,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2553 components: - pos: 22.5,22.5 @@ -19201,22 +18266,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2554 components: - pos: 22.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2555 components: - pos: 22.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2556 components: - pos: 22.5,25.5 @@ -19224,78 +18283,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2557 components: - pos: 23.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2558 components: - pos: 24.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2559 components: - pos: 25.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2560 components: - pos: 26.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2561 components: - pos: 27.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2562 components: - pos: 27.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2563 components: - pos: 27.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2564 components: - pos: 27.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2565 components: - pos: 27.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2566 components: - pos: 28.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2567 components: - pos: 29.5,8.5 @@ -19303,8 +18340,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2568 components: - pos: 30.5,8.5 @@ -19312,29 +18347,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2569 components: - pos: 27.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2570 components: - pos: -7.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2571 components: - pos: -7.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2572 components: - pos: 23.5,14.5 @@ -19342,8 +18369,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2573 components: - pos: 24.5,14.5 @@ -19351,8 +18376,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2574 components: - pos: 25.5,14.5 @@ -19360,22 +18383,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2575 components: - pos: 26.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2576 components: - pos: 27.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2577 components: - pos: 25.5,13.5 @@ -19383,22 +18400,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2578 components: - pos: 25.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2579 components: - pos: 25.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2580 components: - pos: 23.5,18.5 @@ -19406,8 +18417,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2581 components: - pos: 24.5,18.5 @@ -19415,36 +18424,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2582 components: - pos: 25.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2583 components: - pos: 26.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2584 components: - pos: 27.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2585 components: - pos: 28.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2586 components: - pos: 29.5,18.5 @@ -19452,8 +18451,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2587 components: - pos: 30.5,18.5 @@ -19461,15 +18458,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2588 components: - pos: 26.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2594 components: - pos: 31.5,18.5 @@ -19477,8 +18470,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2595 components: - pos: 31.5,8.5 @@ -19486,260 +18477,186 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2596 components: - pos: -7.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2597 components: - pos: -7.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2598 components: - pos: -6.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2599 components: - pos: -5.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2600 components: - pos: -4.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2601 components: - pos: -3.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2602 components: - pos: -2.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2603 components: - pos: -1.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2604 components: - pos: -0.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2605 components: - pos: 0.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2606 components: - pos: 1.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2607 components: - pos: -5.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2608 components: - pos: -8.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2609 components: - pos: -9.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2610 components: - pos: -10.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2611 components: - pos: -11.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2612 components: - pos: -12.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2613 components: - pos: -13.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2614 components: - pos: -14.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2615 components: - pos: -15.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2616 components: - pos: -16.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2617 components: - pos: -16.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2618 components: - pos: -4.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2619 components: - pos: -5.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2620 components: - pos: -6.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2621 components: - pos: -7.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2622 components: - pos: -8.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2623 components: - pos: -8.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2624 components: - pos: -8.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2625 components: - pos: -8.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2626 components: - pos: -8.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2627 components: - pos: -8.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2628 components: - pos: -9.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2629 components: - pos: -10.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2630 components: - pos: -11.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2631 components: - pos: -12.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2699 components: - pos: -10.5,17.5 @@ -19747,85 +18664,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2700 components: - pos: -11.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2701 components: - pos: -12.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2702 components: - pos: -12.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2703 components: - pos: -12.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2704 components: - pos: -12.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2705 components: - pos: -12.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2706 components: - pos: -12.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2707 components: - pos: -12.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2708 components: - pos: -12.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2709 components: - pos: -12.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2710 components: - pos: -11.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2711 components: - pos: -10.5,9.5 @@ -19833,36 +18726,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2712 components: - pos: -9.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2713 components: - pos: -8.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2714 components: - pos: -13.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2715 components: - pos: -14.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2716 components: - pos: -15.5,9.5 @@ -19870,8 +18753,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2717 components: - pos: -16.5,9.5 @@ -19879,15 +18760,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2718 components: - pos: -13.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2719 components: - pos: -14.5,13.5 @@ -19895,15 +18772,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2720 components: - pos: -15.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2721 components: - pos: -16.5,13.5 @@ -19911,15 +18784,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2722 components: - pos: -11.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2723 components: - pos: -10.5,12.5 @@ -19927,8 +18796,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2724 components: - pos: -9.5,12.5 @@ -19936,22 +18803,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2725 components: - pos: -8.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2726 components: - pos: -11.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2727 components: - pos: -10.5,15.5 @@ -19959,8 +18820,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2728 components: - pos: -9.5,15.5 @@ -19968,8 +18827,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2729 components: - pos: -8.5,15.5 @@ -19977,92 +18834,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2734 components: - pos: -12.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2735 components: - pos: -12.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2736 components: - pos: -12.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2737 components: - pos: -12.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2738 components: - pos: -12.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2739 components: - pos: -12.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2740 components: - pos: -12.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2741 components: - pos: -12.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2742 components: - pos: -12.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2743 components: - pos: -12.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2744 components: - pos: -12.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2745 components: - pos: -12.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2746 components: - pos: -9.5,17.5 @@ -20070,8 +18901,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2747 components: - pos: -8.5,17.5 @@ -20079,8 +18908,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2748 components: - pos: -7.5,17.5 @@ -20088,15 +18915,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2778 components: - pos: -20.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2779 components: - pos: -20.5,16.5 @@ -20104,8 +18927,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2783 components: - pos: -21.5,16.5 @@ -20113,8 +18934,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2785 components: - pos: -19.5,17.5 @@ -20122,22 +18941,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2793 components: - pos: -15.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2853 components: - pos: -13.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2854 components: - pos: -14.5,28.5 @@ -20145,22 +18958,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2855 components: - pos: -15.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2856 components: - pos: -16.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2857 components: - pos: -14.5,29.5 @@ -20168,15 +18975,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2858 components: - pos: -16.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2859 components: - pos: -16.5,30.5 @@ -20184,8 +18987,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2860 components: - pos: -17.5,30.5 @@ -20193,8 +18994,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2861 components: - pos: -15.5,30.5 @@ -20202,8 +19001,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2862 components: - pos: 2.5,-7.5 @@ -20211,22 +19008,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3041 components: - pos: -16.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3042 components: - pos: -16.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3159 components: - pos: -29.5,30.5 @@ -20234,22 +19025,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3174 components: - pos: -16.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3178 components: - pos: -16.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3212 components: - pos: -24.5,19.5 @@ -20257,8 +19042,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3224 components: - pos: -19.5,24.5 @@ -20266,15 +19049,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3225 components: - pos: -20.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3226 components: - pos: -20.5,25.5 @@ -20282,15 +19061,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3227 components: - pos: -20.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3228 components: - pos: -21.5,26.5 @@ -20298,15 +19073,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3229 components: - pos: -22.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3230 components: - pos: -23.5,26.5 @@ -20314,15 +19085,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3231 components: - pos: -24.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3232 components: - pos: -24.5,27.5 @@ -20330,8 +19097,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3233 components: - pos: -24.5,28.5 @@ -20339,22 +19104,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3234 components: - pos: -24.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3235 components: - pos: -23.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3236 components: - pos: -20.5,23.5 @@ -20362,8 +19121,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3237 components: - pos: -21.5,23.5 @@ -20371,50 +19128,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3238 components: - pos: -22.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3239 components: - pos: -23.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3240 components: - pos: -24.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3241 components: - pos: -25.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3242 components: - pos: -26.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3243 components: - pos: -27.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3244 components: - pos: -28.5,23.5 @@ -20422,351 +19165,251 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3245 components: - pos: -29.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3246 components: - pos: -29.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3247 components: - pos: -29.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3248 components: - pos: -29.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3249 components: - pos: -29.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3250 components: - pos: -29.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3251 components: - pos: -30.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3252 components: - pos: -31.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3253 components: - pos: -32.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3254 components: - pos: -33.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3255 components: - pos: -30.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3256 components: - pos: -31.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3257 components: - pos: -32.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3258 components: - pos: -33.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3259 components: - pos: -34.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3260 components: - pos: -34.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3261 components: - pos: -24.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3262 components: - pos: -24.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3263 components: - pos: -24.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3264 components: - pos: -24.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3265 components: - pos: -25.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3266 components: - pos: -26.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3267 components: - pos: -27.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3268 components: - pos: -28.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3269 components: - pos: -25.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3270 components: - pos: -26.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3271 components: - pos: -27.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3272 components: - pos: -28.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3273 components: - pos: -23.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3274 components: - pos: -22.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3275 components: - pos: -23.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3276 components: - pos: -23.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3277 components: - pos: -23.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3278 components: - pos: -23.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3279 components: - pos: -23.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3280 components: - pos: -23.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3281 components: - pos: -23.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3282 components: - pos: -23.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3283 components: - pos: -24.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3284 components: - pos: -25.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3285 components: - pos: -26.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3286 components: - pos: -27.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3287 components: - pos: -28.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3288 components: - pos: -29.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3289 components: - pos: -30.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3290 components: - pos: -30.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3291 components: - pos: -30.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3292 components: - pos: -31.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3293 components: - pos: -31.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3294 components: - pos: -32.5,10.5 @@ -20774,15 +19417,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3295 components: - pos: -33.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3296 components: - pos: -33.5,9.5 @@ -20790,155 +19429,111 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3297 components: - pos: -23.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3298 components: - pos: -23.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3299 components: - pos: -23.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3300 components: - pos: -24.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3301 components: - pos: -25.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3302 components: - pos: -26.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3303 components: - pos: -27.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3304 components: - pos: -28.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3305 components: - pos: -29.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3306 components: - pos: -30.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3307 components: - pos: -31.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3308 components: - pos: -32.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3309 components: - pos: -33.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3310 components: - pos: -22.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3311 components: - pos: -21.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3312 components: - pos: -20.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3313 components: - pos: -19.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3314 components: - pos: -19.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3323 components: - pos: -42.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3352 components: - pos: -42.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3353 components: - pos: -43.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3354 components: - pos: -47.5,-13.5 @@ -20946,22 +19541,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3355 components: - pos: -42.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3359 components: - pos: -39.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3479 components: - pos: 17.5,36.5 @@ -20969,8 +19558,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3485 components: - pos: 21.5,40.5 @@ -20978,43 +19565,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3531 components: - pos: -29.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3556 components: - pos: -42.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3557 components: - pos: -39.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3681 components: - pos: -39.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3702 components: - pos: -34.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3703 components: - pos: -48.5,-13.5 @@ -21022,8 +19597,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3707 components: - pos: -42.5,-8.5 @@ -21031,29 +19604,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3709 components: - pos: -34.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3711 components: - pos: -44.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3712 components: - pos: -45.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3713 components: - pos: -46.5,-13.5 @@ -21061,8 +19626,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3777 components: - pos: -42.5,-5.5 @@ -21070,421 +19633,301 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3778 components: - pos: -41.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3779 components: - pos: -40.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3780 components: - pos: -39.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3781 components: - pos: -38.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3782 components: - pos: -37.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3783 components: - pos: -40.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3784 components: - pos: -40.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3785 components: - pos: -40.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3786 components: - pos: -40.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3787 components: - pos: -40.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3788 components: - pos: -40.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3789 components: - pos: -40.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3790 components: - pos: -40.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3791 components: - pos: -37.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3792 components: - pos: -37.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3793 components: - pos: -37.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3794 components: - pos: -37.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3795 components: - pos: -37.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3796 components: - pos: -37.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3797 components: - pos: -37.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3798 components: - pos: -37.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3799 components: - pos: -36.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3800 components: - pos: -35.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3801 components: - pos: -34.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3802 components: - pos: -33.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3803 components: - pos: -32.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3804 components: - pos: -32.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3805 components: - pos: -32.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3806 components: - pos: -32.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3807 components: - pos: -32.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3808 components: - pos: -32.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3809 components: - pos: -37.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3810 components: - pos: -37.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3811 components: - pos: -37.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3812 components: - pos: -36.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3813 components: - pos: -35.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3814 components: - pos: -38.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3815 components: - pos: -39.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3816 components: - pos: -40.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3817 components: - pos: -41.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3818 components: - pos: -42.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3819 components: - pos: -43.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3820 components: - pos: -44.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3821 components: - pos: -44.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3822 components: - pos: -44.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3823 components: - pos: -44.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3824 components: - pos: -44.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3825 components: - pos: -45.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3826 components: - pos: -44.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3827 components: - pos: -44.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3828 components: - pos: -44.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3829 components: - pos: -44.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3830 components: - pos: -45.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3831 components: - pos: -39.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3834 components: - pos: -39.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3836 components: - pos: -39.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3838 components: - pos: -37.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3839 components: - pos: -37.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3845 components: - pos: -32.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3847 components: - pos: -32.5,-12.5 @@ -21492,8 +19935,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3848 components: - pos: -32.5,-11.5 @@ -21501,15 +19942,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3849 components: - pos: -32.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3850 components: - pos: -34.5,-12.5 @@ -21517,64 +19954,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3852 components: - pos: -33.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3853 components: - pos: -33.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3855 components: - pos: -40.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3856 components: - pos: -41.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3857 components: - pos: -42.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3858 components: - pos: -43.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3859 components: - pos: -44.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3860 components: - pos: -45.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3861 components: - pos: -46.5,-9.5 @@ -21582,15 +20001,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3862 components: - pos: -47.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3863 components: - pos: -47.5,-2.5 @@ -21598,15 +20013,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3864 components: - pos: -48.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3866 components: - pos: -48.5,-1.5 @@ -21614,8 +20025,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3867 components: - pos: -48.5,-0.5 @@ -21623,8 +20032,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3868 components: - pos: -48.5,0.5 @@ -21632,8 +20039,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3869 components: - pos: -48.5,1.5 @@ -21641,15 +20046,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3870 components: - pos: -44.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3873 components: - pos: -27.5,-2.5 @@ -21657,8 +20058,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3874 components: - pos: -26.5,-2.5 @@ -21666,22 +20065,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3875 components: - pos: -26.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3876 components: - pos: -26.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3877 components: - pos: -26.5,0.5 @@ -21689,22 +20082,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3878 components: - pos: -26.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3879 components: - pos: -26.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3880 components: - pos: -25.5,2.5 @@ -21712,36 +20099,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3881 components: - pos: -25.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3882 components: - pos: -25.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3883 components: - pos: -26.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3884 components: - pos: -26.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3885 components: - pos: -26.5,-4.5 @@ -21749,15 +20126,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3886 components: - pos: -26.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3887 components: - pos: -26.5,-6.5 @@ -21765,8 +20138,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3888 components: - pos: -26.5,-7.5 @@ -21774,8 +20145,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3890 components: - pos: -25.5,-7.5 @@ -21783,8 +20152,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3891 components: - pos: -24.5,-7.5 @@ -21792,8 +20159,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3892 components: - pos: -23.5,-7.5 @@ -21801,8 +20166,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3893 components: - pos: -22.5,-7.5 @@ -21810,22 +20173,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3894 components: - pos: -21.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3895 components: - pos: -20.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3896 components: - pos: -20.5,-8.5 @@ -21833,22 +20190,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3897 components: - pos: -20.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3898 components: - pos: -20.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3899 components: - pos: -20.5,-11.5 @@ -21856,15 +20207,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3900 components: - pos: -20.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3901 components: - pos: -24.5,-8.5 @@ -21872,15 +20219,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3902 components: - pos: -24.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4098 components: - pos: -21.5,-6.5 @@ -21888,8 +20231,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4254 components: - pos: -22.5,29.5 @@ -21897,8 +20238,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4255 components: - pos: -21.5,29.5 @@ -21906,8 +20245,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4256 components: - pos: -20.5,29.5 @@ -21915,8 +20252,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4342 components: - pos: -41.5,12.5 @@ -21924,15 +20259,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4343 components: - pos: -41.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4344 components: - pos: -41.5,14.5 @@ -21940,8 +20271,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4345 components: - pos: -41.5,11.5 @@ -21949,22 +20278,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4346 components: - pos: -41.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4347 components: - pos: -41.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4348 components: - pos: -41.5,8.5 @@ -21972,57 +20295,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4424 components: - pos: -41.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4425 components: - pos: -41.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4426 components: - pos: -41.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4427 components: - pos: -42.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4428 components: - pos: -43.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4429 components: - pos: -44.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4434 components: - pos: -50.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4435 components: - pos: -42.5,14.5 @@ -22030,8 +20337,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4436 components: - pos: -43.5,14.5 @@ -22039,8 +20344,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4437 components: - pos: -44.5,14.5 @@ -22048,8 +20351,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4438 components: - pos: -45.5,14.5 @@ -22057,8 +20358,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4439 components: - pos: -46.5,14.5 @@ -22066,8 +20365,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4440 components: - pos: -47.5,14.5 @@ -22075,15 +20372,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4441 components: - pos: -48.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4442 components: - pos: -49.5,14.5 @@ -22091,8 +20384,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4443 components: - pos: -40.5,20.5 @@ -22100,8 +20391,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4444 components: - pos: -40.5,21.5 @@ -22109,8 +20398,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4445 components: - pos: -41.5,21.5 @@ -22118,15 +20405,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4446 components: - pos: -42.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4447 components: - pos: -43.5,21.5 @@ -22134,8 +20417,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4448 components: - pos: -44.5,21.5 @@ -22143,8 +20424,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4449 components: - pos: -45.5,21.5 @@ -22152,15 +20431,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4450 components: - pos: -46.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4451 components: - pos: -47.5,21.5 @@ -22168,8 +20443,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4452 components: - pos: -48.5,21.5 @@ -22177,8 +20450,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4453 components: - pos: -49.5,21.5 @@ -22186,8 +20457,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4454 components: - pos: -44.5,22.5 @@ -22195,15 +20464,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4455 components: - pos: -44.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4456 components: - pos: -44.5,24.5 @@ -22211,8 +20476,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4457 components: - pos: -44.5,25.5 @@ -22220,8 +20483,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4458 components: - pos: -44.5,26.5 @@ -22229,8 +20490,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4459 components: - pos: -44.5,27.5 @@ -22238,92 +20497,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4460 components: - pos: -39.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4461 components: - pos: -38.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4462 components: - pos: -37.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4463 components: - pos: -37.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4464 components: - pos: -37.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4465 components: - pos: -37.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4466 components: - pos: -37.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4467 components: - pos: -37.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4468 components: - pos: -37.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4469 components: - pos: -37.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4470 components: - pos: -37.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4471 components: - pos: -37.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4472 components: - pos: -37.5,11.5 @@ -22331,92 +20564,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4473 components: - pos: -37.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4474 components: - pos: -37.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4475 components: - pos: -37.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4476 components: - pos: -37.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4477 components: - pos: -37.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4478 components: - pos: -37.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4479 components: - pos: -37.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4480 components: - pos: -37.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4481 components: - pos: -37.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4482 components: - pos: -37.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4483 components: - pos: -37.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4484 components: - pos: -37.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4485 components: - pos: -42.5,20.5 @@ -22424,8 +20631,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4486 components: - pos: -42.5,19.5 @@ -22433,8 +20638,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4487 components: - pos: -42.5,18.5 @@ -22442,8 +20645,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4488 components: - pos: -45.5,20.5 @@ -22451,8 +20652,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4489 components: - pos: -45.5,19.5 @@ -22460,8 +20659,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4490 components: - pos: -45.5,18.5 @@ -22469,8 +20666,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4491 components: - pos: -48.5,20.5 @@ -22478,8 +20673,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4492 components: - pos: -48.5,19.5 @@ -22487,71 +20680,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4493 components: - pos: -48.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4524 components: - pos: -56.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4543 components: - pos: -50.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4547 components: - pos: -47.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4548 components: - pos: -50.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4593 components: - pos: 21.5,37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4599 components: - pos: -50.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4601 components: - pos: -49.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4608 components: - pos: -57.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4612 components: - pos: -46.5,27.5 @@ -22559,92 +20732,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4613 components: - pos: -47.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4614 components: - pos: -48.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4615 components: - pos: -49.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4616 components: - pos: -50.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4617 components: - pos: -51.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4618 components: - pos: -52.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4619 components: - pos: -53.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4620 components: - pos: -48.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4621 components: - pos: -48.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4622 components: - pos: -48.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4623 components: - pos: -48.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4624 components: - pos: -48.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4625 components: - pos: -44.5,28.5 @@ -22652,8 +20799,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4626 components: - pos: -44.5,29.5 @@ -22661,337 +20806,241 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4627 components: - pos: -44.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4628 components: - pos: -44.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4629 components: - pos: -44.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4630 components: - pos: -37.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4631 components: - pos: -37.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4632 components: - pos: -38.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4633 components: - pos: -39.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4634 components: - pos: -40.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4635 components: - pos: -43.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4636 components: - pos: -42.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4637 components: - pos: -29.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4638 components: - pos: -29.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4639 components: - pos: -47.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4640 components: - pos: -30.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4641 components: - pos: -31.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4642 components: - pos: -32.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4643 components: - pos: -33.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4644 components: - pos: -34.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4645 components: - pos: -35.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4646 components: - pos: -28.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4647 components: - pos: -27.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4648 components: - pos: -26.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4649 components: - pos: -25.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4650 components: - pos: -46.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4651 components: - pos: -49.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4652 components: - pos: -50.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4653 components: - pos: -51.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4654 components: - pos: -52.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4655 components: - pos: -53.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4656 components: - pos: -54.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4657 components: - pos: -55.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4658 components: - pos: -52.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4659 components: - pos: -53.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4660 components: - pos: -54.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4661 components: - pos: -55.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4662 components: - pos: -56.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4663 components: - pos: -57.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4664 components: - pos: -57.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4665 components: - pos: -57.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4666 components: - pos: -57.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4667 components: - pos: -57.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4668 components: - pos: -57.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4669 components: - pos: -57.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4670 components: - pos: -57.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4671 components: - pos: -57.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4672 components: - pos: -57.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4673 components: - pos: -57.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4674 components: - pos: -57.5,24.5 @@ -22999,50 +21048,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4675 components: - pos: -57.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4676 components: - pos: -56.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4677 components: - pos: -57.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4678 components: - pos: -57.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4679 components: - pos: -57.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4680 components: - pos: -57.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4681 components: - pos: -51.5,14.5 @@ -23050,92 +21085,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4682 components: - pos: -53.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4683 components: - pos: -53.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4684 components: - pos: -53.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4685 components: - pos: -53.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4686 components: - pos: -53.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4687 components: - pos: -53.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4688 components: - pos: -57.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4689 components: - pos: -57.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4690 components: - pos: -57.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4691 components: - pos: -57.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4692 components: - pos: -57.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4693 components: - pos: -57.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4700 components: - pos: -45.5,9.5 @@ -23143,29 +21152,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4701 components: - pos: -46.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4702 components: - pos: -47.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4704 components: - pos: -48.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4713 components: - pos: 20.5,40.5 @@ -23173,8 +21174,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4714 components: - pos: 20.5,43.5 @@ -23182,57 +21181,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4715 components: - pos: 20.5,42.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4716 components: - pos: -47.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4717 components: - pos: -48.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4718 components: - pos: -46.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4719 components: - pos: -49.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4720 components: - pos: -50.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4721 components: - pos: -51.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4722 components: - pos: -52.5,5.5 @@ -23240,43 +21223,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4723 components: - pos: -53.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4724 components: - pos: -54.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4725 components: - pos: -57.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4726 components: - pos: -57.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4727 components: - pos: -58.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4728 components: - pos: 20.5,41.5 @@ -23284,8 +21255,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4731 components: - pos: 21.5,38.5 @@ -23293,8 +21262,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4742 components: - pos: -73.5,-14.5 @@ -23302,15 +21269,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4759 components: - pos: -66.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4783 components: - pos: -65.5,-13.5 @@ -23318,36 +21281,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4785 components: - pos: -73.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4786 components: - pos: -62.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4787 components: - pos: -63.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4788 components: - pos: -73.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4789 components: - pos: -73.5,-12.5 @@ -23355,29 +21308,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4790 components: - pos: -66.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4791 components: - pos: -66.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4794 components: - pos: -65.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4795 components: - pos: -65.5,-12.5 @@ -23385,29 +21330,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4796 components: - pos: -73.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4797 components: - pos: -67.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4798 components: - pos: -68.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4806 components: - pos: -73.5,-13.5 @@ -23415,15 +21352,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4811 components: - pos: -75.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4812 components: - pos: -76.5,-10.5 @@ -23431,22 +21364,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4813 components: - pos: -73.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4814 components: - pos: -74.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4815 components: - pos: -77.5,-10.5 @@ -23454,71 +21381,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4842 components: - pos: -69.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4869 components: - pos: -71.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4870 components: - pos: -64.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4872 components: - pos: -70.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4874 components: - pos: -65.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4875 components: - pos: -72.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4879 components: - pos: -57.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4880 components: - pos: -58.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4881 components: - pos: -59.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4904 components: - pos: -65.5,-14.5 @@ -23526,15 +21433,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4958 components: - pos: -60.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5102 components: - pos: -55.5,-7.5 @@ -23542,127 +21445,91 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5106 components: - pos: -57.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5127 components: - pos: -57.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5128 components: - pos: -57.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5129 components: - pos: -57.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5130 components: - pos: -57.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5131 components: - pos: -57.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5132 components: - pos: -57.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5133 components: - pos: -57.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5134 components: - pos: -57.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5135 components: - pos: -57.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5136 components: - pos: -57.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5137 components: - pos: -57.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5138 components: - pos: -57.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5139 components: - pos: -59.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5140 components: - pos: -60.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5141 components: - pos: -61.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5142 components: - pos: -62.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5143 components: - pos: -63.5,5.5 @@ -23670,92 +21537,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5144 components: - pos: -64.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5145 components: - pos: -65.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5146 components: - pos: -66.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5147 components: - pos: -67.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5148 components: - pos: -68.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5149 components: - pos: -69.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5150 components: - pos: -70.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5151 components: - pos: -71.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5152 components: - pos: -72.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5153 components: - pos: -73.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5154 components: - pos: -74.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5155 components: - pos: -54.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5156 components: - pos: -53.5,-7.5 @@ -23763,22 +21604,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5157 components: - pos: -52.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5158 components: - pos: -52.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5159 components: - pos: -52.5,-5.5 @@ -23786,15 +21621,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5160 components: - pos: -52.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5161 components: - pos: -52.5,-3.5 @@ -23802,8 +21633,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5162 components: - pos: -52.5,-2.5 @@ -23811,8 +21640,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5163 components: - pos: -52.5,-1.5 @@ -23820,8 +21647,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5195 components: - pos: 16.5,38.5 @@ -23829,29 +21654,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5205 components: - pos: -50.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5206 components: - pos: -50.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5207 components: - pos: -50.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5311 components: - pos: 16.5,40.5 @@ -23859,8 +21676,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5312 components: - pos: 19.5,39.5 @@ -23868,8 +21683,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5313 components: - pos: 16.5,39.5 @@ -23877,8 +21690,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5314 components: - pos: 16.5,41.5 @@ -23886,8 +21697,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5322 components: - pos: 24.5,36.5 @@ -23895,15 +21704,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5378 components: - pos: -35.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5432 components: - pos: -21.5,-5.5 @@ -23911,8 +21716,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5448 components: - pos: -21.5,-4.5 @@ -23920,8 +21723,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5449 components: - pos: -21.5,-3.5 @@ -23929,8 +21730,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5450 components: - pos: -21.5,-2.5 @@ -23938,36 +21737,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5634 components: - pos: -54.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5661 components: - pos: -16.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5700 components: - pos: -30.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5701 components: - pos: -33.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5702 components: - pos: -33.5,12.5 @@ -23975,8 +21764,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5703 components: - pos: -33.5,13.5 @@ -23984,8 +21771,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5704 components: - pos: -29.5,15.5 @@ -23993,8 +21778,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5705 components: - pos: -30.5,15.5 @@ -24002,8 +21785,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5773 components: - pos: -53.5,48.5 @@ -24011,8 +21792,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5805 components: - pos: 15.5,42.5 @@ -24020,8 +21799,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5806 components: - pos: 15.5,41.5 @@ -24029,8 +21806,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6199 components: - pos: 16.5,44.5 @@ -24038,15 +21813,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6203 components: - pos: 13.5,51.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6205 components: - pos: 15.5,45.5 @@ -24054,8 +21825,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6206 components: - pos: 15.5,44.5 @@ -24063,8 +21832,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6207 components: - pos: 13.5,45.5 @@ -24072,29 +21839,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6208 components: - pos: 12.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6209 components: - pos: 11.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6210 components: - pos: 10.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6211 components: - pos: 15.5,43.5 @@ -24102,8 +21861,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6212 components: - pos: 8.5,48.5 @@ -24111,8 +21868,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6214 components: - pos: 7.5,48.5 @@ -24120,8 +21875,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6219 components: - pos: 9.5,48.5 @@ -24129,8 +21882,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6220 components: - pos: 7.5,49.5 @@ -24138,8 +21889,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6221 components: - pos: 7.5,47.5 @@ -24147,8 +21896,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6222 components: - pos: 6.5,47.5 @@ -24156,8 +21903,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6223 components: - pos: 7.5,49.5 @@ -24165,8 +21910,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6224 components: - pos: 7.5,50.5 @@ -24174,8 +21917,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6225 components: - pos: 7.5,51.5 @@ -24183,8 +21924,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6227 components: - pos: 5.5,47.5 @@ -24192,8 +21931,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6228 components: - pos: 4.5,47.5 @@ -24201,8 +21938,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6229 components: - pos: 3.5,47.5 @@ -24210,8 +21945,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6230 components: - pos: 3.5,48.5 @@ -24219,22 +21952,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6231 components: - pos: 3.5,49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6232 components: - pos: 3.5,50.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6233 components: - pos: 3.5,51.5 @@ -24242,8 +21969,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6234 components: - pos: 2.5,47.5 @@ -24251,15 +21976,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6235 components: - pos: 1.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6236 components: - pos: 0.5,47.5 @@ -24267,8 +21988,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6237 components: - pos: -0.5,47.5 @@ -24276,8 +21995,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6238 components: - pos: -0.5,48.5 @@ -24285,29 +22002,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6239 components: - pos: -0.5,49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6240 components: - pos: -0.5,50.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6241 components: - pos: -0.5,51.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6242 components: - pos: 16.5,49.5 @@ -24315,8 +22024,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6246 components: - pos: 14.5,40.5 @@ -24324,8 +22031,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6247 components: - pos: 13.5,40.5 @@ -24333,8 +22038,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6248 components: - pos: 12.5,40.5 @@ -24342,22 +22045,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6249 components: - pos: 11.5,40.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6250 components: - pos: 10.5,40.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6251 components: - pos: 15.5,40.5 @@ -24365,8 +22062,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6252 components: - pos: 15.5,39.5 @@ -24374,43 +22069,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6258 components: - pos: -52.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6260 components: - pos: -50.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6261 components: - pos: -47.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6262 components: - pos: -53.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6263 components: - pos: -51.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6271 components: - pos: 15.5,35.5 @@ -24418,8 +22101,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6273 components: - pos: 17.5,35.5 @@ -24427,8 +22108,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6274 components: - pos: 18.5,35.5 @@ -24436,8 +22115,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6276 components: - pos: 20.5,35.5 @@ -24445,8 +22122,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6278 components: - pos: 23.5,36.5 @@ -24454,8 +22129,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6279 components: - pos: 23.5,35.5 @@ -24463,22 +22136,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6280 components: - pos: 9.5,40.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6281 components: - pos: 8.5,40.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6282 components: - pos: -1.5,47.5 @@ -24486,8 +22153,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6283 components: - pos: -2.5,47.5 @@ -24495,8 +22160,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6284 components: - pos: -2.5,46.5 @@ -24504,8 +22167,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6285 components: - pos: -2.5,45.5 @@ -24513,8 +22174,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6286 components: - pos: -2.5,44.5 @@ -24522,8 +22181,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6287 components: - pos: -2.5,43.5 @@ -24531,8 +22188,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6288 components: - pos: -2.5,42.5 @@ -24540,8 +22195,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6289 components: - pos: -3.5,38.5 @@ -24549,8 +22202,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6290 components: - pos: -3.5,39.5 @@ -24558,15 +22209,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6291 components: - pos: -3.5,40.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6293 components: - pos: -3.5,42.5 @@ -24574,15 +22221,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6294 components: - pos: -3.5,37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6295 components: - pos: -4.5,37.5 @@ -24590,8 +22233,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6296 components: - pos: -5.5,37.5 @@ -24599,8 +22240,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6297 components: - pos: -6.5,37.5 @@ -24608,8 +22247,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6298 components: - pos: -7.5,37.5 @@ -24617,15 +22254,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6299 components: - pos: -8.5,37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6300 components: - pos: -9.5,37.5 @@ -24633,8 +22266,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6301 components: - pos: -3.5,47.5 @@ -24642,8 +22273,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6302 components: - pos: -4.5,47.5 @@ -24651,8 +22280,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6315 components: - pos: 20.5,44.5 @@ -24660,8 +22287,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6562 components: - pos: -4.5,57.5 @@ -24669,8 +22294,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6563 components: - pos: -4.5,56.5 @@ -24678,8 +22301,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6564 components: - pos: -4.5,55.5 @@ -24687,8 +22308,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6565 components: - pos: -5.5,55.5 @@ -24696,358 +22315,256 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6566 components: - pos: -6.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6567 components: - pos: -7.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6568 components: - pos: -8.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6569 components: - pos: -9.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6570 components: - pos: -10.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6571 components: - pos: -11.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6572 components: - pos: -12.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6573 components: - pos: -13.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6574 components: - pos: -14.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6575 components: - pos: -15.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6576 components: - pos: -16.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6577 components: - pos: -7.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6578 components: - pos: -7.5,57.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6579 components: - pos: -7.5,58.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6580 components: - pos: -7.5,59.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6581 components: - pos: -7.5,60.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6582 components: - pos: -16.5,54.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6583 components: - pos: -17.5,54.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6584 components: - pos: -18.5,54.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6585 components: - pos: -19.5,54.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6586 components: - pos: -20.5,54.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6587 components: - pos: -21.5,54.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6588 components: - pos: -22.5,54.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6589 components: - pos: -22.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6590 components: - pos: -15.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6591 components: - pos: -15.5,57.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6592 components: - pos: -15.5,58.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6593 components: - pos: -15.5,59.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6594 components: - pos: -15.5,60.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6595 components: - pos: -15.5,61.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6596 components: - pos: -15.5,62.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6597 components: - pos: -15.5,63.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6598 components: - pos: -15.5,64.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6599 components: - pos: -15.5,65.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6600 components: - pos: -16.5,64.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6601 components: - pos: -17.5,64.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6602 components: - pos: -18.5,64.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6603 components: - pos: -19.5,64.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6604 components: - pos: -16.5,60.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6605 components: - pos: -17.5,60.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6606 components: - pos: -18.5,60.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6607 components: - pos: -19.5,60.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6608 components: - pos: -20.5,60.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6609 components: - pos: -14.5,60.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6610 components: - pos: -13.5,60.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6611 components: - pos: -12.5,60.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6612 components: - pos: -14.5,64.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6613 components: - pos: -13.5,64.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6614 components: - pos: -12.5,64.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6615 components: - pos: -20.5,64.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7284 components: - pos: -43.5,55.5 @@ -25055,15 +22572,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7401 components: - pos: 14.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7492 components: - pos: -3.5,41.5 @@ -25071,8 +22584,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7744 components: - pos: -53.5,85.5 @@ -25080,15 +22591,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7745 components: - pos: -52.5,85.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7746 components: - pos: -51.5,85.5 @@ -25096,8 +22603,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7747 components: - pos: -51.5,86.5 @@ -25105,15 +22610,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7748 components: - pos: -51.5,87.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7749 components: - pos: -51.5,88.5 @@ -25121,22 +22622,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7750 components: - pos: -51.5,89.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7751 components: - pos: -51.5,84.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7752 components: - pos: -51.5,83.5 @@ -25144,8 +22639,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7753 components: - pos: -51.5,82.5 @@ -25153,22 +22646,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7754 components: - pos: -52.5,82.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7755 components: - pos: -50.5,81.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7756 components: - pos: -50.5,82.5 @@ -25176,8 +22663,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7757 components: - pos: -52.5,79.5 @@ -25185,8 +22670,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7758 components: - pos: -52.5,78.5 @@ -25194,8 +22677,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7759 components: - pos: -52.5,80.5 @@ -25203,15 +22684,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7760 components: - pos: -52.5,81.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7761 components: - pos: -50.5,80.5 @@ -25219,8 +22696,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7762 components: - pos: -50.5,79.5 @@ -25228,8 +22703,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7763 components: - pos: -50.5,78.5 @@ -25237,8 +22710,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7764 components: - pos: -53.5,79.5 @@ -25246,22 +22717,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7765 components: - pos: -52.5,89.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7766 components: - pos: -53.5,89.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7767 components: - pos: -54.5,89.5 @@ -25269,78 +22734,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7768 components: - pos: -55.5,89.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7769 components: - pos: -56.5,89.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7770 components: - pos: -57.5,89.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7771 components: - pos: -58.5,89.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7772 components: - pos: -59.5,89.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7773 components: - pos: -52.5,83.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7774 components: - pos: -59.5,84.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7775 components: - pos: -53.5,83.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7776 components: - pos: -59.5,87.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7777 components: - pos: -54.5,83.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7778 components: - pos: -59.5,85.5 @@ -25348,8 +22791,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7779 components: - pos: -55.5,83.5 @@ -25357,22 +22798,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7780 components: - pos: -59.5,86.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7781 components: - pos: -56.5,83.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7782 components: - pos: -59.5,88.5 @@ -25380,15 +22815,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7783 components: - pos: -57.5,83.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7784 components: - pos: -62.5,84.5 @@ -25396,15 +22827,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7785 components: - pos: -58.5,83.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7786 components: - pos: -63.5,84.5 @@ -25412,15 +22839,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7787 components: - pos: -59.5,83.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7788 components: - pos: -60.5,84.5 @@ -25428,15 +22851,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7789 components: - pos: -61.5,84.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7790 components: - pos: -63.5,83.5 @@ -25444,8 +22863,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7791 components: - pos: -63.5,85.5 @@ -25453,8 +22870,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7792 components: - pos: -59.5,82.5 @@ -25462,8 +22877,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7793 components: - pos: -60.5,82.5 @@ -25471,8 +22884,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7794 components: - pos: -61.5,82.5 @@ -25480,8 +22891,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7795 components: - pos: -58.5,82.5 @@ -25489,8 +22898,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7796 components: - pos: -60.5,90.5 @@ -25498,8 +22905,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7797 components: - pos: -59.5,90.5 @@ -25507,8 +22912,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7798 components: - pos: -58.5,90.5 @@ -25516,8 +22919,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7799 components: - pos: -51.5,90.5 @@ -25525,8 +22926,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7800 components: - pos: -51.5,91.5 @@ -25534,15 +22933,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7801 components: - pos: -50.5,88.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7802 components: - pos: -49.5,88.5 @@ -25550,8 +22945,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7803 components: - pos: -49.5,87.5 @@ -25559,8 +22952,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7804 components: - pos: -49.5,86.5 @@ -25568,8 +22959,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7805 components: - pos: -49.5,85.5 @@ -25577,8 +22966,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7806 components: - pos: -49.5,84.5 @@ -25586,8 +22973,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7807 components: - pos: -49.5,83.5 @@ -25595,8 +22980,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7920 components: - pos: -42.5,55.5 @@ -25604,8 +22987,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8347 components: - pos: -56.5,52.5 @@ -25613,8 +22994,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8348 components: - pos: -56.5,51.5 @@ -25622,15 +23001,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8349 components: - pos: -56.5,53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8378 components: - pos: -58.5,56.5 @@ -25638,57 +23013,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8379 components: - pos: -57.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8380 components: - pos: -56.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8381 components: - pos: -55.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8382 components: - pos: -54.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8383 components: - pos: -54.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8384 components: - pos: -54.5,54.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8385 components: - pos: -50.5,49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8386 components: - pos: -50.5,48.5 @@ -25696,8 +23055,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8387 components: - pos: -51.5,48.5 @@ -25705,8 +23062,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8388 components: - pos: -53.5,52.5 @@ -25714,36 +23069,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8389 components: - pos: -53.5,53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8390 components: - pos: -55.5,54.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8391 components: - pos: -56.5,54.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8392 components: - pos: -57.5,54.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8393 components: - pos: -58.5,54.5 @@ -25751,106 +23096,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8394 components: - pos: -59.5,54.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8395 components: - pos: -60.5,54.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8396 components: - pos: -61.5,54.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8397 components: - pos: -62.5,54.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8398 components: - pos: -63.5,54.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8399 components: - pos: -64.5,54.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8400 components: - pos: -61.5,53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8401 components: - pos: -61.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8402 components: - pos: -61.5,51.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8403 components: - pos: -61.5,50.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8404 components: - pos: -53.5,54.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8405 components: - pos: -52.5,54.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8406 components: - pos: -51.5,54.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8407 components: - pos: -50.5,54.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8408 components: - pos: -49.5,54.5 @@ -25858,8 +23173,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8409 components: - pos: -48.5,54.5 @@ -25867,8 +23180,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8410 components: - pos: -47.5,54.5 @@ -25876,8 +23187,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8411 components: - pos: -47.5,53.5 @@ -25885,8 +23194,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8412 components: - pos: -47.5,52.5 @@ -25894,8 +23201,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8413 components: - pos: -47.5,51.5 @@ -25903,8 +23208,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8414 components: - pos: -47.5,50.5 @@ -25912,8 +23215,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8415 components: - pos: -50.5,50.5 @@ -25921,8 +23222,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8416 components: - pos: -50.5,51.5 @@ -25930,8 +23229,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8417 components: - pos: -50.5,52.5 @@ -25939,15 +23236,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8418 components: - pos: -50.5,53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8419 components: - pos: -53.5,51.5 @@ -25955,8 +23248,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8420 components: - pos: -53.5,50.5 @@ -25964,15 +23255,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8421 components: - pos: -53.5,49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8422 components: - pos: -54.5,48.5 @@ -25980,8 +23267,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8424 components: - pos: -57.5,48.5 @@ -25989,8 +23274,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8425 components: - pos: -56.5,48.5 @@ -25998,43 +23281,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8426 components: - pos: -48.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8427 components: - pos: -47.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8428 components: - pos: -47.5,42.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8429 components: - pos: -47.5,49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8430 components: - pos: -56.5,50.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8431 components: - pos: -56.5,49.5 @@ -26042,64 +23313,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8432 components: - pos: -53.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8433 components: - pos: -52.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8434 components: - pos: -51.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8435 components: - pos: -51.5,57.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8436 components: - pos: -51.5,58.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8437 components: - pos: -58.5,57.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8438 components: - pos: -59.5,57.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8439 components: - pos: -60.5,57.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8440 components: - pos: -49.5,63.5 @@ -26107,302 +23360,216 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8441 components: - pos: -50.5,63.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8442 components: - pos: -51.5,63.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8443 components: - pos: -51.5,62.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8444 components: - pos: -51.5,61.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8445 components: - pos: -52.5,61.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8446 components: - pos: -53.5,61.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8447 components: - pos: -54.5,61.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8448 components: - pos: -55.5,61.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8449 components: - pos: -56.5,61.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8450 components: - pos: -57.5,61.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8451 components: - pos: -58.5,61.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8452 components: - pos: -59.5,61.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8453 components: - pos: -60.5,61.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8454 components: - pos: -61.5,61.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8455 components: - pos: -61.5,60.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8456 components: - pos: -62.5,60.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8457 components: - pos: -63.5,60.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8458 components: - pos: -63.5,59.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8459 components: - pos: -63.5,58.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8460 components: - pos: -50.5,61.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8461 components: - pos: -49.5,61.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8462 components: - pos: -48.5,61.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8463 components: - pos: -47.5,61.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8464 components: - pos: -47.5,60.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8465 components: - pos: -47.5,59.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8466 components: - pos: -47.5,58.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8467 components: - pos: -47.5,57.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8468 components: - pos: -51.5,64.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8469 components: - pos: -51.5,65.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8470 components: - pos: -50.5,65.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8471 components: - pos: -49.5,65.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8472 components: - pos: -48.5,65.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8473 components: - pos: -47.5,65.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8475 components: - pos: -46.5,65.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8476 components: - pos: -45.5,65.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8477 components: - pos: -44.5,65.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8478 components: - pos: -43.5,65.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8479 components: - pos: -42.5,65.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8480 components: - pos: -42.5,64.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8481 components: - pos: -42.5,63.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8482 components: - pos: -42.5,62.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8483 components: - pos: -52.5,65.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8484 components: - pos: -52.5,66.5 @@ -26410,8 +23577,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8485 components: - pos: -52.5,67.5 @@ -26419,8 +23584,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8486 components: - pos: -52.5,68.5 @@ -26428,8 +23591,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8487 components: - pos: -52.5,69.5 @@ -26437,8 +23598,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8488 components: - pos: -50.5,66.5 @@ -26446,8 +23605,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8489 components: - pos: -50.5,67.5 @@ -26455,8 +23612,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8490 components: - pos: -50.5,68.5 @@ -26464,8 +23619,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8491 components: - pos: -50.5,69.5 @@ -26473,8 +23626,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8492 components: - pos: -49.5,68.5 @@ -26482,8 +23633,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8493 components: - pos: -48.5,68.5 @@ -26491,8 +23640,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8494 components: - pos: -47.5,68.5 @@ -26500,57 +23647,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8495 components: - pos: -55.5,62.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8496 components: - pos: -55.5,63.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8497 components: - pos: -55.5,64.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8498 components: - pos: -59.5,62.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8499 components: - pos: -59.5,63.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8500 components: - pos: -59.5,64.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8501 components: - pos: -59.5,65.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8502 components: - pos: -58.5,66.5 @@ -26558,8 +23689,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8503 components: - pos: -59.5,66.5 @@ -26567,8 +23696,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8519 components: - pos: -60.5,66.5 @@ -26576,8 +23703,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8520 components: - pos: -61.5,66.5 @@ -26585,8 +23710,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8521 components: - pos: -58.5,62.5 @@ -26594,8 +23717,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8522 components: - pos: -56.5,62.5 @@ -26603,8 +23724,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8523 components: - pos: -54.5,62.5 @@ -26612,8 +23731,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8524 components: - pos: -53.5,63.5 @@ -26621,15 +23738,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8525 components: - pos: -55.5,65.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8526 components: - pos: -53.5,64.5 @@ -26637,8 +23750,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8527 components: - pos: -53.5,65.5 @@ -26646,8 +23757,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8528 components: - pos: -56.5,66.5 @@ -26655,8 +23764,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8529 components: - pos: -55.5,66.5 @@ -26664,8 +23771,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8530 components: - pos: -54.5,66.5 @@ -26673,8 +23778,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8531 components: - pos: -48.5,63.5 @@ -26682,15 +23785,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8532 components: - pos: -47.5,63.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8533 components: - pos: -46.5,63.5 @@ -26698,22 +23797,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8534 components: - pos: -55.5,57.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8535 components: - pos: -55.5,58.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8536 components: - pos: -55.5,59.5 @@ -26721,8 +23814,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8537 components: - pos: -56.5,59.5 @@ -26730,8 +23821,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8538 components: - pos: -54.5,59.5 @@ -26739,15 +23828,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8539 components: - pos: -47.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8540 components: - pos: -48.5,56.5 @@ -26755,8 +23840,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8541 components: - pos: -46.5,56.5 @@ -26764,8 +23847,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9020 components: - pos: 19.5,39.5 @@ -26773,92 +23854,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9346 components: - pos: -57.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9347 components: - pos: -57.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9348 components: - pos: -57.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9349 components: - pos: -57.5,42.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9350 components: - pos: -57.5,41.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9351 components: - pos: -57.5,40.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9352 components: - pos: -57.5,39.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9353 components: - pos: -57.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9354 components: - pos: -57.5,37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9355 components: - pos: -57.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9356 components: - pos: -57.5,35.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9357 components: - pos: -56.5,39.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9358 components: - pos: -55.5,39.5 @@ -26866,15 +23921,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9359 components: - pos: -54.5,39.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9360 components: - pos: -54.5,40.5 @@ -26882,22 +23933,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9361 components: - pos: -54.5,41.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9362 components: - pos: -54.5,42.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9363 components: - pos: -54.5,43.5 @@ -26905,29 +23950,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9364 components: - pos: -53.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9365 components: - pos: -52.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9366 components: - pos: -51.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9367 components: - pos: -50.5,43.5 @@ -26935,15 +23972,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9368 components: - pos: -49.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9369 components: - pos: -53.5,41.5 @@ -26951,57 +23984,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9370 components: - pos: -52.5,41.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9371 components: - pos: -52.5,40.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9372 components: - pos: -52.5,39.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9373 components: - pos: -52.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9374 components: - pos: -52.5,37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9375 components: - pos: -52.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9376 components: - pos: -52.5,35.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9418 components: - pos: -31.5,48.5 @@ -27009,309 +24026,221 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9419 components: - pos: -31.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9420 components: - pos: -31.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9421 components: - pos: -31.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9422 components: - pos: -31.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9423 components: - pos: -31.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9424 components: - pos: -30.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9425 components: - pos: -29.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9426 components: - pos: -28.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9427 components: - pos: -27.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9428 components: - pos: -32.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9429 components: - pos: -33.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9430 components: - pos: -34.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9431 components: - pos: -35.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9432 components: - pos: -36.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9433 components: - pos: -37.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9434 components: - pos: -38.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9435 components: - pos: -39.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9436 components: - pos: -40.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9437 components: - pos: -41.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9438 components: - pos: -42.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9439 components: - pos: -43.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9440 components: - pos: -44.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9441 components: - pos: -40.5,42.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9442 components: - pos: -40.5,41.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9443 components: - pos: -36.5,42.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9444 components: - pos: -36.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9445 components: - pos: -36.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9446 components: - pos: -36.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9447 components: - pos: -33.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9448 components: - pos: -33.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9449 components: - pos: -33.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9450 components: - pos: -44.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9451 components: - pos: -44.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9452 components: - pos: -44.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9453 components: - pos: -40.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9454 components: - pos: -40.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9455 components: - pos: -40.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9456 components: - pos: -40.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9457 components: - pos: -40.5,48.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9458 components: - pos: -40.5,49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9459 components: - pos: -40.5,50.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9460 components: - pos: -41.5,50.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9461 components: - pos: -42.5,50.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9471 components: - pos: -41.5,55.5 @@ -27319,15 +24248,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9472 components: - pos: -40.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9473 components: - pos: -39.5,55.5 @@ -27335,8 +24260,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9474 components: - pos: -38.5,55.5 @@ -27344,8 +24267,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9475 components: - pos: -37.5,55.5 @@ -27353,15 +24274,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9476 components: - pos: -31.5,49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9477 components: - pos: -31.5,50.5 @@ -27369,15 +24286,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9478 components: - pos: -31.5,51.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9479 components: - pos: -31.5,52.5 @@ -27385,8 +24298,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9480 components: - pos: -31.5,53.5 @@ -27394,15 +24305,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9481 components: - pos: -31.5,54.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9482 components: - pos: -30.5,50.5 @@ -27410,8 +24317,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9483 components: - pos: -29.5,50.5 @@ -27419,15 +24324,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9484 components: - pos: -28.5,50.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9485 components: - pos: -27.5,50.5 @@ -27435,8 +24336,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9486 components: - pos: -26.5,50.5 @@ -27444,8 +24343,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9487 components: - pos: -25.5,50.5 @@ -27453,8 +24350,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9488 components: - pos: -24.5,50.5 @@ -27462,36 +24357,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9490 components: - pos: -18.5,53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9491 components: - pos: -21.5,53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9492 components: - pos: -12.5,54.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9493 components: - pos: -12.5,53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9496 components: - pos: -23.5,40.5 @@ -27499,253 +24384,181 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9497 components: - pos: -22.5,40.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9498 components: - pos: -21.5,40.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9499 components: - pos: -20.5,40.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9500 components: - pos: -20.5,39.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9501 components: - pos: -20.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9502 components: - pos: -20.5,37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9503 components: - pos: -20.5,41.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9504 components: - pos: -20.5,42.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9505 components: - pos: -20.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9506 components: - pos: -20.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9507 components: - pos: -20.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9508 components: - pos: -20.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9509 components: - pos: -20.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9510 components: - pos: -20.5,48.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9511 components: - pos: -19.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9512 components: - pos: -18.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9513 components: - pos: -17.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9514 components: - pos: -16.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9515 components: - pos: -16.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9516 components: - pos: -16.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9517 components: - pos: -15.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9518 components: - pos: -14.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9519 components: - pos: -13.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9520 components: - pos: -12.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9521 components: - pos: -11.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9522 components: - pos: -10.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9523 components: - pos: -16.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9524 components: - pos: -16.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9525 components: - pos: -16.5,42.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9526 components: - pos: -16.5,41.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9527 components: - pos: -16.5,40.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9528 components: - pos: -16.5,39.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9529 components: - pos: -16.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9530 components: - pos: -16.5,37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9531 components: - pos: -16.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9532 components: - pos: -24.5,40.5 @@ -27753,15 +24566,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9533 components: - pos: -24.5,39.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9534 components: - pos: -24.5,38.5 @@ -27769,8 +24578,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9535 components: - pos: -24.5,37.5 @@ -27778,8 +24585,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9536 components: - pos: -24.5,36.5 @@ -27787,8 +24592,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9537 components: - pos: -24.5,35.5 @@ -27796,43 +24599,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9538 components: - pos: -24.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9539 components: - pos: -16.5,35.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9540 components: - pos: -16.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9541 components: - pos: -16.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9542 components: - pos: -16.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9558 components: - pos: -26.5,38.5 @@ -27840,120 +24631,86 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9559 components: - pos: -27.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9560 components: - pos: -27.5,37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9561 components: - pos: -28.5,37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9562 components: - pos: -29.5,37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9563 components: - pos: -30.5,37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9564 components: - pos: -31.5,37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9565 components: - pos: -32.5,37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9566 components: - pos: -33.5,37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9567 components: - pos: -34.5,37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9568 components: - pos: -35.5,37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9569 components: - pos: -36.5,37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9570 components: - pos: -37.5,37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9571 components: - pos: -38.5,37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9572 components: - pos: -39.5,37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9574 components: - pos: -41.5,37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9575 components: - pos: -42.5,37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9576 components: - pos: -43.5,37.5 @@ -27961,92 +24718,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9577 components: - pos: -44.5,37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9578 components: - pos: -32.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9579 components: - pos: -32.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9580 components: - pos: -36.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9581 components: - pos: -36.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9582 components: - pos: -36.5,35.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9583 components: - pos: -38.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9584 components: - pos: -38.5,35.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9585 components: - pos: -38.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9586 components: - pos: -32.5,35.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9640 components: - pos: -70.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10058 components: - pos: -15.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10071 components: - pos: 21.5,44.5 @@ -28054,8 +24785,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10155 components: - pos: -51.5,44.5 @@ -28063,29 +24792,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10264 components: - pos: -33.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10269 components: - pos: -33.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10280 components: - pos: -33.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10295 components: - pos: -34.5,-11.5 @@ -28093,29 +24814,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10397 components: - pos: -36.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10399 components: - pos: -31.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10404 components: - pos: -32.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10410 components: - pos: 23.5,44.5 @@ -28123,8 +24836,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10413 components: - pos: 24.5,41.5 @@ -28132,8 +24843,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10414 components: - pos: 24.5,40.5 @@ -28141,8 +24850,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10415 components: - pos: 17.5,44.5 @@ -28150,8 +24857,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10424 components: - pos: 18.5,44.5 @@ -28159,8 +24864,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10425 components: - pos: 19.5,44.5 @@ -28168,8 +24871,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10429 components: - pos: 22.5,44.5 @@ -28177,8 +24878,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10431 components: - pos: 16.5,37.5 @@ -28186,8 +24885,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10432 components: - pos: 19.5,36.5 @@ -28195,8 +24892,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10433 components: - pos: 24.5,43.5 @@ -28204,8 +24899,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10434 components: - pos: 24.5,44.5 @@ -28213,8 +24906,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10435 components: - pos: 24.5,42.5 @@ -28222,15 +24913,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10740 components: - pos: -11.5,-1.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 10999 components: - pos: -65.5,44.5 @@ -28238,36 +24925,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11000 components: - pos: -64.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11001 components: - pos: -63.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11002 components: - pos: -62.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11003 components: - pos: -61.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11004 components: - pos: -60.5,44.5 @@ -28275,57 +24952,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11005 components: - pos: -59.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11006 components: - pos: -58.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11007 components: - pos: -57.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11008 components: - pos: -62.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11009 components: - pos: -62.5,42.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11010 components: - pos: -62.5,41.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11011 components: - pos: -62.5,40.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11012 components: - pos: -62.5,39.5 @@ -28333,36 +24994,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11015 components: - pos: -66.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11016 components: - pos: -66.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11017 components: - pos: -66.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11018 components: - pos: -66.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11019 components: - pos: -67.5,47.5 @@ -28370,15 +25021,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11020 components: - pos: -68.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11021 components: - pos: -69.5,47.5 @@ -28386,22 +25033,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11022 components: - pos: -70.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11023 components: - pos: -66.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11024 components: - pos: -66.5,42.5 @@ -28409,8 +25050,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11025 components: - pos: -66.5,41.5 @@ -28418,8 +25057,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11026 components: - pos: -66.5,40.5 @@ -28427,15 +25064,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11027 components: - pos: -67.5,40.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11028 components: - pos: -68.5,40.5 @@ -28443,57 +25076,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11029 components: - pos: -69.5,40.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11030 components: - pos: -70.5,40.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11031 components: - pos: -71.5,40.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11032 components: - pos: -71.5,41.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11033 components: - pos: -71.5,42.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11034 components: - pos: -71.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11035 components: - pos: -71.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11036 components: - pos: -66.5,48.5 @@ -28501,22 +25118,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11037 components: - pos: -66.5,49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11038 components: - pos: -66.5,50.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11039 components: - pos: -67.5,50.5 @@ -28524,8 +25135,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11040 components: - pos: -67.5,51.5 @@ -28533,15 +25142,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11041 components: - pos: -67.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11042 components: - pos: -68.5,52.5 @@ -28549,8 +25154,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11043 components: - pos: -69.5,52.5 @@ -28558,29 +25161,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11044 components: - pos: -70.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11045 components: - pos: -71.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11046 components: - pos: -71.5,53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11047 components: - pos: -71.5,54.5 @@ -28588,15 +25183,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11048 components: - pos: -71.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11160 components: - pos: -75.5,21.5 @@ -28604,43 +25195,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11161 components: - pos: -74.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11162 components: - pos: -73.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11163 components: - pos: -72.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11164 components: - pos: -71.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11165 components: - pos: -70.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11166 components: - pos: -69.5,21.5 @@ -28648,8 +25227,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11173 components: - pos: -68.5,21.5 @@ -28657,8 +25234,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11174 components: - pos: -67.5,21.5 @@ -28666,8 +25241,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11322 components: - pos: -66.5,21.5 @@ -28675,8 +25248,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11323 components: - pos: -65.5,21.5 @@ -28684,99 +25255,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11324 components: - pos: -64.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11325 components: - pos: -74.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11326 components: - pos: -74.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11327 components: - pos: -74.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11328 components: - pos: -74.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11329 components: - pos: -75.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11330 components: - pos: -76.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11331 components: - pos: -77.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11332 components: - pos: -78.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11333 components: - pos: -79.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11334 components: - pos: -79.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11335 components: - pos: -79.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11336 components: - pos: -79.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11337 components: - pos: -79.5,21.5 @@ -28784,15 +25327,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11338 components: - pos: -79.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11339 components: - pos: -79.5,19.5 @@ -28800,22 +25339,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11340 components: - pos: -80.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11341 components: - pos: -81.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11342 components: - pos: -78.5,19.5 @@ -28823,246 +25356,176 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11343 components: - pos: -77.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11344 components: - pos: -80.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11345 components: - pos: -81.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11346 components: - pos: -82.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11347 components: - pos: -83.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11348 components: - pos: -84.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11349 components: - pos: -84.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11350 components: - pos: -84.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11351 components: - pos: -84.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11352 components: - pos: -79.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11353 components: - pos: -79.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11354 components: - pos: -80.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11355 components: - pos: -81.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11356 components: - pos: -82.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11357 components: - pos: -83.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11358 components: - pos: -84.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11359 components: - pos: -84.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11360 components: - pos: -84.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11361 components: - pos: -84.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11362 components: - pos: -74.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11363 components: - pos: -74.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11364 components: - pos: -74.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11365 components: - pos: -74.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11366 components: - pos: -74.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11367 components: - pos: -74.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11368 components: - pos: -74.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11369 components: - pos: -74.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11370 components: - pos: -74.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11371 components: - pos: -73.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11372 components: - pos: -72.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11373 components: - pos: -71.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11374 components: - pos: -70.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11375 components: - pos: -69.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11376 components: - pos: -60.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11377 components: - pos: -60.5,7.5 @@ -29070,8 +25533,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11378 components: - pos: -60.5,8.5 @@ -29079,22 +25540,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11379 components: - pos: -61.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11380 components: - pos: -62.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11381 components: - pos: -63.5,8.5 @@ -29102,15 +25557,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11382 components: - pos: -64.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11383 components: - pos: -65.5,8.5 @@ -29118,22 +25569,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11384 components: - pos: -66.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11385 components: - pos: -66.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11386 components: - pos: -66.5,10.5 @@ -29141,8 +25586,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11387 components: - pos: -66.5,11.5 @@ -29150,8 +25593,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11388 components: - pos: -66.5,12.5 @@ -29159,22 +25600,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11389 components: - pos: -66.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11390 components: - pos: -66.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11391 components: - pos: -66.5,15.5 @@ -29182,15 +25617,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11392 components: - pos: -66.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11393 components: - pos: -65.5,16.5 @@ -29198,8 +25629,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11394 components: - pos: -64.5,16.5 @@ -29207,15 +25636,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11395 components: - pos: -63.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11396 components: - pos: -68.5,35.5 @@ -29223,197 +25648,141 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11397 components: - pos: -68.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11398 components: - pos: -68.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11399 components: - pos: -67.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11400 components: - pos: -66.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11401 components: - pos: -65.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11402 components: - pos: -64.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11403 components: - pos: -64.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11404 components: - pos: -63.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11405 components: - pos: -62.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11406 components: - pos: -61.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11407 components: - pos: -60.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11408 components: - pos: -64.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11409 components: - pos: -64.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11410 components: - pos: -64.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11411 components: - pos: -64.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11412 components: - pos: -64.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11413 components: - pos: -65.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11414 components: - pos: -66.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11415 components: - pos: -69.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11416 components: - pos: -70.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11417 components: - pos: -71.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11418 components: - pos: -72.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11419 components: - pos: -73.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11420 components: - pos: -74.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11421 components: - pos: -74.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11422 components: - pos: -74.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11423 components: - pos: -74.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11424 components: - pos: -76.5,36.5 @@ -29421,8 +25790,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11425 components: - pos: -77.5,36.5 @@ -29430,8 +25797,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11426 components: - pos: -78.5,36.5 @@ -29439,8 +25804,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11427 components: - pos: -79.5,36.5 @@ -29448,8 +25811,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11428 components: - pos: -80.5,36.5 @@ -29457,8 +25818,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11429 components: - pos: -81.5,36.5 @@ -29466,8 +25825,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11430 components: - pos: -82.5,36.5 @@ -29475,8 +25832,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11431 components: - pos: -83.5,36.5 @@ -29484,8 +25839,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11432 components: - pos: -78.5,37.5 @@ -29493,8 +25846,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11433 components: - pos: -78.5,38.5 @@ -29502,8 +25853,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11434 components: - pos: -78.5,39.5 @@ -29511,8 +25860,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11435 components: - pos: -78.5,40.5 @@ -29520,8 +25867,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11436 components: - pos: -78.5,41.5 @@ -29529,8 +25874,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11437 components: - pos: -78.5,42.5 @@ -29538,8 +25881,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11438 components: - pos: -78.5,43.5 @@ -29547,8 +25888,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11439 components: - pos: -78.5,44.5 @@ -29556,8 +25895,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11440 components: - pos: -78.5,45.5 @@ -29565,8 +25902,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11441 components: - pos: -78.5,46.5 @@ -29574,8 +25909,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11442 components: - pos: -77.5,46.5 @@ -29583,8 +25916,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11443 components: - pos: -77.5,47.5 @@ -29592,15 +25923,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11444 components: - pos: -79.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11445 components: - pos: -79.5,47.5 @@ -29608,8 +25935,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11446 components: - pos: -80.5,47.5 @@ -29617,8 +25942,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11447 components: - pos: -81.5,47.5 @@ -29626,8 +25949,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11448 components: - pos: -82.5,47.5 @@ -29635,8 +25956,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11449 components: - pos: -83.5,47.5 @@ -29644,8 +25963,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11450 components: - pos: -84.5,47.5 @@ -29653,8 +25970,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11451 components: - pos: -85.5,47.5 @@ -29662,8 +25977,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11452 components: - pos: -85.5,46.5 @@ -29671,8 +25984,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11453 components: - pos: -85.5,45.5 @@ -29680,8 +25991,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11454 components: - pos: -85.5,44.5 @@ -29689,8 +25998,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11455 components: - pos: -85.5,43.5 @@ -29698,8 +26005,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11456 components: - pos: -85.5,42.5 @@ -29707,8 +26012,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11457 components: - pos: -85.5,41.5 @@ -29716,8 +26019,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11458 components: - pos: -85.5,40.5 @@ -29725,8 +26026,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11459 components: - pos: -85.5,39.5 @@ -29734,8 +26033,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11460 components: - pos: -85.5,38.5 @@ -29743,8 +26040,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11461 components: - pos: -85.5,37.5 @@ -29752,8 +26047,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11462 components: - pos: -85.5,36.5 @@ -29761,8 +26054,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11463 components: - pos: -85.5,35.5 @@ -29770,8 +26061,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11464 components: - pos: -85.5,34.5 @@ -29779,8 +26068,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11465 components: - pos: -86.5,46.5 @@ -29788,8 +26075,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11466 components: - pos: -87.5,46.5 @@ -29797,8 +26082,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11467 components: - pos: -87.5,45.5 @@ -29806,8 +26089,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11471 components: - pos: -87.5,44.5 @@ -29815,8 +26096,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11472 components: - pos: -87.5,43.5 @@ -29824,8 +26103,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11473 components: - pos: -87.5,42.5 @@ -29833,8 +26110,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11474 components: - pos: -87.5,41.5 @@ -29842,8 +26117,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11476 components: - pos: -87.5,40.5 @@ -29851,8 +26124,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11477 components: - pos: -87.5,39.5 @@ -29860,8 +26131,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11478 components: - pos: -87.5,38.5 @@ -29869,8 +26138,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11479 components: - pos: -87.5,37.5 @@ -29878,8 +26145,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11480 components: - pos: -87.5,36.5 @@ -29887,8 +26152,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11481 components: - pos: -87.5,35.5 @@ -29896,8 +26159,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11482 components: - pos: -87.5,34.5 @@ -29905,8 +26166,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11483 components: - pos: -88.5,46.5 @@ -29914,8 +26173,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11484 components: - pos: -89.5,46.5 @@ -29923,8 +26180,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11485 components: - pos: -90.5,46.5 @@ -29932,8 +26187,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11486 components: - pos: -91.5,46.5 @@ -29941,8 +26194,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11487 components: - pos: -91.5,45.5 @@ -29950,8 +26201,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11488 components: - pos: -91.5,44.5 @@ -29959,8 +26208,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11490 components: - pos: -91.5,43.5 @@ -29968,8 +26215,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11491 components: - pos: -91.5,42.5 @@ -29977,8 +26222,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11492 components: - pos: -91.5,41.5 @@ -29986,8 +26229,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11493 components: - pos: -91.5,40.5 @@ -29995,8 +26236,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11494 components: - pos: -91.5,39.5 @@ -30004,8 +26243,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11495 components: - pos: -91.5,38.5 @@ -30013,8 +26250,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11496 components: - pos: -91.5,37.5 @@ -30022,8 +26257,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11497 components: - pos: -91.5,36.5 @@ -30031,8 +26264,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11498 components: - pos: -91.5,35.5 @@ -30040,8 +26271,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11499 components: - pos: -91.5,34.5 @@ -30049,8 +26278,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11500 components: - pos: -84.5,48.5 @@ -30058,8 +26285,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11501 components: - pos: -84.5,49.5 @@ -30067,8 +26292,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11502 components: - pos: -83.5,49.5 @@ -30076,8 +26299,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11504 components: - pos: -82.5,49.5 @@ -30085,8 +26306,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11505 components: - pos: -81.5,49.5 @@ -30094,8 +26313,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11506 components: - pos: -80.5,49.5 @@ -30103,8 +26320,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11507 components: - pos: -80.5,50.5 @@ -30112,8 +26327,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11510 components: - pos: -84.5,50.5 @@ -30121,8 +26334,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11512 components: - pos: -78.5,35.5 @@ -30130,8 +26341,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11514 components: - pos: -78.5,34.5 @@ -30139,8 +26348,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11575 components: - pos: -40.5,37.5 @@ -30148,8 +26355,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11903 components: - pos: 22.5,36.5 @@ -30157,8 +26362,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11917 components: - pos: 18.5,36.5 @@ -30166,43 +26369,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12039 components: - pos: -78.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12221 components: - pos: -78.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12432 components: - pos: -78.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12501 components: - pos: -78.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12502 components: - pos: -78.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12503 components: - pos: -82.5,35.5 @@ -30210,8 +26401,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12504 components: - pos: -82.5,34.5 @@ -30219,92 +26408,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12505 components: - pos: -82.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13035 components: - pos: -82.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13036 components: - pos: -82.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13037 components: - pos: -82.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13038 components: - pos: -82.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13331 components: - pos: -0.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13332 components: - pos: -0.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13333 components: - pos: -0.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13334 components: - pos: -0.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13658 components: - pos: -51.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13659 components: - pos: -50.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13660 components: - pos: -49.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13753 components: - pos: -84.5,36.5 @@ -30312,8 +26475,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14005 components: - pos: -72.5,54.5 @@ -30321,8 +26482,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14006 components: - pos: -73.5,54.5 @@ -30330,15 +26489,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14039 components: - pos: -70.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 14041 components: - pos: -70.5,31.5 @@ -30346,8 +26501,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14042 components: - pos: -70.5,30.5 @@ -30355,8 +26508,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14043 components: - pos: -70.5,29.5 @@ -30364,8 +26515,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14044 components: - pos: -70.5,28.5 @@ -30373,8 +26522,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14231 components: - pos: -73.5,55.5 @@ -30382,8 +26529,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14232 components: - pos: -73.5,56.5 @@ -30391,8 +26536,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15005 components: - pos: -74.5,54.5 @@ -30400,29 +26543,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15006 components: - pos: -75.5,54.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 15007 components: - pos: -76.5,54.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 15050 components: - pos: -36.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 15051 components: - pos: -35.5,55.5 @@ -30430,8 +26565,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15052 components: - pos: -34.5,55.5 @@ -30439,8 +26572,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15053 components: - pos: -33.5,55.5 @@ -30448,8 +26579,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15054 components: - pos: -32.5,55.5 @@ -30457,8 +26586,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15055 components: - pos: -31.5,55.5 @@ -30466,8 +26593,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15056 components: - pos: -58.5,86.5 @@ -30475,15 +26600,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15062 components: - pos: -46.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 15113 components: - pos: -31.5,56.5 @@ -30491,8 +26612,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15237 components: - pos: 17.5,47.5 @@ -30500,64 +26619,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15238 components: - pos: 17.5,48.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 15239 components: - pos: 17.5,49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 15240 components: - pos: 17.5,50.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 15241 components: - pos: 17.5,51.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 15242 components: - pos: 16.5,51.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 15243 components: - pos: 15.5,51.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 15244 components: - pos: 14.5,51.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 15245 components: - pos: 16.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 15246 components: - pos: 13.5,53.5 @@ -30565,8 +26666,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15247 components: - pos: 14.5,53.5 @@ -30574,8 +26673,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15248 components: - pos: 15.5,53.5 @@ -30583,8 +26680,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15249 components: - pos: 16.5,53.5 @@ -30592,8 +26687,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15250 components: - pos: 17.5,53.5 @@ -30601,8 +26694,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15251 components: - pos: 18.5,53.5 @@ -30610,8 +26701,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15252 components: - pos: 19.5,53.5 @@ -30619,15 +26708,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15253 components: - pos: 18.5,50.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 15254 components: - pos: 19.5,52.5 @@ -30635,8 +26720,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15255 components: - pos: 19.5,51.5 @@ -30644,8 +26727,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15256 components: - pos: 19.5,50.5 @@ -30653,8 +26734,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15257 components: - pos: 19.5,49.5 @@ -30662,8 +26741,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15258 components: - pos: 19.5,48.5 @@ -30671,15 +26748,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15282 components: - pos: 7.5,40.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 15283 components: - pos: 7.5,41.5 @@ -30687,8 +26760,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15284 components: - pos: 7.5,42.5 @@ -30696,15 +26767,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15285 components: - pos: 7.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 15286 components: - pos: 7.5,44.5 @@ -30712,8 +26779,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15287 components: - pos: 7.5,45.5 @@ -30721,8 +26786,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15288 components: - pos: 7.5,46.5 @@ -30730,29 +26793,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15291 components: - pos: 10.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 15380 components: - pos: -16.5,53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 15430 components: - pos: -41.5,63.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 15431 components: - pos: -40.5,63.5 @@ -30760,15 +26815,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15432 components: - pos: -42.5,61.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 15433 components: - pos: -42.5,60.5 @@ -30776,15 +26827,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15434 components: - pos: -42.5,66.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 15517 components: - pos: -5.5,-16.5 @@ -30792,8 +26839,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15518 components: - pos: -5.5,-17.5 @@ -30801,8 +26846,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15519 components: - pos: -5.5,-18.5 @@ -30810,8 +26853,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15712 components: - pos: -10.5,-6.5 @@ -30819,15 +26860,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15713 components: - pos: -11.5,-6.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15714 components: - pos: -12.5,-6.5 @@ -30835,15 +26872,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15715 components: - pos: -12.5,-7.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15716 components: - pos: -12.5,-5.5 @@ -30851,15 +26884,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15717 components: - pos: -12.5,-4.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15718 components: - pos: -18.5,-2.5 @@ -30867,22 +26896,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15719 components: - pos: -17.5,-2.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15720 components: - pos: -16.5,-2.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15721 components: - pos: -16.5,-1.5 @@ -30890,8 +26913,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15722 components: - pos: -16.5,-0.5 @@ -30899,8 +26920,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15723 components: - pos: -8.5,2.5 @@ -30908,141 +26927,101 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15724 components: - pos: -8.5,1.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15725 components: - pos: -8.5,0.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15726 components: - pos: -9.5,0.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15727 components: - pos: -10.5,0.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15728 components: - pos: -11.5,0.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15729 components: - pos: -12.5,0.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15730 components: - pos: -7.5,0.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15731 components: - pos: -6.5,0.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15732 components: - pos: -11.5,-0.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15734 components: - pos: -11.5,-2.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15735 components: - pos: -10.5,1.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15736 components: - pos: -10.5,2.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15737 components: - pos: -12.5,1.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15738 components: - pos: -12.5,2.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15739 components: - pos: -6.5,1.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15740 components: - pos: -6.5,2.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15741 components: - pos: -6.5,3.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15742 components: - pos: -6.5,4.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15743 components: - pos: -5.5,2.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15744 components: - pos: -4.5,2.5 @@ -31050,8 +27029,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15745 components: - pos: -3.5,2.5 @@ -31059,22 +27036,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15746 components: - pos: -2.5,2.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15747 components: - pos: -2.5,1.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15748 components: - pos: -2.5,0.5 @@ -31082,15 +27053,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15749 components: - pos: -6.5,-0.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15750 components: - pos: -6.5,-1.5 @@ -31098,43 +27065,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15751 components: - pos: -6.5,-2.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15752 components: - pos: -5.5,-2.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15753 components: - pos: -4.5,-2.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15754 components: - pos: -3.5,-2.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15755 components: - pos: -2.5,-2.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15756 components: - pos: -6.5,-4.5 @@ -31142,22 +27097,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15757 components: - pos: -6.5,-5.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15758 components: - pos: -6.5,-6.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15759 components: - pos: -6.5,-7.5 @@ -31165,50 +27114,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15760 components: - pos: -7.5,-6.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15761 components: - pos: -8.5,-6.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15762 components: - pos: -5.5,-6.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15763 components: - pos: -4.5,-6.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15764 components: - pos: -3.5,-6.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15765 components: - pos: -3.5,-7.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15845 components: - pos: 19.5,40.5 @@ -31216,8 +27151,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15870 components: - pos: 12.5,51.5 @@ -31225,74 +27158,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15871 components: - pos: 11.5,51.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - - uid: 15872 - components: - - pos: 10.5,51.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 15873 - components: - - pos: 10.5,52.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 15874 - components: - - pos: 10.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 15875 - components: - - pos: 9.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 15876 - components: - - pos: 8.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 15877 - components: - - pos: 8.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 15878 - components: - - pos: 7.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15890 components: - pos: -24.5,-10.5 @@ -31300,8 +27170,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15891 components: - pos: -24.5,-11.5 @@ -31309,15 +27177,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15951 components: - pos: -51.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 15952 components: - pos: -51.5,30.5 @@ -31325,8 +27189,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15953 components: - pos: -52.5,30.5 @@ -31334,8 +27196,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15954 components: - pos: -53.5,30.5 @@ -31343,22 +27203,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15955 components: - pos: -50.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 15956 components: - pos: -50.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 15957 components: - pos: -50.5,30.5 @@ -31366,22 +27220,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15987 components: - pos: -8.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 15988 components: - pos: -17.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - proto: CableApcStack entities: - uid: 2887 @@ -31439,22 +27287,16 @@ entities: - pos: 4.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 561 components: - pos: 4.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 562 components: - pos: 4.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 563 components: - pos: 4.5,2.5 @@ -31462,8 +27304,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 564 components: - pos: 4.5,1.5 @@ -31471,8 +27311,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 565 components: - pos: 4.5,0.5 @@ -31480,8 +27318,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 566 components: - pos: 4.5,-0.5 @@ -31489,8 +27325,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 567 components: - pos: 4.5,-1.5 @@ -31498,8 +27332,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 568 components: - pos: 4.5,-2.5 @@ -31507,8 +27339,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 569 components: - pos: 4.5,-3.5 @@ -31516,8 +27346,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 570 components: - pos: 4.5,-4.5 @@ -31525,8 +27353,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 571 components: - pos: 4.5,-5.5 @@ -31534,8 +27360,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 572 components: - pos: 5.5,-5.5 @@ -31543,8 +27367,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 573 components: - pos: 6.5,-5.5 @@ -31552,8 +27374,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 574 components: - pos: 7.5,-5.5 @@ -31561,8 +27381,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 594 components: - pos: 8.5,-5.5 @@ -31570,8 +27388,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 595 components: - pos: 9.5,-5.5 @@ -31579,8 +27395,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 596 components: - pos: 10.5,-5.5 @@ -31588,15 +27402,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 597 components: - pos: 11.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 598 components: - pos: 11.5,-6.5 @@ -31604,8 +27414,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 599 components: - pos: 11.5,-7.5 @@ -31613,8 +27421,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 728 components: - pos: 12.5,-5.5 @@ -31622,8 +27428,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 729 components: - pos: 13.5,-5.5 @@ -31631,8 +27435,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 730 components: - pos: 14.5,-5.5 @@ -31640,8 +27442,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 731 components: - pos: 15.5,-5.5 @@ -31649,15 +27449,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 732 components: - pos: 16.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 733 components: - pos: 17.5,-5.5 @@ -31665,8 +27461,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 734 components: - pos: 18.5,-5.5 @@ -31674,8 +27468,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 735 components: - pos: 19.5,-5.5 @@ -31683,8 +27475,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 736 components: - pos: 20.5,-5.5 @@ -31692,8 +27482,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 737 components: - pos: 21.5,-5.5 @@ -31701,8 +27489,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 738 components: - pos: 22.5,-5.5 @@ -31710,15 +27496,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 739 components: - pos: 23.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 740 components: - pos: 24.5,-5.5 @@ -31726,8 +27508,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 741 components: - pos: 25.5,-5.5 @@ -31735,8 +27515,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 742 components: - pos: 26.5,-5.5 @@ -31744,8 +27522,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 743 components: - pos: 27.5,-5.5 @@ -31753,8 +27529,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 744 components: - pos: 28.5,-10.5 @@ -31762,8 +27536,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 745 components: - pos: 28.5,-9.5 @@ -31771,8 +27543,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 746 components: - pos: 18.5,-14.5 @@ -31780,8 +27550,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 747 components: - pos: 28.5,-8.5 @@ -31789,8 +27557,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 750 components: - pos: 19.5,-14.5 @@ -31798,8 +27564,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 751 components: - pos: 20.5,-14.5 @@ -31807,8 +27571,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 752 components: - pos: 21.5,-14.5 @@ -31816,8 +27578,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 753 components: - pos: 22.5,-14.5 @@ -31825,8 +27585,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 754 components: - pos: 23.5,-14.5 @@ -31834,8 +27592,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 755 components: - pos: 24.5,-14.5 @@ -31843,8 +27599,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 756 components: - pos: 25.5,-14.5 @@ -31852,8 +27606,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 757 components: - pos: 26.5,-14.5 @@ -31861,8 +27613,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 758 components: - pos: 27.5,-14.5 @@ -31870,8 +27620,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 759 components: - pos: 18.5,-16.5 @@ -31879,8 +27627,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 760 components: - pos: 19.5,-16.5 @@ -31888,8 +27634,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 761 components: - pos: 20.5,-16.5 @@ -31897,8 +27641,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 762 components: - pos: 21.5,-16.5 @@ -31906,8 +27648,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 763 components: - pos: 22.5,-16.5 @@ -31915,8 +27655,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 764 components: - pos: 23.5,-16.5 @@ -31924,8 +27662,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 765 components: - pos: 24.5,-16.5 @@ -31933,8 +27669,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 766 components: - pos: 25.5,-16.5 @@ -31942,8 +27676,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 767 components: - pos: 26.5,-16.5 @@ -31951,8 +27683,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 768 components: - pos: 27.5,-16.5 @@ -31960,8 +27690,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 769 components: - pos: 19.5,-18.5 @@ -31969,8 +27697,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 770 components: - pos: 20.5,-18.5 @@ -31978,8 +27704,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 771 components: - pos: 21.5,-18.5 @@ -31987,8 +27711,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 772 components: - pos: 22.5,-18.5 @@ -31996,8 +27718,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 773 components: - pos: 23.5,-18.5 @@ -32005,8 +27725,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 774 components: - pos: 24.5,-18.5 @@ -32014,8 +27732,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 775 components: - pos: 25.5,-18.5 @@ -32023,8 +27739,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 776 components: - pos: 26.5,-18.5 @@ -32032,8 +27746,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 777 components: - pos: 27.5,-18.5 @@ -32041,8 +27753,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 778 components: - pos: 19.5,-20.5 @@ -32050,8 +27760,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 779 components: - pos: 20.5,-20.5 @@ -32059,8 +27767,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 780 components: - pos: 21.5,-20.5 @@ -32068,8 +27774,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 781 components: - pos: 22.5,-20.5 @@ -32077,8 +27781,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 782 components: - pos: 23.5,-20.5 @@ -32086,8 +27788,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 783 components: - pos: 24.5,-20.5 @@ -32095,8 +27795,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 784 components: - pos: 25.5,-20.5 @@ -32104,8 +27802,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 785 components: - pos: 26.5,-20.5 @@ -32113,8 +27809,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 786 components: - pos: 27.5,-20.5 @@ -32122,8 +27816,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 787 components: - pos: 20.5,-22.5 @@ -32131,8 +27823,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 788 components: - pos: 21.5,-22.5 @@ -32140,8 +27830,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 789 components: - pos: 22.5,-22.5 @@ -32149,8 +27837,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 790 components: - pos: 23.5,-22.5 @@ -32158,8 +27844,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 791 components: - pos: 24.5,-22.5 @@ -32167,8 +27851,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 792 components: - pos: 25.5,-22.5 @@ -32176,8 +27858,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 793 components: - pos: 26.5,-22.5 @@ -32185,8 +27865,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 794 components: - pos: 27.5,-22.5 @@ -32194,8 +27872,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 795 components: - pos: 20.5,-24.5 @@ -32203,8 +27879,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 796 components: - pos: 21.5,-24.5 @@ -32212,8 +27886,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 797 components: - pos: 22.5,-24.5 @@ -32221,8 +27893,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 798 components: - pos: 23.5,-24.5 @@ -32230,8 +27900,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 799 components: - pos: 24.5,-24.5 @@ -32239,8 +27907,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 800 components: - pos: 25.5,-24.5 @@ -32248,8 +27914,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 801 components: - pos: 26.5,-24.5 @@ -32257,8 +27921,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 802 components: - pos: 27.5,-24.5 @@ -32266,8 +27928,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 857 components: - pos: 28.5,-27.5 @@ -32275,8 +27935,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 858 components: - pos: 28.5,-26.5 @@ -32284,8 +27942,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 859 components: - pos: 28.5,-25.5 @@ -32293,8 +27949,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 903 components: - pos: 27.5,-6.5 @@ -32302,8 +27956,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 904 components: - pos: 27.5,-7.5 @@ -32311,8 +27963,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 905 components: - pos: 27.5,-8.5 @@ -32320,8 +27970,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 924 components: - pos: 25.5,1.5 @@ -32329,15 +27977,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 925 components: - pos: 25.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 926 components: - pos: 25.5,3.5 @@ -32345,8 +27989,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 927 components: - pos: 26.5,3.5 @@ -32354,71 +27996,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 928 components: - pos: 26.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 929 components: - pos: 26.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 988 components: - pos: 26.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 990 components: - pos: 26.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 991 components: - pos: 27.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 992 components: - pos: 28.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 993 components: - pos: 28.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1018 components: - pos: 26.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1029 components: - pos: 26.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1506 components: - pos: -18.5,20.5 @@ -32426,120 +28048,86 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1534 components: - pos: 25.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1535 components: - pos: 24.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1536 components: - pos: 23.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1537 components: - pos: 22.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1538 components: - pos: 21.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1539 components: - pos: 20.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1540 components: - pos: 19.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1541 components: - pos: 18.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1542 components: - pos: 17.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1543 components: - pos: 16.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1544 components: - pos: 15.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1545 components: - pos: 14.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1546 components: - pos: 13.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1547 components: - pos: 12.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1548 components: - pos: 11.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1549 components: - pos: 10.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1550 components: - pos: 9.5,5.5 @@ -32547,8 +28135,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1551 components: - pos: 8.5,5.5 @@ -32556,50 +28142,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1552 components: - pos: 7.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1553 components: - pos: 6.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1554 components: - pos: 5.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1555 components: - pos: 22.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1556 components: - pos: 22.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1557 components: - pos: 22.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1558 components: - pos: 22.5,9.5 @@ -32607,8 +28179,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1559 components: - pos: 23.5,9.5 @@ -32616,92 +28186,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1561 components: - pos: 3.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1562 components: - pos: 2.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1563 components: - pos: 1.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1564 components: - pos: 0.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1565 components: - pos: -0.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1566 components: - pos: -1.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1567 components: - pos: -2.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1568 components: - pos: -3.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1569 components: - pos: -4.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1570 components: - pos: -5.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1571 components: - pos: -5.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1572 components: - pos: -5.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1573 components: - pos: -5.5,8.5 @@ -32709,8 +28253,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1574 components: - pos: -5.5,9.5 @@ -32718,22 +28260,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1575 components: - pos: -5.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1576 components: - pos: -5.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1577 components: - pos: -5.5,12.5 @@ -32741,8 +28277,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1578 components: - pos: -5.5,13.5 @@ -32750,15 +28284,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1579 components: - pos: -5.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1580 components: - pos: -5.5,15.5 @@ -32766,8 +28296,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1581 components: - pos: -5.5,16.5 @@ -32775,8 +28303,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1582 components: - pos: -5.5,17.5 @@ -32784,15 +28310,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1583 components: - pos: -6.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1584 components: - pos: -7.5,17.5 @@ -32800,8 +28322,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1585 components: - pos: -8.5,17.5 @@ -32809,8 +28329,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1586 components: - pos: -9.5,17.5 @@ -32818,8 +28336,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1587 components: - pos: -9.5,18.5 @@ -32827,8 +28343,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2401 components: - pos: -22.5,61.5 @@ -32836,29 +28350,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2589 components: - pos: 28.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2777 components: - pos: -19.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2780 components: - pos: -20.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2784 components: - pos: -18.5,17.5 @@ -32866,22 +28372,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2910 components: - pos: -13.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2921 components: - pos: 22.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2922 components: - pos: 22.5,3.5 @@ -32889,8 +28389,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2923 components: - pos: 22.5,2.5 @@ -32898,8 +28396,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2924 components: - pos: 22.5,1.5 @@ -32907,15 +28403,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2925 components: - pos: 23.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2926 components: - pos: 23.5,0.5 @@ -32923,8 +28415,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2927 components: - pos: 23.5,-0.5 @@ -32932,8 +28422,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2928 components: - pos: 23.5,-1.5 @@ -32941,8 +28429,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2929 components: - pos: 23.5,-2.5 @@ -32950,8 +28436,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2930 components: - pos: 23.5,-3.5 @@ -32959,8 +28443,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2931 components: - pos: 23.5,-4.5 @@ -32968,36 +28450,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2972 components: - pos: 25.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2973 components: - pos: 25.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2974 components: - pos: 26.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2978 components: - pos: 25.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3040 components: - pos: -20.5,18.5 @@ -33005,8 +28477,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3331 components: - pos: -6.5,18.5 @@ -33014,8 +28484,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3332 components: - pos: -6.5,19.5 @@ -33023,15 +28491,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3333 components: - pos: -6.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3334 components: - pos: -6.5,21.5 @@ -33039,8 +28503,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3335 components: - pos: -6.5,22.5 @@ -33048,15 +28510,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3336 components: - pos: -6.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3337 components: - pos: -6.5,24.5 @@ -33064,8 +28522,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3338 components: - pos: -6.5,25.5 @@ -33073,22 +28529,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3339 components: - pos: -7.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3340 components: - pos: -8.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3341 components: - pos: -9.5,25.5 @@ -33096,8 +28546,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3342 components: - pos: -10.5,25.5 @@ -33105,253 +28553,181 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3343 components: - pos: -11.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3344 components: - pos: -12.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3345 components: - pos: -12.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3346 components: - pos: -12.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3347 components: - pos: -12.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3348 components: - pos: -12.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3362 components: - pos: -12.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3363 components: - pos: -12.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3364 components: - pos: -12.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3365 components: - pos: -12.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3366 components: - pos: -12.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3367 components: - pos: -12.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3368 components: - pos: -12.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3369 components: - pos: -12.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3370 components: - pos: -12.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3371 components: - pos: -12.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3372 components: - pos: -12.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3373 components: - pos: -12.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3374 components: - pos: -12.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3375 components: - pos: -12.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3376 components: - pos: -12.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3377 components: - pos: -12.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3378 components: - pos: -11.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3379 components: - pos: -10.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3380 components: - pos: -9.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3381 components: - pos: -8.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3382 components: - pos: -7.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3383 components: - pos: -6.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3384 components: - pos: -12.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3385 components: - pos: -12.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3386 components: - pos: -12.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3387 components: - pos: -12.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3388 components: - pos: -12.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3389 components: - pos: -12.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3390 components: - pos: -12.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3477 components: - pos: -22.5,62.5 @@ -33359,8 +28735,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3478 components: - pos: -22.5,60.5 @@ -33368,197 +28742,141 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3907 components: - pos: -13.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3908 components: - pos: -14.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3909 components: - pos: -15.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3910 components: - pos: -16.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3911 components: - pos: -17.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3912 components: - pos: -18.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3913 components: - pos: -19.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3914 components: - pos: -20.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3915 components: - pos: -21.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3916 components: - pos: -22.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3917 components: - pos: -23.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3918 components: - pos: -24.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3919 components: - pos: -25.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3920 components: - pos: -26.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3921 components: - pos: -27.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3922 components: - pos: -28.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3923 components: - pos: -29.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3924 components: - pos: -30.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3925 components: - pos: -31.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3926 components: - pos: -32.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3927 components: - pos: -33.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3928 components: - pos: -34.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3929 components: - pos: -35.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3930 components: - pos: -36.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3931 components: - pos: -37.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3976 components: - pos: -15.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3977 components: - pos: -15.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3978 components: - pos: -15.5,2.5 @@ -33566,8 +28884,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3979 components: - pos: -15.5,1.5 @@ -33575,15 +28891,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3980 components: - pos: -16.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3981 components: - pos: -17.5,1.5 @@ -33591,8 +28903,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3982 components: - pos: -18.5,1.5 @@ -33600,8 +28910,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3983 components: - pos: -19.5,1.5 @@ -33609,8 +28917,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3984 components: - pos: -20.5,1.5 @@ -33618,8 +28924,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3985 components: - pos: -21.5,1.5 @@ -33627,8 +28931,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3986 components: - pos: -21.5,0.5 @@ -33636,8 +28938,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3987 components: - pos: -21.5,-0.5 @@ -33645,15 +28945,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3988 components: - pos: -21.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3989 components: - pos: -21.5,-2.5 @@ -33661,8 +28957,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3990 components: - pos: -21.5,-3.5 @@ -33670,8 +28964,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3991 components: - pos: -21.5,-4.5 @@ -33679,8 +28971,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3992 components: - pos: -22.5,-4.5 @@ -33688,8 +28978,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3993 components: - pos: -23.5,-4.5 @@ -33697,8 +28985,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3994 components: - pos: -24.5,-4.5 @@ -33706,8 +28992,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3995 components: - pos: -24.5,-3.5 @@ -33715,8 +28999,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3996 components: - pos: -21.5,-5.5 @@ -33724,8 +29006,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3997 components: - pos: -21.5,-6.5 @@ -33733,15 +29013,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3998 components: - pos: -21.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3999 components: - pos: -22.5,-7.5 @@ -33749,8 +29025,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4000 components: - pos: -23.5,-7.5 @@ -33758,8 +29032,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4001 components: - pos: -24.5,-7.5 @@ -33767,8 +29039,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4002 components: - pos: -25.5,-7.5 @@ -33776,8 +29046,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4003 components: - pos: -26.5,-7.5 @@ -33785,8 +29053,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4004 components: - pos: -26.5,-6.5 @@ -33794,8 +29060,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4005 components: - pos: -27.5,-6.5 @@ -33803,8 +29067,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4006 components: - pos: -28.5,-6.5 @@ -33812,8 +29074,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4007 components: - pos: -28.5,-5.5 @@ -33821,8 +29081,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4008 components: - pos: -28.5,-4.5 @@ -33830,8 +29088,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4009 components: - pos: -28.5,-3.5 @@ -33839,15 +29095,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4010 components: - pos: -28.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4011 components: - pos: -28.5,-1.5 @@ -33855,8 +29107,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4012 components: - pos: -28.5,-0.5 @@ -33864,8 +29114,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4013 components: - pos: -28.5,0.5 @@ -33873,8 +29121,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4014 components: - pos: -28.5,1.5 @@ -33882,8 +29128,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4015 components: - pos: -28.5,2.5 @@ -33891,8 +29135,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4016 components: - pos: -28.5,3.5 @@ -33900,50 +29142,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4017 components: - pos: -28.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4018 components: - pos: -37.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4019 components: - pos: -37.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4020 components: - pos: -37.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4021 components: - pos: -37.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4022 components: - pos: -37.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4023 components: - pos: -37.5,11.5 @@ -33951,337 +29179,241 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4024 components: - pos: -37.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4025 components: - pos: -37.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4026 components: - pos: -37.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4027 components: - pos: -37.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4028 components: - pos: -37.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4029 components: - pos: -37.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4030 components: - pos: -37.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4031 components: - pos: -37.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4032 components: - pos: -37.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4033 components: - pos: -37.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4034 components: - pos: -37.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4035 components: - pos: -37.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4036 components: - pos: -37.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4037 components: - pos: -37.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4038 components: - pos: -37.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4039 components: - pos: -37.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4040 components: - pos: -37.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4041 components: - pos: -37.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4042 components: - pos: -37.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4043 components: - pos: -37.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4044 components: - pos: -37.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4045 components: - pos: -36.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4046 components: - pos: -35.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4047 components: - pos: -34.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4048 components: - pos: -33.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4049 components: - pos: -32.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4050 components: - pos: -31.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4051 components: - pos: -30.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4052 components: - pos: -29.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4053 components: - pos: -28.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4054 components: - pos: -27.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4055 components: - pos: -26.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4056 components: - pos: -25.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4057 components: - pos: -24.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4058 components: - pos: -23.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4059 components: - pos: -22.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4060 components: - pos: -21.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4061 components: - pos: -20.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4062 components: - pos: -19.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4063 components: - pos: -18.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4064 components: - pos: -17.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4065 components: - pos: -16.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4066 components: - pos: -15.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4067 components: - pos: -14.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4068 components: - pos: -13.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4378 components: - pos: -38.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4379 components: - pos: -39.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4380 components: - pos: -40.5,21.5 @@ -34289,8 +29421,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4381 components: - pos: -41.5,21.5 @@ -34298,15 +29428,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4382 components: - pos: -42.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4383 components: - pos: -43.5,21.5 @@ -34314,8 +29440,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4384 components: - pos: -44.5,21.5 @@ -34323,8 +29447,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4385 components: - pos: -45.5,21.5 @@ -34332,15 +29454,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4386 components: - pos: -46.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4387 components: - pos: -47.5,21.5 @@ -34348,8 +29466,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4388 components: - pos: -48.5,21.5 @@ -34357,8 +29473,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4389 components: - pos: -49.5,21.5 @@ -34366,8 +29480,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4390 components: - pos: -50.5,21.5 @@ -34375,8 +29487,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4391 components: - pos: -50.5,20.5 @@ -34384,8 +29494,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4392 components: - pos: -50.5,19.5 @@ -34393,15 +29501,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4393 components: - pos: -50.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4394 components: - pos: -50.5,17.5 @@ -34409,8 +29513,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4395 components: - pos: -50.5,16.5 @@ -34418,8 +29520,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4396 components: - pos: -50.5,15.5 @@ -34427,8 +29527,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4397 components: - pos: -50.5,14.5 @@ -34436,8 +29534,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4398 components: - pos: -49.5,14.5 @@ -34445,15 +29541,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4399 components: - pos: -48.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4400 components: - pos: -47.5,14.5 @@ -34461,8 +29553,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4401 components: - pos: -46.5,14.5 @@ -34470,8 +29560,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4402 components: - pos: -45.5,14.5 @@ -34479,8 +29567,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4403 components: - pos: -44.5,14.5 @@ -34488,8 +29574,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4404 components: - pos: -43.5,14.5 @@ -34497,8 +29581,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4405 components: - pos: -42.5,14.5 @@ -34506,8 +29588,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4406 components: - pos: -41.5,14.5 @@ -34515,8 +29595,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4407 components: - pos: -41.5,15.5 @@ -34524,15 +29602,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4408 components: - pos: -40.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4409 components: - pos: -44.5,13.5 @@ -34540,8 +29614,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4410 components: - pos: -44.5,12.5 @@ -34549,15 +29621,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4411 components: - pos: -44.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4412 components: - pos: -44.5,10.5 @@ -34565,8 +29633,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4413 components: - pos: -44.5,9.5 @@ -34574,8 +29640,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4414 components: - pos: -44.5,8.5 @@ -34583,8 +29647,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4415 components: - pos: -44.5,7.5 @@ -34592,64 +29654,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4416 components: - pos: -44.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4417 components: - pos: -44.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4418 components: - pos: -43.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4419 components: - pos: -42.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4420 components: - pos: -41.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4421 components: - pos: -40.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4422 components: - pos: -39.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4423 components: - pos: -38.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4711 components: - pos: 15.5,37.5 @@ -34657,17 +29701,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 4735 - components: - - pos: -9.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5181 components: - pos: -60.5,7.5 @@ -34675,8 +29708,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5186 components: - pos: -89.5,19.5 @@ -34684,26 +29715,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5340 - components: - - pos: -10.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 5341 - components: - - pos: -10.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5502 components: - pos: -16.5,17.5 @@ -34711,8 +29722,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5504 components: - pos: -15.5,17.5 @@ -34720,8 +29729,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5572 components: - pos: -20.5,19.5 @@ -34729,15 +29736,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5575 components: - pos: -17.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5662 components: - pos: -15.5,20.5 @@ -34745,8 +29748,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5664 components: - pos: -14.5,20.5 @@ -34754,15 +29755,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5667 components: - pos: -16.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5678 components: - pos: -19.5,17.5 @@ -34770,15 +29767,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5682 components: - pos: -20.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5721 components: - pos: -17.5,17.5 @@ -34786,148 +29779,106 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6083 components: - pos: -16.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6084 components: - pos: -16.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6085 components: - pos: -16.5,35.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6086 components: - pos: -16.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6087 components: - pos: -16.5,37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6088 components: - pos: -16.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6089 components: - pos: -16.5,39.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6090 components: - pos: -16.5,40.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6091 components: - pos: -16.5,41.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6092 components: - pos: -16.5,42.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6093 components: - pos: -16.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6094 components: - pos: -16.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6095 components: - pos: -16.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6096 components: - pos: -16.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6097 components: - pos: -16.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6098 components: - pos: -16.5,48.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6099 components: - pos: -16.5,49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6100 components: - pos: -16.5,50.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6101 components: - pos: -16.5,51.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6102 components: - pos: -15.5,51.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6103 components: - pos: -14.5,51.5 @@ -34935,8 +29886,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6104 components: - pos: -13.5,51.5 @@ -34944,8 +29893,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6105 components: - pos: -12.5,51.5 @@ -34953,8 +29900,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6106 components: - pos: -11.5,51.5 @@ -34962,8 +29907,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6107 components: - pos: -10.5,51.5 @@ -34971,8 +29914,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6108 components: - pos: -9.5,51.5 @@ -34980,15 +29921,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6109 components: - pos: -8.5,51.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6110 components: - pos: -7.5,51.5 @@ -34996,8 +29933,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6111 components: - pos: -7.5,50.5 @@ -35005,15 +29940,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6112 components: - pos: -7.5,49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6113 components: - pos: -7.5,48.5 @@ -35021,8 +29952,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6114 components: - pos: -7.5,47.5 @@ -35030,8 +29959,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6115 components: - pos: -6.5,47.5 @@ -35039,8 +29966,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6116 components: - pos: -5.5,47.5 @@ -35048,8 +29973,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6117 components: - pos: -4.5,47.5 @@ -35057,8 +29980,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6118 components: - pos: -3.5,47.5 @@ -35066,8 +29987,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6119 components: - pos: -2.5,47.5 @@ -35075,8 +29994,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6120 components: - pos: -1.5,47.5 @@ -35084,8 +30001,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6121 components: - pos: -0.5,47.5 @@ -35093,8 +30008,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6122 components: - pos: 0.5,47.5 @@ -35102,15 +30015,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6123 components: - pos: 1.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6124 components: - pos: 2.5,47.5 @@ -35118,8 +30027,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6125 components: - pos: 3.5,47.5 @@ -35127,8 +30034,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6126 components: - pos: 4.5,47.5 @@ -35136,8 +30041,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6127 components: - pos: 5.5,47.5 @@ -35145,8 +30048,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6128 components: - pos: 6.5,47.5 @@ -35154,8 +30055,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6129 components: - pos: 7.5,47.5 @@ -35163,8 +30062,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6130 components: - pos: 7.5,48.5 @@ -35172,8 +30069,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6131 components: - pos: 8.5,48.5 @@ -35181,8 +30076,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6132 components: - pos: 9.5,48.5 @@ -35190,15 +30083,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6133 components: - pos: 10.5,48.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6134 components: - pos: 11.5,48.5 @@ -35206,8 +30095,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6135 components: - pos: 12.5,48.5 @@ -35215,8 +30102,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6136 components: - pos: 13.5,48.5 @@ -35224,8 +30109,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6137 components: - pos: 14.5,48.5 @@ -35233,8 +30116,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6138 components: - pos: 15.5,48.5 @@ -35242,8 +30123,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6139 components: - pos: 15.5,47.5 @@ -35251,15 +30130,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6140 components: - pos: 15.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6141 components: - pos: 15.5,45.5 @@ -35267,8 +30142,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6142 components: - pos: 16.5,45.5 @@ -35276,8 +30149,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6143 components: - pos: 17.5,45.5 @@ -35285,8 +30156,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6145 components: - pos: 18.5,46.5 @@ -35294,8 +30163,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6146 components: - pos: 15.5,44.5 @@ -35303,8 +30170,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6147 components: - pos: 15.5,43.5 @@ -35312,8 +30177,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6148 components: - pos: 15.5,42.5 @@ -35321,8 +30184,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6149 components: - pos: 15.5,41.5 @@ -35330,8 +30191,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6150 components: - pos: 15.5,40.5 @@ -35339,8 +30198,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6151 components: - pos: 15.5,39.5 @@ -35348,8 +30205,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6152 components: - pos: 15.5,38.5 @@ -35357,8 +30212,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6155 components: - pos: 15.5,35.5 @@ -35366,8 +30219,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6156 components: - pos: 16.5,35.5 @@ -35375,8 +30226,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6157 components: - pos: 17.5,35.5 @@ -35384,8 +30233,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6158 components: - pos: 18.5,35.5 @@ -35393,15 +30240,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6159 components: - pos: 19.5,35.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6160 components: - pos: 20.5,35.5 @@ -35409,15 +30252,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6161 components: - pos: 21.5,35.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6162 components: - pos: 22.5,35.5 @@ -35425,8 +30264,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6163 components: - pos: 23.5,35.5 @@ -35434,8 +30271,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6164 components: - pos: 23.5,34.5 @@ -35443,15 +30278,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6165 components: - pos: 23.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6166 components: - pos: 23.5,32.5 @@ -35459,8 +30290,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6167 components: - pos: 23.5,31.5 @@ -35468,8 +30297,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6168 components: - pos: 23.5,30.5 @@ -35477,8 +30304,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6169 components: - pos: 23.5,29.5 @@ -35486,8 +30311,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6170 components: - pos: 23.5,28.5 @@ -35495,15 +30318,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6171 components: - pos: 23.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6172 components: - pos: 23.5,26.5 @@ -35511,8 +30330,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6173 components: - pos: 23.5,25.5 @@ -35520,8 +30337,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6174 components: - pos: 23.5,24.5 @@ -35529,8 +30344,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6175 components: - pos: 23.5,23.5 @@ -35538,15 +30351,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6176 components: - pos: 23.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6177 components: - pos: 23.5,21.5 @@ -35554,8 +30363,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6178 components: - pos: 23.5,20.5 @@ -35563,8 +30370,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6179 components: - pos: 23.5,19.5 @@ -35572,8 +30377,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6180 components: - pos: 24.5,19.5 @@ -35581,113 +30384,81 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6181 components: - pos: 25.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6182 components: - pos: 26.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6183 components: - pos: 26.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6184 components: - pos: 26.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6185 components: - pos: 26.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6186 components: - pos: 26.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6187 components: - pos: 26.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6188 components: - pos: 26.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6189 components: - pos: 26.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6190 components: - pos: 26.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6191 components: - pos: 26.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6192 components: - pos: 26.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6193 components: - pos: 26.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6194 components: - pos: 26.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6195 components: - pos: 26.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6265 components: - pos: 15.5,36.5 @@ -35695,147 +30466,86 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6275 - components: - - pos: -17.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 6277 - components: - - pos: -16.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6320 components: - pos: -20.5,64.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - - uid: 6323 - components: - - pos: -23.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6526 components: - pos: -18.5,64.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6529 components: - pos: -16.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6530 components: - pos: -16.5,53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6531 components: - pos: -16.5,54.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6532 components: - pos: -16.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6533 components: - pos: -15.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6534 components: - pos: -14.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6535 components: - pos: -13.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6536 components: - pos: -12.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6537 components: - pos: -11.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6538 components: - pos: -10.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6539 components: - pos: -9.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6540 components: - pos: -8.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6541 components: - pos: -7.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6542 components: - pos: -6.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6543 components: - pos: -5.5,55.5 @@ -35843,8 +30553,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6544 components: - pos: -4.5,55.5 @@ -35852,8 +30560,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6545 components: - pos: -3.5,55.5 @@ -35861,8 +30567,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6546 components: - pos: -3.5,56.5 @@ -35870,8 +30574,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6550 components: - pos: -3.5,57.5 @@ -35879,8 +30581,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6551 components: - pos: -4.5,57.5 @@ -35888,8 +30588,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6552 components: - pos: -4.5,58.5 @@ -35897,8 +30595,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6553 components: - pos: -4.5,59.5 @@ -35906,8 +30602,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6554 components: - pos: -4.5,60.5 @@ -35915,8 +30609,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6555 components: - pos: -4.5,61.5 @@ -35924,8 +30616,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6556 components: - pos: -4.5,62.5 @@ -35933,8 +30623,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6557 components: - pos: -5.5,62.5 @@ -35942,8 +30630,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6558 components: - pos: -6.5,62.5 @@ -35951,8 +30637,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6559 components: - pos: -7.5,62.5 @@ -35960,8 +30644,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6560 components: - pos: -8.5,62.5 @@ -35969,8 +30651,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6561 components: - pos: -9.5,62.5 @@ -35978,92 +30658,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6616 components: - pos: -15.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6617 components: - pos: -15.5,57.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6618 components: - pos: -15.5,58.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6619 components: - pos: -15.5,59.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6620 components: - pos: -15.5,60.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6621 components: - pos: -15.5,61.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6622 components: - pos: -15.5,62.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6623 components: - pos: -15.5,63.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6624 components: - pos: -15.5,64.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6625 components: - pos: -14.5,64.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6626 components: - pos: -13.5,64.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6627 components: - pos: -12.5,64.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6628 components: - pos: -11.5,64.5 @@ -36071,8 +30725,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6629 components: - pos: -12.5,65.5 @@ -36080,8 +30732,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6630 components: - pos: -11.5,65.5 @@ -36089,8 +30739,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6631 components: - pos: -12.5,66.5 @@ -36098,8 +30746,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6632 components: - pos: -13.5,66.5 @@ -36107,8 +30753,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6633 components: - pos: -13.5,67.5 @@ -36116,8 +30760,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6634 components: - pos: -14.5,67.5 @@ -36125,8 +30767,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6635 components: - pos: -15.5,67.5 @@ -36134,8 +30774,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6636 components: - pos: -16.5,67.5 @@ -36143,8 +30781,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6637 components: - pos: -17.5,67.5 @@ -36152,8 +30788,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6638 components: - pos: -18.5,67.5 @@ -36161,8 +30795,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6639 components: - pos: -19.5,67.5 @@ -36170,8 +30802,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6640 components: - pos: -19.5,66.5 @@ -36179,8 +30809,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6641 components: - pos: -20.5,66.5 @@ -36188,8 +30816,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6642 components: - pos: -20.5,65.5 @@ -36197,8 +30823,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6643 components: - pos: -21.5,65.5 @@ -36206,8 +30830,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6644 components: - pos: -21.5,64.5 @@ -36215,8 +30837,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7285 components: - pos: -43.5,55.5 @@ -36224,17 +30844,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 7377 - components: - - pos: -8.5,65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7587 components: - pos: -19.5,51.5 @@ -36242,8 +30851,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7588 components: - pos: -20.5,51.5 @@ -36251,8 +30858,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7589 components: - pos: -21.5,51.5 @@ -36260,8 +30865,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7590 components: - pos: -22.5,51.5 @@ -36269,8 +30872,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7591 components: - pos: -23.5,51.5 @@ -36278,8 +30879,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7592 components: - pos: -24.5,51.5 @@ -36287,8 +30886,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7593 components: - pos: -25.5,50.5 @@ -36296,15 +30893,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7594 components: - pos: -17.5,51.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7595 components: - pos: -24.5,50.5 @@ -36312,8 +30905,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7596 components: - pos: -24.5,49.5 @@ -36321,15 +30912,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7597 components: - pos: -24.5,48.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7598 components: - pos: -24.5,47.5 @@ -36337,8 +30924,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7599 components: - pos: -24.5,46.5 @@ -36346,8 +30931,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7600 components: - pos: -24.5,45.5 @@ -36355,8 +30938,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7601 components: - pos: -24.5,44.5 @@ -36364,15 +30945,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7602 components: - pos: -24.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7603 components: - pos: -24.5,42.5 @@ -36380,8 +30957,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7604 components: - pos: -24.5,41.5 @@ -36389,8 +30964,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7605 components: - pos: -24.5,40.5 @@ -36398,15 +30971,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7606 components: - pos: -24.5,39.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7607 components: - pos: -24.5,38.5 @@ -36414,8 +30983,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7608 components: - pos: -24.5,37.5 @@ -36423,8 +30990,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7609 components: - pos: -24.5,36.5 @@ -36432,8 +30997,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7610 components: - pos: -24.5,35.5 @@ -36441,22 +31004,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7611 components: - pos: -24.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7612 components: - pos: -24.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7613 components: - pos: -26.5,50.5 @@ -36464,8 +31021,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7614 components: - pos: -27.5,50.5 @@ -36473,15 +31028,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7615 components: - pos: -28.5,50.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7616 components: - pos: -29.5,50.5 @@ -36489,8 +31040,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7617 components: - pos: -30.5,50.5 @@ -36498,8 +31047,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7618 components: - pos: -31.5,50.5 @@ -36507,8 +31054,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7619 components: - pos: -32.5,50.5 @@ -36516,8 +31061,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7620 components: - pos: -32.5,51.5 @@ -36525,8 +31068,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7621 components: - pos: -32.5,52.5 @@ -36534,8 +31075,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7622 components: - pos: -32.5,53.5 @@ -36543,8 +31082,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7623 components: - pos: -32.5,54.5 @@ -36552,8 +31089,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7624 components: - pos: -32.5,55.5 @@ -36561,8 +31096,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7625 components: - pos: -33.5,55.5 @@ -36570,8 +31103,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7626 components: - pos: -34.5,55.5 @@ -36579,8 +31110,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7627 components: - pos: -34.5,56.5 @@ -36588,8 +31117,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7628 components: - pos: -34.5,57.5 @@ -36597,8 +31124,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7629 components: - pos: -35.5,57.5 @@ -36606,8 +31131,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7630 components: - pos: -35.5,55.5 @@ -36615,15 +31138,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7631 components: - pos: -36.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7632 components: - pos: -37.5,55.5 @@ -36631,8 +31150,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7633 components: - pos: -38.5,55.5 @@ -36640,8 +31157,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7634 components: - pos: -39.5,55.5 @@ -36649,15 +31164,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7635 components: - pos: -40.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7636 components: - pos: -41.5,55.5 @@ -36665,379 +31176,271 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7650 components: - pos: -47.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7651 components: - pos: -47.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7652 components: - pos: -47.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7653 components: - pos: -47.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7654 components: - pos: -47.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7655 components: - pos: -47.5,42.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7656 components: - pos: -47.5,41.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7657 components: - pos: -47.5,40.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7658 components: - pos: -47.5,39.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7659 components: - pos: -47.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7660 components: - pos: -47.5,37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7661 components: - pos: -47.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7662 components: - pos: -47.5,35.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7663 components: - pos: -47.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7664 components: - pos: -47.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7665 components: - pos: -47.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7666 components: - pos: -46.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7667 components: - pos: -45.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7668 components: - pos: -44.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7669 components: - pos: -43.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7670 components: - pos: -42.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7671 components: - pos: -41.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7672 components: - pos: -40.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7673 components: - pos: -39.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7674 components: - pos: -38.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7675 components: - pos: -48.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7676 components: - pos: -49.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7677 components: - pos: -50.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7678 components: - pos: -51.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7679 components: - pos: -52.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7680 components: - pos: -53.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7681 components: - pos: -54.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7682 components: - pos: -55.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7683 components: - pos: -56.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7684 components: - pos: -57.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7685 components: - pos: -57.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7686 components: - pos: -57.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7687 components: - pos: -57.5,35.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7688 components: - pos: -57.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7689 components: - pos: -57.5,37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7690 components: - pos: -57.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7691 components: - pos: -57.5,39.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7692 components: - pos: -57.5,40.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7693 components: - pos: -57.5,41.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7694 components: - pos: -57.5,42.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7695 components: - pos: -57.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7696 components: - pos: -57.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7697 components: - pos: -57.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7698 components: - pos: -57.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7699 components: - pos: -57.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7700 components: - pos: -56.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7701 components: - pos: -55.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7702 components: - pos: -54.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7703 components: - pos: -53.5,47.5 @@ -37045,57 +31448,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7704 components: - pos: -52.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7705 components: - pos: -51.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7706 components: - pos: -50.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7707 components: - pos: -49.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7708 components: - pos: -48.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7720 components: - pos: -58.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7884 components: - pos: -44.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7885 components: - pos: -44.5,54.5 @@ -37103,8 +31490,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7886 components: - pos: -44.5,53.5 @@ -37112,22 +31497,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7887 components: - pos: -44.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7888 components: - pos: -44.5,51.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7889 components: - pos: -44.5,50.5 @@ -37135,15 +31514,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7890 components: - pos: -44.5,49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7891 components: - pos: -45.5,49.5 @@ -37151,85 +31526,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7892 components: - pos: -46.5,49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7893 components: - pos: -47.5,49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7894 components: - pos: -47.5,48.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8474 components: - pos: -58.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8504 components: - pos: -58.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8505 components: - pos: -57.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8506 components: - pos: -57.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8507 components: - pos: -57.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8508 components: - pos: -57.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8509 components: - pos: -57.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8510 components: - pos: -57.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8511 components: - pos: -57.5,24.5 @@ -37237,176 +31588,126 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8512 components: - pos: -57.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8513 components: - pos: -57.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8514 components: - pos: -57.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8515 components: - pos: -57.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8516 components: - pos: -57.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8517 components: - pos: -57.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8518 components: - pos: -57.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8548 components: - pos: -57.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8549 components: - pos: -57.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8550 components: - pos: -57.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8551 components: - pos: -57.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8552 components: - pos: -57.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8553 components: - pos: -57.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8554 components: - pos: -57.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8555 components: - pos: -57.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8556 components: - pos: -57.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8557 components: - pos: -57.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8558 components: - pos: -57.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8559 components: - pos: -57.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8560 components: - pos: -57.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8561 components: - pos: -56.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8562 components: - pos: -55.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8563 components: - pos: -54.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8564 components: - pos: -53.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8565 components: - pos: -52.5,5.5 @@ -37414,57 +31715,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8566 components: - pos: -51.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8567 components: - pos: -50.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8568 components: - pos: -49.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8569 components: - pos: -48.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8570 components: - pos: -47.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8571 components: - pos: -46.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8572 components: - pos: -45.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8929 components: - pos: -42.5,55.5 @@ -37472,103 +31757,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9022 - components: - - pos: -25.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9025 - components: - - pos: -25.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9027 - components: - - pos: -23.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9055 - components: - - pos: -19.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9058 - components: - - pos: -22.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9061 components: - pos: -17.5,64.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9073 - components: - - pos: -18.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9086 - components: - - pos: -25.5,64.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9088 - components: - - pos: -22.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 9090 - components: - - pos: -24.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9201 components: - pos: -64.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9308 components: - pos: -69.5,26.5 @@ -37576,15 +31774,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9309 components: - pos: -69.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9489 components: - pos: -18.5,51.5 @@ -37592,29 +31786,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9606 components: - pos: -80.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9607 components: - pos: -79.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9854 components: - pos: -69.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9859 components: - pos: -69.5,27.5 @@ -37622,24 +31808,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9860 components: - pos: -79.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9906 - components: - - pos: -21.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9914 components: - pos: -21.5,63.5 @@ -37647,8 +31820,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9977 components: - pos: -22.5,63.5 @@ -37656,15 +31827,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9978 components: - pos: -19.5,64.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9998 components: - pos: -59.5,47.5 @@ -37672,8 +31839,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9999 components: - pos: -60.5,47.5 @@ -37681,22 +31846,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10000 components: - pos: -61.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10001 components: - pos: -62.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10002 components: - pos: -63.5,47.5 @@ -37704,15 +31863,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10003 components: - pos: -64.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10004 components: - pos: -65.5,47.5 @@ -37720,8 +31875,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10005 components: - pos: -66.5,48.5 @@ -37729,22 +31882,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10006 components: - pos: -66.5,49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10008 components: - pos: -66.5,50.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10009 components: - pos: -67.5,50.5 @@ -37752,8 +31899,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10010 components: - pos: -67.5,51.5 @@ -37761,15 +31906,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10011 components: - pos: -67.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10012 components: - pos: -67.5,53.5 @@ -37777,8 +31918,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10013 components: - pos: -67.5,54.5 @@ -37786,15 +31925,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10014 components: - pos: -67.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10015 components: - pos: -67.5,56.5 @@ -37802,22 +31937,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10016 components: - pos: -67.5,57.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10017 components: - pos: -66.5,57.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10018 components: - pos: -65.5,57.5 @@ -37825,8 +31954,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10019 components: - pos: -65.5,58.5 @@ -37834,8 +31961,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10020 components: - pos: -65.5,59.5 @@ -37843,8 +31968,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10023 components: - pos: -60.5,19.5 @@ -37852,8 +31975,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10024 components: - pos: -60.5,18.5 @@ -37861,8 +31982,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10025 components: - pos: -60.5,17.5 @@ -37870,8 +31989,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10026 components: - pos: -65.5,36.5 @@ -37879,8 +31996,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10027 components: - pos: -66.5,36.5 @@ -37888,15 +32003,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10028 components: - pos: -66.5,37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10029 components: - pos: -66.5,38.5 @@ -37904,8 +32015,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10030 components: - pos: -66.5,39.5 @@ -37913,8 +32022,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10031 components: - pos: -66.5,40.5 @@ -37922,8 +32029,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10032 components: - pos: -66.5,41.5 @@ -37931,8 +32036,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10033 components: - pos: -66.5,42.5 @@ -37940,22 +32043,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10034 components: - pos: -66.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10035 components: - pos: -66.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10036 components: - pos: -60.5,36.5 @@ -37963,15 +32060,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10037 components: - pos: -60.5,35.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10038 components: - pos: -60.5,34.5 @@ -37979,29 +32072,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10039 components: - pos: -60.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10040 components: - pos: -60.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10042 components: - pos: -60.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10043 components: - pos: -60.5,30.5 @@ -38009,8 +32094,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10045 components: - pos: -60.5,29.5 @@ -38018,8 +32101,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10047 components: - pos: -60.5,28.5 @@ -38027,8 +32108,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10077 components: - pos: -60.5,27.5 @@ -38036,8 +32115,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10078 components: - pos: -60.5,26.5 @@ -38045,8 +32122,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10079 components: - pos: -60.5,25.5 @@ -38054,22 +32129,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10090 components: - pos: -60.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10091 components: - pos: -60.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10096 components: - pos: -60.5,22.5 @@ -38077,15 +32146,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10097 components: - pos: -60.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10098 components: - pos: -60.5,20.5 @@ -38093,15 +32158,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10104 components: - pos: -61.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10105 components: - pos: -62.5,17.5 @@ -38109,8 +32170,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10106 components: - pos: -63.5,17.5 @@ -38118,8 +32177,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10107 components: - pos: -64.5,17.5 @@ -38127,15 +32184,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10108 components: - pos: -65.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10109 components: - pos: -66.5,17.5 @@ -38143,15 +32196,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10110 components: - pos: -66.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10111 components: - pos: -66.5,15.5 @@ -38159,22 +32208,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10112 components: - pos: -66.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10113 components: - pos: -66.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10114 components: - pos: -66.5,12.5 @@ -38182,8 +32225,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10115 components: - pos: -66.5,11.5 @@ -38191,8 +32232,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10116 components: - pos: -66.5,10.5 @@ -38200,22 +32239,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10117 components: - pos: -66.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10118 components: - pos: -66.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10119 components: - pos: -65.5,8.5 @@ -38223,15 +32256,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10120 components: - pos: -64.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10121 components: - pos: -63.5,8.5 @@ -38239,22 +32268,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10122 components: - pos: -62.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10123 components: - pos: -61.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10124 components: - pos: -60.5,8.5 @@ -38262,50 +32285,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10125 components: - pos: -59.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10126 components: - pos: -62.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10130 components: - pos: -66.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10131 components: - pos: -61.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10132 components: - pos: -66.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10133 components: - pos: -66.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10134 components: - pos: -63.5,36.5 @@ -38313,8 +32322,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10135 components: - pos: -63.5,35.5 @@ -38322,43 +32329,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10136 components: - pos: -63.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10137 components: - pos: -63.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10138 components: - pos: -63.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10139 components: - pos: -62.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10140 components: - pos: -61.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10150 components: - pos: -65.5,21.5 @@ -38366,8 +32361,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10151 components: - pos: -66.5,21.5 @@ -38375,8 +32368,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10152 components: - pos: -67.5,21.5 @@ -38384,8 +32375,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10153 components: - pos: -68.5,21.5 @@ -38393,8 +32382,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10154 components: - pos: -69.5,21.5 @@ -38402,22 +32389,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10156 components: - pos: -70.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10157 components: - pos: -64.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10161 components: - pos: -70.5,31.5 @@ -38425,8 +32406,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10162 components: - pos: -71.5,29.5 @@ -38434,8 +32413,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10163 components: - pos: -70.5,30.5 @@ -38443,8 +32420,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10168 components: - pos: -70.5,28.5 @@ -38452,8 +32427,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10169 components: - pos: -71.5,31.5 @@ -38461,8 +32434,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10170 components: - pos: -71.5,28.5 @@ -38470,15 +32441,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10174 components: - pos: -69.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10177 components: - pos: -71.5,31.5 @@ -38486,8 +32453,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10178 components: - pos: -71.5,30.5 @@ -38495,8 +32460,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10179 components: - pos: -70.5,29.5 @@ -38504,8 +32467,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10180 components: - pos: -69.5,24.5 @@ -38513,71 +32474,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10181 components: - pos: -71.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10182 components: - pos: -72.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10183 components: - pos: -73.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10184 components: - pos: -74.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10185 components: - pos: -74.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10186 components: - pos: -74.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10187 components: - pos: -74.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10188 components: - pos: -75.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10189 components: - pos: -76.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10190 components: - pos: -77.5,24.5 @@ -38585,22 +32526,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10191 components: - pos: -78.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10192 components: - pos: -78.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10193 components: - pos: -77.5,26.5 @@ -38608,85 +32543,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10194 components: - pos: -76.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10195 components: - pos: -75.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10196 components: - pos: -74.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10197 components: - pos: -74.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10198 components: - pos: -81.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10199 components: - pos: -82.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10200 components: - pos: -83.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10201 components: - pos: -84.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10202 components: - pos: -79.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10203 components: - pos: -80.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10204 components: - pos: -80.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10205 components: - pos: -81.5,25.5 @@ -38694,8 +32605,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10206 components: - pos: -82.5,25.5 @@ -38703,43 +32612,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10208 components: - pos: -84.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10209 components: - pos: -84.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10210 components: - pos: -84.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10211 components: - pos: -85.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10212 components: - pos: -86.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10225 components: - pos: -71.5,32.5 @@ -38747,71 +32644,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10227 components: - pos: -71.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10228 components: - pos: -71.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10229 components: - pos: -70.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10230 components: - pos: -69.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10232 components: - pos: -68.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10233 components: - pos: -67.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10236 components: - pos: -66.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10238 components: - pos: -65.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10239 components: - pos: -64.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10245 components: - pos: -69.5,26.5 @@ -38819,8 +32696,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10252 components: - pos: -69.5,25.5 @@ -38828,91 +32703,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10262 components: - pos: -60.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10263 components: - pos: -60.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10265 components: - pos: -59.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10266 components: - pos: -58.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10418 components: - pos: -16.5,64.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - - uid: 10420 - components: - - pos: -15.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 10422 - components: - - pos: -9.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 10423 - components: - - pos: -11.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10549 components: - pos: -85.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10550 components: - pos: -85.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10551 components: - pos: -86.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10552 components: - pos: -87.5,20.5 @@ -38920,43 +32750,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10553 components: - pos: -85.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10554 components: - pos: -84.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10555 components: - pos: -84.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10556 components: - pos: -84.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10557 components: - pos: -84.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10558 components: - pos: -86.5,23.5 @@ -38964,8 +32782,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10559 components: - pos: -86.5,24.5 @@ -38973,8 +32789,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10560 components: - pos: -86.5,25.5 @@ -38982,8 +32796,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10561 components: - pos: -86.5,26.5 @@ -38991,8 +32803,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10562 components: - pos: -86.5,27.5 @@ -39000,8 +32810,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10563 components: - pos: -88.5,20.5 @@ -39009,8 +32817,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10564 components: - pos: -88.5,19.5 @@ -39018,8 +32824,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10565 components: - pos: -90.5,19.5 @@ -39027,8 +32831,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10566 components: - pos: -91.5,19.5 @@ -39036,8 +32838,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10567 components: - pos: -92.5,19.5 @@ -39045,8 +32845,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10568 components: - pos: -93.5,19.5 @@ -39054,8 +32852,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10569 components: - pos: -94.5,19.5 @@ -39063,8 +32859,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10570 components: - pos: -94.5,18.5 @@ -39072,8 +32866,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10571 components: - pos: -95.5,18.5 @@ -39081,8 +32873,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10572 components: - pos: -96.5,18.5 @@ -39090,8 +32880,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10573 components: - pos: -96.5,19.5 @@ -39099,8 +32887,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10574 components: - pos: -97.5,19.5 @@ -39108,8 +32894,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10576 components: - pos: -98.5,19.5 @@ -39117,8 +32901,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10577 components: - pos: -98.5,18.5 @@ -39126,8 +32908,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10578 components: - pos: -99.5,18.5 @@ -39135,8 +32915,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10579 components: - pos: -100.5,18.5 @@ -39144,8 +32922,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10581 components: - pos: -87.5,30.5 @@ -39153,8 +32929,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10582 components: - pos: -88.5,30.5 @@ -39162,8 +32936,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10583 components: - pos: -88.5,31.5 @@ -39171,8 +32943,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10584 components: - pos: -89.5,31.5 @@ -39180,8 +32950,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10585 components: - pos: -90.5,31.5 @@ -39189,8 +32957,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10586 components: - pos: -91.5,31.5 @@ -39198,8 +32964,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10587 components: - pos: -92.5,31.5 @@ -39207,8 +32971,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10588 components: - pos: -93.5,31.5 @@ -39216,8 +32978,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10589 components: - pos: -94.5,31.5 @@ -39225,8 +32985,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10590 components: - pos: -94.5,32.5 @@ -39234,8 +32992,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10591 components: - pos: -95.5,32.5 @@ -39243,8 +32999,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10592 components: - pos: -96.5,32.5 @@ -39252,8 +33006,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10593 components: - pos: -96.5,31.5 @@ -39261,8 +33013,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10594 components: - pos: -97.5,31.5 @@ -39270,8 +33020,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10595 components: - pos: -98.5,31.5 @@ -39279,8 +33027,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10596 components: - pos: -98.5,32.5 @@ -39288,8 +33034,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10597 components: - pos: -99.5,32.5 @@ -39297,8 +33041,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10598 components: - pos: -100.5,32.5 @@ -39306,64 +33048,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10706 components: - pos: -74.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10707 components: - pos: -74.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10708 components: - pos: -74.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10709 components: - pos: -74.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10710 components: - pos: -74.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10711 components: - pos: -74.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10714 components: - pos: -63.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10715 components: - pos: -63.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10716 components: - pos: -63.5,29.5 @@ -39371,50 +33095,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10717 components: - pos: -63.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10724 components: - pos: -63.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10895 components: - pos: -14.5,60.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10896 components: - pos: -13.5,60.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10897 components: - pos: -12.5,60.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10898 components: - pos: -11.5,60.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12834 components: - pos: 21.5,26.5 @@ -39422,8 +33132,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12835 components: - pos: 22.5,26.5 @@ -39431,8 +33139,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12836 components: - pos: 20.5,26.5 @@ -39440,8 +33146,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12837 components: - pos: 19.5,26.5 @@ -39449,8 +33153,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12838 components: - pos: 18.5,26.5 @@ -39458,8 +33160,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12839 components: - pos: 17.5,26.5 @@ -39467,15 +33167,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12840 components: - pos: 16.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12841 components: - pos: 15.5,26.5 @@ -39483,8 +33179,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12842 components: - pos: 14.5,26.5 @@ -39492,8 +33186,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12843 components: - pos: 14.5,25.5 @@ -39501,8 +33193,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12844 components: - pos: 14.5,24.5 @@ -39510,22 +33200,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12845 components: - pos: 14.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12846 components: - pos: 14.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12847 components: - pos: 14.5,21.5 @@ -39533,8 +33217,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12848 components: - pos: 14.5,20.5 @@ -39542,8 +33224,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12849 components: - pos: 14.5,19.5 @@ -39551,8 +33231,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12850 components: - pos: 14.5,18.5 @@ -39560,8 +33238,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12851 components: - pos: 14.5,17.5 @@ -39569,22 +33245,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12860 components: - pos: 14.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12861 components: - pos: 14.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12862 components: - pos: 14.5,14.5 @@ -39592,15 +33262,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12863 components: - pos: 14.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12864 components: - pos: 14.5,12.5 @@ -39608,8 +33274,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12865 components: - pos: 14.5,11.5 @@ -39617,22 +33281,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12866 components: - pos: 14.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12867 components: - pos: 14.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12868 components: - pos: 13.5,9.5 @@ -39640,8 +33298,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12869 components: - pos: 12.5,9.5 @@ -39649,8 +33305,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12870 components: - pos: 11.5,9.5 @@ -39658,8 +33312,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12871 components: - pos: 10.5,9.5 @@ -39667,15 +33319,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12872 components: - pos: 9.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12873 components: - pos: 8.5,9.5 @@ -39683,8 +33331,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12874 components: - pos: 7.5,9.5 @@ -39692,29 +33338,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12875 components: - pos: 6.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12876 components: - pos: 5.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12877 components: - pos: 4.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12878 components: - pos: 3.5,9.5 @@ -39722,8 +33360,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12879 components: - pos: 3.5,10.5 @@ -39731,22 +33367,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12880 components: - pos: 3.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12881 components: - pos: 3.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12882 components: - pos: 2.5,12.5 @@ -39754,22 +33384,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12883 components: - pos: 1.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12884 components: - pos: 0.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12885 components: - pos: -0.5,12.5 @@ -39777,8 +33401,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12886 components: - pos: -1.5,12.5 @@ -39786,8 +33408,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12887 components: - pos: -2.5,12.5 @@ -39795,15 +33415,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12888 components: - pos: -3.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12889 components: - pos: -4.5,12.5 @@ -39811,71 +33427,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 13218 - components: - - pos: -7.5,65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 13221 - components: - - pos: -8.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 13291 - components: - - pos: -24.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 13293 - components: - - pos: -6.5,65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 13710 - components: - - pos: -8.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 14369 - components: - - pos: -25.5,65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 14878 - components: - - pos: -14.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15013 components: - pos: -71.5,27.5 @@ -39883,8 +33434,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15014 components: - pos: -71.5,26.5 @@ -39892,8 +33441,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15015 components: - pos: -71.5,25.5 @@ -39901,38 +33448,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 15166 - components: - - pos: -13.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15233 components: - pos: 17.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 15327 components: - pos: -69.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 15328 components: - pos: -69.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 15329 components: - pos: -69.5,18.5 @@ -39940,8 +33470,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15330 components: - pos: -70.5,18.5 @@ -39949,8 +33477,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15331 components: - pos: -68.5,18.5 @@ -39958,8 +33484,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15332 components: - pos: -73.5,18.5 @@ -39967,8 +33491,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15405 components: - pos: -36.5,56.5 @@ -39976,8 +33498,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15406 components: - pos: -36.5,57.5 @@ -39985,8 +33505,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15407 components: - pos: -36.5,58.5 @@ -39994,8 +33512,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15408 components: - pos: -36.5,59.5 @@ -40003,8 +33519,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15409 components: - pos: -36.5,60.5 @@ -40012,8 +33526,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15410 components: - pos: -36.5,61.5 @@ -40021,8 +33533,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15411 components: - pos: -36.5,62.5 @@ -40030,8 +33540,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15412 components: - pos: -36.5,63.5 @@ -40039,8 +33547,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15413 components: - pos: -36.5,64.5 @@ -40048,8 +33554,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15414 components: - pos: -36.5,65.5 @@ -40057,8 +33561,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15415 components: - pos: -36.5,66.5 @@ -40066,8 +33568,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15416 components: - pos: -36.5,67.5 @@ -40075,8 +33575,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15417 components: - pos: -36.5,68.5 @@ -40084,8 +33582,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15418 components: - pos: -36.5,69.5 @@ -40093,8 +33589,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15419 components: - pos: -37.5,69.5 @@ -40102,8 +33596,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15420 components: - pos: -38.5,69.5 @@ -40111,8 +33603,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15421 components: - pos: -39.5,69.5 @@ -40120,8 +33610,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15422 components: - pos: -40.5,69.5 @@ -40129,8 +33617,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15423 components: - pos: -41.5,69.5 @@ -40138,8 +33624,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15424 components: - pos: -42.5,69.5 @@ -40147,8 +33631,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15425 components: - pos: -43.5,69.5 @@ -40156,8 +33638,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15426 components: - pos: -44.5,69.5 @@ -40165,8 +33645,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15462 components: - pos: -44.5,58.5 @@ -40174,8 +33652,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15463 components: - pos: -41.5,57.5 @@ -40183,8 +33659,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15466 components: - pos: -37.5,57.5 @@ -40192,8 +33666,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15468 components: - pos: -38.5,57.5 @@ -40201,8 +33673,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15469 components: - pos: -40.5,58.5 @@ -40210,8 +33680,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15470 components: - pos: -38.5,59.5 @@ -40219,8 +33687,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15471 components: - pos: -39.5,58.5 @@ -40228,8 +33694,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15476 components: - pos: -43.5,58.5 @@ -40237,8 +33701,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15477 components: - pos: -41.5,58.5 @@ -40246,8 +33708,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15479 components: - pos: -38.5,58.5 @@ -40255,8 +33715,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15485 components: - pos: -43.5,57.5 @@ -40264,8 +33722,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15486 components: - pos: -42.5,57.5 @@ -40273,98 +33729,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 15516 - components: - - pos: -5.5,65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 15802 - components: - - pos: -4.5,65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 15803 - components: - - pos: -3.5,65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 15804 - components: - - pos: -4.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 15805 - components: - - pos: -1.5,64.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 15806 - components: - - pos: -1.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 15807 - components: - - pos: -1.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 15808 - components: - - pos: -1.5,61.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 15809 - components: - - pos: -1.5,60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 15810 - components: - - pos: -1.5,59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15811 components: - pos: -11.5,63.5 @@ -40372,8 +33736,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15812 components: - pos: -10.5,62.5 @@ -40381,8 +33743,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15813 components: - pos: -10.5,63.5 @@ -40390,71 +33750,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 15814 - components: - - pos: -7.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 15815 - components: - - pos: -7.5,64.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 15817 - components: - - pos: -4.5,64.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 15818 - components: - - pos: -2.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 15819 - components: - - pos: -3.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 15820 - components: - - pos: -2.5,60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - - uid: 15821 - components: - - pos: -3.5,60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - fixtures: {} - type: Fixtures - proto: CableHVStack entities: - uid: 2889 @@ -40483,8 +33778,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 498 components: - pos: 6.5,-5.5 @@ -40492,8 +33785,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 503 components: - pos: 5.5,-5.5 @@ -40501,8 +33792,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 504 components: - pos: 4.5,-5.5 @@ -40510,8 +33799,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 533 components: - pos: 3.5,-5.5 @@ -40519,15 +33806,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 534 components: - pos: 2.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 535 components: - pos: 1.5,-5.5 @@ -40535,15 +33818,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 537 components: - pos: 0.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 538 components: - pos: -0.5,-5.5 @@ -40551,8 +33830,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 539 components: - pos: -1.5,-5.5 @@ -40560,8 +33837,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 540 components: - pos: -2.5,-5.5 @@ -40569,50 +33844,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 541 components: - pos: -3.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 542 components: - pos: -4.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 543 components: - pos: -4.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 544 components: - pos: -4.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 545 components: - pos: -4.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 546 components: - pos: -4.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 547 components: - pos: -4.5,-0.5 @@ -40620,22 +33881,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 548 components: - pos: -1.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 549 components: - pos: -1.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 550 components: - pos: -1.5,-8.5 @@ -40643,43 +33898,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 551 components: - pos: -1.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 552 components: - pos: -1.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 553 components: - pos: -0.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 554 components: - pos: 0.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 555 components: - pos: 1.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 556 components: - pos: 2.5,-10.5 @@ -40687,22 +33930,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 557 components: - pos: 2.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 558 components: - pos: 2.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 559 components: - pos: 2.5,-7.5 @@ -40710,8 +33947,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 600 components: - pos: 8.5,-5.5 @@ -40719,8 +33954,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 601 components: - pos: 9.5,-5.5 @@ -40728,8 +33961,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 602 components: - pos: 10.5,-5.5 @@ -40737,15 +33968,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 603 components: - pos: 11.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 604 components: - pos: 11.5,-6.5 @@ -40753,8 +33980,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 605 components: - pos: 11.5,-7.5 @@ -40762,8 +33987,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 931 components: - pos: 25.5,1.5 @@ -40771,15 +33994,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 938 components: - pos: 26.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 939 components: - pos: 26.5,0.5 @@ -40787,22 +34006,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1014 components: - pos: 28.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1015 components: - pos: 28.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1508 components: - pos: -15.5,17.5 @@ -40810,8 +34023,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1509 components: - pos: -16.5,17.5 @@ -40819,8 +34030,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1510 components: - pos: -17.5,17.5 @@ -40828,8 +34037,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1643 components: - pos: 29.5,24.5 @@ -40837,8 +34044,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1675 components: - pos: 10.5,-4.5 @@ -40846,50 +34051,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1676 components: - pos: 10.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1677 components: - pos: 10.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1678 components: - pos: 10.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1679 components: - pos: 10.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1680 components: - pos: 10.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1681 components: - pos: 11.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1682 components: - pos: 12.5,0.5 @@ -40897,8 +34088,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2188 components: - pos: -4.5,17.5 @@ -40906,15 +34095,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2189 components: - pos: -3.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2190 components: - pos: -3.5,18.5 @@ -40922,15 +34107,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2191 components: - pos: -3.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2192 components: - pos: -3.5,20.5 @@ -40938,15 +34119,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2193 components: - pos: -3.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2194 components: - pos: -3.5,22.5 @@ -40954,8 +34131,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2195 components: - pos: -3.5,23.5 @@ -40963,78 +34138,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2196 components: - pos: -2.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2197 components: - pos: -1.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2198 components: - pos: -0.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2199 components: - pos: 0.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2200 components: - pos: 1.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2201 components: - pos: 2.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2202 components: - pos: 3.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2203 components: - pos: 3.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2204 components: - pos: 3.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2205 components: - pos: 2.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2206 components: - pos: 1.5,21.5 @@ -41042,92 +34195,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2207 components: - pos: 4.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2208 components: - pos: 4.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2209 components: - pos: 4.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2210 components: - pos: 4.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2211 components: - pos: 4.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2212 components: - pos: 4.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2213 components: - pos: 4.5,29.5 parent: 1 - type: Transform - - fixtures: {} - type: Fixtures + type: Transform - uid: 2214 components: - pos: 4.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2215 components: - pos: 4.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2216 components: - pos: 4.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2217 components: - pos: 4.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2218 components: - pos: 4.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2219 components: - pos: 4.5,35.5 @@ -41135,8 +34262,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2516 components: - pos: 23.5,9.5 @@ -41144,8 +34269,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2517 components: - pos: 22.5,9.5 @@ -41153,8 +34276,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2518 components: - pos: 22.5,10.5 @@ -41162,8 +34283,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2687 components: - pos: -5.5,17.5 @@ -41171,15 +34290,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2688 components: - pos: -6.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2689 components: - pos: -7.5,17.5 @@ -41187,8 +34302,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2690 components: - pos: -8.5,17.5 @@ -41196,8 +34309,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2691 components: - pos: -9.5,17.5 @@ -41205,8 +34316,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2692 components: - pos: -9.5,18.5 @@ -41214,8 +34323,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2698 components: - pos: -10.5,17.5 @@ -41223,8 +34330,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2802 components: - pos: -18.5,17.5 @@ -41232,8 +34337,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2808 components: - pos: -19.5,17.5 @@ -41241,8 +34344,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2938 components: - pos: -20.5,19.5 @@ -41250,15 +34351,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3223 components: - pos: -20.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3324 components: - pos: -20.5,21.5 @@ -41266,8 +34363,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3325 components: - pos: -21.5,21.5 @@ -41275,29 +34370,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3326 components: - pos: -22.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3327 components: - pos: -23.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3328 components: - pos: -24.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3329 components: - pos: -24.5,20.5 @@ -41305,8 +34392,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3330 components: - pos: -24.5,19.5 @@ -41314,22 +34399,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3682 components: - pos: -31.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3854 components: - pos: -38.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3934 components: - pos: -24.5,-3.5 @@ -41337,8 +34416,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3935 components: - pos: -24.5,-4.5 @@ -41346,8 +34423,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3936 components: - pos: -23.5,-4.5 @@ -41355,8 +34430,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3937 components: - pos: -22.5,-4.5 @@ -41364,8 +34437,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3938 components: - pos: -21.5,-4.5 @@ -41373,8 +34444,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3939 components: - pos: -21.5,-5.5 @@ -41382,8 +34451,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3940 components: - pos: -21.5,-6.5 @@ -41391,15 +34458,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3941 components: - pos: -21.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3942 components: - pos: -22.5,-7.5 @@ -41407,8 +34470,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3943 components: - pos: -23.5,-7.5 @@ -41416,8 +34477,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3944 components: - pos: -24.5,-7.5 @@ -41425,8 +34484,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3945 components: - pos: -25.5,-7.5 @@ -41434,8 +34491,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3946 components: - pos: -26.5,-7.5 @@ -41443,8 +34498,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3947 components: - pos: -26.5,-6.5 @@ -41452,15 +34505,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3948 components: - pos: -26.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3949 components: - pos: -26.5,-4.5 @@ -41468,15 +34517,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3950 components: - pos: -26.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3951 components: - pos: -26.5,-2.5 @@ -41484,8 +34529,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3952 components: - pos: -27.5,-2.5 @@ -41493,8 +34536,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3953 components: - pos: -27.5,-6.5 @@ -41502,8 +34543,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3954 components: - pos: -28.5,-6.5 @@ -41511,8 +34550,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3955 components: - pos: -29.5,-6.5 @@ -41520,8 +34557,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3956 components: - pos: -30.5,-6.5 @@ -41529,29 +34564,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3957 components: - pos: -37.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3973 components: - pos: -40.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3974 components: - pos: -41.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3975 components: - pos: -42.5,-5.5 @@ -41559,8 +34586,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4284 components: - pos: -41.5,14.5 @@ -41568,15 +34593,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4328 components: - pos: -40.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4329 components: - pos: -41.5,15.5 @@ -41584,15 +34605,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4349 components: - pos: -41.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4350 components: - pos: -41.5,12.5 @@ -41600,8 +34617,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4351 components: - pos: -42.5,14.5 @@ -41609,8 +34624,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4352 components: - pos: -43.5,14.5 @@ -41618,8 +34631,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4353 components: - pos: -44.5,14.5 @@ -41627,8 +34638,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4354 components: - pos: -45.5,14.5 @@ -41636,8 +34645,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4355 components: - pos: -46.5,14.5 @@ -41645,8 +34652,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4356 components: - pos: -47.5,14.5 @@ -41654,15 +34659,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4357 components: - pos: -48.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4358 components: - pos: -49.5,14.5 @@ -41670,8 +34671,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4359 components: - pos: -50.5,14.5 @@ -41679,8 +34678,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4360 components: - pos: -50.5,15.5 @@ -41688,8 +34685,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4361 components: - pos: -50.5,16.5 @@ -41697,8 +34692,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4362 components: - pos: -50.5,17.5 @@ -41706,15 +34699,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4363 components: - pos: -50.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4364 components: - pos: -50.5,19.5 @@ -41722,8 +34711,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4365 components: - pos: -50.5,20.5 @@ -41731,8 +34718,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4366 components: - pos: -50.5,21.5 @@ -41740,8 +34725,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4367 components: - pos: -49.5,21.5 @@ -41749,8 +34732,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4368 components: - pos: -48.5,21.5 @@ -41758,8 +34739,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4369 components: - pos: -47.5,21.5 @@ -41767,15 +34746,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4370 components: - pos: -46.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4371 components: - pos: -45.5,21.5 @@ -41783,8 +34758,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4372 components: - pos: -44.5,21.5 @@ -41792,8 +34765,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4373 components: - pos: -43.5,21.5 @@ -41801,15 +34772,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4374 components: - pos: -42.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4375 components: - pos: -41.5,21.5 @@ -41817,8 +34784,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4376 components: - pos: -40.5,21.5 @@ -41826,8 +34791,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4377 components: - pos: -40.5,20.5 @@ -41835,8 +34798,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4432 components: - pos: -46.5,25.5 @@ -41844,8 +34805,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4570 components: - pos: -44.5,27.5 @@ -41853,8 +34812,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4602 components: - pos: -44.5,26.5 @@ -41862,8 +34819,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4603 components: - pos: -44.5,25.5 @@ -41871,8 +34826,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4604 components: - pos: -44.5,24.5 @@ -41880,22 +34833,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4605 components: - pos: -44.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4606 components: - pos: -45.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4607 components: - pos: -46.5,27.5 @@ -41903,8 +34850,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4609 components: - pos: -51.5,14.5 @@ -41912,8 +34857,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4694 components: - pos: -45.5,9.5 @@ -41921,8 +34864,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4695 components: - pos: -44.5,13.5 @@ -41930,8 +34871,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4696 components: - pos: -44.5,12.5 @@ -41939,15 +34878,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4697 components: - pos: -44.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4698 components: - pos: -44.5,10.5 @@ -41955,8 +34890,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4699 components: - pos: -44.5,9.5 @@ -41964,8 +34897,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4739 components: - pos: -46.5,24.5 @@ -41973,8 +34904,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4740 components: - pos: -46.5,23.5 @@ -41982,8 +34911,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5047 components: - pos: -88.5,20.5 @@ -41991,71 +34918,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5079 components: - pos: -40.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5080 components: - pos: -40.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5081 components: - pos: -40.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5082 components: - pos: -40.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5083 components: - pos: -41.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5084 components: - pos: -42.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5085 components: - pos: -43.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5086 components: - pos: -44.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5087 components: - pos: -45.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5088 components: - pos: -46.5,-9.5 @@ -42063,15 +34970,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5089 components: - pos: -47.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5090 components: - pos: -48.5,-9.5 @@ -42079,8 +34982,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5091 components: - pos: -49.5,-9.5 @@ -42088,8 +34989,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5092 components: - pos: -50.5,-9.5 @@ -42097,8 +34996,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5093 components: - pos: -51.5,-9.5 @@ -42106,8 +35003,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5094 components: - pos: -52.5,-9.5 @@ -42115,15 +35010,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5095 components: - pos: -53.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5096 components: - pos: -54.5,-9.5 @@ -42131,8 +35022,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5097 components: - pos: -55.5,-9.5 @@ -42140,29 +35029,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5098 components: - pos: -56.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5099 components: - pos: -56.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5100 components: - pos: -56.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5101 components: - pos: -55.5,-7.5 @@ -42170,8 +35051,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5588 components: - pos: -44.5,22.5 @@ -42179,8 +35058,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5589 components: - pos: -46.5,22.5 @@ -42188,8 +35065,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5807 components: - pos: 17.5,47.5 @@ -42197,8 +35072,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6200 components: - pos: 18.5,46.5 @@ -42206,15 +35079,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6201 components: - pos: 17.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6202 components: - pos: 16.5,45.5 @@ -42222,15 +35091,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6213 components: - pos: 17.5,48.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6215 components: - pos: 16.5,49.5 @@ -42238,15 +35103,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6216 components: - pos: 17.5,49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6217 components: - pos: 16.5,49.5 @@ -42254,8 +35115,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6547 components: - pos: -3.5,56.5 @@ -42263,8 +35122,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6548 components: - pos: -4.5,56.5 @@ -42272,8 +35129,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6549 components: - pos: -4.5,57.5 @@ -42281,8 +35136,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7096 components: - pos: -20.5,22.5 @@ -42290,8 +35143,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7808 components: - pos: -53.5,85.5 @@ -42299,15 +35150,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7809 components: - pos: -52.5,85.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7810 components: - pos: -51.5,85.5 @@ -42315,15 +35162,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7811 components: - pos: -50.5,85.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7812 components: - pos: -50.5,84.5 @@ -42331,15 +35174,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7813 components: - pos: -50.5,83.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7814 components: - pos: -50.5,82.5 @@ -42347,15 +35186,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7815 components: - pos: -50.5,81.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7816 components: - pos: -50.5,80.5 @@ -42363,8 +35198,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7817 components: - pos: -50.5,79.5 @@ -42372,8 +35205,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7818 components: - pos: -50.5,78.5 @@ -42381,8 +35212,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7819 components: - pos: -50.5,77.5 @@ -42390,8 +35219,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7820 components: - pos: -50.5,76.5 @@ -42399,8 +35226,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7821 components: - pos: -50.5,75.5 @@ -42408,8 +35233,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7822 components: - pos: -50.5,74.5 @@ -42417,8 +35240,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7823 components: - pos: -50.5,73.5 @@ -42426,8 +35247,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7824 components: - pos: -50.5,72.5 @@ -42435,8 +35254,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7825 components: - pos: -50.5,71.5 @@ -42444,8 +35261,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7826 components: - pos: -50.5,70.5 @@ -42453,8 +35268,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7827 components: - pos: -50.5,69.5 @@ -42462,8 +35275,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7828 components: - pos: -50.5,68.5 @@ -42471,8 +35282,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7829 components: - pos: -50.5,67.5 @@ -42480,8 +35289,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7830 components: - pos: -50.5,66.5 @@ -42489,36 +35296,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7831 components: - pos: -50.5,65.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7832 components: - pos: -50.5,64.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7836 components: - pos: -50.5,63.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7841 components: - pos: -50.5,62.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7844 components: - pos: -49.5,63.5 @@ -42526,92 +35323,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7845 components: - pos: -50.5,61.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7847 components: - pos: -50.5,59.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7848 components: - pos: -50.5,58.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7850 components: - pos: -50.5,57.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7851 components: - pos: -50.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7852 components: - pos: -51.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7853 components: - pos: -52.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7854 components: - pos: -53.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7855 components: - pos: -54.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7856 components: - pos: -55.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7857 components: - pos: -56.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7858 components: - pos: -57.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7859 components: - pos: -58.5,56.5 @@ -42619,127 +35390,91 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8780 components: - pos: -50.5,60.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8942 components: - pos: -51.5,60.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8943 components: - pos: -52.5,60.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8944 components: - pos: -53.5,60.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8945 components: - pos: -54.5,60.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8946 components: - pos: -55.5,60.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8947 components: - pos: -56.5,60.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8948 components: - pos: -57.5,60.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8949 components: - pos: -58.5,60.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8950 components: - pos: -59.5,60.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8951 components: - pos: -60.5,60.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8952 components: - pos: -61.5,60.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8953 components: - pos: -62.5,60.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8954 components: - pos: -63.5,60.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8955 components: - pos: -63.5,59.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8956 components: - pos: -63.5,58.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8957 components: - pos: -63.5,57.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8958 components: - pos: -64.5,57.5 @@ -42747,8 +35482,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8959 components: - pos: -65.5,57.5 @@ -42756,8 +35489,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9381 components: - pos: -35.5,57.5 @@ -42765,8 +35496,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9382 components: - pos: -34.5,57.5 @@ -42774,8 +35503,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9383 components: - pos: -34.5,56.5 @@ -42783,8 +35510,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9384 components: - pos: -34.5,55.5 @@ -42792,8 +35517,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9385 components: - pos: -33.5,55.5 @@ -42801,8 +35524,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9386 components: - pos: -32.5,55.5 @@ -42810,8 +35531,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9387 components: - pos: -32.5,54.5 @@ -42819,8 +35538,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9388 components: - pos: -32.5,53.5 @@ -42828,8 +35545,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9389 components: - pos: -32.5,52.5 @@ -42837,8 +35552,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9390 components: - pos: -32.5,51.5 @@ -42846,8 +35559,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9391 components: - pos: -32.5,50.5 @@ -42855,8 +35566,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9392 components: - pos: -31.5,50.5 @@ -42864,15 +35573,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9393 components: - pos: -31.5,49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9394 components: - pos: -31.5,48.5 @@ -42880,8 +35585,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9396 components: - pos: -30.5,50.5 @@ -42889,8 +35592,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9397 components: - pos: -29.5,50.5 @@ -42898,15 +35599,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9398 components: - pos: -28.5,50.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9399 components: - pos: -27.5,50.5 @@ -42914,8 +35611,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9400 components: - pos: -26.5,50.5 @@ -42923,8 +35618,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9401 components: - pos: -25.5,50.5 @@ -42932,8 +35625,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9402 components: - pos: -24.5,50.5 @@ -42941,8 +35632,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9403 components: - pos: -24.5,49.5 @@ -42950,15 +35639,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9404 components: - pos: -24.5,48.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9405 components: - pos: -24.5,47.5 @@ -42966,8 +35651,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9406 components: - pos: -24.5,46.5 @@ -42975,8 +35658,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9407 components: - pos: -24.5,45.5 @@ -42984,8 +35665,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9408 components: - pos: -24.5,44.5 @@ -42993,15 +35672,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9409 components: - pos: -24.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9410 components: - pos: -24.5,42.5 @@ -43009,8 +35684,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9411 components: - pos: -24.5,41.5 @@ -43018,8 +35691,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9412 components: - pos: -24.5,40.5 @@ -43027,15 +35698,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9413 components: - pos: -24.5,39.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9414 components: - pos: -24.5,38.5 @@ -43043,8 +35710,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9415 components: - pos: -25.5,38.5 @@ -43052,8 +35717,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9416 components: - pos: -26.5,38.5 @@ -43061,8 +35724,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9495 components: - pos: -23.5,40.5 @@ -43070,8 +35731,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9642 components: - pos: -20.5,23.5 @@ -43079,8 +35738,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9643 components: - pos: -21.5,23.5 @@ -43088,8 +35745,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9644 components: - pos: -21.5,23.5 @@ -43097,50 +35752,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9645 components: - pos: -22.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9646 components: - pos: -23.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9647 components: - pos: -24.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9648 components: - pos: -25.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9649 components: - pos: -26.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9650 components: - pos: -27.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9651 components: - pos: -28.5,23.5 @@ -43148,57 +35789,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9652 components: - pos: -29.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9653 components: - pos: -29.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9654 components: - pos: -29.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9655 components: - pos: -29.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9656 components: - pos: -29.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9657 components: - pos: -29.5,28.5 parent: 1 - type: Transform - - fixtures: {} - type: Fixtures + type: Transform - uid: 9658 components: - pos: -29.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9659 components: - pos: -29.5,30.5 @@ -43206,8 +35831,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10021 components: - pos: -65.5,58.5 @@ -43215,8 +35838,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10022 components: - pos: -65.5,59.5 @@ -43224,127 +35845,91 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10213 components: - pos: -79.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10214 components: - pos: -80.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10215 components: - pos: -81.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10217 components: - pos: -82.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10218 components: - pos: -83.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10219 components: - pos: -84.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10220 components: - pos: -84.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10221 components: - pos: -84.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10222 components: - pos: -84.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10223 components: - pos: -85.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10224 components: - pos: -86.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10237 components: - pos: -39.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10271 components: - pos: -35.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10277 components: - pos: -34.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10285 components: - pos: -33.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10288 components: - pos: -32.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10298 components: - pos: -36.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10318 components: - pos: -20.5,18.5 @@ -43352,15 +35937,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10320 components: - pos: -20.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10430 components: - pos: -42.5,-8.5 @@ -43368,8 +35949,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10522 components: - pos: -87.5,30.5 @@ -43377,8 +35956,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10523 components: - pos: -88.5,30.5 @@ -43386,106 +35963,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10524 components: - pos: -79.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10525 components: - pos: -79.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10526 components: - pos: -79.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10527 components: - pos: -79.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10528 components: - pos: -80.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10529 components: - pos: -81.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10530 components: - pos: -82.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10531 components: - pos: -83.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10532 components: - pos: -84.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10533 components: - pos: -84.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10534 components: - pos: -84.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10537 components: - pos: -84.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10546 components: - pos: -85.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10547 components: - pos: -86.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10548 components: - pos: -87.5,20.5 @@ -43493,8 +36040,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10617 components: - pos: -101.5,18.5 @@ -43502,8 +36047,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10618 components: - pos: -93.5,32.5 @@ -43511,8 +36054,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10619 components: - pos: -93.5,33.5 @@ -43520,8 +36061,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10620 components: - pos: -101.5,32.5 @@ -43529,8 +36068,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10621 components: - pos: -101.5,33.5 @@ -43538,8 +36075,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10622 components: - pos: -104.5,29.5 @@ -43547,8 +36082,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10623 components: - pos: -105.5,29.5 @@ -43556,8 +36089,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10624 components: - pos: -105.5,30.5 @@ -43565,8 +36096,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10625 components: - pos: -105.5,31.5 @@ -43574,8 +36103,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10626 components: - pos: -105.5,28.5 @@ -43583,8 +36110,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10627 components: - pos: -105.5,27.5 @@ -43592,8 +36117,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10628 components: - pos: -105.5,26.5 @@ -43601,8 +36124,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10629 components: - pos: -105.5,25.5 @@ -43610,8 +36131,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10630 components: - pos: -105.5,24.5 @@ -43619,8 +36138,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10631 components: - pos: -105.5,23.5 @@ -43628,8 +36145,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10632 components: - pos: -105.5,22.5 @@ -43637,8 +36152,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10633 components: - pos: -105.5,21.5 @@ -43646,8 +36159,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10634 components: - pos: -105.5,20.5 @@ -43655,8 +36166,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10635 components: - pos: -105.5,19.5 @@ -43664,8 +36173,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10636 components: - pos: -104.5,21.5 @@ -43673,8 +36180,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10637 components: - pos: -101.5,17.5 @@ -43682,8 +36187,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10638 components: - pos: -93.5,18.5 @@ -43691,8 +36194,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10639 components: - pos: -93.5,17.5 @@ -43700,8 +36201,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10640 components: - pos: -90.5,21.5 @@ -43709,8 +36208,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10641 components: - pos: -90.5,29.5 @@ -43718,8 +36215,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10642 components: - pos: -89.5,29.5 @@ -43727,8 +36222,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10643 components: - pos: -89.5,21.5 @@ -43736,22 +36229,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10981 components: - pos: -66.5,57.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10982 components: - pos: -67.5,57.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10983 components: - pos: -67.5,56.5 @@ -43759,15 +36246,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10984 components: - pos: -67.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10985 components: - pos: -67.5,54.5 @@ -43775,8 +36258,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10986 components: - pos: -67.5,53.5 @@ -43784,15 +36265,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10987 components: - pos: -67.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10988 components: - pos: -67.5,51.5 @@ -43800,8 +36277,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10989 components: - pos: -67.5,50.5 @@ -43809,22 +36284,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10990 components: - pos: -66.5,50.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10991 components: - pos: -66.5,49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10992 components: - pos: -66.5,48.5 @@ -43832,36 +36301,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10993 components: - pos: -66.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10994 components: - pos: -66.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10995 components: - pos: -66.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10996 components: - pos: -66.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10997 components: - pos: -65.5,44.5 @@ -43869,36 +36328,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11064 components: - pos: -71.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11065 components: - pos: -70.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11066 components: - pos: -69.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11067 components: - pos: -68.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11068 components: - pos: -68.5,35.5 @@ -43906,36 +36355,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11069 components: - pos: -72.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11070 components: - pos: -73.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11071 components: - pos: -74.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11072 components: - pos: -75.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11073 components: - pos: -76.5,34.5 @@ -43943,8 +36382,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11074 components: - pos: -76.5,35.5 @@ -43952,8 +36389,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11075 components: - pos: -76.5,36.5 @@ -43961,113 +36396,81 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11076 components: - pos: -73.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11077 components: - pos: -73.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11078 components: - pos: -73.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11079 components: - pos: -73.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11080 components: - pos: -73.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11081 components: - pos: -73.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11082 components: - pos: -73.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11085 components: - pos: -73.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11091 components: - pos: -73.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11114 components: - pos: -73.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11116 components: - pos: -73.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11120 components: - pos: -73.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11121 components: - pos: -73.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11157 components: - pos: -73.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11158 components: - pos: -74.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11159 components: - pos: -75.5,21.5 @@ -44075,8 +36478,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14947 components: - pos: -72.5,26.5 @@ -44084,8 +36485,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14948 components: - pos: -71.5,26.5 @@ -44093,8 +36492,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14949 components: - pos: -71.5,25.5 @@ -44102,8 +36499,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15235 components: - pos: 17.5,45.5 @@ -44111,8 +36506,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15236 components: - pos: 16.5,44.5 @@ -44120,8 +36513,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15670 components: - pos: -9.5,5.5 @@ -44129,8 +36520,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15671 components: - pos: -9.5,6.5 @@ -44138,22 +36527,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15672 components: - pos: -9.5,7.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15673 components: - pos: -8.5,7.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15674 components: - pos: -7.5,7.5 @@ -44161,8 +36544,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15675 components: - pos: -6.5,7.5 @@ -44170,8 +36551,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15676 components: - pos: -6.5,6.5 @@ -44179,43 +36558,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15677 components: - pos: -6.5,5.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15678 components: - pos: -6.5,4.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15679 components: - pos: -6.5,3.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15680 components: - pos: -6.5,2.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15681 components: - pos: -7.5,2.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15682 components: - pos: -8.5,2.5 @@ -44223,29 +36590,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15683 components: - pos: -6.5,1.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15684 components: - pos: -6.5,0.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15685 components: - pos: -6.5,-0.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15686 components: - pos: -6.5,-1.5 @@ -44253,22 +36612,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15687 components: - pos: -6.5,-2.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15688 components: - pos: -6.5,-3.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15689 components: - pos: -6.5,-4.5 @@ -44276,8 +36629,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15690 components: - pos: -7.5,-0.5 @@ -44285,64 +36636,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15691 components: - pos: -8.5,-0.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15692 components: - pos: -9.5,-0.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15693 components: - pos: -10.5,-0.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15694 components: - pos: -11.5,-0.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15695 components: - pos: -12.5,-0.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15696 components: - pos: -13.5,-0.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15697 components: - pos: -14.5,-0.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15698 components: - pos: -15.5,-0.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15699 components: - pos: -16.5,-0.5 @@ -44350,8 +36683,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15700 components: - pos: -16.5,-1.5 @@ -44359,22 +36690,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15701 components: - pos: -16.5,-2.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15702 components: - pos: -17.5,-2.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15703 components: - pos: -18.5,-2.5 @@ -44382,36 +36707,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15704 components: - pos: -12.5,-1.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15705 components: - pos: -12.5,-2.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15706 components: - pos: -12.5,-3.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15707 components: - pos: -12.5,-4.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15708 components: - pos: -12.5,-5.5 @@ -44419,8 +36734,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15709 components: - pos: -12.5,-6.5 @@ -44428,15 +36741,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15710 components: - pos: -11.5,-6.5 parent: 5016 type: Transform - - fixtures: {} - type: Fixtures - uid: 15711 components: - pos: -10.5,-6.5 @@ -44444,8 +36753,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - proto: CableMVStack entities: - uid: 2888 @@ -51571,52 +43878,42 @@ entities: - contents: - maxAmount: 1 amount: 1 - orGroup: null prob: 0.01 id: WeaponPistolMk58 - maxAmount: 1 amount: 2 - orGroup: null prob: 1 id: MopItem - maxAmount: 1 amount: 2 - orGroup: null prob: 1 id: BoxMousetrap - maxAmount: 1 amount: 3 - orGroup: null prob: 1 id: WetFloorSign - maxAmount: 1 amount: 2 - orGroup: null prob: 1 id: TrashBag - maxAmount: 1 amount: 1 - orGroup: null prob: 1 id: LightReplacer - maxAmount: 1 amount: 1 - orGroup: null prob: 1 id: BoxLightMixed - maxAmount: 1 amount: 1 - orGroup: null prob: 1 id: Holoprojector - maxAmount: 1 amount: 2 - orGroup: null prob: 1 id: SoapNT - maxAmount: 1 amount: 2 - orGroup: null prob: 1 id: FlashlightLantern type: StorageFill @@ -51647,7 +43944,6 @@ entities: paper_label: !type:ContainerSlot showEnts: False occludes: True - ent: null type: ContainerContainer - proto: ClosetL3VirologyFilled entities: @@ -53320,6 +45616,15 @@ entities: pos: -2.5,-0.5 parent: 5016 type: Transform +- proto: ComputerCargoBounty + entities: + - uid: 8995 + components: + - pos: -33.5,-5.5 + parent: 1 + type: Transform + - nextPrintTime: 206.9490687 + type: CargoBountyConsole - proto: ComputerCargoOrders entities: - uid: 3619 @@ -54224,7 +46529,6 @@ entities: paper_label: !type:ContainerSlot showEnts: False occludes: True - ent: null type: ContainerContainer - currentLabel: For Med type: Label @@ -54446,7 +46750,6 @@ entities: paper_label: !type:ContainerSlot showEnts: False occludes: True - ent: null type: ContainerContainer - proto: CrayonMime entities: @@ -60266,6 +52569,18 @@ entities: - pos: -30.5,14.5 parent: 1 type: Transform + - uid: 8992 + components: + - rot: 3.141592653589793 rad + pos: 20.5,35.5 + parent: 1 + type: Transform + - uid: 9002 + components: + - rot: 3.141592653589793 rad + pos: 20.5,34.5 + parent: 1 + type: Transform - uid: 9802 components: - pos: -31.5,51.5 @@ -61900,7 +54215,6 @@ entities: parent: 1 type: Transform - toggleAction: - sound: null itemIconStyle: BigItem icon: sprite: Objects/Tools/flashlight.rsi @@ -61911,8 +54225,6 @@ entities: description: action-description-toggle-light keywords: [] enabled: True - useDelay: null - charges: null checkCanInteract: True clientExclusive: False priority: 0 @@ -81929,6 +74241,11 @@ entities: - pos: -1.5,44.5 parent: 1 type: Transform + - uid: 1416 + components: + - pos: 13.5,38.5 + parent: 1 + type: Transform - uid: 1470 components: - pos: -7.5,19.5 @@ -82411,11 +74728,6 @@ entities: - pos: 5.5,22.5 parent: 1 type: Transform - - uid: 1416 - components: - - pos: -25.5,63.5 - parent: 1 - type: Transform - uid: 1424 components: - pos: 16.5,43.5 @@ -82723,6 +75035,11 @@ entities: - pos: -46.5,24.5 parent: 1 type: Transform + - uid: 4735 + components: + - pos: -25.5,64.5 + parent: 1 + type: Transform - uid: 4748 components: - pos: -74.5,7.5 @@ -83050,6 +75367,16 @@ entities: pos: -59.5,14.5 parent: 1 type: Transform + - uid: 5340 + components: + - pos: -25.5,65.5 + parent: 1 + type: Transform + - uid: 5341 + components: + - pos: -17.5,70.5 + parent: 1 + type: Transform - uid: 5823 components: - pos: -18.5,46.5 @@ -83140,6 +75467,16 @@ entities: - pos: -2.5,49.5 parent: 1 type: Transform + - uid: 6012 + components: + - pos: -24.5,67.5 + parent: 1 + type: Transform + - uid: 6013 + components: + - pos: -16.5,70.5 + parent: 1 + type: Transform - uid: 6043 components: - pos: 16.5,53.5 @@ -83160,6 +75497,16 @@ entities: - pos: 13.5,53.5 parent: 1 type: Transform + - uid: 6257 + components: + - pos: -14.5,70.5 + parent: 1 + type: Transform + - uid: 6275 + components: + - pos: -25.5,62.5 + parent: 1 + type: Transform - uid: 6319 components: - pos: 24.5,38.5 @@ -83175,6 +75522,11 @@ entities: - pos: 24.5,41.5 parent: 1 type: Transform + - uid: 6323 + components: + - pos: -11.5,70.5 + parent: 1 + type: Transform - uid: 6352 components: - rot: 3.141592653589793 rad @@ -83362,44 +75714,39 @@ entities: - pos: -18.5,48.5 parent: 1 type: Transform - - uid: 6670 + - uid: 6669 components: - - pos: -25.5,64.5 + - pos: -13.5,70.5 parent: 1 type: Transform - - uid: 6671 + - uid: 6670 components: - - pos: -24.5,68.5 + - pos: -10.5,69.5 parent: 1 type: Transform - - uid: 6672 + - uid: 6671 components: - - pos: -23.5,69.5 + - pos: -1.5,62.5 parent: 1 type: Transform - uid: 6673 components: - - pos: -22.5,70.5 + - pos: -1.5,60.5 parent: 1 type: Transform - uid: 6674 components: - - pos: -17.5,70.5 + - pos: -1.5,59.5 parent: 1 type: Transform - uid: 6675 components: - - pos: -15.5,70.5 - parent: 1 - type: Transform - - uid: 6676 - components: - - pos: -18.5,70.5 + - pos: -3.5,65.5 parent: 1 type: Transform - uid: 6678 components: - - pos: -11.5,70.5 + - pos: -22.5,69.5 parent: 1 type: Transform - uid: 6685 @@ -83556,7 +75903,7 @@ entities: type: Transform - uid: 7095 components: - - pos: -16.5,70.5 + - pos: -23.5,68.5 parent: 1 type: Transform - uid: 7113 @@ -83706,32 +76053,42 @@ entities: type: Transform - uid: 7374 components: - - pos: -14.5,70.5 + - pos: -10.5,70.5 parent: 1 type: Transform - uid: 7375 components: - - pos: -9.5,69.5 + - pos: -5.5,65.5 parent: 1 type: Transform - uid: 7376 components: - - pos: -8.5,68.5 + - pos: -1.5,63.5 + parent: 1 + type: Transform + - uid: 7377 + components: + - pos: -6.5,65.5 parent: 1 type: Transform - uid: 7413 components: - - pos: -9.5,68.5 + - pos: -1.5,64.5 parent: 1 type: Transform - - uid: 7414 + - uid: 7512 components: - - pos: -1.5,62.5 + - pos: -9.5,69.5 + parent: 1 + type: Transform + - uid: 7513 + components: + - pos: -9.5,68.5 parent: 1 type: Transform - uid: 7516 components: - - pos: -1.5,63.5 + - pos: -7.5,65.5 parent: 1 type: Transform - uid: 7712 @@ -83766,32 +76123,22 @@ entities: type: Transform - uid: 8084 components: - - pos: -1.5,64.5 + - pos: -8.5,68.5 parent: 1 type: Transform - uid: 8115 components: - - pos: -1.5,59.5 - parent: 1 - type: Transform - - uid: 8287 - components: - - pos: -1.5,60.5 - parent: 1 - type: Transform - - uid: 8288 - components: - - pos: -1.5,61.5 + - pos: -24.5,68.5 parent: 1 type: Transform - uid: 8289 components: - - pos: -5.5,65.5 + - pos: -22.5,70.5 parent: 1 type: Transform - uid: 8290 components: - - pos: -6.5,65.5 + - pos: -19.5,70.5 parent: 1 type: Transform - uid: 8617 @@ -83821,7 +76168,7 @@ entities: type: Transform - uid: 8976 components: - - pos: -3.5,65.5 + - pos: -23.5,69.5 parent: 1 type: Transform - uid: 8977 @@ -83854,11 +76201,6 @@ entities: - pos: -65.5,87.5 parent: 1 type: Transform - - uid: 8992 - components: - - pos: -4.5,65.5 - parent: 1 - type: Transform - uid: 8993 components: - pos: -64.5,88.5 @@ -83869,66 +76211,6 @@ entities: - pos: -64.5,89.5 parent: 1 type: Transform - - uid: 8995 - components: - - pos: -7.5,65.5 - parent: 1 - type: Transform - - uid: 8997 - components: - - pos: -8.5,65.5 - parent: 1 - type: Transform - - uid: 9000 - components: - - pos: -13.5,70.5 - parent: 1 - type: Transform - - uid: 9001 - components: - - pos: -10.5,69.5 - parent: 1 - type: Transform - - uid: 9002 - components: - - pos: -10.5,70.5 - parent: 1 - type: Transform - - uid: 9006 - components: - - pos: -19.5,70.5 - parent: 1 - type: Transform - - uid: 9008 - components: - - pos: -21.5,70.5 - parent: 1 - type: Transform - - uid: 9009 - components: - - pos: -8.5,67.5 - parent: 1 - type: Transform - - uid: 9010 - components: - - pos: -22.5,69.5 - parent: 1 - type: Transform - - uid: 9013 - components: - - pos: -23.5,68.5 - parent: 1 - type: Transform - - uid: 9014 - components: - - pos: -25.5,65.5 - parent: 1 - type: Transform - - uid: 9016 - components: - - pos: -24.5,67.5 - parent: 1 - type: Transform - uid: 9023 components: - pos: -47.5,77.5 @@ -83979,11 +76261,6 @@ entities: - pos: -29.5,62.5 parent: 1 type: Transform - - uid: 9059 - components: - - pos: -25.5,62.5 - parent: 1 - type: Transform - uid: 9091 components: - pos: 0.5,56.5 @@ -85656,12 +77933,40 @@ entities: pos: 16.5,42.5 parent: 1 type: Transform + - uid: 6011 + components: + - rot: 3.141592653589793 rad + pos: -25.5,63.5 + parent: 1 + type: Transform + - uid: 6277 + components: + - pos: -18.5,70.5 + parent: 1 + type: Transform + - uid: 6672 + components: + - pos: -1.5,61.5 + parent: 1 + type: Transform + - uid: 6676 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,65.5 + parent: 1 + type: Transform - uid: 7032 components: - rot: 1.5707963267948966 rad pos: -53.5,45.5 parent: 1 type: Transform + - uid: 7414 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,70.5 + parent: 1 + type: Transform - uid: 7521 components: - pos: -14.5,37.5 @@ -85679,6 +77984,24 @@ entities: pos: -14.5,42.5 parent: 1 type: Transform + - uid: 8068 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,65.5 + parent: 1 + type: Transform + - uid: 8287 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,70.5 + parent: 1 + type: Transform + - uid: 8288 + components: + - rot: 3.141592653589793 rad + pos: -8.5,67.5 + parent: 1 + type: Transform - uid: 8974 components: - pos: 11.5,55.5 @@ -87374,6 +79697,13 @@ entities: type: Transform - nextSound: 2940.305089 type: EmitSoundOnCollide + - uid: 4708 + components: + - pos: -32.32265,-5.1474953 + parent: 1 + type: Transform + - nextSound: 219.2960834 + type: EmitSoundOnCollide - uid: 7556 components: - pos: -22.548872,46.863678 @@ -87464,16 +79794,6 @@ entities: type: Transform - proto: LandMineExplosive entities: - - uid: 4707 - components: - - pos: -47.50722,19.419868 - parent: 1 - type: Transform - - uid: 4708 - components: - - pos: -45.51045,18.451118 - parent: 1 - type: Transform - uid: 9641 components: - pos: -26.981983,53.509666 @@ -88016,7 +80336,6 @@ entities: paper_label: !type:ContainerSlot showEnts: False occludes: True - ent: null type: ContainerContainer - proto: LockerChiefMedicalOfficerFilled entities: @@ -88338,7 +80657,6 @@ entities: paper_label: !type:ContainerSlot showEnts: False occludes: True - ent: null type: ContainerContainer - proto: LockerHeadOfPersonnelFilled entities: @@ -88543,7 +80861,6 @@ entities: paper_label: !type:ContainerSlot showEnts: False occludes: True - ent: null type: ContainerContainer - proto: LockerSalvageSpecialistFilled entities: @@ -89008,25 +81325,25 @@ entities: - pos: -15.5,-3.5 parent: 5016 type: Transform -- proto: MachineParticleAcceleratorEmitterCenterCircuitboard +- proto: MachineParticleAcceleratorEmitterForeCircuitboard entities: - uid: 9961 components: - pos: -81.52008,22.452606 parent: 1 type: Transform -- proto: MachineParticleAcceleratorEmitterLeftCircuitboard +- proto: MachineParticleAcceleratorEmitterPortCircuitboard entities: - - uid: 9962 + - uid: 9964 components: - - pos: -80.98883,22.780731 + - pos: -81.02008,22.515106 parent: 1 type: Transform -- proto: MachineParticleAcceleratorEmitterRightCircuitboard +- proto: MachineParticleAcceleratorEmitterStarboardCircuitboard entities: - - uid: 9964 + - uid: 9962 components: - - pos: -81.02008,22.515106 + - pos: -80.98883,22.780731 parent: 1 type: Transform - proto: MachineParticleAcceleratorEndCapCircuitboard @@ -89719,50 +82036,6 @@ entities: type: Transform - nextSound: 795.338689 type: EmitSoundOnCollide -- proto: MaterialWoodPlank1 - entities: - - uid: 15913 - components: - - pos: 23.669586,39.593056 - parent: 1 - type: Transform - - nextSound: 790.3827351 - type: EmitSoundOnCollide - - uid: 15932 - components: - - pos: 23.653961,39.561806 - parent: 1 - type: Transform - - nextSound: 790.8591444 - type: EmitSoundOnCollide - - uid: 15933 - components: - - pos: 23.528961,39.405556 - parent: 1 - type: Transform - - nextSound: 791.1389052 - type: EmitSoundOnCollide - - uid: 15934 - components: - - pos: 23.638336,39.51493 - parent: 1 - type: Transform - - nextSound: 791.3273996 - type: EmitSoundOnCollide - - uid: 15935 - components: - - pos: 23.544586,39.42118 - parent: 1 - type: Transform - - nextSound: 791.4934817 - type: EmitSoundOnCollide - - uid: 15936 - components: - - pos: 23.810211,39.57743 - parent: 1 - type: Transform - - nextSound: 793.0561703 - type: EmitSoundOnCollide - proto: MatterBinStockPart entities: - uid: 259 @@ -95966,11 +88239,6 @@ entities: - pos: -32.5,-9.5 parent: 1 type: Transform - - uid: 8068 - components: - - pos: -32.5,-5.5 - parent: 1 - type: Transform - uid: 8069 components: - pos: -38.5,-12.5 @@ -97246,6 +89514,11 @@ entities: - pos: -33.5,-3.5 parent: 1 type: Transform + - uid: 9000 + components: + - pos: -32.5,-6.5 + parent: 1 + type: Transform - uid: 9105 components: - pos: -57.5,84.5 @@ -98060,16 +90333,6 @@ entities: pos: -2.5,28.5 parent: 1 type: Transform - - uid: 1437 - components: - - pos: 24.5,38.5 - parent: 1 - type: Transform - - uid: 1438 - components: - - pos: 24.5,41.5 - parent: 1 - type: Transform - uid: 1886 components: - pos: 13.5,29.5 @@ -104351,6 +96614,11 @@ entities: - pos: 20.5,32.5 parent: 1 type: Transform + - uid: 9006 + components: + - pos: -32.5,-5.5 + parent: 1 + type: Transform - uid: 9070 components: - pos: 17.5,42.5 @@ -107958,6 +100226,12 @@ entities: - pos: 17.5,-8.5 parent: 1 type: Transform + - uid: 1856 + components: + - rot: 3.141592653589793 rad + pos: 9.5,53.5 + parent: 1 + type: Transform - uid: 1857 components: - pos: -17.5,-15.5 @@ -108608,6 +100882,12 @@ entities: - pos: -53.5,22.5 parent: 1 type: Transform + - uid: 4430 + components: + - rot: 3.141592653589793 rad + pos: 8.5,53.5 + parent: 1 + type: Transform - uid: 4533 components: - pos: -50.5,-11.5 @@ -108678,6 +100958,12 @@ entities: - pos: -53.5,23.5 parent: 1 type: Transform + - uid: 4707 + components: + - rot: 3.141592653589793 rad + pos: 10.5,53.5 + parent: 1 + type: Transform - uid: 4712 components: - pos: 16.5,40.5 @@ -109525,21 +101811,6 @@ entities: - pos: 7.5,53.5 parent: 1 type: Transform - - uid: 6011 - components: - - pos: 8.5,53.5 - parent: 1 - type: Transform - - uid: 6012 - components: - - pos: 9.5,53.5 - parent: 1 - type: Transform - - uid: 6013 - components: - - pos: 10.5,53.5 - parent: 1 - type: Transform - uid: 6014 components: - pos: 11.5,53.5 @@ -119503,7 +111774,162 @@ entities: pos: -42.5,1.5 parent: 1 type: Transform -- proto: WindoorArmoryLocked +- proto: WindoorChapelLocked + entities: + - uid: 1648 + components: + - pos: 20.5,0.5 + parent: 1 + type: Transform +- proto: WindoorHydroponicsLocked + entities: + - uid: 6888 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,42.5 + parent: 1 + type: Transform + - uid: 6889 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,43.5 + parent: 1 + type: Transform + - uid: 6962 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,44.5 + parent: 1 + type: Transform +- proto: WindoorKitchenHydroponicsLocked + entities: + - uid: 6883 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,46.5 + parent: 1 + type: Transform + - uid: 6884 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,45.5 + parent: 1 + type: Transform + - uid: 6885 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,44.5 + parent: 1 + type: Transform + - uid: 6886 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,43.5 + parent: 1 + type: Transform +- proto: WindoorKitchenLocked + entities: + - uid: 6904 + components: + - rot: 3.141592653589793 rad + pos: -36.5,41.5 + parent: 1 + type: Transform + - uid: 6905 + components: + - rot: 3.141592653589793 rad + pos: -35.5,41.5 + parent: 1 + type: Transform +- proto: WindoorSecure + entities: + - uid: 1652 + components: + - rot: 3.141592653589793 rad + pos: -0.5,28.5 + parent: 1 + type: Transform + - uid: 1653 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,26.5 + parent: 1 + type: Transform + - uid: 1654 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,25.5 + parent: 1 + type: Transform + - uid: 5055 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 5016 + type: Transform + - uid: 6655 + components: + - pos: -19.5,36.5 + parent: 1 + type: Transform + - uid: 6656 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,35.5 + parent: 1 + type: Transform + - uid: 6657 + components: + - rot: 3.141592653589793 rad + pos: -22.5,34.5 + parent: 1 + type: Transform + - uid: 7877 + components: + - pos: -47.5,56.5 + parent: 1 + type: Transform + - uid: 7878 + components: + - rot: 3.141592653589793 rad + pos: -47.5,63.5 + parent: 1 + type: Transform + - uid: 13321 + components: + - pos: -0.5,7.5 + parent: 1 + type: Transform + - uid: 13322 + components: + - pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 13370 + components: + - rot: 1.5707963267948966 rad + pos: -72.5,54.5 + parent: 1 + type: Transform + - uid: 13791 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 5016 + type: Transform + - uid: 15588 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-4.5 + parent: 5016 + type: Transform + - uid: 15589 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 5016 + type: Transform +- proto: WindoorSecureArmoryLocked entities: - uid: 7874 components: @@ -119526,14 +111952,54 @@ entities: - pos: -43.5,66.5 parent: 1 type: Transform -- proto: WindoorChapelLocked +- proto: WindoorSecureCargoLocked entities: - - uid: 1648 + - uid: 3625 components: - - pos: 20.5,0.5 + - rot: 1.5707963267948966 rad + pos: -39.5,0.5 + parent: 1 + type: Transform + - uid: 3626 + components: + - pos: -38.5,2.5 + parent: 1 + type: Transform + - uid: 3627 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,1.5 + parent: 1 + type: Transform + - uid: 3635 + components: + - pos: -37.5,2.5 + parent: 1 + type: Transform + - uid: 3636 + components: + - pos: -36.5,2.5 + parent: 1 + type: Transform + - uid: 3637 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,1.5 parent: 1 type: Transform -- proto: WindoorChemistryLocked + - uid: 3638 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,0.5 + parent: 1 + type: Transform + - uid: 14713 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,1.5 + parent: 1 + type: Transform +- proto: WindoorSecureChemistryLocked entities: - uid: 1649 components: @@ -119563,7 +112029,7 @@ entities: pos: -1.5,-7.5 parent: 5016 type: Transform -- proto: WindoorCommandLocked +- proto: WindoorSecureCommandLocked entities: - uid: 10855 components: @@ -119571,7 +112037,7 @@ entities: pos: -23.5,56.5 parent: 1 type: Transform -- proto: WindoorEngineeringLocked +- proto: WindoorSecureEngineeringLocked entities: - uid: 2800 components: @@ -119585,7 +112051,7 @@ entities: pos: -59.5,32.5 parent: 1 type: Transform -- proto: WindoorHeadOfPersonnelLocked +- proto: WindoorSecureHeadOfPersonnelLocked entities: - uid: 3458 components: @@ -119593,67 +112059,7 @@ entities: pos: -19.5,36.5 parent: 1 type: Transform -- proto: WindoorHydroponicsLocked - entities: - - uid: 6888 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,42.5 - parent: 1 - type: Transform - - uid: 6889 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,43.5 - parent: 1 - type: Transform - - uid: 6962 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,44.5 - parent: 1 - type: Transform -- proto: WindoorKitchenHydroponicsLocked - entities: - - uid: 6883 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,46.5 - parent: 1 - type: Transform - - uid: 6884 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,45.5 - parent: 1 - type: Transform - - uid: 6885 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,44.5 - parent: 1 - type: Transform - - uid: 6886 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,43.5 - parent: 1 - type: Transform -- proto: WindoorKitchenLocked - entities: - - uid: 6904 - components: - - rot: 3.141592653589793 rad - pos: -36.5,41.5 - parent: 1 - type: Transform - - uid: 6905 - components: - - rot: 3.141592653589793 rad - pos: -35.5,41.5 - parent: 1 - type: Transform -- proto: WindoorMedicalLocked +- proto: WindoorSecureMedicalLocked entities: - uid: 2342 components: @@ -119691,7 +112097,7 @@ entities: pos: -4.5,-0.5 parent: 5016 type: Transform -- proto: WindoorScienceLocked +- proto: WindoorSecureScienceLocked entities: - uid: 220 components: @@ -119703,142 +112109,7 @@ entities: - pos: -7.5,3.5 parent: 1 type: Transform -- proto: WindoorSecure - entities: - - uid: 1652 - components: - - rot: 3.141592653589793 rad - pos: -0.5,28.5 - parent: 1 - type: Transform - - uid: 1653 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,26.5 - parent: 1 - type: Transform - - uid: 1654 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,25.5 - parent: 1 - type: Transform - - uid: 5055 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,0.5 - parent: 5016 - type: Transform - - uid: 6655 - components: - - pos: -19.5,36.5 - parent: 1 - type: Transform - - uid: 6656 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,35.5 - parent: 1 - type: Transform - - uid: 6657 - components: - - rot: 3.141592653589793 rad - pos: -22.5,34.5 - parent: 1 - type: Transform - - uid: 7877 - components: - - pos: -47.5,56.5 - parent: 1 - type: Transform - - uid: 7878 - components: - - rot: 3.141592653589793 rad - pos: -47.5,63.5 - parent: 1 - type: Transform - - uid: 13321 - components: - - pos: -0.5,7.5 - parent: 1 - type: Transform - - uid: 13322 - components: - - pos: 0.5,7.5 - parent: 1 - type: Transform - - uid: 13370 - components: - - rot: 1.5707963267948966 rad - pos: -72.5,54.5 - parent: 1 - type: Transform - - uid: 13791 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-0.5 - parent: 5016 - type: Transform - - uid: 15588 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-4.5 - parent: 5016 - type: Transform - - uid: 15589 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-7.5 - parent: 5016 - type: Transform -- proto: WindoorSecureCargoLocked - entities: - - uid: 3625 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,0.5 - parent: 1 - type: Transform - - uid: 3626 - components: - - pos: -38.5,2.5 - parent: 1 - type: Transform - - uid: 3627 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,1.5 - parent: 1 - type: Transform - - uid: 3635 - components: - - pos: -37.5,2.5 - parent: 1 - type: Transform - - uid: 3636 - components: - - pos: -36.5,2.5 - parent: 1 - type: Transform - - uid: 3637 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,1.5 - parent: 1 - type: Transform - - uid: 3638 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,0.5 - parent: 1 - type: Transform - - uid: 14713 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,1.5 - parent: 1 - type: Transform -- proto: WindoorSecurityLocked +- proto: WindoorSecureSecurityLocked entities: - uid: 5056 components: @@ -120047,6 +112318,18 @@ entities: - pos: 5.5,22.5 parent: 1 type: Transform + - uid: 1437 + components: + - rot: 3.141592653589793 rad + pos: 24.5,39.5 + parent: 1 + type: Transform + - uid: 1438 + components: + - rot: 3.141592653589793 rad + pos: 24.5,40.5 + parent: 1 + type: Transform - uid: 1625 components: - pos: 12.5,27.5 @@ -120256,6 +112539,18 @@ entities: - pos: -41.5,53.5 parent: 1 type: Transform + - uid: 9008 + components: + - rot: 3.141592653589793 rad + pos: 24.5,38.5 + parent: 1 + type: Transform + - uid: 9009 + components: + - rot: 3.141592653589793 rad + pos: 24.5,41.5 + parent: 1 + type: Transform - uid: 9018 components: - pos: -59.5,11.5 From 25bd1eba19ab64fa6d2bd77863c26f75416da483 Mon Sep 17 00:00:00 2001 From: Scribbles0 <91828755+Scribbles0@users.noreply.github.com> Date: Sat, 24 Jun 2023 12:58:51 -0700 Subject: [PATCH 463/474] cargo bounty computer (#17596) --- Resources/Maps/cluster.yml | 5750 ++---------------------------------- 1 file changed, 223 insertions(+), 5527 deletions(-) diff --git a/Resources/Maps/cluster.yml b/Resources/Maps/cluster.yml index c74743826b..ce1217b90d 100644 --- a/Resources/Maps/cluster.yml +++ b/Resources/Maps/cluster.yml @@ -7,36 +7,36 @@ tilemap: 12: FloorBar 15: FloorBlueCircuit 16: FloorBoxing - 17: FloorCarpetClown - 22: FloorDark - 23: FloorDarkDiagonal - 26: FloorDarkMini - 27: FloorDarkMono - 29: FloorDarkPavement - 34: FloorEighties - 35: FloorElevatorShaft - 37: FloorFreezer - 38: FloorGlass - 41: FloorGrassDark - 46: FloorHydro - 48: FloorLaundry - 49: FloorLino - 52: FloorMime - 58: FloorReinforced - 60: FloorShowroom - 68: FloorSteel - 69: FloorSteelDiagonal - 72: FloorSteelHerringbone - 74: FloorSteelMono - 78: FloorTechMaint - 81: FloorWhite - 82: FloorWhiteDiagonal - 84: FloorWhiteHerringbone - 85: FloorWhiteMini - 86: FloorWhiteMono - 91: FloorWood - 93: Lattice - 94: Plating + 18: FloorCarpetClown + 23: FloorDark + 24: FloorDarkDiagonal + 27: FloorDarkMini + 28: FloorDarkMono + 30: FloorDarkPavement + 35: FloorEighties + 36: FloorElevatorShaft + 38: FloorFreezer + 39: FloorGlass + 42: FloorGrassDark + 47: FloorHydro + 49: FloorLaundry + 50: FloorLino + 53: FloorMime + 59: FloorReinforced + 61: FloorShowroom + 69: FloorSteel + 70: FloorSteelDiagonal + 73: FloorSteelHerringbone + 75: FloorSteelMono + 79: FloorTechMaint + 82: FloorWhite + 83: FloorWhiteDiagonal + 85: FloorWhiteHerringbone + 86: FloorWhiteMini + 87: FloorWhiteMono + 92: FloorWood + 94: Lattice + 95: Plating entities: - proto: "" entities: @@ -49,139 +49,139 @@ entities: - chunks: 0,0: ind: 0,0 - tiles: UQAAAFEAAAFRAAABUQAAAVEAAABRAAADXgAAAEQAAAJEAAABRAAAA14AAABeAAAAXgAAAF4AAAAWAAAAFgAAAlEAAAJSAAABUgAAAFIAAANSAAACUQAAAl4AAABEAAAARAAAAkQAAANEAAAARAAAAEQAAAFEAAAARAAAAkQAAAJRAAADUgAAA1IAAABSAAACUgAAA1EAAANRAAADRAAAAyYAAABEAAADRAAAAEQAAAFEAAACRAAAAEQAAANEAAAAUQAAA1EAAANRAAADUQAAAlEAAAJRAAABXgAAAEQAAANEAAACRAAAAkQAAANEAAADRAAAAEQAAAFEAAADRAAAAV4AAABeAAAAXgAAAFEAAAFRAAACXgAAAF4AAABEAAADRAAAAEQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAACWwAAAlsAAAJbAAABWwAAAFsAAABeAAAARAAAAEQAAAJEAAAAXgAAAEQAAANEAAACXgAAAEQAAAJEAAACWwAAAFsAAANbAAADWwAAAlsAAAJbAAADXgAAAEQAAAMmAAAARAAAAF4AAABEAAABRAAAA14AAABEAAADRAAAA1sAAABbAAABWwAAAVsAAAFbAAABWwAAAl4AAABEAAACRAAAA0QAAAJeAAAAXgAAAEQAAAJeAAAAXgAAAEQAAAEMAAACDAAAAwwAAAAMAAACDAAAAgwAAAAMAAACRAAAAEQAAAJEAAABXgAAAEQAAANEAAACRAAAAUQAAABEAAAAWwAAAVsAAAFbAAAADAAAAAwAAAEMAAADDAAAAUQAAAMmAAAARAAAA14AAABEAAAARAAAA0QAAAJEAAABRAAAAlsAAABbAAABWwAAAgwAAAFbAAACWwAAAl4AAABEAAACRAAAA0QAAANeAAAARAAAAkQAAANEAAAARAAAA0QAAAFbAAAAWwAAA1sAAAAMAAAAWwAAAF4AAABeAAAARAAAAUQAAABEAAABXgAAAEQAAAJEAAADXgAAAF4AAAAWAAACDAAAAgwAAAAMAAACDAAAAV4AAABeAAAARAAAAkQAAAJEAAADRAAAAV4AAABEAAADRAAAAV4AAAAWAAACFgAAAQwAAAEMAAACDAAAAl4AAABeAAAARAAAAEQAAAJEAAADJgAAAEQAAAJEAAAARAAAAEQAAAAWAAACFgAAAxYAAAJEAAADRAAAA0QAAAFEAAADRAAAAkQAAAFEAAACRAAAAUQAAAFEAAABRAAAAUQAAABEAAACFgAAARYAAAIWAAAARAAAACYAAABEAAACRAAAA0QAAAEmAAAARAAAA0QAAABEAAABRAAAAl4AAABEAAAARAAAA14AAAAWAAAAFgAAAg== + tiles: UgAAAFIAAAFSAAABUgAAAVIAAABSAAADXwAAAEUAAAJFAAABRQAAA18AAABfAAAAXwAAAF8AAAAXAAAAFwAAAlIAAAJTAAABUwAAAFMAAANTAAACUgAAAl8AAABFAAAARQAAAkUAAANFAAAARQAAAEUAAAFFAAAARQAAAkUAAAJSAAADUwAAA1MAAABTAAACUwAAA1IAAANSAAADRQAAAycAAABFAAADRQAAAEUAAAFFAAACRQAAAEUAAANFAAAAUgAAA1IAAANSAAADUgAAAlIAAAJSAAABXwAAAEUAAANFAAACRQAAAkUAAANFAAADRQAAAEUAAAFFAAADRQAAAV8AAABfAAAAXwAAAFIAAAFSAAACXwAAAF8AAABFAAADRQAAAEUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAACXAAAAlwAAAJcAAABXAAAAFwAAABfAAAARQAAAEUAAAJFAAAAXwAAAEUAAANFAAACXwAAAEUAAAJFAAACXAAAAFwAAANcAAADXAAAAlwAAAJcAAADXwAAAEUAAAMnAAAARQAAAF8AAABFAAABRQAAA18AAABFAAADRQAAA1wAAABcAAABXAAAAVwAAAFcAAABXAAAAl8AAABFAAACRQAAA0UAAAJfAAAAXwAAAEUAAAJfAAAAXwAAAEUAAAEMAAACDAAAAwwAAAAMAAACDAAAAgwAAAAMAAACRQAAAEUAAAJFAAABXwAAAEUAAANFAAACRQAAAUUAAABFAAAAXAAAAVwAAAFcAAAADAAAAAwAAAEMAAADDAAAAUUAAAMnAAAARQAAA18AAABFAAAARQAAA0UAAAJFAAABRQAAAlwAAABcAAABXAAAAgwAAAFcAAACXAAAAl8AAABFAAACRQAAA0UAAANfAAAARQAAAkUAAANFAAAARQAAA0UAAAFcAAAAXAAAA1wAAAAMAAAAXAAAAF8AAABfAAAARQAAAUUAAABFAAABXwAAAEUAAAJFAAADXwAAAF8AAAAXAAACDAAAAgwAAAAMAAACDAAAAV8AAABfAAAARQAAAkUAAAJFAAADRQAAAV8AAABFAAADRQAAAV8AAAAXAAACFwAAAQwAAAEMAAACDAAAAl8AAABfAAAARQAAAEUAAAJFAAADJwAAAEUAAAJFAAAARQAAAEUAAAAXAAACFwAAAxcAAAJFAAADRQAAA0UAAAFFAAADRQAAAkUAAAFFAAACRQAAAUUAAAFFAAABRQAAAUUAAABFAAACFwAAARcAAAIXAAAARQAAACcAAABFAAACRQAAA0UAAAEnAAAARQAAA0UAAABFAAABRQAAAl8AAABFAAAARQAAA18AAAAXAAAAFwAAAg== -1,0: ind: -1,0 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAABEAAACXgAAAF4AAABeAAAAXgAAAEQAAANEAAAARAAAAkQAAAFEAAADRAAAAkQAAANEAAADRAAAAkQAAANEAAABRAAAAl4AAAAlAAAAJQAAAF4AAABEAAACRAAAAkQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABJgAAAEQAAAMlAAAAJQAAACUAAAAlAAAARAAAAkQAAAJEAAADRAAAAkQAAAFEAAAARAAAA0QAAABEAAABRAAAA0QAAAFEAAABXgAAACUAAAAlAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAACRAAAAl4AAABeAAAAXgAAAF4AAABSAAABUgAAA14AAABRAAAAUQAAA1YAAANSAAACUgAAA14AAABEAAAARAAAAEQAAAJeAAAAWwAAAlsAAANbAAACUgAAAlIAAAJeAAAAUQAAAlEAAAJWAAADUgAAAVIAAAJeAAAARAAAACYAAABEAAABXgAAAFsAAAJbAAABWwAAAlYAAANWAAADXgAAAFEAAAJRAAABXgAAAFYAAAFWAAAAXgAAAEQAAABEAAACRAAAAV4AAABbAAADWwAAA1sAAAJRAAADUQAAAFEAAANRAAABUQAAAl4AAABRAAABUQAAAVEAAAJEAAACRAAAAUQAAAMMAAADDAAAAwwAAAEMAAABUQAAAFEAAAJRAAAAUQAAAVEAAAFWAAABUQAAAlEAAABRAAAARAAAAiYAAABEAAACDAAAAQwAAAEMAAADDAAAAFEAAAJRAAAAUQAAAlEAAANRAAAAVgAAAlEAAAFRAAABUQAAAEQAAAFEAAAARAAAA14AAABbAAACWwAAAgwAAABRAAADUQAAA1EAAANRAAABUQAAAl4AAABRAAAAUQAAAFEAAAFEAAADRAAAAEQAAAFeAAAAXgAAAFsAAAIMAAAAUQAAAV4AAABeAAAAVgAAAl4AAABeAAAAVgAAAFYAAAFeAAAARAAAAUQAAAFEAAABRAAAAF4AAABeAAAADAAAA1EAAAJeAAAAVQAAA1UAAAFVAAABVQAAAVUAAAJVAAADXgAAAEQAAAEmAAAARAAAA0QAAABEAAAAXgAAAF4AAABRAAAAXgAAAFUAAABVAAACVQAAAFUAAANVAAAAVQAAAl4AAABEAAABRAAAAkQAAABEAAACRAAAAEQAAAJEAAAAUQAAAFYAAAJVAAABVQAAAVUAAABVAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAABRAAAAyYAAABEAAACRAAAAQ== + tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAABFAAACXwAAAF8AAABfAAAAXwAAAEUAAANFAAAARQAAAkUAAAFFAAADRQAAAkUAAANFAAADRQAAAkUAAANFAAABRQAAAl8AAAAmAAAAJgAAAF8AAABFAAACRQAAAkUAAAFFAAABRQAAAUUAAAFFAAABRQAAAUUAAAFFAAABJwAAAEUAAAMmAAAAJgAAACYAAAAmAAAARQAAAkUAAAJFAAADRQAAAkUAAAFFAAAARQAAA0UAAABFAAABRQAAA0UAAAFFAAABXwAAACYAAAAmAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAACRQAAAl8AAABfAAAAXwAAAF8AAABTAAABUwAAA18AAABSAAAAUgAAA1cAAANTAAACUwAAA18AAABFAAAARQAAAEUAAAJfAAAAXAAAAlwAAANcAAACUwAAAlMAAAJfAAAAUgAAAlIAAAJXAAADUwAAAVMAAAJfAAAARQAAACcAAABFAAABXwAAAFwAAAJcAAABXAAAAlcAAANXAAADXwAAAFIAAAJSAAABXwAAAFcAAAFXAAAAXwAAAEUAAABFAAACRQAAAV8AAABcAAADXAAAA1wAAAJSAAADUgAAAFIAAANSAAABUgAAAl8AAABSAAABUgAAAVIAAAJFAAACRQAAAUUAAAMMAAADDAAAAwwAAAEMAAABUgAAAFIAAAJSAAAAUgAAAVIAAAFXAAABUgAAAlIAAABSAAAARQAAAicAAABFAAACDAAAAQwAAAEMAAADDAAAAFIAAAJSAAAAUgAAAlIAAANSAAAAVwAAAlIAAAFSAAABUgAAAEUAAAFFAAAARQAAA18AAABcAAACXAAAAgwAAABSAAADUgAAA1IAAANSAAABUgAAAl8AAABSAAAAUgAAAFIAAAFFAAADRQAAAEUAAAFfAAAAXwAAAFwAAAIMAAAAUgAAAV8AAABfAAAAVwAAAl8AAABfAAAAVwAAAFcAAAFfAAAARQAAAUUAAAFFAAABRQAAAF8AAABfAAAADAAAA1IAAAJfAAAAVgAAA1YAAAFWAAABVgAAAVYAAAJWAAADXwAAAEUAAAEnAAAARQAAA0UAAABFAAAAXwAAAF8AAABSAAAAXwAAAFYAAABWAAACVgAAAFYAAANWAAAAVgAAAl8AAABFAAABRQAAAkUAAABFAAACRQAAAEUAAAJFAAAAUgAAAFcAAAJWAAABVgAAAVYAAABWAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAABRQAAAycAAABFAAACRQAAAQ== -1,-1: ind: -1,-1 - tiles: SgAAAkQAAAFeAAAARAAAAUQAAAAWAAADFgAAAxcAAAEXAAAAFwAAARcAAAIXAAAAXgAAAF4AAABeAAAAXgAAAEgAAANIAAADXgAAAEQAAABEAAADFgAAAhYAAAIXAAADFwAAARcAAAAXAAAAFwAAAV4AAABeAAAAXgAAAF4AAABIAAAASAAAAl4AAABEAAABRAAAAhYAAAAWAAADDwAAABoAAAEPAAAAFwAAAhcAAANeAAAAXgAAAE4AAABeAAAASAAAA0gAAANeAAAARAAAAUQAAAEWAAACFgAAAQ8AAAAaAAADDwAAABcAAAMXAAADXgAAAE4AAABeAAAAXgAAAEoAAAFEAAAAXgAAAEQAAAJEAAADFgAAARYAAAEPAAAAGgAAAQ8AAAAXAAABFwAAAV4AAABOAAAAXgAAAF4AAABIAAAASAAAAV4AAABEAAADRAAAAF4AAABeAAAAGwAAAhsAAAAbAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAASAAAAEgAAANeAAAARAAAA0QAAAJeAAAARAAAA0QAAABEAAACRAAAAUQAAAFEAAACRAAAAUQAAANEAAABRAAAAEgAAABIAAADXgAAAEQAAAJEAAABXgAAAEQAAABEAAABRAAAAEQAAAMmAAAARAAAAUQAAAJEAAAARAAAACYAAABeAAAAXgAAAF4AAABEAAABRAAAA14AAABEAAADRAAAAEQAAAFEAAAARAAAAEQAAAFEAAAARAAAAEQAAAJEAAABRAAAA0QAAANEAAACRAAAAkQAAABEAAABRAAAAkQAAABEAAAARAAAAEQAAAFEAAACXgAAAF4AAABeAAAAXgAAAEQAAAFEAAABRAAAAkQAAAJEAAAARAAAAkQAAAFEAAAARAAAA0QAAANEAAACRAAAA14AAAAdAAACHQAAAy4AAABEAAADRAAAA14AAAAbAAABGwAAAF4AAAAbAAACGwAAA14AAABEAAABRAAAAEQAAANeAAAAHQAAAR0AAAIuAAAARAAAAUQAAAJeAAAAFgAAAxYAAAEWAAABFgAAAhYAAAFeAAAARAAAAiYAAABEAAAAXgAAAC4AAAAuAAAALgAAAEQAAABEAAABXgAAABYAAAImAAAAJgAAACYAAAAWAAACXgAAAEQAAANEAAAARAAAAhsAAAEdAAACHQAAAx0AAANEAAABRAAAA14AAAAWAAACFgAAARYAAAAWAAABFgAAAl4AAABEAAADRAAAAEQAAABeAAAAHQAAAh0AAAMdAAABRAAAAUQAAABeAAAAFgAAAhYAAAIPAAAADwAAAA8AAABeAAAARAAAAUQAAAJEAAADXgAAAB0AAAMdAAAAXgAAAA== + tiles: SwAAAkUAAAFfAAAARQAAAUUAAAAXAAADFwAAAxgAAAEYAAAAGAAAARgAAAIYAAAAXwAAAF8AAABfAAAAXwAAAEkAAANJAAADXwAAAEUAAABFAAADFwAAAhcAAAIYAAADGAAAARgAAAAYAAAAGAAAAV8AAABfAAAAXwAAAF8AAABJAAAASQAAAl8AAABFAAABRQAAAhcAAAAXAAADDwAAABsAAAEPAAAAGAAAAhgAAANfAAAAXwAAAE8AAABfAAAASQAAA0kAAANfAAAARQAAAUUAAAEXAAACFwAAAQ8AAAAbAAADDwAAABgAAAMYAAADXwAAAE8AAABfAAAAXwAAAEsAAAFFAAAAXwAAAEUAAAJFAAADFwAAARcAAAEPAAAAGwAAAQ8AAAAYAAABGAAAAV8AAABPAAAAXwAAAF8AAABJAAAASQAAAV8AAABFAAADRQAAAF8AAABfAAAAHAAAAhwAAAAcAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASQAAAEkAAANfAAAARQAAA0UAAAJfAAAARQAAA0UAAABFAAACRQAAAUUAAAFFAAACRQAAAUUAAANFAAABRQAAAEkAAABJAAADXwAAAEUAAAJFAAABXwAAAEUAAABFAAABRQAAAEUAAAMnAAAARQAAAUUAAAJFAAAARQAAACcAAABfAAAAXwAAAF8AAABFAAABRQAAA18AAABFAAADRQAAAEUAAAFFAAAARQAAAEUAAAFFAAAARQAAAEUAAAJFAAABRQAAA0UAAANFAAACRQAAAkUAAABFAAABRQAAAkUAAABFAAAARQAAAEUAAAFFAAACXwAAAF8AAABfAAAAXwAAAEUAAAFFAAABRQAAAkUAAAJFAAAARQAAAkUAAAFFAAAARQAAA0UAAANFAAACRQAAA18AAAAeAAACHgAAAy8AAABFAAADRQAAA18AAAAcAAABHAAAAF8AAAAcAAACHAAAA18AAABFAAABRQAAAEUAAANfAAAAHgAAAR4AAAIvAAAARQAAAUUAAAJfAAAAFwAAAxcAAAEXAAABFwAAAhcAAAFfAAAARQAAAicAAABFAAAAXwAAAC8AAAAvAAAALwAAAEUAAABFAAABXwAAABcAAAInAAAAJwAAACcAAAAXAAACXwAAAEUAAANFAAAARQAAAhwAAAEeAAACHgAAAx4AAANFAAABRQAAA18AAAAXAAACFwAAARcAAAAXAAABFwAAAl8AAABFAAADRQAAAEUAAABfAAAAHgAAAh4AAAMeAAABRQAAAUUAAABfAAAAFwAAAhcAAAIPAAAADwAAAA8AAABfAAAARQAAAUUAAAJFAAADXwAAAB4AAAMeAAAAXwAAAA== 0,-1: ind: 0,-1 - tiles: RAAAAkQAAAJEAAABXgAAAFsAAANbAAADWwAAAV4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAAXgAAAEQAAABEAAADRAAAAV4AAABbAAACWwAAAVsAAANeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABEAAAARAAAAUQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAABEAAADRAAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAUQAAAJEAAABXgAAAEQAAABEAAACRAAAAkQAAAJeAAAAXgAAAF4AAABOAAAATgAAAF4AAABeAAAARAAAAkQAAABEAAABRAAAA0QAAANEAAADRAAAAEQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAAARAAAAkQAAABEAAABRAAAAUQAAABEAAAARAAAAEQAAAJEAAABRAAAAEQAAAFEAAABRAAAAV4AAABeAAAASgAAAF4AAABeAAAAXgAAAEQAAABEAAADRAAAACYAAABEAAAARAAAA0QAAAJEAAABJgAAAEQAAAFEAAACRAAAA0QAAAFEAAADXgAAAEQAAABEAAACRAAAA0QAAABEAAACRAAAAEQAAABEAAAARAAAAUQAAANEAAAARAAAAUQAAAJEAAAARAAAAEoAAABEAAACXgAAAF4AAABeAAAALgAAAF4AAABeAAAAXgAAAEQAAAFEAAAARAAAA0QAAABEAAACRAAAAEQAAAFKAAAARAAAAR0AAAIdAAAAHQAAAy4AAAAdAAAAHQAAA14AAABEAAAARAAAAkQAAANEAAAARAAAA0QAAANEAAADXgAAAEoAAAEdAAABHQAAAx0AAAEuAAAAHQAAAR0AAAFeAAAARAAAAUQAAANEAAAARAAAAkQAAAJEAAAARAAAAV4AAABEAAABLgAAAC4AAAAuAAAALgAAAC4AAAAuAAAALgAAAEQAAAEmAAAARAAAA14AAABeAAAAXgAAAF4AAABeAAAADwAAAB0AAAAdAAAAHQAAAC4AAAAdAAAAHQAAA14AAABEAAABRAAAAkQAAANeAAAALgAAAC4AAAAuAAAAXgAAAF4AAAAuAAAALgAAAC4AAAAuAAAALgAAAC4AAABeAAAARAAAAkQAAAFEAAACLgAAAC4AAAAuAAAALgAAABYAAAMWAAABXgAAAF4AAABeAAAALgAAAC4AAABeAAAAXgAAAEQAAANEAAAARAAAAF4AAAAuAAAALgAAAC4AAAAWAAABFgAAAg== + tiles: RQAAAkUAAAJFAAABXwAAAFwAAANcAAADXAAAAV8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAAXwAAAEUAAABFAAADRQAAAV8AAABcAAACXAAAAVwAAANfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABFAAAARQAAAUUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAABFAAADRQAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAUUAAAJFAAABXwAAAEUAAABFAAACRQAAAkUAAAJfAAAAXwAAAF8AAABPAAAATwAAAF8AAABfAAAARQAAAkUAAABFAAABRQAAA0UAAANFAAADRQAAAEUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAAARQAAAkUAAABFAAABRQAAAUUAAABFAAAARQAAAEUAAAJFAAABRQAAAEUAAAFFAAABRQAAAV8AAABfAAAASwAAAF8AAABfAAAAXwAAAEUAAABFAAADRQAAACcAAABFAAAARQAAA0UAAAJFAAABJwAAAEUAAAFFAAACRQAAA0UAAAFFAAADXwAAAEUAAABFAAACRQAAA0UAAABFAAACRQAAAEUAAABFAAAARQAAAUUAAANFAAAARQAAAUUAAAJFAAAARQAAAEsAAABFAAACXwAAAF8AAABfAAAALwAAAF8AAABfAAAAXwAAAEUAAAFFAAAARQAAA0UAAABFAAACRQAAAEUAAAFLAAAARQAAAR4AAAIeAAAAHgAAAy8AAAAeAAAAHgAAA18AAABFAAAARQAAAkUAAANFAAAARQAAA0UAAANFAAADXwAAAEsAAAEeAAABHgAAAx4AAAEvAAAAHgAAAR4AAAFfAAAARQAAAUUAAANFAAAARQAAAkUAAAJFAAAARQAAAV8AAABFAAABLwAAAC8AAAAvAAAALwAAAC8AAAAvAAAALwAAAEUAAAEnAAAARQAAA18AAABfAAAAXwAAAF8AAABfAAAADwAAAB4AAAAeAAAAHgAAAC8AAAAeAAAAHgAAA18AAABFAAABRQAAAkUAAANfAAAALwAAAC8AAAAvAAAAXwAAAF8AAAAvAAAALwAAAC8AAAAvAAAALwAAAC8AAABfAAAARQAAAkUAAAFFAAACLwAAAC8AAAAvAAAALwAAABcAAAMXAAABXwAAAF8AAABfAAAALwAAAC8AAABfAAAAXwAAAEUAAANFAAAARQAAAF8AAAAvAAAALwAAAC8AAAAXAAABFwAAAg== -1,1: ind: -1,1 - tiles: UQAAAF4AAABVAAACVQAAAlUAAANVAAABXgAAAF4AAABeAAAAXgAAAEQAAAJEAAACRAAAA0QAAAFEAAAARAAAA1YAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAl4AAABEAAAARAAAA0QAAAFRAAAAUQAAAlEAAABRAAACUgAAA1IAAAFeAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUQAAAlEAAANRAAAAUQAAA1IAAABSAAABXgAAAF4AAABOAAAAXgAAAFsAAAJbAAAAXgAAAFsAAANbAAABWwAAA1EAAAFRAAABUQAAA1EAAAFSAAACUgAAAF4AAABOAAAAXgAAAF4AAABbAAABWwAAAFsAAANbAAACWwAAAlsAAANRAAABUQAAAlEAAANRAAABUgAAAFIAAAJeAAAAXgAAAE4AAABeAAAAWwAAAlsAAAFeAAAAWwAAAlsAAABbAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAAE4AAABOAAAAXgAAAF4AAABeAAAAOgAAADoAAAA6AAAAOgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAMWAAACFgAAADoAAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAPAAAAFgAAAhYAAAM6AAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAEQAAANEAAACRAAAA14AAABeAAAAXgAAABYAAAFeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAARAAAAkQAAABEAAAARAAAAEQAAABeAAAARAAAA0QAAANEAAABRAAAAUQAAAJEAAABXgAAAE4AAABeAAAAXgAAAEQAAAFEAAAARAAAAUQAAAFEAAAAXgAAAEQAAAJEAAABRAAAAkQAAAJEAAADRAAAAV4AAABeAAAAXgAAAF4AAABEAAAARAAAA0QAAANEAAADRAAAAkQAAAFEAAAARAAAA0QAAAJEAAACRAAAAkQAAAJEAAADRAAAAkQAAAFEAAACRAAAAEQAAANEAAADRAAAAUQAAAJeAAAARAAAA0QAAAFEAAABRAAAA0QAAAFEAAABXgAAAEQAAABEAAADXgAAAEQAAANEAAABRAAAAUQAAAFEAAABXgAAAEQAAAFEAAABRAAAAEQAAABEAAACRAAAAw== + tiles: UgAAAF8AAABWAAACVgAAAlYAAANWAAABXwAAAF8AAABfAAAAXwAAAEUAAAJFAAACRQAAA0UAAAFFAAAARQAAA1cAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAl8AAABFAAAARQAAA0UAAAFSAAAAUgAAAlIAAABSAAACUwAAA1MAAAFfAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAAlIAAANSAAAAUgAAA1MAAABTAAABXwAAAF8AAABPAAAAXwAAAFwAAAJcAAAAXwAAAFwAAANcAAABXAAAA1IAAAFSAAABUgAAA1IAAAFTAAACUwAAAF8AAABPAAAAXwAAAF8AAABcAAABXAAAAFwAAANcAAACXAAAAlwAAANSAAABUgAAAlIAAANSAAABUwAAAFMAAAJfAAAAXwAAAE8AAABfAAAAXAAAAlwAAAFfAAAAXAAAAlwAAABcAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAE8AAABfAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAOwAAADsAAAA7AAAAOwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAMXAAACFwAAADsAAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAPAAAAFwAAAhcAAAM7AAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAEUAAANFAAACRQAAA18AAABfAAAAXwAAABcAAAFfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAARQAAAkUAAABFAAAARQAAAEUAAABfAAAARQAAA0UAAANFAAABRQAAAUUAAAJFAAABXwAAAE8AAABfAAAAXwAAAEUAAAFFAAAARQAAAUUAAAFFAAAAXwAAAEUAAAJFAAABRQAAAkUAAAJFAAADRQAAAV8AAABfAAAAXwAAAF8AAABFAAAARQAAA0UAAANFAAADRQAAAkUAAAFFAAAARQAAA0UAAAJFAAACRQAAAkUAAAJFAAADRQAAAkUAAAFFAAACRQAAAEUAAANFAAADRQAAAUUAAAJfAAAARQAAA0UAAAFFAAABRQAAA0UAAAFFAAABXwAAAEUAAABFAAADXwAAAEUAAANFAAABRQAAAUUAAAFFAAABXwAAAEUAAAFFAAABRQAAAEUAAABFAAACRQAAAw== 0,1: ind: 0,1 - tiles: RAAAAkQAAANEAAAARAAAAEQAAAFEAAAARAAAAkQAAAFEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAABXgAAAF4AAABEAAADXgAAAF4AAABEAAABRAAAAl4AAABOAAAATgAAAF4AAABOAAAAXgAAAF4AAABbAAAAXgAAAF4AAABEAAACRAAAAUQAAANeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAATgAAAF4AAABeAAAAWwAAAlsAAABeAAAARAAAAkQAAAJEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAABbAAABXgAAAF4AAABEAAADXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAABYAAAFeAAAAFgAAAxYAAABbAAADWwAAAFsAAABEAAABRAAAAUQAAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAAAWAAAAFgAAAl4AAAAWAAADXgAAAF4AAABeAAAARAAAA0QAAAFEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAA0QAAAFEAAAARAAAAEQAAAFEAAACRAAAA14AAABOAAAAXgAAAF4AAAAWAAACFgAAABYAAAEWAAAAXgAAAF4AAABEAAAARAAAAkQAAAJEAAAARAAAAUQAAAJeAAAAXgAAAE4AAABeAAAAFgAAARYAAAIWAAACFgAAA14AAABeAAAARAAAAUQAAAJEAAAARAAAAkQAAABEAAACXgAAAF4AAABeAAAAXgAAAF4AAAAWAAADFgAAABYAAAJeAAAAFgAAAEQAAANEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAAFgAAAxYAAAEWAAACXgAAAF4AAABEAAACRAAAA14AAABbAAABWwAAA1sAAAFeAAAAXgAAAE4AAABeAAAAXgAAABYAAAIWAAAAFgAAAV4AAAAWAAADRAAAAEQAAAEWAAADWwAAAVsAAAJbAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAAAXgAAAFsAAAFbAAAAWwAAAV4AAABeAAAATgAAAF4AAABeAAAATgAAAF4AAABOAAAATgAAAE4AAABEAAABRAAAAV4AAABbAAADWwAAAFsAAANeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABOAAAAXgAAAF4AAABOAAAARAAAAUQAAANeAAAAWwAAAFsAAABbAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAA== + tiles: RQAAAkUAAANFAAAARQAAAEUAAAFFAAAARQAAAkUAAAFFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAABXwAAAF8AAABFAAADXwAAAF8AAABFAAABRQAAAl8AAABPAAAATwAAAF8AAABPAAAAXwAAAF8AAABcAAAAXwAAAF8AAABFAAACRQAAAUUAAANfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAATwAAAF8AAABfAAAAXAAAAlwAAABfAAAARQAAAkUAAAJFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAABcAAABXwAAAF8AAABFAAADXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAABcAAAFfAAAAFwAAAxcAAABcAAADXAAAAFwAAABFAAABRQAAAUUAAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAAAXAAAAFwAAAl8AAAAXAAADXwAAAF8AAABfAAAARQAAA0UAAAFFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAA0UAAAFFAAAARQAAAEUAAAFFAAACRQAAA18AAABPAAAAXwAAAF8AAAAXAAACFwAAABcAAAEXAAAAXwAAAF8AAABFAAAARQAAAkUAAAJFAAAARQAAAUUAAAJfAAAAXwAAAE8AAABfAAAAFwAAARcAAAIXAAACFwAAA18AAABfAAAARQAAAUUAAAJFAAAARQAAAkUAAABFAAACXwAAAF8AAABfAAAAXwAAAF8AAAAXAAADFwAAABcAAAJfAAAAFwAAAEUAAANFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAAFwAAAxcAAAEXAAACXwAAAF8AAABFAAACRQAAA18AAABcAAABXAAAA1wAAAFfAAAAXwAAAE8AAABfAAAAXwAAABcAAAIXAAAAFwAAAV8AAAAXAAADRQAAAEUAAAEXAAADXAAAAVwAAAJcAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAAAXwAAAFwAAAFcAAAAXAAAAV8AAABfAAAATwAAAF8AAABfAAAATwAAAF8AAABPAAAATwAAAE8AAABFAAABRQAAAV8AAABcAAADXAAAAFwAAANfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABPAAAAXwAAAF8AAABPAAAARQAAAUUAAANfAAAAXAAAAFwAAABcAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAA== -2,0: ind: -2,0 - tiles: RAAAAkQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAACRAAAA0QAAAJEAAADRAAAA0QAAAJEAAACRAAAAkQAAAFEAAAARAAAAkQAAANEAAABRAAAAUQAAABEAAADRAAAAUQAAABEAAAARAAAAkQAAAFEAAADRAAAAUQAAAJEAAABRAAAAUQAAAJEAAACRAAAAEQAAANEAAABRAAAAEQAAANEAAAARAAAAkQAAANEAAADRAAAAUQAAANEAAABRAAAAUQAAAFEAAAARAAAAkQAAANEAAAARAAAAl4AAABeAAAARAAAAUQAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAABXgAAAF4AAABeAAAAXgAAAFQAAABUAAADVAAAAVQAAANeAAAAUgAAA1IAAAJeAAAAUgAAAFIAAANeAAAAWwAAAV4AAABOAAAAXgAAAF4AAABUAAACVAAAAVQAAABUAAAAXgAAAFIAAAFSAAACXgAAAFIAAANSAAADXgAAAFsAAAFeAAAAXgAAAE4AAABeAAAAVAAAAVQAAANUAAAAVAAAAF4AAABWAAADVgAAAF4AAABWAAABVgAAAV4AAABbAAADXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAVgAAA14AAABeAAAAUQAAAFEAAAJRAAADUQAAAlEAAANRAAACWwAAAV4AAABOAAAAXgAAAF4AAABRAAADUQAAAlEAAANRAAACUQAAAFEAAANRAAADUQAAAVEAAANRAAADUQAAAVsAAABeAAAAXgAAAF4AAABeAAAAUQAAAlEAAAFRAAADUQAAA1EAAAJRAAADUQAAA1EAAABRAAADUQAAA1EAAABbAAAAXgAAAF4AAABOAAAAXgAAAFEAAABRAAABUQAAAFEAAANRAAABUQAAAVEAAAFRAAADUQAAAFEAAAFRAAACXgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAAAbAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUQAAADEAAABeAAAATgAAAF4AAABeAAAAFwAAARcAAAIXAAACFwAAAhcAAANeAAAAFgAAAhYAAAEWAAABXgAAAFEAAAMxAAAAXgAAAE4AAABeAAAAXgAAABcAAAEXAAAAFwAAABcAAAAXAAADXgAAABYAAAMWAAACFgAAAF4AAABRAAACMQAAAF4AAABeAAAAXgAAAF4AAAAXAAAAFwAAAxcAAAAXAAADFwAAAF4AAAAWAAADFgAAAxYAAAIbAAAAUQAAAg== + tiles: RQAAAkUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAACRQAAA0UAAAJFAAADRQAAA0UAAAJFAAACRQAAAkUAAAFFAAAARQAAAkUAAANFAAABRQAAAUUAAABFAAADRQAAAUUAAABFAAAARQAAAkUAAAFFAAADRQAAAUUAAAJFAAABRQAAAUUAAAJFAAACRQAAAEUAAANFAAABRQAAAEUAAANFAAAARQAAAkUAAANFAAADRQAAAUUAAANFAAABRQAAAUUAAAFFAAAARQAAAkUAAANFAAAARQAAAl8AAABfAAAARQAAAUUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAABXwAAAF8AAABfAAAAXwAAAFUAAABVAAADVQAAAVUAAANfAAAAUwAAA1MAAAJfAAAAUwAAAFMAAANfAAAAXAAAAV8AAABPAAAAXwAAAF8AAABVAAACVQAAAVUAAABVAAAAXwAAAFMAAAFTAAACXwAAAFMAAANTAAADXwAAAFwAAAFfAAAAXwAAAE8AAABfAAAAVQAAAVUAAANVAAAAVQAAAF8AAABXAAADVwAAAF8AAABXAAABVwAAAV8AAABcAAADXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAVwAAA18AAABfAAAAUgAAAFIAAAJSAAADUgAAAlIAAANSAAACXAAAAV8AAABPAAAAXwAAAF8AAABSAAADUgAAAlIAAANSAAACUgAAAFIAAANSAAADUgAAAVIAAANSAAADUgAAAVwAAABfAAAAXwAAAF8AAABfAAAAUgAAAlIAAAFSAAADUgAAA1IAAAJSAAADUgAAA1IAAABSAAADUgAAA1IAAABcAAAAXwAAAF8AAABPAAAAXwAAAFIAAABSAAABUgAAAFIAAANSAAABUgAAAVIAAAFSAAADUgAAAFIAAAFSAAACXwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAAAcAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAADIAAABfAAAATwAAAF8AAABfAAAAGAAAARgAAAIYAAACGAAAAhgAAANfAAAAFwAAAhcAAAEXAAABXwAAAFIAAAMyAAAAXwAAAE8AAABfAAAAXwAAABgAAAEYAAAAGAAAABgAAAAYAAADXwAAABcAAAMXAAACFwAAAF8AAABSAAACMgAAAF8AAABfAAAAXwAAAF8AAAAYAAAAGAAAAxgAAAAYAAADGAAAAF8AAAAXAAADFwAAAxcAAAIcAAAAUgAAAg== 1,0: ind: 1,0 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAABRAAAAEQAAANEAAAARAAAA0QAAANEAAABXgAAAEQAAABEAAABRAAAAEQAAABEAAABRAAAA0QAAAJEAAADRAAAA0QAAAFEAAADRAAAAEQAAAJEAAACRAAAA0QAAAFEAAAARAAAAUQAAABEAAACRAAAAEQAAAFEAAACRAAAA0QAAABEAAABRAAAAkQAAABEAAABRAAAAUQAAAJEAAADRAAAAUQAAABEAAAARAAAAEQAAABEAAADRAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAANeAAAARAAAAkQAAAFEAAADRAAAAl4AAABbAAABWwAAAVsAAABbAAABXgAAAF4AAABeAAAAXgAAAEQAAANEAAABXgAAAEQAAABEAAAARAAAAUQAAANeAAAAWwAAA1sAAAJbAAAAWwAAAV4AAABOAAAAXgAAAF4AAABeAAAARAAAA14AAABEAAADRAAAAUQAAAFEAAACXgAAAF4AAABbAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAUQAAANEAAACRAAAAUQAAABEAAACRAAAAEQAAANEAAADRAAAAUQAAABEAAABRAAAAEQAAANEAAAARAAAAUQAAAJEAAAARAAAAkQAAAJEAAABRAAAA0QAAABEAAAARAAAAUQAAAJEAAAARAAAA0QAAAFEAAABRAAAA0QAAABEAAABRAAAAkQAAAFEAAAARAAAAEQAAAJEAAAARAAAAUQAAAFEAAABRAAAAEQAAAFEAAADRAAAAkQAAANeAAAAXgAAAF4AAABeAAAARAAAAkQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAAFgAAA14AAABEAAADRAAAAEQAAABEAAACRAAAA0QAAAJeAAAAFgAAAxYAAAMWAAABFgAAAhYAAAJeAAAARAAAARYAAANeAAAARAAAAUQAAABEAAADRAAAAEQAAAJEAAAAXgAAABYAAAIWAAADFgAAARYAAAAWAAAAFgAAAkQAAAMWAAAAXgAAAEQAAAJEAAACRAAAAUQAAAFEAAADRAAAAV4AAAAWAAAAFgAAABYAAAEWAAABFgAAAl4AAABEAAAAFgAAA14AAABEAAACRAAAA0QAAANEAAABRAAAAEQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAg== + tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAABRQAAAEUAAANFAAAARQAAA0UAAANFAAABXwAAAEUAAABFAAABRQAAAEUAAABFAAABRQAAA0UAAAJFAAADRQAAA0UAAAFFAAADRQAAAEUAAAJFAAACRQAAA0UAAAFFAAAARQAAAUUAAABFAAACRQAAAEUAAAFFAAACRQAAA0UAAABFAAABRQAAAkUAAABFAAABRQAAAUUAAAJFAAADRQAAAUUAAABFAAAARQAAAEUAAABFAAADRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAANfAAAARQAAAkUAAAFFAAADRQAAAl8AAABcAAABXAAAAVwAAABcAAABXwAAAF8AAABfAAAAXwAAAEUAAANFAAABXwAAAEUAAABFAAAARQAAAUUAAANfAAAAXAAAA1wAAAJcAAAAXAAAAV8AAABPAAAAXwAAAF8AAABfAAAARQAAA18AAABFAAADRQAAAUUAAAFFAAACXwAAAF8AAABcAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAUUAAANFAAACRQAAAUUAAABFAAACRQAAAEUAAANFAAADRQAAAUUAAABFAAABRQAAAEUAAANFAAAARQAAAUUAAAJFAAAARQAAAkUAAAJFAAABRQAAA0UAAABFAAAARQAAAUUAAAJFAAAARQAAA0UAAAFFAAABRQAAA0UAAABFAAABRQAAAkUAAAFFAAAARQAAAEUAAAJFAAAARQAAAUUAAAFFAAABRQAAAEUAAAFFAAADRQAAAkUAAANfAAAAXwAAAF8AAABfAAAARQAAAkUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAAFwAAA18AAABFAAADRQAAAEUAAABFAAACRQAAA0UAAAJfAAAAFwAAAxcAAAMXAAABFwAAAhcAAAJfAAAARQAAARcAAANfAAAARQAAAUUAAABFAAADRQAAAEUAAAJFAAAAXwAAABcAAAIXAAADFwAAARcAAAAXAAAAFwAAAkUAAAMXAAAAXwAAAEUAAAJFAAACRQAAAUUAAAFFAAADRQAAAV8AAAAXAAAAFwAAABcAAAEXAAABFwAAAl8AAABFAAAAFwAAA18AAABFAAACRQAAA0UAAANFAAABRQAAAEUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAg== 0,-2: ind: 0,-2 - tiles: RAAAA0QAAAJEAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAABRAAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAEQAAAJeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAANEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAAARAAAAl4AAABEAAAARAAAAkQAAAFeAAAARAAAAUQAAAJEAAACRAAAAUQAAAFEAAAARAAAAUQAAABEAAAARAAAAEQAAABeAAAARAAAAEQAAAFEAAACSgAAA0QAAANEAAAARAAAAEQAAAFEAAABRAAAAEQAAANEAAADRAAAAEQAAAJEAAABXgAAAEQAAAJEAAACRAAAA14AAABEAAACRAAAAEQAAABEAAABRAAAAUQAAABEAAAARAAAAUQAAAFEAAACRAAAAV4AAABeAAAASgAAA14AAABeAAAAXgAAAEoAAAJKAAACXgAAAF4AAABEAAACRAAAA0QAAABEAAABRAAAAkQAAAJEAAACRAAAA0QAAAJEAAADSgAAA0QAAABEAAABRAAAAUQAAAFeAAAARAAAAEQAAANEAAACRAAAA0QAAAFEAAADRAAAAEQAAAJEAAABRAAAAl4AAABEAAADRAAAAUQAAANEAAAASgAAAUQAAAFEAAAARAAAAEQAAAJEAAACRAAAAEQAAANEAAACRAAAAUQAAANKAAADRAAAAEQAAANEAAACRAAAAEoAAANEAAABRAAAAUQAAABEAAADRAAAAkQAAAJEAAABRAAAAUQAAANEAAAASgAAAEQAAANEAAACRAAAA0QAAANeAAAARAAAA0QAAAFEAAABRAAAAkQAAAFEAAABRAAAAUQAAAFEAAABRAAAAV4AAABEAAABRAAAAUQAAANEAAACXgAAAF4AAABeAAAAXgAAAEQAAANEAAAARAAAA14AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAJEAAADRAAAAF4AAABeAAAAXgAAAE4AAABEAAABRAAAAUQAAABeAAAAWwAAAFsAAANbAAABWwAAAEQAAABEAAABRAAAAkQAAANeAAAAXgAAAF4AAABOAAAARAAAAkQAAABEAAABXgAAAFsAAABbAAABWwAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAA== + tiles: RQAAA0UAAAJFAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAABRQAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABRQAAAEUAAAJfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAANFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAAARQAAAl8AAABFAAAARQAAAkUAAAFfAAAARQAAAUUAAAJFAAACRQAAAUUAAAFFAAAARQAAAUUAAABFAAAARQAAAEUAAABfAAAARQAAAEUAAAFFAAACSwAAA0UAAANFAAAARQAAAEUAAAFFAAABRQAAAEUAAANFAAADRQAAAEUAAAJFAAABXwAAAEUAAAJFAAACRQAAA18AAABFAAACRQAAAEUAAABFAAABRQAAAUUAAABFAAAARQAAAUUAAAFFAAACRQAAAV8AAABfAAAASwAAA18AAABfAAAAXwAAAEsAAAJLAAACXwAAAF8AAABFAAACRQAAA0UAAABFAAABRQAAAkUAAAJFAAACRQAAA0UAAAJFAAADSwAAA0UAAABFAAABRQAAAUUAAAFfAAAARQAAAEUAAANFAAACRQAAA0UAAAFFAAADRQAAAEUAAAJFAAABRQAAAl8AAABFAAADRQAAAUUAAANFAAAASwAAAUUAAAFFAAAARQAAAEUAAAJFAAACRQAAAEUAAANFAAACRQAAAUUAAANLAAADRQAAAEUAAANFAAACRQAAAEsAAANFAAABRQAAAUUAAABFAAADRQAAAkUAAAJFAAABRQAAAUUAAANFAAAASwAAAEUAAANFAAACRQAAA0UAAANfAAAARQAAA0UAAAFFAAABRQAAAkUAAAFFAAABRQAAAUUAAAFFAAABRQAAAV8AAABFAAABRQAAAUUAAANFAAACXwAAAF8AAABfAAAAXwAAAEUAAANFAAAARQAAA18AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAJFAAADRQAAAF8AAABfAAAAXwAAAE8AAABFAAABRQAAAUUAAABfAAAAXAAAAFwAAANcAAABXAAAAEUAAABFAAABRQAAAkUAAANfAAAAXwAAAF8AAABPAAAARQAAAkUAAABFAAABXwAAAFwAAABcAAABXAAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAA== -2,1: ind: -2,1 - tiles: MQAAAF4AAABeAAAATgAAAF4AAAAXAAAAFwAAAhcAAAEXAAADFwAAAF4AAAAWAAAAFgAAARYAAAFeAAAAUQAAAV4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFYAAABOAAAAXgAAAF4AAABOAAAAXgAAAE4AAABeAAAATgAAAF4AAABOAAAAXgAAAE4AAABOAAAAXgAAAFEAAANRAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABRAAADUQAAAF4AAABeAAAATgAAAE4AAABeAAAAUQAAACkAAANRAAACUQAAACkAAAFeAAAATgAAAF4AAABeAAAAUQAAAlEAAAFOAAAAXgAAAF4AAABOAAAAXgAAAFEAAAJeAAAAKQAAAl4AAABRAAAAXgAAAE4AAABOAAAAXgAAAFEAAAJRAAACXgAAAF4AAABOAAAAXgAAAF4AAAApAAABUQAAAVEAAAIpAAAAKQAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAE4AAABeAAAAKQAAA1EAAAFeAAAAUQAAAF4AAABeAAAAXgAAAE4AAABeAAAATgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABRAAAAKQAAAykAAANeAAAAXgAAAE4AAABeAAAAXgAAAE4AAABeAAAATgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABdAAAAXgAAAE4AAABeAAAAXgAAAE4AAABOAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAATgAAAF4AAABOAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAA== + tiles: MgAAAF8AAABfAAAATwAAAF8AAAAYAAAAGAAAAhgAAAEYAAADGAAAAF8AAAAXAAAAFwAAARcAAAFfAAAAUgAAAV8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFcAAABPAAAAXwAAAF8AAABPAAAAXwAAAE8AAABfAAAATwAAAF8AAABPAAAAXwAAAE8AAABPAAAAXwAAAFIAAANSAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABSAAADUgAAAF8AAABfAAAATwAAAE8AAABfAAAAUgAAACoAAANSAAACUgAAACoAAAFfAAAATwAAAF8AAABfAAAAUgAAAlIAAAFPAAAAXwAAAF8AAABPAAAAXwAAAFIAAAJfAAAAKgAAAl8AAABSAAAAXwAAAE8AAABPAAAAXwAAAFIAAAJSAAACXwAAAF8AAABPAAAAXwAAAF8AAAAqAAABUgAAAVIAAAIqAAAAKgAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAE8AAABfAAAAKgAAA1IAAAFfAAAAUgAAAF8AAABfAAAAXwAAAE8AAABfAAAATwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABSAAAAKgAAAyoAAANfAAAAXwAAAE8AAABfAAAAXwAAAE8AAABfAAAATwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABeAAAAXwAAAE8AAABfAAAAXwAAAE8AAABPAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAATwAAAF8AAABPAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAA== 0,2: ind: 0,2 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABOAAAATgAAAF4AAABeAAAATgAAAF4AAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAABeAAAATgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABPAAAATwAAAF8AAABfAAAATwAAAF8AAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAABfAAAATwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,2: ind: -1,2 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAAFEAAAARAAAAgAAAABdAAAAXQAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXQAAAF0AAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAAAAAABdAAAAXQAAAAAAAABdAAAAXQAAAF4AAABdAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXQAAAAAAAABdAAAAAAAAAF4AAABeAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAAAAAAAAAAABdAAAAXQAAAF0AAABeAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABeAAAAXgAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF4AAABeAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABdAAAAXQAAAAAAAABeAAAAXgAAAF4AAABEAAAARAAAAUQAAAJeAAAAFgAAAhYAAAIWAAABTgAAAAAAAABdAAAAXQAAAAAAAAAAAAAAXgAAAF4AAABeAAAARAAAAkQAAABEAAABFgAAARYAAAIWAAAAFgAAA04AAAAAAAAAXQAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAAARAAAA14AAAAWAAADFgAAAxYAAAFOAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAV4AAABeAAAAXgAAAF4AAABOAAAATgAAAA== + tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAAFFAAAARQAAAgAAAABeAAAAXgAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXgAAAF4AAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAAAAAABeAAAAXgAAAAAAAABeAAAAXgAAAF8AAABeAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAXgAAAAAAAABeAAAAAAAAAF8AAABfAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAAAAAAAAAAABeAAAAXgAAAF4AAABfAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXwAAAF8AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABfAAAAXwAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF8AAABfAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAABeAAAAXgAAAAAAAABfAAAAXwAAAF8AAABFAAAARQAAAUUAAAJfAAAAFwAAAhcAAAIXAAABTwAAAAAAAABeAAAAXgAAAAAAAAAAAAAAXwAAAF8AAABfAAAARQAAAkUAAABFAAABFwAAARcAAAIXAAAAFwAAA08AAAAAAAAAXgAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAAARQAAA18AAAAXAAADFwAAAxcAAAFPAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAV8AAABfAAAAXwAAAF8AAABPAAAATwAAAA== -2,2: ind: -2,2 - tiles: XQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -2,-1: ind: -2,-1 - tiles: WwAAAFsAAABbAAAAWwAAAF4AAABeAAAAXgAAAE4AAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABKAAACSgAAAV4AAAAWAAADFgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF0AAABeAAAAOgAAADoAAABeAAAASAAAAEoAAAAWAAADFgAAARYAAAFeAAAAFgAAA14AAABOAAAAXgAAAF4AAABdAAAAXgAAADoAAAA6AAAAOgAAAEgAAAJIAAACFgAAAF4AAAAWAAABFgAAAhYAAAFeAAAAXgAAAF4AAABeAAAAXQAAAF4AAAA6AAAAOgAAAF4AAABIAAAASgAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAASgAAA0oAAANOAAAATgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABdAAAAXgAAADoAAAA6AAAAXgAAAEgAAAFKAAABXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXQAAAF4AAAA6AAAAOgAAADoAAABIAAAASAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAOgAAADoAAABeAAAASAAAAkoAAAMXAAADFwAAAF4AAABEAAABRAAAAEQAAANEAAACRAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAAFwAAAhcAAAMXAAABRAAAAUQAAANEAAAARAAAAEQAAAJEAAAARAAAAEQAAAFEAAABRAAAA0QAAAFEAAABRAAAAxcAAAAXAAADXgAAAEQAAABEAAABRAAAA0QAAAFEAAABRAAAA0QAAAFEAAADRAAAAEQAAABEAAADRAAAAEQAAAAXAAACFwAAAV4AAABeAAAAXgAAABYAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAFEAAAAXgAAAF4AAABeAAAAFgAAAxYAAAMWAAADFgAAARYAAABeAAAAWwAAA1sAAAFbAAAAXgAAAEQAAANEAAAARAAAAk4AAABOAAAAXgAAABYAAAEPAAAAGwAAAw8AAAAWAAABXgAAAFsAAANbAAAAWwAAAVsAAANEAAABRAAAA0QAAABOAAAAXgAAAF4AAAAWAAABGwAAAw8AAAAbAAACFgAAAF4AAABbAAABWwAAAVsAAAJeAAAARAAAAkQAAANEAAAAXgAAAF4AAABeAAAAFgAAAA8AAAAbAAACDwAAABYAAANeAAAAWwAAAlsAAANbAAABXgAAAEQAAAFEAAAARAAAAw== + tiles: XAAAAFwAAABcAAAAXAAAAF8AAABfAAAAXwAAAE8AAABfAAAAAAAAAF8AAABfAAAAXwAAAF8AAABLAAACSwAAAV8AAAAXAAADFwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF4AAABfAAAAOwAAADsAAABfAAAASQAAAEsAAAAXAAADFwAAARcAAAFfAAAAFwAAA18AAABPAAAAXwAAAF8AAABeAAAAXwAAADsAAAA7AAAAOwAAAEkAAAJJAAACFwAAAF8AAAAXAAABFwAAAhcAAAFfAAAAXwAAAF8AAABfAAAAXgAAAF8AAAA7AAAAOwAAAF8AAABJAAAASwAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAAAAAABfAAAAXwAAAF8AAABfAAAASwAAA0sAAANPAAAATwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABeAAAAXwAAADsAAAA7AAAAXwAAAEkAAAFLAAABXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXgAAAF8AAAA7AAAAOwAAADsAAABJAAAASQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAOwAAADsAAABfAAAASQAAAksAAAMYAAADGAAAAF8AAABFAAABRQAAAEUAAANFAAACRQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAAGAAAAhgAAAMYAAABRQAAAUUAAANFAAAARQAAAEUAAAJFAAAARQAAAEUAAAFFAAABRQAAA0UAAAFFAAABRQAAAxgAAAAYAAADXwAAAEUAAABFAAABRQAAA0UAAAFFAAABRQAAA0UAAAFFAAADRQAAAEUAAABFAAADRQAAAEUAAAAYAAACGAAAAV8AAABfAAAAXwAAABcAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAFFAAAAXwAAAF8AAABfAAAAFwAAAxcAAAMXAAADFwAAARcAAABfAAAAXAAAA1wAAAFcAAAAXwAAAEUAAANFAAAARQAAAk8AAABPAAAAXwAAABcAAAEPAAAAHAAAAw8AAAAXAAABXwAAAFwAAANcAAAAXAAAAVwAAANFAAABRQAAA0UAAABPAAAAXwAAAF8AAAAXAAABHAAAAw8AAAAcAAACFwAAAF8AAABcAAABXAAAAVwAAAJfAAAARQAAAkUAAANFAAAAXwAAAF8AAABfAAAAFwAAAA8AAAAcAAACDwAAABcAAANfAAAAXAAAAlwAAANcAAABXwAAAEUAAAFFAAAARQAAAw== -1,-2: ind: -1,-2 - tiles: AAAAAF4AAAAiAAAAIgAAACIAAAARAAAAEQAAAF4AAAAbAAACFgAAAF4AAABEAAAARAAAAUQAAANEAAADXgAAAF4AAABeAAAAIgAAACIAAAAiAAAAEQAAABEAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAADQAAAA0AAAANAAAABEAAAARAAAAXgAAAFsAAABbAAACWwAAA14AAABbAAACWwAAAVsAAAJeAAAAXgAAAF4AAAA0AAAANAAAADQAAAARAAAAEQAAAF4AAABbAAABWwAAAlsAAAJeAAAAWwAAA1sAAAFbAAAAXgAAADwAAABeAAAAXgAAAF4AAABEAAADXgAAAF4AAABeAAAAXgAAAFsAAAFeAAAAXgAAAF4AAABbAAAAXgAAAF4AAAA8AAAAXgAAAEQAAAJEAAABRAAAAEQAAAFEAAADRAAAA0QAAAFEAAADRAAAAUQAAABEAAAARAAAAUQAAABEAAAAPAAAADwAAABEAAAARAAAA0QAAANEAAABRAAAAEQAAAJEAAACRAAAAEQAAAFEAAADRAAAAUQAAAJEAAABRAAAAzwAAABeAAAARAAAAkQAAANEAAACRAAAAUQAAAJEAAABRAAAAkQAAAJEAAABRAAAAEQAAANEAAAARAAAAUQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAwAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAADAAAAAwAAAAMAAAADAAAAAwAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAAAwAAAAMAAAADAAAAAwAAAAMAAAAF4AAABeAAAATgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAMAAAADAAAAAwAAAAMAAAADAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEUAAAFFAAADXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABOAAAAXgAAAF4AAABFAAADRQAAAl4AAABeAAAATgAAAE4AAABeAAAAXgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAARQAAA0UAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAA== + tiles: AAAAAF8AAAAjAAAAIwAAACMAAAASAAAAEgAAAF8AAAAcAAACFwAAAF8AAABFAAAARQAAAUUAAANFAAADXwAAAF8AAABfAAAAIwAAACMAAAAjAAAAEgAAABIAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAADUAAAA1AAAANQAAABIAAAASAAAAXwAAAFwAAABcAAACXAAAA18AAABcAAACXAAAAVwAAAJfAAAAXwAAAF8AAAA1AAAANQAAADUAAAASAAAAEgAAAF8AAABcAAABXAAAAlwAAAJfAAAAXAAAA1wAAAFcAAAAXwAAAD0AAABfAAAAXwAAAF8AAABFAAADXwAAAF8AAABfAAAAXwAAAFwAAAFfAAAAXwAAAF8AAABcAAAAXwAAAF8AAAA9AAAAXwAAAEUAAAJFAAABRQAAAEUAAAFFAAADRQAAA0UAAAFFAAADRQAAAUUAAABFAAAARQAAAUUAAABFAAAAPQAAAD0AAABFAAAARQAAA0UAAANFAAABRQAAAEUAAAJFAAACRQAAAEUAAAFFAAADRQAAAUUAAAJFAAABRQAAAz0AAABfAAAARQAAAkUAAANFAAACRQAAAUUAAAJFAAABRQAAAkUAAAJFAAABRQAAAEUAAANFAAAARQAAAUUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAxAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAADEAAAAxAAAAMQAAADEAAAAxAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAAAxAAAAMQAAADEAAAAxAAAAMQAAAF8AAABfAAAATwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAMQAAADEAAAAxAAAAMQAAADEAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEYAAAFGAAADXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABPAAAAXwAAAF8AAABGAAADRgAAAl8AAABfAAAATwAAAE8AAABfAAAAXwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAARgAAA0YAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAA== -2,-2: ind: -2,-2 - tiles: XQAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAAAAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAADEAAAAxAAAAMQAAAF4AAAAAAAAAXQAAAAAAAABeAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAF4AAAAxAAAAMQAAADEAAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAADwAAABeAAAAPAAAAF4AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAAA8AAAAXgAAADwAAABeAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAPAAAADwAAAA8AAAAPAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAADwAAAA8AAAAPAAAADwAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAE4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAATgAAAE4AAABeAAAAXgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAE4AAABeAAAARQAAAkUAAABFAAACRQAAAEUAAAFbAAABWwAAAV4AAABbAAABXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAEUAAABFAAADRQAAA0UAAAJFAAADXgAAAFsAAANeAAAAWwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABFAAADRQAAAEUAAAFFAAAARQAAAg== + tiles: XgAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAAAAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAADIAAAAyAAAAMgAAAF8AAAAAAAAAXgAAAAAAAABfAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAF8AAAAyAAAAMgAAADIAAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAD0AAABfAAAAPQAAAF8AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAAA9AAAAXwAAAD0AAABfAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAPQAAAD0AAAA9AAAAPQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAD0AAAA9AAAAPQAAAD0AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAE8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAATwAAAE8AAABfAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAE8AAABfAAAARgAAAkYAAABGAAACRgAAAEYAAAFcAAABXAAAAV8AAABcAAABXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAEYAAABGAAADRgAAA0YAAAJGAAADXwAAAFwAAANfAAAAXAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABGAAADRgAAAEYAAAFGAAAARgAAAg== -3,-1: ind: -3,-1 - tiles: AAAAAF0AAAAAAAAAXgAAAEUAAANFAAACRQAAAkUAAAFeAAAATgAAAF4AAABeAAAAXgAAAFsAAAJeAAAAWwAAAgAAAABdAAAAXQAAAF4AAABFAAABRQAAAUUAAANFAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABOAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAATgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABOAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABOAAAAXgAAAF4AAAAxAAAAMQAAADEAAABeAAAAXgAAAE4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAATgAAAF4AAABeAAAAMQAAADEAAAAxAAAAXgAAAE4AAABeAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAxAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABbAAAAWwAAA1sAAANbAAAAWwAAAFsAAABeAAAAXgAAAE4AAABeAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABeAAAAWwAAA1sAAAFbAAADWwAAAVsAAABbAAACXgAAAF4AAABOAAAAXgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAFsAAANbAAACWwAAA1sAAAJbAAABWwAAAl4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABbAAAAWwAAA1sAAAFbAAACWwAAAFsAAABeAAAATgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABeAAAAWwAAAFsAAAFbAAACWwAAA1sAAANbAAABXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAFsAAABbAAABWwAAAFsAAAFbAAABWwAAA14AAABOAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABbAAABWwAAAVsAAANbAAAAWwAAAlsAAAJeAAAAXgAAAE4AAABeAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAWwAAAlsAAANbAAACWwAAAlsAAAFbAAACXgAAAF4AAABeAAAAXgAAAA== + tiles: AAAAAF4AAAAAAAAAXwAAAEYAAANGAAACRgAAAkYAAAFfAAAATwAAAF8AAABfAAAAXwAAAFwAAAJfAAAAXAAAAgAAAABeAAAAXgAAAF8AAABGAAABRgAAAUYAAANGAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABPAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAATwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABPAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABPAAAAXwAAAF8AAAAyAAAAMgAAADIAAABfAAAAXwAAAE8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAATwAAAF8AAABfAAAAMgAAADIAAAAyAAAAXwAAAE8AAABfAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAyAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABeAAAAAAAAAF8AAABcAAAAXAAAA1wAAANcAAAAXAAAAFwAAABfAAAAXwAAAE8AAABfAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABfAAAAXAAAA1wAAAFcAAADXAAAAVwAAABcAAACXwAAAF8AAABPAAAAXwAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAFwAAANcAAACXAAAA1wAAAJcAAABXAAAAl8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABeAAAAAAAAAF8AAABcAAAAXAAAA1wAAAFcAAACXAAAAFwAAABfAAAATwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABfAAAAXAAAAFwAAAFcAAACXAAAA1wAAANcAAABXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAFwAAABcAAABXAAAAFwAAAFcAAABXAAAA18AAABPAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABcAAABXAAAAVwAAANcAAAAXAAAAlwAAAJfAAAAXwAAAE8AAABfAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXAAAAlwAAANcAAACXAAAAlwAAAFcAAACXwAAAF8AAABfAAAAXwAAAA== 1,1: ind: 1,1 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAADFgAAARYAAABeAAAARAAAAl4AAABOAAAAXgAAAE4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAFgAAAxYAAAEWAAABFgAAA0QAAANeAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAIWAAABFgAAAV4AAABEAAADXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAXgAAAF4AAABOAAAAXgAAAF4AAABOAAAAXgAAAE4AAABeAAAATgAAAF4AAABeAAAAXgAAAEQAAAJeAAAAFgAAA14AAABOAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAATgAAAF4AAABEAAACFgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAEQAAANEAAACXgAAAEQAAAFEAAADRAAAAkQAAAFeAAAAXgAAABYAAAIWAAABXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAkQAAANEAAADRAAAAEQAAABEAAADRAAAAxYAAAJeAAAAFgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAFEAAAARAAAA0QAAAMWAAABXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAEQAAAFEAAADRAAAA0QAAABEAAACRAAAA0QAAABEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAV4AAABEAAADRAAAA0QAAAJEAAACRAAAAV4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAF4AAABeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== + tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAADFwAAARcAAABfAAAARQAAAl8AAABPAAAAXwAAAE8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAFwAAAxcAAAEXAAABFwAAA0UAAANfAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAIXAAABFwAAAV8AAABFAAADXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAXwAAAF8AAABPAAAAXwAAAF8AAABPAAAAXwAAAE8AAABfAAAATwAAAF8AAABfAAAAXwAAAEUAAAJfAAAAFwAAA18AAABPAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAATwAAAF8AAABFAAACFwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAEUAAANFAAACXwAAAEUAAAFFAAADRQAAAkUAAAFfAAAAXwAAABcAAAIXAAABXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAkUAAANFAAADRQAAAEUAAABFAAADRQAAAxcAAAJfAAAAFwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAFFAAAARQAAA0UAAAMXAAABXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAEUAAAFFAAADRQAAA0UAAABFAAACRQAAA0UAAABFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAV8AAABFAAADRQAAA0UAAAJFAAACRQAAAV8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABPAAAATwAAAF8AAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== 2,0: ind: 2,0 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAADRAAAAEQAAABEAAABRAAAA0QAAAFEAAAARAAAAkQAAABEAAABRAAAA0QAAANEAAACRAAAAl4AAABEAAADRAAAA0QAAAJEAAADRAAAA0QAAAJEAAABRAAAAUQAAAJEAAAARAAAAEQAAABEAAACRAAAAUQAAAFeAAAARAAAAUQAAABEAAADRAAAAEQAAAJEAAADRAAAAEQAAAJEAAADRAAAAkQAAABEAAABRAAAAEQAAAFEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAACRAAAAkQAAAFEAAAAXgAAAEQAAAFEAAABRAAAAl4AAABOAAAAXgAAAE4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAkQAAANeAAAATgAAAF4AAABeAAAATgAAAF4AAABeAAAATgAAAE4AAABeAAAAXgAAAE4AAABeAAAARAAAAkQAAAFEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAEQAAANEAAACRAAAA14AAABEAAAARAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAEQAAAFeAAAARAAAA0QAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAARAAAAUQAAANEAAAAXgAAAEQAAABEAAABXgAAAF4AAAAWAAABFgAAARYAAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAACRAAAAl4AAABEAAACRAAAAhYAAAMWAAABFgAAABYAAAMWAAAAXgAAAF4AAABOAAAATgAAAF4AAABEAAAARAAAA0QAAANeAAAARAAAAEQAAANeAAAAXgAAABYAAAMWAAADFgAAAV4AAABeAAAAXgAAAE4AAABeAAAARAAAAUQAAABEAAABXgAAAEQAAANEAAABXgAAAF4AAAAWAAAAFgAAAxYAAAJeAAAAXgAAAF4AAABOAAAAXgAAAEQAAAFEAAABRAAAAF4AAABEAAAARAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABEAAADRAAAAUQAAABeAAAARAAAAUQAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAARAAAAUQAAABEAAACXgAAAA== + tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAADRQAAAEUAAABFAAABRQAAA0UAAAFFAAAARQAAAkUAAABFAAABRQAAA0UAAANFAAACRQAAAl8AAABFAAADRQAAA0UAAAJFAAADRQAAA0UAAAJFAAABRQAAAUUAAAJFAAAARQAAAEUAAABFAAACRQAAAUUAAAFfAAAARQAAAUUAAABFAAADRQAAAEUAAAJFAAADRQAAAEUAAAJFAAADRQAAAkUAAABFAAABRQAAAEUAAAFFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAACRQAAAkUAAAFFAAAAXwAAAEUAAAFFAAABRQAAAl8AAABPAAAAXwAAAE8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAkUAAANfAAAATwAAAF8AAABfAAAATwAAAF8AAABfAAAATwAAAE8AAABfAAAAXwAAAE8AAABfAAAARQAAAkUAAAFFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAEUAAANFAAACRQAAA18AAABFAAAARQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAEUAAAFfAAAARQAAA0UAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAARQAAAUUAAANFAAAAXwAAAEUAAABFAAABXwAAAF8AAAAXAAABFwAAARcAAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAACRQAAAl8AAABFAAACRQAAAhcAAAMXAAABFwAAABcAAAMXAAAAXwAAAF8AAABPAAAATwAAAF8AAABFAAAARQAAA0UAAANfAAAARQAAAEUAAANfAAAAXwAAABcAAAMXAAADFwAAAV8AAABfAAAAXwAAAE8AAABfAAAARQAAAUUAAABFAAABXwAAAEUAAANFAAABXwAAAF8AAAAXAAAAFwAAAxcAAAJfAAAAXwAAAF8AAABPAAAAXwAAAEUAAAFFAAABRQAAAF8AAABFAAAARQAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABFAAADRQAAAUUAAABfAAAARQAAAUUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAARQAAAUUAAABFAAACXwAAAA== 2,1: ind: 2,1 - tiles: RAAAAEQAAANeAAAAXgAAAF4AAABOAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAJEAAABXgAAAEQAAABEAAAAXgAAAE4AAABeAAAATgAAAF4AAABeAAAAXgAAAE4AAABOAAAAXgAAAEQAAABEAAAARAAAAV4AAABEAAACRAAAAF4AAABeAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAUQAAAJeAAAARAAAAkQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAAAXgAAAEQAAAFEAAADRAAAA14AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAAARAAAA14AAABEAAABRAAAAEQAAANeAAAATgAAAF4AAABeAAAARAAAAkQAAANEAAACRAAAAV4AAABEAAAARAAAAkQAAAFeAAAARAAAAEQAAAJeAAAAXgAAAE4AAABOAAAAXgAAAEQAAABEAAADRAAAAEQAAANEAAADRAAAAEQAAANEAAAAXgAAAEQAAABEAAADSgAAA14AAABeAAAAXgAAAF4AAABEAAAARAAAAkQAAAJEAAABXgAAAEQAAAJEAAAARAAAA14AAABEAAACRAAAA14AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA14AAABeAAAARAAAA0QAAANeAAAAXgAAAE4AAABeAAAAXgAAAEQAAAJEAAACRAAAAEQAAAFEAAAARAAAAkQAAAFEAAAAXgAAAEQAAANEAAADXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAEQAAAMmAAAAJgAAAEQAAANEAAACRAAAAl4AAABEAAADRAAAAV4AAABeAAAATgAAAF4AAABeAAAARAAAAkQAAAJEAAACJgAAACYAAABEAAAARAAAA0QAAANeAAAARAAAAUQAAABeAAAAXgAAAE4AAABeAAAAXgAAAEQAAABEAAABRAAAAEQAAAFEAAACRAAAAkQAAANEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAbAAACGwAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABeAAAAXgAAAE4AAABeAAAAWwAAA1sAAANbAAADFgAAAxYAAANbAAABWwAAA1sAAANeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAFsAAAJbAAACWwAAAhYAAAEWAAACWwAAAlsAAABbAAACXgAAAA== + tiles: RQAAAEUAAANfAAAAXwAAAF8AAABPAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAJFAAABXwAAAEUAAABFAAAAXwAAAE8AAABfAAAATwAAAF8AAABfAAAAXwAAAE8AAABPAAAAXwAAAEUAAABFAAAARQAAAV8AAABFAAACRQAAAF8AAABfAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAUUAAAJfAAAARQAAAkUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAAXwAAAEUAAAFFAAADRQAAA18AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAA18AAABFAAABRQAAAEUAAANfAAAATwAAAF8AAABfAAAARQAAAkUAAANFAAACRQAAAV8AAABFAAAARQAAAkUAAAFfAAAARQAAAEUAAAJfAAAAXwAAAE8AAABPAAAAXwAAAEUAAABFAAADRQAAAEUAAANFAAADRQAAAEUAAANFAAAAXwAAAEUAAABFAAADSwAAA18AAABfAAAAXwAAAF8AAABFAAAARQAAAkUAAAJFAAABXwAAAEUAAAJFAAAARQAAA18AAABFAAACRQAAA18AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA18AAABfAAAARQAAA0UAAANfAAAAXwAAAE8AAABfAAAAXwAAAEUAAAJFAAACRQAAAEUAAAFFAAAARQAAAkUAAAFFAAAAXwAAAEUAAANFAAADXwAAAF8AAABfAAAAXwAAAF8AAABFAAABRQAAAEUAAAMnAAAAJwAAAEUAAANFAAACRQAAAl8AAABFAAADRQAAAV8AAABfAAAATwAAAF8AAABfAAAARQAAAkUAAAJFAAACJwAAACcAAABFAAAARQAAA0UAAANfAAAARQAAAUUAAABfAAAAXwAAAE8AAABfAAAAXwAAAEUAAABFAAABRQAAAEUAAAFFAAACRQAAAkUAAANFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAcAAACHAAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABfAAAAXwAAAE8AAABfAAAAXAAAA1wAAANcAAADFwAAAxcAAANcAAABXAAAA1wAAANfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAFwAAAJcAAACXAAAAhcAAAEXAAACXAAAAlwAAABcAAACXwAAAA== 2,2: ind: 2,2 - tiles: KQAAAV4AAABeAAAAXgAAAEQAAAFEAAADXgAAABYAAAIWAAABFgAAABYAAAEWAAABFgAAABYAAAEWAAAAXgAAAEQAAAIpAAACXgAAAEQAAAJeAAAAXgAAAF4AAAAWAAABFgAAA1sAAABbAAADWwAAA1sAAAMWAAABFgAAAl4AAABeAAAAKQAAACkAAAMpAAABRAAAACkAAAFeAAAAFgAAAhYAAANbAAACWwAAAFsAAABbAAAAFgAAABYAAANeAAAAKQAAAikAAANeAAAAKQAAAkQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAAAAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: KgAAAV8AAABfAAAAXwAAAEUAAAFFAAADXwAAABcAAAIXAAABFwAAABcAAAEXAAABFwAAABcAAAEXAAAAXwAAAEUAAAIqAAACXwAAAEUAAAJfAAAAXwAAAF8AAAAXAAABFwAAA1wAAABcAAADXAAAA1wAAAMXAAABFwAAAl8AAABfAAAAKgAAACoAAAMqAAABRQAAACoAAAFfAAAAFwAAAhcAAANcAAACXAAAAFwAAABcAAAAFwAAABcAAANfAAAAKgAAAioAAANfAAAAKgAAAkUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,2: ind: 1,2 - tiles: TgAAAF4AAABeAAAARAAAAl4AAABeAAAAKQAAAV4AAAApAAADXgAAAF4AAABeAAAARAAAAV4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABEAAADRAAAAF4AAAApAAAAXgAAACkAAAJEAAAAKQAAA14AAAApAAACKQAAA0QAAANeAAAAXgAAAF4AAABEAAACKQAAAl4AAABEAAABKQAAACkAAAMpAAABRAAAA14AAAApAAADRAAAAV4AAABeAAAAAAAAAF0AAABeAAAAKQAAA0QAAAJeAAAAKQAAAl4AAABeAAAARAAAACkAAAJeAAAAKQAAAF4AAABEAAACRAAAA10AAABdAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF4AAABeAAAAAAAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: TwAAAF8AAABfAAAARQAAAl8AAABfAAAAKgAAAV8AAAAqAAADXwAAAF8AAABfAAAARQAAAV8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABFAAADRQAAAF8AAAAqAAAAXwAAACoAAAJFAAAAKgAAA18AAAAqAAACKgAAA0UAAANfAAAAXwAAAF8AAABFAAACKgAAAl8AAABFAAABKgAAACoAAAMqAAABRQAAA18AAAAqAAADRQAAAV8AAABfAAAAAAAAAF4AAABfAAAAKgAAA0UAAAJfAAAAKgAAAl8AAABfAAAARQAAACoAAAJfAAAAKgAAAF8AAABFAAACRQAAA14AAABeAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF8AAABfAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,-1: ind: 1,-1 - tiles: RAAAAkQAAANEAAAARAAAAkQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAADRAAAASYAAABEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAAXgAAAE4AAABEAAACRAAAAkQAAAJEAAADRAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABOAAAASgAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAASgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANKAAABRAAAAUQAAABEAAADRAAAAEQAAANEAAACRAAAAEQAAAJEAAADRAAAAEQAAANEAAAASgAAAEQAAAFEAAACSgAAAEQAAABEAAACRAAAAkQAAAFEAAACRAAAAEQAAAFEAAAARAAAAEQAAAJEAAACRAAAAkoAAAJEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAASgAAA0oAAANeAAAAXgAAAF4AAABKAAADXgAAAF4AAABeAAAAXgAAAEQAAABeAAAARAAAAEQAAAJEAAABRAAAA0QAAANEAAACXgAAAEQAAAJEAAABRAAAAUQAAABEAAADXgAAAF4AAABEAAAAXgAAAEQAAAJEAAAARAAAA0QAAABEAAACRAAAA0oAAABEAAAARAAAAl4AAABEAAACRAAAAl4AAABOAAAARAAAA14AAABEAAADRAAAACYAAAAmAAAARAAAAUQAAABeAAAARAAAA0QAAAJEAAACRAAAA0QAAAJeAAAAXgAAAEoAAABeAAAARAAAAUQAAAEmAAAAJgAAAEQAAABEAAACXgAAAEQAAAJEAAAARAAAA0QAAAJEAAADXgAAAF4AAABEAAAARAAAAUQAAAJEAAACRAAAAkQAAAJEAAADRAAAAV4AAABEAAAARAAAAkQAAABEAAACRAAAAl4AAABeAAAADwAAAA8AAABEAAADRAAAA0QAAAFEAAACRAAAAUQAAABeAAAARAAAAEQAAANEAAABRAAAA0QAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAAXgAAAF4AAABOAAAAXgAAAE4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABOAAAAXgAAAE4AAABOAAAAXgAAAF4AAABOAAAAXgAAAE4AAABOAAAAXgAAAF4AAABOAAAAXgAAAF4AAABOAAAATgAAAA== + tiles: RQAAAkUAAANFAAAARQAAAkUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAADRQAAAScAAABFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABPAAAAXwAAAE8AAABFAAACRQAAAkUAAAJFAAADRQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABPAAAASwAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANLAAABRQAAAUUAAABFAAADRQAAAEUAAANFAAACRQAAAEUAAAJFAAADRQAAAEUAAANFAAAASwAAAEUAAAFFAAACSwAAAEUAAABFAAACRQAAAkUAAAFFAAACRQAAAEUAAAFFAAAARQAAAEUAAAJFAAACRQAAAksAAAJFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASwAAA0sAAANfAAAAXwAAAF8AAABLAAADXwAAAF8AAABfAAAAXwAAAEUAAABfAAAARQAAAEUAAAJFAAABRQAAA0UAAANFAAACXwAAAEUAAAJFAAABRQAAAUUAAABFAAADXwAAAF8AAABFAAAAXwAAAEUAAAJFAAAARQAAA0UAAABFAAACRQAAA0sAAABFAAAARQAAAl8AAABFAAACRQAAAl8AAABPAAAARQAAA18AAABFAAADRQAAACcAAAAnAAAARQAAAUUAAABfAAAARQAAA0UAAAJFAAACRQAAA0UAAAJfAAAAXwAAAEsAAABfAAAARQAAAUUAAAEnAAAAJwAAAEUAAABFAAACXwAAAEUAAAJFAAAARQAAA0UAAAJFAAADXwAAAF8AAABFAAAARQAAAUUAAAJFAAACRQAAAkUAAAJFAAADRQAAAV8AAABFAAAARQAAAkUAAABFAAACRQAAAl8AAABfAAAADwAAAA8AAABFAAADRQAAA0UAAAFFAAACRQAAAUUAAABfAAAARQAAAEUAAANFAAABRQAAA0UAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABPAAAAXwAAAF8AAABPAAAAXwAAAE8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABPAAAAXwAAAE8AAABPAAAAXwAAAF8AAABPAAAAXwAAAE8AAABPAAAAXwAAAF8AAABPAAAAXwAAAF8AAABPAAAATwAAAA== 2,-1: ind: 2,-1 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAEQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAAXgAAAF0AAABdAAAAXgAAAF4AAABOAAAATgAAAF4AAABOAAAAXgAAAE4AAABOAAAAXgAAAF4AAABOAAAAXgAAAF4AAABdAAAAXQAAAA== + tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAEUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAAXwAAAF4AAABeAAAAXwAAAF8AAABPAAAATwAAAF8AAABPAAAAXwAAAE8AAABPAAAAXwAAAF8AAABPAAAAXwAAAF8AAABeAAAAXgAAAA== 1,-2: ind: 1,-2 - tiles: AAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAEQAAAJEAAACRAAAA0QAAANEAAABRAAAAkQAAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABEAAACRAAAA0QAAAJEAAACRAAAAkQAAABEAAABXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAARAAAA0QAAAJEAAACRAAAAkQAAAJEAAAARAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAABdAAAAXQAAAEQAAABeAAAAXgAAAF4AAABKAAADSgAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAXQAAAAAAAABEAAACXgAAAEQAAANEAAAARAAAAUQAAABEAAACXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAAAAAAAARAAAA0oAAANEAAACRAAAAEQAAANEAAACRAAAA14AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAABdAAAAXQAAAEQAAANKAAABRAAAAEQAAABEAAABRAAAAUQAAANeAAAAXgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAAAAAABEAAABXgAAAEQAAANEAAAARAAAAUQAAAFEAAACXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAATgAAAF4AAABeAAAAXgAAAEQAAAFeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAARAAAAQ== + tiles: AAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAEUAAAJFAAACRQAAA0UAAANFAAABRQAAAkUAAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABFAAACRQAAA0UAAAJFAAACRQAAAkUAAABFAAABXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAARQAAA0UAAAJFAAACRQAAAkUAAAJFAAAARQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAABeAAAAXgAAAEUAAABfAAAAXwAAAF8AAABLAAADSwAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAXgAAAAAAAABFAAACXwAAAEUAAANFAAAARQAAAUUAAABFAAACXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAAAAAAAARQAAA0sAAANFAAACRQAAAEUAAANFAAACRQAAA18AAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAABeAAAAXgAAAEUAAANLAAABRQAAAEUAAABFAAABRQAAAUUAAANfAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAAAAAABFAAABXwAAAEUAAANFAAAARQAAAUUAAAFFAAACXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABPAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAATwAAAF8AAABfAAAAXwAAAEUAAAFfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAARQAAAQ== 2,-2: ind: 2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAEQAAAFEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABEAAAARAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAARAAAAkQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEUAAAFFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABFAAAARQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAARQAAAkUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAA== 0,-3: ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAACRAAAAEQAAAJeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAUQAAAFEAAADXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAACRQAAAEUAAAJfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAUUAAAFFAAADXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,-3: ind: -1,-3 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAASgAAAEoAAANKAAACSgAAAV4AAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXgAAABsAAAIWAAACXgAAAEQAAAJEAAACRAAAAkQAAAFeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAbAAACFgAAAhYAAAFEAAABRAAAAUQAAABEAAADRAAAAQ== + tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAASwAAAEsAAANLAAACSwAAAV8AAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAXwAAABwAAAIXAAACXwAAAEUAAAJFAAACRQAAAkUAAAFfAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAcAAACFwAAAhcAAAFFAAABRQAAAUUAAABFAAADRQAAAQ== 3,-1: ind: 3,-1 - tiles: AAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,-2: ind: 3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -3,0: ind: -3,0 - tiles: AAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAAFbAAACXgAAAEQAAAJEAAAARAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAAJEAAADRAAAAkQAAANEAAACRAAAAUQAAAJEAAAARAAAA0QAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABEAAADRAAAA0QAAAJEAAACRAAAAEQAAABEAAAARAAAA0QAAAFEAAABAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAARAAAAkQAAANEAAAARAAAA0QAAABEAAADRAAAA0QAAABEAAAARAAAAgAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAEQAAABEAAADRAAAAV4AAABeAAAAXgAAAFsAAANbAAADWwAAAV4AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABEAAACRAAAA0QAAANeAAAAWwAAAlsAAABbAAADWwAAAVsAAABbAAADAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAARAAAAUQAAAJEAAACXgAAAFsAAAJbAAACWwAAAFsAAAFbAAABWwAAAgAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAEQAAANEAAADRAAAAl4AAABbAAABWwAAA1sAAAFbAAACWwAAA1sAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABEAAADRAAAAUQAAANeAAAAWwAAA1sAAAJbAAADWwAAAlsAAAJbAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAARAAAAEQAAABEAAACXgAAAFsAAABbAAACWwAAAVsAAANbAAADWwAAAgAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAEQAAANEAAAARAAAA14AAABbAAAAWwAAA1sAAANbAAABWwAAAlsAAAMAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABEAAABRAAAA0QAAAFeAAAAWwAAAVsAAAJbAAABWwAAAVsAAANbAAADAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAARAAAA0QAAANEAAAAXgAAAFsAAAJeAAAAXgAAAF4AAABeAAAAMQAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAEQAAABEAAAARAAAAF4AAABbAAACXgAAADEAAAAxAAAAMQAAADEAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABEAAABRAAAA0QAAAJeAAAAXgAAAF4AAABeAAAAXgAAADEAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAA0QAAANEAAABXgAAAF4AAABOAAAAXgAAABsAAAEWAAACMQAAAA== + tiles: AAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAAFcAAACXwAAAEUAAAJFAAAARQAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAAJFAAADRQAAAkUAAANFAAACRQAAAUUAAAJFAAAARQAAA0UAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABFAAADRQAAA0UAAAJFAAACRQAAAEUAAABFAAAARQAAA0UAAAFFAAABAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAARQAAAkUAAANFAAAARQAAA0UAAABFAAADRQAAA0UAAABFAAAARQAAAgAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEUAAABFAAADRQAAAV8AAABfAAAAXwAAAFwAAANcAAADXAAAAV8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABFAAACRQAAA0UAAANfAAAAXAAAAlwAAABcAAADXAAAAVwAAABcAAADAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAARQAAAUUAAAJFAAACXwAAAFwAAAJcAAACXAAAAFwAAAFcAAABXAAAAgAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAEUAAANFAAADRQAAAl8AAABcAAABXAAAA1wAAAFcAAACXAAAA1wAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABFAAADRQAAAUUAAANfAAAAXAAAA1wAAAJcAAADXAAAAlwAAAJcAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAARQAAAEUAAABFAAACXwAAAFwAAABcAAACXAAAAVwAAANcAAADXAAAAgAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEUAAANFAAAARQAAA18AAABcAAAAXAAAA1wAAANcAAABXAAAAlwAAAMAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABFAAABRQAAA0UAAAFfAAAAXAAAAVwAAAJcAAABXAAAAVwAAANcAAADAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAARQAAA0UAAANFAAAAXwAAAFwAAAJfAAAAXwAAAF8AAABfAAAAMgAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAF8AAABcAAACXwAAADIAAAAyAAAAMgAAADIAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABFAAABRQAAA0UAAAJfAAAAXwAAAF8AAABfAAAAXwAAADIAAAAyAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAA0UAAANFAAABXwAAAF8AAABPAAAAXwAAABwAAAEXAAACMgAAAA== -3,1: ind: -3,1 - tiles: AAAAAAAAAAAAAAAAXQAAAAAAAABeAAAARAAAAkQAAANEAAADXgAAAF4AAABeAAAAXgAAABsAAAMWAAABMQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAF4AAABEAAABXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABEAAABRAAAAkQAAAJeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAARAAAA0QAAAFEAAACXgAAAF4AAABOAAAAXgAAAF4AAABOAAAAXgAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAEQAAAFEAAACRAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABEAAADRAAAAkQAAAEbAAADGwAAABsAAANeAAAAXgAAAE4AAABeAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAARAAAAUQAAAJEAAABGwAAAhsAAAEbAAACXgAAAE4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAE4AAABOAAAARAAAARsAAAEbAAABGwAAAV4AAABeAAAAXgAAAE4AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABOAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAA== + tiles: AAAAAAAAAAAAAAAAXgAAAAAAAABfAAAARQAAAkUAAANFAAADXwAAAF8AAABfAAAAXwAAABwAAAMXAAABMgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXwAAAF8AAABFAAABXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABeAAAAAAAAAF8AAABFAAABRQAAAkUAAAJfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAARQAAA0UAAAFFAAACXwAAAF8AAABPAAAAXwAAAF8AAABPAAAAXwAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXwAAAEUAAAFFAAACRQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABeAAAAAAAAAF8AAABFAAADRQAAAkUAAAEcAAADHAAAABwAAANfAAAAXwAAAE8AAABfAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAARQAAAUUAAAJFAAABHAAAAhwAAAEcAAACXwAAAE8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAE8AAABPAAAARQAAARwAAAEcAAABHAAAAV8AAABfAAAAXwAAAE8AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABPAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAA== -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAABdAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXgAAACMAAABeAAAAAgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF0AAABdAAAAXgAAACMAAAAjAAAAAgAAAF4AAABeAAAAAgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAjAAAAXgAAACMAAAACAAAAAgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAABeAAAAEAAAAxAAAAFeAAAAEAAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAE4AAABOAAAAAAAAAF0AAAAAAAAAXgAAABAAAABeAAAAXgAAABAAAAFeAAAAXgAAAE4AAABOAAAAXgAAAE4AAABeAAAAXgAAAAAAAABdAAAAXQAAAF4AAABeAAAAEAAAAhAAAAIQAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAABeAAAAEAAAABAAAABeAAAAEAAAAl4AAABOAAAATgAAAF4AAABbAAACXgAAAF4AAABbAAAAAAAAAF0AAAAAAAAAXgAAAEUAAABFAAABRQAAAkUAAABeAAAAXgAAAF4AAABeAAAAWwAAAVsAAANbAAAAWwAAAw== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAABeAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAACQAAABfAAAAAgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAF4AAABeAAAAXwAAACQAAAAkAAAAAgAAAF8AAABfAAAAAgAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAkAAAAXwAAACQAAAACAAAAAgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXgAAAAAAAABfAAAAEAAAAxAAAAFfAAAAEAAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAE8AAABPAAAAAAAAAF4AAAAAAAAAXwAAABAAAABfAAAAXwAAABAAAAFfAAAAXwAAAE8AAABPAAAAXwAAAE8AAABfAAAAXwAAAAAAAABeAAAAXgAAAF8AAABfAAAAEAAAAhAAAAIQAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXgAAAAAAAABfAAAAEAAAABAAAABfAAAAEAAAAl8AAABPAAAATwAAAF8AAABcAAACXwAAAF8AAABcAAAAAAAAAF4AAAAAAAAAXwAAAEYAAABGAAABRgAAAkYAAABfAAAAXwAAAF8AAABfAAAAXAAAAVwAAANcAAAAXAAAAw== -3,-3: ind: -3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAA== -2,-3: ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== -3,2: ind: -3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,3: ind: 0,3 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAIWAAABFgAAAxYAAAFeAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAABFgAAARYAAAMWAAACXgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAABYAAAEWAAABFgAAAV4AAABeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAIWAAAAFgAAABYAAABeAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAACFgAAAhYAAAEWAAADXgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAARYAAAMWAAABFgAAAl4AAABeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAIWAAADFgAAARYAAABeAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAIXAAABFwAAAxcAAAFfAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAABFwAAARcAAAMXAAACXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAABcAAAEXAAABFwAAAV8AAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAIXAAAAFwAAABcAAABfAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAACFwAAAhcAAAEXAAADXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAARcAAAMXAAABFwAAAl8AAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAIXAAADFwAAARcAAABfAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,3: ind: -1,3 - tiles: AAAAAF0AAABdAAAAXgAAAF4AAABeAAAARAAAA0QAAABEAAACRAAAA0QAAAFEAAAARAAAAF4AAABeAAAAXgAAAAAAAABdAAAAAAAAAF4AAABeAAAARAAAA0QAAAJEAAAARAAAAUQAAAJEAAAARAAAAkQAAAFEAAABXgAAABYAAAIAAAAAXQAAAAAAAABeAAAAXgAAAEQAAANEAAADRAAAAV4AAABeAAAAXgAAAEQAAABEAAAARAAAAF4AAAAWAAACAAAAAF0AAAAAAAAAXgAAAF4AAABEAAADRAAAAkQAAAFeAAAARAAAAl4AAABEAAAARAAAAkQAAANeAAAAFgAAAgAAAABdAAAAXQAAAF4AAABeAAAARAAAAkQAAAFEAAACRAAAAUQAAABEAAAARAAAAkQAAABEAAADFgAAAxYAAAEAAAAAXQAAAAAAAABeAAAAXgAAAEQAAAFEAAABRAAAAl4AAABEAAABXgAAAEQAAAFEAAADRAAAAl4AAAAWAAACAAAAAF0AAAAAAAAAXgAAAF4AAABEAAABRAAAAUQAAABeAAAAXgAAAF4AAABEAAABRAAAAkQAAABeAAAAFgAAAgAAAABdAAAAXQAAAF4AAABeAAAARAAAAUQAAABEAAAARAAAAkQAAAFEAAACRAAAAEQAAABEAAABXgAAABYAAAEAAAAAXQAAAAAAAABeAAAAXgAAAF4AAABEAAAARAAAAkQAAAJEAAABRAAAA0QAAANEAAAAXgAAAF4AAABeAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABeAAAAXgAAAA== + tiles: AAAAAF4AAABeAAAAXwAAAF8AAABfAAAARQAAA0UAAABFAAACRQAAA0UAAAFFAAAARQAAAF8AAABfAAAAXwAAAAAAAABeAAAAAAAAAF8AAABfAAAARQAAA0UAAAJFAAAARQAAAUUAAAJFAAAARQAAAkUAAAFFAAABXwAAABcAAAIAAAAAXgAAAAAAAABfAAAAXwAAAEUAAANFAAADRQAAAV8AAABfAAAAXwAAAEUAAABFAAAARQAAAF8AAAAXAAACAAAAAF4AAAAAAAAAXwAAAF8AAABFAAADRQAAAkUAAAFfAAAARQAAAl8AAABFAAAARQAAAkUAAANfAAAAFwAAAgAAAABeAAAAXgAAAF8AAABfAAAARQAAAkUAAAFFAAACRQAAAUUAAABFAAAARQAAAkUAAABFAAADFwAAAxcAAAEAAAAAXgAAAAAAAABfAAAAXwAAAEUAAAFFAAABRQAAAl8AAABFAAABXwAAAEUAAAFFAAADRQAAAl8AAAAXAAACAAAAAF4AAAAAAAAAXwAAAF8AAABFAAABRQAAAUUAAABfAAAAXwAAAF8AAABFAAABRQAAAkUAAABfAAAAFwAAAgAAAABeAAAAXgAAAF8AAABfAAAARQAAAUUAAABFAAAARQAAAkUAAAFFAAACRQAAAEUAAABFAAABXwAAABcAAAEAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABFAAAARQAAAkUAAAJFAAABRQAAA0UAAANFAAAAXwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABfAAAAXwAAAA== -2,-4: ind: -2,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABeAAAAWwAAAlsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAFsAAAFbAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAABbAAACWwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAFsAAANbAAADWwAAAVsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABbAAADWwAAAVsAAAJbAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABeAAAAWwAAA1sAAAJbAAACWwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABfAAAAXAAAAlwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAFwAAAFcAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABcAAACXAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXwAAAFwAAANcAAADXAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF8AAABcAAADXAAAAVwAAAJcAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABfAAAAXAAAA1wAAAJcAAACXAAAAA== -1,-4: ind: -1,-4 - tiles: XQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFsAAANbAAACWwAAA1sAAABOAAAAXgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABbAAADWwAAAFsAAABbAAACTgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAACYAAAAmAAAAWwAAA04AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACYAAAAmAAAAJgAAAFsAAANbAAACXgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABbAAABWwAAAlsAAANbAAADWwAAAV4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAVsAAANbAAABWwAAAFsAAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: XgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAANcAAACXAAAA1wAAABPAAAAXwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAADXAAAAFwAAABcAAACTwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAACcAAAAnAAAAXAAAA08AAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAnAAAAJwAAAFwAAANcAAACXwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAABXAAAAlwAAANcAAADXAAAAV8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAVwAAANcAAABXAAAAFwAAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,2: ind: 3,2 - tiles: AAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,1: ind: 3,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,0: ind: 3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,4: ind: -1,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,4: ind: 0,4 - tiles: XgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: XwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - type: Broadphase - angularDamping: 0.05 @@ -4320,6 +4320,7 @@ entities: type: BecomesStation - nextUpdate: 0 type: SpreaderGrid + - type: GridPathfinding - uid: 12281 components: - type: MetaData @@ -4329,6 +4330,8 @@ entities: - type: Broadphase - type: OccluderTree - type: LoadedMap + - type: GridTree + - type: MovedGrids - proto: AcousticGuitarInstrument entities: - uid: 5973 @@ -8630,29 +8633,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1943 components: - pos: 4.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2792 components: - pos: -18.5,-49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2797 components: - pos: -17.5,-49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2863 components: - pos: -11.5,-46.5 @@ -8660,8 +8655,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2876 components: - pos: -10.5,-49.5 @@ -8669,99 +8662,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2877 components: - pos: -11.5,-49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2878 components: - pos: -12.5,-49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2879 components: - pos: -13.5,-49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2880 components: - pos: -14.5,-49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2881 components: - pos: -15.5,-49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2882 components: - pos: -16.5,-49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2883 components: - pos: -16.5,-50.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2884 components: - pos: -16.5,-51.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2885 components: - pos: -16.5,-52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2886 components: - pos: -13.5,-50.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2887 components: - pos: -13.5,-51.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2888 components: - pos: -13.5,-52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2889 components: - pos: -11.5,-48.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2890 components: - pos: -11.5,-47.5 @@ -8769,15 +8734,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3386 components: - pos: 6.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3718 components: - pos: -2.5,43.5 @@ -8785,64 +8746,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3719 components: - pos: -2.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3720 components: - pos: -2.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3721 components: - pos: -1.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3722 components: - pos: -4.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3723 components: - pos: -3.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3724 components: - pos: -5.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3725 components: - pos: -6.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3726 components: - pos: -7.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3727 components: - pos: -8.5,45.5 @@ -8850,8 +8793,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3728 components: - pos: -9.5,45.5 @@ -8859,8 +8800,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3729 components: - pos: -6.5,57.5 @@ -8868,176 +8807,126 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3730 components: - pos: -6.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3731 components: - pos: -6.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3732 components: - pos: -5.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3733 components: - pos: -4.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3734 components: - pos: -4.5,54.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3735 components: - pos: -4.5,53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3736 components: - pos: -4.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3737 components: - pos: -4.5,51.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3738 components: - pos: -4.5,50.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3739 components: - pos: -4.5,49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3740 components: - pos: -5.5,49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3741 components: - pos: -6.5,49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3742 components: - pos: -7.5,49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3743 components: - pos: -8.5,49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3744 components: - pos: -8.5,50.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3745 components: - pos: -8.5,51.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3746 components: - pos: -8.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3747 components: - pos: -8.5,53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3748 components: - pos: -8.5,54.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3749 components: - pos: -8.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3750 components: - pos: -7.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3751 components: - pos: -9.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3752 components: - pos: -3.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3753 components: - pos: -6.5,48.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3754 components: - pos: 4.5,52.5 @@ -9045,92 +8934,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3755 components: - pos: 3.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3756 components: - pos: 2.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3757 components: - pos: 1.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3758 components: - pos: 0.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3759 components: - pos: -0.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3760 components: - pos: -1.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3761 components: - pos: 1.5,53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3762 components: - pos: 1.5,54.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3763 components: - pos: 1.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3764 components: - pos: 1.5,51.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3765 components: - pos: 1.5,50.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3766 components: - pos: 1.5,49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4168 components: - pos: -12.5,29.5 @@ -9138,36 +9001,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4169 components: - pos: -12.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4170 components: - pos: -13.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4171 components: - pos: -14.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4172 components: - pos: -15.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4173 components: - pos: -16.5,30.5 @@ -9175,8 +9028,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4174 components: - pos: -17.5,30.5 @@ -9184,8 +9035,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4175 components: - pos: -17.5,31.5 @@ -9193,57 +9042,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4176 components: - pos: -11.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4177 components: - pos: -10.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4178 components: - pos: -9.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4179 components: - pos: -9.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4180 components: - pos: -9.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4181 components: - pos: -9.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4182 components: - pos: -9.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4183 components: - pos: -0.5,26.5 @@ -9251,204 +9084,146 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4184 components: - pos: -0.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4185 components: - pos: -0.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4186 components: - pos: -0.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4187 components: - pos: -1.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4188 components: - pos: -2.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4189 components: - pos: -3.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4190 components: - pos: -4.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4191 components: - pos: -3.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4192 components: - pos: -3.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4193 components: - pos: -3.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4194 components: - pos: -3.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4195 components: - pos: -3.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4196 components: - pos: -2.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4197 components: - pos: -1.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4198 components: - pos: -1.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4199 components: - pos: -4.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4200 components: - pos: 0.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4201 components: - pos: 1.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4202 components: - pos: 1.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4203 components: - pos: 1.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4204 components: - pos: 1.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4205 components: - pos: 1.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4206 components: - pos: 1.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4207 components: - pos: 2.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4208 components: - pos: 3.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4209 components: - pos: 4.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4210 components: - pos: 4.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4211 components: - pos: 4.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4212 components: - pos: 1.5,22.5 @@ -9456,176 +9231,126 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4213 components: - pos: 1.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4214 components: - pos: 1.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4215 components: - pos: 0.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4216 components: - pos: -0.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4217 components: - pos: -1.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4218 components: - pos: -2.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4219 components: - pos: -3.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4220 components: - pos: -4.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4221 components: - pos: 1.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4222 components: - pos: 2.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4223 components: - pos: 3.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4224 components: - pos: 4.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4225 components: - pos: 4.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4226 components: - pos: 4.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4227 components: - pos: 4.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4228 components: - pos: 4.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4229 components: - pos: 4.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4230 components: - pos: 4.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4231 components: - pos: 5.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4232 components: - pos: 3.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4233 components: - pos: -9.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4234 components: - pos: -4.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4235 components: - pos: -1.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4236 components: - pos: 4.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4801 components: - pos: 1.5,18.5 @@ -9633,15 +9358,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4802 components: - pos: 0.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4803 components: - pos: -0.5,18.5 @@ -9649,8 +9370,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4804 components: - pos: -1.5,18.5 @@ -9658,8 +9377,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4805 components: - pos: -2.5,18.5 @@ -9667,15 +9384,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4806 components: - pos: -2.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5156 components: - pos: 13.5,11.5 @@ -9683,134 +9396,96 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5157 components: - pos: 13.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5158 components: - pos: 13.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5159 components: - pos: 11.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5160 components: - pos: 12.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5161 components: - pos: 11.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5162 components: - pos: 11.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5163 components: - pos: 11.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5164 components: - pos: 11.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5165 components: - pos: 11.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5166 components: - pos: 14.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5167 components: - pos: 15.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5168 components: - pos: 15.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5169 components: - pos: 15.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5170 components: - pos: 15.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5171 components: - pos: 15.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5172 components: - pos: 15.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5173 components: - pos: 11.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5174 components: - pos: 11.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5175 components: - pos: 11.5,7.5 @@ -9818,8 +9493,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5176 components: - pos: 10.5,8.5 @@ -9827,8 +9500,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5177 components: - pos: 10.5,10.5 @@ -9836,8 +9507,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5178 components: - pos: 10.5,9.5 @@ -9845,15 +9514,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5179 components: - pos: 11.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5180 components: - pos: 11.5,4.5 @@ -9861,8 +9526,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5181 components: - pos: 12.5,4.5 @@ -9870,15 +9533,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5182 components: - pos: 14.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5183 components: - pos: 14.5,7.5 @@ -9886,22 +9545,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5184 components: - pos: 14.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5185 components: - pos: 14.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5186 components: - pos: 14.5,4.5 @@ -9909,8 +9562,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5187 components: - pos: 15.5,4.5 @@ -9918,43 +9569,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5188 components: - pos: 16.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5189 components: - pos: 17.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5190 components: - pos: 18.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5191 components: - pos: 19.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5192 components: - pos: 17.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5193 components: - pos: 17.5,7.5 @@ -9962,22 +9601,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5194 components: - pos: 17.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5195 components: - pos: 17.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5196 components: - pos: 17.5,4.5 @@ -9985,8 +9618,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5197 components: - pos: 18.5,4.5 @@ -9994,8 +9625,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5198 components: - pos: 10.5,12.5 @@ -10003,15 +9632,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5199 components: - pos: 11.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5200 components: - pos: 10.5,15.5 @@ -10019,8 +9644,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5201 components: - pos: 13.5,12.5 @@ -10028,15 +9651,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5202 components: - pos: 12.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5203 components: - pos: 13.5,15.5 @@ -10044,8 +9663,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5204 components: - pos: 18.5,11.5 @@ -10053,15 +9670,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5205 components: - pos: 18.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5206 components: - pos: 19.5,11.5 @@ -10069,78 +9682,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5207 components: - pos: 20.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5208 components: - pos: 20.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5209 components: - pos: 20.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5210 components: - pos: 20.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5211 components: - pos: 20.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5212 components: - pos: 20.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5213 components: - pos: 21.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5214 components: - pos: 22.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5215 components: - pos: 22.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5216 components: - pos: 22.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5217 components: - pos: 26.5,11.5 @@ -10148,85 +9739,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5218 components: - pos: 26.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5219 components: - pos: 26.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5220 components: - pos: 25.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5221 components: - pos: 24.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5222 components: - pos: 23.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5223 components: - pos: 22.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5224 components: - pos: 22.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5225 components: - pos: 22.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5226 components: - pos: 22.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5227 components: - pos: 21.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5228 components: - pos: 23.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5229 components: - pos: 23.5,11.5 @@ -10234,8 +9801,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5230 components: - pos: 22.5,11.5 @@ -10243,85 +9808,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5231 components: - pos: 27.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5232 components: - pos: 28.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5233 components: - pos: 29.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5234 components: - pos: 30.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5235 components: - pos: 31.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5236 components: - pos: 32.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5237 components: - pos: 26.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5238 components: - pos: 26.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5239 components: - pos: 26.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5240 components: - pos: 27.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5241 components: - pos: 32.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5242 components: - pos: 34.5,17.5 @@ -10329,197 +9870,141 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5243 components: - pos: 33.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5244 components: - pos: 32.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5245 components: - pos: 32.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5246 components: - pos: 32.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5247 components: - pos: 32.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5248 components: - pos: 32.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5249 components: - pos: 32.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5250 components: - pos: 32.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5251 components: - pos: 33.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5252 components: - pos: 34.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5253 components: - pos: 35.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5254 components: - pos: 36.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5255 components: - pos: 37.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5256 components: - pos: 37.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5257 components: - pos: 31.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5258 components: - pos: 30.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5259 components: - pos: 29.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5260 components: - pos: 28.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5261 components: - pos: 27.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5262 components: - pos: 26.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5263 components: - pos: 31.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5264 components: - pos: 30.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5265 components: - pos: 29.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5266 components: - pos: 28.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5267 components: - pos: 32.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5268 components: - pos: 32.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5269 components: - pos: 32.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5270 components: - pos: 34.5,27.5 @@ -10527,141 +10012,101 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5271 components: - pos: 33.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5272 components: - pos: 32.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5273 components: - pos: 32.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5274 components: - pos: 32.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5275 components: - pos: 32.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5276 components: - pos: 32.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5277 components: - pos: 31.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5278 components: - pos: 30.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5279 components: - pos: 29.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5280 components: - pos: 28.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5281 components: - pos: 27.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5282 components: - pos: 26.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5283 components: - pos: 25.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5284 components: - pos: 28.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5285 components: - pos: 28.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5286 components: - pos: 27.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5287 components: - pos: 26.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5288 components: - pos: 25.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5289 components: - pos: 30.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5290 components: - pos: 30.5,29.5 @@ -10669,8 +10114,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5291 components: - pos: 29.5,29.5 @@ -10678,8 +10121,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5292 components: - pos: 28.5,29.5 @@ -10687,8 +10128,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5293 components: - pos: 31.5,29.5 @@ -10696,8 +10135,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5294 components: - pos: 32.5,29.5 @@ -10705,22 +10142,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5295 components: - pos: 33.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5296 components: - pos: 33.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5323 components: - pos: -33.5,-15.5 @@ -10728,8 +10159,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5744 components: - pos: -24.5,12.5 @@ -10737,204 +10166,146 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5745 components: - pos: -24.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5746 components: - pos: -24.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5747 components: - pos: -24.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5748 components: - pos: -24.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5749 components: - pos: -24.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5750 components: - pos: -24.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5751 components: - pos: -25.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5761 components: - pos: -24.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5762 components: - pos: -24.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5763 components: - pos: -24.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5764 components: - pos: -25.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5765 components: - pos: -23.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5766 components: - pos: -25.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5767 components: - pos: -23.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5768 components: - pos: -22.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5769 components: - pos: -21.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5770 components: - pos: -20.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5771 components: - pos: -19.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5772 components: - pos: -18.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5773 components: - pos: -18.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5774 components: - pos: -18.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5775 components: - pos: -18.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5776 components: - pos: -18.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5777 components: - pos: -18.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5778 components: - pos: -21.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5779 components: - pos: -21.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5780 components: - pos: -21.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5781 components: - pos: -21.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5782 components: - pos: -10.5,7.5 @@ -10942,148 +10313,106 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5783 components: - pos: -11.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5784 components: - pos: -11.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5785 components: - pos: -11.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5786 components: - pos: -11.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5787 components: - pos: -12.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5788 components: - pos: -13.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5789 components: - pos: -14.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5790 components: - pos: -15.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5791 components: - pos: -15.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5792 components: - pos: -15.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5793 components: - pos: -15.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5794 components: - pos: -15.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5795 components: - pos: -10.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5796 components: - pos: -9.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5797 components: - pos: -8.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5798 components: - pos: -11.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5799 components: - pos: -11.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5800 components: - pos: -10.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5801 components: - pos: -9.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5802 components: - pos: -8.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5803 components: - pos: -14.5,13.5 @@ -11091,78 +10420,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5804 components: - pos: -13.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5805 components: - pos: -12.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5806 components: - pos: -11.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5807 components: - pos: -10.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5808 components: - pos: -9.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5809 components: - pos: -8.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5810 components: - pos: -12.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5811 components: - pos: -12.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5812 components: - pos: -12.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5813 components: - pos: -15.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5814 components: - pos: -14.5,17.5 @@ -11170,253 +10477,181 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5815 components: - pos: -14.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5816 components: - pos: -16.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5817 components: - pos: -16.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5818 components: - pos: -17.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5819 components: - pos: -18.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5820 components: - pos: -19.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5821 components: - pos: -19.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5822 components: - pos: -16.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5823 components: - pos: -16.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5824 components: - pos: -14.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5825 components: - pos: -15.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5826 components: - pos: -16.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5827 components: - pos: -13.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5828 components: - pos: -13.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5829 components: - pos: -13.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5830 components: - pos: -12.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5831 components: - pos: -11.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5832 components: - pos: -13.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5833 components: - pos: -12.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5834 components: - pos: -11.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5835 components: - pos: -15.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5836 components: - pos: -18.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5837 components: - pos: -21.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5838 components: - pos: -24.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5839 components: - pos: -26.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5840 components: - pos: -26.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5842 components: - pos: -17.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6200 components: - pos: -5.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6201 components: - pos: -5.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6202 components: - pos: -5.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6203 components: - pos: -5.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6204 components: - pos: -5.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6206 components: - pos: -0.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6207 components: - pos: -0.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6208 components: - pos: 4.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6227 components: - pos: 6.5,0.5 @@ -11424,22 +10659,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6228 components: - pos: 5.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6229 components: - pos: 3.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6230 components: - pos: -0.5,-0.5 @@ -11447,218 +10676,156 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6231 components: - pos: -0.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6232 components: - pos: -0.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6233 components: - pos: -0.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6234 components: - pos: -0.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6235 components: - pos: -0.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6236 components: - pos: -1.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6237 components: - pos: -2.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6238 components: - pos: 0.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6239 components: - pos: 1.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6240 components: - pos: 2.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6241 components: - pos: 3.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6242 components: - pos: 4.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6243 components: - pos: 5.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6244 components: - pos: 3.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6245 components: - pos: 3.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6246 components: - pos: 3.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6247 components: - pos: 3.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6249 components: - pos: 2.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6250 components: - pos: 1.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6251 components: - pos: 1.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6252 components: - pos: 1.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6253 components: - pos: 4.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6254 components: - pos: 4.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6255 components: - pos: 0.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6256 components: - pos: -0.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6257 components: - pos: -1.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6258 components: - pos: -2.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6259 components: - pos: 4.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6260 components: - pos: -7.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6261 components: - pos: -2.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6262 components: - pos: -3.5,7.5 @@ -11666,253 +10833,181 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6263 components: - pos: -4.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6264 components: - pos: -1.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6265 components: - pos: 0.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6266 components: - pos: 2.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6267 components: - pos: 1.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6268 components: - pos: 3.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6269 components: - pos: -0.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6270 components: - pos: -0.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6271 components: - pos: -0.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6272 components: - pos: -0.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6273 components: - pos: -0.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6274 components: - pos: 4.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6275 components: - pos: 4.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6276 components: - pos: 4.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6277 components: - pos: 4.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6279 components: - pos: -1.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6280 components: - pos: -2.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6281 components: - pos: 7.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6282 components: - pos: -0.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6283 components: - pos: -3.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6284 components: - pos: 5.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6285 components: - pos: 4.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6292 components: - pos: -5.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6293 components: - pos: -5.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6294 components: - pos: -5.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6296 components: - pos: 8.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6297 components: - pos: 8.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6298 components: - pos: 8.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6299 components: - pos: 8.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6300 components: - pos: 8.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6301 components: - pos: 8.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6302 components: - pos: 8.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6303 components: - pos: 8.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6304 components: - pos: 8.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6305 components: - pos: 8.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6306 components: - pos: 8.5,18.5 @@ -11920,8 +11015,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6307 components: - pos: 8.5,19.5 @@ -11929,8 +11022,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6308 components: - pos: 9.5,19.5 @@ -11938,8 +11029,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6309 components: - pos: 22.5,16.5 @@ -11947,15 +11036,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6310 components: - pos: 22.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6311 components: - pos: 22.5,18.5 @@ -11963,8 +11048,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6312 components: - pos: -13.5,22.5 @@ -11972,15 +11055,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6313 components: - pos: -13.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6314 components: - pos: -13.5,24.5 @@ -11988,8 +11067,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6315 components: - pos: -14.5,24.5 @@ -11997,15 +11074,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6316 components: - pos: -15.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6317 components: - pos: -16.5,24.5 @@ -12013,15 +11086,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6318 components: - pos: -17.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6319 components: - pos: -18.5,24.5 @@ -12029,22 +11098,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6415 components: - pos: -1.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6416 components: - pos: -2.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6417 components: - pos: -21.5,-7.5 @@ -12052,120 +11115,86 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6418 components: - pos: -21.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6419 components: - pos: -22.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6420 components: - pos: -23.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6421 components: - pos: -24.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6422 components: - pos: -25.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6423 components: - pos: -26.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6424 components: - pos: -27.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6425 components: - pos: -28.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6426 components: - pos: -29.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6427 components: - pos: -30.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6428 components: - pos: -26.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6429 components: - pos: -26.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6430 components: - pos: -26.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6431 components: - pos: -26.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6432 components: - pos: -26.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6433 components: - pos: -25.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6434 components: - pos: -14.5,0.5 @@ -12173,239 +11202,171 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6435 components: - pos: -14.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6436 components: - pos: -14.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6437 components: - pos: -14.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6438 components: - pos: -14.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6439 components: - pos: -14.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6440 components: - pos: -14.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6441 components: - pos: -13.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6442 components: - pos: -12.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6443 components: - pos: -11.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6444 components: - pos: -11.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6445 components: - pos: -11.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6446 components: - pos: -11.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6447 components: - pos: -11.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6448 components: - pos: -10.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6449 components: - pos: -9.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6450 components: - pos: -10.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6451 components: - pos: -9.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6452 components: - pos: -10.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6453 components: - pos: -9.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6454 components: - pos: -8.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6455 components: - pos: -7.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6456 components: - pos: -15.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6457 components: - pos: -16.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6458 components: - pos: -17.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6459 components: - pos: -18.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6460 components: - pos: -19.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6461 components: - pos: -20.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6462 components: - pos: -21.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6463 components: - pos: -21.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6464 components: - pos: -16.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6465 components: - pos: -16.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6466 components: - pos: -16.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6467 components: - pos: -17.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6468 components: - pos: -16.5,-19.5 @@ -12413,169 +11374,121 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6469 components: - pos: -16.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6470 components: - pos: -16.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6471 components: - pos: -16.5,-16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6472 components: - pos: -16.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6473 components: - pos: -16.5,-14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6474 components: - pos: -16.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6475 components: - pos: -16.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6476 components: - pos: -16.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6477 components: - pos: -16.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6478 components: - pos: -16.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6479 components: - pos: -17.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6480 components: - pos: -18.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6481 components: - pos: -19.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6482 components: - pos: -17.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6483 components: - pos: -18.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6484 components: - pos: -19.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6485 components: - pos: -17.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6486 components: - pos: -18.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6487 components: - pos: -19.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6488 components: - pos: -15.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6489 components: - pos: -14.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6490 components: - pos: -15.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6491 components: - pos: -15.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6492 components: - pos: -8.5,-16.5 @@ -12583,204 +11496,146 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6493 components: - pos: -8.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6494 components: - pos: -8.5,-14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6495 components: - pos: -7.5,-14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6496 components: - pos: -6.5,-14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6497 components: - pos: -5.5,-14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6498 components: - pos: -5.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6499 components: - pos: -5.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6500 components: - pos: -5.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6501 components: - pos: -7.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6502 components: - pos: -7.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6503 components: - pos: -7.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6504 components: - pos: -7.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6505 components: - pos: -7.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6506 components: - pos: -7.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6507 components: - pos: -7.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6508 components: - pos: -9.5,-14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6509 components: - pos: -10.5,-14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6510 components: - pos: -11.5,-14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6511 components: - pos: -11.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6512 components: - pos: -11.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6513 components: - pos: -11.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6514 components: - pos: -11.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6515 components: - pos: -11.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6516 components: - pos: -11.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6517 components: - pos: -6.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6518 components: - pos: -5.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6519 components: - pos: -4.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6520 components: - pos: -3.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6578 components: - pos: 24.5,-12.5 @@ -12788,190 +11643,136 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6579 components: - pos: 24.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6580 components: - pos: 24.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6581 components: - pos: 23.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6582 components: - pos: 22.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6583 components: - pos: 21.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6584 components: - pos: 20.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6585 components: - pos: 19.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6586 components: - pos: 18.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6587 components: - pos: 17.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6588 components: - pos: 16.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6589 components: - pos: 15.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6590 components: - pos: 14.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6591 components: - pos: 13.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6592 components: - pos: 12.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6593 components: - pos: 12.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6594 components: - pos: 12.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6595 components: - pos: 13.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6596 components: - pos: 13.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6597 components: - pos: 16.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6598 components: - pos: 16.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6599 components: - pos: 16.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6600 components: - pos: 16.5,-14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6601 components: - pos: 17.5,-14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6602 components: - pos: 18.5,-14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6603 components: - pos: 19.5,-14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6604 components: - pos: 25.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6605 components: - pos: 26.5,-12.5 @@ -12979,43 +11780,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6608 components: - pos: 25.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6609 components: - pos: 26.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6610 components: - pos: 27.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6611 components: - pos: 27.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6612 components: - pos: 27.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6613 components: - pos: 27.5,-7.5 @@ -13023,169 +11812,121 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6614 components: - pos: 27.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6615 components: - pos: 27.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6618 components: - pos: 16.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6619 components: - pos: 16.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6620 components: - pos: 16.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6621 components: - pos: 16.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6622 components: - pos: 15.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6623 components: - pos: 14.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6624 components: - pos: 13.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6625 components: - pos: 12.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6626 components: - pos: 11.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6627 components: - pos: 17.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6628 components: - pos: 18.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6629 components: - pos: 19.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6630 components: - pos: 20.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6631 components: - pos: 21.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6632 components: - pos: 22.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6633 components: - pos: 22.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6634 components: - pos: 22.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6635 components: - pos: 22.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6636 components: - pos: 19.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6637 components: - pos: 19.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6638 components: - pos: 19.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6639 components: - pos: 33.5,-5.5 @@ -13193,8 +11934,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6640 components: - pos: 34.5,-5.5 @@ -13202,8 +11941,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6641 components: - pos: 34.5,-4.5 @@ -13211,8 +11948,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6642 components: - pos: 34.5,-3.5 @@ -13220,8 +11955,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6643 components: - pos: 35.5,-3.5 @@ -13229,8 +11962,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6644 components: - pos: 36.5,-3.5 @@ -13238,8 +11969,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6645 components: - pos: 37.5,-3.5 @@ -13247,8 +11976,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6646 components: - pos: 38.5,-3.5 @@ -13256,8 +11983,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6647 components: - pos: 39.5,-3.5 @@ -13265,8 +11990,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6648 components: - pos: 40.5,-3.5 @@ -13274,8 +11997,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6649 components: - pos: 40.5,-4.5 @@ -13283,8 +12004,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6650 components: - pos: 40.5,-5.5 @@ -13292,8 +12011,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6651 components: - pos: 40.5,-6.5 @@ -13301,8 +12018,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6652 components: - pos: 40.5,-7.5 @@ -13310,8 +12025,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6653 components: - pos: 40.5,-8.5 @@ -13319,8 +12032,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6654 components: - pos: 40.5,-9.5 @@ -13328,8 +12039,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6655 components: - pos: 40.5,-10.5 @@ -13337,8 +12046,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6656 components: - pos: 40.5,-11.5 @@ -13346,8 +12053,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6657 components: - pos: 40.5,-12.5 @@ -13355,8 +12060,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6658 components: - pos: 40.5,-13.5 @@ -13364,8 +12067,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6659 components: - pos: 40.5,-14.5 @@ -13373,8 +12074,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6660 components: - pos: 40.5,-15.5 @@ -13382,8 +12081,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6661 components: - pos: 40.5,-16.5 @@ -13391,8 +12088,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6662 components: - pos: 40.5,-17.5 @@ -13400,8 +12095,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6663 components: - pos: 40.5,-18.5 @@ -13409,8 +12102,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6664 components: - pos: 40.5,-19.5 @@ -13418,8 +12109,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6665 components: - pos: 39.5,-19.5 @@ -13427,8 +12116,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6666 components: - pos: 38.5,-19.5 @@ -13436,8 +12123,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6667 components: - pos: 37.5,-19.5 @@ -13445,8 +12130,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6668 components: - pos: 36.5,-19.5 @@ -13454,8 +12137,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6669 components: - pos: 35.5,-19.5 @@ -13463,8 +12144,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6670 components: - pos: 34.5,-19.5 @@ -13472,8 +12151,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6671 components: - pos: 33.5,-14.5 @@ -13481,8 +12158,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6672 components: - pos: 34.5,-14.5 @@ -13490,8 +12165,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6673 components: - pos: 34.5,-15.5 @@ -13499,8 +12172,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6674 components: - pos: 34.5,-16.5 @@ -13508,43 +12179,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6675 components: - pos: 33.5,-16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6676 components: - pos: 32.5,-16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6677 components: - pos: 31.5,-16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6678 components: - pos: 31.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6679 components: - pos: 31.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6680 components: - pos: 31.5,-19.5 @@ -13552,8 +12211,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6681 components: - pos: 32.5,-19.5 @@ -13561,8 +12218,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6682 components: - pos: 32.5,-20.5 @@ -13570,8 +12225,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6683 components: - pos: 33.5,-20.5 @@ -13579,8 +12232,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6684 components: - pos: 41.5,-18.5 @@ -13588,8 +12239,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6685 components: - pos: 33.5,-22.5 @@ -13597,8 +12246,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6686 components: - pos: 33.5,-23.5 @@ -13606,8 +12253,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6687 components: - pos: 33.5,-21.5 @@ -13615,8 +12260,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6688 components: - pos: 34.5,-21.5 @@ -13624,8 +12267,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6689 components: - pos: 35.5,-21.5 @@ -13633,8 +12274,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6690 components: - pos: 36.5,-21.5 @@ -13642,8 +12281,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6691 components: - pos: 37.5,-21.5 @@ -13651,8 +12288,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6692 components: - pos: 37.5,-22.5 @@ -13660,8 +12295,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6693 components: - pos: 37.5,-23.5 @@ -13669,8 +12302,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6694 components: - pos: 42.5,-18.5 @@ -13678,8 +12309,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6695 components: - pos: 42.5,-17.5 @@ -13687,8 +12316,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6696 components: - pos: 42.5,-16.5 @@ -13696,8 +12323,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6697 components: - pos: 42.5,-15.5 @@ -13705,8 +12330,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6698 components: - pos: 42.5,-14.5 @@ -13714,8 +12337,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6699 components: - pos: 42.5,-13.5 @@ -13723,8 +12344,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6700 components: - pos: 42.5,-12.5 @@ -13732,8 +12351,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6701 components: - pos: 42.5,-11.5 @@ -13741,8 +12358,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6702 components: - pos: 42.5,-10.5 @@ -13750,8 +12365,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6703 components: - pos: 42.5,-9.5 @@ -13759,8 +12372,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6704 components: - pos: 42.5,-8.5 @@ -13768,8 +12379,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6705 components: - pos: 42.5,-7.5 @@ -13777,8 +12386,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6706 components: - pos: 42.5,-6.5 @@ -13786,8 +12393,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6707 components: - pos: 42.5,-5.5 @@ -13795,8 +12400,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6708 components: - pos: 42.5,-4.5 @@ -13804,8 +12407,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6709 components: - pos: 41.5,-4.5 @@ -13813,8 +12414,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6710 components: - pos: 35.5,-16.5 @@ -13822,8 +12421,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6711 components: - pos: 36.5,-16.5 @@ -13831,8 +12428,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6712 components: - pos: 37.5,-16.5 @@ -13840,8 +12435,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6713 components: - pos: 38.5,-16.5 @@ -13849,8 +12442,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6714 components: - pos: 34.5,-13.5 @@ -13858,8 +12449,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6715 components: - pos: 34.5,-12.5 @@ -13867,8 +12456,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6716 components: - pos: 35.5,-12.5 @@ -13876,8 +12463,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6717 components: - pos: 36.5,-12.5 @@ -13885,8 +12470,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6718 components: - pos: 37.5,-12.5 @@ -13894,8 +12477,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6719 components: - pos: 38.5,-12.5 @@ -13903,8 +12484,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6720 components: - pos: 34.5,-6.5 @@ -13912,8 +12491,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6721 components: - pos: 34.5,-7.5 @@ -13921,8 +12498,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6722 components: - pos: 34.5,-8.5 @@ -13930,8 +12505,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6723 components: - pos: 34.5,-9.5 @@ -13939,8 +12512,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6724 components: - pos: 34.5,-10.5 @@ -13948,8 +12519,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6725 components: - pos: 34.5,-10.5 @@ -13957,8 +12526,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6726 components: - pos: 33.5,-10.5 @@ -13966,22 +12533,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6727 components: - pos: 32.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6728 components: - pos: 31.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6729 components: - pos: 35.5,-10.5 @@ -13989,8 +12550,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6730 components: - pos: 36.5,-10.5 @@ -13998,8 +12557,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6731 components: - pos: 37.5,-10.5 @@ -14007,8 +12564,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6732 components: - pos: 38.5,-10.5 @@ -14016,8 +12571,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6733 components: - pos: 35.5,-6.5 @@ -14025,8 +12578,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6734 components: - pos: 36.5,-6.5 @@ -14034,8 +12585,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6735 components: - pos: 37.5,-6.5 @@ -14043,8 +12592,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6736 components: - pos: 38.5,-6.5 @@ -14052,8 +12599,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6737 components: - pos: 30.5,-17.5 @@ -14061,8 +12606,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6738 components: - pos: 29.5,-17.5 @@ -14070,8 +12613,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6739 components: - pos: 29.5,-18.5 @@ -14079,8 +12620,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6740 components: - pos: 29.5,-19.5 @@ -14088,8 +12627,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6741 components: - pos: 29.5,-20.5 @@ -14097,15 +12634,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6783 components: - pos: 17.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6784 components: - pos: 17.5,-2.5 @@ -14113,8 +12646,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7056 components: - pos: 43.5,-18.5 @@ -14122,8 +12653,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7057 components: - pos: 44.5,-18.5 @@ -14131,8 +12660,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7058 components: - pos: 45.5,-18.5 @@ -14140,8 +12667,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7059 components: - pos: 46.5,-18.5 @@ -14149,8 +12674,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7060 components: - pos: 46.5,-17.5 @@ -14158,8 +12681,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7061 components: - pos: 46.5,-16.5 @@ -14167,8 +12688,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7062 components: - pos: 46.5,-15.5 @@ -14176,8 +12695,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7063 components: - pos: 46.5,-14.5 @@ -14185,8 +12702,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7064 components: - pos: 46.5,-13.5 @@ -14194,36 +12709,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7106 components: - pos: 8.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7107 components: - pos: 6.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7108 components: - pos: 7.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7205 components: - pos: 1.5,-33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7225 components: - pos: 46.5,-12.5 @@ -14231,8 +12736,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7226 components: - pos: 46.5,-11.5 @@ -14240,8 +12743,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7227 components: - pos: 46.5,-10.5 @@ -14249,8 +12750,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7228 components: - pos: 46.5,-9.5 @@ -14258,8 +12757,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7229 components: - pos: 46.5,-8.5 @@ -14267,8 +12764,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7230 components: - pos: 46.5,-7.5 @@ -14276,8 +12771,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7231 components: - pos: 46.5,-6.5 @@ -14285,8 +12778,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7232 components: - pos: 46.5,-5.5 @@ -14294,8 +12785,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7233 components: - pos: 46.5,-4.5 @@ -14303,8 +12792,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7234 components: - pos: 45.5,-4.5 @@ -14312,8 +12799,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7235 components: - pos: 44.5,-4.5 @@ -14321,8 +12806,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7236 components: - pos: 43.5,-4.5 @@ -14330,8 +12813,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7308 components: - pos: 15.5,-28.5 @@ -14339,127 +12820,91 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7309 components: - pos: 15.5,-27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7310 components: - pos: 15.5,-26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7311 components: - pos: 15.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7312 components: - pos: 15.5,-24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7313 components: - pos: 15.5,-23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7314 components: - pos: 15.5,-22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7315 components: - pos: 14.5,-26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7316 components: - pos: 13.5,-26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7317 components: - pos: 12.5,-26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7318 components: - pos: 11.5,-26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7319 components: - pos: 10.5,-26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7320 components: - pos: 9.5,-26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7321 components: - pos: 8.5,-26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7322 components: - pos: 7.5,-26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7323 components: - pos: 6.5,-26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7324 components: - pos: 5.5,-26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7325 components: - pos: 11.5,-27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7326 components: - pos: 11.5,-28.5 @@ -14467,8 +12912,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7327 components: - pos: 11.5,-29.5 @@ -14476,8 +12919,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7328 components: - pos: 11.5,-30.5 @@ -14485,15 +12926,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7329 components: - pos: 13.5,-27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7330 components: - pos: 13.5,-28.5 @@ -14501,8 +12938,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7331 components: - pos: 13.5,-29.5 @@ -14510,8 +12945,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7332 components: - pos: 13.5,-30.5 @@ -14519,8 +12952,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7333 components: - pos: 12.5,-19.5 @@ -14528,92 +12959,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7334 components: - pos: 11.5,-19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7335 components: - pos: 10.5,-19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7336 components: - pos: 9.5,-19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7337 components: - pos: 9.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7338 components: - pos: 9.5,-21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7339 components: - pos: 9.5,-22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7340 components: - pos: 9.5,-23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7341 components: - pos: 11.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7342 components: - pos: 11.5,-21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7343 components: - pos: 11.5,-22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7344 components: - pos: 15.5,-21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7345 components: - pos: 15.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7346 components: - pos: 23.5,-21.5 @@ -14621,106 +13026,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7347 components: - pos: 22.5,-21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7348 components: - pos: 21.5,-21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7349 components: - pos: 20.5,-21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7350 components: - pos: 19.5,-21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7351 components: - pos: 18.5,-21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7352 components: - pos: 21.5,-22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7353 components: - pos: 21.5,-23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7354 components: - pos: 21.5,-24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7355 components: - pos: 21.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7356 components: - pos: 21.5,-26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7357 components: - pos: 20.5,-26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7358 components: - pos: 19.5,-26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7359 components: - pos: 18.5,-26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7360 components: - pos: 22.5,-23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7361 components: - pos: 23.5,-23.5 @@ -14728,8 +13103,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7362 components: - pos: 24.5,-23.5 @@ -14737,8 +13110,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7363 components: - pos: 25.5,-23.5 @@ -14746,8 +13117,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7364 components: - pos: 25.5,-24.5 @@ -14755,8 +13124,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7365 components: - pos: 25.5,-25.5 @@ -14764,8 +13131,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7366 components: - pos: 25.5,-26.5 @@ -14773,15 +13138,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7367 components: - pos: 21.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7368 components: - pos: 21.5,-18.5 @@ -14789,8 +13150,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7369 components: - pos: 21.5,-19.5 @@ -14798,8 +13157,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7370 components: - pos: 22.5,-18.5 @@ -14807,8 +13164,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7371 components: - pos: 23.5,-18.5 @@ -14816,99 +13171,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7372 components: - pos: 24.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7373 components: - pos: 25.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7374 components: - pos: 5.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7375 components: - pos: 5.5,-21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7376 components: - pos: 5.5,-22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7377 components: - pos: 9.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7378 components: - pos: 9.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7379 components: - pos: 8.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7380 components: - pos: 7.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7381 components: - pos: 6.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7382 components: - pos: 5.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7383 components: - pos: 5.5,-16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7384 components: - pos: 5.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7385 components: - pos: 5.5,-18.5 @@ -14916,8 +13243,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7386 components: - pos: -19.5,-1.5 @@ -14925,8 +13250,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7387 components: - pos: -17.5,14.5 @@ -14934,8 +13257,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7388 components: - pos: 30.5,14.5 @@ -14943,71 +13264,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7563 components: - pos: -40.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7564 components: - pos: -40.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7565 components: - pos: -40.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7566 components: - pos: -40.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7567 components: - pos: -40.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7568 components: - pos: -40.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7569 components: - pos: -39.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7570 components: - pos: -38.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7571 components: - pos: -37.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7720 components: - pos: -8.5,-17.5 @@ -15015,15 +13316,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7721 components: - pos: -7.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7722 components: - pos: -7.5,-18.5 @@ -15031,8 +13328,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7810 components: - pos: -4.5,-27.5 @@ -15040,162 +13335,116 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7811 components: - pos: -4.5,-26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7812 components: - pos: -4.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7813 components: - pos: -5.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7814 components: - pos: -6.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7815 components: - pos: -6.5,-26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7816 components: - pos: -6.5,-27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7817 components: - pos: -6.5,-28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7818 components: - pos: -3.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7819 components: - pos: -2.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7820 components: - pos: -2.5,-26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7821 components: - pos: -2.5,-27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7822 components: - pos: -2.5,-28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7823 components: - pos: -3.5,-24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7824 components: - pos: -3.5,-23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7825 components: - pos: -3.5,-22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7826 components: - pos: -3.5,-21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7827 components: - pos: -4.5,-21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7828 components: - pos: -2.5,-21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7829 components: - pos: -0.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7830 components: - pos: 0.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7831 components: - pos: 1.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7832 components: - pos: -1.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7833 components: - pos: -5.5,-33.5 @@ -15203,106 +13452,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7834 components: - pos: -4.5,-33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7835 components: - pos: -3.5,-33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7836 components: - pos: -2.5,-33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7837 components: - pos: -2.5,-32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7838 components: - pos: -1.5,-32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7839 components: - pos: -0.5,-32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7840 components: - pos: 0.5,-32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7841 components: - pos: 1.5,-32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7842 components: - pos: 1.5,-31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7843 components: - pos: 1.5,-30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7844 components: - pos: 1.5,-29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7845 components: - pos: 1.5,-26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7846 components: - pos: -5.5,-32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7847 components: - pos: -6.5,-32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7848 components: - pos: -0.5,-15.5 @@ -15310,176 +13529,126 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7849 components: - pos: 0.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7850 components: - pos: 1.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7851 components: - pos: 1.5,-16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7852 components: - pos: 1.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7853 components: - pos: 1.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7854 components: - pos: 1.5,-19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7855 components: - pos: 1.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7856 components: - pos: 1.5,-21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7857 components: - pos: 1.5,-24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7858 components: - pos: 1.5,-23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7859 components: - pos: 1.5,-14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7860 components: - pos: 1.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7861 components: - pos: 1.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7862 components: - pos: 1.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7863 components: - pos: 1.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7864 components: - pos: 1.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7865 components: - pos: 1.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7866 components: - pos: 0.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7867 components: - pos: 2.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7868 components: - pos: 3.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7869 components: - pos: 4.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7870 components: - pos: 5.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7871 components: - pos: 6.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7872 components: - pos: 7.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7873 components: - pos: -20.5,-25.5 @@ -15487,120 +13656,86 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7874 components: - pos: -19.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7875 components: - pos: -18.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7876 components: - pos: -17.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7877 components: - pos: -16.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7878 components: - pos: -15.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7879 components: - pos: -14.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7880 components: - pos: -13.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7881 components: - pos: -12.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7882 components: - pos: -11.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7883 components: - pos: -11.5,-26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7884 components: - pos: -11.5,-27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7885 components: - pos: -11.5,-28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7886 components: - pos: -11.5,-29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7887 components: - pos: -11.5,-30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7894 components: - pos: -17.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7895 components: - pos: -17.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7905 components: - pos: -39.5,-8.5 @@ -15608,176 +13743,126 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7906 components: - pos: -39.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7907 components: - pos: -39.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7908 components: - pos: -38.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7909 components: - pos: -37.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7910 components: - pos: -36.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7911 components: - pos: -37.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7912 components: - pos: -37.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7913 components: - pos: -37.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7914 components: - pos: -37.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7915 components: - pos: -36.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7916 components: - pos: -40.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7917 components: - pos: -41.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7918 components: - pos: -37.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7919 components: - pos: -37.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7920 components: - pos: -37.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7921 components: - pos: -37.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7922 components: - pos: -37.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7923 components: - pos: -37.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7924 components: - pos: -39.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7925 components: - pos: -39.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7926 components: - pos: -39.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7927 components: - pos: -39.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7928 components: - pos: -39.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7929 components: - pos: -39.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7930 components: - pos: -38.5,14.5 @@ -15785,113 +13870,81 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7931 components: - pos: -39.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7932 components: - pos: -40.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7933 components: - pos: -40.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7934 components: - pos: -40.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7935 components: - pos: -40.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7936 components: - pos: -40.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7937 components: - pos: -40.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7938 components: - pos: -40.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7939 components: - pos: -40.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7940 components: - pos: -40.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7941 components: - pos: -40.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7942 components: - pos: -40.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7943 components: - pos: -40.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7944 components: - pos: -40.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7945 components: - pos: -41.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7946 components: - pos: -42.5,3.5 @@ -15899,8 +13952,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7947 components: - pos: -43.5,3.5 @@ -15908,15 +13959,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7948 components: - pos: -41.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7949 components: - pos: -42.5,5.5 @@ -15924,8 +13971,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7950 components: - pos: -43.5,5.5 @@ -15933,15 +13978,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7951 components: - pos: -41.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7952 components: - pos: -42.5,11.5 @@ -15949,8 +13990,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7953 components: - pos: -43.5,11.5 @@ -15958,15 +13997,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7954 components: - pos: -41.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7955 components: - pos: -42.5,13.5 @@ -15974,8 +14009,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7956 components: - pos: -43.5,13.5 @@ -15983,8 +14016,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7957 components: - pos: -30.5,9.5 @@ -15992,309 +14023,221 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7958 components: - pos: -31.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7959 components: - pos: -32.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7960 components: - pos: -33.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7961 components: - pos: -34.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7962 components: - pos: -34.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7963 components: - pos: -34.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7964 components: - pos: -34.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7965 components: - pos: -34.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7966 components: - pos: -34.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7967 components: - pos: -34.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7968 components: - pos: -34.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7969 components: - pos: -35.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7970 components: - pos: -36.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7971 components: - pos: -33.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7972 components: - pos: -32.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7973 components: - pos: -31.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7974 components: - pos: -30.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7975 components: - pos: -29.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7976 components: - pos: -28.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7977 components: - pos: -27.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7978 components: - pos: -28.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7979 components: - pos: -32.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7980 components: - pos: -35.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7981 components: - pos: -36.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7982 components: - pos: -37.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7983 components: - pos: -35.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7984 components: - pos: -36.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7985 components: - pos: -37.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7986 components: - pos: -33.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7987 components: - pos: -32.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7988 components: - pos: -31.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7989 components: - pos: -32.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7990 components: - pos: -32.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7991 components: - pos: -32.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7992 components: - pos: -32.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7993 components: - pos: -32.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7994 components: - pos: -32.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7995 components: - pos: -37.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7996 components: - pos: -37.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7997 components: - pos: -37.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7998 components: - pos: -37.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7999 components: - pos: -33.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8000 components: - pos: -38.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8095 components: - pos: 28.5,0.5 @@ -16302,253 +14245,181 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8096 components: - pos: 28.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8097 components: - pos: 28.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8098 components: - pos: 27.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8099 components: - pos: 26.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8100 components: - pos: 25.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8101 components: - pos: 24.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8102 components: - pos: 23.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8103 components: - pos: 22.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8104 components: - pos: 21.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8105 components: - pos: 20.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8106 components: - pos: 19.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8107 components: - pos: 18.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8108 components: - pos: 17.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8109 components: - pos: 16.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8110 components: - pos: 15.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8111 components: - pos: 14.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8112 components: - pos: 13.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8113 components: - pos: 12.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8114 components: - pos: 29.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8115 components: - pos: 30.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8116 components: - pos: 31.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8117 components: - pos: 32.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8118 components: - pos: 33.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8119 components: - pos: 34.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8120 components: - pos: 35.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8121 components: - pos: 36.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8122 components: - pos: 37.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8123 components: - pos: 38.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8124 components: - pos: 39.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8125 components: - pos: 40.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8126 components: - pos: 41.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8127 components: - pos: 42.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8128 components: - pos: 43.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8129 components: - pos: 44.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8130 components: - pos: 45.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8131 components: - pos: 43.5,14.5 @@ -16556,141 +14427,101 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8132 components: - pos: 44.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8133 components: - pos: 45.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8134 components: - pos: 45.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8135 components: - pos: 45.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8136 components: - pos: 45.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8137 components: - pos: 45.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8138 components: - pos: 45.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8139 components: - pos: 45.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8140 components: - pos: 45.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8141 components: - pos: 45.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8142 components: - pos: 45.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8143 components: - pos: 45.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8144 components: - pos: 46.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8145 components: - pos: 45.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8146 components: - pos: 45.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8147 components: - pos: 45.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8148 components: - pos: 45.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8149 components: - pos: 45.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8150 components: - pos: 46.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8151 components: - pos: 41.5,24.5 @@ -16698,64 +14529,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8152 components: - pos: 41.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8153 components: - pos: 41.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8154 components: - pos: 40.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8155 components: - pos: 42.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8156 components: - pos: 43.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8157 components: - pos: 44.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8158 components: - pos: 45.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8159 components: - pos: 45.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8160 components: - pos: 38.5,28.5 @@ -16763,155 +14576,111 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8161 components: - pos: 39.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8162 components: - pos: 40.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8163 components: - pos: 41.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8164 components: - pos: 42.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8165 components: - pos: 43.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8166 components: - pos: 44.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8167 components: - pos: 45.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8168 components: - pos: 45.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8169 components: - pos: 45.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8170 components: - pos: 41.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8171 components: - pos: 41.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8172 components: - pos: 43.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8173 components: - pos: 43.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8174 components: - pos: 43.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8175 components: - pos: 43.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8176 components: - pos: 43.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8177 components: - pos: 42.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8178 components: - pos: 41.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8179 components: - pos: 40.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8180 components: - pos: 44.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8181 components: - pos: 45.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8190 components: - pos: 10.5,-2.5 @@ -16919,127 +14688,91 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8193 components: - pos: 9.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8194 components: - pos: 8.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8195 components: - pos: 8.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8196 components: - pos: 8.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8197 components: - pos: 8.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8198 components: - pos: 5.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8199 components: - pos: 6.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8200 components: - pos: 7.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8201 components: - pos: 8.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8202 components: - pos: 8.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8203 components: - pos: 8.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8204 components: - pos: 8.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8205 components: - pos: 11.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8206 components: - pos: 12.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8207 components: - pos: 12.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8208 components: - pos: 13.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8209 components: - pos: 14.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8210 components: - pos: 43.5,15.5 @@ -17047,8 +14780,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8211 components: - pos: 42.5,15.5 @@ -17056,8 +14787,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8212 components: - pos: 42.5,16.5 @@ -17065,8 +14794,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8213 components: - pos: 41.5,16.5 @@ -17074,8 +14801,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8214 components: - pos: 40.5,16.5 @@ -17083,15 +14808,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8215 components: - pos: 39.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8216 components: - pos: 39.5,17.5 @@ -17099,8 +14820,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8217 components: - pos: 37.5,28.5 @@ -17108,8 +14827,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8218 components: - pos: 37.5,29.5 @@ -17117,29 +14834,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8219 components: - pos: 37.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8248 components: - pos: -10.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8249 components: - pos: -10.5,-24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8250 components: - pos: -10.5,-23.5 @@ -17147,8 +14856,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8251 components: - pos: -10.5,-22.5 @@ -17156,15 +14863,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8252 components: - pos: -9.5,-22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8363 components: - pos: -31.5,-21.5 @@ -17172,8 +14875,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8364 components: - pos: -31.5,-22.5 @@ -17181,8 +14882,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8365 components: - pos: -31.5,-23.5 @@ -17190,8 +14889,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8366 components: - pos: -30.5,-23.5 @@ -17199,8 +14896,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8367 components: - pos: -32.5,-22.5 @@ -17208,8 +14903,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8368 components: - pos: -33.5,-22.5 @@ -17217,8 +14910,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8369 components: - pos: -34.5,-22.5 @@ -17226,8 +14917,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8370 components: - pos: -35.5,-22.5 @@ -17235,8 +14924,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8371 components: - pos: -35.5,-23.5 @@ -17244,15 +14931,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8374 components: - pos: -32.5,-16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8375 components: - pos: -31.5,-16.5 @@ -17260,15 +14943,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8376 components: - pos: -30.5,-16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8377 components: - pos: -29.5,-16.5 @@ -17276,43 +14955,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8378 components: - pos: -29.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8379 components: - pos: -29.5,-14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8380 components: - pos: -29.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8381 components: - pos: -33.5,-16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8382 components: - pos: -34.5,-16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8385 components: - pos: -39.5,-18.5 @@ -17320,8 +14987,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8386 components: - pos: -38.5,-18.5 @@ -17329,8 +14994,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8387 components: - pos: -38.5,-19.5 @@ -17338,36 +15001,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8388 components: - pos: -38.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8389 components: - pos: -40.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8390 components: - pos: -41.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8391 components: - pos: -42.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8392 components: - pos: -41.5,-17.5 @@ -17375,22 +15028,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8393 components: - pos: -41.5,-16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8394 components: - pos: -41.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8395 components: - pos: -41.5,-19.5 @@ -17398,8 +15045,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8396 components: - pos: -41.5,-20.5 @@ -17407,8 +15052,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8397 components: - pos: -31.5,-20.5 @@ -17416,22 +15059,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8398 components: - pos: -32.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8399 components: - pos: -33.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8400 components: - pos: -34.5,-20.5 @@ -17439,8 +15076,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8401 components: - pos: -35.5,-20.5 @@ -17448,8 +15083,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8402 components: - pos: -36.5,-20.5 @@ -17457,8 +15090,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8403 components: - pos: -30.5,-20.5 @@ -17466,8 +15097,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8404 components: - pos: -29.5,-20.5 @@ -17475,8 +15104,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8405 components: - pos: -28.5,-20.5 @@ -17484,22 +15111,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8406 components: - pos: -27.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8407 components: - pos: 2.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8408 components: - pos: -27.5,-21.5 @@ -17507,15 +15128,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8409 components: - pos: -27.5,-22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8410 components: - pos: -26.5,-22.5 @@ -17523,8 +15140,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8411 components: - pos: -25.5,-22.5 @@ -17532,15 +15147,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8412 components: - pos: -24.5,-22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8413 components: - pos: -23.5,-22.5 @@ -17548,8 +15159,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8414 components: - pos: -22.5,-22.5 @@ -17557,8 +15166,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8437 components: - pos: 34.5,32.5 @@ -17566,8 +15173,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8438 components: - pos: 34.5,33.5 @@ -17575,8 +15180,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8439 components: - pos: 34.5,34.5 @@ -17584,8 +15187,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8440 components: - pos: 35.5,34.5 @@ -17593,15 +15194,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8441 components: - pos: 36.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8442 components: - pos: 33.5,34.5 @@ -17609,8 +15206,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8443 components: - pos: 32.5,34.5 @@ -17618,8 +15213,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8444 components: - pos: 31.5,34.5 @@ -17627,8 +15220,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8445 components: - pos: 30.5,34.5 @@ -17636,15 +15227,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8446 components: - pos: 29.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8447 components: - pos: 28.5,34.5 @@ -17652,8 +15239,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8448 components: - pos: 27.5,34.5 @@ -17661,15 +15246,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8449 components: - pos: 26.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8450 components: - pos: 25.5,34.5 @@ -17677,8 +15258,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8451 components: - pos: 24.5,34.5 @@ -17686,8 +15265,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8452 components: - pos: 23.5,34.5 @@ -17695,15 +15272,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8453 components: - pos: 22.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8454 components: - pos: 21.5,34.5 @@ -17711,8 +15284,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8455 components: - pos: 20.5,34.5 @@ -17720,15 +15291,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8456 components: - pos: 20.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8457 components: - pos: 24.5,35.5 @@ -17736,8 +15303,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8458 components: - pos: 24.5,36.5 @@ -17745,8 +15310,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8459 components: - pos: 24.5,37.5 @@ -17754,8 +15317,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8460 components: - pos: 32.5,35.5 @@ -17763,8 +15324,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8461 components: - pos: 32.5,36.5 @@ -17772,8 +15331,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8462 components: - pos: 32.5,37.5 @@ -17781,8 +15338,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8463 components: - pos: 25.5,33.5 @@ -17790,29 +15345,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8464 components: - pos: 31.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8465 components: - pos: 8.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8466 components: - pos: 8.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8467 components: - pos: 8.5,22.5 @@ -17820,8 +15367,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8468 components: - pos: 8.5,23.5 @@ -17829,15 +15374,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8469 components: - pos: 8.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8470 components: - pos: 8.5,25.5 @@ -17845,22 +15386,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8471 components: - pos: 8.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8472 components: - pos: 8.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8473 components: - pos: 8.5,28.5 @@ -17868,15 +15403,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8474 components: - pos: 8.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8475 components: - pos: 8.5,30.5 @@ -17884,15 +15415,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8476 components: - pos: 9.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8477 components: - pos: 10.5,30.5 @@ -17900,8 +15427,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8478 components: - pos: 10.5,31.5 @@ -17909,8 +15434,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8479 components: - pos: 10.5,32.5 @@ -17918,15 +15441,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8480 components: - pos: 10.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8481 components: - pos: 22.5,19.5 @@ -17934,8 +15453,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8482 components: - pos: 25.5,-19.5 @@ -17943,8 +15460,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8483 components: - pos: 25.5,-20.5 @@ -17952,8 +15467,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8935 components: - pos: -28.5,-13.5 @@ -17961,15 +15474,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8936 components: - pos: -27.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9067 components: - pos: -39.5,-11.5 @@ -17977,15 +15486,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9068 components: - pos: -40.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9069 components: - pos: -41.5,-11.5 @@ -17993,29 +15498,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9070 components: - pos: -41.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9197 components: - pos: -32.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9200 components: - pos: -31.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9202 components: - pos: -33.5,23.5 @@ -18023,8 +15520,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9203 components: - pos: -33.5,24.5 @@ -18032,8 +15527,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9204 components: - pos: -33.5,25.5 @@ -18041,8 +15534,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9205 components: - pos: -34.5,25.5 @@ -18050,8 +15541,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9206 components: - pos: -26.5,28.5 @@ -18059,8 +15548,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9207 components: - pos: -26.5,29.5 @@ -18068,8 +15555,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9208 components: - pos: -26.5,30.5 @@ -18077,8 +15562,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9209 components: - pos: -27.5,30.5 @@ -18086,8 +15569,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9210 components: - pos: -28.5,30.5 @@ -18095,8 +15576,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9211 components: - pos: -29.5,23.5 @@ -18104,15 +15583,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9212 components: - pos: -29.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9213 components: - pos: -29.5,21.5 @@ -18120,22 +15595,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9214 components: - pos: -29.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9215 components: - pos: -29.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9216 components: - pos: -29.5,18.5 @@ -18143,8 +15612,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9217 components: - pos: -29.5,17.5 @@ -18152,22 +15619,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9218 components: - pos: -26.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9219 components: - pos: -25.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9220 components: - pos: -24.5,27.5 @@ -18175,8 +15636,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9221 components: - pos: -23.5,27.5 @@ -18184,15 +15643,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9222 components: - pos: -22.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9223 components: - pos: -30.5,19.5 @@ -18200,8 +15655,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9224 components: - pos: -31.5,19.5 @@ -18209,8 +15662,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9225 components: - pos: -32.5,19.5 @@ -18218,15 +15669,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9226 components: - pos: -33.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9227 components: - pos: -34.5,19.5 @@ -18234,8 +15681,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9228 components: - pos: -35.5,19.5 @@ -18243,8 +15688,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9229 components: - pos: -27.5,27.5 @@ -18252,8 +15695,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9230 components: - pos: -28.5,27.5 @@ -18261,8 +15702,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9231 components: - pos: -28.5,26.5 @@ -18270,15 +15709,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9233 components: - pos: -28.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9310 components: - pos: 20.5,32.5 @@ -18286,15 +15721,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9735 components: - pos: -29.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9738 components: - pos: -30.5,24.5 @@ -18302,8 +15733,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9739 components: - pos: -31.5,24.5 @@ -18311,15 +15740,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12124 components: - pos: -39.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12125 components: - pos: -39.5,24.5 @@ -18327,8 +15752,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12358 components: - pos: 26.5,-13.5 @@ -18336,8 +15759,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12359 components: - pos: 26.5,-14.5 @@ -18345,8 +15766,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12360 components: - pos: 26.5,-15.5 @@ -18354,8 +15773,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12361 components: - pos: 25.5,-15.5 @@ -18363,57 +15780,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12472 components: - pos: -3.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12473 components: - pos: -4.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12474 components: - pos: -5.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12475 components: - pos: -6.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12477 components: - pos: 46.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12479 components: - pos: -26.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12480 components: - pos: -25.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12564 components: - pos: -33.5,-14.5 @@ -18421,8 +15822,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - proto: CableApcStack entities: - uid: 3981 @@ -18461,22 +15860,16 @@ entities: - pos: 27.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1138 components: - pos: 27.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1139 components: - pos: 27.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1140 components: - pos: 27.5,-7.5 @@ -18484,57 +15877,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1141 components: - pos: 27.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1142 components: - pos: 27.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1143 components: - pos: 27.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1144 components: - pos: 26.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1145 components: - pos: 25.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1146 components: - pos: 25.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1147 components: - pos: 25.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1148 components: - pos: 25.5,-13.5 @@ -18542,8 +15919,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1149 components: - pos: 24.5,-13.5 @@ -18551,8 +15926,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1150 components: - pos: 23.5,-13.5 @@ -18560,8 +15933,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1151 components: - pos: 25.5,-14.5 @@ -18569,8 +15940,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1152 components: - pos: 24.5,-14.5 @@ -18578,8 +15947,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1153 components: - pos: 23.5,-14.5 @@ -18587,8 +15954,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1154 components: - pos: 23.5,-15.5 @@ -18596,8 +15961,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1155 components: - pos: 22.5,-15.5 @@ -18605,8 +15968,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1156 components: - pos: 21.5,-15.5 @@ -18614,120 +15975,86 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1157 components: - pos: 20.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1158 components: - pos: 19.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1159 components: - pos: 18.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1160 components: - pos: 17.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1161 components: - pos: 16.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1162 components: - pos: 16.5,-14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1163 components: - pos: 16.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1164 components: - pos: 16.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1165 components: - pos: 16.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1166 components: - pos: 16.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1167 components: - pos: 15.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1168 components: - pos: 14.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1169 components: - pos: 13.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1170 components: - pos: 12.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1171 components: - pos: 11.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1172 components: - pos: 12.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1173 components: - pos: 25.5,-15.5 @@ -18735,8 +16062,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1174 components: - pos: 25.5,-16.5 @@ -18744,8 +16069,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1175 components: - pos: 24.5,-15.5 @@ -18753,8 +16076,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1195 components: - pos: 22.5,-13.5 @@ -18762,8 +16083,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1196 components: - pos: 21.5,-13.5 @@ -18771,29 +16090,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1197 components: - pos: 20.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1454 components: - pos: 14.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1825 components: - pos: 14.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2496 components: - pos: -34.5,-28.5 @@ -18801,8 +16112,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2497 components: - pos: -33.5,-28.5 @@ -18810,8 +16119,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2498 components: - pos: -32.5,-28.5 @@ -18819,8 +16126,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2499 components: - pos: -30.5,-28.5 @@ -18828,8 +16133,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2500 components: - pos: -29.5,-28.5 @@ -18837,8 +16140,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2501 components: - pos: -28.5,-28.5 @@ -18846,8 +16147,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2502 components: - pos: -28.5,-30.5 @@ -18855,8 +16154,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2503 components: - pos: -29.5,-30.5 @@ -18864,8 +16161,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2504 components: - pos: -30.5,-30.5 @@ -18873,8 +16168,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2505 components: - pos: -32.5,-30.5 @@ -18882,8 +16175,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2506 components: - pos: -33.5,-30.5 @@ -18891,8 +16182,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2507 components: - pos: -34.5,-30.5 @@ -18900,8 +16189,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2508 components: - pos: -34.5,-32.5 @@ -18909,8 +16196,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2509 components: - pos: -33.5,-32.5 @@ -18918,8 +16203,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2510 components: - pos: -32.5,-32.5 @@ -18927,8 +16210,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2511 components: - pos: -34.5,-34.5 @@ -18936,8 +16217,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2512 components: - pos: -33.5,-34.5 @@ -18945,8 +16224,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2513 components: - pos: -32.5,-34.5 @@ -18954,8 +16231,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2514 components: - pos: -30.5,-32.5 @@ -18963,8 +16238,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2515 components: - pos: -29.5,-32.5 @@ -18972,8 +16245,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2516 components: - pos: -28.5,-32.5 @@ -18981,8 +16252,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2517 components: - pos: -28.5,-34.5 @@ -18990,8 +16259,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2518 components: - pos: -29.5,-34.5 @@ -18999,8 +16266,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2519 components: - pos: -30.5,-34.5 @@ -19008,8 +16273,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2520 components: - pos: -31.5,-35.5 @@ -19017,8 +16280,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2522 components: - pos: -31.5,-36.5 @@ -19026,8 +16287,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2525 components: - pos: -32.5,-23.5 @@ -19035,8 +16294,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2526 components: - pos: -31.5,-23.5 @@ -19044,8 +16301,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2527 components: - pos: -30.5,-23.5 @@ -19053,8 +16308,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2528 components: - pos: -29.5,-23.5 @@ -19062,8 +16315,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2529 components: - pos: -32.5,-22.5 @@ -19071,8 +16322,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2530 components: - pos: -33.5,-22.5 @@ -19080,8 +16329,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2531 components: - pos: -34.5,-22.5 @@ -19089,8 +16336,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2532 components: - pos: -35.5,-22.5 @@ -19098,8 +16343,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2533 components: - pos: -35.5,-23.5 @@ -19107,8 +16350,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2534 components: - pos: -35.5,-24.5 @@ -19116,8 +16357,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2535 components: - pos: -35.5,-25.5 @@ -19125,8 +16364,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2536 components: - pos: -32.5,-25.5 @@ -19134,8 +16371,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2538 components: - pos: -31.5,-25.5 @@ -19143,8 +16378,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2539 components: - pos: -31.5,-26.5 @@ -19152,8 +16385,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2540 components: - pos: -30.5,-22.5 @@ -19161,8 +16392,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2541 components: - pos: -30.5,-21.5 @@ -19170,8 +16399,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2542 components: - pos: -30.5,-20.5 @@ -19179,8 +16406,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2543 components: - pos: -27.5,29.5 @@ -19188,8 +16413,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2544 components: - pos: -26.5,29.5 @@ -19197,8 +16420,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2545 components: - pos: -25.5,29.5 @@ -19206,8 +16427,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2546 components: - pos: -25.5,28.5 @@ -19215,15 +16434,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2547 components: - pos: -25.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2548 components: - pos: -27.5,30.5 @@ -19231,8 +16446,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2549 components: - pos: -28.5,30.5 @@ -19240,8 +16453,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2550 components: - pos: -29.5,30.5 @@ -19249,8 +16460,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2551 components: - pos: -29.5,31.5 @@ -19258,8 +16467,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2554 components: - pos: -24.5,29.5 @@ -19267,8 +16474,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2590 components: - pos: -29.5,32.5 @@ -19276,8 +16481,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2619 components: - pos: -28.5,34.5 @@ -19285,8 +16488,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2620 components: - pos: -29.5,34.5 @@ -19294,8 +16495,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2621 components: - pos: -30.5,34.5 @@ -19303,8 +16502,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2622 components: - pos: -31.5,34.5 @@ -19312,8 +16509,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2623 components: - pos: -31.5,36.5 @@ -19321,8 +16516,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2624 components: - pos: -30.5,36.5 @@ -19330,8 +16523,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2625 components: - pos: -29.5,36.5 @@ -19339,8 +16530,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2626 components: - pos: -28.5,36.5 @@ -19348,8 +16537,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2627 components: - pos: -26.5,36.5 @@ -19357,8 +16544,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2628 components: - pos: -25.5,36.5 @@ -19366,8 +16551,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2629 components: - pos: -24.5,36.5 @@ -19375,8 +16558,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2630 components: - pos: -23.5,36.5 @@ -19384,8 +16565,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2631 components: - pos: -23.5,34.5 @@ -19393,8 +16572,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2632 components: - pos: -24.5,34.5 @@ -19402,8 +16579,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2633 components: - pos: -25.5,34.5 @@ -19411,8 +16586,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2634 components: - pos: -26.5,34.5 @@ -19420,8 +16593,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2635 components: - pos: -26.5,38.5 @@ -19429,8 +16600,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2636 components: - pos: -25.5,38.5 @@ -19438,8 +16607,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2637 components: - pos: -24.5,38.5 @@ -19447,8 +16614,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2638 components: - pos: -23.5,38.5 @@ -19456,8 +16621,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2639 components: - pos: -23.5,40.5 @@ -19465,8 +16628,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2640 components: - pos: -24.5,40.5 @@ -19474,8 +16635,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2641 components: - pos: -25.5,40.5 @@ -19483,8 +16642,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2642 components: - pos: -26.5,40.5 @@ -19492,8 +16649,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2643 components: - pos: -28.5,40.5 @@ -19501,8 +16656,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2644 components: - pos: -29.5,40.5 @@ -19510,8 +16663,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2645 components: - pos: -30.5,40.5 @@ -19519,8 +16670,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2646 components: - pos: -31.5,40.5 @@ -19528,8 +16677,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2647 components: - pos: -31.5,38.5 @@ -19537,8 +16684,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2648 components: - pos: -30.5,38.5 @@ -19546,8 +16691,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2649 components: - pos: -29.5,38.5 @@ -19555,8 +16698,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2650 components: - pos: -28.5,38.5 @@ -19564,8 +16705,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2651 components: - pos: -27.5,41.5 @@ -19573,8 +16712,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2652 components: - pos: -27.5,42.5 @@ -19582,8 +16719,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2793 components: - pos: -14.5,-57.5 @@ -19591,8 +16726,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2809 components: - pos: -14.5,-60.5 @@ -19600,8 +16733,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2810 components: - pos: -12.5,-59.5 @@ -19609,8 +16740,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2811 components: - pos: -16.5,-59.5 @@ -19618,8 +16747,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2812 components: - pos: -13.5,-55.5 @@ -19627,8 +16754,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2813 components: - pos: -12.5,-55.5 @@ -19636,15 +16761,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2814 components: - pos: -11.5,-51.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2822 components: - pos: -14.5,-56.5 @@ -19652,8 +16773,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2824 components: - pos: -12.5,-57.5 @@ -19661,8 +16780,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2825 components: - pos: -13.5,-59.5 @@ -19670,8 +16787,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2826 components: - pos: -13.5,-57.5 @@ -19679,22 +16794,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2827 components: - pos: -11.5,-53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2828 components: - pos: -11.5,-52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2829 components: - pos: -15.5,-59.5 @@ -19702,8 +16811,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2830 components: - pos: -14.5,-59.5 @@ -19711,8 +16818,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2831 components: - pos: -14.5,-55.5 @@ -19720,8 +16825,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2832 components: - pos: -11.5,-55.5 @@ -19729,8 +16832,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2833 components: - pos: -11.5,-54.5 @@ -19738,8 +16839,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2834 components: - pos: -15.5,-57.5 @@ -19747,8 +16846,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2835 components: - pos: -14.5,-58.5 @@ -19756,8 +16853,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2839 components: - pos: -16.5,-57.5 @@ -19765,274 +16860,196 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3675 components: - pos: -1.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3676 components: - pos: -0.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3677 components: - pos: -0.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3679 components: - pos: -0.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3680 components: - pos: -0.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4047 components: - pos: 8.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4052 components: - pos: 8.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4237 components: - pos: 12.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4238 components: - pos: 12.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4239 components: - pos: 12.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4240 components: - pos: 11.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4241 components: - pos: 10.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4242 components: - pos: 9.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4243 components: - pos: 8.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4244 components: - pos: 8.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4245 components: - pos: 8.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4246 components: - pos: 8.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4247 components: - pos: 8.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4248 components: - pos: 8.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4249 components: - pos: 8.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4250 components: - pos: 8.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4251 components: - pos: 8.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4252 components: - pos: 8.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4253 components: - pos: 8.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4254 components: - pos: 8.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4255 components: - pos: 8.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4256 components: - pos: 8.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4257 components: - pos: 8.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4258 components: - pos: 8.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4259 components: - pos: 8.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4260 components: - pos: 8.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4261 components: - pos: 8.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4262 components: - pos: 8.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4263 components: - pos: 8.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4264 components: - pos: 8.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4265 components: - pos: 8.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4266 components: - pos: 8.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4267 components: - pos: 8.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4268 components: - pos: 8.5,18.5 @@ -20040,8 +17057,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4269 components: - pos: 8.5,19.5 @@ -20049,8 +17064,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4270 components: - pos: 9.5,19.5 @@ -20058,8 +17071,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4271 components: - pos: 10.5,19.5 @@ -20067,8 +17078,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4272 components: - pos: 10.5,20.5 @@ -20076,8 +17085,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4273 components: - pos: 10.5,21.5 @@ -20085,218 +17092,156 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4274 components: - pos: 7.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4275 components: - pos: 6.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4276 components: - pos: 5.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4277 components: - pos: 4.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4278 components: - pos: 4.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4279 components: - pos: 4.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4280 components: - pos: 4.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4281 components: - pos: 4.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4282 components: - pos: 4.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4283 components: - pos: 4.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4284 components: - pos: 4.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4285 components: - pos: 4.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4286 components: - pos: 4.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4287 components: - pos: 3.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4288 components: - pos: 2.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4289 components: - pos: 1.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4290 components: - pos: 1.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4291 components: - pos: 1.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4292 components: - pos: 1.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4293 components: - pos: 1.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4294 components: - pos: 1.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4295 components: - pos: 0.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4296 components: - pos: -0.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4297 components: - pos: -1.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4298 components: - pos: -2.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4299 components: - pos: -3.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4300 components: - pos: -4.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4301 components: - pos: -5.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4302 components: - pos: -6.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4303 components: - pos: -7.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4306 components: - pos: 8.5,22.5 @@ -20304,71 +17249,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4307 components: - pos: -7.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4308 components: - pos: -8.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4309 components: - pos: -9.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4310 components: - pos: -10.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4311 components: - pos: -11.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4312 components: - pos: -12.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4313 components: - pos: -13.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4314 components: - pos: -14.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4315 components: - pos: -14.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4316 components: - pos: 8.5,23.5 @@ -20376,15 +17301,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4317 components: - pos: 8.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4318 components: - pos: 7.5,24.5 @@ -20392,8 +17313,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4319 components: - pos: 6.5,24.5 @@ -20401,22 +17320,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4320 components: - pos: 5.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4321 components: - pos: -15.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4322 components: - pos: -16.5,30.5 @@ -20424,8 +17337,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4323 components: - pos: -17.5,30.5 @@ -20433,8 +17344,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4324 components: - pos: -17.5,29.5 @@ -20442,15 +17351,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4325 components: - pos: -17.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4326 components: - pos: -17.5,27.5 @@ -20458,15 +17363,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4327 components: - pos: -17.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4328 components: - pos: -17.5,25.5 @@ -20474,15 +17375,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4329 components: - pos: -17.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4330 components: - pos: -18.5,24.5 @@ -20490,8 +17387,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4331 components: - pos: -19.5,24.5 @@ -20499,8 +17394,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4332 components: - pos: -19.5,25.5 @@ -20508,8 +17401,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4333 components: - pos: -19.5,26.5 @@ -20517,8 +17408,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4334 components: - pos: -20.5,26.5 @@ -20526,8 +17415,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4335 components: - pos: -18.5,28.5 @@ -20535,15 +17422,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4336 components: - pos: -19.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4337 components: - pos: -20.5,28.5 @@ -20551,8 +17434,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4338 components: - pos: -21.5,28.5 @@ -20560,22 +17441,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4339 components: - pos: -22.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4340 components: - pos: -22.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4341 components: - pos: -23.5,27.5 @@ -20583,8 +17458,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4342 components: - pos: -24.5,27.5 @@ -20592,15 +17465,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4343 components: - pos: -26.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4344 components: - pos: -27.5,27.5 @@ -20608,8 +17477,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4345 components: - pos: -28.5,27.5 @@ -20617,8 +17484,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4346 components: - pos: -28.5,26.5 @@ -20626,15 +17491,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4347 components: - pos: -28.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4348 components: - pos: -28.5,24.5 @@ -20642,15 +17503,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4349 components: - pos: -28.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4350 components: - pos: -28.5,22.5 @@ -20658,22 +17515,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4351 components: - pos: -28.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4352 components: - pos: -28.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4353 components: - pos: -28.5,19.5 @@ -20681,29 +17532,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4354 components: - pos: -28.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4355 components: - pos: -28.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4356 components: - pos: -28.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4357 components: - pos: -28.5,15.5 @@ -20711,8 +17554,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4358 components: - pos: -28.5,14.5 @@ -20720,8 +17561,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4359 components: - pos: -28.5,13.5 @@ -20729,22 +17568,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4360 components: - pos: -28.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4361 components: - pos: -28.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4362 components: - pos: -28.5,10.5 @@ -20752,8 +17585,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4363 components: - pos: -28.5,9.5 @@ -20761,8 +17592,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4364 components: - pos: -28.5,8.5 @@ -20770,15 +17599,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4365 components: - pos: -28.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4366 components: - pos: -28.5,6.5 @@ -20786,8 +17611,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4367 components: - pos: -28.5,5.5 @@ -20795,36 +17618,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4368 components: - pos: -28.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4369 components: - pos: -28.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4370 components: - pos: -28.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4371 components: - pos: -29.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4372 components: - pos: -30.5,19.5 @@ -20832,8 +17645,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4373 components: - pos: -31.5,19.5 @@ -20841,8 +17652,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4374 components: - pos: -32.5,19.5 @@ -20850,15 +17659,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4375 components: - pos: -33.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4376 components: - pos: -34.5,19.5 @@ -20866,8 +17671,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4377 components: - pos: -35.5,19.5 @@ -20875,15 +17678,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4378 components: - pos: -36.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4379 components: - pos: -37.5,19.5 @@ -20891,22 +17690,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4380 components: - pos: -37.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4381 components: - pos: -37.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4382 components: - pos: -37.5,16.5 @@ -20914,8 +17707,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4383 components: - pos: -37.5,15.5 @@ -20923,8 +17714,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4384 components: - pos: -38.5,15.5 @@ -20932,533 +17721,381 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4385 components: - pos: -39.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4386 components: - pos: -40.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4387 components: - pos: -40.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4388 components: - pos: -40.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4389 components: - pos: -40.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4390 components: - pos: -40.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4391 components: - pos: -40.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4392 components: - pos: -40.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4393 components: - pos: -40.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4394 components: - pos: -40.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4395 components: - pos: -40.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4396 components: - pos: -40.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4397 components: - pos: -40.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4398 components: - pos: -40.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4399 components: - pos: -40.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4400 components: - pos: -40.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4401 components: - pos: -40.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4402 components: - pos: -40.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4403 components: - pos: -39.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4404 components: - pos: -38.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4405 components: - pos: -37.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4406 components: - pos: -36.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4407 components: - pos: -35.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4408 components: - pos: -34.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4409 components: - pos: -33.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4410 components: - pos: -32.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4411 components: - pos: -31.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4412 components: - pos: -30.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4413 components: - pos: -29.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4414 components: - pos: -27.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4415 components: - pos: -26.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4416 components: - pos: -25.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4417 components: - pos: -24.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4418 components: - pos: -23.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4419 components: - pos: -22.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4420 components: - pos: -21.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4421 components: - pos: -20.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4422 components: - pos: -19.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4423 components: - pos: -18.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4424 components: - pos: -17.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4425 components: - pos: -16.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4426 components: - pos: -15.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4427 components: - pos: -14.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4428 components: - pos: -13.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4429 components: - pos: -12.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4430 components: - pos: -11.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4431 components: - pos: -10.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4432 components: - pos: -9.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4433 components: - pos: -8.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4434 components: - pos: -7.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4435 components: - pos: -6.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4436 components: - pos: -5.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4437 components: - pos: -5.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4438 components: - pos: -5.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4439 components: - pos: -5.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4440 components: - pos: -5.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4441 components: - pos: -5.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4442 components: - pos: -5.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4443 components: - pos: -5.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4444 components: - pos: -5.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4445 components: - pos: -5.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4446 components: - pos: -5.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4447 components: - pos: -5.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4448 components: - pos: -5.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4449 components: - pos: -5.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4450 components: - pos: -5.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4451 components: - pos: -4.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4452 components: - pos: -3.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4453 components: - pos: -2.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4454 components: - pos: -1.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4455 components: - pos: -0.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4456 components: - pos: 0.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4457 components: - pos: 1.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4458 components: - pos: 2.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4459 components: - pos: 3.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4460 components: - pos: -6.5,16.5 @@ -21466,8 +18103,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4461 components: - pos: -7.5,16.5 @@ -21475,8 +18110,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4462 components: - pos: -8.5,16.5 @@ -21484,8 +18117,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4463 components: - pos: -8.5,17.5 @@ -21493,15 +18124,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4464 components: - pos: -8.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4465 components: - pos: -8.5,19.5 @@ -21509,15 +18136,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4466 components: - pos: -8.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4467 components: - pos: -8.5,21.5 @@ -21525,8 +18148,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4468 components: - pos: -8.5,22.5 @@ -21534,22 +18155,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4469 components: - pos: -8.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4470 components: - pos: -9.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4471 components: - pos: -10.5,23.5 @@ -21557,8 +18172,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4472 components: - pos: -11.5,23.5 @@ -21566,22 +18179,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4473 components: - pos: -12.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4474 components: - pos: -13.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4475 components: - pos: -13.5,24.5 @@ -21589,8 +18196,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4476 components: - pos: -14.5,24.5 @@ -21598,15 +18203,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4477 components: - pos: -15.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4478 components: - pos: -16.5,24.5 @@ -21614,15 +18215,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4479 components: - pos: -19.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4480 components: - pos: -19.5,22.5 @@ -21630,15 +18227,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4481 components: - pos: -19.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4482 components: - pos: -19.5,20.5 @@ -21646,29 +18239,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4483 components: - pos: -19.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4484 components: - pos: -19.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4485 components: - pos: -20.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4486 components: - pos: -21.5,18.5 @@ -21676,15 +18261,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4487 components: - pos: -22.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4488 components: - pos: -23.5,18.5 @@ -21692,15 +18273,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4489 components: - pos: -24.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4490 components: - pos: -25.5,18.5 @@ -21708,15 +18285,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4491 components: - pos: -26.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4492 components: - pos: -27.5,18.5 @@ -21724,15 +18297,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4493 components: - pos: 10.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4494 components: - pos: 11.5,18.5 @@ -21740,8 +18309,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4495 components: - pos: 12.5,18.5 @@ -21749,15 +18316,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4496 components: - pos: 13.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4497 components: - pos: 14.5,18.5 @@ -21765,8 +18328,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4498 components: - pos: 15.5,18.5 @@ -21774,8 +18335,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4499 components: - pos: 16.5,18.5 @@ -21783,22 +18342,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4500 components: - pos: 17.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4501 components: - pos: 18.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4502 components: - pos: 19.5,18.5 @@ -21806,8 +18359,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4503 components: - pos: 20.5,18.5 @@ -21815,8 +18366,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4504 components: - pos: 21.5,18.5 @@ -21824,8 +18373,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4505 components: - pos: 22.5,18.5 @@ -21833,8 +18380,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4506 components: - pos: 23.5,18.5 @@ -21842,8 +18387,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4507 components: - pos: 24.5,18.5 @@ -21851,8 +18394,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4508 components: - pos: 25.5,18.5 @@ -21860,15 +18401,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4512 components: - pos: 22.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4513 components: - pos: 25.5,19.5 @@ -21876,15 +18413,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4514 components: - pos: 25.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4515 components: - pos: 26.5,20.5 @@ -21892,15 +18425,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4516 components: - pos: 27.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4517 components: - pos: 28.5,20.5 @@ -21908,8 +18437,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4518 components: - pos: 29.5,20.5 @@ -21917,8 +18444,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4519 components: - pos: 30.5,20.5 @@ -21926,36 +18451,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4520 components: - pos: 31.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4521 components: - pos: 32.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4522 components: - pos: 33.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4523 components: - pos: 34.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4524 components: - pos: 35.5,20.5 @@ -21963,15 +18478,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4525 components: - pos: 36.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4526 components: - pos: 36.5,19.5 @@ -21979,15 +18490,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4527 components: - pos: 36.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4528 components: - pos: 36.5,17.5 @@ -21995,8 +18502,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4529 components: - pos: 36.5,16.5 @@ -22004,15 +18509,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4530 components: - pos: 37.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4531 components: - pos: 38.5,16.5 @@ -22020,15 +18521,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4532 components: - pos: 39.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4533 components: - pos: 39.5,17.5 @@ -22036,8 +18533,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4534 components: - pos: 39.5,18.5 @@ -22045,8 +18540,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4535 components: - pos: 39.5,19.5 @@ -22054,8 +18547,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4536 components: - pos: 40.5,19.5 @@ -22063,8 +18554,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4537 components: - pos: 40.5,16.5 @@ -22072,8 +18561,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4538 components: - pos: 41.5,16.5 @@ -22081,22 +18568,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4539 components: - pos: 41.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4540 components: - pos: 41.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4541 components: - pos: 41.5,13.5 @@ -22104,8 +18585,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4542 components: - pos: 41.5,12.5 @@ -22113,15 +18592,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4543 components: - pos: 41.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4544 components: - pos: 41.5,10.5 @@ -22129,15 +18604,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4545 components: - pos: 41.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4546 components: - pos: 41.5,8.5 @@ -22145,15 +18616,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4547 components: - pos: 41.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4548 components: - pos: 40.5,7.5 @@ -22161,8 +18628,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4549 components: - pos: 39.5,7.5 @@ -22170,8 +18635,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4550 components: - pos: 38.5,7.5 @@ -22179,15 +18642,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4551 components: - pos: 37.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4552 components: - pos: 36.5,7.5 @@ -22195,8 +18654,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4553 components: - pos: 35.5,7.5 @@ -22204,15 +18661,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4554 components: - pos: 35.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4555 components: - pos: 31.5,6.5 @@ -22220,15 +18673,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4556 components: - pos: 32.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4557 components: - pos: 33.5,6.5 @@ -22236,8 +18685,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4558 components: - pos: 34.5,6.5 @@ -22245,8 +18692,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4559 components: - pos: 31.5,5.5 @@ -22254,8 +18699,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4560 components: - pos: 31.5,4.5 @@ -22263,183 +18706,131 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4561 components: - pos: 31.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4562 components: - pos: 31.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4563 components: - pos: 30.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4564 components: - pos: 29.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4565 components: - pos: 28.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4566 components: - pos: 27.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4567 components: - pos: 26.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4568 components: - pos: 25.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4569 components: - pos: 24.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4570 components: - pos: 23.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4571 components: - pos: 22.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4572 components: - pos: 21.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4573 components: - pos: 20.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4574 components: - pos: 19.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4575 components: - pos: 18.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4576 components: - pos: 17.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4577 components: - pos: 16.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4578 components: - pos: 15.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4579 components: - pos: 14.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4580 components: - pos: 13.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4581 components: - pos: 12.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4582 components: - pos: 11.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4583 components: - pos: 10.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4584 components: - pos: 9.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4585 components: - pos: 30.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4586 components: - pos: 30.5,0.5 @@ -22447,15 +18838,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4587 components: - pos: 30.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4588 components: - pos: 30.5,-1.5 @@ -22463,15 +18850,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4589 components: - pos: 31.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4590 components: - pos: 31.5,-2.5 @@ -22479,8 +18862,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4591 components: - pos: 31.5,-3.5 @@ -22488,8 +18869,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4592 components: - pos: 31.5,-4.5 @@ -22497,8 +18876,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4593 components: - pos: 31.5,-5.5 @@ -22506,8 +18883,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4594 components: - pos: 31.5,-6.5 @@ -22515,15 +18890,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4595 components: - pos: 31.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4596 components: - pos: 31.5,-8.5 @@ -22531,8 +18902,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4597 components: - pos: 31.5,-9.5 @@ -22540,22 +18909,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4598 components: - pos: 31.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4599 components: - pos: 31.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4600 components: - pos: 31.5,-12.5 @@ -22563,15 +18926,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4601 components: - pos: 31.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4602 components: - pos: 30.5,-13.5 @@ -22579,15 +18938,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4603 components: - pos: 29.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4604 components: - pos: 28.5,-13.5 @@ -22595,15 +18950,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4605 components: - pos: 28.5,-14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4606 components: - pos: 28.5,-15.5 @@ -22611,8 +18962,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4607 components: - pos: 28.5,-16.5 @@ -22620,8 +18969,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4608 components: - pos: 28.5,-17.5 @@ -22629,15 +18976,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4609 components: - pos: 27.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4610 components: - pos: 26.5,-17.5 @@ -22645,8 +18988,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4611 components: - pos: 25.5,-17.5 @@ -22654,15 +18995,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4612 components: - pos: 25.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4613 components: - pos: 25.5,-19.5 @@ -22670,8 +19007,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4614 components: - pos: 25.5,-20.5 @@ -22679,15 +19014,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4615 components: - pos: 24.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4616 components: - pos: 24.5,-17.5 @@ -22695,22 +19026,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4617 components: - pos: 23.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4618 components: - pos: 22.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4619 components: - pos: 21.5,-17.5 @@ -22718,8 +19043,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4620 components: - pos: 20.5,-17.5 @@ -22727,15 +19050,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4621 components: - pos: 19.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4622 components: - pos: 18.5,-17.5 @@ -22743,8 +19062,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4623 components: - pos: 17.5,-17.5 @@ -22752,8 +19069,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4624 components: - pos: 16.5,-17.5 @@ -22761,15 +19076,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4625 components: - pos: 15.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4626 components: - pos: 14.5,-17.5 @@ -22777,8 +19088,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4627 components: - pos: 14.5,-16.5 @@ -22786,8 +19095,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4628 components: - pos: 14.5,-15.5 @@ -22795,8 +19102,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4629 components: - pos: 14.5,-14.5 @@ -22804,15 +19109,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4630 components: - pos: 13.5,-14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4631 components: - pos: 12.5,-14.5 @@ -22820,8 +19121,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4632 components: - pos: 11.5,-14.5 @@ -22829,8 +19128,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4633 components: - pos: 10.5,-14.5 @@ -22838,22 +19135,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4634 components: - pos: 9.5,-14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4635 components: - pos: 9.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4636 components: - pos: 9.5,-12.5 @@ -22861,8 +19152,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4637 components: - pos: 9.5,-11.5 @@ -22870,22 +19159,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4638 components: - pos: 8.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4639 components: - pos: 7.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4640 components: - pos: 6.5,-11.5 @@ -22893,8 +19176,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4641 components: - pos: 5.5,-11.5 @@ -22902,8 +19183,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4642 components: - pos: 4.5,-11.5 @@ -22911,36 +19190,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4643 components: - pos: 3.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4644 components: - pos: 2.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4645 components: - pos: 1.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4646 components: - pos: 0.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4647 components: - pos: -0.5,-11.5 @@ -22948,8 +19217,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4648 components: - pos: -1.5,-11.5 @@ -22957,22 +19224,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4649 components: - pos: -2.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4650 components: - pos: -2.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4651 components: - pos: -2.5,-13.5 @@ -22980,8 +19241,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4652 components: - pos: -2.5,-14.5 @@ -22989,8 +19248,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4653 components: - pos: -2.5,-15.5 @@ -22998,8 +19255,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4654 components: - pos: -2.5,-16.5 @@ -23007,8 +19262,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4655 components: - pos: -2.5,-17.5 @@ -23016,8 +19269,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4656 components: - pos: -3.5,-17.5 @@ -23025,8 +19276,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4657 components: - pos: -4.5,-17.5 @@ -23034,29 +19283,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4658 components: - pos: -5.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4659 components: - pos: -6.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4660 components: - pos: -7.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4661 components: - pos: -7.5,-18.5 @@ -23064,8 +19305,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4662 components: - pos: -7.5,-19.5 @@ -23073,8 +19312,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4663 components: - pos: -7.5,-20.5 @@ -23082,8 +19319,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4664 components: - pos: -8.5,-18.5 @@ -23091,8 +19326,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4665 components: - pos: -9.5,-18.5 @@ -23100,8 +19333,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4666 components: - pos: -10.5,-18.5 @@ -23109,15 +19340,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4667 components: - pos: -11.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4668 components: - pos: -11.5,-19.5 @@ -23125,15 +19352,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4669 components: - pos: -11.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4670 components: - pos: -11.5,-21.5 @@ -23141,8 +19364,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4671 components: - pos: -12.5,-21.5 @@ -23150,8 +19371,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4672 components: - pos: -13.5,-21.5 @@ -23159,8 +19378,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4673 components: - pos: -14.5,-21.5 @@ -23168,15 +19385,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4674 components: - pos: -15.5,-21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4675 components: - pos: -16.5,-21.5 @@ -23184,15 +19397,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4676 components: - pos: -17.5,-21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4677 components: - pos: -18.5,-21.5 @@ -23200,15 +19409,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4678 components: - pos: -19.5,-21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4679 components: - pos: -20.5,-21.5 @@ -23216,8 +19421,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4680 components: - pos: -21.5,-21.5 @@ -23225,15 +19428,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4681 components: - pos: -22.5,-21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4682 components: - pos: -22.5,-22.5 @@ -23241,8 +19440,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4683 components: - pos: -23.5,-22.5 @@ -23250,15 +19447,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4684 components: - pos: -24.5,-22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4685 components: - pos: -25.5,-22.5 @@ -23266,8 +19459,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4686 components: - pos: -26.5,-22.5 @@ -23275,15 +19466,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4687 components: - pos: -27.5,-22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4688 components: - pos: -27.5,-21.5 @@ -23291,15 +19478,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4689 components: - pos: -27.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4690 components: - pos: -28.5,-20.5 @@ -23307,8 +19490,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4691 components: - pos: -29.5,-20.5 @@ -23316,22 +19497,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4692 components: - pos: -30.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4693 components: - pos: -30.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4694 components: - pos: -30.5,-0.5 @@ -23339,8 +19514,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4695 components: - pos: -30.5,-1.5 @@ -23348,15 +19521,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4696 components: - pos: -31.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4697 components: - pos: -32.5,-1.5 @@ -23364,15 +19533,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4698 components: - pos: -33.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4699 components: - pos: -34.5,-1.5 @@ -23380,15 +19545,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4700 components: - pos: -34.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4701 components: - pos: -34.5,-3.5 @@ -23396,15 +19557,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4702 components: - pos: -34.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4703 components: - pos: -34.5,-5.5 @@ -23412,8 +19569,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4704 components: - pos: -34.5,-6.5 @@ -23421,8 +19576,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4705 components: - pos: -34.5,-7.5 @@ -23430,8 +19583,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4706 components: - pos: -34.5,-8.5 @@ -23439,15 +19590,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4707 components: - pos: -34.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4708 components: - pos: -34.5,-10.5 @@ -23455,15 +19602,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4709 components: - pos: -34.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4710 components: - pos: -34.5,-12.5 @@ -23471,8 +19614,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4711 components: - pos: -35.5,-12.5 @@ -23480,8 +19621,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4712 components: - pos: -36.5,-12.5 @@ -23489,15 +19628,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4713 components: - pos: -37.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4714 components: - pos: -38.5,-12.5 @@ -23505,8 +19640,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4715 components: - pos: -38.5,-13.5 @@ -23514,22 +19647,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4716 components: - pos: -38.5,-14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4717 components: - pos: -38.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4718 components: - pos: -38.5,-16.5 @@ -23537,15 +19664,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4719 components: - pos: -38.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4720 components: - pos: -38.5,-18.5 @@ -23553,8 +19676,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4721 components: - pos: -38.5,-19.5 @@ -23562,22 +19683,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4722 components: - pos: -38.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4723 components: - pos: -37.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4724 components: - pos: -36.5,-20.5 @@ -23585,8 +19700,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4725 components: - pos: -35.5,-20.5 @@ -23594,8 +19707,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4726 components: - pos: -34.5,-20.5 @@ -23603,22 +19714,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4727 components: - pos: -33.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4728 components: - pos: -32.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4729 components: - pos: -31.5,-20.5 @@ -23626,8 +19731,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4731 components: - pos: -38.5,19.5 @@ -23635,22 +19738,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4732 components: - pos: -39.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4733 components: - pos: -40.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4734 components: - pos: -11.5,-22.5 @@ -23658,8 +19755,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4735 components: - pos: -10.5,-22.5 @@ -23667,15 +19762,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4736 components: - pos: -9.5,-22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4737 components: - pos: -8.5,-22.5 @@ -23683,8 +19774,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4738 components: - pos: -7.5,-22.5 @@ -23692,211 +19781,151 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4739 components: - pos: 1.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4740 components: - pos: 1.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4741 components: - pos: 1.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4742 components: - pos: 2.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4743 components: - pos: 3.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4744 components: - pos: 4.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4745 components: - pos: 5.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4746 components: - pos: 6.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4747 components: - pos: 7.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4748 components: - pos: 8.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4749 components: - pos: 8.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4750 components: - pos: 0.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4751 components: - pos: -0.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4752 components: - pos: -1.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4753 components: - pos: -2.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4754 components: - pos: -3.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4755 components: - pos: -4.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4756 components: - pos: -5.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4757 components: - pos: -5.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4758 components: - pos: -5.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4759 components: - pos: -5.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4760 components: - pos: -5.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4761 components: - pos: -5.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4762 components: - pos: -5.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4763 components: - pos: -5.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4764 components: - pos: -5.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4765 components: - pos: -5.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4766 components: - pos: -5.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4767 components: - pos: -13.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4768 components: - pos: -13.5,32.5 @@ -23904,15 +19933,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4769 components: - pos: -11.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4770 components: - pos: -11.5,32.5 @@ -23920,8 +19945,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4771 components: - pos: -10.5,32.5 @@ -23929,8 +19952,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4772 components: - pos: -9.5,32.5 @@ -23938,8 +19959,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4773 components: - pos: -8.5,32.5 @@ -23947,8 +19966,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4774 components: - pos: -7.5,32.5 @@ -23956,29 +19973,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4775 components: - pos: -7.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4776 components: - pos: -5.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4777 components: - pos: -5.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4778 components: - pos: -5.5,32.5 @@ -23986,8 +19995,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4779 components: - pos: -6.5,32.5 @@ -23995,8 +20002,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4780 components: - pos: -4.5,32.5 @@ -24004,8 +20009,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4781 components: - pos: -4.5,33.5 @@ -24013,8 +20016,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4782 components: - pos: -3.5,33.5 @@ -24022,8 +20023,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4783 components: - pos: -2.5,33.5 @@ -24031,8 +20030,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4784 components: - pos: -1.5,33.5 @@ -24040,8 +20037,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4785 components: - pos: -0.5,33.5 @@ -24049,8 +20044,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4786 components: - pos: 0.5,33.5 @@ -24058,8 +20051,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4787 components: - pos: 0.5,32.5 @@ -24067,8 +20058,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4788 components: - pos: 1.5,32.5 @@ -24076,64 +20065,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4789 components: - pos: 1.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4790 components: - pos: 1.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4791 components: - pos: 2.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4792 components: - pos: 3.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4793 components: - pos: 4.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4794 components: - pos: 4.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4795 components: - pos: 4.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4796 components: - pos: 4.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4797 components: - pos: 4.5,32.5 @@ -24141,8 +20112,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4798 components: - pos: 3.5,32.5 @@ -24150,8 +20119,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4799 components: - pos: 5.5,32.5 @@ -24159,8 +20126,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4800 components: - pos: 2.5,32.5 @@ -24168,15 +20133,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4925 components: - pos: 19.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5105 components: - pos: 22.5,20.5 @@ -24184,8 +20145,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5106 components: - pos: 22.5,19.5 @@ -24193,50 +20152,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7549 components: - pos: -41.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7550 components: - pos: -41.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7551 components: - pos: -41.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7552 components: - pos: -41.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7553 components: - pos: -41.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7554 components: - pos: -40.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - proto: CableHVStack entities: - uid: 3980 @@ -24268,29 +20213,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2849 components: - pos: -11.5,-50.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2850 components: - pos: -11.5,-51.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2874 components: - pos: -11.5,-49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2875 components: - pos: -10.5,-49.5 @@ -24298,36 +20235,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3358 components: - pos: 22.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3681 components: - pos: -0.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3682 components: - pos: -1.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3683 components: - pos: -2.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3684 components: - pos: -2.5,43.5 @@ -24335,148 +20262,106 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3688 components: - pos: -2.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3689 components: - pos: -3.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3690 components: - pos: -4.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3691 components: - pos: -5.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3692 components: - pos: -6.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3693 components: - pos: -6.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3694 components: - pos: -6.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3695 components: - pos: -6.5,48.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3696 components: - pos: -6.5,49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3697 components: - pos: -5.5,49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3698 components: - pos: -4.5,49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3699 components: - pos: -4.5,50.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3700 components: - pos: -4.5,51.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3701 components: - pos: -4.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3702 components: - pos: -4.5,53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3703 components: - pos: -4.5,54.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3704 components: - pos: -4.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3705 components: - pos: -5.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3706 components: - pos: -6.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3707 components: - pos: -6.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3708 components: - pos: -6.5,57.5 @@ -24484,64 +20369,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3709 components: - pos: -3.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3710 components: - pos: -2.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3711 components: - pos: -1.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3712 components: - pos: -0.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3713 components: - pos: 0.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3714 components: - pos: 1.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3715 components: - pos: 2.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3716 components: - pos: 3.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3717 components: - pos: 4.5,52.5 @@ -24549,15 +20416,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3767 components: - pos: -6.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3768 components: - pos: -6.5,43.5 @@ -24565,36 +20428,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4138 components: - pos: -14.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4139 components: - pos: -14.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4140 components: - pos: -13.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4141 components: - pos: -12.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4142 components: - pos: -12.5,29.5 @@ -24602,113 +20455,81 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4143 components: - pos: -11.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4144 components: - pos: -10.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4145 components: - pos: -9.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4146 components: - pos: -8.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4147 components: - pos: -7.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4148 components: - pos: -7.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4149 components: - pos: -6.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4150 components: - pos: -5.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4151 components: - pos: -4.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4152 components: - pos: -3.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4153 components: - pos: -2.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4154 components: - pos: -1.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4155 components: - pos: -0.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4156 components: - pos: -0.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4157 components: - pos: -0.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4158 components: - pos: -0.5,26.5 @@ -24716,64 +20537,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4159 components: - pos: 0.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4160 components: - pos: 1.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4161 components: - pos: 1.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4162 components: - pos: 1.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4163 components: - pos: 1.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4164 components: - pos: 1.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4165 components: - pos: 1.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4166 components: - pos: 1.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4167 components: - pos: 1.5,22.5 @@ -24781,15 +20584,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4509 components: - pos: 22.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4511 components: - pos: 22.5,19.5 @@ -24797,15 +20596,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5101 components: - pos: 22.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5102 components: - pos: 22.5,18.5 @@ -24813,8 +20608,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5103 components: - pos: 22.5,20.5 @@ -24822,8 +20615,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5104 components: - pos: 22.5,16.5 @@ -24831,92 +20622,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5107 components: - pos: 22.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5108 components: - pos: 21.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5109 components: - pos: 21.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5110 components: - pos: 21.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5111 components: - pos: 21.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5112 components: - pos: 21.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5113 components: - pos: 21.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5114 components: - pos: 24.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5115 components: - pos: 25.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5116 components: - pos: 26.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5117 components: - pos: 27.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5118 components: - pos: 26.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5119 components: - pos: 26.5,11.5 @@ -24924,64 +20689,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5120 components: - pos: 23.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5121 components: - pos: 22.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5122 components: - pos: 21.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5123 components: - pos: 20.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5124 components: - pos: 19.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5125 components: - pos: 18.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5126 components: - pos: 17.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5127 components: - pos: 13.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5128 components: - pos: 13.5,11.5 @@ -24989,176 +20736,126 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5129 components: - pos: 28.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5130 components: - pos: 29.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5131 components: - pos: 32.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5132 components: - pos: 30.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5133 components: - pos: 31.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5134 components: - pos: 32.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5135 components: - pos: 32.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5136 components: - pos: 32.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5137 components: - pos: 32.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5138 components: - pos: 32.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5139 components: - pos: 32.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5140 components: - pos: 32.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5141 components: - pos: 32.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5142 components: - pos: 32.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5143 components: - pos: 32.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5144 components: - pos: 32.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5145 components: - pos: 32.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5146 components: - pos: 32.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5147 components: - pos: 32.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5148 components: - pos: 32.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5149 components: - pos: 32.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5150 components: - pos: 32.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5151 components: - pos: 32.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5152 components: - pos: 33.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5153 components: - pos: 34.5,27.5 @@ -25166,15 +20863,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5154 components: - pos: 33.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5155 components: - pos: 34.5,17.5 @@ -25182,36 +20875,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5297 components: - pos: 16.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5298 components: - pos: 15.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5299 components: - pos: 14.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5300 components: - pos: 13.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5703 components: - pos: -20.5,26.5 @@ -25219,8 +20902,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5704 components: - pos: -19.5,26.5 @@ -25228,8 +20909,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5705 components: - pos: -19.5,25.5 @@ -25237,8 +20916,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5706 components: - pos: -19.5,24.5 @@ -25246,8 +20923,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5707 components: - pos: -18.5,24.5 @@ -25255,15 +20930,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5708 components: - pos: -17.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5709 components: - pos: -16.5,24.5 @@ -25271,15 +20942,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5710 components: - pos: -15.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5711 components: - pos: -14.5,24.5 @@ -25287,8 +20954,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5712 components: - pos: -13.5,24.5 @@ -25296,15 +20961,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5713 components: - pos: -13.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5714 components: - pos: -13.5,22.5 @@ -25312,57 +20973,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5715 components: - pos: -13.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5716 components: - pos: -13.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5717 components: - pos: -13.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5718 components: - pos: -14.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5719 components: - pos: -15.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5720 components: - pos: -16.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5721 components: - pos: -14.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5722 components: - pos: -14.5,17.5 @@ -25370,71 +21015,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5723 components: - pos: -16.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5724 components: - pos: -16.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5725 components: - pos: -16.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5726 components: - pos: -16.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5727 components: - pos: -16.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5728 components: - pos: -16.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5729 components: - pos: -16.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5730 components: - pos: -16.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5731 components: - pos: -15.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5732 components: - pos: -14.5,13.5 @@ -25442,78 +21067,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5733 components: - pos: -16.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5734 components: - pos: -17.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5735 components: - pos: -18.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5736 components: - pos: -19.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5737 components: - pos: -20.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5738 components: - pos: -21.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5739 components: - pos: -22.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5740 components: - pos: -23.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5741 components: - pos: -24.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5742 components: - pos: -24.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5743 components: - pos: -24.5,12.5 @@ -25521,64 +21124,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5752 components: - pos: -15.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5753 components: - pos: -14.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5754 components: - pos: -13.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5755 components: - pos: -12.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5756 components: - pos: -11.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5757 components: - pos: -11.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5758 components: - pos: -11.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5759 components: - pos: -11.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5760 components: - pos: -10.5,7.5 @@ -25586,8 +21171,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6180 components: - pos: 10.5,21.5 @@ -25595,8 +21178,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6181 components: - pos: 10.5,20.5 @@ -25604,8 +21185,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6182 components: - pos: 10.5,19.5 @@ -25613,8 +21192,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6183 components: - pos: 9.5,19.5 @@ -25622,8 +21199,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6184 components: - pos: 8.5,19.5 @@ -25631,8 +21206,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6185 components: - pos: 8.5,18.5 @@ -25640,218 +21213,156 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6186 components: - pos: 8.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6187 components: - pos: 8.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6188 components: - pos: 8.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6189 components: - pos: 8.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6190 components: - pos: 8.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6191 components: - pos: 8.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6192 components: - pos: 8.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6193 components: - pos: 8.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6194 components: - pos: 8.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6195 components: - pos: 8.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6196 components: - pos: 7.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6197 components: - pos: 6.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6198 components: - pos: 5.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6199 components: - pos: 4.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6205 components: - pos: -0.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6209 components: - pos: 4.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6210 components: - pos: 4.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6211 components: - pos: 4.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6212 components: - pos: 4.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6213 components: - pos: 4.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6214 components: - pos: 4.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6215 components: - pos: 4.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6216 components: - pos: 4.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6217 components: - pos: 4.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6218 components: - pos: 4.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6219 components: - pos: 3.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6220 components: - pos: 2.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6221 components: - pos: 1.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6222 components: - pos: 0.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6223 components: - pos: -0.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6224 components: - pos: -0.5,-0.5 @@ -25859,15 +21370,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6225 components: - pos: 5.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6226 components: - pos: 6.5,0.5 @@ -25875,50 +21382,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6286 components: - pos: 3.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6287 components: - pos: 2.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6288 components: - pos: 1.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6289 components: - pos: 0.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6290 components: - pos: -1.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6291 components: - pos: -2.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6340 components: - pos: -7.5,-20.5 @@ -25926,8 +21419,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6341 components: - pos: -7.5,-19.5 @@ -25935,8 +21426,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6342 components: - pos: -7.5,-18.5 @@ -25944,8 +21433,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6343 components: - pos: -8.5,-18.5 @@ -25953,8 +21440,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6344 components: - pos: -9.5,-18.5 @@ -25962,8 +21447,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6345 components: - pos: -10.5,-18.5 @@ -25971,22 +21454,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6346 components: - pos: -11.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6347 components: - pos: -11.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6348 components: - pos: -11.5,-16.5 @@ -25994,99 +21471,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6349 components: - pos: -11.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6350 components: - pos: -11.5,-14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6351 components: - pos: -11.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6352 components: - pos: -11.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6353 components: - pos: -11.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6354 components: - pos: -11.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6355 components: - pos: -11.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6356 components: - pos: -11.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6357 components: - pos: -11.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6358 components: - pos: -11.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6359 components: - pos: -10.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6360 components: - pos: -9.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6361 components: - pos: -8.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6362 components: - pos: -8.5,-16.5 @@ -26094,113 +21543,81 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6363 components: - pos: -12.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6364 components: - pos: -13.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6365 components: - pos: -14.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6366 components: - pos: -15.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6367 components: - pos: -16.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6368 components: - pos: -17.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6369 components: - pos: -18.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6370 components: - pos: -19.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6371 components: - pos: -20.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6372 components: - pos: -14.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6373 components: - pos: -14.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6374 components: - pos: -14.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6375 components: - pos: -14.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6376 components: - pos: -14.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6377 components: - pos: -14.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6378 components: - pos: -14.5,0.5 @@ -26208,92 +21625,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6379 components: - pos: -16.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6380 components: - pos: -16.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6381 components: - pos: -16.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6382 components: - pos: -16.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6383 components: - pos: -16.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6384 components: - pos: -16.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6385 components: - pos: -16.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6386 components: - pos: -16.5,-14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6387 components: - pos: -16.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6388 components: - pos: -16.5,-16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6389 components: - pos: -16.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6390 components: - pos: -16.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6391 components: - pos: -16.5,-19.5 @@ -26301,8 +21692,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6392 components: - pos: -21.5,-7.5 @@ -26310,113 +21699,81 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6393 components: - pos: -21.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6528 components: - pos: 14.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6529 components: - pos: 14.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6530 components: - pos: 14.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6531 components: - pos: 15.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6532 components: - pos: 16.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6533 components: - pos: 17.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6534 components: - pos: 18.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6535 components: - pos: 19.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6536 components: - pos: 20.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6537 components: - pos: 21.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6538 components: - pos: 22.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6539 components: - pos: 23.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6540 components: - pos: 24.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6541 components: - pos: 24.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6542 components: - pos: 24.5,-12.5 @@ -26424,148 +21781,106 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6543 components: - pos: 22.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6544 components: - pos: 22.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6545 components: - pos: 22.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6546 components: - pos: 22.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6547 components: - pos: 22.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6548 components: - pos: 22.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6549 components: - pos: 21.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6550 components: - pos: 20.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6551 components: - pos: 19.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6552 components: - pos: 18.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6553 components: - pos: 17.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6554 components: - pos: 16.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6557 components: - pos: 25.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6558 components: - pos: 26.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6559 components: - pos: 27.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6560 components: - pos: 28.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6561 components: - pos: 29.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6562 components: - pos: 30.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6563 components: - pos: 31.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6564 components: - pos: 32.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6565 components: - pos: 33.5,-10.5 @@ -26573,8 +21888,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6566 components: - pos: 34.5,-10.5 @@ -26582,8 +21895,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6567 components: - pos: 34.5,-9.5 @@ -26591,8 +21902,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6568 components: - pos: 34.5,-8.5 @@ -26600,8 +21909,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6569 components: - pos: 34.5,-7.5 @@ -26609,8 +21916,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6570 components: - pos: 34.5,-6.5 @@ -26618,8 +21923,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6571 components: - pos: 34.5,-5.5 @@ -26627,8 +21930,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6572 components: - pos: 33.5,-5.5 @@ -26636,8 +21937,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6573 components: - pos: 34.5,-11.5 @@ -26645,8 +21944,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6574 components: - pos: 34.5,-12.5 @@ -26654,8 +21951,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6575 components: - pos: 34.5,-13.5 @@ -26663,8 +21958,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6576 components: - pos: 34.5,-14.5 @@ -26672,8 +21965,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6577 components: - pos: 33.5,-14.5 @@ -26681,8 +21972,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6781 components: - pos: 17.5,-2.5 @@ -26690,22 +21979,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6782 components: - pos: 17.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7091 components: - pos: 24.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7092 components: - pos: 21.5,-19.5 @@ -26713,8 +21996,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7094 components: - pos: 25.5,-20.5 @@ -26722,8 +22003,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7095 components: - pos: 25.5,-19.5 @@ -26731,22 +22010,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7096 components: - pos: 25.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7097 components: - pos: 24.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7098 components: - pos: 23.5,-18.5 @@ -26754,8 +22027,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7099 components: - pos: 22.5,-18.5 @@ -26763,8 +22034,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7100 components: - pos: 21.5,-18.5 @@ -26772,92 +22041,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7101 components: - pos: 20.5,-21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7102 components: - pos: 19.5,-21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7103 components: - pos: 18.5,-21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7104 components: - pos: 17.5,-21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7105 components: - pos: 16.5,-21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7109 components: - pos: 15.5,-21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7110 components: - pos: 14.5,-21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7111 components: - pos: 13.5,-21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7112 components: - pos: 12.5,-21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7113 components: - pos: 11.5,-21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7114 components: - pos: 11.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7115 components: - pos: 11.5,-19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7116 components: - pos: 12.5,-19.5 @@ -26865,50 +22108,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7117 components: - pos: 15.5,-22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7118 components: - pos: 15.5,-23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7119 components: - pos: 15.5,-24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7120 components: - pos: 15.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7121 components: - pos: 15.5,-26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7122 components: - pos: 15.5,-27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7123 components: - pos: 15.5,-28.5 @@ -26916,29 +22145,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7124 components: - pos: 21.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7125 components: - pos: 21.5,-21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7126 components: - pos: 22.5,-21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7127 components: - pos: 23.5,-21.5 @@ -26946,15 +22167,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7389 components: - pos: 18.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7390 components: - pos: 18.5,-12.5 @@ -26962,8 +22179,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7391 components: - pos: 19.5,-12.5 @@ -26971,8 +22186,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7392 components: - pos: 20.5,-12.5 @@ -26980,29 +22193,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7393 components: - pos: 20.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7559 components: - pos: -40.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7560 components: - pos: -39.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7561 components: - pos: -39.5,24.5 @@ -27010,162 +22215,116 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7581 components: - pos: -40.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7582 components: - pos: -40.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7583 components: - pos: -40.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7584 components: - pos: -40.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7585 components: - pos: -40.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7586 components: - pos: -40.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7587 components: - pos: -40.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7588 components: - pos: -40.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7589 components: - pos: -40.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7590 components: - pos: -40.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7591 components: - pos: -40.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7592 components: - pos: -40.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7593 components: - pos: -40.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7594 components: - pos: -40.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7595 components: - pos: -40.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7596 components: - pos: -40.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7597 components: - pos: -40.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7598 components: - pos: -40.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7599 components: - pos: -40.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7600 components: - pos: -40.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7601 components: - pos: -40.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7602 components: - pos: -39.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7603 components: - pos: -38.5,14.5 @@ -27173,120 +22332,86 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7604 components: - pos: -39.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7605 components: - pos: -38.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7606 components: - pos: -37.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7607 components: - pos: -36.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7608 components: - pos: -35.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7609 components: - pos: -34.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7610 components: - pos: -34.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7611 components: - pos: -34.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7612 components: - pos: -34.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7613 components: - pos: -34.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7614 components: - pos: -34.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7615 components: - pos: -34.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7616 components: - pos: -34.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7617 components: - pos: -33.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7618 components: - pos: -32.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7619 components: - pos: -31.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7620 components: - pos: -30.5,9.5 @@ -27294,92 +22419,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7621 components: - pos: -37.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7622 components: - pos: -37.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7623 components: - pos: -37.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7624 components: - pos: -37.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7625 components: - pos: -37.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7626 components: - pos: -37.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7627 components: - pos: -37.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7628 components: - pos: -37.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7629 components: - pos: -37.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7630 components: - pos: -38.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7631 components: - pos: -39.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7632 components: - pos: -39.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7633 components: - pos: -39.5,-8.5 @@ -27387,8 +22486,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7723 components: - pos: -7.5,-22.5 @@ -27396,8 +22493,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7724 components: - pos: -8.5,-22.5 @@ -27405,15 +22500,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7725 components: - pos: -9.5,-22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7726 components: - pos: -10.5,-22.5 @@ -27421,8 +22512,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7727 components: - pos: -10.5,-23.5 @@ -27430,85 +22519,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7728 components: - pos: -10.5,-24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7729 components: - pos: -10.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7730 components: - pos: -11.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7731 components: - pos: -12.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7732 components: - pos: -13.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7733 components: - pos: -14.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7734 components: - pos: -15.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7735 components: - pos: -16.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7736 components: - pos: -17.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7737 components: - pos: -18.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7738 components: - pos: -19.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7739 components: - pos: -20.5,-25.5 @@ -27516,99 +22581,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7740 components: - pos: -9.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7741 components: - pos: -8.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7742 components: - pos: -7.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7743 components: - pos: -6.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7744 components: - pos: -5.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7745 components: - pos: -4.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7746 components: - pos: -3.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7747 components: - pos: -2.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7748 components: - pos: -1.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7749 components: - pos: -0.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7750 components: - pos: 0.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7751 components: - pos: 1.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7752 components: - pos: -4.5,-26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7753 components: - pos: -4.5,-27.5 @@ -27616,85 +22653,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7754 components: - pos: 1.5,-24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7755 components: - pos: 1.5,-23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7756 components: - pos: 1.5,-22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7757 components: - pos: 1.5,-21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7758 components: - pos: 1.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7759 components: - pos: 1.5,-19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7760 components: - pos: 1.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7761 components: - pos: 1.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7762 components: - pos: 1.5,-16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7763 components: - pos: 1.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7764 components: - pos: 0.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7765 components: - pos: -0.5,-15.5 @@ -27702,106 +22715,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7767 components: - pos: 1.5,-26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7768 components: - pos: 1.5,-27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7769 components: - pos: 1.5,-28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7770 components: - pos: 1.5,-29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7771 components: - pos: 1.5,-30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7772 components: - pos: 1.5,-31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7773 components: - pos: 1.5,-32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7774 components: - pos: 0.5,-32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7775 components: - pos: -0.5,-32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7776 components: - pos: -1.5,-32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7777 components: - pos: -2.5,-32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7778 components: - pos: -3.5,-32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7779 components: - pos: -4.5,-32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7780 components: - pos: -5.5,-32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7781 components: - pos: -5.5,-33.5 @@ -27809,8 +22792,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8024 components: - pos: 40.5,19.5 @@ -27818,8 +22799,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8025 components: - pos: 39.5,19.5 @@ -27827,8 +22806,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8026 components: - pos: 39.5,18.5 @@ -27836,8 +22813,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8027 components: - pos: 39.5,17.5 @@ -27845,15 +22820,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8028 components: - pos: 39.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8029 components: - pos: 40.5,16.5 @@ -27861,8 +22832,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8030 components: - pos: 41.5,16.5 @@ -27870,8 +22839,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8031 components: - pos: 42.5,16.5 @@ -27879,8 +22846,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8032 components: - pos: 42.5,15.5 @@ -27888,8 +22853,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8033 components: - pos: 43.5,15.5 @@ -27897,15 +22860,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8034 components: - pos: 44.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8035 components: - pos: 43.5,14.5 @@ -27913,141 +22872,101 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8036 components: - pos: 45.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8037 components: - pos: 45.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8038 components: - pos: 45.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8039 components: - pos: 45.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8040 components: - pos: 45.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8041 components: - pos: 45.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8042 components: - pos: 45.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8043 components: - pos: 45.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8044 components: - pos: 45.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8045 components: - pos: 45.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8046 components: - pos: 45.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8047 components: - pos: 45.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8048 components: - pos: 45.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8050 components: - pos: 44.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8051 components: - pos: 43.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8052 components: - pos: 42.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8053 components: - pos: 41.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8054 components: - pos: 40.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8055 components: - pos: 39.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8056 components: - pos: 38.5,28.5 @@ -28055,43 +22974,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8057 components: - pos: 44.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8058 components: - pos: 43.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8059 components: - pos: 42.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8060 components: - pos: 41.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8061 components: - pos: 41.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8062 components: - pos: 41.5,24.5 @@ -28099,225 +23006,161 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8063 components: - pos: 45.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8064 components: - pos: 45.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8065 components: - pos: 45.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8066 components: - pos: 45.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8067 components: - pos: 45.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8068 components: - pos: 45.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8069 components: - pos: 45.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8070 components: - pos: 45.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8071 components: - pos: 45.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8072 components: - pos: 45.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8073 components: - pos: 45.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8074 components: - pos: 45.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8075 components: - pos: 45.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8076 components: - pos: 44.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8077 components: - pos: 43.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8078 components: - pos: 42.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8079 components: - pos: 41.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8080 components: - pos: 40.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8081 components: - pos: 39.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8082 components: - pos: 38.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8083 components: - pos: 37.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8084 components: - pos: 36.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8085 components: - pos: 35.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8086 components: - pos: 34.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8087 components: - pos: 33.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8088 components: - pos: 32.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8089 components: - pos: 31.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8090 components: - pos: 30.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8091 components: - pos: 29.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8092 components: - pos: 28.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8093 components: - pos: 28.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8094 components: - pos: 28.5,0.5 @@ -28325,64 +23168,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8182 components: - pos: 4.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8183 components: - pos: 4.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8184 components: - pos: 5.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8185 components: - pos: 6.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8186 components: - pos: 7.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8187 components: - pos: 8.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8188 components: - pos: 8.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8191 components: - pos: 9.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8192 components: - pos: 10.5,-2.5 @@ -28390,8 +23215,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8331 components: - pos: -29.5,-23.5 @@ -28399,8 +23222,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8332 components: - pos: -30.5,-23.5 @@ -28408,8 +23229,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8333 components: - pos: -30.5,-22.5 @@ -28417,8 +23236,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8334 components: - pos: -30.5,-21.5 @@ -28426,8 +23243,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8335 components: - pos: -30.5,-20.5 @@ -28435,8 +23250,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8336 components: - pos: -31.5,-21.5 @@ -28444,15 +23257,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8337 components: - pos: -30.5,-19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8338 components: - pos: -30.5,-18.5 @@ -28460,22 +23269,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8339 components: - pos: -30.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8340 components: - pos: -30.5,-16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8341 components: - pos: -31.5,-16.5 @@ -28483,15 +23286,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8342 components: - pos: -32.5,-16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8345 components: - pos: -31.5,-20.5 @@ -28499,22 +23298,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8346 components: - pos: -32.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8347 components: - pos: -33.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8348 components: - pos: -34.5,-20.5 @@ -28522,8 +23315,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8349 components: - pos: -35.5,-20.5 @@ -28531,8 +23322,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8350 components: - pos: -36.5,-20.5 @@ -28540,22 +23329,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8351 components: - pos: -37.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8352 components: - pos: -38.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8353 components: - pos: -38.5,-19.5 @@ -28563,8 +23346,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8354 components: - pos: -38.5,-18.5 @@ -28572,15 +23353,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8355 components: - pos: -38.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8356 components: - pos: -38.5,-16.5 @@ -28588,22 +23365,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8357 components: - pos: -38.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8358 components: - pos: -38.5,-14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8359 components: - pos: -38.5,-13.5 @@ -28611,8 +23382,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8360 components: - pos: -38.5,-12.5 @@ -28620,8 +23389,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8361 components: - pos: -39.5,-12.5 @@ -28629,8 +23396,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8362 components: - pos: -39.5,-11.5 @@ -28638,8 +23403,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8384 components: - pos: -39.5,-18.5 @@ -28647,8 +23410,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8416 components: - pos: 38.5,16.5 @@ -28656,15 +23417,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8417 components: - pos: 37.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8418 components: - pos: 36.5,16.5 @@ -28672,8 +23429,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8419 components: - pos: 36.5,17.5 @@ -28681,15 +23436,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8420 components: - pos: 36.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8421 components: - pos: 36.5,19.5 @@ -28697,29 +23448,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8422 components: - pos: 36.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8423 components: - pos: 36.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8424 components: - pos: 36.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8425 components: - pos: 36.5,23.5 @@ -28727,8 +23470,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8426 components: - pos: 36.5,24.5 @@ -28736,15 +23477,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8427 components: - pos: 36.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8428 components: - pos: 36.5,26.5 @@ -28752,22 +23489,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8429 components: - pos: 36.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8430 components: - pos: 36.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8431 components: - pos: 36.5,29.5 @@ -28775,8 +23506,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8432 components: - pos: 36.5,30.5 @@ -28784,22 +23513,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8433 components: - pos: 36.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8434 components: - pos: 36.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8435 components: - pos: 35.5,32.5 @@ -28807,8 +23530,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8436 components: - pos: 34.5,32.5 @@ -28816,8 +23537,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9185 components: - pos: -24.5,29.5 @@ -28825,8 +23544,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9186 components: - pos: -25.5,29.5 @@ -28834,8 +23551,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9187 components: - pos: -25.5,28.5 @@ -28843,15 +23558,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9188 components: - pos: -25.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9189 components: - pos: -26.5,28.5 @@ -28859,15 +23570,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9190 components: - pos: -26.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9191 components: - pos: -27.5,27.5 @@ -28875,8 +23582,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9192 components: - pos: -28.5,27.5 @@ -28884,8 +23589,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9193 components: - pos: -28.5,26.5 @@ -28893,15 +23596,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9194 components: - pos: -28.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9195 components: - pos: -28.5,24.5 @@ -28909,22 +23608,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9196 components: - pos: -28.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9736 components: - pos: -29.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9737 components: - pos: -30.5,24.5 @@ -28932,22 +23625,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12123 components: - pos: 45.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12565 components: - pos: -33.5,-16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12566 components: - pos: -33.5,-15.5 @@ -28955,8 +23642,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12567 components: - pos: -33.5,-14.5 @@ -28964,8 +23649,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - proto: CableMVStack entities: - uid: 3982 @@ -34481,13 +29164,6 @@ entities: - pos: 33.449986,-18.355843 parent: 1 type: Transform -- proto: ClothingHandsGlovesIhscombat - entities: - - uid: 12357 - components: - - pos: -45.514385,-14.493437 - parent: 1 - type: Transform - proto: ClothingHandsGlovesLatex entities: - uid: 5348 @@ -35015,6 +29691,16 @@ entities: pos: -17.5,-14.5 parent: 1 type: Transform +- proto: ComputerCargoBounty + entities: + - uid: 7247 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-23.5 + parent: 1 + type: Transform + - nextPrintTime: 53.0086693 + type: CargoBountyConsole - proto: ComputerCargoOrders entities: - uid: 4919 @@ -35632,21 +30318,11 @@ entities: type: Transform - proto: CrateEmptySpawner entities: - - uid: 1512 - components: - - pos: 14.5,-22.5 - parent: 1 - type: Transform - uid: 1529 components: - pos: 21.5,-26.5 parent: 1 type: Transform - - uid: 7247 - components: - - pos: 15.5,-24.5 - parent: 1 - type: Transform - uid: 7427 components: - pos: 16.5,-26.5 @@ -35737,14 +30413,14 @@ entities: type: Transform - proto: CrateFilledSpawner entities: - - uid: 7285 + - uid: 1512 components: - - pos: 20.5,-27.5 + - pos: 18.5,-26.5 parent: 1 type: Transform - - uid: 7287 + - uid: 7285 components: - - pos: 15.5,-23.5 + - pos: 20.5,-27.5 parent: 1 type: Transform - uid: 7296 @@ -63218,13 +57894,6 @@ entities: - pos: 2.5,-4.5 parent: 1 type: Transform -- proto: IHSVoidsuit - entities: - - uid: 12291 - components: - - pos: -44.491283,-23.309874 - parent: 1 - type: Transform - proto: InflatableDoorStack entities: - uid: 7147 @@ -63622,6 +58291,13 @@ entities: - pos: -17.453178,-4.0584826 parent: 1 type: Transform + - uid: 7287 + components: + - pos: 16.489933,-23.942678 + parent: 1 + type: Transform + - nextSound: 69.5709563 + type: EmitSoundOnCollide - uid: 8246 components: - pos: -9.624902,-11.094046 @@ -66163,6 +60839,13 @@ entities: - pos: 5.6369214,-15.503014 parent: 1 type: Transform + - uid: 9046 + components: + - pos: 16.646183,-24.473928 + parent: 1 + type: Transform + - nextSound: 72.2420037 + type: EmitSoundOnCollide - uid: 9606 components: - pos: 45.826847,31.663486 @@ -66202,6 +60885,13 @@ entities: - pos: 18.330774,25.583164 parent: 1 type: Transform + - uid: 10640 + components: + - pos: 16.333683,-24.473928 + parent: 1 + type: Transform + - nextSound: 72.9959438 + type: EmitSoundOnCollide - uid: 12435 components: - pos: -9.253772,-11.803861 @@ -77463,6 +72153,12 @@ entities: pos: -4.5,-17.5 parent: 1 type: Transform + - uid: 9045 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-24.5 + parent: 1 + type: Transform - uid: 9132 components: - pos: 9.5,-11.5 @@ -88529,222 +83225,222 @@ entities: pos: -33.5,16.5 parent: 1 type: Transform -- proto: WindoorChemistryLocked +- proto: WindoorSecure entities: - - uid: 3401 + - uid: 3290 components: - - rot: 3.141592653589793 rad - pos: -12.5,12.5 + - pos: 0.5,18.5 parent: 1 type: Transform - - uid: 3402 + - uid: 3350 components: - rot: 3.141592653589793 rad - pos: -9.5,12.5 + pos: 12.5,-9.5 parent: 1 type: Transform - - uid: 3403 + - uid: 3405 components: - - rot: 3.141592653589793 rad - pos: -8.5,12.5 + - pos: -9.5,12.5 parent: 1 type: Transform -- proto: WindoorCommandLocked - entities: - - uid: 3614 + - uid: 3406 components: - - rot: -1.5707963267948966 rad - pos: -7.5,52.5 + - pos: -8.5,12.5 parent: 1 type: Transform - - uid: 3615 + - uid: 3407 components: - - rot: 1.5707963267948966 rad - pos: -5.5,52.5 + - rot: 3.141592653589793 rad + pos: -9.5,7.5 parent: 1 type: Transform - - uid: 4127 + - uid: 3408 components: - - pos: -4.5,25.5 + - rot: 3.141592653589793 rad + pos: -8.5,7.5 parent: 1 type: Transform - - uid: 4730 + - uid: 3603 components: - - rot: 1.5707963267948966 rad - pos: -39.5,19.5 + - pos: -9.5,-4.5 parent: 1 type: Transform - - uid: 4972 + - uid: 3604 components: - - pos: 4.5,30.5 + - pos: -8.5,-4.5 parent: 1 type: Transform -- proto: WindoorEngineeringLocked - entities: - - uid: 3349 + - uid: 5099 components: - - pos: 12.5,-9.5 + - rot: -1.5707963267948966 rad + pos: 13.5,14.5 parent: 1 type: Transform -- proto: WindoorHeadOfPersonnelLocked - entities: - - uid: 3289 + - uid: 5100 components: - - rot: 3.141592653589793 rad - pos: 0.5,18.5 + - rot: -1.5707963267948966 rad + pos: 13.5,13.5 parent: 1 type: Transform -- proto: WindoorMedicalLocked - entities: - - uid: 3404 + - uid: 7245 components: - - pos: -12.5,12.5 + - rot: -1.5707963267948966 rad + pos: 7.5,-21.5 parent: 1 type: Transform - - uid: 3409 + - uid: 7246 components: - - pos: -9.5,7.5 + - rot: -1.5707963267948966 rad + pos: 7.5,-20.5 parent: 1 type: Transform - - uid: 3410 +- proto: WindoorSecureCargoLocked + entities: + - uid: 7243 components: - - pos: -8.5,7.5 + - rot: 1.5707963267948966 rad + pos: 7.5,-20.5 parent: 1 type: Transform - - uid: 3558 + - uid: 7244 components: - - rot: -1.5707963267948966 rad - pos: -11.5,21.5 + - rot: 1.5707963267948966 rad + pos: 7.5,-21.5 parent: 1 type: Transform - - uid: 3559 + - uid: 7288 components: - - rot: -1.5707963267948966 rad - pos: -11.5,18.5 + - pos: 20.5,-24.5 parent: 1 type: Transform -- proto: WindoorScienceLocked - entities: - - uid: 3605 + - uid: 7290 components: - - rot: 3.141592653589793 rad - pos: -9.5,-4.5 + - pos: 21.5,-24.5 parent: 1 type: Transform - - uid: 3606 +- proto: WindoorSecureChemistryLocked + entities: + - uid: 3401 components: - rot: 3.141592653589793 rad - pos: -8.5,-4.5 + pos: -12.5,12.5 parent: 1 type: Transform -- proto: WindoorSecure - entities: - - uid: 3290 + - uid: 3402 components: - - pos: 0.5,18.5 + - rot: 3.141592653589793 rad + pos: -9.5,12.5 parent: 1 type: Transform - - uid: 3350 + - uid: 3403 components: - rot: 3.141592653589793 rad - pos: 12.5,-9.5 + pos: -8.5,12.5 parent: 1 type: Transform - - uid: 3405 +- proto: WindoorSecureCommandLocked + entities: + - uid: 3614 components: - - pos: -9.5,12.5 + - rot: -1.5707963267948966 rad + pos: -7.5,52.5 parent: 1 type: Transform - - uid: 3406 + - uid: 3615 components: - - pos: -8.5,12.5 + - rot: 1.5707963267948966 rad + pos: -5.5,52.5 parent: 1 type: Transform - - uid: 3407 + - uid: 4127 components: - - rot: 3.141592653589793 rad - pos: -9.5,7.5 + - pos: -4.5,25.5 parent: 1 type: Transform - - uid: 3408 + - uid: 4730 components: - - rot: 3.141592653589793 rad - pos: -8.5,7.5 + - rot: 1.5707963267948966 rad + pos: -39.5,19.5 parent: 1 type: Transform - - uid: 3603 + - uid: 4972 components: - - pos: -9.5,-4.5 + - pos: 4.5,30.5 parent: 1 type: Transform - - uid: 3604 +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 3349 components: - - pos: -8.5,-4.5 + - pos: 12.5,-9.5 parent: 1 type: Transform - - uid: 5099 +- proto: WindoorSecureHeadOfPersonnelLocked + entities: + - uid: 3289 components: - - rot: -1.5707963267948966 rad - pos: 13.5,14.5 + - rot: 3.141592653589793 rad + pos: 0.5,18.5 parent: 1 type: Transform - - uid: 5100 +- proto: WindoorSecureMedicalLocked + entities: + - uid: 3404 components: - - rot: -1.5707963267948966 rad - pos: 13.5,13.5 + - pos: -12.5,12.5 parent: 1 type: Transform - - uid: 7245 + - uid: 3409 components: - - rot: -1.5707963267948966 rad - pos: 7.5,-21.5 + - pos: -9.5,7.5 parent: 1 type: Transform - - uid: 7246 + - uid: 3410 components: - - rot: -1.5707963267948966 rad - pos: 7.5,-20.5 + - pos: -8.5,7.5 parent: 1 type: Transform -- proto: WindoorSecureCargoLocked - entities: - - uid: 7243 + - uid: 3558 components: - - rot: 1.5707963267948966 rad - pos: 7.5,-20.5 + - rot: -1.5707963267948966 rad + pos: -11.5,21.5 parent: 1 type: Transform - - uid: 7244 + - uid: 3559 components: - - rot: 1.5707963267948966 rad - pos: 7.5,-21.5 + - rot: -1.5707963267948966 rad + pos: -11.5,18.5 parent: 1 type: Transform - - uid: 7288 +- proto: WindoorSecureSalvageLocked + entities: + - uid: 7297 components: - - pos: 20.5,-24.5 + - rot: 3.141592653589793 rad + pos: 21.5,-24.5 parent: 1 type: Transform - - uid: 7290 + - uid: 7300 components: - - pos: 21.5,-24.5 + - rot: 3.141592653589793 rad + pos: 20.5,-24.5 parent: 1 type: Transform -- proto: WindoorSecureSalvageLocked +- proto: WindoorSecureScienceLocked entities: - - uid: 7297 + - uid: 3605 components: - rot: 3.141592653589793 rad - pos: 21.5,-24.5 + pos: -9.5,-4.5 parent: 1 type: Transform - - uid: 7300 + - uid: 3606 components: - rot: 3.141592653589793 rad - pos: 20.5,-24.5 + pos: -8.5,-4.5 parent: 1 type: Transform -- proto: WindoorSecurityLocked +- proto: WindoorSecureSecurityLocked entities: - uid: 1775 components: From 9fc8d9f41e690432ac0760c04f710799753e9f4a Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 24 Jun 2023 15:59:00 -0400 Subject: [PATCH 464/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 6286e078d0..06e833cf83 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: ElectroJr - changes: - - {message: 'Eye damage now darkens the screen, rather than brightening it.', type: Fix} - id: 3583 - time: '2023-04-30T01:44:02.0000000+00:00' - author: EmoGarbage404 changes: - {message: The space dragon event is now less common and starts later in rounds., @@ -2936,3 +2931,9 @@ Entries: - {message: Changed cap gun ammo to look less like real bullets, type: Tweak} id: 4082 time: '2023-06-24T19:56:42.0000000+00:00' +- author: Equivocateur + changes: + - {message: As part of a bounty program - whatever insulated gloves we could find + on Origin we have handed over to cargo., type: Remove} + id: 4083 + time: '2023-06-24T19:57:56.0000000+00:00' From c9f6f630eceddf754360cf8c7f96d12887b785a3 Mon Sep 17 00:00:00 2001 From: Alekshhh <44923899+Alekshhh@users.noreply.github.com> Date: Sat, 24 Jun 2023 23:01:03 +0300 Subject: [PATCH 465/474] drugs (#17588) --- .../Entities/Objects/Specific/chemistry.yml | 82 ++++++++++++++----- 1 file changed, 63 insertions(+), 19 deletions(-) diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml index ed24f80e6a..83947e6eb5 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml @@ -89,6 +89,65 @@ - type: StaticPrice price: 30 +- type: entity + parent: BaseItem + id: BaseBeakerMetallic + abstract: true + components: + - type: Tag + tags: + - GlassBeaker + - type: Sprite + sprite: Objects/Specific/Chemistry/beaker.rsi + layers: + - state: beaker + - state: beaker1 + map: ["enum.SolutionContainerLayers.Fill"] + visible: false + - type: Item + sprite: Objects/Specific/Chemistry/beaker.rsi + - type: MeleeWeapon + soundNoDamage: + path: "/Audio/Effects/Fluids/splat.ogg" + damage: + types: + Blunt: 0 + - type: SolutionContainerManager + solutions: + beaker: + maxVol: 50 + canMix: true + - type: FitsInDispenser + solution: beaker + - type: RefillableSolution + solution: beaker + - type: DrainableSolution + solution: beaker + - type: ExaminableSolution + solution: beaker + - type: DrawableSolution + solution: beaker + - type: InjectableSolution + solution: beaker + - type: SolutionTransfer + canChangeTransferAmount: true + - type: UserInterface + interfaces: + - key: enum.TransferAmountUiKey.Key + type: TransferAmountBoundUserInterface + - type: Drink + isOpen: true + solution: beaker + - type: Appearance + - type: SolutionContainerVisuals + maxFillLevels: 6 + fillBaseName: beaker + - type: Damageable + damageContainer: Inorganic + damageModifierSet: Glass + - type: StaticPrice + price: 30 + - type: entity name: beaker parent: BaseBeaker @@ -146,10 +205,12 @@ - type: entity name: cryostasis beaker - parent: BaseBeaker + parent: BaseBeakerMetallic description: Used to contain chemicals or solutions without reactions. id: CryostasisBeaker components: + - type: Spillable + solution: beaker - type: Sprite sprite: Objects/Specific/Chemistry/beaker_cryostasis.rsi layers: @@ -159,27 +220,10 @@ beaker: maxVol: 60 canReact: false - - type: Damageable - damageContainer: Inorganic - damageModifierSet: FlimsyMetallic - - type: Destructible - thresholds: - - trigger: - !type:DamageTrigger - damage: 5 - behaviors: - - !type:SpillBehavior - solution: beaker - - !type:DoActsBehavior - acts: [ "Destruction" ] - - type: Tag - tags: - - GlassBeaker - - Cryobeaker - type: entity name: bluespace beaker - parent: BaseBeaker + parent: BaseBeakerMetallic description: Powered by experimental bluespace technology. id: BluespaceBeaker components: From ee98de49279852bed3e5a4d18692833181f90218 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 24 Jun 2023 16:02:07 -0400 Subject: [PATCH 466/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 06e833cf83..ed6b760a6d 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,10 +1,4 @@ Entries: -- author: EmoGarbage404 - changes: - - {message: The space dragon event is now less common and starts later in rounds., - type: Tweak} - id: 3584 - time: '2023-04-30T01:51:37.0000000+00:00' - author: EmoGarbage404 changes: - {message: 'Fixed items that use drain power cells passively (anomaly locators, @@ -2937,3 +2931,9 @@ Entries: on Origin we have handed over to cargo., type: Remove} id: 4083 time: '2023-06-24T19:57:56.0000000+00:00' +- author: Alekshhh + changes: + - {message: 'Changed bluespace and cryostasis beakers to not be weird when thrown, + and cryostasis contents can now be spilled when thrown.', type: Tweak} + id: 4084 + time: '2023-06-24T20:01:04.0000000+00:00' From 809255ffb1b2fdaf880578ae4533a06fe31daf6c Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Sat, 24 Jun 2023 20:05:02 +0000 Subject: [PATCH 467/474] give regular crowbar same damage as emergency (#17284) * swap emergency and regular crowbar damage * a * same damage * remove dupe * egg --------- Co-authored-by: deltanedas <@deltanedas:kde.org> --- .../Prototypes/Entities/Objects/Tools/tools.yml | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/Resources/Prototypes/Entities/Objects/Tools/tools.yml b/Resources/Prototypes/Entities/Objects/Tools/tools.yml index f2d68a1f84..fa1ddca1d2 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/tools.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/tools.yml @@ -142,7 +142,7 @@ - type: MeleeWeapon damage: types: - Blunt: 6 + Blunt: 8 Structural: 3 - type: Tool qualities: @@ -157,26 +157,18 @@ price: 22 - type: entity - name: emergency crowbar parent: Crowbar id: CrowbarRed + name: emergency crowbar components: - type: Tag tags: - Crowbar - CrowbarRed - type: Sprite - sprite: Objects/Tools/crowbar.rsi state: red-icon - type: Item - sprite: Objects/Tools/crowbar.rsi - size: 10 heldPrefix: red - - type: MeleeWeapon - damage: - types: - Blunt: 8 #free man - Structural: 3 - type: entity name: multitool From 826a015aa5c9ddf4a2a0232f44d5c75274f393f6 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 24 Jun 2023 16:06:06 -0400 Subject: [PATCH 468/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index ed6b760a6d..9a9b651f7d 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,10 +1,4 @@ Entries: -- author: EmoGarbage404 - changes: - - {message: 'Fixed items that use drain power cells passively (anomaly locators, - etc) draining instantly.', type: Fix} - id: 3585 - time: '2023-04-30T06:06:45.0000000+00:00' - author: Flareguy changes: - {message: Resprited the plating and tech maint tiles., type: Tweak} @@ -2937,3 +2931,9 @@ Entries: and cryostasis contents can now be spilled when thrown.', type: Tweak} id: 4084 time: '2023-06-24T20:01:04.0000000+00:00' +- author: deltanedas + changes: + - {message: Emergency crowbar and regular crowbar now do the same damage. Please + leave emergency crowbars for emergencies!!!, type: Tweak} + id: 4085 + time: '2023-06-24T20:05:03.0000000+00:00' From 20b55d7af86a7cf6981af1caf3bc52d65f3c75a7 Mon Sep 17 00:00:00 2001 From: Myakot <30875116+Myakot@users.noreply.github.com> Date: Sun, 25 Jun 2023 03:07:25 +0700 Subject: [PATCH 469/474] gbookcommits (#17611) --- .../Guidebook/Controls/Controls.xml | 2 ++ .../ServerInfo/Guidebook/Controls/Radio.xml | 2 ++ .../ServerInfo/Guidebook/Engineering/AME.xml | 4 ++++ .../Guidebook/Engineering/Construction.xml | 1 + .../Guidebook/Engineering/Fires.xml | 8 +++---- .../Guidebook/Engineering/Power.xml | 16 ++++++++++++++ .../Guidebook/Engineering/Singularity.xml | 4 ++-- Resources/ServerInfo/Guidebook/Jobs.xml | 4 ++-- .../Guidebook/Medical/Cryogenics.xml | 1 + .../ServerInfo/Guidebook/Science/Science.xml | 22 ++++++++++++++++++- .../Guidebook/Science/Xenoarchaeology.xml | 7 +++++- .../ServerInfo/Guidebook/Security/DNA.xml | 17 ++++++++++++-- .../Guidebook/Security/Security.xml | 1 + .../Guidebook/Service/Janitorial.xml | 4 ++++ .../ServerInfo/Guidebook/SpaceStation14.xml | 2 +- Resources/ServerInfo/Guidebook/Survival.xml | 6 +++-- 16 files changed, 86 insertions(+), 15 deletions(-) diff --git a/Resources/ServerInfo/Guidebook/Controls/Controls.xml b/Resources/ServerInfo/Guidebook/Controls/Controls.xml index 1c63692e88..94cd325b86 100644 --- a/Resources/ServerInfo/Guidebook/Controls/Controls.xml +++ b/Resources/ServerInfo/Guidebook/Controls/Controls.xml @@ -30,6 +30,8 @@ All items have an assigned size, some too large to fit into most or all containe To drop items, you can press [color=#a4885c][keybind="Drop"/][/color], and to drop them more violently (also known as throwing), you can press [color=#a4885c][keybind="ThrowItemInHand"/][/color]. +A slightly advanced way to manage your inventory is to use [color=#a4885c]Shift + B[/color]. If your active hand is currently empty, this hotkey will pull out the latest item that was put in your bag. If you have an item in your hand - samek hotkey will put said item into your bag. +Hotkey [color=#a4885c]Shift + E[/color] works exactly the same, but uses your belt as storage. ## Actions To the left in your HUD there's a bar showing various actions you can take. You can hover over each one to see a name and description for the action that tells you what it is and how it works. diff --git a/Resources/ServerInfo/Guidebook/Controls/Radio.xml b/Resources/ServerInfo/Guidebook/Controls/Radio.xml index a08e4a2ad3..b46668914b 100644 --- a/Resources/ServerInfo/Guidebook/Controls/Radio.xml +++ b/Resources/ServerInfo/Guidebook/Controls/Radio.xml @@ -22,5 +22,7 @@ Examining a default engineering headset would show you the prefixes for the [color=#32cd32]Common[/color] and [color=#f37746]Engineering[/color] channels. + + It is also possible to use [color=#a4885c]:h[/color]. This hotkey will automatically default to your department radio channel. For an example if you're Captain, then [color=#a4885c]:h[/color] will default to [color=#a4885c]:c[/color] diff --git a/Resources/ServerInfo/Guidebook/Engineering/AME.xml b/Resources/ServerInfo/Guidebook/Engineering/AME.xml index 981a1a30d5..9de25b21aa 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/AME.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/AME.xml @@ -14,4 +14,8 @@ The AME is one of the simplest engines available. You put together the multi-til To assemble an AME, start by wrenching down the controller on the far end of a HV wire. On most stations, there's catwalks to assist with this. From there, start putting down a 3x3 or larger square of AME parts in preparation for construction, making sure to maximize the number of "center" pieces that are surrounded on all 8 sides. Once this is done, you can use a multitool to convert each AME part into shielding, which should form a finished AME configuration. From there, insert a fuel jar, set the fuel rate to [color=#a4885c]twice the core count or less[/color], and turn on injection. + +## Fuel Economy +The closer you are to the perfect ratio of [color=#a4885c]1:2[/color] (1 AME core to 2 fuel rate) the more efficient you'll be. You're cutting fuel efficiency to [color=#a4885c]50% and less[/color] if you're using more cores, but less fuel injection rate. +For an example [color=#76db91]3 core and 6 fuel rate[/color] will generate [color=#76db91]240kW[/color], while [color=#f0684d]8 core 8 fuel rate[/color] will generate [color=#f0684d]160kW[/color]. Generating 80kW less while spending 2 more fuel each injection. \ No newline at end of file diff --git a/Resources/ServerInfo/Guidebook/Engineering/Construction.xml b/Resources/ServerInfo/Guidebook/Engineering/Construction.xml index 8de16a72ea..832b831d8e 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/Construction.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/Construction.xml @@ -7,4 +7,5 @@ When placing objects that "snap" to the grid, you can hold [color=#a4885c]shift[ When crafting objects with a lot of ingredients, keep in mind you don't have to hold everything at once, you can simply place the ingredients on the floor or on a table near you and they'll be used up during crafting like normal. +When placing a "building ghost" somewhere in the world press [color=#a4885c]Middle Mouse Button[/color] to rotate the ghost clockwise. diff --git a/Resources/ServerInfo/Guidebook/Engineering/Fires.xml b/Resources/ServerInfo/Guidebook/Engineering/Fires.xml index 5217785521..a1c54059b7 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/Fires.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/Fires.xml @@ -5,11 +5,11 @@ Fires and spacings are an inevitability due to the highly flammable plasma gas a ## Spacing Space is arguably the easier of the two to handle. -While it does render an area uninhabitable, it can be trivially solved by simply sealing the hole that resulted in the vacuum and introducing a small amount of air. -By default, station vents automatically seal themselves upon exposure to space, in order to avoid wasting air, and will only resume cycling after pressure has been brought up high enough to reopen them. +While it does render an area uninhabitable, it can be trivially solved by simply sealing the hole that resulted in the vacuum. After that, assuming distro vents and pipes have not been destroyed in some unfortunate accident, the room will slowly begin to repressurize. +Be aware, that active spacings will slowly siphon the air out of the station's air reserves. If you find it impossible to fix structural damage due to some other hazard - make sure to limit the airflow to that room. ## Fires -Fires can be delt with through a multitude of ways, but some of the most effective methods include: +Fires can be dealt with through a multitude of ways, but some of the most effective methods include: - Spacing the enflamed area if possible. This will destroy all of the gasses in the room, which may be a problem if you're already straining life support. - - Dumping a Frezon canister into the enflamed area. This will ice over the flames and halt any ongoing reaction, provided you use enough Frezon. Additionally does not result in destruction of material, so you can simply scrub the rooms afterward. + - Dumping a Frezon canister into the enflamed area. This will ice over the flames and halt any ongoing reaction, provided you use enough Frezon. Additionally does not result in destruction of material, so you can simply scrub the room afterwards. diff --git a/Resources/ServerInfo/Guidebook/Engineering/Power.xml b/Resources/ServerInfo/Guidebook/Engineering/Power.xml index 952cc15480..c0113b2f2a 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/Power.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/Power.xml @@ -34,4 +34,20 @@ Installing APCs is similarly simple, except APCs are exclusively wallmounted mac Installing a SMES requires you construct a cable terminal to use as the input. The SMES will draw power from the terminal and send power out from underneath. The terminal will ensure that the HV input and HV output do not connect. Avoid connecting a SMES to itself, this will result in a short circuit which can result in power flickering or outages depending on severity. +## APC breaking +Currently the only power storage device that has a limit to it's power network is APC. As soon as all connected devices and machinery demand more than [color=#a4885c]24kW[/color] it's breaker will pop and everything will turn off. + + + + +## Checking power grid +1. Use the [color=#a4885c]t-ray scanner[/color] in order to locate cables that are hidden under tiles. (skip this step if cables aren't hidden) +2. Pry open the tile that is blocking your access to the cable with a [color=#a4885c]crowbar[/color]. (skip this step if cables aren't hidden) +3. Equip your trusty [color=#a4885c]Multitool[/color] and click on any cable to see powergrid stats. + + + + + + \ No newline at end of file diff --git a/Resources/ServerInfo/Guidebook/Engineering/Singularity.xml b/Resources/ServerInfo/Guidebook/Engineering/Singularity.xml index a40ef7f43e..76115fb437 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/Singularity.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/Singularity.xml @@ -53,7 +53,7 @@ They connect to HV cables and generate power from nearby radiation sources when -The Particle Accelerator (PA) is a multi-tile structure that launches acclerated particles from its emitters. Its emitters should always face the gravitational singularity generator. +The Particle Accelerator (PA) is a multi-tile structure that launches accelerated particles from its emitters. Its emitters should always face the gravitational singularity generator. Some stations already have an unfinished PA. To complete, first ensure there is HV cable beneath the PA power box, anchor all parts, then add LV cable to each part. @@ -68,7 +68,7 @@ Scan parts using the PA control computer to check if it's operational. If it sho [color=#a4885c]Do not[/color] turn the PA on unless all other subsystems are working properly. -Turn power on using the PA control computer. Set strength to an appropiate level. +Turn power on using the PA control computer. Set strength to an appropiate level. Currently the only appropriate level is [color=#f0684d]1[/color], anything above that will ensure that singularity grows too strong to handle. The higher the output stength is set on PA control computer, the bigger the singularity will be. The PA will now draw power from the power net and start firing particles at the Gravitational singularity generator. diff --git a/Resources/ServerInfo/Guidebook/Jobs.xml b/Resources/ServerInfo/Guidebook/Jobs.xml index dd381dbfeb..613a9f194b 100644 --- a/Resources/ServerInfo/Guidebook/Jobs.xml +++ b/Resources/ServerInfo/Guidebook/Jobs.xml @@ -16,7 +16,7 @@ For the most part, this means they scrounge around the station and assorted wrec ## Security Security consists of the security cadets, lawyers, detective, security officers, warden, and the head of security. As a department it is responsible for dealing with troublemakers and non-humanoid threats like giant rats and carp. -As a result of this, and the need to walk a fine line, security sometimes is overwhelmed by angry crew (don't kill the clown), and it is important for members of it to try and stay on their best behavior. +As a result of this, and the need to walk a fine line, security sometimes is overwhelmed by angry crew (don't kill the clown), and it is important for it's members to try and stay on their best behavior. ## Medical Medical consists of the medical interns, chemists, medical doctors, and the chief medical officer. As a department it is responsible for taking care of the crew, treat and/or clone the wounded and dead, treat disease, and prevent everyone from dying a horrible, bloody death in a closet somewhere. @@ -24,7 +24,7 @@ Medical consists of the medical interns, chemists, medical doctors, and the chie Medical is one of the more well-equipped departments, with the ability to locate injured crew using the crew monitor, a nigh infinite supply of chems should chemistry be on-par, and the ability to rapidly diagnose and vaccinate contagious diseases. ## Science -Science consists of scientists, and the research director. As a department it is responsible for researching technologies and artifacts, upgrading machines, and printing new and useful dev ices. +Science consists of research assistants, scientists, and the research director. As a department it is responsible for researching technologies and artifacts, upgrading machines, and printing new and useful devices. Scientists should seek out new artifacts to study, as well as solicit departments to help upgrade their machines. diff --git a/Resources/ServerInfo/Guidebook/Medical/Cryogenics.xml b/Resources/ServerInfo/Guidebook/Medical/Cryogenics.xml index 514068cd6b..ad97f1b2d7 100644 --- a/Resources/ServerInfo/Guidebook/Medical/Cryogenics.xml +++ b/Resources/ServerInfo/Guidebook/Medical/Cryogenics.xml @@ -44,6 +44,7 @@ Once things have been set up, you're going to require a specific medication, Cry The standard pressure for a gas pump is 1.325 kpa. Cryoxadone works at under 170K, but it is standard practice to set the freezer to 100K for faster freezing. + diff --git a/Resources/ServerInfo/Guidebook/Science/Science.xml b/Resources/ServerInfo/Guidebook/Science/Science.xml index 8cde008c8e..a32112877f 100644 --- a/Resources/ServerInfo/Guidebook/Science/Science.xml +++ b/Resources/ServerInfo/Guidebook/Science/Science.xml @@ -12,6 +12,25 @@ The most important thing inside your department is the R&D server, which stores Each technology costs [color=#a4885c]Research Points[/color] and unlocks recipes at lathes. Some technologies will also have prerequesites you have to unlock before you can research them. +## Disciplines +Technologies are spread over 5 different Disciplines: + + + + + + + + + Use your nearest R&D console to take note of which kind of research is locked behind each Discipline tree. + +## Tiers +Each Discipline tree has up to 3 tiers of technologies. At the start the only tier that is open and available for you is tier 1. + +In order to progress further, you have to research up to [color=brown]75%[/color] of the current tier to move to the next one. So in order to unlock T2 researches you need to research 75% of T1. + +Now [color=green]Tier 3[/color] is where it gets interesting. If you research a T3 tech, you [color=brown]lock out[/color] T3 techs from other Discipline trees. That is, unless... you find some other way around it, probably should ask your [color=purple]Research Director[/color]. + ## Lathes @@ -20,7 +39,8 @@ Each technology costs [color=#a4885c]Research Points[/color] and unlocks recipes + -At a lathe, you can sync to a server to allow it print whatever recipes you have unlocked. Recipes require various materials (steel, glass, plastic, gold, plasma) which can be acquired at Cargo or Salvage. +At a lathe, you can choose a server to allow it print whatever recipes you have unlocked. Recipes require various materials (steel, glass, plastic, gold, plasma) which can be acquired at Cargo or Salvage. diff --git a/Resources/ServerInfo/Guidebook/Science/Xenoarchaeology.xml b/Resources/ServerInfo/Guidebook/Science/Xenoarchaeology.xml index 5b3f954b70..99e1437a09 100644 --- a/Resources/ServerInfo/Guidebook/Science/Xenoarchaeology.xml +++ b/Resources/ServerInfo/Guidebook/Science/Xenoarchaeology.xml @@ -4,7 +4,7 @@ Xenoarchaeology is a science subdepartment focused on researching and experiment ## Artifacts - + Artifacts consist of a randomly-generated graph structure. They consist of nodes connected to each other by edges, the traversal of which is the main goal of the scientists working on them. @@ -26,4 +26,9 @@ To set them up, simply link them with a network configurator, set an artifact on Using the console, you can extract points from the artifact using the [color=#a4885c]Extract[/color] button. The amount of points you extract is based on how many of the nodes of the artifact have been activated. +## Assembling Artifacts + + +It is possible to gather multiple artifact fragments and assemble them into a working artifact. You can ask for these from Salvage, they usually find these while mining asteroids or on Expeditions. + diff --git a/Resources/ServerInfo/Guidebook/Security/DNA.xml b/Resources/ServerInfo/Guidebook/Security/DNA.xml index 1a2820ad3d..fa0a62c961 100644 --- a/Resources/ServerInfo/Guidebook/Security/DNA.xml +++ b/Resources/ServerInfo/Guidebook/Security/DNA.xml @@ -1,5 +1,5 @@  - # DNA + # DNA and Fingerprints ## How to get someone’s DNA? @@ -8,10 +8,23 @@ So be careful before fighting with someone. + + Same scanner can also get fingerprint information about who touched pretty much any object. If the possible perpetrator was using gloves, then your scanner will print out which fibers were left on the crimescene. ## I got DNA. How do I recognize whose it is? - You can print the forensic information of the object you scanned so you never miss it. Now with the paper containing DNA you can simply find a [color=#a4885c]Station Records Computer[/color] and look for a person whose DNA matches. + You can print the forensic information of the object you scanned so you never miss it. Now with the paper containing DNA you can simply find a [color=#a4885c]Station Records Computer[/color] and look for a person whose DNA matches. Same applies to finding whose fingerprint is is. + + ## Taking Fingerprints + It is also possible to take someones fingerprints while on scene if you make them take off their gloves and appy a forensic pad to their fingers. No need to run back to [color=#a4885c]Station Records Computer[/color] check if the butler did it! + + + + ## Fibers + Whenenever people wearing gloves touch anything on the station, they are bound to leave behind some fibers. This complicates things, but nothing is unsolvable for a real detective. + + There are up to [color=red]16[/color] different types of fibers possible. Can that stop you from solving the case? + diff --git a/Resources/ServerInfo/Guidebook/Security/Security.xml b/Resources/ServerInfo/Guidebook/Security/Security.xml index 296b3d27bf..47c357a409 100644 --- a/Resources/ServerInfo/Guidebook/Security/Security.xml +++ b/Resources/ServerInfo/Guidebook/Security/Security.xml @@ -12,6 +12,7 @@ ## Flashes Flashes are an effective tool for dispersing crowds and apprehending particularly evasive targets, with a large area of effect blinding all those without protection. + It is worth noting that flashes can be both used in a large area ([color=yellow]Z[/color] hotkey) and if you attack somebody with it while [color=red]harm mode[/color] is active. Important to note that localized flashes last [color=yellow]2.5[/color] times as long as large area ones. Security and [color=#a4885c]some[/color] other members of staff have eye protection from flashbangs and flashes. diff --git a/Resources/ServerInfo/Guidebook/Service/Janitorial.xml b/Resources/ServerInfo/Guidebook/Service/Janitorial.xml index f61931c672..e715fe919f 100644 --- a/Resources/ServerInfo/Guidebook/Service/Janitorial.xml +++ b/Resources/ServerInfo/Guidebook/Service/Janitorial.xml @@ -25,6 +25,9 @@ You keep things clean, it's a rough job sometimes, but someone's gotta do it. Th + + + ## Fluid Acquisition and Disposal @@ -51,4 +54,5 @@ A good janitor is always on the lookout for a bit more to do, and there are plen ##Additional Information: + diff --git a/Resources/ServerInfo/Guidebook/SpaceStation14.xml b/Resources/ServerInfo/Guidebook/SpaceStation14.xml index e66e8e168a..56325107d8 100644 --- a/Resources/ServerInfo/Guidebook/SpaceStation14.xml +++ b/Resources/ServerInfo/Guidebook/SpaceStation14.xml @@ -4,7 +4,7 @@ Welcome to the pre-alpha of Space Station 14! We hope you enjoy the game, and this entry will serve to guide you on how to learn to play. There's quite a bit to read, but SS14 is in itself a very large and in-depth game, and hopefully these guides help you enjoy it to it's fullest. ## What this is -Space Station 14 is a free (forever) open source remake of the infamous Space Station 13, hoping to provide a improved experience for both newcomers and old players alike. Space Station 14 is designed as a fully moddable experience that you can modify to your liking with custom servers, adding entire swaths of new content for people to explore. +Space Station 14 is a free (forever) open source remake of the infamous Space Station 13, hoping to provide an improved experience for both newcomers and old players alike. Space Station 14 is designed as a fully moddable experience that you can modify to your liking with custom servers, adding entire swaths of new content for people to explore. If you're just here to play, that's great! The [color=#a4885c]Where to start[/color] section of this entry will help you out, if you're looking to do a bit more with the game, you can join our discord and find our github page in the lobby. diff --git a/Resources/ServerInfo/Guidebook/Survival.xml b/Resources/ServerInfo/Guidebook/Survival.xml index 7a6f4dfdf1..2de22b08d4 100644 --- a/Resources/ServerInfo/Guidebook/Survival.xml +++ b/Resources/ServerInfo/Guidebook/Survival.xml @@ -7,14 +7,14 @@ It is generally wise to avoid situations that will cause you harm, because medic Your PDA contains both a vessel name and list of crew currently active in your vessel, a reminder for your name if needed, and your assigned job for the shift, allowing you to quickly assess the situation. ## Emergency Treatment -In the event of a serious emergency, there's a few things you can do to help ensure your long-term survival, including: +In the event of a serious emergency, there're a few things you can do to help ensure your long-term survival, including: - If entering critical condition, use the emergency medipen from your emergency box, it'll make sure you don't end up unable to do anything. Emergency medipens can also be used to revive people currently in crit on the floor, and to prolong the amount of time you have to deal with poisons/etc. -- Your emergency box contains a breath mask and oxygen tank, which can help you survive longer in a spacing situation. +- Your emergency box contains a breath mask and oxygen tank, which can help you survive longer in a spacing situation. If you're one of the slimepeople, be aware that nitrogen replaces oxygen for you and you don't start with one of those in your emergency canister. @@ -28,5 +28,7 @@ In the event of a serious emergency, there's a few things you can do to help ens - If going blind, carrots are another way to treat the issue (as they contain Oculine, the chemistry drug used to treat blindness) should they be available. - Well-made meals (cooked food not from a vending machine) is generally much better for your overall health and can help heal smaller wounds more quickly. - Simple bed rest cures the majority of diseases and also allows wounds to close up on their own. Medical beds are best for this, providing a sterile surface and support for all damaged body parts, but any bed works. Even sitting down helps, if only a little. +- Actually sleeping on a bed boosts your healing rate even farther. +- Meals that contain beans, red meat, or otherwise are just full of protein - will tremendously help your body's condition after severe bloodloss. It's still advised to visit a doctor and get treated though. \ No newline at end of file From 204f6ca5c2da8e78b5b33dc1974af0c9417a9392 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 24 Jun 2023 16:08:28 -0400 Subject: [PATCH 470/474] Automatic changelog update --- Resources/Changelog/Changelog.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 9a9b651f7d..266b1f6636 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: Flareguy - changes: - - {message: Resprited the plating and tech maint tiles., type: Tweak} - id: 3586 - time: '2023-04-30T06:36:12.0000000+00:00' - author: metalgearsloth changes: - {message: Remove kvass., type: Remove} @@ -2937,3 +2932,9 @@ Entries: leave emergency crowbars for emergencies!!!, type: Tweak} id: 4085 time: '2023-06-24T20:05:03.0000000+00:00' +- author: Myakot + changes: + - {message: Added additional information to guidebooks p.1, type: Add} + - {message: Some little typos in guidebook, type: Fix} + id: 4086 + time: '2023-06-24T20:07:25.0000000+00:00' From bbd8ce8885023cd94c7420e13e89924e0b575626 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Sun, 25 Jun 2023 01:56:33 +0200 Subject: [PATCH 471/474] Replays: final boss (#17621) * Replays: final boss * Undo formatting change in EntryPoint --- Content.Client/Entry/EntryPoint.cs | 22 +++++++++++- .../Replay/ContentReplayPlaybackManager.cs | 4 +-- Content.Client/Replay/LoadReplayJob.cs | 5 ++- Content.Replay/Menu/ReplayMainMenu.cs | 36 ++++++++++++------- Resources/manifest.yml | 5 --- 5 files changed, 48 insertions(+), 24 deletions(-) diff --git a/Content.Client/Entry/EntryPoint.cs b/Content.Client/Entry/EntryPoint.cs index 49383d9779..1c9df27d33 100644 --- a/Content.Client/Entry/EntryPoint.cs +++ b/Content.Client/Entry/EntryPoint.cs @@ -27,12 +27,16 @@ using Robust.Client; using Robust.Client.Graphics; using Robust.Client.Input; +using Robust.Client.Replays.Loading; +using Robust.Client.Replays.Playback; using Robust.Client.State; using Robust.Client.UserInterface; +using Robust.Shared; using Robust.Shared.Configuration; using Robust.Shared.ContentPack; using Robust.Shared.Map; using Robust.Shared.Prototypes; +using Robust.Shared.Replays; namespace Content.Client.Entry { @@ -64,6 +68,9 @@ public sealed class EntryPoint : GameClient [Dependency] private readonly JobRequirementsManager _jobRequirements = default!; [Dependency] private readonly ContentLocalizationManager _contentLoc = default!; [Dependency] private readonly ContentReplayPlaybackManager _playbackMan = default!; + [Dependency] private readonly IResourceManager _resourceManager = default!; + [Dependency] private readonly IReplayLoadManager _replayLoad = default!; + [Dependency] private readonly ILogManager _logManager = default!; public override void Init() { @@ -183,7 +190,20 @@ private void SwitchToDefaultState(bool disconnected = false) { // Fire off into state dependent on launcher or not. - if (_gameController.LaunchState.FromLauncher) + // Check if we're loading a replay via content bundle! + if (_configManager.GetCVar(CVars.LaunchContentBundle) + && _resourceManager.ContentFileExists( + ReplayConstants.ReplayZipFolder.ToRootedPath() / ReplayConstants.FileMeta)) + { + _logManager.GetSawmill("entry").Info("Loading content bundle replay from VFS!"); + + var reader = new ReplayFileReaderResources( + _resourceManager, + ReplayConstants.ReplayZipFolder.ToRootedPath()); + + _replayLoad.LoadAndStartReplay(reader); + } + else if (_gameController.LaunchState.FromLauncher) { _stateManager.RequestStateChange(); var state = (LauncherConnecting) _stateManager.CurrentState; diff --git a/Content.Client/Replay/ContentReplayPlaybackManager.cs b/Content.Client/Replay/ContentReplayPlaybackManager.cs index e400958bca..843fcdfbd1 100644 --- a/Content.Client/Replay/ContentReplayPlaybackManager.cs +++ b/Content.Client/Replay/ContentReplayPlaybackManager.cs @@ -59,10 +59,10 @@ public void Initialize() _loadMan.LoadOverride += LoadOverride; } - private void LoadOverride(IWritableDirProvider dir, ResPath resPath) + private void LoadOverride(IReplayFileReader fileReader) { var screen = _stateMan.RequestStateChange>(); - screen.Job = new ContentLoadReplayJob(1/60f, dir, resPath, _loadMan, screen); + screen.Job = new ContentLoadReplayJob(1/60f, fileReader, _loadMan, screen); screen.OnJobFinished += (_, e) => OnFinishedLoading(e); } diff --git a/Content.Client/Replay/LoadReplayJob.cs b/Content.Client/Replay/LoadReplayJob.cs index 1064008609..5061521278 100644 --- a/Content.Client/Replay/LoadReplayJob.cs +++ b/Content.Client/Replay/LoadReplayJob.cs @@ -12,11 +12,10 @@ public sealed class ContentLoadReplayJob : LoadReplayJob public ContentLoadReplayJob( float maxTime, - IWritableDirProvider dir, - ResPath path, + IReplayFileReader fileReader, IReplayLoadManager loadMan, LoadingScreen screen) - : base(maxTime, dir, path, loadMan) + : base(maxTime, fileReader, loadMan) { _screen = screen; } diff --git a/Content.Replay/Menu/ReplayMainMenu.cs b/Content.Replay/Menu/ReplayMainMenu.cs index 096abb6971..5792c1bc01 100644 --- a/Content.Replay/Menu/ReplayMainMenu.cs +++ b/Content.Replay/Menu/ReplayMainMenu.cs @@ -1,3 +1,4 @@ +using System.IO.Compression; using System.Linq; using Content.Client.Message; using Content.Client.UserInterface.Systems.EscapeMenu; @@ -13,7 +14,7 @@ using Robust.Shared.ContentPack; using Robust.Shared.Serialization.Markdown.Value; using Robust.Shared.Utility; -using static Robust.Shared.Replays.IReplayRecordingManager; +using static Robust.Shared.Replays.ReplayConstants; namespace Content.Replay.Menu; @@ -71,8 +72,10 @@ private void UpdateSelectedInfo() return; } + using var fileReader = new ReplayFileReaderZip( + new ZipArchive(_resMan.UserData.OpenRead(replay)), ReplayZipFolder); if (!_resMan.UserData.Exists(replay) - || _loadMan.LoadYamlMetadata(_resMan.UserData, replay) is not { } data) + || _loadMan.LoadYamlMetadata(fileReader) is not { } data) { info.SetMarkup(Loc.GetString("replay-info-invalid")); info.HorizontalAlignment = Control.HAlignment.Center; @@ -82,16 +85,16 @@ private void UpdateSelectedInfo() } var file = replay.ToRelativePath().ToString(); - data.TryGet(Time, out var timeNode); - data.TryGet(Duration, out var durationNode); + data.TryGet(MetaKeyTime, out var timeNode); + data.TryGet(MetaFinalKeyDuration, out var durationNode); data.TryGet("roundId", out var roundIdNode); - data.TryGet(Hash, out var hashNode); - data.TryGet(CompHash, out var compHashNode); + data.TryGet(MetaKeyTypeHash, out var hashNode); + data.TryGet(MetaKeyComponentHash, out var compHashNode); DateTime.TryParse(timeNode?.Value, out var time); TimeSpan.TryParse(durationNode?.Value, out var duration); var forkId = string.Empty; - if (data.TryGet(Fork, out var forkNode)) + if (data.TryGet(MetaKeyForkId, out var forkNode)) { // TODO Replay client build info. // When distributing the client we need to distribute a build.json or provide these cvars some other way? @@ -105,7 +108,7 @@ private void UpdateSelectedInfo() } var forkVersion = string.Empty; - if (data.TryGet(ForkVersion, out var versionNode)) + if (data.TryGet(MetaKeyForkVersion, out var versionNode)) { forkVersion = versionNode.Value; // Why does this not have a try-convert function? I just want to check if it looks like a hash code. @@ -162,7 +165,7 @@ private void UpdateSelectedInfo() } var engineVersion = string.Empty; - if (data.TryGet(Engine, out var engineNode)) + if (data.TryGet(MetaKeyEngineVersion, out var engineNode)) { var clientVer = _cfg.GetCVar(CVars.BuildEngineVersion); if (string.IsNullOrWhiteSpace(clientVer)) @@ -176,7 +179,7 @@ private void UpdateSelectedInfo() // Strip milliseconds. Apparently there is no general format string that suppresses milliseconds. duration = new((int)Math.Floor(duration.TotalDays), duration.Hours, duration.Minutes, duration.Seconds); - data.TryGet(Name, out var nameNode); + data.TryGet(MetaKeyName, out var nameNode); var name = nameNode?.Value ?? string.Empty; info.HorizontalAlignment = Control.HAlignment.Left; @@ -205,7 +208,11 @@ private void OnFolderPressed(BaseButton.ButtonEventArgs obj) private void OnLoadpressed(BaseButton.ButtonEventArgs obj) { if (_selected.HasValue) - _loadMan.LoadAndStartReplay(_resMan.UserData, _selected.Value); + { + var fileReader = new ReplayFileReaderZip( + new ZipArchive(_resMan.UserData.OpenRead(_selected.Value)), ReplayZipFolder); + _loadMan.LoadAndStartReplay(fileReader); + } } private void RefreshReplays() @@ -217,11 +224,14 @@ private void RefreshReplays() var file = _directory / entry; try { - var data = _loadMan.LoadYamlMetadata(_resMan.UserData, file); + using var fileReader = new ReplayFileReaderZip( + new ZipArchive(_resMan.UserData.OpenRead(file)), ReplayZipFolder); + + var data = _loadMan.LoadYamlMetadata(fileReader); if (data == null) continue; - var name = data.Get(Name).Value; + var name = data.Get(MetaKeyName).Value; _replays.Add((name, file)); } diff --git a/Resources/manifest.yml b/Resources/manifest.yml index 88c9243624..6799118193 100644 --- a/Resources/manifest.yml +++ b/Resources/manifest.yml @@ -2,9 +2,4 @@ windowIconSet: /Textures/Logo/icon splashLogo: /Textures/Logo/logo.png -clientAssemblies: - - Content.Client - - Content.Shared - - Content.Shared.Database - # PJB PLEASE From 7af0ae540d65ffae72fecd19a133df011f07816a Mon Sep 17 00:00:00 2001 From: Moony Date: Sat, 24 Jun 2023 19:03:33 -0500 Subject: [PATCH 472/474] Update Engine (#17622) Co-authored-by: moonheart08 --- RobustToolbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RobustToolbox b/RobustToolbox index 4c994eb599..a32ff39516 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit 4c994eb5995c3c5966e8c1c82ffb9c4fba0b55e5 +Subproject commit a32ff39516b8f4c26ad57b56ed5f0a3f00c9f365 From a276b4937665e7c2d6a1fd8299b060567dd78d06 Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Sun, 25 Jun 2023 19:05:40 +1200 Subject: [PATCH 473/474] Fix replay eye rotation bug (#17625) --- .../Replay/Spectator/ReplaySpectatorSystem.Movement.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Movement.cs b/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Movement.cs index 52cf3d9c3b..f15385adca 100644 --- a/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Movement.cs +++ b/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Movement.cs @@ -85,8 +85,13 @@ public override void FrameUpdate(float frameTime) } // A poor mans grid-traversal system. Should also interrupt ghost-following. + // This is very hacky and has already caused bugs. + // This is done the way it is because grid traversal gets processed in physics' SimulateWorld() update. + // TODO do this properly somehow. _transform.SetGridId(player, xform, null); _transform.AttachToGridOrMap(player); + if (xform.ParentUid.IsValid()) + _transform.SetGridId(player, xform, Transform(xform.ParentUid).GridUid); var parentRotation = _mover.GetParentGridAngle(mover, query); var localVec = effectiveDir.AsDir().ToAngle().ToWorldVec(); From 0d086df2e501816b64fd0fae3040f2850c723ef0 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Sun, 25 Jun 2023 22:03:01 +1000 Subject: [PATCH 474/474] Update submodule to 131.1.0 (#17633) --- RobustToolbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RobustToolbox b/RobustToolbox index a32ff39516..e44e4ac7ed 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit a32ff39516b8f4c26ad57b56ed5f0a3f00c9f365 +Subproject commit e44e4ac7edcc10b378d966dab3c56da647918b39